_id
stringlengths 64
64
| repository
stringlengths 7
61
| name
stringlengths 5
45
| content
stringlengths 0
943k
| download_url
stringlengths 94
213
| language
stringclasses 1
value | comments
stringlengths 0
20.9k
| code
stringlengths 0
943k
|
---|---|---|---|---|---|---|---|
034ba01736da1d143cd32c7a904ea933eda889c024c8a63489f1223251fc35a3 | HexHive/datAFLow | thru_zero_flanger.dsp | declare name "Thru Zero Flanger";
declare description "Stereo Thru Zero Flanger - warning can ZERO the sound!";
declare author "Oli Larkin ([email protected])";
declare copyright "Oliver Larkin";
declare version "0.1";
declare licence "GPL";
import("effect.lib");
import("filter.lib");
import("math.lib");
lutsize = 1 << 9;
maxdtms = 20;
smooth_time = 0.005;
rate = hslider("Rate [unit:hz] [OWL:PARAMETER_A]", 0.1, 0., 1, 0.001);
dt = hslider("Delay [unit:ms] [OWL:PARAMETER_B]", 10., 0.5, maxdtms, 0.01) : smooth(tau2pole(smooth_time));
lr_offset = hslider("L-R Offset [OWL:PARAMETER_C]", 0, 0., 1, 0.001) *(0.5) : smooth(tau2pole(smooth_time));
depth = hslider("Depth [unit:%] [OWL:PARAMETER_D]", 20., 3., 100., 1) *(0.01): smooth(tau2pole(smooth_time));
tbllookup(phase)=s1+d*(s2-s1)
with {
i = int(phase * lutsize);
d = decimal(phase * lutsize);
triangle_table = triangle_phasor(float(time)/float(lutsize));
triangle_phasor(t) = ((0<=t) & (t<=0.5))*((2*t-0.5)/0.5) + ((0.5<t) & (t<=1.))*((1.5-2*t)/0.5);
s1 = rdtable(lutsize+1, triangle_table, i);
s2 = rdtable(lutsize+1, triangle_table, i+1);
};
tzflangeunit(x, offset) = staticdelay(x) + moddelay(x)
with {
dtsamples = dt * (float(SR)/1000.);
staticdelay = fdelay(4096, dtsamples);
moddelay = fdelay(4096, modulation) *(-1.); // inverted
phasor = fmod((rate/float(SR) : (+ : decimal) ~ _)+offset, 1.);
modulation = dtsamples + ((tbllookup(phasor)*depth) * dtsamples);
};
process(l,r) = tzflangeunit(l, 0.), tzflangeunit(r, lr_offset); | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/thru_zero_flanger.dsp | faust | inverted | declare name "Thru Zero Flanger";
declare description "Stereo Thru Zero Flanger - warning can ZERO the sound!";
declare author "Oli Larkin ([email protected])";
declare copyright "Oliver Larkin";
declare version "0.1";
declare licence "GPL";
import("effect.lib");
import("filter.lib");
import("math.lib");
lutsize = 1 << 9;
maxdtms = 20;
smooth_time = 0.005;
rate = hslider("Rate [unit:hz] [OWL:PARAMETER_A]", 0.1, 0., 1, 0.001);
dt = hslider("Delay [unit:ms] [OWL:PARAMETER_B]", 10., 0.5, maxdtms, 0.01) : smooth(tau2pole(smooth_time));
lr_offset = hslider("L-R Offset [OWL:PARAMETER_C]", 0, 0., 1, 0.001) *(0.5) : smooth(tau2pole(smooth_time));
depth = hslider("Depth [unit:%] [OWL:PARAMETER_D]", 20., 3., 100., 1) *(0.01): smooth(tau2pole(smooth_time));
tbllookup(phase)=s1+d*(s2-s1)
with {
i = int(phase * lutsize);
d = decimal(phase * lutsize);
triangle_table = triangle_phasor(float(time)/float(lutsize));
triangle_phasor(t) = ((0<=t) & (t<=0.5))*((2*t-0.5)/0.5) + ((0.5<t) & (t<=1.))*((1.5-2*t)/0.5);
s1 = rdtable(lutsize+1, triangle_table, i);
s2 = rdtable(lutsize+1, triangle_table, i+1);
};
tzflangeunit(x, offset) = staticdelay(x) + moddelay(x)
with {
dtsamples = dt * (float(SR)/1000.);
staticdelay = fdelay(4096, dtsamples);
phasor = fmod((rate/float(SR) : (+ : decimal) ~ _)+offset, 1.);
modulation = dtsamples + ((tbllookup(phasor)*depth) * dtsamples);
};
process(l,r) = tzflangeunit(l, 0.), tzflangeunit(r, lr_offset); |
92116320ee8bc1bc1adf1d795a79a91d0a340f489ab541622ba7b9d86ed8689a | HexHive/datAFLow | lowcut.dsp | declare name "lowcut";
declare version "1.0";
declare author "Grame";
declare license "BSD";
declare copyright "(c)GRAME 2006";
//------------------------------------------------------------------
// DAFX, Digital Audio Effects (Wiley ed.)
// chapter 2 : filters
// section 2.3 : Equalizers
// page 53 : second order shelving filter design
//------------------------------------------------------------------
import("music.lib");
//------------------- low-frequency shelving cut (table 2.3) --------------------
V0(g) = pow(10,g/-20.0);
K(fc) = tan(PI*fc/SR);
square(x) = x*x;
denom(fc,g) = 1 + sqrt(2*V0(g))*K(fc) + V0(g)*square(K(fc));
lfcut(fc, g) = TF2((1 + sqrt(2)*K(fc) + square(K(fc))) / denom(fc,g),
2 * (square(K(fc)) - 1) / denom(fc,g),
(1 - sqrt(2)*K(fc) + square(K(fc))) / denom(fc,g),
2 * (V0(g)*square(K(fc)) - 1) / denom(fc,g),
(1 - sqrt(2*V0(g))*K(fc) + V0(g)*square(K(fc))) / denom(fc,g)
);
//------------------------------ User Interface -----------------------------------
freq = hslider("freq [unit:Hz][style:knob]", 100, 20, 5000, 1);
att = hslider("attenuation [unit:dB][style:knob]", 0, -96, 10, 0.1);
//----------------------------------- Process -------------------------------------
process = vgroup("low-freq shelving cut", lfcut(freq,att));
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/lowcut.dsp | faust | ------------------------------------------------------------------
DAFX, Digital Audio Effects (Wiley ed.)
chapter 2 : filters
section 2.3 : Equalizers
page 53 : second order shelving filter design
------------------------------------------------------------------
------------------- low-frequency shelving cut (table 2.3) --------------------
------------------------------ User Interface -----------------------------------
----------------------------------- Process ------------------------------------- | declare name "lowcut";
declare version "1.0";
declare author "Grame";
declare license "BSD";
declare copyright "(c)GRAME 2006";
import("music.lib");
V0(g) = pow(10,g/-20.0);
K(fc) = tan(PI*fc/SR);
square(x) = x*x;
denom(fc,g) = 1 + sqrt(2*V0(g))*K(fc) + V0(g)*square(K(fc));
lfcut(fc, g) = TF2((1 + sqrt(2)*K(fc) + square(K(fc))) / denom(fc,g),
2 * (square(K(fc)) - 1) / denom(fc,g),
(1 - sqrt(2)*K(fc) + square(K(fc))) / denom(fc,g),
2 * (V0(g)*square(K(fc)) - 1) / denom(fc,g),
(1 - sqrt(2*V0(g))*K(fc) + V0(g)*square(K(fc))) / denom(fc,g)
);
freq = hslider("freq [unit:Hz][style:knob]", 100, 20, 5000, 1);
att = hslider("attenuation [unit:dB][style:knob]", 0, -96, 10, 0.1);
process = vgroup("low-freq shelving cut", lfcut(freq,att));
|
7bd302f0a4b83a6bcbcf138a6da808dd217e2feca7517004d829c9f586b997cc | HexHive/datAFLow | waveform2.dsp | process = waveform {10,20,30,40,50,60,70}, ((%(7)~+(3)):max(0):min(7-1)) : rdtable;
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/waveform2.dsp | faust | process = waveform {10,20,30,40,50,60,70}, ((%(7)~+(3)):max(0):min(7-1)) : rdtable;
|
|
1b2fc897ec3258da34003d0ffbbb4c9acdb6eb1367b19b28eef24094b7e22eb9 | HexHive/datAFLow | reverb_designer.dsp | el = library("effect.lib");
N = 16; // Feedback Delay Network (FDN) order (power of 2, 2 to 16)
NB = 5; // Number of T60-controlled frequency-bands (3 or more)
BSO = 3; // Order of each lowpass/highpass bandsplit (odd positive integer)
process = el.fdnrev0_demo(N,NB,BSO);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/reverb_designer.dsp | faust | Feedback Delay Network (FDN) order (power of 2, 2 to 16)
Number of T60-controlled frequency-bands (3 or more)
Order of each lowpass/highpass bandsplit (odd positive integer) | el = library("effect.lib");
process = el.fdnrev0_demo(N,NB,BSO);
|
28389a30995da34e07b48c0c5a8c6a58d84b283b1c8f55b5da0ab5e7266fcb0a | HexHive/datAFLow | test20.dsp | // sharing in second order trandfert function
// only two sample memories should be used
TF2(b0,b1,b2,a1,a2) = sub ~ conv2(a1,a2) : conv3(b0,b1,b2)
with {
conv3(k0,k1,k2,x) = k0*x + k1*x' + k2*x'';
conv2(k0,k1,x) = k0*x + k1*x';
sub(x,y) = y-x;
};
process = TF2(1.25,1.73,1,1.73,1);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/test20.dsp | faust | sharing in second order trandfert function
only two sample memories should be used |
TF2(b0,b1,b2,a1,a2) = sub ~ conv2(a1,a2) : conv3(b0,b1,b2)
with {
conv3(k0,k1,k2,x) = k0*x + k1*x' + k2*x'';
conv2(k0,k1,x) = k0*x + k1*x';
sub(x,y) = y-x;
};
process = TF2(1.25,1.73,1,1.73,1);
|
1e98abc841576c8dcea2ea4d32e3763012b17fef6801eb30b64ab48660eba9c2 | HexHive/datAFLow | gate_compressor.dsp | declare name "gate_compressor";
ol = library("oscillator.lib");
el = library("effect.lib");
fl = library("filter.lib");
process =
// ol.sawtooth_demo <:
// el.gate_demo : el.compressor_demo :> fl.spectral_level_demo <: _,_;
vgroup("[1]sawtooth", ol.sawtooth_demo) <:
vgroup("[2]gate", el.gate_demo) :
vgroup("[3]compressor", el.compressor_demo) :>
vgroup("[4]spectral", fl.spectral_level_demo) <:
_,_;
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/gate_compressor.dsp | faust | ol.sawtooth_demo <:
el.gate_demo : el.compressor_demo :> fl.spectral_level_demo <: _,_; | declare name "gate_compressor";
ol = library("oscillator.lib");
el = library("effect.lib");
fl = library("filter.lib");
process =
vgroup("[1]sawtooth", ol.sawtooth_demo) <:
vgroup("[2]gate", el.gate_demo) :
vgroup("[3]compressor", el.compressor_demo) :>
vgroup("[4]spectral", fl.spectral_level_demo) <:
_,_;
|
4aedb70caefdab2633280f64ae7f191ebfbf5d1a89be808b6bffd78e48baef82 | HexHive/datAFLow | test10.dsp | // partage des expressions lentes
process = +~_;
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/test10.dsp | faust | partage des expressions lentes |
process = +~_;
|
9f64b46e8bd0977cd566fc75d7eb2fec4364391cf5904bf48d2db32dc488e939 | HexHive/datAFLow | multirate_4.dsp | process = serialize; | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/multirate_4.dsp | faust | process = serialize; |
|
1855bd4784c46cb47afac4134d02aea9cbda36b52fa94d15bd9f484d70b6b816 | HexHive/datAFLow | PM-bug19.dsp | // pattern matching doesn't go inside groups
foo(hgroup("", x)) = x*2;
foo(x) = x*3;
process = foo(hgroup("", 10));
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/PM-bug19.dsp | faust | pattern matching doesn't go inside groups |
foo(hgroup("", x)) = x*2;
foo(x) = x*3;
process = foo(hgroup("", 10));
|
41b15fc4e3ba8f65087782cdd158d6d6d262fa64c1705a0bb753caa3b3a4029a | HexHive/datAFLow | PM-bug11.dsp | //ERROR: undefined symbol BoxIdent[f]
f = *(2);
dup(x) = (x,x);
faa(1, dup(f)) = f;
process = faa(1,dup(6));
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/PM-bug11.dsp | faust | ERROR: undefined symbol BoxIdent[f] |
f = *(2);
dup(x) = (x,x);
faa(1, dup(f)) = f;
process = faa(1,dup(6));
|
1fb524511bca3268028b41eab32b0f5b7fa2abb3c08ed4377195bd8a70c84edd | HexHive/datAFLow | virtual_analog_oscillators.dsp | ol = library("oscillator.lib");
fl = library("filter.lib");
el = library("effect.lib");
process =
vgroup("[1]", ol.virtual_analog_oscillator_demo) :
vgroup("[2]", el.moog_vcf_demo) :
vgroup("[3]", fl.spectral_level_demo) <:
_,_;
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/virtual_analog_oscillators.dsp | faust | ol = library("oscillator.lib");
fl = library("filter.lib");
el = library("effect.lib");
process =
vgroup("[1]", ol.virtual_analog_oscillator_demo) :
vgroup("[2]", el.moog_vcf_demo) :
vgroup("[3]", fl.spectral_level_demo) <:
_,_;
|
|
49cd6396cf1420e95cc58c0fa64a1e423b16d49a18a96b8aa888f080a81538d3 | HexHive/datAFLow | test18.dsp | // example of simplification
xchg = _,_ <: !,_,_,!;
Z1 = xchg~_ : !,_;
process = Z1; | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/test18.dsp | faust | example of simplification |
xchg = _,_ <: !,_,_,!;
Z1 = xchg~_ : !,_;
process = Z1; |
312c2539cd2afe6dfe93e9c2824a9779bcd9bd54de617788737ab4bf8b2e9b97 | HexHive/datAFLow | PM-bug7.dsp | n = 666;
fact(0) = 1;
fact(n) = n*fact(n-1);
ack(0) = 1;
ack(1) = 1;
ack(n) = 1 + ack(n-1) + ack(n-2);
process = ack (15), fact(10);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/PM-bug7.dsp | faust | n = 666;
fact(0) = 1;
fact(n) = n*fact(n-1);
ack(0) = 1;
ack(1) = 1;
ack(n) = 1 + ack(n-1) + ack(n-2);
process = ack (15), fact(10);
|
|
945714a984b393fc7dc7d4c1b444b5c4cb5019fa4888a34003d3a5983fb03374 | HexHive/datAFLow | test-max-int.dsp | //-------------------------------------------------
// Check that min and max are able to bound
// infinite intervals
//--------------------------------------------------
import("music.lib");
clip(lo,hi) = max(lo) : min(hi);
smooth(c) = *(1-c) : +~*(c);
d = hslider("delay",0,0,100,1) : smooth(0.999) : clip(0,100);
process = @(d);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/test-max-int.dsp | faust | -------------------------------------------------
Check that min and max are able to bound
infinite intervals
-------------------------------------------------- |
import("music.lib");
clip(lo,hi) = max(lo) : min(hi);
smooth(c) = *(1-c) : +~*(c);
d = hslider("delay",0,0,100,1) : smooth(0.999) : clip(0,100);
process = @(d);
|
923bb504b7db6c06ef201ce8f7dfb2f7ce8259dae88014f2e1760d7e20714a4e | HexHive/datAFLow | test19.dsp | // example of simplification
foo = +~@(1000);
process = foo; | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/test19.dsp | faust | example of simplification |
foo = +~@(1000);
process = foo; |
ff4ebebbae0461380fefde76ad6ef6b75013ea6602135159a148ea5004e0c185 | HexHive/datAFLow | k-alias.dsp |
vol = hslider("volume [osc:/vol 0 10]", 0.1, 0, 1, 0.1);
process = 1 * vol;
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/k-alias.dsp | faust |
vol = hslider("volume [osc:/vol 0 10]", 0.1, 0, 1, 0.1);
process = 1 * vol;
|
|
d676237d08b7408118ca5c311329558b6fb898a0da64cbc4afacba2a327cb70c | HexHive/datAFLow | PM-bug10.dsp | // additional arguments of pm rule where thrown away
cond(1,x,y) = x;
cond(b,x,y) = y;
fact(n) = cond(n>0, \(n).(n*fact(n-1)), \(n).(1)) (n);
fact2(n) = cond(n>0, \(n).(n*fact2(n-1)), \(n).(1), n);
process = fact(10), fact(-10), fact2(10);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/PM-bug10.dsp | faust | additional arguments of pm rule where thrown away |
cond(1,x,y) = x;
cond(b,x,y) = y;
fact(n) = cond(n>0, \(n).(n*fact(n-1)), \(n).(1)) (n);
fact2(n) = cond(n>0, \(n).(n*fact2(n-1)), \(n).(1), n);
process = fact(10), fact(-10), fact2(10);
|
fc484ec27717de4dc1d47baa560a5870a0411e1e10717134be8d279dd7a354cf | HexHive/datAFLow | error01.dsp | //ERROR : inconsistent number of parameters in pattern-matching rule: (x,y) => y;
foo = case { (x,y) => y; (x,x) => x+1; };
foo(x,y) = y;
process = foo(1,1), foo(3,4);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/error01.dsp | faust | ERROR : inconsistent number of parameters in pattern-matching rule: (x,y) => y; |
foo = case { (x,y) => y; (x,x) => x+1; };
foo(x,y) = y;
process = foo(1,1), foo(3,4);
|
ec484f386e7f8cb541f32d91d9fb148e6a8f254e7774466a3f67b027caac5c98 | HexHive/datAFLow | spat.dsp | declare name "spat";
declare version "1.0";
declare author "Grame";
declare license "BSD";
declare copyright "(c)GRAME 2006";
//==========================================================
//
// GMEM SPAT
// implementation of L. Pottier Spatializer
//
//==========================================================
//------------------------------------------------------
// Volume d'une voie de sortie
//------------------------------------------------------
// i = numero de voie (entre 0 et n-1)
// n = nombre total de voies
// a = angle de la source (entre 0 et 1)
// d = distance de la source (entre 0 et 1)
//------------------------------------------------------
scaler(i,n,a,d) = sqrt(max(0.0, 1.0 - abs( fmod(a+0.5+float(n-i)/n, 1.0) - 0.5 ) * (n*d))) * (d/2.0+0.5);
//------------------------------------------------------
// spatialisateur a N sorties
// n = nombre de sorties
// a = angle de la source (entre 0 et 1)
// d = distance de la source (entre 0 et 1)
//
// utilise le constructeur parametrique : par(i,n,E(i))
// qui met en parallele n expressions E(0), E(1), ...E(n-1)
//------------------------------------------------------
smooth(c) = *(1-c) : +~*(c);
spat(n,a,d) = _ <: par(i, n, *( scaler(i, n, a, d) : smooth(0.9999) ));
//------------------------------------------------------
// EXEMPLE : une entree mono spatialisee sur 8 sorties
//------------------------------------------------------
angle = hslider("angle", 0.0, 0, 1, 0.01);
distance = hslider("distance", 0.5, 0, 1, 0.01);
process = vgroup("Spatializer 1x8", spat(8, angle, distance));
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/spat.dsp | faust | ==========================================================
GMEM SPAT
implementation of L. Pottier Spatializer
==========================================================
------------------------------------------------------
Volume d'une voie de sortie
------------------------------------------------------
i = numero de voie (entre 0 et n-1)
n = nombre total de voies
a = angle de la source (entre 0 et 1)
d = distance de la source (entre 0 et 1)
------------------------------------------------------
------------------------------------------------------
spatialisateur a N sorties
n = nombre de sorties
a = angle de la source (entre 0 et 1)
d = distance de la source (entre 0 et 1)
utilise le constructeur parametrique : par(i,n,E(i))
qui met en parallele n expressions E(0), E(1), ...E(n-1)
------------------------------------------------------
------------------------------------------------------
EXEMPLE : une entree mono spatialisee sur 8 sorties
------------------------------------------------------ | declare name "spat";
declare version "1.0";
declare author "Grame";
declare license "BSD";
declare copyright "(c)GRAME 2006";
scaler(i,n,a,d) = sqrt(max(0.0, 1.0 - abs( fmod(a+0.5+float(n-i)/n, 1.0) - 0.5 ) * (n*d))) * (d/2.0+0.5);
smooth(c) = *(1-c) : +~*(c);
spat(n,a,d) = _ <: par(i, n, *( scaler(i, n, a, d) : smooth(0.9999) ));
angle = hslider("angle", 0.0, 0, 1, 0.01);
distance = hslider("distance", 0.5, 0, 1, 0.01);
process = vgroup("Spatializer 1x8", spat(8, angle, distance));
|
ffddae027837b52fd0b13a208f1f09f71dda90b3864817b0785e03c481a3c53d | HexHive/datAFLow | rateconflict_1.dsp | up2 = vectorize(1) <: # : serialize;
dw3 = vectorize(3) : [0];
process = up2 ~ dw3; | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/rateconflict_1.dsp | faust | up2 = vectorize(1) <: # : serialize;
dw3 = vectorize(3) : [0];
process = up2 ~ dw3; |
|
09f7e1eeb7ffbdd707f20094ea9a16137e87d42bb8cac7684755d92c88eab218 | HexHive/datAFLow | 20100120-bug.dsp | // BUG : the compiler reports :
// faust: extended/minprim.cpp:40: virtual CTree* MinPrim::computeSigOutput(const std::vector<CTree*, std::allocator<CTree*> >&): Assertion `args.size() == arity()' failed.
// like it was trying to evaluate 2:min
process = vslider("2:min", 0, 0, 1, 0.01);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/20100120-bug.dsp | faust | BUG : the compiler reports :
faust: extended/minprim.cpp:40: virtual CTree* MinPrim::computeSigOutput(const std::vector<CTree*, std::allocator<CTree*> >&): Assertion `args.size() == arity()' failed.
like it was trying to evaluate 2:min |
process = vslider("2:min", 0, 0, 1, 0.01);
|
375d484fec2fc39fd33e3c25fdee7729e94cc75803cfb0217bba256027373f3f | HexHive/datAFLow | HPF.dsp | import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = HPF(x,F,G,Q);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/HPF.dsp | faust | import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = HPF(x,F,G,Q);
|
|
cac94e82caa197e1e27760511b555d38e6d0548734a56949aa54a22c04c09c83 | HexHive/datAFLow | waveform4.dsp | process = (waveform {10,20,30,40,50,60,70}, %(7)~+(3) : rdtable), (waveform {1.1,2.2,3.3,4.4,5.5,6.6,7.7}, %(7)~+(3) : rdtable);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/waveform4.dsp | faust | process = (waveform {10,20,30,40,50,60,70}, %(7)~+(3) : rdtable), (waveform {1.1,2.2,3.3,4.4,5.5,6.6,7.7}, %(7)~+(3) : rdtable);
|
|
87f51591d6b50b76908a630bdac131865d820a99429094703dbd5eb9f768f297 | HexHive/datAFLow | multirate_2.dsp | process = [](0); | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/multirate_2.dsp | faust | process = [](0); |
|
3a176ba03b1f4de75d12424aaf7997852f876ccc74b1353b47d59cb50e68a829 | HexHive/datAFLow | error08.dsp | // WARNING : shadowed pattern-matching rule: (x,x) => x,1:+; previous rule was: (x,y) => y;
foo(x,y) = y;
foo(x,x) = x+1;
process = foo(1,1), foo(3,4);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/error08.dsp | faust | WARNING : shadowed pattern-matching rule: (x,x) => x,1:+; previous rule was: (x,y) => y; |
foo(x,y) = y;
foo(x,x) = x+1;
process = foo(1,1), foo(3,4);
|
271a7294a42cefd5ef69ba0c69e1ea621492f1328f6de18d5b20acd07f4cca89 | HexHive/datAFLow | ratepass_4.dsp | up2 = vectorize(1) <: # : serialize;
dw2 = vectorize(2) : [0];
process = (up2,up2:+) ~ dw2; | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/ratepass_4.dsp | faust | up2 = vectorize(1) <: # : serialize;
dw2 = vectorize(2) : [0];
process = (up2,up2:+) ~ dw2; |
|
6886c32862d2c74180b05475ce4cb8a872cb938e6dad2f6d84c79964b0d1f6e4 | HexHive/datAFLow | badfaust.dsp | process = foo;
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/badfaust.dsp | faust | process = foo;
|
|
40063e15da1996553c9c42b103dee52821a1e71b15c9e554a558d6b3451ecc18 | HexHive/datAFLow | t1.dsp | main = +;
process = 3.14;
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/t1.dsp | faust | main = +;
process = 3.14;
|
|
094b8efcbb761891e6ecabec15051d17a001389841364cc71fe7724231cb926a | HexHive/datAFLow | 20091213-empty-label-bug.dsp | // the following expression creates a segmentation fault
process = hslider("",0,-8,8,1);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/20091213-empty-label-bug.dsp | faust | the following expression creates a segmentation fault |
process = hslider("",0,-8,8,1);
|
75c18775888f531882e839b6a8b1b6cfe1ab02831e512b042638a90c618ae5c6 | HexHive/datAFLow | dimensioncheck_2.dsp | process = vectorize(4):[](0); | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/dimensioncheck_2.dsp | faust | process = vectorize(4):[](0); |
|
0398528db7a8dd41c01f159e7413aaf2adc43da145607cbde6df9bbbd6138c75 | HexHive/datAFLow | dimensioncheck_4.dsp | process = * ~ (vectorize(4) : serialize);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/dimensioncheck_4.dsp | faust | process = * ~ (vectorize(4) : serialize);
|
|
acb665f86f4ae1ecde8af60dae3729753bad82c36f0450a20d2ad56e00ec209c | HexHive/datAFLow | slowdelay1.dsp | // Faust Template
process = fvariable(float toto, "bidule.h"), (fvariable(float toto, "bidule.h")' <: _,_);
//process = 1' <: _,_;
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/slowdelay1.dsp | faust | Faust Template
process = 1' <: _,_; | process = fvariable(float toto, "bidule.h"), (fvariable(float toto, "bidule.h")' <: _,_);
|
ab599c98f7f804a9f40248fd43c4e9540f0c6a94ef9c47423bd4adc443560348 | HexHive/datAFLow | multirate_6.dsp | process = * ~ (vectorize(4) : [](0)));
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/multirate_6.dsp | faust | process = * ~ (vectorize(4) : [](0)));
|
|
7cba4f07abe6e781fca308f366548722e1c5027d50d24ca6add9ebc5151275b7 | HexHive/datAFLow | logical.dsp | // Test logical operators
land = int(_*12345) & int(_*67895);
lor = int(_*12345) | int(_*67895);
lxor = int(_*12345) xor int(_*67895);
process = land, lor, lxor, select2(land, 100, 200), select2(lor, 10, 20), select2(lxor, 1, 2);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/logical.dsp | faust | Test logical operators |
land = int(_*12345) & int(_*67895);
lor = int(_*12345) | int(_*67895);
lxor = int(_*12345) xor int(_*67895);
process = land, lor, lxor, select2(land, 100, 200), select2(lor, 10, 20), select2(lxor, 1, 2);
|
afee026f03643632640e5c777b26069d3db82531490ca7bb1fdccede856d03bf | HexHive/datAFLow | v3.dsp | // route visualisation test
//process = +: _: abs;
foo = route(3,2,1,2,3,1) : *;
process = (_,_,_) ~ foo; | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/v3.dsp | faust | route visualisation test
process = +: _: abs; |
foo = route(3,2,1,2,3,1) : *;
process = (_,_,_) ~ foo; |
a6eed0ba165146f17f3f3c57d13fdb1a35cd9b83e6550af5de675152ac2a3866 | HexHive/datAFLow | ratepass_9.dsp | up2 = vectorize(1) <: # : serialize;
dw2 = vectorize(2) : [0];
process = (up2,up2) ~ (dw2,dw2); | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/ratepass_9.dsp | faust | up2 = vectorize(1) <: # : serialize;
dw2 = vectorize(2) : [0];
process = (up2,up2) ~ (dw2,dw2); |
|
1287fea31cae93f915ff7521affe476fdee2a91d42d96948551f150885d16f46 | HexHive/datAFLow | numsimplerr8.dsp | process = (0,1:+), (0,2:-), (0,3:*) : -; | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/numsimplerr8.dsp | faust | process = (0,1:+), (0,2:-), (0,3:*) : -; |
|
a877508aa62f006b98d96be4d11cba2e44b6c7cf51b723e89a7183beab015a0d | HexHive/datAFLow | error02.dsp | // ERROR : pattern matching failed, no rule of case {(2) => 2; (1) => 1; } matches argument list (3)
foo(1) = 1;
foo(2) = 2;
process = foo(3);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/error02.dsp | faust | ERROR : pattern matching failed, no rule of case {(2) => 2; (1) => 1; } matches argument list (3) |
foo(1) = 1;
foo(2) = 2;
process = foo(3);
|
c009be90a2ad3e691c7254492a5a352817ba852543f5e7d4dcd4255d00fefe8a | HexHive/datAFLow | waveform3.dsp | process = waveform {1.1,2.2,3.3,4.4,5.5,6.6,7.7}, %(7)~+(3) : rdtable;
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/waveform3.dsp | faust | process = waveform {1.1,2.2,3.3,4.4,5.5,6.6,7.7}, %(7)~+(3) : rdtable;
|
|
efb13509c2d3584075fa4286ab958450ec4fe7afe143806d7d51653dfb8d5650 | HexHive/datAFLow | test12.dsp |
t(x,y) = x-y, y-x;
process = t~_; | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/test12.dsp | faust |
t(x,y) = x-y, y-x;
process = t~_; |
|
3e976b9c816faac60d8a0df4fbb18b74006493c7694174225ca19efcc5dc56a7 | HexHive/datAFLow | numsimplerr2.dsp | process = (0,0) + 0; | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/numsimplerr2.dsp | faust | process = (0,0) + 0; |
|
bf2c300ba90db81ddc8dcf441259b57576ab9085789d2aa7eb6d6cbe68269fe2 | HexHive/datAFLow | waveform6.dsp | w1(x) = waveform {10,20,30,40,50,60},int(x):rdtable;
process(x,y) = y*(sin(w1(4*abs(x)))); | https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/waveform6.dsp | faust | w1(x) = waveform {10,20,30,40,50,60},int(x):rdtable;
process(x,y) = y*(sin(w1(4*abs(x)))); |
|
ca6e624a3fe95781756e7698008f9e3e80f6289e77a65a75b121c13816c37d4e | HexHive/datAFLow | test25.dsp | //This program crash on faust 0.9.9.1
v = hslider("volume",0,0,100,1);
process = +(v-v'), *(3*v);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/test25.dsp | faust | This program crash on faust 0.9.9.1 |
v = hslider("volume",0,0,100,1);
process = +(v-v'), *(3*v);
|
501db5c8a023477273a5a23b802fc4a6d724e715793188c1e670fbdc03fe9960 | HexHive/datAFLow | notch.dsp | import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = notch(x,F,G,Q);
| https://raw.githubusercontent.com/HexHive/datAFLow/b9f3cbc42b1970f8655817c9fb67b1eaba3ae4c0/evaluation/ddfuzz/seeds/faust/notch.dsp | faust | import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = notch(x,F,G,Q);
|
|
6c1490751725a16afe9de5086787ded9204dc54e6efa56b1673b2e35dbf9accc | nyanpasu64-backup/snes-echo | lagrange-delay.dsp | declare name "lagrange delay";
declare version "0.";
declare author "nyanpasu64";
declare license "bsd";
declare copyright "nyanpasu64";
import("delays.lib");
snes2sr = _ * SR / 32000.0;
PRERINGING = 32; // corrupted output at 256
delayt = vslider("Delay samples", 0.5, 0, 1, 0.01) + PRERINGING;
process(l, r) =
fdelaylti(PRERINGING, 2*PRERINGING, delayt, l),
fdelay(2*PRERINGING, delayt, r);
| https://raw.githubusercontent.com/nyanpasu64-backup/snes-echo/8378166012807e96eca69cb2bc3ee9cf5537a69f/snes-echo/test/lagrange-delay.dsp | faust | corrupted output at 256 | declare name "lagrange delay";
declare version "0.";
declare author "nyanpasu64";
declare license "bsd";
declare copyright "nyanpasu64";
import("delays.lib");
snes2sr = _ * SR / 32000.0;
delayt = vslider("Delay samples", 0.5, 0, 1, 0.01) + PRERINGING;
process(l, r) =
fdelaylti(PRERINGING, 2*PRERINGING, delayt, l),
fdelay(2*PRERINGING, delayt, r);
|
956cd50b5c9dc28e4d03639662fa1e5d7c11ec972edc6e187c0f360dc082b0e9 | notam02/studio-3-resources | Sirius_5H5P_Slepian24_2_band.dsp | // Faust Decoder Configuration File
// Written by Ambisonic Decoder Toolbox, version 8.0
// run by thomj on thomjmbp.local (MACI64) at 02-Sep-2021 13:03:28
//------- decoder information -------
// decoder file = ../decoders/Sirius_5H5P_Slepian24_2_band.dsp
// description = Sirius_5H5P_Slepian24_2_band
// speaker array name = Sirius
// horizontal order = 5
// vertical order = 5
// coefficient order = acn
// coefficient scale = SN3D
// input scale = SN3D
// mixed-order scheme = HP
// input channel order: W Y Z X V T R S U Q O M K L N P 44S 43S 42S 41S 40C 41C 42C 43C 44C 55S 54S 53S 52S 51S 50C 51C 52C 53C 54C 55C
// output speaker order: A.1 A.2 A.3 A.4 A.5 A.6 A.7 A.8 A.9 A.10 A.11 A.12 B.1 B.2 B.3 B.4 B.5 B.6 B.7 B.8 C.1 C.2 C.3 C.4
//-------
// start decoder configuration
declare name "Sirius_5H5P_Slepian24_2_band";
// bands
nbands = 2;
// decoder type
decoder_type = 2;
// crossover frequency in Hz
xover_freq = hslider("xover [unit:Hz]",400,200,800,20): dezipper;
// lfhf_balance
lfhf_ratio = hslider("lf/hf [unit:dB]", 0, -3, +3, 0.1): mu.db2linear : dezipper;
// decoder order
decoder_order = 5;
// ambisonic order of each input component
co = ( 0, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5);
// use full or reduced input set
input_full_set = 1;
// delay compensation
delay_comp = 1;
// level compensation
level_comp = 1;
// nfc on input or output
nfc_output = 1;
nfc_input = 0;
// enable output gain and muting controls
output_gain_muting = 1;
// number of speakers
ns = 24;
// radius for each speaker in meters
rs = ( 1.948, 1.963, 1.963, 1.873, 1.98, 1.976, 1.948, 1.941, 1.948, 1.791, 1.911, 1.925, 1.947, 1.942, 1.955, 1.952, 1.953, 1.946, 1.948, 1.946, 1.668, 1.667, 1.655, 1.658);
// per order gains, 0 for LF, 1 for HF.
// Used to implement shelf filters, or to modify velocity matrix
// for max_rE decoding, and so forth. See Appendix A of BLaH6.
gamma(0) = ( 1, 1, 1, 1, 1, 1);
gamma(1) = ( 1, 0.9324695142, 0.8042490924, 0.6282499246, 0.4220050093, 0.2057123111);
// gain matrix
s(00,0) = ( 0.0296372919, -1.95843e-05, 0.0057896039, 0.0730881339, 3.26118e-05, -0.0003390931, -0.05151281, 0.0049144257, 0.1142110655, 0.0001223299, 0.0001640309, -0.0013281401, 0.0147333754, -0.090965776, -0.0138392423, 0.1596613673, 0.000279145, 0.000232145, 5.06822e-05, -0.0022068839, 0.0745055026, -0.0155725042, -0.1212073751, 0.0529662964, 0.2253745041, 5.611e-07, 0.0001969747, 0.0001840117, -0.0002336216, -0.0016392679, 0.0010822545, 0.0782302385, -0.0069219639, -0.0773437089, 0.1574280886, 0.2375647373);
s(01,0) = ( 0.0261186227, -0.0384821979, -0.0026700524, 0.0615301193, -0.1066025357, -0.0081986993, -0.0633183665, 0.0006245729, 0.0569868605, -0.1221607634, 0.0236856998, 0.0342946232, 0.0015103845, -0.0863221092, -0.007226398, -0.0211537598, -0.0819131686, 0.0188155067, 0.0931159517, -0.0064744338, 0.0680691298, -0.0240608427, -0.0607875053, -0.0415849721, -0.1126725657, -0.1185551038, -0.0578008528, 0.1336590711, -0.0595906163, -0.0491598025, 0.004679673, 0.0613975014, -0.0033029515, -0.0325406008, -0.0816904764, -0.2060668965);
s(02,0) = ( 0.0262932656, -0.0623729279, -0.0013404254, 0.0385977104, -0.1074214386, -0.0017461412, -0.0631923362, 0.0081089865, -0.0574803782, -0.0212823814, 0.0216012699, 0.0862049807, -0.0020248598, -0.0348408669, 0.0063579719, -0.123126755, 0.0830442996, -0.0410869315, 0.0917179618, 0.02515023, 0.067928554, 0.0057810415, 0.0600229513, 0.0177046665, -0.1127017557, 0.2055124032, 0.0585990192, -0.0318008758, -0.0588229017, -0.0603674083, 0.0122570694, 0.0487893599, 0.0029948652, 0.1331310113, -0.0815016673, 0.1191085842);
s(03,0) = ( 0.0298471239, -0.0739267003, 0.0059873571, 0.0002646677, 5.47566e-05, -0.0063336416, -0.051575084, 0.0006359773, -0.114773551, 0.1599888301, -2.25169e-05, 0.0901044905, 0.0146329153, 0.0010758943, 0.0131211309, 6.14227e-05, 4.82513e-05, 0.0535965125, 8.48563e-05, 0.0158672329, 0.0738630796, 0.0012676982, 0.1203359764, 0.0001168545, 0.2253744742, -0.2375654514, 3.40479e-05, -0.0768474151, 0.0003176278, -0.0775886392, -0.0002660289, 0.0008140198, 0.0059272084, 9.26243e-05, 0.1573995721, -1.402e-07);
s(04,0) = ( 0.0261146022, -0.0622756437, -0.0031510053, -0.0385932781, 0.107464065, -0.0017517185, -0.0649788977, -0.0080209273, -0.0576481506, -0.0209040605, -0.0220042835, 0.0857818669, -0.001054449, 0.0351909849, 0.0059535828, 0.1230738861, -0.0832291226, -0.0409583117, -0.0916520313, 0.0244054855, 0.0658667267, -0.0051969043, 0.0597630959, -0.0178058421, -0.1126727362, 0.2059628252, -0.058729437, -0.0319784112, 0.0599890332, -0.0608965076, 0.0037223657, -0.0483548981, 0.0031488622, -0.1332100292, -0.0816907623, -0.1191080472);
s(05,0) = ( 0.0263090817, -0.0386540968, -0.0018932011, -0.0621640045, 0.1066370268, -0.0083226593, -0.0631328956, -0.0016812395, 0.0574758651, -0.1229496387, -0.0216167324, 0.0346241893, 5.0112e-05, 0.0857366991, -0.006092116, 0.0209063671, 0.0829653997, 0.0179030443, -0.0930619144, -0.0057338885, 0.0679656867, 0.0243918607, -0.0600299994, 0.0411053653, -0.1127017659, -0.1190083296, 0.0585433446, 0.133220572, 0.054824947, -0.0485961981, 0.0077798797, -0.0608329097, -0.0036464364, 0.032161384, -0.081624962, 0.2060638392);
s(06,0) = ( 0.0296292503, -8.45193e-05, 0.0053092248, -0.0732778199, 0.000433952, -0.0005055268, -0.0525692073, -0.0047261087, 0.114708367, 3.60551e-05, -0.0004677266, -0.0016375109, 0.0136728759, 0.0929510736, -0.0132181776, -0.160037763, -0.000220762, 6.77051e-05, 0.0006721489, -0.0025953813, 0.0731187654, 0.0193302173, -0.120436959, -0.0536918813, 0.2253744393, -4.437e-07, -0.0001557775, 5.52485e-05, 0.0032062799, -0.0018969273, -0.0007637236, -0.0753274363, -0.006009727, 0.0767743639, 0.1573937862, -0.2375649069);
s(07,0) = ( 0.0261205923, 0.0384593354, -0.0031078675, -0.0622781311, -0.1068828114, 0.0079170545, -0.0651097422, -0.0013079841, 0.0575428135, 0.1232038502, 0.0206582294, -0.0351481709, -0.0015090791, 0.0871422337, -0.0062338606, 0.0215031639, -0.0828331376, -0.017415918, 0.0926812224, 0.0052546091, 0.0656760177, 0.0262417015, -0.0599262268, 0.0413671422, -0.1126726849, 0.1190085954, -0.0584500158, -0.1328366827, -0.0537239127, 0.0483358275, 0.004168483, -0.0597293753, -0.0029896384, 0.0319551473, -0.081676188, 0.2054113764);
s(08,0) = ( 0.0255886245, 0.0612835096, -0.0030966295, -0.0382018252, -0.105955888, -7.13922e-05, -0.0642952359, -0.0077796798, -0.0567538696, 0.0214230829, 0.0236642146, -0.0874164032, -0.001292934, 0.034696871, 0.007536571, 0.1219404243, 0.0817241461, 0.0419583945, 0.0939876254, -0.0250985823, 0.0683379839, -0.0060797979, 0.0611484532, -0.019094391, -0.1127019267, -0.2059658503, 0.0576674719, 0.032768133, -0.056680282, 0.0608769175, 0.0106223338, -0.0488749835, 0.0036848631, -0.1338109812, -0.0815545417, -0.1184531284);
s(09,0) = ( 0.0292329849, 0.0721792154, 0.0047768655, 0.0003244608, 0.0002774032, 0.002872546, -0.0524617876, 0.0008187591, -0.1138610633, -0.1594746061, -0.0008021741, -0.0940519994, 0.0143747649, 0.0014861627, 0.0145102711, 0.0001401795, 1.00323e-05, -0.0526110018, 0.0004297569, -0.0188954351, 0.0743185386, 0.0018371873, 0.1217495963, 0.000267683, 0.2253744692, 0.2375655685, 7.0791e-06, 0.0776246539, 0.0032495256, 0.0762050347, 0.000602042, 0.0012096198, 0.0070098241, 0.000211882, 0.1574153715, -2.91e-08);
s(10,0) = ( 0.0261495081, 0.0613897426, -0.0031593822, 0.038114176, 0.106003471, 0.0001899268, -0.063652363, 0.007725573, -0.0565886866, 0.0218238701, -0.0237412133, -0.0867503659, 0.002432507, -0.0343859978, 0.0081058642, -0.1218009735, -0.0813214995, 0.0421230153, -0.0939136791, -0.0240157804, 0.0675410277, 0.0067876456, 0.061404411, 0.0193596738, -0.1126724891, -0.2055089403, -0.05738335, 0.0326137674, 0.0570936424, 0.0617099951, 0.0010865432, 0.0494476261, 0.0031280119, 0.1340198233, -0.0817826635, 0.1184519585);
s(11,0) = ( 0.0257841371, 0.038345021, -0.0027417152, 0.062049985, 0.1070729337, 0.0078414546, -0.0646029742, 0.0011321837, 0.0570774228, 0.1226112238, -0.0226862138, -0.0349687052, -0.0025925821, -0.0864725918, -0.0071824574, -0.0217471873, 0.0819988296, -0.0179521269, -0.092387165, 0.005621003, 0.0674061078, -0.024627907, -0.0606472639, -0.0418335505, -0.1127018911, 0.118555276, 0.0578612983, -0.1329783255, 0.0594745788, 0.0485905792, 0.0110427943, 0.0610510506, -0.0029730947, -0.0323199575, -0.0815310775, -0.2054089523);
s(12,0) = ( 0.026622357, -0.0238751201, 0.0434875818, 0.070961251, -0.0437651961, -0.0317668771, -0.0158513615, 0.1135620978, 0.0612059225, -0.0904039053, -0.1523645722, 0.0119715194, -0.0950014581, 0.0451852102, 0.1269268163, 0.0370906731, -0.0964615919, -0.1730973834, -0.0678561063, 0.0699382398, -0.09206087, -0.0715934225, 0.0948197831, 0.0716603998, -1.24919e-05, -0.0001938912, -0.0680667392, -0.1363552225, 0.1522616963, 0.0643700149, -0.0199755823, -0.0890307275, -0.0073360604, 0.0565519926, 0.0006486562, 0.0002802689);
s(13,0) = ( 0.026861126, -0.0703661223, 0.0423599389, 0.0241881661, -0.0435519199, -0.112716009, -0.0163953468, 0.0324708229, -0.0625077655, 0.0375466632, -0.1524329222, -0.0447879392, -0.0917660231, -0.0113748147, -0.1273867985, -0.0911935225, 0.0964229127, 0.0718991785, -0.0674150104, 0.0714270165, -0.0935573353, -0.069985437, -0.0968365896, -0.1752471421, 1.24869e-05, 0.0001938135, 0.0680394457, 0.0564427132, 0.1536713449, 0.0887839701, -0.0311294984, -0.0647417632, 0.0021860252, -0.1383476216, 0.0003797337, -0.0002801565);
s(14,0) = ( 0.0275112586, -0.0705203764, 0.0452669321, -0.0247724134, 0.0434338254, -0.1128147942, -0.0131458857, -0.0341035531, -0.0621195637, 0.0371146762, 0.1528906188, -0.0444291632, -0.0911414658, 0.0080201263, -0.1267077387, 0.0911285243, -0.0963987407, 0.0715844662, 0.067232073, 0.0722061531, -0.0908240173, 0.0655280603, -0.0962352386, 0.1751254624, -1.24838e-05, -0.0001937649, -0.0680223891, 0.0564345411, -0.1553317394, 0.0893782526, -0.0232591866, 0.0617050989, 0.0024378552, 0.1382492342, 0.0005476334, 0.0002800863);
s(15,0) = ( 0.027005504, -0.0241391063, 0.0438043025, -0.0711112911, 0.0443339059, -0.0322850455, -0.0152116371, -0.1143085009, 0.0618925326, -0.0909872831, 0.1518066438, 0.0115677658, -0.0931759908, -0.0474463496, 0.1264395925, -0.0370242157, 0.0964707161, -0.1747298296, 0.0687371529, 0.0699555534, -0.092364097, 0.0680792959, 0.0958835235, -0.0715301969, 1.24931e-05, 0.0001939096, 0.0680731775, -0.1378825078, -0.1481906552, 0.0645828554, -0.0241309844, 0.0864804718, -0.0028907656, -0.0564515636, 0.0005583259, -0.0002802954);
s(16,0) = ( 0.0280552283, 0.0250847552, 0.0461374141, -0.0716511887, -0.0456736645, 0.0349967468, -0.0110290026, -0.1161144711, 0.0623280903, 0.0907956578, -0.1499045835, -0.005843407, -0.0868793947, -0.0510429024, 0.1271574343, -0.037763741, -0.0966103006, 0.1743680233, -0.0708127782, -0.0622427535, -0.0894519448, 0.0637805054, 0.0965582378, -0.0721879705, -1.25112e-05, -0.0001941902, -0.0681716733, 0.1375932645, 0.1371987526, -0.0592955037, -0.0276372423, 0.0838288596, -0.002503835, -0.05661651, 0.0004134598, 0.000280701);
s(17,0) = ( 0.0281413555, 0.0721894985, 0.0464475035, -0.0248894249, -0.0456560458, 0.1168447692, -0.011212947, -0.0344616249, -0.0614634934, -0.0375043647, -0.1496634455, 0.051297292, -0.0881311177, 0.0064503105, -0.1276979155, 0.0900541341, 0.0960666134, -0.072326066, -0.0706749127, -0.0640701233, -0.0900611659, 0.0624599205, -0.0952188102, 0.1723112035, 1.24408e-05, 0.0001930973, 0.0677880282, -0.057022584, 0.1369273258, -0.0841387112, -0.0263940116, 0.0591811147, 0.0079282983, 0.1356748372, 0.0004736787, -0.0002791213);
s(18,0) = ( 0.0267838761, 0.0715170519, 0.0452399825, 0.024133676, 0.0444997337, 0.1153011317, -0.0135307562, 0.0323469679, -0.0613840996, -0.0377300822, 0.1512693857, 0.0486959728, -0.094533614, -0.0108010755, -0.1282294071, -0.0900581578, -0.0961194605, -0.0722494914, 0.0688835313, -0.0672176562, -0.0893976856, -0.0682447681, -0.0950958625, -0.1723146767, -1.24476e-05, -0.0001932036, -0.067825319, -0.0567210316, -0.1463290115, -0.0862177247, -0.0126824047, -0.0631231633, 0.0095678746, -0.1356806596, 0.0008179936, 0.0002792749);
s(19,0) = ( 0.0275877678, 0.0245975218, 0.0450493123, 0.0710134092, 0.0437174151, 0.033853461, -0.0126028409, 0.1139990135, 0.0620739111, 0.090265156, 0.1521485997, -0.0075339241, -0.0888111287, 0.0459546073, 0.1277488027, 0.0380492322, 0.0965676986, 0.1728351673, 0.0677821452, -0.0639366745, -0.090438473, -0.0710610102, 0.096164514, 0.0727412122, 1.25057e-05, 0.0001941045, 0.0681416118, 0.1361450983, -0.151976896, -0.0602489399, -0.0269969677, -0.088947536, -0.0051230123, 0.0570483424, 0.0004592873, -0.0002805772);
s(20,0) = ( 0.0311086105, -0.0210808865, 0.0783812314, 0.0208876532, -0.0443969769, -0.0585989747, 0.1129873468, 0.0581996921, 0.0013886919, -0.0011209671, 0.0611154621, -0.119714951, 0.1266335231, 0.1191973014, 0.002833572, 0.001794521, -0.0006237558, -0.002259213, -0.0687798589, -0.1585850954, 0.0676939358, 0.1581091619, 0.0021513521, 0.0033349604, -8.08e-08, -1.2538e-06, -0.0004401443, -0.0016926567, -0.3596793911, -0.1078848505, -0.0223359332, 0.1076311622, -5.68739e-05, 0.0027161397, -0.001283805, 1.8123e-06);
s(21,0) = ( 0.0300000938, -0.0211663524, 0.0758833685, -0.0196022992, 0.0445283013, -0.059700243, 0.1106585339, -0.0552744426, 0.0002005767, 0.0007056687, -0.0630448106, -0.1238869052, 0.125393599, -0.1146679463, 0.0005917466, -0.0014159422, -5.5307e-06, 0.0012378554, 0.0689829446, -0.1654648954, 0.0675444655, -0.1531274887, 0.0003107322, -0.0026090909, -7e-10, -1.11e-08, -3.9027e-06, 0.0010668893, 0.3649117489, -0.1129848927, -0.0219827707, -0.1045543964, -0.0004405148, -0.002140676, -0.0012770106, 1.61e-08);
s(22,0) = ( 0.030373865, 0.0208929433, 0.080965396, -0.0207688282, -0.0436623749, 0.058016869, 0.1138776001, -0.0579273925, -0.0011754771, -0.0011754166, 0.0607721496, 0.1183837374, 0.1175880199, -0.118788698, -0.0027547912, 0.0017840255, 0.0014578485, -0.0021498253, -0.0676406237, 0.1567210299, 0.0708388108, -0.1576751939, -0.0018210409, 0.0035267322, 1.888e-07, 2.9303e-06, 0.0010287099, -0.0017819389, -0.3553182372, 0.1065899681, 0.0060032384, -0.1073631394, 0.0008921808, 0.0026899966, -0.0005460623, -4.2358e-06);
s(23,0) = ( 0.0309210905, 0.0210112088, 0.0780298563, 0.0220477946, 0.0450082262, 0.0573942305, 0.110270889, 0.0609142177, -0.0007885529, 0.0001327139, -0.0609307375, 0.1149883962, 0.1203383492, 0.1236198954, -0.0014004302, -0.0018734643, -0.001293991, 0.000362029, 0.0697257016, 0.1507264155, 0.0645725126, 0.1631793124, -0.0012216212, -0.0037022728, -1.676e-07, -2.601e-06, -0.0009130862, 0.0002049725, 0.3621825299, 0.1020483327, -0.0180931513, 0.1108316889, -0.0004618476, -0.0028260242, -0.0011311456, 3.7597e-06);
// ----- do not change anything below here ----
// mask for full ambisonic set to channels in use
input_mask(0) = bus(nc);
input_mask(1) = (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_);
// Start of decoder implementation. No user serviceable parts below here!
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//declare name "Fill in name in configuration section below";
declare version "1.3";
declare author "AmbisonicDecoderToolkit";
declare license "BSD 3-Clause License";
declare copyright "(c) Aaron J. Heller 2013";
/*
Copyright (c) 2013-2019, Aaron J. Heller
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
Author: Aaron J. Heller <[email protected]>
$Id: 2882d4f19ef11361be7b33f544f5fb99a3988651 $
*/
// v 1.3 13-Nov-2019 ajh
// . removed definition of route, which is now a language primative
// in FAUST
// v 1.2, 28-Oct-2017 ajh
// . add 6th-order NFC filters
// . fixed error in speaker_chain and speaker_chain2, where speaker
// distance was being indexed by order, not speaker number
// v 1.1 remove dependancies on Faust Libraries, 23-Nov-2016 ajh
// m = library("math.lib");
// mu = library("music.lib");
m = environment {
// from the old math.lib
take (1, (xs, xxs)) = xs;
take (1, xs) = xs;
take (nn, (xs, xxs)) = take (nn-1, xxs);
bus(2) = _,_; // avoids a lot of "bus(1)" labels in block diagrams
bus(n) = par(i, n, _);
SR = min(192000, max(1, fconstant(int fSamplingFreq, <math.h>)));
//PI = 3.1415926535897932385;
// quad precision value
PI = 3.14159265358979323846264338327950288;
};
mu = environment {
// from the old music.lib
db2linear(x) = pow(10, x/20.0);
};
// m.SR from math.lib is an integer, we need a float
SR = float(m.SR);
// descriptive statistics
total(c) = c:>_;
average(c) = total(c)/count(c);
count(c) = R(c) :>_ with {
R((c,cl)) = R(c),(R(cl));
R(c) = 1;
};
rms(c) = R(c) :> /(count(c)) : sqrt with {
R((c,cl)) = R(c),R(cl);
R(c) = (c*c);
};
sup(c) = R(c) with {
R((c,cl)) = max(R(c),R(cl));
R(c) = c;
};
inf(c) = R(c) with {
R((c,cl)) = min(R(c),R(cl));
R(c) = c;
};
// bus
bus(n) = par(i,n,_);
// bus with gains
gain(c) = R(c) with {
R((c,cl)) = R(c),R(cl);
R(1) = _;
R(0) = !:0; // need to preserve number of outputs, faust will optimize away
R(float(0)) = R(0);
R(float(1)) = R(1);
R(c) = *(c);
};
// fir filter (new improved, better behaved)
fir(c) = R(c) :>_ with {
R((c,lc)) = _<: R(c), (mem:R(lc));
R(c) = gain(c);
};
// --- phase-matched bandsplitter from BLaH3
xover(freq,n) = par(i,n,xover1) with {
sub(x,y) = y-x;
k = tan(m.PI*float(freq)/m.SR);
k2 = k^2;
d = (k2 + 2*k + 1);
//d = (k2,2*k,1):>_;
// hf numerator
b_hf = (1/d,-2/d,1/d);
// lf numerator
b_lf = (k2/d, 2*k2/d, k2/d);
// denominator
a = (2 * (k2-1) / d, (k2 - 2*k + 1) / d);
//
xover1 = _:sub ~ fir(a) <: fir(b_lf),fir(b_hf):_,*(-1);
};
shelf(freq,g_lf,g_hf) = xover(freq,1) : gain(g_lf),gain(g_hf):>_;
// from http://old.nabble.com/Re%3A--Faudiostream-devel---ANN--Faust-0.9.24-p28597267.html
// (not used currently, do we need to worry about denormals?)
anti_denormal = pow(10,-20);
anti_denormal_ac = 1 - 1' : *(anti_denormal) : + ~ *(-1);
// UI "dezipper"
smooth(c) = *(1-c) : +~*(c);
dezipper = smooth(0.999);
// physical constants
temp_celcius = 20;
c = 331.3 * sqrt(1.0 + (temp_celcius/273.15)); // speed of sound m/s
// ---- NFC filters ----
// see BesselPoly.m for coefficient calculations
//
// [1] J. Daniel, “Spatial Sound Encoding Including Near Field Effect:
// Introducing Distance Coding Filters and a Viable, New Ambisonic
// Format ,” Preprints 23rd AES International Conference, Copenhagen,
// 2003.
// [2] Weisstein, Eric W. "Bessel Polynomial." From MathWorld--A Wolfram
// Web Resource. http://mathworld.wolfram.com/BesselPolynomial.html
// [3] F. Adriaensen, “Near Field filters for Higher Order
// Ambisonics,” Jul. 2006.
// [4] J. O. Smith, “Digital State-Variable Filters,” CCRMA, May 2013.
//
// [5] "A Filter Primer", https://www.maximintegrated.com/en/app-notes/index.mvp/id/733
// first and second order state variable filters see [4]
// FIXME FIXME this code needs to be refactored, so that the roots are
// passed in rather then hardwired in the code, or another
// API layer, or ...
svf1(g,d1) = _ : *(g) : (+ <: +~_, _ ) ~ *(d1) : !,_ ;
svf2(g,d1,d2) = _ : *(g) : (((_,_,_):> _ <: +~_, _ ) ~ *(d1) : +~_, _) ~ *(d2) : !,_ ;
// these are Bessel filters, see [1,2]
nfc1(r,gain) = svf1(g,d1) // r in meters
with {
omega = c/(float(r)*SR);
// 1 1
b1 = omega/2.0;
g1 = 1.0 + b1;
d1 = 0.0 - (2.0 * b1) / g1;
g = gain/g1;
};
nfc2(r,gain) = svf2(g,d1,d2)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
// 1.000000000000000 3.00000000000000 3.00000000000000
b1 = 3.0 * r1;
b2 = 3.0 * r2;
g2 = 1.0 + b1 + b2;
d1 = 0.0 - (2.0 * b1 + 4.0 * b2) / g2; // fixed
d2 = 0.0 - (4.0 * b2) / g2;
g = gain/g2;
};
nfc3(r,gain) = svf2(g,d1,d2):svf1(1.0,d3)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
// 1.000000000000000 3.677814645373914 6.459432693483369
b1 = 3.677814645373914 * r1;
b2 = 6.459432693483369 * r2;
g2 = 1.0 + b1 + b2;
d1 = 0.0 - (2.0 * b1 + 4.0 * b2) / g2; // fixed
d2 = 0.0 - (4.0 * b2) / g2;
// 1.000000000000000 2.322185354626086
b3 = 2.322185354626086 * r1;
g3 = 1.0 + b3;
d3 = 0.0 - (2.0 * b3) / g3;
g = gain/(g3*g2);
};
nfc4(r,gain) = svf2(g,d1,d2):svf2(1.0,d3,d4)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
// 1.000000000000000 4.207578794359250 11.487800476871168
b1 = 4.207578794359250 * r1;
b2 = 11.487800476871168 * r2;
g2 = 1.0 + b1 + b2;
d1 = 0.0 - (2.0 * b1 + 4.0 * b2) / g2; // fixed
d2 = 0.0 - (4.0 * b2) / g2;
// 1.000000000000000 5.792421205640748 9.140130890277934
b3 = 5.792421205640748 * r1;
b4 = 9.140130890277934 * r2;
g3 = 1.0 + b3 + b4;
d3 = 0.0 - (2.0 * b3 + 4.0 * b4) / g3; // fixed
d4 = 0.0 - (4.0 * b4) / g3;
g = gain/(g3*g2);
};
nfc5(r,gain) = svf2(g,d1,d2):svf2(1.0,d3,d4):svf1(1.0,d5)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
// 1.000000000000000 4.649348606363304 18.156315313452325
b1 = 4.649348606363304 * r1;
b2 = 18.156315313452325 * r2;
g2 = 1.0 + b1 + b2;
d1 = 0.0 - (2.0 * b1 + 4.0 * b2) / g2; // fixed
d2 = 0.0 - (4.0 * b2) / g2;
// 1.000000000000000 6.703912798306966 14.272480513279568
b3 = 6.703912798306966 * r1;
b4 = 14.272480513279568 * r2;
g3 = 1.0 + b3 + b4;
d3 = 0.0 - (2.0 * b3 + 4 * b4) / g3; // fixed
d4 = 0.0 - (4.0 * b4) / g3;
// 1.000000000000000 3.646738595329718
b5 = 3.646738595329718 * r1;
g4 = 1.0 + b5;
d5 = 0.0 - (2.0 * b5) / g4;
g = gain/(g4*g3*g2);
};
nfc6(r,gain) = svf2(g,d11,d12):svf2(1.0,d21,d22):svf2(1.0,d31,d32)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
// reverse Bessel Poly 6:
// 1 21 210 1260 4725 10395 10395
// factors:
// 1.000000000000000 5.031864495621642 26.514025344067996
// 1.000000000000000 7.471416712651683 20.852823177396761
// 1.000000000000000 8.496718791726696 18.801130589570320
// 1.000000000000000 5.031864495621642 26.514025344067996
b11 = 5.031864495621642 * r1;
b12 = 26.514025344067996 * r2;
g1 = 1.0 + b11 + b12;
d11 = 0.0 - (2.0 * b11 + 4.0 * b12) / g1;
d12 = 0.0 - (4.0 * b12) / g1;
// 1.000000000000000 7.471416712651683 20.852823177396761
b21 = 7.471416712651683 * r1;
b22 = 20.852823177396761 * r2;
g2 = 1.0 + b21 + b22;
d21 = 0.0 - (2.0 * b21 + 4.0 * b22) / g2;
d22 = 0.0 - (4.0 * b22) / g2;
// 1.000000000000000 8.496718791726696 18.801130589570320
b31 = 8.496718791726696 * r1;
b32 = 18.801130589570320 * r2;
g3 = 1.0 + b31 + b32;
d31 = 0.0 - (2.0 * b31 + 4.0 * b32) / g3;
d32 = 0.0 - (4.0 * b32) / g3;
g = gain/(g3*g2*g1);
};
// ---- End NFC filters ----
nfc(0,r,g) = gain(g);
nfc(1,r,g) = nfc1(r,g);
nfc(2,r,g) = nfc2(r,g);
nfc(3,r,g) = nfc3(r,g);
nfc(4,r,g) = nfc4(r,g);
nfc(5,r,g) = nfc5(r,g);
nfc(6,r,g) = nfc6(r,g);
// null NFC filters to allow very high order decoders. FIXME!
nfc(o,r,g) = gain(g);
//declare name "nfctest";
//process = bus(6):(nfc(0,2,1),nfc(1,2,1),nfc(2,2,1),nfc(3,2,1),nfc(4,2,1),nfc(5,2,1)):bus(6);
// top level api to NFC filters
nfc_out(1,order,r,g) = nfc(order,r,g);
nfc_out(0,order,r,g) = _;
nfc_inp(1,order,r,g) = nfc(order,r,g);
nfc_inp(0,order,r,g) = _;
// ---- delay and level
delay(dc,r) = R(dc,r) with {
R(0,r) = _; // delay_comp off
R(1,0) = _; // delay_comp on, but no delay
R(1,float(0)) = R(1,0);
R(1,r) = @(meters2samples(r));
meters2samples(r) = int(m.SR * (float(r)/float(c)) + 0.5);
};
level(lc,r,rmax) = R(lc,r,rmax) with{
R(0,r,rmax) = _; // level_comp off
R(1,r,rmax) = gain(float(r)/float(rmax));
};
delay_level(r) = R(r) with { // delay_comp and level_comp are free variables (fix?)
R((r,rl)) = R(r), R(rl);
R(r) = delay(delay_comp,(r_max-r)) : level(level_comp,r,r_max);
};
// ---- gates
gate(0) = !;
gate(1) = _;
dirac(i,j) = i==j;
gate_bus(order,(o,oss)) = (gate(order==o),gate_bus(order,oss));
gate_bus(order,o) = gate(order==o);
// route (not used)
// route(n_inputs,n_outputs,outs) = m.bus(n_inputs)
// <: par(i,n_outputs,(0,gate_bus(i,outs)):>_)
// : m.bus(n_outputs);
//process = route(4,4,(3,1,1,2)); // test
// deinterleave
deinterleave(n,span) = par(i,n,_) <: par(i,span, par(j,n,gate(%(j,span)==i)));
// 1 band speaker chain
speaker_chain(ispkr) = gain(s(ispkr,0)) // decoder matrix gains
// iterate over orders, select each order from matrix
<: par(jord,no,gate_bus(jord,co)
// sum and apply NFC filter for that order
// at the speaker distance
:> nfc_out(nfc_output,jord,m.take(ispkr+1,rs),1.0))
// sum the orders
:>_;
// 1 band speaker chain -- bad definition
// speaker_chain(i) = gain(s(i,0)) <: par(i,no,gate_bus(i,co):>nfc_out(nfc_output,i,m.take(i+1,rs),1.0)):>_;
// near field correction at input, nfc_input = 1
nfc_input_bus(nc) = par(i,nc, nfc_inp(nfc_input, m.take(i+1,co), r_bar, 1.0));
// per order gains
gamma_bus(n) = par(i,nc, gain( m.take(m.take(i+1,co)+1, gamma(n))));
// output gain and muting
// note in GUI elements, dezipper should be last in chain. Dezipper runs in sample time, rest runs in slow (GUI) time
output_gain = hslider("gain [unit:dB]", 0, -30, +10, 1): mu.db2linear :*(checkbox("mute")<0.5): dezipper;
gain_muting_bus(0,n) = bus(n);
gain_muting_bus(1,n) = par(i,n,*(output_gain));
// one band decoder
decoder(1,nc,ns) = nfc_input_bus(nc)
: gamma_bus(0)
<: par(is,ns, speaker_chain(is))
: delay_level(rs);
// two band decoder
// there are two variants of the two-band decoder
// 1. classic, with shelf-filters and one matrix
// 2. vienna, bandsplitting filters and separate LF and HF matricies.
// classic shelf filter decoder
decoder(2,nc,ns) = nfc_input_bus(nc)
: par(i,nc, shelf(xover_freq,m.take(m.take(i+1,co)+1, gamma(0))/lfhf_ratio,
m.take(m.take(i+1,co)+1, gamma(1))*lfhf_ratio))
<: par(is,ns, speaker_chain(is))
: delay_level(rs);
// vienna decoder
// FIXME FIXME need to incorporate lfhf_ratio
decoder(3,nc,ns) = bus(nc)
: nfc_input_bus(nc)
: xover(xover_freq,nc) : deinterleave(2*nc,2)
: (gamma_bus(0),gamma_bus(1)) : bus(2*nc)
<: par(j, ns, speaker_chain2(j,nc))
: delay_level(rs)
;
// 2 band speaker chain for vienna decoder
// i is speaker, j is order
speaker_chain2(i,nc) = gain(s(i,0)), gain(s(i,1))
:> bus(nc)
<: par(j,no,gate_bus(j,co):>nfc_out(nfc_output,j,m.take(i+1,rs),1.0))
:>_ ;
//process = speaker_chain2(1,16); // test
// --------------------------------------
// things calculated from decoder config
// maximum and average speaker distance
r_max = sup(rs);
r_bar = (rs :> float) / float(count(rs));
// number of ambisonic orders, including 0
no = decoder_order+1;
// number of input component signals
nc = count(co);
// the top-level process
process = input_mask(input_full_set):decoder(decoder_type,nc,ns):gain_muting_bus(output_gain_muting,ns);
// End of decoder implementation. No user serviceable parts above here!
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//EOF!
| https://raw.githubusercontent.com/notam02/studio-3-resources/a007fa58e0090e46a50f4bf537cd600628598c45/faust/Sirius_5H5P_Slepian24_2_band.dsp | faust | Faust Decoder Configuration File
Written by Ambisonic Decoder Toolbox, version 8.0
run by thomj on thomjmbp.local (MACI64) at 02-Sep-2021 13:03:28
------- decoder information -------
decoder file = ../decoders/Sirius_5H5P_Slepian24_2_band.dsp
description = Sirius_5H5P_Slepian24_2_band
speaker array name = Sirius
horizontal order = 5
vertical order = 5
coefficient order = acn
coefficient scale = SN3D
input scale = SN3D
mixed-order scheme = HP
input channel order: W Y Z X V T R S U Q O M K L N P 44S 43S 42S 41S 40C 41C 42C 43C 44C 55S 54S 53S 52S 51S 50C 51C 52C 53C 54C 55C
output speaker order: A.1 A.2 A.3 A.4 A.5 A.6 A.7 A.8 A.9 A.10 A.11 A.12 B.1 B.2 B.3 B.4 B.5 B.6 B.7 B.8 C.1 C.2 C.3 C.4
-------
start decoder configuration
bands
decoder type
crossover frequency in Hz
lfhf_balance
decoder order
ambisonic order of each input component
use full or reduced input set
delay compensation
level compensation
nfc on input or output
enable output gain and muting controls
number of speakers
radius for each speaker in meters
per order gains, 0 for LF, 1 for HF.
Used to implement shelf filters, or to modify velocity matrix
for max_rE decoding, and so forth. See Appendix A of BLaH6.
gain matrix
----- do not change anything below here ----
mask for full ambisonic set to channels in use
Start of decoder implementation. No user serviceable parts below here!
------------------------------------------------------------------------------
------------------------------------------------------------------------------
------------------------------------------------------------------------------
declare name "Fill in name in configuration section below";
Copyright (c) 2013-2019, Aaron J. Heller
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Author: Aaron J. Heller <[email protected]>
$Id: 2882d4f19ef11361be7b33f544f5fb99a3988651 $
v 1.3 13-Nov-2019 ajh
. removed definition of route, which is now a language primative
in FAUST
v 1.2, 28-Oct-2017 ajh
. add 6th-order NFC filters
. fixed error in speaker_chain and speaker_chain2, where speaker
distance was being indexed by order, not speaker number
v 1.1 remove dependancies on Faust Libraries, 23-Nov-2016 ajh
m = library("math.lib");
mu = library("music.lib");
from the old math.lib
avoids a lot of "bus(1)" labels in block diagrams
PI = 3.1415926535897932385;
quad precision value
from the old music.lib
m.SR from math.lib is an integer, we need a float
descriptive statistics
bus
bus with gains
need to preserve number of outputs, faust will optimize away
fir filter (new improved, better behaved)
--- phase-matched bandsplitter from BLaH3
d = (k2,2*k,1):>_;
hf numerator
lf numerator
denominator
from http://old.nabble.com/Re%3A--Faudiostream-devel---ANN--Faust-0.9.24-p28597267.html
(not used currently, do we need to worry about denormals?)
UI "dezipper"
physical constants
speed of sound m/s
---- NFC filters ----
see BesselPoly.m for coefficient calculations
[1] J. Daniel, “Spatial Sound Encoding Including Near Field Effect:
Introducing Distance Coding Filters and a Viable, New Ambisonic
Format ,” Preprints 23rd AES International Conference, Copenhagen,
2003.
[2] Weisstein, Eric W. "Bessel Polynomial." From MathWorld--A Wolfram
Web Resource. http://mathworld.wolfram.com/BesselPolynomial.html
[3] F. Adriaensen, “Near Field filters for Higher Order
Ambisonics,” Jul. 2006.
[4] J. O. Smith, “Digital State-Variable Filters,” CCRMA, May 2013.
[5] "A Filter Primer", https://www.maximintegrated.com/en/app-notes/index.mvp/id/733
first and second order state variable filters see [4]
FIXME FIXME this code needs to be refactored, so that the roots are
passed in rather then hardwired in the code, or another
API layer, or ...
these are Bessel filters, see [1,2]
r in meters
1 1
1.000000000000000 3.00000000000000 3.00000000000000
fixed
1.000000000000000 3.677814645373914 6.459432693483369
fixed
1.000000000000000 2.322185354626086
1.000000000000000 4.207578794359250 11.487800476871168
fixed
1.000000000000000 5.792421205640748 9.140130890277934
fixed
1.000000000000000 4.649348606363304 18.156315313452325
fixed
1.000000000000000 6.703912798306966 14.272480513279568
fixed
1.000000000000000 3.646738595329718
reverse Bessel Poly 6:
1 21 210 1260 4725 10395 10395
factors:
1.000000000000000 5.031864495621642 26.514025344067996
1.000000000000000 7.471416712651683 20.852823177396761
1.000000000000000 8.496718791726696 18.801130589570320
1.000000000000000 5.031864495621642 26.514025344067996
1.000000000000000 7.471416712651683 20.852823177396761
1.000000000000000 8.496718791726696 18.801130589570320
---- End NFC filters ----
null NFC filters to allow very high order decoders. FIXME!
declare name "nfctest";
process = bus(6):(nfc(0,2,1),nfc(1,2,1),nfc(2,2,1),nfc(3,2,1),nfc(4,2,1),nfc(5,2,1)):bus(6);
top level api to NFC filters
---- delay and level
delay_comp off
delay_comp on, but no delay
level_comp off
delay_comp and level_comp are free variables (fix?)
---- gates
route (not used)
route(n_inputs,n_outputs,outs) = m.bus(n_inputs)
<: par(i,n_outputs,(0,gate_bus(i,outs)):>_)
: m.bus(n_outputs);
process = route(4,4,(3,1,1,2)); // test
deinterleave
1 band speaker chain
decoder matrix gains
iterate over orders, select each order from matrix
sum and apply NFC filter for that order
at the speaker distance
sum the orders
1 band speaker chain -- bad definition
speaker_chain(i) = gain(s(i,0)) <: par(i,no,gate_bus(i,co):>nfc_out(nfc_output,i,m.take(i+1,rs),1.0)):>_;
near field correction at input, nfc_input = 1
per order gains
output gain and muting
note in GUI elements, dezipper should be last in chain. Dezipper runs in sample time, rest runs in slow (GUI) time
one band decoder
two band decoder
there are two variants of the two-band decoder
1. classic, with shelf-filters and one matrix
2. vienna, bandsplitting filters and separate LF and HF matricies.
classic shelf filter decoder
vienna decoder
FIXME FIXME need to incorporate lfhf_ratio
2 band speaker chain for vienna decoder
i is speaker, j is order
process = speaker_chain2(1,16); // test
--------------------------------------
things calculated from decoder config
maximum and average speaker distance
number of ambisonic orders, including 0
number of input component signals
the top-level process
End of decoder implementation. No user serviceable parts above here!
------------------------------------------------------------------------------
------------------------------------------------------------------------------
------------------------------------------------------------------------------
EOF! |
declare name "Sirius_5H5P_Slepian24_2_band";
nbands = 2;
decoder_type = 2;
xover_freq = hslider("xover [unit:Hz]",400,200,800,20): dezipper;
lfhf_ratio = hslider("lf/hf [unit:dB]", 0, -3, +3, 0.1): mu.db2linear : dezipper;
decoder_order = 5;
co = ( 0, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5);
input_full_set = 1;
delay_comp = 1;
level_comp = 1;
nfc_output = 1;
nfc_input = 0;
output_gain_muting = 1;
ns = 24;
rs = ( 1.948, 1.963, 1.963, 1.873, 1.98, 1.976, 1.948, 1.941, 1.948, 1.791, 1.911, 1.925, 1.947, 1.942, 1.955, 1.952, 1.953, 1.946, 1.948, 1.946, 1.668, 1.667, 1.655, 1.658);
gamma(0) = ( 1, 1, 1, 1, 1, 1);
gamma(1) = ( 1, 0.9324695142, 0.8042490924, 0.6282499246, 0.4220050093, 0.2057123111);
s(00,0) = ( 0.0296372919, -1.95843e-05, 0.0057896039, 0.0730881339, 3.26118e-05, -0.0003390931, -0.05151281, 0.0049144257, 0.1142110655, 0.0001223299, 0.0001640309, -0.0013281401, 0.0147333754, -0.090965776, -0.0138392423, 0.1596613673, 0.000279145, 0.000232145, 5.06822e-05, -0.0022068839, 0.0745055026, -0.0155725042, -0.1212073751, 0.0529662964, 0.2253745041, 5.611e-07, 0.0001969747, 0.0001840117, -0.0002336216, -0.0016392679, 0.0010822545, 0.0782302385, -0.0069219639, -0.0773437089, 0.1574280886, 0.2375647373);
s(01,0) = ( 0.0261186227, -0.0384821979, -0.0026700524, 0.0615301193, -0.1066025357, -0.0081986993, -0.0633183665, 0.0006245729, 0.0569868605, -0.1221607634, 0.0236856998, 0.0342946232, 0.0015103845, -0.0863221092, -0.007226398, -0.0211537598, -0.0819131686, 0.0188155067, 0.0931159517, -0.0064744338, 0.0680691298, -0.0240608427, -0.0607875053, -0.0415849721, -0.1126725657, -0.1185551038, -0.0578008528, 0.1336590711, -0.0595906163, -0.0491598025, 0.004679673, 0.0613975014, -0.0033029515, -0.0325406008, -0.0816904764, -0.2060668965);
s(02,0) = ( 0.0262932656, -0.0623729279, -0.0013404254, 0.0385977104, -0.1074214386, -0.0017461412, -0.0631923362, 0.0081089865, -0.0574803782, -0.0212823814, 0.0216012699, 0.0862049807, -0.0020248598, -0.0348408669, 0.0063579719, -0.123126755, 0.0830442996, -0.0410869315, 0.0917179618, 0.02515023, 0.067928554, 0.0057810415, 0.0600229513, 0.0177046665, -0.1127017557, 0.2055124032, 0.0585990192, -0.0318008758, -0.0588229017, -0.0603674083, 0.0122570694, 0.0487893599, 0.0029948652, 0.1331310113, -0.0815016673, 0.1191085842);
s(03,0) = ( 0.0298471239, -0.0739267003, 0.0059873571, 0.0002646677, 5.47566e-05, -0.0063336416, -0.051575084, 0.0006359773, -0.114773551, 0.1599888301, -2.25169e-05, 0.0901044905, 0.0146329153, 0.0010758943, 0.0131211309, 6.14227e-05, 4.82513e-05, 0.0535965125, 8.48563e-05, 0.0158672329, 0.0738630796, 0.0012676982, 0.1203359764, 0.0001168545, 0.2253744742, -0.2375654514, 3.40479e-05, -0.0768474151, 0.0003176278, -0.0775886392, -0.0002660289, 0.0008140198, 0.0059272084, 9.26243e-05, 0.1573995721, -1.402e-07);
s(04,0) = ( 0.0261146022, -0.0622756437, -0.0031510053, -0.0385932781, 0.107464065, -0.0017517185, -0.0649788977, -0.0080209273, -0.0576481506, -0.0209040605, -0.0220042835, 0.0857818669, -0.001054449, 0.0351909849, 0.0059535828, 0.1230738861, -0.0832291226, -0.0409583117, -0.0916520313, 0.0244054855, 0.0658667267, -0.0051969043, 0.0597630959, -0.0178058421, -0.1126727362, 0.2059628252, -0.058729437, -0.0319784112, 0.0599890332, -0.0608965076, 0.0037223657, -0.0483548981, 0.0031488622, -0.1332100292, -0.0816907623, -0.1191080472);
s(05,0) = ( 0.0263090817, -0.0386540968, -0.0018932011, -0.0621640045, 0.1066370268, -0.0083226593, -0.0631328956, -0.0016812395, 0.0574758651, -0.1229496387, -0.0216167324, 0.0346241893, 5.0112e-05, 0.0857366991, -0.006092116, 0.0209063671, 0.0829653997, 0.0179030443, -0.0930619144, -0.0057338885, 0.0679656867, 0.0243918607, -0.0600299994, 0.0411053653, -0.1127017659, -0.1190083296, 0.0585433446, 0.133220572, 0.054824947, -0.0485961981, 0.0077798797, -0.0608329097, -0.0036464364, 0.032161384, -0.081624962, 0.2060638392);
s(06,0) = ( 0.0296292503, -8.45193e-05, 0.0053092248, -0.0732778199, 0.000433952, -0.0005055268, -0.0525692073, -0.0047261087, 0.114708367, 3.60551e-05, -0.0004677266, -0.0016375109, 0.0136728759, 0.0929510736, -0.0132181776, -0.160037763, -0.000220762, 6.77051e-05, 0.0006721489, -0.0025953813, 0.0731187654, 0.0193302173, -0.120436959, -0.0536918813, 0.2253744393, -4.437e-07, -0.0001557775, 5.52485e-05, 0.0032062799, -0.0018969273, -0.0007637236, -0.0753274363, -0.006009727, 0.0767743639, 0.1573937862, -0.2375649069);
s(07,0) = ( 0.0261205923, 0.0384593354, -0.0031078675, -0.0622781311, -0.1068828114, 0.0079170545, -0.0651097422, -0.0013079841, 0.0575428135, 0.1232038502, 0.0206582294, -0.0351481709, -0.0015090791, 0.0871422337, -0.0062338606, 0.0215031639, -0.0828331376, -0.017415918, 0.0926812224, 0.0052546091, 0.0656760177, 0.0262417015, -0.0599262268, 0.0413671422, -0.1126726849, 0.1190085954, -0.0584500158, -0.1328366827, -0.0537239127, 0.0483358275, 0.004168483, -0.0597293753, -0.0029896384, 0.0319551473, -0.081676188, 0.2054113764);
s(08,0) = ( 0.0255886245, 0.0612835096, -0.0030966295, -0.0382018252, -0.105955888, -7.13922e-05, -0.0642952359, -0.0077796798, -0.0567538696, 0.0214230829, 0.0236642146, -0.0874164032, -0.001292934, 0.034696871, 0.007536571, 0.1219404243, 0.0817241461, 0.0419583945, 0.0939876254, -0.0250985823, 0.0683379839, -0.0060797979, 0.0611484532, -0.019094391, -0.1127019267, -0.2059658503, 0.0576674719, 0.032768133, -0.056680282, 0.0608769175, 0.0106223338, -0.0488749835, 0.0036848631, -0.1338109812, -0.0815545417, -0.1184531284);
s(09,0) = ( 0.0292329849, 0.0721792154, 0.0047768655, 0.0003244608, 0.0002774032, 0.002872546, -0.0524617876, 0.0008187591, -0.1138610633, -0.1594746061, -0.0008021741, -0.0940519994, 0.0143747649, 0.0014861627, 0.0145102711, 0.0001401795, 1.00323e-05, -0.0526110018, 0.0004297569, -0.0188954351, 0.0743185386, 0.0018371873, 0.1217495963, 0.000267683, 0.2253744692, 0.2375655685, 7.0791e-06, 0.0776246539, 0.0032495256, 0.0762050347, 0.000602042, 0.0012096198, 0.0070098241, 0.000211882, 0.1574153715, -2.91e-08);
s(10,0) = ( 0.0261495081, 0.0613897426, -0.0031593822, 0.038114176, 0.106003471, 0.0001899268, -0.063652363, 0.007725573, -0.0565886866, 0.0218238701, -0.0237412133, -0.0867503659, 0.002432507, -0.0343859978, 0.0081058642, -0.1218009735, -0.0813214995, 0.0421230153, -0.0939136791, -0.0240157804, 0.0675410277, 0.0067876456, 0.061404411, 0.0193596738, -0.1126724891, -0.2055089403, -0.05738335, 0.0326137674, 0.0570936424, 0.0617099951, 0.0010865432, 0.0494476261, 0.0031280119, 0.1340198233, -0.0817826635, 0.1184519585);
s(11,0) = ( 0.0257841371, 0.038345021, -0.0027417152, 0.062049985, 0.1070729337, 0.0078414546, -0.0646029742, 0.0011321837, 0.0570774228, 0.1226112238, -0.0226862138, -0.0349687052, -0.0025925821, -0.0864725918, -0.0071824574, -0.0217471873, 0.0819988296, -0.0179521269, -0.092387165, 0.005621003, 0.0674061078, -0.024627907, -0.0606472639, -0.0418335505, -0.1127018911, 0.118555276, 0.0578612983, -0.1329783255, 0.0594745788, 0.0485905792, 0.0110427943, 0.0610510506, -0.0029730947, -0.0323199575, -0.0815310775, -0.2054089523);
s(12,0) = ( 0.026622357, -0.0238751201, 0.0434875818, 0.070961251, -0.0437651961, -0.0317668771, -0.0158513615, 0.1135620978, 0.0612059225, -0.0904039053, -0.1523645722, 0.0119715194, -0.0950014581, 0.0451852102, 0.1269268163, 0.0370906731, -0.0964615919, -0.1730973834, -0.0678561063, 0.0699382398, -0.09206087, -0.0715934225, 0.0948197831, 0.0716603998, -1.24919e-05, -0.0001938912, -0.0680667392, -0.1363552225, 0.1522616963, 0.0643700149, -0.0199755823, -0.0890307275, -0.0073360604, 0.0565519926, 0.0006486562, 0.0002802689);
s(13,0) = ( 0.026861126, -0.0703661223, 0.0423599389, 0.0241881661, -0.0435519199, -0.112716009, -0.0163953468, 0.0324708229, -0.0625077655, 0.0375466632, -0.1524329222, -0.0447879392, -0.0917660231, -0.0113748147, -0.1273867985, -0.0911935225, 0.0964229127, 0.0718991785, -0.0674150104, 0.0714270165, -0.0935573353, -0.069985437, -0.0968365896, -0.1752471421, 1.24869e-05, 0.0001938135, 0.0680394457, 0.0564427132, 0.1536713449, 0.0887839701, -0.0311294984, -0.0647417632, 0.0021860252, -0.1383476216, 0.0003797337, -0.0002801565);
s(14,0) = ( 0.0275112586, -0.0705203764, 0.0452669321, -0.0247724134, 0.0434338254, -0.1128147942, -0.0131458857, -0.0341035531, -0.0621195637, 0.0371146762, 0.1528906188, -0.0444291632, -0.0911414658, 0.0080201263, -0.1267077387, 0.0911285243, -0.0963987407, 0.0715844662, 0.067232073, 0.0722061531, -0.0908240173, 0.0655280603, -0.0962352386, 0.1751254624, -1.24838e-05, -0.0001937649, -0.0680223891, 0.0564345411, -0.1553317394, 0.0893782526, -0.0232591866, 0.0617050989, 0.0024378552, 0.1382492342, 0.0005476334, 0.0002800863);
s(15,0) = ( 0.027005504, -0.0241391063, 0.0438043025, -0.0711112911, 0.0443339059, -0.0322850455, -0.0152116371, -0.1143085009, 0.0618925326, -0.0909872831, 0.1518066438, 0.0115677658, -0.0931759908, -0.0474463496, 0.1264395925, -0.0370242157, 0.0964707161, -0.1747298296, 0.0687371529, 0.0699555534, -0.092364097, 0.0680792959, 0.0958835235, -0.0715301969, 1.24931e-05, 0.0001939096, 0.0680731775, -0.1378825078, -0.1481906552, 0.0645828554, -0.0241309844, 0.0864804718, -0.0028907656, -0.0564515636, 0.0005583259, -0.0002802954);
s(16,0) = ( 0.0280552283, 0.0250847552, 0.0461374141, -0.0716511887, -0.0456736645, 0.0349967468, -0.0110290026, -0.1161144711, 0.0623280903, 0.0907956578, -0.1499045835, -0.005843407, -0.0868793947, -0.0510429024, 0.1271574343, -0.037763741, -0.0966103006, 0.1743680233, -0.0708127782, -0.0622427535, -0.0894519448, 0.0637805054, 0.0965582378, -0.0721879705, -1.25112e-05, -0.0001941902, -0.0681716733, 0.1375932645, 0.1371987526, -0.0592955037, -0.0276372423, 0.0838288596, -0.002503835, -0.05661651, 0.0004134598, 0.000280701);
s(17,0) = ( 0.0281413555, 0.0721894985, 0.0464475035, -0.0248894249, -0.0456560458, 0.1168447692, -0.011212947, -0.0344616249, -0.0614634934, -0.0375043647, -0.1496634455, 0.051297292, -0.0881311177, 0.0064503105, -0.1276979155, 0.0900541341, 0.0960666134, -0.072326066, -0.0706749127, -0.0640701233, -0.0900611659, 0.0624599205, -0.0952188102, 0.1723112035, 1.24408e-05, 0.0001930973, 0.0677880282, -0.057022584, 0.1369273258, -0.0841387112, -0.0263940116, 0.0591811147, 0.0079282983, 0.1356748372, 0.0004736787, -0.0002791213);
s(18,0) = ( 0.0267838761, 0.0715170519, 0.0452399825, 0.024133676, 0.0444997337, 0.1153011317, -0.0135307562, 0.0323469679, -0.0613840996, -0.0377300822, 0.1512693857, 0.0486959728, -0.094533614, -0.0108010755, -0.1282294071, -0.0900581578, -0.0961194605, -0.0722494914, 0.0688835313, -0.0672176562, -0.0893976856, -0.0682447681, -0.0950958625, -0.1723146767, -1.24476e-05, -0.0001932036, -0.067825319, -0.0567210316, -0.1463290115, -0.0862177247, -0.0126824047, -0.0631231633, 0.0095678746, -0.1356806596, 0.0008179936, 0.0002792749);
s(19,0) = ( 0.0275877678, 0.0245975218, 0.0450493123, 0.0710134092, 0.0437174151, 0.033853461, -0.0126028409, 0.1139990135, 0.0620739111, 0.090265156, 0.1521485997, -0.0075339241, -0.0888111287, 0.0459546073, 0.1277488027, 0.0380492322, 0.0965676986, 0.1728351673, 0.0677821452, -0.0639366745, -0.090438473, -0.0710610102, 0.096164514, 0.0727412122, 1.25057e-05, 0.0001941045, 0.0681416118, 0.1361450983, -0.151976896, -0.0602489399, -0.0269969677, -0.088947536, -0.0051230123, 0.0570483424, 0.0004592873, -0.0002805772);
s(20,0) = ( 0.0311086105, -0.0210808865, 0.0783812314, 0.0208876532, -0.0443969769, -0.0585989747, 0.1129873468, 0.0581996921, 0.0013886919, -0.0011209671, 0.0611154621, -0.119714951, 0.1266335231, 0.1191973014, 0.002833572, 0.001794521, -0.0006237558, -0.002259213, -0.0687798589, -0.1585850954, 0.0676939358, 0.1581091619, 0.0021513521, 0.0033349604, -8.08e-08, -1.2538e-06, -0.0004401443, -0.0016926567, -0.3596793911, -0.1078848505, -0.0223359332, 0.1076311622, -5.68739e-05, 0.0027161397, -0.001283805, 1.8123e-06);
s(21,0) = ( 0.0300000938, -0.0211663524, 0.0758833685, -0.0196022992, 0.0445283013, -0.059700243, 0.1106585339, -0.0552744426, 0.0002005767, 0.0007056687, -0.0630448106, -0.1238869052, 0.125393599, -0.1146679463, 0.0005917466, -0.0014159422, -5.5307e-06, 0.0012378554, 0.0689829446, -0.1654648954, 0.0675444655, -0.1531274887, 0.0003107322, -0.0026090909, -7e-10, -1.11e-08, -3.9027e-06, 0.0010668893, 0.3649117489, -0.1129848927, -0.0219827707, -0.1045543964, -0.0004405148, -0.002140676, -0.0012770106, 1.61e-08);
s(22,0) = ( 0.030373865, 0.0208929433, 0.080965396, -0.0207688282, -0.0436623749, 0.058016869, 0.1138776001, -0.0579273925, -0.0011754771, -0.0011754166, 0.0607721496, 0.1183837374, 0.1175880199, -0.118788698, -0.0027547912, 0.0017840255, 0.0014578485, -0.0021498253, -0.0676406237, 0.1567210299, 0.0708388108, -0.1576751939, -0.0018210409, 0.0035267322, 1.888e-07, 2.9303e-06, 0.0010287099, -0.0017819389, -0.3553182372, 0.1065899681, 0.0060032384, -0.1073631394, 0.0008921808, 0.0026899966, -0.0005460623, -4.2358e-06);
s(23,0) = ( 0.0309210905, 0.0210112088, 0.0780298563, 0.0220477946, 0.0450082262, 0.0573942305, 0.110270889, 0.0609142177, -0.0007885529, 0.0001327139, -0.0609307375, 0.1149883962, 0.1203383492, 0.1236198954, -0.0014004302, -0.0018734643, -0.001293991, 0.000362029, 0.0697257016, 0.1507264155, 0.0645725126, 0.1631793124, -0.0012216212, -0.0037022728, -1.676e-07, -2.601e-06, -0.0009130862, 0.0002049725, 0.3621825299, 0.1020483327, -0.0180931513, 0.1108316889, -0.0004618476, -0.0028260242, -0.0011311456, 3.7597e-06);
input_mask(0) = bus(nc);
input_mask(1) = (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_);
declare version "1.3";
declare author "AmbisonicDecoderToolkit";
declare license "BSD 3-Clause License";
declare copyright "(c) Aaron J. Heller 2013";
m = environment {
take (1, (xs, xxs)) = xs;
take (1, xs) = xs;
take (nn, (xs, xxs)) = take (nn-1, xxs);
bus(n) = par(i, n, _);
SR = min(192000, max(1, fconstant(int fSamplingFreq, <math.h>)));
PI = 3.14159265358979323846264338327950288;
};
mu = environment {
db2linear(x) = pow(10, x/20.0);
};
SR = float(m.SR);
total(c) = c:>_;
average(c) = total(c)/count(c);
count(c) = R(c) :>_ with {
R((c,cl)) = R(c),(R(cl));
R(c) = 1;
};
rms(c) = R(c) :> /(count(c)) : sqrt with {
R((c,cl)) = R(c),R(cl);
R(c) = (c*c);
};
sup(c) = R(c) with {
R((c,cl)) = max(R(c),R(cl));
R(c) = c;
};
inf(c) = R(c) with {
R((c,cl)) = min(R(c),R(cl));
R(c) = c;
};
bus(n) = par(i,n,_);
gain(c) = R(c) with {
R((c,cl)) = R(c),R(cl);
R(1) = _;
R(float(0)) = R(0);
R(float(1)) = R(1);
R(c) = *(c);
};
fir(c) = R(c) :>_ with {
R((c,lc)) = _<: R(c), (mem:R(lc));
R(c) = gain(c);
};
xover(freq,n) = par(i,n,xover1) with {
sub(x,y) = y-x;
k = tan(m.PI*float(freq)/m.SR);
k2 = k^2;
d = (k2 + 2*k + 1);
b_hf = (1/d,-2/d,1/d);
b_lf = (k2/d, 2*k2/d, k2/d);
a = (2 * (k2-1) / d, (k2 - 2*k + 1) / d);
xover1 = _:sub ~ fir(a) <: fir(b_lf),fir(b_hf):_,*(-1);
};
shelf(freq,g_lf,g_hf) = xover(freq,1) : gain(g_lf),gain(g_hf):>_;
anti_denormal = pow(10,-20);
anti_denormal_ac = 1 - 1' : *(anti_denormal) : + ~ *(-1);
smooth(c) = *(1-c) : +~*(c);
dezipper = smooth(0.999);
temp_celcius = 20;
svf1(g,d1) = _ : *(g) : (+ <: +~_, _ ) ~ *(d1) : !,_ ;
svf2(g,d1,d2) = _ : *(g) : (((_,_,_):> _ <: +~_, _ ) ~ *(d1) : +~_, _) ~ *(d2) : !,_ ;
with {
omega = c/(float(r)*SR);
b1 = omega/2.0;
g1 = 1.0 + b1;
d1 = 0.0 - (2.0 * b1) / g1;
g = gain/g1;
};
nfc2(r,gain) = svf2(g,d1,d2)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
b1 = 3.0 * r1;
b2 = 3.0 * r2;
g2 = 1.0 + b1 + b2;
d2 = 0.0 - (4.0 * b2) / g2;
g = gain/g2;
};
nfc3(r,gain) = svf2(g,d1,d2):svf1(1.0,d3)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
b1 = 3.677814645373914 * r1;
b2 = 6.459432693483369 * r2;
g2 = 1.0 + b1 + b2;
d2 = 0.0 - (4.0 * b2) / g2;
b3 = 2.322185354626086 * r1;
g3 = 1.0 + b3;
d3 = 0.0 - (2.0 * b3) / g3;
g = gain/(g3*g2);
};
nfc4(r,gain) = svf2(g,d1,d2):svf2(1.0,d3,d4)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
b1 = 4.207578794359250 * r1;
b2 = 11.487800476871168 * r2;
g2 = 1.0 + b1 + b2;
d2 = 0.0 - (4.0 * b2) / g2;
b3 = 5.792421205640748 * r1;
b4 = 9.140130890277934 * r2;
g3 = 1.0 + b3 + b4;
d4 = 0.0 - (4.0 * b4) / g3;
g = gain/(g3*g2);
};
nfc5(r,gain) = svf2(g,d1,d2):svf2(1.0,d3,d4):svf1(1.0,d5)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
b1 = 4.649348606363304 * r1;
b2 = 18.156315313452325 * r2;
g2 = 1.0 + b1 + b2;
d2 = 0.0 - (4.0 * b2) / g2;
b3 = 6.703912798306966 * r1;
b4 = 14.272480513279568 * r2;
g3 = 1.0 + b3 + b4;
d4 = 0.0 - (4.0 * b4) / g3;
b5 = 3.646738595329718 * r1;
g4 = 1.0 + b5;
d5 = 0.0 - (2.0 * b5) / g4;
g = gain/(g4*g3*g2);
};
nfc6(r,gain) = svf2(g,d11,d12):svf2(1.0,d21,d22):svf2(1.0,d31,d32)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
b11 = 5.031864495621642 * r1;
b12 = 26.514025344067996 * r2;
g1 = 1.0 + b11 + b12;
d11 = 0.0 - (2.0 * b11 + 4.0 * b12) / g1;
d12 = 0.0 - (4.0 * b12) / g1;
b21 = 7.471416712651683 * r1;
b22 = 20.852823177396761 * r2;
g2 = 1.0 + b21 + b22;
d21 = 0.0 - (2.0 * b21 + 4.0 * b22) / g2;
d22 = 0.0 - (4.0 * b22) / g2;
b31 = 8.496718791726696 * r1;
b32 = 18.801130589570320 * r2;
g3 = 1.0 + b31 + b32;
d31 = 0.0 - (2.0 * b31 + 4.0 * b32) / g3;
d32 = 0.0 - (4.0 * b32) / g3;
g = gain/(g3*g2*g1);
};
nfc(0,r,g) = gain(g);
nfc(1,r,g) = nfc1(r,g);
nfc(2,r,g) = nfc2(r,g);
nfc(3,r,g) = nfc3(r,g);
nfc(4,r,g) = nfc4(r,g);
nfc(5,r,g) = nfc5(r,g);
nfc(6,r,g) = nfc6(r,g);
nfc(o,r,g) = gain(g);
nfc_out(1,order,r,g) = nfc(order,r,g);
nfc_out(0,order,r,g) = _;
nfc_inp(1,order,r,g) = nfc(order,r,g);
nfc_inp(0,order,r,g) = _;
delay(dc,r) = R(dc,r) with {
R(1,float(0)) = R(1,0);
R(1,r) = @(meters2samples(r));
meters2samples(r) = int(m.SR * (float(r)/float(c)) + 0.5);
};
level(lc,r,rmax) = R(lc,r,rmax) with{
R(1,r,rmax) = gain(float(r)/float(rmax));
};
R((r,rl)) = R(r), R(rl);
R(r) = delay(delay_comp,(r_max-r)) : level(level_comp,r,r_max);
};
gate(0) = !;
gate(1) = _;
dirac(i,j) = i==j;
gate_bus(order,(o,oss)) = (gate(order==o),gate_bus(order,oss));
gate_bus(order,o) = gate(order==o);
deinterleave(n,span) = par(i,n,_) <: par(i,span, par(j,n,gate(%(j,span)==i)));
<: par(jord,no,gate_bus(jord,co)
:> nfc_out(nfc_output,jord,m.take(ispkr+1,rs),1.0))
:>_;
nfc_input_bus(nc) = par(i,nc, nfc_inp(nfc_input, m.take(i+1,co), r_bar, 1.0));
gamma_bus(n) = par(i,nc, gain( m.take(m.take(i+1,co)+1, gamma(n))));
output_gain = hslider("gain [unit:dB]", 0, -30, +10, 1): mu.db2linear :*(checkbox("mute")<0.5): dezipper;
gain_muting_bus(0,n) = bus(n);
gain_muting_bus(1,n) = par(i,n,*(output_gain));
decoder(1,nc,ns) = nfc_input_bus(nc)
: gamma_bus(0)
<: par(is,ns, speaker_chain(is))
: delay_level(rs);
decoder(2,nc,ns) = nfc_input_bus(nc)
: par(i,nc, shelf(xover_freq,m.take(m.take(i+1,co)+1, gamma(0))/lfhf_ratio,
m.take(m.take(i+1,co)+1, gamma(1))*lfhf_ratio))
<: par(is,ns, speaker_chain(is))
: delay_level(rs);
decoder(3,nc,ns) = bus(nc)
: nfc_input_bus(nc)
: xover(xover_freq,nc) : deinterleave(2*nc,2)
: (gamma_bus(0),gamma_bus(1)) : bus(2*nc)
<: par(j, ns, speaker_chain2(j,nc))
: delay_level(rs)
;
speaker_chain2(i,nc) = gain(s(i,0)), gain(s(i,1))
:> bus(nc)
<: par(j,no,gate_bus(j,co):>nfc_out(nfc_output,j,m.take(i+1,rs),1.0))
:>_ ;
r_max = sup(rs);
r_bar = (rs :> float) / float(count(rs));
no = decoder_order+1;
nc = count(co);
process = input_mask(input_full_set):decoder(decoder_type,nc,ns):gain_muting_bus(output_gain_muting,ns);
|
f91c7554682de557a770d83cd2c75032df6f202181ab5f217ff1cee24cd33072 | notam02/studio-3-resources | Sirius_5h5p_allrad_5200_rE_max_2_band.dsp | // Faust Decoder Configuration File
// Written by Ambisonic Decoder Toolbox, version 8.0
// run by thomj on thomjmbp.local (MACI64) at 02-Sep-2021 12:40:06
//------- decoder information -------
// decoder file = ../decoders/Sirius_5h5p_allrad_5200_rE_max_2_band.dsp
// description = Sirius_5h5p_allrad_5200_rE_max_2_band
// speaker array name = Sirius
// horizontal order = 5
// vertical order = 5
// coefficient order = acn
// coefficient scale = SN3D
// input scale = SN3D
// mixed-order scheme = HP
// input channel order: W Y Z X V T R S U Q O M K L N P 44S 43S 42S 41S 40C 41C 42C 43C 44C 55S 54S 53S 52S 51S 50C 51C 52C 53C 54C 55C
// output speaker order: A.1 A.2 A.3 A.4 A.5 A.6 A.7 A.8 A.9 A.10 A.11 A.12 B.1 B.2 B.3 B.4 B.5 B.6 B.7 B.8 C.1 C.2 C.3 C.4
//-------
// start decoder configuration
declare name "Sirius_5h5p_allrad_5200_rE_max_2_band";
// bands
nbands = 2;
// decoder type
decoder_type = 2;
// crossover frequency in Hz
xover_freq = hslider("xover [unit:Hz]",400,200,800,20): dezipper;
// lfhf_balance
lfhf_ratio = hslider("lf/hf [unit:dB]", 0, -3, +3, 0.1): mu.db2linear : dezipper;
// decoder order
decoder_order = 5;
// ambisonic order of each input component
co = ( 0, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5);
// use full or reduced input set
input_full_set = 1;
// delay compensation
delay_comp = 1;
// level compensation
level_comp = 1;
// nfc on input or output
nfc_output = 1;
nfc_input = 0;
// enable output gain and muting controls
output_gain_muting = 1;
// number of speakers
ns = 24;
// radius for each speaker in meters
rs = ( 1.948, 1.963, 1.963, 1.873, 1.98, 1.976, 1.948, 1.941, 1.948, 1.791, 1.911, 1.925, 1.947, 1.942, 1.955, 1.952, 1.953, 1.946, 1.948, 1.946, 1.668, 1.667, 1.655, 1.658);
// per order gains, 0 for LF, 1 for HF.
// Used to implement shelf filters, or to modify velocity matrix
// for max_rE decoding, and so forth. See Appendix A of BLaH6.
gamma(0) = ( 1, 1, 1, 1, 1, 1);
gamma(1) = ( 1.756086804, 1.637497409, 1.412331218, 1.103261402, 0.741077428, 0.3612486749);
// gain matrix
s(00,0) = ( 0.0595522499, 2.40327e-05, -0.0339528708, 0.156243339, 5.79562e-05, 2.06492e-05, -0.0694826204, -0.0656288584, 0.193062348, 9.10094e-05, 5.95954e-05, 5.0097e-06, 0.0204776998, -0.0636007007, -0.0695412486, 0.2040183264, 0.0001174199, 0.0001099187, 3.33547e-05, -3.80045e-05, 0.0278136294, -0.0044366691, -0.0346425638, -0.0641973583, 0.1938706012, 0.0001336761, 0.0001597066, 7.26318e-05, -7.42631e-05, -2.96003e-05, 0.0170351579, 0.030269796, -0.0290604169, -0.0109427035, -0.0531171917, 0.1675819121);
s(01,0) = ( 0.0512598599, -0.0659022263, -0.041776811, 0.1162124733, -0.141672759, 0.0435668041, -0.0558850056, -0.0740486847, 0.0850045758, -0.1759689832, 0.0845606595, 0.0238246524, 0.0411964622, -0.0431773624, -0.0464514919, 0.0048586493, -0.1507095229, 0.0938567191, 0.022813669, -0.0155970527, 0.0255352431, 0.0242829329, -0.0151038528, 0.0038955715, -0.0789999184, -0.083184853, 0.0672498967, 0.0110822798, -0.0042522489, -0.0182954175, -0.0062545595, 0.0324273318, -0.0010979623, -0.0019533128, 0.0457785748, -0.1266110602);
s(02,0) = ( 0.0597634832, -0.1329285635, -0.0337180845, 0.0826677184, -0.1727909661, 0.0589247219, -0.069689265, -0.0286618392, -0.0848292798, -0.0206174041, 0.0549425225, 0.0534810895, 0.0198656965, -0.0344877774, 0.0460895001, -0.2007487371, 0.1496856856, -0.0211211563, 0.0315888657, 0.0003447265, 0.0276177538, -0.0088809284, 0.014315401, 0.0681141584, -0.1165014599, 0.1518820849, -0.0667440511, 0.0008758632, 0.0314839933, -0.0267773577, 0.0173842287, 0.0134640261, 0.0011215879, 0.0117129124, 0.0059984685, 0.0554297938);
s(03,0) = ( 0.0597715758, -0.1568133012, -0.0336816099, -1.23375e-05, 2.93952e-05, 0.0649511486, -0.069679913, -5.7048e-06, -0.193743298, 0.2047066919, 1.8621e-05, 0.0635678873, 0.0198755801, 4.5593e-06, 0.0686493325, 4.47017e-05, -5.21839e-05, -0.0631977482, -7.1234e-06, 0.0052612512, 0.0274557948, 1.483e-05, 0.034315909, 3.25788e-05, 0.1944918302, -0.1680895329, -4.39163e-05, -0.0103839195, -2.04229e-05, -0.0294661627, 0.0173695176, -6.2939e-06, 0.029699578, -1.2167e-06, -0.0521159169, -4.83524e-05);
s(04,0) = ( 0.0598197494, -0.1330355266, -0.0336131256, -0.0827722496, 0.1729766423, 0.0587543511, -0.0697197871, 0.0284920038, -0.0848391663, -0.0207448844, -0.054616755, 0.0534185366, 0.0196989145, 0.0344025573, 0.0460890195, 0.2009130963, -0.1497373305, -0.0213946149, -0.0313523616, 0.0004977089, 0.0273839728, 0.0090432138, 0.0143515899, -0.067827312, -0.1167193471, 0.1520998272, 0.066710621, 0.0005871562, -0.0316420621, -0.026497456, 0.0174637764, -0.0131601551, 0.0011227297, -0.011505196, 0.0055515729, -0.0553343839);
s(05,0) = ( 0.0514107025, -0.0661035117, -0.0416271716, -0.1165849832, 0.1421326675, 0.0433950805, -0.056150861, 0.073704268, 0.0853073597, -0.1765760691, -0.0841284585, 0.0239643705, 0.0408283302, 0.0434341669, -0.0461394332, -0.0049100345, 0.1512650741, 0.093215205, -0.0229649712, -0.01530636, 0.0255717064, -0.023754951, -0.015173519, -0.0039870518, -0.0792471225, -0.0835183947, -0.0665734418, 0.0111110154, 0.0037207637, -0.0182573922, -0.0058138269, -0.0322653514, -0.0014463657, 0.0018955821, 0.045537266, 0.1270566763);
s(06,0) = ( 0.0597426053, 9.8368e-06, -0.0337253664, -0.1567285449, -2.59265e-05, 9.6741e-06, -0.0696263354, 0.0650336496, 0.1936423992, 4.26673e-05, -2.43195e-05, -6.4483e-06, 0.0199086911, 0.0635565484, -0.0687607858, -0.2046090855, -5.64688e-05, 4.33768e-05, 8.899e-07, -9.5414e-06, 0.0275283755, 0.0051979387, -0.034359227, 0.0633378912, 0.1944107105, 6.52364e-05, -6.38422e-05, 1.35727e-05, 2.39359e-05, -1.67459e-05, 0.0173138534, -0.0295742691, -0.0296477197, 0.0104800725, -0.0522794053, -0.168030937);
s(07,0) = ( 0.0597471104, 0.0826433789, -0.0337774538, -0.1328922213, -0.1727373482, -0.02876281, -0.0696733423, 0.0590210467, 0.0848065225, 0.2006816818, 0.0550992023, -0.0344930372, 0.0199720853, 0.0534767316, -0.0460848272, 0.0206087991, -0.1496277811, -0.0682071189, 0.0316327439, -0.0088251678, 0.0276593941, 0.0002590305, -0.014292835, 0.0210079055, -0.116457597, 0.055405103, 0.0667098687, -0.011751671, 0.0314357783, 0.0135792743, 0.0173732992, -0.0268510422, -0.0010860344, -0.0009583197, 0.0061202815, 0.1518145709);
s(08,0) = ( 0.0512114704, 0.1161120864, -0.04177453, -0.0658338404, -0.1415309119, -0.0740752331, -0.0558441412, 0.0435924854, -0.0849529933, -0.0049035938, 0.0846365, -0.0431443338, 0.0413050024, 0.0237838615, 0.0464735668, 0.1758113433, 0.1506091782, -0.0039247266, 0.0227623141, 0.0244535217, 0.0254700781, -0.0157040557, 0.0151126937, -0.0939661431, -0.0788735119, -0.1264673232, -0.0673451549, 0.0019998312, -0.0044515298, 0.0323623846, -0.0063633038, -0.0182488166, 0.0010164524, -0.0110619384, 0.0458739249, -0.0831757817);
s(09,0) = ( 0.0594305546, 0.155906548, -0.0341709692, -2.04589e-05, -4.4661e-05, -0.066119686, -0.0693225712, 1.7912e-06, -0.1926440384, -0.2035769313, -1.05056e-05, -0.0635869889, 0.0208476084, -1.34795e-05, 0.0701518926, 6.46033e-05, 7.63884e-05, 0.0648465375, -3.3426e-05, -0.0039126978, 0.0280910249, 2.93442e-05, 0.0348304673, 3.45219e-05, 0.1934506486, 0.1672174238, 6.43258e-05, 0.0112899938, 5.19121e-05, 0.0308314876, 0.0167257048, 3.608e-07, 0.0286435147, 5.31244e-05, -0.0537259725, -7.87516e-05);
s(10,0) = ( 0.0511830447, 0.1160275069, -0.0418376563, 0.0657873725, 0.1414234061, -0.0741823971, -0.0557339822, -0.0436464436, -0.084884947, -0.004895282, -0.0847544288, -0.0430322161, 0.0413565048, -0.0237148136, 0.0465636537, -0.175678208, -0.1505002621, -0.0038884822, -0.0226777631, 0.0245404887, 0.0254708581, 0.0157331553, 0.0150798932, 0.0941342031, -0.0788249302, -0.1263963504, 0.0675275745, 0.0020187579, 0.0045145146, 0.0324235083, -0.0064808713, 0.0182773367, 0.0009236481, 0.0110254304, 0.0459218127, 0.0831154392);
s(11,0) = ( 0.0596125831, 0.0824540694, -0.0339168699, 0.1326007598, 0.1723651244, -0.02895121, -0.0695482235, -0.0593309795, 0.0846246903, 0.200265218, -0.0555358606, -0.0345304134, 0.0203179954, -0.0534430897, -0.0462981088, -0.020584971, 0.1493018742, -0.0687622475, -0.0318108076, -0.0085427879, 0.0278414909, 0.0001560446, -0.0142678354, -0.020954851, -0.1162666175, 0.0552202892, -0.0671786216, -0.0119930993, -0.0310460149, 0.0138083401, 0.01711896, 0.0272062318, -0.0008828888, 0.0011277174, 0.0064515432, -0.1515581609);
s(12,0) = ( 0.042373213, -0.0447581722, 0.0598552286, 0.0937867627, -0.0883017227, -0.0570147021, -0.0243050073, 0.1218364686, 0.0709112755, -0.0969943716, -0.1163877672, -0.0098255309, -0.0961799355, 0.0243603645, 0.0969494897, 0.0219106991, -0.0703667188, -0.1332646647, -0.0494619008, 0.0413782628, -0.063572646, -0.0883295405, 0.0458239835, 0.0343432838, -0.0171579855, -0.0313877126, -0.1007406034, -0.0769848772, 0.0375916354, 0.03951784, 0.0208071172, -0.09268592, -0.0296050471, 0.0253686356, -0.0200681817, -0.0269034173);
s(13,0) = ( 0.035583858, -0.0803140476, 0.0539885657, 0.031126492, -0.0628644619, -0.1109541074, -0.0121754263, 0.045502187, -0.0711085233, 0.0428146121, -0.0937806167, -0.0349288964, -0.0795313966, 0.019489988, -0.0979253, -0.0765143575, 0.070825345, 0.0551400935, -0.0592756525, 0.0683040972, -0.0675119287, -0.0215724355, -0.0473702703, -0.114587406, 0.0139514151, 0.005158643, 0.1027648058, 0.0237558305, 0.0080695829, 0.0912509707, 0.0004192724, -0.0371172618, 0.0288886818, -0.0819452898, 0.0113872969, 0.0540088865);
s(14,0) = ( 0.0433206365, -0.0936495668, 0.0725235936, -0.0308843087, 0.0622358075, -0.1412400948, 0.0057074119, -0.045239648, -0.0819005527, 0.0504472722, 0.0928235082, -0.0752026597, -0.07416279, -0.0196990731, -0.1239278132, 0.075648833, -0.0700022874, 0.0745065317, 0.058843779, 0.0330676491, -0.0802355168, 0.0206690255, -0.0872930857, 0.1129388047, 0.0189437522, 0.0021761397, -0.1008330313, 0.0561758096, -0.0071942353, 0.0758821903, -0.0264750617, 0.0358868124, -0.0156781836, 0.080263128, 0.0245433237, -0.0534094285);
s(15,0) = ( 0.0426068691, -0.0448977821, 0.0605973307, -0.0940496166, 0.0883827329, -0.0575044715, -0.0233517655, -0.1229400635, 0.0709101288, -0.0968604941, 0.1170710163, -0.0106403221, -0.0959402236, -0.0263524736, 0.0975492251, -0.0217826834, 0.0700680235, -0.1337075481, 0.0509589098, 0.0407171929, -0.0647072489, 0.0866656718, 0.0473654164, -0.0344456805, -0.0171994175, -0.0311133565, 0.1007935359, -0.0784610386, -0.0359438062, 0.0395042078, 0.0189042487, 0.092782611, -0.0278122643, -0.0260311933, -0.0201308026, 0.0267715706);
s(16,0) = ( 0.0439518713, 0.0314788553, 0.0739780065, -0.0945351879, -0.0631057772, 0.0463844553, 0.0070740956, -0.1431099751, 0.0821380284, 0.0762710147, -0.0945429778, 0.020896029, -0.0735171873, -0.0775750548, 0.1245308392, -0.050092956, -0.0701212262, 0.1142170406, -0.0609448662, -0.0198813625, -0.0803856951, 0.0307492427, 0.0883611927, -0.0739076242, 0.0183941931, 0.0531225244, -0.101121854, 0.0820257956, 0.0052368106, -0.0356010151, -0.0272680768, 0.0739066639, 0.0172559259, -0.055681426, 0.0235229209, 0.0025391542);
s(17,0) = ( 0.0508812815, 0.108359884, 0.0800600517, -0.0451083541, -0.088552935, 0.1545009342, -0.0050916713, -0.0578744206, -0.0823633995, -0.0296013722, -0.1171117679, 0.0672188384, -0.0904662527, -0.0112150108, -0.1242334291, 0.0967898127, 0.0697155288, -0.0538662714, -0.0510700942, -0.0510303443, -0.0767337092, 0.0396117059, -0.0873216574, 0.1328925709, -0.0123858726, -0.0240668752, 0.0991587951, -0.0580477898, 0.0346734617, -0.0758244154, -0.0069479156, 0.0378202383, -0.0165449053, 0.077014756, -0.0072448761, -0.0305235231);
s(18,0) = ( 0.0427019872, 0.0943833743, 0.0604934264, 0.0450198646, 0.0887087453, 0.1228540565, -0.0239474136, 0.0574705973, -0.0713087778, -0.0220655742, 0.1170904844, 0.0252677295, -0.0962619885, 0.0102867457, -0.097635302, -0.0973326769, -0.0705182557, -0.0346438735, 0.0502793526, -0.0877372254, -0.0638941708, -0.0409667348, -0.0464997677, -0.1338758559, -0.0171233223, -0.0268506951, -0.1010847866, -0.0256456759, -0.0366470681, -0.0922746685, 0.0202710205, -0.0391688043, 0.0290835907, -0.0777687233, -0.0199753686, 0.0313821036);
s(19,0) = ( 0.043628032, 0.0311641725, 0.0729280259, 0.0943228638, 0.0627624535, 0.0455371651, 0.0054448059, 0.1420404404, 0.0823601738, 0.0761187927, 0.0933950539, 0.0195759062, -0.0749003156, 0.0751536205, 0.1244752142, 0.0504998662, 0.0701331545, 0.1134012634, 0.05874631, -0.0211571385, -0.0804732727, -0.0339434641, 0.0873785284, 0.074522809, 0.0187289448, 0.0531607795, 0.100771571, 0.0801001633, -0.0079738928, -0.0361339534, -0.0257983877, -0.076433164, 0.0152740378, 0.056127232, 0.0242041474, -0.0023588953);
s(20,0) = ( 0.0442293156, -0.0387461412, 0.1112286558, 0.0390696095, -0.0210686308, -0.0906303403, 0.1253980532, 0.0912357201, 0.0004046721, -0.0005588397, -0.0517892992, -0.1286141538, 0.0832659034, 0.1291188287, 0.0008402558, -2.9525e-05, -0.0002157705, -0.0013642263, -0.0823943139, -0.1313855905, 0.0095483398, 0.131330528, 0.0009841618, -0.0001567638, 0.0040844567, -0.0011865903, -0.0005307609, -0.0021185379, -0.0983979396, -0.0971166314, -0.0581173322, 0.0963593411, 0.0005877672, -0.0004236539, 0.0112273574, 0.0010805231);
s(21,0) = ( 0.0363816363, -0.0254128365, 0.0928954288, -0.0383599028, 0.0208970708, -0.0609939262, 0.1090074361, -0.089904571, 0.0107095974, -0.0079898692, 0.0516487795, -0.0906797525, 0.0808642679, -0.1280283893, 0.0254892965, 0.0002914298, 0.0001568425, -0.0204166139, 0.0828576758, -0.1006545015, 0.0255186277, -0.1315755271, 0.0383583004, 0.0009219385, -0.0008441375, 0.0016635625, 0.0003090783, -0.0342221992, 0.1002049785, -0.0875546316, -0.029608747, -0.0983942091, 0.0413796351, 0.0019871942, -0.0021224117, -0.0009866482);
s(22,0) = ( 0.0289571129, 0.0251479474, 0.0755568778, -0.0251157157, -0.0206427606, 0.0604693417, 0.0935988627, -0.0604426251, -0.0001002048, 0.0077090395, -0.0511932649, 0.0902094179, 0.0790595507, -0.0902912312, -0.0001955495, 0.0079319174, 0.0001675775, 0.0198884685, -0.0825835236, 0.1007609305, 0.041903102, -0.101052952, -0.0001909413, 0.0203987869, -0.0056466977, -0.0019109026, 0.0004159745, 0.0338358559, -0.1007897865, 0.0886946955, -0.0002094612, -0.0892058884, -1.58861e-05, 0.0345561071, -0.0151758303, 0.0017048924);
s(23,0) = ( 0.036939253, 0.0392527226, 0.0941137639, 0.0257489516, 0.0213006062, 0.0916829485, 0.1098893085, 0.0616684578, -0.0112469346, 5.83482e-05, 0.0524747681, 0.1298367026, 0.0806782453, 0.0913831371, -0.0266202317, -0.0082308083, -0.000214569, 0.0003802069, 0.0837976949, 0.1323015191, 0.0244065661, 0.1009868439, -0.0397287294, -0.0209321142, -0.0007365654, 0.001070333, -0.0004365997, 0.0011982065, 0.100717363, 0.0975877859, -0.0307132451, 0.0873661544, -0.0423139909, -0.0348574931, -0.0018444503, -0.0016918569);
// ----- do not change anything below here ----
// mask for full ambisonic set to channels in use
input_mask(0) = bus(nc);
input_mask(1) = (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_);
// Start of decoder implementation. No user serviceable parts below here!
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//declare name "Fill in name in configuration section below";
declare version "1.3";
declare author "AmbisonicDecoderToolkit";
declare license "BSD 3-Clause License";
declare copyright "(c) Aaron J. Heller 2013";
/*
Copyright (c) 2013-2019, Aaron J. Heller
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
Author: Aaron J. Heller <[email protected]>
$Id: 2882d4f19ef11361be7b33f544f5fb99a3988651 $
*/
// v 1.3 13-Nov-2019 ajh
// . removed definition of route, which is now a language primative
// in FAUST
// v 1.2, 28-Oct-2017 ajh
// . add 6th-order NFC filters
// . fixed error in speaker_chain and speaker_chain2, where speaker
// distance was being indexed by order, not speaker number
// v 1.1 remove dependancies on Faust Libraries, 23-Nov-2016 ajh
// m = library("math.lib");
// mu = library("music.lib");
m = environment {
// from the old math.lib
take (1, (xs, xxs)) = xs;
take (1, xs) = xs;
take (nn, (xs, xxs)) = take (nn-1, xxs);
bus(2) = _,_; // avoids a lot of "bus(1)" labels in block diagrams
bus(n) = par(i, n, _);
SR = min(192000, max(1, fconstant(int fSamplingFreq, <math.h>)));
//PI = 3.1415926535897932385;
// quad precision value
PI = 3.14159265358979323846264338327950288;
};
mu = environment {
// from the old music.lib
db2linear(x) = pow(10, x/20.0);
};
// m.SR from math.lib is an integer, we need a float
SR = float(m.SR);
// descriptive statistics
total(c) = c:>_;
average(c) = total(c)/count(c);
count(c) = R(c) :>_ with {
R((c,cl)) = R(c),(R(cl));
R(c) = 1;
};
rms(c) = R(c) :> /(count(c)) : sqrt with {
R((c,cl)) = R(c),R(cl);
R(c) = (c*c);
};
sup(c) = R(c) with {
R((c,cl)) = max(R(c),R(cl));
R(c) = c;
};
inf(c) = R(c) with {
R((c,cl)) = min(R(c),R(cl));
R(c) = c;
};
// bus
bus(n) = par(i,n,_);
// bus with gains
gain(c) = R(c) with {
R((c,cl)) = R(c),R(cl);
R(1) = _;
R(0) = !:0; // need to preserve number of outputs, faust will optimize away
R(float(0)) = R(0);
R(float(1)) = R(1);
R(c) = *(c);
};
// fir filter (new improved, better behaved)
fir(c) = R(c) :>_ with {
R((c,lc)) = _<: R(c), (mem:R(lc));
R(c) = gain(c);
};
// --- phase-matched bandsplitter from BLaH3
xover(freq,n) = par(i,n,xover1) with {
sub(x,y) = y-x;
k = tan(m.PI*float(freq)/m.SR);
k2 = k^2;
d = (k2 + 2*k + 1);
//d = (k2,2*k,1):>_;
// hf numerator
b_hf = (1/d,-2/d,1/d);
// lf numerator
b_lf = (k2/d, 2*k2/d, k2/d);
// denominator
a = (2 * (k2-1) / d, (k2 - 2*k + 1) / d);
//
xover1 = _:sub ~ fir(a) <: fir(b_lf),fir(b_hf):_,*(-1);
};
shelf(freq,g_lf,g_hf) = xover(freq,1) : gain(g_lf),gain(g_hf):>_;
// from http://old.nabble.com/Re%3A--Faudiostream-devel---ANN--Faust-0.9.24-p28597267.html
// (not used currently, do we need to worry about denormals?)
anti_denormal = pow(10,-20);
anti_denormal_ac = 1 - 1' : *(anti_denormal) : + ~ *(-1);
// UI "dezipper"
smooth(c) = *(1-c) : +~*(c);
dezipper = smooth(0.999);
// physical constants
temp_celcius = 20;
c = 331.3 * sqrt(1.0 + (temp_celcius/273.15)); // speed of sound m/s
// ---- NFC filters ----
// see BesselPoly.m for coefficient calculations
//
// [1] J. Daniel, “Spatial Sound Encoding Including Near Field Effect:
// Introducing Distance Coding Filters and a Viable, New Ambisonic
// Format ,” Preprints 23rd AES International Conference, Copenhagen,
// 2003.
// [2] Weisstein, Eric W. "Bessel Polynomial." From MathWorld--A Wolfram
// Web Resource. http://mathworld.wolfram.com/BesselPolynomial.html
// [3] F. Adriaensen, “Near Field filters for Higher Order
// Ambisonics,” Jul. 2006.
// [4] J. O. Smith, “Digital State-Variable Filters,” CCRMA, May 2013.
//
// [5] "A Filter Primer", https://www.maximintegrated.com/en/app-notes/index.mvp/id/733
// first and second order state variable filters see [4]
// FIXME FIXME this code needs to be refactored, so that the roots are
// passed in rather then hardwired in the code, or another
// API layer, or ...
svf1(g,d1) = _ : *(g) : (+ <: +~_, _ ) ~ *(d1) : !,_ ;
svf2(g,d1,d2) = _ : *(g) : (((_,_,_):> _ <: +~_, _ ) ~ *(d1) : +~_, _) ~ *(d2) : !,_ ;
// these are Bessel filters, see [1,2]
nfc1(r,gain) = svf1(g,d1) // r in meters
with {
omega = c/(float(r)*SR);
// 1 1
b1 = omega/2.0;
g1 = 1.0 + b1;
d1 = 0.0 - (2.0 * b1) / g1;
g = gain/g1;
};
nfc2(r,gain) = svf2(g,d1,d2)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
// 1.000000000000000 3.00000000000000 3.00000000000000
b1 = 3.0 * r1;
b2 = 3.0 * r2;
g2 = 1.0 + b1 + b2;
d1 = 0.0 - (2.0 * b1 + 4.0 * b2) / g2; // fixed
d2 = 0.0 - (4.0 * b2) / g2;
g = gain/g2;
};
nfc3(r,gain) = svf2(g,d1,d2):svf1(1.0,d3)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
// 1.000000000000000 3.677814645373914 6.459432693483369
b1 = 3.677814645373914 * r1;
b2 = 6.459432693483369 * r2;
g2 = 1.0 + b1 + b2;
d1 = 0.0 - (2.0 * b1 + 4.0 * b2) / g2; // fixed
d2 = 0.0 - (4.0 * b2) / g2;
// 1.000000000000000 2.322185354626086
b3 = 2.322185354626086 * r1;
g3 = 1.0 + b3;
d3 = 0.0 - (2.0 * b3) / g3;
g = gain/(g3*g2);
};
nfc4(r,gain) = svf2(g,d1,d2):svf2(1.0,d3,d4)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
// 1.000000000000000 4.207578794359250 11.487800476871168
b1 = 4.207578794359250 * r1;
b2 = 11.487800476871168 * r2;
g2 = 1.0 + b1 + b2;
d1 = 0.0 - (2.0 * b1 + 4.0 * b2) / g2; // fixed
d2 = 0.0 - (4.0 * b2) / g2;
// 1.000000000000000 5.792421205640748 9.140130890277934
b3 = 5.792421205640748 * r1;
b4 = 9.140130890277934 * r2;
g3 = 1.0 + b3 + b4;
d3 = 0.0 - (2.0 * b3 + 4.0 * b4) / g3; // fixed
d4 = 0.0 - (4.0 * b4) / g3;
g = gain/(g3*g2);
};
nfc5(r,gain) = svf2(g,d1,d2):svf2(1.0,d3,d4):svf1(1.0,d5)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
// 1.000000000000000 4.649348606363304 18.156315313452325
b1 = 4.649348606363304 * r1;
b2 = 18.156315313452325 * r2;
g2 = 1.0 + b1 + b2;
d1 = 0.0 - (2.0 * b1 + 4.0 * b2) / g2; // fixed
d2 = 0.0 - (4.0 * b2) / g2;
// 1.000000000000000 6.703912798306966 14.272480513279568
b3 = 6.703912798306966 * r1;
b4 = 14.272480513279568 * r2;
g3 = 1.0 + b3 + b4;
d3 = 0.0 - (2.0 * b3 + 4 * b4) / g3; // fixed
d4 = 0.0 - (4.0 * b4) / g3;
// 1.000000000000000 3.646738595329718
b5 = 3.646738595329718 * r1;
g4 = 1.0 + b5;
d5 = 0.0 - (2.0 * b5) / g4;
g = gain/(g4*g3*g2);
};
nfc6(r,gain) = svf2(g,d11,d12):svf2(1.0,d21,d22):svf2(1.0,d31,d32)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
// reverse Bessel Poly 6:
// 1 21 210 1260 4725 10395 10395
// factors:
// 1.000000000000000 5.031864495621642 26.514025344067996
// 1.000000000000000 7.471416712651683 20.852823177396761
// 1.000000000000000 8.496718791726696 18.801130589570320
// 1.000000000000000 5.031864495621642 26.514025344067996
b11 = 5.031864495621642 * r1;
b12 = 26.514025344067996 * r2;
g1 = 1.0 + b11 + b12;
d11 = 0.0 - (2.0 * b11 + 4.0 * b12) / g1;
d12 = 0.0 - (4.0 * b12) / g1;
// 1.000000000000000 7.471416712651683 20.852823177396761
b21 = 7.471416712651683 * r1;
b22 = 20.852823177396761 * r2;
g2 = 1.0 + b21 + b22;
d21 = 0.0 - (2.0 * b21 + 4.0 * b22) / g2;
d22 = 0.0 - (4.0 * b22) / g2;
// 1.000000000000000 8.496718791726696 18.801130589570320
b31 = 8.496718791726696 * r1;
b32 = 18.801130589570320 * r2;
g3 = 1.0 + b31 + b32;
d31 = 0.0 - (2.0 * b31 + 4.0 * b32) / g3;
d32 = 0.0 - (4.0 * b32) / g3;
g = gain/(g3*g2*g1);
};
// ---- End NFC filters ----
nfc(0,r,g) = gain(g);
nfc(1,r,g) = nfc1(r,g);
nfc(2,r,g) = nfc2(r,g);
nfc(3,r,g) = nfc3(r,g);
nfc(4,r,g) = nfc4(r,g);
nfc(5,r,g) = nfc5(r,g);
nfc(6,r,g) = nfc6(r,g);
// null NFC filters to allow very high order decoders. FIXME!
nfc(o,r,g) = gain(g);
//declare name "nfctest";
//process = bus(6):(nfc(0,2,1),nfc(1,2,1),nfc(2,2,1),nfc(3,2,1),nfc(4,2,1),nfc(5,2,1)):bus(6);
// top level api to NFC filters
nfc_out(1,order,r,g) = nfc(order,r,g);
nfc_out(0,order,r,g) = _;
nfc_inp(1,order,r,g) = nfc(order,r,g);
nfc_inp(0,order,r,g) = _;
// ---- delay and level
delay(dc,r) = R(dc,r) with {
R(0,r) = _; // delay_comp off
R(1,0) = _; // delay_comp on, but no delay
R(1,float(0)) = R(1,0);
R(1,r) = @(meters2samples(r));
meters2samples(r) = int(m.SR * (float(r)/float(c)) + 0.5);
};
level(lc,r,rmax) = R(lc,r,rmax) with{
R(0,r,rmax) = _; // level_comp off
R(1,r,rmax) = gain(float(r)/float(rmax));
};
delay_level(r) = R(r) with { // delay_comp and level_comp are free variables (fix?)
R((r,rl)) = R(r), R(rl);
R(r) = delay(delay_comp,(r_max-r)) : level(level_comp,r,r_max);
};
// ---- gates
gate(0) = !;
gate(1) = _;
dirac(i,j) = i==j;
gate_bus(order,(o,oss)) = (gate(order==o),gate_bus(order,oss));
gate_bus(order,o) = gate(order==o);
// route (not used)
// route(n_inputs,n_outputs,outs) = m.bus(n_inputs)
// <: par(i,n_outputs,(0,gate_bus(i,outs)):>_)
// : m.bus(n_outputs);
//process = route(4,4,(3,1,1,2)); // test
// deinterleave
deinterleave(n,span) = par(i,n,_) <: par(i,span, par(j,n,gate(%(j,span)==i)));
// 1 band speaker chain
speaker_chain(ispkr) = gain(s(ispkr,0)) // decoder matrix gains
// iterate over orders, select each order from matrix
<: par(jord,no,gate_bus(jord,co)
// sum and apply NFC filter for that order
// at the speaker distance
:> nfc_out(nfc_output,jord,m.take(ispkr+1,rs),1.0))
// sum the orders
:>_;
// 1 band speaker chain -- bad definition
// speaker_chain(i) = gain(s(i,0)) <: par(i,no,gate_bus(i,co):>nfc_out(nfc_output,i,m.take(i+1,rs),1.0)):>_;
// near field correction at input, nfc_input = 1
nfc_input_bus(nc) = par(i,nc, nfc_inp(nfc_input, m.take(i+1,co), r_bar, 1.0));
// per order gains
gamma_bus(n) = par(i,nc, gain( m.take(m.take(i+1,co)+1, gamma(n))));
// output gain and muting
// note in GUI elements, dezipper should be last in chain. Dezipper runs in sample time, rest runs in slow (GUI) time
output_gain = hslider("gain [unit:dB]", 0, -30, +10, 1): mu.db2linear :*(checkbox("mute")<0.5): dezipper;
gain_muting_bus(0,n) = bus(n);
gain_muting_bus(1,n) = par(i,n,*(output_gain));
// one band decoder
decoder(1,nc,ns) = nfc_input_bus(nc)
: gamma_bus(0)
<: par(is,ns, speaker_chain(is))
: delay_level(rs);
// two band decoder
// there are two variants of the two-band decoder
// 1. classic, with shelf-filters and one matrix
// 2. vienna, bandsplitting filters and separate LF and HF matricies.
// classic shelf filter decoder
decoder(2,nc,ns) = nfc_input_bus(nc)
: par(i,nc, shelf(xover_freq,m.take(m.take(i+1,co)+1, gamma(0))/lfhf_ratio,
m.take(m.take(i+1,co)+1, gamma(1))*lfhf_ratio))
<: par(is,ns, speaker_chain(is))
: delay_level(rs);
// vienna decoder
// FIXME FIXME need to incorporate lfhf_ratio
decoder(3,nc,ns) = bus(nc)
: nfc_input_bus(nc)
: xover(xover_freq,nc) : deinterleave(2*nc,2)
: (gamma_bus(0),gamma_bus(1)) : bus(2*nc)
<: par(j, ns, speaker_chain2(j,nc))
: delay_level(rs)
;
// 2 band speaker chain for vienna decoder
// i is speaker, j is order
speaker_chain2(i,nc) = gain(s(i,0)), gain(s(i,1))
:> bus(nc)
<: par(j,no,gate_bus(j,co):>nfc_out(nfc_output,j,m.take(i+1,rs),1.0))
:>_ ;
//process = speaker_chain2(1,16); // test
// --------------------------------------
// things calculated from decoder config
// maximum and average speaker distance
r_max = sup(rs);
r_bar = (rs :> float) / float(count(rs));
// number of ambisonic orders, including 0
no = decoder_order+1;
// number of input component signals
nc = count(co);
// the top-level process
process = input_mask(input_full_set):decoder(decoder_type,nc,ns):gain_muting_bus(output_gain_muting,ns);
// End of decoder implementation. No user serviceable parts above here!
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//EOF!
| https://raw.githubusercontent.com/notam02/studio-3-resources/a007fa58e0090e46a50f4bf537cd600628598c45/faust/Sirius_5h5p_allrad_5200_rE_max_2_band.dsp | faust | Faust Decoder Configuration File
Written by Ambisonic Decoder Toolbox, version 8.0
run by thomj on thomjmbp.local (MACI64) at 02-Sep-2021 12:40:06
------- decoder information -------
decoder file = ../decoders/Sirius_5h5p_allrad_5200_rE_max_2_band.dsp
description = Sirius_5h5p_allrad_5200_rE_max_2_band
speaker array name = Sirius
horizontal order = 5
vertical order = 5
coefficient order = acn
coefficient scale = SN3D
input scale = SN3D
mixed-order scheme = HP
input channel order: W Y Z X V T R S U Q O M K L N P 44S 43S 42S 41S 40C 41C 42C 43C 44C 55S 54S 53S 52S 51S 50C 51C 52C 53C 54C 55C
output speaker order: A.1 A.2 A.3 A.4 A.5 A.6 A.7 A.8 A.9 A.10 A.11 A.12 B.1 B.2 B.3 B.4 B.5 B.6 B.7 B.8 C.1 C.2 C.3 C.4
-------
start decoder configuration
bands
decoder type
crossover frequency in Hz
lfhf_balance
decoder order
ambisonic order of each input component
use full or reduced input set
delay compensation
level compensation
nfc on input or output
enable output gain and muting controls
number of speakers
radius for each speaker in meters
per order gains, 0 for LF, 1 for HF.
Used to implement shelf filters, or to modify velocity matrix
for max_rE decoding, and so forth. See Appendix A of BLaH6.
gain matrix
----- do not change anything below here ----
mask for full ambisonic set to channels in use
Start of decoder implementation. No user serviceable parts below here!
------------------------------------------------------------------------------
------------------------------------------------------------------------------
------------------------------------------------------------------------------
declare name "Fill in name in configuration section below";
Copyright (c) 2013-2019, Aaron J. Heller
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Author: Aaron J. Heller <[email protected]>
$Id: 2882d4f19ef11361be7b33f544f5fb99a3988651 $
v 1.3 13-Nov-2019 ajh
. removed definition of route, which is now a language primative
in FAUST
v 1.2, 28-Oct-2017 ajh
. add 6th-order NFC filters
. fixed error in speaker_chain and speaker_chain2, where speaker
distance was being indexed by order, not speaker number
v 1.1 remove dependancies on Faust Libraries, 23-Nov-2016 ajh
m = library("math.lib");
mu = library("music.lib");
from the old math.lib
avoids a lot of "bus(1)" labels in block diagrams
PI = 3.1415926535897932385;
quad precision value
from the old music.lib
m.SR from math.lib is an integer, we need a float
descriptive statistics
bus
bus with gains
need to preserve number of outputs, faust will optimize away
fir filter (new improved, better behaved)
--- phase-matched bandsplitter from BLaH3
d = (k2,2*k,1):>_;
hf numerator
lf numerator
denominator
from http://old.nabble.com/Re%3A--Faudiostream-devel---ANN--Faust-0.9.24-p28597267.html
(not used currently, do we need to worry about denormals?)
UI "dezipper"
physical constants
speed of sound m/s
---- NFC filters ----
see BesselPoly.m for coefficient calculations
[1] J. Daniel, “Spatial Sound Encoding Including Near Field Effect:
Introducing Distance Coding Filters and a Viable, New Ambisonic
Format ,” Preprints 23rd AES International Conference, Copenhagen,
2003.
[2] Weisstein, Eric W. "Bessel Polynomial." From MathWorld--A Wolfram
Web Resource. http://mathworld.wolfram.com/BesselPolynomial.html
[3] F. Adriaensen, “Near Field filters for Higher Order
Ambisonics,” Jul. 2006.
[4] J. O. Smith, “Digital State-Variable Filters,” CCRMA, May 2013.
[5] "A Filter Primer", https://www.maximintegrated.com/en/app-notes/index.mvp/id/733
first and second order state variable filters see [4]
FIXME FIXME this code needs to be refactored, so that the roots are
passed in rather then hardwired in the code, or another
API layer, or ...
these are Bessel filters, see [1,2]
r in meters
1 1
1.000000000000000 3.00000000000000 3.00000000000000
fixed
1.000000000000000 3.677814645373914 6.459432693483369
fixed
1.000000000000000 2.322185354626086
1.000000000000000 4.207578794359250 11.487800476871168
fixed
1.000000000000000 5.792421205640748 9.140130890277934
fixed
1.000000000000000 4.649348606363304 18.156315313452325
fixed
1.000000000000000 6.703912798306966 14.272480513279568
fixed
1.000000000000000 3.646738595329718
reverse Bessel Poly 6:
1 21 210 1260 4725 10395 10395
factors:
1.000000000000000 5.031864495621642 26.514025344067996
1.000000000000000 7.471416712651683 20.852823177396761
1.000000000000000 8.496718791726696 18.801130589570320
1.000000000000000 5.031864495621642 26.514025344067996
1.000000000000000 7.471416712651683 20.852823177396761
1.000000000000000 8.496718791726696 18.801130589570320
---- End NFC filters ----
null NFC filters to allow very high order decoders. FIXME!
declare name "nfctest";
process = bus(6):(nfc(0,2,1),nfc(1,2,1),nfc(2,2,1),nfc(3,2,1),nfc(4,2,1),nfc(5,2,1)):bus(6);
top level api to NFC filters
---- delay and level
delay_comp off
delay_comp on, but no delay
level_comp off
delay_comp and level_comp are free variables (fix?)
---- gates
route (not used)
route(n_inputs,n_outputs,outs) = m.bus(n_inputs)
<: par(i,n_outputs,(0,gate_bus(i,outs)):>_)
: m.bus(n_outputs);
process = route(4,4,(3,1,1,2)); // test
deinterleave
1 band speaker chain
decoder matrix gains
iterate over orders, select each order from matrix
sum and apply NFC filter for that order
at the speaker distance
sum the orders
1 band speaker chain -- bad definition
speaker_chain(i) = gain(s(i,0)) <: par(i,no,gate_bus(i,co):>nfc_out(nfc_output,i,m.take(i+1,rs),1.0)):>_;
near field correction at input, nfc_input = 1
per order gains
output gain and muting
note in GUI elements, dezipper should be last in chain. Dezipper runs in sample time, rest runs in slow (GUI) time
one band decoder
two band decoder
there are two variants of the two-band decoder
1. classic, with shelf-filters and one matrix
2. vienna, bandsplitting filters and separate LF and HF matricies.
classic shelf filter decoder
vienna decoder
FIXME FIXME need to incorporate lfhf_ratio
2 band speaker chain for vienna decoder
i is speaker, j is order
process = speaker_chain2(1,16); // test
--------------------------------------
things calculated from decoder config
maximum and average speaker distance
number of ambisonic orders, including 0
number of input component signals
the top-level process
End of decoder implementation. No user serviceable parts above here!
------------------------------------------------------------------------------
------------------------------------------------------------------------------
------------------------------------------------------------------------------
EOF! |
declare name "Sirius_5h5p_allrad_5200_rE_max_2_band";
nbands = 2;
decoder_type = 2;
xover_freq = hslider("xover [unit:Hz]",400,200,800,20): dezipper;
lfhf_ratio = hslider("lf/hf [unit:dB]", 0, -3, +3, 0.1): mu.db2linear : dezipper;
decoder_order = 5;
co = ( 0, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5);
input_full_set = 1;
delay_comp = 1;
level_comp = 1;
nfc_output = 1;
nfc_input = 0;
output_gain_muting = 1;
ns = 24;
rs = ( 1.948, 1.963, 1.963, 1.873, 1.98, 1.976, 1.948, 1.941, 1.948, 1.791, 1.911, 1.925, 1.947, 1.942, 1.955, 1.952, 1.953, 1.946, 1.948, 1.946, 1.668, 1.667, 1.655, 1.658);
gamma(0) = ( 1, 1, 1, 1, 1, 1);
gamma(1) = ( 1.756086804, 1.637497409, 1.412331218, 1.103261402, 0.741077428, 0.3612486749);
s(00,0) = ( 0.0595522499, 2.40327e-05, -0.0339528708, 0.156243339, 5.79562e-05, 2.06492e-05, -0.0694826204, -0.0656288584, 0.193062348, 9.10094e-05, 5.95954e-05, 5.0097e-06, 0.0204776998, -0.0636007007, -0.0695412486, 0.2040183264, 0.0001174199, 0.0001099187, 3.33547e-05, -3.80045e-05, 0.0278136294, -0.0044366691, -0.0346425638, -0.0641973583, 0.1938706012, 0.0001336761, 0.0001597066, 7.26318e-05, -7.42631e-05, -2.96003e-05, 0.0170351579, 0.030269796, -0.0290604169, -0.0109427035, -0.0531171917, 0.1675819121);
s(01,0) = ( 0.0512598599, -0.0659022263, -0.041776811, 0.1162124733, -0.141672759, 0.0435668041, -0.0558850056, -0.0740486847, 0.0850045758, -0.1759689832, 0.0845606595, 0.0238246524, 0.0411964622, -0.0431773624, -0.0464514919, 0.0048586493, -0.1507095229, 0.0938567191, 0.022813669, -0.0155970527, 0.0255352431, 0.0242829329, -0.0151038528, 0.0038955715, -0.0789999184, -0.083184853, 0.0672498967, 0.0110822798, -0.0042522489, -0.0182954175, -0.0062545595, 0.0324273318, -0.0010979623, -0.0019533128, 0.0457785748, -0.1266110602);
s(02,0) = ( 0.0597634832, -0.1329285635, -0.0337180845, 0.0826677184, -0.1727909661, 0.0589247219, -0.069689265, -0.0286618392, -0.0848292798, -0.0206174041, 0.0549425225, 0.0534810895, 0.0198656965, -0.0344877774, 0.0460895001, -0.2007487371, 0.1496856856, -0.0211211563, 0.0315888657, 0.0003447265, 0.0276177538, -0.0088809284, 0.014315401, 0.0681141584, -0.1165014599, 0.1518820849, -0.0667440511, 0.0008758632, 0.0314839933, -0.0267773577, 0.0173842287, 0.0134640261, 0.0011215879, 0.0117129124, 0.0059984685, 0.0554297938);
s(03,0) = ( 0.0597715758, -0.1568133012, -0.0336816099, -1.23375e-05, 2.93952e-05, 0.0649511486, -0.069679913, -5.7048e-06, -0.193743298, 0.2047066919, 1.8621e-05, 0.0635678873, 0.0198755801, 4.5593e-06, 0.0686493325, 4.47017e-05, -5.21839e-05, -0.0631977482, -7.1234e-06, 0.0052612512, 0.0274557948, 1.483e-05, 0.034315909, 3.25788e-05, 0.1944918302, -0.1680895329, -4.39163e-05, -0.0103839195, -2.04229e-05, -0.0294661627, 0.0173695176, -6.2939e-06, 0.029699578, -1.2167e-06, -0.0521159169, -4.83524e-05);
s(04,0) = ( 0.0598197494, -0.1330355266, -0.0336131256, -0.0827722496, 0.1729766423, 0.0587543511, -0.0697197871, 0.0284920038, -0.0848391663, -0.0207448844, -0.054616755, 0.0534185366, 0.0196989145, 0.0344025573, 0.0460890195, 0.2009130963, -0.1497373305, -0.0213946149, -0.0313523616, 0.0004977089, 0.0273839728, 0.0090432138, 0.0143515899, -0.067827312, -0.1167193471, 0.1520998272, 0.066710621, 0.0005871562, -0.0316420621, -0.026497456, 0.0174637764, -0.0131601551, 0.0011227297, -0.011505196, 0.0055515729, -0.0553343839);
s(05,0) = ( 0.0514107025, -0.0661035117, -0.0416271716, -0.1165849832, 0.1421326675, 0.0433950805, -0.056150861, 0.073704268, 0.0853073597, -0.1765760691, -0.0841284585, 0.0239643705, 0.0408283302, 0.0434341669, -0.0461394332, -0.0049100345, 0.1512650741, 0.093215205, -0.0229649712, -0.01530636, 0.0255717064, -0.023754951, -0.015173519, -0.0039870518, -0.0792471225, -0.0835183947, -0.0665734418, 0.0111110154, 0.0037207637, -0.0182573922, -0.0058138269, -0.0322653514, -0.0014463657, 0.0018955821, 0.045537266, 0.1270566763);
s(06,0) = ( 0.0597426053, 9.8368e-06, -0.0337253664, -0.1567285449, -2.59265e-05, 9.6741e-06, -0.0696263354, 0.0650336496, 0.1936423992, 4.26673e-05, -2.43195e-05, -6.4483e-06, 0.0199086911, 0.0635565484, -0.0687607858, -0.2046090855, -5.64688e-05, 4.33768e-05, 8.899e-07, -9.5414e-06, 0.0275283755, 0.0051979387, -0.034359227, 0.0633378912, 0.1944107105, 6.52364e-05, -6.38422e-05, 1.35727e-05, 2.39359e-05, -1.67459e-05, 0.0173138534, -0.0295742691, -0.0296477197, 0.0104800725, -0.0522794053, -0.168030937);
s(07,0) = ( 0.0597471104, 0.0826433789, -0.0337774538, -0.1328922213, -0.1727373482, -0.02876281, -0.0696733423, 0.0590210467, 0.0848065225, 0.2006816818, 0.0550992023, -0.0344930372, 0.0199720853, 0.0534767316, -0.0460848272, 0.0206087991, -0.1496277811, -0.0682071189, 0.0316327439, -0.0088251678, 0.0276593941, 0.0002590305, -0.014292835, 0.0210079055, -0.116457597, 0.055405103, 0.0667098687, -0.011751671, 0.0314357783, 0.0135792743, 0.0173732992, -0.0268510422, -0.0010860344, -0.0009583197, 0.0061202815, 0.1518145709);
s(08,0) = ( 0.0512114704, 0.1161120864, -0.04177453, -0.0658338404, -0.1415309119, -0.0740752331, -0.0558441412, 0.0435924854, -0.0849529933, -0.0049035938, 0.0846365, -0.0431443338, 0.0413050024, 0.0237838615, 0.0464735668, 0.1758113433, 0.1506091782, -0.0039247266, 0.0227623141, 0.0244535217, 0.0254700781, -0.0157040557, 0.0151126937, -0.0939661431, -0.0788735119, -0.1264673232, -0.0673451549, 0.0019998312, -0.0044515298, 0.0323623846, -0.0063633038, -0.0182488166, 0.0010164524, -0.0110619384, 0.0458739249, -0.0831757817);
s(09,0) = ( 0.0594305546, 0.155906548, -0.0341709692, -2.04589e-05, -4.4661e-05, -0.066119686, -0.0693225712, 1.7912e-06, -0.1926440384, -0.2035769313, -1.05056e-05, -0.0635869889, 0.0208476084, -1.34795e-05, 0.0701518926, 6.46033e-05, 7.63884e-05, 0.0648465375, -3.3426e-05, -0.0039126978, 0.0280910249, 2.93442e-05, 0.0348304673, 3.45219e-05, 0.1934506486, 0.1672174238, 6.43258e-05, 0.0112899938, 5.19121e-05, 0.0308314876, 0.0167257048, 3.608e-07, 0.0286435147, 5.31244e-05, -0.0537259725, -7.87516e-05);
s(10,0) = ( 0.0511830447, 0.1160275069, -0.0418376563, 0.0657873725, 0.1414234061, -0.0741823971, -0.0557339822, -0.0436464436, -0.084884947, -0.004895282, -0.0847544288, -0.0430322161, 0.0413565048, -0.0237148136, 0.0465636537, -0.175678208, -0.1505002621, -0.0038884822, -0.0226777631, 0.0245404887, 0.0254708581, 0.0157331553, 0.0150798932, 0.0941342031, -0.0788249302, -0.1263963504, 0.0675275745, 0.0020187579, 0.0045145146, 0.0324235083, -0.0064808713, 0.0182773367, 0.0009236481, 0.0110254304, 0.0459218127, 0.0831154392);
s(11,0) = ( 0.0596125831, 0.0824540694, -0.0339168699, 0.1326007598, 0.1723651244, -0.02895121, -0.0695482235, -0.0593309795, 0.0846246903, 0.200265218, -0.0555358606, -0.0345304134, 0.0203179954, -0.0534430897, -0.0462981088, -0.020584971, 0.1493018742, -0.0687622475, -0.0318108076, -0.0085427879, 0.0278414909, 0.0001560446, -0.0142678354, -0.020954851, -0.1162666175, 0.0552202892, -0.0671786216, -0.0119930993, -0.0310460149, 0.0138083401, 0.01711896, 0.0272062318, -0.0008828888, 0.0011277174, 0.0064515432, -0.1515581609);
s(12,0) = ( 0.042373213, -0.0447581722, 0.0598552286, 0.0937867627, -0.0883017227, -0.0570147021, -0.0243050073, 0.1218364686, 0.0709112755, -0.0969943716, -0.1163877672, -0.0098255309, -0.0961799355, 0.0243603645, 0.0969494897, 0.0219106991, -0.0703667188, -0.1332646647, -0.0494619008, 0.0413782628, -0.063572646, -0.0883295405, 0.0458239835, 0.0343432838, -0.0171579855, -0.0313877126, -0.1007406034, -0.0769848772, 0.0375916354, 0.03951784, 0.0208071172, -0.09268592, -0.0296050471, 0.0253686356, -0.0200681817, -0.0269034173);
s(13,0) = ( 0.035583858, -0.0803140476, 0.0539885657, 0.031126492, -0.0628644619, -0.1109541074, -0.0121754263, 0.045502187, -0.0711085233, 0.0428146121, -0.0937806167, -0.0349288964, -0.0795313966, 0.019489988, -0.0979253, -0.0765143575, 0.070825345, 0.0551400935, -0.0592756525, 0.0683040972, -0.0675119287, -0.0215724355, -0.0473702703, -0.114587406, 0.0139514151, 0.005158643, 0.1027648058, 0.0237558305, 0.0080695829, 0.0912509707, 0.0004192724, -0.0371172618, 0.0288886818, -0.0819452898, 0.0113872969, 0.0540088865);
s(14,0) = ( 0.0433206365, -0.0936495668, 0.0725235936, -0.0308843087, 0.0622358075, -0.1412400948, 0.0057074119, -0.045239648, -0.0819005527, 0.0504472722, 0.0928235082, -0.0752026597, -0.07416279, -0.0196990731, -0.1239278132, 0.075648833, -0.0700022874, 0.0745065317, 0.058843779, 0.0330676491, -0.0802355168, 0.0206690255, -0.0872930857, 0.1129388047, 0.0189437522, 0.0021761397, -0.1008330313, 0.0561758096, -0.0071942353, 0.0758821903, -0.0264750617, 0.0358868124, -0.0156781836, 0.080263128, 0.0245433237, -0.0534094285);
s(15,0) = ( 0.0426068691, -0.0448977821, 0.0605973307, -0.0940496166, 0.0883827329, -0.0575044715, -0.0233517655, -0.1229400635, 0.0709101288, -0.0968604941, 0.1170710163, -0.0106403221, -0.0959402236, -0.0263524736, 0.0975492251, -0.0217826834, 0.0700680235, -0.1337075481, 0.0509589098, 0.0407171929, -0.0647072489, 0.0866656718, 0.0473654164, -0.0344456805, -0.0171994175, -0.0311133565, 0.1007935359, -0.0784610386, -0.0359438062, 0.0395042078, 0.0189042487, 0.092782611, -0.0278122643, -0.0260311933, -0.0201308026, 0.0267715706);
s(16,0) = ( 0.0439518713, 0.0314788553, 0.0739780065, -0.0945351879, -0.0631057772, 0.0463844553, 0.0070740956, -0.1431099751, 0.0821380284, 0.0762710147, -0.0945429778, 0.020896029, -0.0735171873, -0.0775750548, 0.1245308392, -0.050092956, -0.0701212262, 0.1142170406, -0.0609448662, -0.0198813625, -0.0803856951, 0.0307492427, 0.0883611927, -0.0739076242, 0.0183941931, 0.0531225244, -0.101121854, 0.0820257956, 0.0052368106, -0.0356010151, -0.0272680768, 0.0739066639, 0.0172559259, -0.055681426, 0.0235229209, 0.0025391542);
s(17,0) = ( 0.0508812815, 0.108359884, 0.0800600517, -0.0451083541, -0.088552935, 0.1545009342, -0.0050916713, -0.0578744206, -0.0823633995, -0.0296013722, -0.1171117679, 0.0672188384, -0.0904662527, -0.0112150108, -0.1242334291, 0.0967898127, 0.0697155288, -0.0538662714, -0.0510700942, -0.0510303443, -0.0767337092, 0.0396117059, -0.0873216574, 0.1328925709, -0.0123858726, -0.0240668752, 0.0991587951, -0.0580477898, 0.0346734617, -0.0758244154, -0.0069479156, 0.0378202383, -0.0165449053, 0.077014756, -0.0072448761, -0.0305235231);
s(18,0) = ( 0.0427019872, 0.0943833743, 0.0604934264, 0.0450198646, 0.0887087453, 0.1228540565, -0.0239474136, 0.0574705973, -0.0713087778, -0.0220655742, 0.1170904844, 0.0252677295, -0.0962619885, 0.0102867457, -0.097635302, -0.0973326769, -0.0705182557, -0.0346438735, 0.0502793526, -0.0877372254, -0.0638941708, -0.0409667348, -0.0464997677, -0.1338758559, -0.0171233223, -0.0268506951, -0.1010847866, -0.0256456759, -0.0366470681, -0.0922746685, 0.0202710205, -0.0391688043, 0.0290835907, -0.0777687233, -0.0199753686, 0.0313821036);
s(19,0) = ( 0.043628032, 0.0311641725, 0.0729280259, 0.0943228638, 0.0627624535, 0.0455371651, 0.0054448059, 0.1420404404, 0.0823601738, 0.0761187927, 0.0933950539, 0.0195759062, -0.0749003156, 0.0751536205, 0.1244752142, 0.0504998662, 0.0701331545, 0.1134012634, 0.05874631, -0.0211571385, -0.0804732727, -0.0339434641, 0.0873785284, 0.074522809, 0.0187289448, 0.0531607795, 0.100771571, 0.0801001633, -0.0079738928, -0.0361339534, -0.0257983877, -0.076433164, 0.0152740378, 0.056127232, 0.0242041474, -0.0023588953);
s(20,0) = ( 0.0442293156, -0.0387461412, 0.1112286558, 0.0390696095, -0.0210686308, -0.0906303403, 0.1253980532, 0.0912357201, 0.0004046721, -0.0005588397, -0.0517892992, -0.1286141538, 0.0832659034, 0.1291188287, 0.0008402558, -2.9525e-05, -0.0002157705, -0.0013642263, -0.0823943139, -0.1313855905, 0.0095483398, 0.131330528, 0.0009841618, -0.0001567638, 0.0040844567, -0.0011865903, -0.0005307609, -0.0021185379, -0.0983979396, -0.0971166314, -0.0581173322, 0.0963593411, 0.0005877672, -0.0004236539, 0.0112273574, 0.0010805231);
s(21,0) = ( 0.0363816363, -0.0254128365, 0.0928954288, -0.0383599028, 0.0208970708, -0.0609939262, 0.1090074361, -0.089904571, 0.0107095974, -0.0079898692, 0.0516487795, -0.0906797525, 0.0808642679, -0.1280283893, 0.0254892965, 0.0002914298, 0.0001568425, -0.0204166139, 0.0828576758, -0.1006545015, 0.0255186277, -0.1315755271, 0.0383583004, 0.0009219385, -0.0008441375, 0.0016635625, 0.0003090783, -0.0342221992, 0.1002049785, -0.0875546316, -0.029608747, -0.0983942091, 0.0413796351, 0.0019871942, -0.0021224117, -0.0009866482);
s(22,0) = ( 0.0289571129, 0.0251479474, 0.0755568778, -0.0251157157, -0.0206427606, 0.0604693417, 0.0935988627, -0.0604426251, -0.0001002048, 0.0077090395, -0.0511932649, 0.0902094179, 0.0790595507, -0.0902912312, -0.0001955495, 0.0079319174, 0.0001675775, 0.0198884685, -0.0825835236, 0.1007609305, 0.041903102, -0.101052952, -0.0001909413, 0.0203987869, -0.0056466977, -0.0019109026, 0.0004159745, 0.0338358559, -0.1007897865, 0.0886946955, -0.0002094612, -0.0892058884, -1.58861e-05, 0.0345561071, -0.0151758303, 0.0017048924);
s(23,0) = ( 0.036939253, 0.0392527226, 0.0941137639, 0.0257489516, 0.0213006062, 0.0916829485, 0.1098893085, 0.0616684578, -0.0112469346, 5.83482e-05, 0.0524747681, 0.1298367026, 0.0806782453, 0.0913831371, -0.0266202317, -0.0082308083, -0.000214569, 0.0003802069, 0.0837976949, 0.1323015191, 0.0244065661, 0.1009868439, -0.0397287294, -0.0209321142, -0.0007365654, 0.001070333, -0.0004365997, 0.0011982065, 0.100717363, 0.0975877859, -0.0307132451, 0.0873661544, -0.0423139909, -0.0348574931, -0.0018444503, -0.0016918569);
input_mask(0) = bus(nc);
input_mask(1) = (_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_);
declare version "1.3";
declare author "AmbisonicDecoderToolkit";
declare license "BSD 3-Clause License";
declare copyright "(c) Aaron J. Heller 2013";
m = environment {
take (1, (xs, xxs)) = xs;
take (1, xs) = xs;
take (nn, (xs, xxs)) = take (nn-1, xxs);
bus(n) = par(i, n, _);
SR = min(192000, max(1, fconstant(int fSamplingFreq, <math.h>)));
PI = 3.14159265358979323846264338327950288;
};
mu = environment {
db2linear(x) = pow(10, x/20.0);
};
SR = float(m.SR);
total(c) = c:>_;
average(c) = total(c)/count(c);
count(c) = R(c) :>_ with {
R((c,cl)) = R(c),(R(cl));
R(c) = 1;
};
rms(c) = R(c) :> /(count(c)) : sqrt with {
R((c,cl)) = R(c),R(cl);
R(c) = (c*c);
};
sup(c) = R(c) with {
R((c,cl)) = max(R(c),R(cl));
R(c) = c;
};
inf(c) = R(c) with {
R((c,cl)) = min(R(c),R(cl));
R(c) = c;
};
bus(n) = par(i,n,_);
gain(c) = R(c) with {
R((c,cl)) = R(c),R(cl);
R(1) = _;
R(float(0)) = R(0);
R(float(1)) = R(1);
R(c) = *(c);
};
fir(c) = R(c) :>_ with {
R((c,lc)) = _<: R(c), (mem:R(lc));
R(c) = gain(c);
};
xover(freq,n) = par(i,n,xover1) with {
sub(x,y) = y-x;
k = tan(m.PI*float(freq)/m.SR);
k2 = k^2;
d = (k2 + 2*k + 1);
b_hf = (1/d,-2/d,1/d);
b_lf = (k2/d, 2*k2/d, k2/d);
a = (2 * (k2-1) / d, (k2 - 2*k + 1) / d);
xover1 = _:sub ~ fir(a) <: fir(b_lf),fir(b_hf):_,*(-1);
};
shelf(freq,g_lf,g_hf) = xover(freq,1) : gain(g_lf),gain(g_hf):>_;
anti_denormal = pow(10,-20);
anti_denormal_ac = 1 - 1' : *(anti_denormal) : + ~ *(-1);
smooth(c) = *(1-c) : +~*(c);
dezipper = smooth(0.999);
temp_celcius = 20;
svf1(g,d1) = _ : *(g) : (+ <: +~_, _ ) ~ *(d1) : !,_ ;
svf2(g,d1,d2) = _ : *(g) : (((_,_,_):> _ <: +~_, _ ) ~ *(d1) : +~_, _) ~ *(d2) : !,_ ;
with {
omega = c/(float(r)*SR);
b1 = omega/2.0;
g1 = 1.0 + b1;
d1 = 0.0 - (2.0 * b1) / g1;
g = gain/g1;
};
nfc2(r,gain) = svf2(g,d1,d2)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
b1 = 3.0 * r1;
b2 = 3.0 * r2;
g2 = 1.0 + b1 + b2;
d2 = 0.0 - (4.0 * b2) / g2;
g = gain/g2;
};
nfc3(r,gain) = svf2(g,d1,d2):svf1(1.0,d3)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
b1 = 3.677814645373914 * r1;
b2 = 6.459432693483369 * r2;
g2 = 1.0 + b1 + b2;
d2 = 0.0 - (4.0 * b2) / g2;
b3 = 2.322185354626086 * r1;
g3 = 1.0 + b3;
d3 = 0.0 - (2.0 * b3) / g3;
g = gain/(g3*g2);
};
nfc4(r,gain) = svf2(g,d1,d2):svf2(1.0,d3,d4)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
b1 = 4.207578794359250 * r1;
b2 = 11.487800476871168 * r2;
g2 = 1.0 + b1 + b2;
d2 = 0.0 - (4.0 * b2) / g2;
b3 = 5.792421205640748 * r1;
b4 = 9.140130890277934 * r2;
g3 = 1.0 + b3 + b4;
d4 = 0.0 - (4.0 * b4) / g3;
g = gain/(g3*g2);
};
nfc5(r,gain) = svf2(g,d1,d2):svf2(1.0,d3,d4):svf1(1.0,d5)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
b1 = 4.649348606363304 * r1;
b2 = 18.156315313452325 * r2;
g2 = 1.0 + b1 + b2;
d2 = 0.0 - (4.0 * b2) / g2;
b3 = 6.703912798306966 * r1;
b4 = 14.272480513279568 * r2;
g3 = 1.0 + b3 + b4;
d4 = 0.0 - (4.0 * b4) / g3;
b5 = 3.646738595329718 * r1;
g4 = 1.0 + b5;
d5 = 0.0 - (2.0 * b5) / g4;
g = gain/(g4*g3*g2);
};
nfc6(r,gain) = svf2(g,d11,d12):svf2(1.0,d21,d22):svf2(1.0,d31,d32)
with {
omega = c/(float(r)*SR);
r1 = omega/2.0;
r2 = r1 * r1;
b11 = 5.031864495621642 * r1;
b12 = 26.514025344067996 * r2;
g1 = 1.0 + b11 + b12;
d11 = 0.0 - (2.0 * b11 + 4.0 * b12) / g1;
d12 = 0.0 - (4.0 * b12) / g1;
b21 = 7.471416712651683 * r1;
b22 = 20.852823177396761 * r2;
g2 = 1.0 + b21 + b22;
d21 = 0.0 - (2.0 * b21 + 4.0 * b22) / g2;
d22 = 0.0 - (4.0 * b22) / g2;
b31 = 8.496718791726696 * r1;
b32 = 18.801130589570320 * r2;
g3 = 1.0 + b31 + b32;
d31 = 0.0 - (2.0 * b31 + 4.0 * b32) / g3;
d32 = 0.0 - (4.0 * b32) / g3;
g = gain/(g3*g2*g1);
};
nfc(0,r,g) = gain(g);
nfc(1,r,g) = nfc1(r,g);
nfc(2,r,g) = nfc2(r,g);
nfc(3,r,g) = nfc3(r,g);
nfc(4,r,g) = nfc4(r,g);
nfc(5,r,g) = nfc5(r,g);
nfc(6,r,g) = nfc6(r,g);
nfc(o,r,g) = gain(g);
nfc_out(1,order,r,g) = nfc(order,r,g);
nfc_out(0,order,r,g) = _;
nfc_inp(1,order,r,g) = nfc(order,r,g);
nfc_inp(0,order,r,g) = _;
delay(dc,r) = R(dc,r) with {
R(1,float(0)) = R(1,0);
R(1,r) = @(meters2samples(r));
meters2samples(r) = int(m.SR * (float(r)/float(c)) + 0.5);
};
level(lc,r,rmax) = R(lc,r,rmax) with{
R(1,r,rmax) = gain(float(r)/float(rmax));
};
R((r,rl)) = R(r), R(rl);
R(r) = delay(delay_comp,(r_max-r)) : level(level_comp,r,r_max);
};
gate(0) = !;
gate(1) = _;
dirac(i,j) = i==j;
gate_bus(order,(o,oss)) = (gate(order==o),gate_bus(order,oss));
gate_bus(order,o) = gate(order==o);
deinterleave(n,span) = par(i,n,_) <: par(i,span, par(j,n,gate(%(j,span)==i)));
<: par(jord,no,gate_bus(jord,co)
:> nfc_out(nfc_output,jord,m.take(ispkr+1,rs),1.0))
:>_;
nfc_input_bus(nc) = par(i,nc, nfc_inp(nfc_input, m.take(i+1,co), r_bar, 1.0));
gamma_bus(n) = par(i,nc, gain( m.take(m.take(i+1,co)+1, gamma(n))));
output_gain = hslider("gain [unit:dB]", 0, -30, +10, 1): mu.db2linear :*(checkbox("mute")<0.5): dezipper;
gain_muting_bus(0,n) = bus(n);
gain_muting_bus(1,n) = par(i,n,*(output_gain));
decoder(1,nc,ns) = nfc_input_bus(nc)
: gamma_bus(0)
<: par(is,ns, speaker_chain(is))
: delay_level(rs);
decoder(2,nc,ns) = nfc_input_bus(nc)
: par(i,nc, shelf(xover_freq,m.take(m.take(i+1,co)+1, gamma(0))/lfhf_ratio,
m.take(m.take(i+1,co)+1, gamma(1))*lfhf_ratio))
<: par(is,ns, speaker_chain(is))
: delay_level(rs);
decoder(3,nc,ns) = bus(nc)
: nfc_input_bus(nc)
: xover(xover_freq,nc) : deinterleave(2*nc,2)
: (gamma_bus(0),gamma_bus(1)) : bus(2*nc)
<: par(j, ns, speaker_chain2(j,nc))
: delay_level(rs)
;
speaker_chain2(i,nc) = gain(s(i,0)), gain(s(i,1))
:> bus(nc)
<: par(j,no,gate_bus(j,co):>nfc_out(nfc_output,j,m.take(i+1,rs),1.0))
:>_ ;
r_max = sup(rs);
r_bar = (rs :> float) / float(count(rs));
no = decoder_order+1;
nc = count(co);
process = input_mask(input_full_set):decoder(decoder_type,nc,ns):gain_muting_bus(output_gain_muting,ns);
|
5d5a23e4c3824088c712974e5dba0e70e7222463e9060b1f81a573ccf4cb7dc4 | LucaSpanedda/Guida_Primi_Codici_in_FAUST | 0.20_Fasore.dsp | // FASORE
/* Per ottenere un segnale FASORE,
dal nostro segnale di Rampa ad incremento infinito,
vogliamo creare un segnale che si ripete
secondo tale andamento ciclicamente ogni tot. campioni
che determinano di conseguenza il suo incremento,
da un punto di partenza ad un punto di fine:
Dobbiamo creare una funzione che faccia si di ESCLUDERE I NUMERI INTERI
che sappiamo essere in una RAMPA crescenti all'infinito.
E mantenere dunque invece,
i suoi decimali che hanno un determinato incremento alla base
che si ripete crescendo sino ad arrivare ad un numero intero.
decimale(x) è la nostra prima funzione, in cui determiniamo che:
decimale vuole dire che ad x sottraiamo gli interi di x,
e quindi avremo i decimali di x
decimale(x)= x-int(x);
fasore è la nostra seconda funzione, e dice che
0.002 in uscita è connesso in entrata
(:) a + (+ connesso a funzione decimale)
e tutto questo avviene in loop ~
(~ che punta al primo ingresso disponibile nella funzione)
fasore = 0.002 : (+ : decimale) ~ _;
il fasore muovendo ogni campione per un incremento di 0.002
arriva da 0.002 a 1 in 500 campioni
500 incrementi susseguenti di 0.002.
avendo 48000 samples che definiscono un secondo,
in 48000 samples 500 ci stanno 96 volte
creando dunque 96Hz di frequenza (96 oscillazioni al secondo),
process infine,
è la funzione finale e dice che il nostro fasore che si muove ora tra 0. e 1.
con - 0.5, si muove tra - 0.5 e +0.5,
e moltiplicando *2, si muove tra -1. e 1.
dunque process = (fasore-0.5)*2;
viene effettuato il riscalamento perchè
essendo il fasore solo in fase positiva potrebbe creare problemi ai coni.
degli altoparlanti */
//CODICE:
decimale(x)= x-int(x);
phase = 0.002 : (+ : decimale) ~ _;
process = (phase);
| https://raw.githubusercontent.com/LucaSpanedda/Guida_Primi_Codici_in_FAUST/c246daac1d98a367dedeb5bb608b0c4fbcc17dc7/0.20_Fasore.dsp | faust | FASORE
Per ottenere un segnale FASORE,
dal nostro segnale di Rampa ad incremento infinito,
vogliamo creare un segnale che si ripete
secondo tale andamento ciclicamente ogni tot. campioni
che determinano di conseguenza il suo incremento,
da un punto di partenza ad un punto di fine:
Dobbiamo creare una funzione che faccia si di ESCLUDERE I NUMERI INTERI
che sappiamo essere in una RAMPA crescenti all'infinito.
E mantenere dunque invece,
i suoi decimali che hanno un determinato incremento alla base
che si ripete crescendo sino ad arrivare ad un numero intero.
decimale(x) è la nostra prima funzione, in cui determiniamo che:
decimale vuole dire che ad x sottraiamo gli interi di x,
e quindi avremo i decimali di x
decimale(x)= x-int(x);
fasore è la nostra seconda funzione, e dice che
0.002 in uscita è connesso in entrata
(:) a + (+ connesso a funzione decimale)
e tutto questo avviene in loop ~
(~ che punta al primo ingresso disponibile nella funzione)
fasore = 0.002 : (+ : decimale) ~ _;
il fasore muovendo ogni campione per un incremento di 0.002
arriva da 0.002 a 1 in 500 campioni
500 incrementi susseguenti di 0.002.
avendo 48000 samples che definiscono un secondo,
in 48000 samples 500 ci stanno 96 volte
creando dunque 96Hz di frequenza (96 oscillazioni al secondo),
process infine,
è la funzione finale e dice che il nostro fasore che si muove ora tra 0. e 1.
con - 0.5, si muove tra - 0.5 e +0.5,
e moltiplicando *2, si muove tra -1. e 1.
dunque process = (fasore-0.5)*2;
viene effettuato il riscalamento perchè
essendo il fasore solo in fase positiva potrebbe creare problemi ai coni.
degli altoparlanti
CODICE:
|
decimale(x)= x-int(x);
phase = 0.002 : (+ : decimale) ~ _;
process = (phase);
|
5ce6c1edacb98cfc01ba4892d2bf96a97b0e0009e1ae0a99ddadafb39aabbb7f | LucaSpanedda/Guida_Primi_Codici_in_FAUST | 0.10_Rampa.dsp | // RAMPA
/* Una RAMPA
è un segnale che produce un andamento crescente da un numero
di partenza ad infinito.
E tramite campioni viene implementata in modo che per ogni campione continui
a crescere di e da un valore definito in partenza.
Per comprendere il processo
bisogna fare però alcune premesse:
L'audio in digitale sappiamo che funziona per CAMPIONI.
Dove i campioni sono dei valori COSTANTI
per la loro definita durata di tempo.
Si susseguono tra loro in una successione costante
e lo fanno in un determinato lasso di tempo.
La loro quantità è definita dalla FREQUENZA DI CAMPIONAMENTO
che è espressa in secondi,
che ci dice che ogni secondo corrisponde ad un tot.
di campioni che si susseguono al suo interno:
Ad esempio: ad una frequenza di campionamento di 48000
abbiamo una successione di 48000 valori costanti (campioni)
che vengono utilizzati per esprimere il nostro segnale in un secondo.
E quindi di conseguenza, a 48000samples
per secondo avremo un nuovo campione ogni circa 0,021ms
(in 1000ms=1secondo abbiamo 48000 valori che si susseguono)
(1000 millisecondi /48000 campioni nei 1000 ms = 1 campione ogni 0,021ms).
Mentre il VALORE COSTANTE che rappresenta per la sua durata temporale
un campione, è definito in BIT.
Come creare una RAMPA:
per creare una rampa servendoci dei campioni,
dobbiamo partire della creazione di un determinato LOOP:
da cui partendo da un valore definito alla base,
ad esempio 0.1 dato al primo campione,
e creando una somma ciclica di questo, dove ogni campione successivo
viene incrementato di questo valore rispetto al precedente,
(quindi creando un incremento infinito di 0.1)
e ipotizzando una situazione dove ogni campione abbia una durata di 10ms,
arriveremo tramite incrementi al valore di 1:
in 10 CAMPIONI e 10 MILLISECONDI.
di conseguenza a due in 20 CAMPIONI e 20 MILLISECONDI, e così via.
Quindi:
se invece, ad una frequenza di campionamento
abbiamo 48000 campioni al secondo
ed abbiamo un valore costante di 0.1 che incrementa ad ogni campione
del suo valore sommando se stesso (LOOP),
alla fine di un secondo
il nostro valore incrementato sarà arrivato a 4800
a due secondi 9600, e così via... */
//CODICE:
//process = 0.1 : + ~ _;
//per vedere la rampa sull'oscilloscopio di FAUST:
process = _; // commentare questo process.
//e avviare il process rimuovendo il commento alla riga sotto "CODICE:"
//disattivando però l'audio in uscita sul DAC.
//così da non danneggiare gli speaker con della Corrente Continua.
| https://raw.githubusercontent.com/LucaSpanedda/Guida_Primi_Codici_in_FAUST/0eedc73c90fde5f60a2273c83e116acb340f7e12/0.10_Rampa.dsp | faust | RAMPA
Una RAMPA
è un segnale che produce un andamento crescente da un numero
di partenza ad infinito.
E tramite campioni viene implementata in modo che per ogni campione continui
a crescere di e da un valore definito in partenza.
Per comprendere il processo
bisogna fare però alcune premesse:
L'audio in digitale sappiamo che funziona per CAMPIONI.
Dove i campioni sono dei valori COSTANTI
per la loro definita durata di tempo.
Si susseguono tra loro in una successione costante
e lo fanno in un determinato lasso di tempo.
La loro quantità è definita dalla FREQUENZA DI CAMPIONAMENTO
che è espressa in secondi,
che ci dice che ogni secondo corrisponde ad un tot.
di campioni che si susseguono al suo interno:
Ad esempio: ad una frequenza di campionamento di 48000
abbiamo una successione di 48000 valori costanti (campioni)
che vengono utilizzati per esprimere il nostro segnale in un secondo.
E quindi di conseguenza, a 48000samples
per secondo avremo un nuovo campione ogni circa 0,021ms
(in 1000ms=1secondo abbiamo 48000 valori che si susseguono)
(1000 millisecondi /48000 campioni nei 1000 ms = 1 campione ogni 0,021ms).
Mentre il VALORE COSTANTE che rappresenta per la sua durata temporale
un campione, è definito in BIT.
Come creare una RAMPA:
per creare una rampa servendoci dei campioni,
dobbiamo partire della creazione di un determinato LOOP:
da cui partendo da un valore definito alla base,
ad esempio 0.1 dato al primo campione,
e creando una somma ciclica di questo, dove ogni campione successivo
viene incrementato di questo valore rispetto al precedente,
(quindi creando un incremento infinito di 0.1)
e ipotizzando una situazione dove ogni campione abbia una durata di 10ms,
arriveremo tramite incrementi al valore di 1:
in 10 CAMPIONI e 10 MILLISECONDI.
di conseguenza a due in 20 CAMPIONI e 20 MILLISECONDI, e così via.
Quindi:
se invece, ad una frequenza di campionamento
abbiamo 48000 campioni al secondo
ed abbiamo un valore costante di 0.1 che incrementa ad ogni campione
del suo valore sommando se stesso (LOOP),
alla fine di un secondo
il nostro valore incrementato sarà arrivato a 4800
a due secondi 9600, e così via...
CODICE:
process = 0.1 : + ~ _;
per vedere la rampa sull'oscilloscopio di FAUST:
commentare questo process.
e avviare il process rimuovendo il commento alla riga sotto "CODICE:"
disattivando però l'audio in uscita sul DAC.
così da non danneggiare gli speaker con della Corrente Continua.
| |
c44dce89459538f4df518fd66ee71f41a51daf75c5f1de910619232a9e2d74ed | LucaSpanedda/Guida_Primi_Codici_in_FAUST | 0.00_Fondamenti_di_Faust.dsp | // FONDAMENTI DI FAUST
// Logiche di funzionamento alla base del linguaggio di programmazione FAUST
// --- LA RIGA DI COMMENTO
// la sintassi di Faust proviene dal linguaggio c quindi in Faust la riga di
// commento si scrive con un doppio-slash ad inizio riga // come fatto finora.
// --- IL COMMENTO MULTI RIGA
/* come nel linguaggio c si può iniziare un commento multiriga con i caratteri
slash asterisco ad inizio commento e asterisco slash a fine commento come fatto
in questo blocco di codice. */
// --- FUNZIONE
// una funzione è una parte del programma che permette di raggruppare, una
// sequenza di istruzioni in un unico blocco, espletando così una specifica
// (e in generale più complessa) operazione, azione (o elaborazione) sui dati
// del programma stesso in modo tale che, a partire da determinati INPUT,
// restituisca determinati OUTPUT.
// L'importanza, la praticità e i vantaggi di una funzione stanno nel fatto che
// può essere "chiamata" ("richiamata", "invocata" o "attivata") in diversi
// punti del programma di cui fa parte ogni volta in cui si ha la necessità di
// farlo come se fosse una singola istruzione senza la necessità di doverne
// riscrivere ogni volta il relativo codice implementando dunque il cosiddetto
// riuso di codice.
process = _;
// --- PROCESS
// process è il luogo in cui il programma di Faust diviene attivo, le funzioni
// esterne a process diventano attive solo se chiamate direttamente o
// indirettamente nella riga di process. process è assimilabile al ciclo main
// del linguaggio c.
// l'operatore _ indica un rapporto di identità tra entrata ed uscita,
// astrazione del canale di transito del segnale.
// --- OPERATORI MATEMATICI
// gli operatori matematici sono + - * / % ^ ognuno dei quali ha due entrate
// implicite ed una sola uscita: esempio A + B dove A e B sono le entrate della
// dell'oeratore somma producono una sola uscita C. process = A+B; process = C;
// --- OPERATORI COMPOSITIVI
// il linguaggio di faust è algebrico con logica a blocchi: si scrivono
// espressioni come astrazioni di diagramma a blocchi sulla base di cinque
// operatori per la composizione dei flussi audio
//
// : collegamento sequenziale
// (esempio A : B dove l'usicita di A entra nella sola entrata di B)
// --> A --> B -->
//
// , percorso parallelo
// (esempio A, B dove i flussi di A e di B sono paralleli)
// --> A -->
// --> B -->
//
// <: split del percorso in n uscite
// (esempio A <: B,C dove l'uscita di A entra in B e in C)
// |--> B -->
// --> A --<:
// |--> C -->
//
// :> unione combinata di più percorsi in entrata su una o più uscite
// (esempio A,B :> C dove i flussi di A e B sono paralleli e convergono in C)
// --> A -->|
// :>--> C -->
// --> B -->|
//
// ~ collegamento ricorsivo
// (esempio A~B dove l'uscita di A viene collegata all'entrata di B e
// l'uscita di B viene collegata all'entrata di A)
// (esempio di A con una sola entrata, questa verrà occupata dall'uscita di B).
// +-- B <--+
// | |
// +--> A --+-->
// (esempio di A con due entrate, l'uscita B occuperà la prima entrata di A)
// +-- B <--+
// | |
// --+--> A --+-->
//
// ! interruzione di percorso
// (esempio A:! l'uscita di A viene chiusa)
// --- OPERATORI LOGICI (BITWISE)
// & and
// | or
// xor
// << shift left
// << shift right
// --- OPERATORI DI CONFRONTO
// < minore
// <= minore uguale
// > maggiore
// >= maggiore uguale
// == uguale
// != diverso
// --- OPERATORI DI RITARDO
// @ ha due entrate, il segnale da ritardare e la quantità del ritardo.
// mem ritardo di un campione
// ' numero di campioni di ritardo x'' (x due campioni dopo)
// --- FUNZIONI MATEMATICHE PRIMITIVE
// acos asin atan atan2 cos sin tan exp log log10 pow sqrt abs min max fmod
// remainder floor ceil rint
| https://raw.githubusercontent.com/LucaSpanedda/Guida_Primi_Codici_in_FAUST/72af9bc7b471703fd4fb2f288be1e939be9be5a6/0.00_Fondamenti_di_Faust.dsp | faust | FONDAMENTI DI FAUST
Logiche di funzionamento alla base del linguaggio di programmazione FAUST
--- LA RIGA DI COMMENTO
la sintassi di Faust proviene dal linguaggio c quindi in Faust la riga di
commento si scrive con un doppio-slash ad inizio riga // come fatto finora.
--- IL COMMENTO MULTI RIGA
come nel linguaggio c si può iniziare un commento multiriga con i caratteri
slash asterisco ad inizio commento e asterisco slash a fine commento come fatto
in questo blocco di codice.
--- FUNZIONE
una funzione è una parte del programma che permette di raggruppare, una
sequenza di istruzioni in un unico blocco, espletando così una specifica
(e in generale più complessa) operazione, azione (o elaborazione) sui dati
del programma stesso in modo tale che, a partire da determinati INPUT,
restituisca determinati OUTPUT.
L'importanza, la praticità e i vantaggi di una funzione stanno nel fatto che
può essere "chiamata" ("richiamata", "invocata" o "attivata") in diversi
punti del programma di cui fa parte ogni volta in cui si ha la necessità di
farlo come se fosse una singola istruzione senza la necessità di doverne
riscrivere ogni volta il relativo codice implementando dunque il cosiddetto
riuso di codice.
--- PROCESS
process è il luogo in cui il programma di Faust diviene attivo, le funzioni
esterne a process diventano attive solo se chiamate direttamente o
indirettamente nella riga di process. process è assimilabile al ciclo main
del linguaggio c.
l'operatore _ indica un rapporto di identità tra entrata ed uscita,
astrazione del canale di transito del segnale.
--- OPERATORI MATEMATICI
gli operatori matematici sono + - * / % ^ ognuno dei quali ha due entrate
implicite ed una sola uscita: esempio A + B dove A e B sono le entrate della
dell'oeratore somma producono una sola uscita C. process = A+B; process = C;
--- OPERATORI COMPOSITIVI
il linguaggio di faust è algebrico con logica a blocchi: si scrivono
espressioni come astrazioni di diagramma a blocchi sulla base di cinque
operatori per la composizione dei flussi audio
: collegamento sequenziale
(esempio A : B dove l'usicita di A entra nella sola entrata di B)
--> A --> B -->
, percorso parallelo
(esempio A, B dove i flussi di A e di B sono paralleli)
--> A -->
--> B -->
<: split del percorso in n uscite
(esempio A <: B,C dove l'uscita di A entra in B e in C)
|--> B -->
--> A --<:
|--> C -->
:> unione combinata di più percorsi in entrata su una o più uscite
(esempio A,B :> C dove i flussi di A e B sono paralleli e convergono in C)
--> A -->|
:>--> C -->
--> B -->|
~ collegamento ricorsivo
(esempio A~B dove l'uscita di A viene collegata all'entrata di B e
l'uscita di B viene collegata all'entrata di A)
(esempio di A con una sola entrata, questa verrà occupata dall'uscita di B).
+-- B <--+
| |
+--> A --+-->
(esempio di A con due entrate, l'uscita B occuperà la prima entrata di A)
+-- B <--+
| |
--+--> A --+-->
! interruzione di percorso
(esempio A:! l'uscita di A viene chiusa)
--- OPERATORI LOGICI (BITWISE)
& and
| or
xor
<< shift left
<< shift right
--- OPERATORI DI CONFRONTO
< minore
<= minore uguale
> maggiore
>= maggiore uguale
== uguale
!= diverso
--- OPERATORI DI RITARDO
@ ha due entrate, il segnale da ritardare e la quantità del ritardo.
mem ritardo di un campione
' numero di campioni di ritardo x'' (x due campioni dopo)
--- FUNZIONI MATEMATICHE PRIMITIVE
acos asin atan atan2 cos sin tan exp log log10 pow sqrt abs min max fmod
remainder floor ceil rint
|
process = _;
|
4d55a04a8e37b61a999f61de71ca32d14579fff8fed256d873ce8acd2cadb1d9 | sozbtn/physical-modelling-percussion-instrument | mesh.dsp | // Nonlinear Waveguide Mesh
// Autor: der Pablo
// JOS. https://ccrma.stanford.edu/~rmichon/publications/doc/DAFx11-Nonl-Allpass.pdf
// Sources http://www.music.mcgill.ca/~gary/618/reading.html
// Reference videos:
// - Cymbal https://www.youtube.com/watch?v=6dLZ3hJbLqE
// Limitations:
// Effect of wave dispersion due to discretization of propagation in two directions. Limitations to a low frequency range.
// Again, see Stephan Bilbao youtube video.
// Objective: evolving spectra due to nonlinear coupling between modes --> mesh (wave propagation) + nl apf (coupling bw modes, energy conserving)
// TO DO: sound of plate on chromaphone
// excitation postion
// what mesh parameters are important (chromaphone, thesis). what determines snare drum from metal plate (material)
// how does dispersion error sound? stephan bilbao youtube maybe
// NL allpass investigation
// see if it sounds natural with N=2 and low frequency lowpass
// coefficient modulation: lowpass input signal-> slower modulation (pitch) highpass? saturation?
// LFO triggered? --> could be good for generating FM sidebands
// read paper (last section) for further ideas/understanding of coupling
// Filter investigation:
// lowpass (buttworth) sounds good at order II
// elliptic has a little bit of resonance for higher frequencies but at very low frequencies (607 Hz) has nice
// resonances and causes Allpass to modulate harmonics. Which is nice for congas.
// also much more stable than others.
import("filter.lib"); // for mesh_square()
import("misceffect.lib");
import("signal.lib");
import("instrument.lib");
N=8; // must be power of 2, and mesh order = 4*N is number of feedback loops = number of LP + NLAP branches
NA=4; // allpass order (any positive integer)
volume = hslider("h:Basic_Parameters/volume [1][tooltip:Volume (value between 0 and 1)]",1,0,1,0.01);
gate = button("h:Basic_Parameters/gate [1][tooltip:noteOn = 1, noteOff = 0]");
gain = hslider("h:Basic_Parameters/gain [1][tooltip:Gain (value between 0 and 1)]",1,0,1,0.01);
touchLength = hslider("v:Physical_Parameters/Touch_Length
[2][tooltip:A value between 0 and 1]",0.15,0,1,0.01)*2;
//model parameters
lpgain = hslider("v:Physical_Parameters/Lp_Gain
[3][tooltip:A value between 0 and 1]",0.99999999999,0.980,0.99999999999,0.000000000001);
lpQ = hslider("v:Physical_Parameters/Lp_Q
[3][tooltip:A value between 0 and 1]",0.1,0.05,0.7,0.001);
lpFreq = hslider("v:Physical_Parameters/Lp_Freq
[4][tooltip:A value between 0 and 1]",20000,40,20000,100);
gain_g = hslider("h:Basic_Parameters/gain_g [1][tooltip:Gain_g (value between 0 and 10)]",1,0,2*3.14159,0.01);
fine_gain_g = hslider("h:Basic_Parameters/fine_gain_g [1][tooltip:Gain_g (value between 0 and 10)]",0,0,1,0.001);
//mesh
modulation = gain_g + fine_gain_g;
nlmesh(N,NA,x)=mesh_square(N)~(lpbank(4*N) : apbank(4*N,x))
with {
coeffs(x)=par(i,NA,x); // e.g.
apbranch(i,x) = allpassnn(NA,coeffs(modulation),x);
lpbranch(i) = resonlp(lpFreq,lpQ,-lpgain); // resonlp(fc,Q,gain)
apbank(M,x) = bus(M)
: par(i,M-1,apbranch(i)),
apbranch(M-1) + x;
lpbank(M) = bus(M)
: par(i,M,lpbranch(i));
};
//process = _,asympT60(gain,0,touchLength,gate) :>+: (nlmesh(N,NA)) :>+ :_ * pow(volume,2) <: _,_;
process = nlmesh(N,NA); | https://raw.githubusercontent.com/sozbtn/physical-modelling-percussion-instrument/ad971fd6d962c125df70662aaab9ca87230ba805/mesh/mesh.dsp | faust | Nonlinear Waveguide Mesh
Autor: der Pablo
JOS. https://ccrma.stanford.edu/~rmichon/publications/doc/DAFx11-Nonl-Allpass.pdf
Sources http://www.music.mcgill.ca/~gary/618/reading.html
Reference videos:
- Cymbal https://www.youtube.com/watch?v=6dLZ3hJbLqE
Limitations:
Effect of wave dispersion due to discretization of propagation in two directions. Limitations to a low frequency range.
Again, see Stephan Bilbao youtube video.
Objective: evolving spectra due to nonlinear coupling between modes --> mesh (wave propagation) + nl apf (coupling bw modes, energy conserving)
TO DO: sound of plate on chromaphone
excitation postion
what mesh parameters are important (chromaphone, thesis). what determines snare drum from metal plate (material)
how does dispersion error sound? stephan bilbao youtube maybe
NL allpass investigation
see if it sounds natural with N=2 and low frequency lowpass
coefficient modulation: lowpass input signal-> slower modulation (pitch) highpass? saturation?
LFO triggered? --> could be good for generating FM sidebands
read paper (last section) for further ideas/understanding of coupling
Filter investigation:
lowpass (buttworth) sounds good at order II
elliptic has a little bit of resonance for higher frequencies but at very low frequencies (607 Hz) has nice
resonances and causes Allpass to modulate harmonics. Which is nice for congas.
also much more stable than others.
for mesh_square()
must be power of 2, and mesh order = 4*N is number of feedback loops = number of LP + NLAP branches
allpass order (any positive integer)
model parameters
mesh
e.g.
resonlp(fc,Q,gain)
process = _,asympT60(gain,0,touchLength,gate) :>+: (nlmesh(N,NA)) :>+ :_ * pow(volume,2) <: _,_; |
import("misceffect.lib");
import("signal.lib");
import("instrument.lib");
volume = hslider("h:Basic_Parameters/volume [1][tooltip:Volume (value between 0 and 1)]",1,0,1,0.01);
gate = button("h:Basic_Parameters/gate [1][tooltip:noteOn = 1, noteOff = 0]");
gain = hslider("h:Basic_Parameters/gain [1][tooltip:Gain (value between 0 and 1)]",1,0,1,0.01);
touchLength = hslider("v:Physical_Parameters/Touch_Length
[2][tooltip:A value between 0 and 1]",0.15,0,1,0.01)*2;
lpgain = hslider("v:Physical_Parameters/Lp_Gain
[3][tooltip:A value between 0 and 1]",0.99999999999,0.980,0.99999999999,0.000000000001);
lpQ = hslider("v:Physical_Parameters/Lp_Q
[3][tooltip:A value between 0 and 1]",0.1,0.05,0.7,0.001);
lpFreq = hslider("v:Physical_Parameters/Lp_Freq
[4][tooltip:A value between 0 and 1]",20000,40,20000,100);
gain_g = hslider("h:Basic_Parameters/gain_g [1][tooltip:Gain_g (value between 0 and 10)]",1,0,2*3.14159,0.01);
fine_gain_g = hslider("h:Basic_Parameters/fine_gain_g [1][tooltip:Gain_g (value between 0 and 10)]",0,0,1,0.001);
modulation = gain_g + fine_gain_g;
nlmesh(N,NA,x)=mesh_square(N)~(lpbank(4*N) : apbank(4*N,x))
with {
apbranch(i,x) = allpassnn(NA,coeffs(modulation),x);
apbank(M,x) = bus(M)
: par(i,M-1,apbranch(i)),
apbranch(M-1) + x;
lpbank(M) = bus(M)
: par(i,M,lpbranch(i));
};
process = nlmesh(N,NA); |
5bbe2f1ac9188f39292ffba4ade75dffcdde1b0831cfd18dd9b0fa73afb9a86c | LucaSpanedda/Riverberazione_Digitale_in_FAUST | 2.0_Luca_Spanedda_KBVerb.dsp | declare name "Luca Spanedda's KBVerb";
declare version "1.0.0";
declare author "Luca Spanedda";
declare copyright "Copyright(c) 2022 Luca Spanedda";
// import Standard Faust library
// https://github.com/grame-cncm/faustlibraries/
import("stdfaust.lib");
// insert an Index for the prime number list, report ms. and Meters
reverbPrimeTest(index) =
primeNumbers(index) : \(x).(x : ba.samp2sec, (343.1)*(x : ba.samp2sec));
/*
process =
reverbPrimeTest(410) ,
reverbPrimeTest(420) ,
reverbPrimeTest(430) ,
reverbPrimeTest(440) ,
reverbPrimeTest(460) ,
reverbPrimeTest(480) ,
reverbPrimeTest(500) ,
reverbPrimeTest(520) ;
*/
primes =
(2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73,
79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163,
167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251,
257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313, 317, 331, 337, 347, 349,
353, 359, 367, 373, 379, 383, 389, 397, 401, 409, 419, 421, 431, 433, 439, 443,
449, 457, 461, 463, 467, 479, 487, 491, 499, 503, 509, 521, 523, 541, 547, 557,
563, 569, 571, 577, 587, 593, 599, 601, 607, 613, 617, 619, 631, 641, 643, 647,
653, 659, 661, 673, 677, 683, 691, 701, 709, 719, 727, 733, 739, 743, 751, 757,
761, 769, 773, 787, 797, 809, 811, 821, 823, 827, 829, 839, 853, 857, 859, 863,
877, 881, 883, 887, 907, 911, 919, 929, 937, 941, 947, 953, 967, 971, 977, 983,
991, 997, 1009, 1013, 1019, 1021, 1031, 1033, 1039, 1049, 1051, 1061, 1063,
1069, 1087, 1091, 1093, 1097, 1103, 1109, 1117, 1123, 1129, 1151, 1153, 1163,
1171, 1181, 1187, 1193, 1201, 1213, 1217, 1223, 1229, 1231, 1237, 1249, 1259,
1277, 1279, 1283, 1289, 1291, 1297, 1301, 1303, 1307, 1319, 1321, 1327, 1361,
1367, 1373, 1381, 1399, 1409, 1423, 1427, 1429, 1433, 1439, 1447, 1451, 1453,
1459, 1471, 1481, 1483, 1487, 1489, 1493, 1499, 1511, 1523, 1531, 1543, 1549,
1553, 1559, 1567, 1571, 1579, 1583, 1597, 1601, 1607, 1609, 1613, 1619, 1621,
1627, 1637, 1657, 1663, 1667, 1669, 1693, 1697, 1699, 1709, 1721, 1723, 1733,
1741, 1747, 1753, 1759, 1777, 1783, 1787, 1789, 1801, 1811, 1823, 1831, 1847,
1861, 1867, 1871, 1873, 1877, 1879, 1889, 1901, 1907, 1913, 1931, 1933, 1949,
1951, 1973, 1979, 1987, 1993, 1997, 1999, 2003, 2011, 2017, 2027, 2029, 2039,
2053, 2063, 2069, 2081, 2083, 2087, 2089, 2099, 2111, 2113, 2129, 2131, 2137,
2141, 2143, 2153, 2161, 2179, 2203, 2207, 2213, 2221, 2237, 2239, 2243, 2251,
2267, 2269, 2273, 2281, 2287, 2293, 2297, 2309, 2311, 2333, 2339, 2341, 2347,
2351, 2357, 2371, 2377, 2381, 2383, 2389, 2393, 2399, 2411, 2417, 2423, 2437,
2441, 2447, 2459, 2467, 2473, 2477, 2503, 2521, 2531, 2539, 2543, 2549, 2551,
2557, 2579, 2591, 2593, 2609, 2617, 2621, 2633, 2647, 2657, 2659, 2663, 2671,
2677, 2683, 2687, 2689, 2693, 2699, 2707, 2711, 2713, 2719, 2729, 2731, 2741,
2749, 2753, 2767, 2777, 2789, 2791, 2797, 2801, 2803, 2819, 2833, 2837, 2843,
2851, 2857, 2861, 2879, 2887, 2897, 2903, 2909, 2917, 2927, 2939, 2953, 2957,
2963, 2969, 2971, 2999, 3001, 3011, 3019, 3023, 3037, 3041, 3049, 3061, 3067,
3079, 3083, 3089, 3109, 3119, 3121, 3137, 3163, 3167, 3169, 3181, 3187, 3191,
3203, 3209, 3217, 3221, 3229, 3251, 3253, 3257, 3259, 3271, 3299, 3301, 3307,
3313, 3319, 3323, 3329, 3331, 3343, 3347, 3359, 3361, 3371, 3373, 3389, 3391,
3407, 3413, 3433, 3449, 3457, 3461, 3463, 3467, 3469, 3491, 3499, 3511, 3517,
3527, 3529, 3533, 3539, 3541, 3547, 3557, 3559, 3571, 3581, 3583, 3593, 3607,
3613, 3617, 3623, 3631, 3637, 3643, 3659, 3671, 3673, 3677, 3691, 3697, 3701,
3709, 3719, 3727, 3733, 3739, 3761, 3767, 3769, 3779, 3793, 3797, 3803, 3821,
3823, 3833, 3847, 3851, 3853, 3863, 3877, 3881, 3889, 3907, 3911, 3917, 3919,
3923, 3929, 3931, 3943, 3947, 3967, 3989, 4001, 4003, 4007, 4013, 4019, 4021,
4027, 4049, 4051, 4057, 4073, 4079, 4091, 4093, 4099, 4111, 4127, 4129, 4133,
4139, 4153, 4157, 4159, 4177, 4201, 4211, 4217, 4219, 4229, 4231, 4241, 4243,
4253, 4259, 4261, 4271, 4273, 4283, 4289, 4297, 4327, 4337, 4339, 4349, 4357,
4363, 4373, 4391, 4397, 4409, 4421, 4423, 4441, 4447, 4451, 4457, 4463, 4481,
4483, 4493, 4507, 4513, 4517, 4519, 4523, 4547, 4549, 4561, 4567, 4583, 4591,
4597, 4603, 4621, 4637, 4639, 4643, 4649, 4651, 4657, 4663, 4673, 4679, 4691,
4703, 4721, 4723, 4729, 4733, 4751, 4759, 4783, 4787, 4789, 4793, 4799, 4801,
4813, 4817, 4831, 4861, 4871, 4877, 4889, 4903, 4909, 4919, 4931, 4933, 4937,
4943, 4951, 4957, 4967, 4969, 4973, 4987, 4993, 4999, 5003, 5009, 5011, 5021,
5023, 5039, 5051, 5059, 5077, 5081, 5087, 5099, 5101, 5107, 5113, 5119, 5147,
5153, 5167, 5171, 5179, 5189, 5197, 5209, 5227, 5231, 5233, 5237, 5261, 5273,
5279, 5281, 5297, 5303, 5309, 5323, 5333, 5347, 5351, 5381, 5387, 5393, 5399,
5407, 5413, 5417, 5419, 5431, 5437, 5441, 5443, 5449, 5471, 5477, 5479, 5483,
5501, 5503, 5507, 5519, 5521, 5527, 5531, 5557, 5563, 5569, 5573, 5581, 5591,
5623, 5639, 5641, 5647, 5651, 5653, 5657, 5659, 5669, 5683, 5689, 5693, 5701,
5711, 5717, 5737, 5741, 5743, 5749, 5779, 5783, 5791, 5801, 5807, 5813, 5821,
5827, 5839, 5843, 5849, 5851, 5857, 5861, 5867, 5869, 5879, 5881, 5897, 5903,
5923, 5927, 5939, 5953, 5981, 5987, 6007, 6011, 6029, 6037, 6043, 6047, 6053,
6067, 6073, 6079, 6089, 6091, 6101, 6113, 6121, 6131, 6133, 6143, 6151, 6163,
6173, 6197, 6199, 6203, 6211, 6217, 6221, 6229, 6247, 6257, 6263, 6269, 6271,
6277, 6287, 6299, 6301, 6311, 6317, 6323, 6329, 6337, 6343, 6353, 6359, 6361,
6367, 6373, 6379, 6389, 6397, 6421, 6427, 6449, 6451, 6469, 6473, 6481, 6491,
6521, 6529, 6547, 6551, 6553, 6563, 6569, 6571, 6577, 6581, 6599, 6607, 6619,
6637, 6653, 6659, 6661, 6673, 6679, 6689, 6691, 6701, 6703, 6709, 6719, 6733,
6737, 6761, 6763, 6779, 6781, 6791, 6793, 6803, 6823, 6827, 6829, 6833, 6841,
6857, 6863, 6869, 6871, 6883, 6899, 6907, 6911, 6917, 6947, 6949, 6959, 6961,
6967, 6971, 6977, 6983, 6991, 6997, 7001, 7013, 7019, 7027, 7039, 7043, 7057,
7069, 7079, 7103, 7109, 7121, 7127, 7129, 7151, 7159, 7177, 7187, 7193, 7207,
7211, 7213, 7219, 7229, 7237, 7243, 7247, 7253, 7283, 7297, 7307, 7309, 7321,
7331, 7333, 7349, 7351, 7369, 7393, 7411, 7417, 7433, 7451, 7457, 7459, 7477,
7481, 7487, 7489, 7499, 7507, 7517, 7523, 7529, 7537, 7541, 7547, 7549, 7559,
7561, 7573, 7577, 7583, 7589, 7591, 7603, 7607, 7621, 7639, 7643, 7649, 7669,
7673, 7681, 7687, 7691, 7699, 7703, 7717, 7723, 7727, 7741, 7753, 7757, 7759,
7789, 7793, 7817, 7823, 7829, 7841, 7853, 7867, 7873, 7877, 7879, 7883, 7901,
7907, 7919, 7927, 7933, 7937, 7949, 7951, 7963, 7993, 8009, 8011, 8017, 8039,
8053, 8059, 8069, 8081, 8087, 8089, 8093, 8101, 8111, 8117, 8123, 8147, 8161,
8167, 8171, 8179, 8191, 8209, 8219, 8221, 8231, 8233, 8237, 8243, 8263, 8269,
8273, 8287, 8291, 8293, 8297, 8311, 8317, 8329, 8353, 8363, 8369, 8377, 8387,
8389, 8419, 8423, 8429, 8431, 8443, 8447, 8461, 8467, 8501, 8513, 8521, 8527,
8537, 8539, 8543, 8563, 8573, 8581, 8597, 8599, 8609, 8623, 8627, 8629, 8641,
8647, 8663, 8669, 8677, 8681, 8689, 8693, 8699, 8707, 8713, 8719, 8731, 8737,
8741, 8747, 8753, 8761, 8779, 8783, 8803, 8807, 8819, 8821, 8831, 8837, 8839,
8849, 8861, 8863, 8867, 8887, 8893, 8923, 8929, 8933, 8941, 8951, 8963, 8969,
8971, 8999, 9001, 9007, 9011, 9013, 9029, 9041, 9043, 9049, 9059, 9067, 9091,
9103, 9109, 9127, 9133, 9137, 9151, 9157, 9161, 9173, 9181, 9187, 9199, 9203,
9209, 9221, 9227, 9239, 9241, 9257, 9277, 9281, 9283, 9293, 9311, 9319, 9323,
9337, 9341, 9343, 9349, 9371, 9377, 9391, 9397, 9403, 9413, 9419, 9421, 9431,
9433, 9437, 9439, 9461, 9463, 9467, 9473, 9479, 9491, 9497, 9511, 9521, 9533,
9539, 9547, 9551, 9587, 9601, 9613, 9619, 9623, 9629, 9631, 9643, 9649, 9661,
9677, 9679, 9689, 9697, 9719, 9721, 9733, 9739, 9743, 9749, 9767, 9769, 9781,
9787, 9791, 9803, 9811, 9817, 9829, 9833, 9839, 9851, 9857, 9859, 9871, 9883,
9887, 9901, 9907, 9923, 9929, 9931, 9941, 9949, 9967, 9973, 10007, 10009, 10037,
10039, 10061, 10067, 10069, 10079, 10091, 10093, 10099, 10103, 10111, 10133,
10139, 10141, 10151, 10159, 10163, 10169, 10177, 10181, 10193, 10211, 10223,
10243, 10247, 10253, 10259, 10267, 10271, 10273, 10289, 10301, 10303, 10313,
10321, 10331, 10333, 10337, 10343, 10357, 10369, 10391, 10399, 10427, 10429,
10433, 10453, 10457, 10459, 10463, 10477, 10487, 10499, 10501, 10513, 10529,
10531, 10559, 10567, 10589, 10597, 10601, 10607, 10613, 10627, 10631, 10639,
10651, 10657, 10663, 10667);
// index of the primes numbers
primeNumbers(index) = ba.take(index , list)
with{
list = primes;
};
// ALLPASS Tuning :
APF_A1 = primeNumbers(520) ;
APF_A2 = primeNumbers(500) ;
APF_B1 = primeNumbers(480) ;
APF_B2 = primeNumbers(460) ;
APF_C1 = primeNumbers(440) ;
APF_C2 = primeNumbers(420) ;
APF_D1 = primeNumbers(410) ;
APF_D2 = primeNumbers(400) ;
Lsum_1 = primeNumbers(520) ;
Lsum_2 = primeNumbers(500) ;
Lsum_3 = primeNumbers(480) ;
Lsum_4 = primeNumbers(460) ;
Rsum_1 = primeNumbers(440) ;
Rsum_2 = primeNumbers(420) ;
Rsum_3 = primeNumbers(410) ;
Rsum_4 = primeNumbers(400) ;
// Luca Spanedda's KBVerb
// Reverb Model based on: Keith Barr Allpass Loop Reverb
KBReverb(IN) = Circuit
with{
APF(delaysamples) = (+ : _ <: @(delaysamples-1), *(0.5)) ~ *(-0.5) : mem, _ : + : _;
Sect_A = IN+_ : APF(APF_A1) : APF(APF_A2);
Sect_B = IN+_ : APF(APF_B1) : APF(APF_B2);
Sect_C = IN+_ : APF(APF_C1) : APF(APF_C2);
Sect_D = IN+_ : APF(APF_D1) : APF(APF_D2);
Decorrelation(L1,R1,L2,R2,L3,R3,L4,R4) =
(Delay(L1,Lsum_1)+Delay(L2,Lsum_2)+Delay(L3,Lsum_3)+Delay(L4,Lsum_4))/4,
(Delay(R1,Rsum_1)+Delay(R2,Rsum_2)+Delay(R3,Rsum_3)+Delay(R4,Rsum_4))/4;
Circuit =
IN <: _,
(
( Sect_A <:
(_*KRT:Sect_B <:
(_*KRT:Sect_C <:
(_*KRT:Sect_D <:
_*KRT,_,_)
,_,_),
_,_),
_,_)~_ :
!,_,_,_,_,_,_,_,_ : Decorrelation
)
: !, _, _;
}
with{
Delay(x,del) = x@(del);
Early = hslider("Early Reflections [style:knob]",0.920,0,1,0.001) : si.smoo;
KRT = hslider("Reverb Decay [style:knob]",0.820,0,1,0.001) : si.smoo;
};
Dry_Wet = hslider("Dry/Wet [style:knob]",1,0,1,0.001) : si.smoo;
Master_Route(a,b,c,d) = (a+c)/2, (b+d)/2;
process = (_+_)*10 : fi.dcblocker : KBReverb ;
| https://raw.githubusercontent.com/LucaSpanedda/Riverberazione_Digitale_in_FAUST/5cb60e8187327535dbbf9851dc1faf2c65e5936c/2.0_Luca_Spanedda_KBVerb.dsp | faust | import Standard Faust library
https://github.com/grame-cncm/faustlibraries/
insert an Index for the prime number list, report ms. and Meters
process =
reverbPrimeTest(410) ,
reverbPrimeTest(420) ,
reverbPrimeTest(430) ,
reverbPrimeTest(440) ,
reverbPrimeTest(460) ,
reverbPrimeTest(480) ,
reverbPrimeTest(500) ,
reverbPrimeTest(520) ;
index of the primes numbers
ALLPASS Tuning :
Luca Spanedda's KBVerb
Reverb Model based on: Keith Barr Allpass Loop Reverb | declare name "Luca Spanedda's KBVerb";
declare version "1.0.0";
declare author "Luca Spanedda";
declare copyright "Copyright(c) 2022 Luca Spanedda";
import("stdfaust.lib");
reverbPrimeTest(index) =
primeNumbers(index) : \(x).(x : ba.samp2sec, (343.1)*(x : ba.samp2sec));
primes =
(2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73,
79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163,
167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251,
257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313, 317, 331, 337, 347, 349,
353, 359, 367, 373, 379, 383, 389, 397, 401, 409, 419, 421, 431, 433, 439, 443,
449, 457, 461, 463, 467, 479, 487, 491, 499, 503, 509, 521, 523, 541, 547, 557,
563, 569, 571, 577, 587, 593, 599, 601, 607, 613, 617, 619, 631, 641, 643, 647,
653, 659, 661, 673, 677, 683, 691, 701, 709, 719, 727, 733, 739, 743, 751, 757,
761, 769, 773, 787, 797, 809, 811, 821, 823, 827, 829, 839, 853, 857, 859, 863,
877, 881, 883, 887, 907, 911, 919, 929, 937, 941, 947, 953, 967, 971, 977, 983,
991, 997, 1009, 1013, 1019, 1021, 1031, 1033, 1039, 1049, 1051, 1061, 1063,
1069, 1087, 1091, 1093, 1097, 1103, 1109, 1117, 1123, 1129, 1151, 1153, 1163,
1171, 1181, 1187, 1193, 1201, 1213, 1217, 1223, 1229, 1231, 1237, 1249, 1259,
1277, 1279, 1283, 1289, 1291, 1297, 1301, 1303, 1307, 1319, 1321, 1327, 1361,
1367, 1373, 1381, 1399, 1409, 1423, 1427, 1429, 1433, 1439, 1447, 1451, 1453,
1459, 1471, 1481, 1483, 1487, 1489, 1493, 1499, 1511, 1523, 1531, 1543, 1549,
1553, 1559, 1567, 1571, 1579, 1583, 1597, 1601, 1607, 1609, 1613, 1619, 1621,
1627, 1637, 1657, 1663, 1667, 1669, 1693, 1697, 1699, 1709, 1721, 1723, 1733,
1741, 1747, 1753, 1759, 1777, 1783, 1787, 1789, 1801, 1811, 1823, 1831, 1847,
1861, 1867, 1871, 1873, 1877, 1879, 1889, 1901, 1907, 1913, 1931, 1933, 1949,
1951, 1973, 1979, 1987, 1993, 1997, 1999, 2003, 2011, 2017, 2027, 2029, 2039,
2053, 2063, 2069, 2081, 2083, 2087, 2089, 2099, 2111, 2113, 2129, 2131, 2137,
2141, 2143, 2153, 2161, 2179, 2203, 2207, 2213, 2221, 2237, 2239, 2243, 2251,
2267, 2269, 2273, 2281, 2287, 2293, 2297, 2309, 2311, 2333, 2339, 2341, 2347,
2351, 2357, 2371, 2377, 2381, 2383, 2389, 2393, 2399, 2411, 2417, 2423, 2437,
2441, 2447, 2459, 2467, 2473, 2477, 2503, 2521, 2531, 2539, 2543, 2549, 2551,
2557, 2579, 2591, 2593, 2609, 2617, 2621, 2633, 2647, 2657, 2659, 2663, 2671,
2677, 2683, 2687, 2689, 2693, 2699, 2707, 2711, 2713, 2719, 2729, 2731, 2741,
2749, 2753, 2767, 2777, 2789, 2791, 2797, 2801, 2803, 2819, 2833, 2837, 2843,
2851, 2857, 2861, 2879, 2887, 2897, 2903, 2909, 2917, 2927, 2939, 2953, 2957,
2963, 2969, 2971, 2999, 3001, 3011, 3019, 3023, 3037, 3041, 3049, 3061, 3067,
3079, 3083, 3089, 3109, 3119, 3121, 3137, 3163, 3167, 3169, 3181, 3187, 3191,
3203, 3209, 3217, 3221, 3229, 3251, 3253, 3257, 3259, 3271, 3299, 3301, 3307,
3313, 3319, 3323, 3329, 3331, 3343, 3347, 3359, 3361, 3371, 3373, 3389, 3391,
3407, 3413, 3433, 3449, 3457, 3461, 3463, 3467, 3469, 3491, 3499, 3511, 3517,
3527, 3529, 3533, 3539, 3541, 3547, 3557, 3559, 3571, 3581, 3583, 3593, 3607,
3613, 3617, 3623, 3631, 3637, 3643, 3659, 3671, 3673, 3677, 3691, 3697, 3701,
3709, 3719, 3727, 3733, 3739, 3761, 3767, 3769, 3779, 3793, 3797, 3803, 3821,
3823, 3833, 3847, 3851, 3853, 3863, 3877, 3881, 3889, 3907, 3911, 3917, 3919,
3923, 3929, 3931, 3943, 3947, 3967, 3989, 4001, 4003, 4007, 4013, 4019, 4021,
4027, 4049, 4051, 4057, 4073, 4079, 4091, 4093, 4099, 4111, 4127, 4129, 4133,
4139, 4153, 4157, 4159, 4177, 4201, 4211, 4217, 4219, 4229, 4231, 4241, 4243,
4253, 4259, 4261, 4271, 4273, 4283, 4289, 4297, 4327, 4337, 4339, 4349, 4357,
4363, 4373, 4391, 4397, 4409, 4421, 4423, 4441, 4447, 4451, 4457, 4463, 4481,
4483, 4493, 4507, 4513, 4517, 4519, 4523, 4547, 4549, 4561, 4567, 4583, 4591,
4597, 4603, 4621, 4637, 4639, 4643, 4649, 4651, 4657, 4663, 4673, 4679, 4691,
4703, 4721, 4723, 4729, 4733, 4751, 4759, 4783, 4787, 4789, 4793, 4799, 4801,
4813, 4817, 4831, 4861, 4871, 4877, 4889, 4903, 4909, 4919, 4931, 4933, 4937,
4943, 4951, 4957, 4967, 4969, 4973, 4987, 4993, 4999, 5003, 5009, 5011, 5021,
5023, 5039, 5051, 5059, 5077, 5081, 5087, 5099, 5101, 5107, 5113, 5119, 5147,
5153, 5167, 5171, 5179, 5189, 5197, 5209, 5227, 5231, 5233, 5237, 5261, 5273,
5279, 5281, 5297, 5303, 5309, 5323, 5333, 5347, 5351, 5381, 5387, 5393, 5399,
5407, 5413, 5417, 5419, 5431, 5437, 5441, 5443, 5449, 5471, 5477, 5479, 5483,
5501, 5503, 5507, 5519, 5521, 5527, 5531, 5557, 5563, 5569, 5573, 5581, 5591,
5623, 5639, 5641, 5647, 5651, 5653, 5657, 5659, 5669, 5683, 5689, 5693, 5701,
5711, 5717, 5737, 5741, 5743, 5749, 5779, 5783, 5791, 5801, 5807, 5813, 5821,
5827, 5839, 5843, 5849, 5851, 5857, 5861, 5867, 5869, 5879, 5881, 5897, 5903,
5923, 5927, 5939, 5953, 5981, 5987, 6007, 6011, 6029, 6037, 6043, 6047, 6053,
6067, 6073, 6079, 6089, 6091, 6101, 6113, 6121, 6131, 6133, 6143, 6151, 6163,
6173, 6197, 6199, 6203, 6211, 6217, 6221, 6229, 6247, 6257, 6263, 6269, 6271,
6277, 6287, 6299, 6301, 6311, 6317, 6323, 6329, 6337, 6343, 6353, 6359, 6361,
6367, 6373, 6379, 6389, 6397, 6421, 6427, 6449, 6451, 6469, 6473, 6481, 6491,
6521, 6529, 6547, 6551, 6553, 6563, 6569, 6571, 6577, 6581, 6599, 6607, 6619,
6637, 6653, 6659, 6661, 6673, 6679, 6689, 6691, 6701, 6703, 6709, 6719, 6733,
6737, 6761, 6763, 6779, 6781, 6791, 6793, 6803, 6823, 6827, 6829, 6833, 6841,
6857, 6863, 6869, 6871, 6883, 6899, 6907, 6911, 6917, 6947, 6949, 6959, 6961,
6967, 6971, 6977, 6983, 6991, 6997, 7001, 7013, 7019, 7027, 7039, 7043, 7057,
7069, 7079, 7103, 7109, 7121, 7127, 7129, 7151, 7159, 7177, 7187, 7193, 7207,
7211, 7213, 7219, 7229, 7237, 7243, 7247, 7253, 7283, 7297, 7307, 7309, 7321,
7331, 7333, 7349, 7351, 7369, 7393, 7411, 7417, 7433, 7451, 7457, 7459, 7477,
7481, 7487, 7489, 7499, 7507, 7517, 7523, 7529, 7537, 7541, 7547, 7549, 7559,
7561, 7573, 7577, 7583, 7589, 7591, 7603, 7607, 7621, 7639, 7643, 7649, 7669,
7673, 7681, 7687, 7691, 7699, 7703, 7717, 7723, 7727, 7741, 7753, 7757, 7759,
7789, 7793, 7817, 7823, 7829, 7841, 7853, 7867, 7873, 7877, 7879, 7883, 7901,
7907, 7919, 7927, 7933, 7937, 7949, 7951, 7963, 7993, 8009, 8011, 8017, 8039,
8053, 8059, 8069, 8081, 8087, 8089, 8093, 8101, 8111, 8117, 8123, 8147, 8161,
8167, 8171, 8179, 8191, 8209, 8219, 8221, 8231, 8233, 8237, 8243, 8263, 8269,
8273, 8287, 8291, 8293, 8297, 8311, 8317, 8329, 8353, 8363, 8369, 8377, 8387,
8389, 8419, 8423, 8429, 8431, 8443, 8447, 8461, 8467, 8501, 8513, 8521, 8527,
8537, 8539, 8543, 8563, 8573, 8581, 8597, 8599, 8609, 8623, 8627, 8629, 8641,
8647, 8663, 8669, 8677, 8681, 8689, 8693, 8699, 8707, 8713, 8719, 8731, 8737,
8741, 8747, 8753, 8761, 8779, 8783, 8803, 8807, 8819, 8821, 8831, 8837, 8839,
8849, 8861, 8863, 8867, 8887, 8893, 8923, 8929, 8933, 8941, 8951, 8963, 8969,
8971, 8999, 9001, 9007, 9011, 9013, 9029, 9041, 9043, 9049, 9059, 9067, 9091,
9103, 9109, 9127, 9133, 9137, 9151, 9157, 9161, 9173, 9181, 9187, 9199, 9203,
9209, 9221, 9227, 9239, 9241, 9257, 9277, 9281, 9283, 9293, 9311, 9319, 9323,
9337, 9341, 9343, 9349, 9371, 9377, 9391, 9397, 9403, 9413, 9419, 9421, 9431,
9433, 9437, 9439, 9461, 9463, 9467, 9473, 9479, 9491, 9497, 9511, 9521, 9533,
9539, 9547, 9551, 9587, 9601, 9613, 9619, 9623, 9629, 9631, 9643, 9649, 9661,
9677, 9679, 9689, 9697, 9719, 9721, 9733, 9739, 9743, 9749, 9767, 9769, 9781,
9787, 9791, 9803, 9811, 9817, 9829, 9833, 9839, 9851, 9857, 9859, 9871, 9883,
9887, 9901, 9907, 9923, 9929, 9931, 9941, 9949, 9967, 9973, 10007, 10009, 10037,
10039, 10061, 10067, 10069, 10079, 10091, 10093, 10099, 10103, 10111, 10133,
10139, 10141, 10151, 10159, 10163, 10169, 10177, 10181, 10193, 10211, 10223,
10243, 10247, 10253, 10259, 10267, 10271, 10273, 10289, 10301, 10303, 10313,
10321, 10331, 10333, 10337, 10343, 10357, 10369, 10391, 10399, 10427, 10429,
10433, 10453, 10457, 10459, 10463, 10477, 10487, 10499, 10501, 10513, 10529,
10531, 10559, 10567, 10589, 10597, 10601, 10607, 10613, 10627, 10631, 10639,
10651, 10657, 10663, 10667);
primeNumbers(index) = ba.take(index , list)
with{
list = primes;
};
APF_A1 = primeNumbers(520) ;
APF_A2 = primeNumbers(500) ;
APF_B1 = primeNumbers(480) ;
APF_B2 = primeNumbers(460) ;
APF_C1 = primeNumbers(440) ;
APF_C2 = primeNumbers(420) ;
APF_D1 = primeNumbers(410) ;
APF_D2 = primeNumbers(400) ;
Lsum_1 = primeNumbers(520) ;
Lsum_2 = primeNumbers(500) ;
Lsum_3 = primeNumbers(480) ;
Lsum_4 = primeNumbers(460) ;
Rsum_1 = primeNumbers(440) ;
Rsum_2 = primeNumbers(420) ;
Rsum_3 = primeNumbers(410) ;
Rsum_4 = primeNumbers(400) ;
KBReverb(IN) = Circuit
with{
APF(delaysamples) = (+ : _ <: @(delaysamples-1), *(0.5)) ~ *(-0.5) : mem, _ : + : _;
Sect_A = IN+_ : APF(APF_A1) : APF(APF_A2);
Sect_B = IN+_ : APF(APF_B1) : APF(APF_B2);
Sect_C = IN+_ : APF(APF_C1) : APF(APF_C2);
Sect_D = IN+_ : APF(APF_D1) : APF(APF_D2);
Decorrelation(L1,R1,L2,R2,L3,R3,L4,R4) =
(Delay(L1,Lsum_1)+Delay(L2,Lsum_2)+Delay(L3,Lsum_3)+Delay(L4,Lsum_4))/4,
(Delay(R1,Rsum_1)+Delay(R2,Rsum_2)+Delay(R3,Rsum_3)+Delay(R4,Rsum_4))/4;
Circuit =
IN <: _,
(
( Sect_A <:
(_*KRT:Sect_B <:
(_*KRT:Sect_C <:
(_*KRT:Sect_D <:
_*KRT,_,_)
,_,_),
_,_),
_,_)~_ :
!,_,_,_,_,_,_,_,_ : Decorrelation
)
: !, _, _;
}
with{
Delay(x,del) = x@(del);
Early = hslider("Early Reflections [style:knob]",0.920,0,1,0.001) : si.smoo;
KRT = hslider("Reverb Decay [style:knob]",0.820,0,1,0.001) : si.smoo;
};
Dry_Wet = hslider("Dry/Wet [style:knob]",1,0,1,0.001) : si.smoo;
Master_Route(a,b,c,d) = (a+c)/2, (b+d)/2;
process = (_+_)*10 : fi.dcblocker : KBReverb ;
|
d3b81458a4157242a80b3e49cd6002b7b5f6d0636464dd55ee4c48b02ec195e5 | LucaSpanedda/Riverberazione_Digitale_in_FAUST | 2.0_Corey_Kereliuk_KBVerb.dsp | // faust -a supercollider.cpp KBVerb.dsp -o KBVerb.cpp
// g++ -O3 -DNO_LIBSNDFILE -DSC_DARWIN -DSC_FAUST_PREFIX="\"\"" -bundle -I./include -I/Users/corey/Development/supercollider/include/{plugin_interface,common,server} -I/usr/local/lib/faust/ -Dmydsp=KBVERB -o KBVerb.scx KBVerb.cpp
declare name "KBVerb";
declare author "Corey Kereliuk";
declare copyright "Corey Kereliuk";
declare version "0.0";
declare license "MIT";
import("math.lib");
import("signal.lib");
import("delay.lib");
//os = library("miscoscillator.lib"); // for testing
primes = ffunction(int primes (int),<primes.h>,"primes");
fb = hslider("feedback",0.5,0.0,1.0,0.01):smooth(0.99);
allpass(N,n,g) = (+ <: (delay(N, n), *(g))) ~ *(-g) : mem, _: +;
section((n1, n2)) = allpass(2048, n1, 0.7) : allpass(2048, n2, 0.7) : delay(4096, int(0.75*(n1+n2)));
allpass_chain(((n1, n2), ns), x) = _ : section((n1, n2)) <: R(x, ns), _
with {
R(x, ((n1, n2), ns)) = _,x : + : section((n1, n2)) <: R(x, ns), _;
R(x, (n1, n2)) = _,x : + : section((n1, n2));
};
procMono(feedfwd_delays, feedback_delays, feedback_gain, x) = x : (+ : allpass_chain(feedfwd_delays, x)) ~ (_,x : + : section(feedback_delays) : *(feedback_gain)) :> _;
process = bus(2) : mix(PI/2) : *(0.5), *(0.5) : procLeft, procRight : bus(2)
with {
mix(theta) = bus(2) <: (*(c), *(-s), *(s), *(c)) : (+,+) : bus(2)
with {
c = cos(theta);
s = sin(theta);
};
ind_left(i) = 100 + 10*pow(2,i);
feedfwd_delays_left = par(i, 5, (primes(ind_left(i)), primes(ind_left(i)+1)));
feedback_delays_left = (primes(100), primes(101));
procLeft = procMono(feedfwd_delays_left, feedback_delays_left, fb);
ind_right(i) = 100 + 11*pow(2,i);
feedfwd_delays_right = par(i, 4, (primes(ind_right(i)), primes(ind_right(i)+1)));
feedback_delays_right = (primes(97), primes(99));
procRight = procMono(feedfwd_delays_right, feedback_delays_right, fb);
};
// impulse (test)
// process = os.lf_imptrain(0.25) <: procLeft, procRight
// with {
// ind_left(i) = 100 + 10*pow(2,i);
// feedfwd_delays_left = par(i, 5, (primes(ind_left(i)), primes(ind_left(i)+1)));
// feedback_delays_left = (primes(100), primes(101));
// procLeft = procMono(feedfwd_delays_left, feedback_delays_left, fb);
// ind_right(i) = 100 + 11*pow(2,i);
// feedfwd_delays_right = par(i, 4, (primes(ind_right(i)), primes(ind_right(i)+1)));
// feedback_delays_right = (primes(97), primes(99));
// procRight = procMono(feedfwd_delays_right, feedback_delays_right, fb);
// }; | https://raw.githubusercontent.com/LucaSpanedda/Riverberazione_Digitale_in_FAUST/af19b40c9b0289cf2f759b957a63c48ac3c17ae5/2.0_Corey_Kereliuk_KBVerb.dsp | faust | faust -a supercollider.cpp KBVerb.dsp -o KBVerb.cpp
g++ -O3 -DNO_LIBSNDFILE -DSC_DARWIN -DSC_FAUST_PREFIX="\"\"" -bundle -I./include -I/Users/corey/Development/supercollider/include/{plugin_interface,common,server} -I/usr/local/lib/faust/ -Dmydsp=KBVERB -o KBVerb.scx KBVerb.cpp
os = library("miscoscillator.lib"); // for testing
impulse (test)
process = os.lf_imptrain(0.25) <: procLeft, procRight
with {
ind_left(i) = 100 + 10*pow(2,i);
feedfwd_delays_left = par(i, 5, (primes(ind_left(i)), primes(ind_left(i)+1)));
feedback_delays_left = (primes(100), primes(101));
procLeft = procMono(feedfwd_delays_left, feedback_delays_left, fb);
ind_right(i) = 100 + 11*pow(2,i);
feedfwd_delays_right = par(i, 4, (primes(ind_right(i)), primes(ind_right(i)+1)));
feedback_delays_right = (primes(97), primes(99));
procRight = procMono(feedfwd_delays_right, feedback_delays_right, fb);
}; |
declare name "KBVerb";
declare author "Corey Kereliuk";
declare copyright "Corey Kereliuk";
declare version "0.0";
declare license "MIT";
import("math.lib");
import("signal.lib");
import("delay.lib");
primes = ffunction(int primes (int),<primes.h>,"primes");
fb = hslider("feedback",0.5,0.0,1.0,0.01):smooth(0.99);
allpass(N,n,g) = (+ <: (delay(N, n), *(g))) ~ *(-g) : mem, _: +;
section((n1, n2)) = allpass(2048, n1, 0.7) : allpass(2048, n2, 0.7) : delay(4096, int(0.75*(n1+n2)));
allpass_chain(((n1, n2), ns), x) = _ : section((n1, n2)) <: R(x, ns), _
with {
R(x, ((n1, n2), ns)) = _,x : + : section((n1, n2)) <: R(x, ns), _;
R(x, (n1, n2)) = _,x : + : section((n1, n2));
};
procMono(feedfwd_delays, feedback_delays, feedback_gain, x) = x : (+ : allpass_chain(feedfwd_delays, x)) ~ (_,x : + : section(feedback_delays) : *(feedback_gain)) :> _;
process = bus(2) : mix(PI/2) : *(0.5), *(0.5) : procLeft, procRight : bus(2)
with {
mix(theta) = bus(2) <: (*(c), *(-s), *(s), *(c)) : (+,+) : bus(2)
with {
c = cos(theta);
s = sin(theta);
};
ind_left(i) = 100 + 10*pow(2,i);
feedfwd_delays_left = par(i, 5, (primes(ind_left(i)), primes(ind_left(i)+1)));
feedback_delays_left = (primes(100), primes(101));
procLeft = procMono(feedfwd_delays_left, feedback_delays_left, fb);
ind_right(i) = 100 + 11*pow(2,i);
feedfwd_delays_right = par(i, 4, (primes(ind_right(i)), primes(ind_right(i)+1)));
feedback_delays_right = (primes(97), primes(99));
procRight = procMono(feedfwd_delays_right, feedback_delays_right, fb);
};
|
a22277960fb91b7e05e603092c09d3f2d1ef54469b1d00265acfdeebeda1c416 | LucaSpanedda/Riverberazione_Digitale_in_FAUST | 2.0_Oli_Larkin_FaustVerb.dsp | declare name "freeverb";
declare version "1.0";
declare author "Grame";
declare license "BSD";
declare copyright "(c) GRAME 2006";
declare reference "https://ccrma.stanford.edu/~jos/pasp/Freeverb.html";
//======================================================
//
// Freeverb
// Faster version using fixed delays (20% gain)
//
//======================================================
// Constant Parameters
//--------------------
fixedgain = 0.015; //value of the gain of fxctrl
scalewet = 3.0;
scaledry = 2.0;
scaledamp = 0.4;
scaleroom = 0.28;
offsetroom = 0.7;
initialroom = 0.5;
initialdamp = 0.5;
initialwet = 1.0/scalewet;
initialdry = 0;
initialwidth= 1.0;
initialmode = 0.0;
freezemode = 0.5;
stereospread= 23;
allpassfeed = 0.5; //feedback of the delays used in allpass filters
// Filter Parameters
//------------------
combtuningL1 = 1116;
combtuningL2 = 1188;
combtuningL3 = 1277;
combtuningL4 = 1356;
combtuningL5 = 1422;
combtuningL6 = 1491;
combtuningL7 = 1557;
combtuningL8 = 1617;
allpasstuningL1 = 556;
allpasstuningL2 = 441;
allpasstuningL3 = 341;
allpasstuningL4 = 225;
// Control Sliders
//--------------------
// Damp : filters the high frequencies of the echoes (especially active for great values of RoomSize)
// RoomSize : size of the reverberation room
// Dry : original signal
// Wet : reverberated signal
roomsizeSlider = hslider("Room Size [OWL:PARAMETER_A]", 0.5, 0, 1, 0.025)*scaleroom + offsetroom;
dampSlider = hslider("Damp [OWL:PARAMETER_B]",0.5, 0, 1, 0.025)*scaledamp;
wetSlider = hslider("Dry/Wet [OWL:PARAMETER_D]", 0.3333, 0, 1, 0.025);
combfeed = roomsizeSlider;
// Comb and Allpass filters
//-------------------------
allpass(dt,fb) = (_,_ <: (*(fb),_:+:@(dt)), -) ~ _ : (!,_);
comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
// Reverb components
//------------------
monoReverb(fb1, fb2, damp, spread)
= _ <: comb(combtuningL1+spread, fb1, damp),
comb(combtuningL2+spread, fb1, damp),
comb(combtuningL3+spread, fb1, damp),
comb(combtuningL4+spread, fb1, damp),
comb(combtuningL5+spread, fb1, damp),
comb(combtuningL6+spread, fb1, damp),
comb(combtuningL7+spread, fb1, damp),
comb(combtuningL8+spread, fb1, damp)
+>
allpass (allpasstuningL1+spread, fb2)
: allpass (allpasstuningL2+spread, fb2)
: allpass (allpasstuningL3+spread, fb2)
: allpass (allpasstuningL4+spread, fb2)
;
stereoReverb(fb1, fb2, damp, spread)
= + <: monoReverb(fb1, fb2, damp, 0), monoReverb(fb1, fb2, damp, spread);
// fxctrl : add an input gain and a wet-dry control to a stereo FX
//----------------------------------------------------------------
fxctrl(g,w,Fx) = _ <: (*(g) : Fx : *(w)), *(1-w) +> _;
// Freeverb
//---------
freeverb = vgroup("Freeverb", fxctrl(fixedgain, wetSlider, monoReverb(combfeed, allpassfeed, dampSlider, 0)));
//freeverb = vgroup("Freeverb", monoReverb(combfeed, allpassfeed, dampSlider, 0));
process = freeverb;
| https://raw.githubusercontent.com/LucaSpanedda/Riverberazione_Digitale_in_FAUST/af19b40c9b0289cf2f759b957a63c48ac3c17ae5/2.0_Oli_Larkin_FaustVerb.dsp | faust | ======================================================
Freeverb
Faster version using fixed delays (20% gain)
======================================================
Constant Parameters
--------------------
value of the gain of fxctrl
feedback of the delays used in allpass filters
Filter Parameters
------------------
Control Sliders
--------------------
Damp : filters the high frequencies of the echoes (especially active for great values of RoomSize)
RoomSize : size of the reverberation room
Dry : original signal
Wet : reverberated signal
Comb and Allpass filters
-------------------------
Reverb components
------------------
fxctrl : add an input gain and a wet-dry control to a stereo FX
----------------------------------------------------------------
Freeverb
---------
freeverb = vgroup("Freeverb", monoReverb(combfeed, allpassfeed, dampSlider, 0)); | declare name "freeverb";
declare version "1.0";
declare author "Grame";
declare license "BSD";
declare copyright "(c) GRAME 2006";
declare reference "https://ccrma.stanford.edu/~jos/pasp/Freeverb.html";
scalewet = 3.0;
scaledry = 2.0;
scaledamp = 0.4;
scaleroom = 0.28;
offsetroom = 0.7;
initialroom = 0.5;
initialdamp = 0.5;
initialwet = 1.0/scalewet;
initialdry = 0;
initialwidth= 1.0;
initialmode = 0.0;
freezemode = 0.5;
stereospread= 23;
combtuningL1 = 1116;
combtuningL2 = 1188;
combtuningL3 = 1277;
combtuningL4 = 1356;
combtuningL5 = 1422;
combtuningL6 = 1491;
combtuningL7 = 1557;
combtuningL8 = 1617;
allpasstuningL1 = 556;
allpasstuningL2 = 441;
allpasstuningL3 = 341;
allpasstuningL4 = 225;
roomsizeSlider = hslider("Room Size [OWL:PARAMETER_A]", 0.5, 0, 1, 0.025)*scaleroom + offsetroom;
dampSlider = hslider("Damp [OWL:PARAMETER_B]",0.5, 0, 1, 0.025)*scaledamp;
wetSlider = hslider("Dry/Wet [OWL:PARAMETER_D]", 0.3333, 0, 1, 0.025);
combfeed = roomsizeSlider;
allpass(dt,fb) = (_,_ <: (*(fb),_:+:@(dt)), -) ~ _ : (!,_);
comb(dt, fb, damp) = (+:@(dt)) ~ (*(1-damp) : (+ ~ *(damp)) : *(fb));
monoReverb(fb1, fb2, damp, spread)
= _ <: comb(combtuningL1+spread, fb1, damp),
comb(combtuningL2+spread, fb1, damp),
comb(combtuningL3+spread, fb1, damp),
comb(combtuningL4+spread, fb1, damp),
comb(combtuningL5+spread, fb1, damp),
comb(combtuningL6+spread, fb1, damp),
comb(combtuningL7+spread, fb1, damp),
comb(combtuningL8+spread, fb1, damp)
+>
allpass (allpasstuningL1+spread, fb2)
: allpass (allpasstuningL2+spread, fb2)
: allpass (allpasstuningL3+spread, fb2)
: allpass (allpasstuningL4+spread, fb2)
;
stereoReverb(fb1, fb2, damp, spread)
= + <: monoReverb(fb1, fb2, damp, 0), monoReverb(fb1, fb2, damp, spread);
fxctrl(g,w,Fx) = _ <: (*(g) : Fx : *(w)), *(1-w) +> _;
freeverb = vgroup("Freeverb", fxctrl(fixedgain, wetSlider, monoReverb(combfeed, allpassfeed, dampSlider, 0)));
process = freeverb;
|
4f1493cbf36b5d8e91ccc89b15f612ab5e504bd4a34a0f33a812b17c45a558bb | JaoRamos/Faust | Clase_3.dsp | /*
retardoslider = hslider("Retardo en segundos", 0.5, 0, 1, 0.01);
gainslider = hslider("Realimentacion", 0.5, 0, 1, 0.01);
rebote(retardo, gain) = @(retardo) * (gain);
ecomono(retardo, gain) = +~rebote(retardo, gain);
// mantendremos ambos canales ligeramente distintos
ecoestereo(retardo, gain) = ecomono(retardo/3, gain), ecomono(retardo, gain/2);
// multiplicamos por 44100 para tener la cantidad de muestras de retardo
process = _ <: ecoestereo(retardoslider * 44100, gainslider);
*/
/*
rebote(retardo, gain) = @(retardo) : *(gain);
// reducimos progresivamente la señal original si el gain supera un "limite"
// quedando solo la señal del retardo ya existente en el bucle de realimentacion
limite = 0.95;
congelador(retardo, gain) = *(1 - max(0, gain - limite) / (1-limite)) : +~rebote(retardo, gain);
ecoestereo(retardo, gain) = congelador(retardo, gain), congelador(retardo, gain);
process = ecoestereo(44100/4, hslider("Realimentacion", 0, 0, 1, 0.01));
*/
rebote(retardo, gain) = @(retardo) : *(gain);
ecomono(retardo, gain) = +~rebote(retardo, gain);
// mantendremos ambos canales ligeramente distintos
ecoestereo(retardo, gain) = ecomono(retardo/3, gain), ecomono(retardo, gain/2);
retardoslider = hslider("Retardo en segundos", 0.5, 0, 1, 0.01);
gainslider = hslider("Realimentacion", 0.5, 0, 1, 0.01);
// multiplicamos por 44100 para tener la cantidad de muestras de retardo
process = ecoestereo(retardoslider * 44100, gainslider);
| https://raw.githubusercontent.com/JaoRamos/Faust/ea166da223762e2c5a37af677953e18e89d02d7c/unq/Clase_3/Clase_3.dsp | faust |
retardoslider = hslider("Retardo en segundos", 0.5, 0, 1, 0.01);
gainslider = hslider("Realimentacion", 0.5, 0, 1, 0.01);
rebote(retardo, gain) = @(retardo) * (gain);
ecomono(retardo, gain) = +~rebote(retardo, gain);
// mantendremos ambos canales ligeramente distintos
ecoestereo(retardo, gain) = ecomono(retardo/3, gain), ecomono(retardo, gain/2);
// multiplicamos por 44100 para tener la cantidad de muestras de retardo
process = _ <: ecoestereo(retardoslider * 44100, gainslider);
rebote(retardo, gain) = @(retardo) : *(gain);
// reducimos progresivamente la señal original si el gain supera un "limite"
// quedando solo la señal del retardo ya existente en el bucle de realimentacion
limite = 0.95;
congelador(retardo, gain) = *(1 - max(0, gain - limite) / (1-limite)) : +~rebote(retardo, gain);
ecoestereo(retardo, gain) = congelador(retardo, gain), congelador(retardo, gain);
process = ecoestereo(44100/4, hslider("Realimentacion", 0, 0, 1, 0.01));
mantendremos ambos canales ligeramente distintos
multiplicamos por 44100 para tener la cantidad de muestras de retardo |
rebote(retardo, gain) = @(retardo) : *(gain);
ecomono(retardo, gain) = +~rebote(retardo, gain);
ecoestereo(retardo, gain) = ecomono(retardo/3, gain), ecomono(retardo, gain/2);
retardoslider = hslider("Retardo en segundos", 0.5, 0, 1, 0.01);
gainslider = hslider("Realimentacion", 0.5, 0, 1, 0.01);
process = ecoestereo(retardoslider * 44100, gainslider);
|
10fcd65a5ae748df0fd04dd8b24dbb75f9861f9fa44ff12493ae9e25b80f1aa4 | JaoRamos/Faust | Freeze_simple.dsp | rebote(retardo, gain) = @(retardo) : *(gain);
// reducimos progresivamente la señal original si el gain supera un "limite"
// quedando solo la señal del retardo ya existente en el bucle de realimentacion
limite = 0.95;
congelador(retardo, gain) = *(1 - max(0, gain - limite) / (1-limite)) : +~rebote(retardo, gain);
ecoestereo(retardo, gain) = congelador(retardo, gain), congelador(retardo, gain);
process = ecoestereo(44100/4, hslider("Realimentacion", 0, 0, 1, 0.01)); | https://raw.githubusercontent.com/JaoRamos/Faust/ea166da223762e2c5a37af677953e18e89d02d7c/unq/Clase_3/Freeze_simple.dsp | faust | reducimos progresivamente la señal original si el gain supera un "limite"
quedando solo la señal del retardo ya existente en el bucle de realimentacion | rebote(retardo, gain) = @(retardo) : *(gain);
limite = 0.95;
congelador(retardo, gain) = *(1 - max(0, gain - limite) / (1-limite)) : +~rebote(retardo, gain);
ecoestereo(retardo, gain) = congelador(retardo, gain), congelador(retardo, gain);
process = ecoestereo(44100/4, hslider("Realimentacion", 0, 0, 1, 0.01)); |
4b73eaf34fc47c7dd76c6abe03769052526b3090dd3b2b7bd77083a805b8b76b | JaoRamos/Faust | Clase2.dsp | /*
// hslider("label",init,min,max,step)
process = _ * hslider("volumen", 0.5, -5.0, 5.0, 0.00001);
*/
/*
// puedo crear definiciones adicionales
// asi puedo englobar/encapsular elementos
monoAmp = (_, hslider("volume", 0.1, 0, 1, 0.01)) : *;
process = monoAmp;
*/
/*
// amplificador estereo
monoAmp = (_, hslider("volume", 0.1, 0, 1, 0.01)) : *;
stereoAmp = monoAmp, monoAmp;
process = stereoAmp;
*/
/*
// slider verticales (por ahora se ven feos!!)
monoAmp = (_, vslider("volume", 0.1, 0, 1, 0.01)) : *;
stereoAmp = monoAmp, monoAmp;
process = stereoAmp;
*/
/*
// metadatos en las etiquetas [.....]
monoAmp = (_, hslider("volume[style:knob]", 0.1, 0, 1, 0.0001)) : *;
stereoAmp = monoAmp, monoAmp;
process = stereoAmp;
*/
/*
// Tipos de notacion para escribir "lo mismo"
// _,0.1:* sintaxis principal
// _*0.1 notación infija
// *(0.1) notación de prefijo
// process = (_ , 0.1) : *; // dos elementos en paralelo, conectados secuencialmente a otro
// process = _ * 0.1; // mas similar a la aritmetica
//process = *(0.1);
*/
/*
// control de Mute
process = _ * (1 - checkbox("Silenciar"));
*/
/*
// grupos de elementos (GUI)
// GUI = Graphical User Interface
mute = *(1-checkbox("mute"));
monoamp = *(vslider("volume[style:knob]", 0.1, 0, 1, 0.01)) : mute;
stereoamp = vgroup("Fender", monoamp, monoamp);
process = stereoamp;
*/
/*
// parametros
mute = *(1-checkbox("mute"));
// %c parametro c en la etiqueta
monoamp(c) = *(vslider("Volumen %c[style:knob]", 0.1, 0, 1, 0.01)) : mute;
stereoamp = hgroup("Marshall", monoamp(0), monoamp(1));
process = stereoamp;
*/
/*
mute = *(1-checkbox("mute"));
monoamp(c) = *(vslider("volume[style:knob]", 0.1, 0, 1, 0.01)) : mute;
multiamp(N) = hgroup("Marshall", par(i, N, monoamp(i+1)));
process = multiamp(8); // probar multiamp(4) u otros valores (solo enteros positivos)
*/
| https://raw.githubusercontent.com/JaoRamos/Faust/6de7268844326458bdd16194094f770c6004315e/unq/Clase_2/Clase2.dsp | faust |
// hslider("label",init,min,max,step)
process = _ * hslider("volumen", 0.5, -5.0, 5.0, 0.00001);
// puedo crear definiciones adicionales
// asi puedo englobar/encapsular elementos
monoAmp = (_, hslider("volume", 0.1, 0, 1, 0.01)) : *;
process = monoAmp;
// amplificador estereo
monoAmp = (_, hslider("volume", 0.1, 0, 1, 0.01)) : *;
stereoAmp = monoAmp, monoAmp;
process = stereoAmp;
// slider verticales (por ahora se ven feos!!)
monoAmp = (_, vslider("volume", 0.1, 0, 1, 0.01)) : *;
stereoAmp = monoAmp, monoAmp;
process = stereoAmp;
// metadatos en las etiquetas [.....]
monoAmp = (_, hslider("volume[style:knob]", 0.1, 0, 1, 0.0001)) : *;
stereoAmp = monoAmp, monoAmp;
process = stereoAmp;
// Tipos de notacion para escribir "lo mismo"
// _,0.1:* sintaxis principal
// _*0.1 notación infija
// *(0.1) notación de prefijo
// process = (_ , 0.1) : *; // dos elementos en paralelo, conectados secuencialmente a otro
// process = _ * 0.1; // mas similar a la aritmetica
//process = *(0.1);
// control de Mute
process = _ * (1 - checkbox("Silenciar"));
// grupos de elementos (GUI)
// GUI = Graphical User Interface
mute = *(1-checkbox("mute"));
monoamp = *(vslider("volume[style:knob]", 0.1, 0, 1, 0.01)) : mute;
stereoamp = vgroup("Fender", monoamp, monoamp);
process = stereoamp;
// parametros
mute = *(1-checkbox("mute"));
// %c parametro c en la etiqueta
monoamp(c) = *(vslider("Volumen %c[style:knob]", 0.1, 0, 1, 0.01)) : mute;
stereoamp = hgroup("Marshall", monoamp(0), monoamp(1));
process = stereoamp;
mute = *(1-checkbox("mute"));
monoamp(c) = *(vslider("volume[style:knob]", 0.1, 0, 1, 0.01)) : mute;
multiamp(N) = hgroup("Marshall", par(i, N, monoamp(i+1)));
process = multiamp(8); // probar multiamp(4) u otros valores (solo enteros positivos)
| |
fa5a54f3533ec98c1e20f3348d5adb418128edfef3f324198b9389e7a97e6404 | JaoRamos/Faust | Clase1.dsp | // process es la definicion principal
// = operador de asignacion
// _ primitiva "identidad" (cable de audio... ponele)
process = _ * 0.5; | https://raw.githubusercontent.com/JaoRamos/Faust/4ee336c4f8ee2ed2c2669f51a29bc7e221675029/unq/Clase_1/Clase1.dsp | faust | process es la definicion principal
= operador de asignacion
_ primitiva "identidad" (cable de audio... ponele) |
process = _ * 0.5; |
d7a5c62e75d15c3a653f8247e3fefe2f668e3bc4e417f79f7884673b2f588718 | JaoRamos/Faust | 1_MidSide.dsp | /*
Procesador MID-SIDE
Un procesador Mid-Side parte de una señal estereo diseñada como L + R, y deconstruye
el componente Mid (centro) y Side (lateral). El algoritmo es muy sencillo:
mid = L+R
side = L-R
Habitualmente, estos procesadores ofrecen algun control de nivel para Mid y Side, y
luego reconstruyen la señal estereo pero con M y S rebalanceados.
Algunos tipos de procesos (sobre todo filtros) son capaces de trabajar de manera
independiente sobre los componentes M y S de una señal estereo.
¡¡Este proceso debe probarse con un sonido estereo de entrada!! ----->>>>
|| Juan Ramos 2020 - Universidad Nacional de Quilmes ||
|| [email protected] ||
*/
// Controles
sliderMid = hslider("Mid", 1, 0, 1, 0.01);
sliderSide = hslider("Side", 1, 0, 1, 0.01);
volumen = hslider("Volumen", 0.8, 0, 1, 0.01);
// Producimos las señales Mid y Side a partir de L y R
// Las escalamos e intervenimos su nivel con los sliders
mid(l, r) = (l + r) * 0.5 * sliderMid; // mid = L+R
side(l, r) = (l - r) * 0.5 * sliderSide; // side = L-R
// Reconstituye la señal estereo desde el mid, side
// al usar la COMA, producimos DOS canales (L y R)!!!
reconstituir(l, r) = mid(l, r) + side(l, r) , // L = mid + side
mid(l, r) - side(l, r); // R = mid - side
// necesitamos el volumen una vez por canal, separados por COMA
process(l, r) = reconstituir(l, r) : (*(volumen), *(volumen));
| https://raw.githubusercontent.com/JaoRamos/Faust/c8895c672104b10729ddc06b42e2169a2943d839/unq/Clase_8/1_MidSide.dsp | faust |
Procesador MID-SIDE
Un procesador Mid-Side parte de una señal estereo diseñada como L + R, y deconstruye
el componente Mid (centro) y Side (lateral). El algoritmo es muy sencillo:
mid = L+R
side = L-R
Habitualmente, estos procesadores ofrecen algun control de nivel para Mid y Side, y
luego reconstruyen la señal estereo pero con M y S rebalanceados.
Algunos tipos de procesos (sobre todo filtros) son capaces de trabajar de manera
independiente sobre los componentes M y S de una señal estereo.
¡¡Este proceso debe probarse con un sonido estereo de entrada!! ----->>>>
|| Juan Ramos 2020 - Universidad Nacional de Quilmes ||
|| [email protected] ||
Controles
Producimos las señales Mid y Side a partir de L y R
Las escalamos e intervenimos su nivel con los sliders
mid = L+R
side = L-R
Reconstituye la señal estereo desde el mid, side
al usar la COMA, producimos DOS canales (L y R)!!!
L = mid + side
R = mid - side
necesitamos el volumen una vez por canal, separados por COMA |
sliderMid = hslider("Mid", 1, 0, 1, 0.01);
sliderSide = hslider("Side", 1, 0, 1, 0.01);
volumen = hslider("Volumen", 0.8, 0, 1, 0.01);
process(l, r) = reconstituir(l, r) : (*(volumen), *(volumen));
|
232ce84d0d96b30458e0876b4bb8546bb9465a274d2f9e95a0ae86cfb525ca0f | grame-cncm/faustide | midiTester.dsp | declare name "midiTester";
declare version "1.0";
declare author "Vincent Rateau, GRAME";
declare license "GPL v3";
declare reference "www.sonejo.net";
// FAUST MIDI TESTER
process = _*0, (vgroup("FAUST MIDI TESTER", hgroup("[1]", controltester, controlchantester, noteontester, noteonchantester, noteofftester, noteoffchantester, keypresschantester, midiclocktester), hgroup("[2]", kattester, katchantester, pctester, pcchantester, chattester, chatchantester, pitchwheeltester, pitchwheelchantester) :> _)) : attach;
///////////////////////////
//Ctrl tester (ctrl ): tester(midi in, midi out)
controltester = vgroup("CTRL IN/OUT", valuetest(50,51), booltest(100,101))
with{
valuetest(i,o) = hslider("Ctrl Value IN (Ctrl %i) [midi:ctrl %i]", 60, 0, 127, 1) : hbargraph("Ctrl Value OUT (Ctrl %o) [midi:ctrl %o]", 0, 127);
booltest(i,o) = checkbox("Ctrl Bool IN (Ctrl %i) [midi:ctrl %i]") : hbargraph("Ctrl Bool OUT (Ctrl %o) [midi:ctrl %o]", 0, 1);
};
//Ctrl Chan tester (ctrl chan): tester(midi in, midi out)
controlchantester = vgroup("CTRL CHAN IN/OUT", valuetest(50,2,74,3))
with{
valuetest(i,ic,o,oc) = hslider("Ctrl Value IN (Ctrl %i Channel %ic) [midi:ctrl %i %ic]", 60, 0, 127, 1) : hbargraph("Ctrl Value OUT (Ctrl %o) Channel OUT(Chan %oc) [midi:ctrl %o %oc]", 0, 127);
};
//Note tester (keyon) : tester(midi in, midi out)
noteontester = vgroup("NOTE ON IN/OUT", valuetest(50,51), booltest(100,101))
with{
valuetest(i,o) = hslider("NoteOn Value IN (Note %i) [midi:keyon %i]", 60, 0, 127, 1) : hbargraph("NoteOn Value OUT (Note %o) [midi:keyon %o]", 0, 127);
booltest(i,o) = checkbox("NoteOn Bool IN (Note %i) [midi:keyon %i]") : hbargraph("NoteOn Bool OUT (Note %o) [midi:keyon %o]", 0, 1);
};
//Note Chan tester (keyon) : tester(midi in, midi out)
noteonchantester = vgroup("NOTE ON CHAN IN/OUT", valuetest(50, 2, 51, 3), booltest(50, 2, 101, 3))
with{
valuetest(i, ic, o, oc) = hslider("NoteOn Value IN (Note %i Channel %ic) [midi:keyon %i %ic]", 60, 0, 127, 1) : hbargraph("NoteOn Value OUT (Note %o Chan %oc) [midi:keyon %o %oc]", 0, 127);
booltest(i, ic, o, oc) = checkbox("NoteOn Chan Bool IN (Note %i Channel %ic) [midi:keyon %i %ic]") : hbargraph("NoteOn Chan Bool OUT (Note %o Channel %oc) [midi:keyon %o %oc]", 0, 1);
};
//Note tester (keyoff) : tester(midi in, midi out)
noteofftester = vgroup("NOTE OFF IN/OUT", valuetest(50,51), booltest(100,101))
with{
valuetest(i,o) = hslider("NoteOff Value IN (Note %i) [midi:keyoff %i]", 60, 0, 127, 1) : hbargraph("NoteOff Value OUT (Note %o) [midi:keyoff %o]", 0, 127);
booltest(i,o) = checkbox("NoteOff Bool IN (Note %i) [midi:keyoff %i]") : hbargraph("NoteOff Bool OUT (Note %o) [midi:keyoff %o]", 0, 1);
};
//Note Chan tester (keyoff) : tester(midi in, midi out)
noteoffchantester = vgroup("NOTE OFF CHAN IN/OUT", valuetest(50, 2, 51, 3), booltest(50, 2, 101, 3))
with{
valuetest(i, ic, o, oc) = hslider("NoteOff Value IN (Note %i Channel %ic) [midi:keyoff %i %ic]", 60, 0, 127, 1) : hbargraph("NoteOff Value OUT (Note %o Channel %oc) [midi:keyoff %o %oc]", 0, 127);
booltest(i, ic, o, oc) = checkbox("NoteOff Bool IN (Note %i Channel %ic) [midi:keyoff %i %ic]") : hbargraph("NoteOff Bool OUT (Note %o Channel %oc) [midi:keyoff %o %oc]", 0, 1);
};
//KeyPress Chan tester (keypress) : tester(midi in, midi out)
keypresschantester = vgroup("KEY PRESS CHAN IN/OUT", valuetest(50, 2, 51, 3), booltest(50, 2, 101, 3))
with{
valuetest(i, ic, o, oc) = hslider("Pressure Value IN (Note %i Channel %ic) [midi:keypress %i %ic]", 60, 0, 127, 1) : hbargraph("Note Value OUT (Note %o Channel %oc) [midi:keypress %o %oc]", 0, 127);
booltest(i, ic, o, oc) = checkbox("Pressure Bool IN (Note %i Channel %ic) [midi:keypress %i %ic]") : hbargraph("Pressure Bool OUT (Note %o Channel %oc) [midi:keypress %o %oc]", 0, 1);
};
//Midisync tester
midiclocktester = vgroup("MIDI SYNC (IN)", clock, startstop)
with{
clock = checkbox("MIDI clock signal [midi:clock]");
startstop = checkbox("MIDI START/STOP [midi:start] [midi:stop]");
};
//Key Aftertouch tester (keypress) : tester(midi in, midi out)
kattester = vgroup("KEY AFTERTOUCH (KAT) IN/OUT",valuetest(50,51), booltest(100,101))
with{
valuetest(i,o) = hslider("Note KAT Value IN (Note %i) [midi:keypress %i]", 60, 0, 127, 1) : hbargraph("Note KAT Value OUT (Note %o) [midi:keypress %o]", 0, 127);
booltest(i,o) = checkbox("Note KAT Bool IN (Note %i) [midi:keypress %i]") : hbargraph("Note KAT Bool OUT (Note %o) [midi:keypress %o]", 0, 1);
};
//Key Aftertouch tester (keypress) : tester(midi in, midi out)
katchantester = vgroup("KEY AFTERTOUCH CHAN (KAT) IN/OUT",valuetest(50,2,51,3), booltest(100,2,101,3))
with{
valuetest(i,ic,o,oc) = hslider("Note KAT Value IN (Note %i) (Chan %ic) [midi:keypress %i %ic]", 60, 0, 127, 1) : hbargraph("Note KAT Value OUT (Note %o) (Chan %oc) [midi:keypress %o %oc]", 0, 127);
booltest(i,ic,o,oc) = checkbox("Note KAT Bool IN (Note %i) (Chan %ic) [midi:keypress %i %ic]") : hbargraph("Note KAT Bool OUT (Note %o) (Chan %oc)[midi:keypress %o %oc]", 0, 1);
};
//ProgramChange tester (pgm) : tester(midi in, midi out)
pctester = vgroup("PROGRAM CHANGE (PC) IN/OUT",valuetest(1,2), booltest(1,2))
with{
valuetest(i,o) = hslider("ProgramChange Value IN (PC %i) [midi:pgm %i]", 60, 0, 127, 1) : hbargraph("ProgramChange Value OUT (PC %o) [midi:pgm %o]", 0, 127);
booltest(i,o) = checkbox("ProgramChange Bool IN (PC %i) [midi:pgm %i]") : hbargraph("ProgramChange Bool OUT (PC %o) [midi:pgm %o]", 0, 1);
};
//ProgramChange Chan tester (pgm) : tester(midi in, midi out)
pcchantester = vgroup("PROGRAM CHANGE CHAN (PC) IN/OUT",valuetest(1, 2, 2, 3), booltest(1, 2, 2, 3))
with{
valuetest(i,ic,o,oc) = hslider("ProgramChange Value IN (PC %i) (CHAN %ic) [midi:pgm %i %ic]", 60, 0, 127, 1) : hbargraph("ProgramChange Value OUT (PC %o) (CHAN %oc) [midi:pgm %o %oc]", 0, 127);
booltest(i,ic,o,oc) = checkbox("ProgramChange Bool IN (PC %i) (CHAN %ic) [midi:pgm %i %ic]") : hbargraph("ProgramChange Bool OUT (PC %o) (CHAN %oc) [midi:pgm %o %oc]", 0, 1);
};
//Channel Aftertourch tester (chanpress) : tester(midi in, midi out)
chattester = vgroup("CHANNEL AFTERTOUCH (CHAT) IN/OUT",valuetest(50,51), booltest(100,101))
with{
valuetest(i,o) = hslider("Note CHAT Value IN (Note %i) [midi:chanpress %i]", 60, 0, 127, 1) : hbargraph("Note CHAT Value OUT (Note %o) [midi:chanpress %o]", 0, 127);
booltest(i,o) = checkbox("Note CHAT Bool IN (Note %i) [midi:chanpress %i]") : hbargraph("Note CHAT Bool OUT (Note %o) [midi:chanpress %o]", 0, 1);
};
//Channel Aftertourch tester (chanpress) : tester(midi in, midi out)
chatchantester = vgroup("CHANNEL AFTERTOUCH CHAN (CHAT) IN/OUT",valuetest(50,2,51,3), booltest(100,2,101,3))
with{
valuetest(i,ic,o,oc) = hslider("Note CHAT Chan Value IN (Note %i) (Chan %ic) [midi:chanpress %i %ic]", 60, 0, 127, 1) : hbargraph("Note CHAT Value OUT (Note %o) (Chan %oc) [midi:chanpress %o %oc]", 0, 127);
booltest(i,ic,o,oc) = checkbox("Note CHAT Bool IN (Note %i) (Chan %ic) [midi:chanpress %i %ic]") : hbargraph("Note CHAT Bool OUT (Note %o) (Chan %oc) [midi:chanpress %o %oc]", 0, 1);
};
//Pitchwheel tester (pitchwheel) : tester(midi in, midi out)
pitchwheeltester = vgroup("PITCHWHEEL IN/OUT",valuetest, booltest)
with{
valuetest = hslider("Pitchwheel Value IN [midi:pitchwheel]", 0, -8192, 8191, 1) : hbargraph("Pitchwheel Value OUT[midi:pitchwheel]", -8192, 8191);
booltest = checkbox("Pitchwheel Bool IN [midi:pitchwheel]") : hbargraph("Pitchwheel Bool OUT [midi:pitchwheel]", 0, 1);
};
//Pitchwheel Chan tester (pitchwheel) : tester(midi in, midi out)
pitchwheelchantester = vgroup("PITCHWHEEL CHAN IN/OUT",valuetest(2, 15), booltest(2, 15))
with{
valuetest(ic, oc) = hslider("Pitchwheel Value IN (Chan %ic) [midi:pitchwheel %ic]", 0, -8192, 8191, 1) : hbargraph("Pitchwheel Value OUT (Chan %oc)[midi:pitchwheel %oc]", -8192, 8191);
booltest(ic, oc) = checkbox("Pitchwheel Bool IN (Chan %ic) [midi:pitchwheel %ic]") : hbargraph("Pitchwheel Bool OUT (Chan %oc) [midi:pitchwheel %oc]", 0, 1);
};
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/docs/examples/misc/midiTester.dsp | faust | FAUST MIDI TESTER
/////////////////////////
Ctrl tester (ctrl ): tester(midi in, midi out)
Ctrl Chan tester (ctrl chan): tester(midi in, midi out)
Note tester (keyon) : tester(midi in, midi out)
Note Chan tester (keyon) : tester(midi in, midi out)
Note tester (keyoff) : tester(midi in, midi out)
Note Chan tester (keyoff) : tester(midi in, midi out)
KeyPress Chan tester (keypress) : tester(midi in, midi out)
Midisync tester
Key Aftertouch tester (keypress) : tester(midi in, midi out)
Key Aftertouch tester (keypress) : tester(midi in, midi out)
ProgramChange tester (pgm) : tester(midi in, midi out)
ProgramChange Chan tester (pgm) : tester(midi in, midi out)
Channel Aftertourch tester (chanpress) : tester(midi in, midi out)
Channel Aftertourch tester (chanpress) : tester(midi in, midi out)
Pitchwheel tester (pitchwheel) : tester(midi in, midi out)
Pitchwheel Chan tester (pitchwheel) : tester(midi in, midi out) | declare name "midiTester";
declare version "1.0";
declare author "Vincent Rateau, GRAME";
declare license "GPL v3";
declare reference "www.sonejo.net";
process = _*0, (vgroup("FAUST MIDI TESTER", hgroup("[1]", controltester, controlchantester, noteontester, noteonchantester, noteofftester, noteoffchantester, keypresschantester, midiclocktester), hgroup("[2]", kattester, katchantester, pctester, pcchantester, chattester, chatchantester, pitchwheeltester, pitchwheelchantester) :> _)) : attach;
controltester = vgroup("CTRL IN/OUT", valuetest(50,51), booltest(100,101))
with{
valuetest(i,o) = hslider("Ctrl Value IN (Ctrl %i) [midi:ctrl %i]", 60, 0, 127, 1) : hbargraph("Ctrl Value OUT (Ctrl %o) [midi:ctrl %o]", 0, 127);
booltest(i,o) = checkbox("Ctrl Bool IN (Ctrl %i) [midi:ctrl %i]") : hbargraph("Ctrl Bool OUT (Ctrl %o) [midi:ctrl %o]", 0, 1);
};
controlchantester = vgroup("CTRL CHAN IN/OUT", valuetest(50,2,74,3))
with{
valuetest(i,ic,o,oc) = hslider("Ctrl Value IN (Ctrl %i Channel %ic) [midi:ctrl %i %ic]", 60, 0, 127, 1) : hbargraph("Ctrl Value OUT (Ctrl %o) Channel OUT(Chan %oc) [midi:ctrl %o %oc]", 0, 127);
};
noteontester = vgroup("NOTE ON IN/OUT", valuetest(50,51), booltest(100,101))
with{
valuetest(i,o) = hslider("NoteOn Value IN (Note %i) [midi:keyon %i]", 60, 0, 127, 1) : hbargraph("NoteOn Value OUT (Note %o) [midi:keyon %o]", 0, 127);
booltest(i,o) = checkbox("NoteOn Bool IN (Note %i) [midi:keyon %i]") : hbargraph("NoteOn Bool OUT (Note %o) [midi:keyon %o]", 0, 1);
};
noteonchantester = vgroup("NOTE ON CHAN IN/OUT", valuetest(50, 2, 51, 3), booltest(50, 2, 101, 3))
with{
valuetest(i, ic, o, oc) = hslider("NoteOn Value IN (Note %i Channel %ic) [midi:keyon %i %ic]", 60, 0, 127, 1) : hbargraph("NoteOn Value OUT (Note %o Chan %oc) [midi:keyon %o %oc]", 0, 127);
booltest(i, ic, o, oc) = checkbox("NoteOn Chan Bool IN (Note %i Channel %ic) [midi:keyon %i %ic]") : hbargraph("NoteOn Chan Bool OUT (Note %o Channel %oc) [midi:keyon %o %oc]", 0, 1);
};
noteofftester = vgroup("NOTE OFF IN/OUT", valuetest(50,51), booltest(100,101))
with{
valuetest(i,o) = hslider("NoteOff Value IN (Note %i) [midi:keyoff %i]", 60, 0, 127, 1) : hbargraph("NoteOff Value OUT (Note %o) [midi:keyoff %o]", 0, 127);
booltest(i,o) = checkbox("NoteOff Bool IN (Note %i) [midi:keyoff %i]") : hbargraph("NoteOff Bool OUT (Note %o) [midi:keyoff %o]", 0, 1);
};
noteoffchantester = vgroup("NOTE OFF CHAN IN/OUT", valuetest(50, 2, 51, 3), booltest(50, 2, 101, 3))
with{
valuetest(i, ic, o, oc) = hslider("NoteOff Value IN (Note %i Channel %ic) [midi:keyoff %i %ic]", 60, 0, 127, 1) : hbargraph("NoteOff Value OUT (Note %o Channel %oc) [midi:keyoff %o %oc]", 0, 127);
booltest(i, ic, o, oc) = checkbox("NoteOff Bool IN (Note %i Channel %ic) [midi:keyoff %i %ic]") : hbargraph("NoteOff Bool OUT (Note %o Channel %oc) [midi:keyoff %o %oc]", 0, 1);
};
keypresschantester = vgroup("KEY PRESS CHAN IN/OUT", valuetest(50, 2, 51, 3), booltest(50, 2, 101, 3))
with{
valuetest(i, ic, o, oc) = hslider("Pressure Value IN (Note %i Channel %ic) [midi:keypress %i %ic]", 60, 0, 127, 1) : hbargraph("Note Value OUT (Note %o Channel %oc) [midi:keypress %o %oc]", 0, 127);
booltest(i, ic, o, oc) = checkbox("Pressure Bool IN (Note %i Channel %ic) [midi:keypress %i %ic]") : hbargraph("Pressure Bool OUT (Note %o Channel %oc) [midi:keypress %o %oc]", 0, 1);
};
midiclocktester = vgroup("MIDI SYNC (IN)", clock, startstop)
with{
clock = checkbox("MIDI clock signal [midi:clock]");
startstop = checkbox("MIDI START/STOP [midi:start] [midi:stop]");
};
kattester = vgroup("KEY AFTERTOUCH (KAT) IN/OUT",valuetest(50,51), booltest(100,101))
with{
valuetest(i,o) = hslider("Note KAT Value IN (Note %i) [midi:keypress %i]", 60, 0, 127, 1) : hbargraph("Note KAT Value OUT (Note %o) [midi:keypress %o]", 0, 127);
booltest(i,o) = checkbox("Note KAT Bool IN (Note %i) [midi:keypress %i]") : hbargraph("Note KAT Bool OUT (Note %o) [midi:keypress %o]", 0, 1);
};
katchantester = vgroup("KEY AFTERTOUCH CHAN (KAT) IN/OUT",valuetest(50,2,51,3), booltest(100,2,101,3))
with{
valuetest(i,ic,o,oc) = hslider("Note KAT Value IN (Note %i) (Chan %ic) [midi:keypress %i %ic]", 60, 0, 127, 1) : hbargraph("Note KAT Value OUT (Note %o) (Chan %oc) [midi:keypress %o %oc]", 0, 127);
booltest(i,ic,o,oc) = checkbox("Note KAT Bool IN (Note %i) (Chan %ic) [midi:keypress %i %ic]") : hbargraph("Note KAT Bool OUT (Note %o) (Chan %oc)[midi:keypress %o %oc]", 0, 1);
};
pctester = vgroup("PROGRAM CHANGE (PC) IN/OUT",valuetest(1,2), booltest(1,2))
with{
valuetest(i,o) = hslider("ProgramChange Value IN (PC %i) [midi:pgm %i]", 60, 0, 127, 1) : hbargraph("ProgramChange Value OUT (PC %o) [midi:pgm %o]", 0, 127);
booltest(i,o) = checkbox("ProgramChange Bool IN (PC %i) [midi:pgm %i]") : hbargraph("ProgramChange Bool OUT (PC %o) [midi:pgm %o]", 0, 1);
};
pcchantester = vgroup("PROGRAM CHANGE CHAN (PC) IN/OUT",valuetest(1, 2, 2, 3), booltest(1, 2, 2, 3))
with{
valuetest(i,ic,o,oc) = hslider("ProgramChange Value IN (PC %i) (CHAN %ic) [midi:pgm %i %ic]", 60, 0, 127, 1) : hbargraph("ProgramChange Value OUT (PC %o) (CHAN %oc) [midi:pgm %o %oc]", 0, 127);
booltest(i,ic,o,oc) = checkbox("ProgramChange Bool IN (PC %i) (CHAN %ic) [midi:pgm %i %ic]") : hbargraph("ProgramChange Bool OUT (PC %o) (CHAN %oc) [midi:pgm %o %oc]", 0, 1);
};
chattester = vgroup("CHANNEL AFTERTOUCH (CHAT) IN/OUT",valuetest(50,51), booltest(100,101))
with{
valuetest(i,o) = hslider("Note CHAT Value IN (Note %i) [midi:chanpress %i]", 60, 0, 127, 1) : hbargraph("Note CHAT Value OUT (Note %o) [midi:chanpress %o]", 0, 127);
booltest(i,o) = checkbox("Note CHAT Bool IN (Note %i) [midi:chanpress %i]") : hbargraph("Note CHAT Bool OUT (Note %o) [midi:chanpress %o]", 0, 1);
};
chatchantester = vgroup("CHANNEL AFTERTOUCH CHAN (CHAT) IN/OUT",valuetest(50,2,51,3), booltest(100,2,101,3))
with{
valuetest(i,ic,o,oc) = hslider("Note CHAT Chan Value IN (Note %i) (Chan %ic) [midi:chanpress %i %ic]", 60, 0, 127, 1) : hbargraph("Note CHAT Value OUT (Note %o) (Chan %oc) [midi:chanpress %o %oc]", 0, 127);
booltest(i,ic,o,oc) = checkbox("Note CHAT Bool IN (Note %i) (Chan %ic) [midi:chanpress %i %ic]") : hbargraph("Note CHAT Bool OUT (Note %o) (Chan %oc) [midi:chanpress %o %oc]", 0, 1);
};
pitchwheeltester = vgroup("PITCHWHEEL IN/OUT",valuetest, booltest)
with{
valuetest = hslider("Pitchwheel Value IN [midi:pitchwheel]", 0, -8192, 8191, 1) : hbargraph("Pitchwheel Value OUT[midi:pitchwheel]", -8192, 8191);
booltest = checkbox("Pitchwheel Bool IN [midi:pitchwheel]") : hbargraph("Pitchwheel Bool OUT [midi:pitchwheel]", 0, 1);
};
pitchwheelchantester = vgroup("PITCHWHEEL CHAN IN/OUT",valuetest(2, 15), booltest(2, 15))
with{
valuetest(ic, oc) = hslider("Pitchwheel Value IN (Chan %ic) [midi:pitchwheel %ic]", 0, -8192, 8191, 1) : hbargraph("Pitchwheel Value OUT (Chan %oc)[midi:pitchwheel %oc]", -8192, 8191);
booltest(ic, oc) = checkbox("Pitchwheel Bool IN (Chan %ic) [midi:pitchwheel %ic]") : hbargraph("Pitchwheel Bool OUT (Chan %oc) [midi:pitchwheel %oc]", 0, 1);
};
|
6d16bd9d7ebcaca89ed243fbd6bcda724835ba5c4dee63c598eb231704630b0c | grame-cncm/faustide | FMSynth2_FX.dsp | import("all.lib");
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// Simple FM synthesizer.
// 2 oscillators and FM feedback on modulant oscillator
//
///////////////////////////////////////////////////////////////////////////////////////////////////
// MIDI IMPLEMENTATION:
//
// CC 1 : FM feedback on modulant oscillator.
// CC 14 : Modulator frequency ratio.
//
// CC 73 : Attack
// CC 76 : Decay
// CC 77 : Sustain
// CC 72 : Release
//
///////////////////////////////////////////////////////////////////////////////////////////////////
// GENERAL, Keyboard
midigate = button("gate");
midifreq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
midigain = nentry("gain", 1, 0, 1, 0.01);
// modwheel:
feedb = (gFreq-1) * (hslider("feedb[midi:ctrl 1]", 0, 0, 1, 0.001) : si.smoo);
modFreqRatio = hslider("ratio[midi:ctrl 14]",2,0,20,0.01) : si.smoo;
// pitchwheel
bend = ba.semi2ratio(hslider("bend [midi:pitchwheel]",0,-2,2,0.01));
gFreq = midifreq * bend;
//=================================== Parameters Mapping =================================
//========================================================================================
// Same for volum & modulation:
volA = hslider("A[midi:ctrl 73]",0.01,0.01,4,0.01);
volD = hslider("D[midi:ctrl 76]",0.6,0.01,8,0.01);
volS = hslider("S[midi:ctrl 77]",0.2,0,1,0.01);
volR = hslider("R[midi:ctrl 72]",0.8,0.01,8,0.01);
envelop = en.adsre(volA,volD,volS,volR,midigate);
// modulator frequency
modFreq = gFreq*modFreqRatio;
// modulation index
FMdepth = envelop * 1000 * midigain;
// Out amplitude
vol = envelop;
//============================================ DSP =======================================
//========================================================================================
FMfeedback(frq) = ( +(_,frq):os.osci ) ~ (* (feedb));
FMall(f) = os.osci(f+ (FMdepth*FMfeedback(f*modFreqRatio)));
//#################################################################################################//
//##################################### EFFECT SECTION ############################################//
//#################################################################################################//
// Simple FX chain build for a mono synthesizer.
// It control general volume and pan.
// FX Chaine is:
// Drive
// Flanger
// Reverberation
//
///////////////////////////////////////////////////////////////////////////////////////////////////
// MIDI IMPLEMENTATION:
// (All are available by OSC)
//
// CC 7 : Volume
// CC 10 : Pan
//
// CC 92 : Distortion Drive
//
// CC 13 : Flanger Delay
// CC 93 : Flanger Dry/Wet
// CC 94 : Flanger Feedback
//
// CC 12 : Reverberation Room size
// CC 91 : Reverberation Dry/Wet
// CC 95 : Reverberation Damp
// CC 90 : Reverberation Stereo Width
//
///////////////////////////////////////////////////////////////////////////////////////////////////
// VOLUME:
volFX = hslider("volume[midi:ctrl 7]",1,0,1,0.001);// Should be 7 according to MIDI CC norm.
// EFFECTS /////////////////////////////////////////////
drive = hslider("drive[midi:ctrl 92]",0.3,0,1,0.001);
// Flanger
curdel = hslider("flangDel[midi:ctrl 13]",4,0.001,10,0.001);
fb = hslider("flangFeedback[midi:ctrl 94]",0.7,0,1,0.001);
fldw = hslider("dryWetFlang[midi:ctrl 93]",0.5,0,1,0.001);
flanger = efx
with {
fldel = (curdel + (os.lf_triangle(1) * 2) ) : min(10);
efx = _ <: _, pf.flanger_mono(10,fldel,1,fb,0) : dry_wet(fldw);
};
// Pannoramique:
panno = _ : sp.panner(hslider("pan[midi:ctrl 10]",0.5,0,1,0.001)) : _,_;
// REVERB (from freeverb_demo)
reverb = _,_ <: (*(g)*fixedgain,*(g)*fixedgain :
re.stereo_freeverb(combfeed, allpassfeed, damping, spatSpread)),
*(1-g), *(1-g) :> _,_
with {
scaleroom = 0.28;
offsetroom = 0.7;
allpassfeed = 0.5;
scaledamp = 0.4;
fixedgain = 0.1;
origSR = 44100;
damping = vslider("Damp[midi:ctrl 95]",0.5, 0, 1, 0.025)*scaledamp*origSR/ma.SR;
combfeed = vslider("RoomSize[midi:ctrl 12]", 0.7, 0, 1, 0.025)*scaleroom*origSR/ma.SR + offsetroom;
spatSpread = vslider("Stereo[midi:ctrl 90]",0.6,0,1,0.01)*46*ma.SR/origSR;
g = vslider("dryWetReverb[midi:ctrl 91]", 0.4, 0, 1, 0.001);
// (g = Dry/Wet)
};
// Dry-Wet (from C. LEBRETON)
dry_wet(dw,x,y) = wet*y + dry*x
with {
wet = 0.5*(dw+1.0);
dry = 1.0-wet;
};
// ALL
effect = _ *(volFX) : ef.cubicnl_nodc(drive, 0.1) : flanger : panno : reverb;
process = FMall(gFreq) * vol;
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/docs/examples/bela/FMSynth2_FX.dsp | faust | /////////////////////////////////////////////////////////////////////////////////////////////////
Simple FM synthesizer.
2 oscillators and FM feedback on modulant oscillator
/////////////////////////////////////////////////////////////////////////////////////////////////
MIDI IMPLEMENTATION:
CC 1 : FM feedback on modulant oscillator.
CC 14 : Modulator frequency ratio.
CC 73 : Attack
CC 76 : Decay
CC 77 : Sustain
CC 72 : Release
/////////////////////////////////////////////////////////////////////////////////////////////////
GENERAL, Keyboard
modwheel:
pitchwheel
=================================== Parameters Mapping =================================
========================================================================================
Same for volum & modulation:
modulator frequency
modulation index
Out amplitude
============================================ DSP =======================================
========================================================================================
#################################################################################################//
##################################### EFFECT SECTION ############################################//
#################################################################################################//
Simple FX chain build for a mono synthesizer.
It control general volume and pan.
FX Chaine is:
Drive
Flanger
Reverberation
/////////////////////////////////////////////////////////////////////////////////////////////////
MIDI IMPLEMENTATION:
(All are available by OSC)
CC 7 : Volume
CC 10 : Pan
CC 92 : Distortion Drive
CC 13 : Flanger Delay
CC 93 : Flanger Dry/Wet
CC 94 : Flanger Feedback
CC 12 : Reverberation Room size
CC 91 : Reverberation Dry/Wet
CC 95 : Reverberation Damp
CC 90 : Reverberation Stereo Width
/////////////////////////////////////////////////////////////////////////////////////////////////
VOLUME:
Should be 7 according to MIDI CC norm.
EFFECTS /////////////////////////////////////////////
Flanger
Pannoramique:
REVERB (from freeverb_demo)
(g = Dry/Wet)
Dry-Wet (from C. LEBRETON)
ALL | import("all.lib");
midigate = button("gate");
midifreq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
midigain = nentry("gain", 1, 0, 1, 0.01);
feedb = (gFreq-1) * (hslider("feedb[midi:ctrl 1]", 0, 0, 1, 0.001) : si.smoo);
modFreqRatio = hslider("ratio[midi:ctrl 14]",2,0,20,0.01) : si.smoo;
bend = ba.semi2ratio(hslider("bend [midi:pitchwheel]",0,-2,2,0.01));
gFreq = midifreq * bend;
volA = hslider("A[midi:ctrl 73]",0.01,0.01,4,0.01);
volD = hslider("D[midi:ctrl 76]",0.6,0.01,8,0.01);
volS = hslider("S[midi:ctrl 77]",0.2,0,1,0.01);
volR = hslider("R[midi:ctrl 72]",0.8,0.01,8,0.01);
envelop = en.adsre(volA,volD,volS,volR,midigate);
modFreq = gFreq*modFreqRatio;
FMdepth = envelop * 1000 * midigain;
vol = envelop;
FMfeedback(frq) = ( +(_,frq):os.osci ) ~ (* (feedb));
FMall(f) = os.osci(f+ (FMdepth*FMfeedback(f*modFreqRatio)));
drive = hslider("drive[midi:ctrl 92]",0.3,0,1,0.001);
curdel = hslider("flangDel[midi:ctrl 13]",4,0.001,10,0.001);
fb = hslider("flangFeedback[midi:ctrl 94]",0.7,0,1,0.001);
fldw = hslider("dryWetFlang[midi:ctrl 93]",0.5,0,1,0.001);
flanger = efx
with {
fldel = (curdel + (os.lf_triangle(1) * 2) ) : min(10);
efx = _ <: _, pf.flanger_mono(10,fldel,1,fb,0) : dry_wet(fldw);
};
panno = _ : sp.panner(hslider("pan[midi:ctrl 10]",0.5,0,1,0.001)) : _,_;
reverb = _,_ <: (*(g)*fixedgain,*(g)*fixedgain :
re.stereo_freeverb(combfeed, allpassfeed, damping, spatSpread)),
*(1-g), *(1-g) :> _,_
with {
scaleroom = 0.28;
offsetroom = 0.7;
allpassfeed = 0.5;
scaledamp = 0.4;
fixedgain = 0.1;
origSR = 44100;
damping = vslider("Damp[midi:ctrl 95]",0.5, 0, 1, 0.025)*scaledamp*origSR/ma.SR;
combfeed = vslider("RoomSize[midi:ctrl 12]", 0.7, 0, 1, 0.025)*scaleroom*origSR/ma.SR + offsetroom;
spatSpread = vslider("Stereo[midi:ctrl 90]",0.6,0,1,0.01)*46*ma.SR/origSR;
g = vslider("dryWetReverb[midi:ctrl 91]", 0.4, 0, 1, 0.001);
};
dry_wet(dw,x,y) = wet*y + dry*x
with {
wet = 0.5*(dw+1.0);
dry = 1.0-wet;
};
effect = _ *(volFX) : ef.cubicnl_nodc(drive, 0.1) : flanger : panno : reverb;
process = FMall(gFreq) * vol;
|
629943022cc07cf5e19007f63118fe8719fcd55c2b9ec6d5971b0d269203adfe | grame-cncm/faustide | LPF.dsp | // WARNING: This a "legacy example based on a deprecated library". Check filters.lib
// for more accurate examples of filter functions
declare name "LPF";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = LPF(x,F,G,Q);
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/docs/examples/filtering/LPF.dsp | faust | WARNING: This a "legacy example based on a deprecated library". Check filters.lib
for more accurate examples of filter functions |
declare name "LPF";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = LPF(x,F,G,Q);
|
e6a00a846917956d60b6cc6dfd12dcc076782ff594df209193ae85d6977e86bf | grame-cncm/faustide | notch.dsp | // WARNING: This a "legacy example based on a deprecated library". Check filters.lib
// for more accurate examples of filter functions
declare name "notch";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = notch(x,F,G,Q);
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/docs/examples/filtering/notch.dsp | faust | WARNING: This a "legacy example based on a deprecated library". Check filters.lib
for more accurate examples of filter functions |
declare name "notch";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = notch(x,F,G,Q);
|
0bb7f2501588b3b4b666a76be6fcaef77c8d95f496c29412e2a9f513e627b6d2 | grame-cncm/faustide | HPF.dsp | // WARNING: This a "legacy example based on a deprecated library". Check filters.lib
// for more accurate examples of filter functions
declare name "HPF";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = HPF(x,F,G,Q);
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/src/static/examples/filtering/HPF.dsp | faust | WARNING: This a "legacy example based on a deprecated library". Check filters.lib
for more accurate examples of filter functions |
declare name "HPF";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = HPF(x,F,G,Q);
|
10baf5910216f50fb75d43c697a2437def181d2383e5578dca962d261503acf7 | grame-cncm/faustide | peakingEQ.dsp | // WARNING: This a "legacy example based on a deprecated library". Check filters.lib
// for more accurate examples of filter functions
declare name "peakingEQ";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = peakingEQ(x,F,G,Q);
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/src/static/examples/filtering/peakingEQ.dsp | faust | WARNING: This a "legacy example based on a deprecated library". Check filters.lib
for more accurate examples of filter functions |
declare name "peakingEQ";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = peakingEQ(x,F,G,Q);
|
64eb40075434f4e902f65670da414d19563fededd820bad6b4ba293be18461ea | grame-cncm/faustide | layout.dsp | mixer(x) = hgroup("",x);
v01(x) = mixer(hgroup("", x));
v02(x) = mixer(hgroup("", x));
v03(x) = mixer(hgroup("", x));
v04(x) = mixer(hgroup("", x));
v05(x) = mixer(hgroup("", x));
v06(x) = mixer(hgroup("", x));
v07(x) = mixer(hgroup("", x));
v08(x) = mixer(hgroup("", x));
v09(x) = mixer(hgroup("", x));
v10(x) = mixer(hgroup("", x));
v11(x) = mixer(hgroup("", x));
v12(x) = mixer(hgroup("", x));
v13(x) = mixer(hgroup("", x));
v14(x) = mixer(hgroup("", x));
v15(x) = mixer(hgroup("", x));
v16(x) = mixer(hgroup("", x)); | https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/docs/examples/SAM/16_channel_volume/layout.dsp | faust | mixer(x) = hgroup("",x);
v01(x) = mixer(hgroup("", x));
v02(x) = mixer(hgroup("", x));
v03(x) = mixer(hgroup("", x));
v04(x) = mixer(hgroup("", x));
v05(x) = mixer(hgroup("", x));
v06(x) = mixer(hgroup("", x));
v07(x) = mixer(hgroup("", x));
v08(x) = mixer(hgroup("", x));
v09(x) = mixer(hgroup("", x));
v10(x) = mixer(hgroup("", x));
v11(x) = mixer(hgroup("", x));
v12(x) = mixer(hgroup("", x));
v13(x) = mixer(hgroup("", x));
v14(x) = mixer(hgroup("", x));
v15(x) = mixer(hgroup("", x));
v16(x) = mixer(hgroup("", x)); |
|
2dc72296d6e8bce4549e5297c0a9e849d66f6c9518d9e718b0ecc1334e4f05f5 | grame-cncm/faustide | FMSynth2_Analog.dsp | import("all.lib");
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// Simple FM synthesizer.
///////////////////////////////////////////////////////////////////////////////////////////////////
// ANALOG IMPLEMENTATION:
//
// ANALOG_0 : Modulator frequency ratio
// ANALOG_1 : Attack
// ANALOG_2 : Decay/Release
// ANALOG_3 : Sustain
//
// MIDI:
// CC 1 : FM feedback on modulant oscillator.
//
///////////////////////////////////////////////////////////////////////////////////////////////////
// GENERAL, Keyboard
midigate = button("gate");
midifreq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
midigain = nentry("gain", 1, 0, 1, 0.01);
// modwheel:
feedb = (gFreq-1) * (hslider("feedb[midi:ctrl 1]", 0, 0, 1, 0.001) : si.smoo);
modFreqRatio = hslider("ratio[BELA: ANALOG_0]",2,0,20,0.01) : si.smoo;
// pitchwheel
bend = ba.semi2ratio(hslider("bend [midi:pitchwheel]",0,-2,2,0.01));
gFreq = midifreq * bend;
//=================================== Parameters Mapping =================================
//========================================================================================
// Same for volume & modulation:
volA = hslider("A[BELA: ANALOG_1]",0.01,0.01,4,0.01);
volDR = hslider("DR[BELA: ANALOG_2]",0.6,0.01,8,0.01);
volS = hslider("S[BELA: ANALOG_3]",0.2,0,1,0.01);
envelop = en.adsre(volA,volDR,volS,volDR,midigate);
// modulator frequency
modFreq = gFreq * modFreqRatio;
// modulation index
FMdepth = envelop * 1000 * midigain;
// Out amplitude
vol = envelop;
//============================================ DSP =======================================
//========================================================================================
FMfeedback(frq) = (+(_,frq):os.osci) ~ (* (feedb));
FMall(f) = os.osci(f+ (FMdepth*FMfeedback(f*modFreqRatio)));
process = FMall(gFreq) * vol;
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/docs/examples/bela/FMSynth2_Analog.dsp | faust | /////////////////////////////////////////////////////////////////////////////////////////////////
Simple FM synthesizer.
/////////////////////////////////////////////////////////////////////////////////////////////////
ANALOG IMPLEMENTATION:
ANALOG_0 : Modulator frequency ratio
ANALOG_1 : Attack
ANALOG_2 : Decay/Release
ANALOG_3 : Sustain
MIDI:
CC 1 : FM feedback on modulant oscillator.
/////////////////////////////////////////////////////////////////////////////////////////////////
GENERAL, Keyboard
modwheel:
pitchwheel
=================================== Parameters Mapping =================================
========================================================================================
Same for volume & modulation:
modulator frequency
modulation index
Out amplitude
============================================ DSP =======================================
======================================================================================== | import("all.lib");
midigate = button("gate");
midifreq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
midigain = nentry("gain", 1, 0, 1, 0.01);
feedb = (gFreq-1) * (hslider("feedb[midi:ctrl 1]", 0, 0, 1, 0.001) : si.smoo);
modFreqRatio = hslider("ratio[BELA: ANALOG_0]",2,0,20,0.01) : si.smoo;
bend = ba.semi2ratio(hslider("bend [midi:pitchwheel]",0,-2,2,0.01));
gFreq = midifreq * bend;
volA = hslider("A[BELA: ANALOG_1]",0.01,0.01,4,0.01);
volDR = hslider("DR[BELA: ANALOG_2]",0.6,0.01,8,0.01);
volS = hslider("S[BELA: ANALOG_3]",0.2,0,1,0.01);
envelop = en.adsre(volA,volDR,volS,volDR,midigate);
modFreq = gFreq * modFreqRatio;
FMdepth = envelop * 1000 * midigain;
vol = envelop;
FMfeedback(frq) = (+(_,frq):os.osci) ~ (* (feedb));
FMall(f) = os.osci(f+ (FMdepth*FMfeedback(f*modFreqRatio)));
process = FMall(gFreq) * vol;
|
80ccfa2bfbefbaa1001d1328ff99900113938604a15baf20e507b0d1908312d1 | grame-cncm/faustide | mixer.dsp | declare name "mixer";
declare version "1.0";
declare author "Grame";
declare license "BSD";
declare copyright "(c)GRAME 2006";
//-------------------------------------------------
// Simple 8x2 mixer
//-------------------------------------------------
vol = component("../dynamic/volume.dsp");
pan = component("../spat/panpot.dsp");
vumeter = component("../analysis/vumeter.dsp").vmeter;
mute = *(1 - checkbox("mute"));
voice(v) = vgroup("Ch %v", mute : hgroup("[2]", vol : vumeter) : pan);
stereo = hgroup("stereo out", (vol, vol : vgroup("L", vumeter), vgroup("R", vumeter)));
process = hgroup("mixer", par(i, 8, voice(i)) :> stereo );
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/src/static/examples/misc/mixer.dsp | faust | -------------------------------------------------
Simple 8x2 mixer
------------------------------------------------- | declare name "mixer";
declare version "1.0";
declare author "Grame";
declare license "BSD";
declare copyright "(c)GRAME 2006";
vol = component("../dynamic/volume.dsp");
pan = component("../spat/panpot.dsp");
vumeter = component("../analysis/vumeter.dsp").vmeter;
mute = *(1 - checkbox("mute"));
voice(v) = vgroup("Ch %v", mute : hgroup("[2]", vol : vumeter) : pan);
stereo = hgroup("stereo out", (vol, vol : vgroup("L", vumeter), vgroup("R", vumeter)));
process = hgroup("mixer", par(i, 8, voice(i)) :> stereo );
|
31b6284f7ac81b50dce24e8f65000ebde638dccb36412cee8ff07f43a36aa59f | grame-cncm/faustide | GrainGenerator.dsp | ///////////////////////////////////////////////////////////////////////////////////////////////////
//
// Grain Generator.
// Another granular synthesis example.
// This one is not finished, but ready for more features and improvements...
//
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// ANALOG IN:
// ANALOG 0 : Population: 0 = almost nothing. 1 = Full grain
// ANALOG 1 : Depth of each grain, in ms.
// ANALOG 2 : Position in the table = delay
// ANALOG 3 : Speed = pitch change of the grains
// ANALOG 4 : Feedback
//
///////////////////////////////////////////////////////////////////////////////////////////////////
import("all.lib");
// FOR 4 grains - MONO
// UI //////////////////////////////////////////
popul = 1 - hslider("population[BELA: ANALOG_0]", 1, 0, 1, 0.001); // Coef 1 = maximum; 0 = almost nothing (0.95)
taille = hslider("taille[BELA: ANALOG_1]", 100, 4, 200, 0.001 ); // Size in milliseconds
decal = 1 - hslider("decal[BELA: ANALOG_2]",0,0,1,0.001); // Read position compared to table write position
speed = hslider("speed[BELA: ANALOG_3]", 1, 0.125, 4, 0.001);
feedback = hslider("feedback[BELA: ANALOG_4]",0,0,2,0.001);
freq = 1000/taille;
tmpTaille = taille*ma.SR/ 1000;
clocSize = int(tmpTaille + (tmpTaille*popul*10)); // duration between 2 clicks
// CLK GENERAL /////////////////////////////////
// 4 clicks for 4 grains generators.
// (idem clk freq/4 and a counter...)
detect1(x) = select2 (x < 10, 0, 1);
detect2(x) = select2 (x > clocSize*1/3, 0, 1) : select2 (x < (clocSize*1/3)+10, 0, _);
detect3(x) = select2 (x > clocSize*2/3, 0, 1) : select2 (x < (clocSize*2/3)+10, 0, _);
detect4(x) = select2 (x > clocSize-10, 0, 1);
cloc = (%(_,clocSize))~(+(1)) <: (detect1: trig),(detect2: trig),(detect3: trig),(detect4: trig);
// SIGNAUX Ctrls Player ////////////////////////
trig = _<:_,mem: >;
envelop = *(2*PI):+(PI):cos:*(0.5):+(0.5);
rampe(f, t) = delta : (+ : select2(t,_,delta<0) : max(0)) ~ _ : raz
with {
raz(x) = select2 (x > 1, x, 0);
delta = sh(f,t)/ma.SR;
sh(x,t) = ba.sAndH(t,x);
};
rampe2(speed, t) = delta : (+ : select2(t,_,delta<0) : max(0)) ~ _
with {
delta = sh(speed,t);
sh(x,t) = ba.sAndH(t,x);
};
// RWTable //////////////////////////////////////
unGrain(input, clk) = (linrwtable(wf , rindex) : *(0.2 * EnvGrain))
with {
SR = 44100;
buffer_sec = 1;
size = int(SR * buffer_sec);
init = 0.;
EnvGrain = clk : (rampe(freq) : envelop);
windex = (%(_,size) ) ~ (+(1));
posTabl = int(ba.sAndH(clk, windex));
rindex = %(int(rampe2(speed, clk)) + posTabl + int(size * decal), size);
wf = size, init, int(windex), input;
};
// LINEAR_INTERPOLATION_RWTABLE //////////////////////////////////
// read rwtable with linear interpolation
// wf : waveform to read (wf is defined by (size_buffer,init, windex, input))
// x : position to read (0 <= x < size(wf)) and float
// nota: rwtable(size, init, windex, input, rindex)
linrwtable(wf,x) = linterpolation(y0,y1,d)
with {
x0 = int(x); //
x1 = int(x+1); //
d = x-x0;
y0 = rwtable(wf,x0); //
y1 = rwtable(wf,x1); //
linterpolation(v0,v1,c) = v0*(1-c)+v1*c;
};
// FINALISATION /////////////////////////////////////////////////////////////////////////////////////
routeur(a, b, c, d, e) = a, b, a, c, a, d, a, e;
processus = _, cloc : routeur : (unGrain, unGrain, unGrain, unGrain) :> fi.dcblockerat(20);
process = _,_: ((+(_,_) :processus) ~(*(feedback))),((+(_,_) :processus) ~(*(feedback)));
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/src/static/examples/bela/GrainGenerator.dsp | faust | /////////////////////////////////////////////////////////////////////////////////////////////////
Grain Generator.
Another granular synthesis example.
This one is not finished, but ready for more features and improvements...
/////////////////////////////////////////////////////////////////////////////////////////////////
ANALOG IN:
ANALOG 0 : Population: 0 = almost nothing. 1 = Full grain
ANALOG 1 : Depth of each grain, in ms.
ANALOG 2 : Position in the table = delay
ANALOG 3 : Speed = pitch change of the grains
ANALOG 4 : Feedback
/////////////////////////////////////////////////////////////////////////////////////////////////
FOR 4 grains - MONO
UI //////////////////////////////////////////
Coef 1 = maximum; 0 = almost nothing (0.95)
Size in milliseconds
Read position compared to table write position
duration between 2 clicks
CLK GENERAL /////////////////////////////////
4 clicks for 4 grains generators.
(idem clk freq/4 and a counter...)
SIGNAUX Ctrls Player ////////////////////////
RWTable //////////////////////////////////////
LINEAR_INTERPOLATION_RWTABLE //////////////////////////////////
read rwtable with linear interpolation
wf : waveform to read (wf is defined by (size_buffer,init, windex, input))
x : position to read (0 <= x < size(wf)) and float
nota: rwtable(size, init, windex, input, rindex)
FINALISATION ///////////////////////////////////////////////////////////////////////////////////// |
import("all.lib");
speed = hslider("speed[BELA: ANALOG_3]", 1, 0.125, 4, 0.001);
feedback = hslider("feedback[BELA: ANALOG_4]",0,0,2,0.001);
freq = 1000/taille;
tmpTaille = taille*ma.SR/ 1000;
detect1(x) = select2 (x < 10, 0, 1);
detect2(x) = select2 (x > clocSize*1/3, 0, 1) : select2 (x < (clocSize*1/3)+10, 0, _);
detect3(x) = select2 (x > clocSize*2/3, 0, 1) : select2 (x < (clocSize*2/3)+10, 0, _);
detect4(x) = select2 (x > clocSize-10, 0, 1);
cloc = (%(_,clocSize))~(+(1)) <: (detect1: trig),(detect2: trig),(detect3: trig),(detect4: trig);
trig = _<:_,mem: >;
envelop = *(2*PI):+(PI):cos:*(0.5):+(0.5);
rampe(f, t) = delta : (+ : select2(t,_,delta<0) : max(0)) ~ _ : raz
with {
raz(x) = select2 (x > 1, x, 0);
delta = sh(f,t)/ma.SR;
sh(x,t) = ba.sAndH(t,x);
};
rampe2(speed, t) = delta : (+ : select2(t,_,delta<0) : max(0)) ~ _
with {
delta = sh(speed,t);
sh(x,t) = ba.sAndH(t,x);
};
unGrain(input, clk) = (linrwtable(wf , rindex) : *(0.2 * EnvGrain))
with {
SR = 44100;
buffer_sec = 1;
size = int(SR * buffer_sec);
init = 0.;
EnvGrain = clk : (rampe(freq) : envelop);
windex = (%(_,size) ) ~ (+(1));
posTabl = int(ba.sAndH(clk, windex));
rindex = %(int(rampe2(speed, clk)) + posTabl + int(size * decal), size);
wf = size, init, int(windex), input;
};
linrwtable(wf,x) = linterpolation(y0,y1,d)
with {
d = x-x0;
linterpolation(v0,v1,c) = v0*(1-c)+v1*c;
};
routeur(a, b, c, d, e) = a, b, a, c, a, d, a, e;
processus = _, cloc : routeur : (unGrain, unGrain, unGrain, unGrain) :> fi.dcblockerat(20);
process = _,_: ((+(_,_) :processus) ~(*(feedback))),((+(_,_) :processus) ~(*(feedback)));
|
2cb66a8d563b463d7fc6909bafaff50ff6d2fbf1dcc70f29beb621539008d1ae | grame-cncm/faustide | noise.dsp | // WARNING: This a "legacy example based on a deprecated library". Check noises.lib
// for more accurate examples of noise functions
declare name "Noise";
declare version "1.1";
declare author "Grame";
declare license "BSD";
declare copyright "(c)GRAME 2009";
//-----------------------------------------------------------------
// Noise generator and demo file for the Faust math documentation
//-----------------------------------------------------------------
<mdoc>
\section{Presentation of the "noise.dsp" Faust program}
This program describes a white noise generator with an interactive volume, using a random function.
\subsection{The random function}
The \texttt{random} function describes a generator of random numbers, which equation follows. You should notice hereby the use of an integer arithmetic on 32 bits, relying on integer wrapping for big numbers.
<equation>random</equation>
\subsection{The noise function}
The white noise then corresponds to:
<equation>noise</equation>
</mdoc>
random = +(12345)~*(1103515245);
noise = random/2147483647.0;
<mdoc>
\subsection{Just add a user interface element to play volume!}
Endly, the sound level of this program is controlled by a user slider, which gives the following equation:
<equation>process</equation>
</mdoc>
<mdoc>
\section{Block-diagram schema of process}
This process is illustrated on figure 1.
<diagram>process</diagram>
</mdoc>
process = noise * vslider("Volume[style:knob][acc: 0 0 -10 0 10]", 0.5, 0, 1, 0.1);
<mdoc>
\section{Notice of this documentation}
You might be careful of certain information and naming conventions used in this documentation:
<notice/>
\section{Listing of the input code}
The following listing shows the input Faust code, parsed to compile this mathematical documentation.
<listing/>
</mdoc>
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/src/static/examples/generator/noise.dsp | faust | WARNING: This a "legacy example based on a deprecated library". Check noises.lib
for more accurate examples of noise functions
-----------------------------------------------------------------
Noise generator and demo file for the Faust math documentation
----------------------------------------------------------------- |
declare name "Noise";
declare version "1.1";
declare author "Grame";
declare license "BSD";
declare copyright "(c)GRAME 2009";
<mdoc>
\section{Presentation of the "noise.dsp" Faust program}
This program describes a white noise generator with an interactive volume, using a random function.
\subsection{The random function}
The \texttt{random} function describes a generator of random numbers, which equation follows. You should notice hereby the use of an integer arithmetic on 32 bits, relying on integer wrapping for big numbers.
<equation>random</equation>
\subsection{The noise function}
The white noise then corresponds to:
<equation>noise</equation>
</mdoc>
random = +(12345)~*(1103515245);
noise = random/2147483647.0;
<mdoc>
\subsection{Just add a user interface element to play volume!}
Endly, the sound level of this program is controlled by a user slider, which gives the following equation:
<equation>process</equation>
</mdoc>
<mdoc>
\section{Block-diagram schema of process}
This process is illustrated on figure 1.
<diagram>process</diagram>
</mdoc>
process = noise * vslider("Volume[style:knob][acc: 0 0 -10 0 10]", 0.5, 0, 1, 0.1);
<mdoc>
\section{Notice of this documentation}
You might be careful of certain information and naming conventions used in this documentation:
<notice/>
\section{Listing of the input code}
The following listing shows the input Faust code, parsed to compile this mathematical documentation.
<listing/>
</mdoc>
|
c7d2560232da52e46875cd30836f1390eeb370ffb70177e8cc72c6766723bb40 | grame-cncm/faustide | APF.dsp | // WARNING: This a "legacy example based on a deprecated library". Check filters.lib
// for more accurate examples of filter functions
declare name "APF";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = APF(x,F,G,Q);
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/src/static/examples/filtering/APF.dsp | faust | WARNING: This a "legacy example based on a deprecated library". Check filters.lib
for more accurate examples of filter functions |
declare name "APF";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = APF(x,F,G,Q);
|
f074a50ae7cfe09aa0052de7dad05b4b13d5fad65dc05435df170d94db850f8a | grame-cncm/faustide | BPF.dsp | // WARNING: This a "legacy example based on a deprecated library". Check filters.lib
// for more accurate examples of filter functions
declare name "BPF";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = BPF(x,F,G,Q);
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/src/static/examples/filtering/BPF.dsp | faust | WARNING: This a "legacy example based on a deprecated library". Check filters.lib
for more accurate examples of filter functions |
declare name "BPF";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = BPF(x,F,G,Q);
|
3e30cda3a12483dcf162a63ad941a0e4838bfe4efe72cfcbc9375a17b8c6b080 | grame-cncm/faustide | guitarix.dsp | /*
* Copyright (C) 2009, 2010 Hermann Meyer, James Warden, Andreas Degert
* Copyright (C) 2011 Pete Shorthose
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* ----------------------------------------------------------------------------
* Adapted version from guitarixlite (v.0.28) using foreign functions
* to this self-contained Faust version (v.0.29)
* Adapted by GRAME - 2014
* ----------------------------------------------------------------------------
*/
declare name "guitarix";
declare version "0.29";
declare author "Guitarix project (http://guitarix.sourceforge.net/)";
declare copyright "Guitarix project";
declare license "LGPL";
ba = library("basics.lib");
si = library("signals.lib");
import("tubes.lib");
import("tonestacks.lib");
process = preamp;
/****************************************************************
** Tube Preamp Emulation with
* tubescreamer - tube stage 1 - 2 - tonestack - cabinet
*/
preamp = hgroup("Guitarix",
hgroup("[0]TubeScreamer",ts9sim) :
hgroup("[1]preamp: 12AX7", stage1 : stage2):
hgroup("[2]tonestack: jcm2000", tstack) :
hgroup("[3]Cabinet", cab))
with {
stage1 = T1_12AX7 : *(preamp) : fi.lowpass(1,6531.0) : T2_12AX7 : *(preamp)
with {
preamp = vslider("[0] Pregain [style:knob]",-6,-20,20,0.1) : ba.db2linear : si.smoo;
};
stage2 = fi.lowpass(1,6531.0) : T3_12AX7 : *(gain)
with {
gain = vslider("[1] Gain [style:knob]",-6,-20.0,20.0,0.1) : ba.db2linear : si.smoo;
};
tstack = jcm2000(t, m, l)
with {
t = vslider("[2] Treble [style:knob]",0.5,0,1,0.01);
m = vslider("[3] Middle [style:knob]",0.5,0,1,0.01);
l = vslider("[4] Bass [style:knob]",0.5,0,1,0.01);
};
/*
// Dynamically choose between several 'tstack'
tstack = ba.selectmulti(ma.SR/100, (tjcm2000, tjtm45, tjcm800),
nentry("tstack [style:menu{'tjcm2000':0;'tjtm45':1;'tjcm800':2}]", 0, 0, 2, 1))
with {
tjcm2000 = jcm2000(t, m, l);
tjtm45 = jtm45(t, m, l);
tjcm800 = jcm800(t, m, l);
t = vslider("[2] Treble [style:knob]",0.5,0,1,0.01);
m = vslider("[3] Middle [style:knob]",0.5,0,1,0.01);
l = vslider("[4] Bass [style:knob]",0.5,0,1,0.01);
};
*/
};
/****************************************************************************************
* 1-dimensional function tables for nonlinear interpolation
****************************************************************************************/
nonlininterpolation(table, low, high, step, size, x) = ts9(low, step, size, table, x),inverse(x) : ccopysign;
//-- Interpolate value from table
ts9(low, step, size, table, x) = interpolation(table, getCoef(low, step, size, x),
nonlinindex(low, step, x) : boundIndex(size));
//-- Calculate non linear index
nonlinindex(low, step, x) = (abs(x)/(3.0 + abs(x)) - low) * step;
//--Get interpolation factor
getCoef(low, step, size, x) = boundFactor(size, nonlinindex(low, step, x), nonlinindex(low, step, x) : boundIndex(size));
/********* Faust Version of ts9nonlin.cc, generated by tools/ts9sim.py ****************/
ts9comp = nonlininterpolation(ts9table, low, high, step, size)
with {
// Characteristics of the wavetable
low = 0.0;
high = 0.970874;
step = 101.97;
size = 99; // (real size = 100, set the actual size at 100-1 for interpolation to work at the last point)
ts9table = waveform{0.0,-0.0296990148227,-0.0599780676992,-0.0908231643281,-0.122163239629,
-0.15376009788,-0.184938007182,-0.214177260107,-0.239335434213,-0.259232575019,
-0.274433909887,-0.286183308354,-0.29553854444,-0.303222323477,-0.309706249977,
-0.315301338712,-0.320218440785,-0.324604982281,-0.328567120703,-0.332183356975,
-0.335513124719,-0.33860236542,-0.34148724693,-0.344196707008,-0.346754233717,
-0.34917913798,-0.351487480543,-0.35369275887,-0.355806424152,-0.357838275995,
-0.359796767655,-0.361689244919,-0.363522135105,-0.365301098113,-0.367031148289,
-0.368716753588,-0.370361916943,-0.371970243537,-0.373544996828,-0.375089145544,
-0.376605403346,-0.378096262548,-0.379564022938,-0.381010816596,-0.382438629377,
-0.383849319643,-0.385244634694,-0.386626225283,-0.387995658543,-0.389354429565,
-0.39070397188,-0.392045667012,-0.393380853288,-0.39471083403,-0.396036885269,
-0.397360263098,-0.398682210753,-0.400003965547,-0.401326765733,-0.402651857394,
-0.403980501471,-0.405313980999,-0.406653608692,-0.40800073496,-0.409356756504,
-0.410723125631,-0.412101360439,-0.413493056085,-0.414899897347,-0.416323672745,
-0.417766290556,-0.419229797097,-0.420716397759,-0.422228481377,-0.423768648654,
-0.425339745558,-0.426944902828,-0.428587583057,-0.430271637224,-0.432001373102,
-0.433781638746,-0.435617925286,-0.437516494692,-0.439484540257,-0.441530390423,
-0.443663770898,-0.445896146322,-0.448241172434,-0.450715304661,-0.453338632988,
-0.45613605235,-0.45913894467,-0.46238766699,-0.465935359011,-0.469854010456,
-0.474244617411,-0.479255257451,-0.48511588606,-0.492212726244,-0.501272723631
};
};
/****************************************************************************************/
/****************************************************************************************
* declare id "ts9sim";
* declare name "Tube Screamer";
* declare category "Distortion";
*
** based on a circuit diagram of the Ibanez TS-9 and
** a mathematical analysis published by Tamás Kenéz
****************************************************************************************/
ts9sim = ts9nonlin : lowpassfilter : *(gain)
with {
R1 = 4700;
R2 = 51000 + 500000 * vslider("drive[name:Drive][style:knob]", 0.5, 0, 1, 0.01);
C = 0.047 * 1e-6;
a1 = (R1 + R2) * C * 2 * ma.SR;
a2 = R1 * C * 2 * ma.SR;
B0 = (1 + a1) / (1 + a2);
B1 = (1 - a1) / (1 + a2);
A1 = (1 - a2) / (1 + a2);
X2 = fi.tf1(B0, B1, A1);
ts9nonlin = _ <: _ ,(X2,_ : - : ts9comp) : - :> _;
fc = vslider("tone[log][name:Tone][style:knob]", 400, 100, 1000, 1.03);
lowpassfilter = fi.lowpass(1,fc);
gain = vslider("level[name:Level][style:knob]", -16, -20, 4, 0.1) : ba.db2linear : si.smoo;
};
/****************************************************************************************
* declare name "cabinet";
*
** based on a circuit diagram of the Ibanez TS-9 and
** a mathematical analysis published by Tamás Kenéz
****************************************************************************************/
wetdry = vslider("[5] amount[style:knob]", 100, 0, 100, 1) : /(100);
dry = 1 - wetdry;
cab = _<:(*(dry):_), (*(wetdry):fi.conv((0.000488281, -0.0020752, 0.000561523, -0.00231934, 0.000634766, -0.00247803, 0.000512695, -0.00247803, 0.000146484, -0.00219727, -0.000622559, -0.00145264, -0.00202637,
-2.44141e-05, -0.00438232, 0.00247803, -0.00822754, 0.00706787, -0.0159546, 0.0202148, -0.0471558, 0.0953003, -0.208582, 0.312427, 0.75, -0.26803,
0.399963, 0.200696, -0.146655, -0.29303, -0.222168, -0.113098, 0.0267334, 0.0312134, 0.164685, 0.0443481, 0.186621, 0.0540039, 0.123303,
0.0805054, 0.0739868, 0.0591797, 0.0661743, 0.0400391, 0.0429932, 0.0339844, 0.0320557, 0.02323, 0.0217285, 0.0182007, 0.0157227, 0.0130005,
0.0103882, 0.00942383, 0.00718994, 0.0067749, 0.00458984, 0.00455322, 0.00272217, 0.00294189, 0.00140381, 0.00170898, 0.000402832, 0.000720215, -0.000354004,
-2.44141e-05, -0.000915527, -0.000610352, -0.00134277, -0.0010498, -0.00166016, -0.0013916, -0.0019043, -0.00166016, -0.0020874, -0.00187988, -0.00224609, -0.00203857,
-0.00235596, -0.00217285, -0.0024292, -0.0022583, -0.00247803, -0.00233154, -0.00252686, -0.00238037, -0.00256348, -0.0024292, 0.75, -0.00246582, -0.0026001,
-0.00247803, -0.0026001, -0.00249023, -0.0026001, -0.00250244, -0.0026001, -0.00251465, -0.0026001, -0.00251465, -0.0026001, -0.00251465, -0.0026001, -0.00252686,
-0.00258789, -0.00252686, -0.00258789, -0.00251465, -0.00257568, -0.00251465, -0.00256348, -0.00251465, -0.00256348, -0.00251465, -0.00256348, -0.00251465, -0.00256348,
-0.00251465, -0.00256348, -0.00251465, -0.00256348, -0.00252686, -0.00256348, -0.00252686, -0.00255127, -0.00252686, -0.00255127, -0.00252686, -0.00255127, -0.00252686,
-0.00255127, -0.00252686, -0.00256348
))):>_;
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/src/static/examples/misc/guitarix.dsp | faust |
* Copyright (C) 2009, 2010 Hermann Meyer, James Warden, Andreas Degert
* Copyright (C) 2011 Pete Shorthose
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* ----------------------------------------------------------------------------
* Adapted version from guitarixlite (v.0.28) using foreign functions
* to this self-contained Faust version (v.0.29)
* Adapted by GRAME - 2014
* ----------------------------------------------------------------------------
***************************************************************
** Tube Preamp Emulation with
* tubescreamer - tube stage 1 - 2 - tonestack - cabinet
// Dynamically choose between several 'tstack'
tstack = ba.selectmulti(ma.SR/100, (tjcm2000, tjtm45, tjcm800),
nentry("tstack [style:menu{'tjcm2000':0;'tjtm45':1;'tjcm800':2}]", 0, 0, 2, 1))
with {
tjcm2000 = jcm2000(t, m, l);
tjtm45 = jtm45(t, m, l);
tjcm800 = jcm800(t, m, l);
t = vslider("[2] Treble [style:knob]",0.5,0,1,0.01);
m = vslider("[3] Middle [style:knob]",0.5,0,1,0.01);
l = vslider("[4] Bass [style:knob]",0.5,0,1,0.01);
};
***************************************************************************************
* 1-dimensional function tables for nonlinear interpolation
***************************************************************************************
-- Interpolate value from table
-- Calculate non linear index
--Get interpolation factor
******** Faust Version of ts9nonlin.cc, generated by tools/ts9sim.py ***************
Characteristics of the wavetable
(real size = 100, set the actual size at 100-1 for interpolation to work at the last point)
**************************************************************************************
***************************************************************************************
* declare id "ts9sim";
* declare name "Tube Screamer";
* declare category "Distortion";
*
** based on a circuit diagram of the Ibanez TS-9 and
** a mathematical analysis published by Tamás Kenéz
***************************************************************************************
***************************************************************************************
* declare name "cabinet";
*
** based on a circuit diagram of the Ibanez TS-9 and
** a mathematical analysis published by Tamás Kenéz
*************************************************************************************** |
declare name "guitarix";
declare version "0.29";
declare author "Guitarix project (http://guitarix.sourceforge.net/)";
declare copyright "Guitarix project";
declare license "LGPL";
ba = library("basics.lib");
si = library("signals.lib");
import("tubes.lib");
import("tonestacks.lib");
process = preamp;
preamp = hgroup("Guitarix",
hgroup("[0]TubeScreamer",ts9sim) :
hgroup("[1]preamp: 12AX7", stage1 : stage2):
hgroup("[2]tonestack: jcm2000", tstack) :
hgroup("[3]Cabinet", cab))
with {
stage1 = T1_12AX7 : *(preamp) : fi.lowpass(1,6531.0) : T2_12AX7 : *(preamp)
with {
preamp = vslider("[0] Pregain [style:knob]",-6,-20,20,0.1) : ba.db2linear : si.smoo;
};
stage2 = fi.lowpass(1,6531.0) : T3_12AX7 : *(gain)
with {
gain = vslider("[1] Gain [style:knob]",-6,-20.0,20.0,0.1) : ba.db2linear : si.smoo;
};
tstack = jcm2000(t, m, l)
with {
t = vslider("[2] Treble [style:knob]",0.5,0,1,0.01);
m = vslider("[3] Middle [style:knob]",0.5,0,1,0.01);
l = vslider("[4] Bass [style:knob]",0.5,0,1,0.01);
};
};
nonlininterpolation(table, low, high, step, size, x) = ts9(low, step, size, table, x),inverse(x) : ccopysign;
ts9(low, step, size, table, x) = interpolation(table, getCoef(low, step, size, x),
nonlinindex(low, step, x) : boundIndex(size));
nonlinindex(low, step, x) = (abs(x)/(3.0 + abs(x)) - low) * step;
getCoef(low, step, size, x) = boundFactor(size, nonlinindex(low, step, x), nonlinindex(low, step, x) : boundIndex(size));
ts9comp = nonlininterpolation(ts9table, low, high, step, size)
with {
low = 0.0;
high = 0.970874;
step = 101.97;
ts9table = waveform{0.0,-0.0296990148227,-0.0599780676992,-0.0908231643281,-0.122163239629,
-0.15376009788,-0.184938007182,-0.214177260107,-0.239335434213,-0.259232575019,
-0.274433909887,-0.286183308354,-0.29553854444,-0.303222323477,-0.309706249977,
-0.315301338712,-0.320218440785,-0.324604982281,-0.328567120703,-0.332183356975,
-0.335513124719,-0.33860236542,-0.34148724693,-0.344196707008,-0.346754233717,
-0.34917913798,-0.351487480543,-0.35369275887,-0.355806424152,-0.357838275995,
-0.359796767655,-0.361689244919,-0.363522135105,-0.365301098113,-0.367031148289,
-0.368716753588,-0.370361916943,-0.371970243537,-0.373544996828,-0.375089145544,
-0.376605403346,-0.378096262548,-0.379564022938,-0.381010816596,-0.382438629377,
-0.383849319643,-0.385244634694,-0.386626225283,-0.387995658543,-0.389354429565,
-0.39070397188,-0.392045667012,-0.393380853288,-0.39471083403,-0.396036885269,
-0.397360263098,-0.398682210753,-0.400003965547,-0.401326765733,-0.402651857394,
-0.403980501471,-0.405313980999,-0.406653608692,-0.40800073496,-0.409356756504,
-0.410723125631,-0.412101360439,-0.413493056085,-0.414899897347,-0.416323672745,
-0.417766290556,-0.419229797097,-0.420716397759,-0.422228481377,-0.423768648654,
-0.425339745558,-0.426944902828,-0.428587583057,-0.430271637224,-0.432001373102,
-0.433781638746,-0.435617925286,-0.437516494692,-0.439484540257,-0.441530390423,
-0.443663770898,-0.445896146322,-0.448241172434,-0.450715304661,-0.453338632988,
-0.45613605235,-0.45913894467,-0.46238766699,-0.465935359011,-0.469854010456,
-0.474244617411,-0.479255257451,-0.48511588606,-0.492212726244,-0.501272723631
};
};
ts9sim = ts9nonlin : lowpassfilter : *(gain)
with {
R1 = 4700;
R2 = 51000 + 500000 * vslider("drive[name:Drive][style:knob]", 0.5, 0, 1, 0.01);
C = 0.047 * 1e-6;
a1 = (R1 + R2) * C * 2 * ma.SR;
a2 = R1 * C * 2 * ma.SR;
B0 = (1 + a1) / (1 + a2);
B1 = (1 - a1) / (1 + a2);
A1 = (1 - a2) / (1 + a2);
X2 = fi.tf1(B0, B1, A1);
ts9nonlin = _ <: _ ,(X2,_ : - : ts9comp) : - :> _;
fc = vslider("tone[log][name:Tone][style:knob]", 400, 100, 1000, 1.03);
lowpassfilter = fi.lowpass(1,fc);
gain = vslider("level[name:Level][style:knob]", -16, -20, 4, 0.1) : ba.db2linear : si.smoo;
};
wetdry = vslider("[5] amount[style:knob]", 100, 0, 100, 1) : /(100);
dry = 1 - wetdry;
cab = _<:(*(dry):_), (*(wetdry):fi.conv((0.000488281, -0.0020752, 0.000561523, -0.00231934, 0.000634766, -0.00247803, 0.000512695, -0.00247803, 0.000146484, -0.00219727, -0.000622559, -0.00145264, -0.00202637,
-2.44141e-05, -0.00438232, 0.00247803, -0.00822754, 0.00706787, -0.0159546, 0.0202148, -0.0471558, 0.0953003, -0.208582, 0.312427, 0.75, -0.26803,
0.399963, 0.200696, -0.146655, -0.29303, -0.222168, -0.113098, 0.0267334, 0.0312134, 0.164685, 0.0443481, 0.186621, 0.0540039, 0.123303,
0.0805054, 0.0739868, 0.0591797, 0.0661743, 0.0400391, 0.0429932, 0.0339844, 0.0320557, 0.02323, 0.0217285, 0.0182007, 0.0157227, 0.0130005,
0.0103882, 0.00942383, 0.00718994, 0.0067749, 0.00458984, 0.00455322, 0.00272217, 0.00294189, 0.00140381, 0.00170898, 0.000402832, 0.000720215, -0.000354004,
-2.44141e-05, -0.000915527, -0.000610352, -0.00134277, -0.0010498, -0.00166016, -0.0013916, -0.0019043, -0.00166016, -0.0020874, -0.00187988, -0.00224609, -0.00203857,
-0.00235596, -0.00217285, -0.0024292, -0.0022583, -0.00247803, -0.00233154, -0.00252686, -0.00238037, -0.00256348, -0.0024292, 0.75, -0.00246582, -0.0026001,
-0.00247803, -0.0026001, -0.00249023, -0.0026001, -0.00250244, -0.0026001, -0.00251465, -0.0026001, -0.00251465, -0.0026001, -0.00251465, -0.0026001, -0.00252686,
-0.00258789, -0.00252686, -0.00258789, -0.00251465, -0.00257568, -0.00251465, -0.00256348, -0.00251465, -0.00256348, -0.00251465, -0.00256348, -0.00251465, -0.00256348,
-0.00251465, -0.00256348, -0.00251465, -0.00256348, -0.00252686, -0.00256348, -0.00252686, -0.00255127, -0.00252686, -0.00255127, -0.00252686, -0.00255127, -0.00252686,
-0.00255127, -0.00252686, -0.00256348
))):>_;
|
721c87352ee26e4a760b839c95fa7f461cf85b7fcdf0367134d6320389f0b813 | grame-cncm/faustide | multibandFilter.dsp | // WARNING: This a "legacy example based on a deprecated library". Check filters.lib
// for more accurate examples of filter functions
declare name "multibandFilter";
declare version "1.0";
declare author "Grame";
declare license "BSD";
declare copyright "(c)GRAME 2006";
//---------------------------Multi Band Filter-----------------------------
//
//-------------------------------------------------------------------------
process = hgroup("Multi Band Filter", seq(i, 10, vgroup("peak %i", component("bandFilter.dsp").bandfilter(1000*(1+i)))));
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/src/static/examples/filtering/multibandFilter.dsp | faust | WARNING: This a "legacy example based on a deprecated library". Check filters.lib
for more accurate examples of filter functions
---------------------------Multi Band Filter-----------------------------
------------------------------------------------------------------------- |
declare name "multibandFilter";
declare version "1.0";
declare author "Grame";
declare license "BSD";
declare copyright "(c)GRAME 2006";
process = hgroup("Multi Band Filter", seq(i, 10, vgroup("peak %i", component("bandFilter.dsp").bandfilter(1000*(1+i)))));
|
a3370bc0dbbea1d818f6f3cfdcd01381613f9f397d13176e4389232bb43a05be | grame-cncm/faustide | peakNotch.dsp | // WARNING: This a "legacy example based on a deprecated library". Check filters.lib
// for more accurate examples of filter functions
declare name "peakNotch";
import("maxmsp.lib");
G = hslider("Gain [unit: lin]", 1, 0, 8, 0.01);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = peakNotch(x,F,G,Q);
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/docs/examples/filtering/peakNotch.dsp | faust | WARNING: This a "legacy example based on a deprecated library". Check filters.lib
for more accurate examples of filter functions |
declare name "peakNotch";
import("maxmsp.lib");
G = hslider("Gain [unit: lin]", 1, 0, 8, 0.01);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = peakNotch(x,F,G,Q);
|
1e67194aa46b4f01e0fa337b2a6ead97d80fdb7d94ef247abc5480e0ec2fcd21 | grame-cncm/faustide | layout2.dsp | // This layout loosely follows the MiniMoog-V
// Arturia-only features are labeled
// Original versions also added where different
// Need vrocker and hrocker toggle switches in Faust!
// Need orange and blue color choices
// Orange => Connect modulation sources to their destinations
// Blue => Turn audio sources On and Off
// - and later -
// White => Turn performance features On and Off
// Black => Select between modulation sources
// Julius Smith for Analog Devices 3/1/2017
vrocker(x) = checkbox("%%x [style:vrocker]");
hrocker(x) = checkbox("%%x [style:hrocker]");
vrockerblue(x) = checkbox("%x [style:vrocker] [color:blue]");
vrockerblue(x) = checkbox("%x [style:vrocker] [color:blue]");
// USAGE: vrockerorange("[0] ModulationEnable");
hrockerblue(x) = checkbox("%%x [style:hrocker] [color:blue]");
vrockerred(x) = checkbox("%%x [style:vrocker] [color:red]");
hrockerred(x) = checkbox("%%x [style:hrocker] [color:red]");
declare designer "Robert A. Moog";
mmg(x) = hgroup("",x); // Minimoog + Effects
synthg(x) = mmg(vgroup("[0] Minimoog",x));
fxg(x) = mmg(hgroup("[1] Effects",x));
mg(x) = synthg(hgroup("[0]",x));
cg(x) = mg(vgroup("[0] Controllers",x)); // Formerly named "Modules" but "Minimoog" group-title is enough
vg(x) = cg(hgroup("[0] Master Volume", x));
dg(x) = cg(hgroup("[1] Oscillator Tuning & Switching", x));
// Tune knob = master tune
dsg(x) = dg(vgroup("[1] Switches", x));
// Oscillator Modulation HrockerRed => apply Modulation Mix output to osc1&2 pitches
// [MOVED here from osc3 group] Osc 3 Control VrockerRed => use osc3 as LFO instead of osc3
gmmg(x) = cg(hgroup("[2] Glide and ModMix", x));
// Glide knob [0:10] = portamento speed
// Modulation Mix knob [0:10] (between Osc3 and Noise) = mix of noise and osc3 modulating osc1&2 pitch and/or VCF freq
og(x) = mg(vgroup("[1] Oscillator Bank", x));
osc1(x) = og(hgroup("[1] Oscillator 1", x));
// UNUSED Control switch (for alignment) - Could put Oscillator Modulation switch there
// Range rotary switch: LO (slow pulses or rhythm), 32', 16', 8', 4', 2'
// Frequency <something> switch: LED to right
// Waveform rotary switch: tri, impulse/bent-triangle, saw, pulseWide, pulseMed, pulseNarrow
osc2(x) = og(hgroup("[2] Oscillator 2", x));
// UNUSED (originall) or Osc 2 Control VrockerRed
// Range rotary switch: LO, 32', 16', 8', 4', 2'
// Detuning knob: -7 to 7 [NO SWITCH]
// Waveform rotary switch: tri, impulse(?), saw, pulseWide, pulseMed, pulseNarrow
osc3(x) = og(hgroup("[3] Oscillator 3", x));
// Osc 3 Control VrockerRed => use osc3 as LFO instead of osc3
// Range rotary switch: LO, 32', 16', 8', 4', 2'
// Detuning knob: -7 to 7 [NO SWITCH]
// Waveform rotary switch: tri, impulse(?), saw, pulseWide, pulseMed, pulseNarrow
mixg(x) = mg(vgroup("[2] Mixer", x));
// Each row 5 slots to maintain alignment and include red rockers joining VCF area:
mr1(x) = mixg(hgroup("[0] Osc1", x)); // mixer row 1 =
// Osc1 Volume and Osc1 HrockerBlue & _ & _ & Filter Modulation HrockerRed
// Filter Modulation => Modulation Mix output to VCF freq
mr2(x) = mixg(hgroup("[1] Ext In, KeyCtl", x)); // row 2 = Ext In HrockerBlue and Vol and Overload LED and Keyboard Ctl HrockerRed 1
mr3(x) = mixg(hgroup("[2] Osc2", x)); // = Osc2 Volume and Osc2 HrockerBlue and Keyboard Ctl HrockerRed 2
// Keyboard Control Modulation 1&2 => 0, 1/3, 2/3, all of Keyboard Control Signal ("gate?") applied to VCF freq
mr4(x) = mixg(hgroup("[3] Noise", x)); // = Noise HrockerBlue and Volume and Noise Type VrockerBlue
mr4cbg(x) = mr4(vgroup("[1]", x)); // = Noise Off and White/Pink selection
// two rockers
mr5(x) = mixg(hgroup("[4] Osc3", x)); // Osc3 Volume and Osc3 HrockerBlue
modg(x) = mg(vgroup("[3] Modifiers", x));
vcfg(x) = modg(vgroup("[0] Filter", x));
vcf1(x) = vcfg(hgroup("[0] [tooltip:freq, Q, ContourScale]", x));
vcf1cbg(x) = vcf1(vgroup("[0] [tooltip:two checkboxes]", x));
// Filter Modulation switch
// VCF Off switch
// Corner Frequency knob
// Filter Emphasis knob
// Amount of Contour knob
vcf2(x) = vcfg(hgroup("[1] Filter Contour [tooltip:AttFilt, DecFilt, Sustain Level for Filter Contour]", x));
// Attack Time knob
// Decay Time knob
// Sustain Level knob
ng(x) = modg(hgroup("[1] Loudness Contour", x));
// Attack Time knob
// Decay Time knob
// Sustain Level knob
echog(x) = fxg(hgroup("[4] Echo",x));
ekg(x) = echog(vgroup("[0] Knobs",x));
esg(x) = echog(vgroup("[1] Switches",x));
flg(x) = fxg(hgroup("[5] Flanger",x));
flkg(x) = flg(vgroup("[0] Knobs",x));
flsg(x) = flg(vgroup("[1] Switches",x));
chg(x) = fxg(hgroup("[6] Chorus",x));
ckg(x) = chg(vgroup("[0] Knobs",x));
csg(x) = chg(vgroup("[1] Switches",x));
rg(x) = fxg(hgroup("[7] Reverb",x));
rkg(x) = rg(vgroup("[0] Knobs",x));
rsg(x) = rg(vgroup("[1] Switches",x));
outg(x) = fxg(vgroup("[8] Output", x));
volg(x) = outg(hgroup("[0] Volume Main Output", x));
// Volume knob [0-10]
// Unison switch (Arturia) or Output connect/disconnect switch (original)
// When set, all voices are stacked and instrument is in mono mode
tunerg(x) = outg(hgroup("[1] A-440 Switch", x));
vdtpolyg(x) = outg(hgroup("[2] Voice Detune / Poly", x));
// Voice Detune knob [0-10] (Arturia) or
// Polyphonic switch [red LED below] (Arturia)
// When set, instrument is in polyphonic mode with one oscillator per key
clipg(x) = fxg(vgroup("[9] Soft Clip", x));
// Soft Clipping switch [red LED above]
kg(x) = synthg(hgroup("[1] Keyboard Group", x)); // Keyboard was 3 1/2 octaves
ws(x) = kg(vgroup("[0] Wheels and Switches", x));
s1g(x) = ws(hgroup("[0] Jacks and Rockers", x));
jg(x) = s1g(vgroup("[0] MiniJacks",x));
gdlg(x) = s1g(vgroup("[1] Glide/Decay/Legato Enables",x)); // Arturia
// Glide Hrocker (see original Button version below)
// Decay Hrocker (see original Button version below) => Sets Release (R) of ADSR to either 0 or Decay (R)
// Legato Hrocker (not in original)
s2g(x) = ws(hgroup("[1] [tooltip:Wheels+]", x));
bg(x) = s2g(vgroup("[0] [tooltip:Bend Enable and Range]", x));
wg(x) = s2g(hgroup("[1] [tooltip:Bend and Mod Wheels]", x));
// Using Glide/Decay/Legato enables above following Arturia:
// dg(x) = s2g(hgroup("[2] Glide and Decay momentary pushbuttons", x));
// Glide Button injects portamento as set by Glide knob
// Decay Button uses decay of Loudness Contour (else 0)
keys(x) = kg(hgroup("[1] [tooltip:Keys]", x));
gg(x) = keys(hgroup("[0] [tooltip: Gates]",x));
// leave slot 1 open for sustain (below)
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/docs/examples/SAM/flanger/layout2.dsp | faust | This layout loosely follows the MiniMoog-V
Arturia-only features are labeled
Original versions also added where different
Need vrocker and hrocker toggle switches in Faust!
Need orange and blue color choices
Orange => Connect modulation sources to their destinations
Blue => Turn audio sources On and Off
- and later -
White => Turn performance features On and Off
Black => Select between modulation sources
Julius Smith for Analog Devices 3/1/2017
USAGE: vrockerorange("[0] ModulationEnable");
Minimoog + Effects
Formerly named "Modules" but "Minimoog" group-title is enough
Tune knob = master tune
Oscillator Modulation HrockerRed => apply Modulation Mix output to osc1&2 pitches
[MOVED here from osc3 group] Osc 3 Control VrockerRed => use osc3 as LFO instead of osc3
Glide knob [0:10] = portamento speed
Modulation Mix knob [0:10] (between Osc3 and Noise) = mix of noise and osc3 modulating osc1&2 pitch and/or VCF freq
UNUSED Control switch (for alignment) - Could put Oscillator Modulation switch there
Range rotary switch: LO (slow pulses or rhythm), 32', 16', 8', 4', 2'
Frequency <something> switch: LED to right
Waveform rotary switch: tri, impulse/bent-triangle, saw, pulseWide, pulseMed, pulseNarrow
UNUSED (originall) or Osc 2 Control VrockerRed
Range rotary switch: LO, 32', 16', 8', 4', 2'
Detuning knob: -7 to 7 [NO SWITCH]
Waveform rotary switch: tri, impulse(?), saw, pulseWide, pulseMed, pulseNarrow
Osc 3 Control VrockerRed => use osc3 as LFO instead of osc3
Range rotary switch: LO, 32', 16', 8', 4', 2'
Detuning knob: -7 to 7 [NO SWITCH]
Waveform rotary switch: tri, impulse(?), saw, pulseWide, pulseMed, pulseNarrow
Each row 5 slots to maintain alignment and include red rockers joining VCF area:
mixer row 1 =
Osc1 Volume and Osc1 HrockerBlue & _ & _ & Filter Modulation HrockerRed
Filter Modulation => Modulation Mix output to VCF freq
row 2 = Ext In HrockerBlue and Vol and Overload LED and Keyboard Ctl HrockerRed 1
= Osc2 Volume and Osc2 HrockerBlue and Keyboard Ctl HrockerRed 2
Keyboard Control Modulation 1&2 => 0, 1/3, 2/3, all of Keyboard Control Signal ("gate?") applied to VCF freq
= Noise HrockerBlue and Volume and Noise Type VrockerBlue
= Noise Off and White/Pink selection
two rockers
Osc3 Volume and Osc3 HrockerBlue
Filter Modulation switch
VCF Off switch
Corner Frequency knob
Filter Emphasis knob
Amount of Contour knob
Attack Time knob
Decay Time knob
Sustain Level knob
Attack Time knob
Decay Time knob
Sustain Level knob
Volume knob [0-10]
Unison switch (Arturia) or Output connect/disconnect switch (original)
When set, all voices are stacked and instrument is in mono mode
Voice Detune knob [0-10] (Arturia) or
Polyphonic switch [red LED below] (Arturia)
When set, instrument is in polyphonic mode with one oscillator per key
Soft Clipping switch [red LED above]
Keyboard was 3 1/2 octaves
Arturia
Glide Hrocker (see original Button version below)
Decay Hrocker (see original Button version below) => Sets Release (R) of ADSR to either 0 or Decay (R)
Legato Hrocker (not in original)
Using Glide/Decay/Legato enables above following Arturia:
dg(x) = s2g(hgroup("[2] Glide and Decay momentary pushbuttons", x));
Glide Button injects portamento as set by Glide knob
Decay Button uses decay of Loudness Contour (else 0)
leave slot 1 open for sustain (below) |
vrocker(x) = checkbox("%%x [style:vrocker]");
hrocker(x) = checkbox("%%x [style:hrocker]");
vrockerblue(x) = checkbox("%x [style:vrocker] [color:blue]");
vrockerblue(x) = checkbox("%x [style:vrocker] [color:blue]");
hrockerblue(x) = checkbox("%%x [style:hrocker] [color:blue]");
vrockerred(x) = checkbox("%%x [style:vrocker] [color:red]");
hrockerred(x) = checkbox("%%x [style:hrocker] [color:red]");
declare designer "Robert A. Moog";
synthg(x) = mmg(vgroup("[0] Minimoog",x));
fxg(x) = mmg(hgroup("[1] Effects",x));
mg(x) = synthg(hgroup("[0]",x));
vg(x) = cg(hgroup("[0] Master Volume", x));
dg(x) = cg(hgroup("[1] Oscillator Tuning & Switching", x));
dsg(x) = dg(vgroup("[1] Switches", x));
gmmg(x) = cg(hgroup("[2] Glide and ModMix", x));
og(x) = mg(vgroup("[1] Oscillator Bank", x));
osc1(x) = og(hgroup("[1] Oscillator 1", x));
osc2(x) = og(hgroup("[2] Oscillator 2", x));
osc3(x) = og(hgroup("[3] Oscillator 3", x));
mixg(x) = mg(vgroup("[2] Mixer", x));
modg(x) = mg(vgroup("[3] Modifiers", x));
vcfg(x) = modg(vgroup("[0] Filter", x));
vcf1(x) = vcfg(hgroup("[0] [tooltip:freq, Q, ContourScale]", x));
vcf1cbg(x) = vcf1(vgroup("[0] [tooltip:two checkboxes]", x));
vcf2(x) = vcfg(hgroup("[1] Filter Contour [tooltip:AttFilt, DecFilt, Sustain Level for Filter Contour]", x));
ng(x) = modg(hgroup("[1] Loudness Contour", x));
echog(x) = fxg(hgroup("[4] Echo",x));
ekg(x) = echog(vgroup("[0] Knobs",x));
esg(x) = echog(vgroup("[1] Switches",x));
flg(x) = fxg(hgroup("[5] Flanger",x));
flkg(x) = flg(vgroup("[0] Knobs",x));
flsg(x) = flg(vgroup("[1] Switches",x));
chg(x) = fxg(hgroup("[6] Chorus",x));
ckg(x) = chg(vgroup("[0] Knobs",x));
csg(x) = chg(vgroup("[1] Switches",x));
rg(x) = fxg(hgroup("[7] Reverb",x));
rkg(x) = rg(vgroup("[0] Knobs",x));
rsg(x) = rg(vgroup("[1] Switches",x));
outg(x) = fxg(vgroup("[8] Output", x));
volg(x) = outg(hgroup("[0] Volume Main Output", x));
tunerg(x) = outg(hgroup("[1] A-440 Switch", x));
vdtpolyg(x) = outg(hgroup("[2] Voice Detune / Poly", x));
clipg(x) = fxg(vgroup("[9] Soft Clip", x));
ws(x) = kg(vgroup("[0] Wheels and Switches", x));
s1g(x) = ws(hgroup("[0] Jacks and Rockers", x));
jg(x) = s1g(vgroup("[0] MiniJacks",x));
s2g(x) = ws(hgroup("[1] [tooltip:Wheels+]", x));
bg(x) = s2g(vgroup("[0] [tooltip:Bend Enable and Range]", x));
wg(x) = s2g(hgroup("[1] [tooltip:Bend and Mod Wheels]", x));
keys(x) = kg(hgroup("[1] [tooltip:Keys]", x));
gg(x) = keys(hgroup("[0] [tooltip: Gates]",x));
|
b3cab7d7450b871a04684b447f793dad95e7aa9f89f4f230ad24b191bec98b54 | grame-cncm/faustide | repeater.dsp | // REPEATER:
// Freeze and repeat a small part of input signal 'n' time'
//
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// ANALOG IN:
// ANALOG 0 : Duration (ms) between 2 repeat series (500 to 2000 ms)
// ANALOG 1 : Duration of one repeat (2 to 200 ms)
// ANALOG 2 : Number of repeat
//
///////////////////////////////////////////////////////////////////////////////////////////////////
import("all.lib");
process = _, _ , (pathClock : compteurUpReset2(nbRepet): rampePlayer, _) : routageIO : rec_play_table , rec_play_table;
///////////////////////////////////////////////////////////////////////////////////////////////////
// General loop duration
MasterTaille =hslider("MasterTaille[BELA: ANALOG_0]", 500, 200, 2000,0.01);
MasterClocSize = int(MasterTaille*ma.SR/ 1000);
// Depth of repeat fragments
taille = hslider("taille[BELA: ANALOG_1]", 50, 2, 200,0.01);
clocSize = int(taille*ma.SR/ 1000);
// Number of repeat fragments
nbRepet = int (hslider("nbRepet[BELA: ANALOG_2]",4,1,16,1) );
trig = _<:_,mem: >;
routageIO (a, b, c, d) = a, c, d, b, c, d;
rec_play_table(input, inReadIndex, reset) = (rwtable(wf , rindex):fi.dcblockerat(20))
with {
SR = 44100;
buffer_sec = 2;
size = int(SR * buffer_sec);
init = 0.;
windex = (%(_,size))~(+(1):*(1-reset));
rindex = (%( int(inReadIndex),size));
wf = size, init, int(windex), input;
};
MasterClock = (%(_,MasterClocSize))~(+(1)) : detect
with {
detect(x) = select2 (x < 100, 0, 1);
};
SlaveClock(reset) = (%(_,clocSize))~(+(1):*(1-reset));
detect1(x) = select2 (x < clocSize/2, 0, 1);
pathClock = MasterClock <: trig, _ : SlaveClock, _ : detect1, _;
compteurUpReset2(nb, in, reset) = ((in:trig), reset : (routage : memo2)~_), reset
with {
memo2(a, b) = (ba.if(b>0.5, 0, _) )~(+(a));
compare(value) = ba.if(value>nb, 1, 0); // :trig;
routage(d,e,f) = e, (f, compare(d) : RSLatch <: +(f));
};
RSLatch(R, S) = latch(S,R)
with {
trig = _<:_,mem: >;
latch(S,R) = _~(ba.if(R>0.5, 0, _) : ba.if(S>0.5,1,_));
};
rampePlayer(reset) = rampe
with {
rst = reset : trig;
rampe = _~(+(1):*(1-rst));
toZero = _ : ba.if(reset<0.5,0,_);
};
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/docs/examples/bela/repeater.dsp | faust | REPEATER:
Freeze and repeat a small part of input signal 'n' time'
/////////////////////////////////////////////////////////////////////////////////////////////////
ANALOG IN:
ANALOG 0 : Duration (ms) between 2 repeat series (500 to 2000 ms)
ANALOG 1 : Duration of one repeat (2 to 200 ms)
ANALOG 2 : Number of repeat
/////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////
General loop duration
Depth of repeat fragments
Number of repeat fragments
:trig; |
import("all.lib");
process = _, _ , (pathClock : compteurUpReset2(nbRepet): rampePlayer, _) : routageIO : rec_play_table , rec_play_table;
MasterTaille =hslider("MasterTaille[BELA: ANALOG_0]", 500, 200, 2000,0.01);
MasterClocSize = int(MasterTaille*ma.SR/ 1000);
taille = hslider("taille[BELA: ANALOG_1]", 50, 2, 200,0.01);
clocSize = int(taille*ma.SR/ 1000);
nbRepet = int (hslider("nbRepet[BELA: ANALOG_2]",4,1,16,1) );
trig = _<:_,mem: >;
routageIO (a, b, c, d) = a, c, d, b, c, d;
rec_play_table(input, inReadIndex, reset) = (rwtable(wf , rindex):fi.dcblockerat(20))
with {
SR = 44100;
buffer_sec = 2;
size = int(SR * buffer_sec);
init = 0.;
windex = (%(_,size))~(+(1):*(1-reset));
rindex = (%( int(inReadIndex),size));
wf = size, init, int(windex), input;
};
MasterClock = (%(_,MasterClocSize))~(+(1)) : detect
with {
detect(x) = select2 (x < 100, 0, 1);
};
SlaveClock(reset) = (%(_,clocSize))~(+(1):*(1-reset));
detect1(x) = select2 (x < clocSize/2, 0, 1);
pathClock = MasterClock <: trig, _ : SlaveClock, _ : detect1, _;
compteurUpReset2(nb, in, reset) = ((in:trig), reset : (routage : memo2)~_), reset
with {
memo2(a, b) = (ba.if(b>0.5, 0, _) )~(+(a));
routage(d,e,f) = e, (f, compare(d) : RSLatch <: +(f));
};
RSLatch(R, S) = latch(S,R)
with {
trig = _<:_,mem: >;
latch(S,R) = _~(ba.if(R>0.5, 0, _) : ba.if(S>0.5,1,_));
};
rampePlayer(reset) = rampe
with {
rst = reset : trig;
rampe = _~(+(1):*(1-rst));
toZero = _ : ba.if(reset<0.5,0,_);
};
|
f8126d85603f194cf0c1e135d48a531952b598a3f5c0884dd4c1128153305eb4 | grame-cncm/faustide | lowShelf.dsp | // WARNING: This a "legacy example based on a deprecated library". Check filters.lib
// for more accurate examples of filter functions
declare name "lowShelf";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = lowShelf(x,F,G,Q);
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/docs/examples/filtering/lowShelf.dsp | faust | WARNING: This a "legacy example based on a deprecated library". Check filters.lib
for more accurate examples of filter functions |
declare name "lowShelf";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = lowShelf(x,F,G,Q);
|
2b544391f593bd58ba05a22c532d7c48844459102eed8e071fc03f7b81131d0e | grame-cncm/faustide | highShelf.dsp | // WARNING: This a "legacy example based on a deprecated library". Check filters.lib
// for more accurate examples of filter functions
declare name "highShelf";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = highShelf(x,F,G,Q);
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/docs/examples/filtering/highShelf.dsp | faust | WARNING: This a "legacy example based on a deprecated library". Check filters.lib
for more accurate examples of filter functions |
declare name "highShelf";
import("maxmsp.lib");
G = hslider("Gain [unit:dB]", 0, -10, 10, 0.1);
F = hslider("Freq", 1000, 100, 10000, 1);
Q = hslider("Q", 1, 0.01, 100, 0.01);
process(x) = highShelf(x,F,G,Q);
|
12168b1723c89fc431349f566aa2ca6fdf6abb7e738d7f8a47e9b158dde8a229 | grame-cncm/faustide | FMSynth2.dsp | import("all.lib");
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// Simple FM synthesizer.
// 2 oscillators and FM feedback on modulant oscillator
//
///////////////////////////////////////////////////////////////////////////////////////////////////
// MIDI IMPLEMENTATION:
//
// CC 1 : FM feedback on modulant oscillator.
// CC 14 : Modulator frequency ratio.
//
// CC 73 : Attack
// CC 76 : Decay
// CC 77 : Sustain
// CC 72 : Release
//
///////////////////////////////////////////////////////////////////////////////////////////////////
// GENERAL, Keyboard
midigate = button("gate");
midifreq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
midigain = nentry("gain", 1, 0, 1, 0.01);
// modwheel:
feedb = (gFreq-1) * (hslider("feedb[midi:ctrl 1]", 0, 0, 1, 0.001) : si.smoo);
modFreqRatio = hslider("ratio[midi:ctrl 14]",2,0,20,0.01) : si.smoo;
// pitchwheel
bend = ba.semi2ratio(hslider("bend [midi:pitchwheel]",0,-2,2,0.01));
gFreq = midifreq * bend;
//=================================== Parameters Mapping =================================
//========================================================================================
// Same for volum & modulation:
volA = hslider("A[midi:ctrl 73]",0.01,0.01,4,0.01);
volD = hslider("D[midi:ctrl 76]",0.6,0.01,8,0.01);
volS = hslider("S[midi:ctrl 77]",0.2,0,1,0.01);
volR = hslider("R[midi:ctrl 72]",0.8,0.01,8,0.01);
envelop = en.adsre(volA,volD,volS,volR,midigate);
// modulator frequency
modFreq = gFreq*modFreqRatio;
// modulation index
FMdepth = envelop * 1000 * midigain;
// Out amplitude
vol = envelop;
//============================================ DSP =======================================
//========================================================================================
FMfeedback(frq) = (+(_,frq):os.osci ) ~ (* (feedb));
FMall(f) = os.osci(f+(FMdepth*FMfeedback(f*modFreqRatio)));
process = FMall(gFreq) * vol;
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/src/static/examples/bela/FMSynth2.dsp | faust | /////////////////////////////////////////////////////////////////////////////////////////////////
Simple FM synthesizer.
2 oscillators and FM feedback on modulant oscillator
/////////////////////////////////////////////////////////////////////////////////////////////////
MIDI IMPLEMENTATION:
CC 1 : FM feedback on modulant oscillator.
CC 14 : Modulator frequency ratio.
CC 73 : Attack
CC 76 : Decay
CC 77 : Sustain
CC 72 : Release
/////////////////////////////////////////////////////////////////////////////////////////////////
GENERAL, Keyboard
modwheel:
pitchwheel
=================================== Parameters Mapping =================================
========================================================================================
Same for volum & modulation:
modulator frequency
modulation index
Out amplitude
============================================ DSP =======================================
======================================================================================== | import("all.lib");
midigate = button("gate");
midifreq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
midigain = nentry("gain", 1, 0, 1, 0.01);
feedb = (gFreq-1) * (hslider("feedb[midi:ctrl 1]", 0, 0, 1, 0.001) : si.smoo);
modFreqRatio = hslider("ratio[midi:ctrl 14]",2,0,20,0.01) : si.smoo;
bend = ba.semi2ratio(hslider("bend [midi:pitchwheel]",0,-2,2,0.01));
gFreq = midifreq * bend;
volA = hslider("A[midi:ctrl 73]",0.01,0.01,4,0.01);
volD = hslider("D[midi:ctrl 76]",0.6,0.01,8,0.01);
volS = hslider("S[midi:ctrl 77]",0.2,0,1,0.01);
volR = hslider("R[midi:ctrl 72]",0.8,0.01,8,0.01);
envelop = en.adsre(volA,volD,volS,volR,midigate);
modFreq = gFreq*modFreqRatio;
FMdepth = envelop * 1000 * midigain;
vol = envelop;
FMfeedback(frq) = (+(_,frq):os.osci ) ~ (* (feedb));
FMall(f) = os.osci(f+(FMdepth*FMfeedback(f*modFreqRatio)));
process = FMall(gFreq) * vol;
|
a63157790b094c73f9dfab4994e9373ee6fb363f175184913675b84dcc0ac261 | grame-cncm/faustide | FMSynth2_FX_Analog.dsp | import("all.lib");
///////////////////////////////////////////////////////////////////////////////////////////////////
//
// Simple FM synthesizer.
// 2 oscillators and FM feedback on modulant oscillator
//
///////////////////////////////////////////////////////////////////////////////////////////////////
// ANALOG IMPLEMENTATION:
//
// ANALOG_0 : Modulator frequency ratio
// ANALOG_1 : Attack
// ANALOG_2 : Decay/Release
// ANALOG_3 : Sustain
//
// MIDI:
// CC 1 : FM feedback on modulant oscillator.
//
///////////////////////////////////////////////////////////////////////////////////////////////////
// GENERAL, Keyboard
midigate = button("gate");
midifreq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
midigain = nentry("gain", 1, 0, 1, 0.01);
// modwheel:
feedb = (gFreq-1) * (hslider("feedb[midi:ctrl 1]", 0, 0, 1, 0.001) : si.smoo);
modFreqRatio = hslider("ratio[BELA: ANALOG_0]",2,0,20,0.01) : si.smoo;
// pitchwheel
bend = ba.semi2ratio(hslider("bend [midi:pitchwheel]",0,-2,2,0.01));
gFreq = midifreq * bend;
//=================================== Parameters Mapping =================================
//========================================================================================
// Same for volume & modulation:
volA = hslider("A[BELA: ANALOG_1]",0.01,0.01,4,0.01);
volDR = hslider("DR[BELA: ANALOG_2]",0.6,0.01,8,0.01);
volS = hslider("S[BELA: ANALOG_3]",0.2,0,1,0.01);
envelop = en.adsre(volA,volDR,volS,volDR,midigate);
// modulator frequency
modFreq = gFreq * modFreqRatio;
// modulation index
FMdepth = envelop * 1000 * midigain;
// Out amplitude
vol = envelop;
//============================================ DSP =======================================
//========================================================================================
FMfeedback(frq) = (+(_,frq):os.osci) ~ (* (feedb));
FMall(f) = os.osci(f+ (FMdepth*FMfeedback(f*modFreqRatio)));
//#################################################################################################//
//##################################### EFFECT SECTION ############################################//
//#################################################################################################//
//
// Simple FX chaine build for a mono synthesizer.
// It controle general volume and pan.
// FX Chaine is:
// Drive
// Flanger
// Reverberation
//
// This version use ANALOG IN to controle some of the parameters.
// Other parameters continue to be available by MIDI or OSC.
//
///////////////////////////////////////////////////////////////////////////////////////////////////
// ANALOG IMPLEMENTATION:
//
// ANALOG_4 : Distortion Drive
// ANALOG_5 : Flanger Dry/Wet
// ANALOG_6 : Reverberation Dry/Wet
// ANALOG_7 : Reverberation Room size
//
// MIDI:
// CC 7 : Volume
// CC 10 : Pan
//
// CC 13 : Flanger Delay
// CC 13 : Flanger Delay
// CC 94 : Flanger Feedback
//
// CC 95 : Reverberation Damp
// CC 90 : Reverberation Stereo Width
//
///////////////////////////////////////////////////////////////////////////////////////////////////
// VOLUME:
volFX = hslider("volume[midi:ctrl 7]",1,0,1,0.001); // Should be 7 according to MIDI CC norm.
// EFFECTS /////////////////////////////////////////////
drive = hslider("drive[BELA: ANALOG_4]",0.3,0,1,0.001);
// Flanger
curdel = hslider("flangDel[midi:ctrl 13]",4,0.001,10,0.001);
fb = hslider("flangFeedback[midi:ctrl 94]",0.7,0,1,0.001);
fldw = hslider("dryWetFlang[BELA: ANALOG_5]",0.5,0,1,0.001);
flanger = efx
with {
fldel = (curdel + (os.lf_triangle(1) * 2) ) : min(10);
efx = _ <: _, pf.flanger_mono(10,fldel,1,fb,0) : dry_wet(fldw);
};
// Pannoramique:
panno = _ : sp.panner(hslider("pan[midi:ctrl 10]",0.5,0,1,0.001)) : _,_;
// REVERB (from freeverb_demo)
reverb = _,_ <: (*(g)*fixedgain,*(g)*fixedgain :
re.stereo_freeverb(combfeed, allpassfeed, damping, spatSpread)),
*(1-g), *(1-g) :> _,_
with {
scaleroom = 0.28;
offsetroom = 0.7;
allpassfeed = 0.5;
scaledamp = 0.4;
fixedgain = 0.1;
origSR = 44100;
damping = vslider("Damp[midi:ctrl 95]",0.5, 0, 1, 0.025)*scaledamp*origSR/ma.SR;
combfeed = vslider("RoomSize[BELA: ANALOG_7]", 0.7, 0, 1, 0.025)*scaleroom*origSR/ma.SR + offsetroom;
spatSpread = vslider("Stereo[midi:ctrl 90]",0.6,0,1,0.01)*46*ma.SR/origSR;
g = vslider("dryWetReverb[BELA: ANALOG_6]", 0.4, 0, 1, 0.001);
// (g = Dry/Wet)
};
// Dry-Wet (from C. LEBRETON)
dry_wet(dw,x,y) = wet*y + dry*x
with {
wet = 0.5*(dw+1.0);
dry = 1.0-wet;
};
// ALL
effect = _ *(volFX) : ef.cubicnl_nodc(drive, 0.1) : flanger : panno : reverb;
process = FMall(gFreq) * vol;
| https://raw.githubusercontent.com/grame-cncm/faustide/2e68ca26fd487a1dbf7b27b5eb92f3c14b4eae41/src/static/examples/bela/FMSynth2_FX_Analog.dsp | faust | /////////////////////////////////////////////////////////////////////////////////////////////////
Simple FM synthesizer.
2 oscillators and FM feedback on modulant oscillator
/////////////////////////////////////////////////////////////////////////////////////////////////
ANALOG IMPLEMENTATION:
ANALOG_0 : Modulator frequency ratio
ANALOG_1 : Attack
ANALOG_2 : Decay/Release
ANALOG_3 : Sustain
MIDI:
CC 1 : FM feedback on modulant oscillator.
/////////////////////////////////////////////////////////////////////////////////////////////////
GENERAL, Keyboard
modwheel:
pitchwheel
=================================== Parameters Mapping =================================
========================================================================================
Same for volume & modulation:
modulator frequency
modulation index
Out amplitude
============================================ DSP =======================================
========================================================================================
#################################################################################################//
##################################### EFFECT SECTION ############################################//
#################################################################################################//
Simple FX chaine build for a mono synthesizer.
It controle general volume and pan.
FX Chaine is:
Drive
Flanger
Reverberation
This version use ANALOG IN to controle some of the parameters.
Other parameters continue to be available by MIDI or OSC.
/////////////////////////////////////////////////////////////////////////////////////////////////
ANALOG IMPLEMENTATION:
ANALOG_4 : Distortion Drive
ANALOG_5 : Flanger Dry/Wet
ANALOG_6 : Reverberation Dry/Wet
ANALOG_7 : Reverberation Room size
MIDI:
CC 7 : Volume
CC 10 : Pan
CC 13 : Flanger Delay
CC 13 : Flanger Delay
CC 94 : Flanger Feedback
CC 95 : Reverberation Damp
CC 90 : Reverberation Stereo Width
/////////////////////////////////////////////////////////////////////////////////////////////////
VOLUME:
Should be 7 according to MIDI CC norm.
EFFECTS /////////////////////////////////////////////
Flanger
Pannoramique:
REVERB (from freeverb_demo)
(g = Dry/Wet)
Dry-Wet (from C. LEBRETON)
ALL | import("all.lib");
midigate = button("gate");
midifreq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
midigain = nentry("gain", 1, 0, 1, 0.01);
feedb = (gFreq-1) * (hslider("feedb[midi:ctrl 1]", 0, 0, 1, 0.001) : si.smoo);
modFreqRatio = hslider("ratio[BELA: ANALOG_0]",2,0,20,0.01) : si.smoo;
bend = ba.semi2ratio(hslider("bend [midi:pitchwheel]",0,-2,2,0.01));
gFreq = midifreq * bend;
volA = hslider("A[BELA: ANALOG_1]",0.01,0.01,4,0.01);
volDR = hslider("DR[BELA: ANALOG_2]",0.6,0.01,8,0.01);
volS = hslider("S[BELA: ANALOG_3]",0.2,0,1,0.01);
envelop = en.adsre(volA,volDR,volS,volDR,midigate);
modFreq = gFreq * modFreqRatio;
FMdepth = envelop * 1000 * midigain;
vol = envelop;
FMfeedback(frq) = (+(_,frq):os.osci) ~ (* (feedb));
FMall(f) = os.osci(f+ (FMdepth*FMfeedback(f*modFreqRatio)));
drive = hslider("drive[BELA: ANALOG_4]",0.3,0,1,0.001);
curdel = hslider("flangDel[midi:ctrl 13]",4,0.001,10,0.001);
fb = hslider("flangFeedback[midi:ctrl 94]",0.7,0,1,0.001);
fldw = hslider("dryWetFlang[BELA: ANALOG_5]",0.5,0,1,0.001);
flanger = efx
with {
fldel = (curdel + (os.lf_triangle(1) * 2) ) : min(10);
efx = _ <: _, pf.flanger_mono(10,fldel,1,fb,0) : dry_wet(fldw);
};
panno = _ : sp.panner(hslider("pan[midi:ctrl 10]",0.5,0,1,0.001)) : _,_;
reverb = _,_ <: (*(g)*fixedgain,*(g)*fixedgain :
re.stereo_freeverb(combfeed, allpassfeed, damping, spatSpread)),
*(1-g), *(1-g) :> _,_
with {
scaleroom = 0.28;
offsetroom = 0.7;
allpassfeed = 0.5;
scaledamp = 0.4;
fixedgain = 0.1;
origSR = 44100;
damping = vslider("Damp[midi:ctrl 95]",0.5, 0, 1, 0.025)*scaledamp*origSR/ma.SR;
combfeed = vslider("RoomSize[BELA: ANALOG_7]", 0.7, 0, 1, 0.025)*scaleroom*origSR/ma.SR + offsetroom;
spatSpread = vslider("Stereo[midi:ctrl 90]",0.6,0,1,0.01)*46*ma.SR/origSR;
g = vslider("dryWetReverb[BELA: ANALOG_6]", 0.4, 0, 1, 0.001);
};
dry_wet(dw,x,y) = wet*y + dry*x
with {
wet = 0.5*(dw+1.0);
dry = 1.0-wet;
};
effect = _ *(volFX) : ef.cubicnl_nodc(drive, 0.1) : flanger : panno : reverb;
process = FMall(gFreq) * vol;
|
947a7f1bb9058e613cb6a33895c4db10aed67bf83d0cad75590ba24e8f8021bb | Jikstra/faust-plugins | sawtoothsynth.dsp | import("music.lib");
import("oscillator.lib");
gate = button("gate");
gain = hslider("gain[unit:dB][style:knob]", -10, -30, +10, 0.1) : db2linear : smooth(0.999);
freq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
prevfreq = nentry("prevfreq[unit:Hz]", 440, 20, 20000, 1);
portamento = vslider("[5] Portamento [unit:sec] [style:knob] [tooltip: Portamento (frequency-glide)time-constant in seconds]", 0.1,0.01,0.3,0.001);
pitchbend = vslider("pitchbend", 0, -1, 1, 0.01);
start_time = latch(freq == freq, time);
dt = time - start_time;
expo(tau) = exp(0-dt/(tau*SR));
mix(tau, f, pf) = f*(1 - expo(tau)) + pf*expo(tau);
bended_freq = freq + pitchbend * 20;
sfreq = mix(portamento, bended_freq, prevfreq) : min(20000) : max(20);
x = sawtooth(sfreq : smooth(0.999));
process = x * gain * (gate);
| https://raw.githubusercontent.com/Jikstra/faust-plugins/2e91fe48d82e9ea7b74e8ac083dd6d40fb4ca645/sawtoothsynth.dsp | faust | import("music.lib");
import("oscillator.lib");
gate = button("gate");
gain = hslider("gain[unit:dB][style:knob]", -10, -30, +10, 0.1) : db2linear : smooth(0.999);
freq = nentry("freq[unit:Hz]", 440, 20, 20000, 1);
prevfreq = nentry("prevfreq[unit:Hz]", 440, 20, 20000, 1);
portamento = vslider("[5] Portamento [unit:sec] [style:knob] [tooltip: Portamento (frequency-glide)time-constant in seconds]", 0.1,0.01,0.3,0.001);
pitchbend = vslider("pitchbend", 0, -1, 1, 0.01);
start_time = latch(freq == freq, time);
dt = time - start_time;
expo(tau) = exp(0-dt/(tau*SR));
mix(tau, f, pf) = f*(1 - expo(tau)) + pf*expo(tau);
bended_freq = freq + pitchbend * 20;
sfreq = mix(portamento, bended_freq, prevfreq) : min(20000) : max(20);
x = sawtooth(sfreq : smooth(0.999));
process = x * gain * (gate);
|
|
2d9b6eca5ab3eea01bd046a4923f64026cafbdeb839ad73ba776bbd78d3da812 | grame-cncm/GeekBagatelles | Part_Fpublic.dsp | declare name "Part_Fpublic";
declare version "0.3";
declare author "Christophe Lebreton";
declare license "BSD";
import("stdfaust.lib");
nb_soundfile = 5; // number of soundfile
// PROCESS
process = play:(@(ramp*ma.SR): select_sound),(rampa(ramp):1,_:-):*:*(gain):*(temporisation:si.smooth(0.998))
with {
play = ((1-Trig_Accel)<:sh(1),_:*),Trig_Accel;
sh(x,t) = select2(t,x,_) ~ _;
select_sound = _<:select_a_sound,par(i,nb_soundfile,linplayer(sound(i))):multiselect(nb_soundfile):>_;
//-----------------------------------------------------------------------------------
/// Random Selection ID /////////////////////////////////////////////////////////////
random_ID = no.noise:+(1):*(0.5):*(nb_soundfile):int;
//-----------------------------------------------------------------------------------
/// Selection Random Audio file with accelerometer trigger /////////////////////////
select_a_sound(x) = sh(random_ID,x):int;
ramp = 0.001; //second
gain = hslider("gain_dB [acc:2 0 -8 -3 -0.5] [hidden:1]",0.5,0,1,0.001):fi.lowpass(1,1.5);
temporisation = time_count(1) > 2500; // 2.5sec
};
//---------------------------------------------------------------------------------------
// Soundfiles
import("freunde_1_fois_soprano_waveform.dsp");
import("freunde_1_fois_baryton_waveform.dsp");
import("freunde_soprano_waveform.dsp");
import("freunde_baryton_waveform.dsp");
import("freunde_vocalise_waveform.dsp");
sound(0) = freunde_1_fois_soprano_0;
sound(1) = freunde_1_fois_baryton_0;
sound(2) = freunde_soprano_0;
sound(3) = freunde_baryton_0;
sound(4) = freunde_vocalise_0;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////// ANALYSE INPUT FROM ACCELEROMETER //////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////// Acellerometer ////////////////////////////////////////
accel_x = hslider("acc_x [acc:0 0 -30 0 30][hidden:1]",0,-1,1,0.001);
accel_y = hslider("acc_y [acc:1 0 -30 0 30][hidden:1]",0,-1,1,0.001);
accel_z = hslider("acc_z [acc:2 0 -30 0 30][hidden:1]",0,-1,1,0.001);
Accel(x,y,z) = (x*x),(y*y),(z*z):> sqrt;
range_utile = - (offest:*(0.01)):max(0)
with {
offest = hslider("offset [hidden:1]",9,0,100,0.1);
};
//////////////////////////////// Bonk ////////////////////////////////////////
bonk(c) = (c-c@t)>a
with {
t = hslider("winsdow_size [unit:ms][hidden:1]",1,1,7000,1);
a = hslider("threshold [hidden:1]",30,0,30,0.01)*0.01;
};
//////////////////////////////// Antirebond ////////////////////////////////////////
// usage: _:antirebond:_
// input signal will be binary type... int this way it was created
// logical need to don't listen input during "time_count"
choix = select2(_,1,_);
logic_selector = _,(0): ==;
// time count in ms
time_base = 1/ma.SR;
time_count (reset) = +(0)~(+(time_base): * (reset)):*(1000);
decount =_<:time_count<(fin),_:*
with {
fin = hslider("antirebond [unit:ms][hidden:1]", 250,0,500,1);
};
antirebond = (choix : decount <: logic_selector,_) ~_:!,_;
////////////////////////////////////////////////////////////////////////////////////
// usage: Trig_Accel:_
Trig_Accel=Accel(accel_x,accel_y,accel_z):range_utile:bonk:antirebond<:(_>mem);
// VUMETER ////////////////////////////////////////////////////////////////////
//-----------------------------------------------------------------------------------
hmeter(x) = attach(x, envelop(x) : hbargraph("h:Part G/vumeter[2][unit:dB]", -70, +0));
envelop = abs : max ~ -(1.0/ma.SR) : max(ba.db2linear(-70)) : ba.linear2db;
//-----------------------------------------------------------------------------------
// SAMPLE & HOLD ////////////////////////////////////////////////////////////////////
sh(x,t) = select2(t,_,x) ~ _;
// MUTLISWITCH ////////////////////////////////////////////////////////////////////
//multiswitch(n,s) = _<:par(i,n, *(i==int(s)));
multiswitch(n,select,trig) = par(i,n, trig*(i==int(select))) ;
// MULTISELECT ////////////////////////////////////////////////////////////////////
multiselect(n,s) = par(i,n, *(i==int(s))) :> _;
//-----------------------------------------------------------------------------------
/// special phasor start by a trig down and stop after 1 cycle…----------------------
rampa(time,trig) = delta : (+ : select2(trig,_,0) : max(0)) ~ _ : raz
with {
raz(x) = select2 (x > 1, x, 0);
f = 1/(time:max(0.001));
delta = sh(f/ma.SR,trig);
};
//-----------------------------------------------------------------------------------
/// Random Selection ID /////////////////////////////////////////////////////////////
random_ID = no.noise:+(1):*(0.5):*(nb_soundfile):int;
//-----------------------------------------------------------------------------------
/// Selection Random Audio file with accelerometer trigger /////////////////////////
select_a_sound(x) = sh(random_ID,x):int;
//---------------------------------------------------------------------------------------
// read table with linear interpolation
// wf : waveform to read
// x : position to read (0 <= x < size(wf))
lintable(wf,pos) = linterpolation(y0,y1,d)
with {
size = wf : _,!; // size of the waveform
wave = wf : !,_; // content of the waveform
x = fmod(pos+size,size); // make sure we don't read beyond boundaries
x0 = int(x); //
x1 = int(x+1); //
d = x-x0;
y0 = rdtable(size+3,wave,x0); //
y1 = rdtable(size+3,wave,x1); //
linterpolation(v0,v1,c) = v0*(1-c)+v1*c;
};
//---------------------------------------------------------------------------------------
// player(wf, play) : play a waveform while play is 1
// (automatically disable itself when it doesn't have to play)
// wf : the waveform to play
// play : control signal 1-play, 0-stop
linplayer(wf, play) = index : lintable(wf)
with {
index = play : (* : max(-size) : min(size-0.000001)) ~ +(speed); // grow index while playing, 0 otherwise
size = wf : _,!;
speed = hslider("speed [hidden:1]",1,-2,2,0.0001);
};
| https://raw.githubusercontent.com/grame-cncm/GeekBagatelles/d66ba1e022e0ca2386008f30971cd860a97256cb/Part_Fpublic.dsp | faust | number of soundfile
PROCESS
-----------------------------------------------------------------------------------
/ Random Selection ID /////////////////////////////////////////////////////////////
-----------------------------------------------------------------------------------
/ Selection Random Audio file with accelerometer trigger /////////////////////////
second
2.5sec
---------------------------------------------------------------------------------------
Soundfiles
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////// ANALYSE INPUT FROM ACCELEROMETER //////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////// Acellerometer ////////////////////////////////////////
////////////////////////////// Bonk ////////////////////////////////////////
////////////////////////////// Antirebond ////////////////////////////////////////
usage: _:antirebond:_
input signal will be binary type... int this way it was created
logical need to don't listen input during "time_count"
time count in ms
//////////////////////////////////////////////////////////////////////////////////
usage: Trig_Accel:_
VUMETER ////////////////////////////////////////////////////////////////////
-----------------------------------------------------------------------------------
-----------------------------------------------------------------------------------
SAMPLE & HOLD ////////////////////////////////////////////////////////////////////
MUTLISWITCH ////////////////////////////////////////////////////////////////////
multiswitch(n,s) = _<:par(i,n, *(i==int(s)));
MULTISELECT ////////////////////////////////////////////////////////////////////
-----------------------------------------------------------------------------------
/ special phasor start by a trig down and stop after 1 cycle…----------------------
-----------------------------------------------------------------------------------
/ Random Selection ID /////////////////////////////////////////////////////////////
-----------------------------------------------------------------------------------
/ Selection Random Audio file with accelerometer trigger /////////////////////////
---------------------------------------------------------------------------------------
read table with linear interpolation
wf : waveform to read
x : position to read (0 <= x < size(wf))
size of the waveform
content of the waveform
make sure we don't read beyond boundaries
---------------------------------------------------------------------------------------
player(wf, play) : play a waveform while play is 1
(automatically disable itself when it doesn't have to play)
wf : the waveform to play
play : control signal 1-play, 0-stop
grow index while playing, 0 otherwise | declare name "Part_Fpublic";
declare version "0.3";
declare author "Christophe Lebreton";
declare license "BSD";
import("stdfaust.lib");
process = play:(@(ramp*ma.SR): select_sound),(rampa(ramp):1,_:-):*:*(gain):*(temporisation:si.smooth(0.998))
with {
play = ((1-Trig_Accel)<:sh(1),_:*),Trig_Accel;
sh(x,t) = select2(t,x,_) ~ _;
select_sound = _<:select_a_sound,par(i,nb_soundfile,linplayer(sound(i))):multiselect(nb_soundfile):>_;
random_ID = no.noise:+(1):*(0.5):*(nb_soundfile):int;
select_a_sound(x) = sh(random_ID,x):int;
gain = hslider("gain_dB [acc:2 0 -8 -3 -0.5] [hidden:1]",0.5,0,1,0.001):fi.lowpass(1,1.5);
};
import("freunde_1_fois_soprano_waveform.dsp");
import("freunde_1_fois_baryton_waveform.dsp");
import("freunde_soprano_waveform.dsp");
import("freunde_baryton_waveform.dsp");
import("freunde_vocalise_waveform.dsp");
sound(0) = freunde_1_fois_soprano_0;
sound(1) = freunde_1_fois_baryton_0;
sound(2) = freunde_soprano_0;
sound(3) = freunde_baryton_0;
sound(4) = freunde_vocalise_0;
accel_x = hslider("acc_x [acc:0 0 -30 0 30][hidden:1]",0,-1,1,0.001);
accel_y = hslider("acc_y [acc:1 0 -30 0 30][hidden:1]",0,-1,1,0.001);
accel_z = hslider("acc_z [acc:2 0 -30 0 30][hidden:1]",0,-1,1,0.001);
Accel(x,y,z) = (x*x),(y*y),(z*z):> sqrt;
range_utile = - (offest:*(0.01)):max(0)
with {
offest = hslider("offset [hidden:1]",9,0,100,0.1);
};
bonk(c) = (c-c@t)>a
with {
t = hslider("winsdow_size [unit:ms][hidden:1]",1,1,7000,1);
a = hslider("threshold [hidden:1]",30,0,30,0.01)*0.01;
};
choix = select2(_,1,_);
logic_selector = _,(0): ==;
time_base = 1/ma.SR;
time_count (reset) = +(0)~(+(time_base): * (reset)):*(1000);
decount =_<:time_count<(fin),_:*
with {
fin = hslider("antirebond [unit:ms][hidden:1]", 250,0,500,1);
};
antirebond = (choix : decount <: logic_selector,_) ~_:!,_;
Trig_Accel=Accel(accel_x,accel_y,accel_z):range_utile:bonk:antirebond<:(_>mem);
hmeter(x) = attach(x, envelop(x) : hbargraph("h:Part G/vumeter[2][unit:dB]", -70, +0));
envelop = abs : max ~ -(1.0/ma.SR) : max(ba.db2linear(-70)) : ba.linear2db;
sh(x,t) = select2(t,_,x) ~ _;
multiswitch(n,select,trig) = par(i,n, trig*(i==int(select))) ;
multiselect(n,s) = par(i,n, *(i==int(s))) :> _;
rampa(time,trig) = delta : (+ : select2(trig,_,0) : max(0)) ~ _ : raz
with {
raz(x) = select2 (x > 1, x, 0);
f = 1/(time:max(0.001));
delta = sh(f/ma.SR,trig);
};
random_ID = no.noise:+(1):*(0.5):*(nb_soundfile):int;
select_a_sound(x) = sh(random_ID,x):int;
lintable(wf,pos) = linterpolation(y0,y1,d)
with {
d = x-x0;
linterpolation(v0,v1,c) = v0*(1-c)+v1*c;
};
linplayer(wf, play) = index : lintable(wf)
with {
size = wf : _,!;
speed = hslider("speed [hidden:1]",1,-2,2,0.0001);
};
|
33bf26278eaacdf6c376548ff438c5309188315f416f5fba79e77ab576f281e0 | grame-cncm/GeekBagatelles | freunde_1_fois_soprano_waveform.dsp | freunde_1_fois_soprano_0 = waveform{-0.00140381,-0.0017395,-0.00088501,-0.000610352,-0.000457764,-0.00201416,-0.00140381,-0.0017395,-0.000213623,-0.000396729,-0.00189209,-0.00256348,-0.00128174,0.00012207,-0.000335693,-0.00146484,-0.00213623,-0.00106812,6.10352e-05,-0.000274658,-0.00140381,-0.00167847,-0.00106812,-0.000610352,-0.000549316,-0.000610352,-0.00146484,-0.00128174,-0.00146484,-0.00012207,-0.000274658,-0.00112915,-0.00201416,-0.000732422,-0.000396729,-0.000274658,-0.00167847,-0.00213623,-0.00146484,0.000610352,-0.000946045,-0.0015564,-0.0012207,-0.00134277,-0.000213623,-0.00112915,-0.00112915,-0.0017395,-0.000549316,-0.000549316,-0.000610352,-0.00201416,-0.0017395,-0.00106812,-0.000396729,-0.00167847,-0.00161743,-0.00112915,-0.00128174,-0.00128174,-0.00140381,-0.00106812,-0.000610352,-0.000671387,-0.0015564,-0.0015564,-0.00088501,-0.00128174,-0.000793457,-6.10352e-05,-0.00106812,-0.0015564,-0.00128174,-0.000610352,0.000213623,-0.000335693,-0.00128174,-0.00140381,-0.000396729,-0.000274658,-0.000396729,-0.0012207,-0.00146484,-0.00112915,-0.000274658,-0.000457764,-0.000671387,-0.00112915,-0.00180054,-0.00112915,-0.00012207,-0.000946045,-0.00146484,-0.00112915,-0.00088501,-0.00106812,-0.000732422,-0.00134277,-0.00106812,-0.000549316,-0.00112915,-0.00146484,-0.00146484,-0.00112915,-0.000335693,-6.10352e-05,-0.000946045,-0.0017395,-0.00134277,0.000213623,-0.000610352,-0.00012207,-0.00128174,-0.00088501,-0.00134277,-0.000274658,-6.10352e-05,0,-0.0012207,-0.00134277,-0.00106812,-6.10352e-05,0.00012207,-0.00112915,-0.00280762,-0.00140381,-0.000274658,-0.000274658,-0.000793457,-0.00201416,-0.00100708,-0.00100708,-0.000335693,-0.00146484,-0.00167847,-0.000793457,-0.000549316,-0.00088501,-0.00167847,-0.00161743,-0.000732422,-6.10352e-05,-0.0012207,-0.00201416,-0.00088501,-0.000671387,-0.000610352,-0.0012207,-0.00201416,-0.0015564,-0.000946045,-0.000274658,-0.000671387,-0.000732422,-0.00112915,-0.00146484,-0.000610352,-0.000274658,-0.00012207,-0.0015564,-0.00180054,-0.00195312,-0.000793457,0.00012207,-0.00112915,-0.0017395,-0.0015564,-0.000610352,-0.000549316,-0.000793457,-0.0015564,-0.00140381,-0.000549316,-0.000671387,-0.00100708,-0.00106812,-0.000549316,-0.00167847,-0.00180054,-0.000610352,-0.000793457,-0.000671387,-0.00161743,-0.000946045,-0.0012207,-0.00112915,-0.000732422,-0.000671387,-0.00140381,-0.00213623,-0.00167847,-0.000671387,-0.000396729,-0.00134277,-0.00222778,-0.00146484,-6.10352e-05,-0.00140381,-0.00189209,-0.000549316,-0.000732422,-0.00195312,-0.00128174,-0.00100708,-0.000732422,-0.00134277,-0.0017395,-0.00222778,-0.00088501,0,-0.0015564,-0.00140381,-0.00112915,-0.00195312,-0.00100708,-0.00128174,-0.000732422,-0.00100708,-0.000671387,-0.0015564,-0.0017395,-0.00140381,-0.000946045,-0.00167847,-0.00134277,-0.00189209,-0.00247192,-0.000946045,0.00012207,-0.00100708,-0.00296021,-0.00262451,-0.00161743,-0.000396729,-0.00128174,-0.00222778,-0.00228882,-0.00189209,-0.000610352,-0.000732422,-0.0015564,-0.00189209,-0.0012207,-0.000274658,-0.00088501,-0.00189209,-0.00167847,-0.00128174,-0.000610352,-0.00201416,-0.00234985,-0.00134277,-0.00088501,-0.000671387,-0.00146484,-0.00167847,-0.00228882,-0.00222778,-0.0012207,-0.00100708,-0.000396729,-0.000610352,-0.0020752,-0.00195312,-6.10352e-05,0.000335693,-0.00161743,-0.0032959,-0.00241089,0.000396729,0.00112915,-0.000610352,-0.0020752,-0.0017395,0.000274658,6.10352e-05,-0.0012207,-0.0012207,-0.00088501,-0.000610352,-0.00146484,-0.0015564,-0.00134277,0.000335693,-6.10352e-05,-0.00134277,-0.0015564,-0.000457764,0.00012207,-0.00088501,-0.000946045,-0.0017395,-0.0015564,-0.000610352,0.000396729,-0.000610352,-0.000946045,-0.00106812,-0.000732422,-0.00106812,-0.00134277,-0.00161743,-0.0015564,-0.00189209,-0.0012207,-0.000610352,-0.000396729,-0.000457764,-0.00222778,-0.00128174,-6.10352e-05,-0.000274658,-0.00140381,-0.00140381,-0.00112915,-0.00106812,6.10352e-05,-0.00195312,-0.00222778,-0.00112915,-0.000457764,-0.000610352,-0.00161743,-0.00140381,-0.0020752,-0.000610352,0.000274658,-0.00180054,-0.0012207,-0.00088501,-0.000274658,-0.000610352,-0.00241089,-0.000396729,-0.0012207,0.00012207,-0.00180054,-0.00241089,-0.00100708,-0.000610352,0,-0.000610352,-0.0017395,-0.00195312,-0.00228882,0.000396729,0.000671387,-0.00140381,-0.00308228,-0.00146484,0.000793457,-0.000396729,-0.00195312,-0.00189209,-0.00167847,0.00012207,-0.000549316,-0.000671387,-0.00140381,-0.000946045,-0.000610352,-0.000335693,-0.000335693,-0.00247192,-0.00180054,-0.000274658,0.00088501,-0.00088501,-0.00228882,-0.00146484,-0.000396729,-0.000213623,-6.10352e-05,-0.00180054,-0.00146484,-0.00100708,-0.000396729,-0.00134277,-0.000946045,-0.0012207,-0.00100708,-0.000793457,-0.000396729,-0.00167847,-0.0012207,6.10352e-05,-6.10352e-05,-0.00112915,-0.00357056,-0.000946045,0.000457764,0.000793457,-0.000335693,-0.00161743,-0.00167847,-0.000946045,-0.00012207,0.00012207,-0.00106812,-0.00213623,-0.00195312,-0.000457764,0.000671387,0,-0.00189209,-0.00247192,-0.00012207,-6.10352e-05,-0.000335693,-0.00100708,-0.00195312,-0.00161743,-0.000396729,-0.000213623,-0.000946045,-0.000671387,-0.00134277,-0.00128174,-0.00128174,-0.00100708,-0.000549316,-0.00128174,-0.00274658,-0.00106812,-0.000213623,-0.000213623,-0.00234985,-0.00161743,-0.00088501,0,-0.00189209,-0.00234985,-0.00161743,-0.000671387,-0.00112915,-0.000396729,-0.00189209,-0.00189209,-0.00195312,0.00140381,-0.000335693,-0.00323486,-0.00167847,-0.000549316,0.000457764,-0.000274658,-0.00180054,-0.00363159,-0.00106812,0.000671387,-0.00112915,-0.00222778,-0.00262451,-0.00241089,0,0.000610352,-0.000671387,-0.0032959,-0.00134277,-6.10352e-05,0.000457764,-0.000732422,-0.00201416,-0.00323486,-0.000335693,0,-0.0017395,-0.000732422,-0.0020752,-0.00088501,-0.00088501,0,-0.00140381,-0.00201416,-0.000457764,0.000549316,-0.000213623,-0.0012207,-0.0015564,-0.000610352,-0.000396729,-0.000671387,-0.00195312,-0.000946045,-0.000396729,-0.00128174,-0.00088501,-0.00241089,-0.00106812,0,-0.00088501,-0.00106812,-0.000396729,-0.00106812,-0.000671387,0.00012207,-0.000793457,-0.00146484,-0.000457764,-0.0012207,-0.000732422,0.000610352,-6.10352e-05,-0.00134277,-0.000457764,-0.000671387,-0.0015564,0.000213623,0.000213623,-0.0015564,-0.00189209,-0.000213623,-6.10352e-05,-0.000793457,-0.0015564,-0.0017395,-0.00012207,0.000549316,-0.0015564,-0.00189209,-0.000335693,0.000549316,-0.0012207,-0.00222778,-0.00274658,-0.00146484,0.000457764,0.000335693,-0.00228882,-0.0020752,-0.0012207,-0.0012207,0.000396729,0.000274658,-0.00201416,-0.00134277,-0.00100708,-0.000671387,-0.000946045,-0.00088501,-0.00146484,-0.00213623,-6.10352e-05,-0.000457764,-0.000274658,-0.00100708,-0.00195312,-0.00146484,-0.00112915,-0.0012207,-0.00268555,-0.00146484,-0.00088501,-0.000549316,-0.000946045,-0.00213623,0.000213623,0.000671387,-0.00146484,-0.00357056,-0.000610352,-0.000213623,-0.0015564,-0.00146484,0.000335693,-0.0020752,-0.00112915,-0.000457764,-0.0012207,-0.0015564,6.10352e-05,-0.00180054,-0.00302124,-0.000671387,-0.000396729,-0.0017395,-0.00228882,-0.0015564,0.000396729,0.000274658,-0.00241089,-0.00280762,-0.000274658,0.000274658,-0.000732422,-0.00302124,-0.00180054,-0.000274658,0.000610352,-0.000610352,-0.00323486,-0.00296021,-0.00012207,0.000457764,-0.00106812,-0.00222778,-0.0015564,0.000274658,-0.000732422,-0.0015564,-0.00167847,-6.10352e-05,-0.000213623,-0.00140381,-0.00302124,-0.00128174,0.000457764,-0.000671387,-0.00262451,-0.0017395,-0.000274658,-0.00088501,-0.000793457,-0.00167847,-0.00201416,0.000213623,-0.000946045,-0.0017395,-0.00180054,0.000274658,-0.000335693,-0.00161743,-0.00256348,-0.00140381,-0.000213623,-0.00012207,-0.000335693,-0.00357056,-0.00234985,6.10352e-05,0.000457764,-0.000549316,-0.00256348,-0.00195312,-0.00012207,0.00012207,-0.00140381,-0.00161743,-0.000732422,-0.00106812,-0.00180054,-0.000396729,-0.000549316,-0.00161743,-0.0015564,-0.00167847,-0.00134277,-0.000793457,0.000274658,-0.00189209,-0.00256348,-0.00088501,-0.00088501,6.10352e-05,-0.00280762,-0.00256348,-0.000396729,0.00146484,-0.00167847,-0.00268555,-0.00106812,0.0015564,-0.00012207,-0.00335693,-0.00323486,-6.10352e-05,0.00134277,-0.00106812,-0.00213623,-0.00195312,-0.00228882,-0.000213623,0.000671387,-0.00140381,-0.00256348,-0.00201416,-0.000610352,0.000274658,-0.00128174,-0.0017395,-0.00268555,-0.00222778,-0.00012207,-0.000274658,-0.000213623,-0.00134277,-0.00195312,-0.00167847,-0.000335693,-0.000274658,-0.0012207,-0.0015564,-0.00134277,-0.000274658,-0.000793457,-0.00167847,-0.00100708,-0.000732422,-0.000274658,-0.000946045,-0.00100708,0.000274658,-0.000274658,-0.00241089,-0.00247192,-0.0020752,0,-0.000274658,-0.00106812,-0.00140381,-0.000732422,0.00012207,-0.00167847,-0.000671387,0.000396729,-0.000274658,-0.00167847,-0.00213623,-0.000213623,0.000396729,0.000213623,-0.00228882,-0.00134277,0.000335693,-0.000457764,-0.00128174,-0.00106812,0.000549316,-6.10352e-05,-0.00189209,-0.00167847,-0.00088501,0.000671387,0.000335693,-0.00180054,-0.00323486,-0.00140381,0.00112915,0.000457764,-0.00274658,-0.00335693,-0.00241089,0.00180054,0.00341797,-0.00180054,-0.00442505,-0.00247192,0.00180054,0.000549316,-0.00106812,-0.00289917,-0.00323486,0.00140381,0.00128174,-0.000549316,-0.00256348,-0.00213623,-0.000335693,0.00012207,0.000335693,-0.00241089,-0.00241089,-0.000335693,0.000793457,0.000549316,-0.00256348,-0.00302124,-0.00180054,0.000671387,0.000946045,-0.00256348,-0.0032959,-0.00280762,-0.000549316,0.00161743,-0.00012207,-0.00180054,-0.00302124,-6.10352e-05,0.00201416,0.000213623,-0.00375366,-0.00357056,-0.0012207,0.00106812,-0.000274658,-0.00274658,-0.00402832,-0.0015564,0.00167847,0.000793457,-0.000793457,-0.00262451,-0.00274658,-0.00128174,0.00100708,0.0017395,-0.00247192,-0.00363159,-0.000335693,0.000671387,0.00100708,-0.00134277,-0.00134277,-0.0020752,-0.000396729,-6.10352e-05,-0.00201416,-0.00128174,-0.00088501,-0.00140381,-0.000549316,0,-0.000457764,-0.00280762,0.000671387,0.00088501,-0.00128174,-0.00268555,-0.00241089,-0.00100708,6.10352e-05,-0.000610352,-0.0017395,-0.00308228,-0.00088501,0.000457764,0.00012207,-0.000793457,-0.00222778,-0.00375366,-0.00134277,0.000457764,6.10352e-05,-0.00280762,-0.00436401,-0.00180054,0.000732422,0.00234985,-0.00201416,-0.00402832,-0.0015564,0.000396729,-0.00100708,-0.00363159,-0.0017395,-0.00167847,-0.00201416,-6.10352e-05,-0.000274658,-0.00262451,-0.00369263,0.000457764,0.000396729,-0.0017395,-0.00469971,-0.00262451,-0.00128174,0.000732422,-0.000274658,-0.00314331,-0.00289917,-0.00100708,0.000274658,-0.000732422,-0.00323486,-0.00341797,-0.0012207,-0.00012207,-0.00167847,-0.00189209,-0.00280762,-0.00195312,0,0.000274658,-0.0020752,-0.00436401,-0.00201416,0.0015564,0.000671387,-0.00262451,-0.00408936,-0.0017395,0.00106812,0.000274658,-0.00222778,-0.00323486,-0.00140381,-6.10352e-05,-0.000274658,-0.00112915,-0.00167847,-0.00134277,-0.000732422,-0.000213623,-0.0012207,-0.00323486,-0.00134277,-0.00112915,-0.000213623,-0.00161743,-0.00180054,-0.00100708,0.000335693,0.00106812,-0.00256348,-0.00180054,-0.0017395,-0.00088501,-0.00268555,-0.00100708,0.0012207,-0.0012207,-0.00222778,-0.00134277,0.00161743,0.00106812,-0.00161743,-0.0038147,-0.00274658,0.00134277,0.000946045,-0.0017395,-0.00448608,-0.000396729,0.00106812,0.000946045,-0.00189209,-0.00112915,6.10352e-05,-0.000457764,-0.00161743,-0.0020752,-0.00112915,6.10352e-05,6.10352e-05,-0.00112915,-0.00213623,-0.000274658,0.00088501,-0.000457764,-0.00247192,-0.00195312,-0.000946045,-6.10352e-05,-0.00106812,-0.00134277,-0.00012207,0.00146484,6.10352e-05,-0.00323486,-0.00146484,0.00128174,-0.00088501,-0.00247192,-0.00222778,0.000213623,0.00106812,0.000213623,-0.00241089,-0.00134277,0.00012207,-0.000213623,-0.000549316,-0.0015564,0.00140381,-0.00180054,-0.00357056,-0.00140381,0.0020752,0.00012207,-0.00357056,-0.00268555,0.000335693,0.00167847,6.10352e-05,-0.00213623,-0.00180054,-0.0012207,-0.0012207,-6.10352e-05,0.00140381,-0.000610352,-0.00201416,-0.00180054,-0.000671387,0.000549316,0.00146484,-0.00262451,-0.00262451,-0.000549316,0.000732422,-0.00189209,-0.000335693,0.000213623,-0.00167847,-0.000671387,-0.000946045,-0.00106812,-0.00146484,0.000213623,0.00146484,-0.00201416,-0.00323486,-0.00247192,0.00189209,0.00140381,-0.00289917,-0.00415039,-0.000274658,0.00247192,0.000732422,-0.00335693,-0.00341797,0,0.00128174,-0.00146484,-0.0017395,-0.000274658,-0.00112915,-0.00234985,-0.00012207,0.00140381,-0.000213623,-0.00247192,-0.00308228,-0.000335693,0.00134277,-0.000335693,-0.00323486,-0.00323486,-0.00112915,0.000274658,-0.0020752,-0.00241089,-0.00161743,-0.00012207,0.00100708,-0.000732422,-0.0020752,-0.00213623,-0.00146484,0.000671387,-0.00140381,-0.00241089,0.000274658,-0.00128174,-0.00180054,-0.00012207,0.000732422,-0.00161743,-0.00134277,-0.000732422,-0.00222778,-0.00134277,0.000396729,-0.0017395,-0.0032959,-0.00128174,0.000793457,-0.00088501,-0.0020752,-0.00296021,-0.00128174,0.00189209,-0.000732422,-0.00302124,-0.00296021,0.00100708,-0.000274658,-0.000946045,-0.00180054,-0.00213623,-0.000457764,-0.00100708,-0.00189209,-0.0015564,-0.00134277,-0.00180054,-0.0012207,-0.00201416,-0.00314331,-0.00424194,-0.00140381,0.0017395,0.000793457,-0.00268555,-0.00524902,-0.00088501,0.00222778,-0.000549316,-0.00357056,-0.0050354,-0.00189209,0.000396729,0.00140381,-0.00128174,-0.00308228,-0.00213623,0.000335693,0.00228882,-0.000549316,-0.0032959,-0.00088501,0.00100708,-0.00228882,-0.00268555,0.000457764,0.0012207,-0.000549316,-0.00314331,-0.00296021,0.00112915,0.00112915,-0.00106812,-0.00396729,-0.00213623,-0.00012207,-0.000610352,-0.00106812,-0.00195312,0.00012207,-0.00012207,-0.00201416,-0.00112915,-0.00088501,6.10352e-05,-0.000274658,-0.00289917,-0.003479,0.000610352,0.00161743,-0.0012207,-0.003479,-0.00180054,0.000457764,0.00134277,0.000671387,-0.00088501,-0.0020752,-0.00088501,0.00180054,-0.000610352,-0.00262451,-0.00302124,0.0012207,0.000793457,-0.00134277,-0.00180054,-0.000946045,-0.000610352,0.00134277,0,-0.0032959,-0.00308228,0.00161743,-0.00088501,-0.00161743,-0.00134277,0.000213623,-0.00180054,-0.00140381,-0.00213623,-0.000732422,0.000610352,-0.000335693,-0.00335693,-0.000457764,-0.000274658,-0.00167847,-0.00213623,-0.000610352,-0.00100708,-0.0012207,-0.000457764,-0.00213623,-0.00112915,-0.0012207,6.10352e-05,-0.00140381,-0.00189209,-0.0012207,-0.000274658,0.000732422,-0.00140381,-0.00289917,-0.000549316,0.00012207,-0.000732422,-0.00134277,-0.00088501,-0.00100708,-0.00213623,-0.00100708,-0.00128174,-0.00088501,6.10352e-05,-0.00088501,-0.00128174,-0.00167847,-0.000457764,0.0012207,-0.00134277,-0.00369263,-0.000946045,0.00146484,-0.00189209,-0.0038147,-0.00140381,0.000274658,0.000274658,-0.00195312,-0.00247192,-0.00140381,0.00112915,-0.000396729,-0.00134277,0.000274658,-0.00088501,-0.00323486,0.000732422,0.00228882,0.00088501,-0.00296021,-0.00256348,-0.00012207,0.000457764,-0.000213623,-0.00357056,-0.0020752,0.000396729,-0.000396729,0.000335693,0.000549316,-0.00256348,-0.00262451,-0.00140381,0.000671387,0.000549316,-0.0015564,-0.00268555,-0.00228882,0.000671387,-0.00140381,-0.00402832,-0.00189209,0.000274658,-6.10352e-05,-0.00341797,-0.00341797,-0.000793457,0.000396729,-0.000457764,-0.00268555,-0.00180054,-0.000549316,0.00012207,0.0015564,-0.00088501,-0.00274658,-0.00189209,0.000213623,0.00241089,-0.0032959,-0.0038147,-0.0015564,0.00201416,-0.0012207,-0.00180054,-0.00189209,-0.00201416,-0.00247192,-0.0020752,-0.000335693,-0.00201416,-0.00201416,-0.000732422,-0.00268555,-0.000549316,-0.000213623,-0.00106812,-0.0032959,-0.00268555,-0.00100708,-0.00146484,0.000793457,-0.0012207,-0.00241089,-0.00180054,0.00189209,0.0017395,-0.00280762,-0.00234985,-0.0012207,0,0.0015564,0.000335693,-0.00161743,-0.00308228,-0.000396729,0.00161743,-0.000793457,0.000671387,-0.00213623,-0.000671387,-0.00112915,-6.10352e-05,-0.00180054,-0.00128174,0.00106812,-0.0020752,-0.00112915,0,-0.00012207,0.00222778,-0.000274658,-0.00262451,-0.00201416,6.10352e-05,0.0015564,-6.10352e-05,-0.000732422,-0.00274658,-0.00256348,-0.00012207,0.00201416,0.000549316,-0.00296021,-0.00222778,0.000396729,0.00335693,0.00180054,-0.00323486,-0.00408936,-0.00256348,0.000335693,0.00213623,-0.00262451,-0.00469971,-0.00247192,0.000732422,0.000610352,-0.003479,-0.00268555,-0.00296021,0.00241089,0.00100708,-0.0012207,-0.00268555,-0.00341797,0.000610352,-0.00012207,-0.00268555,-0.00424194,-0.00256348,-0.000457764,-0.00128174,-0.00146484,-0.00357056,-0.00241089,-0.000213623,-0.00106812,-0.00201416,-0.00247192,-0.0012207,-0.00106812,-6.10352e-05,-0.000457764,-0.00189209,-0.003479,-0.0032959,0.0012207,0.00140381,-0.00189209,-0.00430298,-0.00335693,0.000274658,6.10352e-05,-0.00228882,-0.00241089,-0.000457764,-0.00189209,-0.00146484,0.000732422,-0.000213623,-0.00375366,-0.00247192,-0.00161743,0.00234985,0.00012207,-0.00402832,-0.00415039,0.00241089,0.00457764,-0.00448608,-0.00390625,-0.00167847,0.00180054,0.00180054,-0.000335693,-0.00189209,-0.00134277,0.00100708,-0.0012207,-0.00106812,-0.000335693,-0.00228882,-0.0015564,0.00088501,-0.000732422,-0.00180054,-0.00146484,-0.000457764,-0.000671387,-0.000213623,-0.000274658,-0.00012207,-0.0020752,-0.00289917,-0.00228882,0.00146484,-0.00088501,-0.00100708,-0.00262451,-0.00189209,0.00012207,0.000671387,-0.00424194,-0.00390625,-0.00146484,-0.000549316,0.000213623,-0.003479,-0.00161743,-0.00112915,0.00228882,0.000396729,-0.00296021,-0.00363159,-0.00457764,0.000274658,-0.00189209,-0.00402832,-0.00482178,-0.00140381,0.00262451,-0.00262451,-0.00180054,-0.00296021,-0.00140381,-0.000213623,-0.00106812,-0.00262451,-0.00375366,0,0.000549316,-0.00296021,-6.10352e-05,-0.00140381,-0.000732422,-0.00296021,-0.00314331,-0.0015564,-0.00112915,-0.00100708,-0.00180054,-0.00341797,0.000732422,-0.000274658,0.000335693,-0.000793457,-0.000610352,-0.00213623,-0.00234985,0.000335693,-0.00180054,-0.00189209,-0.00112915,-0.00289917,0.000396729,0.00140381,0.000732422,-0.00088501,-0.000793457,0.0017395,0.000793457,-0.000732422,-0.000732422,-0.0020752,0.00222778,0.000396729,-0.00134277,-0.00201416,0.000457764,0.00167847,0.00161743,0.000610352,-0.000793457,-0.000396729,-0.00012207,-0.00128174,-0.00195312,-0.00180054,0.0015564,-0.00274658,-0.00323486,-6.10352e-05,0.00167847,0.000274658,-0.00390625,-0.00408936,-0.00430298,0.000457764,0.00375366,-0.00134277,-0.00134277,-0.00228882,-6.10352e-05,0.00012207,0.000335693,-0.000793457,-0.00543213,0.000274658,-0.000213623,-0.000793457,-0.00262451,-0.00363159,-0.000335693,0.00201416,-0.00012207,-0.00424194,-0.00491333,-0.0012207,-0.000610352,-0.00088501,-0.00222778,-0.00543213,-0.00515747,0.00167847,0.00335693,-0.00146484,-0.00759888,-0.00302124,-0.00180054,0.00189209,-0.000335693,-0.00375366,-0.00234985,-0.000732422,0.00189209,0.000671387,0.000671387,-0.00195312,-0.00564575,0.000671387,0.00134277,0.000610352,-0.0017395,-0.00436401,0,0.00195312,0.00268555,-0.0020752,-0.00375366,0.00100708,0.00256348,0.00201416,-0.00369263,-0.00476074,-0.000274658,0.00280762,0.0015564,-0.00256348,-0.00241089,6.10352e-05,0.00167847,0.00308228,-0.00146484,-0.00357056,-0.00161743,0.000213623,0.00408936,-0.000396729,-0.00195312,-0.00201416,0.00180054,0.003479,-0.000732422,0.000335693,-0.000732422,-0.00268555,-0.00189209,-0.00180054,0.000946045,-0.00363159,-0.000457764,-6.10352e-05,0.000549316,0.00167847,-0.00268555,-0.000213623,-0.00161743,-0.000396729,-0.00335693,-0.00296021,-0.00424194,-0.00704956,-0.00228882,0.00112915,-0.000335693,-0.00650024,-0.00491333,0.00213623,0.00088501,-0.000946045,-0.00448608,-0.00088501,0.00201416,0.00201416,-0.0012207,-0.000457764,0.00134277,-0.00189209,-0.00424194,-0.00256348,-0.00201416,-0.00363159,-0.00112915,-0.00268555,-0.00463867,-0.000213623,0.00341797,6.10352e-05,-0.00369263,-0.000793457,0.0020752,0.0015564,-0.0020752,-0.00402832,-0.00012207,0.000671387,0.000946045,-0.00482178,-0.0038147,0.000396729,0.00112915,0.00247192,-0.0017395,-0.00390625,-0.00140381,0.00274658,0.00323486,0.000274658,-0.00100708,-0.00189209,0.00195312,0.00408936,0.00128174,-0.000671387,-0.00167847,0.000274658,0.000793457,-0.00012207,-0.00140381,-0.00268555,-0.00134277,0.00112915,-0.00112915,-0.00308228,6.10352e-05,0.00161743,0.000793457,0.000396729,-0.00128174,-0.00201416,-0.000213623,-0.00161743,-0.00509644,-0.00274658,-0.00201416,-0.00189209,-0.00289917,-0.00296021,-0.000549316,-0.00262451,-0.00195312,-0.00363159,0.00106812,0,-0.00390625,-0.00341797,0.00128174,0.000732422,-0.00161743,6.10352e-05,-0.00213623,0.000549316,-0.000793457,-0.00247192,-0.00408936,-0.00234985,0.00140381,-0.00289917,-0.00256348,0.000457764,-0.0020752,0.0020752,-0.00213623,-0.0017395,-0.00167847,-0.00100708,-0.0012207,-0.00598145,-0.00112915,0.000671387,-0.000732422,-0.00228882,-0.00195312,-0.00012207,-0.00128174,-0.00195312,-0.003479,-0.00268555,0,0.000610352,-0.00088501,-0.00180054,-0.000457764,-0.00088501,0.000671387,0.00100708,-0.00436401,-0.0012207,6.10352e-05,-0.00088501,-0.000396729,-0.00128174,-0.000549316,-0.00100708,-0.000274658,-0.00140381,-0.000457764,0.000213623,-0.00268555,-0.00247192,-0.000549316,0.0020752,0.000457764,-0.00390625,-0.00247192,0.00296021,0.0015564,-0.00335693,-0.00302124,-0.000274658,0,-0.00012207,-6.10352e-05,-0.00161743,-0.00180054,-6.10352e-05,-0.000274658,-0.00012207,-0.00274658,-0.00509644,-0.00476074,0.00213623,0.00375366,-0.0038147,-0.00280762,0.00128174,-0.000457764,0.00189209,0.000213623,-0.00222778,-0.00314331,0.00289917,0.0032959,-0.00424194,-0.00415039,-0.00280762,0.000396729,-0.00140381,-0.00247192,-0.00268555,-0.00234985,-0.00180054,-0.00415039,-0.000396729,-0.000274658,-0.00314331,-0.00247192,-0.00234985,0.00106812,-0.000793457,-0.00390625,-0.00357056,-0.00146484,0.00222778,-0.00357056,-0.00482178,-0.00167847,-0.00088501,-0.00161743,-0.00531006,-0.00402832,-0.00100708,0.00161743,-0.00280762,-0.00256348,-0.0015564,0.000610352,-6.10352e-05,-0.00296021,-0.0017395,0.00128174,6.10352e-05,-0.00280762,-0.000610352,-0.00146484,0.000610352,0.00274658,-0.00268555,-0.00637817,-0.00241089,0.00726318,0.00228882,-0.00592041,-0.00390625,0.00195312,0.00463867,0.00128174,-0.00491333,-0.00180054,0.00335693,0.0050354,-0.000213623,-0.000274658,0.000671387,-0.00088501,-0.00140381,-0.00112915,0.000549316,-0.000213623,-0.00314331,-0.00323486,-0.000335693,0.00582886,0.00457764,-0.00195312,-0.00448608,-0.00128174,0.00308228,-0.00106812,-0.00476074,-0.00256348,-0.00195312,-0.0012207,-0.0015564,-0.00189209,-0.00222778,0.00106812,-0.0012207,-0.00476074,-0.000793457,0.000213623,-0.000610352,-0.00256348,-0.00268555,-0.00167847,-0.00112915,-0.000671387,-0.00448608,-0.00314331,0.000793457,-0.00189209,-0.00408936,-0.00396729,-0.00106812,0.00161743,0.000274658,-0.00491333,-0.00610352,0.00088501,-0.000457764,-0.00396729,-0.00256348,-0.00363159,-0.00302124,0.00161743,0.00296021,-0.000213623,-0.00262451,-0.00375366,-0.00228882,0.00228882,0.000335693,-0.00375366,-0.00234985,0.000732422,0.00140381,0.00189209,0.00396729,0.00112915,-0.00161743,0.00189209,-0.00088501,0.000396729,0.00106812,-6.10352e-05,-0.00241089,-0.00128174,0.00509644,0.00262451,0.000549316,-0.00357056,-0.000793457,0.00161743,0.0038147,0.00161743,-0.0012207,-0.00296021,0,0.00100708,-0.00146484,-0.00140381,-0.00274658,-0.00195312,-0.00128174,0.00128174,-0.00369263,-0.00262451,0.00335693,-0.000732422,-0.00564575,-0.00247192,-0.00140381,-0.00134277,0.000610352,-0.00140381,-0.00457764,-0.00442505,-0.00195312,-0.0020752,0.00222778,-0.00201416,-0.00549316,-0.00195312,0.0020752,-0.000610352,-0.00408936,-0.00247192,-0.00323486,-0.000946045,0.000671387,-0.00323486,-0.00274658,-0.000793457,-0.00146484,-0.00408936,-0.00323486,-0.000671387,-0.00314331,-0.000549316,0.00167847,-0.00213623,-0.0020752,-0.000335693,-6.10352e-05,-0.0012207,0.00128174,-0.00201416,-0.00314331,0.00112915,0.00537109,0.00241089,-0.000213623,0.000549316,-0.00228882,-0.000549316,0.00302124,0.000274658,-0.00323486,0.00228882,0.00463867,-0.00146484,-0.000946045,0.00234985,0.0015564,-6.10352e-05,-0.00296021,0.00167847,0.00424194,0.0015564,-0.00234985,-0.000732422,0.00396729,-0.000946045,-0.00161743,-0.000335693,0.00222778,0.00140381,-6.10352e-05,-0.0017395,-0.003479,0.000213623,-0.00213623,-0.00234985,-0.00436401,-0.00296021,-0.000213623,0.00289917,0.000793457,-0.0067749,-0.00436401,0.00247192,0.00549316,-0.00189209,-0.00704956,-0.00280762,0.000946045,0.00390625,-0.00222778,-0.00738525,-0.00396729,0.00228882,0.00289917,-0.00491333,-0.0085144,-0.00234985,0.000274658,0.00180054,-0.00430298,-0.00683594,-0.000335693,0.00222778,0.000671387,-0.00531006,-0.00436401,-0.000549316,0.00088501,0.00088501,-0.0038147,-0.00357056,-0.000335693,0.00390625,-0.00106812,-0.00436401,-0.00274658,-0.00201416,0,0.0017395,0.0012207,-0.00491333,-0.00167847,6.10352e-05,0.00280762,0.00262451,-0.00167847,-0.00531006,-0.000549316,0.00515747,-0.00088501,-0.00241089,-0.00256348,-0.00274658,0.000732422,0.00402832,-0.000274658,-0.00604248,-0.000335693,0.00167847,-0.00106812,0.00012207,0.00128174,-0.003479,-0.000793457,0.00106812,0.000274658,0.000396729,0.000549316,-0.00112915,-0.00524902,-0.00140381,0.00100708,-0.00296021,-0.00213623,-0.0015564,0.00161743,0.00012207,-0.00161743,-0.000793457,-0.00390625,0.000946045,-0.00195312,-0.00448608,-0.00161743,0.000274658,-0.00140381,-0.00543213,-0.00390625,-0.0038147,-0.00289917,0.00180054,-0.00375366,-0.00772095,0.000396729,0.00537109,0.00430298,-0.000549316,-0.000671387,-0.0050354,-0.000610352,0.00335693,-0.00112915,-0.00430298,-0.0067749,-0.00189209,0.00228882,0.00341797,-0.00274658,-0.00878906,-0.000793457,0.00448608,0.00247192,-0.0032959,-0.00750732,-0.00180054,0.00457764,0.00402832,-0.00408936,-0.0105896,-0.0020752,0.00610352,0.00213623,-0.00671387,-0.00912476,-0.00341797,0.00274658,0.00442505,-0.00140381,-0.00924683,-0.00274658,0.00738525,0.00558472,-6.10352e-05,-0.00616455,-0.00866699,0.000549316,0.00772095,0.000610352,-0.00744629,-0.00430298,0.00430298,0.00683594,0.000671387,-0.00515747,-0.00939941,0.00128174,0.00979614,-0.00213623,-0.012146,-0.00811768,0.00341797,0.00650024,0.000732422,-0.0050354,-0.0114136,-0.000457764,0.0032959,-0.000335693,-0.00262451,-0.00726318,-0.00448608,0.000793457,0.00610352,6.10352e-05,-0.00457764,-0.00088501,0.000549316,0.00415039,0.00106812,0.00112915,-0.00402832,-0.00436401,0.00314331,0.00408936,0.00308228,-0.00604248,-0.0065918,6.10352e-05,0.00509644,6.10352e-05,-0.00845337,-0.00469971,-0.000549316,0.003479,-0.00189209,-0.0062561,-0.00570679,-0.00491333,0.00671387,0.000274658,-0.00799561,-0.0085144,-0.00213623,0.00549316,0.0038147,-0.00296021,-0.00924683,-0.000946045,0.00335693,0.000335693,-0.00592041,-0.00570679,-0.00189209,0.000671387,0.003479,0.000549316,-0.00442505,-0.0020752,0.00228882,0.003479,0,-0.00375366,-0.00402832,-0.00369263,0.00100708,0.0012207,-0.00637817,-0.00323486,0.00222778,0.00213623,0.00161743,-0.00201416,-0.00134277,-0.00180054,-0.00161743,-0.000610352,-0.0017395,-0.00280762,-0.00274658,-0.00088501,0.00088501,-0.00128174,0.000946045,-0.0015564,-0.000549316,0.00134277,6.10352e-05,0.00692749,0.00247192,-0.003479,-0.00201416,0.00262451,0.00369263,-0.0020752,-0.00308228,-0.00558472,-0.0038147,-0.000335693,-0.00167847,-0.000793457,-0.00289917,-0.00146484,-0.00088501,0.00363159,-0.00100708,-0.00537109,-0.0020752,-0.000396729,6.10352e-05,-0.00323486,-0.00765991,-0.00524902,6.10352e-05,0.00363159,-0.00274658,-0.00717163,-0.00128174,0.00106812,0.00012207,-0.000335693,-0.00363159,-0.0020752,-0.00256348,0.000671387,0.00363159,0.00128174,6.10352e-05,-0.00558472,-0.00698853,0.000213623,0.00402832,-0.00268555,-0.0101318,-0.00582886,0.00134277,0.00643921,0.00415039,-0.00582886,-0.00759888,0.00128174,0.00357056,-0.0012207,-0.00866699,-0.00213623,0.00604248,0.00531006,-0.00280762,-0.00650024,0.00134277,0.00772095,0.00683594,-0.00448608,-0.0104675,-0.000732422,0.0062561,0.0020752,-0.00228882,-0.00491333,-0.00274658,0.00442505,0.00637817,0.00195312,-0.00408936,-0.000274658,-0.00106812,-0.00323486,-0.0020752,6.10352e-05,0.00167847,-0.00262451,-0.00457764,-0.00280762,0.00637817,0.00491333,-0.00598145,-0.0085144,-0.00531006,0.00134277,0.00088501,-0.00247192,-0.00241089,-0.00247192,-0.000549316,0.00363159,-0.000396729,-0.0020752,-0.00463867,0,0.00161743,-0.00491333,-0.00482178,-0.00515747,-0.000396729,0.00241089,-0.00201416,-0.00100708,-0.00357056,0.00146484,-0.00256348,0.00161743,0.00341797,-0.00683594,-0.00491333,-0.00012207,0.00280762,-0.00180054,-0.00268555,-0.0062561,-0.00476074,0.00811768,0.00296021,-0.00531006,-0.00839233,-0.00106812,0.00543213,0.00515747,0.00140381,-0.00952148,-0.00491333,0.0085144,0.00698853,-0.00408936,-0.00570679,-0.00274658,0.00228882,0.00558472,-0.000213623,-0.00665283,-0.00402832,0.00592041,0.00222778,0.0012207,-0.00408936,-0.00918579,-0.00146484,0.00189209,0.00247192,-0.00335693,-0.00112915,-0.00228882,0.000671387,0.00497437,0.000396729,-0.00515747,-0.0038147,0.000396729,0.00430298,-0.00296021,-0.00665283,-0.00726318,0.0032959,0.00247192,-0.00610352,-0.00390625,-0.00610352,0.00308228,0.00134277,-0.000671387,-0.00280762,-0.00610352,0.000732422,0.00134277,0.00402832,-0.000274658,-0.00665283,-0.00570679,-0.00213623,0.00631714,0.00100708,-0.00765991,-0.00482178,-0.00363159,0.00497437,0.00570679,-0.00341797,-0.00463867,-0.0032959,0.000274658,6.10352e-05,0.000793457,-0.00457764,-0.00415039,0.00262451,0.00241089,-0.000396729,0.00213623,-0.0017395,-0.00357056,0.00375366,0.00247192,-0.0038147,-0.00323486,0.000793457,0.000396729,0.00234985,0.000793457,-0.00637817,-0.00228882,0.000213623,0.00112915,0.00241089,-0.000946045,-0.00442505,-0.00308228,0.00201416,0.00469971,-0.000732422,-0.00817871,-0.0085144,-0.00262451,0.00491333,-0.00140381,-0.00827026,-0.0083313,-0.00247192,0.00631714,0.00582886,-0.00213623,-0.00631714,-0.00564575,0.00442505,0.00497437,-0.00296021,-0.00692749,-0.00524902,-0.00161743,0.00430298,-0.0017395,-0.00314331,-0.003479,-0.00424194,0.00228882,-0.000335693,0.00390625,-0.00564575,-0.00308228,0.00088501,-0.00296021,0.00396729,-0.0032959,-0.00717163,-0.00665283,0.00497437,0.000335693,-0.00549316,-0.00827026,-0.00604248,0.00424194,0.000610352,-0.000213623,-0.00616455,-0.00396729,-6.10352e-05,0.00744629,6.10352e-05,-0.00537109,-0.00274658,0.00537109,0.00482178,-0.000335693,-0.000610352,-0.0038147,-0.00012207,0.00268555,0.00274658,0.00408936,-0.00430298,-0.00765991,0.00100708,0.0067749,0.00280762,-0.00570679,-0.0062561,-0.00262451,0.000732422,0.00839233,-0.00570679,-0.00726318,-0.0020752,-0.000671387,0.00274658,-0.00582886,-0.00738525,-0.00772095,0.00268555,0.00476074,-0.00247192,-0.00616455,-0.00369263,0.00234985,0.00357056,0.0012207,-0.00497437,-0.00167847,-0.003479,0.00268555,0.00515747,-0.00100708,-0.00088501,-0.00497437,-0.00424194,0.00369263,0.00140381,-0.00732422,-0.00811768,-0.00726318,0.00100708,0.00201416,0.00482178,-0.00302124,-0.00698853,0.0015564,0.00161743,0.000946045,-0.00140381,-0.00805664,-0.00531006,0.00497437,0.00189209,-0.00692749,-0.000213623,0.0012207,0.00582886,0.00262451,-0.00750732,-0.00402832,0.00369263,0.00805664,6.10352e-05,-0.00390625,-0.00817871,0.00180054,0.0131531,0.00262451,-0.00866699,-0.0038147,0.00463867,0.000946045,0.000946045,-0.000335693,-0.00241089,-0.00805664,-0.00128174,0.00134277,0,0.00100708,-0.00509644,-0.00570679,0.000671387,0.0017395,-0.0012207,-0.00302124,-0.00531006,-0.00375366,-0.003479,0.00430298,-0.000335693,-0.00570679,0.00375366,0.00396729,0.0017395,-0.00256348,-0.00323486,0.000213623,-0.000732422,-0.00189209,-0.00906372,-0.00598145,0.00247192,-0.000610352,-0.00195312,-0.00396729,0.00161743,0,0.0012207,-0.00430298,-0.00717163,0.00442505,6.10352e-05,-0.000793457,-0.00793457,-0.00189209,0.0050354,0.00100708,-6.10352e-05,-0.00759888,0.000671387,0.00256348,0.00363159,-0.00610352,-0.00537109,0.00515747,0.00341797,0.00140381,-0.00308228,0.00302124,0.00482178,0.00247192,-0.00189209,-0.00866699,-0.000274658,0.0012207,-0.00213623,-0.00469971,-0.000610352,0.00390625,0.00576782,0.000457764,-0.00683594,-0.00463867,0.00222778,0.003479,-0.00375366,-0.00738525,-0.00738525,0.00341797,0.00302124,-0.000335693,-0.00100708,-0.00476074,0.00112915,0.00180054,0.00167847,-0.00732422,-0.0118713,-0.00396729,0.000457764,0.00515747,-0.00537109,-0.00698853,0.00161743,0.00363159,0.000946045,0.00302124,0.000793457,-0.00543213,-0.00704956,0.00100708,0.000396729,-0.00228882,-0.0020752,-0.00592041,-0.00280762,0.00390625,0.000396729,-0.00845337,-0.00592041,-0.000396729,-0.0015564,0.00308228,-0.00302124,-0.00598145,-0.000335693,0.00302124,0.00402832,0.000946045,-0.00289917,-0.003479,0.00167847,0.00201416,0,-0.00280762,0.00424194,0.00570679,0.000549316,-0.0012207,-0.00543213,0.0012207,0.0062561,-0.00106812,-0.00531006,-0.00524902,0.00167847,0.00341797,-0.00112915,-0.00424194,-0.00189209,0.00268555,0.000335693,-0.00247192,-0.00576782,-0.00442505,0.00234985,0.00335693,-0.00491333,-0.00793457,0.00289917,0.00357056,-0.000549316,-0.00112915,-0.00189209,-0.00558472,0.00161743,0.000610352,-0.000671387,0.0017395,-0.00241089,-0.00442505,-0.0032959,0.00497437,-0.00140381,-0.00476074,-0.00576782,-0.00335693,0.00476074,0.00436401,-0.003479,-0.00872803,0.000457764,0.00637817,-0.00180054,-0.00979614,-0.0108032,-0.000274658,0.00939941,-0.00302124,-0.0113525,-0.00430298,0.00491333,0.00463867,-0.00650024,-0.00134277,-0.00363159,-0.000732422,0.00146484,0.00128174,0.00369263,0.000549316,-0.00296021,-0.00189209,0.00408936,0.00390625,-0.00241089,-0.000457764,-0.00531006,-0.00314331,0.00436401,-0.00112915,-0.00524902,-0.00491333,0.00765991,0.00213623,-0.00524902,-0.00637817,-0.00323486,0.0065918,0.00256348,-0.00894165,-0.0065918,-0.000335693,0.00436401,0.000732422,-0.00424194,-0.00939941,-0.0050354,0.00772095,0.00268555,-0.00524902,-0.00268555,0.00247192,-0.00012207,-0.000457764,-0.000610352,-0.00396729,-0.000274658,-0.00140381,-0.0032959,0.000213623,0.00558472,-0.00146484,-0.000396729,-0.00408936,-0.00650024,-0.00390625,-0.00274658,-0.0032959,-0.00469971,0.00683594,-0.00430298,-0.00430298,0.00357056,0.00247192,0.00146484,-0.0062561,-0.00012207,0.00012207,-0.000732422,-0.00296021,-0.00631714,-0.000732422,0.000549316,0.00247192,0.000610352,-0.000793457,0.000946045,0.00402832,0.0017395,-0.0032959,-0.00448608,-0.0012207,0.00167847,-0.00314331,-0.00396729,-0.0015564,0.00738525,-0.00189209,-0.00524902,-0.003479,-0.00570679,0.000274658,-0.00302124,-6.10352e-05,-0.00643921,0.000213623,0.00369263,0.00128174,0.00442505,-0.0100708,-0.000335693,0.00341797,-0.00161743,-0.00582886,-0.003479,0.00335693,-0.00491333,-0.00335693,0.0038147,0.00247192,0.00161743,-0.000671387,-0.00408936,0.0038147,0.003479,-0.00302124,-0.00497437,-0.00289917,-0.000610352,-0.00323486,0.00161743,-0.00213623,-0.00717163,0.000946045,0.00692749,0.00106812,-0.00717163,-0.00247192,-0.00457764,-0.0012207,0.00448608,-0.00415039,-0.00424194,-0.00390625,0.00234985,0.00280762,-0.000396729,0.000946045,-0.00582886,0.00100708,0.00515747,0.00100708,-0.00241089,-0.00643921,0.00112915,0.00442505,0.00128174,-0.00402832,-0.00515747,0.0017395,-0.000946045,-6.10352e-05,-0.000793457,-0.00335693,-0.00918579,0.000549316,0.00491333,-0.00247192,-0.00442505,-0.00463867,0.00112915,0.000274658,0.00558472,-0.00100708,-0.00631714,-0.00497437,-0.00201416,0.00744629,0.00543213,-0.00430298,-0.012146,-0.00463867,0.00973511,0.00531006,-0.00341797,-0.00335693,-0.00363159,0.0038147,0.00457764,0.000396729,-0.00564575,-0.00195312,0.000457764,0.000213623,0.00222778,-0.0111389,-0.00717163,0.00469971,0.0067749,-0.000457764,-0.00765991,-0.003479,0.00289917,0.00698853,0.000457764,-0.0109253,-0.0032959,0.00799561,0.00222778,0,-0.00314331,-0.00140381,0.00491333,0.00100708,-0.000793457,-0.00616455,-0.00228882,-0.00140381,-0.00543213,0.00274658,-0.00195312,-0.00213623,-0.00515747,-0.00146484,0.00357056,-0.00189209,-0.0012207,-0.0050354,-0.00134277,-0.00100708,0.00112915,-0.00262451,-0.0067749,0.000610352,0.000732422,0.00088501,0.00195312,-0.00509644,-0.00424194,0.00457764,0.00268555,-0.00765991,-0.0032959,0.00637817,0.00469971,-0.00616455,-0.00576782,-0.00112915,0,0.00811768,-0.00100708,-0.00531006,-0.0012207,-0.00396729,-0.0012207,0.000457764,0.000457764,-0.00531006,-0.00482178,0.000549316,-0.00100708,0.00280762,0.00537109,-0.0012207,-0.00280762,-0.00476074,-0.000671387,0.00363159,0,-0.00469971,-0.00744629,0.00946045,0.0105286,-0.00811768,-0.0110168,-0.00341797,0.00860596,0.00274658,-0.00491333,-0.0109253,-0.00592041,0.0012207,0.00604248,0.00650024,-0.0133667,-0.0158386,0.00241089,0.0187988,-0.000457764,-0.0173035,-0.0100098,-0.00256348,0.0140381,0.00363159,-0.0110779,-0.0145569,6.10352e-05,0.011261,0.0067749,0.00241089,-0.011261,-0.0105286,0.00088501,0.0103455,-0.000457764,-0.0115967,-0.00457764,0.00308228,0.00631714,0.0129395,-0.00357056,-0.0195312,-0.00604248,0.00973511,0.00732422,-0.0123596,-0.0140381,-0.00894165,0.00241089,0.0142212,-0.00134277,-0.00878906,-0.00524902,-0.000457764,0.00604248,0.00671387,0.000396729,-0.0140991,-0.00140381,0.0120239,0.00576782,0.00134277,-0.00750732,-0.003479,0.00228882,0.0108032,0.0015564,-0.0137024,-0.00894165,-0.000610352,0.011261,0.00369263,-0.0071106,-0.0110168,-0.00396729,0.00967407,0.00958252,-0.00341797,-0.0181885,-0.00732422,0.00866699,0.00308228,-0.00866699,-0.00991821,-0.00671387,0.0083313,0.00732422,-0.00408936,-0.0114136,-0.00408936,0.00799561,0.00692749,0.0015564,-0.00805664,-0.00280762,0.00424194,0.0103455,0.00106812,-0.0116882,-0.00256348,-0.00308228,0.00482178,0.00549316,-0.00744629,-0.00592041,-0.00704956,0.00531006,0.00463867,-0.00537109,-0.00308228,-0.00524902,0.00357056,0.00308228,0.00167847,-0.000457764,-0.00497437,-0.00274658,-0.000457764,0.00323486,-0.0015564,0.000274658,-0.00234985,-0.00476074,-0.000732422,-0.00167847,-0.00268555,-0.00335693,0.000396729,0.00289917,0.0067749,0.00167847,-0.0104675,-0.00610352,-0.000274658,0.00274658,-0.00088501,-0.00698853,-0.0104065,-0.00268555,0.00778198,-0.00308228,-0.00979614,-0.0065918,-6.10352e-05,0.00323486,-0.00228882,-0.00375366,-0.00262451,0.00637817,0.00228882,-0.00750732,-0.00167847,0.00396729,0.00134277,-0.00302124,-0.00140381,0.00314331,0.00201416,0.000549316,-0.00582886,-0.0065918,0.00631714,0.00604248,-0.00195312,-0.00683594,-0.00112915,0.00268555,0.00256348,0.00692749,-0.00234985,-0.00683594,-0.00543213,0.00463867,0.00457764,-0.00241089,-0.00872803,-0.00408936,0.00369263,-0.000793457,0.000549316,-0.00112915,-0.000793457,-6.10352e-05,0.00289917,-0.000793457,0.00180054,-0.00262451,-0.00564575,0.0020752,-6.10352e-05,-0.00442505,-0.00213623,0.00375366,-0.00234985,-0.000671387,0.000274658,-0.00323486,-0.0071106,0.00442505,0.00241089,-0.00341797,-0.00112915,-0.00872803,-0.0012207,0.00872803,0.00704956,-0.00793457,-0.00765991,-0.00262451,-0.00201416,0.00933838,0.000671387,-0.0125427,-0.00549316,0.00732422,0.00491333,-0.00341797,-0.00195312,-0.00778198,0.00256348,0.00750732,-0.003479,-0.00558472,-0.00469971,0.00146484,0.00106812,-0.00134277,0.00167847,-0.000457764,-0.00161743,-0.00222778,0,0.00134277,-0.00442505,-0.00195312,-0.00335693,-0.00616455,-0.00289917,0.000274658,0.0050354,-0.00234985,-0.00491333,-0.00643921,-0.00308228,0.00799561,-0.00704956,-0.00692749,-0.000610352,-0.000793457,-0.000457764,-0.00872803,0.00274658,0.00335693,-0.00146484,-0.00717163,-0.00671387,0.00442505,0.00497437,-0.000946045,-0.00671387,-0.00357056,0.00140381,0.0083313,0.00906372,-0.00610352,-0.00991821,-0.00314331,0.0050354,0.00256348,-0.00698853,-0.00195312,0.00128174,0.00189209,-0.000946045,-0.00592041,0.00424194,0.00772095,-0.00637817,-0.00793457,-0.00213623,0.00531006,0.00784302,-0.00128174,-0.0088501,-0.00247192,0.0065918,0.00189209,-0.00482178,-0.00497437,-0.0015564,0.00363159,0.00012207,-0.00912476,-0.00146484,0.00274658,0.00598145,-0.00222778,-0.00878906,0.000946045,0.00604248,0.0020752,-0.0116882,-0.00308228,0.00180054,0.00195312,-0.00482178,-0.0105896,-0.00531006,0.00088501,0.0120239,-0.00234985,-0.0131531,-0.00430298,0.000732422,0.0106812,0.000610352,-0.012146,-0.00860596,0.00476074,0.0126953,-0.00604248,-0.00979614,-0.003479,-0.00106812,0.00549316,-0.00222778,-0.00402832,0.003479,0.00396729,-0.00524902,-0.00463867,0.00827026,0.00543213,-0.00576782,-0.00515747,0.00308228,0.0071106,0.00357056,-0.00262451,-0.00692749,-0.00341797,0.00744629,-0.00134277,-0.00726318,-0.0050354,-0.00262451,0.00778198,0.00476074,-0.00390625,-0.0107422,-0.00860596,0.00448608,0.0032959,0.00100708,-0.0135498,-0.00985718,0.00537109,-6.10352e-05,-0.00497437,-0.0107422,0.0038147,0.00515747,0.00698853,-0.00146484,-0.00878906,0.00241089,0.00582886,-0.00100708,-0.00750732,-0.00738525,-0.00274658,0.00195312,0.00140381,-0.00402832,-0.00683594,-0.00106812,0.00543213,0.00213623,-0.00469971,-0.003479,0.00396729,-0.00323486,-0.00408936,0.00280762,-0.00415039,-0.00631714,-0.00189209,0.00100708,-0.00390625,0.000457764,0.00469971,0,0.00112915,0.0012207,-0.00195312,-0.00442505,0.000396729,0.00671387,0.0108643,0.00167847,-0.0071106,-0.00088501,0.00671387,0.00280762,-0.00637817,-0.00924683,-0.0017395,0.00457764,-0.00643921,-0.0117493,-0.00280762,0.0114136,0.0065918,-0.0071106,-0.0132141,-0.00128174,0.0108032,0.00234985,-0.0085144,-0.00549316,-0.00222778,-0.00100708,0.00201416,-0.00357056,-0.0071106,6.10352e-05,0.00598145,-0.0038147,-0.00799561,-0.000274658,0.00402832,-0.000335693,-0.00900269,-0.00759888,0.00222778,0.0108643,0.00482178,-0.00817871,-0.0144348,0.00167847,0.012207,0.000793457,-0.00912476,-0.0108032,-0.00457764,0.00772095,0.0038147,-0.0119324,-0.00363159,0.00939941,0.0038147,-0.00430298,0.00189209,0.00683594,0.00598145,0.000213623,-0.00390625,-0.00683594,-0.0012207,0.000396729,-0.00469971,-0.000946045,-0.00778198,-0.000457764,0.0071106,0.00161743,-0.00424194,-0.0126953,0.000549316,0.00592041,-0.00296021,-0.0145569,-0.00778198,0.0103455,0.00262451,-0.00683594,-0.00906372,0.00100708,0.0104065,0.00442505,-0.0105286,-0.0158386,0.00476074,0.0184021,-0.000274658,-0.0102539,-0.0111389,-0.00088501,0.00878906,0.00958252,0,-0.00598145,-0.00302124,0.000610352,0.00531006,0.00100708,-0.00592041,-0.00979614,-0.00765991,0.00112915,0.00643921,0.0067749,-0.0032959,-0.0100098,-0.00576782,0.00924683,0.00469971,-0.00369263,-0.0012207,-0.00436401,-0.000610352,0.00482178,0.00341797,-0.00369263,-0.00390625,6.10352e-05,-0.00112915,0.000457764,0.000335693,-0.00213623,-0.00396729,0.00436401,0.000946045,-0.00958252,-0.0067749,0.00491333,0.0144958,-0.00189209,-0.00643921,-0.00698853,-0.00234985,0.00308228,-0.00189209,-0.00582886,-0.0105286,-0.00509644,0.00704956,0.00274658,-0.0012207,-0.00759888,-0.0062561,0.00112915,0.00341797,0.00408936,-0.00906372,-0.000610352,0.0012207,-0.00564575,-0.00146484,0.00408936,0.00357056,-0.00598145,-0.0020752,-0.00335693,-0.00140381,0.0102539,-0.00201416,-0.00946045,0.00241089,0.00463867,0.00189209,-0.00100708,-0.000274658,0.00335693,0.0032959,0.00189209,-0.00772095,-0.000610352,0.00558472,0.00442505,0.00616455,-0.00140381,-0.0125427,0.000213623,0.0125427,-0.000335693,-0.0124207,-0.00765991,0.00012207,0.00872803,0.000732422,-0.0115356,-0.00289917,0.00369263,-0.00375366,-0.00665283,-0.00140381,0.000732422,0.00448608,-0.00247192,-0.0124207,-0.00436401,0.013092,-0.00222778,-0.0154419,-0.00482178,0.000732422,0.00592041,0.0083313,-0.00228882,-0.0135498,0.00222778,0.00262451,0.00012207,0.00592041,-0.00274658,-0.00860596,-0.000610352,0.00732422,-0.00759888,-0.00650024,0.000793457,-0.00692749,-0.00570679,-0.000610352,0.00167847,-0.00134277,-0.00189209,-0.00308228,-0.00469971,0.00537109,0.00308228,-0.00497437,-0.000946045,-0.00363159,0.00100708,0.00469971,0.00234985,-0.00375366,-0.00643921,0.00088501,-0.00161743,0.00531006,0.00289917,-0.00576782,-0.00262451,0.000396729,-0.000396729,-0.00442505,0.000335693,0.00146484,0.00247192,0.00357056,-0.0065918,-0.00784302,0.00558472,-0.0015564,0.00167847,-0.00247192,-0.0088501,-0.00482178,0.00180054,0.00424194,-0.00610352,-0.00106812,-0.0012207,-0.00390625,0.00213623,0.00241089,-0.00765991,0.00201416,0.00402832,-0.00784302,-0.00323486,0.00543213,0.00228882,-0.00314331,-0.0012207,-0.00598145,-0.00357056,0.0071106,6.10352e-05,-0.00845337,0.00222778,0.00146484,-0.012146,-0.00268555,0.00827026,0.00933838,-0.00375366,-0.0114746,-0.0132751,0.00918579,0.016571,-0.00448608,-0.0108643,-0.00531006,0.00390625,0.0106812,-6.10352e-05,-0.0119324,-0.0105896,0.00189209,0.00738525,0.00106812,-0.00637817,-0.0113525,0.00314331,0.0154419,-0.00704956,-0.0102539,-0.000732422,-0.00357056,0.00280762,-0.0015564,-0.00845337,-0.00280762,0.00268555,-0.00268555,-0.00543213,0.00650024,0.00390625,-0.0104065,-0.00442505,-0.00476074,0.00415039,0.00878906,-0.0134888,-0.0185242,0.0050354,0.0178528,0.00430298,-0.00469971,-0.0113525,-0.00308228,0.0167847,0.00665283,-0.0104065,-0.0126953,0.00134277,0.0103455,0.0108032,0.00482178,-0.0132751,-0.00750732,0.0116882,0.00765991,-0.0083313,-0.0148926,0.000274658,0.00839233,0.00247192,-0.00524902,-0.0050354,-0.00213623,0.00146484,0.0012207,0.00256348,0.00402832,-0.00408936,-0.00985718,-0.00570679,0.00222778,-0.00537109,-0.00866699,-0.00524902,-0.003479,-0.00100708,-0.00134277,0.00262451,0.0131531,0.00839233,-0.00845337,-0.00918579,0.00524902,0.00872803,-0.00759888,-0.00537109,-0.0050354,-0.00256348,0.00717163,0.00100708,-0.00140381,-0.00692749,-0.00610352,-0.00402832,0.00482178,0.00698853,-0.00878906,-0.0127563,-0.00497437,-0.00134277,0.00643921,0.00732422,-0.00256348,-0.0131531,-0.00817871,0.0103455,0.00543213,0.00335693,-0.00973511,-0.0119324,0.00985718,0.0115967,0.00247192,-0.00308228,0.00256348,0.00509644,0.00872803,-0.00549316,-0.0169678,-0.00256348,0.0088501,0.00765991,-0.00946045,-0.00894165,0.000671387,0.0148926,0.00280762,-0.0147095,-0.00958252,0.00100708,0.00558472,0.00637817,-0.0038147,-0.0126953,-0.00167847,0.00161743,-0.00524902,0.00289917,0.00262451,-0.00665283,0.00430298,0.003479,-0.00289917,-0.000732422,-0.000946045,-0.000274658,-0.000610352,0.00424194,-0.00549316,-0.00778198,0.00665283,-0.00314331,-0.00476074,0.00268555,-0.00698853,-0.00363159,0.0071106,0.00906372,-0.00088501,-0.00448608,-0.00463867,-0.00341797,0.0062561,-0.00515747,-0.00610352,0.00213623,-6.10352e-05,-0.00308228,-6.10352e-05,0.00732422,-0.00268555,-0.00631714,-0.0117493,-0.00012207,0.0101929,0.00189209,-0.0100708,-0.00631714,-0.00335693,-0.00827026,-0.00390625,-0.000274658,-0.00262451,-0.00390625,-0.00357056,-0.00161743,0.003479,0.0012207,0.000274658,0.00161743,-0.00515747,-0.00900269,-0.00100708,0.0100708,-0.00671387,-0.0182495,-0.00598145,0.00616455,0.00415039,-0.00827026,-0.00610352,0.00476074,0.00189209,0.00524902,0.00308228,-0.00497437,-0.00308228,0.00564575,0.00592041,-0.00524902,-0.00357056,-0.00146484,-0.00296021,0.00509644,-0.00112915,-0.00979614,-0.0032959,0.00228882,0.00704956,0.00140381,-0.00241089,-0.0128174,-0.000732422,0.0195312,0.00671387,-0.00201416,-0.0102539,-0.00222778,0.00424194,0.00363159,-0.00128174,-0.0159607,0.00241089,0.00375366,0.00140381,-0.00280762,-0.00692749,0.00180054,-0.000396729,0.0118103,-0.00308228,-0.0148315,-0.00396729,0.000274658,0.00402832,-0.00958252,-0.0122681,-0.0139465,0.00564575,0.0146179,-0.0103455,-0.0124207,-0.00222778,0.00811768,0.00692749,-0.000274658,-0.00643921,-0.0104675,0.00457764,0.00201416,0.0020752,0.000549316,-0.00692749,-0.00765991,-0.00088501,0.00650024,-0.00750732,-0.00296021,0.000732422,0.00482178,0.00482178,-0.00430298,-0.00939941,0.00228882,0.00592041,-0.00363159,0.00390625,-0.00463867,-0.0067749,-0.000732422,0.00476074,-0.00643921,-0.00860596,0.00726318,-0.0017395,-0.000457764,-0.00357056,-0.0105286,-0.00582886,0.00390625,0.00637817,-0.00491333,-0.00357056,-0.0071106,-0.00012207,0.0100708,-0.00704956,-0.00939941,0.00436401,0.0105286,-0.00256348,-0.00268555,0.00531006,-0.00732422,0.00201416,0.00100708,0.00726318,-0.00140381,-0.0200806,-0.0017395,0.0125427,0.0147705,-0.00704956,-0.0101318,-0.000671387,-0.00247192,0.011261,-0.000274658,-0.0152283,0.000671387,-0.0012207,-0.00140381,0.000335693,-0.00793457,-0.00726318,0.00469971,0.0100708,-0.00482178,-0.00228882,0.00631714,-6.10352e-05,0.00570679,-0.00012207,-0.00759888,-0.00363159,0.00878906,-0.00363159,-0.0114746,0.00637817,-0.000457764,-0.00189209,-0.0032959,-0.00631714,0.00222778,0.0065918,0.0015564,-0.00726318,-0.00515747,0.00564575,0.00524902,-0.00341797,-0.0119324,-0.00643921,0.00463867,0.00424194,-0.00631714,-0.00973511,-0.00012207,0.00442505,0.00457764,-0.00918579,-0.00402832,-0.0015564,-0.00537109,0.00604248,-0.00201416,-0.00616455,-0.00189209,0.00750732,0.00369263,-0.0134888,0.00335693,0.00872803,0.00390625,-0.00415039,-0.0110168,0.00543213,0.00665283,-0.000335693,-0.012085,-0.00872803,0.00778198,0.00732422,-0.000610352,-0.0118103,-0.000549316,0.0125427,0.0017395,-0.00692749,0.00390625,0.000396729,-0.00369263,0.000946045,-0.00524902,-0.00289917,-0.00463867,0.00213623,-0.00341797,-0.00228882,0.00167847,-0.0123596,0.0107422,0.00912476,-0.00939941,-0.0114136,0.00442505,0.0149536,-0.00650024,-0.00457764,-0.00308228,-0.000549316,0.0071106,-0.00732422,-0.0104065,-0.00793457,0.0102539,-0.00442505,-0.0191956,0.00228882,-0.00369263,-0.00308228,0.0127563,0.000732422,-0.0194702,0.00222778,0.0231628,0.00860596,-0.015625,-0.025116,0.00430298,0.0152283,0.0185242,-0.015625,-0.0264587,0.00778198,0.00784302,0.00778198,0.00222778,-0.000671387,-0.00543213,0.00100708,0.00839233,0.00576782,0.00476074,-0.0107422,-0.0138855,0.00314331,0.0182495,0.00228882,-0.0179749,-0.0145569,-0.00289917,0.0104065,0.00189209,-0.0144958,-0.00604248,0.00314331,0.00436401,0.00222778,-0.0067749,-0.00476074,0.00180054,0.00469971,-0.003479,-0.0106812,-0.00592041,0.00100708,0.00598145,-0.00308228,-0.0107422,-0.00228882,0.00457764,-0.0012207,-0.0050354,-0.00088501,0.00778198,0.00469971,-0.0106812,-0.00637817,0.0148315,0.003479,-0.0147095,0.00213623,0.00592041,-0.00363159,-0.00396729,0.00012207,-0.00457764,-0.00195312,0.00402832,-0.0126953,-0.00799561,0.013031,0.000213623,-0.00576782,-0.00482178,-0.00402832,0.00665283,0.0186462,0.0015564,-0.0304565,-0.00524902,0.0137024,0.00302124,-0.00390625,-0.0108643,-0.00750732,0.0015564,0.00643921,0.00274658,-0.0015564,-0.00402832,-0.0083313,-0.00524902,0.00515747,-0.000610352,0.00323486,-0.012146,-0.017395,0.0132751,0.00860596,-0.00631714,-0.00805664,-0.00457764,0.00482178,0.0109253,0.00140381,-0.0224304,-0.0065918,0.0218811,0.00323486,-0.0114746,-0.00222778,-0.00772095,-0.000274658,0.0212708,-0.00357056,-0.0150452,0.00732422,0.00637817,-0.0105286,-0.00576782,0.0132751,0.00308228,-0.00515747,-0.00582886,-0.00256348,0.0140991,0.0114136,-0.0128174,-0.0101318,0.00958252,0.0140991,6.10352e-05,-0.00958252,-0.0128784,-0.00744629,0.0136108,0.000335693,-0.0145569,-0.00784302,0.00811768,0.0184021,-0.00430298,-0.0185852,-0.00497437,0.00845337,0.00805664,-0.00436401,-0.00799561,-0.0140381,0.0015564,0.0122681,-0.00323486,-0.00845337,-0.0106812,-0.00650024,0.0104065,0.000671387,-0.00704956,-0.00878906,0.0159607,0.00448608,-0.0067749,0.00973511,-0.00112915,-0.00335693,0.00509644,-0.0015564,-0.00424194,-0.00390625,-0.00088501,-0.00912476,-0.00363159,0.0115967,-0.01651,-0.003479,0.00631714,0.00363159,-6.10352e-05,-0.0104675,0.00564575,0.00314331,0.00592041,0.00222778,-0.00778198,0,-0.00900269,-0.00772095,0.000274658,-0.00134277,-0.00524902,-0.00946045,0.00610352,0.000457764,-0.00140381,-0.0020752,-0.00308228,0.0012207,-0.00189209,-0.00396729,0.00424194,0.0100708,-0.00671387,-0.012207,0.00396729,0.0038147,0.00524902,-0.00732422,-0.0071106,-0.00106812,0.00524902,0.00167847,-0.0133667,-6.10352e-05,-0.0015564,0.00665283,0.00610352,0.00592041,0.00088501,-0.0127563,-0.000732422,-0.000610352,0.00704956,-0.00772095,-0.0246277,-0.00213623,0.00537109,0.0104675,-0.00012207,-0.0114136,-0.0062561,0.00241089,0.0118713,-0.00302124,-0.003479,0.00256348,0.00189209,0.0104675,0.00765991,-0.00524902,-0.00772095,0.00799561,-0.00167847,-0.00497437,-0.00543213,-0.00402832,-0.00369263,-0.00457764,0.0085144,-0.00650024,-0.00631714,-0.00369263,0.000732422,0.015564,0.00665283,-0.00985718,-0.015564,-0.00738525,0.0116882,0.0114746,-0.0142212,-0.0155029,-0.00424194,0.00793457,0.00228882,-0.00692749,-0.00390625,-0.0126038,0.00704956,0.0114136,-0.00537109,-0.00274658,0.00335693,0.000213623,-0.00128174,0.0108643,-0.00476074,-0.00631714,0.00408936,0.000732422,0.0017395,0.00482178,0.00228882,-0.0118713,0.0112,0.00878906,-0.0137024,-0.00180054,0.0104675,-0.00289917,-0.00140381,0.00558472,-0.00396729,-0.000549316,0.00201416,-0.00323486,-0.00933838,-0.00088501,-0.00549316,-0.0132751,-0.00228882,-0.000396729,-0.00650024,-0.00100708,-0.00256348,-0.00738525,0.00973511,0.00900269,-0.0132141,-0.0173035,-0.00302124,0.00924683,0.00509644,-0.003479,-0.0157166,-0.00268555,0.0126038,0.00918579,-0.00784302,-0.00189209,0.0108643,-0.000335693,-0.00515747,-0.013031,0.00549316,0.00683594,-0.00442505,-0.00222778,-0.0119324,0.00671387,-0.00128174,0.00088501,-0.00958252,-0.0155029,-0.000396729,0.00195312,0.00973511,0.00106812,-0.00570679,0.00201416,0.00222778,0.00765991,-0.00161743,0.00128174,-0.00610352,-0.00799561,0.0138855,-0.00167847,-0.00683594,-0.00476074,0.00524902,0.00213623,-0.00314331,-0.00274658,-0.0065918,0.00491333,0.00692749,-0.00448608,-0.0108032,0.00308228,0.00375366,0.00308228,0.00469971,-0.0135498,-0.0138855,0.00448608,0.0138245,0.00280762,-0.0122681,-0.0173035,0.0012207,0.0195312,0.0132751,-0.0141602,-0.00973511,0.0134888,-0.00671387,-0.00146484,0.0083313,0.00247192,-0.0116882,-0.0103455,0.0136108,0.00012207,-0.000671387,0.00112915,-0.0114746,-0.00482178,0.0100708,0.00146484,-0.0117493,-0.00335693,-0.00134277,-0.0103455,0.00912476,0.0104065,-0.00592041,-0.00228882,-0.0088501,-0.000671387,0.00665283,0.0111389,-0.00637817,-0.0114746,0.00924683,-0.0116882,-0.00247192,0.0108032,-0.00308228,-0.0111389,-0.00161743,0.00302124,-0.00683594,-0.00140381,0.00222778,0.000549316,-0.00744629,-0.0147095,-0.00558472,0.0151672,0.00939941,-0.0187378,-0.0115356,0.0143738,0.00906372,-0.0126038,-0.017395,-0.00289917,0.0150452,0.0132141,-0.00408936,-0.020752,-0.00732422,0.0228882,0.0118713,-0.00985718,-0.0261841,-0.00592041,0.0191956,0.00811768,-0.00592041,-0.0232239,-0.000335693,0.0249023,0.00335693,-0.00671387,-0.00765991,0.00262451,0.00799561,0.00799561,-0.00778198,-0.0067749,0.00234985,-0.00146484,-0.00314331,-0.00671387,0.0020752,0.00268555,0.00430298,-0.000671387,-0.00637817,0.00106812,0.00335693,-0.00302124,-0.00979614,-0.00128174,0.0106812,0.0017395,-0.00369263,-0.00616455,0.00128174,0.00314331,-0.00112915,-0.00784302,-0.00933838,0.0101929,-0.00558472,-0.0112,-0.00228882,0.0114746,0.0085144,-0.00469971,-0.0065918,-0.0122681,0.000793457,0.0202026,0.00390625,-0.0117493,-0.00894165,-0.00765991,0.000213623,0.0117493,0.00140381,-0.0132751,0.00692749,0.00979614,-0.0126038,-0.00189209,0.0032959,-0.0065918,-0.00698853,0.00576782,-0.00732422,-0.00784302,0.00616455,-0.00241089,-0.00256348,0.00497437,0,-0.000549316,0.0017395,-0.00872803,-0.000732422,0.00979614,0.000610352,-0.01651,0.00106812,0.00973511,-0.00341797,-0.00213623,0.000274658,0.00262451,-0.00161743,-0.00918579,0.000732422,0.00549316,-0.00576782,-0.00717163,-0.003479,0.00106812,-0.00234985,0.000396729,0.00698853,-0.00665283,-0.00564575,-0.00308228,0.00106812,0.0122681,-0.00778198,-0.00515747,-0.00201416,-0.000335693,0.000671387,0.00280762,0.00952148,-0.00537109,-0.00262451,-0.00302124,-0.00726318,0.000946045,0.00390625,0.000946045,-0.00543213,-0.013031,-0.00323486,-0.0050354,0.00912476,0.00308228,-0.000213623,-0.000274658,-0.0125427,0.0140991,0.00924683,-0.000457764,-0.00933838,-0.00280762,0.00564575,-0.0155029,0.00180054,0.00683594,0.00323486,-0.00650024,-0.015564,0.00268555,0.012207,0.00692749,-0.0177917,-0.0122681,0.0100098,0.0126038,-0.00323486,-0.0189819,-0.00289917,0.0050354,0.00100708,-0.00946045,-0.0135498,0.0088501,0.00497437,-0.0152283,-0.0185242,-0.0101929,0.00543213,0.00234985,-0.0110168,-0.00878906,-0.0017395,0.0100098,0.00671387,-0.00189209,-0.00289917,-0.00958252,0.00430298,0.00436401,-0.0114746,-0.00933838,0.00448608,0.0181885,-0.000671387,-0.00952148,0.00402832,0.00415039,0.0143738,-0.000457764,-0.0179138,-0.00415039,0.0110779,0.00195312,-0.0157166,0.00363159,0.00918579,0.00189209,-0.000946045,-0.00805664,0.0015564,0.00582886,0.00128174,-0.0179749,-0.0133667,0.015564,0.00985718,0.000610352,-0.00289917,-0.0104675,-0.00436401,0.00369263,0.0140991,-0.00012207,-0.00979614,0.00280762,-0.00738525,0.0032959,0.00985718,0.00811768,-0.00900269,-0.0147095,0.00180054,0.000457764,0.00772095,-0.00570679,-0.0187378,-0.00195312,0.011261,0.00289917,-0.00570679,-0.00592041,-0.00140381,0.00765991,0.00872803,0.00482178,0.00692749,0.00979614,0.00946045,0.00302124,0.00442505,0.0067749,-0.00524902,-0.0106812,0.00497437,0.003479,-0.0062561,-0.00549316,-0.00692749,-0.000274658,0.000671387,0.00509644,-0.003479,-0.0131531,-0.0015564,0.00106812,0.00631714,-0.00314331,-0.0158386,-0.00704956,0.00531006,0.00396729,-0.00967407,-0.0020752,0.00772095,0.00228882,-0.00918579,-0.0101318,-0.00189209,-0.00402832,0.00213623,0.00241089,-0.0120239,-0.00363159,0.00643921,0.00765991,-0.00228882,-0.0085144,-0.00201416,6.10352e-05,0.00161743,-0.00704956,-0.00161743,0.00390625,0.00793457,0.00906372,0.00256348,0.000671387,0.00280762,0.00906372,-0.00228882,-0.0144958,-0.00738525,-0.00128174,-0.00582886,-0.0205383,-0.013092,0.0067749,0.00274658,-0.00866699,-0.0114746,-0.00241089,0.00222778,-0.00247192,-0.0137024,-0.015625,-0.000671387,0.00549316,-0.00717163,-0.00732422,0.00726318,0.00750732,0.00497437,0.0120239,0.00335693,-0.00424194,0.0020752,0.00390625,-0.000396729,0.00576782,0.00457764,0.0083313,0.0342407,0.0363159,0.0101318,0.00491333,0.024353,0.0230103,0.00274658,-0.0135498,-0.0182495,-0.0195312,-0.0181885,-0.00967407,-0.0142212,-0.00717163,-0.0106812,-0.0179138,-0.00582886,-0.00576782,-0.00991821,-0.0200806,-0.0218201,-0.013031,-0.0126038,0.000610352,0.0032959,-0.00396729,-0.00363159,-0.00234985,0.0171814,0.0138245,-0.00213623,-0.00958252,-0.00991821,0.0138245,0.00469971,-0.012085,-0.00543213,0.00408936,0.0120239,0.0083313,0,0.00308228,0.00241089,-0.00241089,-0.0108643,-0.00482178,-0.00616455,-0.0254517,-0.00985718,0.00280762,0.00128174,-0.0103455,-0.0140991,-0.00811768,-0.00341797,0.0153809,0.0038147,-0.00570679,-0.00222778,-0.00558472,0.0085144,0.000732422,-0.00894165,-0.0179749,0.000274658,0.00476074,-0.00924683,0.0114136,0.00704956,-0.00558472,-0.00643921,0.00128174,0.00692749,-0.00564575,-0.000396729,-0.00598145,-0.00784302,0.00335693,0.0127563,0.00262451,-0.0110168,-0.00289917,0.00457764,0.00616455,-0.00195312,-0.00827026,-0.0118713,-0.0132751,0.00598145,0.00247192,-0.00415039,0.00765991,0.00570679,0.00906372,0.000213623,-0.00134277,-0.00515747,-0.00357056,0.00201416,0.00430298,0.00933838,0.000946045,0.00357056,0.00631714,0.0111389,0.00167847,-0.015625,-0.0101318,0.00491333,0.0146179,-0.000671387,-0.00201416,0.0194702,0.0337524,0.024231,0.000274658,-0.00341797,0.00958252,0.0100708,-0.00262451,-0.0148926,-0.0198059,-0.00985718,-0.00946045,-0.00765991,-0.0067749,-0.0106812,-0.00314331,-0.00537109,-0.00531006,0.00146484,-0.0138245,-0.025177,-0.0100708,-0.00650024,-0.012146,-0.0113525,-0.00390625,-0.0050354,-0.012207,0.00100708,-0.00692749,-0.0102539,0.0105286,0.0065918,-0.00469971,-0.0147705,0.0020752,0.00558472,0.000549316,0.000335693,-0.0206604,-0.00134277,0.00491333,0.00341797,-0.00302124,-0.017395,0.000274658,0.00482178,0.00979614,-0.0085144,-0.025238,-0.0158386,-0.0017395,0.0175171,-0.00396729,-0.0232239,-0.016449,0.00576782,0.0171204,-0.00314331,-0.0222778,-0.0219421,-0.00308228,0.0118713,-0.00442505,-0.0142822,-0.0012207,0.0128784,0.00683594,0.00280762,0.0050354,0.0167847,0.00765991,-0.00906372,-0.0115967,0.00576782,0.0196533,0.00784302,0.00415039,-0.00570679,0.00531006,0.0133667,0.0100708,0.0113525,-0.00637817,-0.00604248,0.00106812,-6.10352e-05,-0.0062561,-0.0167847,0.00918579,0.0231018,6.10352e-05,-0.0197449,-0.00106812,0.0160522,-0.000396729,-0.00933838,-0.000610352,0.000335693,0.000549316,0.00784302,0.00140381,-0.00280762,0.0071106,0.0108032,-0.00256348,-0.00558472,0.00463867,0.00650024,0.0115356,0.00805664,-0.00308228,-0.00543213,0.00900269,0.0101318,-0.00222778,-0.00918579,-0.00424194,-0.00189209,-0.0103455,0.000335693,0.00515747,-0.00531006,-0.0166321,-0.00463867,0.0100708,0.00604248,0.000549316,-0.012207,-0.00396729,0.00128174,-0.00390625,-0.0100098,-0.00146484,0.00598145,-0.00323486,-0.0206604,-0.0132751,-0.00357056,0.000335693,0.00256348,-0.00726318,-0.00564575,0.0015564,0.00363159,0.0175781,0.013092,-0.00012207,-0.00744629,-0.00106812,0.00195312,-0.00201416,0.0015564,-0.00918579,0.00012207,0.00146484,-0.000549316,0.00509644,0.0122681,0.0032959,-0.0109253,-0.00369263,-0.0088501,-0.0015564,0.0117493,-0.00549316,-0.0224304,-0.0109253,0.000457764,-0.00549316,-0.000946045,0.00189209,0.00274658,0.000549316,-0.000274658,-0.00195312,0.00784302,0.0127563,-0.00549316,-0.0106812,-0.0032959,0.00772095,0.0088501,0.00827026,-0.00134277,-0.003479,0.000457764,-0.000396729,-0.00610352,-0.00280762,0.00448608,-0.000457764,-0.00308228,-0.00732422,0.00201416,0.012207,-0.00180054,-0.0139465,-0.00860596,6.10352e-05,0.00442505,0.00610352,0.000457764,-0.00860596,0.00088501,0.0100098,-0.00515747,-0.00363159,0.00509644,0.00430298,0.0050354,-0.00234985,-0.00375366,-0.00738525,0.00845337,0.0125427,-0.00637817,-0.0101929,-0.00341797,0.00323486,0.0149536,0.0213318,0.00637817,-0.013031,-0.0188599,-0.00845337,-0.0050354,-0.0157166,-0.0305481,-0.0284424,-0.00778198,-0.00280762,-0.00576782,0.00302124,0.0163879,0.0106812,-0.00167847,0.00515747,0.0132141,0.0136108,0.00234985,-0.00509644,-0.00430298,0.00817871,0.00979614,-0.00106812,-0.00128174,-0.000335693,0.00811768,0.0120239,0.00683594,-0.0110779,-0.0184631,-0.000549316,0.00357056,-0.0147705,-0.0118713,-0.0071106,-0.0107422,-0.0105896,-0.00457764,-0.00918579,-0.0148315,-0.00827026,-0.00213623,-0.0104675,-0.0186462,-0.0131531,-0.00161743,-0.00274658,-0.0110168,0.00088501,0.0219421,0.0171204,-0.00134277,-0.00582886,0.00335693,0.0071106,-0.000274658,-0.00524902,-0.00469971,-0.00726318,-0.0128174,-0.00991821,0.00390625,0.0108032,-0.000732422,-0.00772095,-0.0102539,-0.00402832,0.00128174,-0.00985718,-0.0120239,-0.00958252,-0.00570679,-0.00201416,-0.0032959,0.00463867,0.00369263,-0.00314331,0.00140381,0.00979614,0.0127563,-0.00161743,-0.00732422,0.0116882,0.0135498,0.00012207,-0.00213623,0.0131531,0.0138245,0.00671387,0.00985718,0.0088501,0.00497437,-0.0017395,-0.00375366,-0.000457764,-0.00631714,-0.00692749,-0.00650024,-0.00274658,-0.00012207,0.00100708,0.003479,-0.00369263,0.00375366,0.003479,-0.00146484,-0.0038147,-0.00906372,-0.00180054,0.0032959,-0.00128174,-0.0106812,-0.000213623,0.0125427,0.00866699,0.00430298,0.00491333,-0.000610352,-0.00106812,0.00570679,-0.00195312,-0.0101318,-0.00765991,0.00274658,0.00878906,0.0101318,0.00415039,-0.00241089,0.00604248,0.00180054,-0.0115356,-0.00228882,-0.00793457,-0.0065918,-0.012207,-0.013031,-0.000793457,-0.000549316,-0.0038147,-0.00698853,0.00549316,0.00765991,0.00482178,-0.00012207,0.00195312,0.00341797,0.0071106,0.00146484,-0.00201416,0.0104065,0.00430298,-0.00369263,0.00958252,0.0144348,-0.00201416,-0.00637817,-0.00524902,-0.00308228,-0.00543213,0.00357056,-0.00430298,-0.0185852,-0.0144958,-0.0100098,-0.00491333,-0.00549316,-0.0104065,-0.0120239,-0.00772095,0.0071106,0.00912476,-0.0147095,-0.0246887,-0.00637817,0.0113525,0.00558472,-0.00631714,-0.00598145,0.00543213,0.0159607,0.00744629,-0.00228882,-0.00268555,0.00537109,0.00247192,-0.00765991,-0.00604248,0.000213623,0.00637817,0.003479,-0.00750732,-0.00839233,0.00448608,0.00738525,-0.0105286,-0.0142822,-0.00442505,0.00262451,0.00576782,-0.0012207,-0.00827026,-0.00692749,0.000793457,-0.00476074,-0.00872803,-0.00335693,-0.00448608,-0.00692749,-0.00610352,0.000732422,0.00189209,0.0067749,0.0065918,0.000793457,0.00228882,0.00717163,0.00979614,0.00543213,-0.00866699,-0.00683594,0.00088501,0.0067749,-0.00396729,-0.0083313,0.00631714,0.00643921,-0.00469971,-0.00448608,0.0038147,0.0015564,-0.00268555,0.00106812,0.0020752,-0.00650024,-0.00341797,0.013031,0.00839233,0.000274658,-0.00274658,-0.000793457,0.00616455,-0.00363159,0.000732422,0.0104065,-0.00531006,-0.00866699,-0.00146484,0.00610352,-0.00167847,-0.0202026,-0.0140991,-0.00390625,0.000396729,-0.0138855,-0.0169678,0.000213623,0.00241089,-0.000549316,-0.00180054,0.00280762,0,-0.00726318,-0.0032959,-0.00228882,-0.00262451,-0.00222778,-0.000793457,0.000213623,0.00302124,0.003479,0.000396729,0.0017395,0.0083313,0.000457764,-0.00637817,-0.000610352,0.00610352,-0.003479,-0.00845337,0.000213623,-0.00491333,0.00201416,0.00296021,-0.00296021,0.00341797,-0.0020752,-0.000671387,-0.00268555,-0.00390625,-0.00872803,-0.0124207,-0.00289917,0.000732422,0.00134277,-0.000793457,0.00100708,-0.0020752,-0.00112915,0.000457764,-0.00415039,-0.00482178,-0.00732422,-0.00509644,0.00698853,0.0032959,-0.00698853,-0.00396729,0,0.00839233,0.00430298,-0.00582886,-0.011261,-0.00665283,0.011261,0.0100708,0.00717163,0.00341797,0.00012207,0.0117493,0.0134277,0.0104065,0.00296021,0.0065918,0.0181885,0.0175171,0.00845337,0.00128174,-0.000732422,-0.00509644,-0.00744629,-0.00878906,-0.003479,-0.00549316,-0.0249634,-0.0255737,-0.0176392,-0.00375366,0.00894165,-0.00778198,-0.0255737,-0.00738525,0.0146179,0.00582886,-0.0143738,-0.0160522,-0.00222778,0.00759888,0.00778198,-0.003479,-0.00302124,0.0115967,0.0119324,0.0103455,0.003479,-0.00692749,-0.00946045,0.000671387,0.0103455,0.00241089,0.000946045,-0.00234985,-0.00296021,0.00457764,0.0148315,0.00482178,-0.0157166,-0.0139465,-0.00912476,-0.00146484,-0.00906372,-0.0202637,-0.015625,-0.00912476,-0.00799561,-0.00650024,-0.00228882,-0.00570679,-0.0147705,-0.0162964,-0.00839233,-0.00476074,-0.00195312,0.00234985,-0.00598145,-0.0109253,-0.00375366,0.00616455,0.0120239,0.00543213,-0.00357056,0.00598145,0.00991821,0.0017395,-0.00900269,-0.0032959,0.0138855,0.0107422,0.0038147,-0.00262451,-0.000732422,0.00610352,0.00402832,-0.00256348,-0.0171814,-0.0157776,-0.00476074,0.0012207,0.00759888,-0.00515747,-0.00845337,0.00592041,0.00906372,-0.0012207,-0.0107422,-0.00256348,0.00576782,0.0017395,-0.00402832,-0.0012207,0.00631714,0.00442505,-0.000671387,-0.000274658,0.00228882,0.00167847,0.00442505,0.00598145,-0.00112915,-0.00140381,0.0126038,0.0140381,0.00497437,0.00201416,0.00531006,0.011261,0.00457764,0.000335693,-0.00296021,0.000946045,0.00805664,-0.00582886,-0.0118103,-0.00134277,0.00234985,-0.0012207,-0.0135498,-0.019989,-0.0112,0.00088501,-0.0032959,-0.0124207,-0.0132141,0.00442505,0.0131531,0.00985718,0.00146484,-0.00274658,0.0020752,0.00643921,0.0114746,0.0015564,-0.003479,-0.00195312,0.0065918,0.00845337,0.0012207,-0.00146484,0.000671387,0.00296021,-0.00436401,-0.0135498,-0.0150452,-0.0102539,-0.0065918,-0.0032959,-0.00698853,-0.00576782,-0.00436401,-0.00161743,0.00738525,0.00146484,-0.00817871,-0.0111389,-0.00012207,0.0100098,0.0115967,0.00778198,0.00665283,0.00817871,0.00778198,0.00650024,-0.00726318,-0.0100708,-0.00228882,-0.00717163,-0.013092,-0.00524902,0.0083313,0.00241089,-0.00750732,-0.00637817,0.00543213,0.0101929,-0.00698853,-0.0173035,-0.00952148,0.00784302,0.00576782,-0.0071106,-0.00692749,0.000213623,0.00302124,0.00906372,0.00515747,0.00308228,-0.000671387,0.00469971,0.0209961,0.0161133,-0.00616455,-0.0149536,0.00106812,0.0178528,0.0118103,-0.0117493,-0.0236816,-0.013031,0.00363159,0.00778198,-0.00469971,-0.01651,-0.0158997,-0.00289917,0.000671387,-0.00146484,-0.00979614,-0.0194092,-0.00637817,0.00140381,-0.00564575,-0.0118713,-0.00738525,0.000335693,0.00262451,0.000610352,-0.0038147,-0.00726318,-0.000274658,-0.00100708,-0.00906372,-0.0114746,-0.00765991,0.00146484,0.00469971,0.00543213,0.0038147,0.00939941,0.00991821,0.00717163,0.0137024,0.0186462,0.0137634,0.00134277,-0.00457764,-0.00396729,0.00375366,0.0017395,-0.0157776,-0.0246277,-0.0167847,-0.00631714,-0.00442505,-0.0138855,-0.0220032,-0.0142822,-0.00616455,-0.00268555,-0.00793457,-0.0116882,-0.00683594,0.00341797,0.00939941,0.00146484,-0.00665283,-0.00134277,0.00933838,0.00604248,0.00436401,0.00469971,0.0141602,0.0140991,0.00991821,0.0126038,0.0118713,0.00558472,0.000213623,0.00430298,0.00442505,-0.00442505,-0.00643921,-0.000457764,-0.0020752,-0.00698853,-0.000274658,-0.00228882,-0.00894165,-0.00631714,-0.00476074,-0.00564575,-0.00576782,-0.0131531,-0.011261,-0.00161743,0.00476074,-0.00402832,-0.011261,-0.00463867,-0.00134277,0.00213623,0.00402832,-0.00189209,-0.00357056,0.00698853,0.0132141,0.0116882,0.003479,0.00268555,0.00509644,0.00933838,0.00866699,-0.00357056,-0.00912476,-0.0038147,0.00357056,0.00558472,0.000793457,-0.00598145,-0.00323486,0.00268555,0.00631714,0.00482178,-0.00564575,-0.0114136,-0.000549316,0.00805664,0.00323486,-0.00268555,-0.00463867,0.000671387,0.00704956,0.0050354,0.00195312,-0.00161743,0.000549316,0.00128174,0.0050354,0.000213623,-0.00134277,0.00469971,0.00308228,0.00396729,0.00180054,0.000732422,-0.00537109,-0.00744629,-0.00222778,-0.000274658,-0.00469971,-0.00482178,-0.00543213,-0.00592041,-0.00744629,-0.00698853,0.00134277,-0.00213623,-0.00973511,-0.0117493,-0.00274658,0.00598145,0.00570679,0.00140381,-0.00341797,-0.00140381,0.00289917,0.00683594,0.00262451,-0.00408936,-0.00146484,0.00128174,0.00375366,0.00335693,0.00274658,6.10352e-05,-0.00509644,-0.00213623,0.00106812,-0.00463867,-0.0144958,-0.0135498,-0.00759888,-0.00939941,-0.0100708,-0.0103455,-0.0150452,-0.0169678,-0.0143738,-0.00793457,-0.00564575,-0.0083313,-0.0085144,-0.000610352,0.00408936,0.00201416,-0.00308228,-0.000732422,0.00396729,0.0020752,-0.000396729,-0.000213623,0.00665283,0.00463867,-0.00213623,0.00128174,0.00592041,0.00241089,0.000793457,0.00308228,-0.00012207,0.00268555,0.00408936,0.000946045,0.000335693,6.10352e-05,0.00308228,-6.10352e-05,-0.00335693,-0.00369263,-0.00476074,0.00228882,-0.000671387,-0.00469971,-0.00335693,-0.00491333,-0.0085144,-0.00390625,-0.00106812,-0.00469971,-0.00872803,-0.00564575,-0.00524902,-0.00515747,0.00012207,0.000396729,-0.00201416,-0.00241089,-0.000457764,0.00576782,0.0114746,0.00436401,0.00408936,0.0085144,0.00558472,0.00341797,6.10352e-05,0.00234985,-0.00088501,-0.003479,0.000213623,-0.00106812,-0.00241089,-0.00180054,0.00363159,0.00442505,0.00262451,-0.000732422,-0.00241089,0.00430298,0.00582886,0.00228882,-0.00469971,-0.00610352,-0.00369263,-0.00256348,-0.00396729,-0.00509644,-0.00878906,-0.00375366,0.00161743,0.00201416,0.00262451,-0.00341797,-0.00390625,0.00576782,0.00973511,0.00671387,0.00262451,0.00112915,-0.00112915,0.0032959,0.00213623,0.00088501,-0.000610352,-0.00323486,-0.00167847,-0.00314331,-0.000335693,0.00213623,-0.00308228,-0.00314331,0.000793457,0.000946045,-0.00543213,-0.00323486,0.00128174,0.00106812,-0.00390625,-0.00665283,-0.00335693,-0.000671387,-0.00369263,-0.00631714,-0.00112915,0.00106812,-0.00201416,-0.00323486,-0.00256348,-0.00213623,-0.00491333,-0.00369263,-0.0071106,-0.00985718,-0.00408936,-0.00335693,-0.0088501,-0.0117493,-0.00839233,-0.00671387,-0.0114136,-0.0118103,-0.0117493,-0.015625,-0.0116882,-0.00817871,-0.00592041,-0.00683594,-0.0100708,-0.00738525,-0.000396729,0.00213623,-0.00549316,-0.00564575,0.000274658,0.00469971,0.00228882,0.00201416,0.00247192,-0.000793457,0.000946045,0.00979614,0.00610352,0.00274658,0.00424194,0.00140381,0.00302124,0.00704956,0.0032959,-0.000610352,-0.00308228,-0.0012207,0.00430298,0.00817871,0.00537109,0.00643921,0.0083313,0.0107422,0.0114136,0.00817871,0.0103455,0.0152893,0.0175171,0.0152283,0.0115356,0.0133667,0.0127563,0.0114746,0.0126953,0.0114136,0.00759888,0.00341797,0.00363159,0.00772095,0.00631714,0.00012207,-0.000549316,0.00442505,0.00631714,0.003479,-0.0032959,-0.00866699,-0.00784302,-0.00582886,-0.0088501,-0.0114136,-0.0103455,-0.00692749,-0.00683594,-0.00866699,-0.0071106,-0.0106812,-0.0115356,-0.0148926,-0.0179749,-0.0203247,-0.019989,-0.0187988,-0.020752,-0.0222168,-0.0205994,-0.0218201,-0.0212097,-0.0192566,-0.0246277,-0.0297852,-0.0289307,-0.0247803,-0.0267944,-0.0291138,-0.0324097,-0.0283203,-0.0265198,-0.0314636,-0.0343018,-0.0345764,-0.0316772,-0.0315552,-0.028717,-0.0231018,-0.0220032,-0.0229492,-0.0147705,-0.00726318,-0.00228882,0.003479,0.00537109,0.0110168,0.016571,0.0212097,0.027771,0.0337524,0.0394592,0.0455627,0.0493164,0.056366,0.0657043,0.0646973,0.0610046,0.0620728,0.0680542,0.070343,0.0675049,0.0639038,0.0621643,0.0588684,0.0541077,0.0525513,0.0495911,0.0404663,0.0310669,0.0281982,0.0273743,0.0231018,0.0108643,0.00112915,-0.00228882,-0.00805664,-0.0131531,-0.020874,-0.0222168,-0.0198059,-0.0216064,-0.0204773,-0.0228271,-0.0234375,-0.0203247,-0.017395,-0.0196533,-0.024231,-0.020813,-0.0176392,-0.0200806,-0.0195312,-0.0190735,-0.0224915,-0.0269165,-0.0312805,-0.0375977,-0.0437012,-0.0499268,-0.0599976,-0.0657043,-0.0738831,-0.0834351,-0.0855103,-0.0876465,-0.0956421,-0.0971069,-0.0921631,-0.0913391,-0.090332,-0.0855713,-0.0808716,-0.0794067,-0.0745544,-0.0622253,-0.0495911,-0.0409546,-0.0360413,-0.0223389,-0.00476074,0.0113525,0.0209961,0.0302124,0.0450439,0.0640869,0.0792542,0.0917358,0.108521,0.12149,0.131348,0.142029,0.150269,0.148651,0.144897,0.144623,0.141205,0.127045,0.108398,0.0927429,0.0806885,0.0669861,0.0492554,0.0287781,0.0159607,0.0101929,0.00280762,-0.00576782,-0.00952148,-0.0146179,-0.0187378,-0.0194092,-0.0194092,-0.020874,-0.0224915,-0.024231,-0.0238953,-0.0171204,-0.0101318,-0.00106812,0.00738525,0.0114136,0.0194702,0.0271912,0.0293274,0.0262451,0.02771,0.0291138,0.024292,0.0128784,0.0020752,-0.00866699,-0.0240173,-0.0393372,-0.0603943,-0.0853577,-0.105103,-0.121277,-0.129395,-0.138245,-0.147125,-0.154114,-0.156189,-0.148254,-0.137512,-0.131958,-0.131134,-0.135834,-0.132233,-0.119598,-0.103699,-0.0918884,-0.0846863,-0.0743713,-0.0559082,-0.0303955,-0.00289917,0.0167847,0.0357666,0.0568542,0.0808716,0.105774,0.130798,0.152679,0.16626,0.1745,0.18277,0.186981,0.188324,0.182434,0.167938,0.14563,0.124908,0.103638,0.0845032,0.0673828,0.0475159,0.0249023,0.00314331,-0.0105896,-0.0176392,-0.0255737,-0.036499,-0.046051,-0.0504761,-0.0490723,-0.0430298,-0.037262,-0.0387268,-0.037323,-0.025116,-0.00805664,0.00665283,0.0149536,0.0248413,0.0400085,0.0589905,0.0739746,0.0785828,0.081543,0.0855103,0.0833435,0.0756531,0.0653687,0.0527649,0.0303345,0.00323486,-0.0269165,-0.0569763,-0.0837708,-0.105438,-0.12677,-0.14975,-0.166656,-0.176971,-0.181427,-0.177399,-0.176239,-0.174774,-0.170013,-0.166718,-0.162567,-0.147247,-0.130341,-0.123169,-0.123291,-0.115234,-0.0929565,-0.0633545,-0.0377197,-0.0183105,0.00424194,0.032959,0.0677185,0.0970459,0.124847,0.147797,0.164307,0.180664,0.195831,0.204315,0.198944,0.187042,0.173096,0.158783,0.140076,0.116638,0.0914917,0.0708008,0.0496521,0.0279236,0.0102539,-0.00268555,-0.0171204,-0.032135,-0.0461731,-0.0558472,-0.0593262,-0.0628967,-0.0667725,-0.0686035,-0.0598755,-0.0455627,-0.0370483,-0.0299377,-0.0193176,-0.000213623,0.0223389,0.0420837,0.0577087,0.0700684,0.0837708,0.100281,0.115051,0.11853,0.111694,0.102142,0.0928345,0.074707,0.0438232,0.0071106,-0.0263062,-0.0564575,-0.0817566,-0.108337,-0.138519,-0.16275,-0.173157,-0.175781,-0.176514,-0.177582,-0.18161,-0.184784,-0.181885,-0.170685,-0.155853,-0.148193,-0.148254,-0.144562,-0.129883,-0.106049,-0.0832214,-0.0640259,-0.0462952,-0.0206604,0.0161133,0.0543518,0.0886536,0.118988,0.146912,0.170288,0.194366,0.214233,0.224579,0.221832,0.21228,0.200623,0.183502,0.161469,0.133972,0.106445,0.0759888,0.0453186,0.0212708,0.00213623,-0.0179138,-0.0374451,-0.0534363,-0.066925,-0.0745544,-0.0773315,-0.0807495,-0.085907,-0.0838318,-0.0736389,-0.0646973,-0.0574646,-0.0481262,-0.0310059,-0.0106812,0.00759888,0.0220947,0.0388489,0.057373,0.0761108,0.0914001,0.105164,0.115234,0.119537,0.114227,0.104553,0.0875854,0.06073,0.0350952,0.0067749,-0.0233459,-0.0589294,-0.0927429,-0.120667,-0.143433,-0.158936,-0.170746,-0.178314,-0.18512,-0.192169,-0.194153,-0.18457,-0.170685,-0.162415,-0.15979,-0.153351,-0.13974,-0.118256,-0.0953064,-0.0768433,-0.0603333,-0.0383911,-0.0106812,0.024353,0.0603333,0.0914917,0.119141,0.146301,0.177734,0.20639,0.229065,0.240875,0.240875,0.233643,0.224304,0.209808,0.188263,0.159454,0.124756,0.0896606,0.0559692,0.0287781,0.00390625,-0.0276489,-0.058136,-0.0809326,-0.0913391,-0.0983887,-0.106659,-0.110077,-0.109741,-0.105164,-0.0940247,-0.0783997,-0.0626221,-0.048645,-0.0350952,-0.0184021,0.00228882,0.0256958,0.0453186,0.0598145,0.0735474,0.0891418,0.0987244,0.103027,0.103882,0.101959,0.090271,0.0730896,0.0540161,0.0327454,0.00860596,-0.0191345,-0.0521545,-0.0875854,-0.114899,-0.133484,-0.147919,-0.164978,-0.183228,-0.200012,-0.209595,-0.205841,-0.193146,-0.184509,-0.184235,-0.181213,-0.162964,-0.131622,-0.101288,-0.0792542,-0.0620117,-0.0384521,-0.00497437,0.0317383,0.0675049,0.0999451,0.126526,0.153015,0.181763,0.210693,0.233368,0.244629,0.246124,0.243286,0.239532,0.229462,0.210541,0.185791,0.155304,0.122742,0.0887146,0.0559082,0.0255127,-0.0101929,-0.0443726,-0.0721436,-0.0970459,-0.114502,-0.128204,-0.135986,-0.136261,-0.131409,-0.124512,-0.112366,-0.0922852,-0.0699463,-0.0501404,-0.0301208,-0.00878906,0.0142822,0.0388489,0.0589905,0.0783997,0.0906067,0.0976562,0.101685,0.103027,0.0986023,0.0867004,0.0664368,0.0453796,0.0256958,0.00415039,-0.0216675,-0.0487366,-0.0730896,-0.0966492,-0.118073,-0.134705,-0.149933,-0.170197,-0.186798,-0.195709,-0.196777,-0.195587,-0.194366,-0.193085,-0.18692,-0.172546,-0.15155,-0.127991,-0.103088,-0.0787964,-0.0511475,-0.0171204,0.0211487,0.0599976,0.0969849,0.130615,0.161346,0.192413,0.221893,0.242828,0.256317,0.26123,0.261627,0.255524,0.242615,0.224976,0.203827,0.17572,0.142609,0.107788,0.0724182,0.0401917,0.00570679,-0.026123,-0.0574646,-0.0856934,-0.108337,-0.123413,-0.131226,-0.13443,-0.136322,-0.137787,-0.129608,-0.11261,-0.0942993,-0.0752258,-0.053009,-0.0299377,-0.00744629,0.0149536,0.040802,0.0630798,0.079071,0.0882568,0.0965271,0.0984497,0.0960388,0.0872498,0.0704651,0.049469,0.028595,0.00576782,-0.0190735,-0.0469666,-0.0717468,-0.094635,-0.114624,-0.134094,-0.150665,-0.165924,-0.179932,-0.189484,-0.192505,-0.190948,-0.190277,-0.189606,-0.181763,-0.167175,-0.146912,-0.128662,-0.111542,-0.0875244,-0.0553589,-0.0200806,0.0151672,0.0516663,0.0877075,0.121674,0.155579,0.191895,0.22464,0.245728,0.255768,0.262146,0.268799,0.269257,0.260681,0.240356,0.214569,0.185699,0.154694,0.121338,0.0827637,0.04422,0.0050354,-0.0326233,-0.0653687,-0.0926208,-0.115234,-0.131226,-0.142365,-0.148315,-0.147919,-0.14035,-0.125763,-0.108856,-0.0927429,-0.0738831,-0.0528259,-0.0276489,-6.10352e-05,0.0228271,0.0411987,0.0571289,0.0727539,0.0843506,0.0917358,0.0906677,0.085022,0.0744324,0.0603333,0.0437622,0.0256348,0.0038147,-0.0183105,-0.0458984,-0.0683899,-0.0877075,-0.107452,-0.127258,-0.145294,-0.160797,-0.171692,-0.178986,-0.183167,-0.186981,-0.187317,-0.183289,-0.173096,-0.160278,-0.145721,-0.128326,-0.105164,-0.0777283,-0.0499268,-0.0191956,0.0184021,0.0556335,0.0917358,0.126099,0.161133,0.190155,0.217133,0.240204,0.253754,0.258728,0.259552,0.256104,0.24646,0.225861,0.199677,0.168732,0.135254,0.100616,0.0636292,0.0252991,-0.0132141,-0.0493164,-0.0777893,-0.102814,-0.124298,-0.139526,-0.147461,-0.15094,-0.14798,-0.139465,-0.126373,-0.106445,-0.0838318,-0.0634155,-0.0391846,-0.0119324,0.016449,0.040741,0.0606689,0.0760498,0.0898743,0.103821,0.111359,0.109924,0.102631,0.0871887,0.0717468,0.0532837,0.0315552,0.00497437,-0.0234985,-0.0516663,-0.0786743,-0.100616,-0.122559,-0.14563,-0.165771,-0.179199,-0.185913,-0.189667,-0.191345,-0.188721,-0.181,-0.166931,-0.1492,-0.128937,-0.107391,-0.0853577,-0.061615,-0.0350952,-0.00772095,0.019989,0.0502625,0.0794678,0.106903,0.132812,0.158325,0.179749,0.197052,0.20752,0.213348,0.212769,0.209412,0.19928,0.184509,0.165588,0.141357,0.112091,0.0816956,0.0522766,0.0200806,-0.0153809,-0.0492554,-0.0775146,-0.101685,-0.119385,-0.133484,-0.142151,-0.142365,-0.134491,-0.124023,-0.110474,-0.0910034,-0.0686646,-0.0420227,-0.015625,0.011261,0.0353088,0.0602722,0.085022,0.105499,0.119934,0.126862,0.12854,0.12854,0.123016,0.107178,0.0869751,0.0641785,0.0413513,0.0158386,-0.013092,-0.0422974,-0.0706177,-0.0914917,-0.111206,-0.129944,-0.148132,-0.15979,-0.16745,-0.16861,-0.167664,-0.163086,-0.155182,-0.142365,-0.12323,-0.102692,-0.0828857,-0.0618286,-0.0386047,-0.0154419,0.00860596,0.0284424,0.0481262,0.0658264,0.0838928,0.0971069,0.108795,0.117645,0.122894,0.124573,0.124084,0.121399,0.116852,0.106171,0.0945129,0.0809326,0.0648193,0.0472412,0.028717,0.00924683,-0.0104675,-0.02771,-0.0424805,-0.0546265,-0.0671082,-0.0763245,-0.0785828,-0.0750427,-0.0705261,-0.0643616,-0.0554504,-0.041687,-0.0252991,-0.00765991,0.00878906,0.0246277,0.0424194,0.0571899,0.0683289,0.077179,0.0836792,0.0886536,0.089386,0.086853,0.0808105,0.0724182,0.0628967,0.0471191,0.0323486,0.0147095,-0.00396729,-0.020874,-0.0369263,-0.0534973,-0.0681763,-0.0785828,-0.0878601,-0.094635,-0.0986633,-0.099884,-0.0985413,-0.0963135,-0.0916138,-0.08255,-0.0711975,-0.0601501,-0.0491333,-0.0381775,-0.0259705,-0.015625,-0.0038147,0.00616455,0.0149536,0.0233459,0.0285339,0.0333557,0.0369263,0.0386047,0.0397339,0.0404053,0.0399475,0.0369263,0.0325623,0.0289307,0.0274658,0.0236816,0.0188599,0.0132751,0.00958252,0.00805664,0.00537109,0.0038147,0.00308228,0.00128174,0.00247192,0.00308228,0.00396729,0.00564575,0.0071106,0.00784302,0.0100708,0.0110779,0.0137024,0.0150452,0.0140991,0.0129395,0.0138855,0.0136108,0.0133667,0.0114746,0.0108032,0.00772095,0.0062561,0.00430298,0.00189209,0.00134277,-0.000549316,-0.00262451,-0.00357056,-0.00616455,-0.0088501,-0.00912476,-0.0108643,-0.0152283,-0.0192566,-0.0198669,-0.0209961,-0.0222778,-0.0246887,-0.0264587,-0.0279846,-0.0298767,-0.0312805,-0.0312805,-0.0330811,-0.0341492,-0.036377,-0.0361633,-0.0354919,-0.0358276,-0.0360413,-0.0359192,-0.0350952,-0.0326233,-0.0276489,-0.0246887,-0.020813,-0.0179749,-0.0114136,-0.00424194,0.00302124,0.00952148,0.016449,0.0231628,0.0289917,0.0354919,0.0415344,0.0459595,0.0501404,0.0523376,0.0531006,0.0531006,0.0516052,0.049469,0.0458374,0.0414734,0.0357666,0.0293884,0.0212708,0.0129395,0.00827026,0.00280762,-0.00424194,-0.0116882,-0.016449,-0.0192566,-0.0194702,-0.0205383,-0.0240173,-0.0227661,-0.019989,-0.0177917,-0.0139465,-0.0104065,-0.00549316,-0.00302124,0.00180054,0.00531006,0.0105286,0.0126038,0.0141602,0.0127563,0.013092,0.0102539,0.00726318,0.0032959,-0.0020752,-0.00744629,-0.0142212,-0.0202026,-0.0250244,-0.029541,-0.0355835,-0.0400696,-0.0437622,-0.0461121,-0.0467834,-0.0461731,-0.0461121,-0.0452271,-0.0431519,-0.0412903,-0.0377808,-0.0319519,-0.0279236,-0.0224915,-0.0162354,-0.0111389,-0.00402832,0.00308228,0.0103455,0.0159607,0.0214844,0.0256348,0.0312805,0.0370483,0.0406189,0.0433044,0.0456543,0.0461121,0.0477905,0.0481873,0.0476379,0.0447693,0.0410156,0.0366516,0.0342407,0.0310059,0.0263062,0.0210876,0.0147705,0.00811768,0.003479,-0.00189209,-0.00604248,-0.00924683,-0.0131531,-0.0149536,-0.015625,-0.0162354,-0.0162964,-0.0148926,-0.0135498,-0.0134277,-0.0111389,-0.00900269,-0.00549316,-0.000213623,0.00396729,0.00415039,0.00515747,0.0065918,0.00805664,0.00872803,0.00665283,0.0050354,-6.10352e-05,-0.0017395,-0.00558472,-0.0100098,-0.0157166,-0.0225525,-0.0282593,-0.0310059,-0.0350342,-0.0400085,-0.0438843,-0.0457764,-0.0447083,-0.0446472,-0.0436401,-0.0428162,-0.0401306,-0.0392761,-0.0344238,-0.0287781,-0.0226135,-0.0174561,-0.013092,-0.0062561,0.00280762,0.0110779,0.0189819,0.0253601,0.0315552,0.0377808,0.0447083,0.0507507,0.0547791,0.0570374,0.0579224,0.0576477,0.0563049,0.0540161,0.0498047,0.0457153,0.0395203,0.0305481,0.0234985,0.0182495,0.0138245,0.00531006,-0.00228882,-0.00906372,-0.013092,-0.0151672,-0.0162964,-0.0175781,-0.0224304,-0.0271912,-0.0279846,-0.0187988,-0.00866699,-0.00793457,-0.015564,-0.0128174,-0.000610352,0.00924683,0.0144348,0.0126038,0.00860596,0.00952148,0.0148315,0.0195312,0.0162964,0.00991821,-0.00140381,-0.00604248,-0.0101929,-0.0162354,-0.0250244,-0.0360413,-0.0475159,-0.0545044,-0.057251,-0.0618286,-0.0634155,-0.0630188,-0.0606689,-0.0617371,-0.0587158,-0.0508728,-0.039856,-0.0309448,-0.0263062,-0.0235596,-0.0169678,-0.00958252,-0.00167847,0.00665283,0.013092,0.0144958,0.0188599,0.0270386,0.0367126,0.0475159,0.0556946,0.0571289,0.0578613,0.0636292,0.0729675,0.0784607,0.0767822,0.0709534,0.0646362,0.0578003,0.0522766,0.0444336,0.0346985,0.0241699,0.0140991,0.00759888,0.00180054,-0.00201416,-0.00195312,-0.00390625,-0.00683594,-0.00765991,-0.00726318,-0.00759888,-0.00704956,-0.00692749,-0.00592041,-0.0088501,-0.0145569,-0.017395,-0.0183105,-0.0170593,-0.017395,-0.0214844,-0.0221558,-0.0198669,-0.0140381,-0.00878906,-0.00531006,-0.00564575,-0.0050354,-0.00827026,-0.0157776,-0.0218811,-0.029541,-0.0393982,-0.0558472,-0.0753784,-0.0917358,-0.104034,-0.110138,-0.115173,-0.119659,-0.121002,-0.116974,-0.105499,-0.0899353,-0.0725403,-0.0578003,-0.0427551,-0.0285339,-0.0134888,0.00213623,0.0159607,0.0279236,0.0349731,0.0410767,0.0464478,0.0534973,0.0617371,0.0693359,0.0780029,0.0877075,0.0940247,0.102203,0.113617,0.124176,0.128723,0.127106,0.120148,0.113434,0.10556,0.0955811,0.07901,0.0596008,0.0400085,0.0203247,0.00469971,-0.00805664,-0.0161743,-0.0236816,-0.0283813,-0.0317993,-0.0301208,-0.0226746,-0.0139465,-0.0050354,-0.00100708,0.00213623,0.00793457,0.0144958,0.0197449,0.0212097,0.0202637,0.0191956,0.0179138,0.0150452,0.00991821,0.00222778,-0.00637817,-0.0191345,-0.0367126,-0.0545044,-0.0711365,-0.0914001,-0.11618,-0.140076,-0.15744,-0.16626,-0.16861,-0.170197,-0.169128,-0.158997,-0.142883,-0.126587,-0.112701,-0.0978699,-0.0811462,-0.0620117,-0.0461121,-0.0332336,-0.0232849,-0.0118713,0.000274658,0.0107422,0.0191956,0.0302124,0.0448303,0.0606689,0.07724,0.0932312,0.110199,0.128784,0.145966,0.157654,0.162628,0.161072,0.154694,0.145721,0.134094,0.118195,0.0977783,0.0758362,0.0559082,0.0404053,0.028717,0.020874,0.0161743,0.0149536,0.0142212,0.0187988,0.0244446,0.0291138,0.0325623,0.0352478,0.0348206,0.0310059,0.0292053,0.0272522,0.024292,0.0158386,0.00946045,0.00436401,0.0038147,0.00463867,0.00262451,-0.0017395,-0.00302124,-0.00497437,-0.00958252,-0.0187378,-0.0340881,-0.0541687,-0.0777283,-0.100616,-0.120819,-0.138855,-0.156036,-0.171814,-0.180939,-0.181549,-0.175781,-0.164581,-0.152679,-0.140259,-0.126923,-0.110016,-0.0891418,-0.0707397,-0.0569763,-0.0454407,-0.037262,-0.028717,-0.020874,-0.013031,-0.00167847,0.0103455,0.0223389,0.0354919,0.052948,0.0744324,0.0973816,0.116302,0.131012,0.144226,0.155853,0.165314,0.168121,0.165497,0.156189,0.143768,0.13028,0.113037,0.0948486,0.0756531,0.0583801,0.0401306,0.0232239,0.0102539,0.00463867,0.00234985,-0.000610352,-0.00509644,-0.00491333,0.00146484,0.00738525,0.0109253,0.013031,0.0139465,0.0152283,0.0182495,0.0201416,0.0191956,0.017395,0.01651,0.0153809,0.0106812,0.0032959,-0.00448608,-0.0142822,-0.0318909,-0.0518188,-0.0696106,-0.0795898,-0.0881958,-0.098999,-0.11203,-0.123077,-0.126984,-0.123962,-0.120483,-0.121277,-0.127716,-0.129791,-0.125366,-0.117462,-0.111481,-0.108124,-0.103973,-0.0967102,-0.0885315,-0.0802002,-0.0661621,-0.0478516,-0.0265198,-0.00979614,0.00979614,0.0324707,0.0608215,0.0886536,0.11203,0.12854,0.140015,0.151276,0.1633,0.171814,0.169128,0.161957,0.153107,0.14389,0.129944,0.11377,0.0991211,0.0830994,0.0630798,0.0404053,0.0227661,0.0123596,0.00195312,-0.0117493,-0.0241699,-0.0322876,-0.0340881,-0.0308838,-0.0282593,-0.0271912,-0.0246277,-0.0185852,-0.0110168,-0.00442505,0.00274658,0.0120239,0.0212097,0.0265198,0.0241699,0.0214233,0.020813,0.0148926,-0.0017395,-0.0220032,-0.0386658,-0.0482483,-0.0577087,-0.0704651,-0.0838928,-0.0921631,-0.0949097,-0.094635,-0.0973816,-0.100342,-0.106842,-0.107849,-0.107666,-0.10907,-0.111877,-0.11203,-0.111603,-0.11203,-0.112762,-0.107574,-0.0955811,-0.0804749,-0.0634155,-0.0465698,-0.0234985,0.00665283,0.0392761,0.0714111,0.0992126,0.120392,0.141815,0.160278,0.176575,0.182831,0.181488,0.17746,0.167511,0.155365,0.143036,0.125854,0.106903,0.0855713,0.0614929,0.0401306,0.0241699,0.00958252,-0.00598145,-0.0203247,-0.0334778,-0.0405273,-0.0419617,-0.040863,-0.0401917,-0.0395203,-0.0376587,-0.0328064,-0.0256348,-0.0158997,-0.0067749,0.00357056,0.0129395,0.0175781,0.0228882,0.029541,0.0294495,0.0210876,0.00750732,-0.00564575,-0.0161743,-0.0259094,-0.0383301,-0.0532227,-0.06604,-0.0752258,-0.0798035,-0.0842285,-0.089325,-0.0963135,-0.101135,-0.104309,-0.107117,-0.110199,-0.111267,-0.112091,-0.117737,-0.119659,-0.120209,-0.115173,-0.104828,-0.0924988,-0.0791321,-0.0643616,-0.0426331,-0.0135498,0.0187988,0.0500793,0.0795288,0.10321,0.126862,0.152008,0.171021,0.183624,0.185181,0.182495,0.176392,0.167511,0.154785,0.135834,0.115173,0.0904846,0.065033,0.0420837,0.0228882,0.00564575,-0.0116882,-0.0265198,-0.0374451,-0.0414734,-0.0411987,-0.0377808,-0.0356445,-0.0326233,-0.0263062,-0.0176392,-0.0101318,-0.000671387,0.0107422,0.0211487,0.0275269,0.028717,0.0310669,0.0332336,0.0338135,0.0253601,0.00991821,-0.00442505,-0.0152283,-0.0247803,-0.0344238,-0.0471802,-0.0596008,-0.0673828,-0.0727539,-0.0765076,-0.0819397,-0.0879211,-0.09375,-0.0971985,-0.102631,-0.110596,-0.114441,-0.115967,-0.119537,-0.126587,-0.13147,-0.129333,-0.121216,-0.109344,-0.0960999,-0.081604,-0.061615,-0.0337524,-0.00128174,0.0335693,0.065033,0.0908203,0.113098,0.136444,0.158936,0.173706,0.179993,0.177399,0.169403,0.159546,0.14859,0.133972,0.111267,0.0861816,0.0620728,0.0430908,0.0266418,0.0101318,-0.00509644,-0.0147095,-0.0234985,-0.0283203,-0.0309448,-0.0284424,-0.024292,-0.0200806,-0.0184021,-0.0163879,-0.0115356,-0.0020752,0.00906372,0.0159607,0.0194092,0.0227661,0.028595,0.0375977,0.0400696,0.0357056,0.0292053,0.0228271,0.0144348,0.00738525,-0.00189209,-0.0133667,-0.025238,-0.0346985,-0.0446472,-0.0547791,-0.0641785,-0.0734253,-0.0817566,-0.0934143,-0.105103,-0.114716,-0.120941,-0.126984,-0.134369,-0.141876,-0.144958,-0.145569,-0.14093,-0.131958,-0.119659,-0.104218,-0.0846252,-0.0604858,-0.0312805,0.00234985,0.0344238,0.0618896,0.0877991,0.112274,0.136841,0.157043,0.168518,0.172546,0.169952,0.16571,0.1586,0.146454,0.126709,0.10321,0.0783997,0.0579224,0.037262,0.0139465,-0.00643921,-0.0232849,-0.0357056,-0.0465088,-0.0545044,-0.057251,-0.0560303,-0.0496521,-0.0434875,-0.0358276,-0.0259705,-0.0103455,0.00738525,0.0238342,0.0362549,0.0475769,0.0625,0.0759888,0.0830078,0.0823669,0.079071,0.0737,0.0643616,0.0512085,0.0368347,0.0209961,0.00524902,-0.00918579,-0.0214233,-0.0343628,-0.0484619,-0.0630188,-0.077179,-0.0882568,-0.101624,-0.115448,-0.126434,-0.134644,-0.141083,-0.147186,-0.152222,-0.151947,-0.148804,-0.137726,-0.124359,-0.109253,-0.0940247,-0.0748291,-0.0487366,-0.0198059,0.00805664,0.0342407,0.0566406,0.078064,0.0995483,0.117401,0.12912,0.133362,0.133636,0.124908,0.116241,0.102753,0.0864563,0.061554,0.0338135,0.0071106,-0.0204773,-0.0476379,-0.0764465,-0.0984497,-0.113037,-0.121002,-0.126923,-0.123688,-0.106171,-0.0758362,-0.0423584,-0.015564,0.0103455,0.0476379,0.0917358,0.126648,0.145721,0.162964,0.181763,0.196106,0.192749,0.17572,0.15979,0.144958,0.119934,0.0873108,0.057251,0.0358276,0.0185852,0.000396729,-0.0214233,-0.039856,-0.0476379,-0.0491333,-0.0489197,-0.0504761,-0.053009,-0.053833,-0.0508728,-0.0476379,-0.0469666,-0.048584,-0.0517578,-0.058197,-0.0640869,-0.0683899,-0.0689392,-0.0683899,-0.0715332,-0.0763245,-0.0767212,-0.0730286,-0.0653687,-0.0555115,-0.0482483,-0.0411377,-0.0351562,-0.0304565,-0.0259705,-0.0226135,-0.0209351,-0.0222778,-0.0244446,-0.0272522,-0.0283203,-0.0271301,-0.0257874,-0.0236816,-0.0218201,-0.0194702,-0.0153809,-0.00692749,0.00698853,0.0215454,0.0319519,0.0410156,0.049469,0.06073,0.0705261,0.0770569,0.0821533,0.0862427,0.0878601,0.0881348,0.086792,0.0867004,0.0845642,0.0795288,0.0719604,0.0658264,0.061676,0.0590515,0.0541077,0.0475159,0.040863,0.0355835,0.0303345,0.0239563,0.0187988,0.0148315,0.0101318,0.00476074,0.00128174,-0.00112915,-0.00241089,-0.003479,-0.00543213,-0.0083313,-0.0108032,-0.0125427,-0.0151672,-0.0171814,-0.0226135,-0.0268555,-0.0340881,-0.0394592,-0.0474548,-0.0531616,-0.0604858,-0.0674438,-0.0751648,-0.0831604,-0.0885315,-0.0920715,-0.0944214,-0.0970459,-0.0976562,-0.094635,-0.0899353,-0.0839539,-0.0779114,-0.0704651,-0.0633545,-0.0556946,-0.0471802,-0.0389404,-0.0296021,-0.021759,-0.0132141,-0.00442505,0.00396729,0.0131531,0.0203247,0.0281067,0.0348206,0.0426941,0.0493164,0.053833,0.0588074,0.0640259,0.0665894,0.0670471,0.0664978,0.0656433,0.0654907,0.0622864,0.0590515,0.0539551,0.0499878,0.0457153,0.0415344,0.036438,0.0314636,0.0260315,0.0209961,0.0167236,0.0128174,0.00793457,0.00537109,0.00302124,0.00100708,-0.000671387,-0.00189209,-0.00274658,-0.00308228,-0.00289917,-0.0038147,-0.00430298,-0.00604248,-0.00692749,-0.00933838,-0.0114136,-0.0144958,-0.0173035,-0.0210876,-0.0263672,-0.0305481,-0.0349731,-0.0413513,-0.0464478,-0.0518799,-0.0562439,-0.0623474,-0.0656433,-0.0692749,-0.070282,-0.0711365,-0.0716858,-0.0711365,-0.0690613,-0.0646973,-0.0614014,-0.0560303,-0.0498657,-0.0413513,-0.0311279,-0.0220032,-0.0114136,-0.00088501,0.0100708,0.0209351,0.0309448,0.0396729,0.048645,0.0545654,0.0602722,0.0643005,0.0687866,0.0697327,0.0697327,0.0684509,0.0662537,0.0636902,0.0605469,0.057251,0.0534973,0.0510864,0.0470581,0.0433655,0.0402832,0.0384521,0.0348206,0.0331421,0.028717,0.0260315,0.0224304,0.0191956,0.0157166,0.0118103,0.00973511,0.00497437,0.000671387,-0.00314331,-0.00549316,-0.00924683,-0.0120239,-0.0155029,-0.0182495,-0.0204773,-0.0222778,-0.0256958,-0.0283813,-0.0310669,-0.0344849,-0.0384521,-0.041687,-0.0448303,-0.0481262,-0.0518188,-0.0544434,-0.0579224,-0.0603333,-0.0621643,-0.0626831,-0.0633545,-0.0637512,-0.0630798,-0.061554,-0.0579834,-0.0543518,-0.0505981,-0.0459595,-0.040741,-0.0335693,-0.0271912,-0.0197449,-0.0115356,-0.00323486,0.0065918,0.0150452,0.0237732,0.0310669,0.0401917,0.0466309,0.0540161,0.0598755,0.0655823,0.0696106,0.0724182,0.0734253,0.0725403,0.0718079,0.0705261,0.0680542,0.0644836,0.0608826,0.0555115,0.0514221,0.0464478,0.0414734,0.0354309,0.0299377,0.0239563,0.0194702,0.0150452,0.0102539,0.00482178,0.00128174,-0.00308228,-0.00692749,-0.00918579,-0.012085,-0.0139465,-0.0152283,-0.0167236,-0.0173035,-0.0177307,-0.0189819,-0.019928,-0.021759,-0.0232239,-0.0256958,-0.0292053,-0.032135,-0.036438,-0.0401917,-0.0449829,-0.0492554,-0.0544434,-0.0580444,-0.0621643,-0.0648193,-0.0663147,-0.0679321,-0.0677795,-0.0677795,-0.0649719,-0.0623474,-0.0587158,-0.0541077,-0.0479126,-0.0404663,-0.0328064,-0.026123,-0.0173035,-0.00845337,0.000396729,0.00866699,0.0181885,0.0262451,0.0349731,0.0420227,0.0478516,0.0551758,0.06073,0.0633545,0.0661621,0.068512,0.0691223,0.0684509,0.0654297,0.0632935,0.0596619,0.0566406,0.049408,0.0440369,0.0380554,0.033905,0.0269165,0.0222168,0.0183105,0.0148315,0.0117493,0.00772095,0.00497437,0.00396729,0.00100708,-0.00195312,-0.00469971,-0.00469971,-0.0067749,-0.00744629,-0.0085144,-0.0083313,-0.00839233,-0.00698853,-0.00772095,-0.00744629,-0.00671387,-0.00570679,-0.00750732,-0.00979614,-0.0140381,-0.0177917,-0.0230103,-0.0278625,-0.0344849,-0.0390015,-0.0434265,-0.0483093,-0.0515442,-0.0541077,-0.0551147,-0.0568542,-0.0564575,-0.0558472,-0.053833,-0.0511475,-0.0472412,-0.0429688,-0.0376587,-0.0330811,-0.0283813,-0.0234375,-0.0184021,-0.0118713,-0.00524902,0.00213623,0.00631714,0.0108032,0.0174561,0.024292,0.0292664,0.0334167,0.0377808,0.0411377,0.0433655,0.0477295,0.0510864,0.0540161,0.0545044,0.0522766,0.0520935,0.0526123,0.0516052,0.0498047,0.0475159,0.0437622,0.0402832,0.0370483,0.0366516,0.0336304,0.0293274,0.0214233,0.015625,0.012085,0.00765991,-0.000396729,-0.00616455,-0.00918579,-0.0157776,-0.0200806,-0.0203247,-0.0185242,-0.0172424,-0.0178528,-0.0170593,-0.0142212,-0.0120239,-0.0123596,-0.0138245,-0.015564,-0.0177307,-0.020874,-0.0248413,-0.0293884,-0.033905,-0.0390015,-0.040863,-0.0440369,-0.0449829,-0.0443726,-0.0437012,-0.041687,-0.038269,-0.0339661,-0.0296021,-0.0271912,-0.0234985,-0.0225525,-0.0215454,-0.0214233,-0.0231018,-0.0228271,-0.0234985,-0.0229492,-0.0205994,-0.0170593,-0.0128174,-0.00805664,-0.00112915,0.00671387,0.0133667,0.0196533,0.0269775,0.0316772,0.0401306,0.0467224,0.0489197,0.0511475,0.0512695,0.0491333,0.0512085,0.0536194,0.0498047,0.0422974,0.0422058,0.041687,0.0393982,0.0355835,0.0316162,0.0261841,0.0179138,0.0122681,0.00817871,-0.00195312,-0.0110779,-0.0177917,-0.0236816,-0.0301208,-0.0376587,-0.0365906,-0.0307312,-0.0297852,-0.0257874,-0.0173035,-0.00924683,-0.00549316,-0.00375366,-0.00140381,-0.000335693,-0.00247192,-0.00524902,-0.00759888,-0.0115356,-0.015625,-0.0197449,-0.0221558,-0.0260315,-0.0275269,-0.0279846,-0.0269775,-0.027771,-0.025238,-0.0201416,-0.0167236,-0.0174561,-0.0177917,-0.0176392,-0.0203247,-0.0230103,-0.0226746,-0.0215454,-0.0127563,-0.00430298,-0.000335693,0.00457764,0.0101318,0.0198059,0.0301208,0.0302734,0.0309448,0.0353088,0.0401306,0.0508118,0.0542297,0.041748,0.0246887,0.0178528,0.0257874,0.0331421,0.0278625,0.0120239,0.00939941,0.0223389,0.0362549,0.0411377,0.0361023,0.0258484,0.0179138,0.0219421,0.0218201,0.0151672,0.00112915,-0.0179749,-0.0389404,-0.0518799,-0.0592041,-0.065979,-0.0690002,-0.0653076,-0.0630798,-0.0542297,-0.0357056,-0.0194702,-0.00650024,0.00134277,0.00430298,0.00570679,0.00805664,0.00805664,0.00576782,-6.10352e-05,-0.0134277,-0.0270386,-0.036499,-0.038269,-0.036377,-0.0328064,-0.0273743,-0.019989,-0.00991821,0.00692749,0.024292,0.0356445,0.0414734,0.0405273,0.0369873,0.0336304,0.0324097,0.026123,0.0187988,0.00811768,-0.00222778,-0.00637817,-0.00564575,-0.00088501,0.00637817,0.0134888,0.0191345,0.0256958,0.0313416,0.0388489,0.0412903,0.0377197,0.0294495,0.0157166,0.00262451,-0.00924683,-0.019928,-0.0240173,-0.0194092,-0.017395,-0.0174561,-0.0169678,-0.00906372,0.00213623,0.00531006,-0.00650024,-0.0221558,-0.0328979,-0.0477295,-0.0712891,-0.0915527,-0.102966,-0.108673,-0.107513,-0.103424,-0.094696,-0.0748901,-0.0491333,-0.0301208,-0.0139465,-0.00430298,0.00274658,0.0113525,0.0184631,0.0173035,0.00878906,0.00195312,-0.00296021,-0.0123596,-0.0204773,-0.0205383,-0.0120239,-0.00189209,0.00402832,0.0114746,0.0341492,0.0646362,0.0865784,0.0958557,0.0979919,0.0975952,0.0940247,0.085907,0.0723572,0.0588684,0.0488586,0.0457153,0.0410156,0.0418091,0.0475769,0.0583191,0.0693359,0.0711365,0.0664978,0.0600586,0.057373,0.0534363,0.041626,0.0232239,0.00491333,-0.0118103,-0.0289917,-0.0428772,-0.0528259,-0.0595398,-0.0606079,-0.0559082,-0.0512085,-0.0443726,-0.0357666,-0.025177,-0.0212708,-0.0259705,-0.0436401,-0.0640869,-0.0733032,-0.0780029,-0.085022,-0.0912781,-0.0934143,-0.0882568,-0.0740356,-0.0567017,-0.0426941,-0.0302734,-0.0198669,-0.016571,-0.0195923,-0.025177,-0.0292664,-0.0361633,-0.0455627,-0.0584717,-0.0720825,-0.0775146,-0.0757141,-0.0677185,-0.0568542,-0.0434875,-0.028595,-0.0105896,0.0161133,0.0458374,0.0708008,0.0926208,0.108124,0.119476,0.127319,0.133087,0.131622,0.132416,0.133484,0.130798,0.122498,0.11618,0.115631,0.115112,0.106323,0.0852966,0.0587158,0.0386658,0.0237732,0.0065918,-0.0161133,-0.0361633,-0.0480652,-0.0546875,-0.0638428,-0.0712891,-0.0710754,-0.0583801,-0.0428772,-0.0367126,-0.0317383,-0.0204163,-0.00482178,0.00469971,0.00189209,-0.0148315,-0.0290527,-0.0330811,-0.0380554,-0.0446472,-0.0510864,-0.0462341,-0.036438,-0.0269165,-0.0189819,-0.0138855,-0.00650024,-0.00268555,-0.00979614,-0.0281067,-0.0488586,-0.0657043,-0.0812073,-0.0977783,-0.116241,-0.133698,-0.140198,-0.137054,-0.128937,-0.116119,-0.09552,-0.0701294,-0.0427551,-0.0110779,0.0238953,0.0597229,0.0925598,0.115112,0.132019,0.146851,0.161804,0.169861,0.171204,0.165375,0.160553,0.155579,0.149139,0.133972,0.114227,0.0977173,0.078125,0.0509338,0.0204773,-0.0071106,-0.0281067,-0.0458374,-0.0649719,-0.0871277,-0.0987244,-0.0970459,-0.0942993,-0.0956421,-0.0922852,-0.0808716,-0.0582581,-0.0371094,-0.0238342,-0.0138855,0.0038147,0.0195312,0.0240173,0.017395,0.00878906,0.00952148,0.0162354,0.016571,0.00570679,0.00497437,0.0145569,0.0241699,0.0224915,0.0139465,0.00323486,-0.00537109,-0.0184631,-0.041626,-0.0711975,-0.0953674,-0.110413,-0.123505,-0.13858,-0.153229,-0.157654,-0.146637,-0.130676,-0.11673,-0.10022,-0.0716248,-0.0341492,0.00442505,0.040863,0.0771179,0.11261,0.141754,0.15979,0.172638,0.186035,0.198059,0.201019,0.193909,0.179993,0.167664,0.158203,0.142548,0.113281,0.0769958,0.0443115,0.016449,-0.0126953,-0.0438843,-0.0710754,-0.0891418,-0.103699,-0.118591,-0.129059,-0.12793,-0.119934,-0.110535,-0.100067,-0.0888062,-0.0738831,-0.0513306,-0.0269775,-0.0102539,0.00201416,0.00918579,0.0151062,0.0210876,0.0258484,0.0293884,0.032135,0.0347595,0.0324707,0.0319519,0.0390015,0.0437012,0.0404053,0.0308838,0.0149536,-0.00302124,-0.0215454,-0.0414124,-0.0701904,-0.0977173,-0.121552,-0.139191,-0.152008,-0.159271,-0.159454,-0.15155,-0.137726,-0.123169,-0.104553,-0.0753174,-0.038269,-0.00180054,0.0355835,0.0686035,0.10141,0.131683,0.157104,0.176117,0.189209,0.200195,0.203369,0.202026,0.196716,0.187195,0.174316,0.155792,0.126099,0.0904846,0.0555115,0.0228271,-0.0088501,-0.041748,-0.0741577,-0.100281,-0.117249,-0.131348,-0.141418,-0.142273,-0.137054,-0.12793,-0.118256,-0.103485,-0.0831604,-0.058197,-0.033905,-0.0133667,0.00161743,0.0136108,0.0246277,0.0351562,0.0434265,0.0467834,0.0488586,0.0503235,0.0508728,0.0532837,0.057251,0.056366,0.0489197,0.037262,0.0236816,0.00732422,-0.0105896,-0.0337524,-0.0596008,-0.0839539,-0.108002,-0.128723,-0.147583,-0.161804,-0.169952,-0.169525,-0.162292,-0.149872,-0.132965,-0.107117,-0.0757751,-0.0422974,-0.00750732,0.0289307,0.0626831,0.0944214,0.122559,0.142883,0.162415,0.179077,0.188812,0.190491,0.187714,0.180603,0.172699,0.157928,0.131805,0.0986633,0.0634155,0.0292053,-0.00524902,-0.0404663,-0.07724,-0.10733,-0.13028,-0.146454,-0.155457,-0.157928,-0.150146,-0.137512,-0.12088,-0.101624,-0.0756531,-0.0472412,-0.0179749,0.00878906,0.0323486,0.0513306,0.0671692,0.0792542,0.085907,0.0849609,0.0845032,0.0873718,0.0840149,0.0733643,0.0643616,0.0629578,0.0588074,0.0480652,0.0326843,0.0203247,0.00933838,-0.00357056,-0.019989,-0.0383911,-0.053894,-0.0696106,-0.0845642,-0.0948486,-0.103363,-0.111877,-0.113953,-0.109528,-0.105042,-0.0969849,-0.0829468,-0.0674438,-0.0505371,-0.0333557,-0.017395,-0.00088501,0.0142822,0.0270386,0.0421448,0.0578613,0.0687866,0.074707,0.0765076,0.0739746,0.0669861,0.0541077,0.0323486,0.00476074,-0.0228271,-0.0455627,-0.0630188,-0.0771179,-0.0915527,-0.103302,-0.106384,-0.0922241,-0.0674438,-0.0459595,-0.0307312,-0.00704956,0.0280457,0.0632935,0.0869141,0.0994568,0.10672,0.112549,0.110931,0.102478,0.0950928,0.0880432,0.0767212,0.0608826,0.0498657,0.0433044,0.0457764,0.0503235,0.0534363,0.0564575,0.0620728,0.0729675,0.0829468,0.0869751,0.0820923,0.0744934,0.0646362,0.0505981,0.03302,0.0161743,-0.00201416,-0.0216064,-0.0426331,-0.0592041,-0.0719604,-0.0769958,-0.0775757,-0.0748901,-0.0697937,-0.061554,-0.0502014,-0.0375061,-0.0255127,-0.0181274,-0.0161743,-0.0147095,-0.0144958,-0.0150452,-0.0171814,-0.0232239,-0.0309448,-0.0414734,-0.0505981,-0.06073,-0.0693359,-0.0756531,-0.0810852,-0.0808105,-0.0778503,-0.0717468,-0.0636292,-0.0496521,-0.0361023,-0.0244446,-0.0138855,-0.00201416,0.00827026,0.0167847,0.0214844,0.0257874,0.0264587,0.0270386,0.0252991,0.0228271,0.0200806,0.0198669,0.0201416,0.019928,0.0216064,0.0262451,0.0326233,0.0404663,0.0471191,0.0516663,0.0567017,0.0583191,0.0569153,0.0547791,0.048645,0.0396729,0.0298767,0.0197449,0.00967407,-0.000671387,-0.00985718,-0.0182495,-0.0258484,-0.0294495,-0.0308838,-0.0289917,-0.0267029,-0.0224304,-0.0162354,-0.0120239,-0.00878906,-0.00683594,-0.00476074,-0.0062561,-0.0113525,-0.0171814,-0.0233459,-0.0273743,-0.0333557,-0.0378418,-0.041748,-0.0448303,-0.0446472,-0.0435486,-0.0433655,-0.0420837,-0.0403442,-0.0371094,-0.0349121,-0.0328064,-0.0303345,-0.0271301,-0.024292,-0.0221558,-0.020813,-0.0180664,-0.0152283,-0.0142212,-0.0114136,-0.00845337,-0.00448608,0.000671387,0.00817871,0.0138245,0.0201416,0.0271912,0.0350342,0.041687,0.0473938,0.0522156,0.0575256,0.0617371,0.0644836,0.0665894,0.0663757,0.0636292,0.0601501,0.0536804,0.0465088,0.037384,0.0290527,0.0200806,0.012146,0.00482178,-0.00180054,-0.00592041,-0.00924683,-0.0115356,-0.013092,-0.0134277,-0.0137024,-0.0124817,-0.0112,-0.0113525,-0.0101929,-0.0104675,-0.0115967,-0.0151672,-0.019928,-0.0255737,-0.0308838,-0.0356445,-0.0385132,-0.0424805,-0.0435486,-0.0428772,-0.040802,-0.0394592,-0.0371094,-0.0354919,-0.0315552,-0.029541,-0.0282593,-0.0281982,-0.0275269,-0.0269775,-0.0275269,-0.0292053,-0.0291138,-0.028595,-0.0271912,-0.0263672,-0.0232849,-0.0198059,-0.0144958,-0.0107422,-0.0050354,0.0017395,0.0100098,0.0173035,0.0238342,0.0305481,0.0353699,0.0404053,0.0448303,0.049469,0.053772,0.0586548,0.0620117,0.065918,0.069458,0.0683899,0.0675049,0.0649719,0.061676,0.0545044,0.0481262,0.0393372,0.0317993,0.0254517,0.0177917,0.0109253,0.00537109,-0.000946045,-0.00543213,-0.00772095,-0.00906372,-0.0105896,-0.0106812,-0.0118713,-0.0128174,-0.0139465,-0.0125427,-0.0158386,-0.0193176,-0.024231,-0.0281067,-0.0303955,-0.0325623,-0.0347595,-0.037384,-0.0381165,-0.0377808,-0.0381165,-0.036499,-0.036438,-0.0353088,-0.0349731,-0.0356445,-0.0361633,-0.0383911,-0.0390625,-0.0404053,-0.0426941,-0.0462341,-0.0475769,-0.0496521,-0.0483093,-0.0459595,-0.0445557,-0.041687,-0.0359192,-0.0288696,-0.0209351,-0.012146,-0.00289917,0.00570679,0.0138245,0.0221558,0.0303345,0.0370483,0.0433044,0.0491943,0.0541077,0.0597229,0.0638428,0.0666504,0.0687256,0.0683289,0.0679321,0.0658264,0.0618896,0.0578613,0.0534363,0.0478516,0.0420837,0.0346375,0.028595,0.0221558,0.016571,0.0105896,0.00549316,0.0017395,-0.00128174,-0.00302124,-0.00598145,-0.00750732,-0.00979614,-0.0113525,-0.0135498,-0.015625,-0.0191956,-0.0205994,-0.0229492,-0.0241699,-0.0259094,-0.0261841,-0.0259094,-0.0245667,-0.0248413,-0.0257874,-0.0273743,-0.0279236,-0.0292664,-0.0314636,-0.0338135,-0.037384,-0.0391846,-0.040863,-0.0428162,-0.0444946,-0.0449829,-0.0455017,-0.0457153,-0.0437622,-0.0420227,-0.0383301,-0.0350952,-0.0312805,-0.026123,-0.0223389,-0.0178528,-0.0126953,-0.00744629,-0.00268555,0.00262451,0.00817871,0.0153809,0.0223389,0.0288696,0.0358276,0.041687,0.0477905,0.0528259,0.0554504,0.0560303,0.0557861,0.0536804,0.0509338,0.0471802,0.0444946,0.0403442,0.0361633,0.0311279,0.0273132,0.0254517,0.0239563,0.0226746,0.021759,0.0221558,0.0235596,0.0257874,0.0267029,0.0265808,0.025116,0.0222778,0.0179138,0.0131531,0.00866699,0.0038147,-0.00213623,-0.0062561,-0.0110779,-0.0157166,-0.0186462,-0.0211487,-0.0237732,-0.025177,-0.0280457,-0.0296631,-0.0322876,-0.0331421,-0.0344849,-0.0365906,-0.0390015,-0.041748,-0.0433655,-0.0455017,-0.046051,-0.0479126,-0.0473938,-0.0461731,-0.0453796,-0.0423584,-0.0376587,-0.0326843,-0.0263062,-0.0166321,-0.00799561,0.00469971,0.0180664,0.0253601,0.0278625,0.0301208,0.0314636,0.0297241,0.0218201,0.011261,0.000274658,-0.00457764,-0.00967407,-0.0147095,-0.0202637,-0.0210876,-0.0149536,-0.00247192,0.00958252,0.0202026,0.029541,0.0409546,0.0551758,0.0626831,0.0625,0.0574646,0.053894,0.0477905,0.0415344,0.0343628,0.026123,0.0172424,0.0110779,0.00564575,0.00363159,0.0050354,0.00268555,0.000610352,0.00396729,0.00906372,0.00991821,0.0110168,0.00860596,0.00296021,-0.000213623,-0.00537109,-0.0127563,-0.020874,-0.0282593,-0.0356445,-0.0428772,-0.0477905,-0.0517578,-0.0522766,-0.0524902,-0.0526123,-0.048584,-0.0434265,-0.0358276,-0.0302734,-0.025177,-0.0205994,-0.0148315,-0.0123596,-0.0124207,-0.0126953,-0.0137024,-0.0144958,-0.0157776,-0.0194092,-0.0238342,-0.0248413,-0.026123,-0.0269165,-0.0200806,-0.0147705,-0.0135498,-0.00363159,0.00549316,0.00973511,0.0137024,0.0177917,0.0162354,0.0123596,0.0214844,0.024292,0.0191956,0.019928,0.0193176,0.019928,0.0153809,0.013031,0.0105286,0.0138245,0.0115356,0.00772095,0.013092,0.0189819,0.024292,0.0223389,0.0268555,0.0299377,0.0297852,0.0309448,0.0265198,0.0198669,0.0154419,0.0118103,0.00592041,-0.00241089,-0.00750732,-0.00549316,-0.00469971,-0.00189209,-0.000274658,0.00463867,0.0103455,0.0143738,0.0134277,0.00683594,0.00537109,0.0020752,-0.00357056,-0.0148315,-0.0279846,-0.0352478,-0.0394592,-0.0446472,-0.0528259,-0.0574646,-0.0509949,-0.0458374,-0.0403442,-0.0322266,-0.0232849,-0.0124207,0.000549316,0.00738525,0.00570679,0.00817871,0.0153809,0.0181885,0.00933838,0.0050354,0.00012207,-0.00146484,-0.0101929,-0.0142212,-0.00939941,-0.00543213,0.000396729,0.00726318,0.0221558,0.0303955,0.0231018,0.0206604,0.0233459,0.0269775,0.0267944,0.0083313,-0.00958252,-0.0200806,-0.0224915,-0.0265808,-0.0318909,-0.0312805,-0.0326233,-0.0239563,-0.0102539,0.00363159,0.0128784,0.0221558,0.0312805,0.0317993,0.0345764,0.0266418,0.0168457,0.0152893,0.0101929,0.0065918,0.00100708,-0.000946045,-0.000946045,0.000396729,0.00448608,0.00732422,0.0108643,0.0142822,0.0158997,0.0182495,0.0173035,0.011261,0.00256348,-0.00408936,-0.00952148,-0.0158386,-0.0194702,-0.0211487,-0.0201416,-0.0118713,-0.00592041,-0.00570679,-0.00698853,-0.0020752,0.00415039,0.00750732,0.00827026,0.0126953,0.0175781,0.020752,0.0169067,0.00958252,0.00543213,0.0065918,0.00939941,0.00341797,-0.00363159,0.00302124,0.0181274,0.0228882,0.00906372,-0.00369263,-0.00793457,-0.00509644,-0.0122681,-0.02771,-0.0455627,-0.0634155,-0.0724182,-0.078064,-0.0882568,-0.0908813,-0.0860291,-0.0706787,-0.0473938,-0.0260315,-0.0017395,0.0237732,0.0405273,0.0441589,0.0369873,0.032959,0.0299377,0.0228882,0.0145569,0.00509644,-0.000274658,-0.00167847,0.00161743,0.00650024,0.0151062,0.0187378,0.024353,0.0379333,0.049469,0.0532837,0.0490723,0.0443115,0.036438,0.0231018,0.00784302,-0.00134277,-0.000335693,0.00469971,0.00759888,0.0102539,0.0154419,0.0229492,0.0332947,0.0418701,0.0461121,0.0476379,0.0482483,0.0522156,0.0487366,0.0369263,0.0191345,-0.00012207,-0.0120239,-0.0131531,-0.0171204,-0.0331421,-0.0499878,-0.0510864,-0.0359802,-0.0316162,-0.045105,-0.0602722,-0.0692749,-0.0704651,-0.082428,-0.115784,-0.148743,-0.151886,-0.128662,-0.106903,-0.0986633,-0.0849609,-0.0600586,-0.0227661,0.0119324,0.0368347,0.0490723,0.0468445,0.0430908,0.0387268,0.0336304,0.012207,-0.00692749,-0.00991821,-0.00918579,-0.01651,-0.0269775,-0.025116,-0.0129395,-0.0012207,0.00280762,0.00637817,0.0210876,0.0386047,0.0508728,0.0552368,0.0561218,0.0536804,0.0554504,0.0606079,0.0619507,0.0649109,0.0777283,0.0933533,0.105103,0.113373,0.120056,0.130554,0.141266,0.138,0.115967,0.0913391,0.0726318,0.0505371,0.0239563,-0.00314331,-0.0289917,-0.0514221,-0.0698547,-0.0817566,-0.0912781,-0.0930176,-0.0915527,-0.0851135,-0.0786743,-0.0779114,-0.0832214,-0.0864563,-0.0908813,-0.104645,-0.119598,-0.127441,-0.126648,-0.115051,-0.0926208,-0.0699463,-0.0458374,-0.0137634,0.0194092,0.0428772,0.0561218,0.0595398,0.052948,0.0405273,0.0181885,-0.0125427,-0.0438232,-0.0640869,-0.0771179,-0.0914001,-0.108246,-0.11557,-0.110809,-0.0969238,-0.0841064,-0.0724182,-0.0502014,-0.0167847,0.0126953,0.0332947,0.0517578,0.0715332,0.0914001,0.11142,0.127258,0.139862,0.153961,0.172485,0.188934,0.201691,0.209076,0.211609,0.207336,0.191284,0.165588,0.136597,0.103973,0.0671082,0.0231018,-0.0167847,-0.0518799,-0.0812073,-0.108337,-0.128113,-0.13858,-0.14563,-0.143219,-0.129944,-0.112488,-0.0962524,-0.0814819,-0.0715332,-0.0642395,-0.0570374,-0.0523376,-0.0481873,-0.0413513,-0.0296631,-0.0175781,-0.00296021,0.0136108,0.0326233,0.0507507,0.065094,0.0696716,0.0625,0.0495911,0.0297241,0.0020752,-0.036499,-0.0747681,-0.104706,-0.127991,-0.149872,-0.169403,-0.176727,-0.174561,-0.165375,-0.155579,-0.142487,-0.11972,-0.0856323,-0.0496521,-0.0149536,0.0203247,0.0525513,0.0844421,0.11557,0.145844,0.173492,0.20578,0.231354,0.243103,0.249054,0.258057,0.259216,0.24411,0.214783,0.175629,0.134766,0.094574,0.0468445,-0.00448608,-0.0457153,-0.0753784,-0.107178,-0.139069,-0.159271,-0.166595,-0.162476,-0.156311,-0.156189,-0.147247,-0.11731,-0.085968,-0.0671082,-0.0531616,-0.0366516,-0.0162964,0.00515747,0.0173035,0.0241699,0.040863,0.0679932,0.0843506,0.091156,0.0949707,0.0965271,0.102081,0.0992737,0.0736389,0.0351562,0.00106812,-0.0291138,-0.0671082,-0.107574,-0.146576,-0.173645,-0.187592,-0.192352,-0.199799,-0.202026,-0.189392,-0.16861,-0.144226,-0.120605,-0.0931702,-0.0578003,-0.0107422,0.0315552,0.06604,0.0938416,0.128448,0.165833,0.199066,0.224976,0.238007,0.245392,0.254364,0.255035,0.240479,0.215027,0.185516,0.149658,0.108337,0.0602722,0.00564575,-0.0390015,-0.0710144,-0.100464,-0.138245,-0.167053,-0.178406,-0.176849,-0.169739,-0.164368,-0.158386,-0.139252,-0.104553,-0.078125,-0.0567932,-0.0312805,-0.00537109,0.0167847,0.0361633,0.0478516,0.0557861,0.0739746,0.0906067,0.091156,0.0885315,0.09375,0.0975952,0.0940247,0.0834351,0.0630188,0.0375977,0.0100708,-0.0273743,-0.0697327,-0.101013,-0.128723,-0.157532,-0.177521,-0.188202,-0.193634,-0.189545,-0.172821,-0.159546,-0.144379,-0.121735,-0.0914001,-0.0596619,-0.0241089,0.0117493,0.0461121,0.0780029,0.104095,0.126312,0.150269,0.176117,0.194916,0.203369,0.201294,0.200409,0.19577,0.183441,0.160553,0.126709,0.091156,0.058136,0.0206604,-0.0219421,-0.0612183,-0.0938416,-0.127106,-0.154968,-0.175903,-0.186035,-0.181824,-0.162628,-0.138062,-0.115509,-0.0869141,-0.053009,-0.020874,0.0108643,0.0327454,0.0434265,0.0579224,0.0742188,0.0884705,0.0959167,0.0970459,0.0923462,0.0848999,0.0813599,0.0720215,0.0638428,0.057251,0.0495911,0.0396729,0.0292664,0.0140991,-0.00402832,-0.0171204,-0.032135,-0.0512695,-0.0710754,-0.0837708,-0.0922241,-0.100464,-0.109924,-0.116974,-0.117126,-0.111023,-0.103699,-0.0920105,-0.0739746,-0.0518188,-0.0275269,-0.00537109,0.0147705,0.0323486,0.0508118,0.0680542,0.0798645,0.0856323,0.0841675,0.0831604,0.0813599,0.0734253,0.056366,0.0319519,0.00482178,-0.0287781,-0.0618286,-0.0869751,-0.0994568,-0.10202,-0.105377,-0.108246,-0.101807,-0.0802002,-0.0526733,-0.0331421,-0.0187988,0.00341797,0.0371704,0.0686646,0.0857849,0.09552,0.101959,0.103973,0.0951843,0.0812683,0.0698547,0.0630798,0.0549622,0.0418701,0.0317383,0.0299988,0.0342407,0.0466309,0.0617371,0.0725403,0.0823669,0.0919495,0.0973206,0.0984497,0.0907288,0.0761108,0.0549622,0.03302,0.00985718,-0.0128174,-0.0343628,-0.0534973,-0.070343,-0.0802612,-0.0875244,-0.0888062,-0.0820923,-0.073761,-0.0632324,-0.0490723,-0.0332947,-0.0193176,-0.00704956,0.00088501,0.00195312,-0.00604248,-0.0171814,-0.0297852,-0.040741,-0.053833,-0.0661621,-0.073822,-0.078125,-0.0803528,-0.0810852,-0.0795288,-0.0699463,-0.0575867,-0.0430908,-0.0291138,-0.0140381,0.000793457,0.0117493,0.0201416,0.025238,0.0270386,0.0270386,0.0244446,0.0197449,0.0144958,0.0112,0.00924683,0.00894165,0.0100708,0.0117493,0.0153809,0.0218201,0.0288696,0.0357666,0.0433655,0.0499878,0.0578003,0.065033,0.0689392,0.0710144,0.0701904,0.0658264,0.058136,0.0489197,0.0397339,0.0293884,0.0198059,0.012207,0.00616455,0.0012207,-0.000793457,-0.00280762,-0.00357056,-0.00280762,-0.00314331,-0.0038147,-0.00592041,-0.00900269,-0.0144958,-0.0197449,-0.0278625,-0.0388489,-0.0499878,-0.0601501,-0.0706177,-0.0811462,-0.0886536,-0.0919495,-0.0904846,-0.0856323,-0.0785217,-0.069458,-0.0575867,-0.046051,-0.0345764,-0.025116,-0.0191956,-0.0158386,-0.0141602,-0.0136108,-0.0166321,-0.0192566,-0.0222168,-0.0244446,-0.0245056,-0.0238342,-0.0224915,-0.0173035,-0.0108032,-0.00323486,0.00491333,0.0140991,0.0236816,0.0345764,0.0440979,0.0519409,0.0560303,0.0585327,0.0596619,0.0598145,0.0593262,0.0589294,0.0583801,0.0575256,0.0569153,0.0571289,0.0556335,0.0534363,0.0513306,0.0498657,0.0498657,0.0467834,0.0419617,0.0381165,0.0340271,0.0281067,0.0209351,0.0106812,0.00140381,-0.00482178,-0.0137024,-0.0222168,-0.0308838,-0.0376587,-0.0432129,-0.0479126,-0.0522156,-0.0560303,-0.0591431,-0.061615,-0.0619507,-0.0624084,-0.0614014,-0.0583801,-0.0524292,-0.0473022,-0.040802,-0.036377,-0.0307922,-0.0271301,-0.0255737,-0.0256958,-0.0269775,-0.0273743,-0.0285339,-0.0284424,-0.0292664,-0.0302124,-0.0293274,-0.0258484,-0.0234375,-0.0191956,-0.0136108,-0.00839233,-0.00195312,0.00515747,0.0109253,0.0161133,0.0216064,0.0270386,0.0326233,0.0358276,0.037384,0.0415344,0.0457153,0.0495911,0.0546265,0.0590515,0.0640259,0.0686646,0.0725403,0.0749817,0.0753174,0.074646,0.0714722,0.068512,0.0630798,0.0555725,0.0473022,0.0396729,0.0302734,0.0185852,0.00827026,-0.000732422,-0.00952148,-0.0180664,-0.0245056,-0.0296021,-0.0326843,-0.0346375,-0.0346985,-0.0352478,-0.0353699,-0.0383301,-0.040741,-0.0440979,-0.0467224,-0.0507507,-0.0526123,-0.0532837,-0.0528259,-0.0510864,-0.0502014,-0.0473938,-0.0453186,-0.0429688,-0.0404053,-0.0379944,-0.0377808,-0.0352478,-0.0317993,-0.0312805,-0.0313416,-0.032074,-0.0312195,-0.0299377,-0.0285339,-0.0283813,-0.0256958,-0.0238953,-0.0187988,-0.0150452,-0.00924683,-0.00222778,0.00604248,0.0138855,0.0218201,0.0303345,0.0369873,0.0426941,0.04953,0.0553589,0.0624084,0.06604,0.0691833,0.0733643,0.0744934,0.0731506,0.070282,0.066925,0.0633545,0.0579834,0.052948,0.0462341,0.039856,0.0335693,0.0267029,0.0189209,0.0116882,0.0050354,-0.000732422,-0.00576782,-0.00958252,-0.0125427,-0.0145569,-0.0162964,-0.0186462,-0.0215454,-0.0238953,-0.0273743,-0.0318909,-0.0355835,-0.039856,-0.0435486,-0.0449829,-0.0469666,-0.0488586,-0.0488586,-0.0477295,-0.0468445,-0.0454407,-0.0426331,-0.0406189,-0.0384521,-0.0359802,-0.0340881,-0.0335693,-0.0324097,-0.0310059,-0.0300598,-0.0285339,-0.0268555,-0.0263672,-0.0234985,-0.0226135,-0.0197449,-0.0175171,-0.011261,-0.00692749,-0.000457764,0.00442505,0.0106812,0.0152893,0.020813,0.025116,0.0307312,0.0344849,0.0393982,0.0428162,0.0472412,0.050415,0.0528259,0.053009,0.0526733,0.0516052,0.048645,0.0462341,0.0426941,0.0375061,0.0333557,0.0302734,0.0275879,0.0241089,0.021759,0.0203247,0.0191345,0.0168457,0.0144348,0.012085,0.0115967,0.0115356,0.0107422,0.00918579,0.0067749,0.00180054,-0.00241089,-0.00900269,-0.0149536,-0.0204773,-0.0203247,-0.0126038,-0.00900269,-0.0139465,-0.0144348,-0.0143738,-0.0124817,-0.0178528,-0.0280457,-0.0387878,-0.046051,-0.0473938,-0.0555725,-0.0605469,-0.0605469,-0.0633545,-0.0567017,-0.0491943,-0.0426331,-0.0348206,-0.0226135,-0.0109253,-0.00256348,0.00692749,0.0145569,0.016449,0.0205994,0.0223389,0.017395,0.0114136,0.00402832,0.000213623,-0.00234985,-0.00469971,-0.00866699,-0.00866699,-0.00463867,0.000610352,0.0083313,0.0226746,0.0362549,0.0433655,0.0413513,0.0409546,0.0437622,0.0434875,0.0355835,0.0222778,0.0107422,0.0083313,0.00985718,0.00637817,0.00509644,0.00537109,0.00637817,0.0116882,0.0162354,0.0200806,0.0233459,0.0298767,0.0356445,0.036377,0.0328979,0.0317993,0.0318909,0.0270386,0.016571,0.00408936,-0.00604248,-0.0158386,-0.0259705,-0.0377197,-0.0475769,-0.0554504,-0.0604858,-0.0652466,-0.0662537,-0.0655823,-0.0606079,-0.0541077,-0.0474548,-0.0426941,-0.0391846,-0.0328979,-0.0279236,-0.025116,-0.0265808,-0.025238,-0.0209351,-0.0143738,-0.0111389,-0.0126038,-0.00933838,-0.00430298,-0.000610352,0.000549316,-0.00201416,-0.00289917,0.0012207,0.00469971,0.00390625,-0.00100708,0.000213623,0.00946045,0.012146,0.00878906,0.00531006,0.00195312,0.00415039,0.00195312,-0.00793457,-0.0184631,-0.0239563,-0.0205994,-0.0189819,-0.0113525,-0.000335693,0.00839233,0.0249023,0.0359802,0.0463867,0.0551758,0.0630188,0.0657654,0.0582581,0.0510864,0.0406189,0.0353088,0.0300598,0.0194702,0.00939941,0.00537109,0.00784302,0.00778198,0.00598145,0.00247192,0.00289917,0.00592041,0.00390625,-0.0017395,-0.00637817,-0.0113525,-0.0149536,-0.0187378,-0.024353,-0.0322266,-0.0392761,-0.040863,-0.0423584,-0.0438843,-0.0438232,-0.0421448,-0.0351562,-0.0273132,-0.024231,-0.0167847,-0.0088501,-0.00296021,-0.00195312,-0.00524902,-0.00268555,0.00537109,0.0109253,0.00402832,0.00323486,0.0119324,0.0188599,0.0133667,0.00576782,0.0133667,0.0224915,0.0292053,0.0253601,0.0148315,0.0143738,0.0012207,-0.0167847,-0.0245056,-0.033905,-0.0459595,-0.057312,-0.0533447,-0.0423584,-0.0310669,-0.011261,0.00289917,0.0145569,0.0296631,0.0401306,0.0485229,0.0545044,0.0531616,0.0463867,0.0430298,0.0377197,0.0269775,0.0209351,0.0182495,0.0171204,0.0148926,0.0114136,0.0107422,0.0145569,0.0259094,0.0326843,0.0314636,0.0260315,0.0148926,0.0032959,-0.00698853,-0.0176392,-0.0296021,-0.0440979,-0.052887,-0.0554504,-0.0555115,-0.0543518,-0.053009,-0.0467224,-0.0367126,-0.0283813,-0.0206604,-0.0107422,0.00323486,0.0132751,0.0150452,0.0168457,0.0263672,0.0267944,0.0177917,0.012207,0.0204163,0.0323486,0.0331421,0.0175781,0.00128174,-0.00180054,-0.000946045,-0.0115356,-0.028595,-0.0414124,-0.0519409,-0.061676,-0.0724182,-0.0767212,-0.0744934,-0.0674438,-0.0618896,-0.0603333,-0.0456543,-0.0224915,0.00967407,0.0317383,0.0433655,0.0466309,0.0411377,0.0396118,0.0400696,0.0441589,0.041748,0.036499,0.0346375,0.0391846,0.0551758,0.0648193,0.0637512,0.0603333,0.0576477,0.053894,0.04953,0.0462341,0.0347595,0.0209351,0.00650024,-0.015625,-0.0392761,-0.0470581,-0.04422,-0.0403442,-0.0326843,-0.0240173,-0.012146,0.0109253,0.0343018,0.0452271,0.0482483,0.0521545,0.0525513,0.0480652,0.0430908,0.0363159,0.026123,0.016571,6.10352e-05,-0.0225525,-0.0418091,-0.0450439,-0.0433655,-0.0395203,-0.0376587,-0.0470581,-0.0555725,-0.0527649,-0.0445557,-0.0586548,-0.0883179,-0.108856,-0.116455,-0.120667,-0.133636,-0.135376,-0.121063,-0.0976562,-0.0780029,-0.0602722,-0.0356445,-0.00564575,0.0256958,0.0448914,0.0522766,0.0518188,0.0467224,0.0390625,0.0332336,0.028656,0.0192566,0.00845337,0.00491333,0.00463867,0.012146,0.0189819,0.0214844,0.024292,0.0289307,0.0396118,0.0546265,0.0626221,0.0592651,0.0526123,0.0483093,0.0453796,0.0444946,0.0458984,0.0507507,0.069458,0.0900574,0.101532,0.110413,0.125092,0.138458,0.131958,0.114563,0.0958557,0.0791931,0.0622864,0.0433655,0.0177307,-0.00357056,-0.0197449,-0.0377808,-0.0570374,-0.0775757,-0.0877991,-0.0890503,-0.0832214,-0.0833435,-0.0932312,-0.10022,-0.0983276,-0.0969238,-0.10907,-0.12912,-0.138794,-0.135437,-0.125366,-0.11673,-0.101288,-0.0763245,-0.0423584,-0.00839233,0.0114136,0.020813,0.0265198,0.0322266,0.0328979,0.0222168,-0.00134277,-0.027771,-0.0422058,-0.052948,-0.0714111,-0.0906677,-0.0999451,-0.0967102,-0.0875854,-0.082428,-0.0760498,-0.0614014,-0.0297852,0.00665283,0.032074,0.0441589,0.0559692,0.0753784,0.0964355,0.114716,0.127319,0.143555,0.168457,0.192902,0.207001,0.212494,0.220062,0.223358,0.208008,0.177521,0.141266,0.109009,0.0820923,0.052887,0.00991821,-0.03302,-0.0623474,-0.0801392,-0.0942383,-0.104828,-0.11496,-0.119263,-0.110077,-0.0973206,-0.0897217,-0.0844421,-0.0727539,-0.065033,-0.0726929,-0.0857849,-0.0906067,-0.0787354,-0.0543518,-0.0354919,-0.0236206,-0.00912476,0.0175171,0.0477295,0.065033,0.0661621,0.0536194,0.0388489,0.0254517,-0.000732422,-0.0386658,-0.077179,-0.10202,-0.122009,-0.145844,-0.16861,-0.176117,-0.169067,-0.155182,-0.145905,-0.140747,-0.126099,-0.0952454,-0.0582581,-0.0241699,0.00482178,0.036377,0.0681152,0.0992737,0.122955,0.15033,0.186371,0.224243,0.244568,0.244568,0.240021,0.242706,0.242889,0.225037,0.188599,0.14209,0.101349,0.0663757,0.0305481,-0.00811768,-0.0438232,-0.0742188,-0.101746,-0.124573,-0.13913,-0.14328,-0.136047,-0.127258,-0.123901,-0.116302,-0.0963745,-0.0722046,-0.0544434,-0.0453796,-0.0424805,-0.0356445,-0.0203247,6.10352e-05,0.0205383,0.0369263,0.052948,0.0656433,0.0765076,0.0791931,0.0724792,0.0635681,0.0491333,0.0292664,0.00256348,-0.0307922,-0.0648193,-0.0952454,-0.119263,-0.138855,-0.158386,-0.176575,-0.182892,-0.174835,-0.162476,-0.155121,-0.146637,-0.123627,-0.0899353,-0.0568542,-0.0275879,0.00778198,0.0517578,0.0968628,0.129547,0.152954,0.184906,0.228546,0.261078,0.26947,0.25705,0.245178,0.240356,0.228546,0.195038,0.144562,0.098999,0.0649719,0.0314026,-0.0124817,-0.0558472,-0.0814819,-0.0976562,-0.11618,-0.140015,-0.156097,-0.150879,-0.131226,-0.120819,-0.121277,-0.117126,-0.0963135,-0.0687866,-0.0458984,-0.040741,-0.0391846,-0.0247803,-0.00146484,0.0174561,0.0315552,0.0461121,0.0612183,0.0755615,0.0811462,0.0742188,0.0632935,0.0598145,0.052887,0.0332947,-0.000396729,-0.0380554,-0.0692749,-0.0919495,-0.112427,-0.13913,-0.165497,-0.177246,-0.177521,-0.172302,-0.166595,-0.157776,-0.141815,-0.114502,-0.0843506,-0.0575867,-0.0265808,0.0161743,0.0639038,0.098938,0.121155,0.140015,0.170074,0.209198,0.237579,0.243835,0.235382,0.229462,0.225372,0.212616,0.186188,0.148804,0.108795,0.0739746,0.0400085,0.000335693,-0.0377808,-0.0661621,-0.0904846,-0.115448,-0.14035,-0.158112,-0.155579,-0.141083,-0.130005,-0.12262,-0.111603,-0.0916748,-0.0662537,-0.0418701,-0.0280457,-0.0214233,-0.0115356,0.00509644,0.0256958,0.0426941,0.0525513,0.0643005,0.0760498,0.0853577,0.0841064,0.0756531,0.0666504,0.0595398,0.0438843,0.0177917,-0.016449,-0.0502625,-0.0783386,-0.0994568,-0.123627,-0.148468,-0.165375,-0.167938,-0.161346,-0.156982,-0.150818,-0.141205,-0.121155,-0.0960999,-0.0742188,-0.0524902,-0.0224304,0.0140381,0.0502625,0.0775146,0.0992737,0.123077,0.15625,0.186188,0.19873,0.199005,0.198853,0.199341,0.193298,0.178131,0.151672,0.118591,0.0875244,0.0582581,0.0227661,-0.0142822,-0.0476379,-0.0777283,-0.101288,-0.123962,-0.142822,-0.153687,-0.151215,-0.143829,-0.135437,-0.121735,-0.102081,-0.0771179,-0.0458984,-0.0178528,-0.00390625,0.00497437,0.0193176,0.0411987,0.0612183,0.069397,0.0711365,0.0758362,0.090332,0.102539,0.103973,0.098938,0.0918274,0.0804749,0.0662537,0.0446472,0.0152893,-0.0129395,-0.0356445,-0.0612183,-0.0889282,-0.107574,-0.115784,-0.115448,-0.114044,-0.116577,-0.119812,-0.115448,-0.100952,-0.0891418,-0.0834351,-0.0719604,-0.0546875,-0.0332336,-0.0115967,0.0088501,0.0293884,0.0522156,0.0762329,0.0950928,0.106659,0.114716,0.120483,0.12207,0.118317,0.10672,0.0881348,0.0640869,0.0378418,0.00952148,-0.0265808,-0.0657043,-0.101685,-0.130127,-0.149872,-0.158783,-0.158325,-0.145172,-0.125092,-0.102631,-0.079071,-0.0531006,-0.0258484,0.00106812,0.0301208,0.0502625,0.0595398,0.0744934,0.0955811,0.106781,0.100616,0.0898132,0.0836792,0.0814209,0.0834351,0.0811462,0.078064,0.0863037,0.0959167,0.098114,0.101288,0.101349,0.0994568,0.0925598,0.0844421,0.0709534,0.0516052,0.0344238,0.0126038,-0.0111389,-0.0340881,-0.0589294,-0.0812683,-0.099884,-0.110596,-0.114838,-0.114166,-0.109253,-0.099884,-0.0888062,-0.0738831,-0.057312,-0.0414734,-0.0300598,-0.0215454,-0.011261,-0.00256348,0.0012207,0.000274658,-0.00274658,-0.00912476,-0.0181274,-0.0294495,-0.0399475,-0.0471191,-0.0522766,-0.0546875,-0.0533447,-0.0469666,-0.0406799,-0.0339661,-0.0232849,-0.00900269,0.00463867,0.0163879,0.0220947,0.0281982,0.0302734,0.0297852,0.0256958,0.0198059,0.0151062,0.0106812,0.00799561,0.00839233,0.0115356,0.0171204,0.024231,0.0346985,0.0467224,0.0620728,0.0786743,0.0945129,0.105652,0.110931,0.111267,0.107727,0.0977783,0.082428,0.0641785,0.0453186,0.028595,0.0123596,-0.00100708,-0.0150452,-0.0241699,-0.0283813,-0.0287781,-0.0281067,-0.0266418,-0.0234375,-0.0189209,-0.015564,-0.0149536,-0.0169067,-0.0202637,-0.0245667,-0.0315552,-0.0434265,-0.0536194,-0.0632324,-0.0683899,-0.0745544,-0.0759888,-0.0757751,-0.0725403,-0.0669861,-0.0603943,-0.0545654,-0.0505371,-0.0454407,-0.0390625,-0.0340881,-0.0307312,-0.0294495,-0.0285339,-0.0273743,-0.02771,-0.0303345,-0.0307922,-0.0304565,-0.0268555,-0.0232239,-0.019928,-0.0158386,-0.00765991,0.00106812,0.00985718,0.0192566,0.0271912,0.0366516,0.0458374,0.0544434,0.058136,0.0629578,0.0681152,0.0700684,0.0690613,0.0665894,0.0630798,0.0574646,0.0532837,0.0464478,0.0392761,0.0326233,0.0281067,0.0253601,0.0224915,0.0193176,0.0147705,0.0118713,0.0103455,0.00924683,0.00650024,0.0038147,-0.000213623,-0.00463867,-0.0114746,-0.0184631,-0.025177,-0.0296021,-0.0342407,-0.0395203,-0.0430298,-0.0441589,-0.04422,-0.0421448,-0.0411377,-0.0396118,-0.037323,-0.0345764,-0.0320129,-0.0315552,-0.0333557,-0.0367737,-0.040741,-0.0457153,-0.0500793,-0.053772,-0.0559082,-0.0547791,-0.0518188,-0.0482483,-0.0424194,-0.0341492,-0.0246887,-0.0149536,-0.00610352,0.00228882,0.0103455,0.0191956,0.0265808,0.0311279,0.0369263,0.0400696,0.0414734,0.0420227,0.0438843,0.0447693,0.0455627,0.0472412,0.0511475,0.053894,0.0548401,0.0555115,0.0552979,0.0558472,0.0536194,0.0504761,0.0473938,0.045105,0.0411987,0.0356445,0.0269165,0.0186462,0.0115356,0.00469971,-0.00161743,-0.0062561,-0.00894165,-0.0113525,-0.0129395,-0.0149536,-0.0172424,-0.0192566,-0.020752,-0.0236206,-0.0249634,-0.0271301,-0.0297852,-0.0317383,-0.0324097,-0.0344849,-0.0349731,-0.0375061,-0.037384,-0.0363159,-0.0374451,-0.0377808,-0.0383301,-0.0378418,-0.0387268,-0.040863,-0.0418701,-0.0428162,-0.040802,-0.0391846,-0.0378418,-0.0365906,-0.03302,-0.0296631,-0.0248413,-0.0221558,-0.0184631,-0.0144958,-0.00845337,-0.00289917,0.000946045,0.00643921,0.0115967,0.0185852,0.0249634,0.0293884,0.0332947,0.0391235,0.0467834,0.0516052,0.0553589,0.0577087,0.0603333,0.0624084,0.0623474,0.0595398,0.0579834,0.0564575,0.0542908,0.0502014,0.0445557,0.0381775,0.0324097,0.0263062,0.0195923,0.0127563,0.00759888,0.00424194,0.00088501,-0.00280762,-0.0071106,-0.0113525,-0.0158386,-0.0191345,-0.0234985,-0.0273743,-0.0322876,-0.0350952,-0.0371094,-0.0386658,-0.0397949,-0.0396118,-0.0383301,-0.0359192,-0.0350952,-0.0339661,-0.03302,-0.0332336,-0.0324707,-0.032074,-0.0326843,-0.0336914,-0.0334778,-0.0318909,-0.027771,-0.0227661,-0.0222168,-0.0215454,-0.0205383,-0.0191956,-0.0178528,-0.0187378,-0.020752,-0.0225525,-0.0229492,-0.020813,-0.0189209,-0.0125427,0.000457764,0.0102539,0.0175781,0.0236816,0.032135,0.0400085,0.0440369,0.0415344,0.0368347,0.0338135,0.0327454,0.0323486,0.02771,0.0271301,0.0284424,0.0323486,0.036377,0.0385132,0.0396729,0.0413513,0.0425415,0.040863,0.0379333,0.0357056,0.0374451,0.0371704,0.0330811,0.027771,0.0232849,0.0205994,0.016571,0.0100098,0.00234985,-0.00524902,-0.00991821,-0.0147095,-0.0198669,-0.0269165,-0.032074,-0.0361023,-0.0366516,-0.0389404,-0.0415344,-0.040802,-0.0381775,-0.0367126,-0.0365906,-0.0343018,-0.0317383,-0.0289307,-0.025177,-0.0236816,-0.0227661,-0.0205994,-0.0172424,-0.0172424,-0.0179749,-0.0185852,-0.0206604,-0.0216064,-0.0214233,-0.0205994,-0.0245056,-0.025116,-0.0232849,-0.0209961,-0.0180664,-0.0167236,-0.0170593,-0.0136108,-0.0137634,-0.0108032,-0.0132141,-0.0145569,-0.0147705,-0.0176392,-0.0157166,-0.0188599,-0.0145569,-0.00900269,-0.00134277,0.00912476,0.0168457,0.0245056,0.0339661,0.041626,0.0496521,0.0515442,0.0559082,0.0585938,0.0645752,0.0671692,0.065979,0.0666504,0.069458,0.0718079,0.0687256,0.0606689,0.0498657,0.0421448,0.0350952,0.0239563,0.00726318,-0.00845337,-0.0222778,-0.0299988,-0.0387268,-0.048645,-0.0585327,-0.0609436,-0.0589294,-0.0563049,-0.0533447,-0.0453796,-0.0371094,-0.0256348,-0.0171204,-0.0101318,-0.00549316,0.000335693,0.00610352,0.0050354,0.000549316,-0.00375366,-0.00717163,-0.00744629,-0.00671387,-0.0120239,-0.0167847,-0.0215454,-0.0189209,-0.0231628,-0.0306091,-0.0252991,-0.0221558,-0.0212708,-0.0297852,-0.0385132,-0.0448303,-0.0477295,-0.0441589,-0.0468445,-0.0465698,-0.0439758,-0.0404053,-0.0302734,-0.013092,0.00357056,0.015625,0.0275879,0.040863,0.052002,0.0628967,0.0701904,0.0696716,0.0693359,0.0681763,0.0626831,0.0606079,0.0608215,0.0624084,0.0632935,0.0614929,0.0545654,0.0483093,0.0461121,0.041748,0.0324097,0.015564,-0.00228882,-0.0158386,-0.0253601,-0.0350952,-0.0474548,-0.0548401,-0.0557861,-0.0554504,-0.0519409,-0.0470581,-0.0380554,-0.0226135,-0.00991821,-0.000610352,0.00631714,0.0148315,0.024353,0.0334778,0.0444336,0.0444946,0.0324097,0.0144958,0.00241089,-0.00637817,-0.0176392,-0.0271912,-0.0310059,-0.0357666,-0.0400696,-0.0361023,-0.0229492,-0.0236206,-0.040863,-0.0582581,-0.0718079,-0.0814819,-0.0851135,-0.0826721,-0.0812073,-0.0856934,-0.0838928,-0.0630188,-0.0346375,-0.0150452,-0.00482178,0.00744629,0.0263672,0.0469666,0.0649109,0.0740967,0.078064,0.0801392,0.082489,0.081604,0.0760498,0.0690613,0.0704651,0.0786743,0.0755005,0.0602722,0.048584,0.0425415,0.0404663,0.0298767,0.00985718,-0.013092,-0.0312195,-0.0386047,-0.0445557,-0.0473022,-0.0457153,-0.037384,-0.0237732,-0.0105286,0.00296021,0.0219421,0.0438232,0.0608215,0.0654297,0.0603333,0.0559692,0.0554504,0.0559082,0.0488586,0.02771,0.00497437,-0.0138855,-0.0305481,-0.0428772,-0.0571289,-0.074707,-0.0863647,-0.0864563,-0.085907,-0.0834961,-0.0801392,-0.085022,-0.0985413,-0.11557,-0.129883,-0.145447,-0.146454,-0.127533,-0.10202,-0.0822754,-0.0728149,-0.0532837,-0.0122681,0.0226135,0.0409546,0.0411377,0.0391235,0.0440979,0.0558472,0.0683899,0.0684509,0.0664368,0.0707397,0.0730896,0.0705261,0.0657043,0.0611572,0.0610657,0.0599976,0.0508728,0.0311279,0.0250244,0.0293274,0.0310669,0.0220032,0.00201416,-0.0157776,-0.0191956,-0.0065918,0.00973511,0.0267029,0.048645,0.0730896,0.0975342,0.119263,0.137512,0.154175,0.160278,0.154785,0.139923,0.119812,0.0971985,0.0750427,0.0465698,0.00933838,-0.0307312,-0.065033,-0.0964355,-0.121155,-0.13974,-0.151337,-0.154907,-0.154572,-0.157654,-0.159607,-0.152161,-0.149323,-0.155914,-0.167938,-0.171295,-0.159729,-0.137268,-0.107666,-0.0771179,-0.0489197,-0.013031,0.0283203,0.0583191,0.0683289,0.0661621,0.061676,0.0520935,0.0376587,0.0203247,0.00457764,-0.00457764,-0.0088501,-0.01651,-0.025177,-0.0294495,-0.0302734,-0.0285339,-0.0308838,-0.0390625,-0.040802,-0.0262451,-0.00430298,0.0138245,0.0214844,0.0267029,0.0387878,0.0592651,0.0865784,0.121674,0.159454,0.196594,0.232697,0.263031,0.280762,0.285095,0.279205,0.255371,0.214844,0.165833,0.119934,0.0828857,0.0468445,0.00146484,-0.0433655,-0.08255,-0.11142,-0.135437,-0.158722,-0.178528,-0.190399,-0.186462,-0.175232,-0.165771,-0.159882,-0.154694,-0.150085,-0.153961,-0.169189,-0.17572,-0.158722,-0.116241,-0.0718079,-0.040802,-0.00537109,0.0384521,0.0777893,0.0959167,0.0875244,0.0592651,0.0358276,0.0213318,-0.00100708,-0.0387268,-0.0755615,-0.100739,-0.115051,-0.126373,-0.143951,-0.159119,-0.15979,-0.146729,-0.133148,-0.124023,-0.102356,-0.0657654,-0.0209961,0.0193176,0.0527649,0.0789185,0.109406,0.14679,0.190887,0.238586,0.28476,0.319153,0.337921,0.34552,0.345245,0.331543,0.307129,0.263367,0.209076,0.155518,0.104431,0.0587158,0.0135498,-0.0377808,-0.0908813,-0.135101,-0.165649,-0.186707,-0.197784,-0.202759,-0.204987,-0.196716,-0.178864,-0.156372,-0.136444,-0.121277,-0.107574,-0.100677,-0.0922241,-0.081604,-0.0592041,-0.0237732,0.00665283,0.0302734,0.0546875,0.07724,0.089386,0.0783997,0.053833,0.0249634,0.00436401,-0.0175171,-0.053772,-0.0947571,-0.128937,-0.153015,-0.169952,-0.188599,-0.206238,-0.21344,-0.202759,-0.184631,-0.169403,-0.149323,-0.115051,-0.0635071,-0.00878906,0.0326843,0.0668335,0.108459,0.157379,0.199615,0.235168,0.265442,0.298004,0.330139,0.351166,0.35318,0.33725,0.308411,0.275055,0.241882,0.199951,0.144287,0.0851746,0.0355835,-0.00576782,-0.04953,-0.100067,-0.146576,-0.17807,-0.194916,-0.205841,-0.211945,-0.20639,-0.190613,-0.168274,-0.143555,-0.12677,-0.10611,-0.0844421,-0.0654907,-0.0521545,-0.0420837,-0.0263672,-0.00222778,0.0230103,0.0453186,0.0628357,0.0748291,0.0690002,0.0484009,0.0265198,0.00778198,-0.0085144,-0.0350952,-0.073761,-0.106567,-0.127197,-0.142151,-0.161621,-0.183563,-0.195312,-0.191895,-0.180145,-0.169952,-0.15744,-0.128265,-0.0842285,-0.0397949,-0.00341797,0.0269775,0.0689392,0.122284,0.166321,0.194031,0.218475,0.253571,0.291565,0.321075,0.332764,0.325378,0.311493,0.293976,0.269135,0.234436,0.192566,0.142426,0.0914001,0.0428772,-0.00180054,-0.0458374,-0.089386,-0.132904,-0.171021,-0.190002,-0.197937,-0.20047,-0.198608,-0.187714,-0.165497,-0.140015,-0.119812,-0.102692,-0.0860291,-0.0785217,-0.0704651,-0.0584717,-0.0453796,-0.0297852,-0.0151672,0.00222778,0.0195312,0.0397949,0.0491333,0.0400696,0.0200806,-0.000213623,-0.0158386,-0.0293884,-0.049408,-0.0787354,-0.104706,-0.124908,-0.140259,-0.157654,-0.171631,-0.172821,-0.164093,-0.153015,-0.143768,-0.124237,-0.0870361,-0.045166,-0.0050354,0.0302124,0.0632324,0.101471,0.144104,0.177399,0.202026,0.231537,0.263306,0.292419,0.316467,0.322296,0.313568,0.299683,0.278076,0.246979,0.210999,0.168274,0.118591,0.0691223,0.0229492,-0.0234375,-0.0604858,-0.0976562,-0.141937,-0.18042,-0.200348,-0.199799,-0.193634,-0.185638,-0.177795,-0.16214,-0.141083,-0.112274,-0.0914917,-0.0860291,-0.0900574,-0.0845032,-0.0643616,-0.0446472,-0.0312805,-0.024231,-0.00704956,0.0222778,0.0480652,0.0461731,0.0253601,0.00497437,-0.00939941,-0.0132141,-0.0257874,-0.0544434,-0.086853,-0.102814,-0.110474,-0.124634,-0.14679,-0.162903,-0.162292,-0.146118,-0.134827,-0.128723,-0.110474,-0.0751648,-0.0312805,0.00784302,0.0363159,0.061676,0.0965881,0.142548,0.178802,0.20639,0.230072,0.258057,0.292969,0.316803,0.318481,0.298798,0.281342,0.270691,0.247803,0.203552,0.144897,0.090271,0.0579224,0.0281982,-0.0229492,-0.0892029,-0.139801,-0.160889,-0.166992,-0.186188,-0.214111,-0.226044,-0.200806,-0.160126,-0.139069,-0.136169,-0.128784,-0.100555,-0.07724,-0.0756531,-0.0785217,-0.0680542,-0.041687,-0.0185242,-0.0103455,-0.00476074,0.0173035,0.046051,0.0546875,0.0334778,0.00289917,-0.0102539,-0.00878906,-0.00811768,-0.0299377,-0.0602112,-0.0832825,-0.0979919,-0.111694,-0.129456,-0.139008,-0.141266,-0.141815,-0.14035,-0.128937,-0.103424,-0.0664978,-0.0303955,-0.0012207,0.0283813,0.0602722,0.0984497,0.139587,0.178131,0.213104,0.24115,0.269745,0.296783,0.311768,0.314453,0.301147,0.27774,0.24411,0.211273,0.176575,0.138733,0.0898743,0.0404053,-0.00524902,-0.0443726,-0.0843506,-0.127991,-0.168854,-0.194977,-0.203491,-0.200745,-0.197174,-0.192627,-0.183502,-0.16214,-0.139404,-0.126038,-0.122498,-0.120605,-0.105774,-0.0845642,-0.0649109,-0.0518799,-0.0378418,-0.0139465,0.0140991,0.0383911,0.0463867,0.0443115,0.037323,0.0335693,0.0301208,0.0220947,0.00750732,-0.012085,-0.032959,-0.0566406,-0.0819397,-0.107849,-0.127045,-0.134583,-0.136444,-0.134247,-0.130066,-0.114899,-0.0922241,-0.0596008,-0.0292053,-0.00213623,0.027771,0.0621643,0.105377,0.147644,0.185028,0.21344,0.241608,0.273895,0.304169,0.315796,0.304169,0.286865,0.270203,0.254761,0.2323,0.189728,0.135651,0.0860291,0.0482483,0.00256348,-0.0485229,-0.10202,-0.146637,-0.177185,-0.196045,-0.213898,-0.228058,-0.224701,-0.209351,-0.194427,-0.185303,-0.179932,-0.169342,-0.150085,-0.127655,-0.115509,-0.10733,-0.0897217,-0.0620728,-0.0361023,-0.0111389,0.013031,0.0361633,0.0524902,0.0597229,0.0563049,0.0481262,0.0468445,0.0467834,0.0296021,0.00222778,-0.0303345,-0.0583801,-0.078125,-0.0991211,-0.12149,-0.13974,-0.145844,-0.141479,-0.131805,-0.114502,-0.0909424,-0.061554,-0.0302124,-0.000549316,0.0322876,0.0758362,0.127106,0.170532,0.203308,0.226868,0.25946,0.297943,0.32785,0.334717,0.319275,0.303894,0.291077,0.275116,0.246521,0.200745,0.144104,0.0932312,0.0466309,-0.00457764,-0.0588684,-0.112213,-0.154968,-0.188141,-0.215576,-0.240082,-0.252899,-0.247589,-0.231964,-0.220947,-0.217377,-0.209595,-0.189606,-0.164032,-0.142822,-0.124847,-0.107178,-0.0820312,-0.0532227,-0.0289307,-0.00497437,0.0245667,0.0552368,0.0713501,0.0678406,0.0564575,0.0491943,0.0517578,0.0454407,0.0184631,-0.0163879,-0.0487366,-0.0710754,-0.0923462,-0.113708,-0.133026,-0.144623,-0.145782,-0.146637,-0.141876,-0.121674,-0.0901489,-0.0567017,-0.0297241,-0.00268555,0.0327454,0.0838318,0.139587,0.184906,0.214691,0.242767,0.276733,0.319153,0.353851,0.361084,0.344025,0.319061,0.301697,0.287048,0.259674,0.207733,0.141876,0.0843506,0.0399475,-0.0062561,-0.0610046,-0.120941,-0.165924,-0.194641,-0.218262,-0.240692,-0.252014,-0.241882,-0.226196,-0.222168,-0.22229,-0.209747,-0.178131,-0.147064,-0.133911,-0.130554,-0.117584,-0.0820923,-0.0437622,-0.0241089,-0.0118103,0.0115356,0.0443726,0.0626831,0.0597229,0.0477295,0.0448914,0.049469,0.0384521,0.00866699,-0.0244446,-0.0475159,-0.0646362,-0.0875244,-0.116791,-0.139069,-0.146729,-0.144836,-0.143768,-0.142487,-0.125702,-0.0995483,-0.0714722,-0.0440369,-0.0137634,0.0315552,0.0845032,0.13324,0.170685,0.204041,0.242493,0.283356,0.320282,0.34726,0.356598,0.346313,0.331635,0.318054,0.303955,0.273499,0.216919,0.152557,0.101196,0.0603943,0.0110779,-0.0531006,-0.116577,-0.159882,-0.187378,-0.214508,-0.244568,-0.262085,-0.259796,-0.248932,-0.24472,-0.241028,-0.226593,-0.198334,-0.17865,-0.168518,-0.151001,-0.115051,-0.0722046,-0.0505371,-0.0391235,-0.011261,0.0346985,0.0769043,0.0831604,0.0677795,0.0597229,0.069397,0.0763855,0.0547791,0.0172424,-0.0118103,-0.0269165,-0.0484009,-0.086792,-0.125763,-0.141144,-0.139404,-0.143433,-0.16214,-0.172028,-0.152557,-0.113281,-0.0803528,-0.0603333,-0.0359802,0.00726318,0.0663757,0.123749,0.169678,0.208588,0.245453,0.283569,0.324982,0.359406,0.37558,0.367462,0.350555,0.335999,0.320221,0.291138,0.240601,0.181,0.124634,0.072876,0.0144348,-0.0505981,-0.114227,-0.164703,-0.200409,-0.233978,-0.268127,-0.292145,-0.296509,-0.285248,-0.273956,-0.265442,-0.25235,-0.229065,-0.201691,-0.176849,-0.148193,-0.114899,-0.0769958,-0.0490723,-0.0218201,0.00744629,0.0481262,0.0869141,0.102081,0.0966492,0.0835571,0.0876465,0.0909424,0.0786743,0.0461121,0.00765991,-0.0205383,-0.0498047,-0.0846863,-0.123413,-0.146912,-0.1586,-0.166046,-0.178406,-0.188324,-0.173096,-0.139679,-0.100555,-0.0738831,-0.0448303,0.00161743,0.0656433,0.13208,0.180084,0.21933,0.259888,0.305634,0.345856,0.374054,0.386871,0.385925,0.380005,0.362305,0.337067,0.30014,0.253845,0.199402,0.139008,0.0784607,0.0122681,-0.0517578,-0.112885,-0.165985,-0.213348,-0.256104,-0.288452,-0.307983,-0.315521,-0.315247,-0.305389,-0.292236,-0.273285,-0.24826,-0.218475,-0.187714,-0.154236,-0.112762,-0.0755005,-0.039856,-0.00918579,0.0273743,0.0661011,0.0963135,0.111938,0.113159,0.111877,0.105042,0.0925598,0.0730286,0.0454407,0.0138855,-0.0221558,-0.061615,-0.0958557,-0.123566,-0.142548,-0.160614,-0.177124,-0.187469,-0.183014,-0.165436,-0.140472,-0.113159,-0.081543,-0.0406189,0.00946045,0.0621643,0.115723,0.17041,0.220062,0.262634,0.30188,0.337006,0.37204,0.392761,0.394836,0.382355,0.365509,0.344177,0.31076,0.26297,0.203491,0.142426,0.0805359,0.0169067,-0.0490723,-0.117188,-0.178314,-0.227448,-0.263916,-0.292236,-0.313171,-0.323914,-0.324921,-0.310608,-0.290619,-0.269409,-0.251068,-0.228943,-0.197388,-0.158997,-0.114899,-0.0760498,-0.0426331,-0.0110779,0.0250244,0.0631714,0.0967712,0.113831,0.114105,0.110199,0.105042,0.101013,0.0844421,0.0579224,0.0220947,-0.0116882,-0.0426941,-0.0748291,-0.105377,-0.130341,-0.142212,-0.150085,-0.158936,-0.164246,-0.157104,-0.130402,-0.0996094,-0.0738831,-0.0499268,-0.0148926,0.0368347,0.0949097,0.145721,0.182098,0.218872,0.26236,0.308258,0.340942,0.356323,0.361969,0.36322,0.359863,0.344238,0.31134,0.267578,0.215515,0.159607,0.101013,0.0390625,-0.0307312,-0.103424,-0.163971,-0.211273,-0.248993,-0.284637,-0.312775,-0.32431,-0.320618,-0.306396,-0.288727,-0.270538,-0.252563,-0.227051,-0.195374,-0.160797,-0.122162,-0.0869141,-0.0526733,-0.0254517,0.00128174,0.0306702,0.0623474,0.0887146,0.0977173,0.0975342,0.0957031,0.0986023,0.100616,0.0924072,0.0715332,0.040802,0.013031,-0.00845337,-0.0298767,-0.0524902,-0.0751648,-0.0929565,-0.112213,-0.129059,-0.137726,-0.129944,-0.114441,-0.0993347,-0.0855103,-0.0619507,-0.0187988,0.0322266,0.0856323,0.129456,0.171539,0.216797,0.265045,0.309937,0.342834,0.359406,0.36673,0.363647,0.352631,0.326263,0.285858,0.237732,0.182007,0.120483,0.0514832,-0.0194092,-0.0822144,-0.140015,-0.196045,-0.246643,-0.283569,-0.303558,-0.315247,-0.323303,-0.322296,-0.309082,-0.285522,-0.26825,-0.252625,-0.230347,-0.19873,-0.1604,-0.128265,-0.0973816,-0.0661621,-0.0312195,0.00335693,0.0379944,0.0678406,0.0887146,0.104218,0.113708,0.119659,0.124359,0.123688,0.114563,0.0954285,0.0708618,0.0461731,0.0250244,0.00247192,-0.0228882,-0.0532227,-0.0777283,-0.0982056,-0.111145,-0.11972,-0.12207,-0.115051,-0.100616,-0.0796814,-0.0503235,-0.00979614,0.0422974,0.0949097,0.139923,0.184235,0.234833,0.293427,0.342438,0.36673,0.374786,0.379272,0.38559,0.373444,0.328674,0.268463,0.205841,0.153961,0.0966492,0.017395,-0.0673218,-0.138397,-0.191162,-0.237854,-0.292755,-0.337585,-0.357605,-0.359619,-0.354767,-0.355713,-0.34552,-0.320831,-0.292633,-0.271149,-0.25351,-0.220825,-0.175385,-0.128937,-0.0923462,-0.0628967,-0.0218201,0.0307922,0.0782471,0.104645,0.117737,0.128601,0.14209,0.150085,0.145447,0.135925,0.124756,0.107849,0.0810852,0.0487976,0.0204773,-0.00195312,-0.0297852,-0.0687256,-0.105316,-0.125519,-0.127594,-0.126526,-0.124908,-0.115509,-0.0888672,-0.0470581,-0.00430298,0.0405273,0.0916138,0.151276,0.212616,0.266846,0.317657,0.368866,0.408661,0.429352,0.427856,0.415771,0.397339,0.363892,0.308136,0.236115,0.167603,0.105499,0.0334778,-0.0489197,-0.136719,-0.211761,-0.263824,-0.308594,-0.351959,-0.3909,-0.410553,-0.407654,-0.394043,-0.376526,-0.360291,-0.345978,-0.3237,-0.296326,-0.25705,-0.210815,-0.166382,-0.124298,-0.0797424,-0.0241089,0.036438,0.0863037,0.116852,0.134491,0.150421,0.164581,0.168793,0.162415,0.148926,0.134644,0.114044,0.0828857,0.0461121,0.00860596,-0.0247803,-0.0593872,-0.098877,-0.136658,-0.16214,-0.165314,-0.15625,-0.141083,-0.120331,-0.0898132,-0.0420227,0.0152893,0.0751648,0.136658,0.198273,0.261353,0.327606,0.391479,0.443634,0.471832,0.48056,0.478394,0.470001,0.445465,0.3909,0.316193,0.240692,0.174561,0.109192,0.0245667,-0.0757141,-0.168732,-0.239929,-0.293365,-0.346924,-0.401276,-0.440613,-0.453491,-0.445526,-0.432892,-0.418396,-0.398071,-0.371094,-0.343781,-0.319946,-0.28833,-0.237,-0.175568,-0.117798,-0.0726318,-0.025177,0.0365906,0.103149,0.152344,0.170624,0.171967,0.176239,0.186127,0.191162,0.178467,0.149536,0.112366,0.072876,0.0316162,-0.0137634,-0.0606689,-0.107239,-0.153229,-0.191833,-0.215576,-0.220673,-0.204773,-0.174957,-0.138,-0.0924988,-0.0318909,0.040741,0.124237,0.207245,0.282959,0.354858,0.424652,0.489807,0.537933,0.56189,0.563568,0.550629,0.521576,0.473511,0.403564,0.321472,0.235992,0.15155,0.0639648,-0.0307312,-0.124756,-0.21524,-0.293701,-0.35611,-0.407928,-0.445038,-0.470825,-0.484039,-0.480835,-0.463043,-0.434052,-0.407806,-0.389954,-0.370209,-0.337921,-0.289612,-0.23465,-0.182281,-0.126434,-0.0708008,-0.00390625,0.066925,0.127258,0.169861,0.188324,0.194244,0.196167,0.199127,0.191559,0.164581,0.123505,0.0757751,0.0332336,-0.00732422,-0.0569763,-0.114044,-0.168671,-0.207336,-0.229614,-0.240692,-0.236725,-0.214905,-0.169678,-0.112946,-0.0519409,0.0234375,0.11026,0.205322,0.293762,0.367584,0.438202,0.510406,0.575195,0.616669,0.62674,0.610229,0.580963,0.54425,0.490417,0.407471,0.307861,0.206055,0.110474,0.0211487,-0.0748901,-0.17337,-0.272705,-0.360535,-0.426849,-0.47464,-0.504639,-0.521301,-0.526062,-0.517731,-0.498688,-0.463989,-0.427002,-0.391296,-0.361481,-0.329865,-0.285645,-0.225372,-0.157867,-0.091156,-0.0322266,0.0291138,0.0917358,0.149536,0.185455,0.193085,0.185913,0.177521,0.168732,0.151154,0.117645,0.077179,0.0330811,-0.00692749,-0.0488586,-0.0970459,-0.145294,-0.186371,-0.218994,-0.237457,-0.244232,-0.226715,-0.187805,-0.136383,-0.074646,-0.00335693,0.0869141,0.187805,0.286377,0.375061,0.449066,0.524994,0.600769,0.658875,0.685455,0.675659,0.645599,0.610352,0.570282,0.501892,0.395569,0.271271,0.15564,0.0591431,-0.032135,-0.142548,-0.264832,-0.375305,-0.451355,-0.500031,-0.535522,-0.565521,-0.5784,-0.565582,-0.532837,-0.496185,-0.459351,-0.417786,-0.372162,-0.33136,-0.295319,-0.253967,-0.197388,-0.133972,-0.0720215,-0.0168457,0.0354309,0.0881958,0.136383,0.167786,0.173492,0.165985,0.150757,0.137054,0.115234,0.0861206,0.0546875,0.0153809,-0.0271912,-0.0700073,-0.109009,-0.142151,-0.176178,-0.211761,-0.236176,-0.236176,-0.207672,-0.163696,-0.107788,-0.0395203,0.0497437,0.15686,0.269592,0.37262,0.461639,0.548126,0.629364,0.693787,0.732971,0.736725,0.711823,0.67511,0.625122,0.557404,0.464661,0.345184,0.214691,0.0935059,-0.0153809,-0.124695,-0.235901,-0.346313,-0.443848,-0.519958,-0.571289,-0.601624,-0.615662,-0.612762,-0.594055,-0.562714,-0.519348,-0.465393,-0.408875,-0.359131,-0.317047,-0.279938,-0.234375,-0.173889,-0.112152,-0.0589905,-0.0085144,0.0455017,0.102539,0.152832,0.181427,0.179077,0.1651,0.150604,0.130219,0.0977783,0.0569763,0.0152893,-0.0194092,-0.0456543,-0.0767822,-0.117645,-0.1521,-0.176453,-0.196106,-0.20813,-0.207733,-0.185638,-0.137848,-0.0631714,0.0269165,0.133575,0.255859,0.376068,0.483368,0.57431,0.657013,0.727203,0.770844,0.779297,0.755066,0.713501,0.667145,0.600677,0.509613,0.393494,0.266846,0.132019,-0.00558472,-0.13678,-0.258789,-0.365906,-0.469482,-0.565186,-0.634705,-0.663574,-0.658875,-0.644043,-0.624573,-0.593231,-0.54425,-0.482849,-0.422485,-0.367126,-0.316193,-0.271545,-0.239014,-0.211334,-0.171967,-0.119385,-0.0598145,-0.00424194,0.0464478,0.0979919,0.147064,0.178467,0.186798,0.183014,0.171814,0.148468,0.104034,0.0506592,0.0101929,-0.0126038,-0.0312195,-0.0665894,-0.115387,-0.15094,-0.165771,-0.169952,-0.174042,-0.170135,-0.145172,-0.0884705,0.00189209,0.109741,0.234772,0.368591,0.489197,0.589417,0.673645,0.75116,0.813995,0.837128,0.809906,0.749634,0.685181,0.616333,0.527069,0.404907,0.261749,0.122681,-0.00793457,-0.130219,-0.252167,-0.373047,-0.485107,-0.57782,-0.645325,-0.690216,-0.708954,-0.713501,-0.698273,-0.661499,-0.603119,-0.537415,-0.46759,-0.401154,-0.341766,-0.290955,-0.255249,-0.231018,-0.197113,-0.149261,-0.0962524,-0.0439758,0.0149536,0.0836792,0.157532,0.212494,0.23053,0.227325,0.215179,0.191406,0.142365,0.0764465,0.00878906,-0.0323486,-0.0462341,-0.0585327,-0.0769043,-0.0917358,-0.0879211,-0.0782471,-0.0747681,-0.0795898,-0.0779114,-0.0561218,-0.00128174,0.0810242,0.192566,0.327515,0.463501,0.579468,0.677124,0.771027,0.849762,0.880981,0.842438,0.746521,0.651093,0.579468,0.504517,0.396515,0.26123,0.128601,0.00979614,-0.100616,-0.22049,-0.351685,-0.481415,-0.601105,-0.70694,-0.784851,-0.812714,-0.796753,-0.760559,-0.716003,-0.664185,-0.589355,-0.495514,-0.400208,-0.333832,-0.29953,-0.280945,-0.26358,-0.231689,-0.185913,-0.134094,-0.0794067,-0.0161743,0.0610657,0.146454,0.227783,0.273102,0.278198,0.262421,0.237396,0.19986,0.141479,0.0749817,0.0188599,-0.00637817,-0.0067749,-0.00991821,-0.0220947,-0.0305481,-0.0272522,-0.0222778,-0.0238342,-0.0383911,-0.0472412,-0.0179138,0.0592041,0.17926,0.3255,0.469086,0.592224,0.7005,0.807343,0.894379,0.927063,0.875397,0.75238,0.619415,0.520233,0.442169,0.345123,0.213837,0.0759888,-0.0425415,-0.133423,-0.222626,-0.337524,-0.478333,-0.629272,-0.758942,-0.840698,-0.865997,-0.852509,-0.820831,-0.777283,-0.717621,-0.635803,-0.54068,-0.452026,-0.388672,-0.35202,-0.333893,-0.330353,-0.314362,-0.262482,-0.181152,-0.0888672,-0.00088501,0.086853,0.181152,0.283447,0.361145,0.390228,0.374573,0.329865,0.264435,0.189606,0.121063,0.0698547,0.0469055,0.0444946,0.0397339,0.0307922,0.0353699,0.0536804,0.0634155,0.0497437,0.0162354,-0.00939941,0.0118713,0.0877991,0.203888,0.344025,0.49176,0.625122,0.740173,0.840088,0.913177,0.926086,0.854736,0.712158,0.551361,0.427002,0.333313,0.232483,0.109406,-0.013031,-0.112152,-0.184021,-0.257874,-0.36792,-0.504791,-0.640747,-0.763306,-0.859497,-0.914917,-0.927155,-0.897888,-0.83847,-0.764191,-0.679688,-0.582916,-0.488342,-0.414368,-0.37262,-0.36203,-0.362305,-0.345367,-0.292023,-0.203033,-0.0954285,0.0214233,0.145569,0.269592,0.386719,0.472778,0.500946,0.4758,0.413757,0.326935,0.232544,0.144958,0.0797424,0.0512085,0.0606689,0.0794067,0.0932312,0.105225,0.119537,0.129547,0.119263,0.0855103,0.0521545,0.0612793,0.128601,0.240204,0.372833,0.506927,0.635254,0.762573,0.86438,0.909821,0.868896,0.758362,0.611572,0.467529,0.3396,0.219482,0.098114,-0.00933838,-0.0914001,-0.154236,-0.216858,-0.301086,-0.41687,-0.550354,-0.690216,-0.817932,-0.912445,-0.968292,-0.981781,-0.953125,-0.888428,-0.795471,-0.685669,-0.569214,-0.470825,-0.40625,-0.381073,-0.375122,-0.367584,-0.339081,-0.272552,-0.175903,-0.0545044,0.0848999,0.233887,0.378723,0.506805,0.580566,0.58847,0.536987,0.442963,0.333984,0.234375,0.15564,0.109467,0.103973,0.125183,0.155518,0.182495,0.202423,0.210358,0.19812,0.151825,0.0857849,0.0409546,0.0602722,0.147797,0.271271,0.399597,0.524445,0.657074,0.786591,0.871307,0.859894,0.747009,0.593323,0.453308,0.330078,0.200134,0.0673218,-0.0339661,-0.0924072,-0.132141,-0.179993,-0.250488,-0.346527,-0.464233,-0.596313,-0.733521,-0.857941,-0.953461,-0.999969,-0.993317,-0.940033,-0.856201,-0.754791,-0.647552,-0.549683,-0.473694,-0.424377,-0.411011,-0.419617,-0.413361,-0.361023,-0.255981,-0.113434,0.0439758,0.205444,0.369263,0.524109,0.637604,0.678802,0.634369,0.534515,0.420807,0.313843,0.219147,0.156036,0.154175,0.199799,0.256439,0.299622,0.329742,0.344849,0.334167,0.282562,0.196655,0.110077,0.0682678,0.0930176,0.17807,0.292358,0.407074,0.515106,0.617126,0.695404,0.714844,0.64975,0.515778,0.361755,0.230743,0.137787,0.0554504,-0.0317383,-0.103882,-0.143768,-0.167267,-0.207397,-0.298676,-0.433777,-0.572449,-0.697662,-0.808685,-0.902924,-0.965607,-0.973663,-0.911774,-0.807556,-0.703308,-0.618073,-0.547455,-0.483582,-0.443298,-0.445526,-0.477051,-0.49176,-0.452484,-0.351685,-0.205322,-0.0410156,0.133636,0.312836,0.489532,0.629883,0.702515,0.687195,0.60968,0.499756,0.393036,0.311951,0.260468,0.246246,0.274384,0.33606,0.407532,0.462494,0.483307,0.467072,0.417542,0.338135,0.24585,0.17276,0.147919,0.178589,0.243958,0.320679,0.393707,0.459747,0.505707,0.515656,0.462769,0.356384,0.230743,0.121399,0.0319519,-0.0464478,-0.11618,-0.169739,-0.19812,-0.227264,-0.272705,-0.349945,-0.452576,-0.559143,-0.656738,-0.741974,-0.805603,-0.832184,-0.819275,-0.76297,-0.681244,-0.595123,-0.528198,-0.483093,-0.461823,-0.458862,-0.475464,-0.508331,-0.527191,-0.494568,-0.394165,-0.24115,-0.069458,0.0996094,0.267731,0.436188,0.578613,0.652832,0.631561,0.547119,0.448212,0.371033,0.323364,0.294922,0.293091,0.338593,0.429413,0.530823,0.60849,0.637817,0.618286,0.569885,0.495667,0.398926,0.301636,0.235321,0.217987,0.246918,0.294037,0.332306,0.357208,0.367584,0.360138,0.313171,0.219604,0.0924988,-0.029541,-0.124298,-0.190887,-0.248047,-0.298126,-0.337067,-0.363983,-0.386322,-0.425995,-0.493317,-0.574646,-0.644531,-0.689026,-0.70694,-0.702637,-0.672974,-0.612976,-0.529755,-0.450012,-0.401367,-0.382904,-0.389404,-0.412231,-0.450409,-0.492889,-0.506927,-0.465332,-0.360077,-0.213684,-0.0583801,0.102356,0.262085,0.417938,0.530212,0.562622,0.509277,0.419739,0.339752,0.286591,0.257721,0.249725,0.286194,0.378204,0.511749,0.638,0.717194,0.743774,0.728546,0.688416,0.608276,0.491974,0.373169,0.297394,0.278656,0.300476,0.328064,0.342438,0.346039,0.341888,0.318054,0.247131,0.121063,-0.0317993,-0.173706,-0.279999,-0.358337,-0.42041,-0.471893,-0.5047,-0.512512,-0.505798,-0.515442,-0.55545,-0.60553,-0.642029,-0.65332,-0.646667,-0.627686,-0.590637,-0.528595,-0.446991,-0.368927,-0.321686,-0.302032,-0.304626,-0.330139,-0.373169,-0.412354,-0.409821,-0.348541,-0.24054,-0.112152,0.0150452,0.151489,0.29953,0.437134,0.512085,0.49115,0.39679,0.293823,0.224701,0.18927,0.175964,0.186249,0.250153,0.377869,0.53949,0.682831,0.768555,0.793579,0.778015,0.732025,0.644257,0.519226,0.394775,0.324097,0.317932,0.351013,0.376862,0.378662,0.36673,0.351227,0.317322,0.226715,0.0764465,-0.102539,-0.26358,-0.385315,-0.467194,-0.535248,-0.59082,-0.623169,-0.626129,-0.614197,-0.615051,-0.63028,-0.652985,-0.666138,-0.658142,-0.631958,-0.596588,-0.5466,-0.479553,-0.397858,-0.321686,-0.274109,-0.254089,-0.261017,-0.290283,-0.321899,-0.331085,-0.295502,-0.217255,-0.112823,0.00134277,0.121155,0.258209,0.398926,0.504517,0.52063,0.444305,0.32135,0.220276,0.163239,0.129791,0.107239,0.124359,0.219666,0.386597,0.565521,0.699554,0.769409,0.791168,0.777557,0.719421,0.605865,0.45813,0.340149,0.302032,0.325317,0.359131,0.37384,0.377533,0.387543,0.391907,0.35083,0.232544,0.0499878,-0.141357,-0.303284,-0.422638,-0.516113,-0.602295,-0.663971,-0.689423,-0.679749,-0.656403,-0.651642,-0.661377,-0.668152,-0.664459,-0.644257,-0.616394,-0.582153,-0.530823,-0.456726,-0.37384,-0.307648,-0.273438,-0.26123,-0.262482,-0.278137,-0.294647,-0.290131,-0.236511,-0.139343,-0.0223389,0.0960999,0.217468,0.34552,0.469482,0.545319,0.529419,0.423431,0.283356,0.180481,0.126373,0.10376,0.0979309,0.137604,0.253754,0.431366,0.612366,0.747345,0.805115,0.800903,0.75827,0.675262,0.545593,0.394318,0.283905,0.253693,0.282684,0.320557,0.34436,0.362366,0.384583,0.395569,0.347717,0.21402,0.0204773,-0.179932,-0.34671,-0.475647,-0.583496,-0.683105,-0.747742,-0.757477,-0.721832,-0.669556,-0.64035,-0.630768,-0.624847,-0.607727,-0.579285,-0.55191,-0.531433,-0.502441,-0.445526,-0.373169,-0.311493,-0.279999,-0.264771,-0.259674,-0.258331,-0.244568,-0.217377,-0.157776,-0.0611572,0.0578613,0.179993,0.290802,0.382965,0.458191,0.49881,0.473511,0.374969,0.241608,0.135986,0.0810242,0.0810242,0.123169,0.201477,0.32605,0.482635,0.637207,0.759827,0.811829,0.788879,0.716858,0.606659,0.47049,0.340149,0.249817,0.226196,0.260803,0.317932,0.370361,0.407318,0.423706,0.41095,0.3396,0.196655,-0.00772095,-0.233643,-0.432892,-0.581635,-0.680359,-0.747864,-0.779022,-0.763184,-0.714508,-0.650085,-0.595337,-0.574646,-0.576996,-0.581085,-0.576538,-0.563232,-0.54895,-0.52652,-0.475464,-0.40094,-0.325928,-0.268127,-0.230194,-0.21283,-0.203552,-0.180481,-0.139862,-0.072876,0.00967407,0.100555,0.198517,0.297607,0.387939,0.459076,0.485992,0.443695,0.339661,0.227386,0.149414,0.111542,0.110016,0.145447,0.231628,0.368134,0.527069,0.667419,0.757751,0.776611,0.732574,0.650818,0.531891,0.390015,0.265503,0.199066,0.21109,0.276459,0.351746,0.414856,0.454773,0.464386,0.424713,0.316376,0.137848,-0.091156,-0.322418,-0.513184,-0.64444,-0.7258,-0.767059,-0.762451,-0.718689,-0.660156,-0.596985,-0.551758,-0.542633,-0.557678,-0.579681,-0.594391,-0.595123,-0.584045,-0.555389,-0.494507,-0.412018,-0.3255,-0.245453,-0.186646,-0.161621,-0.153839,-0.136993,-0.0970459,-0.0288696,0.0470581,0.124756,0.211884,0.299622,0.381073,0.448944,0.473785,0.428009,0.320679,0.214172,0.155792,0.140472,0.154175,0.198608,0.285645,0.414246,0.559631,0.683044,0.750092,0.736481,0.661041,0.566986,0.45459,0.323822,0.215363,0.170807,0.213104,0.304626,0.392914,0.45694,0.479889,0.460358,0.396729,0.269806,0.0750427,-0.166046,-0.401367,-0.578064,-0.686737,-0.73526,-0.738739,-0.710693,-0.660431,-0.600677,-0.541748,-0.506378,-0.515991,-0.559692,-0.603516,-0.629272,-0.630157,-0.60968,-0.566864,-0.489471,-0.388611,-0.28833,-0.203094,-0.14563,-0.125702,-0.130798,-0.124634,-0.0853577,-0.0181274,0.0507507,0.122284,0.205566,0.293823,0.376526,0.443634,0.468079,0.42041,0.309998,0.207733,0.160217,0.153961,0.174103,0.227661,0.321747,0.447205,0.575043,0.682709,0.739502,0.71344,0.620636,0.510071,0.396576,0.281555,0.199341,0.187592,0.249054,0.345032,0.429413,0.483093,0.490417,0.452087,0.365112,0.218201,0.00772095,-0.237183,-0.457336,-0.606476,-0.684113,-0.705261,-0.69519,-0.658936,-0.605591,-0.557129,-0.518951,-0.507324,-0.538818,-0.59967,-0.651367,-0.676056,-0.663116,-0.626129,-0.561157,-0.462036,-0.349945,-0.25061,-0.171295,-0.117249,-0.103699,-0.121399,-0.129272,-0.100342,-0.0331421,0.0465698,0.12854,0.223022,0.314453,0.395325,0.462891,0.486053,0.432434,0.312836,0.202301,0.1539,0.150421,0.172638,0.229736,0.327454,0.45047,0.574707,0.67337,0.716736,0.681915,0.582245,0.470215,0.363312,0.259735,0.191895,0.196503,0.265991,0.362885,0.438995,0.482361,0.484528,0.432892,0.332886,0.17981,-0.0263672,-0.256439,-0.455933,-0.583313,-0.644867,-0.657013,-0.642029,-0.603912,-0.563049,-0.535309,-0.521484,-0.526184,-0.563446,-0.625458,-0.676056,-0.695068,-0.674438,-0.623444,-0.543579,-0.438477,-0.328857,-0.234558,-0.160339,-0.114044,-0.104767,-0.131012,-0.153687,-0.136932,-0.0671692,0.032074,0.131561,0.232422,0.322906,0.40506,0.471497,0.500824,0.457458,0.341217,0.211334,0.143372,0.141022,0.171478,0.227875,0.314026,0.434631,0.560944,0.66095,0.708801,0.680237,0.574921,0.45047,0.348541,0.25946,0.191071,0.178925,0.245789,0.354248,0.440002,0.48056,0.473969,0.420898,0.325836,0.185181,-0.0071106,-0.234833,-0.437469,-0.566467,-0.616791,-0.623657,-0.607483,-0.573242,-0.537201,-0.519562,-0.514313,-0.523102,-0.560028,-0.622986,-0.681244,-0.702698,-0.675323,-0.616455,-0.532379,-0.427612,-0.321075,-0.226593,-0.157257,-0.117584,-0.112427,-0.141876,-0.174377,-0.166321,-0.103363,-0.00839233,0.0924988,0.205383,0.319061,0.4151,0.479889,0.503235,0.466248,0.362885,0.238739,0.157104,0.129608,0.131073,0.169342,0.262634,0.407532,0.55069,0.651825,0.700226,0.685394,0.600433,0.479492,0.371368,0.269928,0.188385,0.168793,0.226929,0.326599,0.411499,0.470154,0.493317,0.460541,0.372284,0.23645,0.0491333,-0.171082,-0.375244,-0.516388,-0.592834,-0.623901,-0.61673,-0.579803,-0.536316,-0.512848,-0.507996,-0.525513,-0.560211,-0.61377,-0.663055,-0.691437,-0.688873,-0.645386,-0.567078,-0.464386,-0.354858,-0.256592,-0.179535,-0.128601,-0.109467,-0.126862,-0.169006,-0.190002,-0.151428,-0.0507507,0.0752258,0.197052,0.30719,0.392365,0.456268,0.493896,0.490082,0.421814,0.294037,0.174835,0.115784,0.116241,0.157776,0.237671,0.356445,0.491425,0.602783,0.672638,0.687866,0.629822,0.504913,0.374634,0.27182,0.193298,0.158264,0.190826,0.282013,0.387207,0.462372,0.49942,0.486847,0.420074,0.304962,0.141205,-0.0699463,-0.288116,-0.463104,-0.565918,-0.608398,-0.609894,-0.583099,-0.538269,-0.506195,-0.496002,-0.50061,-0.524384,-0.56546,-0.624054,-0.672913,-0.695465,-0.672363,-0.607056,-0.511505,-0.403961,-0.304718,-0.221161,-0.15744,-0.123627,-0.114838,-0.139587,-0.178192,-0.178741,-0.112091,0.00637817,0.131226,0.247528,0.349335,0.417328,0.454041,0.467987,0.446594,0.364044,0.244904,0.151947,0.117401,0.130402,0.180206,0.28476,0.427002,0.552429,0.627472,0.656342,0.640167,0.563049,0.442444,0.332092,0.238586,0.163422,0.155579,0.228882,0.34613,0.441345,0.490692,0.505371,0.475922,0.391296,0.255371,0.0674438,-0.158997,-0.367584,-0.512573,-0.580566,-0.602783,-0.597992,-0.564117,-0.51712,-0.490082,-0.485382,-0.498749,-0.534119,-0.58667,-0.64856,-0.689423,-0.69632,-0.662445,-0.590546,-0.485535,-0.369354,-0.267517,-0.191956,-0.144043,-0.110413,-0.0985413,-0.125244,-0.164764,-0.165039,-0.0926208,0.0378418,0.169128,0.280548,0.356384,0.393982,0.421753,0.448273,0.442841,0.363373,0.236572,0.133911,0.0969238,0.114624,0.182098,0.307129,0.454773,0.563385,0.614258,0.628601,0.60968,0.533173,0.413177,0.302704,0.208588,0.145844,0.159271,0.257385,0.390015,0.4841,0.523041,0.530273,0.490356,0.389221,0.235107,0.0312195,-0.197266,-0.408478,-0.545654,-0.593231,-0.593506,-0.569427,-0.525055,-0.478943,-0.461151,-0.474365,-0.502045,-0.539886,-0.60498,-0.682831,-0.731293,-0.728943,-0.678284,-0.593109,-0.480621,-0.357727,-0.252502,-0.17926,-0.120331,-0.0758972,-0.0640259,-0.1008,-0.153961,-0.166931,-0.106384,0.0201416,0.162415,0.281006,0.346252,0.378662,0.417267,0.466003,0.475647,0.397858,0.259338,0.136169,0.0751038,0.0839539,0.1633,0.296112,0.437073,0.53653,0.584442,0.606201,0.595581,0.533569,0.421234,0.297455,0.186981,0.128052,0.152557,0.260284,0.392426,0.484528,0.528473,0.538086,0.501831,0.405457,0.253357,0.0465088,-0.185638,-0.396332,-0.527863,-0.573029,-0.562897,-0.532104,-0.491486,-0.454987,-0.44101,-0.45459,-0.487732,-0.539764,-0.617523,-0.703369,-0.760162,-0.762695,-0.709076,-0.609222,-0.479156,-0.348206,-0.242279,-0.166107,-0.100342,-0.0467224,-0.0278625,-0.0740967,-0.166718,-0.228546,-0.191498,-0.0461731,0.132568,0.262482,0.327179,0.353638,0.404572,0.48645,0.534119,0.465576,0.292023,0.116577,0.0250244,0.0326843,0.111877,0.235718,0.376801,0.494843,0.569427,0.61084,0.622894,0.586182,0.483093,0.343903,0.214447,0.134491,0.140472,0.239136,0.379944,0.478882,0.521027,0.537262,0.529694,0.463837,0.322571,0.119324,-0.116516,-0.344635,-0.509552,-0.571106,-0.555389,-0.515259,-0.480682,-0.458862,-0.448822,-0.456512,-0.481628,-0.528015,-0.61438,-0.721436,-0.804535,-0.814941,-0.752441,-0.639496,-0.500153,-0.364777,-0.255859,-0.174042,-0.0942993,-0.01651,0.0167236,-0.0276489,-0.143097,-0.251617,-0.262421,-0.143951,0.0590515,0.232971,0.324829,0.352905,0.385529,0.468201,0.547668,0.538208,0.387115,0.169617,0.00476074,-0.0379333,0.0310059,0.155579,0.295837,0.418213,0.506317,0.565247,0.603455,0.611023,0.5513,0.424835,0.26825,0.140594,0.107666,0.188049,0.333984,0.460205,0.516937,0.532379,0.541565,0.524841,0.437744,0.271271,0.0414124,-0.21344,-0.423035,-0.531952,-0.530212,-0.481689,-0.449402,-0.447815,-0.460754,-0.46759,-0.476257,-0.503632,-0.58197,-0.701904,-0.810577,-0.848358,-0.799347,-0.695862,-0.563904,-0.42807,-0.31189,-0.225586,-0.146057,-0.0603333,-0.000946045,-0.0108643,-0.0983276,-0.216461,-0.29068,-0.256104,-0.101074,0.115112,0.289612,0.373901,0.397858,0.429535,0.50531,0.565399,0.518555,0.33725,0.105042,-0.0569153,-0.0730896,0.0334167,0.185303,0.323914,0.432159,0.526398,0.605133,0.650696,0.641632,0.551758,0.394165,0.216644,0.0906067,0.0773315,0.176239,0.320343,0.433289,0.493713,0.529358,0.556946,0.5466,0.45694,0.274567,0.0212708,-0.237793,-0.433716,-0.527802,-0.527679,-0.48941,-0.457275,-0.455048,-0.469757,-0.471832,-0.466797,-0.489807,-0.578674,-0.707214,-0.808075,-0.83313,-0.776611,-0.667419,-0.533295,-0.406647,-0.306793,-0.228058,-0.150482,-0.0681152,-0.0158386,-0.0263062,-0.105316,-0.221222,-0.300415,-0.260956,-0.0930786,0.129669,0.297668,0.372833,0.396118,0.43103,0.503052,0.554504,0.50177,0.318329,0.0914001,-0.0594788,-0.0681152,0.0396118,0.188385,0.328278,0.442291,0.538605,0.614258,0.655853,0.640289,0.544189,0.377869,0.193634,0.0631714,0.0441589,0.137268,0.288055,0.426941,0.507721,0.552246,0.580811,0.570435,0.481689,0.297729,0.0463867,-0.217133,-0.427948,-0.53949,-0.543365,-0.489471,-0.444702,-0.438934,-0.453766,-0.460297,-0.455933,-0.476654,-0.55249,-0.674438,-0.786682,-0.832123,-0.789429,-0.68158,-0.551239,-0.427734,-0.326172,-0.241486,-0.160553,-0.0810852,-0.0195923,-0.0102539,-0.0655823,-0.159332,-0.246399,-0.257721,-0.151764,0.04422,0.244629,0.364838,0.404053,0.4133,0.452087,0.508392,0.513855,0.399872,0.190826,-0.00100708,-0.0741577,-0.00939941,0.132233,0.276245,0.3974,0.498749,0.582764,0.629761,0.616394,0.533966,0.396118,0.229218,0.081604,0.0101929,0.0554504,0.193817,0.36734,0.506195,0.577728,0.596405,0.575867,0.51358,0.381226,0.169067,-0.100067,-0.358276,-0.524902,-0.564789,-0.505524,-0.431213,-0.396057,-0.401276,-0.416656,-0.422485,-0.436401,-0.490295,-0.595734,-0.722992,-0.815063,-0.830353,-0.761444,-0.639893,-0.502228,-0.370544,-0.267456,-0.189484,-0.120605,-0.0467224,0.00442505,-0.00161743,-0.065979,-0.160126,-0.238007,-0.229523,-0.104218,0.0960999,0.280151,0.381622,0.414703,0.429962,0.468994,0.519073,0.51062,0.39035,0.181885,0,-0.0594788,0.0115356,0.153503,0.286987,0.396332,0.477875,0.535126,0.564789,0.548615,0.476593,0.34317,0.177979,0.0352478,-0.0201416,0.0477905,0.206573,0.387939,0.512634,0.55896,0.557678,0.530548,0.468994,0.334717,0.111267,-0.161011,-0.401154,-0.530212,-0.530487,-0.44928,-0.36499,-0.328796,-0.339417,-0.368347,-0.392365,-0.421906,-0.482635,-0.595856,-0.730621,-0.827271,-0.837341,-0.752899,-0.609741,-0.453033,-0.320679,-0.228882,-0.164581,-0.103088,-0.0308838,0.0152283,0.00463867,-0.0608826,-0.152222,-0.22403,-0.228455,-0.125183,0.0618896,0.255249,0.382294,0.43808,0.4617,0.491974,0.532166,0.531555,0.426605,0.221161,0.0133667,-0.0837708,-0.0383911,0.0910645,0.221497,0.329285,0.419342,0.488007,0.52948,0.527466,0.467804,0.346802,0.184845,0.0311279,-0.0517578,-0.0166321,0.127869,0.314911,0.462158,0.526917,0.535736,0.519806,0.470947,0.35498,0.151215,-0.103485,-0.3349,-0.46759,-0.48465,-0.416779,-0.332092,-0.286102,-0.290405,-0.325928,-0.363495,-0.405792,-0.474304,-0.583038,-0.709747,-0.80545,-0.827606,-0.753448,-0.613037,-0.453918,-0.317596,-0.22821,-0.169281,-0.114777,-0.0516052,-0.000335693,0.0088501,-0.0307922,-0.101746,-0.168335,-0.20108,-0.152283,0.00241089,0.21579,0.400543,0.491425,0.511078,0.508209,0.523438,0.533966,0.47821,0.317871,0.0855713,-0.0971069,-0.131958,-0.0265808,0.124634,0.245514,0.335724,0.410278,0.463989,0.482574,0.453979,0.366241,0.20993,0.0265198,-0.112488,-0.14328,-0.0534363,0.125977,0.326508,0.470215,0.52243,0.51297,0.474457,0.406799,0.276917,0.0794678,-0.149658,-0.340088,-0.433716,-0.416718,-0.327728,-0.2388,-0.206848,-0.235046,-0.298615,-0.359009,-0.404175,-0.460144,-0.552765,-0.668335,-0.747192,-0.736816,-0.633972,-0.490295,-0.35083,-0.250824,-0.200684,-0.178589,-0.14328,-0.0740356,-0.00335693,0.016449,-0.024292,-0.0872498,-0.13028,-0.132812,-0.0620728,0.0874634,0.264038,0.390686,0.430359,0.429199,0.430542,0.449615,0.457947,0.396515,0.239349,0.0287781,-0.109741,-0.102814,0.0101929,0.13028,0.20874,0.276306,0.346191,0.39566,0.40741,0.374908,0.283234,0.13147,-0.0312805,-0.133972,-0.131409,-0.0236206,0.146637,0.324768,0.44458,0.4841,0.482361,0.462311,0.403442,0.27478,0.0810852,-0.128723,-0.295258,-0.375793,-0.359619,-0.277588,-0.209473,-0.203979,-0.243378,-0.288116,-0.320831,-0.353851,-0.408417,-0.493896,-0.595337,-0.667267,-0.666199,-0.584381,-0.468201,-0.366394,-0.290344,-0.236053,-0.179535,-0.101013,-0.000793457,0.0832214,0.106567,0.0734253,0.0176392,-0.0288696,-0.0624084,-0.0604858,0.0128174,0.141754,0.268066,0.343964,0.381622,0.411346,0.440887,0.451691,0.408203,0.27948,0.0812073,-0.100281,-0.176056,-0.137054,-0.0492554,0.0412903,0.136169,0.239014,0.31311,0.341156,0.328186,0.270355,0.1539,-0.00430298,-0.138,-0.191406,-0.140686,-0.00234985,0.180206,0.351685,0.463226,0.513031,0.515442,0.474518,0.374969,0.213165,0.0148926,-0.171875,-0.297058,-0.33136,-0.280945,-0.19162,-0.13147,-0.128265,-0.1604,-0.194489,-0.215363,-0.252838,-0.338348,-0.46759,-0.588806,-0.645599,-0.619415,-0.536316,-0.431946,-0.324829,-0.21759,-0.121063,-0.0342407,0.0422974,0.108398,0.140411,0.114899,0.0359192,-0.0532227,-0.123962,-0.165375,-0.144836,-0.0483093,0.0972595,0.246918,0.355652,0.420563,0.445465,0.434509,0.392426,0.299011,0.140076,-0.0667114,-0.230011,-0.283447,-0.225433,-0.102631,0.0401917,0.177521,0.281097,0.326599,0.317474,0.27652,0.195374,0.065918,-0.0910034,-0.219879,-0.263428,-0.186371,-0.00274658,0.222351,0.422302,0.536652,0.565918,0.533508,0.454712,0.332825,0.170135,-0.0128784,-0.177856,-0.272766,-0.276581,-0.201813,-0.0925598,-0.0112,0.0142822,-0.017395,-0.0767212,-0.151337,-0.239532,-0.346252,-0.462891,-0.554596,-0.592773,-0.553314,-0.448547,-0.309875,-0.172546,-0.0681763,-0.00793457,0.0171204,0.0305481,0.0477905,0.0499268,0.0174561,-0.049469,-0.11908,-0.164368,-0.174957,-0.132568,-0.0279236,0.11438,0.24295,0.305511,0.31311,0.298859,0.272369,0.234222,0.162811,0.0421448,-0.124634,-0.26123,-0.290802,-0.212433,-0.0851135,0.0272522,0.115967,0.178802,0.212677,0.209259,0.178741,0.117859,0.00979614,-0.122498,-0.229858,-0.250061,-0.155365,0.0359192,0.254242,0.432892,0.529205,0.547211,0.525238,0.4729,0.380066,0.242035,0.0822144,-0.0576477,-0.136841,-0.13269,-0.0542908,0.0553589,0.128998,0.126587,0.0618286,-0.0180664,-0.0888062,-0.162231,-0.253571,-0.361359,-0.450073,-0.484375,-0.451691,-0.368011,-0.273285,-0.187988,-0.124084,-0.0906677,-0.0822754,-0.07901,-0.0562439,-0.0310669,-0.0325623,-0.0605469,-0.0933533,-0.114044,-0.131561,-0.143829,-0.12262,-0.0620728,0.0162354,0.0920715,0.146851,0.180145,0.183838,0.174774,0.157715,0.110596,0.00582886,-0.142944,-0.250824,-0.28067,-0.238068,-0.147247,-0.041626,0.0548401,0.115448,0.142212,0.146057,0.133575,0.0818176,-0.0104675,-0.108337,-0.178864,-0.184509,-0.0907288,0.0927429,0.291809,0.44928,0.53714,0.567078,0.56189,0.508148,0.414978,0.291901,0.161407,0.0508118,-0.00140381,0.0162354,0.0784607,0.155029,0.196045,0.188385,0.131958,0.0536804,-0.0267029,-0.107666,-0.206909,-0.316986,-0.396118,-0.432281,-0.418121,-0.361755,-0.288116,-0.213684,-0.164246,-0.139801,-0.131073,-0.115234,-0.0928345,-0.0764465,-0.0773315,-0.0971069,-0.131348,-0.164917,-0.191956,-0.220886,-0.231079,-0.203644,-0.123077,-0.0120239,0.0747681,0.125977,0.15155,0.157104,0.144897,0.0999451,0.0118713,-0.126526,-0.261566,-0.336243,-0.325165,-0.242767,-0.131134,-0.0170593,0.0734863,0.123566,0.133026,0.125305,0.107574,0.0636292,-0.013092,-0.104309,-0.159943,-0.123352,0.0216064,0.228271,0.429749,0.561218,0.601624,0.596649,0.57196,0.52948,0.458069,0.35141,0.227203,0.128448,0.0926819,0.123627,0.19986,0.262421,0.265167,0.203033,0.108673,0.0244446,-0.0361633,-0.105316,-0.207581,-0.311951,-0.377808,-0.388123,-0.354584,-0.31076,-0.272552,-0.247528,-0.237671,-0.235992,-0.226929,-0.204102,-0.178406,-0.160278,-0.158386,-0.177856,-0.206177,-0.230133,-0.251953,-0.284424,-0.315979,-0.30304,-0.210083,-0.0690002,0.0453796,0.10202,0.120331,0.126984,0.122406,0.0901489,0.00189209,-0.148132,-0.305847,-0.388214,-0.353363,-0.229004,-0.0877991,0.0246887,0.110931,0.173035,0.205566,0.215363,0.199188,0.147308,0.0501404,-0.070343,-0.148651,-0.117462,0.0401917,0.256714,0.452637,0.573975,0.626007,0.649628,0.651428,0.619873,0.529602,0.390747,0.240814,0.126251,0.0795898,0.104095,0.175293,0.235046,0.241425,0.195496,0.140076,0.102081,0.0686646,0.00396729,-0.115906,-0.252411,-0.353363,-0.392639,-0.386597,-0.378479,-0.374237,-0.361816,-0.331482,-0.294159,-0.257111,-0.216248,-0.181549,-0.159943,-0.163086,-0.185364,-0.217194,-0.257324,-0.306976,-0.365906,-0.41217,-0.41156,-0.330536,-0.177734,-0.024292,0.0783386,0.125519,0.138672,0.133575,0.100464,0.0216675,-0.116791,-0.281555,-0.399078,-0.403564,-0.295654,-0.134033,0.0185242,0.14389,0.242767,0.299011,0.309265,0.275909,0.202209,0.0919495,-0.0369873,-0.128876,-0.131683,-0.0167847,0.177063,0.389801,0.573364,0.686859,0.734863,0.731689,0.682037,0.583923,0.442902,0.287384,0.157043,0.0873718,0.0899963,0.155701,0.243042,0.299072,0.296844,0.249878,0.184448,0.108856,0.0148926,-0.113037,-0.256378,-0.37204,-0.443115,-0.467407,-0.467743,-0.448273,-0.409943,-0.355591,-0.30658,-0.269196,-0.240936,-0.221405,-0.209534,-0.211273,-0.228119,-0.257782,-0.295258,-0.33432,-0.369873,-0.391296,-0.394379,-0.341217,-0.220001,-0.0599365,0.0745544,0.142944,0.15744,0.145172,0.119873,0.0706787,-0.0144348,-0.141754,-0.280334,-0.356323,-0.318481,-0.181549,-0.0241089,0.0928345,0.161224,0.205322,0.233215,0.237,0.211823,0.141815,0.0348206,-0.0827637,-0.153107,-0.131073,-0.0015564,0.199066,0.403442,0.570618,0.673645,0.718353,0.722839,0.682312,0.589203,0.442963,0.282684,0.155365,0.102631,0.125092,0.204041,0.299408,0.353027,0.34491,0.289001,0.215637,0.133484,0.0348206,-0.0913391,-0.247803,-0.389343,-0.470154,-0.474365,-0.444977,-0.427185,-0.427124,-0.421417,-0.392914,-0.347992,-0.297516,-0.261017,-0.24939,-0.25705,-0.272949,-0.287201,-0.294647,-0.304443,-0.331299,-0.365662,-0.386322,-0.364777,-0.270752,-0.112213,0.0592041,0.175171,0.220673,0.218597,0.192963,0.142548,0.049469,-0.0832214,-0.236786,-0.352234,-0.376373,-0.286255,-0.116638,0.053894,0.179657,0.252625,0.285248,0.280151,0.2341,0.149811,0.0387268,-0.0719604,-0.152161,-0.170807,-0.0917358,0.0877991,0.310089,0.504913,0.630829,0.689026,0.692047,0.654053,0.570007,0.445801,0.301422,0.183167,0.126587,0.137177,0.194489,0.278748,0.360199,0.397858,0.367676,0.28067,0.168518,0.0585938,-0.046051,-0.15625,-0.278198,-0.390289,-0.460358,-0.470154,-0.44693,-0.425507,-0.404724,-0.364502,-0.312958,-0.268188,-0.24411,-0.233826,-0.238403,-0.258606,-0.287445,-0.322021,-0.346649,-0.35553,-0.345856,-0.31955,-0.27948,-0.22934,-0.154236,-0.0485229,0.0620728,0.130066,0.132019,0.089386,0.0316162,-0.029541,-0.0908203,-0.15451,-0.215912,-0.262085,-0.259064,-0.185242,-0.0579834,0.0727539,0.159546,0.197845,0.211212,0.209259,0.187653,0.135162,0.0569153,-0.0302734,-0.0967102,-0.116516,-0.0596619,0.0827637,0.270355,0.457672,0.606323,0.690369,0.710907,0.681366,0.607605,0.500702,0.370941,0.246643,0.164429,0.144775,0.181549,0.258392,0.344574,0.398468,0.400543,0.360626,0.279205,0.168274,0.0340271,-0.121338,-0.282898,-0.431427,-0.535248,-0.564789,-0.536255,-0.489471,-0.434296,-0.365112,-0.29129,-0.229797,-0.204376,-0.217651,-0.261139,-0.320679,-0.381226,-0.428864,-0.45047,-0.449615,-0.42746,-0.374908,-0.298798,-0.22049,-0.137665,-0.0506592,0.0377808,0.101013,0.113281,0.0846252,0.0429688,0.00100708,-0.0379944,-0.0686035,-0.10022,-0.14209,-0.160339,-0.128387,-0.0462952,0.0554504,0.140808,0.188202,0.20047,0.194702,0.173309,0.139404,0.0773926,-0.00878906,-0.0879211,-0.121735,-0.0881958,0.0147705,0.17691,0.351349,0.507996,0.620026,0.669617,0.660767,0.605988,0.515442,0.402954,0.290283,0.207001,0.179138,0.217194,0.290741,0.370087,0.419067,0.425385,0.387939,0.308319,0.190216,0.0534363,-0.0842285,-0.231018,-0.366669,-0.452362,-0.467926,-0.434784,-0.395905,-0.372894,-0.353699,-0.328278,-0.304565,-0.297516,-0.32016,-0.36322,-0.402039,-0.423035,-0.428467,-0.419617,-0.387054,-0.335114,-0.286438,-0.249146,-0.2229,-0.194153,-0.149536,-0.0898132,-0.0279236,0.0173035,0.0344238,0.0346375,0.0390015,0.0365906,0.0266418,0.00408936,-0.0436401,-0.114227,-0.169403,-0.167267,-0.115723,-0.0340881,0.0399475,0.0922241,0.127045,0.154968,0.170807,0.161621,0.112427,0.0280457,-0.04953,-0.0782471,-0.0462341,0.0516052,0.201752,0.381012,0.554718,0.681488,0.733704,0.719757,0.668152,0.578796,0.456329,0.329956,0.233429,0.198334,0.229736,0.304901,0.387268,0.441772,0.449219,0.399078,0.303711,0.175049,0.025177,-0.131409,-0.285309,-0.425842,-0.52356,-0.556519,-0.536926,-0.491882,-0.446808,-0.412354,-0.38504,-0.368011,-0.370941,-0.388947,-0.414093,-0.437866,-0.448334,-0.440002,-0.415588,-0.371277,-0.308075,-0.242279,-0.182343,-0.131409,-0.0971985,-0.0663147,-0.028717,0.0189209,0.06604,0.101288,0.112885,0.103973,0.0839539,0.0625,0.0405273,-0.00296021,-0.070343,-0.133148,-0.150146,-0.115509,-0.0497437,0.0269165,0.0889282,0.135834,0.179871,0.200012,0.17337,0.0918884,-0.0177307,-0.10437,-0.144226,-0.13269,-0.0641785,0.074707,0.27121,0.479004,0.645447,0.733856,0.742188,0.678741,0.566467,0.420013,0.277466,0.176117,0.145508,0.188049,0.274841,0.379547,0.46814,0.511963,0.48761,0.3862,0.228394,0.0477295,-0.12558,-0.285187,-0.418274,-0.503571,-0.532562,-0.505035,-0.448334,-0.395233,-0.36734,-0.362701,-0.361481,-0.357666,-0.367249,-0.398407,-0.420624,-0.414307,-0.387726,-0.353973,-0.318481,-0.275726,-0.236389,-0.213348,-0.198181,-0.186646,-0.167053,-0.132477,-0.0842896,-0.0159607,0.0552979,0.106171,0.131226,0.13208,0.102478,0.0556946,0.00012207,-0.069458,-0.142883,-0.195312,-0.193298,-0.132141,-0.0310059,0.0700684,0.149658,0.216583,0.249146,0.237793,0.178741,0.0899963,-0.00146484,-0.069458,-0.0870361,-0.045166,0.0657654,0.239685,0.435791,0.612518,0.719421,0.743378,0.696259,0.607483,0.488342,0.351166,0.23288,0.156708,0.155365,0.215179,0.296265,0.364899,0.39975,0.397858,0.343628,0.241425,0.091156,-0.0814819,-0.242432,-0.378601,-0.479675,-0.542297,-0.563507,-0.54425,-0.497406,-0.44397,-0.403625,-0.371765,-0.347931,-0.332886,-0.335571,-0.364502,-0.402039,-0.421906,-0.413086,-0.384857,-0.350677,-0.313568,-0.264374,-0.189728,-0.0959778,-0.0169678,0.03302,0.0533447,0.057312,0.0646973,0.0821533,0.0920715,0.0808716,0.0514832,0.0175171,-0.000335693,0.00637817,0.0159607,0.00744629,-0.00900269,-0.0190735,-0.00738525,0.0365906,0.100616,0.155121,0.179535,0.170135,0.131226,0.0812073,0.0361023,-0.00390625,-0.0224304,-0.00531006,0.0396118,0.119659,0.240814,0.392303,0.531769,0.611847,0.608734,0.536316,0.444977,0.354767,0.278809,0.22168,0.182098,0.17807,0.214569,0.275787,0.3349,0.368347,0.353516,0.282349,0.161682,0.00772095,-0.146973,-0.273895,-0.360809,-0.420685,-0.470001,-0.495575,-0.490295,-0.450623,-0.4021,-0.370941,-0.362152,-0.368195,-0.370087,-0.37204,-0.375732,-0.370422,-0.354187,-0.328735,-0.306793,-0.278748,-0.232758,-0.170471,-0.105713,-0.0514221,-0.0114136,0.0159607,0.0323486,0.0517578,0.0763855,0.104828,0.118591,0.122559,0.115509,0.101135,0.0947571,0.0908203,0.0823669,0.0567932,0.0235596,0.00308228,0.00369263,0.0281067,0.0585327,0.0830994,0.0908813,0.0865784,0.0737,0.0426941,0.00213623,-0.0444946,-0.0720825,-0.0675964,-0.0409546,0.00967407,0.094574,0.220337,0.357941,0.465851,0.508545,0.484589,0.428955,0.353699,0.264923,0.187653,0.136261,0.13443,0.184509,0.262085,0.337921,0.390137,0.402222,0.360809,0.264709,0.12027,-0.0446472,-0.196045,-0.315125,-0.395996,-0.450134,-0.468811,-0.441223,-0.377991,-0.309814,-0.265503,-0.247192,-0.255432,-0.280762,-0.314301,-0.35318,-0.386383,-0.403625,-0.387543,-0.342773,-0.286316,-0.222687,-0.139343,-0.041748,0.0312195,0.0645752,0.0663147,0.0526733,0.0346985,0.0271912,0.0403442,0.057312,0.0771179,0.102081,0.121826,0.139801,0.151886,0.141541,0.10498,0.0438843,-0.0267029,-0.0875854,-0.116119,-0.105835,-0.0626221,0.000213623,0.0524292,0.0845032,0.0898743,0.0657043,0.0159607,-0.0497437,-0.107727,-0.14859,-0.155365,-0.101746,0.0202637,0.190887,0.358948,0.481018,0.531036,0.519226,0.463226,0.373901,0.268738,0.172424,0.107849,0.101196,0.15451,0.238922,0.326599,0.393158,0.402283,0.35141,0.251892,0.11087,-0.0425415,-0.179413,-0.288055,-0.365326,-0.400085,-0.385529,-0.33667,-0.271881,-0.227386,-0.218384,-0.229523,-0.251221,-0.275391,-0.304443,-0.338593,-0.366791,-0.364838,-0.323364,-0.258331,-0.187469,-0.126648,-0.0758972,-0.0353699,-0.0116882,-0.0114136,-0.0299988,-0.049469,-0.0638428,-0.0646973,-0.0306091,0.0209351,0.0750427,0.117126,0.138672,0.134766,0.117798,0.0840149,0.0306702,-0.0358276,-0.102203,-0.150208,-0.151672,-0.0977173,-0.016449,0.0622864,0.113098,0.138672,0.13028,0.0861206,0.0228271,-0.0396118,-0.0861816,-0.11142,-0.100006,-0.0383301,0.0874634,0.255646,0.404449,0.489349,0.491974,0.432709,0.349274,0.263245,0.179138,0.109528,0.0758972,0.0936279,0.164764,0.255371,0.330017,0.370758,0.360199,0.296265,0.186127,0.0457764,-0.0997925,-0.218536,-0.292297,-0.326263,-0.328857,-0.30014,-0.251221,-0.197784,-0.163147,-0.15921,-0.183441,-0.217987,-0.249542,-0.283508,-0.314178,-0.331818,-0.315033,-0.259796,-0.184906,-0.115845,-0.061676,-0.0162354,0.0113525,0.0180664,0.0020752,-0.0310669,-0.0693359,-0.10321,-0.114716,-0.0871277,-0.0297241,0.0422058,0.105438,0.138184,0.135254,0.114716,0.0792542,0.0190735,-0.061676,-0.144562,-0.206512,-0.225922,-0.189209,-0.104034,0.00289917,0.0956421,0.141693,0.136505,0.0875244,0.0148315,-0.061615,-0.118591,-0.155457,-0.159546,-0.107391,0.0166321,0.19342,0.369019,0.488861,0.525574,0.497742,0.430634,0.343506,0.247864,0.158325,0.104767,0.110077,0.170532,0.255371,0.340149,0.390961,0.385773,0.325928,0.22403,0.0969849,-0.0354919,-0.153839,-0.248871,-0.312897,-0.337677,-0.315918,-0.266998,-0.214233,-0.184174,-0.184692,-0.210266,-0.236176,-0.255096,-0.281342,-0.314575,-0.33255,-0.310944,-0.259674,-0.199341,-0.143555,-0.0997925,-0.0636902,-0.0371094,-0.0245667,-0.0264587,-0.0401917,-0.0567932,-0.0661011,-0.0524902,-0.00369263,0.0643616,0.12854,0.171631,0.182831,0.15979,0.118927,0.0641785,-0.00616455,-0.0895386,-0.166168,-0.200195,-0.185791,-0.131012,-0.0557861,0.0326843,0.0986633,0.116974,0.0817566,0.00592041,-0.0806885,-0.162628,-0.215179,-0.23053,-0.205719,-0.128448,0.00302124,0.174835,0.339264,0.449402,0.480743,0.44632,0.375854,0.284912,0.187927,0.111877,0.0761719,0.0963745,0.158661,0.238525,0.318054,0.378998,0.394257,0.348602,0.264923,0.153351,0.036438,-0.0585938,-0.132904,-0.183685,-0.21109,-0.218597,-0.203217,-0.171082,-0.149139,-0.163422,-0.196503,-0.231476,-0.255188,-0.263977,-0.272766,-0.281769,-0.27652,-0.247711,-0.210754,-0.173981,-0.143158,-0.130005,-0.126526,-0.11731,-0.103088,-0.0875244,-0.0706787,-0.0558472,-0.0421448,-0.0101929,0.0469666,0.110077,0.165436,0.184448,0.153107,0.0973206,0.0505371,0.0185852,-0.0168457,-0.0673828,-0.118591,-0.140869,-0.115723,-0.0448914,0.0507507,0.130402,0.16095,0.131012,0.0592651,-0.0233459,-0.107117,-0.179871,-0.228394,-0.244049,-0.21228,-0.119324,0.0369263,0.21344,0.348999,0.404907,0.381073,0.312164,0.216858,0.112885,0.0177307,-0.0396118,-0.0499878,-0.00967407,0.0870361,0.21814,0.350555,0.441101,0.451569,0.387207,0.279755,0.157532,0.0341492,-0.0727539,-0.1586,-0.215576,-0.22879,-0.190735,-0.116913,-0.0461121,-0.0142212,-0.0290527,-0.0663757,-0.107391,-0.1474,-0.193695,-0.241272,-0.27182,-0.273834,-0.245117,-0.195709,-0.139679,-0.0883179,-0.0536194,-0.0307312,-0.0151672,-0.00558472,-0.0175171,-0.0444946,-0.0698547,-0.0793457,-0.0589905,-0.0065918,0.0578003,0.108185,0.12442,0.104095,0.0654297,0.0262451,-0.0194702,-0.085907,-0.156433,-0.204498,-0.208679,-0.167725,-0.0947571,-0.00918579,0.0552368,0.0761108,0.0387878,-0.0413513,-0.124847,-0.188599,-0.225311,-0.234222,-0.206665,-0.130554,-0.0140991,0.130341,0.265381,0.354584,0.373169,0.329468,0.261292,0.190277,0.129333,0.0872498,0.0774536,0.110596,0.184235,0.283905,0.38089,0.439087,0.438324,0.377045,0.280945,0.177856,0.0841675,-0.00717163,-0.0889282,-0.151886,-0.182098,-0.17276,-0.139801,-0.107239,-0.0994568,-0.122559,-0.155182,-0.182007,-0.197784,-0.20752,-0.220062,-0.229462,-0.225922,-0.206665,-0.178986,-0.144714,-0.105438,-0.0721436,-0.0516052,-0.0381775,-0.0247803,-0.00726318,0.0109253,0.0166321,0.0103455,0.00866699,0.0220947,0.049408,0.0814209,0.0960388,0.0760498,0.0284424,-0.0169067,-0.0435486,-0.0657043,-0.103699,-0.160217,-0.201813,-0.207397,-0.175629,-0.115295,-0.0467224,-0.00576782,-0.0179138,-0.0701294,-0.132233,-0.177795,-0.205444,-0.223755,-0.227661,-0.197662,-0.126373,-0.0177917,0.12149,0.261627,0.355103,0.375793,0.339142,0.28653,0.237396,0.191223,0.145294,0.114777,0.126099,0.190216,0.289459,0.387604,0.451569,0.460541,0.421295,0.350067,0.260406,0.163818,0.0635681,-0.0273132,-0.0996704,-0.144775,-0.156982,-0.136993,-0.101135,-0.0726929,-0.0761108,-0.113708,-0.16156,-0.19101,-0.200134,-0.207336,-0.22464,-0.24115,-0.241699,-0.226105,-0.202423,-0.177582,-0.156525,-0.141479,-0.126099,-0.113159,-0.104034,-0.104553,-0.109344,-0.104492,-0.0775146,-0.029541,0.0179749,0.0475769,0.0558472,0.0422058,0.0183105,-0.00616455,-0.025177,-0.0475769,-0.0870361,-0.130402,-0.146179,-0.119202,-0.0562439,0.0183105,0.0767212,0.0968628,0.0677795,0.0020752,-0.0713501,-0.135162,-0.176514,-0.197113,-0.197723,-0.162292,-0.0757141,0.0492554,0.184631,0.291412,0.339142,0.3302,0.28418,0.221741,0.155853,0.0918884,0.0512085,0.0503235,0.101746,0.198944,0.308533,0.3992,0.444977,0.444305,0.393921,0.311218,0.221283,0.128265,0.0361633,-0.0462341,-0.105438,-0.12677,-0.106506,-0.0673218,-0.0430298,-0.0441589,-0.0734863,-0.111145,-0.144897,-0.169342,-0.191742,-0.220215,-0.244293,-0.250214,-0.233307,-0.205841,-0.187256,-0.177063,-0.162415,-0.140259,-0.122955,-0.120544,-0.122681,-0.129608,-0.132355,-0.119263,-0.085907,-0.0361023,0.0157166,0.0505371,0.0521545,0.0237732,-0.0128784,-0.0397949,-0.0561218,-0.0854492,-0.134369,-0.174957,-0.177856,-0.133698,-0.0579834,0.0263672,0.0873108,0.0977783,0.06073,-0.011261,-0.0885925,-0.145905,-0.177185,-0.186035,-0.168518,-0.114777,-0.01651,0.123291,0.273895,0.382629,0.421234,0.392761,0.326324,0.252686,0.179138,0.112549,0.0692749,0.073822,0.134644,0.237,0.348602,0.431549,0.461304,0.43631,0.363647,0.262146,0.15329,0.0420227,-0.0704651,-0.170013,-0.227539,-0.228119,-0.183838,-0.123169,-0.0720215,-0.0515442,-0.0636292,-0.0848389,-0.109467,-0.135437,-0.171417,-0.214233,-0.251617,-0.269745,-0.259125,-0.227386,-0.182556,-0.133575,-0.089386,-0.0583801,-0.0469666,-0.053772,-0.0726318,-0.0939026,-0.107239,-0.100067,-0.0698547,-0.0345764,-0.0017395,0.0245667,0.0297241,0.012085,-0.0170593,-0.0487976,-0.0892639,-0.147858,-0.204559,-0.230072,-0.201874,-0.130615,-0.0383911,0.04422,0.0869751,0.0743103,0.0136108,-0.0644836,-0.132019,-0.177917,-0.202148,-0.198669,-0.147858,-0.0411987,0.109406,0.270477,0.39624,0.45163,0.429016,0.35611,0.265503,0.173309,0.0934143,0.0426331,0.0453796,0.114563,0.233429,0.358063,0.448059,0.481018,0.457611,0.384521,0.275177,0.148987,0.0317993,-0.0646362,-0.140411,-0.184448,-0.184509,-0.141083,-0.0800171,-0.0303955,-0.0179138,-0.0418091,-0.0863647,-0.132019,-0.171753,-0.207581,-0.235321,-0.246918,-0.238068,-0.216858,-0.190674,-0.164764,-0.132629,-0.0991211,-0.07901,-0.0758972,-0.0891418,-0.113892,-0.136108,-0.14093,-0.120331,-0.0753174,-0.0216675,0.0198059,0.0357666,0.0296021,0.00610352,-0.0257874,-0.0556335,-0.0899963,-0.144379,-0.204224,-0.238922,-0.217926,-0.145905,-0.0419617,0.0556946,0.108124,0.10376,0.0434875,-0.0424805,-0.123901,-0.186188,-0.226318,-0.238007,-0.202972,-0.110931,0.0317993,0.199738,0.34671,0.436462,0.447052,0.396393,0.313507,0.221893,0.129395,0.0583801,0.0377197,0.0771179,0.177795,0.307465,0.425171,0.494781,0.502441,0.452423,0.362762,0.252563,0.134308,0.0120239,-0.102478,-0.190613,-0.223236,-0.194763,-0.128662,-0.0608826,-0.0197449,-0.0196533,-0.0476379,-0.085907,-0.126984,-0.172821,-0.225098,-0.273773,-0.304901,-0.30954,-0.282776,-0.230469,-0.164703,-0.106323,-0.0661621,-0.0474548,-0.0487366,-0.0688477,-0.102692,-0.12793,-0.128998,-0.103363,-0.0558472,-0.00146484,0.046051,0.0643616,0.0512695,0.0163879,-0.0171814,-0.0526733,-0.105164,-0.175385,-0.225372,-0.225311,-0.172546,-0.0892639,0.00308228,0.0690613,0.0830994,0.0367737,-0.0455017,-0.130798,-0.200409,-0.246857,-0.264984,-0.228546,-0.136932,-0.00582886,0.147461,0.294922,0.402283,0.436066,0.393646,0.308472,0.212433,0.129883,0.0656433,0.0404663,0.0740356,0.164032,0.295715,0.427521,0.514984,0.530609,0.483032,0.394104,0.285522,0.166718,0.0492554,-0.0555725,-0.136505,-0.176056,-0.161407,-0.108856,-0.0477905,-0.00906372,-0.00692749,-0.0376587,-0.082428,-0.134918,-0.19101,-0.246979,-0.289124,-0.309479,-0.306793,-0.283905,-0.243225,-0.190826,-0.134155,-0.0927429,-0.0718079,-0.0673218,-0.0751648,-0.103302,-0.139008,-0.152283,-0.130127,-0.0747681,-0.00665283,0.053009,0.07901,0.0680542,0.0420837,0.0150452,-0.00845337,-0.0482483,-0.109589,-0.167725,-0.188324,-0.155701,-0.0842285,0.00738525,0.0849609,0.115631,0.0888062,0.00631714,-0.0903931,-0.171356,-0.216705,-0.232758,-0.227539,-0.18866,-0.104095,0.0252991,0.173157,0.297607,0.360077,0.346863,0.27774,0.185516,0.0977173,0.0350952,0.00424194,0.0151672,0.0755615,0.18512,0.315521,0.431549,0.498413,0.503174,0.448334,0.351837,0.23819,0.131683,0.0423584,-0.0363159,-0.0952454,-0.112274,-0.0760498,-0.00610352,0.0569153,0.0775757,0.0524292,-0.00357056,-0.070282,-0.131622,-0.187042,-0.240692,-0.285706,-0.306915,-0.301697,-0.269806,-0.220612,-0.171417,-0.138397,-0.127258,-0.133423,-0.150818,-0.180664,-0.21283,-0.22879,-0.215363,-0.172211,-0.103699,-0.0297852,0.0245056,0.0418701,0.0289307,0.00262451,-0.0152893,-0.0326843,-0.0677185,-0.117249,-0.148926,-0.138519,-0.0791931,0.0151062,0.11261,0.175842,0.176971,0.120544,0.0280457,-0.0599365,-0.115784,-0.145508,-0.163971,-0.157654,-0.10968,-0.0163879,0.113953,0.243103,0.334381,0.35968,0.316864,0.229462,0.138458,0.0668335,0.0108032,-0.0172424,0.000213623,0.0717468,0.182007,0.298462,0.389557,0.430878,0.421143,0.355713,0.259949,0.162231,0.074707,-0.00827026,-0.0883789,-0.140259,-0.139465,-0.0896606,-0.019989,0.0326843,0.049469,0.0267029,-0.0233459,-0.0818787,-0.122742,-0.147919,-0.178925,-0.221283,-0.253906,-0.261963,-0.240479,-0.201965,-0.164703,-0.139587,-0.137177,-0.144562,-0.161133,-0.180878,-0.191833,-0.185516,-0.160553,-0.118866,-0.070282,-0.0290527,-0.00958252,-0.0133667,-0.037262,-0.0612793,-0.0745544,-0.0926208,-0.12323,-0.145233,-0.140015,-0.100739,-0.0265198,0.0649719,0.14209,0.174713,0.146637,0.0720825,-0.0142822,-0.0786743,-0.110077,-0.121063,-0.114716,-0.0737,0.00772095,0.127106,0.258789,0.360199,0.404633,0.387726,0.324768,0.238525,0.151825,0.0718689,0.0108032,-0.00637817,0.0281982,0.119873,0.238342,0.343445,0.402954,0.40564,0.360809,0.276245,0.175781,0.0724182,-0.0309448,-0.13028,-0.209259,-0.231964,-0.18927,-0.108856,-0.0322876,0.00408936,-0.000610352,-0.0323486,-0.0751648,-0.11972,-0.162354,-0.206329,-0.250153,-0.275787,-0.280762,-0.259888,-0.210999,-0.156769,-0.120392,-0.10907,-0.115723,-0.131958,-0.150208,-0.161957,-0.16275,-0.13974,-0.0948486,-0.0414734,0.00894165,0.0343018,0.028595,-0.00509644,-0.0413513,-0.0604858,-0.0849609,-0.127655,-0.161011,-0.160889,-0.110077,-0.0212097,0.0833435,0.169861,0.205109,0.175049,0.0908813,-0.00717163,-0.0885925,-0.143158,-0.168732,-0.163361,-0.112701,-0.0159607,0.124908,0.279541,0.407135,0.465332,0.437927,0.350067,0.238739,0.12912,0.0304565,-0.0418091,-0.0599365,-0.00985718,0.104492,0.249664,0.375061,0.444519,0.443024,0.375183,0.267792,0.149078,0.0260315,-0.0959167,-0.210938,-0.284363,-0.284119,-0.207672,-0.0997925,-0.00933838,0.0343628,0.0261841,-0.0125427,-0.0649109,-0.116394,-0.163361,-0.212006,-0.255371,-0.274109,-0.259064,-0.21814,-0.163025,-0.105316,-0.0655823,-0.0609436,-0.0821533,-0.113159,-0.133301,-0.139008,-0.126984,-0.0990601,-0.0531006,-0.00167847,0.032959,0.0405273,0.0200806,-0.0177307,-0.0589294,-0.0897217,-0.130066,-0.177124,-0.19812,-0.171814,-0.0934143,0.00933838,0.10321,0.15686,0.157532,0.10321,0.0105896,-0.0838318,-0.161346,-0.213837,-0.228729,-0.194824,-0.106659,0.028595,0.193756,0.35022,0.452484,0.469818,0.410553,0.304779,0.186035,0.0821533,-0.00665283,-0.0545044,-0.0383911,0.0478516,0.190216,0.350891,0.473694,0.519958,0.481506,0.376587,0.2435,0.109253,-0.0212097,-0.145111,-0.245117,-0.29007,-0.260406,-0.16571,-0.0541077,0.027771,0.053772,0.0230103,-0.0369873,-0.101349,-0.155579,-0.210693,-0.269592,-0.3125,-0.318604,-0.287048,-0.223694,-0.147308,-0.0870361,-0.0614929,-0.0720215,-0.100342,-0.119263,-0.121552,-0.113281,-0.0949097,-0.0608826,-0.0126038,0.0350342,0.0724182,0.0851135,0.0622864,0.0146179,-0.0401306,-0.0908203,-0.135162,-0.167114,-0.166168,-0.123291,-0.0369263,0.0644836,0.136993,0.161469,0.136444,0.0567017,-0.049408,-0.153564,-0.236389,-0.284576,-0.282166,-0.217926,-0.0996094,0.0625,0.230011,0.364227,0.430145,0.414856,0.326385,0.199677,0.0737,-0.0238953,-0.078064,-0.0711365,-0.00363159,0.127777,0.301636,0.463837,0.559631,0.563171,0.476807,0.336517,0.182281,0.0302734,-0.106567,-0.208344,-0.261292,-0.24295,-0.154297,-0.0350952,0.0618286,0.114563,0.112091,0.0541077,-0.0381165,-0.134644,-0.214233,-0.275513,-0.316986,-0.332367,-0.313019,-0.253754,-0.169952,-0.0935059,-0.0522766,-0.0578003,-0.0913391,-0.127319,-0.1521,-0.16391,-0.158875,-0.12973,-0.0791321,-0.0173035,0.036499,0.0699463,0.0780029,0.0555115,0.0134277,-0.0434875,-0.109131,-0.163239,-0.179932,-0.151672,-0.0818787,0.0161743,0.106171,0.161072,0.168671,0.12207,0.0300598,-0.0753174,-0.171295,-0.2453,-0.283691,-0.263428,-0.174042,-0.024292,0.15564,0.313568,0.413025,0.430481,0.367584,0.249878,0.11853,0.000671387,-0.0885925,-0.121002,-0.0834961,0.0247803,0.188599,0.363831,0.495117,0.542694,0.502716,0.390564,0.248718,0.101135,-0.0396729,-0.160004,-0.2341,-0.234711,-0.16275,-0.0455017,0.0663147,0.137726,0.156769,0.125977,0.0502014,-0.0450439,-0.137268,-0.221832,-0.289001,-0.325836,-0.318817,-0.268738,-0.192902,-0.116058,-0.0663147,-0.0594788,-0.0908813,-0.138397,-0.181549,-0.207184,-0.216309,-0.202484,-0.163361,-0.104156,-0.0444336,0.0071106,0.0463867,0.0506592,0.0247803,-0.0281982,-0.0970459,-0.165833,-0.204651,-0.194763,-0.132294,-0.0293274,0.0783997,0.155975,0.194366,0.186707,0.124298,0.0271301,-0.0714722,-0.158112,-0.217468,-0.227722,-0.1763,-0.0584717,0.111877,0.28537,0.406738,0.453156,0.423584,0.325043,0.189941,0.0535583,-0.0549011,-0.106567,-0.0964355,-0.0261841,0.106506,0.281433,0.43512,0.522156,0.516113,0.420471,0.279541,0.124237,-0.0228882,-0.14505,-0.229462,-0.256042,-0.206238,-0.0894775,0.0397949,0.132019,0.161072,0.130402,0.0571899,-0.0353699,-0.13324,-0.229401,-0.304169,-0.342224,-0.339935,-0.291351,-0.212769,-0.129211,-0.0708008,-0.0589905,-0.0979309,-0.167175,-0.227112,-0.26236,-0.263763,-0.236511,-0.194153,-0.137665,-0.0684509,0.0017395,0.0480652,0.0535583,0.0238953,-0.0267944,-0.0962524,-0.167389,-0.210999,-0.201813,-0.128387,-0.0142822,0.101746,0.189056,0.237,0.233368,0.18277,0.099884,-0.00415039,-0.114777,-0.195099,-0.213837,-0.158936,-0.0355835,0.132233,0.304779,0.444458,0.515381,0.500763,0.410217,0.27182,0.116852,-0.0228882,-0.108673,-0.122559,-0.04953,0.0965881,0.269928,0.415649,0.497864,0.496521,0.411438,0.270264,0.102478,-0.0727539,-0.227936,-0.333099,-0.353363,-0.282623,-0.154449,-0.0246887,0.0682678,0.111206,0.102203,0.0458374,-0.0424805,-0.143433,-0.240753,-0.320221,-0.370209,-0.370605,-0.312225,-0.218719,-0.122955,-0.0595398,-0.0523376,-0.0864563,-0.133026,-0.168335,-0.183624,-0.177246,-0.165649,-0.147522,-0.108856,-0.0513306,0.00616455,0.0381165,0.0363159,0.0088501,-0.0471191,-0.11438,-0.171539,-0.191742,-0.161682,-0.0883179,0.0020752,0.0855713,0.154694,0.191406,0.183105,0.137451,0.0576477,-0.04422,-0.141266,-0.189056,-0.164978,-0.0698547,0.0776672,0.243042,0.399597,0.516205,0.563507,0.526855,0.414764,0.258728,0.0962524,-0.0326843,-0.104034,-0.0895996,0.0192566,0.187592,0.356995,0.475647,0.51767,0.477264,0.36673,0.197784,-0.00241089,-0.200958,-0.363159,-0.446594,-0.419281,-0.301147,-0.146973,-0.0151672,0.0686035,0.0971985,0.0750427,0.00457764,-0.0984497,-0.214355,-0.329132,-0.417542,-0.451904,-0.414642,-0.318817,-0.197723,-0.0921631,-0.036377,-0.0358276,-0.0612793,-0.0881958,-0.108521,-0.124023,-0.140198,-0.15094,-0.136108,-0.0992737,-0.0449829,0.00637817,0.0357666,0.0371704,0.00497437,-0.0467834,-0.0967102,-0.12207,-0.11026,-0.0679932,-0.0105286,0.045105,0.0975952,0.134583,0.14328,0.127106,0.081604,0.00296021,-0.0856934,-0.138672,-0.124573,-0.0445557,0.0782471,0.21228,0.342102,0.448212,0.50412,0.491699,0.415192,0.290894,0.143036,0.0162354,-0.0584717,-0.04953,0.0383911,0.174438,0.317596,0.431366,0.483643,0.456116,0.359131,0.21048,0.0261841,-0.167603,-0.336578,-0.427612,-0.414032,-0.319,-0.189941,-0.0687866,0.0194702,0.0649719,0.062561,0.0102539,-0.0819397,-0.200287,-0.322754,-0.422638,-0.469421,-0.452637,-0.386597,-0.289459,-0.186798,-0.111877,-0.0726929,-0.0555725,-0.0457153,-0.0354309,-0.0421448,-0.0779114,-0.120331,-0.140594,-0.128937,-0.0959778,-0.0545044,-0.0143738,0.0109253,0.0157166,0.00985718,0.00296021,0.0115967,0.0355835,0.0562439,0.0672607,0.0675049,0.0625,0.0566406,0.0569153,0.0579834,0.0402832,-0.00759888,-0.0516052,-0.0544434,-0.00515747,0.0821533,0.17807,0.264648,0.334106,0.377991,0.389557,0.360687,0.292023,0.195251,0.0984497,0.0293884,0.00683594,0.0512085,0.148804,0.265656,0.363892,0.41571,0.412231,0.364502,0.269135,0.125244,-0.0458374,-0.214233,-0.336914,-0.375641,-0.330872,-0.238922,-0.143158,-0.0648193,-0.012146,0.0145569,0.00726318,-0.0397339,-0.131348,-0.250671,-0.37027,-0.457611,-0.489288,-0.463715,-0.395782,-0.312683,-0.243103,-0.186371,-0.125977,-0.0564575,0.0107422,0.0452271,0.0180664,-0.050415,-0.113281,-0.145447,-0.146912,-0.124298,-0.0934143,-0.0569763,-0.0189819,0.0266418,0.0771179,0.131805,0.181488,0.204437,0.190613,0.140686,0.0776672,0.0370483,0.0224915,0.0152893,-0.00106812,-0.025116,-0.0358276,-0.00268555,0.0736389,0.167328,0.249542,0.300751,0.330627,0.344299,0.329742,0.275574,0.193024,0.108917,0.0401917,0.0032959,0.00958252,0.0748291,0.184631,0.299133,0.372955,0.387787,0.35498,0.285187,0.179993,0.0484619,-0.100952,-0.240692,-0.327942,-0.334167,-0.269684,-0.1745,-0.0932312,-0.0424805,-0.0161133,-0.0120239,-0.0340881,-0.0826111,-0.152771,-0.242279,-0.331024,-0.396332,-0.421234,-0.399414,-0.346039,-0.293579,-0.262238,-0.234222,-0.185913,-0.106384,-0.0183105,0.0322266,0.0201416,-0.028656,-0.0774536,-0.109741,-0.123901,-0.131561,-0.140747,-0.138336,-0.108459,-0.0515442,0.0297852,0.130219,0.217316,0.262695,0.252228,0.197662,0.129944,0.0743713,0.0357056,-0.00161743,-0.0488586,-0.08255,-0.0640869,0.0223389,0.152893,0.287323,0.38443,0.435242,0.445038,0.42215,0.358459,0.259888,0.144165,0.0354919,-0.0420837,-0.0618286,-0.00509644,0.116394,0.258789,0.367462,0.417603,0.402618,0.336853,0.221893,0.0632935,-0.11618,-0.285187,-0.406067,-0.43808,-0.381836,-0.267181,-0.144714,-0.0536804,-0.00112915,0.0159607,-0.00860596,-0.0716248,-0.157654,-0.255188,-0.353302,-0.421814,-0.439331,-0.404388,-0.333435,-0.261139,-0.215027,-0.181488,-0.139404,-0.0863037,-0.024231,0.0213318,0.0224915,-0.0105286,-0.0455017,-0.0682678,-0.0769043,-0.081604,-0.0958557,-0.111755,-0.105499,-0.0716248,-0.0148315,0.0657654,0.151001,0.216583,0.243774,0.218536,0.164978,0.11853,0.0794067,0.0275269,-0.0361633,-0.0884705,-0.0965881,-0.0432129,0.065033,0.202026,0.327057,0.419403,0.467865,0.475586,0.435059,0.336853,0.198059,0.0577087,-0.0433655,-0.0838928,-0.0589294,0.0367737,0.178528,0.320343,0.420624,0.454926,0.42215,0.324768,0.16449,-0.0362549,-0.239075,-0.398407,-0.472778,-0.45694,-0.367401,-0.241821,-0.122955,-0.0311279,0.0292664,0.0430908,0.00280762,-0.0880432,-0.214508,-0.34552,-0.446808,-0.502625,-0.50766,-0.456848,-0.376801,-0.294922,-0.208679,-0.110748,-0.00430298,0.0843506,0.111023,0.0699463,-0.00335693,-0.069397,-0.11908,-0.147461,-0.15625,-0.15564,-0.132477,-0.0834351,-0.0050354,0.0978699,0.205048,0.271545,0.283356,0.248596,0.178192,0.105774,0.0613403,0.0383911,0.0149536,-0.0187378,-0.0423584,-0.0268555,0.0565796,0.179993,0.283447,0.344849,0.376648,0.38913,0.382843,0.342102,0.265991,0.170532,0.0734253,-0.00448608,-0.0303955,0.00665283,0.0963745,0.208344,0.300812,0.353027,0.361481,0.328125,0.247986,0.124634,-0.0379333,-0.214294,-0.348816,-0.40271,-0.379822,-0.307861,-0.227264,-0.15799,-0.0972595,-0.0499268,-0.0322876,-0.0576477,-0.126312,-0.229736,-0.340546,-0.43161,-0.482361,-0.4841,-0.455322,-0.41687,-0.363098,-0.27243,-0.138458,0.00744629,0.115631,0.149994,0.112762,0.0346985,-0.0440979,-0.107513,-0.15799,-0.199738,-0.217712,-0.186584,-0.102631,0.0332947,0.194824,0.333099,0.404388,0.391815,0.299866,0.176636,0.0789185,0.0167236,-0.0354919,-0.081543,-0.098999,-0.0549622,0.0665894,0.230957,0.369598,0.446136,0.45929,0.424927,0.362549,0.280212,0.18161,0.0832214,0.00732422,-0.0344849,-0.0230103,0.0475769,0.162292,0.281281,0.359131,0.36673,0.320953,0.252411,0.168732,0.0556335,-0.0910034,-0.23465,-0.324493,-0.334503,-0.278412,-0.203644,-0.145172,-0.113831,-0.0922852,-0.0808105,-0.0907288,-0.132294,-0.20578,-0.292633,-0.371552,-0.435242,-0.468872,-0.463898,-0.432281,-0.397736,-0.353363,-0.278656,-0.171295,-0.0532837,0.0361633,0.068512,0.0428772,-0.00967407,-0.0554504,-0.0952454,-0.133026,-0.175903,-0.205841,-0.185516,-0.0920105,0.0569153,0.209473,0.325836,0.377533,0.358337,0.289215,0.208191,0.138245,0.0737,0.00128174,-0.0638428,-0.0829468,-0.0148926,0.131409,0.301971,0.43457,0.501709,0.511353,0.475128,0.401947,0.29425,0.17215,0.0534363,-0.0412903,-0.077179,-0.0317383,0.0740967,0.208679,0.324646,0.378662,0.367798,0.31134,0.21463,0.0878601,-0.0632324,-0.223175,-0.349945,-0.39505,-0.353699,-0.263367,-0.168518,-0.0962524,-0.0562439,-0.0464478,-0.0623474,-0.105835,-0.18161,-0.281616,-0.382172,-0.461365,-0.504395,-0.504059,-0.475037,-0.430359,-0.365509,-0.274902,-0.162231,-0.049469,0.0361023,0.0661011,0.0411377,-0.0105286,-0.0565186,-0.104309,-0.154114,-0.200806,-0.227997,-0.204376,-0.108856,0.0452271,0.212555,0.341278,0.393097,0.36264,0.288788,0.206909,0.141815,0.0756531,-0.00100708,-0.0701294,-0.0906677,-0.024353,0.124176,0.305054,0.444122,0.515656,0.533386,0.499542,0.421417,0.316711,0.20282,0.0863037,-0.0114746,-0.0626221,-0.0419617,0.052948,0.188324,0.306122,0.369019,0.377472,0.337067,0.248596,0.125366,-0.03302,-0.202881,-0.337585,-0.39209,-0.365051,-0.288788,-0.20282,-0.128326,-0.0725403,-0.037323,-0.032074,-0.0706177,-0.150146,-0.254639,-0.364838,-0.462708,-0.527863,-0.541687,-0.518799,-0.467926,-0.385101,-0.276459,-0.154449,-0.0411377,0.0302734,0.0433044,0.013092,-0.0353699,-0.0935669,-0.156921,-0.214355,-0.253082,-0.259064,-0.202423,-0.0727539,0.0973816,0.247803,0.340485,0.362976,0.329865,0.271027,0.207458,0.143494,0.0744934,0.00448608,-0.0400696,-0.0191956,0.0829468,0.236511,0.373627,0.463379,0.508057,0.507263,0.460815,0.385712,0.297729,0.202423,0.101471,0.0229492,-0.00256348,0.0367737,0.121063,0.207916,0.264709,0.290009,0.285583,0.244904,0.163635,0.0455627,-0.0953674,-0.223083,-0.3078,-0.330078,-0.306122,-0.261566,-0.204224,-0.145721,-0.0959778,-0.0710144,-0.0800781,-0.124084,-0.194702,-0.283508,-0.381409,-0.462891,-0.50705,-0.502441,-0.45343,-0.36969,-0.263306,-0.154572,-0.0569763,0.00314331,0.0115356,-0.0144958,-0.0620117,-0.118408,-0.182281,-0.238678,-0.270538,-0.260803,-0.183228,-0.0447083,0.108459,0.225433,0.275726,0.266571,0.230408,0.186584,0.137054,0.085907,0.0359802,-0.00491333,-0.00698853,0.0534363,0.176971,0.316193,0.418396,0.466461,0.471497,0.440765,0.380066,0.305389,0.237396,0.172424,0.116516,0.0915527,0.118744,0.183563,0.253296,0.291687,0.291229,0.259949,0.203033,0.127533,0.0399475,-0.0598755,-0.152222,-0.216522,-0.234711,-0.210876,-0.176392,-0.150757,-0.134491,-0.127655,-0.127777,-0.141479,-0.167664,-0.208801,-0.263977,-0.32785,-0.394714,-0.444305,-0.452301,-0.415375,-0.346191,-0.262299,-0.180267,-0.0949097,-0.0211487,0.0148315,0.0062561,-0.0349731,-0.100464,-0.176727,-0.246857,-0.290558,-0.290405,-0.226593,-0.0912781,0.0758972,0.211945,0.273956,0.261963,0.216248,0.158661,0.0796814,-0.00698853,-0.0777283,-0.109741,-0.0818787,0.00939941,0.143829,0.287445,0.404785,0.47821,0.496674,0.452637,0.361481,0.258057,0.168945,0.107513,0.0668335,0.0668335,0.124908,0.21228,0.297791,0.348999,0.359131,0.332764,0.267853,0.171753,0.0542908,-0.073761,-0.17981,-0.234161,-0.234436,-0.197327,-0.149078,-0.106323,-0.0631714,-0.0381775,-0.0400696,-0.0747681,-0.136261,-0.214111,-0.300629,-0.38269,-0.446991,-0.476379,-0.446533,-0.368683,-0.268402,-0.165649,-0.0794678,-0.00610352,0.037323,0.0356445,-0.00558472,-0.0730896,-0.152222,-0.224976,-0.275635,-0.295105,-0.259003,-0.151611,0.00845337,0.163239,0.255371,0.262299,0.217041,0.16214,0.0930786,-0.00424194,-0.104309,-0.169678,-0.174713,-0.112091,0.00778198,0.159454,0.300812,0.403168,0.449554,0.436523,0.369263,0.272034,0.167175,0.0808105,0.0188599,-0.00933838,0.0249634,0.118408,0.228119,0.313019,0.34671,0.345306,0.316254,0.249817,0.142548,0.0127563,-0.108795,-0.186371,-0.214111,-0.196503,-0.154785,-0.107452,-0.0552368,-0.012085,0.00933838,-0.00128174,-0.0425415,-0.109802,-0.201477,-0.308868,-0.401428,-0.451294,-0.435455,-0.360016,-0.261139,-0.157196,-0.0512695,0.0420837,0.107849,0.125641,0.0906677,0.0108032,-0.0949097,-0.202484,-0.279877,-0.304291,-0.26297,-0.154785,-0.00396729,0.148468,0.251282,0.277191,0.243622,0.181152,0.0987244,-0.0127563,-0.133911,-0.222168,-0.238922,-0.183228,-0.0751038,0.0686035,0.218536,0.330688,0.384521,0.374237,0.312622,0.222229,0.119202,0.0206604,-0.0548401,-0.0851135,-0.0567932,0.0232239,0.132477,0.228058,0.282166,0.299072,0.279541,0.218719,0.117981,0.000274658,-0.115784,-0.194427,-0.225037,-0.207733,-0.151337,-0.0786743,-0.0108032,0.0338135,0.0522156,0.0458374,0.0142822,-0.0471802,-0.141815,-0.255646,-0.346802,-0.37973,-0.345795,-0.259216,-0.151276,-0.0409546,0.0552979,0.125519,0.165771,0.172638,0.136841,0.0549011,-0.0564575,-0.162903,-0.231079,-0.2388,-0.172821,-0.0509949,0.0856323,0.197723,0.261688,0.271545,0.23175,0.150146,0.0359802,-0.085907,-0.180603,-0.229675,-0.223969,-0.156586,-0.03302,0.108734,0.226105,0.291901,0.298065,0.258881,0.184021,0.0808105,-0.0278625,-0.11142,-0.144226,-0.121399,-0.0517578,0.037384,0.125305,0.186584,0.209534,0.190491,0.129272,0.0369263,-0.0629578,-0.155457,-0.227325,-0.257935,-0.242371,-0.183624,-0.102356,-0.0288696,0.0138245,0.0232239,0.0115967,-0.0171814,-0.0673218,-0.138062,-0.218811,-0.276733,-0.284027,-0.229675,-0.132416,-0.0198669,0.0841064,0.169739,0.227448,0.249207,0.235382,0.185242,0.100891,0.00296021,-0.0800171,-0.127594,-0.108795,-0.0238342,0.0993347,0.215973,0.297333,0.326385,0.310272,0.246796,0.140015,0.00509644,-0.126526,-0.216125,-0.244293,-0.208405,-0.112701,0.0151062,0.144958,0.240479,0.273834,0.24585,0.169464,0.0661011,-0.0454407,-0.150665,-0.222229,-0.234772,-0.187256,-0.102356,-0.00570679,0.0787354,0.131805,0.141022,0.101685,0.0202026,-0.0838318,-0.18277,-0.260345,-0.306122,-0.31485,-0.291351,-0.233978,-0.155182,-0.0786743,-0.0285339,-0.012085,-0.0261841,-0.0609436,-0.115906,-0.188721,-0.257324,-0.284363,-0.262146,-0.198334,-0.101685,0.0144348,0.13269,0.238403,0.311615,0.339935,0.328613,0.276184,0.188995,0.0963745,0.0241699,-0.00924683,0.0137024,0.0932312,0.201477,0.304504,0.377136,0.407532,0.395569,0.329285,0.216125,0.0812073,-0.0386047,-0.118134,-0.150818,-0.139069,-0.0762329,0.0281982,0.140411,0.219879,0.245911,0.215851,0.140869,0.0404663,-0.0682678,-0.170685,-0.236908,-0.2547,-0.233551,-0.184906,-0.120209,-0.0525513,0.000335693,0.0132751,-0.0266418,-0.108063,-0.19928,-0.276184,-0.338196,-0.373627,-0.380402,-0.357941,-0.303101,-0.22699,-0.157043,-0.111938,-0.0922852,-0.098999,-0.13382,-0.189667,-0.247711,-0.278534,-0.272095,-0.226868,-0.143707,-0.0344849,0.0904846,0.21228,0.304382,0.353027,0.360687,0.325317,0.254852,0.175385,0.107452,0.069458,0.0832214,0.156525,0.264984,0.37262,0.452301,0.491699,0.486847,0.427734,0.319275,0.181946,0.0562439,-0.0278625,-0.0661011,-0.0587158,-0.000396729,0.10376,0.215302,0.29068,0.309204,0.269348,0.184784,0.0722961,-0.0566406,-0.177979,-0.257874,-0.279755,-0.253418,-0.201691,-0.142548,-0.0820312,-0.037384,-0.0304565,-0.0769043,-0.172089,-0.283447,-0.376862,-0.446655,-0.489685,-0.498474,-0.463989,-0.389008,-0.299194,-0.223511,-0.177643,-0.160736,-0.165649,-0.206116,-0.275513,-0.342163,-0.36908,-0.34726,-0.279419,-0.172424,-0.0387268,0.106995,0.244843,0.344177,0.391083,0.383179,0.327515,0.244385,0.161072,0.0997925,0.0818787,0.126038,0.230347,0.357849,0.464661,0.530945,0.562775,0.547058,0.467865,0.335327,0.190735,0.0793457,0.0135498,-0.00598145,0.0211487,0.102417,0.221008,0.3284,0.378876,0.365997,0.305389,0.204224,0.0767822,-0.0576477,-0.172546,-0.248138,-0.270203,-0.2453,-0.193634,-0.126648,-0.0634155,-0.0312805,-0.0508118,-0.124847,-0.234894,-0.345703,-0.434387,-0.501038,-0.545593,-0.55304,-0.508148,-0.4198,-0.322571,-0.251617,-0.217865,-0.216705,-0.249878,-0.30954,-0.371765,-0.401886,-0.390472,-0.338135,-0.249329,-0.132233,0.00872803,0.152832,0.268738,0.324982,0.319885,0.272156,0.210938,0.158203,0.120667,0.110596,0.149323,0.235107,0.349823,0.45752,0.533966,0.569672,0.557129,0.483856,0.35968,0.222961,0.119598,0.0663757,0.0519409,0.0764465,0.151154,0.268066,0.385651,0.44928,0.436646,0.366913,0.264099,0.135162,-0.00357056,-0.126434,-0.202026,-0.221008,-0.191223,-0.137848,-0.0768433,-0.0223389,-0.0012207,-0.0354919,-0.128662,-0.254913,-0.375305,-0.464111,-0.524902,-0.559753,-0.559357,-0.511017,-0.423706,-0.340088,-0.286865,-0.266724,-0.275787,-0.315369,-0.370819,-0.420013,-0.440094,-0.42157,-0.366791,-0.274506,-0.154449,-0.0150452,0.127258,0.242279,0.304504,0.308075,0.269012,0.217926,0.172638,0.137451,0.122681,0.148132,0.22464,0.331085,0.435638,0.516937,0.558136,0.552246,0.493652,0.390961,0.27182,0.170807,0.103088,0.0712891,0.08255,0.141479,0.238525,0.335724,0.394562,0.397583,0.353516,0.268799,0.155457,0.0318909,-0.0765686,-0.149139,-0.182098,-0.182617,-0.156708,-0.118744,-0.0880432,-0.0748901,-0.0941772,-0.153442,-0.243225,-0.335999,-0.40741,-0.459625,-0.49585,-0.507874,-0.485199,-0.434113,-0.386536,-0.357269,-0.343628,-0.338928,-0.345856,-0.359131,-0.364838,-0.352356,-0.31424,-0.249939,-0.164825,-0.0697327,0.0302124,0.123688,0.197937,0.236053,0.234833,0.206848,0.176117,0.1539,0.150421,0.175842,0.23645,0.31955,0.402954,0.467987,0.512695,0.523987,0.489136,0.408417,0.300079,0.19693,0.124573,0.0918274,0.101471,0.152344,0.233368,0.328064,0.397797,0.412842,0.371216,0.287994,0.175385,0.0480652,-0.0743103,-0.16449,-0.209015,-0.204895,-0.169006,-0.118134,-0.0697937,-0.0453186,-0.0628357,-0.12558,-0.225861,-0.338135,-0.432098,-0.497742,-0.535065,-0.546265,-0.521698,-0.465515,-0.396576,-0.336517,-0.30484,-0.308258,-0.338593,-0.375397,-0.3992,-0.39801,-0.363556,-0.29425,-0.196594,-0.0847778,0.0311279,0.144379,0.240417,0.297516,0.297455,0.254242,0.205902,0.172089,0.162628,0.181274,0.234222,0.317047,0.406586,0.481628,0.531372,0.543182,0.508942,0.428955,0.323822,0.223022,0.143768,0.101868,0.110016,0.164978,0.250732,0.337677,0.397583,0.412231,0.375916,0.288055,0.167267,0.0379944,-0.0744934,-0.159607,-0.213623,-0.225433,-0.198853,-0.147919,-0.0992126,-0.078064,-0.100952,-0.164764,-0.257721,-0.361481,-0.453766,-0.520081,-0.557953,-0.567322,-0.539825,-0.488617,-0.424255,-0.367462,-0.334839,-0.333984,-0.351074,-0.369476,-0.373901,-0.364166,-0.336914,-0.27887,-0.194031,-0.0891418,0.0299988,0.142609,0.235229,0.286102,0.28537,0.255188,0.22049,0.202881,0.203217,0.220337,0.26123,0.324921,0.399597,0.47464,0.530365,0.550293,0.520355,0.447144,0.355377,0.268799,0.19693,0.158203,0.159607,0.199677,0.270691,0.344788,0.395996,0.411285,0.378479,0.29834,0.182678,0.0599976,-0.0551758,-0.146729,-0.199066,-0.214783,-0.204712,-0.171631,-0.138123,-0.127777,-0.154907,-0.221161,-0.311493,-0.399689,-0.4776,-0.538818,-0.579071,-0.586456,-0.560089,-0.510162,-0.450684,-0.401215,-0.379333,-0.382904,-0.397675,-0.400696,-0.38443,-0.350739,-0.296783,-0.223633,-0.132233,-0.0231628,0.0901489,0.187927,0.255371,0.275177,0.256317,0.223358,0.199738,0.196716,0.216461,0.254639,0.309265,0.37027,0.436401,0.494781,0.528412,0.520905,0.467987,0.381958,0.291565,0.214508,0.166931,0.159607,0.190674,0.257538,0.337799,0.403381,0.437531,0.428467,0.372955,0.278198,0.1539,0.024231,-0.0900574,-0.167175,-0.205444,-0.213959,-0.187714,-0.143097,-0.107788,-0.106995,-0.151611,-0.229004,-0.322083,-0.418945,-0.503113,-0.567413,-0.603577,-0.606537,-0.578217,-0.524109,-0.469604,-0.433044,-0.412842,-0.39801,-0.380493,-0.36203,-0.343842,-0.307129,-0.248718,-0.172211,-0.0813599,0.0221558,0.12323,0.201874,0.2388,0.240692,0.231689,0.218933,0.215027,0.225311,0.252625,0.294159,0.344513,0.404297,0.467133,0.509155,0.512909,0.472229,0.399597,0.313446,0.231964,0.175629,0.162476,0.184784,0.238251,0.3078,0.371277,0.412842,0.413574,0.363495,0.276978,0.170868,0.056366,-0.0504761,-0.139404,-0.191345,-0.204102,-0.17981,-0.143616,-0.123016,-0.132416,-0.176117,-0.243439,-0.324768,-0.403778,-0.467926,-0.514038,-0.537872,-0.538818,-0.521149,-0.485779,-0.447052,-0.425049,-0.417114,-0.417877,-0.412567,-0.392822,-0.357269,-0.299744,-0.222961,-0.132355,-0.028595,0.0733032,0.161133,0.22229,0.242889,0.226196,0.194153,0.174316,0.17926,0.200012,0.236389,0.289124,0.355591,0.425995,0.483246,0.514313,0.504913,0.452911,0.366791,0.271271,0.189667,0.144958,0.139343,0.172882,0.243896,0.334656,0.405792,0.439331,0.42392,0.364838,0.268005,0.143707,0.0133667,-0.105499,-0.188538,-0.233978,-0.233032,-0.194702,-0.143951,-0.109406,-0.11673,-0.165833,-0.250275,-0.348816,-0.440765,-0.516449,-0.571442,-0.603516,-0.602112,-0.564178,-0.502228,-0.446808,-0.409271,-0.386261,-0.371704,-0.357727,-0.344971,-0.314575,-0.259888,-0.185974,-0.0961914,0.00497437,0.110809,0.198334,0.253357,0.272827,0.269073,0.255371,0.245514,0.247589,0.264984,0.298462,0.338867,0.388397,0.450134,0.501953,0.518341,0.493378,0.435974,0.360352,0.273499,0.19223,0.142212,0.13858,0.183441,0.253174,0.325104,0.383301,0.413239,0.393494,0.33075,0.227783,0.0983276,-0.0429688,-0.177063,-0.27478,-0.318604,-0.305634,-0.251556,-0.195312,-0.16861,-0.17746,-0.213959,-0.275238,-0.356537,-0.448944,-0.534576,-0.599823,-0.632172,-0.622162,-0.582764,-0.522156,-0.46994,-0.42981,-0.393707,-0.350952,-0.306122,-0.262238,-0.216125,-0.166443,-0.105499,-0.0268555,0.070282,0.160797,0.223969,0.252228,0.259735,0.264648,0.273895,0.289795,0.304169,0.31955,0.339935,0.369873,0.41687,0.468536,0.501495,0.502899,0.468811,0.404633,0.327667,0.251953,0.194153,0.163818,0.1698,0.219147,0.295837,0.368927,0.412354,0.413513,0.380219,0.308929,0.198517,0.0590515,-0.086792,-0.211609,-0.289215,-0.313446,-0.289337,-0.243774,-0.210358,-0.209259,-0.238739,-0.291901,-0.357941,-0.432159,-0.505981,-0.577606,-0.637482,-0.665527,-0.65802,-0.618073,-0.574524,-0.536469,-0.496735,-0.439758,-0.368469,-0.291473,-0.21109,-0.137512,-0.0667725,0.00167847,0.0766602,0.143158,0.189148,0.207855,0.209412,0.216248,0.242371,0.291901,0.352753,0.404114,0.43573,0.459351,0.491302,0.525787,0.538818,0.510071,0.450562,0.377594,0.305389,0.243835,0.206116,0.202423,0.22934,0.277863,0.335663,0.381073,0.401093,0.389954,0.343292,0.256989,0.13559,-0.00189209,-0.125092,-0.217133,-0.276642,-0.300415,-0.288727,-0.247131,-0.212891,-0.208191,-0.232025,-0.28302,-0.344574,-0.411285,-0.477264,-0.540283,-0.592377,-0.621979,-0.622833,-0.603699,-0.576721,-0.542358,-0.491699,-0.419678,-0.342163,-0.264435,-0.186035,-0.105713,-0.0291138,0.0346985,0.0869141,0.124634,0.145447,0.154297,0.160065,0.175049,0.210266,0.265259,0.328339,0.386261,0.425171,0.453033,0.477814,0.495392,0.49054,0.453491,0.396118,0.333557,0.269867,0.216919,0.19397,0.210144,0.258942,0.322968,0.382355,0.417725,0.425446,0.396851,0.333374,0.238678,0.114502,-0.0291138,-0.156097,-0.237793,-0.271271,-0.264038,-0.235168,-0.203491,-0.196838,-0.222626,-0.269867,-0.33551,-0.406067,-0.474579,-0.535583,-0.579803,-0.597198,-0.585327,-0.554108,-0.524384,-0.511627,-0.499878,-0.471283,-0.420624,-0.355591,-0.27948,-0.189484,-0.0885315,0.0122681,0.10733,0.190155,0.244171,0.260956,0.243561,0.219391,0.209412,0.221069,0.254761,0.301361,0.353088,0.399475,0.445801,0.49472,0.533722,0.533112,0.4841,0.4039,0.307251,0.217255,0.145905,0.110016,0.120209,0.171692,0.24176,0.31311,0.370819,0.394897,0.380951,0.31839,0.206238,0.0543518,-0.106506,-0.239197,-0.318726,-0.345459,-0.333893,-0.296051,-0.25174,-0.223511,-0.222961,-0.247986,-0.295044,-0.361084,-0.437653,-0.508209,-0.560883,-0.585327,-0.583832,-0.566925,-0.548004,-0.522583,-0.48175,-0.416779,-0.331696,-0.243439,-0.157043,-0.0709534,0.0183105,0.105042,0.178528,0.223511,0.238251,0.22995,0.215179,0.211823,0.231537,0.27417,0.324768,0.377991,0.42337,0.462555,0.500092,0.528198,0.530426,0.490082,0.4198,0.335175,0.247925,0.167938,0.115509,0.10968,0.149475,0.22229,0.298401,0.353088,0.379944,0.371216,0.317535,0.219543,0.0841675,-0.0789185,-0.233643,-0.346252,-0.396515,-0.383636,-0.329865,-0.265381,-0.223236,-0.217804,-0.248138,-0.303619,-0.368195,-0.441498,-0.522095,-0.592834,-0.633911,-0.639832,-0.615845,-0.57486,-0.525909,-0.479156,-0.429077,-0.370361,-0.294983,-0.203766,-0.106506,-0.0101318,0.0773926,0.157043,0.221558,0.26123,0.270813,0.260803,0.253845,0.26123,0.292755,0.339478,0.393585,0.444183,0.485992,0.525452,0.556793,0.57431,0.558472,0.510406,0.430542,0.329865,0.236847,0.179077,0.164703,0.185791,0.229004,0.275452,0.322815,0.358734,0.366333,0.333649,0.255981,0.127655,-0.0381165,-0.205902,-0.340332,-0.414246,-0.434174,-0.413086,-0.371765,-0.32962,-0.299866,-0.291351,-0.316803,-0.372833,-0.443512,-0.522247,-0.595123,-0.64621,-0.669006,-0.662903,-0.638611,-0.600677,-0.53833,-0.455048,-0.363831,-0.27713,-0.193695,-0.106232,-0.0157776,0.0705261,0.151337,0.208801,0.234711,0.238922,0.241425,0.259949,0.294159,0.337921,0.38269,0.426605,0.463562,0.494781,0.528259,0.553711,0.558472,0.529144,0.482086,0.425385,0.355988,0.283508,0.222626,0.194427,0.205109,0.245239,0.293915,0.330536,0.350891,0.357208,0.337402,0.278931,0.175232,0.0279846,-0.134033,-0.276184,-0.370087,-0.407928,-0.400879,-0.371216,-0.344849,-0.324585,-0.320221,-0.333435,-0.357849,-0.405182,-0.47821,-0.563049,-0.630951,-0.667419,-0.676056,-0.670898,-0.649963,-0.604706,-0.529602,-0.42627,-0.315125,-0.205505,-0.102203,-0.00698853,0.0775146,0.147461,0.197998,0.216644,0.211426,0.202637,0.210358,0.24295,0.300476,0.370483,0.433044,0.474915,0.499695,0.523712,0.549957,0.560089,0.537872,0.485779,0.421082,0.350281,0.285095,0.237732,0.214844,0.221405,0.24881,0.284973,0.321289,0.346039,0.355927,0.345917,0.298676,0.201202,0.0588074,-0.0930786,-0.227875,-0.326721,-0.378204,-0.391968,-0.380341,-0.357666,-0.334778,-0.321289,-0.327057,-0.349945,-0.38974,-0.449799,-0.519745,-0.586731,-0.630157,-0.650574,-0.663727,-0.668091,-0.641174,-0.569214,-0.467072,-0.357208,-0.240875,-0.123688,-0.0166321,0.081604,0.166321,0.223175,0.235901,0.213501,0.187988,0.182892,0.210358,0.266449,0.336456,0.410217,0.472015,0.516052,0.55426,0.586273,0.596466,0.570282,0.50592,0.420074,0.331635,0.255646,0.205566,0.189606,0.204559,0.243835,0.295502,0.336182,0.356201,0.354187,0.333832,0.276581,0.172089,0.0274658,-0.127441,-0.262421,-0.351166,-0.387329,-0.384918,-0.361755,-0.339874,-0.329132,-0.32962,-0.337524,-0.355865,-0.389465,-0.437531,-0.500092,-0.565735,-0.612579,-0.633698,-0.638,-0.632172,-0.607605,-0.553101,-0.465668,-0.356873,-0.2341,-0.109802,0.00112915,0.0953674,0.169464,0.213287,0.223297,0.209351,0.190674,0.186188,0.208191,0.257385,0.328796,0.402222,0.465393,0.509827,0.547546,0.575714,0.581146,0.556,0.506256,0.439087,0.362152,0.282623,0.228882,0.212158,0.22821,0.264771,0.307739,0.341431,0.359009,0.364899,0.342682,0.285187,0.179932,0.0340881,-0.12738,-0.269257,-0.363037,-0.405731,-0.409607,-0.395233,-0.379059,-0.367859,-0.36618,-0.369415,-0.386871,-0.417053,-0.466675,-0.531281,-0.589691,-0.624451,-0.642517,-0.653229,-0.65097,-0.624451,-0.563965,-0.47525,-0.363556,-0.233704,-0.106232,0.0119324,0.113434,0.198517,0.245514,0.250824,0.227539,0.203979,0.200684,0.22049,0.268127,0.33847,0.418335,0.481628,0.530212,0.572845,0.601898,0.605652,0.572296,0.514313,0.43866,0.35553,0.28183,0.238739,0.230286,0.249146,0.286926,0.329193,0.359406,0.371429,0.365784,0.337189,0.273621,0.161957,0.00610352,-0.149414,-0.277405,-0.356659,-0.387787,-0.389069,-0.37915,-0.375122,-0.374847,-0.379333,-0.387604,-0.4086,-0.446655,-0.502045,-0.565582,-0.617401,-0.64386,-0.655853,-0.664307,-0.667938,-0.642639,-0.574249,-0.474915,-0.358948,-0.232758,-0.107666,0.00704956,0.108582,0.187531,0.229401,0.227448,0.200409,0.178528,0.18277,0.216797,0.286041,0.368591,0.441833,0.494995,0.536652,0.579895,0.605713,0.593445,0.544708,0.482758,0.415039,0.34613,0.291809,0.267334,0.269806,0.295502,0.340607,0.379211,0.399933,0.402618,0.388794,0.350281,0.280884,0.168182,0.0220947,-0.126099,-0.246582,-0.322479,-0.355591,-0.359192,-0.357788,-0.368134,-0.384918,-0.403778,-0.419678,-0.436066,-0.462769,-0.51236,-0.572021,-0.623505,-0.651215,-0.664581,-0.675201,-0.68042,-0.664459,-0.610565,-0.521973,-0.405121,-0.269928,-0.128998,0.00296021,0.113708,0.195984,0.23175,0.227783,0.200348,0.171204,0.158386,0.180939,0.2453,0.324646,0.400208,0.46701,0.534241,0.597321,0.635712,0.630157,0.581573,0.509949,0.427399,0.349274,0.290405,0.259888,0.256592,0.287994,0.342285,0.393036,0.423981,0.436737,0.425659,0.378265,0.295776,0.169342,0.0175171,-0.129211,-0.246185,-0.316193,-0.342957,-0.343018,-0.343292,-0.34848,-0.363983,-0.387451,-0.40686,-0.42511,-0.457275,-0.517273,-0.584839,-0.632446,-0.656342,-0.668945,-0.679749,-0.680634,-0.661041,-0.606934,-0.514709,-0.390747,-0.251221,-0.114624,0.0100708,0.119995,0.196655,0.22464,0.210693,0.18161,0.153839,0.138336,0.156708,0.21344,0.289337,0.361298,0.426727,0.49707,0.564789,0.610077,0.610626,0.574127,0.509888,0.427612,0.341492,0.281006,0.260071,0.27002,0.307404,0.364655,0.419678,0.455322,0.474701,0.470886,0.430145,0.336243,0.184784,0.0114136,-0.14389,-0.254761,-0.313507,-0.338257,-0.347321,-0.353088,-0.355042,-0.359955,-0.375183,-0.401031,-0.436981,-0.489288,-0.559418,-0.627197,-0.669891,-0.688751,-0.701233,-0.7117,-0.702515,-0.65451,-0.568756,-0.457794,-0.331024,-0.202484,-0.0810242,0.0340881,0.13974,0.209015,0.227264,0.207336,0.179199,0.170959,0.186646,0.232025,0.292908,0.353363,0.405243,0.449554,0.497345,0.539948,0.562714,0.547729,0.50412,0.44278,0.367859,0.297607,0.258728,0.247528,0.259338,0.293976,0.339752,0.374451,0.397675,0.410431,0.402954,0.360962,0.27417,0.14035,-0.00778198,-0.137909,-0.230621,-0.279816,-0.300537,-0.310211,-0.324432,-0.340271,-0.350067,-0.354767,-0.365784,-0.388733,-0.43512,-0.499695,-0.558014,-0.601166,-0.636047,-0.67041,-0.697205,-0.695068,-0.651428,-0.572449,-0.457733,-0.317474,-0.168396,-0.0302734,0.0854492,0.172302,0.217804,0.219666,0.184509,0.143768,0.12323,0.135986,0.188721,0.257202,0.327332,0.391418,0.458069,0.519226,0.561768,0.570007,0.535645,0.479401,0.407318,0.326599,0.257263,0.217865,0.213959,0.24472,0.299408,0.354858,0.39679,0.425659,0.433563,0.409668,0.34552,0.233887,0.089325,-0.0621643,-0.189209,-0.272369,-0.311768,-0.316803,-0.31076,-0.312286,-0.325592,-0.340668,-0.351013,-0.36734,-0.396667,-0.453979,-0.517944,-0.570557,-0.610077,-0.638336,-0.664642,-0.678284,-0.666199,-0.617523,-0.526855,-0.397583,-0.249817,-0.104431,0.0254517,0.132019,0.206848,0.241028,0.231964,0.192566,0.149597,0.126251,0.149323,0.213104,0.29538,0.373169,0.437073,0.490021,0.530701,0.55484,0.548462,0.50882,0.442444,0.356384,0.274841,0.222229,0.20813,0.22403,0.266052,0.317871,0.356049,0.378479,0.388733,0.384308,0.351898,0.279663,0.15625,0.00866699,-0.126099,-0.225922,-0.284363,-0.310486,-0.319214,-0.326447,-0.338593,-0.348206,-0.355988,-0.363708,-0.376862,-0.405731,-0.454376,-0.506714,-0.546112,-0.570679,-0.596466,-0.624573,-0.644104,-0.633301,-0.580353,-0.481689,-0.352509,-0.207397,-0.0655823,0.0625,0.172821,0.249481,0.273621,0.247131,0.198456,0.151886,0.128723,0.149811,0.20993,0.28476,0.36203,0.429871,0.490814,0.537598,0.560089,0.544037,0.495575,0.423645,0.335236,0.250488,0.196655,0.182617,0.210754,0.274506,0.341003,0.379669,0.396515,0.406128,0.398682,0.358185,0.26593,0.12262,-0.0350952,-0.172302,-0.264587,-0.305786,-0.316589,-0.313232,-0.320953,-0.335846,-0.350342,-0.360687,-0.373718,-0.397736,-0.445648,-0.507935,-0.560211,-0.589874,-0.606262,-0.6203,-0.636322,-0.639496,-0.614594,-0.547668,-0.44101,-0.309265,-0.174377,-0.041748,0.0844421,0.196503,0.274902,0.297455,0.273895,0.229675,0.188812,0.174042,0.199677,0.24646,0.29895,0.351898,0.40976,0.475922,0.526733,0.548401,0.530029,0.484528,0.415375,0.332092,0.253021,0.196381,0.17215,0.186798,0.241882,0.308655,0.355377,0.384094,0.399536,0.393768,0.355042,0.267242,0.129608,-0.0294495,-0.176453,-0.279816,-0.330292,-0.339996,-0.334717,-0.33371,-0.339142,-0.348267,-0.349731,-0.347382,-0.356445,-0.402222,-0.475128,-0.544922,-0.591553,-0.618073,-0.643707,-0.661285,-0.653442,-0.605927,-0.521759,-0.40625,-0.270355,-0.126312,0.0083313,0.124023,0.210083,0.258545,0.263916,0.235168,0.195831,0.164642,0.168518,0.21048,0.26825,0.324097,0.368866,0.414581,0.46405,0.504059,0.513184,0.479401,0.422302,0.35672,0.283295,0.217133,0.172363,0.159058,0.18457,0.247131,0.307068,0.346802,0.378204,0.395996,0.384369,0.338745,0.251495,0.128265,-0.00894165,-0.140808,-0.236664,-0.281158,-0.289337,-0.285858,-0.296173,-0.315979,-0.326599,-0.324921,-0.324097,-0.338867,-0.387268,-0.453583,-0.521362,-0.576721,-0.618744,-0.651978,-0.672516,-0.669434,-0.623657,-0.531952,-0.403107,-0.255859,-0.105896,0.0269165,0.13269,0.208466,0.242371,0.229797,0.188324,0.150208,0.131012,0.144379,0.192169,0.257599,0.326111,0.3862,0.439758,0.484314,0.512756,0.508942,0.467682,0.403168,0.328735,0.255188,0.19812,0.170868,0.170959,0.202026,0.261688,0.322571,0.369019,0.390289,0.392303,0.371155,0.324768,0.235992,0.101746,-0.0405273,-0.158386,-0.23114,-0.266174,-0.27887,-0.284302,-0.297333,-0.315582,-0.330811,-0.341431,-0.345245,-0.36142,-0.406464,-0.470337,-0.529755,-0.566528,-0.591492,-0.623047,-0.655792,-0.661285,-0.610016,-0.509277,-0.381744,-0.251617,-0.117462,0.0162964,0.135162,0.234039,0.287933,0.28363,0.239807,0.193756,0.167328,0.179596,0.219208,0.265656,0.313171,0.358612,0.405853,0.456055,0.492157,0.495239,0.454773,0.385773,0.313232,0.245117,0.186981,0.146301,0.128601,0.1492,0.210541,0.283783,0.337402,0.366119,0.373901,0.354645,0.311279,0.236176,0.124237,-0.00341797,-0.123566,-0.209595,-0.247925,-0.253021,-0.256104,-0.275238,-0.307068,-0.329681,-0.339081,-0.346252,-0.360535,-0.395844,-0.447815,-0.502289,-0.550079,-0.583435,-0.609741,-0.638611,-0.653229,-0.625122,-0.549225,-0.437408,-0.301086,-0.156189,-0.0140381,0.112885,0.216797,0.281616,0.292084,0.260742,0.225861,0.201355,0.193359,0.213837,0.257263,0.307648,0.355255,0.405457,0.46283,0.510742,0.520294,0.486938,0.430084,0.360962,0.287537,0.220062,0.168457,0.141266,0.14563,0.190338,0.263031,0.329803,0.363159,0.372833,0.35968,0.320007,0.254181,0.148865,0.0160522,-0.109253,-0.199738,-0.249329,-0.272888,-0.284119,-0.295441,-0.314972,-0.340271,-0.364166,-0.38028,-0.398254,-0.42746,-0.475189,-0.525055,-0.560425,-0.587799,-0.61908,-0.649353,-0.666595,-0.651886,-0.593109,-0.491638,-0.364838,-0.225525,-0.0813599,0.0612183,0.192749,0.289673,0.338257,0.333832,0.30069,0.269135,0.240692,0.236115,0.258453,0.291901,0.32962,0.380005,0.441956,0.502625,0.546112,0.553162,0.514984,0.447327,0.366577,0.282013,0.200073,0.136597,0.113159,0.142273,0.210266,0.28418,0.341278,0.378815,0.392578,0.370483,0.31546,0.219818,0.0794067,-0.074707,-0.20639,-0.289337,-0.326263,-0.339264,-0.345245,-0.360962,-0.377655,-0.383972,-0.381897,-0.381226,-0.403046,-0.449402,-0.507935,-0.558136,-0.589966,-0.615723,-0.641907,-0.666809,-0.669159,-0.629028,-0.533783,-0.399536,-0.254089,-0.114166,0.0177917,0.143036,0.257263,0.339081,0.365051,0.345123,0.302704,0.258118,0.234711,0.249481,0.280945,0.306396,0.333557,0.373901,0.43338,0.495789,0.539001,0.545197,0.503784,0.424713,0.335236,0.254028,0.191162,0.145905,0.136719,0.173309,0.241608,0.30484,0.355865,0.398346,0.404846,0.366394,0.289886,0.173553,0.0323486,-0.108673,-0.224762,-0.29953,-0.336731,-0.353363,-0.36792,-0.387787,-0.403046,-0.408661,-0.409424,-0.414429,-0.438812,-0.484863,-0.529602,-0.569946,-0.612244,-0.653229,-0.687683,-0.704529,-0.685516,-0.615509,-0.501282,-0.359741,-0.205048,-0.0561218,0.0883179,0.219543,0.326447,0.383087,0.385437,0.354034,0.309814,0.26712,0.247406,0.261475,0.285248,0.310333,0.347717,0.401764,0.470215,0.530029,0.555511,0.54129,0.487732,0.404449,0.308258,0.224976,0.166656,0.134094,0.141815,0.194916,0.272705,0.34201,0.397064,0.43103,0.420013,0.360291,0.248596,0.104645,-0.0456543,-0.184906,-0.295166,-0.373291,-0.41687,-0.437469,-0.438538,-0.428802,-0.418121,-0.413971,-0.416931,-0.427948,-0.45694,-0.500031,-0.536133,-0.574585,-0.618286,-0.667084,-0.692169,-0.675262,-0.616394,-0.516205,-0.389801,-0.246399,-0.0935059,0.0517578,0.188812,0.312225,0.400543,0.429413,0.401611,0.356934,0.30484,0.255249,0.226532,0.218994,0.224915,0.245117,0.282898,0.34726,0.427734,0.487183,0.50647,0.483521,0.41861,0.334564,0.24472,0.167725,0.118134,0.101288,0.130402,0.216583,0.325104,0.415527,0.479828,0.503784,0.480499,0.415649,0.305389,0.15625,-0.00860596,-0.1651,-0.292297,-0.367737,-0.402039,-0.413025,-0.418457,-0.42627,-0.437592,-0.444183,-0.444305,-0.453491,-0.496338,-0.564636,-0.627533,-0.67746,-0.713989,-0.735657,-0.740692,-0.713654,-0.645721,-0.536407,-0.393036,-0.22699,-0.0618896,0.0940857,0.230408,0.350281,0.443024,0.490021,0.481506,0.434967,0.369354,0.305786,0.272095,0.259674,0.259125,0.27478,0.310883,0.369354,0.446198,0.502106,0.51532,0.484772,0.4086,0.303497,0.197723,0.107452,0.0463867,0.0326233,0.0700073,0.157318,0.264099,0.363892,0.441895,0.484985,0.475586,0.417053,0.31369,0.161346,-0.0128174,-0.175385,-0.297272,-0.36618,-0.397461,-0.404785,-0.39859,-0.392242,-0.38385,-0.371277,-0.368256,-0.394501,-0.452301,-0.530945,-0.606537,-0.667267,-0.713043,-0.737732,-0.746002,-0.727753,-0.663574,-0.546783,-0.395386,-0.23645,-0.0846252,0.0566406,0.193237,0.316925,0.412354,0.464172,0.453979,0.400024,0.327332,0.26123,0.225983,0.218384,0.226379,0.254425,0.305511,0.379608,0.466248,0.538544,0.563904,0.536316,0.455597,0.345032,0.237579,0.149933,0.0898132,0.0718079,0.102966,0.187195,0.301544,0.414581,0.500031,0.54068,0.516113,0.437256,0.315369,0.148132,-0.0400085,-0.214508,-0.353027,-0.43512,-0.471283,-0.471954,-0.450073,-0.428955,-0.413757,-0.402161,-0.403381,-0.432434,-0.486389,-0.555176,-0.619415,-0.671906,-0.712158,-0.723389,-0.711304,-0.679901,-0.61264,-0.510071,-0.378479,-0.235901,-0.0892029,0.0602722,0.204651,0.335175,0.436646,0.495575,0.49646,0.444519,0.36618,0.27652,0.208588,0.171417,0.163635,0.185303,0.236115,0.308136,0.404907,0.498413,0.546204,0.540833,0.478058,0.365448,0.246063,0.14563,0.0718689,0.0427551,0.065033,0.148651,0.284851,0.426605,0.533234,0.596252,0.592224,0.52002,0.394989,0.225708,0.0231628,-0.179474,-0.349335,-0.450012,-0.483582,-0.478149,-0.446136,-0.415588,-0.398132,-0.386993,-0.389618,-0.41806,-0.470154,-0.549561,-0.636322,-0.69519,-0.723053,-0.71814,-0.687469,-0.650818,-0.601501,-0.518005,-0.403229,-0.26358,-0.115234,0.026123,0.153564,0.270081,0.373108,0.459351,0.497131,0.467987,0.396576,0.302032,0.207123,0.148071,0.127716,0.135925,0.1698,0.226044,0.312622,0.425385,0.51532,0.547333,0.519135,0.429626,0.307251,0.198608,0.11377,0.0654907,0.066925,0.121155,0.237732,0.397797,0.543304,0.640564,0.667267,0.60733,0.485107,0.32135,0.119659,-0.103638,-0.307251,-0.455383,-0.523224,-0.523315,-0.488525,-0.436859,-0.40921,-0.404297,-0.408325,-0.42868,-0.471619,-0.536072,-0.623322,-0.694458,-0.722656,-0.717194,-0.679626,-0.627197,-0.578888,-0.512421,-0.416534,-0.292145,-0.1492,-0.00991821,0.112701,0.217651,0.313843,0.403107,0.47464,0.490967,0.444519,0.357788,0.250397,0.154297,0.0985413,0.0848389,0.100616,0.142944,0.206177,0.3013,0.412689,0.491028,0.518738,0.492096,0.406647,0.293762,0.189728,0.112213,0.0808716,0.110352,0.197052,0.335388,0.492157,0.621033,0.692444,0.68869,0.601227,0.452759,0.258209,0.0316772,-0.194489,-0.3815,-0.504852,-0.551758,-0.544586,-0.50882,-0.465454,-0.437408,-0.425049,-0.427521,-0.461029,-0.522888,-0.591217,-0.655792,-0.695465,-0.70163,-0.680817,-0.634918,-0.575256,-0.513367,-0.423096,-0.313843,-0.193146,-0.0696716,0.0479126,0.15451,0.249542,0.3349,0.410339,0.463776,0.467072,0.416443,0.329681,0.225037,0.129211,0.0683289,0.0428772,0.0461121,0.0803528,0.14328,0.236053,0.346191,0.433502,0.472778,0.458405,0.385376,0.28183,0.18692,0.123566,0.104218,0.145233,0.241486,0.381226,0.528748,0.652832,0.72525,0.722839,0.634583,0.480957,0.276794,0.0422974,-0.190491,-0.381897,-0.50882,-0.560486,-0.555267,-0.520142,-0.475922,-0.44223,-0.42807,-0.432892,-0.469666,-0.529419,-0.593384,-0.654999,-0.7005,-0.710236,-0.68277,-0.617065,-0.537598,-0.456451,-0.367676,-0.268463,-0.164246,-0.0585327,0.0403442,0.126251,0.208862,0.290558,0.366394,0.426453,0.444183,0.411957,0.337677,0.231628,0.12149,0.04422,0.00213623,-0.00878906,0.0154419,0.07901,0.179535,0.307861,0.419739,0.483429,0.483582,0.423431,0.334656,0.252899,0.192963,0.158203,0.1698,0.244385,0.369415,0.521149,0.660706,0.745789,0.743774,0.654388,0.501617,0.307983,0.0842896,-0.152496,-0.368011,-0.523987,-0.596466,-0.595673,-0.552582,-0.498077,-0.458527,-0.449463,-0.454041,-0.475128,-0.521698,-0.583038,-0.649353,-0.705383,-0.71579,-0.668762,-0.581421,-0.483185,-0.395721,-0.313965,-0.233215,-0.15329,-0.0677795,0.0181274,0.0950317,0.161285,0.225525,0.29129,0.363159,0.413696,0.413849,0.359192,0.26062,0.141205,0.0393982,-0.0260315,-0.0514832,-0.0411987,0.00878906,0.0976562,0.221344,0.354309,0.454498,0.50177,0.484589,0.414856,0.3237,0.250946,0.206848,0.199463,0.242035,0.342102,0.486389,0.634796,0.743591,0.778412,0.721649,0.582306,0.387451,0.160736,-0.0838928,-0.318207,-0.504639,-0.613525,-0.638,-0.605591,-0.548401,-0.491089,-0.460541,-0.462433,-0.487122,-0.525238,-0.575989,-0.629364,-0.672028,-0.682587,-0.644867,-0.55835,-0.440674,-0.323364,-0.231689,-0.168335,-0.112823,-0.0624084,-0.0105286,0.0386047,0.0885925,0.144775,0.206909,0.274384,0.339752,0.385864,0.387268,0.33255,0.225098,0.0935669,-0.0220032,-0.0990601,-0.137054,-0.125092,-0.0610657,0.0484619,0.192078,0.338928,0.450409,0.500702,0.486328,0.417938,0.335052,0.265778,0.218048,0.208405,0.262817,0.379883,0.525513,0.669342,0.765656,0.776794,0.699554,0.548676,0.346985,0.11377,-0.131348,-0.351837,-0.517792,-0.605804,-0.616058,-0.57312,-0.50827,-0.45813,-0.444183,-0.453156,-0.467468,-0.502777,-0.560364,-0.613037,-0.648621,-0.644043,-0.583923,-0.484528,-0.364655,-0.249207,-0.161224,-0.100281,-0.0617371,-0.0385132,-0.0204773,0.00195312,0.0340271,0.0775757,0.137512,0.213013,0.298523,0.362213,0.378204,0.339081,0.241943,0.110687,-0.0236816,-0.135498,-0.202698,-0.20047,-0.137268,-0.0240173,0.126312,0.287872,0.425659,0.507202,0.516449,0.461548,0.370544,0.279083,0.21814,0.199127,0.228546,0.317535,0.449341,0.596466,0.714508,0.76297,0.723999,0.596191,0.396851,0.163086,-0.0691833,-0.285034,-0.463776,-0.574036,-0.610962,-0.587952,-0.520569,-0.447937,-0.397186,-0.389404,-0.421478,-0.466675,-0.51712,-0.567749,-0.603455,-0.604919,-0.559875,-0.470551,-0.350555,-0.218536,-0.100006,-0.0322266,-0.012085,-0.0227661,-0.0438843,-0.0569153,-0.0499268,-0.0166321,0.0406799,0.116119,0.211273,0.308319,0.378052,0.391357,0.326843,0.191559,0.0261841,-0.123016,-0.224976,-0.26358,-0.234833,-0.14389,-0.00665283,0.156036,0.324432,0.465057,0.534393,0.517059,0.434845,0.324036,0.223236,0.16571,0.162903,0.222565,0.336334,0.484528,0.639679,0.756592,0.792786,0.729156,0.578613,0.364227,0.118866,-0.123688,-0.339264,-0.508545,-0.605713,-0.614502,-0.554047,-0.470764,-0.403839,-0.376129,-0.392487,-0.438873,-0.494324,-0.54538,-0.587799,-0.611359,-0.602356,-0.53598,-0.415192,-0.26712,-0.122955,-0.0195312,0.0220947,0.0179749,-0.0108032,-0.0474548,-0.0744934,-0.0755615,-0.0388489,0.0269775,0.112762,0.213501,0.316589,0.3909,0.399811,0.327515,0.188385,0.0189209,-0.14328,-0.261566,-0.304108,-0.271942,-0.166504,-0.000335693,0.19516,0.371704,0.492157,0.535736,0.498535,0.404388,0.282288,0.17337,0.10968,0.102478,0.163635,0.29834,0.483246,0.662567,0.78244,0.802307,0.715515,0.542847,0.315033,0.0698547,-0.155182,-0.348602,-0.492035,-0.559143,-0.550476,-0.482697,-0.389801,-0.317322,-0.298523,-0.338135,-0.412292,-0.492096,-0.561493,-0.610626,-0.626526,-0.602112,-0.527344,-0.402222,-0.247253,-0.0906677,0.0280457,0.0783386,0.065155,0.00375366,-0.0769958,-0.146851,-0.17807,-0.156921,-0.0875244,0.0188599,0.141815,0.26767,0.370087,0.419617,0.395172,0.289795,0.124969,-0.0551758,-0.210693,-0.29834,-0.294495,-0.20517,-0.0477295,0.134705,0.307739,0.448486,0.528931,0.534637,0.471436,0.356262,0.234161,0.14444,0.117188,0.159454,0.261475,0.406311,0.563232,0.686401,0.740173,0.696259,0.561615,0.361145,0.123505,-0.111023,-0.301422,-0.43631,-0.509888,-0.523315,-0.4841,-0.409821,-0.34491,-0.314117,-0.333435,-0.391815,-0.467865,-0.53833,-0.576202,-0.572906,-0.530945,-0.450562,-0.332764,-0.192291,-0.0541687,0.0509949,0.108002,0.112213,0.0596008,-0.0422974,-0.155182,-0.241547,-0.266724,-0.225861,-0.126923,0.0012207,0.126648,0.237732,0.320831,0.361206,0.335388,0.229675,0.0588074,-0.137451,-0.30249,-0.381012,-0.357727,-0.239197,-0.0566406,0.141815,0.329681,0.487,0.585052,0.609894,0.559296,0.450806,0.327118,0.224243,0.182098,0.209595,0.288788,0.406464,0.537415,0.642426,0.689209,0.660278,0.548126,0.363892,0.137665,-0.0918884,-0.285034,-0.420898,-0.509003,-0.555939,-0.552917,-0.505859,-0.439606,-0.384033,-0.361755,-0.377808,-0.418945,-0.460693,-0.472504,-0.455444,-0.412903,-0.350006,-0.268463,-0.167847,-0.0571289,0.0455017,0.114288,0.129669,0.0877991,-0.00369263,-0.114105,-0.211761,-0.266998,-0.260284,-0.192505,-0.091217,0.0144348,0.10437,0.180756,0.233643,0.242157,0.18396,0.0556946,-0.122223,-0.294312,-0.398071,-0.397675,-0.291473,-0.108521,0.104492,0.308136,0.485321,0.615173,0.680359,0.674438,0.595734,0.463226,0.321564,0.219269,0.19281,0.240479,0.343903,0.476135,0.596741,0.665588,0.671967,0.603577,0.45459,0.233307,-0.0271301,-0.277313,-0.472778,-0.598206,-0.653503,-0.638885,-0.5737,-0.481506,-0.383301,-0.307068,-0.271362,-0.279816,-0.319489,-0.363434,-0.388672,-0.388458,-0.355103,-0.284119,-0.185913,-0.0709534,0.0455627,0.143433,0.199463,0.199066,0.135651,0.0113525,-0.148132,-0.293579,-0.387604,-0.399536,-0.336456,-0.235382,-0.127594,-0.0210876,0.0814209,0.16214,0.200073,0.165314,0.0424805,-0.143219,-0.320892,-0.415863,-0.386444,-0.240356,-0.0220947,0.21402,0.427185,0.599335,0.726929,0.785736,0.758545,0.650818,0.488007,0.320496,0.207855,0.18335,0.247314,0.368195,0.495911,0.58316,0.612976,0.588287,0.495331,0.321899,0.0847778,-0.177521,-0.413239,-0.580353,-0.65332,-0.643036,-0.577881,-0.486664,-0.382568,-0.281769,-0.207458,-0.187195,-0.218262,-0.278656,-0.338531,-0.367859,-0.352356,-0.284515,-0.178864,-0.0584717,0.0649109,0.180603,0.259613,0.277985,0.224426,0.0926819,-0.106903,-0.33136,-0.516602,-0.610687,-0.592316,-0.476654,-0.318268,-0.162476,-0.0191956,0.107727,0.197449,0.234436,0.188141,0.0346985,-0.186646,-0.382568,-0.465332,-0.405243,-0.222229,0.0307312,0.296265,0.524231,0.695984,0.809967,0.848755,0.802246,0.671234,0.485718,0.299133,0.170685,0.134766,0.192352,0.316711,0.453827,0.548401,0.580811,0.557617,0.471954,0.313232,0.0889282,-0.164154,-0.3992,-0.564514,-0.625519,-0.598602,-0.525055,-0.431366,-0.337799,-0.246246,-0.175293,-0.146118,-0.16806,-0.222504,-0.279663,-0.313019,-0.297516,-0.226379,-0.127777,-0.0283813,0.065033,0.145172,0.189056,0.185181,0.132568,0.0212708,-0.149994,-0.355103,-0.530823,-0.62915,-0.6203,-0.516327,-0.364777,-0.21167,-0.0777283,0.0419617,0.139923,0.20517,0.209137,0.111206,-0.0683289,-0.257935,-0.375061,-0.365448,-0.2276,-0.00924683,0.23114,0.441956,0.602692,0.716187,0.767944,0.751831,0.666138,0.512909,0.334656,0.190216,0.124756,0.153778,0.250732,0.375732,0.478546,0.529205,0.526581,0.475128,0.365509,0.187653,-0.0418091,-0.274628,-0.452698,-0.533386,-0.524567,-0.459473,-0.376251,-0.297272,-0.223083,-0.154175,-0.111755,-0.12323,-0.17746,-0.2547,-0.318726,-0.333313,-0.290558,-0.20282,-0.098114,0.00509644,0.0942383,0.161804,0.192352,0.177063,0.105988,-0.0312805,-0.217468,-0.41861,-0.582153,-0.661438,-0.634857,-0.512085,-0.34848,-0.182159,-0.0341492,0.0957031,0.206512,0.274109,0.261414,0.134918,-0.072876,-0.279663,-0.406738,-0.403778,-0.26886,-0.0523376,0.185455,0.390228,0.543762,0.662903,0.733124,0.735199,0.658813,0.51236,0.337067,0.182678,0.104706,0.120392,0.214233,0.337738,0.440765,0.495392,0.507996,0.477936,0.390228,0.240265,0.0358276,-0.18927,-0.376648,-0.475586,-0.49054,-0.456055,-0.40271,-0.341888,-0.270599,-0.203094,-0.159332,-0.1539,-0.180603,-0.232971,-0.27832,-0.280334,-0.234436,-0.159668,-0.0705261,0.0236816,0.109192,0.174164,0.204987,0.199677,0.146393,0.0379333,-0.115723,-0.291229,-0.454987,-0.567596,-0.595184,-0.524445,-0.387939,-0.239349,-0.105225,0.0159607,0.125854,0.201019,0.213623,0.13269,-0.0449829,-0.255859,-0.4133,-0.44873,-0.347198,-0.152161,0.0739746,0.287598,0.454712,0.579224,0.667542,0.698669,0.661896,0.543518,0.365387,0.193146,0.0935669,0.09552,0.177643,0.307587,0.434174,0.501892,0.511627,0.48291,0.414032,0.282501,0.0845032,-0.152618,-0.367249,-0.501373,-0.526672,-0.469482,-0.378723,-0.289612,-0.210266,-0.135651,-0.0753174,-0.0514221,-0.0851135,-0.159058,-0.239258,-0.291748,-0.277985,-0.205566,-0.0955811,0.028595,0.142212,0.233032,0.297607,0.319946,0.285645,0.182159,0.0135498,-0.181427,-0.364655,-0.522888,-0.630432,-0.655914,-0.57901,-0.4245,-0.249481,-0.0897217,0.0232849,0.0957642,0.128937,0.112946,0.0354309,-0.110535,-0.27478,-0.392365,-0.405853,-0.299347,-0.103302,0.113434,0.30188,0.437073,0.520813,0.577728,0.600769,0.578674,0.494843,0.352844,0.208466,0.123962,0.12677,0.191498,0.284698,0.363831,0.391693,0.372437,0.333038,0.278931,0.194977,0.0620117,-0.106995,-0.263092,-0.357452,-0.363373,-0.304962,-0.229401,-0.167511,-0.13559,-0.114441,-0.093689,-0.0834961,-0.0979919,-0.137909,-0.180817,-0.191895,-0.15451,-0.0765686,0.0212708,0.113098,0.178741,0.213501,0.227539,0.216583,0.175842,0.094696,-0.0216675,-0.152344,-0.274506,-0.390076,-0.498016,-0.577942,-0.595062,-0.527924,-0.404236,-0.271362,-0.161682,-0.0848389,-0.0275879,0.0157776,0.0458374,0.0381165,-0.0284424,-0.135101,-0.22403,-0.235321,-0.160614,-0.0230103,0.118195,0.226654,0.29834,0.359192,0.43573,0.506714,0.538483,0.486206,0.366333,0.245117,0.170868,0.153442,0.169525,0.194427,0.209259,0.204102,0.196259,0.205902,0.223083,0.209351,0.127533,-0.0115967,-0.143768,-0.212433,-0.204163,-0.161682,-0.127716,-0.120056,-0.121399,-0.108063,-0.0697937,-0.0317993,-0.0316162,-0.0653687,-0.10556,-0.118134,-0.0900574,-0.0339661,0.0341492,0.0963135,0.142212,0.169739,0.188477,0.189728,0.163361,0.089325,-0.020874,-0.14679,-0.278473,-0.410156,-0.536804,-0.624512,-0.641754,-0.566986,-0.429962,-0.276978,-0.144623,-0.0541077,-0.00302124,0.0232849,0.0428772,0.0283813,-0.0475159,-0.168457,-0.280609,-0.308258,-0.227448,-0.0724182,0.0945129,0.221283,0.302307,0.367584,0.435913,0.489136,0.490143,0.414032,0.275177,0.139923,0.0602722,0.0517578,0.0889282,0.143097,0.196716,0.240021,0.277405,0.31665,0.346863,0.329803,0.229523,0.0675964,-0.0895996,-0.17337,-0.175049,-0.137451,-0.106903,-0.0939636,-0.0876465,-0.0598145,-0.00146484,0.0498657,0.0499878,-0.00390625,-0.0809326,-0.130463,-0.131012,-0.0953064,-0.0371094,0.0254517,0.0798035,0.128723,0.174957,0.20813,0.223022,0.188477,0.0951843,-0.037384,-0.178131,-0.311005,-0.441437,-0.557526,-0.636871,-0.652649,-0.591492,-0.468475,-0.324249,-0.204834,-0.126038,-0.0760498,-0.0290527,0.0220032,0.041626,-0.00262451,-0.100342,-0.190216,-0.212677,-0.154449,-0.04953,0.0540161,0.133148,0.197327,0.265045,0.344177,0.40741,0.422028,0.372955,0.277985,0.189545,0.135315,0.12149,0.134644,0.171295,0.215851,0.248383,0.275574,0.298401,0.304565,0.263153,0.166779,0.0455627,-0.0564575,-0.100891,-0.0993958,-0.0716248,-0.0518188,-0.0427551,-0.0390015,-0.0260315,-0.00314331,0.00146484,-0.0203247,-0.0555115,-0.0808105,-0.078064,-0.0512085,0.00134277,0.0683899,0.130798,0.178802,0.206238,0.213837,0.204224,0.173981,0.112885,0.0183105,-0.0944214,-0.210083,-0.318146,-0.42337,-0.521362,-0.594238,-0.62619,-0.601501,-0.519684,-0.413635,-0.307251,-0.220001,-0.142944,-0.0662537,0.00811768,0.0590515,0.0514832,-0.0118103,-0.0935669,-0.148804,-0.155701,-0.121277,-0.0647583,-0.00650024,0.0455627,0.112274,0.211151,0.308746,0.370758,0.376709,0.331543,0.263031,0.206177,0.177979,0.171692,0.176575,0.184235,0.18866,0.204651,0.238068,0.270142,0.259064,0.193481,0.103485,0.0305481,-0.00369263,0.00665283,0.0387268,0.0509949,0.0390625,0.0265198,0.0317383,0.0534363,0.0641785,0.0499878,0.00509644,-0.0505371,-0.0829468,-0.0791321,-0.0351562,0.0356445,0.100006,0.146851,0.184113,0.219543,0.245728,0.251831,0.216309,0.125366,-0.00631714,-0.148987,-0.289398,-0.429199,-0.558472,-0.656586,-0.708618,-0.698822,-0.606537,-0.462219,-0.316467,-0.197601,-0.111023,-0.0493164,-0.00979614,0.0152893,0.000213623,-0.0767212,-0.194702,-0.296112,-0.330688,-0.289276,-0.197998,-0.101624,-0.0144958,0.072876,0.171967,0.272491,0.339264,0.36322,0.339081,0.26767,0.193695,0.148468,0.138916,0.152893,0.179871,0.217529,0.256775,0.292358,0.328613,0.351013,0.326935,0.256531,0.165314,0.0952454,0.0605469,0.0653076,0.0833435,0.0879822,0.0829468,0.07901,0.0787354,0.0860291,0.0826721,0.0578003,0.0134888,-0.0292664,-0.0395203,-0.0114746,0.0470581,0.113281,0.170013,0.213013,0.251282,0.28183,0.28302,0.247589,0.168335,0.0479736,-0.0973206,-0.245178,-0.383759,-0.51001,-0.620819,-0.703308,-0.743042,-0.720154,-0.624847,-0.48996,-0.357269,-0.253967,-0.186127,-0.143951,-0.115295,-0.0928955,-0.106445,-0.181946,-0.283569,-0.362213,-0.380615,-0.343018,-0.264771,-0.157532,-0.0453796,0.0675964,0.187805,0.301758,0.377869,0.407654,0.390808,0.3237,0.242035,0.178192,0.147186,0.151215,0.187469,0.236572,0.286865,0.344971,0.40976,0.452362,0.438751,0.375183,0.294312,0.218933,0.162689,0.138336,0.129395,0.113892,0.101868,0.0922241,0.09552,0.114563,0.125854,0.121338,0.102875,0.0835571,0.0777893,0.090332,0.112823,0.13559,0.148193,0.149933,0.151337,0.147125,0.126251,0.0865173,0.0224304,-0.0655823,-0.159271,-0.250946,-0.348267,-0.447266,-0.551086,-0.658813,-0.743439,-0.777466,-0.743256,-0.65976,-0.564056,-0.471222,-0.394165,-0.309479,-0.217194,-0.134979,-0.0877991,-0.117859,-0.201355,-0.291901,-0.342957,-0.330688,-0.282501,-0.204041,-0.108124,-0.00827026,0.105377,0.226105,0.332428,0.402161,0.421082,0.38443,0.324158,0.287933,0.284576,0.308411,0.342163,0.376068,0.409424,0.448151,0.491882,0.52002,0.502502,0.433502,0.345245,0.270538,0.218719,0.202972,0.213013,0.207733,0.188263,0.171967,0.164246,0.167999,0.165375,0.138794,0.0759888,-0.00106812,-0.0554504,-0.0724792,-0.0516052,-0.013031,0.0254517,0.0578613,0.098999,0.144165,0.165497,0.149658,0.0973206,0.000732422,-0.127594,-0.258942,-0.391632,-0.523163,-0.640076,-0.74176,-0.821625,-0.858551,-0.837219,-0.751221,-0.636871,-0.524994,-0.438751,-0.374512,-0.307587,-0.240143,-0.179749,-0.164917,-0.209595,-0.273773,-0.326385,-0.329681,-0.283966,-0.206238,-0.101288,0.0050354,0.115906,0.234039,0.353973,0.460083,0.530212,0.55304,0.527588,0.484528,0.446594,0.426666,0.424438,0.428284,0.435455,0.443237,0.461975,0.487061,0.499146,0.474121,0.415375,0.350403,0.292084,0.246735,0.230865,0.221619,0.193481,0.154694,0.114105,0.0814819,0.0633545,0.0489807,0.0220947,-0.0181885,-0.0532837,-0.0653076,-0.0484619,-0.0157776,0.0212708,0.048645,0.0640259,0.0709534,0.0647583,0.0362549,-0.00906372,-0.0683899,-0.1492,-0.246307,-0.353363,-0.469543,-0.583313,-0.690491,-0.796478,-0.881561,-0.923737,-0.897614,-0.802246,-0.674866,-0.546936,-0.431702,-0.321686,-0.21344,-0.123352,-0.0656433,-0.0648193,-0.119537,-0.195099,-0.24585,-0.238342,-0.179138,-0.0857849,0.0320129,0.152222,0.271088,0.383759,0.483521,0.55365,0.579407,0.556671,0.492767,0.427063,0.388794,0.383087,0.395508,0.415192,0.433502,0.440002,0.450684,0.468079,0.475037,0.436462,0.362762,0.28537,0.228882,0.205994,0.216583,0.234985,0.216522,0.181946,0.142883,0.110474,0.0922241,0.0604858,0.00576782,-0.0681152,-0.137787,-0.178406,-0.182495,-0.157593,-0.117737,-0.0799255,-0.0463867,-0.0162354,0.00811768,0.0179138,0,-0.0523376,-0.146118,-0.261078,-0.377655,-0.490631,-0.596191,-0.690216,-0.776215,-0.837952,-0.846527,-0.787415,-0.669098,-0.529755,-0.405457,-0.303955,-0.220215,-0.138123,-0.068512,-0.0234985,-0.0267029,-0.0869141,-0.161682,-0.208588,-0.203766,-0.144165,-0.0558472,0.0521545,0.157196,0.256104,0.350739,0.435516,0.497681,0.524506,0.502777,0.437256,0.368805,0.328064,0.321014,0.34082,0.381409,0.423431,0.451904,0.472687,0.492828,0.499268,0.465179,0.39325,0.311493,0.24054,0.187317,0.168732,0.173706,0.162354,0.134766,0.0974426,0.0545044,0.0218201,-0.0181274,-0.070343,-0.131134,-0.191345,-0.230011,-0.231537,-0.196045,-0.138336,-0.0787354,-0.0335693,0.00476074,0.0381165,0.056366,0.0539551,0.0292664,-0.0291138,-0.122833,-0.229218,-0.342682,-0.450134,-0.544708,-0.64209,-0.737152,-0.797882,-0.800232,-0.730103,-0.605133,-0.475189,-0.362701,-0.269745,-0.177856,-0.0819397,-0.00576782,0.0281982,-0.00933838,-0.0964355,-0.185974,-0.234985,-0.222229,-0.166931,-0.078125,0.0239563,0.119598,0.227539,0.344116,0.448334,0.511505,0.528015,0.493378,0.428284,0.372772,0.340607,0.331299,0.333893,0.350891,0.372223,0.389343,0.419281,0.444305,0.437408,0.385864,0.319824,0.263245,0.22699,0.221161,0.228333,0.204559,0.152679,0.101807,0.0565186,0.0213318,-0.00759888,-0.0524902,-0.116913,-0.178986,-0.205322,-0.18866,-0.14035,-0.0649109,0.0145569,0.078064,0.129333,0.16449,0.172089,0.146057,0.086853,-0.00256348,-0.124359,-0.246124,-0.35733,-0.459808,-0.547272,-0.628479,-0.707062,-0.765717,-0.781982,-0.741913,-0.656067,-0.556335,-0.465393,-0.384644,-0.300873,-0.19928,-0.0999451,-0.0279236,-0.0171204,-0.0778503,-0.165771,-0.233368,-0.247864,-0.218933,-0.1586,-0.0756531,0.0148315,0.120392,0.245056,0.373627,0.474182,0.524658,0.521912,0.471008,0.406128,0.348877,0.317535,0.304169,0.308258,0.330353,0.361145,0.40921,0.465576,0.505585,0.501434,0.459961,0.402283,0.34021,0.291962,0.269867,0.24646,0.194702,0.131897,0.0800171,0.0481873,0.0360413,0.027771,0.00012207,-0.0471191,-0.091217,-0.112946,-0.102142,-0.0613403,-0.012085,0.0287781,0.0550232,0.074646,0.0794678,0.0672607,0.0359802,-0.0162964,-0.100891,-0.20993,-0.322693,-0.429535,-0.522888,-0.601562,-0.677399,-0.74881,-0.79184,-0.787262,-0.734528,-0.64325,-0.547211,-0.465454,-0.397186,-0.322235,-0.229736,-0.145172,-0.091217,-0.0918274,-0.138123,-0.19751,-0.230743,-0.21579,-0.171143,-0.101196,-0.0110779,0.0787354,0.169861,0.277466,0.3909,0.479614,0.52182,0.51947,0.474457,0.420349,0.384583,0.377319,0.387665,0.409943,0.440491,0.472504,0.509491,0.546783,0.559937,0.527924,0.468414,0.406189,0.341339,0.292145,0.271545,0.249817,0.21109,0.166504,0.127106,0.0990601,0.0760498,0.0394592,-0.0212708,-0.0972595,-0.168671,-0.210022,-0.207855,-0.170624,-0.112549,-0.0563049,-0.0105286,0.025238,0.0479736,0.0462952,0.0115967,-0.0565796,-0.158783,-0.286987,-0.410492,-0.514709,-0.593384,-0.657196,-0.712585,-0.76004,-0.782654,-0.771637,-0.719971,-0.633789,-0.549896,-0.476807,-0.416382,-0.339996,-0.238342,-0.138397,-0.0635681,-0.0506592,-0.0873108,-0.133698,-0.153168,-0.130463,-0.0927429,-0.0400696,0.0221558,0.0894775,0.186584,0.304626,0.427002,0.520294,0.57547,0.587341,0.556183,0.519012,0.491028,0.479889,0.479736,0.483978,0.489471,0.497864,0.518616,0.541901,0.541687,0.501038,0.435242,0.368256,0.311951,0.28183,0.268799,0.240875,0.189484,0.129059,0.0679321,0.0187378,-0.0222168,-0.0735474,-0.146515,-0.225098,-0.289337,-0.311005,-0.277466,-0.209747,-0.139069,-0.0808105,-0.0369263,0.000335693,0.0238953,0.0238953,-0.00582886,-0.066925,-0.16095,-0.270203,-0.378998,-0.478546,-0.558624,-0.630493,-0.700562,-0.762787,-0.793121,-0.785461,-0.728882,-0.638947,-0.549469,-0.467468,-0.386108,-0.281158,-0.15979,-0.0546265,0.012207,0.0114746,-0.037323,-0.100342,-0.138519,-0.136322,-0.108917,-0.0477905,0.0326843,0.128723,0.254364,0.398529,0.542755,0.651245,0.708221,0.705261,0.648804,0.572845,0.50592,0.456604,0.421356,0.401611,0.399078,0.410767,0.437744,0.471283,0.485718,0.458862,0.406067,0.348206,0.287872,0.238342,0.19577,0.136261,0.0679321,0.00515747,-0.0402832,-0.0631714,-0.078064,-0.105377,-0.157532,-0.221893,-0.270538,-0.278809,-0.245239,-0.186707,-0.122559,-0.0638428,-0.0124207,0.0326233,0.0656433,0.0720215,0.038269,-0.0357056,-0.14563,-0.269684,-0.390625,-0.499146,-0.588409,-0.663788,-0.730011,-0.785187,-0.805115,-0.779968,-0.703308,-0.598602,-0.498871,-0.409332,-0.328278,-0.230957,-0.120605,-0.024353,0.0298767,0.0185242,-0.0350952,-0.0875244,-0.0990601,-0.0671082,-0.0147705,0.0557861,0.132416,0.215973,0.322144,0.443176,0.557678,0.632629,0.659546,0.626129,0.544769,0.462982,0.399811,0.359344,0.336792,0.331879,0.341339,0.36377,0.406311,0.454315,0.475037,0.450287,0.393158,0.331024,0.272095,0.229523,0.194824,0.142029,0.0748291,0.0100098,-0.0336304,-0.0540161,-0.0673218,-0.0958557,-0.144501,-0.197937,-0.232758,-0.22644,-0.188202,-0.137848,-0.0924072,-0.0578613,-0.0369873,-0.0224304,-0.013092,-0.0170593,-0.0396729,-0.09021,-0.171021,-0.272278,-0.371094,-0.454163,-0.520569,-0.58606,-0.661285,-0.735382,-0.785461,-0.78775,-0.729218,-0.626404,-0.520142,-0.420349,-0.320496,-0.203888,-0.0697937,0.0516663,0.125916,0.121216,0.0505371,-0.0381165,-0.0945129,-0.103424,-0.0758362,-0.0216675,0.0473938,0.129395,0.246063,0.388123,0.52713,0.629761,0.67337,0.64325,0.56076,0.466248,0.395172,0.354431,0.33847,0.340332,0.348541,0.371094,0.4133,0.465851,0.492706,0.471436,0.4086,0.330627,0.258118,0.207794,0.177734,0.138245,0.085907,0.0306091,-0.00531006,-0.0157776,-0.024353,-0.0599976,-0.130219,-0.222412,-0.29599,-0.321014,-0.298187,-0.241028,-0.172821,-0.106171,-0.0423584,0.0212097,0.0734253,0.0927429,0.0664978,-0.00939941,-0.128448,-0.271362,-0.415039,-0.532898,-0.619202,-0.686615,-0.744324,-0.789764,-0.800751,-0.768494,-0.67453,-0.554321,-0.447937,-0.360809,-0.285858,-0.18866,-0.0757141,0.0259094,0.0832825,0.0628967,0.00314331,-0.0542297,-0.0748291,-0.0579224,-0.0209961,0.03302,0.0951843,0.175049,0.290222,0.417999,0.540283,0.627686,0.662506,0.636932,0.5672,0.493225,0.433228,0.393646,0.37027,0.357941,0.355652,0.366852,0.404053,0.443451,0.453979,0.420288,0.361969,0.306183,0.260223,0.23114,0.194916,0.137787,0.0737,0.0123596,-0.0284424,-0.0569763,-0.0920715,-0.143097,-0.213837,-0.280823,-0.319824,-0.312958,-0.263489,-0.192902,-0.119934,-0.0596008,-0.0117493,0.0287781,0.0574646,0.0548401,0.00906372,-0.0782471,-0.197998,-0.327606,-0.446991,-0.548401,-0.63089,-0.699677,-0.758759,-0.802246,-0.806335,-0.75882,-0.653442,-0.522827,-0.399597,-0.297852,-0.204987,-0.098114,0.0106812,0.102356,0.138336,0.0970459,0.015564,-0.0536194,-0.0773926,-0.0567017,-0.00744629,0.0589294,0.130005,0.220947,0.338348,0.469543,0.583588,0.652649,0.665405,0.61264,0.528412,0.448822,0.386261,0.345032,0.3237,0.318939,0.326324,0.354248,0.399414,0.438477,0.442688,0.406525,0.349335,0.291626,0.243561,0.208191,0.167725,0.107788,0.0357056,-0.0305481,-0.0721436,-0.0977173,-0.123077,-0.170288,-0.236328,-0.297791,-0.325775,-0.303284,-0.24472,-0.172211,-0.105988,-0.0532227,-0.0105896,0.0232239,0.0418701,0.0313416,-0.0161743,-0.0978699,-0.211334,-0.332825,-0.447815,-0.543091,-0.618805,-0.684937,-0.742645,-0.780029,-0.773254,-0.713165,-0.596008,-0.457001,-0.333649,-0.232025,-0.13147,-0.0226135,0.0803528,0.156189,0.1633,0.0962524,-0.000549316,-0.0747681,-0.0961914,-0.074646,-0.0250244,0.0390625,0.114288,0.216248,0.346375,0.479614,0.581635,0.634369,0.628357,0.565918,0.483582,0.411438,0.35907,0.328278,0.31311,0.308533,0.321136,0.355255,0.404236,0.436401,0.426453,0.374786,0.310211,0.256378,0.221954,0.194977,0.146179,0.0735474,-0.000213623,-0.0567017,-0.0869751,-0.103363,-0.126648,-0.176239,-0.236908,-0.28537,-0.295654,-0.25827,-0.194641,-0.126312,-0.0692749,-0.0195923,0.0233459,0.0582581,0.0755615,0.0547791,-0.00967407,-0.113953,-0.240204,-0.369934,-0.490204,-0.591766,-0.672241,-0.733185,-0.773315,-0.77713,-0.730774,-0.625732,-0.483368,-0.349152,-0.243042,-0.159454,-0.0792542,0.00234985,0.0748901,0.104309,0.0611572,-0.02771,-0.107391,-0.138123,-0.117462,-0.0657654,-0.0015564,0.069397,0.15564,0.264313,0.386871,0.496399,0.567596,0.592651,0.565308,0.503906,0.437927,0.388794,0.361023,0.350555,0.35141,0.354187,0.364777,0.388336,0.421417,0.429199,0.398254,0.33847,0.276062,0.2341,0.207123,0.185516,0.145721,0.0860291,0.0179138,-0.0307312,-0.0586548,-0.0789185,-0.112701,-0.170685,-0.229065,-0.270081,-0.265594,-0.216034,-0.147186,-0.0775146,-0.0241089,0.0126038,0.0357666,0.0497437,0.0396729,-0.00570679,-0.086853,-0.201813,-0.332977,-0.458344,-0.555939,-0.628204,-0.684601,-0.732513,-0.76123,-0.753571,-0.694305,-0.582428,-0.45224,-0.333435,-0.24295,-0.165771,-0.0775757,0.00985718,0.0794067,0.0863037,0.0255127,-0.0627441,-0.133148,-0.150665,-0.120056,-0.0612183,0.00878906,0.085907,0.185974,0.313782,0.44928,0.560425,0.627472,0.639404,0.599548,0.523651,0.451752,0.401215,0.373901,0.361694,0.355316,0.355194,0.36618,0.3992,0.424713,0.423157,0.388885,0.334564,0.279999,0.237854,0.211212,0.177063,0.124084,0.0637512,0.0131531,-0.0227661,-0.0498657,-0.0796814,-0.127594,-0.190063,-0.246979,-0.273102,-0.255188,-0.205719,-0.146179,-0.0905457,-0.046051,-0.0128174,0.0122681,0.0184631,-0.00463867,-0.0663757,-0.166656,-0.296509,-0.432495,-0.552643,-0.643433,-0.705658,-0.749817,-0.7789,-0.783173,-0.740845,-0.635254,-0.489197,-0.344452,-0.234711,-0.162903,-0.098114,-0.0261841,0.0503235,0.0883789,0.0547791,-0.0306702,-0.113281,-0.143555,-0.113953,-0.0488586,0.020813,0.0914917,0.177521,0.285919,0.41156,0.524719,0.60257,0.632843,0.61377,0.556519,0.491547,0.440948,0.410095,0.396179,0.391632,0.386932,0.382233,0.393829,0.41687,0.422028,0.390137,0.33432,0.281219,0.245178,0.227325,0.204651,0.160004,0.0941772,0.0299988,-0.0185242,-0.052948,-0.0873108,-0.144623,-0.221832,-0.287598,-0.319061,-0.305969,-0.257111,-0.188263,-0.124634,-0.0757751,-0.0387878,-0.0106812,0.0017395,-0.0181885,-0.0720825,-0.158539,-0.274963,-0.405518,-0.524231,-0.611511,-0.665649,-0.701172,-0.730774,-0.746948,-0.7229,-0.635132,-0.500885,-0.361145,-0.248138,-0.175171,-0.112366,-0.0328064,0.0569763,0.11618,0.0967712,0.0185242,-0.0676575,-0.112946,-0.100464,-0.0539551,0.00012207,0.0505371,0.119934,0.220551,0.345581,0.473633,0.573029,0.629883,0.635864,0.601959,0.546875,0.494781,0.460876,0.439209,0.415863,0.380219,0.345795,0.337921,0.355774,0.367859,0.350067,0.306122,0.263092,0.238922,0.233551,0.221283,0.176849,0.100555,0.016571,-0.0498657,-0.0992737,-0.142426,-0.189209,-0.247925,-0.298401,-0.318817,-0.294495,-0.231201,-0.149994,-0.0787354,-0.0307922,-0.00280762,0.0138855,0.0188599,-0.00201416,-0.0517578,-0.132812,-0.243896,-0.368866,-0.485321,-0.57666,-0.64035,-0.687012,-0.722565,-0.745056,-0.731506,-0.65332,-0.52063,-0.374512,-0.250336,-0.160675,-0.0867004,-0.00289917,0.0826721,0.132904,0.106781,0.0189209,-0.0748901,-0.131805,-0.13269,-0.0891418,-0.0328064,0.028595,0.10733,0.216034,0.347137,0.471771,0.571686,0.622894,0.618408,0.573364,0.510742,0.454773,0.41687,0.39679,0.375977,0.348938,0.326111,0.324432,0.344299,0.352417,0.336243,0.293915,0.248474,0.222076,0.214844,0.205902,0.171539,0.108673,0.041687,-0.0105286,-0.0463867,-0.0810242,-0.130066,-0.191498,-0.24939,-0.274719,-0.255371,-0.200134,-0.128052,-0.0604858,-0.0105896,0.0213318,0.0405273,0.0433044,0.0163879,-0.045166,-0.139404,-0.25946,-0.393646,-0.517059,-0.613251,-0.67807,-0.725586,-0.760162,-0.773102,-0.737885,-0.630951,-0.475861,-0.324371,-0.210754,-0.135101,-0.0606079,0.0294495,0.116394,0.149139,0.0906677,-0.028656,-0.135254,-0.175568,-0.153564,-0.102142,-0.0526733,-0.00430298,0.0708618,0.184448,0.321228,0.443848,0.529144,0.563843,0.546722,0.498199,0.450073,0.416443,0.405182,0.408325,0.406189,0.389221,0.374725,0.385651,0.406403,0.403046,0.360352,0.296783,0.245911,0.230194,0.238007,0.2323,0.196167,0.132019,0.0728149,0.0313416,0.00274658,-0.0348206,-0.102966,-0.182892,-0.248474,-0.271606,-0.246582,-0.189148,-0.11673,-0.0553589,-0.012146,0.0191345,0.036499,0.0360413,0.00476074,-0.0639648,-0.166718,-0.297943,-0.433563,-0.55545,-0.64621,-0.707001,-0.753998,-0.789032,-0.789886,-0.726257,-0.593903,-0.43042,-0.282776,-0.184113,-0.116058,-0.0385132,0.0551758,0.12793,0.119659,0.0266418,-0.103882,-0.200287,-0.220947,-0.186035,-0.136322,-0.0899963,-0.0306702,0.0635681,0.191498,0.331818,0.450287,0.532227,0.565582,0.552917,0.516113,0.477325,0.459747,0.463837,0.468475,0.457397,0.427856,0.410217,0.41452,0.421692,0.404053,0.351746,0.288391,0.256714,0.263641,0.27597,0.262085,0.204773,0.129395,0.0622864,0.0142822,-0.0240173,-0.0805969,-0.159332,-0.236237,-0.284241,-0.277527,-0.221893,-0.140747,-0.0634155,-0.00738525,0.0302734,0.0489807,0.0528259,0.0322876,-0.0211487,-0.114899,-0.241486,-0.38559,-0.523438,-0.635254,-0.715271,-0.772583,-0.818817,-0.843109,-0.811584,-0.697418,-0.528015,-0.352295,-0.219543,-0.136108,-0.06073,0.0291138,0.115448,0.139069,0.0621643,-0.0767212,-0.201538,-0.254913,-0.234436,-0.17807,-0.120667,-0.0571289,0.0362549,0.16275,0.303436,0.429535,0.519806,0.560364,0.552917,0.518555,0.479156,0.457336,0.464844,0.485596,0.488525,0.467529,0.446045,0.447723,0.455048,0.438599,0.383759,0.304718,0.252747,0.253082,0.273773,0.27182,0.225983,0.156036,0.0920105,0.0430298,0.00357056,-0.0512695,-0.129791,-0.212158,-0.271149,-0.283447,-0.244781,-0.173096,-0.0920105,-0.0263672,0.0189819,0.0434265,0.0493164,0.0366516,-0.00799561,-0.0940857,-0.216583,-0.361816,-0.506042,-0.629364,-0.720428,-0.78714,-0.83432,-0.853119,-0.819824,-0.708466,-0.543243,-0.367126,-0.226257,-0.134094,-0.0507507,0.0404053,0.119873,0.137177,0.0600586,-0.0736389,-0.194305,-0.245178,-0.229462,-0.183228,-0.137909,-0.0819397,0.0088501,0.133972,0.274963,0.395172,0.481964,0.524841,0.523651,0.49646,0.459961,0.444794,0.45929,0.484436,0.490814,0.471222,0.445801,0.446381,0.45813,0.449005,0.398132,0.318939,0.265839,0.263824,0.287323,0.289551,0.242889,0.166595,0.0959778,0.045105,0.00436401,-0.0524902,-0.13443,-0.218048,-0.273895,-0.279816,-0.23584,-0.159607,-0.078186,-0.0157776,0.0278625,0.0527649,0.0639648,0.0559692,0.0167236,-0.0649719,-0.186707,-0.331085,-0.476471,-0.601898,-0.703186,-0.788269,-0.852448,-0.878693,-0.837067,-0.713104,-0.540283,-0.362762,-0.222504,-0.119385,-0.0183105,0.0878601,0.163818,0.152161,0.0409546,-0.11438,-0.230804,-0.272095,-0.252838,-0.211334,-0.17337,-0.115295,-0.0128784,0.127716,0.278748,0.397247,0.472107,0.499542,0.486603,0.456055,0.42276,0.417542,0.440277,0.469208,0.474243,0.457336,0.444366,0.448944,0.454773,0.431549,0.371613,0.298798,0.266174,0.282288,0.307465,0.302155,0.24939,0.176788,0.116119,0.0691223,0.0177917,-0.0583801,-0.156189,-0.242096,-0.283783,-0.266052,-0.199402,-0.105988,-0.0159607,0.0528259,0.0973206,0.117065,0.116974,0.094696,0.0331421,-0.0714111,-0.213776,-0.372559,-0.523041,-0.643433,-0.739899,-0.81955,-0.871918,-0.873505,-0.794312,-0.645599,-0.475372,-0.320007,-0.207916,-0.10022,0.0194092,0.130341,0.173157,0.099884,-0.0509338,-0.201141,-0.279083,-0.281616,-0.252167,-0.226044,-0.199738,-0.122742,0.00991821,0.171417,0.315521,0.412354,0.457733,0.45694,0.431152,0.396332,0.37149,0.380157,0.408539,0.429626,0.432709,0.429199,0.44397,0.468994,0.472778,0.429016,0.351074,0.296448,0.293579,0.322021,0.333496,0.29483,0.224518,0.159729,0.12262,0.0953674,0.0422058,-0.0469055,-0.151825,-0.225922,-0.240417,-0.201202,-0.124756,-0.0426331,0.0246277,0.077179,0.108246,0.123749,0.120331,0.0834961,0.00396729,-0.118591,-0.274048,-0.436249,-0.576935,-0.694916,-0.795197,-0.867828,-0.8927,-0.838623,-0.705261,-0.533905,-0.366119,-0.241028,-0.132416,-0.0124817,0.106445,0.168335,0.11618,-0.0311279,-0.203705,-0.313568,-0.338745,-0.3125,-0.279419,-0.256195,-0.193634,-0.0733032,0.0918884,0.256714,0.374451,0.429535,0.424927,0.398865,0.366455,0.351227,0.36203,0.390961,0.40976,0.410431,0.412445,0.431488,0.467133,0.483429,0.446655,0.369202,0.303101,0.297607,0.341156,0.375122,0.353241,0.285034,0.211609,0.171204,0.14563,0.0971069,0.00256348,-0.119934,-0.215698,-0.24765,-0.20993,-0.125702,-0.0315552,0.045166,0.099884,0.132141,0.150818,0.154846,0.121735,0.0332947,-0.10556,-0.275513,-0.442291,-0.578339,-0.683929,-0.774994,-0.840363,-0.85498,-0.788147,-0.654327,-0.487122,-0.339203,-0.23819,-0.151093,-0.0515442,0.0502625,0.0969238,0.0420227,-0.0926819,-0.243286,-0.332092,-0.348724,-0.320892,-0.29068,-0.266388,-0.204773,-0.094574,0.0521545,0.20047,0.319214,0.385986,0.39801,0.381287,0.349823,0.337738,0.360138,0.397247,0.422821,0.419891,0.411438,0.420898,0.44519,0.456055,0.425323,0.360352,0.310425,0.309326,0.345795,0.37439,0.351959,0.289459,0.22821,0.187714,0.156708,0.100067,0.00302124,-0.108734,-0.187714,-0.205566,-0.16684,-0.0899353,-0.00314331,0.0722961,0.127716,0.156311,0.1651,0.153168,0.111023,0.0233459,-0.11377,-0.289276,-0.466675,-0.610504,-0.715515,-0.784515,-0.818024,-0.79364,-0.701294,-0.558685,-0.401886,-0.275726,-0.181824,-0.0942993,-0.00631714,0.0536194,0.0326843,-0.069519,-0.213776,-0.330627,-0.375183,-0.367737,-0.341827,-0.317596,-0.273102,-0.179077,-0.0426941,0.102814,0.228058,0.312164,0.351501,0.365051,0.360962,0.351685,0.351685,0.370361,0.397736,0.410217,0.410828,0.410431,0.417389,0.415253,0.389465,0.337402,0.287445,0.27713,0.309998,0.353363,0.356995,0.30954,0.244293,0.200867,0.175171,0.142151,0.0722046,-0.0316772,-0.127533,-0.169281,-0.148193,-0.0753174,0.0111389,0.0851746,0.142548,0.1745,0.187805,0.180084,0.14505,0.0747681,-0.0412903,-0.202148,-0.382843,-0.54599,-0.671295,-0.74762,-0.778015,-0.755402,-0.676605,-0.555328,-0.409668,-0.275574,-0.169067,-0.0832825,-0.0114746,0.0346985,0.0143738,-0.077179,-0.205841,-0.32016,-0.376526,-0.379272,-0.357056,-0.336792,-0.302368,-0.225769,-0.106567,0.0238342,0.139404,0.226257,0.274628,0.305115,0.323578,0.335999,0.353241,0.379608,0.410095,0.423248,0.414917,0.394318,0.377197,0.361145,0.335327,0.286591,0.231476,0.214233,0.251343,0.313904,0.345459,0.320557,0.26532,0.218262,0.186188,0.155365,0.090332,-0.0151672,-0.11203,-0.153442,-0.124573,-0.0465088,0.0454407,0.127655,0.19342,0.234772,0.246979,0.233154,0.191406,0.11496,-0.00765991,-0.173828,-0.362976,-0.535309,-0.666534,-0.73996,-0.755188,-0.712158,-0.624176,-0.501831,-0.358337,-0.228271,-0.120605,-0.0343018,0.0276489,0.0496521,0.00570679,-0.0963745,-0.224091,-0.325989,-0.373962,-0.374847,-0.355652,-0.340546,-0.314972,-0.249817,-0.138855,-0.0161743,0.0890503,0.153961,0.185913,0.215027,0.256317,0.308411,0.351501,0.384857,0.405457,0.413422,0.4133,0.404572,0.377136,0.32666,0.263916,0.20047,0.161011,0.16806,0.21814,0.274719,0.299286,0.28009,0.243835,0.213562,0.189728,0.156372,0.0793457,-0.0312195,-0.116516,-0.136383,-0.0848999,0.00827026,0.104218,0.177307,0.23349,0.27417,0.29483,0.28244,0.223969,0.121155,-0.0220947,-0.189148,-0.36322,-0.52533,-0.644196,-0.707947,-0.705383,-0.645264,-0.545715,-0.420013,-0.290558,-0.17337,-0.0718079,0.00704956,0.0534363,0.0428772,-0.0273743,-0.133575,-0.240814,-0.316803,-0.348602,-0.349335,-0.340424,-0.326172,-0.298187,-0.233154,-0.14035,-0.0438232,0.0396118,0.0881958,0.115906,0.147461,0.197662,0.263153,0.328003,0.379395,0.404114,0.405518,0.394165,0.378387,0.344849,0.292419,0.227661,0.164764,0.13382,0.154694,0.213104,0.26358,0.272888,0.241486,0.196991,0.162964,0.135315,0.094635,0.0142822,-0.0806885,-0.134369,-0.118805,-0.0357056,0.0779114,0.179596,0.251617,0.295776,0.318146,0.321411,0.294983,0.226654,0.108398,-0.0528259,-0.236847,-0.415985,-0.554047,-0.632111,-0.641754,-0.596405,-0.521912,-0.425262,-0.3172,-0.202423,-0.0889282,0.000549316,0.045166,0.0324707,-0.03302,-0.128265,-0.216705,-0.282562,-0.321136,-0.33725,-0.335327,-0.3172,-0.281342,-0.224304,-0.150085,-0.0833435,-0.0230103,0.0235596,0.0550232,0.0875244,0.131073,0.185974,0.240082,0.29007,0.330811,0.357117,0.371155,0.36734,0.338867,0.281158,0.216461,0.165436,0.145111,0.157776,0.194031,0.227722,0.232971,0.214233,0.182098,0.147186,0.107788,0.0620728,-0.0071106,-0.085022,-0.127716,-0.113495,-0.0430908,0.0600586,0.161682,0.245636,0.306396,0.343445,0.353027,0.328674,0.26297,0.156982,0.0147095,-0.151825,-0.319946,-0.464233,-0.560028,-0.586945,-0.555267,-0.483856,-0.387115,-0.281769,-0.175446,-0.0724792,0.0117493,0.0584717,0.0415344,-0.0299988,-0.132416,-0.226379,-0.291962,-0.327515,-0.3396,-0.338745,-0.322235,-0.284973,-0.221344,-0.138519,-0.0644226,-0.00698853,0.025238,0.0454407,0.0668335,0.105835,0.16095,0.216248,0.261292,0.287781,0.297119,0.299011,0.294647,0.275726,0.230194,0.174774,0.124298,0.108185,0.134644,0.189667,0.236115,0.245117,0.22229,0.185516,0.14563,0.0963745,0.0314026,-0.053009,-0.132568,-0.169678,-0.147186,-0.069458,0.0420837,0.157776,0.257324,0.329865,0.367798,0.376251,0.35022,0.28067,0.174042,0.0287781,-0.139404,-0.302216,-0.428955,-0.503296,-0.513519,-0.471771,-0.398407,-0.309875,-0.222687,-0.131287,-0.0440979,0.0266418,0.0579834,0.0298767,-0.0484009,-0.148804,-0.233704,-0.286865,-0.307465,-0.31076,-0.307068,-0.293091,-0.262085,-0.208344,-0.140472,-0.0744324,-0.0231018,0.00900269,0.0314636,0.0596008,0.107513,0.177643,0.245972,0.293976,0.316589,0.316132,0.299011,0.267853,0.215027,0.14209,0.0630798,0.0126038,0.0151672,0.0609436,0.128998,0.191833,0.220154,0.223511,0.209534,0.178802,0.124237,0.0453186,-0.0531616,-0.144562,-0.192169,-0.174713,-0.0950317,0.0170593,0.130737,0.231293,0.306519,0.355652,0.378143,0.358734,0.290558,0.168274,0.0085144,-0.164093,-0.315918,-0.42215,-0.467865,-0.452301,-0.395996,-0.315369,-0.228943,-0.141754,-0.0560303,0.0151062,0.0557861,0.04953,-0.00549316,-0.0888062,-0.171814,-0.230957,-0.258667,-0.263428,-0.259613,-0.253082,-0.2388,-0.21402,-0.174164,-0.129272,-0.0861816,-0.0593262,-0.0413513,-0.0137634,0.0401917,0.12149,0.214111,0.292969,0.341675,0.356659,0.350891,0.321625,0.269745,0.187592,0.0882568,-0.0062561,-0.0628967,-0.06073,-0.012085,0.057251,0.115387,0.150757,0.161804,0.156708,0.138672,0.0979919,0.0283813,-0.0575867,-0.125702,-0.150543,-0.120331,-0.045166,0.0518799,0.141876,0.218872,0.277863,0.314453,0.322968,0.292969,0.215454,0.0932922,-0.0595398,-0.207581,-0.323975,-0.388672,-0.395325,-0.360809,-0.300201,-0.225098,-0.141266,-0.0518799,0.0231628,0.0657654,0.0614014,0.0104065,-0.06604,-0.139679,-0.193756,-0.225433,-0.233032,-0.225311,-0.20993,-0.187469,-0.160217,-0.132568,-0.106781,-0.0881958,-0.0775757,-0.073822,-0.0626831,-0.0301208,0.0351562,0.124176,0.215973,0.296173,0.350677,0.377716,0.37149,0.328735,0.249664,0.147064,0.0462952,-0.0296631,-0.0621643,-0.0535583,-0.0172424,0.0185852,0.0467834,0.0646973,0.0731506,0.0704041,0.0481873,0.0038147,-0.0570374,-0.11026,-0.127441,-0.0965271,-0.0252991,0.0618286,0.141693,0.200134,0.238464,0.259125,0.261566,0.235046,0.174835,0.0776672,-0.0483093,-0.179535,-0.282562,-0.338593,-0.337402,-0.296265,-0.229218,-0.15451,-0.0823669,-0.0143738,0.0414734,0.0720825,0.06604,0.0184021,-0.0565186,-0.133911,-0.190552,-0.21637,-0.214691,-0.195709,-0.167786,-0.137329,-0.108063,-0.0834961,-0.0628357,-0.0564575,-0.0627441,-0.0706787,-0.0667725,-0.040741,0.00985718,0.0835571,0.164703,0.2453,0.30899,0.34671,0.353912,0.325989,0.259338,0.166931,0.0729675,0.000335693,-0.0356445,-0.0342407,-0.00750732,0.0233459,0.0447693,0.0502625,0.0410156,0.0141602,-0.0313416,-0.0916748,-0.160004,-0.204224,-0.208527,-0.164307,-0.0761108,0.0351562,0.143768,0.232361,0.289124,0.314514,0.302948,0.253967,0.168182,0.0484619,-0.0898132,-0.219482,-0.317719,-0.359863,-0.341675,-0.274445,-0.183502,-0.0906677,-0.00671387,0.065979,0.118134,0.132416,0.0965881,0.0185852,-0.0792542,-0.163422,-0.212891,-0.226532,-0.211609,-0.177399,-0.134491,-0.0914001,-0.0509949,-0.0212708,-0.0088501,-0.0114136,-0.0296631,-0.0497437,-0.0522766,-0.0273743,0.0298767,0.105377,0.181427,0.244507,0.287537,0.310333,0.306396,0.271362,0.205841,0.120544,0.0334167,-0.0272522,-0.040802,-0.012207,0.037323,0.0749817,0.0841675,0.0704041,0.0411987,0.0050354,-0.0481873,-0.130402,-0.218811,-0.280762,-0.284973,-0.229675,-0.134583,-0.025177,0.0777893,0.168732,0.242096,0.283691,0.285919,0.248596,0.167175,0.0508118,-0.08255,-0.202087,-0.284241,-0.312958,-0.293976,-0.244049,-0.175049,-0.0899963,0.00592041,0.0972595,0.155579,0.158447,0.103424,0.0135498,-0.0808716,-0.153015,-0.197174,-0.217377,-0.21283,-0.18335,-0.132904,-0.0707397,-0.0118713,0.027771,0.0422058,0.0350342,0.0219421,0.00946045,0.0115356,0.0351562,0.0828857,0.144379,0.208405,0.264587,0.299011,0.306183,0.280945,0.2229,0.136108,0.0423584,-0.0367126,-0.0761719,-0.0700684,-0.0293884,0.0218811,0.0584717,0.0818787,0.0851746,0.0667725,0.0180664,-0.0603333,-0.158203,-0.248932,-0.29953,-0.29303,-0.233429,-0.136993,-0.0299377,0.065979,0.140411,0.188324,0.207123,0.197266,0.14975,0.0648193,-0.0488586,-0.160339,-0.23819,-0.270203,-0.258545,-0.215515,-0.148651,-0.0683899,0.0181274,0.0973206,0.153503,0.170197,0.139404,0.0700073,-0.0214844,-0.110687,-0.179138,-0.218262,-0.224701,-0.202759,-0.15979,-0.100677,-0.0349731,0.0241699,0.0645752,0.0783997,0.0719604,0.0603333,0.0589294,0.0812683,0.119324,0.168732,0.219147,0.264923,0.299805,0.319611,0.308868,0.258606,0.172821,0.0713501,-0.0227661,-0.0889893,-0.11438,-0.098938,-0.0558472,-0.00531006,0.0363159,0.0546875,0.0557861,0.0368347,-0.0114746,-0.0896606,-0.184692,-0.267334,-0.302216,-0.272888,-0.189941,-0.0885315,0.00390625,0.0770569,0.133087,0.168121,0.169861,0.12854,0.0444336,-0.0720825,-0.191742,-0.28537,-0.329132,-0.315582,-0.257202,-0.169739,-0.0756531,0.0195312,0.112946,0.194702,0.245972,0.240814,0.171875,0.0592041,-0.0551147,-0.141418,-0.189606,-0.210541,-0.213226,-0.196106,-0.157196,-0.0966492,-0.0256348,0.0316162,0.0639038,0.0739746,0.0770569,0.0878601,0.118591,0.164154,0.2229,0.28363,0.337189,0.368683,0.371948,0.346375,0.292084,0.20993,0.103149,-0.00531006,-0.0961914,-0.138,-0.128723,-0.0864563,-0.0387878,-0.00482178,0.0154419,0.0231628,0.0171814,-0.0209961,-0.094635,-0.18631,-0.261627,-0.294922,-0.279755,-0.220154,-0.131683,-0.0330811,0.0582581,0.127991,0.164368,0.165833,0.127716,0.0493164,-0.0638428,-0.190887,-0.299469,-0.363892,-0.37149,-0.334503,-0.263824,-0.168945,-0.0567932,0.0654907,0.166504,0.228729,0.237122,0.201691,0.13504,0.0545654,-0.0232849,-0.0921631,-0.139252,-0.161804,-0.157043,-0.133972,-0.0991211,-0.0627441,-0.0304565,-0.00408936,0.0125427,0.0283203,0.0524292,0.101013,0.171631,0.254425,0.3349,0.402283,0.447327,0.460083,0.435791,0.371277,0.265991,0.141754,0.0185852,-0.0823669,-0.141754,-0.155518,-0.128052,-0.0803528,-0.027771,0.00799561,0.0159607,0.00106812,-0.0410156,-0.109467,-0.19397,-0.272705,-0.315125,-0.308258,-0.249603,-0.158264,-0.0574646,0.0345764,0.106781,0.151276,0.159271,0.126251,0.0505371,-0.061615,-0.181213,-0.283905,-0.34787,-0.365784,-0.338074,-0.272156,-0.187805,-0.0905457,0.0136108,0.103027,0.163239,0.175568,0.142029,0.0783386,0.0104065,-0.0448914,-0.0800171,-0.0944214,-0.0917358,-0.0757751,-0.0477295,-0.0147705,0.0135498,0.025177,0.0220032,0.00973511,0.00134277,0.0118713,0.0509949,0.121155,0.218048,0.322571,0.414856,0.479004,0.506714,0.489868,0.433563,0.335846,0.208069,0.0629578,-0.0644226,-0.143372,-0.165039,-0.141602,-0.0972595,-0.0512085,-0.0184021,0.00228882,-0.00146484,-0.0363159,-0.100891,-0.18512,-0.268127,-0.317932,-0.314117,-0.257263,-0.165649,-0.0645752,0.0228882,0.0881958,0.126587,0.131561,0.0999451,0.025177,-0.0870361,-0.207245,-0.304169,-0.35376,-0.351746,-0.306641,-0.234894,-0.149658,-0.0549622,0.0354309,0.105774,0.139923,0.12793,0.0734863,-0.0017395,-0.0726929,-0.123901,-0.145111,-0.136322,-0.105042,-0.057251,-0.00424194,0.0465088,0.0822144,0.0960388,0.0833435,0.0551147,0.0292664,0.0216675,0.0524292,0.119659,0.212219,0.313293,0.403381,0.472015,0.510345,0.508484,0.456329,0.355774,0.218384,0.0708618,-0.0497437,-0.121613,-0.141693,-0.126312,-0.101013,-0.0730896,-0.0391235,-0.0110779,-0.00717163,-0.0424805,-0.116638,-0.207062,-0.27478,-0.296051,-0.27417,-0.220276,-0.144958,-0.0602112,0.021759,0.0898743,0.123505,0.111023,0.0575867,-0.0310059,-0.13913,-0.2435,-0.319611,-0.349609,-0.336578,-0.287872,-0.216309,-0.122345,-0.0189209,0.0763855,0.139252,0.152008,0.114716,0.0450439,-0.0341492,-0.104706,-0.157104,-0.183014,-0.183838,-0.151611,-0.0913391,-0.0205994,0.0406799,0.0832214,0.10141,0.098114,0.0861816,0.074646,0.0765076,0.106445,0.16391,0.244507,0.333099,0.406403,0.457184,0.482025,0.477142,0.428802,0.328949,0.195099,0.0649109,-0.0313416,-0.0841064,-0.101196,-0.107849,-0.106567,-0.0862427,-0.0519409,-0.0255737,-0.0293884,-0.078125,-0.156982,-0.229675,-0.26651,-0.26593,-0.231537,-0.169952,-0.0934143,-0.0159607,0.0564575,0.107574,0.123291,0.0930786,0.0132141,-0.100342,-0.214355,-0.298737,-0.339355,-0.339478,-0.310608,-0.258545,-0.181824,-0.0765686,0.0327454,0.118988,0.154236,0.134247,0.0788574,0.0105286,-0.0568542,-0.11618,-0.160126,-0.186249,-0.180878,-0.140411,-0.0801392,-0.0157776,0.0339661,0.0599365,0.0640869,0.0578003,0.0553589,0.0667114,0.10376,0.164154,0.235382,0.310883,0.378723,0.437134,0.473175,0.472961,0.424103,0.331146,0.214447,0.103821,0.0205994,-0.0305481,-0.0595398,-0.0761719,-0.0816956,-0.0690613,-0.0443115,-0.0264587,-0.0325623,-0.0708618,-0.132416,-0.200958,-0.247986,-0.261749,-0.241089,-0.190216,-0.121887,-0.0461731,0.0267944,0.0847778,0.115173,0.105652,0.0502014,-0.0446472,-0.154968,-0.249725,-0.311157,-0.334381,-0.322296,-0.279144,-0.206909,-0.10968,-0.00717163,0.0785217,0.128448,0.132141,0.100616,0.0470581,-0.0176392,-0.0830078,-0.133759,-0.161346,-0.16095,-0.134491,-0.0926208,-0.0463867,-0.00396729,0.0267029,0.0379944,0.0303345,0.0200806,0.0241699,0.0549622,0.11557,0.197388,0.283966,0.367676,0.441437,0.493439,0.504242,0.462494,0.370605,0.247986,0.121399,0.0157776,-0.0593872,-0.104645,-0.119537,-0.112701,-0.0856323,-0.0496521,-0.0215454,-0.0149536,-0.0414734,-0.089386,-0.150085,-0.202362,-0.229218,-0.227112,-0.196381,-0.141602,-0.0727539,-0.0012207,0.0589294,0.0938416,0.0932312,0.0508728,-0.0279236,-0.119812,-0.206177,-0.270752,-0.304169,-0.310608,-0.28009,-0.214294,-0.118195,-0.0169067,0.0638428,0.109253,0.118134,0.0939026,0.0495911,-0.00704956,-0.0653687,-0.110016,-0.131073,-0.126312,-0.100616,-0.0586548,-0.0147095,0.0228271,0.0406189,0.0327454,0.00778198,-0.0157166,-0.0214233,0.00308228,0.0567932,0.135712,0.229126,0.327271,0.417664,0.483582,0.509155,0.483856,0.411285,0.303284,0.176788,0.0586548,-0.0357056,-0.0949097,-0.120667,-0.126648,-0.121826,-0.108856,-0.086853,-0.0706787,-0.07724,-0.115448,-0.171753,-0.213287,-0.220551,-0.188812,-0.137909,-0.0837708,-0.0325623,0.0172424,0.0605469,0.0808716,0.065979,0.0124817,-0.0665894,-0.151489,-0.224243,-0.271362,-0.282166,-0.260345,-0.208008,-0.141266,-0.0679321,0.00228882,0.0639648,0.103485,0.10498,0.0690002,0.00765991,-0.057312,-0.107239,-0.131744,-0.130951,-0.113159,-0.0753174,-0.020813,0.0371094,0.0836182,0.10321,0.0905457,0.0571289,0.0200806,-0.00280762,-0.000396729,0.032074,0.0934143,0.176575,0.264832,0.349152,0.417725,0.455109,0.454041,0.406586,0.315186,0.204041,0.0942993,0.0101929,-0.0464478,-0.0838928,-0.110016,-0.123077,-0.119812,-0.107513,-0.10376,-0.122498,-0.166504,-0.214844,-0.24472,-0.246246,-0.218475,-0.165924,-0.0987854,-0.0238342,0.045166,0.0959778,0.110138,0.0873718,0.0245667,-0.0697937,-0.172821,-0.261566,-0.313446,-0.324097,-0.295502,-0.236115,-0.15155,-0.0453186,0.0622864,0.14859,0.186523,0.171814,0.117462,0.0455017,-0.0326233,-0.107056,-0.165985,-0.194916,-0.187469,-0.140594,-0.0667114,0.0125427,0.0822144,0.128326,0.142212,0.126373,0.0973816,0.0752258,0.0711365,0.091217,0.133423,0.187866,0.253357,0.3237,0.385986,0.420074,0.410675,0.353851,0.261749,0.164581,0.0795288,0.0145569,-0.0306702,-0.0636292,-0.085968,-0.0945129,-0.0920715,-0.0935059,-0.108856,-0.142487,-0.195251,-0.247864,-0.278595,-0.277863,-0.241699,-0.177399,-0.102356,-0.0281067,0.038269,0.0903931,0.109924,0.086792,0.0150452,-0.0865173,-0.193756,-0.280762,-0.33316,-0.345581,-0.320618,-0.259003,-0.167511,-0.0563049,0.0540161,0.144287,0.193817,0.19632,0.161285,0.0967102,0.0191345,-0.0578613,-0.116241,-0.148132,-0.155914,-0.134033,-0.0890503,-0.0316772,0.0281067,0.0765686,0.102539,0.106049,0.1008,0.0983887,0.113159,0.14624,0.193634,0.252625,0.313171,0.368347,0.405853,0.416595,0.394836,0.338806,0.250488,0.150482,0.0570374,-0.0104675,-0.0508118,-0.0744324,-0.0922241,-0.101624,-0.0996704,-0.0954285,-0.104492,-0.142883,-0.203888,-0.26062,-0.289215,-0.284424,-0.246857,-0.187653,-0.114502,-0.0308838,0.0473938,0.101349,0.115967,0.0869141,0.0169067,-0.0855103,-0.19928,-0.303955,-0.371368,-0.392426,-0.365448,-0.303955,-0.214569,-0.098053,0.0288696,0.136047,0.201477,0.213348,0.183899,0.125977,0.0575256,-0.0145569,-0.0783997,-0.123688,-0.141815,-0.123077,-0.0774536,-0.0224915,0.0280457,0.065918,0.0879211,0.0951843,0.0956421,0.101471,0.126648,0.172882,0.230621,0.291748,0.346985,0.393158,0.42392,0.430878,0.401031,0.331207,0.231201,0.13089,0.0462952,-0.012146,-0.0483093,-0.0723572,-0.0836792,-0.0834961,-0.0793457,-0.086853,-0.108917,-0.151001,-0.210693,-0.268341,-0.306061,-0.312958,-0.278534,-0.20874,-0.119263,-0.0320129,0.0440369,0.0966492,0.114044,0.0938416,0.0233459,-0.0836182,-0.201477,-0.301086,-0.363373,-0.386108,-0.367065,-0.316528,-0.234039,-0.129456,-0.0213318,0.0708008,0.125244,0.145966,0.137268,0.104431,0.0593262,0.0071106,-0.0337524,-0.0574646,-0.0595398,-0.0430908,-0.0196533,0.00643921,0.0284424,0.0431519,0.0463867,0.041626,0.0456543,0.0667725,0.115631,0.186707,0.266052,0.34613,0.417053,0.468597,0.487732,0.468872,0.410492,0.314453,0.201202,0.0947571,0.0106812,-0.0448914,-0.0744324,-0.0877075,-0.0917358,-0.0828857,-0.0680542,-0.0630188,-0.0820923,-0.133911,-0.202423,-0.257324,-0.279602,-0.272888,-0.242889,-0.199127,-0.136932,-0.0604858,0.019989,0.0720215,0.0820923,0.0448303,-0.0307312,-0.12262,-0.21048,-0.282501,-0.329742,-0.344635,-0.326324,-0.27832,-0.202545,-0.109344,-0.0205383,0.0440979,0.0708008,0.0637512,0.0406189,0.0171814,-0.00631714,-0.0287781,-0.0474548,-0.0535583,-0.0346375,0.00515747,0.0477905,0.078125,0.0856323,0.0751038,0.0545044,0.0403442,0.0393372,0.0585327,0.103821,0.170471,0.253357,0.336914,0.409882,0.46579,0.492767,0.480347,0.421082,0.324036,0.215576,0.117126,0.0444336,-0.00549316,-0.0438843,-0.0751038,-0.0945129,-0.0963745,-0.0950317,-0.102814,-0.135437,-0.18866,-0.240692,-0.269928,-0.266052,-0.235901,-0.183228,-0.120667,-0.0531616,0.0126038,0.065033,0.0855713,0.0634155,0.000610352,-0.094574,-0.198456,-0.286438,-0.343018,-0.364838,-0.353088,-0.310211,-0.240601,-0.145782,-0.0438843,0.0393372,0.0821533,0.0831604,0.0549622,0.0148926,-0.028656,-0.0688477,-0.1008,-0.11496,-0.099884,-0.0596008,-0.00491333,0.0477295,0.0881348,0.106171,0.103088,0.0848999,0.0646362,0.0596619,0.081604,0.129883,0.195984,0.272278,0.349609,0.415863,0.46344,0.475189,0.443024,0.372498,0.273773,0.174164,0.091156,0.0369873,0.00476074,-0.016571,-0.0328979,-0.0406799,-0.0426941,-0.0495911,-0.0769043,-0.133026,-0.210541,-0.275574,-0.304504,-0.2966,-0.257874,-0.19986,-0.127106,-0.0455627,0.0351562,0.0910645,0.108185,0.082428,0.0137634,-0.081604,-0.184692,-0.27478,-0.333771,-0.35553,-0.339935,-0.301819,-0.238464,-0.155243,-0.0644836,0.0151672,0.06073,0.0673828,0.0436401,0.0088501,-0.0264587,-0.0577087,-0.0785217,-0.0904846,-0.0807495,-0.0524902,-0.00933838,0.0317993,0.0578613,0.0674438,0.0620117,0.0502625,0.0420837,0.0503235,0.0899353,0.155304,0.236725,0.319489,0.388397,0.440613,0.472626,0.473694,0.431427,0.344116,0.234375,0.128387,0.0515442,0.00497437,-0.0220947,-0.0430908,-0.0559082,-0.0497437,-0.039856,-0.0391846,-0.062561,-0.118317,-0.185364,-0.240417,-0.265106,-0.255768,-0.215851,-0.161133,-0.101135,-0.0349731,0.0276489,0.0712891,0.0767212,0.037262,-0.039856,-0.135712,-0.219543,-0.279999,-0.312958,-0.317535,-0.295929,-0.249542,-0.177521,-0.0929565,-0.0181885,0.0313416,0.04953,0.0362549,0.00750732,-0.0278625,-0.0595398,-0.0842896,-0.101868,-0.100739,-0.0763245,-0.0354309,0.0126038,0.0521545,0.0744934,0.0761108,0.0621643,0.0436401,0.0374451,0.0564575,0.0992126,0.161072,0.233032,0.309662,0.380951,0.433228,0.461761,0.451904,0.399811,0.312225,0.210815,0.11908,0.0531616,0.0132141,-0.0152893,-0.0420837,-0.0610046,-0.0699463,-0.0726929,-0.0800781,-0.110748,-0.164764,-0.224365,-0.251404,-0.244904,-0.206512,-0.150208,-0.0908203,-0.0271912,0.0327454,0.0797424,0.0928955,0.0655823,-0.00222778,-0.0991211,-0.196838,-0.274445,-0.322571,-0.336121,-0.316467,-0.271484,-0.207672,-0.127533,-0.0450439,0.0265198,0.0683899,0.072876,0.0470581,0.00491333,-0.0350952,-0.068512,-0.0916748,-0.101624,-0.0968628,-0.072876,-0.036377,0.00341797,0.0348206,0.0500793,0.0504761,0.0448914,0.0411987,0.0500793,0.0826111,0.137177,0.210205,0.290009,0.356781,0.404633,0.432098,0.433105,0.398926,0.327606,0.233826,0.139252,0.0657654,0.0259094,0.00805664,-0.00772095,-0.0237732,-0.0377197,-0.0459595,-0.0532227,-0.0775757,-0.132812,-0.20639,-0.263702,-0.28302,-0.26297,-0.210693,-0.139191,-0.0631714,0.012085,0.0774536,0.116913,0.116516,0.0744324,-0.00866699,-0.11618,-0.220062,-0.299072,-0.339539,-0.340424,-0.312439,-0.265778,-0.19873,-0.111938,-0.0236816,0.0406799,0.0704651,0.0646362,0.0389404,0.00765991,-0.0198669,-0.0444946,-0.06073,-0.0679932,-0.0599976,-0.038269,-0.00793457,0.0184631,0.0287781,0.0246277,0.012085,-0.00280762,-0.0067749,0.0160522,0.0732117,0.156525,0.253021,0.340546,0.40799,0.451904,0.471283,0.45813,0.400543,0.303497,0.184845,0.0783386,0.00933838,-0.0209351,-0.0328064,-0.0422058,-0.0462341,-0.0425415,-0.0406189,-0.0497437,-0.0798035,-0.13913,-0.212341,-0.271362,-0.29303,-0.267731,-0.203766,-0.124237,-0.0435486,0.0317993,0.0932922,0.127991,0.122406,0.0706177,-0.0285339,-0.146057,-0.249939,-0.317261,-0.344635,-0.337799,-0.304565,-0.248322,-0.166992,-0.0749817,0.0050354,0.0579224,0.0716858,0.0541077,0.020752,-0.0124817,-0.041626,-0.0600586,-0.0647583,-0.0520935,-0.024292,0.0110168,0.0465088,0.0673828,0.0688477,0.0478516,0.0135498,-0.019928,-0.0311279,-0.00704956,0.0502625,0.136108,0.236389,0.335571,0.417389,0.472565,0.493317,0.470612,0.402435,0.302216,0.185577,0.0803528,0.0104675,-0.0271301,-0.0489197,-0.0646362,-0.0736389,-0.0711365,-0.0593872,-0.0611572,-0.10376,-0.17981,-0.251892,-0.285309,-0.275787,-0.239136,-0.190491,-0.128784,-0.0470581,0.0426331,0.111603,0.132751,0.105988,0.0401917,-0.0535583,-0.155518,-0.248047,-0.31424,-0.337524,-0.32431,-0.290741,-0.236786,-0.160217,-0.0697937,0.011261,0.0603333,0.0678406,0.0461121,0.0177307,-0.00442505,-0.025116,-0.0464478,-0.0590515,-0.0524902,-0.0216675,0.0224304,0.0608826,0.0780029,0.0710754,0.0524292,0.0299377,0.0085144,0.00100708,0.0215454,0.0755615,0.157104,0.249207,0.333038,0.402039,0.452911,0.477386,0.456604,0.381958,0.27713,0.167389,0.077179,0.0178528,-0.0235596,-0.0583191,-0.0802002,-0.0852356,-0.0808716,-0.0802612,-0.0958557,-0.132965,-0.18512,-0.235565,-0.263824,-0.256927,-0.21344,-0.146515,-0.0763855,-0.0137024,0.041748,0.0842285,0.0982056,0.0730286,-0.0012207,-0.108124,-0.213104,-0.286987,-0.321625,-0.326263,-0.311676,-0.275726,-0.209076,-0.119385,-0.0334167,0.0274658,0.0569763,0.0559692,0.0353088,0.00759888,-0.020752,-0.0426331,-0.0532227,-0.0515442,-0.0307922,-0.00247192,0.0297241,0.0582581,0.0762329,0.073822,0.0512085,0.0206604,0.00228882,0.013092,0.0541077,0.11557,0.191284,0.277466,0.359192,0.423492,0.460815,0.463715,0.421356,0.344116,0.246063,0.148926,0.0681152,0.0125427,-0.0254517,-0.0522766,-0.0710144,-0.0845642,-0.0882568,-0.0904846,-0.108673,-0.155182,-0.216919,-0.261017,-0.269745,-0.241547,-0.193146,-0.133911,-0.0710144,-0.00524902,0.0559082,0.0950928,0.098114,0.052948,-0.0306702,-0.132416,-0.222015,-0.288208,-0.325165,-0.331482,-0.313629,-0.271881,-0.202087,-0.111938,-0.0259094,0.0343018,0.0585938,0.052887,0.0344849,0.0116882,-0.0128174,-0.0369873,-0.0502014,-0.0508118,-0.0316162,-0.000732422,0.0371094,0.0670471,0.078064,0.0709534,0.0518799,0.0294495,0.0184021,0.0300598,0.0710754,0.135315,0.216248,0.298004,0.370087,0.424652,0.457275,0.454376,0.408813,0.327332,0.226318,0.125305,0.0485229,-0.00100708,-0.0350342,-0.0593872,-0.0755005,-0.0820312,-0.0834351,-0.089325,-0.116119,-0.165833,-0.221161,-0.257599,-0.262085,-0.233032,-0.179199,-0.116394,-0.04953,0.0136108,0.0658264,0.09021,0.0774536,0.0245056,-0.0622864,-0.160217,-0.248718,-0.308868,-0.334106,-0.326996,-0.297516,-0.248535,-0.174225,-0.0851135,-0.00424194,0.0483093,0.0654907,0.0531006,0.02771,0.000396729,-0.0281067,-0.0487976,-0.0599365,-0.0571899,-0.0344849,-0.00189209,0.0342407,0.0583801,0.0648193,0.0567932,0.0404053,0.0222778,0.0173035,0.0394592,0.0914917,0.164581,0.249603,0.331696,0.396057,0.438599,0.45813,0.446472,0.393646,0.306061,0.204163,0.115173,0.0535583,0.0128784,-0.025177,-0.0593872,-0.0818787,-0.0887146,-0.0897217,-0.104218,-0.14505,-0.202698,-0.249268,-0.261963,-0.242371,-0.203827,-0.149323,-0.0830994,-0.0123596,0.0504761,0.085968,0.091217,0.0644836,0.00442505,-0.0865784,-0.189056,-0.27597,-0.329285,-0.348053,-0.340332,-0.314362,-0.263824,-0.185303,-0.0909424,-0.00817871,0.0472412,0.0683289,0.0692749,0.0612183,0.0426331,0.0127563,-0.0202026,-0.0418091,-0.0426941,-0.0305481,-0.00991821,0.00979614,0.0222778,0.0260315,0.0231018,0.015564,0.0101318,0.0147095,0.0448303,0.102478,0.17981,0.26767,0.348267,0.411621,0.454376,0.469482,0.44873,0.392639,0.311218,0.213348,0.121338,0.0487366,0.00302124,-0.0315552,-0.0592651,-0.0828247,-0.0986633,-0.106232,-0.117859,-0.15033,-0.204224,-0.251831,-0.268066,-0.243958,-0.194427,-0.137054,-0.0771179,-0.0105286,0.0579224,0.106567,0.112427,0.0767212,0.0065918,-0.081604,-0.177185,-0.265167,-0.332489,-0.36322,-0.362213,-0.334442,-0.282013,-0.206116,-0.114777,-0.0299377,0.0331421,0.0661011,0.0749817,0.0700073,0.0551758,0.03302,0.00375366,-0.0198669,-0.0316162,-0.0236206,-0.00469971,0.0139465,0.0226135,0.0211487,0.0152283,0.00683594,0.000274658,0.00610352,0.0323486,0.0875244,0.164978,0.253754,0.338013,0.403229,0.447205,0.469666,0.463043,0.41571,0.332031,0.227936,0.13208,0.0633545,0.0128784,-0.0280457,-0.065918,-0.0954285,-0.112091,-0.116455,-0.127777,-0.157715,-0.206726,-0.247314,-0.256927,-0.23114,-0.181091,-0.124023,-0.0636292,-0.00195312,0.0579834,0.0993347,0.110809,0.0846863,0.0200806,-0.0716248,-0.168854,-0.255371,-0.318207,-0.352417,-0.357452,-0.338745,-0.293701,-0.22525,-0.141205,-0.0582581,0.00683594,0.0438843,0.0596008,0.0628357,0.0564575,0.0414734,0.0201416,0.000793457,-0.00958252,-0.00900269,-0.00088501,0.00750732,0.0134888,0.0118713,0.003479,-0.00469971,-0.0117493,-0.0050354,0.0232239,0.0802002,0.159729,0.249603,0.332642,0.397064,0.443359,0.472015,0.46875,0.422241,0.339996,0.237518,0.14679,0.0788574,0.0283203,-0.0174561,-0.0646362,-0.0983276,-0.111603,-0.113892,-0.125641,-0.163818,-0.21524,-0.253906,-0.257782,-0.22934,-0.180145,-0.123505,-0.0655823,-0.000457764,0.0640259,0.113434,0.124573,0.0923462,0.0237732,-0.0602722,-0.147247,-0.232697,-0.303436,-0.349274,-0.364105,-0.346863,-0.30249,-0.236115,-0.157104,-0.0801392,-0.0160522,0.0269165,0.0507507,0.0583191,0.0539551,0.0438232,0.0271301,0.00616455,-0.00967407,-0.0110168,-0.00241089,0.00650024,0.00549316,-0.00100708,-0.00738525,-0.0115967,-0.0126038,-0.00692749,0.0148926,0.0639038,0.136719,0.225525,0.313843,0.381958,0.430817,0.465118,0.477661,0.452362,0.381348,0.279266,0.179932,0.101868,0.0435486,-0.0103455,-0.0663757,-0.110138,-0.131012,-0.134766,-0.143372,-0.1745,-0.217926,-0.245636,-0.244629,-0.216034,-0.169678,-0.116058,-0.0532227,0.0115967,0.069397,0.109344,0.123962,0.105988,0.0509338,-0.0324097,-0.130005,-0.223633,-0.293579,-0.339661,-0.360962,-0.357788,-0.323914,-0.263367,-0.183838,-0.104218,-0.0359802,0.0160522,0.0524292,0.0716248,0.073761,0.0605469,0.0409546,0.0211487,0.00570679,-0.00531006,-0.0132751,-0.019989,-0.0255127,-0.0271912,-0.0310669,-0.0357666,-0.0362549,-0.0271301,0.000213623,0.0487976,0.119324,0.203827,0.292816,0.367523,0.421967,0.457611,0.472168,0.456665,0.398407,0.310089,0.213348,0.13208,0.0759888,0.0274658,-0.0292053,-0.0865173,-0.122742,-0.134705,-0.142487,-0.170868,-0.21759,-0.254974,-0.261078,-0.234558,-0.187927,-0.13443,-0.070343,-0.00201416,0.0634155,0.115234,0.140594,0.131561,0.085968,0.0127563,-0.0740967,-0.16626,-0.245514,-0.309937,-0.353516,-0.371887,-0.354706,-0.305176,-0.235046,-0.15744,-0.0869751,-0.0221558,0.0337524,0.0727539,0.0891418,0.0877075,0.0734863,0.0520935,0.0287781,0.0071106,-0.00973511,-0.0216675,-0.0314026,-0.0377197,-0.0420837,-0.0485229,-0.0509338,-0.0467224,-0.0314636,0.00100708,0.0571289,0.137604,0.229004,0.316467,0.383759,0.437073,0.478149,0.492981,0.460358,0.377869,0.274231,0.175507,0.0997314,0.036377,-0.0297241,-0.0923462,-0.131897,-0.139862,-0.14035,-0.155457,-0.189728,-0.223511,-0.234985,-0.220551,-0.188873,-0.146118,-0.0900574,-0.0250244,0.0414124,0.0982666,0.136841,0.145782,0.121155,0.0624084,-0.0224304,-0.121399,-0.215973,-0.292145,-0.345123,-0.371765,-0.367249,-0.332977,-0.272766,-0.195251,-0.110931,-0.0360413,0.0240173,0.0657043,0.0861206,0.0934143,0.0846252,0.0636902,0.0343018,0.00650024,-0.0108643,-0.0219421,-0.0311279,-0.0397949,-0.0461731,-0.0504761,-0.0539551,-0.053833,-0.0474548,-0.028717,0.0110168,0.0745544,0.154114,0.2435,0.326385,0.393097,0.444122,0.474182,0.472443,0.425323,0.343567,0.246307,0.159454,0.0883789,0.0210876,-0.0491943,-0.106049,-0.137329,-0.148132,-0.159546,-0.186523,-0.221832,-0.246918,-0.243774,-0.215118,-0.17041,-0.113159,-0.0481873,0.0249634,0.0947571,0.145905,0.171417,0.1651,0.124084,0.0508728,-0.0440979,-0.148865,-0.246246,-0.323303,-0.375458,-0.396179,-0.379822,-0.331421,-0.25766,-0.170471,-0.0821533,-0.00262451,0.0612183,0.107239,0.126038,0.121155,0.0969849,0.0633545,0.0264587,-0.00933838,-0.0361023,-0.0546265,-0.0645752,-0.0654907,-0.0629578,-0.0594788,-0.0569763,-0.052887,-0.0436401,-0.020752,0.0225525,0.0873108,0.169739,0.260406,0.345123,0.414581,0.467682,0.494904,0.478607,0.415314,0.317139,0.212158,0.118988,0.038269,-0.0353088,-0.101471,-0.147919,-0.166656,-0.168335,-0.172638,-0.19397,-0.219879,-0.233368,-0.221222,-0.188141,-0.145172,-0.0918884,-0.0245667,0.0521545,0.12027,0.169128,0.190063,0.179596,0.133423,0.0582581,-0.0462341,-0.160065,-0.263702,-0.341614,-0.387878,-0.401428,-0.383423,-0.333984,-0.255035,-0.156647,-0.0588074,0.0256958,0.0901489,0.130402,0.147186,0.139404,0.113434,0.0687866,0.0191956,-0.0235596,-0.0525513,-0.0691833,-0.0782471,-0.0797424,-0.0736389,-0.0632935,-0.0569153,-0.0532227,-0.0455627,-0.0244446,0.016571,0.081604,0.164642,0.258789,0.345856,0.41745,0.467468,0.493561,0.477722,0.417542,0.321075,0.212341,0.109131,0.020874,-0.052887,-0.118652,-0.16745,-0.193634,-0.199463,-0.200958,-0.211273,-0.22821,-0.236847,-0.219269,-0.17807,-0.12442,-0.0589905,0.0111389,0.0826721,0.144623,0.189941,0.209015,0.191742,0.138733,0.0562439,-0.0461121,-0.156647,-0.261353,-0.343964,-0.392303,-0.402832,-0.383087,-0.33432,-0.256439,-0.155121,-0.0509338,0.0393372,0.106659,0.14798,0.164703,0.158386,0.125702,0.0740967,0.0149536,-0.0355835,-0.0678406,-0.0875854,-0.0996704,-0.101135,-0.0898743,-0.0718689,-0.0567932,-0.0504761,-0.0467224,-0.029541,0.00744629,0.0716248,0.153015,0.240204,0.325928,0.40155,0.461639,0.494324,0.483185,0.422577,0.328064,0.22049,0.118591,0.0270386,-0.0536194,-0.125702,-0.179138,-0.20517,-0.208527,-0.209259,-0.221832,-0.240143,-0.246643,-0.225037,-0.180603,-0.12323,-0.0606689,0.0120239,0.0880432,0.160736,0.212616,0.23175,0.21344,0.163971,0.0873718,-0.012146,-0.127441,-0.240356,-0.330414,-0.388794,-0.410339,-0.395844,-0.348663,-0.270355,-0.172363,-0.0687256,0.0285339,0.108521,0.161621,0.183289,0.175903,0.143768,0.0908813,0.0281982,-0.0275879,-0.0734863,-0.10556,-0.120148,-0.117981,-0.102539,-0.0810242,-0.0676575,-0.0585327,-0.0536804,-0.0409546,-0.0123596,0.0409546,0.11618,0.20752,0.297516,0.379486,0.445801,0.487396,0.490692,0.44928,0.364441,0.253754,0.142822,0.0427551,-0.0443726,-0.121826,-0.182434,-0.215179,-0.222961,-0.216705,-0.218536,-0.231079,-0.239685,-0.226654,-0.187866,-0.13443,-0.0716248,-0.00296021,0.0743103,0.15033,0.211487,0.243286,0.236664,0.197601,0.13324,0.0453186,-0.0654297,-0.184784,-0.29068,-0.368347,-0.403442,-0.402832,-0.369019,-0.305389,-0.217865,-0.115967,-0.0108032,0.0818176,0.147858,0.179474,0.183105,0.158722,0.115234,0.0551147,-0.00738525,-0.0610046,-0.098877,-0.118195,-0.121735,-0.113892,-0.0992737,-0.0856323,-0.0748901,-0.0700073,-0.0639038,-0.0470581,-0.00592041,0.0647583,0.156311,0.255981,0.351074,0.430359,0.485107,0.509552,0.490875,0.420135,0.309875,0.183563,0.065155,-0.036438,-0.119934,-0.187805,-0.229797,-0.240417,-0.230347,-0.219879,-0.220154,-0.221222,-0.212677,-0.184631,-0.143097,-0.091217,-0.0249023,0.0528259,0.130219,0.197266,0.238525,0.248932,0.230286,0.184906,0.110413,0.011261,-0.102081,-0.216583,-0.310608,-0.37323,-0.399261,-0.387543,-0.343506,-0.275299,-0.186188,-0.0835571,0.0160522,0.0971985,0.149597,0.171356,0.166504,0.138062,0.0910034,0.0316772,-0.0281067,-0.0758362,-0.108734,-0.121216,-0.120483,-0.111877,-0.0975952,-0.0845032,-0.0777283,-0.0812073,-0.0788574,-0.0593872,-0.0117493,0.0667114,0.165985,0.270355,0.366394,0.446533,0.504517,0.52652,0.494659,0.4021,0.272614,0.137604,0.0201416,-0.0791321,-0.164093,-0.226654,-0.258392,-0.253235,-0.227661,-0.208801,-0.206512,-0.208008,-0.194641,-0.157379,-0.109589,-0.0580444,0.00759888,0.0906067,0.176514,0.240814,0.275452,0.279602,0.255249,0.200195,0.113831,0.00491333,-0.108673,-0.216187,-0.306976,-0.369934,-0.397522,-0.384521,-0.33786,-0.266724,-0.184967,-0.0949097,-0.00106812,0.0841675,0.13858,0.154572,0.145111,0.121887,0.0854492,0.0302734,-0.032074,-0.0814819,-0.110352,-0.121735,-0.123749,-0.118195,-0.109467,-0.099884,-0.0906677,-0.0856934,-0.0844421,-0.0730896,-0.0361023,0.0390015,0.137329,0.242493,0.339203,0.425049,0.49115,0.515442,0.487518,0.404724,0.284576,0.150146,0.0308838,-0.0714111,-0.155457,-0.215515,-0.243622,-0.239136,-0.220276,-0.207733,-0.205322,-0.19812,-0.178192,-0.15329,-0.115234,-0.0585327,0.0178528,0.104034,0.187378,0.254425,0.298676,0.313171,0.290619,0.231812,0.145508,0.0443726,-0.0632935,-0.167938,-0.263977,-0.343781,-0.390564,-0.392029,-0.355591,-0.298737,-0.230133,-0.145447,-0.0487976,0.0369873,0.0975952,0.126587,0.13678,0.129944,0.101685,0.0515442,-0.0114136,-0.0684509,-0.110687,-0.133972,-0.14093,-0.13974,-0.132812,-0.11853,-0.101074,-0.0909424,-0.0899963,-0.0888062,-0.0636292,-0.00195312,0.0860291,0.186371,0.285767,0.371704,0.44162,0.481293,0.476807,0.419464,0.319733,0.193237,0.070282,-0.0298767,-0.110352,-0.167053,-0.198334,-0.206238,-0.200623,-0.191345,-0.185455,-0.180756,-0.172821,-0.156769,-0.127716,-0.0761108,-0.00268555,0.0808716,0.166046,0.244446,0.302216,0.329742,0.322906,0.28067,0.212494,0.123566,0.0255737,-0.0709534,-0.166168,-0.253967,-0.32785,-0.371948,-0.3815,-0.361816,-0.318146,-0.251831,-0.165497,-0.0722961,0.0114746,0.0754395,0.11792,0.137115,0.131134,0.0986633,0.0437012,-0.025116,-0.0895386,-0.136658,-0.160278,-0.16449,-0.156647,-0.140472,-0.115234,-0.0930176,-0.0849609,-0.0885925,-0.0886536,-0.0681763,-0.0229492,0.0512695,0.141418,0.239685,0.330017,0.406067,0.45224,0.460754,0.421234,0.335114,0.220673,0.101349,-0.00296021,-0.0881348,-0.145569,-0.179749,-0.195099,-0.197174,-0.192566,-0.186188,-0.179413,-0.163361,-0.139191,-0.0956421,-0.037384,0.0344849,0.117859,0.204987,0.281097,0.332428,0.354919,0.346863,0.308655,0.241486,0.152222,0.0532837,-0.0452271,-0.140472,-0.233429,-0.315369,-0.376587,-0.406189,-0.395233,-0.351074,-0.284424,-0.20517,-0.117065,-0.029541,0.0477905,0.101959,0.126251,0.120544,0.0894775,0.0370483,-0.0300598,-0.0959167,-0.143707,-0.16626,-0.170074,-0.15799,-0.138733,-0.112152,-0.0880432,-0.0777283,-0.0886536,-0.108917,-0.120056,-0.10611,-0.0566406,0.025238,0.123413,0.225586,0.321411,0.40451,0.459351,0.470428,0.424042,0.328949,0.214783,0.108124,0.0144958,-0.0639648,-0.126984,-0.175964,-0.200684,-0.202362,-0.196777,-0.187714,-0.169861,-0.143494,-0.104156,-0.0505371,0.0183105,0.105103,0.200958,0.289398,0.353638,0.393158,0.405518,0.385864,0.331207,0.246643,0.139679,0.0296021,-0.0740356,-0.174622,-0.273895,-0.363647,-0.426941,-0.448273,-0.425598,-0.370361,-0.291962,-0.201202,-0.107513,-0.0250244,0.0393372,0.0836182,0.103424,0.0976562,0.0628967,0.00805664,-0.0557861,-0.109741,-0.141541,-0.152557,-0.148651,-0.136932,-0.121735,-0.107178,-0.0994568,-0.114838,-0.149414,-0.187592,-0.20993,-0.199188,-0.143768,-0.0473022,0.0751648,0.20752,0.32666,0.424774,0.491211,0.513367,0.481689,0.396454,0.280273,0.159546,0.0563049,-0.0249023,-0.089325,-0.143372,-0.18222,-0.201691,-0.205505,-0.197113,-0.177734,-0.1492,-0.107117,-0.049469,0.0300598,0.132568,0.246796,0.35257,0.427521,0.467072,0.472168,0.440277,0.37619,0.278748,0.158539,0.0355835,-0.0770569,-0.177124,-0.266663,-0.350677,-0.419006,-0.457336,-0.458191,-0.425842,-0.367737,-0.293488,-0.208405,-0.12149,-0.0438843,0.0247803,0.0768433,0.110016,0.115295,0.0867004,0.0332947,-0.0334167,-0.0914917,-0.134644,-0.162689,-0.179321,-0.186646,-0.186188,-0.183624,-0.188599,-0.209198,-0.237854,-0.260956,-0.260956,-0.228058,-0.15155,-0.0353699,0.106232,0.257324,0.397858,0.511963,0.583252,0.601349,0.557465,0.45639,0.32016,0.180878,0.0569153,-0.0465088,-0.130066,-0.19577,-0.23175,-0.240753,-0.228546,-0.200195,-0.158386,-0.107452,-0.0454407,0.0319519,0.127441,0.233215,0.341278,0.435181,0.500366,0.525574,0.509277,0.454773,0.369537,0.256378,0.125092,-0.00256348,-0.110931,-0.203827,-0.289337,-0.372223,-0.448212,-0.500946,-0.518402,-0.495178,-0.440155,-0.362823,-0.276184,-0.176056,-0.0661011,0.0381775,0.12442,0.17981,0.192505,0.156189,0.0787964,-0.0200806,-0.112152,-0.18222,-0.235229,-0.268341,-0.280426,-0.274506,-0.259613,-0.249878,-0.259216,-0.282501,-0.306244,-0.308929,-0.272705,-0.188721,-0.0605469,0.101959,0.284363,0.45639,0.593994,0.680817,0.707001,0.660217,0.540558,0.374634,0.202423,0.0578613,-0.0546265,-0.137726,-0.198395,-0.228882,-0.227264,-0.202423,-0.163147,-0.124573,-0.0829468,-0.0336304,0.0354919,0.125916,0.235321,0.352905,0.46344,0.541962,0.570435,0.554993,0.501434,0.414368,0.295654,0.15094,0.00543213,-0.115387,-0.208405,-0.279877,-0.345642,-0.413422,-0.479828,-0.526855,-0.53894,-0.511078,-0.454041,-0.37738,-0.286591,-0.177124,-0.0542297,0.0626221,0.159454,0.212158,0.20813,0.150543,0.0565796,-0.056366,-0.166595,-0.258881,-0.330017,-0.371216,-0.383026,-0.369354,-0.33725,-0.303101,-0.282562,-0.283356,-0.283783,-0.262238,-0.205719,-0.110687,0.0181274,0.171753,0.337585,0.494995,0.619202,0.696533,0.713165,0.661102,0.550568,0.398682,0.240814,0.103485,-0.0134888,-0.107513,-0.18222,-0.229004,-0.238678,-0.214844,-0.171143,-0.12088,-0.0632324,0.00564575,0.0906677,0.195923,0.313904,0.428192,0.52243,0.581635,0.591309,0.562378,0.496674,0.39679,0.268066,0.12088,-0.0231018,-0.141876,-0.228943,-0.293579,-0.34613,-0.395172,-0.446991,-0.498688,-0.530212,-0.534393,-0.504578,-0.444519,-0.360291,-0.254517,-0.129669,6.10352e-05,0.110931,0.187866,0.208588,0.166931,0.0758362,-0.0425415,-0.174225,-0.296936,-0.3909,-0.443024,-0.446045,-0.411224,-0.351959,-0.285095,-0.226868,-0.197723,-0.202087,-0.217712,-0.214233,-0.179077,-0.101196,0.0162964,0.169067,0.347198,0.526062,0.67746,0.770569,0.785736,0.721375,0.594666,0.425934,0.241425,0.0696716,-0.0716248,-0.171295,-0.23175,-0.254242,-0.235168,-0.17981,-0.107788,-0.0377808,0.0283813,0.0993958,0.181274,0.278473,0.379669,0.472961,0.544189,0.586121,0.586273,0.545593,0.460022,0.333832,0.185028,0.0316772,-0.109131,-0.216187,-0.284363,-0.316925,-0.332306,-0.341675,-0.36087,-0.393707,-0.437744,-0.480408,-0.50647,-0.498688,-0.451691,-0.366241,-0.256653,-0.135773,-0.0162964,0.0818176,0.143951,0.157715,0.111603,0.0180664,-0.100677,-0.227661,-0.339081,-0.413177,-0.445129,-0.437256,-0.395447,-0.333832,-0.268799,-0.215027,-0.188049,-0.18396,-0.182831,-0.163818,-0.111755,-0.025116,0.0961914,0.243286,0.405853,0.564911,0.69162,0.757751,0.748199,0.667084,0.535248,0.376068,0.206787,0.0552368,-0.0653076,-0.145905,-0.189819,-0.19281,-0.157867,-0.0973816,-0.026123,0.0435486,0.110535,0.178802,0.250397,0.325714,0.398346,0.457794,0.495667,0.506866,0.486206,0.433502,0.346466,0.231689,0.11142,-0.00924683,-0.112946,-0.19101,-0.239868,-0.26593,-0.278931,-0.286316,-0.296387,-0.320831,-0.364502,-0.429138,-0.488953,-0.524109,-0.51712,-0.464783,-0.373779,-0.262482,-0.145844,-0.0297241,0.0671692,0.126709,0.134033,0.0835571,-0.0113525,-0.13382,-0.262085,-0.373169,-0.440674,-0.459137,-0.435303,-0.377991,-0.301422,-0.220337,-0.149658,-0.106049,-0.0973206,-0.103302,-0.100952,-0.0759888,-0.0175171,0.0743713,0.191956,0.335449,0.489288,0.625,0.714447,0.734863,0.688873,0.588196,0.451752,0.295105,0.143097,0.0137634,-0.0755005,-0.129547,-0.149994,-0.134369,-0.0862427,-0.0162354,0.0552979,0.116638,0.17276,0.229614,0.293304,0.352692,0.397003,0.423309,0.433167,0.421967,0.38324,0.310669,0.215515,0.109589,0.00759888,-0.0863647,-0.158783,-0.202484,-0.218872,-0.217865,-0.214905,-0.219543,-0.238403,-0.274963,-0.338593,-0.428955,-0.526245,-0.595123,-0.606659,-0.556519,-0.454498,-0.325378,-0.18277,-0.032074,0.0970459,0.18277,0.202484,0.152161,0.0391235,-0.106995,-0.259399,-0.389557,-0.468079,-0.487061,-0.451477,-0.378387,-0.283966,-0.188812,-0.112213,-0.0718079,-0.0810852,-0.118256,-0.148743,-0.142822,-0.0841064,0.0282593,0.176514,0.353973,0.541687,0.706329,0.815948,0.840363,0.776062,0.640167,0.469208,0.28418,0.109344,-0.0290527,-0.117188,-0.156311,-0.155304,-0.123413,-0.0711975,-0.00564575,0.0533447,0.0953674,0.128784,0.169739,0.226776,0.296173,0.364105,0.421417,0.458191,0.470154,0.449219,0.383514,0.279541,0.155243,0.0281982,-0.0861206,-0.176117,-0.230286,-0.24765,-0.233704,-0.210876,-0.197937,-0.203766,-0.2341,-0.286377,-0.367249,-0.469818,-0.571503,-0.635925,-0.632965,-0.557739,-0.42392,-0.258545,-0.0848389,0.081543,0.210022,0.273376,0.259064,0.164581,0.00939941,-0.176178,-0.356537,-0.501953,-0.580566,-0.584503,-0.521912,-0.42041,-0.299622,-0.182098,-0.0851135,-0.0230103,-0.00924683,-0.0318909,-0.0586548,-0.0575256,-0.0106812,0.0863037,0.218994,0.375305,0.536926,0.675781,0.762115,0.770844,0.699341,0.561279,0.389008,0.209473,0.0462952,-0.0798645,-0.1492,-0.166504,-0.142944,-0.0944214,-0.0305481,0.0424805,0.116302,0.175293,0.215698,0.250671,0.292297,0.344696,0.394318,0.428802,0.440338,0.42511,0.380066,0.301025,0.191956,0.0733032,-0.036438,-0.127594,-0.193237,-0.23175,-0.238525,-0.212952,-0.172546,-0.137054,-0.123688,-0.133148,-0.164703,-0.213684,-0.281555,-0.366241,-0.454834,-0.516998,-0.536407,-0.499359,-0.411011,-0.281158,-0.138519,-0.00750732,0.0901489,0.136658,0.127777,0.0617371,-0.0546265,-0.20639,-0.359619,-0.482758,-0.553925,-0.553497,-0.491425,-0.388672,-0.265442,-0.136993,-0.0226135,0.0635071,0.106903,0.102692,0.0686035,0.0297852,0.0132751,0.0355835,0.100677,0.196381,0.306305,0.411957,0.500549,0.553925,0.555786,0.502167,0.403229,0.281494,0.164032,0.0718079,0.0143738,-0.00967407,-0.0137024,-0.003479,0.0195312,0.0549011,0.0975342,0.139465,0.177185,0.209747,0.245178,0.28833,0.335724,0.372772,0.383698,0.36499,0.315704,0.241272,0.152344,0.0562439,-0.0282593,-0.0926819,-0.134827,-0.15033,-0.140137,-0.108002,-0.0653687,-0.0300598,-0.0110779,-0.0177917,-0.0450439,-0.0895996,-0.147308,-0.214569,-0.287323,-0.358063,-0.421417,-0.466064,-0.480072,-0.454041,-0.381622,-0.275238,-0.1633,-0.0704651,-0.00469971,0.0256348,0.0200806,-0.0266418,-0.112946,-0.22821,-0.343445,-0.429291,-0.467255,-0.452637,-0.387054,-0.287048,-0.169342,-0.0534973,0.0465088,0.115723,0.14328,0.127991,0.0748291,0.00558472,-0.0449829,-0.0501404,-0.00793457,0.065094,0.150818,0.238129,0.32074,0.391632,0.432892,0.424103,0.362976,0.270142,0.177307,0.110809,0.0683289,0.0400085,0.0226135,0.0190735,0.0354309,0.069458,0.114716,0.172821,0.2276,0.271545,0.305634,0.334045,0.358398,0.365845,0.340668,0.280548,0.19458,0.106659,0.0346375,-0.0181274,-0.0534363,-0.0733643,-0.0729675,-0.0487366,-0.00732422,0.0360413,0.0724792,0.0958557,0.101807,0.0885315,0.0585327,0.0224304,-0.0206604,-0.0707397,-0.128784,-0.189728,-0.246185,-0.296387,-0.348877,-0.399017,-0.43866,-0.451141,-0.421906,-0.355713,-0.272552,-0.197723,-0.133972,-0.0839539,-0.0512085,-0.0466309,-0.0794067,-0.1427,-0.214447,-0.268585,-0.300629,-0.297607,-0.259888,-0.193298,-0.112885,-0.0366516,0.0185242,0.0367126,0.0170593,-0.040741,-0.123169,-0.204437,-0.256714,-0.257202,-0.207397,-0.119537,-0.0125427,0.10202,0.215698,0.319672,0.390747,0.412842,0.381226,0.32309,0.263824,0.222015,0.197113,0.174316,0.157043,0.149323,0.152771,0.16275,0.175507,0.186035,0.190002,0.185638,0.177399,0.175446,0.181213,0.187927,0.181488,0.161011,0.13858,0.127533,0.134583,0.149933,0.161224,0.16626,0.173767,0.195831,0.2229,0.238739,0.2388,0.223694,0.200684,0.167328,0.126099,0.0767822,0.0190735,-0.0470581,-0.118317,-0.188141,-0.244049,-0.28598,-0.31839,-0.354034,-0.394989,-0.428864,-0.434387,-0.402771,-0.338013,-0.26181,-0.189056,-0.117523,-0.0505371,-0.0032959,0.00390625,-0.0350952,-0.113281,-0.219727,-0.326599,-0.419006,-0.476471,-0.486176,-0.446472,-0.374725,-0.290131,-0.207458,-0.142883,-0.107788,-0.110809,-0.151825,-0.213623,-0.264435,-0.277252,-0.239014,-0.155975,-0.0415344,0.0860291,0.210541,0.316864,0.389343,0.415314,0.396576,0.342773,0.270142,0.198273,0.143707,0.115723,0.107056,0.106903,0.104431,0.108795,0.123749,0.151154,0.184784,0.215637,0.243622,0.272888,0.31311,0.359192,0.394989,0.410675,0.404724,0.384918,0.360352,0.332977,0.307526,0.288666,0.273834,0.260559,0.246399,0.233765,0.218811,0.19873,0.168182,0.129272,0.0834961,0.0434265,0.0147705,-0.00924683,-0.0308838,-0.0548401,-0.0755615,-0.0918884,-0.110138,-0.137115,-0.180664,-0.245117,-0.32431,-0.403229,-0.466522,-0.493225,-0.482178,-0.439423,-0.379547,-0.3125,-0.249939,-0.201202,-0.181671,-0.203888,-0.268585,-0.361877,-0.456726,-0.526733,-0.561768,-0.550415,-0.495667,-0.403381,-0.299194,-0.200348,-0.127319,-0.0920105,-0.0971069,-0.137787,-0.196777,-0.251953,-0.276306,-0.258545,-0.201538,-0.114166,-0.0163879,0.0765076,0.153778,0.211212,0.243958,0.253632,0.247131,0.240143,0.242279,0.262482,0.297729,0.3396,0.369019,0.377808,0.368683,0.351837,0.338013,0.334106,0.338745,0.353424,0.380676,0.419067,0.461823,0.491699,0.493164,0.460693,0.405853,0.343506,0.287781,0.246185,0.222626,0.215179,0.219543,0.230408,0.245239,0.255707,0.256439,0.241486,0.212006,0.175507,0.140411,0.11438,0.0932312,0.0712891,0.0430908,0.00564575,-0.0378418,-0.0888062,-0.147858,-0.216187,-0.294373,-0.378601,-0.469543,-0.553986,-0.61853,-0.651489,-0.650238,-0.621033,-0.564728,-0.49707,-0.421478,-0.350952,-0.299347,-0.282898,-0.299469,-0.33725,-0.389679,-0.43457,-0.462036,-0.465576,-0.436462,-0.379608,-0.308197,-0.243958,-0.193573,-0.167786,-0.171356,-0.200806,-0.249268,-0.297455,-0.324982,-0.315521,-0.267914,-0.188873,-0.0925598,0.0112,0.111084,0.194244,0.255432,0.295837,0.324768,0.357605,0.39679,0.438995,0.484192,0.524994,0.554596,0.558136,0.532166,0.477875,0.413971,0.358398,0.320618,0.302307,0.301483,0.321411,0.356201,0.397339,0.423828,0.426941,0.40564,0.371948,0.337128,0.309143,0.2966,0.304291,0.327057,0.354034,0.374298,0.381073,0.372894,0.341156,0.286438,0.212555,0.127594,0.0505981,-0.0134888,-0.0675049,-0.114899,-0.158325,-0.195923,-0.223694,-0.246063,-0.27182,-0.300415,-0.329071,-0.35553,-0.379547,-0.411102,-0.450287,-0.492981,-0.531281,-0.555328,-0.55719,-0.535797,-0.493042,-0.438324,-0.379944,-0.334656,-0.31134,-0.309662,-0.333038,-0.376068,-0.433624,-0.485321,-0.514923,-0.512024,-0.471832,-0.406799,-0.327393,-0.246735,-0.169739,-0.112488,-0.0838928,-0.0836182,-0.105225,-0.130127,-0.14679,-0.137909,-0.10321,-0.0434875,0.0360413,0.118805,0.195923,0.256256,0.29425,0.310669,0.307861,0.299072,0.299194,0.313629,0.346527,0.388214,0.430878,0.463776,0.486511,0.494568,0.489532,0.472626,0.448669,0.427612,0.41571,0.413177,0.418121,0.420898,0.41391,0.392487,0.357605,0.312775,0.267395,0.230865,0.206238,0.195038,0.196594,0.206329,0.221405,0.228333,0.223694,0.206451,0.179199,0.140198,0.0975952,0.0549011,0.0161133,-0.0192566,-0.0536194,-0.085968,-0.11908,-0.151428,-0.180878,-0.210419,-0.236572,-0.264252,-0.289886,-0.320496,-0.356598,-0.399414,-0.445465,-0.490143,-0.519745,-0.53363,-0.528534,-0.504578,-0.461823,-0.403778,-0.337799,-0.276123,-0.232208,-0.211426,-0.208801,-0.226593,-0.258606,-0.300079,-0.333038,-0.354095,-0.358673,-0.346985,-0.323425,-0.29068,-0.255646,-0.217987,-0.185455,-0.15744,-0.13269,-0.108856,-0.0814819,-0.0509338,-0.0110779,0.0331421,0.0773315,0.118805,0.154572,0.181335,0.196594,0.202362,0.20517,0.205841,0.207916,0.217529,0.236053,0.263916,0.2966,0.328949,0.352417,0.363159,0.365906,0.362213,0.357391,0.354523,0.358185,0.36499,0.375458,0.38855,0.400543,0.400543,0.385986,0.356934,0.319153,0.281006,0.242371,0.208344,0.175781,0.146393,0.121063,0.0990601,0.0793457,0.0603333,0.0391846,0.0187378,0.00308228,-0.00698853,-0.00558472,0.000274658,0.00442505,0.00933838,0.0115356,0.0100708,0.00958252,-0.00296021,-0.0293274,-0.0525513,-0.0687256,-0.0905457,-0.139191,-0.204559,-0.261292,-0.30304,-0.331818,-0.36203,-0.387939,-0.411346,-0.41156,-0.378815,-0.345703,-0.323975,-0.303497,-0.270416,-0.229614,-0.195312,-0.167175,-0.1474,-0.134033,-0.125854,-0.124969,-0.136108,-0.154114,-0.172424,-0.194305,-0.213287,-0.22879,-0.241089,-0.245117,-0.243286,-0.231476,-0.212006,-0.190887,-0.160553,-0.119598,-0.0716248,-0.020813,0.0323486,0.0814819,0.126709,0.162292,0.187256,0.197662,0.194824,0.181885,0.165497,0.151215,0.141754,0.139801,0.143707,0.15033,0.156769,0.165924,0.175903,0.185852,0.19693,0.209015,0.22403,0.240143,0.255096,0.272949,0.29129,0.307648,0.314117,0.31076,0.293091,0.269135,0.234314,0.193085,0.145905,0.0993958,0.0569153,0.0222778,-0.0038147,-0.0209961,-0.0342407,-0.0371704,-0.0333557,-0.0256958,-0.0175781,-0.0161743,-0.00906372,-0.00189209,-0.00247192,-0.00106812,0.0103455,0.0289917,0.0450439,0.0485229,0.0404053,0.0250244,0.0085144,-0.0160522,-0.0512085,-0.0936279,-0.13147,-0.15979,-0.181427,-0.197998,-0.211945,-0.216858,-0.211884,-0.203552,-0.193756,-0.183105,-0.168182,-0.146118,-0.119995,-0.0933533,-0.0677185,-0.0458984,-0.0298767,-0.0216675,-0.026123,-0.0404053,-0.0639648,-0.086853,-0.107239,-0.123962,-0.134491,-0.138672,-0.130127,-0.114838,-0.0967102,-0.078064,-0.0622253,-0.0456543,-0.0334778,-0.0220947,-0.0116882,0.00268555,0.0191345,0.0375977,0.0542297,0.0683289,0.0813599,0.089325,0.0918274,0.0895386,0.08255,0.0730286,0.0645752,0.0565186,0.0476379,0.0414124,0.033905,0.0273132,0.0187988,0.0118713,0.00665283,0.0065918,0.0105896,0.0212708,0.0361023,0.0555115,0.0758972,0.0935059,0.10376,0.102966,0.0916748,0.0714722,0.0458374,0.0151672,-0.0147705,-0.040802,-0.0578003,-0.0648193,-0.061676,-0.0527649,-0.040863,-0.0296021,-0.0195312,-0.0126953,-0.00671387,-0.00402832,-0.00424194,-0.00195312,0.00280762,0.0104675,0.0194702,0.0307312,0.041748,0.0508728,0.0549011,0.053772,0.0484619,0.0383911,0.025177,0.0100098,-0.00457764,-0.0161133,-0.0225525,-0.0234985,-0.020813,-0.0150452,-0.00592041,0.00509644,0.0138245,0.0225525,0.0314026,0.0406189,0.0520935,0.0643005,0.077179,0.0908813,0.104706,0.114288,0.116241,0.110352,0.098114,0.0808716,0.0595398,0.0352478,0.0108643,-0.00946045,-0.0267944,-0.0379333,-0.0433044,-0.0436401,-0.0387878,-0.0303345,-0.0198669,-0.00469971,0.00558472,0.0110168,0.0112,0.00683594,-0.00106812,-0.0147705,-0.0274658,-0.0391235,-0.0483093,-0.0569153,-0.0640259,-0.0716248,-0.0769043,-0.0835571,-0.0906067,-0.0976562,-0.105225,-0.112488,-0.116638,-0.120331,-0.121552,-0.121277,-0.119141,-0.115051,-0.110474,-0.107574,-0.104156,-0.101532,-0.0993958,-0.0979309,-0.0957642,-0.0926208,-0.0896606,-0.0849609,-0.0811462,-0.0763855,-0.0713501,-0.0640259,-0.0563049,-0.0479736,-0.0393372,-0.0304565,-0.0205383,-0.0102539,0.000335693,0.0109253,0.020813,0.0310059,0.0423584,0.0534363,0.0644836,0.0759888,0.0872498,0.0948486,0.0977173,0.0974426,0.0953064,0.0933533,0.089325,0.0877991,0.0898132,0.0963745,0.108337,0.12442,0.141418,0.15625,0.166595,0.169067,0.166321,0.159668,0.150269,0.144897,0.141418,0.137787,0.13324,0.134918,0.139526,0.141693,0.135986,0.125305,0.109802,0.0896606,0.0681763,0.0467834,0.0281982,0.0125427,0.00497437,0.00582886,0.00952148,0.0105286,0.00845337,0.00457764,-0.00390625,-0.0162354,-0.0297852,-0.041687,-0.0534973,-0.0652466,-0.0742188,-0.0835571,-0.0922241,-0.103546,-0.116913,-0.130676,-0.144775,-0.151611,-0.153839,-0.148987,-0.144104,-0.138672,-0.13678,-0.137573,-0.139679,-0.143372,-0.146393,-0.147125,-0.14563,-0.144714,-0.14328,-0.1427,-0.141541,-0.141144,-0.142487,-0.144501,-0.143768,-0.138794,-0.127441,-0.109009,-0.0862427,-0.0592041,-0.0311279,-0.00650024,0.0139465,0.0238953,0.0256958,0.0201416,0.0119324,0.00396729,-0.0020752,-0.003479,0.000671387,0.0124207,0.0280457,0.0461731,0.065918,0.0841064,0.0985413,0.108734,0.114288,0.114227,0.112213,0.111938,0.11438,0.118591,0.126862,0.137848,0.147125,0.155365,0.159271,0.161011,0.1586,0.151764,0.14209,0.130341,0.11618,0.102142,0.0865784,0.0712891,0.058197,0.0465088,0.0375061,0.0296021,0.0238953,0.0191956,0.0175781,0.0169678,0.0189819,0.0225525,0.0273132,0.0308838,0.0312195,0.0285339,0.0218811,0.0134888,0.00302124,-0.00912476,-0.0213318,-0.0324097,-0.0419617,-0.0489807,-0.0518799,-0.0522156,-0.0490723,-0.0470581,-0.0464478,-0.0493164,-0.0542908,-0.0599365,-0.0653076,-0.068512,-0.0686646,-0.0675964,-0.0637512,-0.0591431,-0.0540161,-0.0504761,-0.0504761,-0.0541077,-0.0588684,-0.0620117,-0.061615,-0.0584717,-0.0545654,-0.0490723,-0.0440979,-0.0379944,-0.0338135,-0.0300598,-0.032135,-0.0358276,-0.0401306,-0.0420227,-0.0422974,-0.0387268,-0.032135,-0.0216064,-0.0114136,-0.00213623,0.00436401,0.0062561,0.00222778,-0.00750732,-0.0210876,-0.0337524,-0.0424805,-0.0453796,-0.040802,-0.0304565,-0.0146179,0.00430298,0.0231628,0.0379333,0.0465698,0.0479126,0.0414734,0.0299988,0.0171814,0.00476074,-0.00424194,-0.00866699,-0.00933838,-0.00543213,0.000396729,0.00515747,0.0103455,0.0102539,0.0062561,-0.00314331,-0.0138245,-0.0232849,-0.0279236,-0.0284424,-0.0232849,-0.0132751,-0.00289917,0.00811768,0.0171204,0.0246277,0.0274658,0.0258484,0.0203247,0.0140991,0.00793457,0.00415039,0.00241089,0.00515747,0.0085144,0.0128174,0.0169067,0.0212097,0.025116,0.0275879,0.0268555,0.0252991,0.0228271,0.0231018,0.0247803,0.0275269,0.0316772,0.0359802,0.0392761,0.0418701,0.0427551,0.0424194,0.0410767,0.0404663,0.0387878,0.0391846,0.0406189,0.0414734,0.0437622,0.0447693,0.045166,0.0443115,0.0428162,0.0424194,0.0405273,0.0391235,0.0384521,0.0375977,0.0367126,0.0337524,0.0299988,0.0244446,0.0179138,0.00946045,0.00112915,-0.00598145,-0.013092,-0.0192566,-0.0231018,-0.0234985,-0.0209351,-0.0148315,-0.00793457,-0.00180054,0.00549316,0.00900269,0.0088501,0.00341797,-0.0065918,-0.0212708,-0.0377197,-0.0545654,-0.0664368,-0.0755005,-0.0791321,-0.0791931,-0.0752258,-0.0714111,-0.0677185,-0.0669861,-0.0675049,-0.0696106,-0.0705261,-0.0714722,-0.0688477,-0.0648193,-0.0579224,-0.0509949,-0.0447693,-0.0404053,-0.0391235,-0.0400696,-0.04422,-0.0504761,-0.0564575,-0.0628967,-0.0646362,-0.0644836,-0.0603943,-0.0561829,-0.0516663,-0.0483093,-0.0465698,-0.04422,-0.0424194,-0.0386047,-0.0328064,-0.0240173,-0.0132141,-0.000396729,0.0119324,0.0214233,0.0285339,0.0293884,0.0282593,0.0258484,0.0244446,0.0229492,0.0240173,0.0258484,0.0297241,0.0339661,0.0391235,0.041626,0.041687,0.0377197,0.0312195,0.0263672,0.0240173,0.026123,0.0326233,0.0424805,0.0547791,0.0677185,0.0777893,0.0838928,0.0864563,0.0837708,0.0775146,0.0667725,0.0551758,0.0425415,0.0325623,0.024231,0.0198669,0.0155029,0.0169678,0.020752,0.02771,0.0339661,0.0404053,0.0450439,0.0493164,0.0526123,0.0555115,0.0560303,0.0556946,0.0534363,0.0495911,0.0465698,0.0428162,0.0397949,0.0383301,0.0347595,0.0279236,0.020813,0.0102539,0.00140381,-0.00778198,-0.0144958,-0.0200806,-0.0234985,-0.0259705,-0.0256348,-0.0212097,-0.015564,-0.00894165,-0.00531006,-0.00442505,-0.00698853,-0.00991821,-0.0131531,-0.0157166,-0.0205994,-0.0249023,-0.0306091,-0.0317383,-0.0335693,-0.0354919,-0.0386047,-0.0447693,-0.0505981,-0.0590515,-0.0658264,-0.0708008,-0.0732117,-0.0731506,-0.0724792,-0.0697937,-0.0665894,-0.0630798,-0.0586548,-0.0565796,-0.0559082,-0.0562439,-0.0567017,-0.0549622,-0.052948,-0.0491333,-0.0453186,-0.041687,-0.0381775,-0.0354919,-0.0327454,-0.0316162,-0.0307312,-0.0312805,-0.0314636,-0.0309448,-0.0303345,-0.028595,-0.0278625,-0.0279236,-0.0283203,-0.0296021,-0.0292664,-0.0279236,-0.0267029,-0.0223389,-0.0183105,-0.0104065,-0.00234985,0.00497437,0.0112,0.0154419,0.0167236,0.0171814,0.0173035,0.0177917,0.0189209,0.0209961,0.0226746,0.0265808,0.0293274,0.0317383,0.0354309,0.0388489,0.0419617,0.0444946,0.0452271,0.0459595,0.0457153,0.0434265,0.0399475,0.0347595,0.0301208,0.0265808,0.0240173,0.0255127,0.0287781,0.0356445,0.0448303,0.0551758,0.0649719,0.0737,0.0795288,0.0812683,0.0798645,0.0743103,0.0669861,0.0593262,0.0516663,0.0435486,0.0365906,0.0306702,0.0269165,0.0254517,0.0280457,0.032135,0.036438,0.0401306,0.0406189,0.0411377,0.0386047,0.0343628,0.0275879,0.019989,0.0106812,0.003479,-0.0015564,-0.00262451,-0.00106812,0.000732422,0.00323486,0.00430298,0.00396729,0.000274658,-0.0067749,-0.0171814,-0.0303345,-0.0428162,-0.0523376,-0.057251,-0.0578613,-0.0542908,-0.0491943,-0.0430298,-0.0368347,-0.032074,-0.0278625,-0.026123,-0.0272522,-0.0325623,-0.0370483,-0.0430908,-0.0475769,-0.0515442,-0.0542297,-0.0557861,-0.0565186,-0.0555725,-0.0552979,-0.0557861,-0.0575256,-0.0596619,-0.0645752,-0.0698547,-0.0757141,-0.07724,-0.0758972,-0.0704041,-0.0622253,-0.0512695,-0.0386047,-0.0240173,-0.0118103,-0.00140381,0.00390625,0.0050354,0.00256348,-0.00228882,-0.0101318,-0.0161133,-0.0220947,-0.0222778,-0.0200806,-0.0159607,-0.0104675,-0.00430298,0.000946045,0.00576782,0.00860596,0.00866699,0.00912476,0.00839233,0.00924683,0.0104675,0.0125427,0.01651,0.0210876,0.0237732,0.0283813,0.0313416,0.0346985,0.0371094,0.0391235,0.0401917,0.0390015,0.0369263,0.0337524,0.0305481,0.0265808,0.0232239,0.0193176,0.0173035,0.0153809,0.015564,0.0163879,0.0177917,0.0189209,0.0187378,0.0185242,0.0181885,0.0177917,0.0172424,0.0163879,0.0181885,0.0195312,0.0218811,0.0232239,0.0234375,0.020813,0.0182495,0.0138245,0.0104065,0.00726318,0.00604248,0.00750732,0.011261,0.0185852,0.0256958,0.0344238,0.0381165,0.0383911,0.0351562,0.0288696,0.0213318,0.012085,0.00323486,-0.00424194,-0.00732422,-0.00570679,0.000671387,0.0100098,0.0187988,0.0270386,0.0315552,0.0319519,0.0283813,0.0218201,0.0141602,0.00482178,-0.00189209,-0.0067749,-0.00744629,-0.00616455,-0.00140381,0.00363159,0.0088501,0.0126038,0.0136108,0.0135498,0.0104065,0.00598145,-0.00161743,-0.00827026,-0.0170593,-0.0235596,-0.0285339,-0.0332336,-0.0358276,-0.0383911,-0.0393372,-0.0386658,-0.0367126,-0.0317993,-0.02771,-0.0236816,-0.0209961,-0.0189209,-0.0189819,-0.0185852,-0.0202637,-0.0232239,-0.0274658,-0.0334778,-0.0410156,-0.0489197,-0.0557861,-0.0596008,-0.0610657,-0.0614929,-0.0586548,-0.052887,-0.0458984,-0.0380554,-0.0314636,-0.0260315,-0.0228271,-0.0202026,-0.0189209,-0.0184631,-0.0191345,-0.0204773,-0.0231628,-0.0249023,-0.0276489,-0.0289307,-0.0287781,-0.0272522,-0.0255737,-0.0202637,-0.0161133,-0.00924683,-0.00280762,0.00280762,0.00665283,0.00778198,0.00799561,0.00616455,0.00515747,0.00335693,0.00274658,0.00369263,0.0050354,0.00805664,0.0109253,0.0144348,0.0184631,0.0223389,0.0261841,0.0294495,0.0316162,0.0335693,0.0328064,0.0310669,0.02771,0.0222778,0.0180664,0.0147095,0.0146179,0.0152893,0.0195923,0.0259094,0.0337524,0.0418091,0.0484619,0.0513306,0.0510864,0.0470581,0.0390625,0.0303955,0.0221558,0.0166321,0.0142212,0.0146179,0.0181885,0.0216675,0.024231,0.0256958,0.0246887,0.0220032,0.0190735,0.0142822,0.0106812,0.00765991,0.00631714,0.0062561,0.0083313,0.0133667,0.0189819,0.0246887,0.0296631,0.0317993,0.0314636,0.0287781,0.024231,0.0173035,0.0106812,0.00375366,-0.000946045,-0.00744629,-0.0125427,-0.017395,-0.0213318,-0.0239563,-0.0262451,-0.0279236,-0.0279236,-0.0255127,-0.0206604,-0.015564,-0.0105286,-0.00610352,-0.00234985,0.000335693,0.000793457,-0.000335693,-0.00213623,-0.00543213,-0.00805664,-0.0103455,-0.0118713,-0.0133667,-0.0144348,-0.0174561,-0.0216064,-0.0281982,-0.0360413,-0.0446472,-0.0517578,-0.0575867,-0.0598145,-0.0593262,-0.0546265,-0.0471802,-0.0371094,-0.0265808,-0.0160522,-0.0071106,0.000732422,0.00616455,0.00878906,0.00924683,0.00759888,0.00604248,0.00363159,0.000671387,-0.00268555,-0.00839233,-0.0148926,-0.0228882,-0.0304565,-0.0386047,-0.0448303,-0.049469,-0.0511475,-0.0490723,-0.0449829,-0.0359802,-0.0250244,-0.0127563,-0.000396729,0.0114746,0.0216675,0.028656,0.0322876,0.0330811,0.0314026,0.0265808,0.020874,0.0142822,0.00616455,-0.000946045,-0.00985718,-0.0161133,-0.020874,-0.0246887,-0.0270386,-0.0283203,-0.0275269,-0.0256958,-0.0224304,-0.0173035,-0.0114746,-0.00576782,0,0.00665283,0.0118103,0.016571,0.0205994,0.0231628,0.0269775,0.0279236,0.028717,0.0273743,0.0235596,0.0169678,0.0088501,-0.00012207,-0.00967407,-0.0166321,-0.0223389,-0.025177,-0.0241089,-0.0212097,-0.015625,-0.00759888,0.00112915,0.0100098,0.0182495,0.0262451,0.0325623,0.0391846,0.0447693,0.0490723,0.0531616,0.0552368,0.0559692,0.0540161,0.0496521,0.0438232,0.036438,0.0301208,0.0249634,0.0215454,0.0212708,0.0224304,0.026123,0.0303955,0.0343018,0.0370483,0.0392761,0.0377197,0.037384,0.0347595,0.033905,0.03302,0.0337524,0.0358276,0.0377808,0.0401917,0.0409546,0.0405273,0.0386047,0.0332947,0.0271301,0.0194702,0.0105286,0.00195312,-0.00665283,-0.0138245,-0.0194092,-0.0230103,-0.025116,-0.0253601,-0.0247803,-0.0236816,-0.0226135,-0.0230103,-0.0256958,-0.0297241,-0.0358276,-0.0438232,-0.0516663,-0.0580444,-0.0636902,-0.065979,-0.0666504,-0.0646362,-0.0606079,-0.0556335,-0.0508728,-0.0488586,-0.0491333,-0.0524292,-0.0571289,-0.0628967,-0.0679321,-0.0721436,-0.0734253,-0.0722961,-0.0689392,-0.0654907,-0.0617371,-0.0582581,-0.0578003,-0.0591431,-0.0623474,-0.0636902,-0.0646973,-0.061676,-0.0555725,-0.0473938,-0.0358276,-0.0252991,-0.0138855,-0.00604248,-0.000213623,0.00274658,0.0032959,0.00302124,0.00341797,0.00424194,0.00765991,0.0120239,0.0191956,0.0263062,0.0336914,0.0387268,0.0431519,0.0446472,0.0458374,0.0464478,0.0472412,0.050415,0.0534363,0.0580444,0.0620728,0.0653076,0.0675964,0.0673828,0.065094,0.0609436,0.0541687,0.0474548,0.0410767,0.0355835,0.0335693,0.0324707,0.0345764,0.037262,0.0405273,0.0426331,0.0447693,0.0457153,0.045166,0.0437622,0.041626,0.0401917,0.0369873,0.0339661,0.0283813,0.0234985,0.0177917,0.0119324,0.00598145,-0.00167847,-0.00665283,-0.012146,-0.0166321,-0.0198059,-0.0232239,-0.0263672,-0.027771,-0.0299988,-0.0298767,-0.0289917,-0.0259705,-0.0225525,-0.0162964,-0.0116882,-0.00515747,0.00012207,0.00357056,0.00463867,0.00357056,-0.000335693,-0.00726318,-0.0144958,-0.0227661,-0.0308838,-0.0363159,-0.0383301,-0.0362549,-0.0308838,-0.0231628,-0.0140381,-0.00442505,0.0032959,0.0101929,0.0142822,0.0160522,0.0171814,0.0158386,0.0151062,0.0150452,0.0162354,0.0181885,0.0204163,0.0222778,0.0221558,0.0214233,0.0172424,0.0138245,0.00772095,0.0020752,-0.003479,-0.00717163,-0.00979614,-0.0103455,-0.00918579,-0.0088501,-0.00772095,-0.00698853,-0.00665283,-0.00558472,-0.00570679,-0.00750732,-0.00784302,-0.0101318,-0.011261,-0.0142212,-0.0183105,-0.0237732,-0.0301208,-0.0378418,-0.0445557,-0.0517578,-0.0578003,-0.0632324,-0.0661621,-0.0697937,-0.0700684,-0.070282,-0.0677185,-0.0644836,-0.0605469,-0.056366,-0.0509949,-0.0458984,-0.040741,-0.0353699,-0.0326843,-0.0308838,-0.0306702,-0.0324097,-0.0337524,-0.0369263,-0.0399475,-0.0440369,-0.0465088,-0.0484009,-0.0475159,-0.0431519,-0.0361633,-0.0261841,-0.0148315,-0.00289917,0.00894165,0.0195312,0.0281067,0.0348206,0.0404663,0.0436401,0.0473938,0.0491333,0.0509338,0.052002,0.0532227,0.0542297,0.0557861,0.0560303,0.0571899,0.0576477,0.0568542,0.057373,0.0580444,0.0596619,0.0628357,0.0673218,0.0727539,0.0785828,0.0841675,0.0895386,0.0939026,0.0974426,0.0996094,0.0993958,0.0971985,0.0928955,0.0869141,0.0785828,0.0686035,0.0578003,0.0468445,0.0371094,0.028595,0.0209961,0.0169678,0.0128174,0.011261,0.00985718,0.00906372,0.00692749,0.00390625,0.00088501,-0.00469971,-0.00839233,-0.0124817,-0.016571,-0.0193176,-0.0212097,-0.0228271,-0.0239563,-0.0246887,-0.0269165,-0.0298767,-0.03302,-0.0390015,-0.045105,-0.0533447,-0.0618286,-0.0724792,-0.0813599,-0.0907288,-0.0975342,-0.10321,-0.105164,-0.105042,-0.100464,-0.0942993,-0.0851746,-0.0745544,-0.0635071,-0.0525513,-0.04422,-0.0377808,-0.0367737,-0.0375977,-0.0411987,-0.0469666,-0.0524902,-0.0558472,-0.0576477,-0.0560303,-0.0521545,-0.0459595,-0.0391846,-0.0322876,-0.0263062,-0.0205383,-0.016571,-0.0144348,-0.0126953,-0.0110779,-0.0067749,-0.00128174,0.0065918,0.0144958,0.0233459,0.0313416,0.0377197,0.0414734,0.0436401,0.0433655,0.0412903,0.0386047,0.0353699,0.0328064,0.0303345,0.0304565,0.0306091,0.0315552,0.0325623,0.0334167,0.0350342,0.0359802,0.038269,0.0395203,0.0406189,0.0428772,0.0429688,0.0435486,0.0420227,0.0401917,0.0377197,0.0334778,0.0304565,0.02771,0.0247803,0.0224304,0.0198059,0.0169678,0.0148926,0.0104065,0.00643921,0.0017395,-0.0032959,-0.00750732,-0.0110168,-0.0134277,-0.0143738,-0.0150452,-0.0115967,-0.00991821,-0.00604248,-0.0032959,-0.00012207,0.00189209,0.00241089,0.00222778,0.00088501,-0.00234985,-0.00604248,-0.0104675,-0.0141602,-0.0169678,-0.0184021,-0.0186462,-0.0179749,-0.0167847,-0.0146179,-0.0137634,-0.0118713,-0.0109253,-0.0109253,-0.00979614,-0.00979614,-0.00765991,-0.00430298,0.000732422,0.00650024,0.0128784,0.0180664,0.0224915,0.0249634,0.0245056,0.0231018,0.0202026,0.0177917,0.015564,0.0144958,0.0160522,0.0174561,0.0194702,0.021759,0.0216064,0.0209351,0.0185242,0.0152893,0.0103455,0.00570679,0.0017395,-6.10352e-05,-0.00088501,0.0015564,0.00424194,0.0071106,0.0102539,0.0101318,0.0100708,0.00732422,0.00375366,-0.0012207,-0.00604248,-0.0111389,-0.0145569,-0.0180664,-0.0200806,-0.0221558,-0.0228882,-0.0249023,-0.0252991,-0.0279236,-0.0293274,-0.0324097,-0.0343628,-0.0367737,-0.0386658,-0.0386658,-0.0397949,-0.0380554,-0.0390625,-0.0385132,-0.0389404,-0.0391846,-0.0384521,-0.0388489,-0.0391235,-0.0393982,-0.0400085,-0.0406799,-0.0414124,-0.039856,-0.0378418,-0.0350952,-0.032074,-0.028656,-0.0256348,-0.0226746,-0.0198059,-0.0169067,-0.0129395,-0.0100708,-0.0062561,-0.0015564,0.00308228,0.00750732,0.0107422,0.0133667,0.0135498,0.0124817,0.00958252,0.00582886,0.00228882,0.00012207,0.00088501,0.00213623,0.00799561,0.0147705,0.0224304,0.0298767,0.0356445,0.0406189,0.0438843,0.0461731,0.0461731,0.0454407,0.0428772,0.0401917,0.0387878,0.0375061,0.0374451,0.037262,0.037323,0.0350952,0.0343018,0.0309448,0.0290527,0.0264587,0.0232239,0.021759,0.019928,0.0194702,0.0189209,0.0191345,0.0200806,0.0201416,0.0205994,0.0209961,0.0215454,0.0224304,0.0229492,0.0228882,0.0216064,0.0192566,0.0168457,0.0136108,0.00967407,0.00482178,-0.000213623,-0.00537109,-0.00933838,-0.0140381,-0.0152283,-0.0171204,-0.015564,-0.0151062,-0.0118713,-0.00939941,-0.0071106,-0.00463867,-0.00415039,-0.00280762,-0.00357056,-0.00476074,-0.00604248,-0.00952148,-0.0126953,-0.0167847,-0.0211487,-0.0246277,-0.028595,-0.0315552,-0.0333557,-0.0340881,-0.0330811,-0.032074,-0.0297852,-0.0274658,-0.025238,-0.0226135,-0.0212097,-0.0192566,-0.0174561,-0.0160522,-0.0142212,-0.0134888,-0.0128174,-0.0141602,-0.0152893,-0.0177307,-0.0209351,-0.024353,-0.0275269,-0.0290527,-0.0305481,-0.0304565,-0.0299988,-0.0282593,-0.0261841,-0.0237732,-0.020874,-0.0193176,-0.0184021,-0.01651,-0.0162964,-0.0146179,-0.0128174,-0.0104675,-0.00878906,-0.00726318,-0.00643921,-0.00604248,-0.00582886,-0.0062561,-0.00665283,-0.00738525,-0.00738525,-0.00683594,-0.00515747,-0.00201416,0.000946045,0.00509644,0.0088501,0.0123596,0.0145569,0.0163879,0.0166321,0.016571,0.0169067,0.0166321,0.017395,0.0183105,0.0187378,0.020813,0.0210876,0.021759,0.0220032,0.0203247,0.0203247,0.0189209,0.0179749,0.0178528,0.0177917,0.0183105,0.0184021,0.0196533,0.0195923,0.0202637,0.019928,0.0204163,0.0201416,0.0198669,0.0195923,0.0189209,0.0170593,0.0161743,0.0139465,0.012085,0.0101929,0.00900269,0.00750732,0.00692749,0.00772095,0.00704956,0.00900269,0.00985718,0.0106812,0.0123596,0.0119324,0.0123596,0.0118713,0.0103455,0.00906372,0.00650024,0.00408936,0.000732422,-0.00274658,-0.00491333,-0.00750732,-0.00918579,-0.0100098,-0.0108643,-0.0105896,-0.0105896,-0.00845337,-0.00698853,-0.00463867,-0.00274658,0,0.0012207,0.00262451,0.00280762,0.00234985,0.000946045,-0.0017395,-0.00491333,-0.00866699,-0.0120239,-0.0151062,-0.0169067,-0.0181885,-0.0174561,-0.0177917,-0.0171204,-0.0187988,-0.0191956,-0.0212097,-0.0228271,-0.024353,-0.025116,-0.0255127,-0.0239563,-0.0211487,-0.0182495,-0.0140991,-0.0110779,-0.00839233,-0.00671387,-0.00704956,-0.00704956,-0.00860596,-0.0115967,-0.0136108,-0.0171204,-0.0202637,-0.0228271,-0.0247803,-0.0263672,-0.0265198,-0.0262451,-0.0246887,-0.0229492,-0.0211487,-0.0191956,-0.0181885,-0.016571,-0.0158386,-0.0147705,-0.0134277,-0.0109253,-0.00939941,-0.00671387,-0.00363159,-0.00112915,0.00146484,0.00442505,0.00558472,0.00750732,0.00866699,0.00906372,0.0106812,0.0110168,0.0115967,0.011261,0.011261,0.0101318,0.00918579,0.00872803,0.00805664,0.00924683,0.0115967,0.013092,0.0153809,0.0176392,0.0194092,0.020874,0.0220032,0.0222168,0.0230103,0.0235596,0.0237732,0.0249023,0.026123,0.0266418,0.0260315,0.0255127,0.0234375,0.0206604,0.0181274,0.0138245,0.0111389,0.00811768,0.00726318,0.00698853,0.00704956,0.00738525,0.00784302,0.00692749,0.0065918,0.00558472,0.00369263,0.00296021,0.000457764,-0.000274658,-0.00106812,-0.0017395,-0.00167847,-0.00128174,-0.00140381,-0.00134277,-0.00189209,-0.00357056,-0.00537109,-0.00772095,-0.0103455,-0.012085,-0.0140991,-0.0145569,-0.0154419,-0.0157166,-0.0146179,-0.0144958,-0.0140381,-0.0133667,-0.0118713,-0.0108643,-0.0104675,-0.00778198,-0.00778198,-0.00576782,-0.00497437,-0.00357056,-0.00280762,-0.00195312,-0.00140381,-0.00112915,-0.00134277,-0.00213623,-0.00308228,-0.00476074,-0.00643921,-0.00805664,-0.00827026,-0.00872803,-0.00683594,-0.00509644,-0.00140381,0.0015564,0.00564575,0.00637817,0.00726318,0.00637817,0.00424194,0.00247192,-6.10352e-05,-0.00180054,-0.00308228,-0.0032959,-0.00213623,-0.0015564,-0.000457764,-0.00140381,-0.00189209,-0.00408936,-0.00650024,-0.00817871,-0.0114746,-0.0132141,-0.0142822,-0.0147095,-0.0138855,-0.0127563,-0.0114746,-0.0109253,-0.00985718,-0.00985718,-0.00958252,-0.00946045,-0.00946045,-0.00906372,-0.00906372,-0.00979614,-0.0108643,-0.0123596,-0.0142212,-0.0153809,-0.0169067,-0.0175171,-0.0172424,-0.0157166,-0.0132141,-0.0105286,-0.00811768,-0.00549316,-0.00476074,-0.00442505,-0.00442505,-0.00592041,-0.00698853,-0.0071106,-0.00799561,-0.0067749,-0.00448608,-0.00268555,-0.000213623,0.00308228,0.00549316,0.00900269,0.0108032,0.0147095,0.01651,0.0185852,0.0198669,0.0210876,0.0216064,0.0220947,0.0223389,0.0222168,0.0219421,0.0222168,0.0214233,0.0220947,0.0212708,0.020874,0.019989,0.0191345,0.0179138,0.0172424,0.016571,0.0161133,0.0158386,0.0175781,0.0177307,0.020813,0.0229492,0.0252991,0.0259705,0.0259705,0.0255127,0.0227661,0.0196533,0.0153809,0.0115967,0.00665283,0.00341797,6.10352e-05,-0.00262451,-0.00375366,-0.00457764,-0.00582886,-0.00531006,-0.00616455,-0.00637817,-0.0062561,-0.0067749,-0.00784302,-0.00845337,-0.0101318,-0.0115967,-0.013092,-0.0148926,-0.015625,-0.0169678,-0.0166321,-0.0161743,-0.0152283,-0.0144348,-0.0140381,-0.0143738,-0.0160522,-0.0188599,-0.0220032,-0.0253601,-0.0283813,-0.0313416,-0.0326233,-0.0323486,-0.0312195,-0.0289917,-0.025177,-0.0215454,-0.0183105,-0.0154419,-0.0143738,-0.0132141,-0.0131531,-0.0126953,-0.0129395,-0.0120239,-0.012085,-0.0109253,-0.0111389,-0.00979614,-0.00991821,-0.00958252,-0.0105896,-0.0110168,-0.0123596,-0.012085,-0.0133667,-0.013092,-0.013092,-0.0117493,-0.0102539,-0.0085144,-0.00448608,-0.00241089,0.000610352,0.00262451,0.00415039,0.00564575,0.00665283,0.0083313,0.00839233,0.00912476,0.00906372,0.00973511,0.0108032,0.0112,0.0117493,0.0113525,0.0104675,0.00952148,0.00744629,0.00750732,0.00671387,0.00631714,0.00717163,0.00793457,0.0104065,0.0136108,0.0158997,0.0191956,0.0205994,0.0229492,0.0232239,0.024292,0.0226135,0.0216675,0.0185852,0.0148315,0.0123596,0.00839233,0.00698853,0.00509644,0.00543213,0.00558472,0.00616455,0.0083313,0.00958252,0.0111389,0.0120239,0.0118713,0.0113525,0.00979614,0.00799561,0.00732422,0.00564575,0.00549316,0.00643921,0.00650024,0.0088501,0.00985718,0.00967407,0.00860596,0.00570679,0.00140381,-0.00442505,-0.0102539,-0.0167236,-0.0221558,-0.0257874,-0.0283203,-0.0276489,-0.0248413,-0.0205383,-0.0153809,-0.0104065,-0.00543213,-0.00161743,0.00088501,0.0015564,0.00189209,0.000610352,6.10352e-05,-0.00201416,-0.0038147,-0.00509644,-0.00717163,-0.00827026,-0.0104065,-0.0122681,-0.0140991,-0.0170593,-0.0179749,-0.019928,-0.0209961,-0.0209351,-0.0205994,-0.0179138,-0.0158997,-0.0122681,-0.00784302,-0.00497437,-0.00100708,0.00161743,0.00482178,0.00683594,0.00817871,0.0088501,0.00845337,0.00726318,0.00558472,0.0032959,0.000671387,-0.00274658,-0.00515747,-0.00799561,-0.00939941,-0.0112,-0.0102539,-0.00765991,-0.0017395,0.00759888,0.00924683,0.00482178,-0.00415039,-0.00732422,-0.00262451,0.00442505,0.00900269,0.0132141,0.016449,0.0175171,0.0119324,0.00469971,-0.00106812,-0.00390625,-0.00576782,-0.00805664,-0.0175171,-0.025177,-0.0246277,-0.0193176,-0.012085,-0.00558472,0.00357056,0.00979614,0.00933838,0.00772095,0.00549316,0.00744629,0.00537109,0.00469971,0.003479,0.000793457,0.00296021,0.00765991,0.00793457,0.00598145,0.00463867,0.00424194,0.00222778,0.000610352,0.000396729,0.0020752,0.00491333,0.00878906,0.00799561,0.000793457,-0.000732422,0.00592041,0.0115356,0.0138855,0.0127563,0.0248413,0.0378418,0.0403442,0.038269,0.0306702,0.0228882,0.0198669,0.0226135,0.016571,0.0144958,0.0140991,0.0108643,0.00280762,-0.00436401,-0.00537109,0.00088501,0.0083313,0.00918579,0.00415039,-0.000610352,-0.00442505,-0.0133667,-0.0201416,-0.0147095,-0.00650024,-0.00509644,-0.0133667,-0.0249634,-0.025177,-0.0176392,-0.0140991,-0.0194702,-0.0236816,-0.015564,-0.00900269,-0.0148926,-0.025116,-0.032959,-0.0296631,-0.0230103,-0.0205383,-0.028656,-0.0404053,-0.0438232,-0.0380554,-0.0267029,-0.020813,-0.0214233,-0.0241699,-0.0249634,-0.0302734,-0.0324707,-0.0264587,-0.0161743,-0.0161743,-0.0249634,-0.027771,-0.0259705,-0.025116,-0.020813,-0.0203247,-0.0210876,-0.0162964,-0.0067749,-0.0071106,-0.0147705,-0.0125427,-0.00704956,-0.00357056,-0.00274658,-0.000213623,-0.00100708,-0.00213623,0.00509644,0.0175171,0.025116,0.0194702,0.0144958,0.0257874,0.032959,0.0394592,0.041748,0.0499268,0.053894,0.04953,0.0414124,0.0303955,0.0298767,0.0253601,0.016571,0.0141602,0.0281067,0.0421448,0.0366516,0.0238953,0.0158386,0.0176392,0.0171204,0.0238342,0.0332336,0.0310059,0.0189209,0.0122681,0.0167847,0.0120239,0.00616455,0.0132751,0.0206604,0.0184631,0.0147095,0.0151062,0.0196533,0.0220947,0.0138245,-0.0111389,-0.0363159,-0.0399475,-0.0222778,-0.00845337,-0.0140381,-0.0311279,-0.0360413,-0.0262451,-0.0151672,-0.0138245,-0.0249023,-0.0386658,-0.040863,-0.0326233,-0.0302734,-0.0395203,-0.0431519,-0.0380554,-0.0312805,-0.0380554,-0.0468445,-0.0463867,-0.0347595,-0.026123,-0.0296021,-0.0390625,-0.0503235,-0.0465088,-0.037323,-0.0326843,-0.0368347,-0.0370483,-0.0324097,-0.0255127,-0.0173035,-0.012085,-0.0137024,-0.019989,-0.0226135,-0.0214233,-0.0195312,-0.0126038,-0.0071106,-0.00683594,-0.0151672,-0.0184021,-0.0123596,-0.0065918,0.000610352,0.00732422,0.0132751,0.0179138,0.0233459,0.0311279,0.0391846,0.0477295,0.0551758,0.0597229,0.0591431,0.0542297,0.0532227,0.0518188,0.0488586,0.0469055,0.0455017,0.0430298,0.0434875,0.0462952,0.0455017,0.040741,0.0397949,0.0405273,0.0391235,0.0434875,0.0479126,0.0488586,0.041748,0.0319519,0.0339661,0.0415344,0.0477295,0.0422058,0.0315552,0.024292,0.0275879,0.0340881,0.0302124,0.0137024,-0.00302124,-0.00765991,-0.00979614,-0.0175171,-0.0293884,-0.0346985,-0.0348206,-0.0326843,-0.0380554,-0.0453186,-0.0481873,-0.0476379,-0.0447693,-0.0489197,-0.0533447,-0.0590515,-0.065918,-0.0679321,-0.0683289,-0.0661621,-0.0611572,-0.0461121,-0.0260315,-0.0137024,-0.0185852,-0.027771,-0.0336304,-0.0367126,-0.040863,-0.0524902,-0.0661011,-0.0771179,-0.0763245,-0.0709534,-0.0634155,-0.0570374,-0.0569153,-0.0585938,-0.0587158,-0.0555115,-0.0532227,-0.049469,-0.0467224,-0.0473938,-0.0419617,-0.0311279,-0.0191956,-0.0104065,-0.00991821,-0.0138855,-0.0133667,-0.0020752,0.0124207,0.0284424,0.0396118,0.0491943,0.0604858,0.0731506,0.0828857,0.0876465,0.0885315,0.0846252,0.0794067,0.0782471,0.0800781,0.0839539,0.0894775,0.0930786,0.0939026,0.093689,0.0967102,0.101471,0.105164,0.103821,0.098999,0.0953674,0.094574,0.0948486,0.0905457,0.0838928,0.0751038,0.0710144,0.0700684,0.0720825,0.0758362,0.0769043,0.0689392,0.0564575,0.0459595,0.0377197,0.025116,0.00952148,-0.00531006,-0.0198059,-0.0328064,-0.0437012,-0.050415,-0.058136,-0.0690002,-0.0808105,-0.0912781,-0.102631,-0.115967,-0.124969,-0.128052,-0.129059,-0.137512,-0.155457,-0.168671,-0.166321,-0.148651,-0.123566,-0.0960388,-0.0718079,-0.0562439,-0.0519409,-0.0502014,-0.0484009,-0.0455017,-0.050415,-0.0681152,-0.089386,-0.104156,-0.0990601,-0.085968,-0.0783386,-0.0777893,-0.0826111,-0.0800781,-0.0747681,-0.0710144,-0.0726929,-0.0787354,-0.0827637,-0.0804749,-0.0648193,-0.0374451,-0.0140991,0.000213623,0.00692749,0.0137634,0.0285339,0.0533447,0.0778503,0.0960388,0.105164,0.11496,0.132812,0.157867,0.177124,0.184021,0.173645,0.151489,0.132965,0.12854,0.130676,0.134033,0.134308,0.12854,0.12027,0.122009,0.132751,0.141937,0.142822,0.137329,0.130737,0.128998,0.133148,0.136261,0.133423,0.126587,0.11853,0.112152,0.10672,0.102539,0.0990601,0.0932922,0.0853577,0.0706177,0.0552368,0.0379944,0.0187378,-0.0062561,-0.0392761,-0.0681763,-0.0855103,-0.0955811,-0.104034,-0.116791,-0.133575,-0.152557,-0.170349,-0.185852,-0.202484,-0.220398,-0.238068,-0.254517,-0.271362,-0.279205,-0.266998,-0.237854,-0.194916,-0.154297,-0.124237,-0.108185,-0.100555,-0.0938416,-0.0892639,-0.0916748,-0.106049,-0.12793,-0.146729,-0.153015,-0.142761,-0.122559,-0.105438,-0.0993347,-0.100281,-0.100006,-0.101013,-0.0995483,-0.098938,-0.100464,-0.0977173,-0.0820312,-0.0516663,-0.0160522,0.0170593,0.0406189,0.0555725,0.0677795,0.0891418,0.118317,0.149323,0.178986,0.204712,0.231537,0.26123,0.288452,0.301147,0.291138,0.257935,0.21994,0.189209,0.171417,0.167999,0.168457,0.168457,0.169006,0.173492,0.178986,0.180481,0.179871,0.174622,0.165833,0.15625,0.155304,0.158997,0.16684,0.170532,0.167328,0.155304,0.139587,0.124969,0.11618,0.109528,0.100128,0.086853,0.0704041,0.0472412,0.0204163,-0.0124817,-0.0509338,-0.0924072,-0.128784,-0.156586,-0.177979,-0.195984,-0.216461,-0.238129,-0.262695,-0.287994,-0.313354,-0.341217,-0.365387,-0.386108,-0.392426,-0.374298,-0.323303,-0.250885,-0.183014,-0.136169,-0.120148,-0.120819,-0.129211,-0.133026,-0.141083,-0.163483,-0.191071,-0.207672,-0.200684,-0.175446,-0.140472,-0.118073,-0.11087,-0.114716,-0.121063,-0.129333,-0.133148,-0.132294,-0.123901,-0.106781,-0.0752258,-0.0254517,0.0301208,0.0804138,0.114899,0.132568,0.148132,0.172699,0.21048,0.250336,0.284851,0.312225,0.336578,0.358063,0.377594,0.378601,0.349945,0.298676,0.245178,0.209412,0.198792,0.204102,0.209137,0.205383,0.198944,0.198944,0.200073,0.202881,0.202484,0.190491,0.177521,0.171967,0.173492,0.18222,0.189331,0.193909,0.182678,0.160553,0.136597,0.117065,0.103302,0.09021,0.0725403,0.0498657,0.0241699,-0.00515747,-0.0381165,-0.0777893,-0.124969,-0.171478,-0.213959,-0.250061,-0.277985,-0.306061,-0.337189,-0.369354,-0.400482,-0.431152,-0.463654,-0.487,-0.494324,-0.471161,-0.412109,-0.328796,-0.246643,-0.183441,-0.147583,-0.134918,-0.131683,-0.137329,-0.156921,-0.19223,-0.226532,-0.2388,-0.218536,-0.173096,-0.120941,-0.0830078,-0.0654907,-0.0639648,-0.0763245,-0.0949707,-0.114624,-0.126587,-0.129883,-0.11853,-0.0783997,-0.00631714,0.0750427,0.145386,0.195587,0.225189,0.245453,0.274567,0.311615,0.35141,0.382507,0.406128,0.423645,0.437592,0.443451,0.423248,0.373627,0.311218,0.253571,0.217926,0.210602,0.221497,0.231628,0.230804,0.223511,0.211945,0.201477,0.189484,0.169952,0.147186,0.129272,0.123749,0.133575,0.154633,0.175049,0.182007,0.172302,0.150665,0.124847,0.101868,0.0811462,0.0610046,0.0324707,-0.00234985,-0.0409546,-0.0778503,-0.117859,-0.162903,-0.214355,-0.267395,-0.31955,-0.363708,-0.402496,-0.440002,-0.475983,-0.508881,-0.538666,-0.555939,-0.551758,-0.515533,-0.446716,-0.364838,-0.287872,-0.228333,-0.18512,-0.149811,-0.11972,-0.103973,-0.116791,-0.156708,-0.201355,-0.221069,-0.20639,-0.165497,-0.116302,-0.0797424,-0.0554504,-0.0444336,-0.0478516,-0.0592041,-0.077179,-0.0982666,-0.11731,-0.114044,-0.0727539,0.00396729,0.0968628,0.181,0.24585,0.29007,0.326263,0.365326,0.404968,0.441345,0.462494,0.470337,0.472504,0.474457,0.462769,0.425507,0.364655,0.291077,0.225311,0.190674,0.186584,0.195923,0.203369,0.200348,0.189667,0.177521,0.171417,0.16391,0.148193,0.127655,0.107788,0.0991211,0.109863,0.136383,0.163147,0.175232,0.165833,0.136322,0.104889,0.0797424,0.0579834,0.0273132,-0.0157166,-0.0667725,-0.116577,-0.16095,-0.202881,-0.251556,-0.309601,-0.375122,-0.438477,-0.490356,-0.532959,-0.567993,-0.598145,-0.613983,-0.60202,-0.549286,-0.456787,-0.346527,-0.253174,-0.191956,-0.1604,-0.141144,-0.115631,-0.0873718,-0.0785217,-0.100739,-0.138672,-0.16214,-0.149078,-0.101807,-0.0466309,-0.0148315,-0.00732422,-0.0168457,-0.0349731,-0.0565796,-0.0795288,-0.106171,-0.132812,-0.139008,-0.106445,-0.0307312,0.0697327,0.167938,0.246399,0.303894,0.350494,0.396851,0.441101,0.477936,0.497406,0.497528,0.491699,0.487732,0.475525,0.437744,0.369598,0.282776,0.200806,0.151428,0.140198,0.149872,0.160675,0.155518,0.137604,0.122559,0.118317,0.112823,0.098999,0.079071,0.0578613,0.0510864,0.0706787,0.112701,0.158264,0.190338,0.191559,0.167267,0.130005,0.0942383,0.0571899,0.0133667,-0.0429688,-0.104767,-0.163239,-0.211212,-0.254639,-0.306519,-0.376312,-0.457611,-0.53833,-0.605804,-0.657867,-0.697815,-0.708282,-0.675385,-0.587402,-0.457794,-0.324036,-0.215454,-0.149139,-0.113953,-0.093689,-0.0683289,-0.0444336,-0.0385132,-0.0569763,-0.0782471,-0.0773315,-0.0447083,0.00476074,0.0498047,0.0722961,0.070282,0.0453796,0.00491333,-0.0399475,-0.0855103,-0.128937,-0.165375,-0.174164,-0.136047,-0.0535583,0.0483093,0.144562,0.226257,0.292816,0.36087,0.425507,0.483246,0.518219,0.526459,0.517944,0.508942,0.499146,0.473694,0.418549,0.334778,0.244507,0.174896,0.141937,0.134491,0.13678,0.133423,0.117798,0.0990601,0.0914917,0.0906067,0.0837708,0.0649719,0.0376587,0.0166321,0.0181885,0.0475159,0.0944214,0.141266,0.17276,0.181824,0.172485,0.1539,0.12619,0.0810852,0.0169678,-0.0591431,-0.135834,-0.20282,-0.261017,-0.319611,-0.386597,-0.468933,-0.552765,-0.632568,-0.700012,-0.747803,-0.756348,-0.707947,-0.60144,-0.464569,-0.329956,-0.22464,-0.154449,-0.105042,-0.0657654,-0.0343018,-0.0249634,-0.0376587,-0.0579834,-0.0533447,-0.0143738,0.0480652,0.106659,0.141418,0.151337,0.135712,0.0954285,0.0394592,-0.0275879,-0.102692,-0.169678,-0.205719,-0.19162,-0.130554,-0.0424805,0.0477295,0.12619,0.19577,0.267792,0.33902,0.406189,0.455322,0.480835,0.489014,0.496582,0.504456,0.494049,0.446533,0.36142,0.262238,0.181213,0.137115,0.122498,0.118256,0.109009,0.0934143,0.0805359,0.0809326,0.0866394,0.0832214,0.0640259,0.0363159,0.0128784,0.012207,0.0353699,0.0720825,0.111603,0.140411,0.155579,0.161133,0.161469,0.146393,0.105164,0.0383301,-0.0395203,-0.111267,-0.171143,-0.223236,-0.280884,-0.353241,-0.43866,-0.527527,-0.612701,-0.683167,-0.717621,-0.705139,-0.632446,-0.519226,-0.393097,-0.280884,-0.194824,-0.129669,-0.0767822,-0.041748,-0.0340881,-0.0531006,-0.074646,-0.0713501,-0.0241699,0.0532837,0.134827,0.192902,0.221558,0.217468,0.183502,0.126099,0.0479736,-0.0462952,-0.136261,-0.194153,-0.205048,-0.167664,-0.10141,-0.0283813,0.0379333,0.0977173,0.160461,0.232086,0.305908,0.368256,0.406921,0.427399,0.447205,0.462219,0.459534,0.419281,0.338074,0.240692,0.160797,0.117737,0.109009,0.110199,0.104645,0.091156,0.0789185,0.0765686,0.0791321,0.0732117,0.0542297,0.025177,-0.000946045,-0.00268555,0.0254517,0.0684509,0.107666,0.130402,0.138062,0.13678,0.134369,0.123962,0.0921631,0.0349121,-0.0384521,-0.110413,-0.166779,-0.215302,-0.27182,-0.350403,-0.443909,-0.538483,-0.613586,-0.652649,-0.641083,-0.580231,-0.485046,-0.379211,-0.28244,-0.202698,-0.138519,-0.0861206,-0.0556946,-0.0580444,-0.0822144,-0.103027,-0.0940857,-0.0339661,0.0622864,0.160889,0.234161,0.275909,0.285248,0.264435,0.216034,0.132629,0.0259705,-0.0777893,-0.147583,-0.17511,-0.15625,-0.112488,-0.0678406,-0.0327454,6.10352e-05,0.0420837,0.098877,0.1633,0.223297,0.272095,0.314362,0.36557,0.413025,0.436401,0.410492,0.330536,0.224976,0.13147,0.0744324,0.052887,0.0482483,0.0488586,0.0522156,0.0644226,0.0837708,0.0967102,0.0922852,0.0626221,0.0177917,-0.0189819,-0.0326233,-0.0161743,0.0248413,0.0654907,0.100891,0.126923,0.142273,0.148315,0.138519,0.102631,0.041748,-0.0288696,-0.0940247,-0.145508,-0.190735,-0.247925,-0.328796,-0.424164,-0.511505,-0.565308,-0.569153,-0.522247,-0.443176,-0.351227,-0.261688,-0.177979,-0.101471,-0.0371094,0.00308228,-0.00509644,-0.0540161,-0.10733,-0.131287,-0.0949097,0.00012207,0.115967,0.219208,0.293579,0.333984,0.339935,0.306854,0.234161,0.124084,0.00924683,-0.0681763,-0.098877,-0.0856323,-0.0536804,-0.0301208,-0.0241699,-0.024353,-0.0210876,-0.00369263,0.0222168,0.0511475,0.0848999,0.133636,0.209137,0.292816,0.353027,0.356049,0.291473,0.190277,0.0945129,0.032074,0.00189209,-0.0136108,-0.0253601,-0.0263062,-0.00335693,0.0406799,0.0838928,0.104309,0.0876465,0.041748,-0.00491333,-0.0306091,-0.0279846,-0.00497437,0.020813,0.0403442,0.0577087,0.0733032,0.0793457,0.0684509,0.0288696,-0.0357666,-0.103088,-0.156036,-0.188385,-0.216583,-0.260681,-0.329742,-0.403564,-0.44928,-0.441956,-0.385101,-0.306793,-0.225098,-0.152008,-0.090271,-0.0296631,0.0324707,0.0722046,0.0610046,0.00793457,-0.0624084,-0.112488,-0.0996704,-0.0264587,0.0791321,0.17981,0.260406,0.312439,0.334503,0.3255,0.275055,0.18161,0.0737,-0.00256348,-0.0278625,-0.00860596,0.0336914,0.0622864,0.0626221,0.0475159,0.0343628,0.0296631,0.0292053,0.0233459,0.0185852,0.0308838,0.0814209,0.155518,0.222015,0.241821,0.195099,0.106384,0.0151672,-0.0491333,-0.0748291,-0.0828247,-0.0910034,-0.0895386,-0.0682678,-0.0259705,0.0269775,0.0630798,0.0618286,0.0279846,-0.0131531,-0.0386658,-0.0369873,-0.0126038,0.0131531,0.032074,0.0512695,0.0666504,0.0757751,0.0610046,0.0102539,-0.0698547,-0.15625,-0.230743,-0.282227,-0.322144,-0.365509,-0.418549,-0.462097,-0.459625,-0.394836,-0.289551,-0.177582,-0.0794678,-0.0148926,0.0349121,0.0971985,0.157196,0.176117,0.146973,0.0833435,0.0109253,-0.0139465,0.0275879,0.108856,0.19928,0.276978,0.327271,0.34787,0.34436,0.308197,0.227325,0.120209,0.025116,-0.0268555,-0.0252991,0.0141602,0.06073,0.0851746,0.0800781,0.0663757,0.0558472,0.0448303,0.0238953,-0.00335693,-0.0221558,-0.00289917,0.0551758,0.127533,0.176117,0.167938,0.108856,0.0291138,-0.0401917,-0.0808105,-0.105652,-0.129944,-0.147522,-0.144501,-0.11261,-0.057312,-0.00012207,0.0340881,0.0268555,-0.00531006,-0.0457764,-0.0715332,-0.0795898,-0.0797424,-0.0785217,-0.069397,-0.0475159,-0.0202637,-0.00390625,-0.0198059,-0.0704041,-0.143616,-0.220947,-0.28772,-0.347382,-0.403564,-0.44873,-0.452759,-0.393768,-0.281433,-0.151886,-0.0402832,0.0339661,0.0692749,0.0938416,0.127655,0.14505,0.131409,0.102417,0.0673218,0.0536194,0.0908813,0.167389,0.25,0.323578,0.373169,0.38855,0.382172,0.355591,0.298065,0.216309,0.138672,0.0830078,0.0670471,0.0838318,0.110474,0.126587,0.117249,0.0923462,0.070282,0.0522766,0.0322266,0.00543213,-0.0224304,-0.0302734,-0.0116882,0.0200806,0.0469666,0.0432129,0.00738525,-0.041626,-0.0848999,-0.107849,-0.113159,-0.112213,-0.113556,-0.110596,-0.09021,-0.0583191,-0.0255737,-0.00274658,-0.00256348,-0.019928,-0.0414124,-0.057373,-0.0628357,-0.0735474,-0.0875854,-0.10202,-0.109253,-0.111603,-0.114166,-0.137115,-0.185364,-0.248932,-0.31546,-0.377319,-0.428284,-0.466339,-0.484589,-0.45282,-0.361877,-0.232544,-0.0907288,0.0369873,0.12854,0.182831,0.218384,0.23175,0.213013,0.162018,0.104309,0.06073,0.0600586,0.111481,0.195251,0.284637,0.361542,0.408417,0.416534,0.392914,0.343842,0.262756,0.175568,0.109589,0.0858459,0.102142,0.13678,0.167511,0.177063,0.161469,0.132629,0.105377,0.0779114,0.0467834,0.0118103,-0.00918579,-0.000396729,0.0288696,0.0545654,0.0556335,0.0229492,-0.0379944,-0.108459,-0.164825,-0.201355,-0.214233,-0.20993,-0.19281,-0.155975,-0.0957642,-0.0332947,0.012085,0.0350342,0.0311279,0.00616455,-0.0220947,-0.0380554,-0.0455017,-0.0577087,-0.0733643,-0.0939636,-0.116516,-0.144501,-0.185913,-0.250275,-0.328125,-0.404449,-0.470612,-0.518738,-0.542511,-0.529144,-0.46814,-0.360626,-0.22464,-0.0833435,0.0367737,0.123169,0.180542,0.223511,0.242706,0.235443,0.210205,0.175049,0.152496,0.164825,0.211334,0.277588,0.348206,0.399933,0.41571,0.402222,0.363831,0.298737,0.212952,0.127533,0.0592041,0.0345764,0.0543518,0.100464,0.145844,0.176453,0.186523,0.177124,0.159943,0.137848,0.108124,0.0697327,0.0444946,0.0473938,0.0639648,0.0802002,0.0755005,0.0394592,-0.0245056,-0.0971985,-0.156586,-0.199738,-0.221954,-0.231628,-0.231079,-0.208466,-0.159058,-0.0963135,-0.0428772,-0.0171814,-0.0174561,-0.0356445,-0.0571899,-0.065033,-0.0612793,-0.0609436,-0.0601501,-0.0671692,-0.0792542,-0.100006,-0.143036,-0.220673,-0.322968,-0.432617,-0.528809,-0.597198,-0.621429,-0.582916,-0.484589,-0.347534,-0.19577,-0.0505981,0.0640869,0.141022,0.190063,0.21167,0.204773,0.182007,0.152557,0.137054,0.158997,0.218201,0.303284,0.392761,0.471344,0.510223,0.50061,0.453156,0.378143,0.280273,0.18222,0.100342,0.0488586,0.041687,0.0675964,0.100616,0.121216,0.125183,0.112488,0.0936279,0.0711365,0.0497437,0.0238342,0.0126038,0.0307312,0.0688477,0.105835,0.124023,0.110809,0.0610657,-0.00268555,-0.0631714,-0.115845,-0.15451,-0.17511,-0.188812,-0.189484,-0.168396,-0.13089,-0.0953674,-0.0704651,-0.0636292,-0.0785828,-0.099884,-0.108459,-0.10437,-0.0975952,-0.0897217,-0.0856934,-0.0903931,-0.107849,-0.145447,-0.21463,-0.308472,-0.410828,-0.506989,-0.583038,-0.611023,-0.568665,-0.464111,-0.319153,-0.157379,-0.0134888,0.0922241,0.157318,0.19397,0.195709,0.167175,0.125519,0.0865173,0.0767822,0.114044,0.190399,0.290802,0.400146,0.494659,0.545929,0.548676,0.512085,0.435577,0.325989,0.217804,0.129608,0.0800781,0.0748291,0.101074,0.128937,0.13974,0.127106,0.0964355,0.0555115,0.0179138,-0.0188599,-0.0521545,-0.0612183,-0.0283813,0.028717,0.0852356,0.121216,0.11908,0.0700684,0.00289917,-0.0638428,-0.123016,-0.16275,-0.178467,-0.182281,-0.163086,-0.115448,-0.0579224,-0.0162964,0.00314331,-0.00765991,-0.050415,-0.103638,-0.144775,-0.175781,-0.192078,-0.192749,-0.182556,-0.167938,-0.159454,-0.175507,-0.232819,-0.323486,-0.424591,-0.523773,-0.590485,-0.593658,-0.517273,-0.388062,-0.227112,-0.0662537,0.0667114,0.157532,0.216309,0.234222,0.204102,0.145905,0.0794678,0.0292053,0.0318909,0.0940857,0.19693,0.321136,0.444794,0.537415,0.576996,0.560089,0.493561,0.387207,0.26886,0.168121,0.105164,0.0871887,0.115967,0.162415,0.191071,0.190948,0.162079,0.109344,0.0459595,-0.0187988,-0.0826721,-0.123016,-0.11377,-0.0595398,0.0119324,0.0766602,0.10556,0.0846863,0.0305481,-0.032959,-0.0987244,-0.157867,-0.194153,-0.203369,-0.181335,-0.127991,-0.0541077,0.0151062,0.0598755,0.0661621,0.0288696,-0.0404053,-0.113434,-0.176514,-0.222229,-0.2453,-0.243103,-0.227661,-0.210083,-0.210083,-0.24646,-0.325439,-0.427002,-0.52533,-0.588623,-0.579895,-0.499817,-0.365234,-0.200867,-0.0340881,0.106781,0.202423,0.260071,0.268341,0.223175,0.14859,0.0706787,0.021759,0.0282593,0.098053,0.205902,0.33075,0.447327,0.522491,0.544983,0.522247,0.452148,0.351624,0.249603,0.171204,0.126709,0.122955,0.153564,0.192017,0.210358,0.199066,0.160004,0.098114,0.0281982,-0.0411987,-0.100464,-0.129669,-0.110138,-0.0567932,0.0101929,0.0681152,0.0922241,0.0677795,0.0168457,-0.0450439,-0.109344,-0.163086,-0.197266,-0.212769,-0.195923,-0.147064,-0.0770569,-0.00616455,0.0478516,0.065033,0.0369263,-0.0221558,-0.0926819,-0.161682,-0.221008,-0.262817,-0.286591,-0.294708,-0.292694,-0.29895,-0.32666,-0.382843,-0.458405,-0.528687,-0.549957,-0.50061,-0.387115,-0.243225,-0.0942383,0.0376587,0.146118,0.235443,0.279663,0.259125,0.184967,0.0932312,0.025238,0.0137024,0.0670471,0.159668,0.27832,0.409485,0.514709,0.568542,0.565857,0.506256,0.390411,0.262634,0.15033,0.0767212,0.0588074,0.102356,0.172638,0.234985,0.270081,0.264984,0.215973,0.134094,0.0300598,-0.0855713,-0.171692,-0.192352,-0.153625,-0.0840149,-0.0067749,0.0513306,0.0699463,0.0588684,0.0240173,-0.0314636,-0.09552,-0.14859,-0.183105,-0.189606,-0.151764,-0.0836792,-0.0123596,0.0473022,0.0784607,0.0618896,0.00839233,-0.0617371,-0.144501,-0.226105,-0.289673,-0.332428,-0.352173,-0.356049,-0.355865,-0.375244,-0.419952,-0.481903,-0.537415,-0.547455,-0.496582,-0.393768,-0.259796,-0.109344,0.0443115,0.179199,0.287201,0.341949,0.322235,0.244843,0.145386,0.065033,0.0324097,0.0569763,0.127441,0.236328,0.36438,0.477325,0.545044,0.558472,0.506927,0.396729,0.258453,0.131287,0.0436401,0.0140991,0.0425415,0.109344,0.187256,0.249878,0.278931,0.26123,0.199341,0.101685,-0.0183105,-0.11673,-0.162354,-0.153442,-0.108734,-0.0458374,0.0085144,0.0390625,0.0458984,0.0252991,-0.0232849,-0.0856934,-0.14798,-0.197052,-0.209808,-0.176514,-0.109344,-0.0322266,0.0411377,0.0865173,0.0877075,0.0471191,-0.0226135,-0.112762,-0.207855,-0.289337,-0.348328,-0.384094,-0.397003,-0.406586,-0.430756,-0.47403,-0.521576,-0.545654,-0.526123,-0.457458,-0.358673,-0.24054,-0.104767,0.040741,0.186646,0.302765,0.354584,0.331207,0.258392,0.175629,0.114288,0.0899963,0.110016,0.17511,0.286041,0.413635,0.517456,0.57077,0.564301,0.495392,0.379822,0.24881,0.133698,0.052002,0.0167236,0.0273132,0.0713501,0.13324,0.191162,0.220276,0.205658,0.149597,0.0603333,-0.0343628,-0.0920715,-0.105042,-0.0882568,-0.0502625,-0.0017395,0.0365906,0.058136,0.0582581,0.0303955,-0.0253601,-0.091156,-0.157532,-0.205231,-0.211487,-0.175049,-0.112213,-0.0366516,0.0304565,0.0673828,0.0618286,0.0178528,-0.061615,-0.164825,-0.271423,-0.359955,-0.424377,-0.463776,-0.482178,-0.493042,-0.506653,-0.522034,-0.52063,-0.493225,-0.435394,-0.355713,-0.260345,-0.154694,-0.0409546,0.0838928,0.202698,0.282684,0.303101,0.26825,0.208466,0.15329,0.129211,0.136841,0.175568,0.255707,0.370422,0.484924,0.566803,0.596985,0.555328,0.454376,0.327393,0.204224,0.105103,0.0437622,0.0276489,0.0499878,0.0995483,0.164581,0.212555,0.225861,0.199066,0.129211,0.0327454,-0.049408,-0.0914917,-0.0969849,-0.0738831,-0.0316772,0.0155029,0.0584717,0.090271,0.0941772,0.0611572,0.00222778,-0.0718689,-0.138916,-0.172485,-0.162415,-0.118927,-0.0575256,0.00515747,0.0468445,0.0514832,0.016571,-0.0589294,-0.169006,-0.289886,-0.398407,-0.483521,-0.534637,-0.557861,-0.57135,-0.589966,-0.604462,-0.594513,-0.544098,-0.463837,-0.371216,-0.278748,-0.177734,-0.0602112,0.0782471,0.206726,0.286774,0.297729,0.25592,0.196503,0.150879,0.130005,0.131348,0.162567,0.237671,0.348816,0.457672,0.532715,0.553711,0.513092,0.41745,0.300629,0.188477,0.101471,0.050415,0.0376587,0.0551758,0.0990601,0.156647,0.204651,0.219666,0.195648,0.133759,0.0578003,0.0101318,-0.00106812,0.0104675,0.0346985,0.0661621,0.0967712,0.123749,0.140686,0.129333,0.0885315,0.02771,-0.0396118,-0.0976562,-0.119873,-0.104828,-0.0674438,-0.0189209,0.0292053,0.06073,0.0657043,0.040802,-0.0213318,-0.123505,-0.241943,-0.353424,-0.449677,-0.524567,-0.576599,-0.621155,-0.661774,-0.674713,-0.643311,-0.568207,-0.46759,-0.364899,-0.272705,-0.181946,-0.0786743,0.0319519,0.119202,0.159058,0.150543,0.112946,0.0853577,0.090332,0.118134,0.157776,0.216461,0.298462,0.397858,0.484863,0.529755,0.52002,0.453827,0.351746,0.245056,0.155304,0.0901489,0.050415,0.03302,0.0353088,0.0602112,0.0926208,0.113831,0.110809,0.0785217,0.0210876,-0.0263672,-0.0377197,-0.0170593,0.0180664,0.0568542,0.0957642,0.136932,0.179413,0.210815,0.218048,0.197327,0.153015,0.098938,0.0563049,0.0467834,0.0614929,0.0854492,0.108063,0.121063,0.112701,0.0803528,0.0218811,-0.0684509,-0.188324,-0.314789,-0.428284,-0.516663,-0.578278,-0.623444,-0.664185,-0.688599,-0.675446,-0.609283,-0.505127,-0.385986,-0.274109,-0.179413,-0.0865173,0.0169678,0.114502,0.169952,0.17276,0.136169,0.0925598,0.0730896,0.0860291,0.111755,0.148407,0.206573,0.287384,0.372437,0.43277,0.444794,0.399078,0.305389,0.194489,0.0974426,0.0307312,-0.00234985,-0.00592041,0.00991821,0.04422,0.0912781,0.133087,0.148804,0.128448,0.069397,-0.00732422,-0.0593262,-0.0712891,-0.0551758,-0.0237732,0.0126038,0.0547791,0.103424,0.146851,0.169952,0.166443,0.138519,0.0970459,0.0596619,0.0467834,0.0653076,0.102478,0.139343,0.172638,0.196655,0.197266,0.173218,0.111603,0.00549316,-0.129395,-0.267456,-0.384186,-0.476318,-0.547272,-0.610504,-0.66507,-0.693115,-0.664398,-0.582703,-0.46933,-0.351746,-0.247253,-0.155518,-0.0575867,0.0504761,0.135986,0.169189,0.15094,0.108063,0.0805969,0.0940857,0.131958,0.176971,0.230072,0.307922,0.4021,0.479736,0.50882,0.46701,0.36557,0.237793,0.117401,0.0204773,-0.0428772,-0.0724792,-0.0763245,-0.0584717,-0.0173035,0.0310669,0.0641785,0.0679932,0.0324097,-0.0341492,-0.0910034,-0.109009,-0.0928345,-0.0569153,-0.0126038,0.0337524,0.0836792,0.137329,0.175903,0.180542,0.15686,0.119263,0.0845642,0.0734253,0.0885925,0.119537,0.147858,0.169678,0.18277,0.175446,0.14975,0.10022,0.0157166,-0.0970459,-0.219727,-0.330078,-0.41861,-0.488678,-0.55365,-0.622223,-0.673981,-0.676941,-0.620361,-0.518341,-0.398193,-0.281219,-0.175293,-0.0644836,0.0566406,0.154297,0.196991,0.184692,0.143219,0.110352,0.108246,0.132141,0.166504,0.217194,0.294922,0.39325,0.479675,0.521423,0.49942,0.410614,0.281494,0.153778,0.0458374,-0.0292664,-0.0674438,-0.0785217,-0.069397,-0.0409546,-0.000793457,0.0273132,0.0307312,0.0012207,-0.053894,-0.104095,-0.11792,-0.0966492,-0.0558472,-0.00784302,0.0430298,0.0964355,0.148071,0.177979,0.173828,0.141357,0.0973816,0.0586548,0.0377197,0.0480652,0.0866394,0.13559,0.182831,0.217255,0.227264,0.206787,0.153229,0.0635071,-0.0587158,-0.192413,-0.316254,-0.413757,-0.484375,-0.539093,-0.593994,-0.640228,-0.650024,-0.611969,-0.534637,-0.442902,-0.352692,-0.264038,-0.165375,-0.0499268,0.0592651,0.127594,0.144501,0.13028,0.114777,0.11673,0.136505,0.165375,0.208801,0.280609,0.38385,0.488525,0.559631,0.572113,0.518341,0.407471,0.271149,0.138,0.0248413,-0.0560303,-0.098877,-0.112091,-0.0982056,-0.0622864,-0.0222778,-0.0012207,-0.0132141,-0.0609436,-0.125183,-0.170685,-0.173981,-0.143829,-0.0912781,-0.0246277,0.0542908,0.136169,0.204651,0.238251,0.234711,0.199677,0.151764,0.109344,0.085968,0.0984497,0.137451,0.185699,0.230469,0.257324,0.252625,0.212952,0.130219,0.00469971,-0.149261,-0.305786,-0.433167,-0.523315,-0.582703,-0.625244,-0.65802,-0.6633,-0.624664,-0.544983,-0.44873,-0.358185,-0.279541,-0.199677,-0.102081,0.00247192,0.0836792,0.118591,0.115387,0.103546,0.111816,0.140747,0.177521,0.21524,0.268188,0.351624,0.452911,0.531555,0.554993,0.509155,0.405792,0.277313,0.15329,0.0469055,-0.032074,-0.0787964,-0.098877,-0.0936279,-0.0670471,-0.0307922,-0.00289917,-0.00482178,-0.0470581,-0.114288,-0.172485,-0.191681,-0.169739,-0.124908,-0.0683289,-0.000335693,0.0808105,0.161133,0.222351,0.242767,0.222626,0.179657,0.139923,0.121277,0.128052,0.155914,0.189209,0.22644,0.256195,0.266113,0.247253,0.194977,0.0964355,-0.0429688,-0.201691,-0.347534,-0.460358,-0.541351,-0.606537,-0.657349,-0.680573,-0.654907,-0.578125,-0.472229,-0.369019,-0.284119,-0.212097,-0.128662,-0.0354309,0.0443726,0.0833435,0.0802002,0.0664368,0.0696106,0.103088,0.153961,0.205109,0.258392,0.334564,0.429749,0.515259,0.555603,0.529938,0.440613,0.315857,0.190399,0.0821533,-0.0012207,-0.0567932,-0.0877991,-0.0971985,-0.0830994,-0.0556946,-0.032959,-0.0336914,-0.0720215,-0.140137,-0.207581,-0.240601,-0.231415,-0.196716,-0.147064,-0.0826721,-0.000274658,0.0931702,0.177399,0.227325,0.237518,0.219391,0.194427,0.17926,0.188202,0.220062,0.258331,0.289215,0.3078,0.306732,0.284363,0.232208,0.142365,0.0132141,-0.140594,-0.290466,-0.413635,-0.509155,-0.585938,-0.652771,-0.698608,-0.697937,-0.641907,-0.544037,-0.436584,-0.334167,-0.239868,-0.138916,-0.0311279,0.0632324,0.110138,0.112885,0.100677,0.101471,0.128998,0.173553,0.224854,0.277405,0.350067,0.442108,0.523438,0.560364,0.5354,0.447205,0.316315,0.179077,0.0564575,-0.0375061,-0.0942383,-0.12027,-0.123901,-0.105652,-0.0724792,-0.0445557,-0.0387878,-0.0712891,-0.137115,-0.205719,-0.244049,-0.241272,-0.211823,-0.171692,-0.122498,-0.0543518,0.02771,0.108246,0.16391,0.18457,0.176727,0.157318,0.146912,0.16214,0.204224,0.255707,0.301422,0.331085,0.340149,0.324921,0.28302,0.204376,0.0830078,-0.0673218,-0.218597,-0.345459,-0.441895,-0.519409,-0.591309,-0.645599,-0.659943,-0.628479,-0.560272,-0.47995,-0.403107,-0.324097,-0.232025,-0.119812,-0.0117493,0.0640259,0.0977783,0.108795,0.122894,0.155182,0.203094,0.257324,0.316528,0.389465,0.474915,0.555939,0.606934,0.60437,0.539154,0.419891,0.276581,0.138336,0.0228271,-0.0605469,-0.116974,-0.148865,-0.152679,-0.13324,-0.107452,-0.0969849,-0.119263,-0.176453,-0.241211,-0.285248,-0.291229,-0.262817,-0.214966,-0.154572,-0.0791931,0.0100098,0.0955811,0.156311,0.18277,0.176636,0.1521,0.128998,0.132233,0.168182,0.224701,0.278992,0.318604,0.336182,0.332153,0.299347,0.226868,0.111023,-0.0384521,-0.199463,-0.344635,-0.454254,-0.536194,-0.600555,-0.647949,-0.664917,-0.638489,-0.57135,-0.486053,-0.402893,-0.324921,-0.245117,-0.147583,-0.0396729,0.0522766,0.104553,0.124695,0.133087,0.1539,0.196106,0.248138,0.301147,0.361298,0.440338,0.53363,0.610901,0.642181,0.607208,0.509491,0.377808,0.238739,0.114227,0.015625,-0.0589294,-0.108734,-0.13147,-0.125519,-0.101624,-0.0809326,-0.0861206,-0.128326,-0.198334,-0.262909,-0.296326,-0.292023,-0.261414,-0.214447,-0.1539,-0.0721436,0.0200806,0.106323,0.160553,0.170959,0.148987,0.120056,0.110077,0.130737,0.176514,0.227539,0.275787,0.312103,0.331696,0.325775,0.283508,0.194427,0.0608826,-0.0954285,-0.25061,-0.384033,-0.49472,-0.586182,-0.662506,-0.713776,-0.720032,-0.678406,-0.600342,-0.512421,-0.432434,-0.358002,-0.26886,-0.155304,-0.039856,0.0426941,0.0881958,0.115173,0.149872,0.207916,0.274902,0.333221,0.382233,0.442291,0.526123,0.61319,0.667755,0.663391,0.596344,0.484436,0.357269,0.229279,0.115967,0.0273743,-0.040863,-0.0895996,-0.114288,-0.11618,-0.103363,-0.0963135,-0.115295,-0.165833,-0.228668,-0.271606,-0.276733,-0.254578,-0.216705,-0.170288,-0.106995,-0.0220947,0.0701294,0.146515,0.188538,0.192169,0.171204,0.146057,0.14093,0.158661,0.192963,0.229279,0.258392,0.276398,0.281281,0.270599,0.227386,0.141418,0.0142212,-0.133911,-0.276062,-0.399261,-0.503296,-0.595917,-0.675598,-0.726196,-0.732117,-0.68927,-0.616608,-0.534912,-0.457123,-0.376709,-0.282349,-0.174164,-0.0747681,-0.00402832,0.0418091,0.0777893,0.125702,0.191345,0.262817,0.32666,0.391571,0.467987,0.555664,0.63089,0.669891,0.653717,0.585449,0.481171,0.363434,0.250336,0.152771,0.0743103,0.0106812,-0.0377808,-0.0671692,-0.0801392,-0.0894775,-0.110077,-0.152679,-0.213348,-0.268463,-0.294586,-0.285522,-0.250275,-0.201416,-0.144958,-0.0758362,0.0085144,0.0916748,0.157104,0.192627,0.199615,0.192017,0.185364,0.194153,0.222626,0.259216,0.292084,0.310089,0.31189,0.298065,0.263489,0.195587,0.0926208,-0.0357666,-0.173309,-0.302948,-0.416107,-0.512024,-0.601105,-0.684265,-0.740631,-0.749756,-0.710419,-0.643646,-0.572357,-0.498688,-0.409546,-0.292908,-0.15744,-0.0448914,0.0215454,0.0525513,0.0800171,0.126648,0.188934,0.242889,0.285095,0.337524,0.422485,0.525055,0.608673,0.649689,0.638062,0.578613,0.480408,0.363892,0.245728,0.147308,0.0691223,0.00616455,-0.0387268,-0.0633545,-0.066925,-0.0664368,-0.0838318,-0.128723,-0.196106,-0.255035,-0.284027,-0.278595,-0.248322,-0.20163,-0.143036,-0.0707397,0.0102539,0.0831604,0.135773,0.163361,0.173309,0.172485,0.17215,0.188599,0.229523,0.287262,0.340271,0.370026,0.372955,0.358337,0.31604,0.235229,0.114838,-0.0301208,-0.177795,-0.310333,-0.421356,-0.508606,-0.584503,-0.658539,-0.718018,-0.738892,-0.717804,-0.664459,-0.60318,-0.533966,-0.45459,-0.344696,-0.212219,-0.0842285,0.00765991,0.0589905,0.0925598,0.136169,0.197845,0.257996,0.304565,0.34906,0.414978,0.503052,0.583435,0.631439,0.62674,0.572968,0.481964,0.371765,0.256042,0.152435,0.0696106,0.00582886,-0.041687,-0.0704651,-0.081543,-0.0858459,-0.0977783,-0.134583,-0.195587,-0.254974,-0.28772,-0.287933,-0.255524,-0.204163,-0.140869,-0.0704651,0.00631714,0.078125,0.134247,0.167511,0.180084,0.178528,0.174042,0.184448,0.216034,0.266571,0.317932,0.351685,0.361816,0.353516,0.320953,0.255646,0.150757,0.0163879,-0.129669,-0.265381,-0.376801,-0.468811,-0.549561,-0.623901,-0.685272,-0.715607,-0.707886,-0.67041,-0.615936,-0.549683,-0.470001,-0.369873,-0.247803,-0.125031,-0.0279236,0.0322876,0.0723572,0.109344,0.154572,0.206512,0.259277,0.318268,0.392639,0.483704,0.575134,0.644257,0.672028,0.644989,0.56424,0.450958,0.324097,0.20343,0.103973,0.025116,-0.0322266,-0.0686035,-0.0856934,-0.0906067,-0.102692,-0.136597,-0.192352,-0.25531,-0.303284,-0.320831,-0.304718,-0.25827,-0.195038,-0.125031,-0.0488586,0.0279236,0.0967712,0.149475,0.180664,0.193573,0.19458,0.202484,0.231293,0.276581,0.323975,0.357788,0.373291,0.370026,0.34021,0.276245,0.178986,0.0533447,-0.0871277,-0.225922,-0.347198,-0.446198,-0.52887,-0.605042,-0.673859,-0.723511,-0.735474,-0.706604,-0.647675,-0.57251,-0.490082,-0.396454,-0.277405,-0.142151,-0.0245056,0.048584,0.0827637,0.100403,0.126984,0.171204,0.219818,0.265991,0.324371,0.406189,0.507324,0.602112,0.664642,0.676605,0.628937,0.535065,0.414032,0.28537,0.170471,0.0800171,0.0108643,-0.0401306,-0.0718079,-0.0857849,-0.0917358,-0.106995,-0.144501,-0.203827,-0.262421,-0.298187,-0.300476,-0.270752,-0.223358,-0.171204,-0.11496,-0.0491333,0.0211487,0.0856323,0.135712,0.164368,0.175507,0.182098,0.202423,0.243378,0.296844,0.345245,0.371155,0.373505,0.354919,0.312103,0.238251,0.132141,0.000396729,-0.140594,-0.273773,-0.384979,-0.476532,-0.559143,-0.641296,-0.713165,-0.75238,-0.74472,-0.69809,-0.629425,-0.550293,-0.461975,-0.35257,-0.223419,-0.0940247,0.00302124,0.0531616,0.0739746,0.0924988,0.12973,0.181824,0.238068,0.296936,0.373718,0.474457,0.583313,0.676605,0.723511,0.706451,0.630157,0.512177,0.378479,0.248718,0.140594,0.0544434,-0.011261,-0.0567932,-0.0808716,-0.0856323,-0.0916748,-0.118195,-0.172211,-0.239594,-0.291901,-0.310547,-0.298126,-0.262573,-0.218323,-0.166382,-0.100281,-0.0222168,0.053894,0.115967,0.153564,0.169006,0.172485,0.179657,0.204773,0.249329,0.298615,0.337189,0.357452,0.356781,0.33667,0.288544,0.207001,0.0932922,-0.0434265,-0.182617,-0.306244,-0.4086,-0.49826,-0.585114,-0.669891,-0.734192,-0.756592,-0.732513,-0.673187,-0.593903,-0.50766,-0.417206,-0.308319,-0.181946,-0.065033,0.0108643,0.0413513,0.0477905,0.0594788,0.0958557,0.150269,0.212158,0.285095,0.378326,0.496063,0.618866,0.716187,0.759155,0.730774,0.644775,0.524841,0.388947,0.263763,0.158783,0.0755005,0.0128174,-0.0320129,-0.0578003,-0.0747681,-0.0935059,-0.129944,-0.188049,-0.253906,-0.306183,-0.328522,-0.319397,-0.284027,-0.238922,-0.182007,-0.111267,-0.0307312,0.0475159,0.108673,0.149139,0.167389,0.177582,0.19458,0.228943,0.275909,0.324768,0.357727,0.37149,0.365845,0.337341,0.284119,0.202301,0.0854492,-0.052887,-0.19397,-0.324036,-0.437195,-0.537933,-0.636536,-0.725189,-0.783447,-0.790771,-0.752502,-0.679626,-0.593781,-0.504913,-0.40741,-0.289734,-0.161133,-0.0549011,0.00952148,0.0356445,0.04953,0.0718079,0.115723,0.168671,0.23053,0.307648,0.409424,0.529144,0.644379,0.728943,0.76004,0.727875,0.638885,0.516602,0.380554,0.257202,0.154572,0.0691223,0.00134277,-0.0439758,-0.0699463,-0.0813599,-0.0942993,-0.126251,-0.172974,-0.227264,-0.268677,-0.290558,-0.28894,-0.268127,-0.231628,-0.180603,-0.114502,-0.0428772,0.0280457,0.0918274,0.135315,0.158722,0.167053,0.177124,0.202484,0.241211,0.287201,0.320953,0.340546,0.344452,0.330017,0.288544,0.215027,0.108795,-0.0227661,-0.16391,-0.300201,-0.422241,-0.526917,-0.617859,-0.69223,-0.745117,-0.75647,-0.725189,-0.661774,-0.583588,-0.505798,-0.428131,-0.339996,-0.232758,-0.129456,-0.0559082,-0.0205994,-0.00234985,0.0261841,0.0807495,0.153107,0.225098,0.305511,0.40564,0.526184,0.648224,0.742188,0.785675,0.76889,0.69278,0.577545,0.440491,0.304047,0.186035,0.0908813,0.016571,-0.0326233,-0.0595398,-0.0697327,-0.0718079,-0.0915527,-0.134308,-0.194489,-0.253357,-0.290405,-0.302216,-0.289398,-0.25705,-0.211212,-0.149994,-0.0773315,-0.0012207,0.0700073,0.121277,0.149414,0.160736,0.167786,0.187134,0.223358,0.269257,0.309753,0.333832,0.340485,0.332092,0.296997,0.227539,0.120667,-0.0150452,-0.157257,-0.289001,-0.399261,-0.486053,-0.559143,-0.626343,-0.683838,-0.716736,-0.709808,-0.667603,-0.605255,-0.538757,-0.475372,-0.405914,-0.310608,-0.19693,-0.091217,-0.0252991,-0.000671387,0.0120239,0.0495911,0.122223,0.205231,0.283447,0.365173,0.466797,0.59198,0.715332,0.79776,0.815277,0.761108,0.651703,0.511566,0.356049,0.212769,0.0983276,0.0188599,-0.0273743,-0.0458984,-0.045105,-0.028656,-0.0218811,-0.0479736,-0.110138,-0.193024,-0.265381,-0.311218,-0.322021,-0.305176,-0.271362,-0.218262,-0.141144,-0.049469,0.0401917,0.110077,0.151215,0.16626,0.162231,0.157776,0.171692,0.207794,0.256531,0.297943,0.322144,0.3302,0.315521,0.265778,0.178802,0.0569763,-0.0834351,-0.22049,-0.332764,-0.414642,-0.474457,-0.529755,-0.585449,-0.639679,-0.679077,-0.690613,-0.674438,-0.634918,-0.585724,-0.531219,-0.458282,-0.350006,-0.211884,-0.0820312,0.00582886,0.0481262,0.073761,0.110352,0.170807,0.237244,0.303711,0.380676,0.481018,0.606537,0.732178,0.816071,0.833923,0.774658,0.655396,0.501434,0.336792,0.192902,0.085968,0.0184021,-0.0105896,-0.0159607,-0.00375366,0.0111389,0.0106812,-0.0255737,-0.0995483,-0.196167,-0.282227,-0.335846,-0.351349,-0.33136,-0.284302,-0.212006,-0.12088,-0.024353,0.0632935,0.128326,0.160065,0.164246,0.150665,0.136658,0.140198,0.169525,0.21698,0.263763,0.294434,0.299347,0.276245,0.22168,0.137848,0.0265808,-0.0971985,-0.215637,-0.314026,-0.386597,-0.438995,-0.48761,-0.545197,-0.609955,-0.666748,-0.697998,-0.701111,-0.674042,-0.628601,-0.570679,-0.493988,-0.380402,-0.231628,-0.0863647,0.0193176,0.0713501,0.0940857,0.119141,0.169952,0.23114,0.298126,0.372559,0.467346,0.588867,0.713318,0.806885,0.82962,0.770752,0.653839,0.508728,0.357452,0.227783,0.13324,0.0765076,0.0484009,0.0429688,0.0493164,0.0550232,0.0377808,-0.0148315,-0.103638,-0.208252,-0.299469,-0.352631,-0.359955,-0.3284,-0.269073,-0.190674,-0.0955811,0.000396729,0.0786743,0.130554,0.151337,0.143768,0.118408,0.0975342,0.0991211,0.129883,0.17691,0.222504,0.252899,0.262695,0.247986,0.207123,0.141083,0.0522766,-0.0546875,-0.163147,-0.249542,-0.31424,-0.365906,-0.420624,-0.485596,-0.564056,-0.648224,-0.716522,-0.745453,-0.733124,-0.685333,-0.619019,-0.534637,-0.419281,-0.267242,-0.108917,0.0189819,0.0858459,0.0995483,0.0941772,0.108795,0.155304,0.213226,0.278076,0.35968,0.473907,0.607819,0.729095,0.797821,0.794525,0.723999,0.60968,0.478546,0.350555,0.248199,0.174561,0.129547,0.106049,0.0923462,0.0812073,0.0613403,0.0189819,-0.0578003,-0.158997,-0.258728,-0.322815,-0.343231,-0.323975,-0.278076,-0.215027,-0.139069,-0.0610657,0.0088501,0.0585938,0.0852966,0.0852966,0.0686035,0.0468445,0.0396118,0.0608215,0.109589,0.172882,0.227875,0.26416,0.276245,0.265778,0.22821,0.162567,0.0700684,-0.0385132,-0.141693,-0.227722,-0.296722,-0.358337,-0.424988,-0.503967,-0.595062,-0.683594,-0.74176,-0.755585,-0.722565,-0.660492,-0.584595,-0.491974,-0.372711,-0.228943,-0.0885925,0.011261,0.053772,0.0545044,0.0512085,0.074646,0.126984,0.190399,0.261566,0.356934,0.479553,0.618866,0.737274,0.804321,0.806335,0.746674,0.640015,0.510895,0.384308,0.280823,0.20343,0.146179,0.105774,0.0804138,0.0610657,0.0388489,0.000396729,-0.0677185,-0.153503,-0.234314,-0.28418,-0.300964,-0.290344,-0.258331,-0.212494,-0.156982,-0.101807,-0.0536804,-0.0175781,0.00933838,0.0192566,0.0157166,0.0104675,0.0193176,0.0549011,0.116516,0.186859,0.244446,0.276062,0.286102,0.277313,0.244843,0.183899,0.098999,-0.00180054,-0.101959,-0.189941,-0.263367,-0.330688,-0.397125,-0.472107,-0.556335,-0.642517,-0.707794,-0.733124,-0.712311,-0.656921,-0.588531,-0.516541,-0.430695,-0.315308,-0.17981,-0.0586548,0.012085,0.0257874,0.0186462,0.0336914,0.0891418,0.168274,0.247589,0.329285,0.434113,0.568329,0.70694,0.812256,0.849213,0.814453,0.725067,0.606659,0.479675,0.355377,0.250153,0.165253,0.104492,0.0664368,0.0441589,0.0326233,0.0149536,-0.0225525,-0.0867004,-0.1651,-0.231537,-0.273041,-0.291016,-0.290283,-0.277069,-0.251831,-0.211609,-0.161285,-0.109131,-0.0625,-0.0265198,-0.00463867,0.00946045,0.0246277,0.0524292,0.101471,0.164429,0.226257,0.269867,0.293762,0.298859,0.283173,0.238922,0.170532,0.0785217,-0.0256348,-0.121826,-0.202209,-0.266174,-0.322754,-0.382507,-0.449615,-0.52713,-0.609283,-0.680481,-0.719025,-0.716797,-0.678223,-0.622375,-0.553772,-0.4617,-0.341766,-0.201752,-0.0711365,0.0214844,0.0614014,0.0728149,0.0877991,0.133759,0.203033,0.279205,0.365448,0.467529,0.594574,0.726135,0.831512,0.878967,0.852509,0.757141,0.620636,0.47168,0.333374,0.220886,0.133026,0.0730896,0.036499,0.0194092,0.0189209,0.0169678,-0.00973511,-0.0748291,-0.166321,-0.253418,-0.317383,-0.353516,-0.360138,-0.344116,-0.309418,-0.257935,-0.192413,-0.118195,-0.0502625,-0.00012207,0.025177,0.0334778,0.0385132,0.0575256,0.100342,0.163483,0.22464,0.269684,0.294312,0.302032,0.291473,0.254517,0.188873,0.100403,0.00195312,-0.0913391,-0.169067,-0.230865,-0.285034,-0.341492,-0.411102,-0.492767,-0.587616,-0.679291,-0.74292,-0.763367,-0.741028,-0.69043,-0.615601,-0.514191,-0.38208,-0.227112,-0.0751648,0.0396729,0.101959,0.122955,0.131744,0.158936,0.210419,0.275391,0.35376,0.450562,0.573456,0.709229,0.827332,0.898621,0.894592,0.814117,0.68103,0.526672,0.373383,0.240417,0.135101,0.0606689,0.015625,-0.00531006,-0.00958252,-0.0142212,-0.038269,-0.0969238,-0.185364,-0.275848,-0.348053,-0.392822,-0.403778,-0.384644,-0.34256,-0.282349,-0.207672,-0.126312,-0.0526123,0.00323486,0.0393372,0.0548401,0.0587158,0.0678406,0.0955811,0.148132,0.207245,0.259735,0.296509,0.318939,0.321686,0.294312,0.236664,0.153107,0.0526123,-0.0499268,-0.141876,-0.216248,-0.279083,-0.338196,-0.400696,-0.471893,-0.553986,-0.640228,-0.712372,-0.751221,-0.753052,-0.721771,-0.659882,-0.562897,-0.435852,-0.289124,-0.135315,0.000396729,0.0985413,0.15155,0.173706,0.185303,0.204712,0.243835,0.305389,0.393982,0.504791,0.630432,0.748413,0.843506,0.89212,0.867004,0.771362,0.63028,0.4711,0.315979,0.182831,0.0784607,0.00247192,-0.0480652,-0.0734253,-0.0800781,-0.0849609,-0.110016,-0.162567,-0.235107,-0.303436,-0.356537,-0.384186,-0.381561,-0.354248,-0.310669,-0.253357,-0.177521,-0.0984497,-0.0297241,0.0183105,0.0481262,0.0632324,0.0775146,0.102295,0.144623,0.199341,0.253082,0.295929,0.325928,0.338013,0.323364,0.276917,0.204895,0.114899,0.012207,-0.0854492,-0.167053,-0.231079,-0.287537,-0.343567,-0.400818,-0.465057,-0.538483,-0.622833,-0.701355,-0.754395,-0.766388,-0.731689,-0.651306,-0.536591,-0.40625,-0.267731,-0.116974,0.0292664,0.142426,0.200012,0.206726,0.197388,0.207733,0.256775,0.328674,0.413757,0.508728,0.621826,0.745178,0.849304,0.900513,0.865875,0.757355,0.602356,0.428345,0.25592,0.103973,-0.0142822,-0.0955811,-0.133484,-0.136719,-0.12088,-0.10437,-0.105652,-0.132416,-0.188812,-0.25827,-0.322632,-0.366058,-0.375977,-0.35968,-0.324493,-0.267914,-0.189819,-0.10321,-0.0200806,0.0490723,0.0982056,0.125427,0.134491,0.142212,0.160278,0.193085,0.23288,0.26358,0.28363,0.291962,0.281433,0.249725,0.19873,0.126648,0.0378418,-0.0518188,-0.129333,-0.193085,-0.245911,-0.297119,-0.355255,-0.422241,-0.493225,-0.564117,-0.640167,-0.706604,-0.741638,-0.730774,-0.667664,-0.566406,-0.444641,-0.315308,-0.179138,-0.0350952,0.0974426,0.195038,0.24054,0.240875,0.232483,0.253693,0.311157,0.38208,0.461639,0.546204,0.640167,0.732635,0.79715,0.805786,0.738007,0.610748,0.449066,0.282288,0.131958,0.0117493,-0.074646,-0.12442,-0.138123,-0.128113,-0.108063,-0.0939636,-0.101624,-0.144562,-0.217651,-0.298065,-0.357849,-0.385773,-0.374115,-0.336121,-0.271942,-0.190491,-0.0929565,0.00228882,0.0806885,0.129456,0.147125,0.143097,0.126038,0.115784,0.122894,0.154175,0.20108,0.245911,0.277588,0.296265,0.296265,0.274109,0.220276,0.138672,0.0358276,-0.0691223,-0.161682,-0.232025,-0.283173,-0.327393,-0.373718,-0.420746,-0.467743,-0.520416,-0.580017,-0.637939,-0.673645,-0.677002,-0.638397,-0.555328,-0.44101,-0.305389,-0.16214,-0.0167847,0.117462,0.223022,0.284851,0.301208,0.296997,0.29425,0.308807,0.338196,0.385254,0.447052,0.519135,0.595734,0.656525,0.685852,0.658752,0.575195,0.45108,0.307983,0.166718,0.0448303,-0.0511475,-0.118073,-0.154358,-0.167725,-0.162292,-0.148315,-0.140808,-0.153778,-0.191681,-0.242218,-0.28363,-0.301208,-0.286926,-0.253632,-0.209534,-0.159668,-0.098999,-0.0332336,0.0266418,0.0714722,0.0949707,0.104218,0.103821,0.115906,0.146301,0.192688,0.241364,0.278656,0.302216,0.312103,0.302551,0.268677,0.207581,0.120605,0.0139465,-0.0926208,-0.177917,-0.229279,-0.258057,-0.279541,-0.303711,-0.330292,-0.360687,-0.401428,-0.455048,-0.516663,-0.583832,-0.634796,-0.649292,-0.605469,-0.506317,-0.374176,-0.231415,-0.0967712,0.0353088,0.162231,0.26712,0.324493,0.321564,0.280823,0.237061,0.225586,0.250885,0.302826,0.364777,0.437744,0.524567,0.609955,0.664307,0.65332,0.568756,0.432281,0.274628,0.11972,-0.0205994,-0.130402,-0.196838,-0.217377,-0.204041,-0.171021,-0.133972,-0.107117,-0.101532,-0.126373,-0.176971,-0.233215,-0.27774,-0.292297,-0.276245,-0.237671,-0.179413,-0.103302,-0.0157166,0.0689392,0.136047,0.178986,0.192169,0.18866,0.179596,0.178467,0.191284,0.215302,0.242554,0.261139,0.265656,0.248718,0.209747,0.15155,0.0769043,-0.0106812,-0.0996094,-0.169678,-0.209534,-0.225586,-0.226196,-0.224701,-0.232544,-0.258545,-0.305389,-0.37088,-0.447998,-0.533386,-0.612976,-0.658264,-0.639404,-0.550232,-0.410492,-0.249725,-0.0904846,0.0498047,0.17215,0.264771,0.313782,0.302704,0.242157,0.172028,0.134033,0.150818,0.203644,0.280762,0.368195,0.464172,0.552155,0.610229,0.617126,0.555664,0.432831,0.280762,0.128326,-0.00424194,-0.108398,-0.172974,-0.195709,-0.186462,-0.161407,-0.134705,-0.11377,-0.10907,-0.12973,-0.174042,-0.218384,-0.245239,-0.248718,-0.22229,-0.171692,-0.107574,-0.0437622,0.0195923,0.078186,0.124237,0.147186,0.149872,0.144043,0.142761,0.152893,0.174316,0.207397,0.242889,0.264709,0.266785,0.247589,0.208588,0.148804,0.0759888,0.0020752,-0.0628357,-0.113495,-0.138062,-0.140076,-0.128448,-0.123627,-0.139801,-0.180603,-0.243561,-0.324036,-0.411774,-0.497345,-0.567474,-0.614258,-0.62204,-0.567932,-0.454498,-0.302429,-0.147186,-0.0179749,0.0808716,0.151886,0.203705,0.22934,0.21759,0.166779,0.102875,0.0678406,0.0889893,0.156036,0.241821,0.322144,0.396515,0.465912,0.51947,0.541168,0.502838,0.402283,0.259338,0.114044,-0.0116882,-0.108795,-0.177246,-0.214355,-0.213837,-0.185577,-0.138458,-0.0926819,-0.0568542,-0.0448303,-0.0636902,-0.101471,-0.142273,-0.169739,-0.174377,-0.153961,-0.116394,-0.0737,-0.0257874,0.0305481,0.0899963,0.13913,0.166595,0.178406,0.178741,0.181671,0.186859,0.19632,0.210419,0.220215,0.22168,0.208923,0.179749,0.138916,0.0912781,0.0414734,-0.0100708,-0.0575256,-0.0950928,-0.111267,-0.10907,-0.103821,-0.106384,-0.129456,-0.172638,-0.232361,-0.302429,-0.37262,-0.438141,-0.494568,-0.533234,-0.533508,-0.478394,-0.376801,-0.25061,-0.130615,-0.0357666,0.0296631,0.078125,0.118988,0.137726,0.124359,0.0759888,0.0233459,0.00476074,0.041626,0.116241,0.198792,0.273895,0.34082,0.404297,0.456268,0.479279,0.444977,0.353088,0.2276,0.10672,0.00280762,-0.0755005,-0.133026,-0.166656,-0.171631,-0.151672,-0.115387,-0.0771179,-0.0481262,-0.036377,-0.048645,-0.0765076,-0.109406,-0.133362,-0.139252,-0.125031,-0.0986023,-0.065094,-0.0209961,0.0367737,0.101013,0.156433,0.19812,0.224304,0.233551,0.229523,0.216309,0.203888,0.192291,0.176788,0.157379,0.132294,0.109741,0.0926819,0.0830078,0.0728149,0.0549011,0.0281067,0.0020752,-0.0137634,-0.0226746,-0.036438,-0.0634155,-0.105042,-0.153442,-0.204712,-0.253632,-0.301483,-0.351898,-0.404114,-0.45517,-0.488007,-0.486115,-0.446472,-0.374451,-0.290131,-0.207458,-0.129883,-0.0589905,0.00805664,0.0593262,0.0785828,0.06073,0.0234375,-0.00610352,-0.00247192,0.0391235,0.106323,0.184448,0.264313,0.346985,0.422028,0.472565,0.479553,0.429138,0.327179,0.200958,0.0720825,-0.0393372,-0.123901,-0.175964,-0.191162,-0.179199,-0.143707,-0.099884,-0.0582581,-0.0322876,-0.028595,-0.0496521,-0.0822754,-0.108856,-0.119202,-0.101746,-0.0594788,-0.00665283,0.0475159,0.0990601,0.148407,0.187195,0.206787,0.204041,0.184784,0.160004,0.143616,0.144043,0.161346,0.188263,0.210602,0.220001,0.217468,0.201965,0.174316,0.133026,0.0828857,0.0307312,-0.0154419,-0.0412903,-0.0410156,-0.0249634,-0.00430298,0.00234985,-0.00805664,-0.040863,-0.10022,-0.186035,-0.290741,-0.399353,-0.499542,-0.575256,-0.619751,-0.614655,-0.558289,-0.455841,-0.329529,-0.203217,-0.0992126,-0.0303955,0.0104675,0.0270386,0.024292,-0.00476074,-0.0542908,-0.0954285,-0.098877,-0.0475159,0.0479126,0.162903,0.270538,0.361084,0.433777,0.481354,0.486725,0.43338,0.321075,0.178589,0.0393372,-0.0733643,-0.155121,-0.202484,-0.210205,-0.181488,-0.125244,-0.0606689,0.000396729,0.0441589,0.0657654,0.0623474,0.0380554,0.000671387,-0.0338135,-0.0462341,-0.0352478,-0.0108032,0.0147705,0.0428772,0.0787964,0.125702,0.173035,0.209595,0.230621,0.23584,0.233765,0.232819,0.23584,0.236908,0.227875,0.206726,0.182831,0.156708,0.129883,0.103821,0.0826111,0.0670471,0.0549622,0.0484619,0.0510864,0.0582581,0.0575867,0.0400696,0.00161743,-0.0618286,-0.145172,-0.239685,-0.333832,-0.417938,-0.488403,-0.541107,-0.57016,-0.573975,-0.545715,-0.488861,-0.408264,-0.316986,-0.237396,-0.173157,-0.133575,-0.108185,-0.0885315,-0.0732117,-0.0674438,-0.0738831,-0.0820312,-0.0689392,-0.0195923,0.0622864,0.154907,0.237518,0.301086,0.355438,0.39505,0.40921,0.38678,0.315979,0.211609,0.101288,0.0116882,-0.0516052,-0.0934143,-0.113098,-0.10556,-0.0708618,-0.0205383,0.0303345,0.0665894,0.0848999,0.0839539,0.0627441,0.0292664,-0.00515747,-0.0279236,-0.0301208,-0.0117493,0.0205383,0.0579224,0.098877,0.146179,0.199341,0.24411,0.272278,0.278748,0.27121,0.257874,0.245575,0.231018,0.215698,0.195312,0.171875,0.150604,0.133362,0.124176,0.118134,0.110413,0.0933533,0.073822,0.0546265,0.0358276,0.0150452,-0.0175171,-0.0627441,-0.122498,-0.191498,-0.262085,-0.328735,-0.391571,-0.446381,-0.48996,-0.523041,-0.543976,-0.549896,-0.532501,-0.488403,-0.425781,-0.35968,-0.306915,-0.263428,-0.22821,-0.190216,-0.147308,-0.113373,-0.0921631,-0.0833435,-0.065918,-0.0224304,0.0516663,0.140076,0.222839,0.292694,0.35083,0.400696,0.431274,0.431274,0.391022,0.308807,0.204895,0.104767,0.026123,-0.0296021,-0.0646973,-0.0761719,-0.0648193,-0.0299988,0.016449,0.0577087,0.086853,0.0942383,0.0785828,0.045105,0.0111389,-0.0140381,-0.0244446,-0.0119324,0.01651,0.0595398,0.105988,0.159943,0.21637,0.267517,0.302216,0.313507,0.303223,0.279999,0.253693,0.23465,0.220154,0.205444,0.18222,0.157532,0.138855,0.126373,0.112823,0.0929565,0.0652466,0.0331421,0.00335693,-0.0185852,-0.0360413,-0.0547791,-0.0817566,-0.114838,-0.159546,-0.210419,-0.268463,-0.332977,-0.395233,-0.452911,-0.504791,-0.5466,-0.569092,-0.570099,-0.554718,-0.521637,-0.471497,-0.402222,-0.327332,-0.252563,-0.189728,-0.144287,-0.106506,-0.0775757,-0.0502625,-0.0278625,-0.0128174,0.00341797,0.0369873,0.0996094,0.180756,0.262146,0.327332,0.373566,0.40451,0.418457,0.410004,0.365448,0.283783,0.182159,0.08255,0.0071106,-0.0426331,-0.0668335,-0.0701904,-0.0540161,-0.0186462,0.0263672,0.0706787,0.101288,0.112488,0.0999451,0.0734863,0.0422974,0.0185242,0.017395,0.0362549,0.069519,0.108521,0.149536,0.196442,0.247467,0.292236,0.316132,0.316376,0.29953,0.271881,0.242371,0.213684,0.187927,0.159058,0.125916,0.0942383,0.0664978,0.0462952,0.0312195,0.0142212,-0.00744629,-0.0323486,-0.0551147,-0.0740967,-0.090332,-0.109131,-0.137573,-0.173218,-0.212952,-0.251068,-0.291748,-0.330536,-0.368256,-0.399078,-0.427338,-0.450623,-0.464508,-0.469269,-0.464783,-0.452026,-0.427338,-0.3862,-0.332489,-0.268402,-0.204773,-0.152618,-0.107849,-0.0686646,-0.0276489,0.00744629,0.0306091,0.0412903,0.053894,0.0856934,0.138855,0.203979,0.262146,0.306061,0.34317,0.371216,0.386658,0.368744,0.310333,0.221619,0.128052,0.0512695,-0.00491333,-0.0418701,-0.0564575,-0.0479736,-0.0182495,0.0220947,0.0665894,0.0987244,0.115723,0.112427,0.0931702,0.0666504,0.0457153,0.0401306,0.0578613,0.0900574,0.132355,0.174103,0.216858,0.25946,0.290131,0.298065,0.282684,0.247314,0.20639,0.168518,0.133484,0.105652,0.0870361,0.0751038,0.0648193,0.0532227,0.0386047,0.0218201,-6.10352e-05,-0.0252991,-0.0540161,-0.0817566,-0.102203,-0.108337,-0.104889,-0.0990601,-0.101074,-0.112366,-0.133698,-0.160004,-0.195709,-0.243561,-0.298004,-0.351624,-0.397858,-0.432556,-0.451813,-0.457672,-0.44873,-0.427002,-0.392761,-0.34848,-0.297272,-0.240875,-0.193573,-0.156525,-0.12738,-0.0992126,-0.0697327,-0.0448914,-0.0219421,-0.00302124,0.0270386,0.0714722,0.131287,0.203033,0.266907,0.319611,0.35611,0.380219,0.388794,0.368591,0.313293,0.23175,0.141266,0.0622864,0.003479,-0.0322266,-0.0499878,-0.0475769,-0.028595,0.00302124,0.0411377,0.0767212,0.100952,0.106842,0.0968628,0.0773926,0.0614929,0.0579224,0.0678406,0.0900574,0.115845,0.143555,0.17276,0.201874,0.227203,0.238586,0.232971,0.212341,0.188385,0.165924,0.148987,0.133148,0.115295,0.0979919,0.0798035,0.0626221,0.0471802,0.0308838,0.0146179,-0.00228882,-0.0193176,-0.0284424,-0.0305481,-0.028717,-0.0261841,-0.0300598,-0.0440369,-0.0698547,-0.104645,-0.143555,-0.189545,-0.242096,-0.294983,-0.345703,-0.386322,-0.416321,-0.437073,-0.449738,-0.456268,-0.458466,-0.44989,-0.423492,-0.379944,-0.326172,-0.27243,-0.225769,-0.179749,-0.131622,-0.0811462,-0.0323486,0.0017395,0.0244446,0.0469666,0.0856323,0.141266,0.203217,0.260071,0.303223,0.338531,0.365662,0.37619,0.360687,0.309601,0.228607,0.136322,0.052948,-0.00967407,-0.0548401,-0.0785217,-0.079071,-0.0541687,-0.012146,0.0334778,0.0740967,0.100555,0.108124,0.0983887,0.0778503,0.0535583,0.0386658,0.0403442,0.06073,0.0960999,0.136169,0.182098,0.231201,0.27887,0.312225,0.321686,0.306915,0.27356,0.235992,0.198181,0.164368,0.135162,0.108734,0.0852966,0.0677795,0.0577087,0.0511475,0.0422058,0.0302734,0.00958252,-0.00958252,-0.0265808,-0.0401917,-0.0534363,-0.0686646,-0.0876465,-0.108521,-0.130615,-0.154022,-0.181946,-0.217255,-0.255768,-0.29483,-0.333435,-0.370697,-0.400024,-0.423492,-0.44043,-0.454041,-0.457794,-0.448334,-0.418793,-0.372375,-0.316528,-0.264984,-0.220337,-0.177521,-0.133026,-0.0885925,-0.0514832,-0.0261841,-0.00958252,0.011261,0.0489807,0.104431,0.16806,0.228668,0.27887,0.315582,0.337067,0.342346,0.323639,0.275726,0.204102,0.121948,0.0481873,-0.00872803,-0.0411987,-0.0533447,-0.0452271,-0.0189209,0.016449,0.0526733,0.0849609,0.110535,0.124756,0.124298,0.11618,0.107178,0.107056,0.122498,0.151611,0.184357,0.216248,0.244781,0.270203,0.291412,0.303497,0.300537,0.280762,0.247406,0.211273,0.17746,0.1474,0.123688,0.0973206,0.0683899,0.040741,0.0204773,0.00900269,-0.00161743,-0.0151062,-0.0314636,-0.0424805,-0.0457764,-0.0439758,-0.040863,-0.040802,-0.0483093,-0.0630798,-0.0836182,-0.107513,-0.138458,-0.176849,-0.224426,-0.272034,-0.31955,-0.362762,-0.401611,-0.432159,-0.457184,-0.475037,-0.485046,-0.484924,-0.470276,-0.442566,-0.399872,-0.345123,-0.285187,-0.22934,-0.176117,-0.125641,-0.07724,-0.036438,-0.00604248,0.0179138,0.0405273,0.0741577,0.117126,0.171753,0.228882,0.28009,0.319946,0.345459,0.355042,0.342224,0.302368,0.237335,0.15799,0.0826721,0.020874,-0.0187988,-0.0375977,-0.0349121,-0.0153809,0.0202026,0.0627441,0.105713,0.137726,0.152283,0.156189,0.1521,0.142822,0.136505,0.137177,0.151215,0.173157,0.198059,0.222961,0.246246,0.268463,0.284515,0.287323,0.273773,0.245392,0.211426,0.177124,0.14975,0.124908,0.101471,0.0761719,0.0520935,0.032074,0.0147705,0.000396729,-0.0167847,-0.0352478,-0.0518799,-0.0635071,-0.0669861,-0.0675049,-0.0699463,-0.0814209,-0.0979309,-0.11853,-0.143951,-0.176575,-0.219269,-0.266052,-0.31311,-0.35611,-0.390564,-0.418457,-0.441101,-0.459198,-0.470276,-0.474243,-0.467529,-0.447998,-0.412445,-0.36377,-0.306793,-0.250214,-0.197449,-0.146729,-0.0971985,-0.0470581,-0.00732422,0.0177307,0.0296021,0.0430298,0.0724182,0.121216,0.178314,0.229279,0.268677,0.301025,0.328278,0.343964,0.330078,0.279144,0.201416,0.11496,0.0428162,-0.00866699,-0.0350952,-0.0422058,-0.0269165,0.00900269,0.0592651,0.113373,0.157593,0.186981,0.194153,0.184967,0.163574,0.140137,0.127258,0.130341,0.149139,0.179321,0.214508,0.250671,0.281097,0.307068,0.318604,0.307922,0.276062,0.23053,0.180756,0.134033,0.0955811,0.0679932,0.0479736,0.032959,0.0212708,0.0126038,0.00778198,0.00308228,-0.00698853,-0.0234375,-0.0437012,-0.0626221,-0.0763245,-0.0856934,-0.093689,-0.10321,-0.116974,-0.130615,-0.147644,-0.167328,-0.196167,-0.231201,-0.26825,-0.304565,-0.341492,-0.375916,-0.405731,-0.426392,-0.439758,-0.446594,-0.447662,-0.442566,-0.427063,-0.398529,-0.355103,-0.304443,-0.255371,-0.209808,-0.162354,-0.110931,-0.0554504,-0.0067749,0.0316162,0.0578003,0.082489,0.111481,0.150146,0.193359,0.230133,0.257935,0.279999,0.30188,0.317383,0.311829,0.284302,0.236664,0.181488,0.126312,0.0808105,0.0475769,0.0232239,0.0111389,0.0152283,0.0350952,0.065918,0.0975342,0.12442,0.14624,0.161285,0.168732,0.170532,0.172546,0.177643,0.185516,0.19516,0.209259,0.225769,0.243164,0.255707,0.26416,0.263763,0.253632,0.232971,0.206848,0.176575,0.144226,0.111603,0.0807495,0.053833,0.0281982,0.00497437,-0.0126038,-0.0252991,-0.036438,-0.0501404,-0.0649719,-0.0783386,-0.0907288,-0.104645,-0.119141,-0.135498,-0.153687,-0.175049,-0.197052,-0.219055,-0.242157,-0.269592,-0.29718,-0.325836,-0.353638,-0.384094,-0.411682,-0.43396,-0.447998,-0.457855,-0.45929,-0.453766,-0.432556,-0.394165,-0.338074,-0.272705,-0.210266,-0.156189,-0.10672,-0.0525513,0.00415039,0.052887,0.0814209,0.0966492,0.111694,0.142365,0.184631,0.228729,0.262817,0.281219,0.293091,0.302948,0.308411,0.295929,0.258789,0.20108,0.136322,0.0834961,0.0449829,0.0211487,0.00924683,0.00616455,0.0169678,0.037384,0.0654297,0.0942993,0.120728,0.140472,0.154633,0.164429,0.172974,0.188599,0.21109,0.237122,0.261902,0.281219,0.294769,0.303497,0.306915,0.303162,0.287598,0.261749,0.225769,0.184509,0.146301,0.11261,0.0840149,0.0526733,0.0194702,-0.015625,-0.0467224,-0.0715332,-0.0897217,-0.108582,-0.128937,-0.148804,-0.161469,-0.165649,-0.164978,-0.167938,-0.174713,-0.185242,-0.196503,-0.208252,-0.222748,-0.239075,-0.26001,-0.278595,-0.296265,-0.313629,-0.331543,-0.350555,-0.36499,-0.375641,-0.384979,-0.391083,-0.390137,-0.376984,-0.345703,-0.29718,-0.236237,-0.172974,-0.115845,-0.0681763,-0.0236816,0.0223389,0.0599365,0.0780029,0.0797424,0.0767822,0.0860291,0.113831,0.152893,0.191833,0.22403,0.249725,0.27356,0.291962,0.293823,0.269409,0.217377,0.150818,0.0922852,0.0504761,0.0273132,0.0210876,0.0282593,0.0498657,0.081604,0.11972,0.1586,0.18866,0.208069,0.217194,0.217194,0.212769,0.212433,0.21759,0.230133,0.24295,0.25174,0.253357,0.252411,0.245728,0.233765,0.213104,0.184906,0.146912,0.106842,0.0738831,0.0511475,0.0349731,0.0176392,-0.00531006,-0.0334167,-0.06073,-0.0843506,-0.105225,-0.127533,-0.152893,-0.178314,-0.192902,-0.191956,-0.176392,-0.158936,-0.144714,-0.134308,-0.13028,-0.130402,-0.141205,-0.156311,-0.180817,-0.211151,-0.246643,-0.282166,-0.310547,-0.331421,-0.347717,-0.357727,-0.361755,-0.360535,-0.352081,-0.339417,-0.315247,-0.277863,-0.232422,-0.183777,-0.14444,-0.112946,-0.0798645,-0.0439758,-0.00717163,0.0176392,0.0316772,0.0400696,0.0571289,0.0918884,0.142822,0.194977,0.239349,0.272705,0.301361,0.325439,0.337006,0.321899,0.276581,0.208862,0.140198,0.0856934,0.0502014,0.0312195,0.0259094,0.0371094,0.0618286,0.0987244,0.136047,0.167664,0.191833,0.200806,0.19928,0.186646,0.172089,0.163696,0.163025,0.17041,0.177734,0.187134,0.195038,0.202972,0.208588,0.207184,0.196655,0.17276,0.14093,0.10733,0.0751038,0.0479736,0.0201416,-0.00827026,-0.041626,-0.0748901,-0.102875,-0.123077,-0.137115,-0.149811,-0.15979,-0.163147,-0.15625,-0.139862,-0.122345,-0.108398,-0.104218,-0.106842,-0.115234,-0.128937,-0.148804,-0.173309,-0.199066,-0.223969,-0.248535,-0.272095,-0.292969,-0.307129,-0.316467,-0.321686,-0.327454,-0.333557,-0.33606,-0.327454,-0.299866,-0.256714,-0.209473,-0.172638,-0.144714,-0.114777,-0.0760498,-0.0334167,-0.000396729,0.0143738,0.0219421,0.0399475,0.0802612,0.139526,0.199463,0.245728,0.277191,0.30249,0.324432,0.332489,0.315979,0.267242,0.19928,0.131348,0.0783997,0.0470581,0.037323,0.0402832,0.0549011,0.0785217,0.105835,0.131744,0.150757,0.159271,0.157379,0.145508,0.12854,0.115295,0.116394,0.130615,0.15451,0.178528,0.19928,0.214783,0.225586,0.230957,0.224854,0.208069,0.175964,0.13559,0.0928345,0.0571289,0.0299377,0.00933838,-0.0102539,-0.0313416,-0.0549622,-0.0764465,-0.0886536,-0.094696,-0.101074,-0.112366,-0.126099,-0.130127,-0.125427,-0.112213,-0.102356,-0.0991211,-0.103485,-0.111145,-0.121063,-0.131348,-0.146912,-0.168182,-0.192017,-0.218262,-0.241089,-0.262909,-0.283173,-0.303497,-0.323822,-0.342163,-0.360016,-0.370758,-0.368683,-0.348328,-0.307404,-0.256439,-0.204163,-0.158386,-0.115631,-0.0682678,-0.0171204,0.0232849,0.0414124,0.0428772,0.0470581,0.0661011,0.105316,0.1539,0.200684,0.239594,0.27478,0.310608,0.34021,0.348267,0.32135,0.261566,0.183899,0.11261,0.0548401,0.0137024,-0.00878906,-0.0159607,-0.00408936,0.0231018,0.062561,0.107178,0.14328,0.165314,0.171478,0.167175,0.158203,0.15329,0.153168,0.157654,0.166504,0.177521,0.189728,0.203644,0.217712,0.222839,0.219055,0.204224,0.179321,0.148193,0.115845,0.0866394,0.0596008,0.0302124,-0.000213623,-0.032074,-0.0638428,-0.089386,-0.111084,-0.126373,-0.140259,-0.1492,-0.150543,-0.139404,-0.119873,-0.10022,-0.0879822,-0.0831604,-0.0842896,-0.0928345,-0.109924,-0.134491,-0.167267,-0.202881,-0.23645,-0.265167,-0.287598,-0.305115,-0.317261,-0.324097,-0.326324,-0.330292,-0.33667,-0.338409,-0.324493,-0.292145,-0.249542,-0.207458,-0.170685,-0.136932,-0.0956421,-0.0444336,0.00598145,0.0390625,0.0495911,0.0531616,0.0664368,0.0987244,0.142426,0.181488,0.206848,0.226868,0.251068,0.278931,0.293243,0.281616,0.236176,0.171295,0.109253,0.0613403,0.0294495,0.00906372,0.00296021,0.0115967,0.0346375,0.0690613,0.112152,0.15033,0.177307,0.188812,0.187653,0.179474,0.175171,0.17926,0.186188,0.195831,0.203827,0.212769,0.223083,0.234039,0.237244,0.226868,0.206787,0.177246,0.141479,0.103699,0.070343,0.0412903,0.0124817,-0.0160522,-0.0448914,-0.0704041,-0.0921631,-0.107666,-0.121063,-0.13504,-0.147308,-0.154633,-0.150757,-0.138184,-0.121277,-0.109253,-0.101196,-0.0961914,-0.0932312,-0.0973206,-0.110077,-0.131622,-0.156982,-0.184174,-0.209473,-0.234161,-0.258057,-0.28244,-0.302948,-0.317535,-0.329468,-0.339996,-0.347717,-0.345123,-0.324432,-0.289612,-0.246796,-0.204315,-0.169281,-0.134644,-0.0941772,-0.0481262,-0.0105286,0.0119324,0.0205994,0.0318909,0.057251,0.0987244,0.146851,0.191345,0.227203,0.261688,0.291626,0.314575,0.320557,0.296509,0.245972,0.181427,0.122498,0.0770569,0.046051,0.028595,0.0278625,0.0397949,0.0638428,0.0965881,0.130798,0.160217,0.180664,0.188599,0.186035,0.178802,0.174164,0.175964,0.182678,0.190399,0.193298,0.191956,0.194031,0.199127,0.20047,0.190399,0.169403,0.143951,0.11618,0.089386,0.0639038,0.0367737,0.00744629,-0.0239563,-0.053772,-0.0814209,-0.104218,-0.119873,-0.131805,-0.138123,-0.140747,-0.135437,-0.124023,-0.107452,-0.0924072,-0.0838928,-0.0838928,-0.0921631,-0.106567,-0.12738,-0.153961,-0.182953,-0.210815,-0.235504,-0.255859,-0.273224,-0.285858,-0.298737,-0.310089,-0.320343,-0.332367,-0.343689,-0.347931,-0.335785,-0.301819,-0.258057,-0.208862,-0.165039,-0.123505,-0.0768433,-0.0297241,0.0138245,0.0377197,0.0421448,0.0404663,0.0518799,0.0841675,0.129547,0.174164,0.211884,0.247314,0.286255,0.317261,0.332031,0.316864,0.269073,0.200806,0.130463,0.0734863,0.0357666,0.0170593,0.0158386,0.0316772,0.0626831,0.103485,0.144714,0.178314,0.197052,0.198181,0.183502,0.161346,0.14679,0.141602,0.143433,0.149414,0.158539,0.171204,0.186523,0.20282,0.213959,0.208008,0.186188,0.152161,0.117645,0.0819397,0.0480652,0.0158386,-0.0138245,-0.0410767,-0.0630188,-0.0828247,-0.0997925,-0.111023,-0.119263,-0.126923,-0.135437,-0.140411,-0.138,-0.128113,-0.115906,-0.105652,-0.100891,-0.101471,-0.104645,-0.110474,-0.12262,-0.142548,-0.166992,-0.19101,-0.21344,-0.233765,-0.255096,-0.277313,-0.297516,-0.312561,-0.325836,-0.335663,-0.336517,-0.325256,-0.296448,-0.254242,-0.206177,-0.161285,-0.124573,-0.0886536,-0.0490723,-0.011261,0.0146179,0.021759,0.0228882,0.0340881,0.0653076,0.115112,0.16745,0.211548,0.249329,0.289124,0.323914,0.344788,0.335236,0.292694,0.226868,0.154846,0.0934143,0.045166,0.0125427,-0.000396729,0.00497437,0.028656,0.0645752,0.10611,0.141754,0.166779,0.176392,0.172211,0.155792,0.138062,0.127045,0.122681,0.124237,0.129059,0.135651,0.147736,0.166718,0.184448,0.192749,0.185577,0.168671,0.141541,0.112701,0.081604,0.0515442,0.0191345,-0.0147095,-0.0452271,-0.0706787,-0.091217,-0.104492,-0.112701,-0.121063,-0.12677,-0.128723,-0.123352,-0.110931,-0.0971069,-0.0871277,-0.082428,-0.0814819,-0.0846863,-0.0926819,-0.107178,-0.128662,-0.156036,-0.18161,-0.205505,-0.22699,-0.245117,-0.260956,-0.276459,-0.28894,-0.300018,-0.309662,-0.312225,-0.303619,-0.280273,-0.245117,-0.208191,-0.170349,-0.137329,-0.102875,-0.0636292,-0.0268555,-0.00112915,0.0085144,0.0106812,0.0218811,0.0508728,0.0944214,0.139801,0.179993,0.217133,0.256531,0.291412,0.311279,0.306976,0.271149,0.211823,0.143097,0.0827637,0.0357666,0.00274658,-0.0132751,-0.0103455,0.00979614,0.0449829,0.0819397,0.116058,0.141541,0.155304,0.155853,0.147797,0.139465,0.136993,0.138794,0.145721,0.154907,0.163818,0.173035,0.182434,0.192078,0.195038,0.186646,0.168274,0.142487,0.117249,0.0926208,0.0654907,0.0369263,0.00811768,-0.0202026,-0.0489197,-0.0742188,-0.094696,-0.109009,-0.118134,-0.120209,-0.115448,-0.102539,-0.0838928,-0.0632935,-0.045166,-0.0343018,-0.0327454,-0.0404053,-0.0585938,-0.0854492,-0.118195,-0.154022,-0.186249,-0.214569,-0.238922,-0.259735,-0.274902,-0.284973,-0.291748,-0.304047,-0.317596,-0.327789,-0.326782,-0.305786,-0.273712,-0.239532,-0.209473,-0.182892,-0.147522,-0.102631,-0.0532227,-0.0187988,-0.0012207,0.00570679,0.0212708,0.0559082,0.103363,0.150421,0.184784,0.213348,0.245728,0.276794,0.297333,0.292297,0.252289,0.191071,0.123169,0.0667114,0.025238,-0.000457764,-0.0141602,-0.00860596,0.0151062,0.0520935,0.0950317,0.134918,0.164978,0.178406,0.175232,0.159546,0.14389,0.134155,0.131287,0.134033,0.138397,0.146057,0.15979,0.181824,0.205231,0.221008,0.221344,0.205505,0.182159,0.156769,0.12912,0.0969238,0.0602112,0.0241699,-0.00906372,-0.0349121,-0.0519409,-0.061615,-0.0692749,-0.0769958,-0.0808105,-0.0821533,-0.0775146,-0.0692749,-0.0622253,-0.0614014,-0.0658264,-0.0757751,-0.0906067,-0.109863,-0.134705,-0.165924,-0.199188,-0.230804,-0.257599,-0.281494,-0.299744,-0.312012,-0.318939,-0.324646,-0.331146,-0.334106,-0.327454,-0.307587,-0.276398,-0.24176,-0.20874,-0.18161,-0.154785,-0.119995,-0.0773926,-0.0386658,-0.0131531,-0.00128174,0.0105286,0.0366516,0.0787964,0.126984,0.163635,0.18692,0.207123,0.227661,0.248932,0.256927,0.237183,0.190491,0.132629,0.0821533,0.0477905,0.0290527,0.0194092,0.0185852,0.0297241,0.0525513,0.0863037,0.121063,0.149323,0.167847,0.172974,0.167999,0.163147,0.164032,0.172028,0.183289,0.192291,0.196594,0.202484,0.212219,0.226318,0.233551,0.22879,0.211426,0.186249,0.160278,0.135101,0.108917,0.0771179,0.0420227,0.00952148,-0.0201416,-0.0437622,-0.0614929,-0.0754395,-0.0878601,-0.0996094,-0.104767,-0.105988,-0.101288,-0.098053,-0.098053,-0.102692,-0.110077,-0.118408,-0.128876,-0.14389,-0.163757,-0.18866,-0.21402,-0.236053,-0.254364,-0.274048,-0.291809,-0.309875,-0.325104,-0.338074,-0.345306,-0.341003,-0.319885,-0.283905,-0.24176,-0.200806,-0.168182,-0.139923,-0.109589,-0.0775757,-0.0532837,-0.0436401,-0.0464478,-0.041687,-0.0181274,0.028717,0.0847778,0.135712,0.177124,0.215179,0.251282,0.279419,0.291138,0.269257,0.219147,0.156586,0.102539,0.0633545,0.0403442,0.0314026,0.0336914,0.046051,0.0686646,0.100067,0.130615,0.156708,0.170197,0.1698,0.160126,0.1539,0.157318,0.169464,0.184113,0.193817,0.196106,0.196594,0.204437,0.216248,0.222626,0.215851,0.201019,0.181824,0.166046,0.153168,0.134155,0.107178,0.0722961,0.0353088,-0.000274658,-0.0334778,-0.0610657,-0.0841064,-0.102417,-0.112885,-0.118408,-0.11731,-0.110413,-0.10141,-0.0963745,-0.100677,-0.11261,-0.127319,-0.144043,-0.162292,-0.185303,-0.212891,-0.240082,-0.261292,-0.27713,-0.29007,-0.302032,-0.31485,-0.326508,-0.337128,-0.3396,-0.327393,-0.298462,-0.258209,-0.216797,-0.180603,-0.151672,-0.123627,-0.0930176,-0.0653076,-0.04953,-0.0491943,-0.0534973,-0.0448914,-0.0138245,0.0387268,0.0977173,0.147064,0.186188,0.223297,0.256378,0.27774,0.27478,0.238068,0.175507,0.10968,0.0580444,0.0287781,0.0174561,0.0202637,0.0341492,0.0587158,0.0918884,0.130341,0.160675,0.180328,0.182953,0.171539,0.155365,0.146912,0.15329,0.170349,0.189728,0.205383,0.213562,0.223175,0.238586,0.249878,0.24881,0.229218,0.201019,0.172546,0.151825,0.135162,0.114166,0.0861816,0.0545044,0.0255737,-0.00357056,-0.0306091,-0.0576477,-0.0841675,-0.107513,-0.123566,-0.131744,-0.13382,-0.127258,-0.119385,-0.112152,-0.109802,-0.114563,-0.123688,-0.138184,-0.157654,-0.184509,-0.214355,-0.24115,-0.264252,-0.281342,-0.295166,-0.307251,-0.319672,-0.329956,-0.336456,-0.33075,-0.311951,-0.281494,-0.242828,-0.20639,-0.173157,-0.14505,-0.11618,-0.0869751,-0.0646362,-0.0551147,-0.0585327,-0.0602722,-0.0464478,-0.00900269,0.0469055,0.100739,0.147125,0.187988,0.227112,0.26001,0.274963,0.259613,0.208679,0.144165,0.0855103,0.0453186,0.0246887,0.019989,0.0306702,0.0545044,0.0875244,0.126862,0.160797,0.183289,0.192688,0.187256,0.169861,0.153839,0.150146,0.160065,0.180084,0.20343,0.221008,0.232971,0.243713,0.253571,0.255585,0.242096,0.214783,0.179932,0.150421,0.130615,0.115234,0.0972595,0.0728149,0.0476379,0.0212097,-0.00146484,-0.0237732,-0.0477905,-0.0763245,-0.103882,-0.122681,-0.131073,-0.132812,-0.129791,-0.126648,-0.12558,-0.126984,-0.130951,-0.140411,-0.156189,-0.179077,-0.207184,-0.233978,-0.256989,-0.276642,-0.293915,-0.311432,-0.329865,-0.344513,-0.352234,-0.347137,-0.325317,-0.289673,-0.247192,-0.206116,-0.168793,-0.135834,-0.103882,-0.0771179,-0.0628967,-0.0636902,-0.0767212,-0.0836182,-0.0721436,-0.0371094,0.0144348,0.0697327,0.122223,0.175446,0.226929,0.266998,0.281677,0.264648,0.21283,0.148071,0.0863037,0.0435486,0.0221558,0.0158997,0.0285339,0.0553589,0.0947571,0.141602,0.181824,0.204987,0.207794,0.194489,0.170349,0.150208,0.144379,0.151947,0.168274,0.190887,0.213837,0.236511,0.256989,0.269745,0.268066,0.249542,0.21933,0.183899,0.153625,0.13089,0.113708,0.09375,0.0710144,0.0488586,0.0297241,0.0105286,-0.0106812,-0.0371094,-0.0661621,-0.093689,-0.114777,-0.127533,-0.133759,-0.135498,-0.135498,-0.136444,-0.138336,-0.1427,-0.149872,-0.16275,-0.182831,-0.209534,-0.238525,-0.26123,-0.278809,-0.295105,-0.313843,-0.334167,-0.351837,-0.356995,-0.346985,-0.320007,-0.278931,-0.234772,-0.192017,-0.152771,-0.12027,-0.0910034,-0.0691833,-0.0606689,-0.0690002,-0.0852966,-0.0939026,-0.0798035,-0.0390625,0.0203247,0.0808105,0.136597,0.189484,0.239471,0.27652,0.286713,0.258606,0.19632,0.121338,0.0571899,0.0197449,0.0032959,0.00827026,0.0257874,0.0595398,0.106506,0.158722,0.201813,0.220551,0.215912,0.192902,0.163574,0.140808,0.133484,0.140411,0.158051,0.182495,0.210876,0.23819,0.264832,0.28183,0.28302,0.263763,0.228943,0.189819,0.153778,0.128448,0.105774,0.0844421,0.0602722,0.0379944,0.0163879,-0.00314331,-0.0236206,-0.0463867,-0.0698547,-0.0925598,-0.111023,-0.122223,-0.128387,-0.13208,-0.135162,-0.139191,-0.143433,-0.15155,-0.163239,-0.178802,-0.197998,-0.221832,-0.246796,-0.271027,-0.295105,-0.315521,-0.333496,-0.346375,-0.351959,-0.343353,-0.31781,-0.276245,-0.226196,-0.181,-0.14624,-0.120056,-0.0961914,-0.0787354,-0.0735474,-0.0841064,-0.103638,-0.113037,-0.0996094,-0.0556335,0.00592041,0.0724792,0.134766,0.19342,0.244904,0.27713,0.281006,0.245117,0.178131,0.0995483,0.0316772,-0.0117493,-0.0276489,-0.0172424,0.0119324,0.0551147,0.108582,0.163971,0.208344,0.233307,0.233093,0.21109,0.174896,0.143494,0.127045,0.127991,0.142944,0.162811,0.188385,0.217865,0.249664,0.274506,0.283569,0.272614,0.24585,0.210754,0.174042,0.140198,0.10611,0.0742188,0.0449829,0.020752,0.00012207,-0.0191956,-0.0328064,-0.04422,-0.0535583,-0.0636292,-0.0715332,-0.0776672,-0.0791321,-0.0816956,-0.0905457,-0.106903,-0.126923,-0.14859,-0.17041,-0.192505,-0.214447,-0.238525,-0.261353,-0.282104,-0.301147,-0.319885,-0.338806,-0.356262,-0.360291,-0.342438,-0.304962,-0.259216,-0.21759,-0.182892,-0.154175,-0.125641,-0.10022,-0.0862427,-0.0917358,-0.109009,-0.120605,-0.109131,-0.0710754,-0.0145569,0.0472412,0.106842,0.167847,0.226715,0.270081,0.284241,0.259796,0.198669,0.118805,0.0420837,-0.0148315,-0.0428162,-0.0466309,-0.0259705,0.011261,0.0624084,0.119598,0.172089,0.208344,0.220612,0.207245,0.175781,0.145844,0.129456,0.129883,0.141022,0.154968,0.174225,0.199463,0.231537,0.261078,0.278412,0.276123,0.256866,0.226379,0.197723,0.17215,0.145721,0.114716,0.0800171,0.0476379,0.0205383,-0.00247192,-0.0205994,-0.0366516,-0.0531006,-0.0669861,-0.0747681,-0.0730896,-0.0634155,-0.053833,-0.053833,-0.0600586,-0.0740967,-0.0943604,-0.12207,-0.154846,-0.192749,-0.230743,-0.267334,-0.297394,-0.322479,-0.341949,-0.359741,-0.371887,-0.368744,-0.343903,-0.303711,-0.257874,-0.215851,-0.181,-0.155701,-0.135254,-0.120209,-0.116638,-0.127197,-0.144287,-0.153625,-0.137054,-0.0906677,-0.0223389,0.0555115,0.13028,0.199005,0.256195,0.292969,0.301544,0.273438,0.205109,0.115295,0.0290527,-0.0346375,-0.0663757,-0.0663147,-0.0424194,-0.00222778,0.048584,0.104095,0.155579,0.188812,0.199341,0.179993,0.144714,0.112885,0.100464,0.107666,0.126434,0.151947,0.17926,0.208008,0.23819,0.264435,0.275787,0.267334,0.244232,0.213348,0.188049,0.170532,0.153961,0.134644,0.111694,0.0910034,0.0686646,0.0467834,0.0232849,-0.00323486,-0.0332336,-0.0592041,-0.0759888,-0.0804749,-0.0779114,-0.0718079,-0.0681763,-0.0657654,-0.0673828,-0.0779114,-0.0997925,-0.130219,-0.170746,-0.216248,-0.265656,-0.31189,-0.352966,-0.386047,-0.409668,-0.411499,-0.387451,-0.338745,-0.278534,-0.220276,-0.169861,-0.132233,-0.108124,-0.0927429,-0.0944214,-0.112488,-0.146454,-0.176849,-0.183167,-0.153778,-0.0920105,-0.0103455,0.0743713,0.158722,0.235901,0.295593,0.324249,0.30954,0.245789,0.149475,0.0508118,-0.028656,-0.0759888,-0.0898132,-0.0751648,-0.0377808,0.0142822,0.0777893,0.137451,0.181274,0.197662,0.185791,0.14975,0.108124,0.0797424,0.0722046,0.08255,0.107849,0.139343,0.173706,0.212677,0.252747,0.281677,0.287537,0.269592,0.236237,0.202881,0.177582,0.1586,0.138916,0.115906,0.0940247,0.0742188,0.0569763,0.0423584,0.0266418,0.0050354,-0.0172424,-0.036377,-0.0478516,-0.0524902,-0.0557861,-0.0580444,-0.065918,-0.0779114,-0.0953674,-0.116852,-0.140411,-0.164764,-0.194305,-0.230011,-0.268738,-0.306122,-0.341278,-0.369873,-0.383423,-0.374786,-0.342224,-0.294708,-0.242096,-0.190216,-0.147064,-0.113831,-0.0928955,-0.0895386,-0.105225,-0.134308,-0.163696,-0.17215,-0.150879,-0.101959,-0.032959,0.0449829,0.130066,0.211823,0.276398,0.308746,0.301086,0.245239,0.158325,0.0626221,-0.0198059,-0.0709534,-0.0910645,-0.0779114,-0.0397949,0.0153809,0.0802612,0.140869,0.183289,0.198181,0.17981,0.137787,0.089325,0.0575256,0.0461121,0.053833,0.0750427,0.105774,0.144165,0.187469,0.231018,0.260345,0.267517,0.251953,0.2229,0.192902,0.169067,0.149475,0.131226,0.113281,0.0958557,0.0791931,0.0658264,0.0524292,0.0375061,0.0182495,-0.00280762,-0.019928,-0.0299377,-0.0314026,-0.0283813,-0.029541,-0.0350952,-0.0503235,-0.0751648,-0.105042,-0.140137,-0.178986,-0.220337,-0.265106,-0.306732,-0.340546,-0.361542,-0.365723,-0.350067,-0.318817,-0.273041,-0.22644,-0.183441,-0.147247,-0.121338,-0.106781,-0.107056,-0.124908,-0.153503,-0.179321,-0.184692,-0.160553,-0.108582,-0.0377808,0.0422058,0.123352,0.201965,0.264313,0.295319,0.286041,0.235504,0.153687,0.0630798,-0.0157776,-0.0697937,-0.0949707,-0.0875854,-0.052948,0.0017395,0.0656433,0.12558,0.168396,0.185455,0.173096,0.136108,0.0878601,0.0473938,0.0274658,0.0275269,0.0435486,0.0740356,0.113281,0.15799,0.202423,0.235992,0.24646,0.236115,0.21109,0.18042,0.155914,0.136841,0.121002,0.106995,0.0971069,0.0885315,0.0810242,0.0701904,0.0576477,0.040802,0.0196533,-0.00161743,-0.0171204,-0.0257874,-0.0259094,-0.0262451,-0.028717,-0.0380554,-0.0556335,-0.0819397,-0.116455,-0.154022,-0.198517,-0.248383,-0.296997,-0.335571,-0.361359,-0.36438,-0.344696,-0.306732,-0.253296,-0.197174,-0.147247,-0.110931,-0.0873718,-0.0791321,-0.0869141,-0.109467,-0.14035,-0.170746,-0.182617,-0.161621,-0.107056,-0.0324097,0.0502625,0.131012,0.204163,0.26062,0.287598,0.275726,0.220551,0.134766,0.0392761,-0.0413513,-0.0923462,-0.109863,-0.0974426,-0.0598755,-0.00415039,0.0606079,0.123016,0.168335,0.187988,0.175842,0.137451,0.0867004,0.0428772,0.0147095,0.00912476,0.0203247,0.0491333,0.0895386,0.138336,0.185852,0.223969,0.242035,0.236237,0.211334,0.175049,0.141418,0.113037,0.0899353,0.069458,0.0561218,0.0497437,0.0498657,0.0556335,0.0610046,0.0585938,0.0482483,0.0316772,0.0143738,0.00167847,-0.00958252,-0.0240173,-0.0434875,-0.0663147,-0.0929565,-0.119537,-0.150208,-0.182678,-0.222076,-0.26416,-0.302643,-0.329803,-0.337128,-0.318939,-0.282562,-0.234039,-0.184509,-0.140259,-0.106567,-0.0816956,-0.0672607,-0.0700684,-0.0931702,-0.126587,-0.156311,-0.16391,-0.138916,-0.0866394,-0.0175781,0.0536194,0.125977,0.193237,0.246124,0.269684,0.254761,0.197174,0.114777,0.0287781,-0.040741,-0.0856323,-0.103638,-0.09552,-0.0645752,-0.0128784,0.0487366,0.108917,0.152344,0.169952,0.159668,0.12558,0.08255,0.0420227,0.0128784,-0.00167847,-0.000396729,0.0191345,0.0546265,0.10202,0.151093,0.191895,0.214966,0.220276,0.209259,0.191345,0.166443,0.134979,0.102966,0.0729675,0.0514832,0.0378418,0.0326843,0.0344238,0.0357666,0.036377,0.0340271,0.0289307,0.0212708,0.0132141,0,-0.0184021,-0.0414124,-0.0687256,-0.0993347,-0.133636,-0.169342,-0.208069,-0.250275,-0.290009,-0.319824,-0.333099,-0.325256,-0.295441,-0.247711,-0.190552,-0.131348,-0.0795288,-0.0425415,-0.0198059,-0.0177307,-0.038269,-0.0753784,-0.119598,-0.150543,-0.1539,-0.124298,-0.0657654,0.0083313,0.0873108,0.163971,0.229004,0.269867,0.276855,0.239868,0.167389,0.0804138,-0.00515747,-0.070343,-0.110077,-0.120148,-0.102753,-0.0635071,-0.00543213,0.0561829,0.109528,0.143036,0.151215,0.135712,0.104645,0.0700073,0.0379333,0.0145569,0.00631714,0.0115356,0.027771,0.0561829,0.0927429,0.128113,0.158875,0.178864,0.187805,0.187042,0.178864,0.164093,0.140411,0.112274,0.0831604,0.0579834,0.0369873,0.0246277,0.0175171,0.0128174,0.00985718,0.0083313,0.00839233,0.00457764,-0.00363159,-0.0204163,-0.0458984,-0.0786743,-0.115173,-0.152435,-0.188995,-0.22403,-0.257721,-0.286255,-0.305115,-0.308929,-0.293488,-0.259888,-0.212219,-0.162689,-0.116241,-0.0741577,-0.0387268,-0.0120239,-0.000793457,-0.0113525,-0.0391846,-0.0721436,-0.0927429,-0.0921631,-0.0674438,-0.0246887,0.0292664,0.0883179,0.151825,0.208344,0.240692,0.239014,0.195435,0.126312,0.0479126,-0.0218201,-0.0724182,-0.101013,-0.103424,-0.0820923,-0.0363159,0.0246887,0.0862427,0.131958,0.154358,0.146637,0.116974,0.0761719,0.0368347,0.00631714,-0.0109253,-0.0108032,0.00390625,0.0352478,0.0759888,0.119141,0.154968,0.17215,0.172882,0.157715,0.135315,0.111542,0.0892029,0.0670471,0.0516052,0.0396118,0.0357056,0.0378418,0.0431519,0.0462341,0.0432129,0.0361023,0.0263672,0.0172424,0.00598145,-0.00799561,-0.0284424,-0.0553589,-0.0898132,-0.128784,-0.170288,-0.213104,-0.254913,-0.29364,-0.322906,-0.333374,-0.317993,-0.278595,-0.220154,-0.159882,-0.107056,-0.0642395,-0.0317383,-0.00772095,0.000396729,-0.0151062,-0.0495911,-0.0871277,-0.10321,-0.0881958,-0.0440369,0.0128174,0.0744934,0.137726,0.200287,0.254089,0.28009,0.266907,0.21228,0.132477,0.0478516,-0.0249634,-0.0785828,-0.109741,-0.11496,-0.0942383,-0.0534363,0.00241089,0.0578613,0.103149,0.129547,0.132904,0.112885,0.0794678,0.0440369,0.0149536,-0.00363159,-0.0128174,-0.00918579,0.00604248,0.0379944,0.0777893,0.116791,0.143158,0.155975,0.157104,0.152771,0.144104,0.127991,0.104156,0.0759888,0.0479736,0.0271301,0.0134888,0.00637817,0.00167847,0.000457764,-0.0012207,0,-0.000946045,-0.00161743,-0.00912476,-0.0259705,-0.0518799,-0.0855713,-0.124023,-0.16449,-0.206665,-0.250336,-0.290741,-0.321899,-0.32962,-0.310211,-0.265045,-0.209412,-0.155243,-0.104034,-0.057373,-0.0128174,0.0177307,0.0238342,0.00396729,-0.0335693,-0.0647583,-0.0753784,-0.0606079,-0.0266418,0.0195312,0.0764465,0.143555,0.212158,0.26593,0.288879,0.271088,0.217194,0.142487,0.0643616,-0.00369263,-0.0553589,-0.0873718,-0.0986633,-0.086853,-0.0539551,-0.00592041,0.0444946,0.0832214,0.101135,0.0951843,0.0711365,0.0427551,0.0184021,-0.000274658,-0.0131531,-0.0184631,-0.0114136,0.0104675,0.0443115,0.0802612,0.108521,0.124573,0.131287,0.132477,0.130066,0.124908,0.11377,0.0992737,0.0805969,0.0637512,0.0499878,0.0394592,0.0296021,0.0198059,0.00894165,-0.00189209,-0.0124817,-0.0241089,-0.0378418,-0.0557861,-0.0798035,-0.107056,-0.14035,-0.175293,-0.212433,-0.249725,-0.283783,-0.305847,-0.308807,-0.288605,-0.246735,-0.193359,-0.14035,-0.0910034,-0.046051,-0.00650024,0.0194092,0.0256958,0.00933838,-0.0179138,-0.0390015,-0.0410156,-0.0237732,0.0108643,0.0534363,0.105835,0.1633,0.218719,0.257446,0.266388,0.239349,0.184174,0.115631,0.0468445,-0.0103455,-0.0509949,-0.0718689,-0.0723572,-0.0527649,-0.019989,0.0190735,0.0533447,0.0754395,0.0789185,0.0618286,0.0339661,0.00491333,-0.0167847,-0.0274658,-0.028656,-0.0206604,-0.00408936,0.0224304,0.0546875,0.0845642,0.104034,0.108673,0.101685,0.0927429,0.0851746,0.0801392,0.0740967,0.0681763,0.0644226,0.0658264,0.0701294,0.073822,0.0697327,0.0569153,0.0371704,0.0153809,-0.00817871,-0.0336914,-0.0600586,-0.0867004,-0.111877,-0.136108,-0.161011,-0.188995,-0.217865,-0.24765,-0.272705,-0.287384,-0.286255,-0.266113,-0.231201,-0.187378,-0.138916,-0.0906677,-0.0420837,-0.0020752,0.0238953,0.0316772,0.0216064,0.00778198,0.000274658,0.00933838,0.0328979,0.0670471,0.108459,0.156311,0.20639,0.249664,0.271027,0.260345,0.217926,0.15686,0.0892639,0.0282593,-0.0211487,-0.0556335,-0.0714722,-0.0675964,-0.045105,-0.0126038,0.0218201,0.046051,0.0570374,0.0508118,0.0314026,0.00692749,-0.0195923,-0.039856,-0.0516052,-0.0508118,-0.040741,-0.0187378,0.0138245,0.0498047,0.0833435,0.107788,0.11908,0.117798,0.111145,0.0974426,0.0806885,0.0588074,0.0375977,0.0195923,0.012207,0.0126953,0.0203247,0.0264587,0.0315552,0.028717,0.0218201,0.00582886,-0.0184631,-0.053009,-0.0950317,-0.140472,-0.181671,-0.220062,-0.250275,-0.27243,-0.280762,-0.272827,-0.246246,-0.205444,-0.160553,-0.118134,-0.0810242,-0.0509949,-0.0233459,-0.00549316,0.00140381,-0.00543213,-0.015625,-0.0195923,-0.00616455,0.0236206,0.0644226,0.108337,0.153351,0.199738,0.242371,0.269012,0.269867,0.239197,0.187805,0.127777,0.069458,0.0225525,-0.00946045,-0.0263672,-0.028717,-0.0175171,0.00234985,0.0265808,0.0457153,0.0523376,0.0421448,0.0159607,-0.0169678,-0.0447083,-0.0617371,-0.0678406,-0.0657043,-0.0583801,-0.0431519,-0.0178528,0.0129395,0.0415344,0.0592651,0.0653076,0.0645752,0.065155,0.0673218,0.0697937,0.068512,0.0626221,0.0563049,0.0505981,0.0443726,0.0366516,0.0236816,0.0067749,-0.0123596,-0.0315552,-0.0499268,-0.066925,-0.0820312,-0.0997314,-0.121338,-0.147858,-0.176971,-0.208344,-0.236908,-0.260559,-0.270752,-0.261475,-0.233032,-0.188385,-0.137512,-0.0846863,-0.0361633,0.00778198,0.041626,0.0584717,0.0547791,0.0353699,0.0175171,0.0118713,0.0256348,0.053894,0.0930176,0.138336,0.188721,0.238678,0.273621,0.282013,0.257446,0.206177,0.142029,0.0779114,0.024353,-0.012085,-0.028656,-0.0267944,-0.0100708,0.0177917,0.0469055,0.0696106,0.078064,0.0672607,0.0386047,-0.000335693,-0.0377808,-0.0628967,-0.0754395,-0.0763855,-0.070282,-0.0561218,-0.0341492,-0.0067749,0.0189819,0.0365906,0.0437012,0.0411987,0.0361023,0.0331421,0.0347595,0.0354309,0.0350342,0.0336914,0.0317383,0.0305481,0.0256348,0.0177917,0.00442505,-0.0144348,-0.0369263,-0.06073,-0.0831604,-0.102753,-0.123352,-0.14563,-0.172302,-0.201141,-0.230194,-0.255524,-0.26767,-0.265503,-0.247253,-0.215118,-0.175629,-0.128662,-0.0802002,-0.0324707,0.0136108,0.0458984,0.0599976,0.0565186,0.0466309,0.0424194,0.0531616,0.0765076,0.106995,0.143951,0.185242,0.232544,0.274719,0.299286,0.295654,0.262695,0.208923,0.148071,0.0926208,0.0478516,0.0151062,-0.0032959,-0.00894165,-0.00146484,0.0151062,0.0342407,0.0490723,0.0499268,0.0349121,0.00390625,-0.028656,-0.0521545,-0.0623474,-0.065094,-0.0640259,-0.0592041,-0.0475159,-0.0259705,0.00189209,0.0231018,0.0344849,0.0336304,0.0312195,0.0334778,0.0396729,0.0450439,0.04422,0.0410156,0.0362549,0.0315552,0.0267944,0.0183105,-0.00012207,-0.0263672,-0.0567017,-0.0895386,-0.119141,-0.145447,-0.170685,-0.195099,-0.218994,-0.242767,-0.26123,-0.276459,-0.280762,-0.272705,-0.250549,-0.21524,-0.171143,-0.124298,-0.0775146,-0.0327454,0.00924683,0.0438843,0.0626831,0.0635071,0.0542297,0.0482483,0.0571899,0.0783386,0.110352,0.147522,0.190216,0.240265,0.287384,0.31839,0.321014,0.291901,0.237518,0.170959,0.10791,0.0552979,0.0181885,-0.0012207,-0.00228882,0.0131531,0.0377808,0.0679932,0.0913391,0.102081,0.0889282,0.0549622,0.00918579,-0.03302,-0.0656433,-0.086792,-0.0976562,-0.0996704,-0.0888062,-0.0630188,-0.0263062,0.0110779,0.0379333,0.0498047,0.0498047,0.0461731,0.0422058,0.037323,0.0267029,0.0155029,0.00778198,0.00469971,0.00799561,0.0124207,0.0109253,-0.000671387,-0.0222778,-0.0522156,-0.0879822,-0.127441,-0.169525,-0.212158,-0.251282,-0.284973,-0.309814,-0.325592,-0.325378,-0.307526,-0.276306,-0.232635,-0.190002,-0.147522,-0.108185,-0.0686646,-0.0285339,0.00650024,0.0317993,0.0453186,0.0555115,0.0719604,0.101135,0.137726,0.173553,0.206787,0.237579,0.269409,0.296997,0.311951,0.306061,0.275726,0.229614,0.177246,0.131805,0.0957642,0.0706177,0.0531006,0.0426941,0.0397339,0.0412903,0.0487366,0.0535583,0.0495911,0.0293884,-0.0015564,-0.0300598,-0.0477905,-0.0527649,-0.0493164,-0.0452271,-0.0393372,-0.0292053,-0.012085,0.00958252,0.0275269,0.0349121,0.0312195,0.0259705,0.024231,0.028656,0.0350342,0.036499,0.0354919,0.0302734,0.0272522,0.0259705,0.0214844,0.00631714,-0.021759,-0.0597229,-0.100952,-0.142761,-0.181671,-0.221161,-0.259064,-0.29483,-0.321014,-0.336853,-0.334564,-0.315857,-0.28183,-0.239136,-0.19397,-0.150482,-0.112274,-0.0795288,-0.0502014,-0.028717,-0.0147705,-0.00738525,-6.10352e-05,0.0184631,0.0550232,0.104767,0.15979,0.208923,0.251068,0.287872,0.313507,0.32135,0.305634,0.266388,0.214355,0.161682,0.118988,0.0908813,0.0806885,0.0814209,0.0907288,0.100006,0.105164,0.105316,0.098053,0.0818176,0.0526733,0.0119324,-0.0298767,-0.0603943,-0.0700684,-0.0646973,-0.0556946,-0.0479126,-0.0412903,-0.0291138,-0.0103455,0.00698853,0.015564,0.0144348,0.012085,0.0148926,0.0274658,0.0437012,0.0559692,0.0605469,0.0585327,0.0535583,0.0484009,0.0391846,0.0235596,-0.000396729,-0.0311279,-0.0665894,-0.103699,-0.142151,-0.183014,-0.226196,-0.275635,-0.324432,-0.367004,-0.388458,-0.38269,-0.351349,-0.30188,-0.245117,-0.186707,-0.132751,-0.0808105,-0.0350342,-0.00390625,0.00665283,0.0017395,-0.0071106,-0.00112915,0.0265198,0.0755005,0.134766,0.198395,0.261292,0.317993,0.361084,0.37854,0.362091,0.310822,0.23645,0.158936,0.0898743,0.0432129,0.0202026,0.0181885,0.0313416,0.0532227,0.0777893,0.100464,0.109741,0.10202,0.0738831,0.0314026,-0.0122681,-0.0463867,-0.0636292,-0.0656433,-0.0578613,-0.0447693,-0.0283203,-0.00592041,0.0171204,0.0350342,0.0418091,0.0391846,0.0313416,0.0249634,0.021759,0.020752,0.0201416,0.0209351,0.020874,0.0211487,0.0218201,0.0198059,0.0112,-0.00442505,-0.0297241,-0.0626221,-0.100464,-0.141418,-0.183563,-0.226715,-0.270142,-0.311554,-0.343231,-0.354767,-0.340424,-0.302032,-0.249481,-0.195038,-0.146912,-0.104889,-0.0679932,-0.0344238,-0.0149536,-0.0154419,-0.028595,-0.0400085,-0.0279846,0.0126038,0.0732117,0.138,0.201202,0.263031,0.320618,0.363983,0.379608,0.35968,0.302307,0.228058,0.155579,0.0967712,0.0567017,0.037262,0.0354309,0.0479126,0.065979,0.0860291,0.100128,0.101288,0.0840149,0.0455627,-0.00476074,-0.0499878,-0.0788574,-0.0881958,-0.0832214,-0.0714111,-0.0574646,-0.0387878,-0.0124207,0.0140991,0.0324707,0.0359802,0.0296631,0.0225525,0.0220947,0.0269165,0.032135,0.0368347,0.0390625,0.0392761,0.0366516,0.0332336,0.0235596,0.00537109,-0.0265198,-0.0643005,-0.105438,-0.146393,-0.184906,-0.221344,-0.259003,-0.295319,-0.330078,-0.346252,-0.33786,-0.305054,-0.259338,-0.211761,-0.168732,-0.126434,-0.0810852,-0.0359802,-0.000946045,0.0118103,0.0050354,-0.00341797,0.00375366,0.0359802,0.0837708,0.133484,0.183563,0.234772,0.289948,0.338531,0.368347,0.363373,0.321228,0.256378,0.190002,0.132294,0.0894775,0.057251,0.0380554,0.0317993,0.0381775,0.0519409,0.0678406,0.0776672,0.0714722,0.0477905,0.0114746,-0.0213318,-0.0434875,-0.0535583,-0.0557861,-0.0568542,-0.0585938,-0.053833,-0.0384521,-0.0170593,0.000549316,0.00524902,0.00302124,0.00323486,0.0106812,0.0257874,0.0344849,0.0368347,0.0311279,0.0200806,0.00692749,-0.00515747,-0.0195312,-0.0406799,-0.0679321,-0.0994568,-0.129211,-0.157104,-0.18512,-0.213226,-0.245789,-0.282684,-0.316376,-0.332306,-0.318207,-0.278534,-0.230194,-0.184296,-0.145294,-0.105316,-0.0596008,-0.0137634,0.0146179,0.0147095,-0.00549316,-0.019989,-0.00738525,0.0360413,0.0926819,0.148315,0.199463,0.254364,0.311615,0.360077,0.38324,0.365784,0.312164,0.242554,0.179871,0.131134,0.100677,0.08255,0.0757141,0.0788574,0.0881958,0.101288,0.112091,0.10968,0.0862427,0.0387878,-0.016449,-0.0609436,-0.0842285,-0.0880432,-0.0816956,-0.073761,-0.0681763,-0.0544434,-0.0298767,-0.00201416,0.0148315,0.011261,-0.00308228,-0.012085,-0.0101929,0.00112915,0.0104065,0.0134888,0.0123596,0.00805664,0.0050354,0.00201416,-0.00811768,-0.0314636,-0.0693359,-0.113892,-0.15799,-0.198517,-0.237244,-0.274506,-0.31369,-0.352081,-0.375122,-0.36792,-0.326508,-0.264923,-0.205841,-0.15979,-0.122894,-0.0842896,-0.0404053,-0.00524902,0.00463867,-0.0124817,-0.0334167,-0.029541,0.0109253,0.0764465,0.146393,0.210205,0.271881,0.333557,0.388,0.419067,0.411346,0.361877,0.287445,0.213226,0.154785,0.11853,0.102753,0.0999451,0.105713,0.116119,0.126526,0.132355,0.127258,0.104706,0.0580444,-0.00247192,-0.0565186,-0.0864563,-0.0897217,-0.074707,-0.0552368,-0.0405273,-0.0292664,-0.0124207,0.00793457,0.017395,0.0100708,-0.0110779,-0.0297852,-0.0343628,-0.0228882,-0.00637817,0.00692749,0.0152283,0.0171204,0.012207,0.00375366,-0.0139465,-0.041748,-0.081543,-0.129608,-0.177521,-0.221741,-0.258209,-0.290894,-0.325104,-0.361816,-0.390564,-0.392487,-0.360535,-0.302155,-0.238464,-0.182617,-0.133484,-0.0879822,-0.0404663,-0.00268555,0.00805664,-0.00973511,-0.0404053,-0.0570374,-0.0404663,0.00845337,0.0745544,0.146729,0.223236,0.301483,0.372711,0.420624,0.432159,0.397919,0.328796,0.247864,0.176971,0.127655,0.102478,0.100067,0.111481,0.133698,0.160004,0.184296,0.195648,0.18457,0.143555,0.0786743,0.0128784,-0.0357666,-0.0617371,-0.0671082,-0.0610046,-0.0517578,-0.0396729,-0.0204773,0.00592041,0.0245056,0.0271912,0.012146,-0.00637817,-0.0167847,-0.0147095,-0.0065918,-0.00100708,-0.000396729,-0.0062561,-0.0148315,-0.0239563,-0.0349121,-0.058197,-0.0942383,-0.137787,-0.183105,-0.224365,-0.262482,-0.296326,-0.334564,-0.373169,-0.40036,-0.401367,-0.368256,-0.312103,-0.253021,-0.20047,-0.153442,-0.104706,-0.0553589,-0.0185242,-0.00979614,-0.0312805,-0.061554,-0.0708618,-0.0443726,0.0114746,0.0797424,0.14975,0.223419,0.300629,0.36792,0.407532,0.406128,0.358398,0.281219,0.201019,0.137909,0.0993958,0.0848999,0.0915527,0.11377,0.144043,0.17572,0.19986,0.20993,0.193298,0.146118,0.0779114,0.0136108,-0.0283813,-0.0406799,-0.0330811,-0.0179138,-0.000671387,0.0166321,0.0424805,0.0710144,0.0885315,0.0820312,0.0578003,0.0302734,0.0141602,0.0127563,0.0185852,0.0185242,0.0128784,0.00222778,-0.0104065,-0.0233459,-0.0413513,-0.0708618,-0.115448,-0.16861,-0.221069,-0.268005,-0.309662,-0.347992,-0.391144,-0.433167,-0.457184,-0.445862,-0.395569,-0.324158,-0.251831,-0.186646,-0.125763,-0.0657043,-0.00979614,0.0227661,0.0188599,-0.0142212,-0.0502625,-0.0639648,-0.0385132,0.0128784,0.079071,0.152557,0.230957,0.310669,0.376984,0.410889,0.400482,0.341217,0.253235,0.163239,0.0932922,0.0474548,0.0293884,0.0327454,0.0561829,0.0929565,0.135376,0.172089,0.190735,0.180756,0.140472,0.0855713,0.0334778,0.00167847,-0.00933838,-0.00576782,0.00442505,0.0152283,0.0306702,0.053772,0.0806885,0.0963745,0.094635,0.0787354,0.0649109,0.0585938,0.0628967,0.0661621,0.0629578,0.0505981,0.0293884,0.00564575,-0.0170593,-0.0434265,-0.0794678,-0.125763,-0.175049,-0.223175,-0.266907,-0.307739,-0.349945,-0.396179,-0.438141,-0.455841,-0.436188,-0.383972,-0.319153,-0.256927,-0.199524,-0.13974,-0.0780029,-0.0271912,-0.00524902,-0.0191345,-0.0524292,-0.0761108,-0.065979,-0.0215454,0.0432129,0.113495,0.191742,0.275513,0.357788,0.415924,0.43103,0.393433,0.312775,0.215912,0.128723,0.0672607,0.0326233,0.0201416,0.0292053,0.0579834,0.0996094,0.14505,0.174377,0.176392,0.145844,0.0892029,0.0292664,-0.0151672,-0.0362549,-0.0381165,-0.028717,-0.0123596,0.0109253,0.0434265,0.07901,0.108856,0.118988,0.108459,0.0881348,0.0740967,0.0708618,0.072876,0.0719604,0.0631714,0.0499878,0.0317993,0.012085,-0.0110168,-0.0424194,-0.0879822,-0.144897,-0.202148,-0.254242,-0.297394,-0.3396,-0.384705,-0.426788,-0.452026,-0.440094,-0.391632,-0.323364,-0.256653,-0.201813,-0.147919,-0.0885315,-0.0298767,0.00213623,-0.00592041,-0.0389404,-0.0697327,-0.0706177,-0.0371094,0.0191956,0.0854492,0.157257,0.239258,0.324646,0.393372,0.422028,0.399689,0.333557,0.242706,0.151764,0.0771179,0.0283813,0.00408936,0.000946045,0.0179749,0.0531616,0.100067,0.141754,0.161682,0.15094,0.111755,0.0604858,0.0144348,-0.0117493,-0.0183105,-0.0120239,-0.00308228,0.011261,0.0340881,0.065979,0.098938,0.11792,0.118256,0.105713,0.0942383,0.0919495,0.0969238,0.0984497,0.0879211,0.065155,0.0368347,0.0065918,-0.0256348,-0.0645752,-0.110931,-0.164764,-0.220001,-0.268066,-0.307404,-0.340424,-0.375519,-0.411224,-0.434387,-0.429291,-0.392487,-0.333099,-0.271759,-0.214844,-0.160736,-0.103973,-0.0457764,-0.00558472,-0.000274658,-0.0231018,-0.0505981,-0.0545044,-0.0269775,0.0215454,0.0828857,0.151215,0.228119,0.308411,0.376312,0.409424,0.395905,0.338348,0.252899,0.165497,0.0913391,0.0399475,0.0105286,0.003479,0.017395,0.0511475,0.0978699,0.143219,0.165253,0.15744,0.117798,0.0669861,0.020813,-0.00933838,-0.0233459,-0.0232849,-0.0143738,0.00576782,0.0358276,0.0738831,0.110352,0.131744,0.13324,0.12088,0.106384,0.0966492,0.0910645,0.0840149,0.0705261,0.0516663,0.0283813,0.00497437,-0.0214844,-0.0541077,-0.0969849,-0.148071,-0.202637,-0.256256,-0.304565,-0.347992,-0.390015,-0.427521,-0.450012,-0.442841,-0.402374,-0.3396,-0.273438,-0.213348,-0.156708,-0.098053,-0.0422974,-0.0062561,-0.00564575,-0.0313416,-0.0605469,-0.0657654,-0.0418701,0.00280762,0.0618896,0.129883,0.208801,0.291962,0.363647,0.401886,0.393921,0.340759,0.260223,0.171967,0.0960388,0.0390015,0.00665283,-0.00436401,0.0062561,0.0355835,0.0789185,0.125977,0.153625,0.151276,0.119812,0.0729675,0.0310669,0.00396729,-0.0062561,-0.00415039,0.0067749,0.0256348,0.0565796,0.0963135,0.136108,0.159882,0.164093,0.154633,0.141876,0.131287,0.126312,0.118195,0.106384,0.0860291,0.0606079,0.0309448,-0.00357056,-0.0478516,-0.103882,-0.171143,-0.24295,-0.310425,-0.365997,-0.409424,-0.443176,-0.469086,-0.474792,-0.450958,-0.392578,-0.316193,-0.244171,-0.185699,-0.137451,-0.0939026,-0.0514221,-0.0273132,-0.0298767,-0.0547791,-0.0765686,-0.0714111,-0.0326843,0.025238,0.0934143,0.163757,0.237061,0.307587,0.359344,0.375061,0.348053,0.282227,0.196716,0.111938,0.0431519,-0.00262451,-0.0244446,-0.0231628,0.000946045,0.0406799,0.0914001,0.138,0.165497,0.164093,0.133301,0.0891418,0.0463867,0.016571,0.000396729,-0.00256348,0.003479,0.0226746,0.0544434,0.0966492,0.141022,0.171143,0.183289,0.178406,0.167999,0.158112,0.146393,0.128876,0.104767,0.0774536,0.0498047,0.0238953,-0.00436401,-0.0406189,-0.0871277,-0.14505,-0.206787,-0.268921,-0.327332,-0.379486,-0.428864,-0.462555,-0.472015,-0.446381,-0.387054,-0.311493,-0.239136,-0.178314,-0.127655,-0.0773315,-0.0367737,-0.0205994,-0.0357666,-0.0671082,-0.0881958,-0.0765686,-0.0346985,0.0241089,0.0900574,0.159668,0.23175,0.299957,0.343903,0.34906,0.30899,0.237061,0.153625,0.0777893,0.0197449,-0.0177917,-0.0354309,-0.0352478,-0.0150452,0.0191345,0.0646362,0.103302,0.122284,0.115906,0.0908203,0.0613403,0.0401306,0.0281982,0.0259094,0.0282593,0.0345764,0.0509338,0.0787354,0.114899,0.150269,0.17337,0.181427,0.185791,0.185791,0.187714,0.181824,0.164307,0.135498,0.0996704,0.0635071,0.0279846,-0.00878906,-0.0507507,-0.102081,-0.15799,-0.21637,-0.273773,-0.328461,-0.380341,-0.429352,-0.466675,-0.478149,-0.449799,-0.384308,-0.3013,-0.220276,-0.14798,-0.0836182,-0.0241699,0.0167236,0.0248413,-0.00323486,-0.0489807,-0.078186,-0.0733643,-0.0336914,0.024353,0.0951843,0.17276,0.255646,0.331543,0.372833,0.368469,0.314514,0.226532,0.126526,0.0356445,-0.0340271,-0.0783997,-0.098053,-0.091217,-0.0595398,-0.0118713,0.0440979,0.0885925,0.109863,0.103546,0.0784607,0.0462341,0.0204773,0.00637817,0.0038147,0.00717163,0.0183105,0.0395203,0.0708618,0.109589,0.145508,0.170135,0.18042,0.184235,0.188599,0.190674,0.187195,0.170868,0.142822,0.106506,0.0667725,0.0255737,-0.0180664,-0.0661011,-0.118866,-0.174774,-0.22934,-0.280945,-0.327667,-0.37262,-0.412842,-0.437592,-0.434906,-0.398132,-0.335449,-0.263489,-0.194489,-0.131012,-0.0708618,-0.0152283,0.0198669,0.019928,-0.00900269,-0.0448914,-0.0589294,-0.040802,0.000732422,0.0554504,0.120819,0.195435,0.275391,0.342773,0.372162,0.355377,0.29303,0.206177,0.114105,0.0331421,-0.0306091,-0.0720825,-0.0908203,-0.0835571,-0.0552368,-0.00860596,0.040802,0.0754395,0.0851135,0.0730286,0.0462952,0.0231628,0.00558472,-0.00289917,-0.00650024,-0.00424194,0.00616455,0.028595,0.0619507,0.098877,0.129669,0.147583,0.159271,0.169617,0.180664,0.187195,0.181335,0.163239,0.133759,0.100342,0.0639038,0.0209351,-0.0266418,-0.0802002,-0.13678,-0.193695,-0.24646,-0.296173,-0.339813,-0.381561,-0.415253,-0.432098,-0.417999,-0.371552,-0.305634,-0.236115,-0.171143,-0.110474,-0.0505371,-0.000396729,0.0254517,0.0195312,-0.0065918,-0.0308838,-0.0309448,-0.00375366,0.0414124,0.0977173,0.162964,0.234711,0.302765,0.352081,0.364655,0.334106,0.265045,0.176392,0.0885315,0.0149536,-0.0365906,-0.0693359,-0.0814819,-0.0726318,-0.0447693,-0.0012207,0.040741,0.0648193,0.0646973,0.0466309,0.0234985,0.00772095,0.000457764,-0.000671387,0.00189209,0.00979614,0.0271301,0.0551758,0.0916748,0.126526,0.151886,0.163757,0.168274,0.17041,0.17215,0.168335,0.151764,0.124573,0.0873718,0.0480652,0.00967407,-0.0306091,-0.0725403,-0.121399,-0.173309,-0.22699,-0.277405,-0.323364,-0.365326,-0.405579,-0.43396,-0.437469,-0.408661,-0.347809,-0.272369,-0.198059,-0.12738,-0.0614929,0.00112915,0.0459595,0.058136,0.0385132,0.00289917,-0.0183105,-0.012207,0.0176392,0.0610046,0.115906,0.180481,0.253967,0.321289,0.359192,0.353912,0.303772,0.225586,0.140808,0.0638428,0.00140381,-0.0426331,-0.0671082,-0.0688477,-0.0485229,-0.013031,0.0289307,0.061554,0.069519,0.0561218,0.0296021,0.00491333,-0.00827026,-0.013092,-0.0126953,-0.00845337,0.0012207,0.0223389,0.0561218,0.0951843,0.128784,0.14679,0.156525,0.165436,0.178925,0.188477,0.188324,0.171021,0.1427,0.106995,0.0677185,0.0263062,-0.0228882,-0.079071,-0.138397,-0.197998,-0.253357,-0.305389,-0.353363,-0.397064,-0.43338,-0.454498,-0.448395,-0.406311,-0.338257,-0.260803,-0.187134,-0.119141,-0.0557861,0.00088501,0.0343628,0.0388489,0.0150452,-0.0158997,-0.0289917,-0.013031,0.0299377,0.0891418,0.156586,0.228882,0.302704,0.359528,0.384033,0.363495,0.300629,0.208405,0.110931,0.0279236,-0.0304565,-0.0647583,-0.0759888,-0.0639038,-0.032135,0.0132751,0.0608215,0.0909424,0.0969238,0.0769958,0.0423584,0.0083313,-0.0153809,-0.0269165,-0.0293884,-0.0236206,-0.0100098,0.0147095,0.0506592,0.0920105,0.129211,0.15329,0.165649,0.173431,0.179749,0.183228,0.177979,0.159729,0.129547,0.0910645,0.0489197,0.00564575,-0.0402832,-0.0894775,-0.144165,-0.200134,-0.253754,-0.304291,-0.352173,-0.397583,-0.437134,-0.456451,-0.447601,-0.404449,-0.33725,-0.261353,-0.185791,-0.112488,-0.0435486,0.0137634,0.0438232,0.0406799,0.0152283,-0.0123596,-0.0194092,-0.0017395,0.0360413,0.0908813,0.159393,0.239685,0.318268,0.377808,0.395508,0.365906,0.294586,0.200531,0.103302,0.0175781,-0.0461121,-0.0838318,-0.0941772,-0.0793457,-0.0422058,0.00946045,0.0605469,0.0914001,0.0947571,0.0722046,0.0392761,0.00811768,-0.0105896,-0.0198669,-0.0213318,-0.016571,-0.00128174,0.0271301,0.0671692,0.108063,0.139404,0.156372,0.16626,0.174774,0.183441,0.187988,0.182831,0.162567,0.131073,0.0914001,0.0477295,0.000549316,-0.0515442,-0.109741,-0.171143,-0.229462,-0.282501,-0.327057,-0.366577,-0.403564,-0.434448,-0.449066,-0.437073,-0.392029,-0.325989,-0.255707,-0.186798,-0.119659,-0.0536804,0.00234985,0.038269,0.0424805,0.0238953,0.0012207,-0.00549316,0.0134888,0.049469,0.0992737,0.16156,0.231537,0.304169,0.358856,0.379333,0.356873,0.291901,0.203888,0.111938,0.032074,-0.0297852,-0.0673828,-0.0805359,-0.0677185,-0.0336914,0.0148926,0.0630188,0.0949097,0.101685,0.0840149,0.0535583,0.0237732,0.000610352,-0.012207,-0.0184631,-0.0181274,-0.00765991,0.0169067,0.053009,0.0914001,0.122223,0.14035,0.151428,0.160889,0.168518,0.172699,0.165924,0.148468,0.120209,0.0866394,0.0487976,0.00598145,-0.0411377,-0.0953674,-0.153503,-0.212006,-0.267914,-0.318939,-0.363831,-0.40506,-0.43927,-0.454254,-0.440155,-0.393158,-0.3237,-0.248993,-0.179138,-0.112762,-0.0489807,0.00491333,0.0386047,0.0381165,0.012207,-0.0190735,-0.028717,-0.00765991,0.0336304,0.0890503,0.152161,0.225372,0.301483,0.362488,0.387726,0.365509,0.299683,0.209473,0.116638,0.0354919,-0.0280457,-0.0663757,-0.0770569,-0.0610046,-0.0229492,0.0264587,0.0767822,0.110687,0.116516,0.0970459,0.0623474,0.0267944,0.0015564,-0.0134277,-0.0175171,-0.0151062,-0.00247192,0.0218201,0.0580444,0.0982666,0.129333,0.145844,0.151672,0.154236,0.158325,0.160126,0.157257,0.143219,0.119385,0.0875854,0.053009,0.0148315,-0.0292053,-0.0836182,-0.144958,-0.207855,-0.267395,-0.32016,-0.365112,-0.406128,-0.439667,-0.456329,-0.444183,-0.399689,-0.332031,-0.259277,-0.189606,-0.124084,-0.0619507,-0.00805664,0.026123,0.0299988,0.0102539,-0.0171204,-0.0299988,-0.0167847,0.0187378,0.0684509,0.131287,0.202484,0.279205,0.341949,0.375183,0.366791,0.316376,0.237579,0.149139,0.0637512,-0.00375366,-0.0484619,-0.0677795,-0.0608215,-0.0303955,0.0143738,0.0648193,0.101471,0.117188,0.106995,0.0776672,0.0436401,0.0167236,-0.00195312,-0.013092,-0.0166321,-0.0115356,0.00866699,0.0420227,0.0820923,0.116119,0.137177,0.1474,0.153168,0.160675,0.166504,0.163818,0.151825,0.129456,0.103546,0.0724182,0.038269,-0.00274658,-0.0534973,-0.110138,-0.172485,-0.232483,-0.289215,-0.340332,-0.386444,-0.429749,-0.459625,-0.465576,-0.43866,-0.380157,-0.307251,-0.232758,-0.163086,-0.0971069,-0.0367126,0.0118713,0.0347595,0.0264587,-0.00167847,-0.0283203,-0.0304565,-0.00515747,0.0391846,0.0961914,0.162292,0.235443,0.308746,0.363312,0.379883,0.351166,0.28476,0.197662,0.109924,0.032959,-0.0249023,-0.0599365,-0.0666504,-0.0496521,-0.012146,0.0365906,0.0822144,0.112762,0.118134,0.098877,0.0673828,0.0343628,0.0105286,-0.00650024,-0.0139465,-0.0143738,-0.00268555,0.0229492,0.0575867,0.0949097,0.123016,0.140137,0.146301,0.150208,0.154175,0.155914,0.149536,0.133423,0.109344,0.0809326,0.04953,0.0161133,-0.0237732,-0.0733032,-0.13147,-0.192291,-0.250336,-0.30249,-0.34906,-0.393433,-0.431274,-0.453644,-0.44632,-0.407745,-0.34201,-0.269012,-0.200287,-0.136841,-0.0744324,-0.0187988,0.0204163,0.0268555,0.00817871,-0.0216064,-0.0396118,-0.028595,0.00637817,0.056366,0.117584,0.186462,0.260895,0.327393,0.368683,0.369415,0.327454,0.253845,0.165375,0.0820923,0.0132141,-0.0332947,-0.0585938,-0.0588074,-0.0361023,0.00531006,0.0556946,0.0962524,0.114899,0.108124,0.0811462,0.0484619,0.0198059,-0.0012207,-0.0129395,-0.0184021,-0.0146179,0.00576782,0.037384,0.0762329,0.11087,0.133301,0.143768,0.148407,0.152161,0.157257,0.154846,0.145111,0.125702,0.102142,0.0747681,0.0443726,0.0083313,-0.0339661,-0.0865173,-0.144714,-0.201874,-0.253632,-0.300354,-0.342163,-0.383514,-0.420685,-0.44278,-0.437927,-0.402618,-0.34613,-0.283234,-0.222229,-0.158936,-0.094696,-0.0346375,0.00839233,0.024292,0.0142822,-0.00335693,-0.0135498,-0.00302124,0.0290527,0.0721436,0.129059,0.191895,0.259399,0.322357,0.365326,0.373901,0.340485,0.274109,0.188324,0.104889,0.0338135,-0.0180664,-0.0477295,-0.053772,-0.0378418,-0.00415039,0.041626,0.081543,0.105103,0.103088,0.0794678,0.0452271,0.012085,-0.0104675,-0.0218201,-0.0250244,-0.0215454,-0.00576782,0.0228882,0.0610046,0.098999,0.123291,0.135376,0.13678,0.137329,0.138733,0.140137,0.136597,0.124969,0.102478,0.0757141,0.0474548,0.0161133,-0.0231018,-0.0744324,-0.134094,-0.194977,-0.249725,-0.293579,-0.330414,-0.365173,-0.397247,-0.42041,-0.419067,-0.391144,-0.341614,-0.284363,-0.226715,-0.171143,-0.117188,-0.0669861,-0.0247803,0.000549316,0.0015564,-0.0115967,-0.0204773,-0.0123596,0.0235596,0.0722046,0.132233,0.193909,0.25531,0.314117,0.358795,0.375122,0.351349,0.289124,0.204102,0.119873,0.0481262,-0.00213623,-0.0301208,-0.0344849,-0.0204163,0.0106812,0.0517578,0.0933533,0.11908,0.119659,0.0922852,0.0501404,0.00939941,-0.0189819,-0.0313416,-0.0326233,-0.0276489,-0.0127563,0.0146179,0.0526733,0.0918884,0.11972,0.12973,0.127533,0.121948,0.119141,0.118652,0.116302,0.106567,0.0880432,0.0646362,0.040802,0.0168457,-0.0160522,-0.0579224,-0.11087,-0.164825,-0.213501,-0.254364,-0.286377,-0.319672,-0.355042,-0.388123,-0.405579,-0.400543,-0.372223,-0.326782,-0.276978,-0.227051,-0.173553,-0.118805,-0.0614929,-0.0148926,0.00799561,0.00610352,-0.00314331,-0.00146484,0.0198059,0.0593872,0.10376,0.153961,0.207916,0.26886,0.329681,0.371094,0.374847,0.33902,0.272766,0.194366,0.119537,0.0583191,0.0153809,-0.0071106,-0.0110168,0.00112915,0.0257874,0.0593872,0.0907288,0.100891,0.0870361,0.0502014,0.011261,-0.0161133,-0.025177,-0.0204163,-0.0151062,-0.00799561,0.0071106,0.0367737,0.0718689,0.100006,0.108734,0.102081,0.0930176,0.0917358,0.100342,0.109528,0.110474,0.0993958,0.0822144,0.0620117,0.0396729,0.011261,-0.0271301,-0.0758362,-0.128784,-0.17746,-0.217804,-0.248138,-0.277588,-0.308746,-0.343445,-0.376709,-0.39859,-0.3992,-0.377655,-0.339081,-0.294769,-0.246796,-0.193634,-0.135101,-0.0711365,-0.0176392,0.0133667,0.0210876,0.0171814,0.0188599,0.038269,0.0728149,0.11322,0.160797,0.210999,0.26947,0.326263,0.367249,0.377136,0.349335,0.290283,0.216583,0.142944,0.0810242,0.0344238,0.00692749,-0.00357056,0.00234985,0.0193176,0.0468445,0.0706787,0.0820923,0.0740967,0.0466309,0.015625,-0.0104675,-0.020813,-0.0179749,-0.0104065,-0.00280762,0.00979614,0.0299377,0.0570374,0.0819397,0.0970459,0.100128,0.0986023,0.0975952,0.101135,0.104309,0.102142,0.0904846,0.0683289,0.0430298,0.0152283,-0.0103455,-0.0370483,-0.0671692,-0.102081,-0.140533,-0.176636,-0.210754,-0.240875,-0.275726,-0.317139,-0.361877,-0.401703,-0.421478,-0.41571,-0.387115,-0.339478,-0.284851,-0.224243,-0.160004,-0.0932312,-0.0293274,0.0195923,0.0429688,0.045166,0.0409546,0.0449829,0.0666504,0.101013,0.142761,0.187927,0.233704,0.282776,0.329407,0.35968,0.360809,0.328125,0.271271,0.204102,0.140472,0.085907,0.0485229,0.0222168,0.00531006,6.10352e-05,0.00860596,0.0304565,0.0534363,0.065918,0.0620728,0.0441589,0.0239563,0.0116882,0.0106812,0.0125427,0.0101929,0.0017395,0.000732422,0.0117493,0.0331421,0.0546265,0.0649719,0.0697327,0.0722961,0.0787354,0.0879211,0.0914917,0.0834351,0.0646973,0.0411377,0.0194702,0.000671387,-0.0177917,-0.0381775,-0.0638428,-0.0934143,-0.125641,-0.160675,-0.19577,-0.233826,-0.278412,-0.327179,-0.374969,-0.414307,-0.430023,-0.418274,-0.381744,-0.330139,-0.273834,-0.213684,-0.14798,-0.0794678,-0.0175781,0.0244446,0.0397949,0.0394592,0.0400696,0.0526733,0.0820312,0.11438,0.14798,0.18927,0.238251,0.296936,0.346649,0.374908,0.371552,0.340271,0.290894,0.230865,0.16745,0.106384,0.053833,0.0142212,-0.00811768,-0.0126038,-0.00323486,0.0194702,0.0434265,0.0592041,0.0632324,0.0526123,0.036438,0.0216675,0.00918579,-0.00100708,-0.0126038,-0.024292,-0.0257874,-0.0150452,0.0067749,0.0297241,0.0474548,0.0579834,0.065918,0.0736389,0.0822754,0.0849609,0.0800781,0.069519,0.053894,0.0377808,0.0231018,0.0104065,-0.00543213,-0.0297241,-0.065155,-0.106171,-0.151764,-0.197113,-0.242889,-0.290619,-0.337524,-0.38028,-0.414429,-0.429413,-0.419891,-0.388,-0.338745,-0.286316,-0.232971,-0.180542,-0.122894,-0.0603943,-0.00442505,0.029541,0.040802,0.0452271,0.0588074,0.0923462,0.136047,0.173767,0.207733,0.245636,0.292908,0.346863,0.387115,0.39801,0.373047,0.322357,0.259338,0.191895,0.125519,0.0658264,0.017395,-0.0149536,-0.0269775,-0.020752,0.00302124,0.0343018,0.057312,0.065155,0.0519409,0.0296631,0.00872803,-0.00665283,-0.0179749,-0.0297852,-0.0430298,-0.048584,-0.0375061,-0.0100098,0.0220947,0.0440979,0.0524292,0.0567017,0.0649109,0.0785217,0.0910034,0.094635,0.0863647,0.0748901,0.0629578,0.0524902,0.0400085,0.019989,-0.0118713,-0.0536194,-0.1008,-0.148407,-0.193146,-0.234314,-0.272949,-0.309326,-0.342682,-0.368195,-0.385376,-0.392029,-0.38324,-0.36322,-0.330963,-0.291748,-0.248047,-0.197723,-0.139252,-0.0739746,-0.0137024,0.0352478,0.0677795,0.0918884,0.118744,0.150208,0.185242,0.211548,0.235657,0.26358,0.298523,0.336121,0.363098,0.369415,0.346313,0.304382,0.247406,0.18631,0.125244,0.0691223,0.0245667,-0.00482178,-0.0182495,-0.0171204,-0.00262451,0.020813,0.0397339,0.0457153,0.0340881,0.012207,-0.0100708,-0.0269165,-0.0363159,-0.0427551,-0.0505981,-0.0556946,-0.0468445,-0.0222778,0.0110168,0.0401917,0.0583801,0.0691223,0.0806885,0.0932922,0.106781,0.111603,0.103882,0.0851746,0.0625,0.0406189,0.0216675,-0.00012207,-0.0291138,-0.0635071,-0.100616,-0.138672,-0.173767,-0.206909,-0.236725,-0.271423,-0.309143,-0.345245,-0.376923,-0.400421,-0.408142,-0.399261,-0.37088,-0.3284,-0.279663,-0.22168,-0.151489,-0.0718689,0.00442505,0.0677185,0.106659,0.127594,0.142548,0.161682,0.187195,0.206329,0.220612,0.236572,0.264923,0.307068,0.347931,0.372833,0.367584,0.335907,0.283691,0.222839,0.159454,0.0963745,0.0367737,-0.0144348,-0.0447693,-0.0553589,-0.0459595,-0.0246887,-0.00314331,0.0100098,0.00985718,-0.00134277,-0.0166321,-0.0298767,-0.0379944,-0.0434265,-0.0472412,-0.0491943,-0.040802,-0.0187378,0.0147705,0.048584,0.0734253,0.086853,0.0951843,0.104156,0.114441,0.11792,0.109192,0.0900574,0.0673828,0.0464478,0.0306702,0.0142212,-0.0065918,-0.0340881,-0.0665894,-0.102203,-0.139801,-0.176117,-0.213959,-0.255646,-0.297516,-0.338409,-0.372284,-0.39801,-0.411957,-0.409271,-0.390808,-0.353973,-0.303619,-0.24585,-0.181152,-0.110474,-0.0392761,0.0297852,0.0863037,0.122406,0.142151,0.155792,0.170959,0.191895,0.210754,0.227875,0.247528,0.277191,0.314636,0.349274,0.36734,0.358337,0.3237,0.269806,0.206909,0.141083,0.0714722,0.00576782,-0.0492554,-0.0828247,-0.0949707,-0.0853577,-0.0622864,-0.0343018,-0.0118713,-0.00012207,0.00335693,0.00134277,-0.00375366,-0.0114746,-0.0177307,-0.0246277,-0.0282593,-0.0254517,-0.00878906,0.0189209,0.0481262,0.0716858,0.0857849,0.0975952,0.10907,0.11673,0.118408,0.111938,0.0942993,0.0697937,0.0463867,0.0262451,0.00866699,-0.0143738,-0.0425415,-0.0748291,-0.109344,-0.147522,-0.182434,-0.217316,-0.252075,-0.288666,-0.321014,-0.341492,-0.351685,-0.357788,-0.358948,-0.349335,-0.325653,-0.287262,-0.244293,-0.194305,-0.140869,-0.0841675,-0.0210876,0.0433655,0.100281,0.140198,0.166595,0.189209,0.213165,0.233643,0.242493,0.249817,0.258728,0.274902,0.295166,0.312561,0.316193,0.297272,0.258881,0.206329,0.148407,0.0852966,0.0173035,-0.0412903,-0.0844421,-0.106445,-0.106384,-0.0861816,-0.0522156,-0.0172424,0.00726318,0.019989,0.0245667,0.0194092,0.00778198,-0.00744629,-0.0226135,-0.0346985,-0.0377197,-0.0269165,0.00195312,0.036377,0.0697937,0.0956421,0.117065,0.132294,0.138458,0.132904,0.117981,0.0951843,0.0664978,0.0360413,0.00991821,-0.0100708,-0.0261841,-0.0430298,-0.0598755,-0.0795898,-0.103027,-0.13089,-0.160797,-0.191284,-0.22699,-0.262085,-0.292908,-0.316254,-0.331207,-0.34317,-0.348877,-0.342346,-0.32196,-0.288879,-0.243622,-0.189545,-0.13147,-0.0697327,-0.0015564,0.0683289,0.131897,0.174164,0.197998,0.211151,0.220398,0.228119,0.228546,0.225922,0.224243,0.227448,0.23941,0.25531,0.264374,0.254028,0.222626,0.178314,0.126312,0.0708618,0.0134277,-0.0394592,-0.0795288,-0.103363,-0.108246,-0.0915527,-0.0603333,-0.0279846,-0.00463867,0.00827026,0.013092,0.0138245,0.00985718,0.00497437,0.00289917,0.00112915,0.00570679,0.0191345,0.0434875,0.0723572,0.0953674,0.10968,0.114777,0.112488,0.104095,0.0938416,0.0792542,0.0631714,0.0434265,0.0231018,0.0101929,0.00592041,0.00442505,-0.003479,-0.0197449,-0.0429688,-0.0729675,-0.105896,-0.141479,-0.178314,-0.218384,-0.256256,-0.283173,-0.293701,-0.293579,-0.290009,-0.289062,-0.287598,-0.280487,-0.264709,-0.238403,-0.202301,-0.160675,-0.115387,-0.0620728,0.00396729,0.0754395,0.141205,0.185638,0.209259,0.215179,0.210266,0.200958,0.186859,0.170959,0.158325,0.155975,0.169739,0.197327,0.224915,0.234161,0.224365,0.194153,0.147308,0.0878601,0.0210876,-0.0420227,-0.0971069,-0.135437,-0.148315,-0.132629,-0.0934143,-0.0434265,0.0032959,0.0404053,0.0614014,0.0713501,0.0674438,0.0568542,0.0387268,0.0168457,-0.00228882,-0.00912476,0.000213623,0.0221558,0.048584,0.0727539,0.0941772,0.110809,0.122345,0.127716,0.12262,0.106659,0.0809326,0.0526123,0.0269775,0.00558472,-0.0137024,-0.0351562,-0.0566406,-0.0767212,-0.0918884,-0.108398,-0.12442,-0.144287,-0.168121,-0.189941,-0.209137,-0.222076,-0.234833,-0.247589,-0.262817,-0.276062,-0.282501,-0.275848,-0.256378,-0.221954,-0.17746,-0.127716,-0.0718079,-0.00784302,0.056366,0.113281,0.149078,0.163239,0.163971,0.156036,0.14975,0.142761,0.137726,0.13858,0.148926,0.170135,0.198059,0.223694,0.232025,0.218384,0.184448,0.133148,0.0737,0.012207,-0.0438232,-0.0886536,-0.118591,-0.127594,-0.111267,-0.0748901,-0.0293884,0.00845337,0.0334167,0.0430298,0.0426331,0.036499,0.0257874,0.0124817,-0.00088501,-0.00967407,-0.00335693,0.0210876,0.0555725,0.0900574,0.114624,0.129395,0.137177,0.140076,0.134644,0.120728,0.0967712,0.0667725,0.0381775,0.0169067,0.00241089,-0.0067749,-0.0161743,-0.0271912,-0.037262,-0.0472412,-0.0586548,-0.0738831,-0.0910645,-0.114227,-0.142151,-0.170013,-0.193817,-0.212555,-0.227936,-0.240814,-0.25351,-0.264038,-0.268799,-0.262817,-0.2435,-0.212616,-0.172699,-0.12973,-0.08255,-0.0314026,0.0238342,0.0752258,0.115845,0.140137,0.147308,0.145386,0.139343,0.13382,0.128265,0.123291,0.121216,0.129608,0.1474,0.1698,0.187927,0.188721,0.172821,0.138855,0.0917358,0.037262,-0.019989,-0.072876,-0.11557,-0.142029,-0.14798,-0.12738,-0.0869751,-0.0383911,0.0062561,0.0414734,0.065918,0.0817566,0.086853,0.0828247,0.070282,0.053894,0.0414734,0.0415344,0.0542908,0.0721436,0.0895386,0.106506,0.120941,0.133698,0.136505,0.127716,0.107117,0.0812073,0.0508728,0.0227661,0.000732422,-0.0133667,-0.0213318,-0.0265808,-0.0283203,-0.0273132,-0.0292664,-0.0367126,-0.0516663,-0.0740356,-0.102875,-0.135254,-0.163483,-0.185791,-0.201965,-0.215912,-0.224365,-0.224426,-0.222015,-0.217468,-0.211548,-0.200287,-0.182159,-0.159943,-0.132904,-0.10022,-0.061615,-0.0201416,0.0231628,0.0622253,0.0898132,0.103973,0.107178,0.107452,0.105652,0.103973,0.101135,0.104767,0.11496,0.130127,0.147736,0.159546,0.157043,0.139191,0.103149,0.0560303,0.0050354,-0.0432129,-0.0833435,-0.109406,-0.120544,-0.11377,-0.0856323,-0.0437012,0.00497437,0.0453186,0.0701904,0.0820923,0.0871887,0.0841064,0.0766602,0.065918,0.0532837,0.0461121,0.0518799,0.069458,0.09375,0.116119,0.131409,0.140259,0.143036,0.137268,0.122742,0.101135,0.0750427,0.0470581,0.0212097,0.00296021,-0.00637817,-0.00946045,-0.0105286,-0.0108032,-0.00900269,-0.0101929,-0.0150452,-0.024292,-0.0384521,-0.0571899,-0.0819397,-0.106506,-0.126862,-0.144165,-0.160614,-0.177185,-0.190613,-0.203217,-0.218872,-0.235718,-0.245514,-0.24707,-0.236511,-0.213226,-0.175781,-0.13028,-0.0810852,-0.0311279,0.0211487,0.0653076,0.0912781,0.0940857,0.0812073,0.0640869,0.0489197,0.0401306,0.0425415,0.0562439,0.0762329,0.104156,0.13974,0.170471,0.181549,0.165588,0.123352,0.0658264,0.00161743,-0.0599365,-0.107452,-0.136444,-0.146729,-0.13382,-0.0944214,-0.0340881,0.0310669,0.0820923,0.113892,0.12619,0.124847,0.115051,0.102417,0.0900574,0.0754395,0.0661011,0.0706787,0.091217,0.116516,0.134583,0.141693,0.138184,0.128998,0.113892,0.09552,0.0767212,0.0570374,0.0401306,0.0302734,0.0313416,0.0386047,0.0446472,0.045105,0.0430298,0.0357056,0.0245056,0.00924683,-0.00482178,-0.0200806,-0.0399475,-0.0623474,-0.0822754,-0.0993958,-0.118927,-0.144836,-0.176392,-0.207855,-0.240417,-0.268799,-0.291077,-0.301483,-0.300537,-0.285645,-0.253235,-0.206451,-0.154236,-0.108582,-0.0630798,-0.020874,0.0154419,0.0366516,0.0412903,0.0354919,0.0293274,0.0267029,0.0316772,0.0461121,0.0655823,0.0871277,0.110016,0.136658,0.157928,0.159271,0.139801,0.101868,0.0526733,-0.0015564,-0.052887,-0.0918274,-0.114227,-0.119385,-0.107239,-0.0720215,-0.0185852,0.0410767,0.09375,0.130005,0.148743,0.151886,0.142487,0.12793,0.109131,0.0875244,0.0662537,0.0555725,0.0628357,0.0837708,0.108856,0.132355,0.150208,0.163757,0.170685,0.169861,0.161285,0.142822,0.116394,0.0879211,0.0641785,0.048645,0.0381165,0.0326233,0.0293884,0.0324707,0.0347595,0.0368347,0.0343628,0.0259094,0.00515747,-0.0265808,-0.0648193,-0.10498,-0.144958,-0.185455,-0.222748,-0.254425,-0.275909,-0.290222,-0.296112,-0.297119,-0.293091,-0.28363,-0.267517,-0.242432,-0.212341,-0.180145,-0.147858,-0.110748,-0.0730896,-0.0381775,-0.013031,0.0032959,0.0120239,0.0172424,0.0205383,0.0259705,0.0348206,0.0491333,0.0663757,0.0886536,0.11261,0.133423,0.141418,0.132568,0.11203,0.0782471,0.0379333,-0.00375366,-0.0396118,-0.0640869,-0.0763855,-0.0728149,-0.0503235,-0.00939941,0.0389404,0.0837708,0.117523,0.139343,0.148071,0.147125,0.140411,0.129333,0.115906,0.101868,0.0964355,0.106842,0.128326,0.151764,0.170197,0.184692,0.194641,0.20047,0.196045,0.184784,0.164246,0.135376,0.102478,0.0743103,0.0533447,0.0387268,0.0262451,0.0175781,0.0157166,0.01651,0.017395,0.0147705,0.00958252,-0.00576782,-0.0317383,-0.0679932,-0.106567,-0.144836,-0.182434,-0.219818,-0.251282,-0.275726,-0.293915,-0.306458,-0.312347,-0.314301,-0.313629,-0.310822,-0.300873,-0.278259,-0.24939,-0.218536,-0.184967,-0.146179,-0.107452,-0.069397,-0.0354919,-0.0083313,0.00985718,0.0182495,0.0271912,0.0410767,0.0619507,0.0845642,0.107452,0.13089,0.152771,0.171478,0.17511,0.162354,0.13089,0.0828857,0.028717,-0.0195923,-0.0571899,-0.0808716,-0.0873108,-0.0722046,-0.0370483,0.0128784,0.0689392,0.120148,0.156708,0.176636,0.178314,0.170288,0.155792,0.142365,0.130066,0.124573,0.129791,0.148926,0.174774,0.205109,0.229004,0.239594,0.235229,0.21994,0.197723,0.171478,0.14035,0.106232,0.0722046,0.046051,0.0306702,0.0256958,0.0220032,0.0157166,0.00582886,-0.00531006,-0.0152893,-0.0255737,-0.037262,-0.0541077,-0.0773315,-0.103424,-0.128662,-0.153839,-0.179474,-0.210022,-0.243225,-0.27774,-0.308472,-0.333984,-0.352295,-0.361877,-0.363098,-0.354034,-0.334045,-0.301086,-0.261078,-0.216705,-0.170746,-0.12558,-0.085022,-0.053894,-0.0308838,-0.0108643,0.00442505,0.0171814,0.0265198,0.0386047,0.0544434,0.0756531,0.103302,0.131073,0.155121,0.169617,0.170197,0.159943,0.13858,0.106171,0.0632324,0.0197449,-0.0198059,-0.0458374,-0.0562439,-0.0455017,-0.0184631,0.0189819,0.0644226,0.110474,0.152222,0.181091,0.19577,0.197388,0.189819,0.179871,0.170288,0.165649,0.164825,0.173431,0.186646,0.202148,0.216583,0.224243,0.223846,0.213837,0.194153,0.166107,0.133484,0.0970459,0.0620117,0.0309448,0.00665283,-0.00991821,-0.0213318,-0.0290527,-0.0328979,-0.0362549,-0.0384521,-0.0437622,-0.0512695,-0.0618896,-0.07724,-0.0979919,-0.121338,-0.146118,-0.171967,-0.198608,-0.224426,-0.248199,-0.270355,-0.289124,-0.304291,-0.313629,-0.319611,-0.320068,-0.315308,-0.302643,-0.280609,-0.255249,-0.226105,-0.192688,-0.155365,-0.118317,-0.0834351,-0.0525513,-0.0256348,-0.00296021,0.0162354,0.0360413,0.0561829,0.0757751,0.0966492,0.118988,0.143158,0.164368,0.177521,0.179749,0.168396,0.146057,0.114044,0.0751648,0.0380554,0.00543213,-0.0194702,-0.0292664,-0.0236206,-0.00128174,0.0328064,0.0747681,0.116852,0.152771,0.179138,0.19281,0.198273,0.195496,0.187378,0.178986,0.171082,0.168396,0.173096,0.183624,0.195435,0.203369,0.205231,0.198395,0.185242,0.165161,0.138733,0.106903,0.0715332,0.036438,0.00476074,-0.019989,-0.037262,-0.0484009,-0.0553589,-0.057373,-0.0543518,-0.0489807,-0.0419617,-0.0360413,-0.0312195,-0.0336304,-0.0444946,-0.0627441,-0.0856323,-0.114838,-0.148651,-0.185303,-0.221344,-0.254517,-0.282227,-0.302368,-0.314697,-0.320068,-0.323975,-0.321625,-0.311096,-0.290405,-0.265442,-0.239136,-0.212219,-0.180664,-0.14859,-0.113281,-0.0805359,-0.0516663,-0.0284424,-0.00827026,0.0139465,0.040863,0.0669861,0.0930786,0.118866,0.145721,0.1698,0.187988,0.195587,0.191742,0.170624,0.138855,0.0986633,0.0551147,0.0169678,-0.0139465,-0.0338135,-0.0358276,-0.0222778,0.00543213,0.0418091,0.0852356,0.127716,0.16156,0.184692,0.194763,0.196045,0.189209,0.177521,0.167389,0.158203,0.152435,0.152435,0.159546,0.170471,0.179199,0.18335,0.178589,0.169739,0.155457,0.134766,0.110138,0.0798035,0.0483093,0.0185852,-0.00665283,-0.0239563,-0.0343628,-0.039856,-0.0387878,-0.0343628,-0.0264587,-0.0201416,-0.0144348,-0.0122681,-0.0180664,-0.0316772,-0.0539551,-0.0808105,-0.110748,-0.144104,-0.176788,-0.209198,-0.238922,-0.263916,-0.284119,-0.298126,-0.309418,-0.318054,-0.323822,-0.322083,-0.311676,-0.294647,-0.273102,-0.244629,-0.211151,-0.17337,-0.134033,-0.0953064,-0.0596619,-0.0273132,-0.000946045,0.0225525,0.0449829,0.0652466,0.0856323,0.106506,0.129333,0.151825,0.166504,0.173767,0.173035,0.160126,0.13443,0.101288,0.0614929,0.0226135,-0.0112,-0.036377,-0.0433044,-0.0340881,-0.012085,0.0187378,0.0566406,0.098999,0.136505,0.166718,0.184845,0.191498,0.189209,0.17981,0.172821,0.169403,0.169128,0.170197,0.176727,0.189148,0.203979,0.215637,0.219208,0.212952,0.198395,0.172974,0.141602,0.108856,0.073822,0.0381775,0.00604248,-0.0178528,-0.0300598,-0.0341492,-0.0325623,-0.0259705,-0.0171204,-0.0110168,-0.00860596,-0.00845337,-0.0128174,-0.0262451,-0.0484619,-0.0757141,-0.105377,-0.136322,-0.168121,-0.199066,-0.22525,-0.250061,-0.272217,-0.290222,-0.301361,-0.310883,-0.320557,-0.329407,-0.327118,-0.317596,-0.300018,-0.276978,-0.248657,-0.216522,-0.18161,-0.143036,-0.102356,-0.065979,-0.0361023,-0.0137024,0.00967407,0.0335693,0.0579834,0.0763855,0.0954285,0.114441,0.132904,0.14563,0.152435,0.151428,0.138,0.113098,0.0836182,0.0503235,0.0196533,-0.00805664,-0.025177,-0.0284424,-0.0181274,0.00402832,0.0353699,0.0753174,0.118805,0.158203,0.189941,0.210358,0.223358,0.225769,0.222687,0.21933,0.216919,0.214233,0.212341,0.214966,0.223022,0.229797,0.231537,0.224976,0.211212,0.189148,0.160675,0.126923,0.0910034,0.0535583,0.0179138,-0.0124817,-0.032074,-0.040802,-0.0410767,-0.0375061,-0.0302124,-0.0213318,-0.0148926,-0.012085,-0.0128784,-0.0180664,-0.0315552,-0.0526733,-0.0763245,-0.102875,-0.129547,-0.158936,-0.187469,-0.215698,-0.243896,-0.271484,-0.2966,-0.316986,-0.33316,-0.349731,-0.364166,-0.36908,-0.363312,-0.346924,-0.321014,-0.287933,-0.249817,-0.208801,-0.164368,-0.116455,-0.0697937,-0.0324097,-0.00531006,0.0149536,0.033905,0.053009,0.069519,0.085968,0.099884,0.113037,0.125519,0.138733,0.149994,0.152222,0.141357,0.120148,0.0932312,0.0657654,0.0404053,0.0195923,0.00610352,0.0065918,0.0189209,0.0441589,0.081543,0.124237,0.166718,0.202698,0.230469,0.247467,0.254364,0.25235,0.244781,0.2341,0.223297,0.211212,0.20578,0.20517,0.208252,0.210205,0.207062,0.19873,0.184509,0.163422,0.136658,0.107574,0.0763855,0.0434875,0.0132751,-0.00991821,-0.0250244,-0.0320129,-0.0354309,-0.0344238,-0.0326233,-0.0324707,-0.0345764,-0.0378418,-0.0438843,-0.0559082,-0.0753784,-0.0972595,-0.123016,-0.150543,-0.179535,-0.208679,-0.234985,-0.260559,-0.284637,-0.305237,-0.321808,-0.333832,-0.342285,-0.349335,-0.351562,-0.349945,-0.342285,-0.327057,-0.298004,-0.262482,-0.223907,-0.185455,-0.143555,-0.0993958,-0.0542297,-0.0132751,0.01651,0.036438,0.049408,0.0632324,0.08255,0.102539,0.122223,0.134308,0.145233,0.158539,0.16861,0.170197,0.158203,0.134583,0.101288,0.0684509,0.041626,0.0235596,0.0182495,0.0247803,0.041748,0.0716858,0.109009,0.15094,0.19223,0.224915,0.244385,0.249146,0.2435,0.234497,0.227936,0.225922,0.221497,0.215698,0.212006,0.216797,0.223694,0.229279,0.2229,0.203156,0.174377,0.141937,0.108337,0.0758972,0.040741,0.00558472,-0.0254517,-0.0458984,-0.0545654,-0.0544434,-0.0515442,-0.0488586,-0.0471802,-0.0472412,-0.0507507,-0.053772,-0.0614929,-0.0752258,-0.0960388,-0.120331,-0.146576,-0.171204,-0.19458,-0.216705,-0.239136,-0.26297,-0.283691,-0.302155,-0.314636,-0.323486,-0.331482,-0.338013,-0.341492,-0.33902,-0.328003,-0.308197,-0.278748,-0.244843,-0.20752,-0.169342,-0.127594,-0.0861206,-0.0461121,-0.00967407,0.0185242,0.0409546,0.0559082,0.0718079,0.0898132,0.109192,0.126526,0.139069,0.1474,0.155792,0.162354,0.163757,0.155365,0.139679,0.114166,0.0867004,0.0656433,0.0526123,0.0499268,0.0552368,0.0671692,0.0883179,0.116394,0.149933,0.184448,0.214844,0.235107,0.242096,0.240143,0.233765,0.230286,0.225922,0.219147,0.210144,0.20163,0.197601,0.197113,0.201202,0.199615,0.186462,0.162811,0.13382,0.106384,0.0787964,0.0471802,0.0115967,-0.0231628,-0.0505371,-0.0671692,-0.0727539,-0.0705261,-0.0663147,-0.0642395,-0.0643616,-0.0652466,-0.0647583,-0.0698547,-0.0803528,-0.0982666,-0.122009,-0.148529,-0.174042,-0.195251,-0.213287,-0.23114,-0.252502,-0.272766,-0.289337,-0.302826,-0.3125,-0.321014,-0.331696,-0.340546,-0.34436,-0.337189,-0.316315,-0.286041,-0.251007,-0.21579,-0.177124,-0.134491,-0.0879211,-0.0424805,-0.00302124,0.0255737,0.0457153,0.0646362,0.0871277,0.110413,0.132568,0.149414,0.16156,0.170288,0.177582,0.183014,0.177643,0.161133,0.134705,0.104095,0.0761719,0.0569763,0.0454407,0.0428772,0.0489807,0.0630188,0.0857849,0.115295,0.148315,0.178192,0.200745,0.214355,0.221741,0.223175,0.224182,0.224854,0.227264,0.225647,0.222565,0.22049,0.220825,0.222412,0.220337,0.208527,0.189331,0.165253,0.136993,0.107178,0.0767822,0.0433044,0.00726318,-0.0240173,-0.0484009,-0.0646362,-0.074646,-0.0821533,-0.0866394,-0.0879822,-0.0890503,-0.0908813,-0.0913391,-0.0939636,-0.101746,-0.116455,-0.135101,-0.15564,-0.176117,-0.198853,-0.221741,-0.243561,-0.264435,-0.282776,-0.298187,-0.306396,-0.312561,-0.314575,-0.316467,-0.314972,-0.310333,-0.300293,-0.281433,-0.253418,-0.220886,-0.18866,-0.156525,-0.12027,-0.0809326,-0.0414124,-0.00476074,0.0234985,0.0441589,0.0617371,0.0806885,0.101807,0.122009,0.137512,0.146179,0.151886,0.158447,0.164032,0.163147,0.152893,0.133698,0.107391,0.0814209,0.0625,0.0508118,0.0493164,0.0549011,0.0687256,0.0905457,0.121399,0.157379,0.192505,0.224304,0.244171,0.253906,0.254578,0.251617,0.248871,0.243774,0.234558,0.221558,0.209808,0.201965,0.198273,0.196167,0.188049,0.171539,0.147858,0.119598,0.0908813,0.0608826,0.0275269,-0.00985718,-0.0444946,-0.0730286,-0.0915527,-0.100128,-0.100891,-0.0993958,-0.0968628,-0.0955811,-0.0949707,-0.0938416,-0.0963745,-0.105103,-0.118317,-0.137115,-0.157043,-0.175629,-0.194031,-0.208344,-0.222412,-0.236572,-0.252502,-0.26532,-0.278473,-0.286652,-0.295502,-0.303772,-0.309875,-0.311554,-0.305115,-0.287445,-0.257385,-0.21994,-0.180939,-0.144958,-0.107666,-0.0720215,-0.0375061,-0.00637817,0.0157166,0.0310059,0.0414734,0.0539551,0.0741577,0.0977173,0.122742,0.141083,0.154633,0.166321,0.174835,0.178741,0.171814,0.155701,0.129211,0.101074,0.07901,0.0681152,0.0686035,0.0761719,0.0900574,0.109528,0.132751,0.160004,0.187866,0.211884,0.22644,0.230682,0.225861,0.220734,0.21994,0.221069,0.219482,0.214355,0.204376,0.19632,0.188599,0.184296,0.174622,0.155914,0.128265,0.0975342,0.0697937,0.0457153,0.0206604,-0.00564575,-0.0340881,-0.0599976,-0.0794067,-0.0908203,-0.0954285,-0.0992737,-0.103638,-0.11087,-0.115234,-0.11618,-0.113037,-0.112366,-0.116241,-0.124756,-0.138123,-0.152283,-0.165375,-0.179932,-0.196594,-0.219727,-0.242615,-0.263641,-0.278931,-0.28772,-0.292633,-0.295929,-0.299347,-0.298615,-0.289459,-0.271088,-0.242706,-0.21048,-0.178406,-0.149139,-0.117126,-0.0821533,-0.0448303,-0.0100098,0.0155029,0.0325623,0.0453796,0.0596619,0.0791321,0.101807,0.123962,0.140259,0.153107,0.166443,0.179932,0.188873,0.186523,0.171967,0.143951,0.113098,0.0861816,0.066925,0.0585327,0.0569763,0.0628967,0.0788574,0.105835,0.141357,0.177643,0.21167,0.232147,0.242218,0.239685,0.230865,0.222015,0.212219,0.199951,0.184692,0.170074,0.160339,0.15921,0.162903,0.16449,0.156708,0.139526,0.116577,0.0920105,0.0664978,0.0359802,0.000732422,-0.0370483,-0.0706787,-0.0951843,-0.107117,-0.111938,-0.111023,-0.108063,-0.106842,-0.103149,-0.0972595,-0.0908813,-0.090271,-0.0969849,-0.110199,-0.128662,-0.148651,-0.167389,-0.184296,-0.201874,-0.220551,-0.239746,-0.256042,-0.267578,-0.27356,-0.276398,-0.280334,-0.284973,-0.28653,-0.282227,-0.265167,-0.236389,-0.206726,-0.176575,-0.149139,-0.117523,-0.0845642,-0.0503235,-0.0200806,0.00308228,0.0192566,0.0336914,0.0531616,0.078125,0.107056,0.134705,0.155853,0.17276,0.184967,0.193359,0.192688,0.182831,0.160278,0.126862,0.0934143,0.0666504,0.0528259,0.0484619,0.0545654,0.0690002,0.0892029,0.11673,0.145966,0.176239,0.19986,0.210938,0.212097,0.205719,0.197937,0.194489,0.192291,0.189667,0.185516,0.180542,0.178589,0.179993,0.182281,0.176971,0.162018,0.138458,0.110077,0.0814209,0.0531006,0.0229492,-0.00894165,-0.0404053,-0.0664368,-0.0843506,-0.0913391,-0.0924072,-0.0910034,-0.0907288,-0.0918274,-0.0906067,-0.0901489,-0.0899353,-0.0944214,-0.104218,-0.11792,-0.136719,-0.154175,-0.170135,-0.185303,-0.201965,-0.219482,-0.237122,-0.25235,-0.26593,-0.274719,-0.281555,-0.288055,-0.292694,-0.292633,-0.283966,-0.261749,-0.231873,-0.197327,-0.164307,-0.13269,-0.0995483,-0.0668335,-0.0335693,-0.00531006,0.0137024,0.0258484,0.0396118,0.0596008,0.0851135,0.113434,0.138733,0.157715,0.173553,0.184357,0.190826,0.184784,0.167999,0.136444,0.098877,0.0653076,0.0410156,0.0278625,0.0281982,0.0385132,0.0589905,0.0856323,0.120148,0.153961,0.186584,0.210205,0.218933,0.21814,0.209137,0.200684,0.196259,0.192688,0.188995,0.18335,0.17926,0.181488,0.187531,0.192963,0.186584,0.168274,0.143433,0.114777,0.085968,0.0560303,0.0201416,-0.0161133,-0.0498047,-0.0750427,-0.0881958,-0.0921631,-0.0921631,-0.0910034,-0.0907288,-0.0901489,-0.0884705,-0.0857849,-0.086792,-0.0940247,-0.105988,-0.125427,-0.144562,-0.164154,-0.181335,-0.200134,-0.220947,-0.241882,-0.259735,-0.272491,-0.281006,-0.283966,-0.285583,-0.286987,-0.284698,-0.274963,-0.255249,-0.227203,-0.196777,-0.166718,-0.138123,-0.109741,-0.0811462,-0.0506592,-0.0235596,-0.00247192,0.0127563,0.0263062,0.0434875,0.0653076,0.089325,0.111542,0.130127,0.145111,0.154449,0.159271,0.158051,0.148071,0.127869,0.100067,0.0708008,0.0484619,0.0358276,0.0349731,0.0444336,0.062561,0.0883179,0.118744,0.153564,0.186584,0.214783,0.231415,0.23584,0.230957,0.222015,0.213104,0.206055,0.198669,0.18988,0.18161,0.177307,0.179474,0.184235,0.183014,0.17276,0.152893,0.127991,0.101013,0.0706787,0.0375977,0.00112915,-0.0352478,-0.0644836,-0.0849609,-0.0942993,-0.094574,-0.0939026,-0.091217,-0.090332,-0.0883789,-0.0860291,-0.086853,-0.0928345,-0.104706,-0.121735,-0.141937,-0.162628,-0.180084,-0.197113,-0.214966,-0.2323,-0.248993,-0.26236,-0.271088,-0.276123,-0.279755,-0.284302,-0.28653,-0.283905,-0.269745,-0.245178,-0.215302,-0.184021,-0.156311,-0.129059,-0.0987244,-0.0664978,-0.0363159,-0.0128784,0.00189209,0.0139465,0.0293274,0.0522766,0.081543,0.108917,0.129547,0.145905,0.159332,0.169861,0.173492,0.165588,0.143768,0.111084,0.0782471,0.0514832,0.0367126,0.0346375,0.0424194,0.0595398,0.0834961,0.116394,0.153625,0.189667,0.218384,0.233215,0.233826,0.22403,0.213501,0.206512,0.202545,0.199127,0.192352,0.188049,0.188934,0.196045,0.203979,0.202362,0.186462,0.158997,0.12738,0.0957031,0.0643616,0.0297241,-0.00894165,-0.0441589,-0.0724792,-0.0861816,-0.0888062,-0.0846252,-0.0813599,-0.0810242,-0.0814209,-0.0837708,-0.0848999,-0.0882568,-0.098053,-0.114227,-0.136108,-0.158875,-0.17807,-0.192566,-0.207001,-0.223511,-0.243225,-0.262817,-0.277405,-0.285522,-0.286377,-0.28894,-0.29129,-0.291138,-0.283783,-0.261688,-0.228394,-0.192017,-0.160065,-0.133636,-0.108673,-0.0796814,-0.0479126,-0.0219421,-0.00497437,0.00491333,0.0142212,0.0336304,0.0609436,0.0923462,0.118866,0.137268,0.149994,0.160339,0.167053,0.164703,0.15033,0.121948,0.0881348,0.0585327,0.0387878,0.032074,0.0396729,0.0552979,0.0763855,0.10498,0.139526,0.178192,0.213165,0.237579,0.245728,0.239532,0.22699,0.214966,0.208008,0.203094,0.193085,0.18222,0.174042,0.175507,0.185303,0.191162,0.184509,0.165436,0.138245,0.109802,0.0822144,0.052002,0.0158997,-0.0236816,-0.0599365,-0.0855713,-0.0973206,-0.0984497,-0.0949707,-0.0919495,-0.0892029,-0.0877075,-0.0837708,-0.0802612,-0.08255,-0.0921631,-0.113281,-0.138672,-0.164246,-0.186035,-0.20343,-0.220673,-0.240692,-0.26062,-0.277313,-0.286774,-0.287048,-0.284912,-0.284119,-0.283691,-0.278137,-0.260071,-0.2276,-0.189056,-0.15564,-0.128662,-0.107391,-0.081604,-0.0518188,-0.0240173,-0.00549316,0.00302124,0.0100708,0.0256348,0.0516052,0.0848389,0.114777,0.137268,0.152496,0.162689,0.169281,0.168671,0.154449,0.12738,0.0906677,0.0583801,0.0336914,0.0255737,0.0308838,0.0467224,0.068512,0.0956421,0.129608,0.167267,0.20578,0.232025,0.239807,0.234161,0.218994,0.205994,0.196716,0.189545,0.179596,0.165833,0.154175,0.155365,0.163971,0.173431,0.169952,0.1539,0.12973,0.104645,0.0814819,0.0569763,0.0260315,-0.00985718,-0.0439758,-0.0696106,-0.0811462,-0.0809326,-0.0783386,-0.0767822,-0.0777283,-0.07724,-0.0753174,-0.0724792,-0.0740356,-0.0857849,-0.107117,-0.135254,-0.162903,-0.185791,-0.204773,-0.224304,-0.246918,-0.270355,-0.288727,-0.297394,-0.296173,-0.29068,-0.285645,-0.278656,-0.262817,-0.233551,-0.192566,-0.149933,-0.115631,-0.0925598,-0.0732117,-0.0524292,-0.0312805,-0.0143738,-0.00643921,-0.00363159,0.00369263,0.0222168,0.052948,0.0892029,0.120605,0.14444,0.16095,0.169861,0.1698,0.158264,0.130951,0.0920105,0.0493164,0.0140381,-0.00772095,-0.00811768,0.0065918,0.0315552,0.0633545,0.100739,0.142761,0.184357,0.218475,0.234833,0.231873,0.215973,0.198181,0.185181,0.176117,0.166504,0.155579,0.146515,0.14679,0.155792,0.167603,0.172028,0.163422,0.143951,0.121399,0.0997925,0.0780029,0.0502625,0.0186462,-0.0140991,-0.0404053,-0.0563049,-0.0628357,-0.0636292,-0.0647583,-0.0675964,-0.0708618,-0.0722961,-0.0700073,-0.0680542,-0.0740356,-0.0885925,-0.111603,-0.137115,-0.15979,-0.180756,-0.201202,-0.226776,-0.252502,-0.276245,-0.289734,-0.292969,-0.290558,-0.286255,-0.27832,-0.260406,-0.228729,-0.187378,-0.144226,-0.108856,-0.0855713,-0.0667725,-0.0478516,-0.0296021,-0.017395,-0.0141602,-0.0150452,-0.0102539,0.00827026,0.0369263,0.0710144,0.100006,0.124023,0.141357,0.152283,0.155701,0.144836,0.116394,0.0767212,0.0345764,-0.00012207,-0.0194092,-0.0232239,-0.0114746,0.0107422,0.0411377,0.0788574,0.123291,0.166992,0.202881,0.21933,0.218597,0.205505,0.192017,0.183105,0.175507,0.165375,0.153015,0.143433,0.144623,0.157104,0.170288,0.175629,0.167175,0.150208,0.13269,0.114624,0.0942383,0.065979,0.0317383,-0.0017395,-0.0302124,-0.0458374,-0.0518799,-0.0536804,-0.0550232,-0.058136,-0.0596619,-0.0578613,-0.0536194,-0.0531616,-0.0606689,-0.0780029,-0.10321,-0.128662,-0.152435,-0.17215,-0.195251,-0.222229,-0.250397,-0.272888,-0.285583,-0.28894,-0.287933,-0.284027,-0.272491,-0.24826,-0.210693,-0.166931,-0.126923,-0.0992737,-0.0768433,-0.0593262,-0.0421448,-0.0324097,-0.0316162,-0.0361023,-0.0369873,-0.0233459,0.00302124,0.0367737,0.0711975,0.101746,0.129395,0.150208,0.160675,0.154114,0.127991,0.0875244,0.0421448,0.000274658,-0.0293274,-0.0425415,-0.0390625,-0.0212708,0.00845337,0.0482483,0.0965271,0.145721,0.188812,0.212433,0.216858,0.205322,0.190552,0.178925,0.168182,0.156982,0.142273,0.13269,0.135498,0.151672,0.17041,0.181549,0.179596,0.168335,0.154175,0.139587,0.11972,0.0919495,0.0571899,0.0196533,-0.00985718,-0.0282593,-0.0347595,-0.0359802,-0.0390625,-0.0410767,-0.0440979,-0.0424194,-0.0413513,-0.041748,-0.0516052,-0.0705261,-0.0970459,-0.123505,-0.147186,-0.168335,-0.191406,-0.218262,-0.246063,-0.269409,-0.283691,-0.291901,-0.294434,-0.290283,-0.277069,-0.248718,-0.209351,-0.166779,-0.128326,-0.0991211,-0.0749817,-0.0547791,-0.0410767,-0.0368347,-0.040741,-0.0469666,-0.0439758,-0.0265808,0.00201416,0.0359802,0.0693359,0.102417,0.131561,0.153564,0.161469,0.1492,0.115906,0.0710754,0.0231628,-0.0163879,-0.041687,-0.0493164,-0.0437622,-0.024231,0.00704956,0.0491943,0.0976562,0.145233,0.179932,0.195099,0.192627,0.183228,0.174164,0.168274,0.160278,0.149261,0.138794,0.13559,0.145447,0.163361,0.178741,0.183777,0.178528,0.167328,0.156036,0.142487,0.124756,0.0970459,0.0638428,0.0294495,0.00146484,-0.0161743,-0.0258484,-0.0343628,-0.0414734,-0.0493164,-0.0516663,-0.049408,-0.0466309,-0.0462341,-0.0560303,-0.074646,-0.0990601,-0.12558,-0.1492,-0.172974,-0.200012,-0.230072,-0.25766,-0.277527,-0.287537,-0.289795,-0.284241,-0.270142,-0.246307,-0.21109,-0.171753,-0.133484,-0.102875,-0.0777893,-0.0577087,-0.0429688,-0.037384,-0.041748,-0.049469,-0.0501404,-0.0365906,-0.012207,0.017395,0.0479126,0.0807495,0.112946,0.141418,0.157928,0.153229,0.127594,0.0877991,0.0436401,0.00424194,-0.026123,-0.0436401,-0.0482483,-0.0379944,-0.0124207,0.0267029,0.0736389,0.12323,0.161743,0.180267,0.183228,0.176178,0.169342,0.163086,0.154694,0.142548,0.129608,0.124084,0.132141,0.149414,0.165375,0.171295,0.165985,0.155121,0.146301,0.136993,0.122498,0.098877,0.0692749,0.0392761,0.016449,0.00189209,-0.00482178,-0.013092,-0.0238953,-0.0378418,-0.0491333,-0.0535583,-0.0558472,-0.0593872,-0.0704651,-0.0873108,-0.108246,-0.125519,-0.140869,-0.155975,-0.178253,-0.205994,-0.234772,-0.258667,-0.274841,-0.281097,-0.278473,-0.265503,-0.240417,-0.206512,-0.166595,-0.127594,-0.090332,-0.0591431,-0.0371094,-0.0269775,-0.0271912,-0.0359802,-0.0421448,-0.0390015,-0.0264587,-0.00717163,0.0175171,0.0475769,0.0828857,0.118927,0.145844,0.155792,0.144043,0.114624,0.0767212,0.0380554,0.00280762,-0.0227661,-0.0370483,-0.0388489,-0.0255737,0.00268555,0.040741,0.0831604,0.119324,0.141144,0.1474,0.14389,0.139465,0.134918,0.129547,0.122284,0.115173,0.112427,0.120667,0.137054,0.153778,0.162964,0.161743,0.154175,0.144775,0.135986,0.122681,0.104309,0.081604,0.0555115,0.0353088,0.020813,0.0137634,0.00732422,-0.00314331,-0.0160522,-0.032135,-0.0433655,-0.053009,-0.0635071,-0.0766602,-0.094574,-0.116455,-0.134247,-0.147919,-0.159119,-0.174438,-0.193909,-0.216583,-0.236389,-0.251404,-0.25827,-0.254181,-0.240601,-0.217255,-0.187469,-0.154572,-0.121002,-0.0864563,-0.0546265,-0.0317383,-0.0231628,-0.0236816,-0.0327454,-0.0390625,-0.0334167,-0.0191956,-0.000793457,0.0222168,0.0499878,0.0840149,0.117584,0.14389,0.151672,0.136108,0.105103,0.0658264,0.0263672,-0.00537109,-0.02771,-0.0389404,-0.0369873,-0.0209351,0.0110779,0.0498047,0.0897217,0.121338,0.136261,0.13443,0.123749,0.112823,0.10202,0.094574,0.0856934,0.0795898,0.0822144,0.0986023,0.123413,0.147308,0.160614,0.161346,0.1539,0.145111,0.134308,0.11792,0.0971069,0.0718079,0.0478516,0.0326843,0.0255127,0.0227661,0.0185852,0.0100098,-0.00482178,-0.0205383,-0.0348206,-0.0500793,-0.0671692,-0.0887146,-0.111359,-0.13269,-0.148651,-0.15744,-0.166504,-0.178406,-0.196655,-0.21637,-0.23645,-0.248932,-0.248535,-0.235718,-0.212006,-0.183289,-0.149994,-0.116577,-0.0764465,-0.0354919,-0.00683594,0.00524902,-0.00106812,-0.0171814,-0.0303345,-0.0324097,-0.0249023,-0.0139465,-0.000549316,0.0222168,0.0558472,0.0967712,0.130402,0.147797,0.137848,0.111084,0.074707,0.037262,0.00543213,-0.0198059,-0.037384,-0.0434875,-0.0348206,-0.00946045,0.0273743,0.066925,0.10141,0.118988,0.124298,0.119598,0.114044,0.110199,0.104431,0.0932312,0.0803528,0.0720215,0.0767822,0.0928955,0.11261,0.123962,0.125427,0.120392,0.118408,0.118988,0.118408,0.109467,0.0899963,0.0668335,0.0480652,0.0391846,0.0340271,0.0284424,0.0137634,-0.00524902,-0.025177,-0.0390625,-0.0512085,-0.0652466,-0.0843506,-0.108124,-0.131897,-0.149597,-0.159332,-0.165375,-0.174225,-0.189941,-0.21228,-0.231537,-0.239685,-0.230865,-0.210754,-0.186249,-0.164917,-0.141937,-0.109863,-0.0657654,-0.0204773,0.00912476,0.0162964,0.00643921,-0.00497437,-0.00692749,-0.000335693,0.00543213,0.0071106,0.0104065,0.0267029,0.0574646,0.0949707,0.120728,0.122681,0.103973,0.0720825,0.0404663,0.0132141,-0.0065918,-0.0236206,-0.0335693,-0.0332947,-0.0152283,0.019989,0.061615,0.098053,0.115845,0.115234,0.10672,0.0977173,0.0910645,0.0845032,0.0740356,0.061615,0.0557861,0.0639038,0.0852356,0.110596,0.127777,0.130219,0.124298,0.11557,0.107849,0.0984497,0.0855713,0.0667114,0.0465088,0.0322876,0.0289307,0.0336914,0.0392761,0.038269,0.0269165,0.0118103,-0.00610352,-0.0232849,-0.0424194,-0.0681152,-0.0968628,-0.125916,-0.150604,-0.165314,-0.175049,-0.18396,-0.197784,-0.216034,-0.231476,-0.236664,-0.225861,-0.203094,-0.174957,-0.149597,-0.125305,-0.0959167,-0.057373,-0.0168457,0.00878906,0.0140991,0.00415039,-0.00604248,-0.00643921,0.00323486,0.0141602,0.0239563,0.0349121,0.0555115,0.0853577,0.117401,0.13739,0.131897,0.10498,0.0657654,0.0245667,-0.0105896,-0.0361023,-0.053894,-0.0609436,-0.0561829,-0.0336914,0.00463867,0.0502625,0.0885315,0.110352,0.112549,0.105652,0.0964355,0.0890503,0.0807495,0.0701294,0.0568542,0.0503235,0.058136,0.0791321,0.105988,0.124359,0.129608,0.128052,0.122498,0.118805,0.11261,0.100403,0.0802612,0.0552979,0.0349121,0.0245056,0.0224304,0.0212708,0.0145569,-0.000610352,-0.0179749,-0.0328979,-0.0450439,-0.0596008,-0.0788574,-0.102356,-0.126251,-0.145294,-0.157257,-0.165161,-0.175568,-0.193909,-0.21463,-0.230286,-0.228882,-0.211823,-0.182953,-0.153839,-0.127869,-0.099884,-0.0634155,-0.0195312,0.0194702,0.0381165,0.0363159,0.0221558,0.0110779,0.00958252,0.0140991,0.0173035,0.0209961,0.0288696,0.0507507,0.0822144,0.113556,0.12738,0.117798,0.0881348,0.0516052,0.0157166,-0.013031,-0.0359192,-0.0519409,-0.0609436,-0.0544434,-0.0308838,0.00616455,0.0453796,0.0761719,0.0892029,0.0891418,0.0848999,0.0820312,0.0806885,0.0769958,0.068512,0.0590515,0.0574646,0.0681763,0.0891418,0.107849,0.11673,0.114227,0.107178,0.100555,0.0969849,0.0918274,0.081543,0.065979,0.0502625,0.0412903,0.0396729,0.0397339,0.0362549,0.0228882,-0.000213623,-0.0253601,-0.0502625,-0.0731506,-0.0949707,-0.116638,-0.138672,-0.156097,-0.166718,-0.169861,-0.171692,-0.180206,-0.193756,-0.208069,-0.210358,-0.196259,-0.169464,-0.141602,-0.11618,-0.0925598,-0.0605469,-0.020752,0.0186462,0.0414124,0.045166,0.0346375,0.0259094,0.0271301,0.0342407,0.0412903,0.0466309,0.0547791,0.0720215,0.0962524,0.118866,0.125916,0.109009,0.074646,0.0331421,-0.00549316,-0.033905,-0.0510864,-0.0611572,-0.0638428,-0.0557861,-0.0318909,0.00256348,0.0430908,0.0723572,0.0816956,0.0744934,0.0620117,0.0555725,0.0548401,0.0546265,0.0483093,0.0390015,0.0384521,0.0534973,0.0809326,0.106506,0.116302,0.111603,0.100281,0.0920105,0.0879211,0.08255,0.0706787,0.0517578,0.0344849,0.027771,0.0299988,0.038269,0.0403442,0.0307312,0.0109253,-0.0147705,-0.0381165,-0.0606079,-0.0835571,-0.109192,-0.136169,-0.16095,-0.175232,-0.17981,-0.181152,-0.18692,-0.196716,-0.202545,-0.194366,-0.172546,-0.142944,-0.116455,-0.0927429,-0.0693359,-0.0375061,-0.00088501,0.0297852,0.0472412,0.0497437,0.0464478,0.0475159,0.0551147,0.0646362,0.0710144,0.0771179,0.0878601,0.102295,0.120056,0.128723,0.122681,0.0967102,0.0604858,0.0221558,-0.0105896,-0.0333557,-0.048584,-0.058197,-0.0603333,-0.0498657,-0.0269775,0.00100708,0.0284424,0.0422974,0.0436401,0.0386047,0.0353088,0.0368347,0.0378418,0.0354309,0.0299988,0.0271301,0.032074,0.0489807,0.069397,0.0864563,0.0927429,0.0906067,0.0869751,0.0836182,0.0810242,0.0719604,0.0546875,0.03302,0.0157166,0.00772095,0.00900269,0.0109253,0.00811768,-0.00262451,-0.01651,-0.0299377,-0.0432129,-0.0598145,-0.0822144,-0.110077,-0.138672,-0.16391,-0.179871,-0.189331,-0.195709,-0.200073,-0.195374,-0.176788,-0.14505,-0.106445,-0.0719604,-0.045166,-0.0254517,-0.0050354,0.0153809,0.032135,0.0390015,0.0371094,0.0340271,0.0400085,0.0564575,0.0756531,0.0928955,0.106567,0.120392,0.135925,0.147308,0.148468,0.132019,0.098999,0.0579834,0.0202637,-0.0103455,-0.0302734,-0.040802,-0.0448303,-0.0424194,-0.0315552,-0.0142212,0.00744629,0.0246277,0.0309448,0.0249023,0.0137024,0.00570679,0.00430298,0.00650024,0.00692749,0.00509644,0.00363159,0.0106812,0.0249023,0.0450439,0.0593872,0.0654907,0.0644836,0.0628967,0.0637512,0.0646362,0.061615,0.0511475,0.0351562,0.0194702,0.00952148,0.00436401,0.000213623,-0.0105896,-0.026123,-0.0461121,-0.0643005,-0.0799255,-0.0945129,-0.110474,-0.129272,-0.150604,-0.170349,-0.183105,-0.190277,-0.191406,-0.187531,-0.176392,-0.151886,-0.118652,-0.0791931,-0.0426331,-0.0112,0.0158386,0.0410767,0.0626221,0.0750427,0.0787964,0.0767822,0.0775146,0.0877991,0.101471,0.116638,0.126434,0.136719,0.146179,0.155243,0.156525,0.142151,0.113281,0.0730286,0.0332336,0.000274658,-0.0220947,-0.0344238,-0.0396118,-0.0388489,-0.0328979,-0.019928,-0.00308228,0.0125427,0.0211487,0.0192566,0.00717163,-0.0020752,-0.00604248,-0.00167847,0.00280762,0.00537109,0.00363159,0.00558472,0.0152893,0.0302124,0.0446472,0.0522156,0.0489807,0.0422058,0.0371704,0.0377808,0.0397949,0.036438,0.0248413,0.00860596,-0.0067749,-0.0170593,-0.0252991,-0.0366516,-0.0563049,-0.0802002,-0.104492,-0.122223,-0.133636,-0.141266,-0.152496,-0.165985,-0.181885,-0.193481,-0.19812,-0.195038,-0.185791,-0.168182,-0.143097,-0.108398,-0.0684509,-0.0267029,0.0139465,0.0508728,0.0787964,0.0974426,0.105896,0.107239,0.106842,0.110413,0.118744,0.129456,0.141541,0.155579,0.170288,0.184113,0.192169,0.185516,0.163635,0.128326,0.0856323,0.0437622,0.00878906,-0.0153809,-0.0302734,-0.0380554,-0.0384521,-0.0316772,-0.0171814,0,0.0120239,0.0134888,0.00402832,-0.00778198,-0.015564,-0.0177917,-0.0144958,-0.0128174,-0.0100098,-0.0050354,0.00643921,0.020752,0.0348206,0.0443726,0.0476379,0.0458984,0.0441589,0.0419617,0.0409546,0.0379333,0.0304565,0.0181885,0.00430298,-0.0101318,-0.0248413,-0.0428162,-0.066925,-0.0969238,-0.127258,-0.155182,-0.177246,-0.19397,-0.208801,-0.221344,-0.23053,-0.235382,-0.233887,-0.224976,-0.21048,-0.187256,-0.154846,-0.115387,-0.0737,-0.03302,0.0065918,0.0444336,0.0798035,0.109802,0.127106,0.13324,0.135651,0.139862,0.1492,0.16095,0.173309,0.184174,0.195038,0.20752,0.215363,0.211884,0.192291,0.157928,0.113953,0.0698547,0.0310059,0.00262451,-0.0163879,-0.0270386,-0.0314026,-0.0284424,-0.0182495,0.000732422,0.0198059,0.0307922,0.0296021,0.0190735,0.0067749,0.000549316,-0.00234985,-0.00665283,-0.015625,-0.0220947,-0.0215454,-0.00845337,0.0110779,0.0304565,0.0413513,0.0428162,0.0430908,0.0447693,0.0471802,0.0458374,0.0369263,0.0194092,-0.00146484,-0.019989,-0.0350342,-0.050415,-0.0734863,-0.104767,-0.140533,-0.172363,-0.196777,-0.215515,-0.232758,-0.24939,-0.264496,-0.272705,-0.270264,-0.256439,-0.231476,-0.200806,-0.165039,-0.127258,-0.089386,-0.0509338,-0.0110779,0.0289917,0.0646973,0.0927429,0.113373,0.129059,0.148804,0.170349,0.189484,0.202637,0.21048,0.215851,0.223846,0.230865,0.230133,0.216705,0.189056,0.151764,0.113373,0.078186,0.0490723,0.0259705,0.00750732,-0.00765991,-0.0170593,-0.0191345,-0.0116882,0.000335693,0.00912476,0.00985718,0.00430298,-0.000793457,-0.00012207,0.00671387,0.0118713,0.0114746,0.00894165,0.00738525,0.0149536,0.0287781,0.0443726,0.0542908,0.0564575,0.0555115,0.0546265,0.0550232,0.0545654,0.0477905,0.0324097,0.011261,-0.00991821,-0.0280457,-0.0454407,-0.0668335,-0.0975952,-0.136261,-0.175232,-0.209595,-0.237793,-0.26236,-0.284576,-0.303162,-0.313904,-0.312775,-0.295044,-0.26297,-0.222168,-0.17572,-0.130066,-0.0855103,-0.0455017,-0.00872803,0.0250244,0.0520935,0.0726929,0.0869751,0.100952,0.121002,0.147644,0.17691,0.202423,0.221893,0.234375,0.242889,0.245453,0.238739,0.218384,0.185242,0.144775,0.104218,0.0710754,0.0462341,0.0279846,0.0142212,0.00308228,-0.00448608,-0.0062561,-0.000671387,0.00772095,0.0128784,0.0124207,0.00765991,0.00430298,0.00643921,0.0128784,0.016449,0.0158386,0.012207,0.0101318,0.0139465,0.0252991,0.0367126,0.0448914,0.0522766,0.0590515,0.0686035,0.078125,0.0858459,0.0845642,0.0714111,0.0499878,0.0238953,-0.00430298,-0.0333557,-0.0674438,-0.106232,-0.148651,-0.186035,-0.21814,-0.243622,-0.266846,-0.290131,-0.312012,-0.327179,-0.331085,-0.318329,-0.290955,-0.251495,-0.204376,-0.155121,-0.106384,-0.0590515,-0.0101318,0.0334778,0.0701904,0.0929565,0.106781,0.118408,0.137604,0.1633,0.18927,0.212433,0.231415,0.247406,0.261749,0.269196,0.260956,0.233154,0.188873,0.136444,0.0848389,0.038269,0.00262451,-0.0241089,-0.0399475,-0.0465698,-0.0449829,-0.0341492,-0.0185852,-0.00167847,0.0109253,0.0157776,0.0158386,0.013092,0.0128174,0.0126953,0.0140381,0.0134277,0.0115967,0.0146179,0.0228882,0.038269,0.0546265,0.069397,0.0802612,0.0869141,0.0900574,0.0917358,0.0910034,0.0812073,0.0653687,0.0415344,0.013092,-0.0159607,-0.0463867,-0.0812683,-0.118652,-0.157532,-0.194489,-0.225708,-0.252686,-0.273712,-0.292572,-0.308411,-0.318268,-0.316254,-0.300079,-0.267059,-0.222565,-0.171417,-0.122345,-0.0774536,-0.0317993,0.0103455,0.0483093,0.0789185,0.0977173,0.108917,0.123749,0.147461,0.177521,0.209473,0.236664,0.255981,0.270691,0.279938,0.279205,0.262024,0.224701,0.173431,0.115784,0.0613403,0.0167236,-0.0191956,-0.0446472,-0.0604858,-0.0643616,-0.0567932,-0.0435486,-0.026123,-0.0140991,-0.00952148,-0.00912476,-0.0114746,-0.0134888,-0.0137024,-0.0138245,-0.012146,-0.0083313,-0.000732422,0.0124207,0.0279846,0.0461121,0.0624084,0.0756531,0.0842896,0.090332,0.091156,0.0884705,0.0793457,0.0632324,0.0439758,0.0205994,-0.00744629,-0.0393982,-0.0761719,-0.116058,-0.155792,-0.194244,-0.22699,-0.257263,-0.281891,-0.299133,-0.308746,-0.30719,-0.29483,-0.270264,-0.235992,-0.19342,-0.147308,-0.104095,-0.0636292,-0.0234985,0.0148315,0.0489807,0.07901,0.101746,0.122009,0.145966,0.174835,0.203766,0.229523,0.251953,0.268524,0.279663,0.284363,0.275787,0.252289,0.215302,0.169952,0.123291,0.0767822,0.0350952,-0.00390625,-0.0366516,-0.0604858,-0.0720825,-0.0740356,-0.066925,-0.0560303,-0.0448303,-0.0357056,-0.0257874,-0.0171204,-0.00967407,-0.003479,-0.00140381,-0.00201416,-0.0032959,-0.00213623,0.00390625,0.0146179,0.027771,0.0418701,0.0557861,0.0683289,0.0810852,0.0889893,0.0908203,0.0819397,0.0620728,0.0322876,-0.00268555,-0.0428162,-0.0857849,-0.12912,-0.172089,-0.211151,-0.245392,-0.271362,-0.291565,-0.304565,-0.311615,-0.312225,-0.304169,-0.282104,-0.248322,-0.202637,-0.152283,-0.105988,-0.0630188,-0.0220947,0.0198669,0.0598145,0.09375,0.117981,0.135162,0.153229,0.179749,0.211548,0.243164,0.269196,0.287323,0.300537,0.307861,0.305847,0.287323,0.251495,0.202209,0.146179,0.0899353,0.0401306,-0.00134277,-0.0350342,-0.0584717,-0.0701294,-0.072876,-0.06604,-0.0517578,-0.0359192,-0.0234985,-0.01651,-0.0158386,-0.0147705,-0.0151062,-0.0128174,-0.0118713,-0.0108643,-0.0103455,-0.00274658,0.0125427,0.0336914,0.053833,0.0718689,0.0819397,0.086853,0.0871277,0.0814819,0.0679321,0.0434875,0.0101929,-0.0302124,-0.0732117,-0.11618,-0.155457,-0.195374,-0.232147,-0.266327,-0.295715,-0.317474,-0.33197,-0.338867,-0.338806,-0.328003,-0.302765,-0.262024,-0.208252,-0.150879,-0.0993347,-0.0518188,-0.00732422,0.0342407,0.0704041,0.0976562,0.116913,0.132233,0.152954,0.181824,0.214172,0.247589,0.277863,0.304169,0.322235,0.332092,0.325928,0.299683,0.256531,0.202759,0.143829,0.089386,0.0423584,0.00650024,-0.0195312,-0.0359192,-0.0423584,-0.0403442,-0.0315552,-0.0183105,-0.00860596,-0.00430298,-0.00592041,-0.00637817,-0.00537109,-0.000946045,0.0020752,0.00469971,0.00592041,0.00967407,0.019989,0.0341492,0.0492554,0.0605469,0.0670471,0.0697937,0.0713501,0.0701904,0.065094,0.0510864,0.0249634,-0.00900269,-0.0484009,-0.0910645,-0.133972,-0.179474,-0.225586,-0.26825,-0.305786,-0.333832,-0.352417,-0.363098,-0.364838,-0.35611,-0.335449,-0.302551,-0.256317,-0.202301,-0.146057,-0.091217,-0.0406189,0.00289917,0.0422974,0.0762329,0.104828,0.127655,0.145844,0.166504,0.188202,0.21579,0.244446,0.270477,0.292358,0.305237,0.307983,0.294708,0.266327,0.22644,0.176788,0.122833,0.0704651,0.0261841,-0.00827026,-0.0279236,-0.0367737,-0.0358276,-0.028717,-0.0141602,0.00482178,0.0235596,0.0362549,0.0446472,0.0464478,0.0481873,0.0472412,0.0477905,0.0453186,0.0440979,0.046051,0.0526733,0.0627441,0.073761,0.0823669,0.0877075,0.0881958,0.0834351,0.0733643,0.0557861,0.0291138,-0.00549316,-0.0492554,-0.0979919,-0.15033,-0.197784,-0.2435,-0.282501,-0.317474,-0.344788,-0.365234,-0.377197,-0.378723,-0.37149,-0.352631,-0.318665,-0.271027,-0.214294,-0.154785,-0.0976562,-0.045166,0.00289917,0.0445557,0.0765076,0.098999,0.112823,0.126099,0.143219,0.165833,0.191284,0.218323,0.245117,0.267578,0.284576,0.290344,0.28009,0.251068,0.204895,0.147247,0.0852966,0.0292053,-0.0138245,-0.0420837,-0.0593262,-0.0632324,-0.0545044,-0.0332947,-0.00228882,0.0293274,0.0541077,0.0657654,0.0723572,0.0777283,0.081604,0.085022,0.0834351,0.078186,0.0751038,0.0785828,0.089325,0.104431,0.117249,0.125916,0.127594,0.125092,0.117401,0.103821,0.0836792,0.0507507,0.00631714,-0.0448303,-0.0983276,-0.148132,-0.195923,-0.241272,-0.285706,-0.325714,-0.356201,-0.375854,-0.384918,-0.386322,-0.382568,-0.367523,-0.338684,-0.292145,-0.232635,-0.169739,-0.111145,-0.0570374,-0.00772095,0.0377808,0.079071,0.109528,0.128662,0.141083,0.155121,0.175049,0.200409,0.226044,0.247986,0.262238,0.268585,0.267242,0.253357,0.223022,0.177185,0.118256,0.0567932,0.00296021,-0.0357666,-0.0612793,-0.0773315,-0.0841675,-0.0811462,-0.0653687,-0.0396118,-0.00912476,0.0163879,0.0348206,0.048584,0.0636292,0.0806885,0.0972595,0.110077,0.115845,0.11792,0.121277,0.127441,0.135254,0.140747,0.14209,0.136169,0.128662,0.119263,0.109344,0.0928955,0.065155,0.0256958,-0.0236206,-0.077179,-0.132141,-0.185364,-0.237244,-0.286591,-0.329468,-0.362305,-0.378876,-0.385925,-0.38324,-0.372894,-0.354706,-0.321747,-0.273956,-0.214111,-0.152679,-0.0961914,-0.0462341,0.000274658,0.0449829,0.0846252,0.115784,0.134033,0.145172,0.15799,0.176514,0.198334,0.220276,0.237,0.246979,0.251343,0.250549,0.238342,0.208862,0.163422,0.104309,0.0420227,-0.0124817,-0.053894,-0.0837708,-0.102478,-0.112152,-0.108337,-0.0906677,-0.0586548,-0.0231628,0.00894165,0.0326233,0.0513306,0.0673218,0.0846252,0.098938,0.108734,0.112427,0.113281,0.118195,0.128326,0.143219,0.154572,0.158112,0.154236,0.145569,0.133423,0.118073,0.094574,0.0588074,0.0103455,-0.0429688,-0.098114,-0.148987,-0.197449,-0.243286,-0.285858,-0.323822,-0.351349,-0.368927,-0.375183,-0.373627,-0.365906,-0.347992,-0.315643,-0.264099,-0.200409,-0.134308,-0.0744934,-0.021759,0.0263062,0.0722961,0.110809,0.138397,0.152161,0.158051,0.16806,0.182953,0.200409,0.217133,0.230286,0.238068,0.240692,0.235718,0.219727,0.188599,0.146729,0.0948486,0.0396118,-0.0104675,-0.0506592,-0.0785828,-0.0959167,-0.104431,-0.101959,-0.0888672,-0.0640259,-0.0318909,-0.00134277,0.024231,0.0466309,0.0678406,0.0875244,0.105164,0.117798,0.123688,0.125519,0.12619,0.129272,0.133087,0.137909,0.138855,0.135315,0.127777,0.117188,0.103302,0.0826721,0.0517578,0.00866699,-0.0419617,-0.0963745,-0.150757,-0.201355,-0.250275,-0.29538,-0.33316,-0.363312,-0.380554,-0.387268,-0.382904,-0.368195,-0.34082,-0.299805,-0.244232,-0.179657,-0.113495,-0.053772,-0.0012207,0.045166,0.0845032,0.117188,0.13913,0.149323,0.154449,0.162079,0.174438,0.190155,0.207581,0.222839,0.233887,0.240417,0.239685,0.223694,0.187988,0.137604,0.078186,0.0186462,-0.0320129,-0.0706177,-0.0986633,-0.114716,-0.117249,-0.104218,-0.0785217,-0.0420227,-0.00582886,0.0265808,0.0514832,0.073822,0.0919495,0.107849,0.118469,0.123016,0.124695,0.127106,0.133301,0.142212,0.152496,0.156708,0.155914,0.147308,0.136383,0.119385,0.0987854,0.0697327,0.0283203,-0.0202026,-0.0715332,-0.125244,-0.1763,-0.22464,-0.271362,-0.314697,-0.350159,-0.372894,-0.384308,-0.381744,-0.372284,-0.354919,-0.326782,-0.281281,-0.219543,-0.149323,-0.0838318,-0.0315552,0.0106812,0.0510864,0.0885925,0.120209,0.137909,0.141541,0.141602,0.149933,0.165497,0.184448,0.199005,0.207672,0.210999,0.210144,0.204163,0.18396,0.150085,0.10437,0.0524902,0.00268555,-0.0406189,-0.0717468,-0.0922852,-0.102478,-0.101807,-0.0898132,-0.0675964,-0.0335693,0.00442505,0.0396729,0.0677185,0.0894775,0.104767,0.119537,0.130127,0.136597,0.136658,0.13269,0.130737,0.133423,0.141479,0.150543,0.155457,0.154846,0.146393,0.13382,0.114288,0.0866394,0.0468445,-0.00448608,-0.0618286,-0.121216,-0.174957,-0.222565,-0.264038,-0.301758,-0.334503,-0.358459,-0.36908,-0.370087,-0.363434,-0.350067,-0.326263,-0.28537,-0.227051,-0.159119,-0.0947571,-0.0383911,0.0115356,0.0588074,0.0999451,0.13028,0.144287,0.144562,0.143372,0.14859,0.15921,0.171539,0.182953,0.190063,0.196167,0.200287,0.195923,0.1763,0.140137,0.0894775,0.0331421,-0.0201416,-0.065033,-0.0983887,-0.122894,-0.134705,-0.133301,-0.116516,-0.0845642,-0.0421448,0.000610352,0.0400085,0.0704041,0.094696,0.115631,0.13208,0.141266,0.143494,0.139587,0.134583,0.134705,0.140686,0.149597,0.157043,0.159546,0.156982,0.150604,0.138733,0.121002,0.0910034,0.0475159,-0.00531006,-0.0630188,-0.119659,-0.1698,-0.215363,-0.257263,-0.292297,-0.32074,-0.338593,-0.344971,-0.341492,-0.333435,-0.320282,-0.296448,-0.257202,-0.201691,-0.137787,-0.0758972,-0.0234375,0.0236206,0.0658264,0.102295,0.128601,0.142273,0.14389,0.142151,0.14389,0.151825,0.160675,0.171143,0.179657,0.184906,0.184021,0.174561,0.15155,0.115112,0.0687866,0.0144348,-0.0418091,-0.0885925,-0.119995,-0.137451,-0.141266,-0.135101,-0.117249,-0.0872498,-0.0471191,-0.00430298,0.0326233,0.0612183,0.0856934,0.103546,0.118195,0.129059,0.133636,0.134155,0.132812,0.133087,0.133362,0.139008,0.143707,0.146118,0.143097,0.134918,0.120605,0.102631,0.0787964,0.0458374,0.00256348,-0.0479736,-0.100677,-0.150208,-0.194092,-0.233368,-0.267578,-0.295258,-0.312286,-0.318329,-0.315369,-0.304779,-0.289734,-0.267242,-0.231354,-0.182556,-0.128113,-0.074646,-0.0264587,0.0151672,0.0554504,0.0914001,0.121277,0.138794,0.145844,0.147583,0.15155,0.160126,0.170288,0.176971,0.183167,0.185181,0.18457,0.178467,0.161011,0.12973,0.0873718,0.0333557,-0.0195312,-0.0645752,-0.0997314,-0.123413,-0.140594,-0.146454,-0.138458,-0.114899,-0.0792542,-0.0400085,-0.00576782,0.0220947,0.0456543,0.0701904,0.0910645,0.105652,0.113159,0.115509,0.11496,0.119659,0.125092,0.134766,0.142761,0.144958,0.140137,0.130127,0.117737,0.101288,0.0792542,0.0445557,0.00201416,-0.0472412,-0.0939636,-0.136719,-0.176117,-0.213959,-0.251068,-0.280823,-0.30069,-0.307312,-0.303772,-0.294983,-0.284973,-0.266174,-0.233826,-0.184967,-0.127197,-0.0697327,-0.0204773,0.0215454,0.0592651,0.0964355,0.128723,0.14975,0.158875,0.160004,0.1604,0.166168,0.175568,0.184113,0.18631,0.183838,0.178528,0.169128,0.156036,0.132477,0.0961914,0.0489807,0.000396729,-0.0446472,-0.0760498,-0.0997925,-0.113281,-0.123688,-0.122559,-0.109589,-0.0839539,-0.0514221,-0.0167847,0.00973511,0.0306702,0.049408,0.0679321,0.0848389,0.0974426,0.102631,0.101868,0.100677,0.103821,0.109802,0.116577,0.119141,0.113953,0.10321,0.0903931,0.0764465,0.0583191,0.0333557,-0.0020752,-0.0448303,-0.0889282,-0.12854,-0.16391,-0.195038,-0.22403,-0.250336,-0.269196,-0.275055,-0.270752,-0.262299,-0.251831,-0.240143,-0.221283,-0.189209,-0.148987,-0.105377,-0.0634155,-0.024231,0.0138245,0.0544434,0.0906067,0.120819,0.143158,0.159393,0.169067,0.177521,0.185364,0.190216,0.192627,0.193634,0.188477,0.180664,0.169739,0.151825,0.124908,0.0881958,0.0477295,0.00759888,-0.0287781,-0.0578613,-0.0821533,-0.101135,-0.10907,-0.105164,-0.0930176,-0.0744934,-0.0524902,-0.0312195,-0.0107422,0.0105896,0.0280457,0.0466309,0.0620117,0.0744934,0.0855713,0.0965881,0.108063,0.119385,0.131012,0.138062,0.138733,0.131348,0.119598,0.10202,0.07724,0.0479736,0.0100098,-0.0333557,-0.0765076,-0.117584,-0.155701,-0.190002,-0.218536,-0.245972,-0.26825,-0.281219,-0.285309,-0.28067,-0.273163,-0.262146,-0.25,-0.233032,-0.199951,-0.15564,-0.105774,-0.0585327,-0.0146179,0.0248413,0.0672607,0.113098,0.15094,0.176239,0.187988,0.192169,0.196259,0.205322,0.212891,0.212006,0.202148,0.188385,0.172974,0.1604,0.144775,0.119202,0.08255,0.0393372,-0.00280762,-0.0344849,-0.0569153,-0.0740356,-0.0865784,-0.0967712,-0.098877,-0.0888672,-0.0684509,-0.0424194,-0.0198059,-0.0020752,0.0132751,0.0302124,0.0476379,0.0674438,0.0823669,0.0935059,0.101471,0.107452,0.114716,0.12323,0.128204,0.125977,0.114777,0.0975342,0.0779114,0.0561218,0.0319519,0.0012207,-0.0365906,-0.0794678,-0.11853,-0.153839,-0.183014,-0.209259,-0.23465,-0.25705,-0.269745,-0.273621,-0.267242,-0.256104,-0.242096,-0.225586,-0.205658,-0.18042,-0.149414,-0.11203,-0.0729675,-0.0324707,0.00564575,0.0388489,0.0719604,0.103973,0.13382,0.15799,0.172546,0.179535,0.18457,0.193634,0.200409,0.201355,0.195435,0.180878,0.164764,0.149597,0.132355,0.10791,0.0758362,0.0393372,0.00222778,-0.0270386,-0.046051,-0.0577087,-0.0663757,-0.068512,-0.0692749,-0.0588074,-0.0424194,-0.0221558,-0.00543213,0.00549316,0.015625,0.0246277,0.0358276,0.0497437,0.0617371,0.0700073,0.0785217,0.0873108,0.0957031,0.105103,0.110748,0.108521,0.100128,0.0853577,0.0648193,0.0420837,0.015625,-0.0141602,-0.0491333,-0.0856934,-0.119995,-0.150146,-0.174896,-0.194641,-0.21344,-0.228455,-0.236328,-0.237335,-0.231201,-0.218994,-0.207123,-0.19342,-0.173553,-0.150604,-0.126587,-0.100342,-0.0710754,-0.0390625,-0.00549316,0.0275269,0.058136,0.0886536,0.117798,0.145569,0.164581,0.176788,0.186798,0.192169,0.195312,0.192902,0.181335,0.164093,0.145508,0.124237,0.100006,0.0744324,0.0479126,0.0218811,-0.00112915,-0.0216675,-0.0367737,-0.0454407,-0.0493164,-0.0481262,-0.0446472,-0.0384521,-0.0290527,-0.0180664,-0.00839233,0.00161743,0.0101929,0.0205994,0.0328064,0.0459595,0.0588074,0.0721436,0.0827637,0.0914001,0.0967712,0.0964355,0.091217,0.0841064,0.0707397,0.0515442,0.0283203,0.00222778,-0.0233459,-0.0482483,-0.0733643,-0.0973816,-0.118866,-0.139587,-0.154022,-0.166107,-0.174164,-0.180145,-0.184296,-0.184967,-0.182678,-0.179871,-0.174164,-0.168518,-0.159546,-0.148743,-0.135834,-0.120056,-0.0993958,-0.0737,-0.045166,-0.0105286,0.0219421,0.0514832,0.0802612,0.107056,0.130005,0.147522,0.156586,0.162231,0.164429,0.166046,0.164642,0.159729,0.151215,0.140198,0.128662,0.116913,0.102142,0.085968,0.0664368,0.0452271,0.0238342,0.00598145,-0.0108032,-0.0232239,-0.0328064,-0.0394592,-0.0439758,-0.0437012,-0.0387268,-0.032135,-0.0227661,-0.013031,-0.000457764,0.0118103,0.0255127,0.037384,0.0461121,0.0533447,0.0556946,0.0550232,0.0533447,0.0479736,0.0402832,0.0304565,0.0197449,0.00616455,-0.00738525,-0.0192566,-0.0328979,-0.0455627,-0.0600586,-0.0725403,-0.085907,-0.0973816,-0.109802,-0.121338,-0.132751,-0.143097,-0.153625,-0.161011,-0.165039,-0.165985,-0.163574,-0.156982,-0.144836,-0.129211,-0.11026,-0.0914001,-0.0730286,-0.0543518,-0.0315552,-0.00558472,0.0204773,0.045105,0.0670471,0.0892639,0.110687,0.131409,0.147858,0.160461,0.167053,0.170074,0.167786,0.163574,0.156586,0.145905,0.132019,0.117401,0.101624,0.0875854,0.0739746,0.0577087,0.038269,0.0167236,-0.00469971,-0.0194702,-0.0303345,-0.0371094,-0.0410156,-0.0433044,-0.0414124,-0.0350952,-0.0259094,-0.0142822,-0.00524902,0.00201416,0.00683594,0.0110168,0.0142822,0.0167847,0.016571,0.0160522,0.0141602,0.0120239,0.0105896,0.0101318,0.0071106,0.00357056,-0.00128174,-0.00610352,-0.0114136,-0.016571,-0.0231018,-0.0330811,-0.0467224,-0.0602722,-0.0751648,-0.0899353,-0.104218,-0.120483,-0.136261,-0.147461,-0.155029,-0.158875,-0.156586,-0.150879,-0.139862,-0.126862,-0.111084,-0.0953674,-0.0783386,-0.0598145,-0.0421448,-0.024292,-0.00570679,0.0140991,0.036438,0.0621643,0.0877075,0.110352,0.130951,0.150085,0.168182,0.181091,0.187317,0.184906,0.176514,0.164978,0.151001,0.133972,0.114838,0.0936279,0.0733032,0.0521545,0.0335693,0.0163879,0.00128174,-0.0124207,-0.0234985,-0.0333557,-0.0399475,-0.0433655,-0.0437622,-0.0428772,-0.0414124,-0.0396729,-0.0361023,-0.0306702,-0.0241699,-0.0195312,-0.0154419,-0.0112,-0.00805664,-0.00469971,0.00128174,0.00704956,0.0128174,0.0185242,0.0212097,0.0224915,0.0219421,0.0196533,0.0160522,0.0102539,0.000946045,-0.0122681,-0.0259705,-0.0406799,-0.0561829,-0.0739746,-0.0899963,-0.102753,-0.112946,-0.120728,-0.125183,-0.129395,-0.129669,-0.12677,-0.122742,-0.117188,-0.109192,-0.100067,-0.0877075,-0.0720825,-0.0559692,-0.0393982,-0.0221558,-0.00341797,0.01651,0.0386658,0.0605469,0.0810852,0.0994568,0.115448,0.129791,0.142548,0.150604,0.154175,0.151825,0.145508,0.135773,0.124512,0.113281,0.0992126,0.0838928,0.0675049,0.0527649,0.0420837,0.0340881,0.026123,0.0166321,0.00415039,-0.00704956,-0.0173035,-0.0261841,-0.0353088,-0.0441589,-0.0522766,-0.0577087,-0.0579834,-0.0543518,-0.0489197,-0.0447083,-0.0396118,-0.0316162,-0.0222168,-0.00973511,0.000396729,0.00692749,0.0126038,0.0162964,0.0206604,0.0226746,0.0240173,0.0215454,0.0187988,0.0115967,0.00610352,-0.000671387,-0.00650024,-0.0132141,-0.0222778,-0.0328064,-0.0428772,-0.0526123,-0.0601501,-0.069519,-0.0798035,-0.0913391,-0.0997314,-0.105988,-0.110077,-0.11142,-0.112091,-0.10791,-0.098053,-0.0838318,-0.065918,-0.0458374,-0.0272522,-0.00765991,0.0100708,0.0275879,0.0428162,0.0576477,0.0671082,0.0752258,0.0802612,0.0856934,0.0924988,0.098114,0.102692,0.104645,0.106384,0.10556,0.104034,0.0959778,0.0866394,0.0721436,0.0585327,0.0448914,0.0326233,0.0222168,0.0109253,6.10352e-05,-0.012146,-0.0220032,-0.0294495,-0.0358276,-0.0410156,-0.0459595,-0.0475159,-0.0462341,-0.0410767,-0.0350342,-0.028656,-0.0224915,-0.0147095,-0.00643921,-0.00100708,0.0032959,0.00598145,0.00750732,0.00860596,0.00637817,0.00582886,0.00598145,0.00778198,0.0103455,0.0115967,0.0123596,0.0104675,0.00778198,0.00396729,-0.00140381,-0.00698853,-0.0154419,-0.0227661,-0.0293274,-0.0363159,-0.0434875,-0.0497437,-0.0551147,-0.0588074,-0.0590515,-0.0604858,-0.0612183,-0.0599365,-0.0567932,-0.0524902,-0.0479126,-0.0431519,-0.0393372,-0.0322266,-0.0244446,-0.0167847,-0.00952148,-0.00296021,0.00222778,0.0100098,0.017395,0.0270386,0.0337524,0.0410156,0.0461731,0.0517578,0.0566406,0.0617371,0.0649109,0.0634155,0.0608215,0.057373,0.0521545,0.0455017,0.0375977,0.0272522,0.0162354,0.0062561,-0.00180054,-0.00845337,-0.0115356,-0.0147095,-0.0175171,-0.0187988,-0.0174561,-0.0151062,-0.0126953,-0.0100098,-0.00750732,-0.00564575,-0.00335693,-0.00195312,-0.000946045,0.000793457,0.00106812,0.000793457,0.00140381,0.00375366,0.00497437,0.0071106,0.0085144,0.00939941,0.00912476,0.00726318,0.00396729,0.000549316,-0.00415039,-0.00952148,-0.0174561,-0.024353,-0.0292664,-0.0320129,-0.0323486,-0.028717,-0.0234985,-0.0169067,-0.00958252,-0.000732422,0.00637817,0.00967407,0.00991821,0.00900269,0.00692749,0.00375366,-0.000946045,-0.00665283,-0.0112,-0.0126953,-0.0136108,-0.0147095,-0.0162354,-0.016449,-0.0152283,-0.0140991,-0.0134277,-0.0142212,-0.0138245,-0.0134277,-0.0140381,-0.0140381,-0.0142212,-0.0136108,-0.0149536,-0.015625,-0.0158386,-0.0138245,-0.0109253,-0.00765991,-0.00375366,0.0015564,0.00698853,0.0126953,0.0176392,0.0216675,0.0240173,0.0240173,0.0238953,0.020813,0.0180664,0.0149536,0.0120239,0.0083313,0.00524902,0.0032959,0.00497437,0.00643921,0.00878906,0.00918579,0.00939941,0.00894165,0.00979614,0.00906372,0.0071106,0.00363159,-0.00146484,-0.00839233,-0.0132141,-0.0159607,-0.0179138,-0.0192566,-0.0179749,-0.0137634,-0.00744629,-0.000610352,0.00524902,0.00906372,0.0111389,0.0103455,0.00894165,0.00827026,0.00637817,0.00396729,0.00180054,0.00180054,0.00436401,0.00872803,0.0138245,0.0188599,0.0226746,0.0268555,0.029541,0.0307922,0.0273132,0.0227661,0.0184021,0.0152893,0.0105896,0.00375366,-0.00476074,-0.013092,-0.0204773,-0.0283813,-0.0346375,-0.040802,-0.0475769,-0.0521545,-0.0536194,-0.0527649,-0.0496521,-0.0453796,-0.0424194,-0.0379944,-0.0354309,-0.032074,-0.0281067,-0.024231,-0.0224915,-0.0202026,-0.016449,-0.0110779,-0.00335693,0.00448608,0.0140381,0.020752,0.0250244,0.0273132,0.0308838,0.032074,0.0322266,0.0265198,0.0187988,0.0101929,0.00363159,-0.00106812,-0.00491333,-0.00860596,-0.012085,-0.0148926,-0.0118103,-0.00765991,-0.0032959,0.00134277,0.00323486,0.0062561,0.00631714,0.0085144,0.0100708,0.0125427,0.0115967,0.0110779,0.00900269,0.0111389,0.0142822,0.0185242,0.0220947,0.0248413,0.0256958,0.0279846,0.0314636,0.0334167,0.0333557,0.0319519,0.0273743,0.0240173,0.0231018,0.0230103,0.0216064,0.0172424,0.0110168,0.00582886,0.000610352,-0.00189209,-0.00396729,-0.00616455,-0.0085144,-0.0102539,-0.0103455,-0.0109253,-0.0083313,-0.00726318,-0.0088501,-0.0128784,-0.0181885,-0.0212708,-0.0253601,-0.028717,-0.0344849,-0.0376587,-0.0394592,-0.0393982,-0.0374451,-0.0341492,-0.0280457,-0.0245667,-0.0226135,-0.0205994,-0.0178528,-0.0148926,-0.0151062,-0.0195312,-0.0245667,-0.0283813,-0.0314026,-0.0322876,-0.0322876,-0.0293884,-0.0260315,-0.0203247,-0.0114136,-0.00256348,0.00958252,0.0189209,0.0259094,0.0271912,0.0272522,0.025116,0.0219421,0.0170593,0.0112,0.00631714,0.00408936,0.00430298,0.00759888,0.0107422,0.0137024,0.0175171,0.0196533,0.0198059,0.0201416,0.0185852,0.0146179,0.0111389,0.00692749,0.00442505,0.00457764,0.00683594,0.00878906,0.0101929,0.0134277,0.0166321,0.020874,0.0239563,0.0282593,0.0322876,0.033905,0.0346375,0.0341492,0.0339661,0.0332947,0.0311279,0.025116,0.0191345,0.0116882,0.00543213,-6.10352e-05,-0.00692749,-0.0116882,-0.0131531,-0.0119324,-0.0105896,-0.00952148,-0.00939941,-0.0115356,-0.0155029,-0.0213318,-0.0246277,-0.0285339,-0.0334167,-0.0385132,-0.0435486,-0.0463867,-0.0475769,-0.0471802,-0.0466309,-0.0423584,-0.0381775,-0.0338135,-0.0278625,-0.020874,-0.015564,-0.013092,-0.0118713,-0.0100098,-0.00811768,-0.0062561,-0.00497437,-0.00598145,-0.00811768,-0.0065918,-0.0038147,-0.00213623,0.000732422,0.000732422,0.00161743,0.00302124,0.00213623,0.00256348,0.000457764,-0.0017395,-0.00436401,-0.00592041,-0.0067749,-0.00671387,-0.00610352,-0.00604248,-0.00491333,-0.00256348,0.00256348,0.00744629,0.0136108,0.0169067,0.0195312,0.0222168,0.0263062,0.0308838,0.0324707,0.0338135,0.0348206,0.0347595,0.0354309,0.0357056,0.0376587,0.0369263,0.0343018,0.0328064,0.0314636,0.0302124,0.0265198,0.0231018,0.0187378,0.0140381,0.0085144,0.00509644,0.00302124,0.000732422,-0.00408936,-0.00946045,-0.015625,-0.0211487,-0.0262451,-0.0300598,-0.0343018,-0.0383911,-0.0388489,-0.0350952,-0.0310059,-0.0238342,-0.0162964,-0.0105286,-0.00732422,-0.00497437,-0.00457764,-0.00289917,-0.00442505,-0.00827026,-0.0120239,-0.0138855,-0.0144348,-0.0142822,-0.0127563,-0.011261,-0.0118713,-0.0114136,-0.0106812,-0.00839233,-0.00958252,-0.012085,-0.016449,-0.019989,-0.0234985,-0.0241699,-0.0267944,-0.02771,-0.0288696,-0.0284424,-0.0256348,-0.0224304,-0.0190735,-0.0141602,-0.00906372,-0.00213623,0.00228882,0.00827026,0.0136108,0.0180664,0.0202637,0.0230103,0.0247803,0.0267944,0.0273743,0.0267944,0.0250244,0.0231018,0.0232239,0.0238342,0.026123,0.0269775,0.0264587,0.025177,0.0234375,0.021759,0.0212097,0.0184021,0.0140991,0.00906372,0.003479,-0.000396729,-0.00436401,-0.0083313,-0.0118103,-0.0148926,-0.0152893,-0.0128174,-0.00759888,-0.00308228,0.000732422,0.00247192,0.00296021,0.00430298,0.00543213,0.00537109,0.00415039,0.00128174,-0.00128174,-0.00256348,-0.00314331,-0.00167847,0.000457764,-0.000396729,-0.00189209,-0.00167847,-0.000793457,-0.0017395,-0.00491333,-0.00979614,-0.0152283,-0.0205383,-0.0225525,-0.0240173,-0.0240173,-0.0266418,-0.0291138,-0.0303955,-0.0294495,-0.0276489,-0.025116,-0.0234985,-0.020752,-0.01651,-0.0113525,-0.00424194,0.0020752,0.00631714,0.00817871,0.0100098,0.0115356,0.0113525,0.0127563,0.0129395,0.0128174,0.012146,0.013092,0.0151062,0.0169678,0.0187378,0.0181885,0.0152283,0.0108032,0.00750732,0.00369263,-0.000335693,-0.00430298,-0.00933838,-0.0139465,-0.0166321,-0.0172424,-0.0167847,-0.0166321,-0.0163879,-0.0152893,-0.0126953,-0.00973511,-0.00671387,-0.00234985,-0.000396729,0.00241089,0.00247192,0.00424194,0.00604248,0.00860596,0.00973511,0.0100098,0.011261,0.0128784,0.0161133,0.016571,0.0179749,0.0187988,0.017395,0.0152283,0.0124817,0.00912476,0.00543213,0.00228882,-0.00222778,-0.00457764,-0.00637817,-0.00759888,-0.00894165,-0.0114136,-0.0144348,-0.017395,-0.0202637,-0.0247803,-0.0273132,-0.0259705,-0.0238342,-0.0204773,-0.0158997,-0.0104065,-0.00482178,0.0012207,0.00537109,0.00900269,0.0122681,0.0142822,0.0142212,0.0138855,0.0151062,0.0152283,0.0160522,0.0162964,0.0196533,0.0223389,0.0228882,0.0219421,0.0183105,0.0155029,0.0125427,0.00564575,-0.00180054,-0.00872803,-0.0127563,-0.0151062,-0.0184631,-0.0203247,-0.0222168,-0.0205383,-0.0192566,-0.0184021,-0.0171204,-0.0157166,-0.0157776,-0.0155029,-0.0153809,-0.0127563,-0.0100098,-0.00576782,-0.00268555,0.000213623,0.00222778,0.00402832,0.00476074,0.00415039,0.00390625,0.00335693,0.000396729,0.000610352,-0.0015564,-0.00180054,-0.000946045,0.000274658,0.000396729,-0.00012207,-0.000610352,0.000549316,-0.00201416,-0.00524902,-0.00900269,-0.0129395,-0.0137024,-0.016571,-0.0162354,-0.0154419,-0.0101929,-0.00683594,-0.00100708,0.00415039,0.0104065,0.0132751,0.0153809,0.0162964,0.017395,0.0172424,0.0173035,0.0163879,0.0151062,0.0153809,0.0152283,0.0146179,0.0129395,0.0114746,0.00985718,0.00973511,0.00765991,0.00592041,0.00308228,0.000793457,-0.00088501,-0.00268555,-0.00598145,-0.00805664,-0.00967407,-0.0119324,-0.0140991,-0.0152283,-0.0136108,-0.00900269,-0.00302124,0.00289917,0.00894165,0.0145569,0.0171204,0.0179749,0.0146179,0.012207,0.00616455,-0.000396729,-0.00784302,-0.012207,-0.0161743,-0.0187988,-0.0205383,-0.0216064,-0.0220032,-0.0197449,-0.0184021,-0.0171204,-0.015564,-0.0166321,-0.0182495,-0.0179138,-0.0150452,-0.013092,-0.0110779,-0.0115967,-0.00979614,-0.00778198,-0.0038147,0.00012207,0.00341797,0.00576782,0.00805664,0.0116882,0.0134277,0.0158997,0.0157776,0.0137634,0.0105896,0.00692749,0.00363159,0.00012207,-0.00167847,-0.00442505,-0.0050354,-0.00457764,-0.00088501,0.00201416,0.00497437,0.00744629,0.00793457,0.00878906,0.00817871,0.00793457,0.00671387,0.00442505,0.00146484,-0.0012207,-0.00128174,-0.000396729,0.00128174,0.0032959,0.00497437,0.00732422,0.00866699,0.0088501,0.00692749,0.00296021,0,-0.000396729,-0.00167847,-0.00140381,-0.00357056,-0.00415039,-0.00558472,-0.00772095,-0.00906372,-0.0085144,-0.00894165,-0.00933838,-0.00958252,-0.0106812,-0.0109253,-0.0114136,-0.0110779,-0.0104065,-0.00906372,-0.00765991,-0.00650024,-0.00616455,-0.00531006,-0.00457764,-0.00436401,-0.00396729,-0.00537109,-0.00476074,-0.00314331,-0.00134277,-0.00167847,-0.00189209,-0.00167847,0.000396729,0.00335693,0.00631714,0.00750732,0.00872803,0.00671387,0.00296021,6.10352e-05,-0.000213623,-0.00012207,-0.0012207,-0.00222778,-0.00256348,0.000213623,0.00497437,0.00933838,0.0122681,0.0145569,0.0176392,0.0193176,0.019989,0.0187988,0.0158997,0.011261,0.00592041,0.00161743,-0.00296021,-0.00665283,-0.00912476,-0.0107422,-0.0139465,-0.0140991,-0.0125427,-0.00744629,-0.00241089,0.000732422,0.00323486,0.00637817,0.00918579,0.0114746,0.0108643,0.00973511,0.00604248,0.00234985,-0.00363159,-0.0105286,-0.013092,-0.0147095,-0.0147705,-0.0148315,-0.0147095,-0.0132751,-0.0137634,-0.013092,-0.0146179,-0.0158997,-0.0184021,-0.0229492,-0.0257874,-0.0265808,-0.0256348,-0.025116,-0.0229492,-0.0193176,-0.0129395,-0.00549316,0.00195312,0.00811768,0.0109253,0.0118103,0.0110779,0.0105896,0.00805664,0.00531006,0.003479,0.00222778,0.00134277,0.00100708,0.000946045,0.00415039,0.00793457,0.0101318,0.0109253,0.0114136,0.0124207,0.0129395,0.013031,0.011261,0.00750732,0.00436401,0.0015564,0.000732422,0.00201416,0.00442505,0.00564575,0.00631714,0.0065918,0.00845337,0.0120239,0.0145569,0.0145569,0.0134888,0.0127563,0.0139465,0.0152283,0.0140381,0.0124207,0.00894165,0.00524902,0.00106812,-0.00146484,-0.00180054,-0.00268555,-0.00268555,-0.00442505,-0.00497437,-0.00408936,-0.00457764,-0.0067749,-0.0105286,-0.0147705,-0.0177307,-0.0202637,-0.0246887,-0.0273743,-0.0290527,-0.0280457,-0.0268555,-0.0245667,-0.0206604,-0.0169067,-0.0158997,-0.0149536,-0.0151672,-0.0150452,-0.0150452,-0.0153809,-0.0137024,-0.0108032,-0.0065918,-0.00289917,0.00012207,0.00280762,0.00476074,0.00543213,0.00598145,0.0050354,0.00396729,0.00357056,0.00424194,0.00491333,0.00744629,0.00973511,0.0115967,0.0140991,0.0148315,0.0142822,0.0131531,0.0110168,0.00738525,0.00363159,0.000946045,-0.000946045,-0.00180054,-0.00213623,-0.00140381,0.000946045,0.00341797,0.00537109,0.00631714,0.0071106,0.00784302,0.0083313,0.00765991,0.00717163,0.00726318,0.00805664,0.00985718,0.012207,0.0147095,0.0161133,0.0154419,0.0134888,0.0111389,0.00878906,0.00482178,0.000549316,-0.00341797,-0.00717163,-0.0100098,-0.0124207,-0.0141602,-0.0151062,-0.0166321,-0.0179138,-0.0205383,-0.0222778,-0.0226135,-0.0234375,-0.0231628,-0.0210876,-0.0181885,-0.0137634,-0.00872803,-0.00436401,0.00012207,0.00308228,0.0050354};
freunde_1_fois_soprano = (freunde_1_fois_soprano_0):((!,_));
freunde_1_fois_soprano_rtable_0(r) = (freunde_1_fois_soprano_0,r):rdtable;
| https://raw.githubusercontent.com/grame-cncm/GeekBagatelles/d09ed1362a79707d1687ed92cf0482ced2509035/freunde_1_fois_soprano_waveform.dsp | faust | freunde_1_fois_soprano_0 = waveform{-0.00140381,-0.0017395,-0.00088501,-0.000610352,-0.000457764,-0.00201416,-0.00140381,-0.0017395,-0.000213623,-0.000396729,-0.00189209,-0.00256348,-0.00128174,0.00012207,-0.000335693,-0.00146484,-0.00213623,-0.00106812,6.10352e-05,-0.000274658,-0.00140381,-0.00167847,-0.00106812,-0.000610352,-0.000549316,-0.000610352,-0.00146484,-0.00128174,-0.00146484,-0.00012207,-0.000274658,-0.00112915,-0.00201416,-0.000732422,-0.000396729,-0.000274658,-0.00167847,-0.00213623,-0.00146484,0.000610352,-0.000946045,-0.0015564,-0.0012207,-0.00134277,-0.000213623,-0.00112915,-0.00112915,-0.0017395,-0.000549316,-0.000549316,-0.000610352,-0.00201416,-0.0017395,-0.00106812,-0.000396729,-0.00167847,-0.00161743,-0.00112915,-0.00128174,-0.00128174,-0.00140381,-0.00106812,-0.000610352,-0.000671387,-0.0015564,-0.0015564,-0.00088501,-0.00128174,-0.000793457,-6.10352e-05,-0.00106812,-0.0015564,-0.00128174,-0.000610352,0.000213623,-0.000335693,-0.00128174,-0.00140381,-0.000396729,-0.000274658,-0.000396729,-0.0012207,-0.00146484,-0.00112915,-0.000274658,-0.000457764,-0.000671387,-0.00112915,-0.00180054,-0.00112915,-0.00012207,-0.000946045,-0.00146484,-0.00112915,-0.00088501,-0.00106812,-0.000732422,-0.00134277,-0.00106812,-0.000549316,-0.00112915,-0.00146484,-0.00146484,-0.00112915,-0.000335693,-6.10352e-05,-0.000946045,-0.0017395,-0.00134277,0.000213623,-0.000610352,-0.00012207,-0.00128174,-0.00088501,-0.00134277,-0.000274658,-6.10352e-05,0,-0.0012207,-0.00134277,-0.00106812,-6.10352e-05,0.00012207,-0.00112915,-0.00280762,-0.00140381,-0.000274658,-0.000274658,-0.000793457,-0.00201416,-0.00100708,-0.00100708,-0.000335693,-0.00146484,-0.00167847,-0.000793457,-0.000549316,-0.00088501,-0.00167847,-0.00161743,-0.000732422,-6.10352e-05,-0.0012207,-0.00201416,-0.00088501,-0.000671387,-0.000610352,-0.0012207,-0.00201416,-0.0015564,-0.000946045,-0.000274658,-0.000671387,-0.000732422,-0.00112915,-0.00146484,-0.000610352,-0.000274658,-0.00012207,-0.0015564,-0.00180054,-0.00195312,-0.000793457,0.00012207,-0.00112915,-0.0017395,-0.0015564,-0.000610352,-0.000549316,-0.000793457,-0.0015564,-0.00140381,-0.000549316,-0.000671387,-0.00100708,-0.00106812,-0.000549316,-0.00167847,-0.00180054,-0.000610352,-0.000793457,-0.000671387,-0.00161743,-0.000946045,-0.0012207,-0.00112915,-0.000732422,-0.000671387,-0.00140381,-0.00213623,-0.00167847,-0.000671387,-0.000396729,-0.00134277,-0.00222778,-0.00146484,-6.10352e-05,-0.00140381,-0.00189209,-0.000549316,-0.000732422,-0.00195312,-0.00128174,-0.00100708,-0.000732422,-0.00134277,-0.0017395,-0.00222778,-0.00088501,0,-0.0015564,-0.00140381,-0.00112915,-0.00195312,-0.00100708,-0.00128174,-0.000732422,-0.00100708,-0.000671387,-0.0015564,-0.0017395,-0.00140381,-0.000946045,-0.00167847,-0.00134277,-0.00189209,-0.00247192,-0.000946045,0.00012207,-0.00100708,-0.00296021,-0.00262451,-0.00161743,-0.000396729,-0.00128174,-0.00222778,-0.00228882,-0.00189209,-0.000610352,-0.000732422,-0.0015564,-0.00189209,-0.0012207,-0.000274658,-0.00088501,-0.00189209,-0.00167847,-0.00128174,-0.000610352,-0.00201416,-0.00234985,-0.00134277,-0.00088501,-0.000671387,-0.00146484,-0.00167847,-0.00228882,-0.00222778,-0.0012207,-0.00100708,-0.000396729,-0.000610352,-0.0020752,-0.00195312,-6.10352e-05,0.000335693,-0.00161743,-0.0032959,-0.00241089,0.000396729,0.00112915,-0.000610352,-0.0020752,-0.0017395,0.000274658,6.10352e-05,-0.0012207,-0.0012207,-0.00088501,-0.000610352,-0.00146484,-0.0015564,-0.00134277,0.000335693,-6.10352e-05,-0.00134277,-0.0015564,-0.000457764,0.00012207,-0.00088501,-0.000946045,-0.0017395,-0.0015564,-0.000610352,0.000396729,-0.000610352,-0.000946045,-0.00106812,-0.000732422,-0.00106812,-0.00134277,-0.00161743,-0.0015564,-0.00189209,-0.0012207,-0.000610352,-0.000396729,-0.000457764,-0.00222778,-0.00128174,-6.10352e-05,-0.000274658,-0.00140381,-0.00140381,-0.00112915,-0.00106812,6.10352e-05,-0.00195312,-0.00222778,-0.00112915,-0.000457764,-0.000610352,-0.00161743,-0.00140381,-0.0020752,-0.000610352,0.000274658,-0.00180054,-0.0012207,-0.00088501,-0.000274658,-0.000610352,-0.00241089,-0.000396729,-0.0012207,0.00012207,-0.00180054,-0.00241089,-0.00100708,-0.000610352,0,-0.000610352,-0.0017395,-0.00195312,-0.00228882,0.000396729,0.000671387,-0.00140381,-0.00308228,-0.00146484,0.000793457,-0.000396729,-0.00195312,-0.00189209,-0.00167847,0.00012207,-0.000549316,-0.000671387,-0.00140381,-0.000946045,-0.000610352,-0.000335693,-0.000335693,-0.00247192,-0.00180054,-0.000274658,0.00088501,-0.00088501,-0.00228882,-0.00146484,-0.000396729,-0.000213623,-6.10352e-05,-0.00180054,-0.00146484,-0.00100708,-0.000396729,-0.00134277,-0.000946045,-0.0012207,-0.00100708,-0.000793457,-0.000396729,-0.00167847,-0.0012207,6.10352e-05,-6.10352e-05,-0.00112915,-0.00357056,-0.000946045,0.000457764,0.000793457,-0.000335693,-0.00161743,-0.00167847,-0.000946045,-0.00012207,0.00012207,-0.00106812,-0.00213623,-0.00195312,-0.000457764,0.000671387,0,-0.00189209,-0.00247192,-0.00012207,-6.10352e-05,-0.000335693,-0.00100708,-0.00195312,-0.00161743,-0.000396729,-0.000213623,-0.000946045,-0.000671387,-0.00134277,-0.00128174,-0.00128174,-0.00100708,-0.000549316,-0.00128174,-0.00274658,-0.00106812,-0.000213623,-0.000213623,-0.00234985,-0.00161743,-0.00088501,0,-0.00189209,-0.00234985,-0.00161743,-0.000671387,-0.00112915,-0.000396729,-0.00189209,-0.00189209,-0.00195312,0.00140381,-0.000335693,-0.00323486,-0.00167847,-0.000549316,0.000457764,-0.000274658,-0.00180054,-0.00363159,-0.00106812,0.000671387,-0.00112915,-0.00222778,-0.00262451,-0.00241089,0,0.000610352,-0.000671387,-0.0032959,-0.00134277,-6.10352e-05,0.000457764,-0.000732422,-0.00201416,-0.00323486,-0.000335693,0,-0.0017395,-0.000732422,-0.0020752,-0.00088501,-0.00088501,0,-0.00140381,-0.00201416,-0.000457764,0.000549316,-0.000213623,-0.0012207,-0.0015564,-0.000610352,-0.000396729,-0.000671387,-0.00195312,-0.000946045,-0.000396729,-0.00128174,-0.00088501,-0.00241089,-0.00106812,0,-0.00088501,-0.00106812,-0.000396729,-0.00106812,-0.000671387,0.00012207,-0.000793457,-0.00146484,-0.000457764,-0.0012207,-0.000732422,0.000610352,-6.10352e-05,-0.00134277,-0.000457764,-0.000671387,-0.0015564,0.000213623,0.000213623,-0.0015564,-0.00189209,-0.000213623,-6.10352e-05,-0.000793457,-0.0015564,-0.0017395,-0.00012207,0.000549316,-0.0015564,-0.00189209,-0.000335693,0.000549316,-0.0012207,-0.00222778,-0.00274658,-0.00146484,0.000457764,0.000335693,-0.00228882,-0.0020752,-0.0012207,-0.0012207,0.000396729,0.000274658,-0.00201416,-0.00134277,-0.00100708,-0.000671387,-0.000946045,-0.00088501,-0.00146484,-0.00213623,-6.10352e-05,-0.000457764,-0.000274658,-0.00100708,-0.00195312,-0.00146484,-0.00112915,-0.0012207,-0.00268555,-0.00146484,-0.00088501,-0.000549316,-0.000946045,-0.00213623,0.000213623,0.000671387,-0.00146484,-0.00357056,-0.000610352,-0.000213623,-0.0015564,-0.00146484,0.000335693,-0.0020752,-0.00112915,-0.000457764,-0.0012207,-0.0015564,6.10352e-05,-0.00180054,-0.00302124,-0.000671387,-0.000396729,-0.0017395,-0.00228882,-0.0015564,0.000396729,0.000274658,-0.00241089,-0.00280762,-0.000274658,0.000274658,-0.000732422,-0.00302124,-0.00180054,-0.000274658,0.000610352,-0.000610352,-0.00323486,-0.00296021,-0.00012207,0.000457764,-0.00106812,-0.00222778,-0.0015564,0.000274658,-0.000732422,-0.0015564,-0.00167847,-6.10352e-05,-0.000213623,-0.00140381,-0.00302124,-0.00128174,0.000457764,-0.000671387,-0.00262451,-0.0017395,-0.000274658,-0.00088501,-0.000793457,-0.00167847,-0.00201416,0.000213623,-0.000946045,-0.0017395,-0.00180054,0.000274658,-0.000335693,-0.00161743,-0.00256348,-0.00140381,-0.000213623,-0.00012207,-0.000335693,-0.00357056,-0.00234985,6.10352e-05,0.000457764,-0.000549316,-0.00256348,-0.00195312,-0.00012207,0.00012207,-0.00140381,-0.00161743,-0.000732422,-0.00106812,-0.00180054,-0.000396729,-0.000549316,-0.00161743,-0.0015564,-0.00167847,-0.00134277,-0.000793457,0.000274658,-0.00189209,-0.00256348,-0.00088501,-0.00088501,6.10352e-05,-0.00280762,-0.00256348,-0.000396729,0.00146484,-0.00167847,-0.00268555,-0.00106812,0.0015564,-0.00012207,-0.00335693,-0.00323486,-6.10352e-05,0.00134277,-0.00106812,-0.00213623,-0.00195312,-0.00228882,-0.000213623,0.000671387,-0.00140381,-0.00256348,-0.00201416,-0.000610352,0.000274658,-0.00128174,-0.0017395,-0.00268555,-0.00222778,-0.00012207,-0.000274658,-0.000213623,-0.00134277,-0.00195312,-0.00167847,-0.000335693,-0.000274658,-0.0012207,-0.0015564,-0.00134277,-0.000274658,-0.000793457,-0.00167847,-0.00100708,-0.000732422,-0.000274658,-0.000946045,-0.00100708,0.000274658,-0.000274658,-0.00241089,-0.00247192,-0.0020752,0,-0.000274658,-0.00106812,-0.00140381,-0.000732422,0.00012207,-0.00167847,-0.000671387,0.000396729,-0.000274658,-0.00167847,-0.00213623,-0.000213623,0.000396729,0.000213623,-0.00228882,-0.00134277,0.000335693,-0.000457764,-0.00128174,-0.00106812,0.000549316,-6.10352e-05,-0.00189209,-0.00167847,-0.00088501,0.000671387,0.000335693,-0.00180054,-0.00323486,-0.00140381,0.00112915,0.000457764,-0.00274658,-0.00335693,-0.00241089,0.00180054,0.00341797,-0.00180054,-0.00442505,-0.00247192,0.00180054,0.000549316,-0.00106812,-0.00289917,-0.00323486,0.00140381,0.00128174,-0.000549316,-0.00256348,-0.00213623,-0.000335693,0.00012207,0.000335693,-0.00241089,-0.00241089,-0.000335693,0.000793457,0.000549316,-0.00256348,-0.00302124,-0.00180054,0.000671387,0.000946045,-0.00256348,-0.0032959,-0.00280762,-0.000549316,0.00161743,-0.00012207,-0.00180054,-0.00302124,-6.10352e-05,0.00201416,0.000213623,-0.00375366,-0.00357056,-0.0012207,0.00106812,-0.000274658,-0.00274658,-0.00402832,-0.0015564,0.00167847,0.000793457,-0.000793457,-0.00262451,-0.00274658,-0.00128174,0.00100708,0.0017395,-0.00247192,-0.00363159,-0.000335693,0.000671387,0.00100708,-0.00134277,-0.00134277,-0.0020752,-0.000396729,-6.10352e-05,-0.00201416,-0.00128174,-0.00088501,-0.00140381,-0.000549316,0,-0.000457764,-0.00280762,0.000671387,0.00088501,-0.00128174,-0.00268555,-0.00241089,-0.00100708,6.10352e-05,-0.000610352,-0.0017395,-0.00308228,-0.00088501,0.000457764,0.00012207,-0.000793457,-0.00222778,-0.00375366,-0.00134277,0.000457764,6.10352e-05,-0.00280762,-0.00436401,-0.00180054,0.000732422,0.00234985,-0.00201416,-0.00402832,-0.0015564,0.000396729,-0.00100708,-0.00363159,-0.0017395,-0.00167847,-0.00201416,-6.10352e-05,-0.000274658,-0.00262451,-0.00369263,0.000457764,0.000396729,-0.0017395,-0.00469971,-0.00262451,-0.00128174,0.000732422,-0.000274658,-0.00314331,-0.00289917,-0.00100708,0.000274658,-0.000732422,-0.00323486,-0.00341797,-0.0012207,-0.00012207,-0.00167847,-0.00189209,-0.00280762,-0.00195312,0,0.000274658,-0.0020752,-0.00436401,-0.00201416,0.0015564,0.000671387,-0.00262451,-0.00408936,-0.0017395,0.00106812,0.000274658,-0.00222778,-0.00323486,-0.00140381,-6.10352e-05,-0.000274658,-0.00112915,-0.00167847,-0.00134277,-0.000732422,-0.000213623,-0.0012207,-0.00323486,-0.00134277,-0.00112915,-0.000213623,-0.00161743,-0.00180054,-0.00100708,0.000335693,0.00106812,-0.00256348,-0.00180054,-0.0017395,-0.00088501,-0.00268555,-0.00100708,0.0012207,-0.0012207,-0.00222778,-0.00134277,0.00161743,0.00106812,-0.00161743,-0.0038147,-0.00274658,0.00134277,0.000946045,-0.0017395,-0.00448608,-0.000396729,0.00106812,0.000946045,-0.00189209,-0.00112915,6.10352e-05,-0.000457764,-0.00161743,-0.0020752,-0.00112915,6.10352e-05,6.10352e-05,-0.00112915,-0.00213623,-0.000274658,0.00088501,-0.000457764,-0.00247192,-0.00195312,-0.000946045,-6.10352e-05,-0.00106812,-0.00134277,-0.00012207,0.00146484,6.10352e-05,-0.00323486,-0.00146484,0.00128174,-0.00088501,-0.00247192,-0.00222778,0.000213623,0.00106812,0.000213623,-0.00241089,-0.00134277,0.00012207,-0.000213623,-0.000549316,-0.0015564,0.00140381,-0.00180054,-0.00357056,-0.00140381,0.0020752,0.00012207,-0.00357056,-0.00268555,0.000335693,0.00167847,6.10352e-05,-0.00213623,-0.00180054,-0.0012207,-0.0012207,-6.10352e-05,0.00140381,-0.000610352,-0.00201416,-0.00180054,-0.000671387,0.000549316,0.00146484,-0.00262451,-0.00262451,-0.000549316,0.000732422,-0.00189209,-0.000335693,0.000213623,-0.00167847,-0.000671387,-0.000946045,-0.00106812,-0.00146484,0.000213623,0.00146484,-0.00201416,-0.00323486,-0.00247192,0.00189209,0.00140381,-0.00289917,-0.00415039,-0.000274658,0.00247192,0.000732422,-0.00335693,-0.00341797,0,0.00128174,-0.00146484,-0.0017395,-0.000274658,-0.00112915,-0.00234985,-0.00012207,0.00140381,-0.000213623,-0.00247192,-0.00308228,-0.000335693,0.00134277,-0.000335693,-0.00323486,-0.00323486,-0.00112915,0.000274658,-0.0020752,-0.00241089,-0.00161743,-0.00012207,0.00100708,-0.000732422,-0.0020752,-0.00213623,-0.00146484,0.000671387,-0.00140381,-0.00241089,0.000274658,-0.00128174,-0.00180054,-0.00012207,0.000732422,-0.00161743,-0.00134277,-0.000732422,-0.00222778,-0.00134277,0.000396729,-0.0017395,-0.0032959,-0.00128174,0.000793457,-0.00088501,-0.0020752,-0.00296021,-0.00128174,0.00189209,-0.000732422,-0.00302124,-0.00296021,0.00100708,-0.000274658,-0.000946045,-0.00180054,-0.00213623,-0.000457764,-0.00100708,-0.00189209,-0.0015564,-0.00134277,-0.00180054,-0.0012207,-0.00201416,-0.00314331,-0.00424194,-0.00140381,0.0017395,0.000793457,-0.00268555,-0.00524902,-0.00088501,0.00222778,-0.000549316,-0.00357056,-0.0050354,-0.00189209,0.000396729,0.00140381,-0.00128174,-0.00308228,-0.00213623,0.000335693,0.00228882,-0.000549316,-0.0032959,-0.00088501,0.00100708,-0.00228882,-0.00268555,0.000457764,0.0012207,-0.000549316,-0.00314331,-0.00296021,0.00112915,0.00112915,-0.00106812,-0.00396729,-0.00213623,-0.00012207,-0.000610352,-0.00106812,-0.00195312,0.00012207,-0.00012207,-0.00201416,-0.00112915,-0.00088501,6.10352e-05,-0.000274658,-0.00289917,-0.003479,0.000610352,0.00161743,-0.0012207,-0.003479,-0.00180054,0.000457764,0.00134277,0.000671387,-0.00088501,-0.0020752,-0.00088501,0.00180054,-0.000610352,-0.00262451,-0.00302124,0.0012207,0.000793457,-0.00134277,-0.00180054,-0.000946045,-0.000610352,0.00134277,0,-0.0032959,-0.00308228,0.00161743,-0.00088501,-0.00161743,-0.00134277,0.000213623,-0.00180054,-0.00140381,-0.00213623,-0.000732422,0.000610352,-0.000335693,-0.00335693,-0.000457764,-0.000274658,-0.00167847,-0.00213623,-0.000610352,-0.00100708,-0.0012207,-0.000457764,-0.00213623,-0.00112915,-0.0012207,6.10352e-05,-0.00140381,-0.00189209,-0.0012207,-0.000274658,0.000732422,-0.00140381,-0.00289917,-0.000549316,0.00012207,-0.000732422,-0.00134277,-0.00088501,-0.00100708,-0.00213623,-0.00100708,-0.00128174,-0.00088501,6.10352e-05,-0.00088501,-0.00128174,-0.00167847,-0.000457764,0.0012207,-0.00134277,-0.00369263,-0.000946045,0.00146484,-0.00189209,-0.0038147,-0.00140381,0.000274658,0.000274658,-0.00195312,-0.00247192,-0.00140381,0.00112915,-0.000396729,-0.00134277,0.000274658,-0.00088501,-0.00323486,0.000732422,0.00228882,0.00088501,-0.00296021,-0.00256348,-0.00012207,0.000457764,-0.000213623,-0.00357056,-0.0020752,0.000396729,-0.000396729,0.000335693,0.000549316,-0.00256348,-0.00262451,-0.00140381,0.000671387,0.000549316,-0.0015564,-0.00268555,-0.00228882,0.000671387,-0.00140381,-0.00402832,-0.00189209,0.000274658,-6.10352e-05,-0.00341797,-0.00341797,-0.000793457,0.000396729,-0.000457764,-0.00268555,-0.00180054,-0.000549316,0.00012207,0.0015564,-0.00088501,-0.00274658,-0.00189209,0.000213623,0.00241089,-0.0032959,-0.0038147,-0.0015564,0.00201416,-0.0012207,-0.00180054,-0.00189209,-0.00201416,-0.00247192,-0.0020752,-0.000335693,-0.00201416,-0.00201416,-0.000732422,-0.00268555,-0.000549316,-0.000213623,-0.00106812,-0.0032959,-0.00268555,-0.00100708,-0.00146484,0.000793457,-0.0012207,-0.00241089,-0.00180054,0.00189209,0.0017395,-0.00280762,-0.00234985,-0.0012207,0,0.0015564,0.000335693,-0.00161743,-0.00308228,-0.000396729,0.00161743,-0.000793457,0.000671387,-0.00213623,-0.000671387,-0.00112915,-6.10352e-05,-0.00180054,-0.00128174,0.00106812,-0.0020752,-0.00112915,0,-0.00012207,0.00222778,-0.000274658,-0.00262451,-0.00201416,6.10352e-05,0.0015564,-6.10352e-05,-0.000732422,-0.00274658,-0.00256348,-0.00012207,0.00201416,0.000549316,-0.00296021,-0.00222778,0.000396729,0.00335693,0.00180054,-0.00323486,-0.00408936,-0.00256348,0.000335693,0.00213623,-0.00262451,-0.00469971,-0.00247192,0.000732422,0.000610352,-0.003479,-0.00268555,-0.00296021,0.00241089,0.00100708,-0.0012207,-0.00268555,-0.00341797,0.000610352,-0.00012207,-0.00268555,-0.00424194,-0.00256348,-0.000457764,-0.00128174,-0.00146484,-0.00357056,-0.00241089,-0.000213623,-0.00106812,-0.00201416,-0.00247192,-0.0012207,-0.00106812,-6.10352e-05,-0.000457764,-0.00189209,-0.003479,-0.0032959,0.0012207,0.00140381,-0.00189209,-0.00430298,-0.00335693,0.000274658,6.10352e-05,-0.00228882,-0.00241089,-0.000457764,-0.00189209,-0.00146484,0.000732422,-0.000213623,-0.00375366,-0.00247192,-0.00161743,0.00234985,0.00012207,-0.00402832,-0.00415039,0.00241089,0.00457764,-0.00448608,-0.00390625,-0.00167847,0.00180054,0.00180054,-0.000335693,-0.00189209,-0.00134277,0.00100708,-0.0012207,-0.00106812,-0.000335693,-0.00228882,-0.0015564,0.00088501,-0.000732422,-0.00180054,-0.00146484,-0.000457764,-0.000671387,-0.000213623,-0.000274658,-0.00012207,-0.0020752,-0.00289917,-0.00228882,0.00146484,-0.00088501,-0.00100708,-0.00262451,-0.00189209,0.00012207,0.000671387,-0.00424194,-0.00390625,-0.00146484,-0.000549316,0.000213623,-0.003479,-0.00161743,-0.00112915,0.00228882,0.000396729,-0.00296021,-0.00363159,-0.00457764,0.000274658,-0.00189209,-0.00402832,-0.00482178,-0.00140381,0.00262451,-0.00262451,-0.00180054,-0.00296021,-0.00140381,-0.000213623,-0.00106812,-0.00262451,-0.00375366,0,0.000549316,-0.00296021,-6.10352e-05,-0.00140381,-0.000732422,-0.00296021,-0.00314331,-0.0015564,-0.00112915,-0.00100708,-0.00180054,-0.00341797,0.000732422,-0.000274658,0.000335693,-0.000793457,-0.000610352,-0.00213623,-0.00234985,0.000335693,-0.00180054,-0.00189209,-0.00112915,-0.00289917,0.000396729,0.00140381,0.000732422,-0.00088501,-0.000793457,0.0017395,0.000793457,-0.000732422,-0.000732422,-0.0020752,0.00222778,0.000396729,-0.00134277,-0.00201416,0.000457764,0.00167847,0.00161743,0.000610352,-0.000793457,-0.000396729,-0.00012207,-0.00128174,-0.00195312,-0.00180054,0.0015564,-0.00274658,-0.00323486,-6.10352e-05,0.00167847,0.000274658,-0.00390625,-0.00408936,-0.00430298,0.000457764,0.00375366,-0.00134277,-0.00134277,-0.00228882,-6.10352e-05,0.00012207,0.000335693,-0.000793457,-0.00543213,0.000274658,-0.000213623,-0.000793457,-0.00262451,-0.00363159,-0.000335693,0.00201416,-0.00012207,-0.00424194,-0.00491333,-0.0012207,-0.000610352,-0.00088501,-0.00222778,-0.00543213,-0.00515747,0.00167847,0.00335693,-0.00146484,-0.00759888,-0.00302124,-0.00180054,0.00189209,-0.000335693,-0.00375366,-0.00234985,-0.000732422,0.00189209,0.000671387,0.000671387,-0.00195312,-0.00564575,0.000671387,0.00134277,0.000610352,-0.0017395,-0.00436401,0,0.00195312,0.00268555,-0.0020752,-0.00375366,0.00100708,0.00256348,0.00201416,-0.00369263,-0.00476074,-0.000274658,0.00280762,0.0015564,-0.00256348,-0.00241089,6.10352e-05,0.00167847,0.00308228,-0.00146484,-0.00357056,-0.00161743,0.000213623,0.00408936,-0.000396729,-0.00195312,-0.00201416,0.00180054,0.003479,-0.000732422,0.000335693,-0.000732422,-0.00268555,-0.00189209,-0.00180054,0.000946045,-0.00363159,-0.000457764,-6.10352e-05,0.000549316,0.00167847,-0.00268555,-0.000213623,-0.00161743,-0.000396729,-0.00335693,-0.00296021,-0.00424194,-0.00704956,-0.00228882,0.00112915,-0.000335693,-0.00650024,-0.00491333,0.00213623,0.00088501,-0.000946045,-0.00448608,-0.00088501,0.00201416,0.00201416,-0.0012207,-0.000457764,0.00134277,-0.00189209,-0.00424194,-0.00256348,-0.00201416,-0.00363159,-0.00112915,-0.00268555,-0.00463867,-0.000213623,0.00341797,6.10352e-05,-0.00369263,-0.000793457,0.0020752,0.0015564,-0.0020752,-0.00402832,-0.00012207,0.000671387,0.000946045,-0.00482178,-0.0038147,0.000396729,0.00112915,0.00247192,-0.0017395,-0.00390625,-0.00140381,0.00274658,0.00323486,0.000274658,-0.00100708,-0.00189209,0.00195312,0.00408936,0.00128174,-0.000671387,-0.00167847,0.000274658,0.000793457,-0.00012207,-0.00140381,-0.00268555,-0.00134277,0.00112915,-0.00112915,-0.00308228,6.10352e-05,0.00161743,0.000793457,0.000396729,-0.00128174,-0.00201416,-0.000213623,-0.00161743,-0.00509644,-0.00274658,-0.00201416,-0.00189209,-0.00289917,-0.00296021,-0.000549316,-0.00262451,-0.00195312,-0.00363159,0.00106812,0,-0.00390625,-0.00341797,0.00128174,0.000732422,-0.00161743,6.10352e-05,-0.00213623,0.000549316,-0.000793457,-0.00247192,-0.00408936,-0.00234985,0.00140381,-0.00289917,-0.00256348,0.000457764,-0.0020752,0.0020752,-0.00213623,-0.0017395,-0.00167847,-0.00100708,-0.0012207,-0.00598145,-0.00112915,0.000671387,-0.000732422,-0.00228882,-0.00195312,-0.00012207,-0.00128174,-0.00195312,-0.003479,-0.00268555,0,0.000610352,-0.00088501,-0.00180054,-0.000457764,-0.00088501,0.000671387,0.00100708,-0.00436401,-0.0012207,6.10352e-05,-0.00088501,-0.000396729,-0.00128174,-0.000549316,-0.00100708,-0.000274658,-0.00140381,-0.000457764,0.000213623,-0.00268555,-0.00247192,-0.000549316,0.0020752,0.000457764,-0.00390625,-0.00247192,0.00296021,0.0015564,-0.00335693,-0.00302124,-0.000274658,0,-0.00012207,-6.10352e-05,-0.00161743,-0.00180054,-6.10352e-05,-0.000274658,-0.00012207,-0.00274658,-0.00509644,-0.00476074,0.00213623,0.00375366,-0.0038147,-0.00280762,0.00128174,-0.000457764,0.00189209,0.000213623,-0.00222778,-0.00314331,0.00289917,0.0032959,-0.00424194,-0.00415039,-0.00280762,0.000396729,-0.00140381,-0.00247192,-0.00268555,-0.00234985,-0.00180054,-0.00415039,-0.000396729,-0.000274658,-0.00314331,-0.00247192,-0.00234985,0.00106812,-0.000793457,-0.00390625,-0.00357056,-0.00146484,0.00222778,-0.00357056,-0.00482178,-0.00167847,-0.00088501,-0.00161743,-0.00531006,-0.00402832,-0.00100708,0.00161743,-0.00280762,-0.00256348,-0.0015564,0.000610352,-6.10352e-05,-0.00296021,-0.0017395,0.00128174,6.10352e-05,-0.00280762,-0.000610352,-0.00146484,0.000610352,0.00274658,-0.00268555,-0.00637817,-0.00241089,0.00726318,0.00228882,-0.00592041,-0.00390625,0.00195312,0.00463867,0.00128174,-0.00491333,-0.00180054,0.00335693,0.0050354,-0.000213623,-0.000274658,0.000671387,-0.00088501,-0.00140381,-0.00112915,0.000549316,-0.000213623,-0.00314331,-0.00323486,-0.000335693,0.00582886,0.00457764,-0.00195312,-0.00448608,-0.00128174,0.00308228,-0.00106812,-0.00476074,-0.00256348,-0.00195312,-0.0012207,-0.0015564,-0.00189209,-0.00222778,0.00106812,-0.0012207,-0.00476074,-0.000793457,0.000213623,-0.000610352,-0.00256348,-0.00268555,-0.00167847,-0.00112915,-0.000671387,-0.00448608,-0.00314331,0.000793457,-0.00189209,-0.00408936,-0.00396729,-0.00106812,0.00161743,0.000274658,-0.00491333,-0.00610352,0.00088501,-0.000457764,-0.00396729,-0.00256348,-0.00363159,-0.00302124,0.00161743,0.00296021,-0.000213623,-0.00262451,-0.00375366,-0.00228882,0.00228882,0.000335693,-0.00375366,-0.00234985,0.000732422,0.00140381,0.00189209,0.00396729,0.00112915,-0.00161743,0.00189209,-0.00088501,0.000396729,0.00106812,-6.10352e-05,-0.00241089,-0.00128174,0.00509644,0.00262451,0.000549316,-0.00357056,-0.000793457,0.00161743,0.0038147,0.00161743,-0.0012207,-0.00296021,0,0.00100708,-0.00146484,-0.00140381,-0.00274658,-0.00195312,-0.00128174,0.00128174,-0.00369263,-0.00262451,0.00335693,-0.000732422,-0.00564575,-0.00247192,-0.00140381,-0.00134277,0.000610352,-0.00140381,-0.00457764,-0.00442505,-0.00195312,-0.0020752,0.00222778,-0.00201416,-0.00549316,-0.00195312,0.0020752,-0.000610352,-0.00408936,-0.00247192,-0.00323486,-0.000946045,0.000671387,-0.00323486,-0.00274658,-0.000793457,-0.00146484,-0.00408936,-0.00323486,-0.000671387,-0.00314331,-0.000549316,0.00167847,-0.00213623,-0.0020752,-0.000335693,-6.10352e-05,-0.0012207,0.00128174,-0.00201416,-0.00314331,0.00112915,0.00537109,0.00241089,-0.000213623,0.000549316,-0.00228882,-0.000549316,0.00302124,0.000274658,-0.00323486,0.00228882,0.00463867,-0.00146484,-0.000946045,0.00234985,0.0015564,-6.10352e-05,-0.00296021,0.00167847,0.00424194,0.0015564,-0.00234985,-0.000732422,0.00396729,-0.000946045,-0.00161743,-0.000335693,0.00222778,0.00140381,-6.10352e-05,-0.0017395,-0.003479,0.000213623,-0.00213623,-0.00234985,-0.00436401,-0.00296021,-0.000213623,0.00289917,0.000793457,-0.0067749,-0.00436401,0.00247192,0.00549316,-0.00189209,-0.00704956,-0.00280762,0.000946045,0.00390625,-0.00222778,-0.00738525,-0.00396729,0.00228882,0.00289917,-0.00491333,-0.0085144,-0.00234985,0.000274658,0.00180054,-0.00430298,-0.00683594,-0.000335693,0.00222778,0.000671387,-0.00531006,-0.00436401,-0.000549316,0.00088501,0.00088501,-0.0038147,-0.00357056,-0.000335693,0.00390625,-0.00106812,-0.00436401,-0.00274658,-0.00201416,0,0.0017395,0.0012207,-0.00491333,-0.00167847,6.10352e-05,0.00280762,0.00262451,-0.00167847,-0.00531006,-0.000549316,0.00515747,-0.00088501,-0.00241089,-0.00256348,-0.00274658,0.000732422,0.00402832,-0.000274658,-0.00604248,-0.000335693,0.00167847,-0.00106812,0.00012207,0.00128174,-0.003479,-0.000793457,0.00106812,0.000274658,0.000396729,0.000549316,-0.00112915,-0.00524902,-0.00140381,0.00100708,-0.00296021,-0.00213623,-0.0015564,0.00161743,0.00012207,-0.00161743,-0.000793457,-0.00390625,0.000946045,-0.00195312,-0.00448608,-0.00161743,0.000274658,-0.00140381,-0.00543213,-0.00390625,-0.0038147,-0.00289917,0.00180054,-0.00375366,-0.00772095,0.000396729,0.00537109,0.00430298,-0.000549316,-0.000671387,-0.0050354,-0.000610352,0.00335693,-0.00112915,-0.00430298,-0.0067749,-0.00189209,0.00228882,0.00341797,-0.00274658,-0.00878906,-0.000793457,0.00448608,0.00247192,-0.0032959,-0.00750732,-0.00180054,0.00457764,0.00402832,-0.00408936,-0.0105896,-0.0020752,0.00610352,0.00213623,-0.00671387,-0.00912476,-0.00341797,0.00274658,0.00442505,-0.00140381,-0.00924683,-0.00274658,0.00738525,0.00558472,-6.10352e-05,-0.00616455,-0.00866699,0.000549316,0.00772095,0.000610352,-0.00744629,-0.00430298,0.00430298,0.00683594,0.000671387,-0.00515747,-0.00939941,0.00128174,0.00979614,-0.00213623,-0.012146,-0.00811768,0.00341797,0.00650024,0.000732422,-0.0050354,-0.0114136,-0.000457764,0.0032959,-0.000335693,-0.00262451,-0.00726318,-0.00448608,0.000793457,0.00610352,6.10352e-05,-0.00457764,-0.00088501,0.000549316,0.00415039,0.00106812,0.00112915,-0.00402832,-0.00436401,0.00314331,0.00408936,0.00308228,-0.00604248,-0.0065918,6.10352e-05,0.00509644,6.10352e-05,-0.00845337,-0.00469971,-0.000549316,0.003479,-0.00189209,-0.0062561,-0.00570679,-0.00491333,0.00671387,0.000274658,-0.00799561,-0.0085144,-0.00213623,0.00549316,0.0038147,-0.00296021,-0.00924683,-0.000946045,0.00335693,0.000335693,-0.00592041,-0.00570679,-0.00189209,0.000671387,0.003479,0.000549316,-0.00442505,-0.0020752,0.00228882,0.003479,0,-0.00375366,-0.00402832,-0.00369263,0.00100708,0.0012207,-0.00637817,-0.00323486,0.00222778,0.00213623,0.00161743,-0.00201416,-0.00134277,-0.00180054,-0.00161743,-0.000610352,-0.0017395,-0.00280762,-0.00274658,-0.00088501,0.00088501,-0.00128174,0.000946045,-0.0015564,-0.000549316,0.00134277,6.10352e-05,0.00692749,0.00247192,-0.003479,-0.00201416,0.00262451,0.00369263,-0.0020752,-0.00308228,-0.00558472,-0.0038147,-0.000335693,-0.00167847,-0.000793457,-0.00289917,-0.00146484,-0.00088501,0.00363159,-0.00100708,-0.00537109,-0.0020752,-0.000396729,6.10352e-05,-0.00323486,-0.00765991,-0.00524902,6.10352e-05,0.00363159,-0.00274658,-0.00717163,-0.00128174,0.00106812,0.00012207,-0.000335693,-0.00363159,-0.0020752,-0.00256348,0.000671387,0.00363159,0.00128174,6.10352e-05,-0.00558472,-0.00698853,0.000213623,0.00402832,-0.00268555,-0.0101318,-0.00582886,0.00134277,0.00643921,0.00415039,-0.00582886,-0.00759888,0.00128174,0.00357056,-0.0012207,-0.00866699,-0.00213623,0.00604248,0.00531006,-0.00280762,-0.00650024,0.00134277,0.00772095,0.00683594,-0.00448608,-0.0104675,-0.000732422,0.0062561,0.0020752,-0.00228882,-0.00491333,-0.00274658,0.00442505,0.00637817,0.00195312,-0.00408936,-0.000274658,-0.00106812,-0.00323486,-0.0020752,6.10352e-05,0.00167847,-0.00262451,-0.00457764,-0.00280762,0.00637817,0.00491333,-0.00598145,-0.0085144,-0.00531006,0.00134277,0.00088501,-0.00247192,-0.00241089,-0.00247192,-0.000549316,0.00363159,-0.000396729,-0.0020752,-0.00463867,0,0.00161743,-0.00491333,-0.00482178,-0.00515747,-0.000396729,0.00241089,-0.00201416,-0.00100708,-0.00357056,0.00146484,-0.00256348,0.00161743,0.00341797,-0.00683594,-0.00491333,-0.00012207,0.00280762,-0.00180054,-0.00268555,-0.0062561,-0.00476074,0.00811768,0.00296021,-0.00531006,-0.00839233,-0.00106812,0.00543213,0.00515747,0.00140381,-0.00952148,-0.00491333,0.0085144,0.00698853,-0.00408936,-0.00570679,-0.00274658,0.00228882,0.00558472,-0.000213623,-0.00665283,-0.00402832,0.00592041,0.00222778,0.0012207,-0.00408936,-0.00918579,-0.00146484,0.00189209,0.00247192,-0.00335693,-0.00112915,-0.00228882,0.000671387,0.00497437,0.000396729,-0.00515747,-0.0038147,0.000396729,0.00430298,-0.00296021,-0.00665283,-0.00726318,0.0032959,0.00247192,-0.00610352,-0.00390625,-0.00610352,0.00308228,0.00134277,-0.000671387,-0.00280762,-0.00610352,0.000732422,0.00134277,0.00402832,-0.000274658,-0.00665283,-0.00570679,-0.00213623,0.00631714,0.00100708,-0.00765991,-0.00482178,-0.00363159,0.00497437,0.00570679,-0.00341797,-0.00463867,-0.0032959,0.000274658,6.10352e-05,0.000793457,-0.00457764,-0.00415039,0.00262451,0.00241089,-0.000396729,0.00213623,-0.0017395,-0.00357056,0.00375366,0.00247192,-0.0038147,-0.00323486,0.000793457,0.000396729,0.00234985,0.000793457,-0.00637817,-0.00228882,0.000213623,0.00112915,0.00241089,-0.000946045,-0.00442505,-0.00308228,0.00201416,0.00469971,-0.000732422,-0.00817871,-0.0085144,-0.00262451,0.00491333,-0.00140381,-0.00827026,-0.0083313,-0.00247192,0.00631714,0.00582886,-0.00213623,-0.00631714,-0.00564575,0.00442505,0.00497437,-0.00296021,-0.00692749,-0.00524902,-0.00161743,0.00430298,-0.0017395,-0.00314331,-0.003479,-0.00424194,0.00228882,-0.000335693,0.00390625,-0.00564575,-0.00308228,0.00088501,-0.00296021,0.00396729,-0.0032959,-0.00717163,-0.00665283,0.00497437,0.000335693,-0.00549316,-0.00827026,-0.00604248,0.00424194,0.000610352,-0.000213623,-0.00616455,-0.00396729,-6.10352e-05,0.00744629,6.10352e-05,-0.00537109,-0.00274658,0.00537109,0.00482178,-0.000335693,-0.000610352,-0.0038147,-0.00012207,0.00268555,0.00274658,0.00408936,-0.00430298,-0.00765991,0.00100708,0.0067749,0.00280762,-0.00570679,-0.0062561,-0.00262451,0.000732422,0.00839233,-0.00570679,-0.00726318,-0.0020752,-0.000671387,0.00274658,-0.00582886,-0.00738525,-0.00772095,0.00268555,0.00476074,-0.00247192,-0.00616455,-0.00369263,0.00234985,0.00357056,0.0012207,-0.00497437,-0.00167847,-0.003479,0.00268555,0.00515747,-0.00100708,-0.00088501,-0.00497437,-0.00424194,0.00369263,0.00140381,-0.00732422,-0.00811768,-0.00726318,0.00100708,0.00201416,0.00482178,-0.00302124,-0.00698853,0.0015564,0.00161743,0.000946045,-0.00140381,-0.00805664,-0.00531006,0.00497437,0.00189209,-0.00692749,-0.000213623,0.0012207,0.00582886,0.00262451,-0.00750732,-0.00402832,0.00369263,0.00805664,6.10352e-05,-0.00390625,-0.00817871,0.00180054,0.0131531,0.00262451,-0.00866699,-0.0038147,0.00463867,0.000946045,0.000946045,-0.000335693,-0.00241089,-0.00805664,-0.00128174,0.00134277,0,0.00100708,-0.00509644,-0.00570679,0.000671387,0.0017395,-0.0012207,-0.00302124,-0.00531006,-0.00375366,-0.003479,0.00430298,-0.000335693,-0.00570679,0.00375366,0.00396729,0.0017395,-0.00256348,-0.00323486,0.000213623,-0.000732422,-0.00189209,-0.00906372,-0.00598145,0.00247192,-0.000610352,-0.00195312,-0.00396729,0.00161743,0,0.0012207,-0.00430298,-0.00717163,0.00442505,6.10352e-05,-0.000793457,-0.00793457,-0.00189209,0.0050354,0.00100708,-6.10352e-05,-0.00759888,0.000671387,0.00256348,0.00363159,-0.00610352,-0.00537109,0.00515747,0.00341797,0.00140381,-0.00308228,0.00302124,0.00482178,0.00247192,-0.00189209,-0.00866699,-0.000274658,0.0012207,-0.00213623,-0.00469971,-0.000610352,0.00390625,0.00576782,0.000457764,-0.00683594,-0.00463867,0.00222778,0.003479,-0.00375366,-0.00738525,-0.00738525,0.00341797,0.00302124,-0.000335693,-0.00100708,-0.00476074,0.00112915,0.00180054,0.00167847,-0.00732422,-0.0118713,-0.00396729,0.000457764,0.00515747,-0.00537109,-0.00698853,0.00161743,0.00363159,0.000946045,0.00302124,0.000793457,-0.00543213,-0.00704956,0.00100708,0.000396729,-0.00228882,-0.0020752,-0.00592041,-0.00280762,0.00390625,0.000396729,-0.00845337,-0.00592041,-0.000396729,-0.0015564,0.00308228,-0.00302124,-0.00598145,-0.000335693,0.00302124,0.00402832,0.000946045,-0.00289917,-0.003479,0.00167847,0.00201416,0,-0.00280762,0.00424194,0.00570679,0.000549316,-0.0012207,-0.00543213,0.0012207,0.0062561,-0.00106812,-0.00531006,-0.00524902,0.00167847,0.00341797,-0.00112915,-0.00424194,-0.00189209,0.00268555,0.000335693,-0.00247192,-0.00576782,-0.00442505,0.00234985,0.00335693,-0.00491333,-0.00793457,0.00289917,0.00357056,-0.000549316,-0.00112915,-0.00189209,-0.00558472,0.00161743,0.000610352,-0.000671387,0.0017395,-0.00241089,-0.00442505,-0.0032959,0.00497437,-0.00140381,-0.00476074,-0.00576782,-0.00335693,0.00476074,0.00436401,-0.003479,-0.00872803,0.000457764,0.00637817,-0.00180054,-0.00979614,-0.0108032,-0.000274658,0.00939941,-0.00302124,-0.0113525,-0.00430298,0.00491333,0.00463867,-0.00650024,-0.00134277,-0.00363159,-0.000732422,0.00146484,0.00128174,0.00369263,0.000549316,-0.00296021,-0.00189209,0.00408936,0.00390625,-0.00241089,-0.000457764,-0.00531006,-0.00314331,0.00436401,-0.00112915,-0.00524902,-0.00491333,0.00765991,0.00213623,-0.00524902,-0.00637817,-0.00323486,0.0065918,0.00256348,-0.00894165,-0.0065918,-0.000335693,0.00436401,0.000732422,-0.00424194,-0.00939941,-0.0050354,0.00772095,0.00268555,-0.00524902,-0.00268555,0.00247192,-0.00012207,-0.000457764,-0.000610352,-0.00396729,-0.000274658,-0.00140381,-0.0032959,0.000213623,0.00558472,-0.00146484,-0.000396729,-0.00408936,-0.00650024,-0.00390625,-0.00274658,-0.0032959,-0.00469971,0.00683594,-0.00430298,-0.00430298,0.00357056,0.00247192,0.00146484,-0.0062561,-0.00012207,0.00012207,-0.000732422,-0.00296021,-0.00631714,-0.000732422,0.000549316,0.00247192,0.000610352,-0.000793457,0.000946045,0.00402832,0.0017395,-0.0032959,-0.00448608,-0.0012207,0.00167847,-0.00314331,-0.00396729,-0.0015564,0.00738525,-0.00189209,-0.00524902,-0.003479,-0.00570679,0.000274658,-0.00302124,-6.10352e-05,-0.00643921,0.000213623,0.00369263,0.00128174,0.00442505,-0.0100708,-0.000335693,0.00341797,-0.00161743,-0.00582886,-0.003479,0.00335693,-0.00491333,-0.00335693,0.0038147,0.00247192,0.00161743,-0.000671387,-0.00408936,0.0038147,0.003479,-0.00302124,-0.00497437,-0.00289917,-0.000610352,-0.00323486,0.00161743,-0.00213623,-0.00717163,0.000946045,0.00692749,0.00106812,-0.00717163,-0.00247192,-0.00457764,-0.0012207,0.00448608,-0.00415039,-0.00424194,-0.00390625,0.00234985,0.00280762,-0.000396729,0.000946045,-0.00582886,0.00100708,0.00515747,0.00100708,-0.00241089,-0.00643921,0.00112915,0.00442505,0.00128174,-0.00402832,-0.00515747,0.0017395,-0.000946045,-6.10352e-05,-0.000793457,-0.00335693,-0.00918579,0.000549316,0.00491333,-0.00247192,-0.00442505,-0.00463867,0.00112915,0.000274658,0.00558472,-0.00100708,-0.00631714,-0.00497437,-0.00201416,0.00744629,0.00543213,-0.00430298,-0.012146,-0.00463867,0.00973511,0.00531006,-0.00341797,-0.00335693,-0.00363159,0.0038147,0.00457764,0.000396729,-0.00564575,-0.00195312,0.000457764,0.000213623,0.00222778,-0.0111389,-0.00717163,0.00469971,0.0067749,-0.000457764,-0.00765991,-0.003479,0.00289917,0.00698853,0.000457764,-0.0109253,-0.0032959,0.00799561,0.00222778,0,-0.00314331,-0.00140381,0.00491333,0.00100708,-0.000793457,-0.00616455,-0.00228882,-0.00140381,-0.00543213,0.00274658,-0.00195312,-0.00213623,-0.00515747,-0.00146484,0.00357056,-0.00189209,-0.0012207,-0.0050354,-0.00134277,-0.00100708,0.00112915,-0.00262451,-0.0067749,0.000610352,0.000732422,0.00088501,0.00195312,-0.00509644,-0.00424194,0.00457764,0.00268555,-0.00765991,-0.0032959,0.00637817,0.00469971,-0.00616455,-0.00576782,-0.00112915,0,0.00811768,-0.00100708,-0.00531006,-0.0012207,-0.00396729,-0.0012207,0.000457764,0.000457764,-0.00531006,-0.00482178,0.000549316,-0.00100708,0.00280762,0.00537109,-0.0012207,-0.00280762,-0.00476074,-0.000671387,0.00363159,0,-0.00469971,-0.00744629,0.00946045,0.0105286,-0.00811768,-0.0110168,-0.00341797,0.00860596,0.00274658,-0.00491333,-0.0109253,-0.00592041,0.0012207,0.00604248,0.00650024,-0.0133667,-0.0158386,0.00241089,0.0187988,-0.000457764,-0.0173035,-0.0100098,-0.00256348,0.0140381,0.00363159,-0.0110779,-0.0145569,6.10352e-05,0.011261,0.0067749,0.00241089,-0.011261,-0.0105286,0.00088501,0.0103455,-0.000457764,-0.0115967,-0.00457764,0.00308228,0.00631714,0.0129395,-0.00357056,-0.0195312,-0.00604248,0.00973511,0.00732422,-0.0123596,-0.0140381,-0.00894165,0.00241089,0.0142212,-0.00134277,-0.00878906,-0.00524902,-0.000457764,0.00604248,0.00671387,0.000396729,-0.0140991,-0.00140381,0.0120239,0.00576782,0.00134277,-0.00750732,-0.003479,0.00228882,0.0108032,0.0015564,-0.0137024,-0.00894165,-0.000610352,0.011261,0.00369263,-0.0071106,-0.0110168,-0.00396729,0.00967407,0.00958252,-0.00341797,-0.0181885,-0.00732422,0.00866699,0.00308228,-0.00866699,-0.00991821,-0.00671387,0.0083313,0.00732422,-0.00408936,-0.0114136,-0.00408936,0.00799561,0.00692749,0.0015564,-0.00805664,-0.00280762,0.00424194,0.0103455,0.00106812,-0.0116882,-0.00256348,-0.00308228,0.00482178,0.00549316,-0.00744629,-0.00592041,-0.00704956,0.00531006,0.00463867,-0.00537109,-0.00308228,-0.00524902,0.00357056,0.00308228,0.00167847,-0.000457764,-0.00497437,-0.00274658,-0.000457764,0.00323486,-0.0015564,0.000274658,-0.00234985,-0.00476074,-0.000732422,-0.00167847,-0.00268555,-0.00335693,0.000396729,0.00289917,0.0067749,0.00167847,-0.0104675,-0.00610352,-0.000274658,0.00274658,-0.00088501,-0.00698853,-0.0104065,-0.00268555,0.00778198,-0.00308228,-0.00979614,-0.0065918,-6.10352e-05,0.00323486,-0.00228882,-0.00375366,-0.00262451,0.00637817,0.00228882,-0.00750732,-0.00167847,0.00396729,0.00134277,-0.00302124,-0.00140381,0.00314331,0.00201416,0.000549316,-0.00582886,-0.0065918,0.00631714,0.00604248,-0.00195312,-0.00683594,-0.00112915,0.00268555,0.00256348,0.00692749,-0.00234985,-0.00683594,-0.00543213,0.00463867,0.00457764,-0.00241089,-0.00872803,-0.00408936,0.00369263,-0.000793457,0.000549316,-0.00112915,-0.000793457,-6.10352e-05,0.00289917,-0.000793457,0.00180054,-0.00262451,-0.00564575,0.0020752,-6.10352e-05,-0.00442505,-0.00213623,0.00375366,-0.00234985,-0.000671387,0.000274658,-0.00323486,-0.0071106,0.00442505,0.00241089,-0.00341797,-0.00112915,-0.00872803,-0.0012207,0.00872803,0.00704956,-0.00793457,-0.00765991,-0.00262451,-0.00201416,0.00933838,0.000671387,-0.0125427,-0.00549316,0.00732422,0.00491333,-0.00341797,-0.00195312,-0.00778198,0.00256348,0.00750732,-0.003479,-0.00558472,-0.00469971,0.00146484,0.00106812,-0.00134277,0.00167847,-0.000457764,-0.00161743,-0.00222778,0,0.00134277,-0.00442505,-0.00195312,-0.00335693,-0.00616455,-0.00289917,0.000274658,0.0050354,-0.00234985,-0.00491333,-0.00643921,-0.00308228,0.00799561,-0.00704956,-0.00692749,-0.000610352,-0.000793457,-0.000457764,-0.00872803,0.00274658,0.00335693,-0.00146484,-0.00717163,-0.00671387,0.00442505,0.00497437,-0.000946045,-0.00671387,-0.00357056,0.00140381,0.0083313,0.00906372,-0.00610352,-0.00991821,-0.00314331,0.0050354,0.00256348,-0.00698853,-0.00195312,0.00128174,0.00189209,-0.000946045,-0.00592041,0.00424194,0.00772095,-0.00637817,-0.00793457,-0.00213623,0.00531006,0.00784302,-0.00128174,-0.0088501,-0.00247192,0.0065918,0.00189209,-0.00482178,-0.00497437,-0.0015564,0.00363159,0.00012207,-0.00912476,-0.00146484,0.00274658,0.00598145,-0.00222778,-0.00878906,0.000946045,0.00604248,0.0020752,-0.0116882,-0.00308228,0.00180054,0.00195312,-0.00482178,-0.0105896,-0.00531006,0.00088501,0.0120239,-0.00234985,-0.0131531,-0.00430298,0.000732422,0.0106812,0.000610352,-0.012146,-0.00860596,0.00476074,0.0126953,-0.00604248,-0.00979614,-0.003479,-0.00106812,0.00549316,-0.00222778,-0.00402832,0.003479,0.00396729,-0.00524902,-0.00463867,0.00827026,0.00543213,-0.00576782,-0.00515747,0.00308228,0.0071106,0.00357056,-0.00262451,-0.00692749,-0.00341797,0.00744629,-0.00134277,-0.00726318,-0.0050354,-0.00262451,0.00778198,0.00476074,-0.00390625,-0.0107422,-0.00860596,0.00448608,0.0032959,0.00100708,-0.0135498,-0.00985718,0.00537109,-6.10352e-05,-0.00497437,-0.0107422,0.0038147,0.00515747,0.00698853,-0.00146484,-0.00878906,0.00241089,0.00582886,-0.00100708,-0.00750732,-0.00738525,-0.00274658,0.00195312,0.00140381,-0.00402832,-0.00683594,-0.00106812,0.00543213,0.00213623,-0.00469971,-0.003479,0.00396729,-0.00323486,-0.00408936,0.00280762,-0.00415039,-0.00631714,-0.00189209,0.00100708,-0.00390625,0.000457764,0.00469971,0,0.00112915,0.0012207,-0.00195312,-0.00442505,0.000396729,0.00671387,0.0108643,0.00167847,-0.0071106,-0.00088501,0.00671387,0.00280762,-0.00637817,-0.00924683,-0.0017395,0.00457764,-0.00643921,-0.0117493,-0.00280762,0.0114136,0.0065918,-0.0071106,-0.0132141,-0.00128174,0.0108032,0.00234985,-0.0085144,-0.00549316,-0.00222778,-0.00100708,0.00201416,-0.00357056,-0.0071106,6.10352e-05,0.00598145,-0.0038147,-0.00799561,-0.000274658,0.00402832,-0.000335693,-0.00900269,-0.00759888,0.00222778,0.0108643,0.00482178,-0.00817871,-0.0144348,0.00167847,0.012207,0.000793457,-0.00912476,-0.0108032,-0.00457764,0.00772095,0.0038147,-0.0119324,-0.00363159,0.00939941,0.0038147,-0.00430298,0.00189209,0.00683594,0.00598145,0.000213623,-0.00390625,-0.00683594,-0.0012207,0.000396729,-0.00469971,-0.000946045,-0.00778198,-0.000457764,0.0071106,0.00161743,-0.00424194,-0.0126953,0.000549316,0.00592041,-0.00296021,-0.0145569,-0.00778198,0.0103455,0.00262451,-0.00683594,-0.00906372,0.00100708,0.0104065,0.00442505,-0.0105286,-0.0158386,0.00476074,0.0184021,-0.000274658,-0.0102539,-0.0111389,-0.00088501,0.00878906,0.00958252,0,-0.00598145,-0.00302124,0.000610352,0.00531006,0.00100708,-0.00592041,-0.00979614,-0.00765991,0.00112915,0.00643921,0.0067749,-0.0032959,-0.0100098,-0.00576782,0.00924683,0.00469971,-0.00369263,-0.0012207,-0.00436401,-0.000610352,0.00482178,0.00341797,-0.00369263,-0.00390625,6.10352e-05,-0.00112915,0.000457764,0.000335693,-0.00213623,-0.00396729,0.00436401,0.000946045,-0.00958252,-0.0067749,0.00491333,0.0144958,-0.00189209,-0.00643921,-0.00698853,-0.00234985,0.00308228,-0.00189209,-0.00582886,-0.0105286,-0.00509644,0.00704956,0.00274658,-0.0012207,-0.00759888,-0.0062561,0.00112915,0.00341797,0.00408936,-0.00906372,-0.000610352,0.0012207,-0.00564575,-0.00146484,0.00408936,0.00357056,-0.00598145,-0.0020752,-0.00335693,-0.00140381,0.0102539,-0.00201416,-0.00946045,0.00241089,0.00463867,0.00189209,-0.00100708,-0.000274658,0.00335693,0.0032959,0.00189209,-0.00772095,-0.000610352,0.00558472,0.00442505,0.00616455,-0.00140381,-0.0125427,0.000213623,0.0125427,-0.000335693,-0.0124207,-0.00765991,0.00012207,0.00872803,0.000732422,-0.0115356,-0.00289917,0.00369263,-0.00375366,-0.00665283,-0.00140381,0.000732422,0.00448608,-0.00247192,-0.0124207,-0.00436401,0.013092,-0.00222778,-0.0154419,-0.00482178,0.000732422,0.00592041,0.0083313,-0.00228882,-0.0135498,0.00222778,0.00262451,0.00012207,0.00592041,-0.00274658,-0.00860596,-0.000610352,0.00732422,-0.00759888,-0.00650024,0.000793457,-0.00692749,-0.00570679,-0.000610352,0.00167847,-0.00134277,-0.00189209,-0.00308228,-0.00469971,0.00537109,0.00308228,-0.00497437,-0.000946045,-0.00363159,0.00100708,0.00469971,0.00234985,-0.00375366,-0.00643921,0.00088501,-0.00161743,0.00531006,0.00289917,-0.00576782,-0.00262451,0.000396729,-0.000396729,-0.00442505,0.000335693,0.00146484,0.00247192,0.00357056,-0.0065918,-0.00784302,0.00558472,-0.0015564,0.00167847,-0.00247192,-0.0088501,-0.00482178,0.00180054,0.00424194,-0.00610352,-0.00106812,-0.0012207,-0.00390625,0.00213623,0.00241089,-0.00765991,0.00201416,0.00402832,-0.00784302,-0.00323486,0.00543213,0.00228882,-0.00314331,-0.0012207,-0.00598145,-0.00357056,0.0071106,6.10352e-05,-0.00845337,0.00222778,0.00146484,-0.012146,-0.00268555,0.00827026,0.00933838,-0.00375366,-0.0114746,-0.0132751,0.00918579,0.016571,-0.00448608,-0.0108643,-0.00531006,0.00390625,0.0106812,-6.10352e-05,-0.0119324,-0.0105896,0.00189209,0.00738525,0.00106812,-0.00637817,-0.0113525,0.00314331,0.0154419,-0.00704956,-0.0102539,-0.000732422,-0.00357056,0.00280762,-0.0015564,-0.00845337,-0.00280762,0.00268555,-0.00268555,-0.00543213,0.00650024,0.00390625,-0.0104065,-0.00442505,-0.00476074,0.00415039,0.00878906,-0.0134888,-0.0185242,0.0050354,0.0178528,0.00430298,-0.00469971,-0.0113525,-0.00308228,0.0167847,0.00665283,-0.0104065,-0.0126953,0.00134277,0.0103455,0.0108032,0.00482178,-0.0132751,-0.00750732,0.0116882,0.00765991,-0.0083313,-0.0148926,0.000274658,0.00839233,0.00247192,-0.00524902,-0.0050354,-0.00213623,0.00146484,0.0012207,0.00256348,0.00402832,-0.00408936,-0.00985718,-0.00570679,0.00222778,-0.00537109,-0.00866699,-0.00524902,-0.003479,-0.00100708,-0.00134277,0.00262451,0.0131531,0.00839233,-0.00845337,-0.00918579,0.00524902,0.00872803,-0.00759888,-0.00537109,-0.0050354,-0.00256348,0.00717163,0.00100708,-0.00140381,-0.00692749,-0.00610352,-0.00402832,0.00482178,0.00698853,-0.00878906,-0.0127563,-0.00497437,-0.00134277,0.00643921,0.00732422,-0.00256348,-0.0131531,-0.00817871,0.0103455,0.00543213,0.00335693,-0.00973511,-0.0119324,0.00985718,0.0115967,0.00247192,-0.00308228,0.00256348,0.00509644,0.00872803,-0.00549316,-0.0169678,-0.00256348,0.0088501,0.00765991,-0.00946045,-0.00894165,0.000671387,0.0148926,0.00280762,-0.0147095,-0.00958252,0.00100708,0.00558472,0.00637817,-0.0038147,-0.0126953,-0.00167847,0.00161743,-0.00524902,0.00289917,0.00262451,-0.00665283,0.00430298,0.003479,-0.00289917,-0.000732422,-0.000946045,-0.000274658,-0.000610352,0.00424194,-0.00549316,-0.00778198,0.00665283,-0.00314331,-0.00476074,0.00268555,-0.00698853,-0.00363159,0.0071106,0.00906372,-0.00088501,-0.00448608,-0.00463867,-0.00341797,0.0062561,-0.00515747,-0.00610352,0.00213623,-6.10352e-05,-0.00308228,-6.10352e-05,0.00732422,-0.00268555,-0.00631714,-0.0117493,-0.00012207,0.0101929,0.00189209,-0.0100708,-0.00631714,-0.00335693,-0.00827026,-0.00390625,-0.000274658,-0.00262451,-0.00390625,-0.00357056,-0.00161743,0.003479,0.0012207,0.000274658,0.00161743,-0.00515747,-0.00900269,-0.00100708,0.0100708,-0.00671387,-0.0182495,-0.00598145,0.00616455,0.00415039,-0.00827026,-0.00610352,0.00476074,0.00189209,0.00524902,0.00308228,-0.00497437,-0.00308228,0.00564575,0.00592041,-0.00524902,-0.00357056,-0.00146484,-0.00296021,0.00509644,-0.00112915,-0.00979614,-0.0032959,0.00228882,0.00704956,0.00140381,-0.00241089,-0.0128174,-0.000732422,0.0195312,0.00671387,-0.00201416,-0.0102539,-0.00222778,0.00424194,0.00363159,-0.00128174,-0.0159607,0.00241089,0.00375366,0.00140381,-0.00280762,-0.00692749,0.00180054,-0.000396729,0.0118103,-0.00308228,-0.0148315,-0.00396729,0.000274658,0.00402832,-0.00958252,-0.0122681,-0.0139465,0.00564575,0.0146179,-0.0103455,-0.0124207,-0.00222778,0.00811768,0.00692749,-0.000274658,-0.00643921,-0.0104675,0.00457764,0.00201416,0.0020752,0.000549316,-0.00692749,-0.00765991,-0.00088501,0.00650024,-0.00750732,-0.00296021,0.000732422,0.00482178,0.00482178,-0.00430298,-0.00939941,0.00228882,0.00592041,-0.00363159,0.00390625,-0.00463867,-0.0067749,-0.000732422,0.00476074,-0.00643921,-0.00860596,0.00726318,-0.0017395,-0.000457764,-0.00357056,-0.0105286,-0.00582886,0.00390625,0.00637817,-0.00491333,-0.00357056,-0.0071106,-0.00012207,0.0100708,-0.00704956,-0.00939941,0.00436401,0.0105286,-0.00256348,-0.00268555,0.00531006,-0.00732422,0.00201416,0.00100708,0.00726318,-0.00140381,-0.0200806,-0.0017395,0.0125427,0.0147705,-0.00704956,-0.0101318,-0.000671387,-0.00247192,0.011261,-0.000274658,-0.0152283,0.000671387,-0.0012207,-0.00140381,0.000335693,-0.00793457,-0.00726318,0.00469971,0.0100708,-0.00482178,-0.00228882,0.00631714,-6.10352e-05,0.00570679,-0.00012207,-0.00759888,-0.00363159,0.00878906,-0.00363159,-0.0114746,0.00637817,-0.000457764,-0.00189209,-0.0032959,-0.00631714,0.00222778,0.0065918,0.0015564,-0.00726318,-0.00515747,0.00564575,0.00524902,-0.00341797,-0.0119324,-0.00643921,0.00463867,0.00424194,-0.00631714,-0.00973511,-0.00012207,0.00442505,0.00457764,-0.00918579,-0.00402832,-0.0015564,-0.00537109,0.00604248,-0.00201416,-0.00616455,-0.00189209,0.00750732,0.00369263,-0.0134888,0.00335693,0.00872803,0.00390625,-0.00415039,-0.0110168,0.00543213,0.00665283,-0.000335693,-0.012085,-0.00872803,0.00778198,0.00732422,-0.000610352,-0.0118103,-0.000549316,0.0125427,0.0017395,-0.00692749,0.00390625,0.000396729,-0.00369263,0.000946045,-0.00524902,-0.00289917,-0.00463867,0.00213623,-0.00341797,-0.00228882,0.00167847,-0.0123596,0.0107422,0.00912476,-0.00939941,-0.0114136,0.00442505,0.0149536,-0.00650024,-0.00457764,-0.00308228,-0.000549316,0.0071106,-0.00732422,-0.0104065,-0.00793457,0.0102539,-0.00442505,-0.0191956,0.00228882,-0.00369263,-0.00308228,0.0127563,0.000732422,-0.0194702,0.00222778,0.0231628,0.00860596,-0.015625,-0.025116,0.00430298,0.0152283,0.0185242,-0.015625,-0.0264587,0.00778198,0.00784302,0.00778198,0.00222778,-0.000671387,-0.00543213,0.00100708,0.00839233,0.00576782,0.00476074,-0.0107422,-0.0138855,0.00314331,0.0182495,0.00228882,-0.0179749,-0.0145569,-0.00289917,0.0104065,0.00189209,-0.0144958,-0.00604248,0.00314331,0.00436401,0.00222778,-0.0067749,-0.00476074,0.00180054,0.00469971,-0.003479,-0.0106812,-0.00592041,0.00100708,0.00598145,-0.00308228,-0.0107422,-0.00228882,0.00457764,-0.0012207,-0.0050354,-0.00088501,0.00778198,0.00469971,-0.0106812,-0.00637817,0.0148315,0.003479,-0.0147095,0.00213623,0.00592041,-0.00363159,-0.00396729,0.00012207,-0.00457764,-0.00195312,0.00402832,-0.0126953,-0.00799561,0.013031,0.000213623,-0.00576782,-0.00482178,-0.00402832,0.00665283,0.0186462,0.0015564,-0.0304565,-0.00524902,0.0137024,0.00302124,-0.00390625,-0.0108643,-0.00750732,0.0015564,0.00643921,0.00274658,-0.0015564,-0.00402832,-0.0083313,-0.00524902,0.00515747,-0.000610352,0.00323486,-0.012146,-0.017395,0.0132751,0.00860596,-0.00631714,-0.00805664,-0.00457764,0.00482178,0.0109253,0.00140381,-0.0224304,-0.0065918,0.0218811,0.00323486,-0.0114746,-0.00222778,-0.00772095,-0.000274658,0.0212708,-0.00357056,-0.0150452,0.00732422,0.00637817,-0.0105286,-0.00576782,0.0132751,0.00308228,-0.00515747,-0.00582886,-0.00256348,0.0140991,0.0114136,-0.0128174,-0.0101318,0.00958252,0.0140991,6.10352e-05,-0.00958252,-0.0128784,-0.00744629,0.0136108,0.000335693,-0.0145569,-0.00784302,0.00811768,0.0184021,-0.00430298,-0.0185852,-0.00497437,0.00845337,0.00805664,-0.00436401,-0.00799561,-0.0140381,0.0015564,0.0122681,-0.00323486,-0.00845337,-0.0106812,-0.00650024,0.0104065,0.000671387,-0.00704956,-0.00878906,0.0159607,0.00448608,-0.0067749,0.00973511,-0.00112915,-0.00335693,0.00509644,-0.0015564,-0.00424194,-0.00390625,-0.00088501,-0.00912476,-0.00363159,0.0115967,-0.01651,-0.003479,0.00631714,0.00363159,-6.10352e-05,-0.0104675,0.00564575,0.00314331,0.00592041,0.00222778,-0.00778198,0,-0.00900269,-0.00772095,0.000274658,-0.00134277,-0.00524902,-0.00946045,0.00610352,0.000457764,-0.00140381,-0.0020752,-0.00308228,0.0012207,-0.00189209,-0.00396729,0.00424194,0.0100708,-0.00671387,-0.012207,0.00396729,0.0038147,0.00524902,-0.00732422,-0.0071106,-0.00106812,0.00524902,0.00167847,-0.0133667,-6.10352e-05,-0.0015564,0.00665283,0.00610352,0.00592041,0.00088501,-0.0127563,-0.000732422,-0.000610352,0.00704956,-0.00772095,-0.0246277,-0.00213623,0.00537109,0.0104675,-0.00012207,-0.0114136,-0.0062561,0.00241089,0.0118713,-0.00302124,-0.003479,0.00256348,0.00189209,0.0104675,0.00765991,-0.00524902,-0.00772095,0.00799561,-0.00167847,-0.00497437,-0.00543213,-0.00402832,-0.00369263,-0.00457764,0.0085144,-0.00650024,-0.00631714,-0.00369263,0.000732422,0.015564,0.00665283,-0.00985718,-0.015564,-0.00738525,0.0116882,0.0114746,-0.0142212,-0.0155029,-0.00424194,0.00793457,0.00228882,-0.00692749,-0.00390625,-0.0126038,0.00704956,0.0114136,-0.00537109,-0.00274658,0.00335693,0.000213623,-0.00128174,0.0108643,-0.00476074,-0.00631714,0.00408936,0.000732422,0.0017395,0.00482178,0.00228882,-0.0118713,0.0112,0.00878906,-0.0137024,-0.00180054,0.0104675,-0.00289917,-0.00140381,0.00558472,-0.00396729,-0.000549316,0.00201416,-0.00323486,-0.00933838,-0.00088501,-0.00549316,-0.0132751,-0.00228882,-0.000396729,-0.00650024,-0.00100708,-0.00256348,-0.00738525,0.00973511,0.00900269,-0.0132141,-0.0173035,-0.00302124,0.00924683,0.00509644,-0.003479,-0.0157166,-0.00268555,0.0126038,0.00918579,-0.00784302,-0.00189209,0.0108643,-0.000335693,-0.00515747,-0.013031,0.00549316,0.00683594,-0.00442505,-0.00222778,-0.0119324,0.00671387,-0.00128174,0.00088501,-0.00958252,-0.0155029,-0.000396729,0.00195312,0.00973511,0.00106812,-0.00570679,0.00201416,0.00222778,0.00765991,-0.00161743,0.00128174,-0.00610352,-0.00799561,0.0138855,-0.00167847,-0.00683594,-0.00476074,0.00524902,0.00213623,-0.00314331,-0.00274658,-0.0065918,0.00491333,0.00692749,-0.00448608,-0.0108032,0.00308228,0.00375366,0.00308228,0.00469971,-0.0135498,-0.0138855,0.00448608,0.0138245,0.00280762,-0.0122681,-0.0173035,0.0012207,0.0195312,0.0132751,-0.0141602,-0.00973511,0.0134888,-0.00671387,-0.00146484,0.0083313,0.00247192,-0.0116882,-0.0103455,0.0136108,0.00012207,-0.000671387,0.00112915,-0.0114746,-0.00482178,0.0100708,0.00146484,-0.0117493,-0.00335693,-0.00134277,-0.0103455,0.00912476,0.0104065,-0.00592041,-0.00228882,-0.0088501,-0.000671387,0.00665283,0.0111389,-0.00637817,-0.0114746,0.00924683,-0.0116882,-0.00247192,0.0108032,-0.00308228,-0.0111389,-0.00161743,0.00302124,-0.00683594,-0.00140381,0.00222778,0.000549316,-0.00744629,-0.0147095,-0.00558472,0.0151672,0.00939941,-0.0187378,-0.0115356,0.0143738,0.00906372,-0.0126038,-0.017395,-0.00289917,0.0150452,0.0132141,-0.00408936,-0.020752,-0.00732422,0.0228882,0.0118713,-0.00985718,-0.0261841,-0.00592041,0.0191956,0.00811768,-0.00592041,-0.0232239,-0.000335693,0.0249023,0.00335693,-0.00671387,-0.00765991,0.00262451,0.00799561,0.00799561,-0.00778198,-0.0067749,0.00234985,-0.00146484,-0.00314331,-0.00671387,0.0020752,0.00268555,0.00430298,-0.000671387,-0.00637817,0.00106812,0.00335693,-0.00302124,-0.00979614,-0.00128174,0.0106812,0.0017395,-0.00369263,-0.00616455,0.00128174,0.00314331,-0.00112915,-0.00784302,-0.00933838,0.0101929,-0.00558472,-0.0112,-0.00228882,0.0114746,0.0085144,-0.00469971,-0.0065918,-0.0122681,0.000793457,0.0202026,0.00390625,-0.0117493,-0.00894165,-0.00765991,0.000213623,0.0117493,0.00140381,-0.0132751,0.00692749,0.00979614,-0.0126038,-0.00189209,0.0032959,-0.0065918,-0.00698853,0.00576782,-0.00732422,-0.00784302,0.00616455,-0.00241089,-0.00256348,0.00497437,0,-0.000549316,0.0017395,-0.00872803,-0.000732422,0.00979614,0.000610352,-0.01651,0.00106812,0.00973511,-0.00341797,-0.00213623,0.000274658,0.00262451,-0.00161743,-0.00918579,0.000732422,0.00549316,-0.00576782,-0.00717163,-0.003479,0.00106812,-0.00234985,0.000396729,0.00698853,-0.00665283,-0.00564575,-0.00308228,0.00106812,0.0122681,-0.00778198,-0.00515747,-0.00201416,-0.000335693,0.000671387,0.00280762,0.00952148,-0.00537109,-0.00262451,-0.00302124,-0.00726318,0.000946045,0.00390625,0.000946045,-0.00543213,-0.013031,-0.00323486,-0.0050354,0.00912476,0.00308228,-0.000213623,-0.000274658,-0.0125427,0.0140991,0.00924683,-0.000457764,-0.00933838,-0.00280762,0.00564575,-0.0155029,0.00180054,0.00683594,0.00323486,-0.00650024,-0.015564,0.00268555,0.012207,0.00692749,-0.0177917,-0.0122681,0.0100098,0.0126038,-0.00323486,-0.0189819,-0.00289917,0.0050354,0.00100708,-0.00946045,-0.0135498,0.0088501,0.00497437,-0.0152283,-0.0185242,-0.0101929,0.00543213,0.00234985,-0.0110168,-0.00878906,-0.0017395,0.0100098,0.00671387,-0.00189209,-0.00289917,-0.00958252,0.00430298,0.00436401,-0.0114746,-0.00933838,0.00448608,0.0181885,-0.000671387,-0.00952148,0.00402832,0.00415039,0.0143738,-0.000457764,-0.0179138,-0.00415039,0.0110779,0.00195312,-0.0157166,0.00363159,0.00918579,0.00189209,-0.000946045,-0.00805664,0.0015564,0.00582886,0.00128174,-0.0179749,-0.0133667,0.015564,0.00985718,0.000610352,-0.00289917,-0.0104675,-0.00436401,0.00369263,0.0140991,-0.00012207,-0.00979614,0.00280762,-0.00738525,0.0032959,0.00985718,0.00811768,-0.00900269,-0.0147095,0.00180054,0.000457764,0.00772095,-0.00570679,-0.0187378,-0.00195312,0.011261,0.00289917,-0.00570679,-0.00592041,-0.00140381,0.00765991,0.00872803,0.00482178,0.00692749,0.00979614,0.00946045,0.00302124,0.00442505,0.0067749,-0.00524902,-0.0106812,0.00497437,0.003479,-0.0062561,-0.00549316,-0.00692749,-0.000274658,0.000671387,0.00509644,-0.003479,-0.0131531,-0.0015564,0.00106812,0.00631714,-0.00314331,-0.0158386,-0.00704956,0.00531006,0.00396729,-0.00967407,-0.0020752,0.00772095,0.00228882,-0.00918579,-0.0101318,-0.00189209,-0.00402832,0.00213623,0.00241089,-0.0120239,-0.00363159,0.00643921,0.00765991,-0.00228882,-0.0085144,-0.00201416,6.10352e-05,0.00161743,-0.00704956,-0.00161743,0.00390625,0.00793457,0.00906372,0.00256348,0.000671387,0.00280762,0.00906372,-0.00228882,-0.0144958,-0.00738525,-0.00128174,-0.00582886,-0.0205383,-0.013092,0.0067749,0.00274658,-0.00866699,-0.0114746,-0.00241089,0.00222778,-0.00247192,-0.0137024,-0.015625,-0.000671387,0.00549316,-0.00717163,-0.00732422,0.00726318,0.00750732,0.00497437,0.0120239,0.00335693,-0.00424194,0.0020752,0.00390625,-0.000396729,0.00576782,0.00457764,0.0083313,0.0342407,0.0363159,0.0101318,0.00491333,0.024353,0.0230103,0.00274658,-0.0135498,-0.0182495,-0.0195312,-0.0181885,-0.00967407,-0.0142212,-0.00717163,-0.0106812,-0.0179138,-0.00582886,-0.00576782,-0.00991821,-0.0200806,-0.0218201,-0.013031,-0.0126038,0.000610352,0.0032959,-0.00396729,-0.00363159,-0.00234985,0.0171814,0.0138245,-0.00213623,-0.00958252,-0.00991821,0.0138245,0.00469971,-0.012085,-0.00543213,0.00408936,0.0120239,0.0083313,0,0.00308228,0.00241089,-0.00241089,-0.0108643,-0.00482178,-0.00616455,-0.0254517,-0.00985718,0.00280762,0.00128174,-0.0103455,-0.0140991,-0.00811768,-0.00341797,0.0153809,0.0038147,-0.00570679,-0.00222778,-0.00558472,0.0085144,0.000732422,-0.00894165,-0.0179749,0.000274658,0.00476074,-0.00924683,0.0114136,0.00704956,-0.00558472,-0.00643921,0.00128174,0.00692749,-0.00564575,-0.000396729,-0.00598145,-0.00784302,0.00335693,0.0127563,0.00262451,-0.0110168,-0.00289917,0.00457764,0.00616455,-0.00195312,-0.00827026,-0.0118713,-0.0132751,0.00598145,0.00247192,-0.00415039,0.00765991,0.00570679,0.00906372,0.000213623,-0.00134277,-0.00515747,-0.00357056,0.00201416,0.00430298,0.00933838,0.000946045,0.00357056,0.00631714,0.0111389,0.00167847,-0.015625,-0.0101318,0.00491333,0.0146179,-0.000671387,-0.00201416,0.0194702,0.0337524,0.024231,0.000274658,-0.00341797,0.00958252,0.0100708,-0.00262451,-0.0148926,-0.0198059,-0.00985718,-0.00946045,-0.00765991,-0.0067749,-0.0106812,-0.00314331,-0.00537109,-0.00531006,0.00146484,-0.0138245,-0.025177,-0.0100708,-0.00650024,-0.012146,-0.0113525,-0.00390625,-0.0050354,-0.012207,0.00100708,-0.00692749,-0.0102539,0.0105286,0.0065918,-0.00469971,-0.0147705,0.0020752,0.00558472,0.000549316,0.000335693,-0.0206604,-0.00134277,0.00491333,0.00341797,-0.00302124,-0.017395,0.000274658,0.00482178,0.00979614,-0.0085144,-0.025238,-0.0158386,-0.0017395,0.0175171,-0.00396729,-0.0232239,-0.016449,0.00576782,0.0171204,-0.00314331,-0.0222778,-0.0219421,-0.00308228,0.0118713,-0.00442505,-0.0142822,-0.0012207,0.0128784,0.00683594,0.00280762,0.0050354,0.0167847,0.00765991,-0.00906372,-0.0115967,0.00576782,0.0196533,0.00784302,0.00415039,-0.00570679,0.00531006,0.0133667,0.0100708,0.0113525,-0.00637817,-0.00604248,0.00106812,-6.10352e-05,-0.0062561,-0.0167847,0.00918579,0.0231018,6.10352e-05,-0.0197449,-0.00106812,0.0160522,-0.000396729,-0.00933838,-0.000610352,0.000335693,0.000549316,0.00784302,0.00140381,-0.00280762,0.0071106,0.0108032,-0.00256348,-0.00558472,0.00463867,0.00650024,0.0115356,0.00805664,-0.00308228,-0.00543213,0.00900269,0.0101318,-0.00222778,-0.00918579,-0.00424194,-0.00189209,-0.0103455,0.000335693,0.00515747,-0.00531006,-0.0166321,-0.00463867,0.0100708,0.00604248,0.000549316,-0.012207,-0.00396729,0.00128174,-0.00390625,-0.0100098,-0.00146484,0.00598145,-0.00323486,-0.0206604,-0.0132751,-0.00357056,0.000335693,0.00256348,-0.00726318,-0.00564575,0.0015564,0.00363159,0.0175781,0.013092,-0.00012207,-0.00744629,-0.00106812,0.00195312,-0.00201416,0.0015564,-0.00918579,0.00012207,0.00146484,-0.000549316,0.00509644,0.0122681,0.0032959,-0.0109253,-0.00369263,-0.0088501,-0.0015564,0.0117493,-0.00549316,-0.0224304,-0.0109253,0.000457764,-0.00549316,-0.000946045,0.00189209,0.00274658,0.000549316,-0.000274658,-0.00195312,0.00784302,0.0127563,-0.00549316,-0.0106812,-0.0032959,0.00772095,0.0088501,0.00827026,-0.00134277,-0.003479,0.000457764,-0.000396729,-0.00610352,-0.00280762,0.00448608,-0.000457764,-0.00308228,-0.00732422,0.00201416,0.012207,-0.00180054,-0.0139465,-0.00860596,6.10352e-05,0.00442505,0.00610352,0.000457764,-0.00860596,0.00088501,0.0100098,-0.00515747,-0.00363159,0.00509644,0.00430298,0.0050354,-0.00234985,-0.00375366,-0.00738525,0.00845337,0.0125427,-0.00637817,-0.0101929,-0.00341797,0.00323486,0.0149536,0.0213318,0.00637817,-0.013031,-0.0188599,-0.00845337,-0.0050354,-0.0157166,-0.0305481,-0.0284424,-0.00778198,-0.00280762,-0.00576782,0.00302124,0.0163879,0.0106812,-0.00167847,0.00515747,0.0132141,0.0136108,0.00234985,-0.00509644,-0.00430298,0.00817871,0.00979614,-0.00106812,-0.00128174,-0.000335693,0.00811768,0.0120239,0.00683594,-0.0110779,-0.0184631,-0.000549316,0.00357056,-0.0147705,-0.0118713,-0.0071106,-0.0107422,-0.0105896,-0.00457764,-0.00918579,-0.0148315,-0.00827026,-0.00213623,-0.0104675,-0.0186462,-0.0131531,-0.00161743,-0.00274658,-0.0110168,0.00088501,0.0219421,0.0171204,-0.00134277,-0.00582886,0.00335693,0.0071106,-0.000274658,-0.00524902,-0.00469971,-0.00726318,-0.0128174,-0.00991821,0.00390625,0.0108032,-0.000732422,-0.00772095,-0.0102539,-0.00402832,0.00128174,-0.00985718,-0.0120239,-0.00958252,-0.00570679,-0.00201416,-0.0032959,0.00463867,0.00369263,-0.00314331,0.00140381,0.00979614,0.0127563,-0.00161743,-0.00732422,0.0116882,0.0135498,0.00012207,-0.00213623,0.0131531,0.0138245,0.00671387,0.00985718,0.0088501,0.00497437,-0.0017395,-0.00375366,-0.000457764,-0.00631714,-0.00692749,-0.00650024,-0.00274658,-0.00012207,0.00100708,0.003479,-0.00369263,0.00375366,0.003479,-0.00146484,-0.0038147,-0.00906372,-0.00180054,0.0032959,-0.00128174,-0.0106812,-0.000213623,0.0125427,0.00866699,0.00430298,0.00491333,-0.000610352,-0.00106812,0.00570679,-0.00195312,-0.0101318,-0.00765991,0.00274658,0.00878906,0.0101318,0.00415039,-0.00241089,0.00604248,0.00180054,-0.0115356,-0.00228882,-0.00793457,-0.0065918,-0.012207,-0.013031,-0.000793457,-0.000549316,-0.0038147,-0.00698853,0.00549316,0.00765991,0.00482178,-0.00012207,0.00195312,0.00341797,0.0071106,0.00146484,-0.00201416,0.0104065,0.00430298,-0.00369263,0.00958252,0.0144348,-0.00201416,-0.00637817,-0.00524902,-0.00308228,-0.00543213,0.00357056,-0.00430298,-0.0185852,-0.0144958,-0.0100098,-0.00491333,-0.00549316,-0.0104065,-0.0120239,-0.00772095,0.0071106,0.00912476,-0.0147095,-0.0246887,-0.00637817,0.0113525,0.00558472,-0.00631714,-0.00598145,0.00543213,0.0159607,0.00744629,-0.00228882,-0.00268555,0.00537109,0.00247192,-0.00765991,-0.00604248,0.000213623,0.00637817,0.003479,-0.00750732,-0.00839233,0.00448608,0.00738525,-0.0105286,-0.0142822,-0.00442505,0.00262451,0.00576782,-0.0012207,-0.00827026,-0.00692749,0.000793457,-0.00476074,-0.00872803,-0.00335693,-0.00448608,-0.00692749,-0.00610352,0.000732422,0.00189209,0.0067749,0.0065918,0.000793457,0.00228882,0.00717163,0.00979614,0.00543213,-0.00866699,-0.00683594,0.00088501,0.0067749,-0.00396729,-0.0083313,0.00631714,0.00643921,-0.00469971,-0.00448608,0.0038147,0.0015564,-0.00268555,0.00106812,0.0020752,-0.00650024,-0.00341797,0.013031,0.00839233,0.000274658,-0.00274658,-0.000793457,0.00616455,-0.00363159,0.000732422,0.0104065,-0.00531006,-0.00866699,-0.00146484,0.00610352,-0.00167847,-0.0202026,-0.0140991,-0.00390625,0.000396729,-0.0138855,-0.0169678,0.000213623,0.00241089,-0.000549316,-0.00180054,0.00280762,0,-0.00726318,-0.0032959,-0.00228882,-0.00262451,-0.00222778,-0.000793457,0.000213623,0.00302124,0.003479,0.000396729,0.0017395,0.0083313,0.000457764,-0.00637817,-0.000610352,0.00610352,-0.003479,-0.00845337,0.000213623,-0.00491333,0.00201416,0.00296021,-0.00296021,0.00341797,-0.0020752,-0.000671387,-0.00268555,-0.00390625,-0.00872803,-0.0124207,-0.00289917,0.000732422,0.00134277,-0.000793457,0.00100708,-0.0020752,-0.00112915,0.000457764,-0.00415039,-0.00482178,-0.00732422,-0.00509644,0.00698853,0.0032959,-0.00698853,-0.00396729,0,0.00839233,0.00430298,-0.00582886,-0.011261,-0.00665283,0.011261,0.0100708,0.00717163,0.00341797,0.00012207,0.0117493,0.0134277,0.0104065,0.00296021,0.0065918,0.0181885,0.0175171,0.00845337,0.00128174,-0.000732422,-0.00509644,-0.00744629,-0.00878906,-0.003479,-0.00549316,-0.0249634,-0.0255737,-0.0176392,-0.00375366,0.00894165,-0.00778198,-0.0255737,-0.00738525,0.0146179,0.00582886,-0.0143738,-0.0160522,-0.00222778,0.00759888,0.00778198,-0.003479,-0.00302124,0.0115967,0.0119324,0.0103455,0.003479,-0.00692749,-0.00946045,0.000671387,0.0103455,0.00241089,0.000946045,-0.00234985,-0.00296021,0.00457764,0.0148315,0.00482178,-0.0157166,-0.0139465,-0.00912476,-0.00146484,-0.00906372,-0.0202637,-0.015625,-0.00912476,-0.00799561,-0.00650024,-0.00228882,-0.00570679,-0.0147705,-0.0162964,-0.00839233,-0.00476074,-0.00195312,0.00234985,-0.00598145,-0.0109253,-0.00375366,0.00616455,0.0120239,0.00543213,-0.00357056,0.00598145,0.00991821,0.0017395,-0.00900269,-0.0032959,0.0138855,0.0107422,0.0038147,-0.00262451,-0.000732422,0.00610352,0.00402832,-0.00256348,-0.0171814,-0.0157776,-0.00476074,0.0012207,0.00759888,-0.00515747,-0.00845337,0.00592041,0.00906372,-0.0012207,-0.0107422,-0.00256348,0.00576782,0.0017395,-0.00402832,-0.0012207,0.00631714,0.00442505,-0.000671387,-0.000274658,0.00228882,0.00167847,0.00442505,0.00598145,-0.00112915,-0.00140381,0.0126038,0.0140381,0.00497437,0.00201416,0.00531006,0.011261,0.00457764,0.000335693,-0.00296021,0.000946045,0.00805664,-0.00582886,-0.0118103,-0.00134277,0.00234985,-0.0012207,-0.0135498,-0.019989,-0.0112,0.00088501,-0.0032959,-0.0124207,-0.0132141,0.00442505,0.0131531,0.00985718,0.00146484,-0.00274658,0.0020752,0.00643921,0.0114746,0.0015564,-0.003479,-0.00195312,0.0065918,0.00845337,0.0012207,-0.00146484,0.000671387,0.00296021,-0.00436401,-0.0135498,-0.0150452,-0.0102539,-0.0065918,-0.0032959,-0.00698853,-0.00576782,-0.00436401,-0.00161743,0.00738525,0.00146484,-0.00817871,-0.0111389,-0.00012207,0.0100098,0.0115967,0.00778198,0.00665283,0.00817871,0.00778198,0.00650024,-0.00726318,-0.0100708,-0.00228882,-0.00717163,-0.013092,-0.00524902,0.0083313,0.00241089,-0.00750732,-0.00637817,0.00543213,0.0101929,-0.00698853,-0.0173035,-0.00952148,0.00784302,0.00576782,-0.0071106,-0.00692749,0.000213623,0.00302124,0.00906372,0.00515747,0.00308228,-0.000671387,0.00469971,0.0209961,0.0161133,-0.00616455,-0.0149536,0.00106812,0.0178528,0.0118103,-0.0117493,-0.0236816,-0.013031,0.00363159,0.00778198,-0.00469971,-0.01651,-0.0158997,-0.00289917,0.000671387,-0.00146484,-0.00979614,-0.0194092,-0.00637817,0.00140381,-0.00564575,-0.0118713,-0.00738525,0.000335693,0.00262451,0.000610352,-0.0038147,-0.00726318,-0.000274658,-0.00100708,-0.00906372,-0.0114746,-0.00765991,0.00146484,0.00469971,0.00543213,0.0038147,0.00939941,0.00991821,0.00717163,0.0137024,0.0186462,0.0137634,0.00134277,-0.00457764,-0.00396729,0.00375366,0.0017395,-0.0157776,-0.0246277,-0.0167847,-0.00631714,-0.00442505,-0.0138855,-0.0220032,-0.0142822,-0.00616455,-0.00268555,-0.00793457,-0.0116882,-0.00683594,0.00341797,0.00939941,0.00146484,-0.00665283,-0.00134277,0.00933838,0.00604248,0.00436401,0.00469971,0.0141602,0.0140991,0.00991821,0.0126038,0.0118713,0.00558472,0.000213623,0.00430298,0.00442505,-0.00442505,-0.00643921,-0.000457764,-0.0020752,-0.00698853,-0.000274658,-0.00228882,-0.00894165,-0.00631714,-0.00476074,-0.00564575,-0.00576782,-0.0131531,-0.011261,-0.00161743,0.00476074,-0.00402832,-0.011261,-0.00463867,-0.00134277,0.00213623,0.00402832,-0.00189209,-0.00357056,0.00698853,0.0132141,0.0116882,0.003479,0.00268555,0.00509644,0.00933838,0.00866699,-0.00357056,-0.00912476,-0.0038147,0.00357056,0.00558472,0.000793457,-0.00598145,-0.00323486,0.00268555,0.00631714,0.00482178,-0.00564575,-0.0114136,-0.000549316,0.00805664,0.00323486,-0.00268555,-0.00463867,0.000671387,0.00704956,0.0050354,0.00195312,-0.00161743,0.000549316,0.00128174,0.0050354,0.000213623,-0.00134277,0.00469971,0.00308228,0.00396729,0.00180054,0.000732422,-0.00537109,-0.00744629,-0.00222778,-0.000274658,-0.00469971,-0.00482178,-0.00543213,-0.00592041,-0.00744629,-0.00698853,0.00134277,-0.00213623,-0.00973511,-0.0117493,-0.00274658,0.00598145,0.00570679,0.00140381,-0.00341797,-0.00140381,0.00289917,0.00683594,0.00262451,-0.00408936,-0.00146484,0.00128174,0.00375366,0.00335693,0.00274658,6.10352e-05,-0.00509644,-0.00213623,0.00106812,-0.00463867,-0.0144958,-0.0135498,-0.00759888,-0.00939941,-0.0100708,-0.0103455,-0.0150452,-0.0169678,-0.0143738,-0.00793457,-0.00564575,-0.0083313,-0.0085144,-0.000610352,0.00408936,0.00201416,-0.00308228,-0.000732422,0.00396729,0.0020752,-0.000396729,-0.000213623,0.00665283,0.00463867,-0.00213623,0.00128174,0.00592041,0.00241089,0.000793457,0.00308228,-0.00012207,0.00268555,0.00408936,0.000946045,0.000335693,6.10352e-05,0.00308228,-6.10352e-05,-0.00335693,-0.00369263,-0.00476074,0.00228882,-0.000671387,-0.00469971,-0.00335693,-0.00491333,-0.0085144,-0.00390625,-0.00106812,-0.00469971,-0.00872803,-0.00564575,-0.00524902,-0.00515747,0.00012207,0.000396729,-0.00201416,-0.00241089,-0.000457764,0.00576782,0.0114746,0.00436401,0.00408936,0.0085144,0.00558472,0.00341797,6.10352e-05,0.00234985,-0.00088501,-0.003479,0.000213623,-0.00106812,-0.00241089,-0.00180054,0.00363159,0.00442505,0.00262451,-0.000732422,-0.00241089,0.00430298,0.00582886,0.00228882,-0.00469971,-0.00610352,-0.00369263,-0.00256348,-0.00396729,-0.00509644,-0.00878906,-0.00375366,0.00161743,0.00201416,0.00262451,-0.00341797,-0.00390625,0.00576782,0.00973511,0.00671387,0.00262451,0.00112915,-0.00112915,0.0032959,0.00213623,0.00088501,-0.000610352,-0.00323486,-0.00167847,-0.00314331,-0.000335693,0.00213623,-0.00308228,-0.00314331,0.000793457,0.000946045,-0.00543213,-0.00323486,0.00128174,0.00106812,-0.00390625,-0.00665283,-0.00335693,-0.000671387,-0.00369263,-0.00631714,-0.00112915,0.00106812,-0.00201416,-0.00323486,-0.00256348,-0.00213623,-0.00491333,-0.00369263,-0.0071106,-0.00985718,-0.00408936,-0.00335693,-0.0088501,-0.0117493,-0.00839233,-0.00671387,-0.0114136,-0.0118103,-0.0117493,-0.015625,-0.0116882,-0.00817871,-0.00592041,-0.00683594,-0.0100708,-0.00738525,-0.000396729,0.00213623,-0.00549316,-0.00564575,0.000274658,0.00469971,0.00228882,0.00201416,0.00247192,-0.000793457,0.000946045,0.00979614,0.00610352,0.00274658,0.00424194,0.00140381,0.00302124,0.00704956,0.0032959,-0.000610352,-0.00308228,-0.0012207,0.00430298,0.00817871,0.00537109,0.00643921,0.0083313,0.0107422,0.0114136,0.00817871,0.0103455,0.0152893,0.0175171,0.0152283,0.0115356,0.0133667,0.0127563,0.0114746,0.0126953,0.0114136,0.00759888,0.00341797,0.00363159,0.00772095,0.00631714,0.00012207,-0.000549316,0.00442505,0.00631714,0.003479,-0.0032959,-0.00866699,-0.00784302,-0.00582886,-0.0088501,-0.0114136,-0.0103455,-0.00692749,-0.00683594,-0.00866699,-0.0071106,-0.0106812,-0.0115356,-0.0148926,-0.0179749,-0.0203247,-0.019989,-0.0187988,-0.020752,-0.0222168,-0.0205994,-0.0218201,-0.0212097,-0.0192566,-0.0246277,-0.0297852,-0.0289307,-0.0247803,-0.0267944,-0.0291138,-0.0324097,-0.0283203,-0.0265198,-0.0314636,-0.0343018,-0.0345764,-0.0316772,-0.0315552,-0.028717,-0.0231018,-0.0220032,-0.0229492,-0.0147705,-0.00726318,-0.00228882,0.003479,0.00537109,0.0110168,0.016571,0.0212097,0.027771,0.0337524,0.0394592,0.0455627,0.0493164,0.056366,0.0657043,0.0646973,0.0610046,0.0620728,0.0680542,0.070343,0.0675049,0.0639038,0.0621643,0.0588684,0.0541077,0.0525513,0.0495911,0.0404663,0.0310669,0.0281982,0.0273743,0.0231018,0.0108643,0.00112915,-0.00228882,-0.00805664,-0.0131531,-0.020874,-0.0222168,-0.0198059,-0.0216064,-0.0204773,-0.0228271,-0.0234375,-0.0203247,-0.017395,-0.0196533,-0.024231,-0.020813,-0.0176392,-0.0200806,-0.0195312,-0.0190735,-0.0224915,-0.0269165,-0.0312805,-0.0375977,-0.0437012,-0.0499268,-0.0599976,-0.0657043,-0.0738831,-0.0834351,-0.0855103,-0.0876465,-0.0956421,-0.0971069,-0.0921631,-0.0913391,-0.090332,-0.0855713,-0.0808716,-0.0794067,-0.0745544,-0.0622253,-0.0495911,-0.0409546,-0.0360413,-0.0223389,-0.00476074,0.0113525,0.0209961,0.0302124,0.0450439,0.0640869,0.0792542,0.0917358,0.108521,0.12149,0.131348,0.142029,0.150269,0.148651,0.144897,0.144623,0.141205,0.127045,0.108398,0.0927429,0.0806885,0.0669861,0.0492554,0.0287781,0.0159607,0.0101929,0.00280762,-0.00576782,-0.00952148,-0.0146179,-0.0187378,-0.0194092,-0.0194092,-0.020874,-0.0224915,-0.024231,-0.0238953,-0.0171204,-0.0101318,-0.00106812,0.00738525,0.0114136,0.0194702,0.0271912,0.0293274,0.0262451,0.02771,0.0291138,0.024292,0.0128784,0.0020752,-0.00866699,-0.0240173,-0.0393372,-0.0603943,-0.0853577,-0.105103,-0.121277,-0.129395,-0.138245,-0.147125,-0.154114,-0.156189,-0.148254,-0.137512,-0.131958,-0.131134,-0.135834,-0.132233,-0.119598,-0.103699,-0.0918884,-0.0846863,-0.0743713,-0.0559082,-0.0303955,-0.00289917,0.0167847,0.0357666,0.0568542,0.0808716,0.105774,0.130798,0.152679,0.16626,0.1745,0.18277,0.186981,0.188324,0.182434,0.167938,0.14563,0.124908,0.103638,0.0845032,0.0673828,0.0475159,0.0249023,0.00314331,-0.0105896,-0.0176392,-0.0255737,-0.036499,-0.046051,-0.0504761,-0.0490723,-0.0430298,-0.037262,-0.0387268,-0.037323,-0.025116,-0.00805664,0.00665283,0.0149536,0.0248413,0.0400085,0.0589905,0.0739746,0.0785828,0.081543,0.0855103,0.0833435,0.0756531,0.0653687,0.0527649,0.0303345,0.00323486,-0.0269165,-0.0569763,-0.0837708,-0.105438,-0.12677,-0.14975,-0.166656,-0.176971,-0.181427,-0.177399,-0.176239,-0.174774,-0.170013,-0.166718,-0.162567,-0.147247,-0.130341,-0.123169,-0.123291,-0.115234,-0.0929565,-0.0633545,-0.0377197,-0.0183105,0.00424194,0.032959,0.0677185,0.0970459,0.124847,0.147797,0.164307,0.180664,0.195831,0.204315,0.198944,0.187042,0.173096,0.158783,0.140076,0.116638,0.0914917,0.0708008,0.0496521,0.0279236,0.0102539,-0.00268555,-0.0171204,-0.032135,-0.0461731,-0.0558472,-0.0593262,-0.0628967,-0.0667725,-0.0686035,-0.0598755,-0.0455627,-0.0370483,-0.0299377,-0.0193176,-0.000213623,0.0223389,0.0420837,0.0577087,0.0700684,0.0837708,0.100281,0.115051,0.11853,0.111694,0.102142,0.0928345,0.074707,0.0438232,0.0071106,-0.0263062,-0.0564575,-0.0817566,-0.108337,-0.138519,-0.16275,-0.173157,-0.175781,-0.176514,-0.177582,-0.18161,-0.184784,-0.181885,-0.170685,-0.155853,-0.148193,-0.148254,-0.144562,-0.129883,-0.106049,-0.0832214,-0.0640259,-0.0462952,-0.0206604,0.0161133,0.0543518,0.0886536,0.118988,0.146912,0.170288,0.194366,0.214233,0.224579,0.221832,0.21228,0.200623,0.183502,0.161469,0.133972,0.106445,0.0759888,0.0453186,0.0212708,0.00213623,-0.0179138,-0.0374451,-0.0534363,-0.066925,-0.0745544,-0.0773315,-0.0807495,-0.085907,-0.0838318,-0.0736389,-0.0646973,-0.0574646,-0.0481262,-0.0310059,-0.0106812,0.00759888,0.0220947,0.0388489,0.057373,0.0761108,0.0914001,0.105164,0.115234,0.119537,0.114227,0.104553,0.0875854,0.06073,0.0350952,0.0067749,-0.0233459,-0.0589294,-0.0927429,-0.120667,-0.143433,-0.158936,-0.170746,-0.178314,-0.18512,-0.192169,-0.194153,-0.18457,-0.170685,-0.162415,-0.15979,-0.153351,-0.13974,-0.118256,-0.0953064,-0.0768433,-0.0603333,-0.0383911,-0.0106812,0.024353,0.0603333,0.0914917,0.119141,0.146301,0.177734,0.20639,0.229065,0.240875,0.240875,0.233643,0.224304,0.209808,0.188263,0.159454,0.124756,0.0896606,0.0559692,0.0287781,0.00390625,-0.0276489,-0.058136,-0.0809326,-0.0913391,-0.0983887,-0.106659,-0.110077,-0.109741,-0.105164,-0.0940247,-0.0783997,-0.0626221,-0.048645,-0.0350952,-0.0184021,0.00228882,0.0256958,0.0453186,0.0598145,0.0735474,0.0891418,0.0987244,0.103027,0.103882,0.101959,0.090271,0.0730896,0.0540161,0.0327454,0.00860596,-0.0191345,-0.0521545,-0.0875854,-0.114899,-0.133484,-0.147919,-0.164978,-0.183228,-0.200012,-0.209595,-0.205841,-0.193146,-0.184509,-0.184235,-0.181213,-0.162964,-0.131622,-0.101288,-0.0792542,-0.0620117,-0.0384521,-0.00497437,0.0317383,0.0675049,0.0999451,0.126526,0.153015,0.181763,0.210693,0.233368,0.244629,0.246124,0.243286,0.239532,0.229462,0.210541,0.185791,0.155304,0.122742,0.0887146,0.0559082,0.0255127,-0.0101929,-0.0443726,-0.0721436,-0.0970459,-0.114502,-0.128204,-0.135986,-0.136261,-0.131409,-0.124512,-0.112366,-0.0922852,-0.0699463,-0.0501404,-0.0301208,-0.00878906,0.0142822,0.0388489,0.0589905,0.0783997,0.0906067,0.0976562,0.101685,0.103027,0.0986023,0.0867004,0.0664368,0.0453796,0.0256958,0.00415039,-0.0216675,-0.0487366,-0.0730896,-0.0966492,-0.118073,-0.134705,-0.149933,-0.170197,-0.186798,-0.195709,-0.196777,-0.195587,-0.194366,-0.193085,-0.18692,-0.172546,-0.15155,-0.127991,-0.103088,-0.0787964,-0.0511475,-0.0171204,0.0211487,0.0599976,0.0969849,0.130615,0.161346,0.192413,0.221893,0.242828,0.256317,0.26123,0.261627,0.255524,0.242615,0.224976,0.203827,0.17572,0.142609,0.107788,0.0724182,0.0401917,0.00570679,-0.026123,-0.0574646,-0.0856934,-0.108337,-0.123413,-0.131226,-0.13443,-0.136322,-0.137787,-0.129608,-0.11261,-0.0942993,-0.0752258,-0.053009,-0.0299377,-0.00744629,0.0149536,0.040802,0.0630798,0.079071,0.0882568,0.0965271,0.0984497,0.0960388,0.0872498,0.0704651,0.049469,0.028595,0.00576782,-0.0190735,-0.0469666,-0.0717468,-0.094635,-0.114624,-0.134094,-0.150665,-0.165924,-0.179932,-0.189484,-0.192505,-0.190948,-0.190277,-0.189606,-0.181763,-0.167175,-0.146912,-0.128662,-0.111542,-0.0875244,-0.0553589,-0.0200806,0.0151672,0.0516663,0.0877075,0.121674,0.155579,0.191895,0.22464,0.245728,0.255768,0.262146,0.268799,0.269257,0.260681,0.240356,0.214569,0.185699,0.154694,0.121338,0.0827637,0.04422,0.0050354,-0.0326233,-0.0653687,-0.0926208,-0.115234,-0.131226,-0.142365,-0.148315,-0.147919,-0.14035,-0.125763,-0.108856,-0.0927429,-0.0738831,-0.0528259,-0.0276489,-6.10352e-05,0.0228271,0.0411987,0.0571289,0.0727539,0.0843506,0.0917358,0.0906677,0.085022,0.0744324,0.0603333,0.0437622,0.0256348,0.0038147,-0.0183105,-0.0458984,-0.0683899,-0.0877075,-0.107452,-0.127258,-0.145294,-0.160797,-0.171692,-0.178986,-0.183167,-0.186981,-0.187317,-0.183289,-0.173096,-0.160278,-0.145721,-0.128326,-0.105164,-0.0777283,-0.0499268,-0.0191956,0.0184021,0.0556335,0.0917358,0.126099,0.161133,0.190155,0.217133,0.240204,0.253754,0.258728,0.259552,0.256104,0.24646,0.225861,0.199677,0.168732,0.135254,0.100616,0.0636292,0.0252991,-0.0132141,-0.0493164,-0.0777893,-0.102814,-0.124298,-0.139526,-0.147461,-0.15094,-0.14798,-0.139465,-0.126373,-0.106445,-0.0838318,-0.0634155,-0.0391846,-0.0119324,0.016449,0.040741,0.0606689,0.0760498,0.0898743,0.103821,0.111359,0.109924,0.102631,0.0871887,0.0717468,0.0532837,0.0315552,0.00497437,-0.0234985,-0.0516663,-0.0786743,-0.100616,-0.122559,-0.14563,-0.165771,-0.179199,-0.185913,-0.189667,-0.191345,-0.188721,-0.181,-0.166931,-0.1492,-0.128937,-0.107391,-0.0853577,-0.061615,-0.0350952,-0.00772095,0.019989,0.0502625,0.0794678,0.106903,0.132812,0.158325,0.179749,0.197052,0.20752,0.213348,0.212769,0.209412,0.19928,0.184509,0.165588,0.141357,0.112091,0.0816956,0.0522766,0.0200806,-0.0153809,-0.0492554,-0.0775146,-0.101685,-0.119385,-0.133484,-0.142151,-0.142365,-0.134491,-0.124023,-0.110474,-0.0910034,-0.0686646,-0.0420227,-0.015625,0.011261,0.0353088,0.0602722,0.085022,0.105499,0.119934,0.126862,0.12854,0.12854,0.123016,0.107178,0.0869751,0.0641785,0.0413513,0.0158386,-0.013092,-0.0422974,-0.0706177,-0.0914917,-0.111206,-0.129944,-0.148132,-0.15979,-0.16745,-0.16861,-0.167664,-0.163086,-0.155182,-0.142365,-0.12323,-0.102692,-0.0828857,-0.0618286,-0.0386047,-0.0154419,0.00860596,0.0284424,0.0481262,0.0658264,0.0838928,0.0971069,0.108795,0.117645,0.122894,0.124573,0.124084,0.121399,0.116852,0.106171,0.0945129,0.0809326,0.0648193,0.0472412,0.028717,0.00924683,-0.0104675,-0.02771,-0.0424805,-0.0546265,-0.0671082,-0.0763245,-0.0785828,-0.0750427,-0.0705261,-0.0643616,-0.0554504,-0.041687,-0.0252991,-0.00765991,0.00878906,0.0246277,0.0424194,0.0571899,0.0683289,0.077179,0.0836792,0.0886536,0.089386,0.086853,0.0808105,0.0724182,0.0628967,0.0471191,0.0323486,0.0147095,-0.00396729,-0.020874,-0.0369263,-0.0534973,-0.0681763,-0.0785828,-0.0878601,-0.094635,-0.0986633,-0.099884,-0.0985413,-0.0963135,-0.0916138,-0.08255,-0.0711975,-0.0601501,-0.0491333,-0.0381775,-0.0259705,-0.015625,-0.0038147,0.00616455,0.0149536,0.0233459,0.0285339,0.0333557,0.0369263,0.0386047,0.0397339,0.0404053,0.0399475,0.0369263,0.0325623,0.0289307,0.0274658,0.0236816,0.0188599,0.0132751,0.00958252,0.00805664,0.00537109,0.0038147,0.00308228,0.00128174,0.00247192,0.00308228,0.00396729,0.00564575,0.0071106,0.00784302,0.0100708,0.0110779,0.0137024,0.0150452,0.0140991,0.0129395,0.0138855,0.0136108,0.0133667,0.0114746,0.0108032,0.00772095,0.0062561,0.00430298,0.00189209,0.00134277,-0.000549316,-0.00262451,-0.00357056,-0.00616455,-0.0088501,-0.00912476,-0.0108643,-0.0152283,-0.0192566,-0.0198669,-0.0209961,-0.0222778,-0.0246887,-0.0264587,-0.0279846,-0.0298767,-0.0312805,-0.0312805,-0.0330811,-0.0341492,-0.036377,-0.0361633,-0.0354919,-0.0358276,-0.0360413,-0.0359192,-0.0350952,-0.0326233,-0.0276489,-0.0246887,-0.020813,-0.0179749,-0.0114136,-0.00424194,0.00302124,0.00952148,0.016449,0.0231628,0.0289917,0.0354919,0.0415344,0.0459595,0.0501404,0.0523376,0.0531006,0.0531006,0.0516052,0.049469,0.0458374,0.0414734,0.0357666,0.0293884,0.0212708,0.0129395,0.00827026,0.00280762,-0.00424194,-0.0116882,-0.016449,-0.0192566,-0.0194702,-0.0205383,-0.0240173,-0.0227661,-0.019989,-0.0177917,-0.0139465,-0.0104065,-0.00549316,-0.00302124,0.00180054,0.00531006,0.0105286,0.0126038,0.0141602,0.0127563,0.013092,0.0102539,0.00726318,0.0032959,-0.0020752,-0.00744629,-0.0142212,-0.0202026,-0.0250244,-0.029541,-0.0355835,-0.0400696,-0.0437622,-0.0461121,-0.0467834,-0.0461731,-0.0461121,-0.0452271,-0.0431519,-0.0412903,-0.0377808,-0.0319519,-0.0279236,-0.0224915,-0.0162354,-0.0111389,-0.00402832,0.00308228,0.0103455,0.0159607,0.0214844,0.0256348,0.0312805,0.0370483,0.0406189,0.0433044,0.0456543,0.0461121,0.0477905,0.0481873,0.0476379,0.0447693,0.0410156,0.0366516,0.0342407,0.0310059,0.0263062,0.0210876,0.0147705,0.00811768,0.003479,-0.00189209,-0.00604248,-0.00924683,-0.0131531,-0.0149536,-0.015625,-0.0162354,-0.0162964,-0.0148926,-0.0135498,-0.0134277,-0.0111389,-0.00900269,-0.00549316,-0.000213623,0.00396729,0.00415039,0.00515747,0.0065918,0.00805664,0.00872803,0.00665283,0.0050354,-6.10352e-05,-0.0017395,-0.00558472,-0.0100098,-0.0157166,-0.0225525,-0.0282593,-0.0310059,-0.0350342,-0.0400085,-0.0438843,-0.0457764,-0.0447083,-0.0446472,-0.0436401,-0.0428162,-0.0401306,-0.0392761,-0.0344238,-0.0287781,-0.0226135,-0.0174561,-0.013092,-0.0062561,0.00280762,0.0110779,0.0189819,0.0253601,0.0315552,0.0377808,0.0447083,0.0507507,0.0547791,0.0570374,0.0579224,0.0576477,0.0563049,0.0540161,0.0498047,0.0457153,0.0395203,0.0305481,0.0234985,0.0182495,0.0138245,0.00531006,-0.00228882,-0.00906372,-0.013092,-0.0151672,-0.0162964,-0.0175781,-0.0224304,-0.0271912,-0.0279846,-0.0187988,-0.00866699,-0.00793457,-0.015564,-0.0128174,-0.000610352,0.00924683,0.0144348,0.0126038,0.00860596,0.00952148,0.0148315,0.0195312,0.0162964,0.00991821,-0.00140381,-0.00604248,-0.0101929,-0.0162354,-0.0250244,-0.0360413,-0.0475159,-0.0545044,-0.057251,-0.0618286,-0.0634155,-0.0630188,-0.0606689,-0.0617371,-0.0587158,-0.0508728,-0.039856,-0.0309448,-0.0263062,-0.0235596,-0.0169678,-0.00958252,-0.00167847,0.00665283,0.013092,0.0144958,0.0188599,0.0270386,0.0367126,0.0475159,0.0556946,0.0571289,0.0578613,0.0636292,0.0729675,0.0784607,0.0767822,0.0709534,0.0646362,0.0578003,0.0522766,0.0444336,0.0346985,0.0241699,0.0140991,0.00759888,0.00180054,-0.00201416,-0.00195312,-0.00390625,-0.00683594,-0.00765991,-0.00726318,-0.00759888,-0.00704956,-0.00692749,-0.00592041,-0.0088501,-0.0145569,-0.017395,-0.0183105,-0.0170593,-0.017395,-0.0214844,-0.0221558,-0.0198669,-0.0140381,-0.00878906,-0.00531006,-0.00564575,-0.0050354,-0.00827026,-0.0157776,-0.0218811,-0.029541,-0.0393982,-0.0558472,-0.0753784,-0.0917358,-0.104034,-0.110138,-0.115173,-0.119659,-0.121002,-0.116974,-0.105499,-0.0899353,-0.0725403,-0.0578003,-0.0427551,-0.0285339,-0.0134888,0.00213623,0.0159607,0.0279236,0.0349731,0.0410767,0.0464478,0.0534973,0.0617371,0.0693359,0.0780029,0.0877075,0.0940247,0.102203,0.113617,0.124176,0.128723,0.127106,0.120148,0.113434,0.10556,0.0955811,0.07901,0.0596008,0.0400085,0.0203247,0.00469971,-0.00805664,-0.0161743,-0.0236816,-0.0283813,-0.0317993,-0.0301208,-0.0226746,-0.0139465,-0.0050354,-0.00100708,0.00213623,0.00793457,0.0144958,0.0197449,0.0212097,0.0202637,0.0191956,0.0179138,0.0150452,0.00991821,0.00222778,-0.00637817,-0.0191345,-0.0367126,-0.0545044,-0.0711365,-0.0914001,-0.11618,-0.140076,-0.15744,-0.16626,-0.16861,-0.170197,-0.169128,-0.158997,-0.142883,-0.126587,-0.112701,-0.0978699,-0.0811462,-0.0620117,-0.0461121,-0.0332336,-0.0232849,-0.0118713,0.000274658,0.0107422,0.0191956,0.0302124,0.0448303,0.0606689,0.07724,0.0932312,0.110199,0.128784,0.145966,0.157654,0.162628,0.161072,0.154694,0.145721,0.134094,0.118195,0.0977783,0.0758362,0.0559082,0.0404053,0.028717,0.020874,0.0161743,0.0149536,0.0142212,0.0187988,0.0244446,0.0291138,0.0325623,0.0352478,0.0348206,0.0310059,0.0292053,0.0272522,0.024292,0.0158386,0.00946045,0.00436401,0.0038147,0.00463867,0.00262451,-0.0017395,-0.00302124,-0.00497437,-0.00958252,-0.0187378,-0.0340881,-0.0541687,-0.0777283,-0.100616,-0.120819,-0.138855,-0.156036,-0.171814,-0.180939,-0.181549,-0.175781,-0.164581,-0.152679,-0.140259,-0.126923,-0.110016,-0.0891418,-0.0707397,-0.0569763,-0.0454407,-0.037262,-0.028717,-0.020874,-0.013031,-0.00167847,0.0103455,0.0223389,0.0354919,0.052948,0.0744324,0.0973816,0.116302,0.131012,0.144226,0.155853,0.165314,0.168121,0.165497,0.156189,0.143768,0.13028,0.113037,0.0948486,0.0756531,0.0583801,0.0401306,0.0232239,0.0102539,0.00463867,0.00234985,-0.000610352,-0.00509644,-0.00491333,0.00146484,0.00738525,0.0109253,0.013031,0.0139465,0.0152283,0.0182495,0.0201416,0.0191956,0.017395,0.01651,0.0153809,0.0106812,0.0032959,-0.00448608,-0.0142822,-0.0318909,-0.0518188,-0.0696106,-0.0795898,-0.0881958,-0.098999,-0.11203,-0.123077,-0.126984,-0.123962,-0.120483,-0.121277,-0.127716,-0.129791,-0.125366,-0.117462,-0.111481,-0.108124,-0.103973,-0.0967102,-0.0885315,-0.0802002,-0.0661621,-0.0478516,-0.0265198,-0.00979614,0.00979614,0.0324707,0.0608215,0.0886536,0.11203,0.12854,0.140015,0.151276,0.1633,0.171814,0.169128,0.161957,0.153107,0.14389,0.129944,0.11377,0.0991211,0.0830994,0.0630798,0.0404053,0.0227661,0.0123596,0.00195312,-0.0117493,-0.0241699,-0.0322876,-0.0340881,-0.0308838,-0.0282593,-0.0271912,-0.0246277,-0.0185852,-0.0110168,-0.00442505,0.00274658,0.0120239,0.0212097,0.0265198,0.0241699,0.0214233,0.020813,0.0148926,-0.0017395,-0.0220032,-0.0386658,-0.0482483,-0.0577087,-0.0704651,-0.0838928,-0.0921631,-0.0949097,-0.094635,-0.0973816,-0.100342,-0.106842,-0.107849,-0.107666,-0.10907,-0.111877,-0.11203,-0.111603,-0.11203,-0.112762,-0.107574,-0.0955811,-0.0804749,-0.0634155,-0.0465698,-0.0234985,0.00665283,0.0392761,0.0714111,0.0992126,0.120392,0.141815,0.160278,0.176575,0.182831,0.181488,0.17746,0.167511,0.155365,0.143036,0.125854,0.106903,0.0855713,0.0614929,0.0401306,0.0241699,0.00958252,-0.00598145,-0.0203247,-0.0334778,-0.0405273,-0.0419617,-0.040863,-0.0401917,-0.0395203,-0.0376587,-0.0328064,-0.0256348,-0.0158997,-0.0067749,0.00357056,0.0129395,0.0175781,0.0228882,0.029541,0.0294495,0.0210876,0.00750732,-0.00564575,-0.0161743,-0.0259094,-0.0383301,-0.0532227,-0.06604,-0.0752258,-0.0798035,-0.0842285,-0.089325,-0.0963135,-0.101135,-0.104309,-0.107117,-0.110199,-0.111267,-0.112091,-0.117737,-0.119659,-0.120209,-0.115173,-0.104828,-0.0924988,-0.0791321,-0.0643616,-0.0426331,-0.0135498,0.0187988,0.0500793,0.0795288,0.10321,0.126862,0.152008,0.171021,0.183624,0.185181,0.182495,0.176392,0.167511,0.154785,0.135834,0.115173,0.0904846,0.065033,0.0420837,0.0228882,0.00564575,-0.0116882,-0.0265198,-0.0374451,-0.0414734,-0.0411987,-0.0377808,-0.0356445,-0.0326233,-0.0263062,-0.0176392,-0.0101318,-0.000671387,0.0107422,0.0211487,0.0275269,0.028717,0.0310669,0.0332336,0.0338135,0.0253601,0.00991821,-0.00442505,-0.0152283,-0.0247803,-0.0344238,-0.0471802,-0.0596008,-0.0673828,-0.0727539,-0.0765076,-0.0819397,-0.0879211,-0.09375,-0.0971985,-0.102631,-0.110596,-0.114441,-0.115967,-0.119537,-0.126587,-0.13147,-0.129333,-0.121216,-0.109344,-0.0960999,-0.081604,-0.061615,-0.0337524,-0.00128174,0.0335693,0.065033,0.0908203,0.113098,0.136444,0.158936,0.173706,0.179993,0.177399,0.169403,0.159546,0.14859,0.133972,0.111267,0.0861816,0.0620728,0.0430908,0.0266418,0.0101318,-0.00509644,-0.0147095,-0.0234985,-0.0283203,-0.0309448,-0.0284424,-0.024292,-0.0200806,-0.0184021,-0.0163879,-0.0115356,-0.0020752,0.00906372,0.0159607,0.0194092,0.0227661,0.028595,0.0375977,0.0400696,0.0357056,0.0292053,0.0228271,0.0144348,0.00738525,-0.00189209,-0.0133667,-0.025238,-0.0346985,-0.0446472,-0.0547791,-0.0641785,-0.0734253,-0.0817566,-0.0934143,-0.105103,-0.114716,-0.120941,-0.126984,-0.134369,-0.141876,-0.144958,-0.145569,-0.14093,-0.131958,-0.119659,-0.104218,-0.0846252,-0.0604858,-0.0312805,0.00234985,0.0344238,0.0618896,0.0877991,0.112274,0.136841,0.157043,0.168518,0.172546,0.169952,0.16571,0.1586,0.146454,0.126709,0.10321,0.0783997,0.0579224,0.037262,0.0139465,-0.00643921,-0.0232849,-0.0357056,-0.0465088,-0.0545044,-0.057251,-0.0560303,-0.0496521,-0.0434875,-0.0358276,-0.0259705,-0.0103455,0.00738525,0.0238342,0.0362549,0.0475769,0.0625,0.0759888,0.0830078,0.0823669,0.079071,0.0737,0.0643616,0.0512085,0.0368347,0.0209961,0.00524902,-0.00918579,-0.0214233,-0.0343628,-0.0484619,-0.0630188,-0.077179,-0.0882568,-0.101624,-0.115448,-0.126434,-0.134644,-0.141083,-0.147186,-0.152222,-0.151947,-0.148804,-0.137726,-0.124359,-0.109253,-0.0940247,-0.0748291,-0.0487366,-0.0198059,0.00805664,0.0342407,0.0566406,0.078064,0.0995483,0.117401,0.12912,0.133362,0.133636,0.124908,0.116241,0.102753,0.0864563,0.061554,0.0338135,0.0071106,-0.0204773,-0.0476379,-0.0764465,-0.0984497,-0.113037,-0.121002,-0.126923,-0.123688,-0.106171,-0.0758362,-0.0423584,-0.015564,0.0103455,0.0476379,0.0917358,0.126648,0.145721,0.162964,0.181763,0.196106,0.192749,0.17572,0.15979,0.144958,0.119934,0.0873108,0.057251,0.0358276,0.0185852,0.000396729,-0.0214233,-0.039856,-0.0476379,-0.0491333,-0.0489197,-0.0504761,-0.053009,-0.053833,-0.0508728,-0.0476379,-0.0469666,-0.048584,-0.0517578,-0.058197,-0.0640869,-0.0683899,-0.0689392,-0.0683899,-0.0715332,-0.0763245,-0.0767212,-0.0730286,-0.0653687,-0.0555115,-0.0482483,-0.0411377,-0.0351562,-0.0304565,-0.0259705,-0.0226135,-0.0209351,-0.0222778,-0.0244446,-0.0272522,-0.0283203,-0.0271301,-0.0257874,-0.0236816,-0.0218201,-0.0194702,-0.0153809,-0.00692749,0.00698853,0.0215454,0.0319519,0.0410156,0.049469,0.06073,0.0705261,0.0770569,0.0821533,0.0862427,0.0878601,0.0881348,0.086792,0.0867004,0.0845642,0.0795288,0.0719604,0.0658264,0.061676,0.0590515,0.0541077,0.0475159,0.040863,0.0355835,0.0303345,0.0239563,0.0187988,0.0148315,0.0101318,0.00476074,0.00128174,-0.00112915,-0.00241089,-0.003479,-0.00543213,-0.0083313,-0.0108032,-0.0125427,-0.0151672,-0.0171814,-0.0226135,-0.0268555,-0.0340881,-0.0394592,-0.0474548,-0.0531616,-0.0604858,-0.0674438,-0.0751648,-0.0831604,-0.0885315,-0.0920715,-0.0944214,-0.0970459,-0.0976562,-0.094635,-0.0899353,-0.0839539,-0.0779114,-0.0704651,-0.0633545,-0.0556946,-0.0471802,-0.0389404,-0.0296021,-0.021759,-0.0132141,-0.00442505,0.00396729,0.0131531,0.0203247,0.0281067,0.0348206,0.0426941,0.0493164,0.053833,0.0588074,0.0640259,0.0665894,0.0670471,0.0664978,0.0656433,0.0654907,0.0622864,0.0590515,0.0539551,0.0499878,0.0457153,0.0415344,0.036438,0.0314636,0.0260315,0.0209961,0.0167236,0.0128174,0.00793457,0.00537109,0.00302124,0.00100708,-0.000671387,-0.00189209,-0.00274658,-0.00308228,-0.00289917,-0.0038147,-0.00430298,-0.00604248,-0.00692749,-0.00933838,-0.0114136,-0.0144958,-0.0173035,-0.0210876,-0.0263672,-0.0305481,-0.0349731,-0.0413513,-0.0464478,-0.0518799,-0.0562439,-0.0623474,-0.0656433,-0.0692749,-0.070282,-0.0711365,-0.0716858,-0.0711365,-0.0690613,-0.0646973,-0.0614014,-0.0560303,-0.0498657,-0.0413513,-0.0311279,-0.0220032,-0.0114136,-0.00088501,0.0100708,0.0209351,0.0309448,0.0396729,0.048645,0.0545654,0.0602722,0.0643005,0.0687866,0.0697327,0.0697327,0.0684509,0.0662537,0.0636902,0.0605469,0.057251,0.0534973,0.0510864,0.0470581,0.0433655,0.0402832,0.0384521,0.0348206,0.0331421,0.028717,0.0260315,0.0224304,0.0191956,0.0157166,0.0118103,0.00973511,0.00497437,0.000671387,-0.00314331,-0.00549316,-0.00924683,-0.0120239,-0.0155029,-0.0182495,-0.0204773,-0.0222778,-0.0256958,-0.0283813,-0.0310669,-0.0344849,-0.0384521,-0.041687,-0.0448303,-0.0481262,-0.0518188,-0.0544434,-0.0579224,-0.0603333,-0.0621643,-0.0626831,-0.0633545,-0.0637512,-0.0630798,-0.061554,-0.0579834,-0.0543518,-0.0505981,-0.0459595,-0.040741,-0.0335693,-0.0271912,-0.0197449,-0.0115356,-0.00323486,0.0065918,0.0150452,0.0237732,0.0310669,0.0401917,0.0466309,0.0540161,0.0598755,0.0655823,0.0696106,0.0724182,0.0734253,0.0725403,0.0718079,0.0705261,0.0680542,0.0644836,0.0608826,0.0555115,0.0514221,0.0464478,0.0414734,0.0354309,0.0299377,0.0239563,0.0194702,0.0150452,0.0102539,0.00482178,0.00128174,-0.00308228,-0.00692749,-0.00918579,-0.012085,-0.0139465,-0.0152283,-0.0167236,-0.0173035,-0.0177307,-0.0189819,-0.019928,-0.021759,-0.0232239,-0.0256958,-0.0292053,-0.032135,-0.036438,-0.0401917,-0.0449829,-0.0492554,-0.0544434,-0.0580444,-0.0621643,-0.0648193,-0.0663147,-0.0679321,-0.0677795,-0.0677795,-0.0649719,-0.0623474,-0.0587158,-0.0541077,-0.0479126,-0.0404663,-0.0328064,-0.026123,-0.0173035,-0.00845337,0.000396729,0.00866699,0.0181885,0.0262451,0.0349731,0.0420227,0.0478516,0.0551758,0.06073,0.0633545,0.0661621,0.068512,0.0691223,0.0684509,0.0654297,0.0632935,0.0596619,0.0566406,0.049408,0.0440369,0.0380554,0.033905,0.0269165,0.0222168,0.0183105,0.0148315,0.0117493,0.00772095,0.00497437,0.00396729,0.00100708,-0.00195312,-0.00469971,-0.00469971,-0.0067749,-0.00744629,-0.0085144,-0.0083313,-0.00839233,-0.00698853,-0.00772095,-0.00744629,-0.00671387,-0.00570679,-0.00750732,-0.00979614,-0.0140381,-0.0177917,-0.0230103,-0.0278625,-0.0344849,-0.0390015,-0.0434265,-0.0483093,-0.0515442,-0.0541077,-0.0551147,-0.0568542,-0.0564575,-0.0558472,-0.053833,-0.0511475,-0.0472412,-0.0429688,-0.0376587,-0.0330811,-0.0283813,-0.0234375,-0.0184021,-0.0118713,-0.00524902,0.00213623,0.00631714,0.0108032,0.0174561,0.024292,0.0292664,0.0334167,0.0377808,0.0411377,0.0433655,0.0477295,0.0510864,0.0540161,0.0545044,0.0522766,0.0520935,0.0526123,0.0516052,0.0498047,0.0475159,0.0437622,0.0402832,0.0370483,0.0366516,0.0336304,0.0293274,0.0214233,0.015625,0.012085,0.00765991,-0.000396729,-0.00616455,-0.00918579,-0.0157776,-0.0200806,-0.0203247,-0.0185242,-0.0172424,-0.0178528,-0.0170593,-0.0142212,-0.0120239,-0.0123596,-0.0138245,-0.015564,-0.0177307,-0.020874,-0.0248413,-0.0293884,-0.033905,-0.0390015,-0.040863,-0.0440369,-0.0449829,-0.0443726,-0.0437012,-0.041687,-0.038269,-0.0339661,-0.0296021,-0.0271912,-0.0234985,-0.0225525,-0.0215454,-0.0214233,-0.0231018,-0.0228271,-0.0234985,-0.0229492,-0.0205994,-0.0170593,-0.0128174,-0.00805664,-0.00112915,0.00671387,0.0133667,0.0196533,0.0269775,0.0316772,0.0401306,0.0467224,0.0489197,0.0511475,0.0512695,0.0491333,0.0512085,0.0536194,0.0498047,0.0422974,0.0422058,0.041687,0.0393982,0.0355835,0.0316162,0.0261841,0.0179138,0.0122681,0.00817871,-0.00195312,-0.0110779,-0.0177917,-0.0236816,-0.0301208,-0.0376587,-0.0365906,-0.0307312,-0.0297852,-0.0257874,-0.0173035,-0.00924683,-0.00549316,-0.00375366,-0.00140381,-0.000335693,-0.00247192,-0.00524902,-0.00759888,-0.0115356,-0.015625,-0.0197449,-0.0221558,-0.0260315,-0.0275269,-0.0279846,-0.0269775,-0.027771,-0.025238,-0.0201416,-0.0167236,-0.0174561,-0.0177917,-0.0176392,-0.0203247,-0.0230103,-0.0226746,-0.0215454,-0.0127563,-0.00430298,-0.000335693,0.00457764,0.0101318,0.0198059,0.0301208,0.0302734,0.0309448,0.0353088,0.0401306,0.0508118,0.0542297,0.041748,0.0246887,0.0178528,0.0257874,0.0331421,0.0278625,0.0120239,0.00939941,0.0223389,0.0362549,0.0411377,0.0361023,0.0258484,0.0179138,0.0219421,0.0218201,0.0151672,0.00112915,-0.0179749,-0.0389404,-0.0518799,-0.0592041,-0.065979,-0.0690002,-0.0653076,-0.0630798,-0.0542297,-0.0357056,-0.0194702,-0.00650024,0.00134277,0.00430298,0.00570679,0.00805664,0.00805664,0.00576782,-6.10352e-05,-0.0134277,-0.0270386,-0.036499,-0.038269,-0.036377,-0.0328064,-0.0273743,-0.019989,-0.00991821,0.00692749,0.024292,0.0356445,0.0414734,0.0405273,0.0369873,0.0336304,0.0324097,0.026123,0.0187988,0.00811768,-0.00222778,-0.00637817,-0.00564575,-0.00088501,0.00637817,0.0134888,0.0191345,0.0256958,0.0313416,0.0388489,0.0412903,0.0377197,0.0294495,0.0157166,0.00262451,-0.00924683,-0.019928,-0.0240173,-0.0194092,-0.017395,-0.0174561,-0.0169678,-0.00906372,0.00213623,0.00531006,-0.00650024,-0.0221558,-0.0328979,-0.0477295,-0.0712891,-0.0915527,-0.102966,-0.108673,-0.107513,-0.103424,-0.094696,-0.0748901,-0.0491333,-0.0301208,-0.0139465,-0.00430298,0.00274658,0.0113525,0.0184631,0.0173035,0.00878906,0.00195312,-0.00296021,-0.0123596,-0.0204773,-0.0205383,-0.0120239,-0.00189209,0.00402832,0.0114746,0.0341492,0.0646362,0.0865784,0.0958557,0.0979919,0.0975952,0.0940247,0.085907,0.0723572,0.0588684,0.0488586,0.0457153,0.0410156,0.0418091,0.0475769,0.0583191,0.0693359,0.0711365,0.0664978,0.0600586,0.057373,0.0534363,0.041626,0.0232239,0.00491333,-0.0118103,-0.0289917,-0.0428772,-0.0528259,-0.0595398,-0.0606079,-0.0559082,-0.0512085,-0.0443726,-0.0357666,-0.025177,-0.0212708,-0.0259705,-0.0436401,-0.0640869,-0.0733032,-0.0780029,-0.085022,-0.0912781,-0.0934143,-0.0882568,-0.0740356,-0.0567017,-0.0426941,-0.0302734,-0.0198669,-0.016571,-0.0195923,-0.025177,-0.0292664,-0.0361633,-0.0455627,-0.0584717,-0.0720825,-0.0775146,-0.0757141,-0.0677185,-0.0568542,-0.0434875,-0.028595,-0.0105896,0.0161133,0.0458374,0.0708008,0.0926208,0.108124,0.119476,0.127319,0.133087,0.131622,0.132416,0.133484,0.130798,0.122498,0.11618,0.115631,0.115112,0.106323,0.0852966,0.0587158,0.0386658,0.0237732,0.0065918,-0.0161133,-0.0361633,-0.0480652,-0.0546875,-0.0638428,-0.0712891,-0.0710754,-0.0583801,-0.0428772,-0.0367126,-0.0317383,-0.0204163,-0.00482178,0.00469971,0.00189209,-0.0148315,-0.0290527,-0.0330811,-0.0380554,-0.0446472,-0.0510864,-0.0462341,-0.036438,-0.0269165,-0.0189819,-0.0138855,-0.00650024,-0.00268555,-0.00979614,-0.0281067,-0.0488586,-0.0657043,-0.0812073,-0.0977783,-0.116241,-0.133698,-0.140198,-0.137054,-0.128937,-0.116119,-0.09552,-0.0701294,-0.0427551,-0.0110779,0.0238953,0.0597229,0.0925598,0.115112,0.132019,0.146851,0.161804,0.169861,0.171204,0.165375,0.160553,0.155579,0.149139,0.133972,0.114227,0.0977173,0.078125,0.0509338,0.0204773,-0.0071106,-0.0281067,-0.0458374,-0.0649719,-0.0871277,-0.0987244,-0.0970459,-0.0942993,-0.0956421,-0.0922852,-0.0808716,-0.0582581,-0.0371094,-0.0238342,-0.0138855,0.0038147,0.0195312,0.0240173,0.017395,0.00878906,0.00952148,0.0162354,0.016571,0.00570679,0.00497437,0.0145569,0.0241699,0.0224915,0.0139465,0.00323486,-0.00537109,-0.0184631,-0.041626,-0.0711975,-0.0953674,-0.110413,-0.123505,-0.13858,-0.153229,-0.157654,-0.146637,-0.130676,-0.11673,-0.10022,-0.0716248,-0.0341492,0.00442505,0.040863,0.0771179,0.11261,0.141754,0.15979,0.172638,0.186035,0.198059,0.201019,0.193909,0.179993,0.167664,0.158203,0.142548,0.113281,0.0769958,0.0443115,0.016449,-0.0126953,-0.0438843,-0.0710754,-0.0891418,-0.103699,-0.118591,-0.129059,-0.12793,-0.119934,-0.110535,-0.100067,-0.0888062,-0.0738831,-0.0513306,-0.0269775,-0.0102539,0.00201416,0.00918579,0.0151062,0.0210876,0.0258484,0.0293884,0.032135,0.0347595,0.0324707,0.0319519,0.0390015,0.0437012,0.0404053,0.0308838,0.0149536,-0.00302124,-0.0215454,-0.0414124,-0.0701904,-0.0977173,-0.121552,-0.139191,-0.152008,-0.159271,-0.159454,-0.15155,-0.137726,-0.123169,-0.104553,-0.0753174,-0.038269,-0.00180054,0.0355835,0.0686035,0.10141,0.131683,0.157104,0.176117,0.189209,0.200195,0.203369,0.202026,0.196716,0.187195,0.174316,0.155792,0.126099,0.0904846,0.0555115,0.0228271,-0.0088501,-0.041748,-0.0741577,-0.100281,-0.117249,-0.131348,-0.141418,-0.142273,-0.137054,-0.12793,-0.118256,-0.103485,-0.0831604,-0.058197,-0.033905,-0.0133667,0.00161743,0.0136108,0.0246277,0.0351562,0.0434265,0.0467834,0.0488586,0.0503235,0.0508728,0.0532837,0.057251,0.056366,0.0489197,0.037262,0.0236816,0.00732422,-0.0105896,-0.0337524,-0.0596008,-0.0839539,-0.108002,-0.128723,-0.147583,-0.161804,-0.169952,-0.169525,-0.162292,-0.149872,-0.132965,-0.107117,-0.0757751,-0.0422974,-0.00750732,0.0289307,0.0626831,0.0944214,0.122559,0.142883,0.162415,0.179077,0.188812,0.190491,0.187714,0.180603,0.172699,0.157928,0.131805,0.0986633,0.0634155,0.0292053,-0.00524902,-0.0404663,-0.07724,-0.10733,-0.13028,-0.146454,-0.155457,-0.157928,-0.150146,-0.137512,-0.12088,-0.101624,-0.0756531,-0.0472412,-0.0179749,0.00878906,0.0323486,0.0513306,0.0671692,0.0792542,0.085907,0.0849609,0.0845032,0.0873718,0.0840149,0.0733643,0.0643616,0.0629578,0.0588074,0.0480652,0.0326843,0.0203247,0.00933838,-0.00357056,-0.019989,-0.0383911,-0.053894,-0.0696106,-0.0845642,-0.0948486,-0.103363,-0.111877,-0.113953,-0.109528,-0.105042,-0.0969849,-0.0829468,-0.0674438,-0.0505371,-0.0333557,-0.017395,-0.00088501,0.0142822,0.0270386,0.0421448,0.0578613,0.0687866,0.074707,0.0765076,0.0739746,0.0669861,0.0541077,0.0323486,0.00476074,-0.0228271,-0.0455627,-0.0630188,-0.0771179,-0.0915527,-0.103302,-0.106384,-0.0922241,-0.0674438,-0.0459595,-0.0307312,-0.00704956,0.0280457,0.0632935,0.0869141,0.0994568,0.10672,0.112549,0.110931,0.102478,0.0950928,0.0880432,0.0767212,0.0608826,0.0498657,0.0433044,0.0457764,0.0503235,0.0534363,0.0564575,0.0620728,0.0729675,0.0829468,0.0869751,0.0820923,0.0744934,0.0646362,0.0505981,0.03302,0.0161743,-0.00201416,-0.0216064,-0.0426331,-0.0592041,-0.0719604,-0.0769958,-0.0775757,-0.0748901,-0.0697937,-0.061554,-0.0502014,-0.0375061,-0.0255127,-0.0181274,-0.0161743,-0.0147095,-0.0144958,-0.0150452,-0.0171814,-0.0232239,-0.0309448,-0.0414734,-0.0505981,-0.06073,-0.0693359,-0.0756531,-0.0810852,-0.0808105,-0.0778503,-0.0717468,-0.0636292,-0.0496521,-0.0361023,-0.0244446,-0.0138855,-0.00201416,0.00827026,0.0167847,0.0214844,0.0257874,0.0264587,0.0270386,0.0252991,0.0228271,0.0200806,0.0198669,0.0201416,0.019928,0.0216064,0.0262451,0.0326233,0.0404663,0.0471191,0.0516663,0.0567017,0.0583191,0.0569153,0.0547791,0.048645,0.0396729,0.0298767,0.0197449,0.00967407,-0.000671387,-0.00985718,-0.0182495,-0.0258484,-0.0294495,-0.0308838,-0.0289917,-0.0267029,-0.0224304,-0.0162354,-0.0120239,-0.00878906,-0.00683594,-0.00476074,-0.0062561,-0.0113525,-0.0171814,-0.0233459,-0.0273743,-0.0333557,-0.0378418,-0.041748,-0.0448303,-0.0446472,-0.0435486,-0.0433655,-0.0420837,-0.0403442,-0.0371094,-0.0349121,-0.0328064,-0.0303345,-0.0271301,-0.024292,-0.0221558,-0.020813,-0.0180664,-0.0152283,-0.0142212,-0.0114136,-0.00845337,-0.00448608,0.000671387,0.00817871,0.0138245,0.0201416,0.0271912,0.0350342,0.041687,0.0473938,0.0522156,0.0575256,0.0617371,0.0644836,0.0665894,0.0663757,0.0636292,0.0601501,0.0536804,0.0465088,0.037384,0.0290527,0.0200806,0.012146,0.00482178,-0.00180054,-0.00592041,-0.00924683,-0.0115356,-0.013092,-0.0134277,-0.0137024,-0.0124817,-0.0112,-0.0113525,-0.0101929,-0.0104675,-0.0115967,-0.0151672,-0.019928,-0.0255737,-0.0308838,-0.0356445,-0.0385132,-0.0424805,-0.0435486,-0.0428772,-0.040802,-0.0394592,-0.0371094,-0.0354919,-0.0315552,-0.029541,-0.0282593,-0.0281982,-0.0275269,-0.0269775,-0.0275269,-0.0292053,-0.0291138,-0.028595,-0.0271912,-0.0263672,-0.0232849,-0.0198059,-0.0144958,-0.0107422,-0.0050354,0.0017395,0.0100098,0.0173035,0.0238342,0.0305481,0.0353699,0.0404053,0.0448303,0.049469,0.053772,0.0586548,0.0620117,0.065918,0.069458,0.0683899,0.0675049,0.0649719,0.061676,0.0545044,0.0481262,0.0393372,0.0317993,0.0254517,0.0177917,0.0109253,0.00537109,-0.000946045,-0.00543213,-0.00772095,-0.00906372,-0.0105896,-0.0106812,-0.0118713,-0.0128174,-0.0139465,-0.0125427,-0.0158386,-0.0193176,-0.024231,-0.0281067,-0.0303955,-0.0325623,-0.0347595,-0.037384,-0.0381165,-0.0377808,-0.0381165,-0.036499,-0.036438,-0.0353088,-0.0349731,-0.0356445,-0.0361633,-0.0383911,-0.0390625,-0.0404053,-0.0426941,-0.0462341,-0.0475769,-0.0496521,-0.0483093,-0.0459595,-0.0445557,-0.041687,-0.0359192,-0.0288696,-0.0209351,-0.012146,-0.00289917,0.00570679,0.0138245,0.0221558,0.0303345,0.0370483,0.0433044,0.0491943,0.0541077,0.0597229,0.0638428,0.0666504,0.0687256,0.0683289,0.0679321,0.0658264,0.0618896,0.0578613,0.0534363,0.0478516,0.0420837,0.0346375,0.028595,0.0221558,0.016571,0.0105896,0.00549316,0.0017395,-0.00128174,-0.00302124,-0.00598145,-0.00750732,-0.00979614,-0.0113525,-0.0135498,-0.015625,-0.0191956,-0.0205994,-0.0229492,-0.0241699,-0.0259094,-0.0261841,-0.0259094,-0.0245667,-0.0248413,-0.0257874,-0.0273743,-0.0279236,-0.0292664,-0.0314636,-0.0338135,-0.037384,-0.0391846,-0.040863,-0.0428162,-0.0444946,-0.0449829,-0.0455017,-0.0457153,-0.0437622,-0.0420227,-0.0383301,-0.0350952,-0.0312805,-0.026123,-0.0223389,-0.0178528,-0.0126953,-0.00744629,-0.00268555,0.00262451,0.00817871,0.0153809,0.0223389,0.0288696,0.0358276,0.041687,0.0477905,0.0528259,0.0554504,0.0560303,0.0557861,0.0536804,0.0509338,0.0471802,0.0444946,0.0403442,0.0361633,0.0311279,0.0273132,0.0254517,0.0239563,0.0226746,0.021759,0.0221558,0.0235596,0.0257874,0.0267029,0.0265808,0.025116,0.0222778,0.0179138,0.0131531,0.00866699,0.0038147,-0.00213623,-0.0062561,-0.0110779,-0.0157166,-0.0186462,-0.0211487,-0.0237732,-0.025177,-0.0280457,-0.0296631,-0.0322876,-0.0331421,-0.0344849,-0.0365906,-0.0390015,-0.041748,-0.0433655,-0.0455017,-0.046051,-0.0479126,-0.0473938,-0.0461731,-0.0453796,-0.0423584,-0.0376587,-0.0326843,-0.0263062,-0.0166321,-0.00799561,0.00469971,0.0180664,0.0253601,0.0278625,0.0301208,0.0314636,0.0297241,0.0218201,0.011261,0.000274658,-0.00457764,-0.00967407,-0.0147095,-0.0202637,-0.0210876,-0.0149536,-0.00247192,0.00958252,0.0202026,0.029541,0.0409546,0.0551758,0.0626831,0.0625,0.0574646,0.053894,0.0477905,0.0415344,0.0343628,0.026123,0.0172424,0.0110779,0.00564575,0.00363159,0.0050354,0.00268555,0.000610352,0.00396729,0.00906372,0.00991821,0.0110168,0.00860596,0.00296021,-0.000213623,-0.00537109,-0.0127563,-0.020874,-0.0282593,-0.0356445,-0.0428772,-0.0477905,-0.0517578,-0.0522766,-0.0524902,-0.0526123,-0.048584,-0.0434265,-0.0358276,-0.0302734,-0.025177,-0.0205994,-0.0148315,-0.0123596,-0.0124207,-0.0126953,-0.0137024,-0.0144958,-0.0157776,-0.0194092,-0.0238342,-0.0248413,-0.026123,-0.0269165,-0.0200806,-0.0147705,-0.0135498,-0.00363159,0.00549316,0.00973511,0.0137024,0.0177917,0.0162354,0.0123596,0.0214844,0.024292,0.0191956,0.019928,0.0193176,0.019928,0.0153809,0.013031,0.0105286,0.0138245,0.0115356,0.00772095,0.013092,0.0189819,0.024292,0.0223389,0.0268555,0.0299377,0.0297852,0.0309448,0.0265198,0.0198669,0.0154419,0.0118103,0.00592041,-0.00241089,-0.00750732,-0.00549316,-0.00469971,-0.00189209,-0.000274658,0.00463867,0.0103455,0.0143738,0.0134277,0.00683594,0.00537109,0.0020752,-0.00357056,-0.0148315,-0.0279846,-0.0352478,-0.0394592,-0.0446472,-0.0528259,-0.0574646,-0.0509949,-0.0458374,-0.0403442,-0.0322266,-0.0232849,-0.0124207,0.000549316,0.00738525,0.00570679,0.00817871,0.0153809,0.0181885,0.00933838,0.0050354,0.00012207,-0.00146484,-0.0101929,-0.0142212,-0.00939941,-0.00543213,0.000396729,0.00726318,0.0221558,0.0303955,0.0231018,0.0206604,0.0233459,0.0269775,0.0267944,0.0083313,-0.00958252,-0.0200806,-0.0224915,-0.0265808,-0.0318909,-0.0312805,-0.0326233,-0.0239563,-0.0102539,0.00363159,0.0128784,0.0221558,0.0312805,0.0317993,0.0345764,0.0266418,0.0168457,0.0152893,0.0101929,0.0065918,0.00100708,-0.000946045,-0.000946045,0.000396729,0.00448608,0.00732422,0.0108643,0.0142822,0.0158997,0.0182495,0.0173035,0.011261,0.00256348,-0.00408936,-0.00952148,-0.0158386,-0.0194702,-0.0211487,-0.0201416,-0.0118713,-0.00592041,-0.00570679,-0.00698853,-0.0020752,0.00415039,0.00750732,0.00827026,0.0126953,0.0175781,0.020752,0.0169067,0.00958252,0.00543213,0.0065918,0.00939941,0.00341797,-0.00363159,0.00302124,0.0181274,0.0228882,0.00906372,-0.00369263,-0.00793457,-0.00509644,-0.0122681,-0.02771,-0.0455627,-0.0634155,-0.0724182,-0.078064,-0.0882568,-0.0908813,-0.0860291,-0.0706787,-0.0473938,-0.0260315,-0.0017395,0.0237732,0.0405273,0.0441589,0.0369873,0.032959,0.0299377,0.0228882,0.0145569,0.00509644,-0.000274658,-0.00167847,0.00161743,0.00650024,0.0151062,0.0187378,0.024353,0.0379333,0.049469,0.0532837,0.0490723,0.0443115,0.036438,0.0231018,0.00784302,-0.00134277,-0.000335693,0.00469971,0.00759888,0.0102539,0.0154419,0.0229492,0.0332947,0.0418701,0.0461121,0.0476379,0.0482483,0.0522156,0.0487366,0.0369263,0.0191345,-0.00012207,-0.0120239,-0.0131531,-0.0171204,-0.0331421,-0.0499878,-0.0510864,-0.0359802,-0.0316162,-0.045105,-0.0602722,-0.0692749,-0.0704651,-0.082428,-0.115784,-0.148743,-0.151886,-0.128662,-0.106903,-0.0986633,-0.0849609,-0.0600586,-0.0227661,0.0119324,0.0368347,0.0490723,0.0468445,0.0430908,0.0387268,0.0336304,0.012207,-0.00692749,-0.00991821,-0.00918579,-0.01651,-0.0269775,-0.025116,-0.0129395,-0.0012207,0.00280762,0.00637817,0.0210876,0.0386047,0.0508728,0.0552368,0.0561218,0.0536804,0.0554504,0.0606079,0.0619507,0.0649109,0.0777283,0.0933533,0.105103,0.113373,0.120056,0.130554,0.141266,0.138,0.115967,0.0913391,0.0726318,0.0505371,0.0239563,-0.00314331,-0.0289917,-0.0514221,-0.0698547,-0.0817566,-0.0912781,-0.0930176,-0.0915527,-0.0851135,-0.0786743,-0.0779114,-0.0832214,-0.0864563,-0.0908813,-0.104645,-0.119598,-0.127441,-0.126648,-0.115051,-0.0926208,-0.0699463,-0.0458374,-0.0137634,0.0194092,0.0428772,0.0561218,0.0595398,0.052948,0.0405273,0.0181885,-0.0125427,-0.0438232,-0.0640869,-0.0771179,-0.0914001,-0.108246,-0.11557,-0.110809,-0.0969238,-0.0841064,-0.0724182,-0.0502014,-0.0167847,0.0126953,0.0332947,0.0517578,0.0715332,0.0914001,0.11142,0.127258,0.139862,0.153961,0.172485,0.188934,0.201691,0.209076,0.211609,0.207336,0.191284,0.165588,0.136597,0.103973,0.0671082,0.0231018,-0.0167847,-0.0518799,-0.0812073,-0.108337,-0.128113,-0.13858,-0.14563,-0.143219,-0.129944,-0.112488,-0.0962524,-0.0814819,-0.0715332,-0.0642395,-0.0570374,-0.0523376,-0.0481873,-0.0413513,-0.0296631,-0.0175781,-0.00296021,0.0136108,0.0326233,0.0507507,0.065094,0.0696716,0.0625,0.0495911,0.0297241,0.0020752,-0.036499,-0.0747681,-0.104706,-0.127991,-0.149872,-0.169403,-0.176727,-0.174561,-0.165375,-0.155579,-0.142487,-0.11972,-0.0856323,-0.0496521,-0.0149536,0.0203247,0.0525513,0.0844421,0.11557,0.145844,0.173492,0.20578,0.231354,0.243103,0.249054,0.258057,0.259216,0.24411,0.214783,0.175629,0.134766,0.094574,0.0468445,-0.00448608,-0.0457153,-0.0753784,-0.107178,-0.139069,-0.159271,-0.166595,-0.162476,-0.156311,-0.156189,-0.147247,-0.11731,-0.085968,-0.0671082,-0.0531616,-0.0366516,-0.0162964,0.00515747,0.0173035,0.0241699,0.040863,0.0679932,0.0843506,0.091156,0.0949707,0.0965271,0.102081,0.0992737,0.0736389,0.0351562,0.00106812,-0.0291138,-0.0671082,-0.107574,-0.146576,-0.173645,-0.187592,-0.192352,-0.199799,-0.202026,-0.189392,-0.16861,-0.144226,-0.120605,-0.0931702,-0.0578003,-0.0107422,0.0315552,0.06604,0.0938416,0.128448,0.165833,0.199066,0.224976,0.238007,0.245392,0.254364,0.255035,0.240479,0.215027,0.185516,0.149658,0.108337,0.0602722,0.00564575,-0.0390015,-0.0710144,-0.100464,-0.138245,-0.167053,-0.178406,-0.176849,-0.169739,-0.164368,-0.158386,-0.139252,-0.104553,-0.078125,-0.0567932,-0.0312805,-0.00537109,0.0167847,0.0361633,0.0478516,0.0557861,0.0739746,0.0906067,0.091156,0.0885315,0.09375,0.0975952,0.0940247,0.0834351,0.0630188,0.0375977,0.0100708,-0.0273743,-0.0697327,-0.101013,-0.128723,-0.157532,-0.177521,-0.188202,-0.193634,-0.189545,-0.172821,-0.159546,-0.144379,-0.121735,-0.0914001,-0.0596619,-0.0241089,0.0117493,0.0461121,0.0780029,0.104095,0.126312,0.150269,0.176117,0.194916,0.203369,0.201294,0.200409,0.19577,0.183441,0.160553,0.126709,0.091156,0.058136,0.0206604,-0.0219421,-0.0612183,-0.0938416,-0.127106,-0.154968,-0.175903,-0.186035,-0.181824,-0.162628,-0.138062,-0.115509,-0.0869141,-0.053009,-0.020874,0.0108643,0.0327454,0.0434265,0.0579224,0.0742188,0.0884705,0.0959167,0.0970459,0.0923462,0.0848999,0.0813599,0.0720215,0.0638428,0.057251,0.0495911,0.0396729,0.0292664,0.0140991,-0.00402832,-0.0171204,-0.032135,-0.0512695,-0.0710754,-0.0837708,-0.0922241,-0.100464,-0.109924,-0.116974,-0.117126,-0.111023,-0.103699,-0.0920105,-0.0739746,-0.0518188,-0.0275269,-0.00537109,0.0147705,0.0323486,0.0508118,0.0680542,0.0798645,0.0856323,0.0841675,0.0831604,0.0813599,0.0734253,0.056366,0.0319519,0.00482178,-0.0287781,-0.0618286,-0.0869751,-0.0994568,-0.10202,-0.105377,-0.108246,-0.101807,-0.0802002,-0.0526733,-0.0331421,-0.0187988,0.00341797,0.0371704,0.0686646,0.0857849,0.09552,0.101959,0.103973,0.0951843,0.0812683,0.0698547,0.0630798,0.0549622,0.0418701,0.0317383,0.0299988,0.0342407,0.0466309,0.0617371,0.0725403,0.0823669,0.0919495,0.0973206,0.0984497,0.0907288,0.0761108,0.0549622,0.03302,0.00985718,-0.0128174,-0.0343628,-0.0534973,-0.070343,-0.0802612,-0.0875244,-0.0888062,-0.0820923,-0.073761,-0.0632324,-0.0490723,-0.0332947,-0.0193176,-0.00704956,0.00088501,0.00195312,-0.00604248,-0.0171814,-0.0297852,-0.040741,-0.053833,-0.0661621,-0.073822,-0.078125,-0.0803528,-0.0810852,-0.0795288,-0.0699463,-0.0575867,-0.0430908,-0.0291138,-0.0140381,0.000793457,0.0117493,0.0201416,0.025238,0.0270386,0.0270386,0.0244446,0.0197449,0.0144958,0.0112,0.00924683,0.00894165,0.0100708,0.0117493,0.0153809,0.0218201,0.0288696,0.0357666,0.0433655,0.0499878,0.0578003,0.065033,0.0689392,0.0710144,0.0701904,0.0658264,0.058136,0.0489197,0.0397339,0.0293884,0.0198059,0.012207,0.00616455,0.0012207,-0.000793457,-0.00280762,-0.00357056,-0.00280762,-0.00314331,-0.0038147,-0.00592041,-0.00900269,-0.0144958,-0.0197449,-0.0278625,-0.0388489,-0.0499878,-0.0601501,-0.0706177,-0.0811462,-0.0886536,-0.0919495,-0.0904846,-0.0856323,-0.0785217,-0.069458,-0.0575867,-0.046051,-0.0345764,-0.025116,-0.0191956,-0.0158386,-0.0141602,-0.0136108,-0.0166321,-0.0192566,-0.0222168,-0.0244446,-0.0245056,-0.0238342,-0.0224915,-0.0173035,-0.0108032,-0.00323486,0.00491333,0.0140991,0.0236816,0.0345764,0.0440979,0.0519409,0.0560303,0.0585327,0.0596619,0.0598145,0.0593262,0.0589294,0.0583801,0.0575256,0.0569153,0.0571289,0.0556335,0.0534363,0.0513306,0.0498657,0.0498657,0.0467834,0.0419617,0.0381165,0.0340271,0.0281067,0.0209351,0.0106812,0.00140381,-0.00482178,-0.0137024,-0.0222168,-0.0308838,-0.0376587,-0.0432129,-0.0479126,-0.0522156,-0.0560303,-0.0591431,-0.061615,-0.0619507,-0.0624084,-0.0614014,-0.0583801,-0.0524292,-0.0473022,-0.040802,-0.036377,-0.0307922,-0.0271301,-0.0255737,-0.0256958,-0.0269775,-0.0273743,-0.0285339,-0.0284424,-0.0292664,-0.0302124,-0.0293274,-0.0258484,-0.0234375,-0.0191956,-0.0136108,-0.00839233,-0.00195312,0.00515747,0.0109253,0.0161133,0.0216064,0.0270386,0.0326233,0.0358276,0.037384,0.0415344,0.0457153,0.0495911,0.0546265,0.0590515,0.0640259,0.0686646,0.0725403,0.0749817,0.0753174,0.074646,0.0714722,0.068512,0.0630798,0.0555725,0.0473022,0.0396729,0.0302734,0.0185852,0.00827026,-0.000732422,-0.00952148,-0.0180664,-0.0245056,-0.0296021,-0.0326843,-0.0346375,-0.0346985,-0.0352478,-0.0353699,-0.0383301,-0.040741,-0.0440979,-0.0467224,-0.0507507,-0.0526123,-0.0532837,-0.0528259,-0.0510864,-0.0502014,-0.0473938,-0.0453186,-0.0429688,-0.0404053,-0.0379944,-0.0377808,-0.0352478,-0.0317993,-0.0312805,-0.0313416,-0.032074,-0.0312195,-0.0299377,-0.0285339,-0.0283813,-0.0256958,-0.0238953,-0.0187988,-0.0150452,-0.00924683,-0.00222778,0.00604248,0.0138855,0.0218201,0.0303345,0.0369873,0.0426941,0.04953,0.0553589,0.0624084,0.06604,0.0691833,0.0733643,0.0744934,0.0731506,0.070282,0.066925,0.0633545,0.0579834,0.052948,0.0462341,0.039856,0.0335693,0.0267029,0.0189209,0.0116882,0.0050354,-0.000732422,-0.00576782,-0.00958252,-0.0125427,-0.0145569,-0.0162964,-0.0186462,-0.0215454,-0.0238953,-0.0273743,-0.0318909,-0.0355835,-0.039856,-0.0435486,-0.0449829,-0.0469666,-0.0488586,-0.0488586,-0.0477295,-0.0468445,-0.0454407,-0.0426331,-0.0406189,-0.0384521,-0.0359802,-0.0340881,-0.0335693,-0.0324097,-0.0310059,-0.0300598,-0.0285339,-0.0268555,-0.0263672,-0.0234985,-0.0226135,-0.0197449,-0.0175171,-0.011261,-0.00692749,-0.000457764,0.00442505,0.0106812,0.0152893,0.020813,0.025116,0.0307312,0.0344849,0.0393982,0.0428162,0.0472412,0.050415,0.0528259,0.053009,0.0526733,0.0516052,0.048645,0.0462341,0.0426941,0.0375061,0.0333557,0.0302734,0.0275879,0.0241089,0.021759,0.0203247,0.0191345,0.0168457,0.0144348,0.012085,0.0115967,0.0115356,0.0107422,0.00918579,0.0067749,0.00180054,-0.00241089,-0.00900269,-0.0149536,-0.0204773,-0.0203247,-0.0126038,-0.00900269,-0.0139465,-0.0144348,-0.0143738,-0.0124817,-0.0178528,-0.0280457,-0.0387878,-0.046051,-0.0473938,-0.0555725,-0.0605469,-0.0605469,-0.0633545,-0.0567017,-0.0491943,-0.0426331,-0.0348206,-0.0226135,-0.0109253,-0.00256348,0.00692749,0.0145569,0.016449,0.0205994,0.0223389,0.017395,0.0114136,0.00402832,0.000213623,-0.00234985,-0.00469971,-0.00866699,-0.00866699,-0.00463867,0.000610352,0.0083313,0.0226746,0.0362549,0.0433655,0.0413513,0.0409546,0.0437622,0.0434875,0.0355835,0.0222778,0.0107422,0.0083313,0.00985718,0.00637817,0.00509644,0.00537109,0.00637817,0.0116882,0.0162354,0.0200806,0.0233459,0.0298767,0.0356445,0.036377,0.0328979,0.0317993,0.0318909,0.0270386,0.016571,0.00408936,-0.00604248,-0.0158386,-0.0259705,-0.0377197,-0.0475769,-0.0554504,-0.0604858,-0.0652466,-0.0662537,-0.0655823,-0.0606079,-0.0541077,-0.0474548,-0.0426941,-0.0391846,-0.0328979,-0.0279236,-0.025116,-0.0265808,-0.025238,-0.0209351,-0.0143738,-0.0111389,-0.0126038,-0.00933838,-0.00430298,-0.000610352,0.000549316,-0.00201416,-0.00289917,0.0012207,0.00469971,0.00390625,-0.00100708,0.000213623,0.00946045,0.012146,0.00878906,0.00531006,0.00195312,0.00415039,0.00195312,-0.00793457,-0.0184631,-0.0239563,-0.0205994,-0.0189819,-0.0113525,-0.000335693,0.00839233,0.0249023,0.0359802,0.0463867,0.0551758,0.0630188,0.0657654,0.0582581,0.0510864,0.0406189,0.0353088,0.0300598,0.0194702,0.00939941,0.00537109,0.00784302,0.00778198,0.00598145,0.00247192,0.00289917,0.00592041,0.00390625,-0.0017395,-0.00637817,-0.0113525,-0.0149536,-0.0187378,-0.024353,-0.0322266,-0.0392761,-0.040863,-0.0423584,-0.0438843,-0.0438232,-0.0421448,-0.0351562,-0.0273132,-0.024231,-0.0167847,-0.0088501,-0.00296021,-0.00195312,-0.00524902,-0.00268555,0.00537109,0.0109253,0.00402832,0.00323486,0.0119324,0.0188599,0.0133667,0.00576782,0.0133667,0.0224915,0.0292053,0.0253601,0.0148315,0.0143738,0.0012207,-0.0167847,-0.0245056,-0.033905,-0.0459595,-0.057312,-0.0533447,-0.0423584,-0.0310669,-0.011261,0.00289917,0.0145569,0.0296631,0.0401306,0.0485229,0.0545044,0.0531616,0.0463867,0.0430298,0.0377197,0.0269775,0.0209351,0.0182495,0.0171204,0.0148926,0.0114136,0.0107422,0.0145569,0.0259094,0.0326843,0.0314636,0.0260315,0.0148926,0.0032959,-0.00698853,-0.0176392,-0.0296021,-0.0440979,-0.052887,-0.0554504,-0.0555115,-0.0543518,-0.053009,-0.0467224,-0.0367126,-0.0283813,-0.0206604,-0.0107422,0.00323486,0.0132751,0.0150452,0.0168457,0.0263672,0.0267944,0.0177917,0.012207,0.0204163,0.0323486,0.0331421,0.0175781,0.00128174,-0.00180054,-0.000946045,-0.0115356,-0.028595,-0.0414124,-0.0519409,-0.061676,-0.0724182,-0.0767212,-0.0744934,-0.0674438,-0.0618896,-0.0603333,-0.0456543,-0.0224915,0.00967407,0.0317383,0.0433655,0.0466309,0.0411377,0.0396118,0.0400696,0.0441589,0.041748,0.036499,0.0346375,0.0391846,0.0551758,0.0648193,0.0637512,0.0603333,0.0576477,0.053894,0.04953,0.0462341,0.0347595,0.0209351,0.00650024,-0.015625,-0.0392761,-0.0470581,-0.04422,-0.0403442,-0.0326843,-0.0240173,-0.012146,0.0109253,0.0343018,0.0452271,0.0482483,0.0521545,0.0525513,0.0480652,0.0430908,0.0363159,0.026123,0.016571,6.10352e-05,-0.0225525,-0.0418091,-0.0450439,-0.0433655,-0.0395203,-0.0376587,-0.0470581,-0.0555725,-0.0527649,-0.0445557,-0.0586548,-0.0883179,-0.108856,-0.116455,-0.120667,-0.133636,-0.135376,-0.121063,-0.0976562,-0.0780029,-0.0602722,-0.0356445,-0.00564575,0.0256958,0.0448914,0.0522766,0.0518188,0.0467224,0.0390625,0.0332336,0.028656,0.0192566,0.00845337,0.00491333,0.00463867,0.012146,0.0189819,0.0214844,0.024292,0.0289307,0.0396118,0.0546265,0.0626221,0.0592651,0.0526123,0.0483093,0.0453796,0.0444946,0.0458984,0.0507507,0.069458,0.0900574,0.101532,0.110413,0.125092,0.138458,0.131958,0.114563,0.0958557,0.0791931,0.0622864,0.0433655,0.0177307,-0.00357056,-0.0197449,-0.0377808,-0.0570374,-0.0775757,-0.0877991,-0.0890503,-0.0832214,-0.0833435,-0.0932312,-0.10022,-0.0983276,-0.0969238,-0.10907,-0.12912,-0.138794,-0.135437,-0.125366,-0.11673,-0.101288,-0.0763245,-0.0423584,-0.00839233,0.0114136,0.020813,0.0265198,0.0322266,0.0328979,0.0222168,-0.00134277,-0.027771,-0.0422058,-0.052948,-0.0714111,-0.0906677,-0.0999451,-0.0967102,-0.0875854,-0.082428,-0.0760498,-0.0614014,-0.0297852,0.00665283,0.032074,0.0441589,0.0559692,0.0753784,0.0964355,0.114716,0.127319,0.143555,0.168457,0.192902,0.207001,0.212494,0.220062,0.223358,0.208008,0.177521,0.141266,0.109009,0.0820923,0.052887,0.00991821,-0.03302,-0.0623474,-0.0801392,-0.0942383,-0.104828,-0.11496,-0.119263,-0.110077,-0.0973206,-0.0897217,-0.0844421,-0.0727539,-0.065033,-0.0726929,-0.0857849,-0.0906067,-0.0787354,-0.0543518,-0.0354919,-0.0236206,-0.00912476,0.0175171,0.0477295,0.065033,0.0661621,0.0536194,0.0388489,0.0254517,-0.000732422,-0.0386658,-0.077179,-0.10202,-0.122009,-0.145844,-0.16861,-0.176117,-0.169067,-0.155182,-0.145905,-0.140747,-0.126099,-0.0952454,-0.0582581,-0.0241699,0.00482178,0.036377,0.0681152,0.0992737,0.122955,0.15033,0.186371,0.224243,0.244568,0.244568,0.240021,0.242706,0.242889,0.225037,0.188599,0.14209,0.101349,0.0663757,0.0305481,-0.00811768,-0.0438232,-0.0742188,-0.101746,-0.124573,-0.13913,-0.14328,-0.136047,-0.127258,-0.123901,-0.116302,-0.0963745,-0.0722046,-0.0544434,-0.0453796,-0.0424805,-0.0356445,-0.0203247,6.10352e-05,0.0205383,0.0369263,0.052948,0.0656433,0.0765076,0.0791931,0.0724792,0.0635681,0.0491333,0.0292664,0.00256348,-0.0307922,-0.0648193,-0.0952454,-0.119263,-0.138855,-0.158386,-0.176575,-0.182892,-0.174835,-0.162476,-0.155121,-0.146637,-0.123627,-0.0899353,-0.0568542,-0.0275879,0.00778198,0.0517578,0.0968628,0.129547,0.152954,0.184906,0.228546,0.261078,0.26947,0.25705,0.245178,0.240356,0.228546,0.195038,0.144562,0.098999,0.0649719,0.0314026,-0.0124817,-0.0558472,-0.0814819,-0.0976562,-0.11618,-0.140015,-0.156097,-0.150879,-0.131226,-0.120819,-0.121277,-0.117126,-0.0963135,-0.0687866,-0.0458984,-0.040741,-0.0391846,-0.0247803,-0.00146484,0.0174561,0.0315552,0.0461121,0.0612183,0.0755615,0.0811462,0.0742188,0.0632935,0.0598145,0.052887,0.0332947,-0.000396729,-0.0380554,-0.0692749,-0.0919495,-0.112427,-0.13913,-0.165497,-0.177246,-0.177521,-0.172302,-0.166595,-0.157776,-0.141815,-0.114502,-0.0843506,-0.0575867,-0.0265808,0.0161743,0.0639038,0.098938,0.121155,0.140015,0.170074,0.209198,0.237579,0.243835,0.235382,0.229462,0.225372,0.212616,0.186188,0.148804,0.108795,0.0739746,0.0400085,0.000335693,-0.0377808,-0.0661621,-0.0904846,-0.115448,-0.14035,-0.158112,-0.155579,-0.141083,-0.130005,-0.12262,-0.111603,-0.0916748,-0.0662537,-0.0418701,-0.0280457,-0.0214233,-0.0115356,0.00509644,0.0256958,0.0426941,0.0525513,0.0643005,0.0760498,0.0853577,0.0841064,0.0756531,0.0666504,0.0595398,0.0438843,0.0177917,-0.016449,-0.0502625,-0.0783386,-0.0994568,-0.123627,-0.148468,-0.165375,-0.167938,-0.161346,-0.156982,-0.150818,-0.141205,-0.121155,-0.0960999,-0.0742188,-0.0524902,-0.0224304,0.0140381,0.0502625,0.0775146,0.0992737,0.123077,0.15625,0.186188,0.19873,0.199005,0.198853,0.199341,0.193298,0.178131,0.151672,0.118591,0.0875244,0.0582581,0.0227661,-0.0142822,-0.0476379,-0.0777283,-0.101288,-0.123962,-0.142822,-0.153687,-0.151215,-0.143829,-0.135437,-0.121735,-0.102081,-0.0771179,-0.0458984,-0.0178528,-0.00390625,0.00497437,0.0193176,0.0411987,0.0612183,0.069397,0.0711365,0.0758362,0.090332,0.102539,0.103973,0.098938,0.0918274,0.0804749,0.0662537,0.0446472,0.0152893,-0.0129395,-0.0356445,-0.0612183,-0.0889282,-0.107574,-0.115784,-0.115448,-0.114044,-0.116577,-0.119812,-0.115448,-0.100952,-0.0891418,-0.0834351,-0.0719604,-0.0546875,-0.0332336,-0.0115967,0.0088501,0.0293884,0.0522156,0.0762329,0.0950928,0.106659,0.114716,0.120483,0.12207,0.118317,0.10672,0.0881348,0.0640869,0.0378418,0.00952148,-0.0265808,-0.0657043,-0.101685,-0.130127,-0.149872,-0.158783,-0.158325,-0.145172,-0.125092,-0.102631,-0.079071,-0.0531006,-0.0258484,0.00106812,0.0301208,0.0502625,0.0595398,0.0744934,0.0955811,0.106781,0.100616,0.0898132,0.0836792,0.0814209,0.0834351,0.0811462,0.078064,0.0863037,0.0959167,0.098114,0.101288,0.101349,0.0994568,0.0925598,0.0844421,0.0709534,0.0516052,0.0344238,0.0126038,-0.0111389,-0.0340881,-0.0589294,-0.0812683,-0.099884,-0.110596,-0.114838,-0.114166,-0.109253,-0.099884,-0.0888062,-0.0738831,-0.057312,-0.0414734,-0.0300598,-0.0215454,-0.011261,-0.00256348,0.0012207,0.000274658,-0.00274658,-0.00912476,-0.0181274,-0.0294495,-0.0399475,-0.0471191,-0.0522766,-0.0546875,-0.0533447,-0.0469666,-0.0406799,-0.0339661,-0.0232849,-0.00900269,0.00463867,0.0163879,0.0220947,0.0281982,0.0302734,0.0297852,0.0256958,0.0198059,0.0151062,0.0106812,0.00799561,0.00839233,0.0115356,0.0171204,0.024231,0.0346985,0.0467224,0.0620728,0.0786743,0.0945129,0.105652,0.110931,0.111267,0.107727,0.0977783,0.082428,0.0641785,0.0453186,0.028595,0.0123596,-0.00100708,-0.0150452,-0.0241699,-0.0283813,-0.0287781,-0.0281067,-0.0266418,-0.0234375,-0.0189209,-0.015564,-0.0149536,-0.0169067,-0.0202637,-0.0245667,-0.0315552,-0.0434265,-0.0536194,-0.0632324,-0.0683899,-0.0745544,-0.0759888,-0.0757751,-0.0725403,-0.0669861,-0.0603943,-0.0545654,-0.0505371,-0.0454407,-0.0390625,-0.0340881,-0.0307312,-0.0294495,-0.0285339,-0.0273743,-0.02771,-0.0303345,-0.0307922,-0.0304565,-0.0268555,-0.0232239,-0.019928,-0.0158386,-0.00765991,0.00106812,0.00985718,0.0192566,0.0271912,0.0366516,0.0458374,0.0544434,0.058136,0.0629578,0.0681152,0.0700684,0.0690613,0.0665894,0.0630798,0.0574646,0.0532837,0.0464478,0.0392761,0.0326233,0.0281067,0.0253601,0.0224915,0.0193176,0.0147705,0.0118713,0.0103455,0.00924683,0.00650024,0.0038147,-0.000213623,-0.00463867,-0.0114746,-0.0184631,-0.025177,-0.0296021,-0.0342407,-0.0395203,-0.0430298,-0.0441589,-0.04422,-0.0421448,-0.0411377,-0.0396118,-0.037323,-0.0345764,-0.0320129,-0.0315552,-0.0333557,-0.0367737,-0.040741,-0.0457153,-0.0500793,-0.053772,-0.0559082,-0.0547791,-0.0518188,-0.0482483,-0.0424194,-0.0341492,-0.0246887,-0.0149536,-0.00610352,0.00228882,0.0103455,0.0191956,0.0265808,0.0311279,0.0369263,0.0400696,0.0414734,0.0420227,0.0438843,0.0447693,0.0455627,0.0472412,0.0511475,0.053894,0.0548401,0.0555115,0.0552979,0.0558472,0.0536194,0.0504761,0.0473938,0.045105,0.0411987,0.0356445,0.0269165,0.0186462,0.0115356,0.00469971,-0.00161743,-0.0062561,-0.00894165,-0.0113525,-0.0129395,-0.0149536,-0.0172424,-0.0192566,-0.020752,-0.0236206,-0.0249634,-0.0271301,-0.0297852,-0.0317383,-0.0324097,-0.0344849,-0.0349731,-0.0375061,-0.037384,-0.0363159,-0.0374451,-0.0377808,-0.0383301,-0.0378418,-0.0387268,-0.040863,-0.0418701,-0.0428162,-0.040802,-0.0391846,-0.0378418,-0.0365906,-0.03302,-0.0296631,-0.0248413,-0.0221558,-0.0184631,-0.0144958,-0.00845337,-0.00289917,0.000946045,0.00643921,0.0115967,0.0185852,0.0249634,0.0293884,0.0332947,0.0391235,0.0467834,0.0516052,0.0553589,0.0577087,0.0603333,0.0624084,0.0623474,0.0595398,0.0579834,0.0564575,0.0542908,0.0502014,0.0445557,0.0381775,0.0324097,0.0263062,0.0195923,0.0127563,0.00759888,0.00424194,0.00088501,-0.00280762,-0.0071106,-0.0113525,-0.0158386,-0.0191345,-0.0234985,-0.0273743,-0.0322876,-0.0350952,-0.0371094,-0.0386658,-0.0397949,-0.0396118,-0.0383301,-0.0359192,-0.0350952,-0.0339661,-0.03302,-0.0332336,-0.0324707,-0.032074,-0.0326843,-0.0336914,-0.0334778,-0.0318909,-0.027771,-0.0227661,-0.0222168,-0.0215454,-0.0205383,-0.0191956,-0.0178528,-0.0187378,-0.020752,-0.0225525,-0.0229492,-0.020813,-0.0189209,-0.0125427,0.000457764,0.0102539,0.0175781,0.0236816,0.032135,0.0400085,0.0440369,0.0415344,0.0368347,0.0338135,0.0327454,0.0323486,0.02771,0.0271301,0.0284424,0.0323486,0.036377,0.0385132,0.0396729,0.0413513,0.0425415,0.040863,0.0379333,0.0357056,0.0374451,0.0371704,0.0330811,0.027771,0.0232849,0.0205994,0.016571,0.0100098,0.00234985,-0.00524902,-0.00991821,-0.0147095,-0.0198669,-0.0269165,-0.032074,-0.0361023,-0.0366516,-0.0389404,-0.0415344,-0.040802,-0.0381775,-0.0367126,-0.0365906,-0.0343018,-0.0317383,-0.0289307,-0.025177,-0.0236816,-0.0227661,-0.0205994,-0.0172424,-0.0172424,-0.0179749,-0.0185852,-0.0206604,-0.0216064,-0.0214233,-0.0205994,-0.0245056,-0.025116,-0.0232849,-0.0209961,-0.0180664,-0.0167236,-0.0170593,-0.0136108,-0.0137634,-0.0108032,-0.0132141,-0.0145569,-0.0147705,-0.0176392,-0.0157166,-0.0188599,-0.0145569,-0.00900269,-0.00134277,0.00912476,0.0168457,0.0245056,0.0339661,0.041626,0.0496521,0.0515442,0.0559082,0.0585938,0.0645752,0.0671692,0.065979,0.0666504,0.069458,0.0718079,0.0687256,0.0606689,0.0498657,0.0421448,0.0350952,0.0239563,0.00726318,-0.00845337,-0.0222778,-0.0299988,-0.0387268,-0.048645,-0.0585327,-0.0609436,-0.0589294,-0.0563049,-0.0533447,-0.0453796,-0.0371094,-0.0256348,-0.0171204,-0.0101318,-0.00549316,0.000335693,0.00610352,0.0050354,0.000549316,-0.00375366,-0.00717163,-0.00744629,-0.00671387,-0.0120239,-0.0167847,-0.0215454,-0.0189209,-0.0231628,-0.0306091,-0.0252991,-0.0221558,-0.0212708,-0.0297852,-0.0385132,-0.0448303,-0.0477295,-0.0441589,-0.0468445,-0.0465698,-0.0439758,-0.0404053,-0.0302734,-0.013092,0.00357056,0.015625,0.0275879,0.040863,0.052002,0.0628967,0.0701904,0.0696716,0.0693359,0.0681763,0.0626831,0.0606079,0.0608215,0.0624084,0.0632935,0.0614929,0.0545654,0.0483093,0.0461121,0.041748,0.0324097,0.015564,-0.00228882,-0.0158386,-0.0253601,-0.0350952,-0.0474548,-0.0548401,-0.0557861,-0.0554504,-0.0519409,-0.0470581,-0.0380554,-0.0226135,-0.00991821,-0.000610352,0.00631714,0.0148315,0.024353,0.0334778,0.0444336,0.0444946,0.0324097,0.0144958,0.00241089,-0.00637817,-0.0176392,-0.0271912,-0.0310059,-0.0357666,-0.0400696,-0.0361023,-0.0229492,-0.0236206,-0.040863,-0.0582581,-0.0718079,-0.0814819,-0.0851135,-0.0826721,-0.0812073,-0.0856934,-0.0838928,-0.0630188,-0.0346375,-0.0150452,-0.00482178,0.00744629,0.0263672,0.0469666,0.0649109,0.0740967,0.078064,0.0801392,0.082489,0.081604,0.0760498,0.0690613,0.0704651,0.0786743,0.0755005,0.0602722,0.048584,0.0425415,0.0404663,0.0298767,0.00985718,-0.013092,-0.0312195,-0.0386047,-0.0445557,-0.0473022,-0.0457153,-0.037384,-0.0237732,-0.0105286,0.00296021,0.0219421,0.0438232,0.0608215,0.0654297,0.0603333,0.0559692,0.0554504,0.0559082,0.0488586,0.02771,0.00497437,-0.0138855,-0.0305481,-0.0428772,-0.0571289,-0.074707,-0.0863647,-0.0864563,-0.085907,-0.0834961,-0.0801392,-0.085022,-0.0985413,-0.11557,-0.129883,-0.145447,-0.146454,-0.127533,-0.10202,-0.0822754,-0.0728149,-0.0532837,-0.0122681,0.0226135,0.0409546,0.0411377,0.0391235,0.0440979,0.0558472,0.0683899,0.0684509,0.0664368,0.0707397,0.0730896,0.0705261,0.0657043,0.0611572,0.0610657,0.0599976,0.0508728,0.0311279,0.0250244,0.0293274,0.0310669,0.0220032,0.00201416,-0.0157776,-0.0191956,-0.0065918,0.00973511,0.0267029,0.048645,0.0730896,0.0975342,0.119263,0.137512,0.154175,0.160278,0.154785,0.139923,0.119812,0.0971985,0.0750427,0.0465698,0.00933838,-0.0307312,-0.065033,-0.0964355,-0.121155,-0.13974,-0.151337,-0.154907,-0.154572,-0.157654,-0.159607,-0.152161,-0.149323,-0.155914,-0.167938,-0.171295,-0.159729,-0.137268,-0.107666,-0.0771179,-0.0489197,-0.013031,0.0283203,0.0583191,0.0683289,0.0661621,0.061676,0.0520935,0.0376587,0.0203247,0.00457764,-0.00457764,-0.0088501,-0.01651,-0.025177,-0.0294495,-0.0302734,-0.0285339,-0.0308838,-0.0390625,-0.040802,-0.0262451,-0.00430298,0.0138245,0.0214844,0.0267029,0.0387878,0.0592651,0.0865784,0.121674,0.159454,0.196594,0.232697,0.263031,0.280762,0.285095,0.279205,0.255371,0.214844,0.165833,0.119934,0.0828857,0.0468445,0.00146484,-0.0433655,-0.08255,-0.11142,-0.135437,-0.158722,-0.178528,-0.190399,-0.186462,-0.175232,-0.165771,-0.159882,-0.154694,-0.150085,-0.153961,-0.169189,-0.17572,-0.158722,-0.116241,-0.0718079,-0.040802,-0.00537109,0.0384521,0.0777893,0.0959167,0.0875244,0.0592651,0.0358276,0.0213318,-0.00100708,-0.0387268,-0.0755615,-0.100739,-0.115051,-0.126373,-0.143951,-0.159119,-0.15979,-0.146729,-0.133148,-0.124023,-0.102356,-0.0657654,-0.0209961,0.0193176,0.0527649,0.0789185,0.109406,0.14679,0.190887,0.238586,0.28476,0.319153,0.337921,0.34552,0.345245,0.331543,0.307129,0.263367,0.209076,0.155518,0.104431,0.0587158,0.0135498,-0.0377808,-0.0908813,-0.135101,-0.165649,-0.186707,-0.197784,-0.202759,-0.204987,-0.196716,-0.178864,-0.156372,-0.136444,-0.121277,-0.107574,-0.100677,-0.0922241,-0.081604,-0.0592041,-0.0237732,0.00665283,0.0302734,0.0546875,0.07724,0.089386,0.0783997,0.053833,0.0249634,0.00436401,-0.0175171,-0.053772,-0.0947571,-0.128937,-0.153015,-0.169952,-0.188599,-0.206238,-0.21344,-0.202759,-0.184631,-0.169403,-0.149323,-0.115051,-0.0635071,-0.00878906,0.0326843,0.0668335,0.108459,0.157379,0.199615,0.235168,0.265442,0.298004,0.330139,0.351166,0.35318,0.33725,0.308411,0.275055,0.241882,0.199951,0.144287,0.0851746,0.0355835,-0.00576782,-0.04953,-0.100067,-0.146576,-0.17807,-0.194916,-0.205841,-0.211945,-0.20639,-0.190613,-0.168274,-0.143555,-0.12677,-0.10611,-0.0844421,-0.0654907,-0.0521545,-0.0420837,-0.0263672,-0.00222778,0.0230103,0.0453186,0.0628357,0.0748291,0.0690002,0.0484009,0.0265198,0.00778198,-0.0085144,-0.0350952,-0.073761,-0.106567,-0.127197,-0.142151,-0.161621,-0.183563,-0.195312,-0.191895,-0.180145,-0.169952,-0.15744,-0.128265,-0.0842285,-0.0397949,-0.00341797,0.0269775,0.0689392,0.122284,0.166321,0.194031,0.218475,0.253571,0.291565,0.321075,0.332764,0.325378,0.311493,0.293976,0.269135,0.234436,0.192566,0.142426,0.0914001,0.0428772,-0.00180054,-0.0458374,-0.089386,-0.132904,-0.171021,-0.190002,-0.197937,-0.20047,-0.198608,-0.187714,-0.165497,-0.140015,-0.119812,-0.102692,-0.0860291,-0.0785217,-0.0704651,-0.0584717,-0.0453796,-0.0297852,-0.0151672,0.00222778,0.0195312,0.0397949,0.0491333,0.0400696,0.0200806,-0.000213623,-0.0158386,-0.0293884,-0.049408,-0.0787354,-0.104706,-0.124908,-0.140259,-0.157654,-0.171631,-0.172821,-0.164093,-0.153015,-0.143768,-0.124237,-0.0870361,-0.045166,-0.0050354,0.0302124,0.0632324,0.101471,0.144104,0.177399,0.202026,0.231537,0.263306,0.292419,0.316467,0.322296,0.313568,0.299683,0.278076,0.246979,0.210999,0.168274,0.118591,0.0691223,0.0229492,-0.0234375,-0.0604858,-0.0976562,-0.141937,-0.18042,-0.200348,-0.199799,-0.193634,-0.185638,-0.177795,-0.16214,-0.141083,-0.112274,-0.0914917,-0.0860291,-0.0900574,-0.0845032,-0.0643616,-0.0446472,-0.0312805,-0.024231,-0.00704956,0.0222778,0.0480652,0.0461731,0.0253601,0.00497437,-0.00939941,-0.0132141,-0.0257874,-0.0544434,-0.086853,-0.102814,-0.110474,-0.124634,-0.14679,-0.162903,-0.162292,-0.146118,-0.134827,-0.128723,-0.110474,-0.0751648,-0.0312805,0.00784302,0.0363159,0.061676,0.0965881,0.142548,0.178802,0.20639,0.230072,0.258057,0.292969,0.316803,0.318481,0.298798,0.281342,0.270691,0.247803,0.203552,0.144897,0.090271,0.0579224,0.0281982,-0.0229492,-0.0892029,-0.139801,-0.160889,-0.166992,-0.186188,-0.214111,-0.226044,-0.200806,-0.160126,-0.139069,-0.136169,-0.128784,-0.100555,-0.07724,-0.0756531,-0.0785217,-0.0680542,-0.041687,-0.0185242,-0.0103455,-0.00476074,0.0173035,0.046051,0.0546875,0.0334778,0.00289917,-0.0102539,-0.00878906,-0.00811768,-0.0299377,-0.0602112,-0.0832825,-0.0979919,-0.111694,-0.129456,-0.139008,-0.141266,-0.141815,-0.14035,-0.128937,-0.103424,-0.0664978,-0.0303955,-0.0012207,0.0283813,0.0602722,0.0984497,0.139587,0.178131,0.213104,0.24115,0.269745,0.296783,0.311768,0.314453,0.301147,0.27774,0.24411,0.211273,0.176575,0.138733,0.0898743,0.0404053,-0.00524902,-0.0443726,-0.0843506,-0.127991,-0.168854,-0.194977,-0.203491,-0.200745,-0.197174,-0.192627,-0.183502,-0.16214,-0.139404,-0.126038,-0.122498,-0.120605,-0.105774,-0.0845642,-0.0649109,-0.0518799,-0.0378418,-0.0139465,0.0140991,0.0383911,0.0463867,0.0443115,0.037323,0.0335693,0.0301208,0.0220947,0.00750732,-0.012085,-0.032959,-0.0566406,-0.0819397,-0.107849,-0.127045,-0.134583,-0.136444,-0.134247,-0.130066,-0.114899,-0.0922241,-0.0596008,-0.0292053,-0.00213623,0.027771,0.0621643,0.105377,0.147644,0.185028,0.21344,0.241608,0.273895,0.304169,0.315796,0.304169,0.286865,0.270203,0.254761,0.2323,0.189728,0.135651,0.0860291,0.0482483,0.00256348,-0.0485229,-0.10202,-0.146637,-0.177185,-0.196045,-0.213898,-0.228058,-0.224701,-0.209351,-0.194427,-0.185303,-0.179932,-0.169342,-0.150085,-0.127655,-0.115509,-0.10733,-0.0897217,-0.0620728,-0.0361023,-0.0111389,0.013031,0.0361633,0.0524902,0.0597229,0.0563049,0.0481262,0.0468445,0.0467834,0.0296021,0.00222778,-0.0303345,-0.0583801,-0.078125,-0.0991211,-0.12149,-0.13974,-0.145844,-0.141479,-0.131805,-0.114502,-0.0909424,-0.061554,-0.0302124,-0.000549316,0.0322876,0.0758362,0.127106,0.170532,0.203308,0.226868,0.25946,0.297943,0.32785,0.334717,0.319275,0.303894,0.291077,0.275116,0.246521,0.200745,0.144104,0.0932312,0.0466309,-0.00457764,-0.0588684,-0.112213,-0.154968,-0.188141,-0.215576,-0.240082,-0.252899,-0.247589,-0.231964,-0.220947,-0.217377,-0.209595,-0.189606,-0.164032,-0.142822,-0.124847,-0.107178,-0.0820312,-0.0532227,-0.0289307,-0.00497437,0.0245667,0.0552368,0.0713501,0.0678406,0.0564575,0.0491943,0.0517578,0.0454407,0.0184631,-0.0163879,-0.0487366,-0.0710754,-0.0923462,-0.113708,-0.133026,-0.144623,-0.145782,-0.146637,-0.141876,-0.121674,-0.0901489,-0.0567017,-0.0297241,-0.00268555,0.0327454,0.0838318,0.139587,0.184906,0.214691,0.242767,0.276733,0.319153,0.353851,0.361084,0.344025,0.319061,0.301697,0.287048,0.259674,0.207733,0.141876,0.0843506,0.0399475,-0.0062561,-0.0610046,-0.120941,-0.165924,-0.194641,-0.218262,-0.240692,-0.252014,-0.241882,-0.226196,-0.222168,-0.22229,-0.209747,-0.178131,-0.147064,-0.133911,-0.130554,-0.117584,-0.0820923,-0.0437622,-0.0241089,-0.0118103,0.0115356,0.0443726,0.0626831,0.0597229,0.0477295,0.0448914,0.049469,0.0384521,0.00866699,-0.0244446,-0.0475159,-0.0646362,-0.0875244,-0.116791,-0.139069,-0.146729,-0.144836,-0.143768,-0.142487,-0.125702,-0.0995483,-0.0714722,-0.0440369,-0.0137634,0.0315552,0.0845032,0.13324,0.170685,0.204041,0.242493,0.283356,0.320282,0.34726,0.356598,0.346313,0.331635,0.318054,0.303955,0.273499,0.216919,0.152557,0.101196,0.0603943,0.0110779,-0.0531006,-0.116577,-0.159882,-0.187378,-0.214508,-0.244568,-0.262085,-0.259796,-0.248932,-0.24472,-0.241028,-0.226593,-0.198334,-0.17865,-0.168518,-0.151001,-0.115051,-0.0722046,-0.0505371,-0.0391235,-0.011261,0.0346985,0.0769043,0.0831604,0.0677795,0.0597229,0.069397,0.0763855,0.0547791,0.0172424,-0.0118103,-0.0269165,-0.0484009,-0.086792,-0.125763,-0.141144,-0.139404,-0.143433,-0.16214,-0.172028,-0.152557,-0.113281,-0.0803528,-0.0603333,-0.0359802,0.00726318,0.0663757,0.123749,0.169678,0.208588,0.245453,0.283569,0.324982,0.359406,0.37558,0.367462,0.350555,0.335999,0.320221,0.291138,0.240601,0.181,0.124634,0.072876,0.0144348,-0.0505981,-0.114227,-0.164703,-0.200409,-0.233978,-0.268127,-0.292145,-0.296509,-0.285248,-0.273956,-0.265442,-0.25235,-0.229065,-0.201691,-0.176849,-0.148193,-0.114899,-0.0769958,-0.0490723,-0.0218201,0.00744629,0.0481262,0.0869141,0.102081,0.0966492,0.0835571,0.0876465,0.0909424,0.0786743,0.0461121,0.00765991,-0.0205383,-0.0498047,-0.0846863,-0.123413,-0.146912,-0.1586,-0.166046,-0.178406,-0.188324,-0.173096,-0.139679,-0.100555,-0.0738831,-0.0448303,0.00161743,0.0656433,0.13208,0.180084,0.21933,0.259888,0.305634,0.345856,0.374054,0.386871,0.385925,0.380005,0.362305,0.337067,0.30014,0.253845,0.199402,0.139008,0.0784607,0.0122681,-0.0517578,-0.112885,-0.165985,-0.213348,-0.256104,-0.288452,-0.307983,-0.315521,-0.315247,-0.305389,-0.292236,-0.273285,-0.24826,-0.218475,-0.187714,-0.154236,-0.112762,-0.0755005,-0.039856,-0.00918579,0.0273743,0.0661011,0.0963135,0.111938,0.113159,0.111877,0.105042,0.0925598,0.0730286,0.0454407,0.0138855,-0.0221558,-0.061615,-0.0958557,-0.123566,-0.142548,-0.160614,-0.177124,-0.187469,-0.183014,-0.165436,-0.140472,-0.113159,-0.081543,-0.0406189,0.00946045,0.0621643,0.115723,0.17041,0.220062,0.262634,0.30188,0.337006,0.37204,0.392761,0.394836,0.382355,0.365509,0.344177,0.31076,0.26297,0.203491,0.142426,0.0805359,0.0169067,-0.0490723,-0.117188,-0.178314,-0.227448,-0.263916,-0.292236,-0.313171,-0.323914,-0.324921,-0.310608,-0.290619,-0.269409,-0.251068,-0.228943,-0.197388,-0.158997,-0.114899,-0.0760498,-0.0426331,-0.0110779,0.0250244,0.0631714,0.0967712,0.113831,0.114105,0.110199,0.105042,0.101013,0.0844421,0.0579224,0.0220947,-0.0116882,-0.0426941,-0.0748291,-0.105377,-0.130341,-0.142212,-0.150085,-0.158936,-0.164246,-0.157104,-0.130402,-0.0996094,-0.0738831,-0.0499268,-0.0148926,0.0368347,0.0949097,0.145721,0.182098,0.218872,0.26236,0.308258,0.340942,0.356323,0.361969,0.36322,0.359863,0.344238,0.31134,0.267578,0.215515,0.159607,0.101013,0.0390625,-0.0307312,-0.103424,-0.163971,-0.211273,-0.248993,-0.284637,-0.312775,-0.32431,-0.320618,-0.306396,-0.288727,-0.270538,-0.252563,-0.227051,-0.195374,-0.160797,-0.122162,-0.0869141,-0.0526733,-0.0254517,0.00128174,0.0306702,0.0623474,0.0887146,0.0977173,0.0975342,0.0957031,0.0986023,0.100616,0.0924072,0.0715332,0.040802,0.013031,-0.00845337,-0.0298767,-0.0524902,-0.0751648,-0.0929565,-0.112213,-0.129059,-0.137726,-0.129944,-0.114441,-0.0993347,-0.0855103,-0.0619507,-0.0187988,0.0322266,0.0856323,0.129456,0.171539,0.216797,0.265045,0.309937,0.342834,0.359406,0.36673,0.363647,0.352631,0.326263,0.285858,0.237732,0.182007,0.120483,0.0514832,-0.0194092,-0.0822144,-0.140015,-0.196045,-0.246643,-0.283569,-0.303558,-0.315247,-0.323303,-0.322296,-0.309082,-0.285522,-0.26825,-0.252625,-0.230347,-0.19873,-0.1604,-0.128265,-0.0973816,-0.0661621,-0.0312195,0.00335693,0.0379944,0.0678406,0.0887146,0.104218,0.113708,0.119659,0.124359,0.123688,0.114563,0.0954285,0.0708618,0.0461731,0.0250244,0.00247192,-0.0228882,-0.0532227,-0.0777283,-0.0982056,-0.111145,-0.11972,-0.12207,-0.115051,-0.100616,-0.0796814,-0.0503235,-0.00979614,0.0422974,0.0949097,0.139923,0.184235,0.234833,0.293427,0.342438,0.36673,0.374786,0.379272,0.38559,0.373444,0.328674,0.268463,0.205841,0.153961,0.0966492,0.017395,-0.0673218,-0.138397,-0.191162,-0.237854,-0.292755,-0.337585,-0.357605,-0.359619,-0.354767,-0.355713,-0.34552,-0.320831,-0.292633,-0.271149,-0.25351,-0.220825,-0.175385,-0.128937,-0.0923462,-0.0628967,-0.0218201,0.0307922,0.0782471,0.104645,0.117737,0.128601,0.14209,0.150085,0.145447,0.135925,0.124756,0.107849,0.0810852,0.0487976,0.0204773,-0.00195312,-0.0297852,-0.0687256,-0.105316,-0.125519,-0.127594,-0.126526,-0.124908,-0.115509,-0.0888672,-0.0470581,-0.00430298,0.0405273,0.0916138,0.151276,0.212616,0.266846,0.317657,0.368866,0.408661,0.429352,0.427856,0.415771,0.397339,0.363892,0.308136,0.236115,0.167603,0.105499,0.0334778,-0.0489197,-0.136719,-0.211761,-0.263824,-0.308594,-0.351959,-0.3909,-0.410553,-0.407654,-0.394043,-0.376526,-0.360291,-0.345978,-0.3237,-0.296326,-0.25705,-0.210815,-0.166382,-0.124298,-0.0797424,-0.0241089,0.036438,0.0863037,0.116852,0.134491,0.150421,0.164581,0.168793,0.162415,0.148926,0.134644,0.114044,0.0828857,0.0461121,0.00860596,-0.0247803,-0.0593872,-0.098877,-0.136658,-0.16214,-0.165314,-0.15625,-0.141083,-0.120331,-0.0898132,-0.0420227,0.0152893,0.0751648,0.136658,0.198273,0.261353,0.327606,0.391479,0.443634,0.471832,0.48056,0.478394,0.470001,0.445465,0.3909,0.316193,0.240692,0.174561,0.109192,0.0245667,-0.0757141,-0.168732,-0.239929,-0.293365,-0.346924,-0.401276,-0.440613,-0.453491,-0.445526,-0.432892,-0.418396,-0.398071,-0.371094,-0.343781,-0.319946,-0.28833,-0.237,-0.175568,-0.117798,-0.0726318,-0.025177,0.0365906,0.103149,0.152344,0.170624,0.171967,0.176239,0.186127,0.191162,0.178467,0.149536,0.112366,0.072876,0.0316162,-0.0137634,-0.0606689,-0.107239,-0.153229,-0.191833,-0.215576,-0.220673,-0.204773,-0.174957,-0.138,-0.0924988,-0.0318909,0.040741,0.124237,0.207245,0.282959,0.354858,0.424652,0.489807,0.537933,0.56189,0.563568,0.550629,0.521576,0.473511,0.403564,0.321472,0.235992,0.15155,0.0639648,-0.0307312,-0.124756,-0.21524,-0.293701,-0.35611,-0.407928,-0.445038,-0.470825,-0.484039,-0.480835,-0.463043,-0.434052,-0.407806,-0.389954,-0.370209,-0.337921,-0.289612,-0.23465,-0.182281,-0.126434,-0.0708008,-0.00390625,0.066925,0.127258,0.169861,0.188324,0.194244,0.196167,0.199127,0.191559,0.164581,0.123505,0.0757751,0.0332336,-0.00732422,-0.0569763,-0.114044,-0.168671,-0.207336,-0.229614,-0.240692,-0.236725,-0.214905,-0.169678,-0.112946,-0.0519409,0.0234375,0.11026,0.205322,0.293762,0.367584,0.438202,0.510406,0.575195,0.616669,0.62674,0.610229,0.580963,0.54425,0.490417,0.407471,0.307861,0.206055,0.110474,0.0211487,-0.0748901,-0.17337,-0.272705,-0.360535,-0.426849,-0.47464,-0.504639,-0.521301,-0.526062,-0.517731,-0.498688,-0.463989,-0.427002,-0.391296,-0.361481,-0.329865,-0.285645,-0.225372,-0.157867,-0.091156,-0.0322266,0.0291138,0.0917358,0.149536,0.185455,0.193085,0.185913,0.177521,0.168732,0.151154,0.117645,0.077179,0.0330811,-0.00692749,-0.0488586,-0.0970459,-0.145294,-0.186371,-0.218994,-0.237457,-0.244232,-0.226715,-0.187805,-0.136383,-0.074646,-0.00335693,0.0869141,0.187805,0.286377,0.375061,0.449066,0.524994,0.600769,0.658875,0.685455,0.675659,0.645599,0.610352,0.570282,0.501892,0.395569,0.271271,0.15564,0.0591431,-0.032135,-0.142548,-0.264832,-0.375305,-0.451355,-0.500031,-0.535522,-0.565521,-0.5784,-0.565582,-0.532837,-0.496185,-0.459351,-0.417786,-0.372162,-0.33136,-0.295319,-0.253967,-0.197388,-0.133972,-0.0720215,-0.0168457,0.0354309,0.0881958,0.136383,0.167786,0.173492,0.165985,0.150757,0.137054,0.115234,0.0861206,0.0546875,0.0153809,-0.0271912,-0.0700073,-0.109009,-0.142151,-0.176178,-0.211761,-0.236176,-0.236176,-0.207672,-0.163696,-0.107788,-0.0395203,0.0497437,0.15686,0.269592,0.37262,0.461639,0.548126,0.629364,0.693787,0.732971,0.736725,0.711823,0.67511,0.625122,0.557404,0.464661,0.345184,0.214691,0.0935059,-0.0153809,-0.124695,-0.235901,-0.346313,-0.443848,-0.519958,-0.571289,-0.601624,-0.615662,-0.612762,-0.594055,-0.562714,-0.519348,-0.465393,-0.408875,-0.359131,-0.317047,-0.279938,-0.234375,-0.173889,-0.112152,-0.0589905,-0.0085144,0.0455017,0.102539,0.152832,0.181427,0.179077,0.1651,0.150604,0.130219,0.0977783,0.0569763,0.0152893,-0.0194092,-0.0456543,-0.0767822,-0.117645,-0.1521,-0.176453,-0.196106,-0.20813,-0.207733,-0.185638,-0.137848,-0.0631714,0.0269165,0.133575,0.255859,0.376068,0.483368,0.57431,0.657013,0.727203,0.770844,0.779297,0.755066,0.713501,0.667145,0.600677,0.509613,0.393494,0.266846,0.132019,-0.00558472,-0.13678,-0.258789,-0.365906,-0.469482,-0.565186,-0.634705,-0.663574,-0.658875,-0.644043,-0.624573,-0.593231,-0.54425,-0.482849,-0.422485,-0.367126,-0.316193,-0.271545,-0.239014,-0.211334,-0.171967,-0.119385,-0.0598145,-0.00424194,0.0464478,0.0979919,0.147064,0.178467,0.186798,0.183014,0.171814,0.148468,0.104034,0.0506592,0.0101929,-0.0126038,-0.0312195,-0.0665894,-0.115387,-0.15094,-0.165771,-0.169952,-0.174042,-0.170135,-0.145172,-0.0884705,0.00189209,0.109741,0.234772,0.368591,0.489197,0.589417,0.673645,0.75116,0.813995,0.837128,0.809906,0.749634,0.685181,0.616333,0.527069,0.404907,0.261749,0.122681,-0.00793457,-0.130219,-0.252167,-0.373047,-0.485107,-0.57782,-0.645325,-0.690216,-0.708954,-0.713501,-0.698273,-0.661499,-0.603119,-0.537415,-0.46759,-0.401154,-0.341766,-0.290955,-0.255249,-0.231018,-0.197113,-0.149261,-0.0962524,-0.0439758,0.0149536,0.0836792,0.157532,0.212494,0.23053,0.227325,0.215179,0.191406,0.142365,0.0764465,0.00878906,-0.0323486,-0.0462341,-0.0585327,-0.0769043,-0.0917358,-0.0879211,-0.0782471,-0.0747681,-0.0795898,-0.0779114,-0.0561218,-0.00128174,0.0810242,0.192566,0.327515,0.463501,0.579468,0.677124,0.771027,0.849762,0.880981,0.842438,0.746521,0.651093,0.579468,0.504517,0.396515,0.26123,0.128601,0.00979614,-0.100616,-0.22049,-0.351685,-0.481415,-0.601105,-0.70694,-0.784851,-0.812714,-0.796753,-0.760559,-0.716003,-0.664185,-0.589355,-0.495514,-0.400208,-0.333832,-0.29953,-0.280945,-0.26358,-0.231689,-0.185913,-0.134094,-0.0794067,-0.0161743,0.0610657,0.146454,0.227783,0.273102,0.278198,0.262421,0.237396,0.19986,0.141479,0.0749817,0.0188599,-0.00637817,-0.0067749,-0.00991821,-0.0220947,-0.0305481,-0.0272522,-0.0222778,-0.0238342,-0.0383911,-0.0472412,-0.0179138,0.0592041,0.17926,0.3255,0.469086,0.592224,0.7005,0.807343,0.894379,0.927063,0.875397,0.75238,0.619415,0.520233,0.442169,0.345123,0.213837,0.0759888,-0.0425415,-0.133423,-0.222626,-0.337524,-0.478333,-0.629272,-0.758942,-0.840698,-0.865997,-0.852509,-0.820831,-0.777283,-0.717621,-0.635803,-0.54068,-0.452026,-0.388672,-0.35202,-0.333893,-0.330353,-0.314362,-0.262482,-0.181152,-0.0888672,-0.00088501,0.086853,0.181152,0.283447,0.361145,0.390228,0.374573,0.329865,0.264435,0.189606,0.121063,0.0698547,0.0469055,0.0444946,0.0397339,0.0307922,0.0353699,0.0536804,0.0634155,0.0497437,0.0162354,-0.00939941,0.0118713,0.0877991,0.203888,0.344025,0.49176,0.625122,0.740173,0.840088,0.913177,0.926086,0.854736,0.712158,0.551361,0.427002,0.333313,0.232483,0.109406,-0.013031,-0.112152,-0.184021,-0.257874,-0.36792,-0.504791,-0.640747,-0.763306,-0.859497,-0.914917,-0.927155,-0.897888,-0.83847,-0.764191,-0.679688,-0.582916,-0.488342,-0.414368,-0.37262,-0.36203,-0.362305,-0.345367,-0.292023,-0.203033,-0.0954285,0.0214233,0.145569,0.269592,0.386719,0.472778,0.500946,0.4758,0.413757,0.326935,0.232544,0.144958,0.0797424,0.0512085,0.0606689,0.0794067,0.0932312,0.105225,0.119537,0.129547,0.119263,0.0855103,0.0521545,0.0612793,0.128601,0.240204,0.372833,0.506927,0.635254,0.762573,0.86438,0.909821,0.868896,0.758362,0.611572,0.467529,0.3396,0.219482,0.098114,-0.00933838,-0.0914001,-0.154236,-0.216858,-0.301086,-0.41687,-0.550354,-0.690216,-0.817932,-0.912445,-0.968292,-0.981781,-0.953125,-0.888428,-0.795471,-0.685669,-0.569214,-0.470825,-0.40625,-0.381073,-0.375122,-0.367584,-0.339081,-0.272552,-0.175903,-0.0545044,0.0848999,0.233887,0.378723,0.506805,0.580566,0.58847,0.536987,0.442963,0.333984,0.234375,0.15564,0.109467,0.103973,0.125183,0.155518,0.182495,0.202423,0.210358,0.19812,0.151825,0.0857849,0.0409546,0.0602722,0.147797,0.271271,0.399597,0.524445,0.657074,0.786591,0.871307,0.859894,0.747009,0.593323,0.453308,0.330078,0.200134,0.0673218,-0.0339661,-0.0924072,-0.132141,-0.179993,-0.250488,-0.346527,-0.464233,-0.596313,-0.733521,-0.857941,-0.953461,-0.999969,-0.993317,-0.940033,-0.856201,-0.754791,-0.647552,-0.549683,-0.473694,-0.424377,-0.411011,-0.419617,-0.413361,-0.361023,-0.255981,-0.113434,0.0439758,0.205444,0.369263,0.524109,0.637604,0.678802,0.634369,0.534515,0.420807,0.313843,0.219147,0.156036,0.154175,0.199799,0.256439,0.299622,0.329742,0.344849,0.334167,0.282562,0.196655,0.110077,0.0682678,0.0930176,0.17807,0.292358,0.407074,0.515106,0.617126,0.695404,0.714844,0.64975,0.515778,0.361755,0.230743,0.137787,0.0554504,-0.0317383,-0.103882,-0.143768,-0.167267,-0.207397,-0.298676,-0.433777,-0.572449,-0.697662,-0.808685,-0.902924,-0.965607,-0.973663,-0.911774,-0.807556,-0.703308,-0.618073,-0.547455,-0.483582,-0.443298,-0.445526,-0.477051,-0.49176,-0.452484,-0.351685,-0.205322,-0.0410156,0.133636,0.312836,0.489532,0.629883,0.702515,0.687195,0.60968,0.499756,0.393036,0.311951,0.260468,0.246246,0.274384,0.33606,0.407532,0.462494,0.483307,0.467072,0.417542,0.338135,0.24585,0.17276,0.147919,0.178589,0.243958,0.320679,0.393707,0.459747,0.505707,0.515656,0.462769,0.356384,0.230743,0.121399,0.0319519,-0.0464478,-0.11618,-0.169739,-0.19812,-0.227264,-0.272705,-0.349945,-0.452576,-0.559143,-0.656738,-0.741974,-0.805603,-0.832184,-0.819275,-0.76297,-0.681244,-0.595123,-0.528198,-0.483093,-0.461823,-0.458862,-0.475464,-0.508331,-0.527191,-0.494568,-0.394165,-0.24115,-0.069458,0.0996094,0.267731,0.436188,0.578613,0.652832,0.631561,0.547119,0.448212,0.371033,0.323364,0.294922,0.293091,0.338593,0.429413,0.530823,0.60849,0.637817,0.618286,0.569885,0.495667,0.398926,0.301636,0.235321,0.217987,0.246918,0.294037,0.332306,0.357208,0.367584,0.360138,0.313171,0.219604,0.0924988,-0.029541,-0.124298,-0.190887,-0.248047,-0.298126,-0.337067,-0.363983,-0.386322,-0.425995,-0.493317,-0.574646,-0.644531,-0.689026,-0.70694,-0.702637,-0.672974,-0.612976,-0.529755,-0.450012,-0.401367,-0.382904,-0.389404,-0.412231,-0.450409,-0.492889,-0.506927,-0.465332,-0.360077,-0.213684,-0.0583801,0.102356,0.262085,0.417938,0.530212,0.562622,0.509277,0.419739,0.339752,0.286591,0.257721,0.249725,0.286194,0.378204,0.511749,0.638,0.717194,0.743774,0.728546,0.688416,0.608276,0.491974,0.373169,0.297394,0.278656,0.300476,0.328064,0.342438,0.346039,0.341888,0.318054,0.247131,0.121063,-0.0317993,-0.173706,-0.279999,-0.358337,-0.42041,-0.471893,-0.5047,-0.512512,-0.505798,-0.515442,-0.55545,-0.60553,-0.642029,-0.65332,-0.646667,-0.627686,-0.590637,-0.528595,-0.446991,-0.368927,-0.321686,-0.302032,-0.304626,-0.330139,-0.373169,-0.412354,-0.409821,-0.348541,-0.24054,-0.112152,0.0150452,0.151489,0.29953,0.437134,0.512085,0.49115,0.39679,0.293823,0.224701,0.18927,0.175964,0.186249,0.250153,0.377869,0.53949,0.682831,0.768555,0.793579,0.778015,0.732025,0.644257,0.519226,0.394775,0.324097,0.317932,0.351013,0.376862,0.378662,0.36673,0.351227,0.317322,0.226715,0.0764465,-0.102539,-0.26358,-0.385315,-0.467194,-0.535248,-0.59082,-0.623169,-0.626129,-0.614197,-0.615051,-0.63028,-0.652985,-0.666138,-0.658142,-0.631958,-0.596588,-0.5466,-0.479553,-0.397858,-0.321686,-0.274109,-0.254089,-0.261017,-0.290283,-0.321899,-0.331085,-0.295502,-0.217255,-0.112823,0.00134277,0.121155,0.258209,0.398926,0.504517,0.52063,0.444305,0.32135,0.220276,0.163239,0.129791,0.107239,0.124359,0.219666,0.386597,0.565521,0.699554,0.769409,0.791168,0.777557,0.719421,0.605865,0.45813,0.340149,0.302032,0.325317,0.359131,0.37384,0.377533,0.387543,0.391907,0.35083,0.232544,0.0499878,-0.141357,-0.303284,-0.422638,-0.516113,-0.602295,-0.663971,-0.689423,-0.679749,-0.656403,-0.651642,-0.661377,-0.668152,-0.664459,-0.644257,-0.616394,-0.582153,-0.530823,-0.456726,-0.37384,-0.307648,-0.273438,-0.26123,-0.262482,-0.278137,-0.294647,-0.290131,-0.236511,-0.139343,-0.0223389,0.0960999,0.217468,0.34552,0.469482,0.545319,0.529419,0.423431,0.283356,0.180481,0.126373,0.10376,0.0979309,0.137604,0.253754,0.431366,0.612366,0.747345,0.805115,0.800903,0.75827,0.675262,0.545593,0.394318,0.283905,0.253693,0.282684,0.320557,0.34436,0.362366,0.384583,0.395569,0.347717,0.21402,0.0204773,-0.179932,-0.34671,-0.475647,-0.583496,-0.683105,-0.747742,-0.757477,-0.721832,-0.669556,-0.64035,-0.630768,-0.624847,-0.607727,-0.579285,-0.55191,-0.531433,-0.502441,-0.445526,-0.373169,-0.311493,-0.279999,-0.264771,-0.259674,-0.258331,-0.244568,-0.217377,-0.157776,-0.0611572,0.0578613,0.179993,0.290802,0.382965,0.458191,0.49881,0.473511,0.374969,0.241608,0.135986,0.0810242,0.0810242,0.123169,0.201477,0.32605,0.482635,0.637207,0.759827,0.811829,0.788879,0.716858,0.606659,0.47049,0.340149,0.249817,0.226196,0.260803,0.317932,0.370361,0.407318,0.423706,0.41095,0.3396,0.196655,-0.00772095,-0.233643,-0.432892,-0.581635,-0.680359,-0.747864,-0.779022,-0.763184,-0.714508,-0.650085,-0.595337,-0.574646,-0.576996,-0.581085,-0.576538,-0.563232,-0.54895,-0.52652,-0.475464,-0.40094,-0.325928,-0.268127,-0.230194,-0.21283,-0.203552,-0.180481,-0.139862,-0.072876,0.00967407,0.100555,0.198517,0.297607,0.387939,0.459076,0.485992,0.443695,0.339661,0.227386,0.149414,0.111542,0.110016,0.145447,0.231628,0.368134,0.527069,0.667419,0.757751,0.776611,0.732574,0.650818,0.531891,0.390015,0.265503,0.199066,0.21109,0.276459,0.351746,0.414856,0.454773,0.464386,0.424713,0.316376,0.137848,-0.091156,-0.322418,-0.513184,-0.64444,-0.7258,-0.767059,-0.762451,-0.718689,-0.660156,-0.596985,-0.551758,-0.542633,-0.557678,-0.579681,-0.594391,-0.595123,-0.584045,-0.555389,-0.494507,-0.412018,-0.3255,-0.245453,-0.186646,-0.161621,-0.153839,-0.136993,-0.0970459,-0.0288696,0.0470581,0.124756,0.211884,0.299622,0.381073,0.448944,0.473785,0.428009,0.320679,0.214172,0.155792,0.140472,0.154175,0.198608,0.285645,0.414246,0.559631,0.683044,0.750092,0.736481,0.661041,0.566986,0.45459,0.323822,0.215363,0.170807,0.213104,0.304626,0.392914,0.45694,0.479889,0.460358,0.396729,0.269806,0.0750427,-0.166046,-0.401367,-0.578064,-0.686737,-0.73526,-0.738739,-0.710693,-0.660431,-0.600677,-0.541748,-0.506378,-0.515991,-0.559692,-0.603516,-0.629272,-0.630157,-0.60968,-0.566864,-0.489471,-0.388611,-0.28833,-0.203094,-0.14563,-0.125702,-0.130798,-0.124634,-0.0853577,-0.0181274,0.0507507,0.122284,0.205566,0.293823,0.376526,0.443634,0.468079,0.42041,0.309998,0.207733,0.160217,0.153961,0.174103,0.227661,0.321747,0.447205,0.575043,0.682709,0.739502,0.71344,0.620636,0.510071,0.396576,0.281555,0.199341,0.187592,0.249054,0.345032,0.429413,0.483093,0.490417,0.452087,0.365112,0.218201,0.00772095,-0.237183,-0.457336,-0.606476,-0.684113,-0.705261,-0.69519,-0.658936,-0.605591,-0.557129,-0.518951,-0.507324,-0.538818,-0.59967,-0.651367,-0.676056,-0.663116,-0.626129,-0.561157,-0.462036,-0.349945,-0.25061,-0.171295,-0.117249,-0.103699,-0.121399,-0.129272,-0.100342,-0.0331421,0.0465698,0.12854,0.223022,0.314453,0.395325,0.462891,0.486053,0.432434,0.312836,0.202301,0.1539,0.150421,0.172638,0.229736,0.327454,0.45047,0.574707,0.67337,0.716736,0.681915,0.582245,0.470215,0.363312,0.259735,0.191895,0.196503,0.265991,0.362885,0.438995,0.482361,0.484528,0.432892,0.332886,0.17981,-0.0263672,-0.256439,-0.455933,-0.583313,-0.644867,-0.657013,-0.642029,-0.603912,-0.563049,-0.535309,-0.521484,-0.526184,-0.563446,-0.625458,-0.676056,-0.695068,-0.674438,-0.623444,-0.543579,-0.438477,-0.328857,-0.234558,-0.160339,-0.114044,-0.104767,-0.131012,-0.153687,-0.136932,-0.0671692,0.032074,0.131561,0.232422,0.322906,0.40506,0.471497,0.500824,0.457458,0.341217,0.211334,0.143372,0.141022,0.171478,0.227875,0.314026,0.434631,0.560944,0.66095,0.708801,0.680237,0.574921,0.45047,0.348541,0.25946,0.191071,0.178925,0.245789,0.354248,0.440002,0.48056,0.473969,0.420898,0.325836,0.185181,-0.0071106,-0.234833,-0.437469,-0.566467,-0.616791,-0.623657,-0.607483,-0.573242,-0.537201,-0.519562,-0.514313,-0.523102,-0.560028,-0.622986,-0.681244,-0.702698,-0.675323,-0.616455,-0.532379,-0.427612,-0.321075,-0.226593,-0.157257,-0.117584,-0.112427,-0.141876,-0.174377,-0.166321,-0.103363,-0.00839233,0.0924988,0.205383,0.319061,0.4151,0.479889,0.503235,0.466248,0.362885,0.238739,0.157104,0.129608,0.131073,0.169342,0.262634,0.407532,0.55069,0.651825,0.700226,0.685394,0.600433,0.479492,0.371368,0.269928,0.188385,0.168793,0.226929,0.326599,0.411499,0.470154,0.493317,0.460541,0.372284,0.23645,0.0491333,-0.171082,-0.375244,-0.516388,-0.592834,-0.623901,-0.61673,-0.579803,-0.536316,-0.512848,-0.507996,-0.525513,-0.560211,-0.61377,-0.663055,-0.691437,-0.688873,-0.645386,-0.567078,-0.464386,-0.354858,-0.256592,-0.179535,-0.128601,-0.109467,-0.126862,-0.169006,-0.190002,-0.151428,-0.0507507,0.0752258,0.197052,0.30719,0.392365,0.456268,0.493896,0.490082,0.421814,0.294037,0.174835,0.115784,0.116241,0.157776,0.237671,0.356445,0.491425,0.602783,0.672638,0.687866,0.629822,0.504913,0.374634,0.27182,0.193298,0.158264,0.190826,0.282013,0.387207,0.462372,0.49942,0.486847,0.420074,0.304962,0.141205,-0.0699463,-0.288116,-0.463104,-0.565918,-0.608398,-0.609894,-0.583099,-0.538269,-0.506195,-0.496002,-0.50061,-0.524384,-0.56546,-0.624054,-0.672913,-0.695465,-0.672363,-0.607056,-0.511505,-0.403961,-0.304718,-0.221161,-0.15744,-0.123627,-0.114838,-0.139587,-0.178192,-0.178741,-0.112091,0.00637817,0.131226,0.247528,0.349335,0.417328,0.454041,0.467987,0.446594,0.364044,0.244904,0.151947,0.117401,0.130402,0.180206,0.28476,0.427002,0.552429,0.627472,0.656342,0.640167,0.563049,0.442444,0.332092,0.238586,0.163422,0.155579,0.228882,0.34613,0.441345,0.490692,0.505371,0.475922,0.391296,0.255371,0.0674438,-0.158997,-0.367584,-0.512573,-0.580566,-0.602783,-0.597992,-0.564117,-0.51712,-0.490082,-0.485382,-0.498749,-0.534119,-0.58667,-0.64856,-0.689423,-0.69632,-0.662445,-0.590546,-0.485535,-0.369354,-0.267517,-0.191956,-0.144043,-0.110413,-0.0985413,-0.125244,-0.164764,-0.165039,-0.0926208,0.0378418,0.169128,0.280548,0.356384,0.393982,0.421753,0.448273,0.442841,0.363373,0.236572,0.133911,0.0969238,0.114624,0.182098,0.307129,0.454773,0.563385,0.614258,0.628601,0.60968,0.533173,0.413177,0.302704,0.208588,0.145844,0.159271,0.257385,0.390015,0.4841,0.523041,0.530273,0.490356,0.389221,0.235107,0.0312195,-0.197266,-0.408478,-0.545654,-0.593231,-0.593506,-0.569427,-0.525055,-0.478943,-0.461151,-0.474365,-0.502045,-0.539886,-0.60498,-0.682831,-0.731293,-0.728943,-0.678284,-0.593109,-0.480621,-0.357727,-0.252502,-0.17926,-0.120331,-0.0758972,-0.0640259,-0.1008,-0.153961,-0.166931,-0.106384,0.0201416,0.162415,0.281006,0.346252,0.378662,0.417267,0.466003,0.475647,0.397858,0.259338,0.136169,0.0751038,0.0839539,0.1633,0.296112,0.437073,0.53653,0.584442,0.606201,0.595581,0.533569,0.421234,0.297455,0.186981,0.128052,0.152557,0.260284,0.392426,0.484528,0.528473,0.538086,0.501831,0.405457,0.253357,0.0465088,-0.185638,-0.396332,-0.527863,-0.573029,-0.562897,-0.532104,-0.491486,-0.454987,-0.44101,-0.45459,-0.487732,-0.539764,-0.617523,-0.703369,-0.760162,-0.762695,-0.709076,-0.609222,-0.479156,-0.348206,-0.242279,-0.166107,-0.100342,-0.0467224,-0.0278625,-0.0740967,-0.166718,-0.228546,-0.191498,-0.0461731,0.132568,0.262482,0.327179,0.353638,0.404572,0.48645,0.534119,0.465576,0.292023,0.116577,0.0250244,0.0326843,0.111877,0.235718,0.376801,0.494843,0.569427,0.61084,0.622894,0.586182,0.483093,0.343903,0.214447,0.134491,0.140472,0.239136,0.379944,0.478882,0.521027,0.537262,0.529694,0.463837,0.322571,0.119324,-0.116516,-0.344635,-0.509552,-0.571106,-0.555389,-0.515259,-0.480682,-0.458862,-0.448822,-0.456512,-0.481628,-0.528015,-0.61438,-0.721436,-0.804535,-0.814941,-0.752441,-0.639496,-0.500153,-0.364777,-0.255859,-0.174042,-0.0942993,-0.01651,0.0167236,-0.0276489,-0.143097,-0.251617,-0.262421,-0.143951,0.0590515,0.232971,0.324829,0.352905,0.385529,0.468201,0.547668,0.538208,0.387115,0.169617,0.00476074,-0.0379333,0.0310059,0.155579,0.295837,0.418213,0.506317,0.565247,0.603455,0.611023,0.5513,0.424835,0.26825,0.140594,0.107666,0.188049,0.333984,0.460205,0.516937,0.532379,0.541565,0.524841,0.437744,0.271271,0.0414124,-0.21344,-0.423035,-0.531952,-0.530212,-0.481689,-0.449402,-0.447815,-0.460754,-0.46759,-0.476257,-0.503632,-0.58197,-0.701904,-0.810577,-0.848358,-0.799347,-0.695862,-0.563904,-0.42807,-0.31189,-0.225586,-0.146057,-0.0603333,-0.000946045,-0.0108643,-0.0983276,-0.216461,-0.29068,-0.256104,-0.101074,0.115112,0.289612,0.373901,0.397858,0.429535,0.50531,0.565399,0.518555,0.33725,0.105042,-0.0569153,-0.0730896,0.0334167,0.185303,0.323914,0.432159,0.526398,0.605133,0.650696,0.641632,0.551758,0.394165,0.216644,0.0906067,0.0773315,0.176239,0.320343,0.433289,0.493713,0.529358,0.556946,0.5466,0.45694,0.274567,0.0212708,-0.237793,-0.433716,-0.527802,-0.527679,-0.48941,-0.457275,-0.455048,-0.469757,-0.471832,-0.466797,-0.489807,-0.578674,-0.707214,-0.808075,-0.83313,-0.776611,-0.667419,-0.533295,-0.406647,-0.306793,-0.228058,-0.150482,-0.0681152,-0.0158386,-0.0263062,-0.105316,-0.221222,-0.300415,-0.260956,-0.0930786,0.129669,0.297668,0.372833,0.396118,0.43103,0.503052,0.554504,0.50177,0.318329,0.0914001,-0.0594788,-0.0681152,0.0396118,0.188385,0.328278,0.442291,0.538605,0.614258,0.655853,0.640289,0.544189,0.377869,0.193634,0.0631714,0.0441589,0.137268,0.288055,0.426941,0.507721,0.552246,0.580811,0.570435,0.481689,0.297729,0.0463867,-0.217133,-0.427948,-0.53949,-0.543365,-0.489471,-0.444702,-0.438934,-0.453766,-0.460297,-0.455933,-0.476654,-0.55249,-0.674438,-0.786682,-0.832123,-0.789429,-0.68158,-0.551239,-0.427734,-0.326172,-0.241486,-0.160553,-0.0810852,-0.0195923,-0.0102539,-0.0655823,-0.159332,-0.246399,-0.257721,-0.151764,0.04422,0.244629,0.364838,0.404053,0.4133,0.452087,0.508392,0.513855,0.399872,0.190826,-0.00100708,-0.0741577,-0.00939941,0.132233,0.276245,0.3974,0.498749,0.582764,0.629761,0.616394,0.533966,0.396118,0.229218,0.081604,0.0101929,0.0554504,0.193817,0.36734,0.506195,0.577728,0.596405,0.575867,0.51358,0.381226,0.169067,-0.100067,-0.358276,-0.524902,-0.564789,-0.505524,-0.431213,-0.396057,-0.401276,-0.416656,-0.422485,-0.436401,-0.490295,-0.595734,-0.722992,-0.815063,-0.830353,-0.761444,-0.639893,-0.502228,-0.370544,-0.267456,-0.189484,-0.120605,-0.0467224,0.00442505,-0.00161743,-0.065979,-0.160126,-0.238007,-0.229523,-0.104218,0.0960999,0.280151,0.381622,0.414703,0.429962,0.468994,0.519073,0.51062,0.39035,0.181885,0,-0.0594788,0.0115356,0.153503,0.286987,0.396332,0.477875,0.535126,0.564789,0.548615,0.476593,0.34317,0.177979,0.0352478,-0.0201416,0.0477905,0.206573,0.387939,0.512634,0.55896,0.557678,0.530548,0.468994,0.334717,0.111267,-0.161011,-0.401154,-0.530212,-0.530487,-0.44928,-0.36499,-0.328796,-0.339417,-0.368347,-0.392365,-0.421906,-0.482635,-0.595856,-0.730621,-0.827271,-0.837341,-0.752899,-0.609741,-0.453033,-0.320679,-0.228882,-0.164581,-0.103088,-0.0308838,0.0152283,0.00463867,-0.0608826,-0.152222,-0.22403,-0.228455,-0.125183,0.0618896,0.255249,0.382294,0.43808,0.4617,0.491974,0.532166,0.531555,0.426605,0.221161,0.0133667,-0.0837708,-0.0383911,0.0910645,0.221497,0.329285,0.419342,0.488007,0.52948,0.527466,0.467804,0.346802,0.184845,0.0311279,-0.0517578,-0.0166321,0.127869,0.314911,0.462158,0.526917,0.535736,0.519806,0.470947,0.35498,0.151215,-0.103485,-0.3349,-0.46759,-0.48465,-0.416779,-0.332092,-0.286102,-0.290405,-0.325928,-0.363495,-0.405792,-0.474304,-0.583038,-0.709747,-0.80545,-0.827606,-0.753448,-0.613037,-0.453918,-0.317596,-0.22821,-0.169281,-0.114777,-0.0516052,-0.000335693,0.0088501,-0.0307922,-0.101746,-0.168335,-0.20108,-0.152283,0.00241089,0.21579,0.400543,0.491425,0.511078,0.508209,0.523438,0.533966,0.47821,0.317871,0.0855713,-0.0971069,-0.131958,-0.0265808,0.124634,0.245514,0.335724,0.410278,0.463989,0.482574,0.453979,0.366241,0.20993,0.0265198,-0.112488,-0.14328,-0.0534363,0.125977,0.326508,0.470215,0.52243,0.51297,0.474457,0.406799,0.276917,0.0794678,-0.149658,-0.340088,-0.433716,-0.416718,-0.327728,-0.2388,-0.206848,-0.235046,-0.298615,-0.359009,-0.404175,-0.460144,-0.552765,-0.668335,-0.747192,-0.736816,-0.633972,-0.490295,-0.35083,-0.250824,-0.200684,-0.178589,-0.14328,-0.0740356,-0.00335693,0.016449,-0.024292,-0.0872498,-0.13028,-0.132812,-0.0620728,0.0874634,0.264038,0.390686,0.430359,0.429199,0.430542,0.449615,0.457947,0.396515,0.239349,0.0287781,-0.109741,-0.102814,0.0101929,0.13028,0.20874,0.276306,0.346191,0.39566,0.40741,0.374908,0.283234,0.13147,-0.0312805,-0.133972,-0.131409,-0.0236206,0.146637,0.324768,0.44458,0.4841,0.482361,0.462311,0.403442,0.27478,0.0810852,-0.128723,-0.295258,-0.375793,-0.359619,-0.277588,-0.209473,-0.203979,-0.243378,-0.288116,-0.320831,-0.353851,-0.408417,-0.493896,-0.595337,-0.667267,-0.666199,-0.584381,-0.468201,-0.366394,-0.290344,-0.236053,-0.179535,-0.101013,-0.000793457,0.0832214,0.106567,0.0734253,0.0176392,-0.0288696,-0.0624084,-0.0604858,0.0128174,0.141754,0.268066,0.343964,0.381622,0.411346,0.440887,0.451691,0.408203,0.27948,0.0812073,-0.100281,-0.176056,-0.137054,-0.0492554,0.0412903,0.136169,0.239014,0.31311,0.341156,0.328186,0.270355,0.1539,-0.00430298,-0.138,-0.191406,-0.140686,-0.00234985,0.180206,0.351685,0.463226,0.513031,0.515442,0.474518,0.374969,0.213165,0.0148926,-0.171875,-0.297058,-0.33136,-0.280945,-0.19162,-0.13147,-0.128265,-0.1604,-0.194489,-0.215363,-0.252838,-0.338348,-0.46759,-0.588806,-0.645599,-0.619415,-0.536316,-0.431946,-0.324829,-0.21759,-0.121063,-0.0342407,0.0422974,0.108398,0.140411,0.114899,0.0359192,-0.0532227,-0.123962,-0.165375,-0.144836,-0.0483093,0.0972595,0.246918,0.355652,0.420563,0.445465,0.434509,0.392426,0.299011,0.140076,-0.0667114,-0.230011,-0.283447,-0.225433,-0.102631,0.0401917,0.177521,0.281097,0.326599,0.317474,0.27652,0.195374,0.065918,-0.0910034,-0.219879,-0.263428,-0.186371,-0.00274658,0.222351,0.422302,0.536652,0.565918,0.533508,0.454712,0.332825,0.170135,-0.0128784,-0.177856,-0.272766,-0.276581,-0.201813,-0.0925598,-0.0112,0.0142822,-0.017395,-0.0767212,-0.151337,-0.239532,-0.346252,-0.462891,-0.554596,-0.592773,-0.553314,-0.448547,-0.309875,-0.172546,-0.0681763,-0.00793457,0.0171204,0.0305481,0.0477905,0.0499268,0.0174561,-0.049469,-0.11908,-0.164368,-0.174957,-0.132568,-0.0279236,0.11438,0.24295,0.305511,0.31311,0.298859,0.272369,0.234222,0.162811,0.0421448,-0.124634,-0.26123,-0.290802,-0.212433,-0.0851135,0.0272522,0.115967,0.178802,0.212677,0.209259,0.178741,0.117859,0.00979614,-0.122498,-0.229858,-0.250061,-0.155365,0.0359192,0.254242,0.432892,0.529205,0.547211,0.525238,0.4729,0.380066,0.242035,0.0822144,-0.0576477,-0.136841,-0.13269,-0.0542908,0.0553589,0.128998,0.126587,0.0618286,-0.0180664,-0.0888062,-0.162231,-0.253571,-0.361359,-0.450073,-0.484375,-0.451691,-0.368011,-0.273285,-0.187988,-0.124084,-0.0906677,-0.0822754,-0.07901,-0.0562439,-0.0310669,-0.0325623,-0.0605469,-0.0933533,-0.114044,-0.131561,-0.143829,-0.12262,-0.0620728,0.0162354,0.0920715,0.146851,0.180145,0.183838,0.174774,0.157715,0.110596,0.00582886,-0.142944,-0.250824,-0.28067,-0.238068,-0.147247,-0.041626,0.0548401,0.115448,0.142212,0.146057,0.133575,0.0818176,-0.0104675,-0.108337,-0.178864,-0.184509,-0.0907288,0.0927429,0.291809,0.44928,0.53714,0.567078,0.56189,0.508148,0.414978,0.291901,0.161407,0.0508118,-0.00140381,0.0162354,0.0784607,0.155029,0.196045,0.188385,0.131958,0.0536804,-0.0267029,-0.107666,-0.206909,-0.316986,-0.396118,-0.432281,-0.418121,-0.361755,-0.288116,-0.213684,-0.164246,-0.139801,-0.131073,-0.115234,-0.0928345,-0.0764465,-0.0773315,-0.0971069,-0.131348,-0.164917,-0.191956,-0.220886,-0.231079,-0.203644,-0.123077,-0.0120239,0.0747681,0.125977,0.15155,0.157104,0.144897,0.0999451,0.0118713,-0.126526,-0.261566,-0.336243,-0.325165,-0.242767,-0.131134,-0.0170593,0.0734863,0.123566,0.133026,0.125305,0.107574,0.0636292,-0.013092,-0.104309,-0.159943,-0.123352,0.0216064,0.228271,0.429749,0.561218,0.601624,0.596649,0.57196,0.52948,0.458069,0.35141,0.227203,0.128448,0.0926819,0.123627,0.19986,0.262421,0.265167,0.203033,0.108673,0.0244446,-0.0361633,-0.105316,-0.207581,-0.311951,-0.377808,-0.388123,-0.354584,-0.31076,-0.272552,-0.247528,-0.237671,-0.235992,-0.226929,-0.204102,-0.178406,-0.160278,-0.158386,-0.177856,-0.206177,-0.230133,-0.251953,-0.284424,-0.315979,-0.30304,-0.210083,-0.0690002,0.0453796,0.10202,0.120331,0.126984,0.122406,0.0901489,0.00189209,-0.148132,-0.305847,-0.388214,-0.353363,-0.229004,-0.0877991,0.0246887,0.110931,0.173035,0.205566,0.215363,0.199188,0.147308,0.0501404,-0.070343,-0.148651,-0.117462,0.0401917,0.256714,0.452637,0.573975,0.626007,0.649628,0.651428,0.619873,0.529602,0.390747,0.240814,0.126251,0.0795898,0.104095,0.175293,0.235046,0.241425,0.195496,0.140076,0.102081,0.0686646,0.00396729,-0.115906,-0.252411,-0.353363,-0.392639,-0.386597,-0.378479,-0.374237,-0.361816,-0.331482,-0.294159,-0.257111,-0.216248,-0.181549,-0.159943,-0.163086,-0.185364,-0.217194,-0.257324,-0.306976,-0.365906,-0.41217,-0.41156,-0.330536,-0.177734,-0.024292,0.0783386,0.125519,0.138672,0.133575,0.100464,0.0216675,-0.116791,-0.281555,-0.399078,-0.403564,-0.295654,-0.134033,0.0185242,0.14389,0.242767,0.299011,0.309265,0.275909,0.202209,0.0919495,-0.0369873,-0.128876,-0.131683,-0.0167847,0.177063,0.389801,0.573364,0.686859,0.734863,0.731689,0.682037,0.583923,0.442902,0.287384,0.157043,0.0873718,0.0899963,0.155701,0.243042,0.299072,0.296844,0.249878,0.184448,0.108856,0.0148926,-0.113037,-0.256378,-0.37204,-0.443115,-0.467407,-0.467743,-0.448273,-0.409943,-0.355591,-0.30658,-0.269196,-0.240936,-0.221405,-0.209534,-0.211273,-0.228119,-0.257782,-0.295258,-0.33432,-0.369873,-0.391296,-0.394379,-0.341217,-0.220001,-0.0599365,0.0745544,0.142944,0.15744,0.145172,0.119873,0.0706787,-0.0144348,-0.141754,-0.280334,-0.356323,-0.318481,-0.181549,-0.0241089,0.0928345,0.161224,0.205322,0.233215,0.237,0.211823,0.141815,0.0348206,-0.0827637,-0.153107,-0.131073,-0.0015564,0.199066,0.403442,0.570618,0.673645,0.718353,0.722839,0.682312,0.589203,0.442963,0.282684,0.155365,0.102631,0.125092,0.204041,0.299408,0.353027,0.34491,0.289001,0.215637,0.133484,0.0348206,-0.0913391,-0.247803,-0.389343,-0.470154,-0.474365,-0.444977,-0.427185,-0.427124,-0.421417,-0.392914,-0.347992,-0.297516,-0.261017,-0.24939,-0.25705,-0.272949,-0.287201,-0.294647,-0.304443,-0.331299,-0.365662,-0.386322,-0.364777,-0.270752,-0.112213,0.0592041,0.175171,0.220673,0.218597,0.192963,0.142548,0.049469,-0.0832214,-0.236786,-0.352234,-0.376373,-0.286255,-0.116638,0.053894,0.179657,0.252625,0.285248,0.280151,0.2341,0.149811,0.0387268,-0.0719604,-0.152161,-0.170807,-0.0917358,0.0877991,0.310089,0.504913,0.630829,0.689026,0.692047,0.654053,0.570007,0.445801,0.301422,0.183167,0.126587,0.137177,0.194489,0.278748,0.360199,0.397858,0.367676,0.28067,0.168518,0.0585938,-0.046051,-0.15625,-0.278198,-0.390289,-0.460358,-0.470154,-0.44693,-0.425507,-0.404724,-0.364502,-0.312958,-0.268188,-0.24411,-0.233826,-0.238403,-0.258606,-0.287445,-0.322021,-0.346649,-0.35553,-0.345856,-0.31955,-0.27948,-0.22934,-0.154236,-0.0485229,0.0620728,0.130066,0.132019,0.089386,0.0316162,-0.029541,-0.0908203,-0.15451,-0.215912,-0.262085,-0.259064,-0.185242,-0.0579834,0.0727539,0.159546,0.197845,0.211212,0.209259,0.187653,0.135162,0.0569153,-0.0302734,-0.0967102,-0.116516,-0.0596619,0.0827637,0.270355,0.457672,0.606323,0.690369,0.710907,0.681366,0.607605,0.500702,0.370941,0.246643,0.164429,0.144775,0.181549,0.258392,0.344574,0.398468,0.400543,0.360626,0.279205,0.168274,0.0340271,-0.121338,-0.282898,-0.431427,-0.535248,-0.564789,-0.536255,-0.489471,-0.434296,-0.365112,-0.29129,-0.229797,-0.204376,-0.217651,-0.261139,-0.320679,-0.381226,-0.428864,-0.45047,-0.449615,-0.42746,-0.374908,-0.298798,-0.22049,-0.137665,-0.0506592,0.0377808,0.101013,0.113281,0.0846252,0.0429688,0.00100708,-0.0379944,-0.0686035,-0.10022,-0.14209,-0.160339,-0.128387,-0.0462952,0.0554504,0.140808,0.188202,0.20047,0.194702,0.173309,0.139404,0.0773926,-0.00878906,-0.0879211,-0.121735,-0.0881958,0.0147705,0.17691,0.351349,0.507996,0.620026,0.669617,0.660767,0.605988,0.515442,0.402954,0.290283,0.207001,0.179138,0.217194,0.290741,0.370087,0.419067,0.425385,0.387939,0.308319,0.190216,0.0534363,-0.0842285,-0.231018,-0.366669,-0.452362,-0.467926,-0.434784,-0.395905,-0.372894,-0.353699,-0.328278,-0.304565,-0.297516,-0.32016,-0.36322,-0.402039,-0.423035,-0.428467,-0.419617,-0.387054,-0.335114,-0.286438,-0.249146,-0.2229,-0.194153,-0.149536,-0.0898132,-0.0279236,0.0173035,0.0344238,0.0346375,0.0390015,0.0365906,0.0266418,0.00408936,-0.0436401,-0.114227,-0.169403,-0.167267,-0.115723,-0.0340881,0.0399475,0.0922241,0.127045,0.154968,0.170807,0.161621,0.112427,0.0280457,-0.04953,-0.0782471,-0.0462341,0.0516052,0.201752,0.381012,0.554718,0.681488,0.733704,0.719757,0.668152,0.578796,0.456329,0.329956,0.233429,0.198334,0.229736,0.304901,0.387268,0.441772,0.449219,0.399078,0.303711,0.175049,0.025177,-0.131409,-0.285309,-0.425842,-0.52356,-0.556519,-0.536926,-0.491882,-0.446808,-0.412354,-0.38504,-0.368011,-0.370941,-0.388947,-0.414093,-0.437866,-0.448334,-0.440002,-0.415588,-0.371277,-0.308075,-0.242279,-0.182343,-0.131409,-0.0971985,-0.0663147,-0.028717,0.0189209,0.06604,0.101288,0.112885,0.103973,0.0839539,0.0625,0.0405273,-0.00296021,-0.070343,-0.133148,-0.150146,-0.115509,-0.0497437,0.0269165,0.0889282,0.135834,0.179871,0.200012,0.17337,0.0918884,-0.0177307,-0.10437,-0.144226,-0.13269,-0.0641785,0.074707,0.27121,0.479004,0.645447,0.733856,0.742188,0.678741,0.566467,0.420013,0.277466,0.176117,0.145508,0.188049,0.274841,0.379547,0.46814,0.511963,0.48761,0.3862,0.228394,0.0477295,-0.12558,-0.285187,-0.418274,-0.503571,-0.532562,-0.505035,-0.448334,-0.395233,-0.36734,-0.362701,-0.361481,-0.357666,-0.367249,-0.398407,-0.420624,-0.414307,-0.387726,-0.353973,-0.318481,-0.275726,-0.236389,-0.213348,-0.198181,-0.186646,-0.167053,-0.132477,-0.0842896,-0.0159607,0.0552979,0.106171,0.131226,0.13208,0.102478,0.0556946,0.00012207,-0.069458,-0.142883,-0.195312,-0.193298,-0.132141,-0.0310059,0.0700684,0.149658,0.216583,0.249146,0.237793,0.178741,0.0899963,-0.00146484,-0.069458,-0.0870361,-0.045166,0.0657654,0.239685,0.435791,0.612518,0.719421,0.743378,0.696259,0.607483,0.488342,0.351166,0.23288,0.156708,0.155365,0.215179,0.296265,0.364899,0.39975,0.397858,0.343628,0.241425,0.091156,-0.0814819,-0.242432,-0.378601,-0.479675,-0.542297,-0.563507,-0.54425,-0.497406,-0.44397,-0.403625,-0.371765,-0.347931,-0.332886,-0.335571,-0.364502,-0.402039,-0.421906,-0.413086,-0.384857,-0.350677,-0.313568,-0.264374,-0.189728,-0.0959778,-0.0169678,0.03302,0.0533447,0.057312,0.0646973,0.0821533,0.0920715,0.0808716,0.0514832,0.0175171,-0.000335693,0.00637817,0.0159607,0.00744629,-0.00900269,-0.0190735,-0.00738525,0.0365906,0.100616,0.155121,0.179535,0.170135,0.131226,0.0812073,0.0361023,-0.00390625,-0.0224304,-0.00531006,0.0396118,0.119659,0.240814,0.392303,0.531769,0.611847,0.608734,0.536316,0.444977,0.354767,0.278809,0.22168,0.182098,0.17807,0.214569,0.275787,0.3349,0.368347,0.353516,0.282349,0.161682,0.00772095,-0.146973,-0.273895,-0.360809,-0.420685,-0.470001,-0.495575,-0.490295,-0.450623,-0.4021,-0.370941,-0.362152,-0.368195,-0.370087,-0.37204,-0.375732,-0.370422,-0.354187,-0.328735,-0.306793,-0.278748,-0.232758,-0.170471,-0.105713,-0.0514221,-0.0114136,0.0159607,0.0323486,0.0517578,0.0763855,0.104828,0.118591,0.122559,0.115509,0.101135,0.0947571,0.0908203,0.0823669,0.0567932,0.0235596,0.00308228,0.00369263,0.0281067,0.0585327,0.0830994,0.0908813,0.0865784,0.0737,0.0426941,0.00213623,-0.0444946,-0.0720825,-0.0675964,-0.0409546,0.00967407,0.094574,0.220337,0.357941,0.465851,0.508545,0.484589,0.428955,0.353699,0.264923,0.187653,0.136261,0.13443,0.184509,0.262085,0.337921,0.390137,0.402222,0.360809,0.264709,0.12027,-0.0446472,-0.196045,-0.315125,-0.395996,-0.450134,-0.468811,-0.441223,-0.377991,-0.309814,-0.265503,-0.247192,-0.255432,-0.280762,-0.314301,-0.35318,-0.386383,-0.403625,-0.387543,-0.342773,-0.286316,-0.222687,-0.139343,-0.041748,0.0312195,0.0645752,0.0663147,0.0526733,0.0346985,0.0271912,0.0403442,0.057312,0.0771179,0.102081,0.121826,0.139801,0.151886,0.141541,0.10498,0.0438843,-0.0267029,-0.0875854,-0.116119,-0.105835,-0.0626221,0.000213623,0.0524292,0.0845032,0.0898743,0.0657043,0.0159607,-0.0497437,-0.107727,-0.14859,-0.155365,-0.101746,0.0202637,0.190887,0.358948,0.481018,0.531036,0.519226,0.463226,0.373901,0.268738,0.172424,0.107849,0.101196,0.15451,0.238922,0.326599,0.393158,0.402283,0.35141,0.251892,0.11087,-0.0425415,-0.179413,-0.288055,-0.365326,-0.400085,-0.385529,-0.33667,-0.271881,-0.227386,-0.218384,-0.229523,-0.251221,-0.275391,-0.304443,-0.338593,-0.366791,-0.364838,-0.323364,-0.258331,-0.187469,-0.126648,-0.0758972,-0.0353699,-0.0116882,-0.0114136,-0.0299988,-0.049469,-0.0638428,-0.0646973,-0.0306091,0.0209351,0.0750427,0.117126,0.138672,0.134766,0.117798,0.0840149,0.0306702,-0.0358276,-0.102203,-0.150208,-0.151672,-0.0977173,-0.016449,0.0622864,0.113098,0.138672,0.13028,0.0861206,0.0228271,-0.0396118,-0.0861816,-0.11142,-0.100006,-0.0383301,0.0874634,0.255646,0.404449,0.489349,0.491974,0.432709,0.349274,0.263245,0.179138,0.109528,0.0758972,0.0936279,0.164764,0.255371,0.330017,0.370758,0.360199,0.296265,0.186127,0.0457764,-0.0997925,-0.218536,-0.292297,-0.326263,-0.328857,-0.30014,-0.251221,-0.197784,-0.163147,-0.15921,-0.183441,-0.217987,-0.249542,-0.283508,-0.314178,-0.331818,-0.315033,-0.259796,-0.184906,-0.115845,-0.061676,-0.0162354,0.0113525,0.0180664,0.0020752,-0.0310669,-0.0693359,-0.10321,-0.114716,-0.0871277,-0.0297241,0.0422058,0.105438,0.138184,0.135254,0.114716,0.0792542,0.0190735,-0.061676,-0.144562,-0.206512,-0.225922,-0.189209,-0.104034,0.00289917,0.0956421,0.141693,0.136505,0.0875244,0.0148315,-0.061615,-0.118591,-0.155457,-0.159546,-0.107391,0.0166321,0.19342,0.369019,0.488861,0.525574,0.497742,0.430634,0.343506,0.247864,0.158325,0.104767,0.110077,0.170532,0.255371,0.340149,0.390961,0.385773,0.325928,0.22403,0.0969849,-0.0354919,-0.153839,-0.248871,-0.312897,-0.337677,-0.315918,-0.266998,-0.214233,-0.184174,-0.184692,-0.210266,-0.236176,-0.255096,-0.281342,-0.314575,-0.33255,-0.310944,-0.259674,-0.199341,-0.143555,-0.0997925,-0.0636902,-0.0371094,-0.0245667,-0.0264587,-0.0401917,-0.0567932,-0.0661011,-0.0524902,-0.00369263,0.0643616,0.12854,0.171631,0.182831,0.15979,0.118927,0.0641785,-0.00616455,-0.0895386,-0.166168,-0.200195,-0.185791,-0.131012,-0.0557861,0.0326843,0.0986633,0.116974,0.0817566,0.00592041,-0.0806885,-0.162628,-0.215179,-0.23053,-0.205719,-0.128448,0.00302124,0.174835,0.339264,0.449402,0.480743,0.44632,0.375854,0.284912,0.187927,0.111877,0.0761719,0.0963745,0.158661,0.238525,0.318054,0.378998,0.394257,0.348602,0.264923,0.153351,0.036438,-0.0585938,-0.132904,-0.183685,-0.21109,-0.218597,-0.203217,-0.171082,-0.149139,-0.163422,-0.196503,-0.231476,-0.255188,-0.263977,-0.272766,-0.281769,-0.27652,-0.247711,-0.210754,-0.173981,-0.143158,-0.130005,-0.126526,-0.11731,-0.103088,-0.0875244,-0.0706787,-0.0558472,-0.0421448,-0.0101929,0.0469666,0.110077,0.165436,0.184448,0.153107,0.0973206,0.0505371,0.0185852,-0.0168457,-0.0673828,-0.118591,-0.140869,-0.115723,-0.0448914,0.0507507,0.130402,0.16095,0.131012,0.0592651,-0.0233459,-0.107117,-0.179871,-0.228394,-0.244049,-0.21228,-0.119324,0.0369263,0.21344,0.348999,0.404907,0.381073,0.312164,0.216858,0.112885,0.0177307,-0.0396118,-0.0499878,-0.00967407,0.0870361,0.21814,0.350555,0.441101,0.451569,0.387207,0.279755,0.157532,0.0341492,-0.0727539,-0.1586,-0.215576,-0.22879,-0.190735,-0.116913,-0.0461121,-0.0142212,-0.0290527,-0.0663757,-0.107391,-0.1474,-0.193695,-0.241272,-0.27182,-0.273834,-0.245117,-0.195709,-0.139679,-0.0883179,-0.0536194,-0.0307312,-0.0151672,-0.00558472,-0.0175171,-0.0444946,-0.0698547,-0.0793457,-0.0589905,-0.0065918,0.0578003,0.108185,0.12442,0.104095,0.0654297,0.0262451,-0.0194702,-0.085907,-0.156433,-0.204498,-0.208679,-0.167725,-0.0947571,-0.00918579,0.0552368,0.0761108,0.0387878,-0.0413513,-0.124847,-0.188599,-0.225311,-0.234222,-0.206665,-0.130554,-0.0140991,0.130341,0.265381,0.354584,0.373169,0.329468,0.261292,0.190277,0.129333,0.0872498,0.0774536,0.110596,0.184235,0.283905,0.38089,0.439087,0.438324,0.377045,0.280945,0.177856,0.0841675,-0.00717163,-0.0889282,-0.151886,-0.182098,-0.17276,-0.139801,-0.107239,-0.0994568,-0.122559,-0.155182,-0.182007,-0.197784,-0.20752,-0.220062,-0.229462,-0.225922,-0.206665,-0.178986,-0.144714,-0.105438,-0.0721436,-0.0516052,-0.0381775,-0.0247803,-0.00726318,0.0109253,0.0166321,0.0103455,0.00866699,0.0220947,0.049408,0.0814209,0.0960388,0.0760498,0.0284424,-0.0169067,-0.0435486,-0.0657043,-0.103699,-0.160217,-0.201813,-0.207397,-0.175629,-0.115295,-0.0467224,-0.00576782,-0.0179138,-0.0701294,-0.132233,-0.177795,-0.205444,-0.223755,-0.227661,-0.197662,-0.126373,-0.0177917,0.12149,0.261627,0.355103,0.375793,0.339142,0.28653,0.237396,0.191223,0.145294,0.114777,0.126099,0.190216,0.289459,0.387604,0.451569,0.460541,0.421295,0.350067,0.260406,0.163818,0.0635681,-0.0273132,-0.0996704,-0.144775,-0.156982,-0.136993,-0.101135,-0.0726929,-0.0761108,-0.113708,-0.16156,-0.19101,-0.200134,-0.207336,-0.22464,-0.24115,-0.241699,-0.226105,-0.202423,-0.177582,-0.156525,-0.141479,-0.126099,-0.113159,-0.104034,-0.104553,-0.109344,-0.104492,-0.0775146,-0.029541,0.0179749,0.0475769,0.0558472,0.0422058,0.0183105,-0.00616455,-0.025177,-0.0475769,-0.0870361,-0.130402,-0.146179,-0.119202,-0.0562439,0.0183105,0.0767212,0.0968628,0.0677795,0.0020752,-0.0713501,-0.135162,-0.176514,-0.197113,-0.197723,-0.162292,-0.0757141,0.0492554,0.184631,0.291412,0.339142,0.3302,0.28418,0.221741,0.155853,0.0918884,0.0512085,0.0503235,0.101746,0.198944,0.308533,0.3992,0.444977,0.444305,0.393921,0.311218,0.221283,0.128265,0.0361633,-0.0462341,-0.105438,-0.12677,-0.106506,-0.0673218,-0.0430298,-0.0441589,-0.0734863,-0.111145,-0.144897,-0.169342,-0.191742,-0.220215,-0.244293,-0.250214,-0.233307,-0.205841,-0.187256,-0.177063,-0.162415,-0.140259,-0.122955,-0.120544,-0.122681,-0.129608,-0.132355,-0.119263,-0.085907,-0.0361023,0.0157166,0.0505371,0.0521545,0.0237732,-0.0128784,-0.0397949,-0.0561218,-0.0854492,-0.134369,-0.174957,-0.177856,-0.133698,-0.0579834,0.0263672,0.0873108,0.0977783,0.06073,-0.011261,-0.0885925,-0.145905,-0.177185,-0.186035,-0.168518,-0.114777,-0.01651,0.123291,0.273895,0.382629,0.421234,0.392761,0.326324,0.252686,0.179138,0.112549,0.0692749,0.073822,0.134644,0.237,0.348602,0.431549,0.461304,0.43631,0.363647,0.262146,0.15329,0.0420227,-0.0704651,-0.170013,-0.227539,-0.228119,-0.183838,-0.123169,-0.0720215,-0.0515442,-0.0636292,-0.0848389,-0.109467,-0.135437,-0.171417,-0.214233,-0.251617,-0.269745,-0.259125,-0.227386,-0.182556,-0.133575,-0.089386,-0.0583801,-0.0469666,-0.053772,-0.0726318,-0.0939026,-0.107239,-0.100067,-0.0698547,-0.0345764,-0.0017395,0.0245667,0.0297241,0.012085,-0.0170593,-0.0487976,-0.0892639,-0.147858,-0.204559,-0.230072,-0.201874,-0.130615,-0.0383911,0.04422,0.0869751,0.0743103,0.0136108,-0.0644836,-0.132019,-0.177917,-0.202148,-0.198669,-0.147858,-0.0411987,0.109406,0.270477,0.39624,0.45163,0.429016,0.35611,0.265503,0.173309,0.0934143,0.0426331,0.0453796,0.114563,0.233429,0.358063,0.448059,0.481018,0.457611,0.384521,0.275177,0.148987,0.0317993,-0.0646362,-0.140411,-0.184448,-0.184509,-0.141083,-0.0800171,-0.0303955,-0.0179138,-0.0418091,-0.0863647,-0.132019,-0.171753,-0.207581,-0.235321,-0.246918,-0.238068,-0.216858,-0.190674,-0.164764,-0.132629,-0.0991211,-0.07901,-0.0758972,-0.0891418,-0.113892,-0.136108,-0.14093,-0.120331,-0.0753174,-0.0216675,0.0198059,0.0357666,0.0296021,0.00610352,-0.0257874,-0.0556335,-0.0899963,-0.144379,-0.204224,-0.238922,-0.217926,-0.145905,-0.0419617,0.0556946,0.108124,0.10376,0.0434875,-0.0424805,-0.123901,-0.186188,-0.226318,-0.238007,-0.202972,-0.110931,0.0317993,0.199738,0.34671,0.436462,0.447052,0.396393,0.313507,0.221893,0.129395,0.0583801,0.0377197,0.0771179,0.177795,0.307465,0.425171,0.494781,0.502441,0.452423,0.362762,0.252563,0.134308,0.0120239,-0.102478,-0.190613,-0.223236,-0.194763,-0.128662,-0.0608826,-0.0197449,-0.0196533,-0.0476379,-0.085907,-0.126984,-0.172821,-0.225098,-0.273773,-0.304901,-0.30954,-0.282776,-0.230469,-0.164703,-0.106323,-0.0661621,-0.0474548,-0.0487366,-0.0688477,-0.102692,-0.12793,-0.128998,-0.103363,-0.0558472,-0.00146484,0.046051,0.0643616,0.0512695,0.0163879,-0.0171814,-0.0526733,-0.105164,-0.175385,-0.225372,-0.225311,-0.172546,-0.0892639,0.00308228,0.0690613,0.0830994,0.0367737,-0.0455017,-0.130798,-0.200409,-0.246857,-0.264984,-0.228546,-0.136932,-0.00582886,0.147461,0.294922,0.402283,0.436066,0.393646,0.308472,0.212433,0.129883,0.0656433,0.0404663,0.0740356,0.164032,0.295715,0.427521,0.514984,0.530609,0.483032,0.394104,0.285522,0.166718,0.0492554,-0.0555725,-0.136505,-0.176056,-0.161407,-0.108856,-0.0477905,-0.00906372,-0.00692749,-0.0376587,-0.082428,-0.134918,-0.19101,-0.246979,-0.289124,-0.309479,-0.306793,-0.283905,-0.243225,-0.190826,-0.134155,-0.0927429,-0.0718079,-0.0673218,-0.0751648,-0.103302,-0.139008,-0.152283,-0.130127,-0.0747681,-0.00665283,0.053009,0.07901,0.0680542,0.0420837,0.0150452,-0.00845337,-0.0482483,-0.109589,-0.167725,-0.188324,-0.155701,-0.0842285,0.00738525,0.0849609,0.115631,0.0888062,0.00631714,-0.0903931,-0.171356,-0.216705,-0.232758,-0.227539,-0.18866,-0.104095,0.0252991,0.173157,0.297607,0.360077,0.346863,0.27774,0.185516,0.0977173,0.0350952,0.00424194,0.0151672,0.0755615,0.18512,0.315521,0.431549,0.498413,0.503174,0.448334,0.351837,0.23819,0.131683,0.0423584,-0.0363159,-0.0952454,-0.112274,-0.0760498,-0.00610352,0.0569153,0.0775757,0.0524292,-0.00357056,-0.070282,-0.131622,-0.187042,-0.240692,-0.285706,-0.306915,-0.301697,-0.269806,-0.220612,-0.171417,-0.138397,-0.127258,-0.133423,-0.150818,-0.180664,-0.21283,-0.22879,-0.215363,-0.172211,-0.103699,-0.0297852,0.0245056,0.0418701,0.0289307,0.00262451,-0.0152893,-0.0326843,-0.0677185,-0.117249,-0.148926,-0.138519,-0.0791931,0.0151062,0.11261,0.175842,0.176971,0.120544,0.0280457,-0.0599365,-0.115784,-0.145508,-0.163971,-0.157654,-0.10968,-0.0163879,0.113953,0.243103,0.334381,0.35968,0.316864,0.229462,0.138458,0.0668335,0.0108032,-0.0172424,0.000213623,0.0717468,0.182007,0.298462,0.389557,0.430878,0.421143,0.355713,0.259949,0.162231,0.074707,-0.00827026,-0.0883789,-0.140259,-0.139465,-0.0896606,-0.019989,0.0326843,0.049469,0.0267029,-0.0233459,-0.0818787,-0.122742,-0.147919,-0.178925,-0.221283,-0.253906,-0.261963,-0.240479,-0.201965,-0.164703,-0.139587,-0.137177,-0.144562,-0.161133,-0.180878,-0.191833,-0.185516,-0.160553,-0.118866,-0.070282,-0.0290527,-0.00958252,-0.0133667,-0.037262,-0.0612793,-0.0745544,-0.0926208,-0.12323,-0.145233,-0.140015,-0.100739,-0.0265198,0.0649719,0.14209,0.174713,0.146637,0.0720825,-0.0142822,-0.0786743,-0.110077,-0.121063,-0.114716,-0.0737,0.00772095,0.127106,0.258789,0.360199,0.404633,0.387726,0.324768,0.238525,0.151825,0.0718689,0.0108032,-0.00637817,0.0281982,0.119873,0.238342,0.343445,0.402954,0.40564,0.360809,0.276245,0.175781,0.0724182,-0.0309448,-0.13028,-0.209259,-0.231964,-0.18927,-0.108856,-0.0322876,0.00408936,-0.000610352,-0.0323486,-0.0751648,-0.11972,-0.162354,-0.206329,-0.250153,-0.275787,-0.280762,-0.259888,-0.210999,-0.156769,-0.120392,-0.10907,-0.115723,-0.131958,-0.150208,-0.161957,-0.16275,-0.13974,-0.0948486,-0.0414734,0.00894165,0.0343018,0.028595,-0.00509644,-0.0413513,-0.0604858,-0.0849609,-0.127655,-0.161011,-0.160889,-0.110077,-0.0212097,0.0833435,0.169861,0.205109,0.175049,0.0908813,-0.00717163,-0.0885925,-0.143158,-0.168732,-0.163361,-0.112701,-0.0159607,0.124908,0.279541,0.407135,0.465332,0.437927,0.350067,0.238739,0.12912,0.0304565,-0.0418091,-0.0599365,-0.00985718,0.104492,0.249664,0.375061,0.444519,0.443024,0.375183,0.267792,0.149078,0.0260315,-0.0959167,-0.210938,-0.284363,-0.284119,-0.207672,-0.0997925,-0.00933838,0.0343628,0.0261841,-0.0125427,-0.0649109,-0.116394,-0.163361,-0.212006,-0.255371,-0.274109,-0.259064,-0.21814,-0.163025,-0.105316,-0.0655823,-0.0609436,-0.0821533,-0.113159,-0.133301,-0.139008,-0.126984,-0.0990601,-0.0531006,-0.00167847,0.032959,0.0405273,0.0200806,-0.0177307,-0.0589294,-0.0897217,-0.130066,-0.177124,-0.19812,-0.171814,-0.0934143,0.00933838,0.10321,0.15686,0.157532,0.10321,0.0105896,-0.0838318,-0.161346,-0.213837,-0.228729,-0.194824,-0.106659,0.028595,0.193756,0.35022,0.452484,0.469818,0.410553,0.304779,0.186035,0.0821533,-0.00665283,-0.0545044,-0.0383911,0.0478516,0.190216,0.350891,0.473694,0.519958,0.481506,0.376587,0.2435,0.109253,-0.0212097,-0.145111,-0.245117,-0.29007,-0.260406,-0.16571,-0.0541077,0.027771,0.053772,0.0230103,-0.0369873,-0.101349,-0.155579,-0.210693,-0.269592,-0.3125,-0.318604,-0.287048,-0.223694,-0.147308,-0.0870361,-0.0614929,-0.0720215,-0.100342,-0.119263,-0.121552,-0.113281,-0.0949097,-0.0608826,-0.0126038,0.0350342,0.0724182,0.0851135,0.0622864,0.0146179,-0.0401306,-0.0908203,-0.135162,-0.167114,-0.166168,-0.123291,-0.0369263,0.0644836,0.136993,0.161469,0.136444,0.0567017,-0.049408,-0.153564,-0.236389,-0.284576,-0.282166,-0.217926,-0.0996094,0.0625,0.230011,0.364227,0.430145,0.414856,0.326385,0.199677,0.0737,-0.0238953,-0.078064,-0.0711365,-0.00363159,0.127777,0.301636,0.463837,0.559631,0.563171,0.476807,0.336517,0.182281,0.0302734,-0.106567,-0.208344,-0.261292,-0.24295,-0.154297,-0.0350952,0.0618286,0.114563,0.112091,0.0541077,-0.0381165,-0.134644,-0.214233,-0.275513,-0.316986,-0.332367,-0.313019,-0.253754,-0.169952,-0.0935059,-0.0522766,-0.0578003,-0.0913391,-0.127319,-0.1521,-0.16391,-0.158875,-0.12973,-0.0791321,-0.0173035,0.036499,0.0699463,0.0780029,0.0555115,0.0134277,-0.0434875,-0.109131,-0.163239,-0.179932,-0.151672,-0.0818787,0.0161743,0.106171,0.161072,0.168671,0.12207,0.0300598,-0.0753174,-0.171295,-0.2453,-0.283691,-0.263428,-0.174042,-0.024292,0.15564,0.313568,0.413025,0.430481,0.367584,0.249878,0.11853,0.000671387,-0.0885925,-0.121002,-0.0834961,0.0247803,0.188599,0.363831,0.495117,0.542694,0.502716,0.390564,0.248718,0.101135,-0.0396729,-0.160004,-0.2341,-0.234711,-0.16275,-0.0455017,0.0663147,0.137726,0.156769,0.125977,0.0502014,-0.0450439,-0.137268,-0.221832,-0.289001,-0.325836,-0.318817,-0.268738,-0.192902,-0.116058,-0.0663147,-0.0594788,-0.0908813,-0.138397,-0.181549,-0.207184,-0.216309,-0.202484,-0.163361,-0.104156,-0.0444336,0.0071106,0.0463867,0.0506592,0.0247803,-0.0281982,-0.0970459,-0.165833,-0.204651,-0.194763,-0.132294,-0.0293274,0.0783997,0.155975,0.194366,0.186707,0.124298,0.0271301,-0.0714722,-0.158112,-0.217468,-0.227722,-0.1763,-0.0584717,0.111877,0.28537,0.406738,0.453156,0.423584,0.325043,0.189941,0.0535583,-0.0549011,-0.106567,-0.0964355,-0.0261841,0.106506,0.281433,0.43512,0.522156,0.516113,0.420471,0.279541,0.124237,-0.0228882,-0.14505,-0.229462,-0.256042,-0.206238,-0.0894775,0.0397949,0.132019,0.161072,0.130402,0.0571899,-0.0353699,-0.13324,-0.229401,-0.304169,-0.342224,-0.339935,-0.291351,-0.212769,-0.129211,-0.0708008,-0.0589905,-0.0979309,-0.167175,-0.227112,-0.26236,-0.263763,-0.236511,-0.194153,-0.137665,-0.0684509,0.0017395,0.0480652,0.0535583,0.0238953,-0.0267944,-0.0962524,-0.167389,-0.210999,-0.201813,-0.128387,-0.0142822,0.101746,0.189056,0.237,0.233368,0.18277,0.099884,-0.00415039,-0.114777,-0.195099,-0.213837,-0.158936,-0.0355835,0.132233,0.304779,0.444458,0.515381,0.500763,0.410217,0.27182,0.116852,-0.0228882,-0.108673,-0.122559,-0.04953,0.0965881,0.269928,0.415649,0.497864,0.496521,0.411438,0.270264,0.102478,-0.0727539,-0.227936,-0.333099,-0.353363,-0.282623,-0.154449,-0.0246887,0.0682678,0.111206,0.102203,0.0458374,-0.0424805,-0.143433,-0.240753,-0.320221,-0.370209,-0.370605,-0.312225,-0.218719,-0.122955,-0.0595398,-0.0523376,-0.0864563,-0.133026,-0.168335,-0.183624,-0.177246,-0.165649,-0.147522,-0.108856,-0.0513306,0.00616455,0.0381165,0.0363159,0.0088501,-0.0471191,-0.11438,-0.171539,-0.191742,-0.161682,-0.0883179,0.0020752,0.0855713,0.154694,0.191406,0.183105,0.137451,0.0576477,-0.04422,-0.141266,-0.189056,-0.164978,-0.0698547,0.0776672,0.243042,0.399597,0.516205,0.563507,0.526855,0.414764,0.258728,0.0962524,-0.0326843,-0.104034,-0.0895996,0.0192566,0.187592,0.356995,0.475647,0.51767,0.477264,0.36673,0.197784,-0.00241089,-0.200958,-0.363159,-0.446594,-0.419281,-0.301147,-0.146973,-0.0151672,0.0686035,0.0971985,0.0750427,0.00457764,-0.0984497,-0.214355,-0.329132,-0.417542,-0.451904,-0.414642,-0.318817,-0.197723,-0.0921631,-0.036377,-0.0358276,-0.0612793,-0.0881958,-0.108521,-0.124023,-0.140198,-0.15094,-0.136108,-0.0992737,-0.0449829,0.00637817,0.0357666,0.0371704,0.00497437,-0.0467834,-0.0967102,-0.12207,-0.11026,-0.0679932,-0.0105286,0.045105,0.0975952,0.134583,0.14328,0.127106,0.081604,0.00296021,-0.0856934,-0.138672,-0.124573,-0.0445557,0.0782471,0.21228,0.342102,0.448212,0.50412,0.491699,0.415192,0.290894,0.143036,0.0162354,-0.0584717,-0.04953,0.0383911,0.174438,0.317596,0.431366,0.483643,0.456116,0.359131,0.21048,0.0261841,-0.167603,-0.336578,-0.427612,-0.414032,-0.319,-0.189941,-0.0687866,0.0194702,0.0649719,0.062561,0.0102539,-0.0819397,-0.200287,-0.322754,-0.422638,-0.469421,-0.452637,-0.386597,-0.289459,-0.186798,-0.111877,-0.0726929,-0.0555725,-0.0457153,-0.0354309,-0.0421448,-0.0779114,-0.120331,-0.140594,-0.128937,-0.0959778,-0.0545044,-0.0143738,0.0109253,0.0157166,0.00985718,0.00296021,0.0115967,0.0355835,0.0562439,0.0672607,0.0675049,0.0625,0.0566406,0.0569153,0.0579834,0.0402832,-0.00759888,-0.0516052,-0.0544434,-0.00515747,0.0821533,0.17807,0.264648,0.334106,0.377991,0.389557,0.360687,0.292023,0.195251,0.0984497,0.0293884,0.00683594,0.0512085,0.148804,0.265656,0.363892,0.41571,0.412231,0.364502,0.269135,0.125244,-0.0458374,-0.214233,-0.336914,-0.375641,-0.330872,-0.238922,-0.143158,-0.0648193,-0.012146,0.0145569,0.00726318,-0.0397339,-0.131348,-0.250671,-0.37027,-0.457611,-0.489288,-0.463715,-0.395782,-0.312683,-0.243103,-0.186371,-0.125977,-0.0564575,0.0107422,0.0452271,0.0180664,-0.050415,-0.113281,-0.145447,-0.146912,-0.124298,-0.0934143,-0.0569763,-0.0189819,0.0266418,0.0771179,0.131805,0.181488,0.204437,0.190613,0.140686,0.0776672,0.0370483,0.0224915,0.0152893,-0.00106812,-0.025116,-0.0358276,-0.00268555,0.0736389,0.167328,0.249542,0.300751,0.330627,0.344299,0.329742,0.275574,0.193024,0.108917,0.0401917,0.0032959,0.00958252,0.0748291,0.184631,0.299133,0.372955,0.387787,0.35498,0.285187,0.179993,0.0484619,-0.100952,-0.240692,-0.327942,-0.334167,-0.269684,-0.1745,-0.0932312,-0.0424805,-0.0161133,-0.0120239,-0.0340881,-0.0826111,-0.152771,-0.242279,-0.331024,-0.396332,-0.421234,-0.399414,-0.346039,-0.293579,-0.262238,-0.234222,-0.185913,-0.106384,-0.0183105,0.0322266,0.0201416,-0.028656,-0.0774536,-0.109741,-0.123901,-0.131561,-0.140747,-0.138336,-0.108459,-0.0515442,0.0297852,0.130219,0.217316,0.262695,0.252228,0.197662,0.129944,0.0743713,0.0357056,-0.00161743,-0.0488586,-0.08255,-0.0640869,0.0223389,0.152893,0.287323,0.38443,0.435242,0.445038,0.42215,0.358459,0.259888,0.144165,0.0354919,-0.0420837,-0.0618286,-0.00509644,0.116394,0.258789,0.367462,0.417603,0.402618,0.336853,0.221893,0.0632935,-0.11618,-0.285187,-0.406067,-0.43808,-0.381836,-0.267181,-0.144714,-0.0536804,-0.00112915,0.0159607,-0.00860596,-0.0716248,-0.157654,-0.255188,-0.353302,-0.421814,-0.439331,-0.404388,-0.333435,-0.261139,-0.215027,-0.181488,-0.139404,-0.0863037,-0.024231,0.0213318,0.0224915,-0.0105286,-0.0455017,-0.0682678,-0.0769043,-0.081604,-0.0958557,-0.111755,-0.105499,-0.0716248,-0.0148315,0.0657654,0.151001,0.216583,0.243774,0.218536,0.164978,0.11853,0.0794067,0.0275269,-0.0361633,-0.0884705,-0.0965881,-0.0432129,0.065033,0.202026,0.327057,0.419403,0.467865,0.475586,0.435059,0.336853,0.198059,0.0577087,-0.0433655,-0.0838928,-0.0589294,0.0367737,0.178528,0.320343,0.420624,0.454926,0.42215,0.324768,0.16449,-0.0362549,-0.239075,-0.398407,-0.472778,-0.45694,-0.367401,-0.241821,-0.122955,-0.0311279,0.0292664,0.0430908,0.00280762,-0.0880432,-0.214508,-0.34552,-0.446808,-0.502625,-0.50766,-0.456848,-0.376801,-0.294922,-0.208679,-0.110748,-0.00430298,0.0843506,0.111023,0.0699463,-0.00335693,-0.069397,-0.11908,-0.147461,-0.15625,-0.15564,-0.132477,-0.0834351,-0.0050354,0.0978699,0.205048,0.271545,0.283356,0.248596,0.178192,0.105774,0.0613403,0.0383911,0.0149536,-0.0187378,-0.0423584,-0.0268555,0.0565796,0.179993,0.283447,0.344849,0.376648,0.38913,0.382843,0.342102,0.265991,0.170532,0.0734253,-0.00448608,-0.0303955,0.00665283,0.0963745,0.208344,0.300812,0.353027,0.361481,0.328125,0.247986,0.124634,-0.0379333,-0.214294,-0.348816,-0.40271,-0.379822,-0.307861,-0.227264,-0.15799,-0.0972595,-0.0499268,-0.0322876,-0.0576477,-0.126312,-0.229736,-0.340546,-0.43161,-0.482361,-0.4841,-0.455322,-0.41687,-0.363098,-0.27243,-0.138458,0.00744629,0.115631,0.149994,0.112762,0.0346985,-0.0440979,-0.107513,-0.15799,-0.199738,-0.217712,-0.186584,-0.102631,0.0332947,0.194824,0.333099,0.404388,0.391815,0.299866,0.176636,0.0789185,0.0167236,-0.0354919,-0.081543,-0.098999,-0.0549622,0.0665894,0.230957,0.369598,0.446136,0.45929,0.424927,0.362549,0.280212,0.18161,0.0832214,0.00732422,-0.0344849,-0.0230103,0.0475769,0.162292,0.281281,0.359131,0.36673,0.320953,0.252411,0.168732,0.0556335,-0.0910034,-0.23465,-0.324493,-0.334503,-0.278412,-0.203644,-0.145172,-0.113831,-0.0922852,-0.0808105,-0.0907288,-0.132294,-0.20578,-0.292633,-0.371552,-0.435242,-0.468872,-0.463898,-0.432281,-0.397736,-0.353363,-0.278656,-0.171295,-0.0532837,0.0361633,0.068512,0.0428772,-0.00967407,-0.0554504,-0.0952454,-0.133026,-0.175903,-0.205841,-0.185516,-0.0920105,0.0569153,0.209473,0.325836,0.377533,0.358337,0.289215,0.208191,0.138245,0.0737,0.00128174,-0.0638428,-0.0829468,-0.0148926,0.131409,0.301971,0.43457,0.501709,0.511353,0.475128,0.401947,0.29425,0.17215,0.0534363,-0.0412903,-0.077179,-0.0317383,0.0740967,0.208679,0.324646,0.378662,0.367798,0.31134,0.21463,0.0878601,-0.0632324,-0.223175,-0.349945,-0.39505,-0.353699,-0.263367,-0.168518,-0.0962524,-0.0562439,-0.0464478,-0.0623474,-0.105835,-0.18161,-0.281616,-0.382172,-0.461365,-0.504395,-0.504059,-0.475037,-0.430359,-0.365509,-0.274902,-0.162231,-0.049469,0.0361023,0.0661011,0.0411377,-0.0105286,-0.0565186,-0.104309,-0.154114,-0.200806,-0.227997,-0.204376,-0.108856,0.0452271,0.212555,0.341278,0.393097,0.36264,0.288788,0.206909,0.141815,0.0756531,-0.00100708,-0.0701294,-0.0906677,-0.024353,0.124176,0.305054,0.444122,0.515656,0.533386,0.499542,0.421417,0.316711,0.20282,0.0863037,-0.0114746,-0.0626221,-0.0419617,0.052948,0.188324,0.306122,0.369019,0.377472,0.337067,0.248596,0.125366,-0.03302,-0.202881,-0.337585,-0.39209,-0.365051,-0.288788,-0.20282,-0.128326,-0.0725403,-0.037323,-0.032074,-0.0706177,-0.150146,-0.254639,-0.364838,-0.462708,-0.527863,-0.541687,-0.518799,-0.467926,-0.385101,-0.276459,-0.154449,-0.0411377,0.0302734,0.0433044,0.013092,-0.0353699,-0.0935669,-0.156921,-0.214355,-0.253082,-0.259064,-0.202423,-0.0727539,0.0973816,0.247803,0.340485,0.362976,0.329865,0.271027,0.207458,0.143494,0.0744934,0.00448608,-0.0400696,-0.0191956,0.0829468,0.236511,0.373627,0.463379,0.508057,0.507263,0.460815,0.385712,0.297729,0.202423,0.101471,0.0229492,-0.00256348,0.0367737,0.121063,0.207916,0.264709,0.290009,0.285583,0.244904,0.163635,0.0455627,-0.0953674,-0.223083,-0.3078,-0.330078,-0.306122,-0.261566,-0.204224,-0.145721,-0.0959778,-0.0710144,-0.0800781,-0.124084,-0.194702,-0.283508,-0.381409,-0.462891,-0.50705,-0.502441,-0.45343,-0.36969,-0.263306,-0.154572,-0.0569763,0.00314331,0.0115356,-0.0144958,-0.0620117,-0.118408,-0.182281,-0.238678,-0.270538,-0.260803,-0.183228,-0.0447083,0.108459,0.225433,0.275726,0.266571,0.230408,0.186584,0.137054,0.085907,0.0359802,-0.00491333,-0.00698853,0.0534363,0.176971,0.316193,0.418396,0.466461,0.471497,0.440765,0.380066,0.305389,0.237396,0.172424,0.116516,0.0915527,0.118744,0.183563,0.253296,0.291687,0.291229,0.259949,0.203033,0.127533,0.0399475,-0.0598755,-0.152222,-0.216522,-0.234711,-0.210876,-0.176392,-0.150757,-0.134491,-0.127655,-0.127777,-0.141479,-0.167664,-0.208801,-0.263977,-0.32785,-0.394714,-0.444305,-0.452301,-0.415375,-0.346191,-0.262299,-0.180267,-0.0949097,-0.0211487,0.0148315,0.0062561,-0.0349731,-0.100464,-0.176727,-0.246857,-0.290558,-0.290405,-0.226593,-0.0912781,0.0758972,0.211945,0.273956,0.261963,0.216248,0.158661,0.0796814,-0.00698853,-0.0777283,-0.109741,-0.0818787,0.00939941,0.143829,0.287445,0.404785,0.47821,0.496674,0.452637,0.361481,0.258057,0.168945,0.107513,0.0668335,0.0668335,0.124908,0.21228,0.297791,0.348999,0.359131,0.332764,0.267853,0.171753,0.0542908,-0.073761,-0.17981,-0.234161,-0.234436,-0.197327,-0.149078,-0.106323,-0.0631714,-0.0381775,-0.0400696,-0.0747681,-0.136261,-0.214111,-0.300629,-0.38269,-0.446991,-0.476379,-0.446533,-0.368683,-0.268402,-0.165649,-0.0794678,-0.00610352,0.037323,0.0356445,-0.00558472,-0.0730896,-0.152222,-0.224976,-0.275635,-0.295105,-0.259003,-0.151611,0.00845337,0.163239,0.255371,0.262299,0.217041,0.16214,0.0930786,-0.00424194,-0.104309,-0.169678,-0.174713,-0.112091,0.00778198,0.159454,0.300812,0.403168,0.449554,0.436523,0.369263,0.272034,0.167175,0.0808105,0.0188599,-0.00933838,0.0249634,0.118408,0.228119,0.313019,0.34671,0.345306,0.316254,0.249817,0.142548,0.0127563,-0.108795,-0.186371,-0.214111,-0.196503,-0.154785,-0.107452,-0.0552368,-0.012085,0.00933838,-0.00128174,-0.0425415,-0.109802,-0.201477,-0.308868,-0.401428,-0.451294,-0.435455,-0.360016,-0.261139,-0.157196,-0.0512695,0.0420837,0.107849,0.125641,0.0906677,0.0108032,-0.0949097,-0.202484,-0.279877,-0.304291,-0.26297,-0.154785,-0.00396729,0.148468,0.251282,0.277191,0.243622,0.181152,0.0987244,-0.0127563,-0.133911,-0.222168,-0.238922,-0.183228,-0.0751038,0.0686035,0.218536,0.330688,0.384521,0.374237,0.312622,0.222229,0.119202,0.0206604,-0.0548401,-0.0851135,-0.0567932,0.0232239,0.132477,0.228058,0.282166,0.299072,0.279541,0.218719,0.117981,0.000274658,-0.115784,-0.194427,-0.225037,-0.207733,-0.151337,-0.0786743,-0.0108032,0.0338135,0.0522156,0.0458374,0.0142822,-0.0471802,-0.141815,-0.255646,-0.346802,-0.37973,-0.345795,-0.259216,-0.151276,-0.0409546,0.0552979,0.125519,0.165771,0.172638,0.136841,0.0549011,-0.0564575,-0.162903,-0.231079,-0.2388,-0.172821,-0.0509949,0.0856323,0.197723,0.261688,0.271545,0.23175,0.150146,0.0359802,-0.085907,-0.180603,-0.229675,-0.223969,-0.156586,-0.03302,0.108734,0.226105,0.291901,0.298065,0.258881,0.184021,0.0808105,-0.0278625,-0.11142,-0.144226,-0.121399,-0.0517578,0.037384,0.125305,0.186584,0.209534,0.190491,0.129272,0.0369263,-0.0629578,-0.155457,-0.227325,-0.257935,-0.242371,-0.183624,-0.102356,-0.0288696,0.0138245,0.0232239,0.0115967,-0.0171814,-0.0673218,-0.138062,-0.218811,-0.276733,-0.284027,-0.229675,-0.132416,-0.0198669,0.0841064,0.169739,0.227448,0.249207,0.235382,0.185242,0.100891,0.00296021,-0.0800171,-0.127594,-0.108795,-0.0238342,0.0993347,0.215973,0.297333,0.326385,0.310272,0.246796,0.140015,0.00509644,-0.126526,-0.216125,-0.244293,-0.208405,-0.112701,0.0151062,0.144958,0.240479,0.273834,0.24585,0.169464,0.0661011,-0.0454407,-0.150665,-0.222229,-0.234772,-0.187256,-0.102356,-0.00570679,0.0787354,0.131805,0.141022,0.101685,0.0202026,-0.0838318,-0.18277,-0.260345,-0.306122,-0.31485,-0.291351,-0.233978,-0.155182,-0.0786743,-0.0285339,-0.012085,-0.0261841,-0.0609436,-0.115906,-0.188721,-0.257324,-0.284363,-0.262146,-0.198334,-0.101685,0.0144348,0.13269,0.238403,0.311615,0.339935,0.328613,0.276184,0.188995,0.0963745,0.0241699,-0.00924683,0.0137024,0.0932312,0.201477,0.304504,0.377136,0.407532,0.395569,0.329285,0.216125,0.0812073,-0.0386047,-0.118134,-0.150818,-0.139069,-0.0762329,0.0281982,0.140411,0.219879,0.245911,0.215851,0.140869,0.0404663,-0.0682678,-0.170685,-0.236908,-0.2547,-0.233551,-0.184906,-0.120209,-0.0525513,0.000335693,0.0132751,-0.0266418,-0.108063,-0.19928,-0.276184,-0.338196,-0.373627,-0.380402,-0.357941,-0.303101,-0.22699,-0.157043,-0.111938,-0.0922852,-0.098999,-0.13382,-0.189667,-0.247711,-0.278534,-0.272095,-0.226868,-0.143707,-0.0344849,0.0904846,0.21228,0.304382,0.353027,0.360687,0.325317,0.254852,0.175385,0.107452,0.069458,0.0832214,0.156525,0.264984,0.37262,0.452301,0.491699,0.486847,0.427734,0.319275,0.181946,0.0562439,-0.0278625,-0.0661011,-0.0587158,-0.000396729,0.10376,0.215302,0.29068,0.309204,0.269348,0.184784,0.0722961,-0.0566406,-0.177979,-0.257874,-0.279755,-0.253418,-0.201691,-0.142548,-0.0820312,-0.037384,-0.0304565,-0.0769043,-0.172089,-0.283447,-0.376862,-0.446655,-0.489685,-0.498474,-0.463989,-0.389008,-0.299194,-0.223511,-0.177643,-0.160736,-0.165649,-0.206116,-0.275513,-0.342163,-0.36908,-0.34726,-0.279419,-0.172424,-0.0387268,0.106995,0.244843,0.344177,0.391083,0.383179,0.327515,0.244385,0.161072,0.0997925,0.0818787,0.126038,0.230347,0.357849,0.464661,0.530945,0.562775,0.547058,0.467865,0.335327,0.190735,0.0793457,0.0135498,-0.00598145,0.0211487,0.102417,0.221008,0.3284,0.378876,0.365997,0.305389,0.204224,0.0767822,-0.0576477,-0.172546,-0.248138,-0.270203,-0.2453,-0.193634,-0.126648,-0.0634155,-0.0312805,-0.0508118,-0.124847,-0.234894,-0.345703,-0.434387,-0.501038,-0.545593,-0.55304,-0.508148,-0.4198,-0.322571,-0.251617,-0.217865,-0.216705,-0.249878,-0.30954,-0.371765,-0.401886,-0.390472,-0.338135,-0.249329,-0.132233,0.00872803,0.152832,0.268738,0.324982,0.319885,0.272156,0.210938,0.158203,0.120667,0.110596,0.149323,0.235107,0.349823,0.45752,0.533966,0.569672,0.557129,0.483856,0.35968,0.222961,0.119598,0.0663757,0.0519409,0.0764465,0.151154,0.268066,0.385651,0.44928,0.436646,0.366913,0.264099,0.135162,-0.00357056,-0.126434,-0.202026,-0.221008,-0.191223,-0.137848,-0.0768433,-0.0223389,-0.0012207,-0.0354919,-0.128662,-0.254913,-0.375305,-0.464111,-0.524902,-0.559753,-0.559357,-0.511017,-0.423706,-0.340088,-0.286865,-0.266724,-0.275787,-0.315369,-0.370819,-0.420013,-0.440094,-0.42157,-0.366791,-0.274506,-0.154449,-0.0150452,0.127258,0.242279,0.304504,0.308075,0.269012,0.217926,0.172638,0.137451,0.122681,0.148132,0.22464,0.331085,0.435638,0.516937,0.558136,0.552246,0.493652,0.390961,0.27182,0.170807,0.103088,0.0712891,0.08255,0.141479,0.238525,0.335724,0.394562,0.397583,0.353516,0.268799,0.155457,0.0318909,-0.0765686,-0.149139,-0.182098,-0.182617,-0.156708,-0.118744,-0.0880432,-0.0748901,-0.0941772,-0.153442,-0.243225,-0.335999,-0.40741,-0.459625,-0.49585,-0.507874,-0.485199,-0.434113,-0.386536,-0.357269,-0.343628,-0.338928,-0.345856,-0.359131,-0.364838,-0.352356,-0.31424,-0.249939,-0.164825,-0.0697327,0.0302124,0.123688,0.197937,0.236053,0.234833,0.206848,0.176117,0.1539,0.150421,0.175842,0.23645,0.31955,0.402954,0.467987,0.512695,0.523987,0.489136,0.408417,0.300079,0.19693,0.124573,0.0918274,0.101471,0.152344,0.233368,0.328064,0.397797,0.412842,0.371216,0.287994,0.175385,0.0480652,-0.0743103,-0.16449,-0.209015,-0.204895,-0.169006,-0.118134,-0.0697937,-0.0453186,-0.0628357,-0.12558,-0.225861,-0.338135,-0.432098,-0.497742,-0.535065,-0.546265,-0.521698,-0.465515,-0.396576,-0.336517,-0.30484,-0.308258,-0.338593,-0.375397,-0.3992,-0.39801,-0.363556,-0.29425,-0.196594,-0.0847778,0.0311279,0.144379,0.240417,0.297516,0.297455,0.254242,0.205902,0.172089,0.162628,0.181274,0.234222,0.317047,0.406586,0.481628,0.531372,0.543182,0.508942,0.428955,0.323822,0.223022,0.143768,0.101868,0.110016,0.164978,0.250732,0.337677,0.397583,0.412231,0.375916,0.288055,0.167267,0.0379944,-0.0744934,-0.159607,-0.213623,-0.225433,-0.198853,-0.147919,-0.0992126,-0.078064,-0.100952,-0.164764,-0.257721,-0.361481,-0.453766,-0.520081,-0.557953,-0.567322,-0.539825,-0.488617,-0.424255,-0.367462,-0.334839,-0.333984,-0.351074,-0.369476,-0.373901,-0.364166,-0.336914,-0.27887,-0.194031,-0.0891418,0.0299988,0.142609,0.235229,0.286102,0.28537,0.255188,0.22049,0.202881,0.203217,0.220337,0.26123,0.324921,0.399597,0.47464,0.530365,0.550293,0.520355,0.447144,0.355377,0.268799,0.19693,0.158203,0.159607,0.199677,0.270691,0.344788,0.395996,0.411285,0.378479,0.29834,0.182678,0.0599976,-0.0551758,-0.146729,-0.199066,-0.214783,-0.204712,-0.171631,-0.138123,-0.127777,-0.154907,-0.221161,-0.311493,-0.399689,-0.4776,-0.538818,-0.579071,-0.586456,-0.560089,-0.510162,-0.450684,-0.401215,-0.379333,-0.382904,-0.397675,-0.400696,-0.38443,-0.350739,-0.296783,-0.223633,-0.132233,-0.0231628,0.0901489,0.187927,0.255371,0.275177,0.256317,0.223358,0.199738,0.196716,0.216461,0.254639,0.309265,0.37027,0.436401,0.494781,0.528412,0.520905,0.467987,0.381958,0.291565,0.214508,0.166931,0.159607,0.190674,0.257538,0.337799,0.403381,0.437531,0.428467,0.372955,0.278198,0.1539,0.024231,-0.0900574,-0.167175,-0.205444,-0.213959,-0.187714,-0.143097,-0.107788,-0.106995,-0.151611,-0.229004,-0.322083,-0.418945,-0.503113,-0.567413,-0.603577,-0.606537,-0.578217,-0.524109,-0.469604,-0.433044,-0.412842,-0.39801,-0.380493,-0.36203,-0.343842,-0.307129,-0.248718,-0.172211,-0.0813599,0.0221558,0.12323,0.201874,0.2388,0.240692,0.231689,0.218933,0.215027,0.225311,0.252625,0.294159,0.344513,0.404297,0.467133,0.509155,0.512909,0.472229,0.399597,0.313446,0.231964,0.175629,0.162476,0.184784,0.238251,0.3078,0.371277,0.412842,0.413574,0.363495,0.276978,0.170868,0.056366,-0.0504761,-0.139404,-0.191345,-0.204102,-0.17981,-0.143616,-0.123016,-0.132416,-0.176117,-0.243439,-0.324768,-0.403778,-0.467926,-0.514038,-0.537872,-0.538818,-0.521149,-0.485779,-0.447052,-0.425049,-0.417114,-0.417877,-0.412567,-0.392822,-0.357269,-0.299744,-0.222961,-0.132355,-0.028595,0.0733032,0.161133,0.22229,0.242889,0.226196,0.194153,0.174316,0.17926,0.200012,0.236389,0.289124,0.355591,0.425995,0.483246,0.514313,0.504913,0.452911,0.366791,0.271271,0.189667,0.144958,0.139343,0.172882,0.243896,0.334656,0.405792,0.439331,0.42392,0.364838,0.268005,0.143707,0.0133667,-0.105499,-0.188538,-0.233978,-0.233032,-0.194702,-0.143951,-0.109406,-0.11673,-0.165833,-0.250275,-0.348816,-0.440765,-0.516449,-0.571442,-0.603516,-0.602112,-0.564178,-0.502228,-0.446808,-0.409271,-0.386261,-0.371704,-0.357727,-0.344971,-0.314575,-0.259888,-0.185974,-0.0961914,0.00497437,0.110809,0.198334,0.253357,0.272827,0.269073,0.255371,0.245514,0.247589,0.264984,0.298462,0.338867,0.388397,0.450134,0.501953,0.518341,0.493378,0.435974,0.360352,0.273499,0.19223,0.142212,0.13858,0.183441,0.253174,0.325104,0.383301,0.413239,0.393494,0.33075,0.227783,0.0983276,-0.0429688,-0.177063,-0.27478,-0.318604,-0.305634,-0.251556,-0.195312,-0.16861,-0.17746,-0.213959,-0.275238,-0.356537,-0.448944,-0.534576,-0.599823,-0.632172,-0.622162,-0.582764,-0.522156,-0.46994,-0.42981,-0.393707,-0.350952,-0.306122,-0.262238,-0.216125,-0.166443,-0.105499,-0.0268555,0.070282,0.160797,0.223969,0.252228,0.259735,0.264648,0.273895,0.289795,0.304169,0.31955,0.339935,0.369873,0.41687,0.468536,0.501495,0.502899,0.468811,0.404633,0.327667,0.251953,0.194153,0.163818,0.1698,0.219147,0.295837,0.368927,0.412354,0.413513,0.380219,0.308929,0.198517,0.0590515,-0.086792,-0.211609,-0.289215,-0.313446,-0.289337,-0.243774,-0.210358,-0.209259,-0.238739,-0.291901,-0.357941,-0.432159,-0.505981,-0.577606,-0.637482,-0.665527,-0.65802,-0.618073,-0.574524,-0.536469,-0.496735,-0.439758,-0.368469,-0.291473,-0.21109,-0.137512,-0.0667725,0.00167847,0.0766602,0.143158,0.189148,0.207855,0.209412,0.216248,0.242371,0.291901,0.352753,0.404114,0.43573,0.459351,0.491302,0.525787,0.538818,0.510071,0.450562,0.377594,0.305389,0.243835,0.206116,0.202423,0.22934,0.277863,0.335663,0.381073,0.401093,0.389954,0.343292,0.256989,0.13559,-0.00189209,-0.125092,-0.217133,-0.276642,-0.300415,-0.288727,-0.247131,-0.212891,-0.208191,-0.232025,-0.28302,-0.344574,-0.411285,-0.477264,-0.540283,-0.592377,-0.621979,-0.622833,-0.603699,-0.576721,-0.542358,-0.491699,-0.419678,-0.342163,-0.264435,-0.186035,-0.105713,-0.0291138,0.0346985,0.0869141,0.124634,0.145447,0.154297,0.160065,0.175049,0.210266,0.265259,0.328339,0.386261,0.425171,0.453033,0.477814,0.495392,0.49054,0.453491,0.396118,0.333557,0.269867,0.216919,0.19397,0.210144,0.258942,0.322968,0.382355,0.417725,0.425446,0.396851,0.333374,0.238678,0.114502,-0.0291138,-0.156097,-0.237793,-0.271271,-0.264038,-0.235168,-0.203491,-0.196838,-0.222626,-0.269867,-0.33551,-0.406067,-0.474579,-0.535583,-0.579803,-0.597198,-0.585327,-0.554108,-0.524384,-0.511627,-0.499878,-0.471283,-0.420624,-0.355591,-0.27948,-0.189484,-0.0885315,0.0122681,0.10733,0.190155,0.244171,0.260956,0.243561,0.219391,0.209412,0.221069,0.254761,0.301361,0.353088,0.399475,0.445801,0.49472,0.533722,0.533112,0.4841,0.4039,0.307251,0.217255,0.145905,0.110016,0.120209,0.171692,0.24176,0.31311,0.370819,0.394897,0.380951,0.31839,0.206238,0.0543518,-0.106506,-0.239197,-0.318726,-0.345459,-0.333893,-0.296051,-0.25174,-0.223511,-0.222961,-0.247986,-0.295044,-0.361084,-0.437653,-0.508209,-0.560883,-0.585327,-0.583832,-0.566925,-0.548004,-0.522583,-0.48175,-0.416779,-0.331696,-0.243439,-0.157043,-0.0709534,0.0183105,0.105042,0.178528,0.223511,0.238251,0.22995,0.215179,0.211823,0.231537,0.27417,0.324768,0.377991,0.42337,0.462555,0.500092,0.528198,0.530426,0.490082,0.4198,0.335175,0.247925,0.167938,0.115509,0.10968,0.149475,0.22229,0.298401,0.353088,0.379944,0.371216,0.317535,0.219543,0.0841675,-0.0789185,-0.233643,-0.346252,-0.396515,-0.383636,-0.329865,-0.265381,-0.223236,-0.217804,-0.248138,-0.303619,-0.368195,-0.441498,-0.522095,-0.592834,-0.633911,-0.639832,-0.615845,-0.57486,-0.525909,-0.479156,-0.429077,-0.370361,-0.294983,-0.203766,-0.106506,-0.0101318,0.0773926,0.157043,0.221558,0.26123,0.270813,0.260803,0.253845,0.26123,0.292755,0.339478,0.393585,0.444183,0.485992,0.525452,0.556793,0.57431,0.558472,0.510406,0.430542,0.329865,0.236847,0.179077,0.164703,0.185791,0.229004,0.275452,0.322815,0.358734,0.366333,0.333649,0.255981,0.127655,-0.0381165,-0.205902,-0.340332,-0.414246,-0.434174,-0.413086,-0.371765,-0.32962,-0.299866,-0.291351,-0.316803,-0.372833,-0.443512,-0.522247,-0.595123,-0.64621,-0.669006,-0.662903,-0.638611,-0.600677,-0.53833,-0.455048,-0.363831,-0.27713,-0.193695,-0.106232,-0.0157776,0.0705261,0.151337,0.208801,0.234711,0.238922,0.241425,0.259949,0.294159,0.337921,0.38269,0.426605,0.463562,0.494781,0.528259,0.553711,0.558472,0.529144,0.482086,0.425385,0.355988,0.283508,0.222626,0.194427,0.205109,0.245239,0.293915,0.330536,0.350891,0.357208,0.337402,0.278931,0.175232,0.0279846,-0.134033,-0.276184,-0.370087,-0.407928,-0.400879,-0.371216,-0.344849,-0.324585,-0.320221,-0.333435,-0.357849,-0.405182,-0.47821,-0.563049,-0.630951,-0.667419,-0.676056,-0.670898,-0.649963,-0.604706,-0.529602,-0.42627,-0.315125,-0.205505,-0.102203,-0.00698853,0.0775146,0.147461,0.197998,0.216644,0.211426,0.202637,0.210358,0.24295,0.300476,0.370483,0.433044,0.474915,0.499695,0.523712,0.549957,0.560089,0.537872,0.485779,0.421082,0.350281,0.285095,0.237732,0.214844,0.221405,0.24881,0.284973,0.321289,0.346039,0.355927,0.345917,0.298676,0.201202,0.0588074,-0.0930786,-0.227875,-0.326721,-0.378204,-0.391968,-0.380341,-0.357666,-0.334778,-0.321289,-0.327057,-0.349945,-0.38974,-0.449799,-0.519745,-0.586731,-0.630157,-0.650574,-0.663727,-0.668091,-0.641174,-0.569214,-0.467072,-0.357208,-0.240875,-0.123688,-0.0166321,0.081604,0.166321,0.223175,0.235901,0.213501,0.187988,0.182892,0.210358,0.266449,0.336456,0.410217,0.472015,0.516052,0.55426,0.586273,0.596466,0.570282,0.50592,0.420074,0.331635,0.255646,0.205566,0.189606,0.204559,0.243835,0.295502,0.336182,0.356201,0.354187,0.333832,0.276581,0.172089,0.0274658,-0.127441,-0.262421,-0.351166,-0.387329,-0.384918,-0.361755,-0.339874,-0.329132,-0.32962,-0.337524,-0.355865,-0.389465,-0.437531,-0.500092,-0.565735,-0.612579,-0.633698,-0.638,-0.632172,-0.607605,-0.553101,-0.465668,-0.356873,-0.2341,-0.109802,0.00112915,0.0953674,0.169464,0.213287,0.223297,0.209351,0.190674,0.186188,0.208191,0.257385,0.328796,0.402222,0.465393,0.509827,0.547546,0.575714,0.581146,0.556,0.506256,0.439087,0.362152,0.282623,0.228882,0.212158,0.22821,0.264771,0.307739,0.341431,0.359009,0.364899,0.342682,0.285187,0.179932,0.0340881,-0.12738,-0.269257,-0.363037,-0.405731,-0.409607,-0.395233,-0.379059,-0.367859,-0.36618,-0.369415,-0.386871,-0.417053,-0.466675,-0.531281,-0.589691,-0.624451,-0.642517,-0.653229,-0.65097,-0.624451,-0.563965,-0.47525,-0.363556,-0.233704,-0.106232,0.0119324,0.113434,0.198517,0.245514,0.250824,0.227539,0.203979,0.200684,0.22049,0.268127,0.33847,0.418335,0.481628,0.530212,0.572845,0.601898,0.605652,0.572296,0.514313,0.43866,0.35553,0.28183,0.238739,0.230286,0.249146,0.286926,0.329193,0.359406,0.371429,0.365784,0.337189,0.273621,0.161957,0.00610352,-0.149414,-0.277405,-0.356659,-0.387787,-0.389069,-0.37915,-0.375122,-0.374847,-0.379333,-0.387604,-0.4086,-0.446655,-0.502045,-0.565582,-0.617401,-0.64386,-0.655853,-0.664307,-0.667938,-0.642639,-0.574249,-0.474915,-0.358948,-0.232758,-0.107666,0.00704956,0.108582,0.187531,0.229401,0.227448,0.200409,0.178528,0.18277,0.216797,0.286041,0.368591,0.441833,0.494995,0.536652,0.579895,0.605713,0.593445,0.544708,0.482758,0.415039,0.34613,0.291809,0.267334,0.269806,0.295502,0.340607,0.379211,0.399933,0.402618,0.388794,0.350281,0.280884,0.168182,0.0220947,-0.126099,-0.246582,-0.322479,-0.355591,-0.359192,-0.357788,-0.368134,-0.384918,-0.403778,-0.419678,-0.436066,-0.462769,-0.51236,-0.572021,-0.623505,-0.651215,-0.664581,-0.675201,-0.68042,-0.664459,-0.610565,-0.521973,-0.405121,-0.269928,-0.128998,0.00296021,0.113708,0.195984,0.23175,0.227783,0.200348,0.171204,0.158386,0.180939,0.2453,0.324646,0.400208,0.46701,0.534241,0.597321,0.635712,0.630157,0.581573,0.509949,0.427399,0.349274,0.290405,0.259888,0.256592,0.287994,0.342285,0.393036,0.423981,0.436737,0.425659,0.378265,0.295776,0.169342,0.0175171,-0.129211,-0.246185,-0.316193,-0.342957,-0.343018,-0.343292,-0.34848,-0.363983,-0.387451,-0.40686,-0.42511,-0.457275,-0.517273,-0.584839,-0.632446,-0.656342,-0.668945,-0.679749,-0.680634,-0.661041,-0.606934,-0.514709,-0.390747,-0.251221,-0.114624,0.0100708,0.119995,0.196655,0.22464,0.210693,0.18161,0.153839,0.138336,0.156708,0.21344,0.289337,0.361298,0.426727,0.49707,0.564789,0.610077,0.610626,0.574127,0.509888,0.427612,0.341492,0.281006,0.260071,0.27002,0.307404,0.364655,0.419678,0.455322,0.474701,0.470886,0.430145,0.336243,0.184784,0.0114136,-0.14389,-0.254761,-0.313507,-0.338257,-0.347321,-0.353088,-0.355042,-0.359955,-0.375183,-0.401031,-0.436981,-0.489288,-0.559418,-0.627197,-0.669891,-0.688751,-0.701233,-0.7117,-0.702515,-0.65451,-0.568756,-0.457794,-0.331024,-0.202484,-0.0810242,0.0340881,0.13974,0.209015,0.227264,0.207336,0.179199,0.170959,0.186646,0.232025,0.292908,0.353363,0.405243,0.449554,0.497345,0.539948,0.562714,0.547729,0.50412,0.44278,0.367859,0.297607,0.258728,0.247528,0.259338,0.293976,0.339752,0.374451,0.397675,0.410431,0.402954,0.360962,0.27417,0.14035,-0.00778198,-0.137909,-0.230621,-0.279816,-0.300537,-0.310211,-0.324432,-0.340271,-0.350067,-0.354767,-0.365784,-0.388733,-0.43512,-0.499695,-0.558014,-0.601166,-0.636047,-0.67041,-0.697205,-0.695068,-0.651428,-0.572449,-0.457733,-0.317474,-0.168396,-0.0302734,0.0854492,0.172302,0.217804,0.219666,0.184509,0.143768,0.12323,0.135986,0.188721,0.257202,0.327332,0.391418,0.458069,0.519226,0.561768,0.570007,0.535645,0.479401,0.407318,0.326599,0.257263,0.217865,0.213959,0.24472,0.299408,0.354858,0.39679,0.425659,0.433563,0.409668,0.34552,0.233887,0.089325,-0.0621643,-0.189209,-0.272369,-0.311768,-0.316803,-0.31076,-0.312286,-0.325592,-0.340668,-0.351013,-0.36734,-0.396667,-0.453979,-0.517944,-0.570557,-0.610077,-0.638336,-0.664642,-0.678284,-0.666199,-0.617523,-0.526855,-0.397583,-0.249817,-0.104431,0.0254517,0.132019,0.206848,0.241028,0.231964,0.192566,0.149597,0.126251,0.149323,0.213104,0.29538,0.373169,0.437073,0.490021,0.530701,0.55484,0.548462,0.50882,0.442444,0.356384,0.274841,0.222229,0.20813,0.22403,0.266052,0.317871,0.356049,0.378479,0.388733,0.384308,0.351898,0.279663,0.15625,0.00866699,-0.126099,-0.225922,-0.284363,-0.310486,-0.319214,-0.326447,-0.338593,-0.348206,-0.355988,-0.363708,-0.376862,-0.405731,-0.454376,-0.506714,-0.546112,-0.570679,-0.596466,-0.624573,-0.644104,-0.633301,-0.580353,-0.481689,-0.352509,-0.207397,-0.0655823,0.0625,0.172821,0.249481,0.273621,0.247131,0.198456,0.151886,0.128723,0.149811,0.20993,0.28476,0.36203,0.429871,0.490814,0.537598,0.560089,0.544037,0.495575,0.423645,0.335236,0.250488,0.196655,0.182617,0.210754,0.274506,0.341003,0.379669,0.396515,0.406128,0.398682,0.358185,0.26593,0.12262,-0.0350952,-0.172302,-0.264587,-0.305786,-0.316589,-0.313232,-0.320953,-0.335846,-0.350342,-0.360687,-0.373718,-0.397736,-0.445648,-0.507935,-0.560211,-0.589874,-0.606262,-0.6203,-0.636322,-0.639496,-0.614594,-0.547668,-0.44101,-0.309265,-0.174377,-0.041748,0.0844421,0.196503,0.274902,0.297455,0.273895,0.229675,0.188812,0.174042,0.199677,0.24646,0.29895,0.351898,0.40976,0.475922,0.526733,0.548401,0.530029,0.484528,0.415375,0.332092,0.253021,0.196381,0.17215,0.186798,0.241882,0.308655,0.355377,0.384094,0.399536,0.393768,0.355042,0.267242,0.129608,-0.0294495,-0.176453,-0.279816,-0.330292,-0.339996,-0.334717,-0.33371,-0.339142,-0.348267,-0.349731,-0.347382,-0.356445,-0.402222,-0.475128,-0.544922,-0.591553,-0.618073,-0.643707,-0.661285,-0.653442,-0.605927,-0.521759,-0.40625,-0.270355,-0.126312,0.0083313,0.124023,0.210083,0.258545,0.263916,0.235168,0.195831,0.164642,0.168518,0.21048,0.26825,0.324097,0.368866,0.414581,0.46405,0.504059,0.513184,0.479401,0.422302,0.35672,0.283295,0.217133,0.172363,0.159058,0.18457,0.247131,0.307068,0.346802,0.378204,0.395996,0.384369,0.338745,0.251495,0.128265,-0.00894165,-0.140808,-0.236664,-0.281158,-0.289337,-0.285858,-0.296173,-0.315979,-0.326599,-0.324921,-0.324097,-0.338867,-0.387268,-0.453583,-0.521362,-0.576721,-0.618744,-0.651978,-0.672516,-0.669434,-0.623657,-0.531952,-0.403107,-0.255859,-0.105896,0.0269165,0.13269,0.208466,0.242371,0.229797,0.188324,0.150208,0.131012,0.144379,0.192169,0.257599,0.326111,0.3862,0.439758,0.484314,0.512756,0.508942,0.467682,0.403168,0.328735,0.255188,0.19812,0.170868,0.170959,0.202026,0.261688,0.322571,0.369019,0.390289,0.392303,0.371155,0.324768,0.235992,0.101746,-0.0405273,-0.158386,-0.23114,-0.266174,-0.27887,-0.284302,-0.297333,-0.315582,-0.330811,-0.341431,-0.345245,-0.36142,-0.406464,-0.470337,-0.529755,-0.566528,-0.591492,-0.623047,-0.655792,-0.661285,-0.610016,-0.509277,-0.381744,-0.251617,-0.117462,0.0162964,0.135162,0.234039,0.287933,0.28363,0.239807,0.193756,0.167328,0.179596,0.219208,0.265656,0.313171,0.358612,0.405853,0.456055,0.492157,0.495239,0.454773,0.385773,0.313232,0.245117,0.186981,0.146301,0.128601,0.1492,0.210541,0.283783,0.337402,0.366119,0.373901,0.354645,0.311279,0.236176,0.124237,-0.00341797,-0.123566,-0.209595,-0.247925,-0.253021,-0.256104,-0.275238,-0.307068,-0.329681,-0.339081,-0.346252,-0.360535,-0.395844,-0.447815,-0.502289,-0.550079,-0.583435,-0.609741,-0.638611,-0.653229,-0.625122,-0.549225,-0.437408,-0.301086,-0.156189,-0.0140381,0.112885,0.216797,0.281616,0.292084,0.260742,0.225861,0.201355,0.193359,0.213837,0.257263,0.307648,0.355255,0.405457,0.46283,0.510742,0.520294,0.486938,0.430084,0.360962,0.287537,0.220062,0.168457,0.141266,0.14563,0.190338,0.263031,0.329803,0.363159,0.372833,0.35968,0.320007,0.254181,0.148865,0.0160522,-0.109253,-0.199738,-0.249329,-0.272888,-0.284119,-0.295441,-0.314972,-0.340271,-0.364166,-0.38028,-0.398254,-0.42746,-0.475189,-0.525055,-0.560425,-0.587799,-0.61908,-0.649353,-0.666595,-0.651886,-0.593109,-0.491638,-0.364838,-0.225525,-0.0813599,0.0612183,0.192749,0.289673,0.338257,0.333832,0.30069,0.269135,0.240692,0.236115,0.258453,0.291901,0.32962,0.380005,0.441956,0.502625,0.546112,0.553162,0.514984,0.447327,0.366577,0.282013,0.200073,0.136597,0.113159,0.142273,0.210266,0.28418,0.341278,0.378815,0.392578,0.370483,0.31546,0.219818,0.0794067,-0.074707,-0.20639,-0.289337,-0.326263,-0.339264,-0.345245,-0.360962,-0.377655,-0.383972,-0.381897,-0.381226,-0.403046,-0.449402,-0.507935,-0.558136,-0.589966,-0.615723,-0.641907,-0.666809,-0.669159,-0.629028,-0.533783,-0.399536,-0.254089,-0.114166,0.0177917,0.143036,0.257263,0.339081,0.365051,0.345123,0.302704,0.258118,0.234711,0.249481,0.280945,0.306396,0.333557,0.373901,0.43338,0.495789,0.539001,0.545197,0.503784,0.424713,0.335236,0.254028,0.191162,0.145905,0.136719,0.173309,0.241608,0.30484,0.355865,0.398346,0.404846,0.366394,0.289886,0.173553,0.0323486,-0.108673,-0.224762,-0.29953,-0.336731,-0.353363,-0.36792,-0.387787,-0.403046,-0.408661,-0.409424,-0.414429,-0.438812,-0.484863,-0.529602,-0.569946,-0.612244,-0.653229,-0.687683,-0.704529,-0.685516,-0.615509,-0.501282,-0.359741,-0.205048,-0.0561218,0.0883179,0.219543,0.326447,0.383087,0.385437,0.354034,0.309814,0.26712,0.247406,0.261475,0.285248,0.310333,0.347717,0.401764,0.470215,0.530029,0.555511,0.54129,0.487732,0.404449,0.308258,0.224976,0.166656,0.134094,0.141815,0.194916,0.272705,0.34201,0.397064,0.43103,0.420013,0.360291,0.248596,0.104645,-0.0456543,-0.184906,-0.295166,-0.373291,-0.41687,-0.437469,-0.438538,-0.428802,-0.418121,-0.413971,-0.416931,-0.427948,-0.45694,-0.500031,-0.536133,-0.574585,-0.618286,-0.667084,-0.692169,-0.675262,-0.616394,-0.516205,-0.389801,-0.246399,-0.0935059,0.0517578,0.188812,0.312225,0.400543,0.429413,0.401611,0.356934,0.30484,0.255249,0.226532,0.218994,0.224915,0.245117,0.282898,0.34726,0.427734,0.487183,0.50647,0.483521,0.41861,0.334564,0.24472,0.167725,0.118134,0.101288,0.130402,0.216583,0.325104,0.415527,0.479828,0.503784,0.480499,0.415649,0.305389,0.15625,-0.00860596,-0.1651,-0.292297,-0.367737,-0.402039,-0.413025,-0.418457,-0.42627,-0.437592,-0.444183,-0.444305,-0.453491,-0.496338,-0.564636,-0.627533,-0.67746,-0.713989,-0.735657,-0.740692,-0.713654,-0.645721,-0.536407,-0.393036,-0.22699,-0.0618896,0.0940857,0.230408,0.350281,0.443024,0.490021,0.481506,0.434967,0.369354,0.305786,0.272095,0.259674,0.259125,0.27478,0.310883,0.369354,0.446198,0.502106,0.51532,0.484772,0.4086,0.303497,0.197723,0.107452,0.0463867,0.0326233,0.0700073,0.157318,0.264099,0.363892,0.441895,0.484985,0.475586,0.417053,0.31369,0.161346,-0.0128174,-0.175385,-0.297272,-0.36618,-0.397461,-0.404785,-0.39859,-0.392242,-0.38385,-0.371277,-0.368256,-0.394501,-0.452301,-0.530945,-0.606537,-0.667267,-0.713043,-0.737732,-0.746002,-0.727753,-0.663574,-0.546783,-0.395386,-0.23645,-0.0846252,0.0566406,0.193237,0.316925,0.412354,0.464172,0.453979,0.400024,0.327332,0.26123,0.225983,0.218384,0.226379,0.254425,0.305511,0.379608,0.466248,0.538544,0.563904,0.536316,0.455597,0.345032,0.237579,0.149933,0.0898132,0.0718079,0.102966,0.187195,0.301544,0.414581,0.500031,0.54068,0.516113,0.437256,0.315369,0.148132,-0.0400085,-0.214508,-0.353027,-0.43512,-0.471283,-0.471954,-0.450073,-0.428955,-0.413757,-0.402161,-0.403381,-0.432434,-0.486389,-0.555176,-0.619415,-0.671906,-0.712158,-0.723389,-0.711304,-0.679901,-0.61264,-0.510071,-0.378479,-0.235901,-0.0892029,0.0602722,0.204651,0.335175,0.436646,0.495575,0.49646,0.444519,0.36618,0.27652,0.208588,0.171417,0.163635,0.185303,0.236115,0.308136,0.404907,0.498413,0.546204,0.540833,0.478058,0.365448,0.246063,0.14563,0.0718689,0.0427551,0.065033,0.148651,0.284851,0.426605,0.533234,0.596252,0.592224,0.52002,0.394989,0.225708,0.0231628,-0.179474,-0.349335,-0.450012,-0.483582,-0.478149,-0.446136,-0.415588,-0.398132,-0.386993,-0.389618,-0.41806,-0.470154,-0.549561,-0.636322,-0.69519,-0.723053,-0.71814,-0.687469,-0.650818,-0.601501,-0.518005,-0.403229,-0.26358,-0.115234,0.026123,0.153564,0.270081,0.373108,0.459351,0.497131,0.467987,0.396576,0.302032,0.207123,0.148071,0.127716,0.135925,0.1698,0.226044,0.312622,0.425385,0.51532,0.547333,0.519135,0.429626,0.307251,0.198608,0.11377,0.0654907,0.066925,0.121155,0.237732,0.397797,0.543304,0.640564,0.667267,0.60733,0.485107,0.32135,0.119659,-0.103638,-0.307251,-0.455383,-0.523224,-0.523315,-0.488525,-0.436859,-0.40921,-0.404297,-0.408325,-0.42868,-0.471619,-0.536072,-0.623322,-0.694458,-0.722656,-0.717194,-0.679626,-0.627197,-0.578888,-0.512421,-0.416534,-0.292145,-0.1492,-0.00991821,0.112701,0.217651,0.313843,0.403107,0.47464,0.490967,0.444519,0.357788,0.250397,0.154297,0.0985413,0.0848389,0.100616,0.142944,0.206177,0.3013,0.412689,0.491028,0.518738,0.492096,0.406647,0.293762,0.189728,0.112213,0.0808716,0.110352,0.197052,0.335388,0.492157,0.621033,0.692444,0.68869,0.601227,0.452759,0.258209,0.0316772,-0.194489,-0.3815,-0.504852,-0.551758,-0.544586,-0.50882,-0.465454,-0.437408,-0.425049,-0.427521,-0.461029,-0.522888,-0.591217,-0.655792,-0.695465,-0.70163,-0.680817,-0.634918,-0.575256,-0.513367,-0.423096,-0.313843,-0.193146,-0.0696716,0.0479126,0.15451,0.249542,0.3349,0.410339,0.463776,0.467072,0.416443,0.329681,0.225037,0.129211,0.0683289,0.0428772,0.0461121,0.0803528,0.14328,0.236053,0.346191,0.433502,0.472778,0.458405,0.385376,0.28183,0.18692,0.123566,0.104218,0.145233,0.241486,0.381226,0.528748,0.652832,0.72525,0.722839,0.634583,0.480957,0.276794,0.0422974,-0.190491,-0.381897,-0.50882,-0.560486,-0.555267,-0.520142,-0.475922,-0.44223,-0.42807,-0.432892,-0.469666,-0.529419,-0.593384,-0.654999,-0.7005,-0.710236,-0.68277,-0.617065,-0.537598,-0.456451,-0.367676,-0.268463,-0.164246,-0.0585327,0.0403442,0.126251,0.208862,0.290558,0.366394,0.426453,0.444183,0.411957,0.337677,0.231628,0.12149,0.04422,0.00213623,-0.00878906,0.0154419,0.07901,0.179535,0.307861,0.419739,0.483429,0.483582,0.423431,0.334656,0.252899,0.192963,0.158203,0.1698,0.244385,0.369415,0.521149,0.660706,0.745789,0.743774,0.654388,0.501617,0.307983,0.0842896,-0.152496,-0.368011,-0.523987,-0.596466,-0.595673,-0.552582,-0.498077,-0.458527,-0.449463,-0.454041,-0.475128,-0.521698,-0.583038,-0.649353,-0.705383,-0.71579,-0.668762,-0.581421,-0.483185,-0.395721,-0.313965,-0.233215,-0.15329,-0.0677795,0.0181274,0.0950317,0.161285,0.225525,0.29129,0.363159,0.413696,0.413849,0.359192,0.26062,0.141205,0.0393982,-0.0260315,-0.0514832,-0.0411987,0.00878906,0.0976562,0.221344,0.354309,0.454498,0.50177,0.484589,0.414856,0.3237,0.250946,0.206848,0.199463,0.242035,0.342102,0.486389,0.634796,0.743591,0.778412,0.721649,0.582306,0.387451,0.160736,-0.0838928,-0.318207,-0.504639,-0.613525,-0.638,-0.605591,-0.548401,-0.491089,-0.460541,-0.462433,-0.487122,-0.525238,-0.575989,-0.629364,-0.672028,-0.682587,-0.644867,-0.55835,-0.440674,-0.323364,-0.231689,-0.168335,-0.112823,-0.0624084,-0.0105286,0.0386047,0.0885925,0.144775,0.206909,0.274384,0.339752,0.385864,0.387268,0.33255,0.225098,0.0935669,-0.0220032,-0.0990601,-0.137054,-0.125092,-0.0610657,0.0484619,0.192078,0.338928,0.450409,0.500702,0.486328,0.417938,0.335052,0.265778,0.218048,0.208405,0.262817,0.379883,0.525513,0.669342,0.765656,0.776794,0.699554,0.548676,0.346985,0.11377,-0.131348,-0.351837,-0.517792,-0.605804,-0.616058,-0.57312,-0.50827,-0.45813,-0.444183,-0.453156,-0.467468,-0.502777,-0.560364,-0.613037,-0.648621,-0.644043,-0.583923,-0.484528,-0.364655,-0.249207,-0.161224,-0.100281,-0.0617371,-0.0385132,-0.0204773,0.00195312,0.0340271,0.0775757,0.137512,0.213013,0.298523,0.362213,0.378204,0.339081,0.241943,0.110687,-0.0236816,-0.135498,-0.202698,-0.20047,-0.137268,-0.0240173,0.126312,0.287872,0.425659,0.507202,0.516449,0.461548,0.370544,0.279083,0.21814,0.199127,0.228546,0.317535,0.449341,0.596466,0.714508,0.76297,0.723999,0.596191,0.396851,0.163086,-0.0691833,-0.285034,-0.463776,-0.574036,-0.610962,-0.587952,-0.520569,-0.447937,-0.397186,-0.389404,-0.421478,-0.466675,-0.51712,-0.567749,-0.603455,-0.604919,-0.559875,-0.470551,-0.350555,-0.218536,-0.100006,-0.0322266,-0.012085,-0.0227661,-0.0438843,-0.0569153,-0.0499268,-0.0166321,0.0406799,0.116119,0.211273,0.308319,0.378052,0.391357,0.326843,0.191559,0.0261841,-0.123016,-0.224976,-0.26358,-0.234833,-0.14389,-0.00665283,0.156036,0.324432,0.465057,0.534393,0.517059,0.434845,0.324036,0.223236,0.16571,0.162903,0.222565,0.336334,0.484528,0.639679,0.756592,0.792786,0.729156,0.578613,0.364227,0.118866,-0.123688,-0.339264,-0.508545,-0.605713,-0.614502,-0.554047,-0.470764,-0.403839,-0.376129,-0.392487,-0.438873,-0.494324,-0.54538,-0.587799,-0.611359,-0.602356,-0.53598,-0.415192,-0.26712,-0.122955,-0.0195312,0.0220947,0.0179749,-0.0108032,-0.0474548,-0.0744934,-0.0755615,-0.0388489,0.0269775,0.112762,0.213501,0.316589,0.3909,0.399811,0.327515,0.188385,0.0189209,-0.14328,-0.261566,-0.304108,-0.271942,-0.166504,-0.000335693,0.19516,0.371704,0.492157,0.535736,0.498535,0.404388,0.282288,0.17337,0.10968,0.102478,0.163635,0.29834,0.483246,0.662567,0.78244,0.802307,0.715515,0.542847,0.315033,0.0698547,-0.155182,-0.348602,-0.492035,-0.559143,-0.550476,-0.482697,-0.389801,-0.317322,-0.298523,-0.338135,-0.412292,-0.492096,-0.561493,-0.610626,-0.626526,-0.602112,-0.527344,-0.402222,-0.247253,-0.0906677,0.0280457,0.0783386,0.065155,0.00375366,-0.0769958,-0.146851,-0.17807,-0.156921,-0.0875244,0.0188599,0.141815,0.26767,0.370087,0.419617,0.395172,0.289795,0.124969,-0.0551758,-0.210693,-0.29834,-0.294495,-0.20517,-0.0477295,0.134705,0.307739,0.448486,0.528931,0.534637,0.471436,0.356262,0.234161,0.14444,0.117188,0.159454,0.261475,0.406311,0.563232,0.686401,0.740173,0.696259,0.561615,0.361145,0.123505,-0.111023,-0.301422,-0.43631,-0.509888,-0.523315,-0.4841,-0.409821,-0.34491,-0.314117,-0.333435,-0.391815,-0.467865,-0.53833,-0.576202,-0.572906,-0.530945,-0.450562,-0.332764,-0.192291,-0.0541687,0.0509949,0.108002,0.112213,0.0596008,-0.0422974,-0.155182,-0.241547,-0.266724,-0.225861,-0.126923,0.0012207,0.126648,0.237732,0.320831,0.361206,0.335388,0.229675,0.0588074,-0.137451,-0.30249,-0.381012,-0.357727,-0.239197,-0.0566406,0.141815,0.329681,0.487,0.585052,0.609894,0.559296,0.450806,0.327118,0.224243,0.182098,0.209595,0.288788,0.406464,0.537415,0.642426,0.689209,0.660278,0.548126,0.363892,0.137665,-0.0918884,-0.285034,-0.420898,-0.509003,-0.555939,-0.552917,-0.505859,-0.439606,-0.384033,-0.361755,-0.377808,-0.418945,-0.460693,-0.472504,-0.455444,-0.412903,-0.350006,-0.268463,-0.167847,-0.0571289,0.0455017,0.114288,0.129669,0.0877991,-0.00369263,-0.114105,-0.211761,-0.266998,-0.260284,-0.192505,-0.091217,0.0144348,0.10437,0.180756,0.233643,0.242157,0.18396,0.0556946,-0.122223,-0.294312,-0.398071,-0.397675,-0.291473,-0.108521,0.104492,0.308136,0.485321,0.615173,0.680359,0.674438,0.595734,0.463226,0.321564,0.219269,0.19281,0.240479,0.343903,0.476135,0.596741,0.665588,0.671967,0.603577,0.45459,0.233307,-0.0271301,-0.277313,-0.472778,-0.598206,-0.653503,-0.638885,-0.5737,-0.481506,-0.383301,-0.307068,-0.271362,-0.279816,-0.319489,-0.363434,-0.388672,-0.388458,-0.355103,-0.284119,-0.185913,-0.0709534,0.0455627,0.143433,0.199463,0.199066,0.135651,0.0113525,-0.148132,-0.293579,-0.387604,-0.399536,-0.336456,-0.235382,-0.127594,-0.0210876,0.0814209,0.16214,0.200073,0.165314,0.0424805,-0.143219,-0.320892,-0.415863,-0.386444,-0.240356,-0.0220947,0.21402,0.427185,0.599335,0.726929,0.785736,0.758545,0.650818,0.488007,0.320496,0.207855,0.18335,0.247314,0.368195,0.495911,0.58316,0.612976,0.588287,0.495331,0.321899,0.0847778,-0.177521,-0.413239,-0.580353,-0.65332,-0.643036,-0.577881,-0.486664,-0.382568,-0.281769,-0.207458,-0.187195,-0.218262,-0.278656,-0.338531,-0.367859,-0.352356,-0.284515,-0.178864,-0.0584717,0.0649109,0.180603,0.259613,0.277985,0.224426,0.0926819,-0.106903,-0.33136,-0.516602,-0.610687,-0.592316,-0.476654,-0.318268,-0.162476,-0.0191956,0.107727,0.197449,0.234436,0.188141,0.0346985,-0.186646,-0.382568,-0.465332,-0.405243,-0.222229,0.0307312,0.296265,0.524231,0.695984,0.809967,0.848755,0.802246,0.671234,0.485718,0.299133,0.170685,0.134766,0.192352,0.316711,0.453827,0.548401,0.580811,0.557617,0.471954,0.313232,0.0889282,-0.164154,-0.3992,-0.564514,-0.625519,-0.598602,-0.525055,-0.431366,-0.337799,-0.246246,-0.175293,-0.146118,-0.16806,-0.222504,-0.279663,-0.313019,-0.297516,-0.226379,-0.127777,-0.0283813,0.065033,0.145172,0.189056,0.185181,0.132568,0.0212708,-0.149994,-0.355103,-0.530823,-0.62915,-0.6203,-0.516327,-0.364777,-0.21167,-0.0777283,0.0419617,0.139923,0.20517,0.209137,0.111206,-0.0683289,-0.257935,-0.375061,-0.365448,-0.2276,-0.00924683,0.23114,0.441956,0.602692,0.716187,0.767944,0.751831,0.666138,0.512909,0.334656,0.190216,0.124756,0.153778,0.250732,0.375732,0.478546,0.529205,0.526581,0.475128,0.365509,0.187653,-0.0418091,-0.274628,-0.452698,-0.533386,-0.524567,-0.459473,-0.376251,-0.297272,-0.223083,-0.154175,-0.111755,-0.12323,-0.17746,-0.2547,-0.318726,-0.333313,-0.290558,-0.20282,-0.098114,0.00509644,0.0942383,0.161804,0.192352,0.177063,0.105988,-0.0312805,-0.217468,-0.41861,-0.582153,-0.661438,-0.634857,-0.512085,-0.34848,-0.182159,-0.0341492,0.0957031,0.206512,0.274109,0.261414,0.134918,-0.072876,-0.279663,-0.406738,-0.403778,-0.26886,-0.0523376,0.185455,0.390228,0.543762,0.662903,0.733124,0.735199,0.658813,0.51236,0.337067,0.182678,0.104706,0.120392,0.214233,0.337738,0.440765,0.495392,0.507996,0.477936,0.390228,0.240265,0.0358276,-0.18927,-0.376648,-0.475586,-0.49054,-0.456055,-0.40271,-0.341888,-0.270599,-0.203094,-0.159332,-0.1539,-0.180603,-0.232971,-0.27832,-0.280334,-0.234436,-0.159668,-0.0705261,0.0236816,0.109192,0.174164,0.204987,0.199677,0.146393,0.0379333,-0.115723,-0.291229,-0.454987,-0.567596,-0.595184,-0.524445,-0.387939,-0.239349,-0.105225,0.0159607,0.125854,0.201019,0.213623,0.13269,-0.0449829,-0.255859,-0.4133,-0.44873,-0.347198,-0.152161,0.0739746,0.287598,0.454712,0.579224,0.667542,0.698669,0.661896,0.543518,0.365387,0.193146,0.0935669,0.09552,0.177643,0.307587,0.434174,0.501892,0.511627,0.48291,0.414032,0.282501,0.0845032,-0.152618,-0.367249,-0.501373,-0.526672,-0.469482,-0.378723,-0.289612,-0.210266,-0.135651,-0.0753174,-0.0514221,-0.0851135,-0.159058,-0.239258,-0.291748,-0.277985,-0.205566,-0.0955811,0.028595,0.142212,0.233032,0.297607,0.319946,0.285645,0.182159,0.0135498,-0.181427,-0.364655,-0.522888,-0.630432,-0.655914,-0.57901,-0.4245,-0.249481,-0.0897217,0.0232849,0.0957642,0.128937,0.112946,0.0354309,-0.110535,-0.27478,-0.392365,-0.405853,-0.299347,-0.103302,0.113434,0.30188,0.437073,0.520813,0.577728,0.600769,0.578674,0.494843,0.352844,0.208466,0.123962,0.12677,0.191498,0.284698,0.363831,0.391693,0.372437,0.333038,0.278931,0.194977,0.0620117,-0.106995,-0.263092,-0.357452,-0.363373,-0.304962,-0.229401,-0.167511,-0.13559,-0.114441,-0.093689,-0.0834961,-0.0979919,-0.137909,-0.180817,-0.191895,-0.15451,-0.0765686,0.0212708,0.113098,0.178741,0.213501,0.227539,0.216583,0.175842,0.094696,-0.0216675,-0.152344,-0.274506,-0.390076,-0.498016,-0.577942,-0.595062,-0.527924,-0.404236,-0.271362,-0.161682,-0.0848389,-0.0275879,0.0157776,0.0458374,0.0381165,-0.0284424,-0.135101,-0.22403,-0.235321,-0.160614,-0.0230103,0.118195,0.226654,0.29834,0.359192,0.43573,0.506714,0.538483,0.486206,0.366333,0.245117,0.170868,0.153442,0.169525,0.194427,0.209259,0.204102,0.196259,0.205902,0.223083,0.209351,0.127533,-0.0115967,-0.143768,-0.212433,-0.204163,-0.161682,-0.127716,-0.120056,-0.121399,-0.108063,-0.0697937,-0.0317993,-0.0316162,-0.0653687,-0.10556,-0.118134,-0.0900574,-0.0339661,0.0341492,0.0963135,0.142212,0.169739,0.188477,0.189728,0.163361,0.089325,-0.020874,-0.14679,-0.278473,-0.410156,-0.536804,-0.624512,-0.641754,-0.566986,-0.429962,-0.276978,-0.144623,-0.0541077,-0.00302124,0.0232849,0.0428772,0.0283813,-0.0475159,-0.168457,-0.280609,-0.308258,-0.227448,-0.0724182,0.0945129,0.221283,0.302307,0.367584,0.435913,0.489136,0.490143,0.414032,0.275177,0.139923,0.0602722,0.0517578,0.0889282,0.143097,0.196716,0.240021,0.277405,0.31665,0.346863,0.329803,0.229523,0.0675964,-0.0895996,-0.17337,-0.175049,-0.137451,-0.106903,-0.0939636,-0.0876465,-0.0598145,-0.00146484,0.0498657,0.0499878,-0.00390625,-0.0809326,-0.130463,-0.131012,-0.0953064,-0.0371094,0.0254517,0.0798035,0.128723,0.174957,0.20813,0.223022,0.188477,0.0951843,-0.037384,-0.178131,-0.311005,-0.441437,-0.557526,-0.636871,-0.652649,-0.591492,-0.468475,-0.324249,-0.204834,-0.126038,-0.0760498,-0.0290527,0.0220032,0.041626,-0.00262451,-0.100342,-0.190216,-0.212677,-0.154449,-0.04953,0.0540161,0.133148,0.197327,0.265045,0.344177,0.40741,0.422028,0.372955,0.277985,0.189545,0.135315,0.12149,0.134644,0.171295,0.215851,0.248383,0.275574,0.298401,0.304565,0.263153,0.166779,0.0455627,-0.0564575,-0.100891,-0.0993958,-0.0716248,-0.0518188,-0.0427551,-0.0390015,-0.0260315,-0.00314331,0.00146484,-0.0203247,-0.0555115,-0.0808105,-0.078064,-0.0512085,0.00134277,0.0683899,0.130798,0.178802,0.206238,0.213837,0.204224,0.173981,0.112885,0.0183105,-0.0944214,-0.210083,-0.318146,-0.42337,-0.521362,-0.594238,-0.62619,-0.601501,-0.519684,-0.413635,-0.307251,-0.220001,-0.142944,-0.0662537,0.00811768,0.0590515,0.0514832,-0.0118103,-0.0935669,-0.148804,-0.155701,-0.121277,-0.0647583,-0.00650024,0.0455627,0.112274,0.211151,0.308746,0.370758,0.376709,0.331543,0.263031,0.206177,0.177979,0.171692,0.176575,0.184235,0.18866,0.204651,0.238068,0.270142,0.259064,0.193481,0.103485,0.0305481,-0.00369263,0.00665283,0.0387268,0.0509949,0.0390625,0.0265198,0.0317383,0.0534363,0.0641785,0.0499878,0.00509644,-0.0505371,-0.0829468,-0.0791321,-0.0351562,0.0356445,0.100006,0.146851,0.184113,0.219543,0.245728,0.251831,0.216309,0.125366,-0.00631714,-0.148987,-0.289398,-0.429199,-0.558472,-0.656586,-0.708618,-0.698822,-0.606537,-0.462219,-0.316467,-0.197601,-0.111023,-0.0493164,-0.00979614,0.0152893,0.000213623,-0.0767212,-0.194702,-0.296112,-0.330688,-0.289276,-0.197998,-0.101624,-0.0144958,0.072876,0.171967,0.272491,0.339264,0.36322,0.339081,0.26767,0.193695,0.148468,0.138916,0.152893,0.179871,0.217529,0.256775,0.292358,0.328613,0.351013,0.326935,0.256531,0.165314,0.0952454,0.0605469,0.0653076,0.0833435,0.0879822,0.0829468,0.07901,0.0787354,0.0860291,0.0826721,0.0578003,0.0134888,-0.0292664,-0.0395203,-0.0114746,0.0470581,0.113281,0.170013,0.213013,0.251282,0.28183,0.28302,0.247589,0.168335,0.0479736,-0.0973206,-0.245178,-0.383759,-0.51001,-0.620819,-0.703308,-0.743042,-0.720154,-0.624847,-0.48996,-0.357269,-0.253967,-0.186127,-0.143951,-0.115295,-0.0928955,-0.106445,-0.181946,-0.283569,-0.362213,-0.380615,-0.343018,-0.264771,-0.157532,-0.0453796,0.0675964,0.187805,0.301758,0.377869,0.407654,0.390808,0.3237,0.242035,0.178192,0.147186,0.151215,0.187469,0.236572,0.286865,0.344971,0.40976,0.452362,0.438751,0.375183,0.294312,0.218933,0.162689,0.138336,0.129395,0.113892,0.101868,0.0922241,0.09552,0.114563,0.125854,0.121338,0.102875,0.0835571,0.0777893,0.090332,0.112823,0.13559,0.148193,0.149933,0.151337,0.147125,0.126251,0.0865173,0.0224304,-0.0655823,-0.159271,-0.250946,-0.348267,-0.447266,-0.551086,-0.658813,-0.743439,-0.777466,-0.743256,-0.65976,-0.564056,-0.471222,-0.394165,-0.309479,-0.217194,-0.134979,-0.0877991,-0.117859,-0.201355,-0.291901,-0.342957,-0.330688,-0.282501,-0.204041,-0.108124,-0.00827026,0.105377,0.226105,0.332428,0.402161,0.421082,0.38443,0.324158,0.287933,0.284576,0.308411,0.342163,0.376068,0.409424,0.448151,0.491882,0.52002,0.502502,0.433502,0.345245,0.270538,0.218719,0.202972,0.213013,0.207733,0.188263,0.171967,0.164246,0.167999,0.165375,0.138794,0.0759888,-0.00106812,-0.0554504,-0.0724792,-0.0516052,-0.013031,0.0254517,0.0578613,0.098999,0.144165,0.165497,0.149658,0.0973206,0.000732422,-0.127594,-0.258942,-0.391632,-0.523163,-0.640076,-0.74176,-0.821625,-0.858551,-0.837219,-0.751221,-0.636871,-0.524994,-0.438751,-0.374512,-0.307587,-0.240143,-0.179749,-0.164917,-0.209595,-0.273773,-0.326385,-0.329681,-0.283966,-0.206238,-0.101288,0.0050354,0.115906,0.234039,0.353973,0.460083,0.530212,0.55304,0.527588,0.484528,0.446594,0.426666,0.424438,0.428284,0.435455,0.443237,0.461975,0.487061,0.499146,0.474121,0.415375,0.350403,0.292084,0.246735,0.230865,0.221619,0.193481,0.154694,0.114105,0.0814819,0.0633545,0.0489807,0.0220947,-0.0181885,-0.0532837,-0.0653076,-0.0484619,-0.0157776,0.0212708,0.048645,0.0640259,0.0709534,0.0647583,0.0362549,-0.00906372,-0.0683899,-0.1492,-0.246307,-0.353363,-0.469543,-0.583313,-0.690491,-0.796478,-0.881561,-0.923737,-0.897614,-0.802246,-0.674866,-0.546936,-0.431702,-0.321686,-0.21344,-0.123352,-0.0656433,-0.0648193,-0.119537,-0.195099,-0.24585,-0.238342,-0.179138,-0.0857849,0.0320129,0.152222,0.271088,0.383759,0.483521,0.55365,0.579407,0.556671,0.492767,0.427063,0.388794,0.383087,0.395508,0.415192,0.433502,0.440002,0.450684,0.468079,0.475037,0.436462,0.362762,0.28537,0.228882,0.205994,0.216583,0.234985,0.216522,0.181946,0.142883,0.110474,0.0922241,0.0604858,0.00576782,-0.0681152,-0.137787,-0.178406,-0.182495,-0.157593,-0.117737,-0.0799255,-0.0463867,-0.0162354,0.00811768,0.0179138,0,-0.0523376,-0.146118,-0.261078,-0.377655,-0.490631,-0.596191,-0.690216,-0.776215,-0.837952,-0.846527,-0.787415,-0.669098,-0.529755,-0.405457,-0.303955,-0.220215,-0.138123,-0.068512,-0.0234985,-0.0267029,-0.0869141,-0.161682,-0.208588,-0.203766,-0.144165,-0.0558472,0.0521545,0.157196,0.256104,0.350739,0.435516,0.497681,0.524506,0.502777,0.437256,0.368805,0.328064,0.321014,0.34082,0.381409,0.423431,0.451904,0.472687,0.492828,0.499268,0.465179,0.39325,0.311493,0.24054,0.187317,0.168732,0.173706,0.162354,0.134766,0.0974426,0.0545044,0.0218201,-0.0181274,-0.070343,-0.131134,-0.191345,-0.230011,-0.231537,-0.196045,-0.138336,-0.0787354,-0.0335693,0.00476074,0.0381165,0.056366,0.0539551,0.0292664,-0.0291138,-0.122833,-0.229218,-0.342682,-0.450134,-0.544708,-0.64209,-0.737152,-0.797882,-0.800232,-0.730103,-0.605133,-0.475189,-0.362701,-0.269745,-0.177856,-0.0819397,-0.00576782,0.0281982,-0.00933838,-0.0964355,-0.185974,-0.234985,-0.222229,-0.166931,-0.078125,0.0239563,0.119598,0.227539,0.344116,0.448334,0.511505,0.528015,0.493378,0.428284,0.372772,0.340607,0.331299,0.333893,0.350891,0.372223,0.389343,0.419281,0.444305,0.437408,0.385864,0.319824,0.263245,0.22699,0.221161,0.228333,0.204559,0.152679,0.101807,0.0565186,0.0213318,-0.00759888,-0.0524902,-0.116913,-0.178986,-0.205322,-0.18866,-0.14035,-0.0649109,0.0145569,0.078064,0.129333,0.16449,0.172089,0.146057,0.086853,-0.00256348,-0.124359,-0.246124,-0.35733,-0.459808,-0.547272,-0.628479,-0.707062,-0.765717,-0.781982,-0.741913,-0.656067,-0.556335,-0.465393,-0.384644,-0.300873,-0.19928,-0.0999451,-0.0279236,-0.0171204,-0.0778503,-0.165771,-0.233368,-0.247864,-0.218933,-0.1586,-0.0756531,0.0148315,0.120392,0.245056,0.373627,0.474182,0.524658,0.521912,0.471008,0.406128,0.348877,0.317535,0.304169,0.308258,0.330353,0.361145,0.40921,0.465576,0.505585,0.501434,0.459961,0.402283,0.34021,0.291962,0.269867,0.24646,0.194702,0.131897,0.0800171,0.0481873,0.0360413,0.027771,0.00012207,-0.0471191,-0.091217,-0.112946,-0.102142,-0.0613403,-0.012085,0.0287781,0.0550232,0.074646,0.0794678,0.0672607,0.0359802,-0.0162964,-0.100891,-0.20993,-0.322693,-0.429535,-0.522888,-0.601562,-0.677399,-0.74881,-0.79184,-0.787262,-0.734528,-0.64325,-0.547211,-0.465454,-0.397186,-0.322235,-0.229736,-0.145172,-0.091217,-0.0918274,-0.138123,-0.19751,-0.230743,-0.21579,-0.171143,-0.101196,-0.0110779,0.0787354,0.169861,0.277466,0.3909,0.479614,0.52182,0.51947,0.474457,0.420349,0.384583,0.377319,0.387665,0.409943,0.440491,0.472504,0.509491,0.546783,0.559937,0.527924,0.468414,0.406189,0.341339,0.292145,0.271545,0.249817,0.21109,0.166504,0.127106,0.0990601,0.0760498,0.0394592,-0.0212708,-0.0972595,-0.168671,-0.210022,-0.207855,-0.170624,-0.112549,-0.0563049,-0.0105286,0.025238,0.0479736,0.0462952,0.0115967,-0.0565796,-0.158783,-0.286987,-0.410492,-0.514709,-0.593384,-0.657196,-0.712585,-0.76004,-0.782654,-0.771637,-0.719971,-0.633789,-0.549896,-0.476807,-0.416382,-0.339996,-0.238342,-0.138397,-0.0635681,-0.0506592,-0.0873108,-0.133698,-0.153168,-0.130463,-0.0927429,-0.0400696,0.0221558,0.0894775,0.186584,0.304626,0.427002,0.520294,0.57547,0.587341,0.556183,0.519012,0.491028,0.479889,0.479736,0.483978,0.489471,0.497864,0.518616,0.541901,0.541687,0.501038,0.435242,0.368256,0.311951,0.28183,0.268799,0.240875,0.189484,0.129059,0.0679321,0.0187378,-0.0222168,-0.0735474,-0.146515,-0.225098,-0.289337,-0.311005,-0.277466,-0.209747,-0.139069,-0.0808105,-0.0369263,0.000335693,0.0238953,0.0238953,-0.00582886,-0.066925,-0.16095,-0.270203,-0.378998,-0.478546,-0.558624,-0.630493,-0.700562,-0.762787,-0.793121,-0.785461,-0.728882,-0.638947,-0.549469,-0.467468,-0.386108,-0.281158,-0.15979,-0.0546265,0.012207,0.0114746,-0.037323,-0.100342,-0.138519,-0.136322,-0.108917,-0.0477905,0.0326843,0.128723,0.254364,0.398529,0.542755,0.651245,0.708221,0.705261,0.648804,0.572845,0.50592,0.456604,0.421356,0.401611,0.399078,0.410767,0.437744,0.471283,0.485718,0.458862,0.406067,0.348206,0.287872,0.238342,0.19577,0.136261,0.0679321,0.00515747,-0.0402832,-0.0631714,-0.078064,-0.105377,-0.157532,-0.221893,-0.270538,-0.278809,-0.245239,-0.186707,-0.122559,-0.0638428,-0.0124207,0.0326233,0.0656433,0.0720215,0.038269,-0.0357056,-0.14563,-0.269684,-0.390625,-0.499146,-0.588409,-0.663788,-0.730011,-0.785187,-0.805115,-0.779968,-0.703308,-0.598602,-0.498871,-0.409332,-0.328278,-0.230957,-0.120605,-0.024353,0.0298767,0.0185242,-0.0350952,-0.0875244,-0.0990601,-0.0671082,-0.0147705,0.0557861,0.132416,0.215973,0.322144,0.443176,0.557678,0.632629,0.659546,0.626129,0.544769,0.462982,0.399811,0.359344,0.336792,0.331879,0.341339,0.36377,0.406311,0.454315,0.475037,0.450287,0.393158,0.331024,0.272095,0.229523,0.194824,0.142029,0.0748291,0.0100098,-0.0336304,-0.0540161,-0.0673218,-0.0958557,-0.144501,-0.197937,-0.232758,-0.22644,-0.188202,-0.137848,-0.0924072,-0.0578613,-0.0369873,-0.0224304,-0.013092,-0.0170593,-0.0396729,-0.09021,-0.171021,-0.272278,-0.371094,-0.454163,-0.520569,-0.58606,-0.661285,-0.735382,-0.785461,-0.78775,-0.729218,-0.626404,-0.520142,-0.420349,-0.320496,-0.203888,-0.0697937,0.0516663,0.125916,0.121216,0.0505371,-0.0381165,-0.0945129,-0.103424,-0.0758362,-0.0216675,0.0473938,0.129395,0.246063,0.388123,0.52713,0.629761,0.67337,0.64325,0.56076,0.466248,0.395172,0.354431,0.33847,0.340332,0.348541,0.371094,0.4133,0.465851,0.492706,0.471436,0.4086,0.330627,0.258118,0.207794,0.177734,0.138245,0.085907,0.0306091,-0.00531006,-0.0157776,-0.024353,-0.0599976,-0.130219,-0.222412,-0.29599,-0.321014,-0.298187,-0.241028,-0.172821,-0.106171,-0.0423584,0.0212097,0.0734253,0.0927429,0.0664978,-0.00939941,-0.128448,-0.271362,-0.415039,-0.532898,-0.619202,-0.686615,-0.744324,-0.789764,-0.800751,-0.768494,-0.67453,-0.554321,-0.447937,-0.360809,-0.285858,-0.18866,-0.0757141,0.0259094,0.0832825,0.0628967,0.00314331,-0.0542297,-0.0748291,-0.0579224,-0.0209961,0.03302,0.0951843,0.175049,0.290222,0.417999,0.540283,0.627686,0.662506,0.636932,0.5672,0.493225,0.433228,0.393646,0.37027,0.357941,0.355652,0.366852,0.404053,0.443451,0.453979,0.420288,0.361969,0.306183,0.260223,0.23114,0.194916,0.137787,0.0737,0.0123596,-0.0284424,-0.0569763,-0.0920715,-0.143097,-0.213837,-0.280823,-0.319824,-0.312958,-0.263489,-0.192902,-0.119934,-0.0596008,-0.0117493,0.0287781,0.0574646,0.0548401,0.00906372,-0.0782471,-0.197998,-0.327606,-0.446991,-0.548401,-0.63089,-0.699677,-0.758759,-0.802246,-0.806335,-0.75882,-0.653442,-0.522827,-0.399597,-0.297852,-0.204987,-0.098114,0.0106812,0.102356,0.138336,0.0970459,0.015564,-0.0536194,-0.0773926,-0.0567017,-0.00744629,0.0589294,0.130005,0.220947,0.338348,0.469543,0.583588,0.652649,0.665405,0.61264,0.528412,0.448822,0.386261,0.345032,0.3237,0.318939,0.326324,0.354248,0.399414,0.438477,0.442688,0.406525,0.349335,0.291626,0.243561,0.208191,0.167725,0.107788,0.0357056,-0.0305481,-0.0721436,-0.0977173,-0.123077,-0.170288,-0.236328,-0.297791,-0.325775,-0.303284,-0.24472,-0.172211,-0.105988,-0.0532227,-0.0105896,0.0232239,0.0418701,0.0313416,-0.0161743,-0.0978699,-0.211334,-0.332825,-0.447815,-0.543091,-0.618805,-0.684937,-0.742645,-0.780029,-0.773254,-0.713165,-0.596008,-0.457001,-0.333649,-0.232025,-0.13147,-0.0226135,0.0803528,0.156189,0.1633,0.0962524,-0.000549316,-0.0747681,-0.0961914,-0.074646,-0.0250244,0.0390625,0.114288,0.216248,0.346375,0.479614,0.581635,0.634369,0.628357,0.565918,0.483582,0.411438,0.35907,0.328278,0.31311,0.308533,0.321136,0.355255,0.404236,0.436401,0.426453,0.374786,0.310211,0.256378,0.221954,0.194977,0.146179,0.0735474,-0.000213623,-0.0567017,-0.0869751,-0.103363,-0.126648,-0.176239,-0.236908,-0.28537,-0.295654,-0.25827,-0.194641,-0.126312,-0.0692749,-0.0195923,0.0233459,0.0582581,0.0755615,0.0547791,-0.00967407,-0.113953,-0.240204,-0.369934,-0.490204,-0.591766,-0.672241,-0.733185,-0.773315,-0.77713,-0.730774,-0.625732,-0.483368,-0.349152,-0.243042,-0.159454,-0.0792542,0.00234985,0.0748901,0.104309,0.0611572,-0.02771,-0.107391,-0.138123,-0.117462,-0.0657654,-0.0015564,0.069397,0.15564,0.264313,0.386871,0.496399,0.567596,0.592651,0.565308,0.503906,0.437927,0.388794,0.361023,0.350555,0.35141,0.354187,0.364777,0.388336,0.421417,0.429199,0.398254,0.33847,0.276062,0.2341,0.207123,0.185516,0.145721,0.0860291,0.0179138,-0.0307312,-0.0586548,-0.0789185,-0.112701,-0.170685,-0.229065,-0.270081,-0.265594,-0.216034,-0.147186,-0.0775146,-0.0241089,0.0126038,0.0357666,0.0497437,0.0396729,-0.00570679,-0.086853,-0.201813,-0.332977,-0.458344,-0.555939,-0.628204,-0.684601,-0.732513,-0.76123,-0.753571,-0.694305,-0.582428,-0.45224,-0.333435,-0.24295,-0.165771,-0.0775757,0.00985718,0.0794067,0.0863037,0.0255127,-0.0627441,-0.133148,-0.150665,-0.120056,-0.0612183,0.00878906,0.085907,0.185974,0.313782,0.44928,0.560425,0.627472,0.639404,0.599548,0.523651,0.451752,0.401215,0.373901,0.361694,0.355316,0.355194,0.36618,0.3992,0.424713,0.423157,0.388885,0.334564,0.279999,0.237854,0.211212,0.177063,0.124084,0.0637512,0.0131531,-0.0227661,-0.0498657,-0.0796814,-0.127594,-0.190063,-0.246979,-0.273102,-0.255188,-0.205719,-0.146179,-0.0905457,-0.046051,-0.0128174,0.0122681,0.0184631,-0.00463867,-0.0663757,-0.166656,-0.296509,-0.432495,-0.552643,-0.643433,-0.705658,-0.749817,-0.7789,-0.783173,-0.740845,-0.635254,-0.489197,-0.344452,-0.234711,-0.162903,-0.098114,-0.0261841,0.0503235,0.0883789,0.0547791,-0.0306702,-0.113281,-0.143555,-0.113953,-0.0488586,0.020813,0.0914917,0.177521,0.285919,0.41156,0.524719,0.60257,0.632843,0.61377,0.556519,0.491547,0.440948,0.410095,0.396179,0.391632,0.386932,0.382233,0.393829,0.41687,0.422028,0.390137,0.33432,0.281219,0.245178,0.227325,0.204651,0.160004,0.0941772,0.0299988,-0.0185242,-0.052948,-0.0873108,-0.144623,-0.221832,-0.287598,-0.319061,-0.305969,-0.257111,-0.188263,-0.124634,-0.0757751,-0.0387878,-0.0106812,0.0017395,-0.0181885,-0.0720825,-0.158539,-0.274963,-0.405518,-0.524231,-0.611511,-0.665649,-0.701172,-0.730774,-0.746948,-0.7229,-0.635132,-0.500885,-0.361145,-0.248138,-0.175171,-0.112366,-0.0328064,0.0569763,0.11618,0.0967712,0.0185242,-0.0676575,-0.112946,-0.100464,-0.0539551,0.00012207,0.0505371,0.119934,0.220551,0.345581,0.473633,0.573029,0.629883,0.635864,0.601959,0.546875,0.494781,0.460876,0.439209,0.415863,0.380219,0.345795,0.337921,0.355774,0.367859,0.350067,0.306122,0.263092,0.238922,0.233551,0.221283,0.176849,0.100555,0.016571,-0.0498657,-0.0992737,-0.142426,-0.189209,-0.247925,-0.298401,-0.318817,-0.294495,-0.231201,-0.149994,-0.0787354,-0.0307922,-0.00280762,0.0138855,0.0188599,-0.00201416,-0.0517578,-0.132812,-0.243896,-0.368866,-0.485321,-0.57666,-0.64035,-0.687012,-0.722565,-0.745056,-0.731506,-0.65332,-0.52063,-0.374512,-0.250336,-0.160675,-0.0867004,-0.00289917,0.0826721,0.132904,0.106781,0.0189209,-0.0748901,-0.131805,-0.13269,-0.0891418,-0.0328064,0.028595,0.10733,0.216034,0.347137,0.471771,0.571686,0.622894,0.618408,0.573364,0.510742,0.454773,0.41687,0.39679,0.375977,0.348938,0.326111,0.324432,0.344299,0.352417,0.336243,0.293915,0.248474,0.222076,0.214844,0.205902,0.171539,0.108673,0.041687,-0.0105286,-0.0463867,-0.0810242,-0.130066,-0.191498,-0.24939,-0.274719,-0.255371,-0.200134,-0.128052,-0.0604858,-0.0105896,0.0213318,0.0405273,0.0433044,0.0163879,-0.045166,-0.139404,-0.25946,-0.393646,-0.517059,-0.613251,-0.67807,-0.725586,-0.760162,-0.773102,-0.737885,-0.630951,-0.475861,-0.324371,-0.210754,-0.135101,-0.0606079,0.0294495,0.116394,0.149139,0.0906677,-0.028656,-0.135254,-0.175568,-0.153564,-0.102142,-0.0526733,-0.00430298,0.0708618,0.184448,0.321228,0.443848,0.529144,0.563843,0.546722,0.498199,0.450073,0.416443,0.405182,0.408325,0.406189,0.389221,0.374725,0.385651,0.406403,0.403046,0.360352,0.296783,0.245911,0.230194,0.238007,0.2323,0.196167,0.132019,0.0728149,0.0313416,0.00274658,-0.0348206,-0.102966,-0.182892,-0.248474,-0.271606,-0.246582,-0.189148,-0.11673,-0.0553589,-0.012146,0.0191345,0.036499,0.0360413,0.00476074,-0.0639648,-0.166718,-0.297943,-0.433563,-0.55545,-0.64621,-0.707001,-0.753998,-0.789032,-0.789886,-0.726257,-0.593903,-0.43042,-0.282776,-0.184113,-0.116058,-0.0385132,0.0551758,0.12793,0.119659,0.0266418,-0.103882,-0.200287,-0.220947,-0.186035,-0.136322,-0.0899963,-0.0306702,0.0635681,0.191498,0.331818,0.450287,0.532227,0.565582,0.552917,0.516113,0.477325,0.459747,0.463837,0.468475,0.457397,0.427856,0.410217,0.41452,0.421692,0.404053,0.351746,0.288391,0.256714,0.263641,0.27597,0.262085,0.204773,0.129395,0.0622864,0.0142822,-0.0240173,-0.0805969,-0.159332,-0.236237,-0.284241,-0.277527,-0.221893,-0.140747,-0.0634155,-0.00738525,0.0302734,0.0489807,0.0528259,0.0322876,-0.0211487,-0.114899,-0.241486,-0.38559,-0.523438,-0.635254,-0.715271,-0.772583,-0.818817,-0.843109,-0.811584,-0.697418,-0.528015,-0.352295,-0.219543,-0.136108,-0.06073,0.0291138,0.115448,0.139069,0.0621643,-0.0767212,-0.201538,-0.254913,-0.234436,-0.17807,-0.120667,-0.0571289,0.0362549,0.16275,0.303436,0.429535,0.519806,0.560364,0.552917,0.518555,0.479156,0.457336,0.464844,0.485596,0.488525,0.467529,0.446045,0.447723,0.455048,0.438599,0.383759,0.304718,0.252747,0.253082,0.273773,0.27182,0.225983,0.156036,0.0920105,0.0430298,0.00357056,-0.0512695,-0.129791,-0.212158,-0.271149,-0.283447,-0.244781,-0.173096,-0.0920105,-0.0263672,0.0189819,0.0434265,0.0493164,0.0366516,-0.00799561,-0.0940857,-0.216583,-0.361816,-0.506042,-0.629364,-0.720428,-0.78714,-0.83432,-0.853119,-0.819824,-0.708466,-0.543243,-0.367126,-0.226257,-0.134094,-0.0507507,0.0404053,0.119873,0.137177,0.0600586,-0.0736389,-0.194305,-0.245178,-0.229462,-0.183228,-0.137909,-0.0819397,0.0088501,0.133972,0.274963,0.395172,0.481964,0.524841,0.523651,0.49646,0.459961,0.444794,0.45929,0.484436,0.490814,0.471222,0.445801,0.446381,0.45813,0.449005,0.398132,0.318939,0.265839,0.263824,0.287323,0.289551,0.242889,0.166595,0.0959778,0.045105,0.00436401,-0.0524902,-0.13443,-0.218048,-0.273895,-0.279816,-0.23584,-0.159607,-0.078186,-0.0157776,0.0278625,0.0527649,0.0639648,0.0559692,0.0167236,-0.0649719,-0.186707,-0.331085,-0.476471,-0.601898,-0.703186,-0.788269,-0.852448,-0.878693,-0.837067,-0.713104,-0.540283,-0.362762,-0.222504,-0.119385,-0.0183105,0.0878601,0.163818,0.152161,0.0409546,-0.11438,-0.230804,-0.272095,-0.252838,-0.211334,-0.17337,-0.115295,-0.0128784,0.127716,0.278748,0.397247,0.472107,0.499542,0.486603,0.456055,0.42276,0.417542,0.440277,0.469208,0.474243,0.457336,0.444366,0.448944,0.454773,0.431549,0.371613,0.298798,0.266174,0.282288,0.307465,0.302155,0.24939,0.176788,0.116119,0.0691223,0.0177917,-0.0583801,-0.156189,-0.242096,-0.283783,-0.266052,-0.199402,-0.105988,-0.0159607,0.0528259,0.0973206,0.117065,0.116974,0.094696,0.0331421,-0.0714111,-0.213776,-0.372559,-0.523041,-0.643433,-0.739899,-0.81955,-0.871918,-0.873505,-0.794312,-0.645599,-0.475372,-0.320007,-0.207916,-0.10022,0.0194092,0.130341,0.173157,0.099884,-0.0509338,-0.201141,-0.279083,-0.281616,-0.252167,-0.226044,-0.199738,-0.122742,0.00991821,0.171417,0.315521,0.412354,0.457733,0.45694,0.431152,0.396332,0.37149,0.380157,0.408539,0.429626,0.432709,0.429199,0.44397,0.468994,0.472778,0.429016,0.351074,0.296448,0.293579,0.322021,0.333496,0.29483,0.224518,0.159729,0.12262,0.0953674,0.0422058,-0.0469055,-0.151825,-0.225922,-0.240417,-0.201202,-0.124756,-0.0426331,0.0246277,0.077179,0.108246,0.123749,0.120331,0.0834961,0.00396729,-0.118591,-0.274048,-0.436249,-0.576935,-0.694916,-0.795197,-0.867828,-0.8927,-0.838623,-0.705261,-0.533905,-0.366119,-0.241028,-0.132416,-0.0124817,0.106445,0.168335,0.11618,-0.0311279,-0.203705,-0.313568,-0.338745,-0.3125,-0.279419,-0.256195,-0.193634,-0.0733032,0.0918884,0.256714,0.374451,0.429535,0.424927,0.398865,0.366455,0.351227,0.36203,0.390961,0.40976,0.410431,0.412445,0.431488,0.467133,0.483429,0.446655,0.369202,0.303101,0.297607,0.341156,0.375122,0.353241,0.285034,0.211609,0.171204,0.14563,0.0971069,0.00256348,-0.119934,-0.215698,-0.24765,-0.20993,-0.125702,-0.0315552,0.045166,0.099884,0.132141,0.150818,0.154846,0.121735,0.0332947,-0.10556,-0.275513,-0.442291,-0.578339,-0.683929,-0.774994,-0.840363,-0.85498,-0.788147,-0.654327,-0.487122,-0.339203,-0.23819,-0.151093,-0.0515442,0.0502625,0.0969238,0.0420227,-0.0926819,-0.243286,-0.332092,-0.348724,-0.320892,-0.29068,-0.266388,-0.204773,-0.094574,0.0521545,0.20047,0.319214,0.385986,0.39801,0.381287,0.349823,0.337738,0.360138,0.397247,0.422821,0.419891,0.411438,0.420898,0.44519,0.456055,0.425323,0.360352,0.310425,0.309326,0.345795,0.37439,0.351959,0.289459,0.22821,0.187714,0.156708,0.100067,0.00302124,-0.108734,-0.187714,-0.205566,-0.16684,-0.0899353,-0.00314331,0.0722961,0.127716,0.156311,0.1651,0.153168,0.111023,0.0233459,-0.11377,-0.289276,-0.466675,-0.610504,-0.715515,-0.784515,-0.818024,-0.79364,-0.701294,-0.558685,-0.401886,-0.275726,-0.181824,-0.0942993,-0.00631714,0.0536194,0.0326843,-0.069519,-0.213776,-0.330627,-0.375183,-0.367737,-0.341827,-0.317596,-0.273102,-0.179077,-0.0426941,0.102814,0.228058,0.312164,0.351501,0.365051,0.360962,0.351685,0.351685,0.370361,0.397736,0.410217,0.410828,0.410431,0.417389,0.415253,0.389465,0.337402,0.287445,0.27713,0.309998,0.353363,0.356995,0.30954,0.244293,0.200867,0.175171,0.142151,0.0722046,-0.0316772,-0.127533,-0.169281,-0.148193,-0.0753174,0.0111389,0.0851746,0.142548,0.1745,0.187805,0.180084,0.14505,0.0747681,-0.0412903,-0.202148,-0.382843,-0.54599,-0.671295,-0.74762,-0.778015,-0.755402,-0.676605,-0.555328,-0.409668,-0.275574,-0.169067,-0.0832825,-0.0114746,0.0346985,0.0143738,-0.077179,-0.205841,-0.32016,-0.376526,-0.379272,-0.357056,-0.336792,-0.302368,-0.225769,-0.106567,0.0238342,0.139404,0.226257,0.274628,0.305115,0.323578,0.335999,0.353241,0.379608,0.410095,0.423248,0.414917,0.394318,0.377197,0.361145,0.335327,0.286591,0.231476,0.214233,0.251343,0.313904,0.345459,0.320557,0.26532,0.218262,0.186188,0.155365,0.090332,-0.0151672,-0.11203,-0.153442,-0.124573,-0.0465088,0.0454407,0.127655,0.19342,0.234772,0.246979,0.233154,0.191406,0.11496,-0.00765991,-0.173828,-0.362976,-0.535309,-0.666534,-0.73996,-0.755188,-0.712158,-0.624176,-0.501831,-0.358337,-0.228271,-0.120605,-0.0343018,0.0276489,0.0496521,0.00570679,-0.0963745,-0.224091,-0.325989,-0.373962,-0.374847,-0.355652,-0.340546,-0.314972,-0.249817,-0.138855,-0.0161743,0.0890503,0.153961,0.185913,0.215027,0.256317,0.308411,0.351501,0.384857,0.405457,0.413422,0.4133,0.404572,0.377136,0.32666,0.263916,0.20047,0.161011,0.16806,0.21814,0.274719,0.299286,0.28009,0.243835,0.213562,0.189728,0.156372,0.0793457,-0.0312195,-0.116516,-0.136383,-0.0848999,0.00827026,0.104218,0.177307,0.23349,0.27417,0.29483,0.28244,0.223969,0.121155,-0.0220947,-0.189148,-0.36322,-0.52533,-0.644196,-0.707947,-0.705383,-0.645264,-0.545715,-0.420013,-0.290558,-0.17337,-0.0718079,0.00704956,0.0534363,0.0428772,-0.0273743,-0.133575,-0.240814,-0.316803,-0.348602,-0.349335,-0.340424,-0.326172,-0.298187,-0.233154,-0.14035,-0.0438232,0.0396118,0.0881958,0.115906,0.147461,0.197662,0.263153,0.328003,0.379395,0.404114,0.405518,0.394165,0.378387,0.344849,0.292419,0.227661,0.164764,0.13382,0.154694,0.213104,0.26358,0.272888,0.241486,0.196991,0.162964,0.135315,0.094635,0.0142822,-0.0806885,-0.134369,-0.118805,-0.0357056,0.0779114,0.179596,0.251617,0.295776,0.318146,0.321411,0.294983,0.226654,0.108398,-0.0528259,-0.236847,-0.415985,-0.554047,-0.632111,-0.641754,-0.596405,-0.521912,-0.425262,-0.3172,-0.202423,-0.0889282,0.000549316,0.045166,0.0324707,-0.03302,-0.128265,-0.216705,-0.282562,-0.321136,-0.33725,-0.335327,-0.3172,-0.281342,-0.224304,-0.150085,-0.0833435,-0.0230103,0.0235596,0.0550232,0.0875244,0.131073,0.185974,0.240082,0.29007,0.330811,0.357117,0.371155,0.36734,0.338867,0.281158,0.216461,0.165436,0.145111,0.157776,0.194031,0.227722,0.232971,0.214233,0.182098,0.147186,0.107788,0.0620728,-0.0071106,-0.085022,-0.127716,-0.113495,-0.0430908,0.0600586,0.161682,0.245636,0.306396,0.343445,0.353027,0.328674,0.26297,0.156982,0.0147095,-0.151825,-0.319946,-0.464233,-0.560028,-0.586945,-0.555267,-0.483856,-0.387115,-0.281769,-0.175446,-0.0724792,0.0117493,0.0584717,0.0415344,-0.0299988,-0.132416,-0.226379,-0.291962,-0.327515,-0.3396,-0.338745,-0.322235,-0.284973,-0.221344,-0.138519,-0.0644226,-0.00698853,0.025238,0.0454407,0.0668335,0.105835,0.16095,0.216248,0.261292,0.287781,0.297119,0.299011,0.294647,0.275726,0.230194,0.174774,0.124298,0.108185,0.134644,0.189667,0.236115,0.245117,0.22229,0.185516,0.14563,0.0963745,0.0314026,-0.053009,-0.132568,-0.169678,-0.147186,-0.069458,0.0420837,0.157776,0.257324,0.329865,0.367798,0.376251,0.35022,0.28067,0.174042,0.0287781,-0.139404,-0.302216,-0.428955,-0.503296,-0.513519,-0.471771,-0.398407,-0.309875,-0.222687,-0.131287,-0.0440979,0.0266418,0.0579834,0.0298767,-0.0484009,-0.148804,-0.233704,-0.286865,-0.307465,-0.31076,-0.307068,-0.293091,-0.262085,-0.208344,-0.140472,-0.0744324,-0.0231018,0.00900269,0.0314636,0.0596008,0.107513,0.177643,0.245972,0.293976,0.316589,0.316132,0.299011,0.267853,0.215027,0.14209,0.0630798,0.0126038,0.0151672,0.0609436,0.128998,0.191833,0.220154,0.223511,0.209534,0.178802,0.124237,0.0453186,-0.0531616,-0.144562,-0.192169,-0.174713,-0.0950317,0.0170593,0.130737,0.231293,0.306519,0.355652,0.378143,0.358734,0.290558,0.168274,0.0085144,-0.164093,-0.315918,-0.42215,-0.467865,-0.452301,-0.395996,-0.315369,-0.228943,-0.141754,-0.0560303,0.0151062,0.0557861,0.04953,-0.00549316,-0.0888062,-0.171814,-0.230957,-0.258667,-0.263428,-0.259613,-0.253082,-0.2388,-0.21402,-0.174164,-0.129272,-0.0861816,-0.0593262,-0.0413513,-0.0137634,0.0401917,0.12149,0.214111,0.292969,0.341675,0.356659,0.350891,0.321625,0.269745,0.187592,0.0882568,-0.0062561,-0.0628967,-0.06073,-0.012085,0.057251,0.115387,0.150757,0.161804,0.156708,0.138672,0.0979919,0.0283813,-0.0575867,-0.125702,-0.150543,-0.120331,-0.045166,0.0518799,0.141876,0.218872,0.277863,0.314453,0.322968,0.292969,0.215454,0.0932922,-0.0595398,-0.207581,-0.323975,-0.388672,-0.395325,-0.360809,-0.300201,-0.225098,-0.141266,-0.0518799,0.0231628,0.0657654,0.0614014,0.0104065,-0.06604,-0.139679,-0.193756,-0.225433,-0.233032,-0.225311,-0.20993,-0.187469,-0.160217,-0.132568,-0.106781,-0.0881958,-0.0775757,-0.073822,-0.0626831,-0.0301208,0.0351562,0.124176,0.215973,0.296173,0.350677,0.377716,0.37149,0.328735,0.249664,0.147064,0.0462952,-0.0296631,-0.0621643,-0.0535583,-0.0172424,0.0185852,0.0467834,0.0646973,0.0731506,0.0704041,0.0481873,0.0038147,-0.0570374,-0.11026,-0.127441,-0.0965271,-0.0252991,0.0618286,0.141693,0.200134,0.238464,0.259125,0.261566,0.235046,0.174835,0.0776672,-0.0483093,-0.179535,-0.282562,-0.338593,-0.337402,-0.296265,-0.229218,-0.15451,-0.0823669,-0.0143738,0.0414734,0.0720825,0.06604,0.0184021,-0.0565186,-0.133911,-0.190552,-0.21637,-0.214691,-0.195709,-0.167786,-0.137329,-0.108063,-0.0834961,-0.0628357,-0.0564575,-0.0627441,-0.0706787,-0.0667725,-0.040741,0.00985718,0.0835571,0.164703,0.2453,0.30899,0.34671,0.353912,0.325989,0.259338,0.166931,0.0729675,0.000335693,-0.0356445,-0.0342407,-0.00750732,0.0233459,0.0447693,0.0502625,0.0410156,0.0141602,-0.0313416,-0.0916748,-0.160004,-0.204224,-0.208527,-0.164307,-0.0761108,0.0351562,0.143768,0.232361,0.289124,0.314514,0.302948,0.253967,0.168182,0.0484619,-0.0898132,-0.219482,-0.317719,-0.359863,-0.341675,-0.274445,-0.183502,-0.0906677,-0.00671387,0.065979,0.118134,0.132416,0.0965881,0.0185852,-0.0792542,-0.163422,-0.212891,-0.226532,-0.211609,-0.177399,-0.134491,-0.0914001,-0.0509949,-0.0212708,-0.0088501,-0.0114136,-0.0296631,-0.0497437,-0.0522766,-0.0273743,0.0298767,0.105377,0.181427,0.244507,0.287537,0.310333,0.306396,0.271362,0.205841,0.120544,0.0334167,-0.0272522,-0.040802,-0.012207,0.037323,0.0749817,0.0841675,0.0704041,0.0411987,0.0050354,-0.0481873,-0.130402,-0.218811,-0.280762,-0.284973,-0.229675,-0.134583,-0.025177,0.0777893,0.168732,0.242096,0.283691,0.285919,0.248596,0.167175,0.0508118,-0.08255,-0.202087,-0.284241,-0.312958,-0.293976,-0.244049,-0.175049,-0.0899963,0.00592041,0.0972595,0.155579,0.158447,0.103424,0.0135498,-0.0808716,-0.153015,-0.197174,-0.217377,-0.21283,-0.18335,-0.132904,-0.0707397,-0.0118713,0.027771,0.0422058,0.0350342,0.0219421,0.00946045,0.0115356,0.0351562,0.0828857,0.144379,0.208405,0.264587,0.299011,0.306183,0.280945,0.2229,0.136108,0.0423584,-0.0367126,-0.0761719,-0.0700684,-0.0293884,0.0218811,0.0584717,0.0818787,0.0851746,0.0667725,0.0180664,-0.0603333,-0.158203,-0.248932,-0.29953,-0.29303,-0.233429,-0.136993,-0.0299377,0.065979,0.140411,0.188324,0.207123,0.197266,0.14975,0.0648193,-0.0488586,-0.160339,-0.23819,-0.270203,-0.258545,-0.215515,-0.148651,-0.0683899,0.0181274,0.0973206,0.153503,0.170197,0.139404,0.0700073,-0.0214844,-0.110687,-0.179138,-0.218262,-0.224701,-0.202759,-0.15979,-0.100677,-0.0349731,0.0241699,0.0645752,0.0783997,0.0719604,0.0603333,0.0589294,0.0812683,0.119324,0.168732,0.219147,0.264923,0.299805,0.319611,0.308868,0.258606,0.172821,0.0713501,-0.0227661,-0.0889893,-0.11438,-0.098938,-0.0558472,-0.00531006,0.0363159,0.0546875,0.0557861,0.0368347,-0.0114746,-0.0896606,-0.184692,-0.267334,-0.302216,-0.272888,-0.189941,-0.0885315,0.00390625,0.0770569,0.133087,0.168121,0.169861,0.12854,0.0444336,-0.0720825,-0.191742,-0.28537,-0.329132,-0.315582,-0.257202,-0.169739,-0.0756531,0.0195312,0.112946,0.194702,0.245972,0.240814,0.171875,0.0592041,-0.0551147,-0.141418,-0.189606,-0.210541,-0.213226,-0.196106,-0.157196,-0.0966492,-0.0256348,0.0316162,0.0639038,0.0739746,0.0770569,0.0878601,0.118591,0.164154,0.2229,0.28363,0.337189,0.368683,0.371948,0.346375,0.292084,0.20993,0.103149,-0.00531006,-0.0961914,-0.138,-0.128723,-0.0864563,-0.0387878,-0.00482178,0.0154419,0.0231628,0.0171814,-0.0209961,-0.094635,-0.18631,-0.261627,-0.294922,-0.279755,-0.220154,-0.131683,-0.0330811,0.0582581,0.127991,0.164368,0.165833,0.127716,0.0493164,-0.0638428,-0.190887,-0.299469,-0.363892,-0.37149,-0.334503,-0.263824,-0.168945,-0.0567932,0.0654907,0.166504,0.228729,0.237122,0.201691,0.13504,0.0545654,-0.0232849,-0.0921631,-0.139252,-0.161804,-0.157043,-0.133972,-0.0991211,-0.0627441,-0.0304565,-0.00408936,0.0125427,0.0283203,0.0524292,0.101013,0.171631,0.254425,0.3349,0.402283,0.447327,0.460083,0.435791,0.371277,0.265991,0.141754,0.0185852,-0.0823669,-0.141754,-0.155518,-0.128052,-0.0803528,-0.027771,0.00799561,0.0159607,0.00106812,-0.0410156,-0.109467,-0.19397,-0.272705,-0.315125,-0.308258,-0.249603,-0.158264,-0.0574646,0.0345764,0.106781,0.151276,0.159271,0.126251,0.0505371,-0.061615,-0.181213,-0.283905,-0.34787,-0.365784,-0.338074,-0.272156,-0.187805,-0.0905457,0.0136108,0.103027,0.163239,0.175568,0.142029,0.0783386,0.0104065,-0.0448914,-0.0800171,-0.0944214,-0.0917358,-0.0757751,-0.0477295,-0.0147705,0.0135498,0.025177,0.0220032,0.00973511,0.00134277,0.0118713,0.0509949,0.121155,0.218048,0.322571,0.414856,0.479004,0.506714,0.489868,0.433563,0.335846,0.208069,0.0629578,-0.0644226,-0.143372,-0.165039,-0.141602,-0.0972595,-0.0512085,-0.0184021,0.00228882,-0.00146484,-0.0363159,-0.100891,-0.18512,-0.268127,-0.317932,-0.314117,-0.257263,-0.165649,-0.0645752,0.0228882,0.0881958,0.126587,0.131561,0.0999451,0.025177,-0.0870361,-0.207245,-0.304169,-0.35376,-0.351746,-0.306641,-0.234894,-0.149658,-0.0549622,0.0354309,0.105774,0.139923,0.12793,0.0734863,-0.0017395,-0.0726929,-0.123901,-0.145111,-0.136322,-0.105042,-0.057251,-0.00424194,0.0465088,0.0822144,0.0960388,0.0833435,0.0551147,0.0292664,0.0216675,0.0524292,0.119659,0.212219,0.313293,0.403381,0.472015,0.510345,0.508484,0.456329,0.355774,0.218384,0.0708618,-0.0497437,-0.121613,-0.141693,-0.126312,-0.101013,-0.0730896,-0.0391235,-0.0110779,-0.00717163,-0.0424805,-0.116638,-0.207062,-0.27478,-0.296051,-0.27417,-0.220276,-0.144958,-0.0602112,0.021759,0.0898743,0.123505,0.111023,0.0575867,-0.0310059,-0.13913,-0.2435,-0.319611,-0.349609,-0.336578,-0.287872,-0.216309,-0.122345,-0.0189209,0.0763855,0.139252,0.152008,0.114716,0.0450439,-0.0341492,-0.104706,-0.157104,-0.183014,-0.183838,-0.151611,-0.0913391,-0.0205994,0.0406799,0.0832214,0.10141,0.098114,0.0861816,0.074646,0.0765076,0.106445,0.16391,0.244507,0.333099,0.406403,0.457184,0.482025,0.477142,0.428802,0.328949,0.195099,0.0649109,-0.0313416,-0.0841064,-0.101196,-0.107849,-0.106567,-0.0862427,-0.0519409,-0.0255737,-0.0293884,-0.078125,-0.156982,-0.229675,-0.26651,-0.26593,-0.231537,-0.169952,-0.0934143,-0.0159607,0.0564575,0.107574,0.123291,0.0930786,0.0132141,-0.100342,-0.214355,-0.298737,-0.339355,-0.339478,-0.310608,-0.258545,-0.181824,-0.0765686,0.0327454,0.118988,0.154236,0.134247,0.0788574,0.0105286,-0.0568542,-0.11618,-0.160126,-0.186249,-0.180878,-0.140411,-0.0801392,-0.0157776,0.0339661,0.0599365,0.0640869,0.0578003,0.0553589,0.0667114,0.10376,0.164154,0.235382,0.310883,0.378723,0.437134,0.473175,0.472961,0.424103,0.331146,0.214447,0.103821,0.0205994,-0.0305481,-0.0595398,-0.0761719,-0.0816956,-0.0690613,-0.0443115,-0.0264587,-0.0325623,-0.0708618,-0.132416,-0.200958,-0.247986,-0.261749,-0.241089,-0.190216,-0.121887,-0.0461731,0.0267944,0.0847778,0.115173,0.105652,0.0502014,-0.0446472,-0.154968,-0.249725,-0.311157,-0.334381,-0.322296,-0.279144,-0.206909,-0.10968,-0.00717163,0.0785217,0.128448,0.132141,0.100616,0.0470581,-0.0176392,-0.0830078,-0.133759,-0.161346,-0.16095,-0.134491,-0.0926208,-0.0463867,-0.00396729,0.0267029,0.0379944,0.0303345,0.0200806,0.0241699,0.0549622,0.11557,0.197388,0.283966,0.367676,0.441437,0.493439,0.504242,0.462494,0.370605,0.247986,0.121399,0.0157776,-0.0593872,-0.104645,-0.119537,-0.112701,-0.0856323,-0.0496521,-0.0215454,-0.0149536,-0.0414734,-0.089386,-0.150085,-0.202362,-0.229218,-0.227112,-0.196381,-0.141602,-0.0727539,-0.0012207,0.0589294,0.0938416,0.0932312,0.0508728,-0.0279236,-0.119812,-0.206177,-0.270752,-0.304169,-0.310608,-0.28009,-0.214294,-0.118195,-0.0169067,0.0638428,0.109253,0.118134,0.0939026,0.0495911,-0.00704956,-0.0653687,-0.110016,-0.131073,-0.126312,-0.100616,-0.0586548,-0.0147095,0.0228271,0.0406189,0.0327454,0.00778198,-0.0157166,-0.0214233,0.00308228,0.0567932,0.135712,0.229126,0.327271,0.417664,0.483582,0.509155,0.483856,0.411285,0.303284,0.176788,0.0586548,-0.0357056,-0.0949097,-0.120667,-0.126648,-0.121826,-0.108856,-0.086853,-0.0706787,-0.07724,-0.115448,-0.171753,-0.213287,-0.220551,-0.188812,-0.137909,-0.0837708,-0.0325623,0.0172424,0.0605469,0.0808716,0.065979,0.0124817,-0.0665894,-0.151489,-0.224243,-0.271362,-0.282166,-0.260345,-0.208008,-0.141266,-0.0679321,0.00228882,0.0639648,0.103485,0.10498,0.0690002,0.00765991,-0.057312,-0.107239,-0.131744,-0.130951,-0.113159,-0.0753174,-0.020813,0.0371094,0.0836182,0.10321,0.0905457,0.0571289,0.0200806,-0.00280762,-0.000396729,0.032074,0.0934143,0.176575,0.264832,0.349152,0.417725,0.455109,0.454041,0.406586,0.315186,0.204041,0.0942993,0.0101929,-0.0464478,-0.0838928,-0.110016,-0.123077,-0.119812,-0.107513,-0.10376,-0.122498,-0.166504,-0.214844,-0.24472,-0.246246,-0.218475,-0.165924,-0.0987854,-0.0238342,0.045166,0.0959778,0.110138,0.0873718,0.0245667,-0.0697937,-0.172821,-0.261566,-0.313446,-0.324097,-0.295502,-0.236115,-0.15155,-0.0453186,0.0622864,0.14859,0.186523,0.171814,0.117462,0.0455017,-0.0326233,-0.107056,-0.165985,-0.194916,-0.187469,-0.140594,-0.0667114,0.0125427,0.0822144,0.128326,0.142212,0.126373,0.0973816,0.0752258,0.0711365,0.091217,0.133423,0.187866,0.253357,0.3237,0.385986,0.420074,0.410675,0.353851,0.261749,0.164581,0.0795288,0.0145569,-0.0306702,-0.0636292,-0.085968,-0.0945129,-0.0920715,-0.0935059,-0.108856,-0.142487,-0.195251,-0.247864,-0.278595,-0.277863,-0.241699,-0.177399,-0.102356,-0.0281067,0.038269,0.0903931,0.109924,0.086792,0.0150452,-0.0865173,-0.193756,-0.280762,-0.33316,-0.345581,-0.320618,-0.259003,-0.167511,-0.0563049,0.0540161,0.144287,0.193817,0.19632,0.161285,0.0967102,0.0191345,-0.0578613,-0.116241,-0.148132,-0.155914,-0.134033,-0.0890503,-0.0316772,0.0281067,0.0765686,0.102539,0.106049,0.1008,0.0983887,0.113159,0.14624,0.193634,0.252625,0.313171,0.368347,0.405853,0.416595,0.394836,0.338806,0.250488,0.150482,0.0570374,-0.0104675,-0.0508118,-0.0744324,-0.0922241,-0.101624,-0.0996704,-0.0954285,-0.104492,-0.142883,-0.203888,-0.26062,-0.289215,-0.284424,-0.246857,-0.187653,-0.114502,-0.0308838,0.0473938,0.101349,0.115967,0.0869141,0.0169067,-0.0855103,-0.19928,-0.303955,-0.371368,-0.392426,-0.365448,-0.303955,-0.214569,-0.098053,0.0288696,0.136047,0.201477,0.213348,0.183899,0.125977,0.0575256,-0.0145569,-0.0783997,-0.123688,-0.141815,-0.123077,-0.0774536,-0.0224915,0.0280457,0.065918,0.0879211,0.0951843,0.0956421,0.101471,0.126648,0.172882,0.230621,0.291748,0.346985,0.393158,0.42392,0.430878,0.401031,0.331207,0.231201,0.13089,0.0462952,-0.012146,-0.0483093,-0.0723572,-0.0836792,-0.0834961,-0.0793457,-0.086853,-0.108917,-0.151001,-0.210693,-0.268341,-0.306061,-0.312958,-0.278534,-0.20874,-0.119263,-0.0320129,0.0440369,0.0966492,0.114044,0.0938416,0.0233459,-0.0836182,-0.201477,-0.301086,-0.363373,-0.386108,-0.367065,-0.316528,-0.234039,-0.129456,-0.0213318,0.0708008,0.125244,0.145966,0.137268,0.104431,0.0593262,0.0071106,-0.0337524,-0.0574646,-0.0595398,-0.0430908,-0.0196533,0.00643921,0.0284424,0.0431519,0.0463867,0.041626,0.0456543,0.0667725,0.115631,0.186707,0.266052,0.34613,0.417053,0.468597,0.487732,0.468872,0.410492,0.314453,0.201202,0.0947571,0.0106812,-0.0448914,-0.0744324,-0.0877075,-0.0917358,-0.0828857,-0.0680542,-0.0630188,-0.0820923,-0.133911,-0.202423,-0.257324,-0.279602,-0.272888,-0.242889,-0.199127,-0.136932,-0.0604858,0.019989,0.0720215,0.0820923,0.0448303,-0.0307312,-0.12262,-0.21048,-0.282501,-0.329742,-0.344635,-0.326324,-0.27832,-0.202545,-0.109344,-0.0205383,0.0440979,0.0708008,0.0637512,0.0406189,0.0171814,-0.00631714,-0.0287781,-0.0474548,-0.0535583,-0.0346375,0.00515747,0.0477905,0.078125,0.0856323,0.0751038,0.0545044,0.0403442,0.0393372,0.0585327,0.103821,0.170471,0.253357,0.336914,0.409882,0.46579,0.492767,0.480347,0.421082,0.324036,0.215576,0.117126,0.0444336,-0.00549316,-0.0438843,-0.0751038,-0.0945129,-0.0963745,-0.0950317,-0.102814,-0.135437,-0.18866,-0.240692,-0.269928,-0.266052,-0.235901,-0.183228,-0.120667,-0.0531616,0.0126038,0.065033,0.0855713,0.0634155,0.000610352,-0.094574,-0.198456,-0.286438,-0.343018,-0.364838,-0.353088,-0.310211,-0.240601,-0.145782,-0.0438843,0.0393372,0.0821533,0.0831604,0.0549622,0.0148926,-0.028656,-0.0688477,-0.1008,-0.11496,-0.099884,-0.0596008,-0.00491333,0.0477295,0.0881348,0.106171,0.103088,0.0848999,0.0646362,0.0596619,0.081604,0.129883,0.195984,0.272278,0.349609,0.415863,0.46344,0.475189,0.443024,0.372498,0.273773,0.174164,0.091156,0.0369873,0.00476074,-0.016571,-0.0328979,-0.0406799,-0.0426941,-0.0495911,-0.0769043,-0.133026,-0.210541,-0.275574,-0.304504,-0.2966,-0.257874,-0.19986,-0.127106,-0.0455627,0.0351562,0.0910645,0.108185,0.082428,0.0137634,-0.081604,-0.184692,-0.27478,-0.333771,-0.35553,-0.339935,-0.301819,-0.238464,-0.155243,-0.0644836,0.0151672,0.06073,0.0673828,0.0436401,0.0088501,-0.0264587,-0.0577087,-0.0785217,-0.0904846,-0.0807495,-0.0524902,-0.00933838,0.0317993,0.0578613,0.0674438,0.0620117,0.0502625,0.0420837,0.0503235,0.0899353,0.155304,0.236725,0.319489,0.388397,0.440613,0.472626,0.473694,0.431427,0.344116,0.234375,0.128387,0.0515442,0.00497437,-0.0220947,-0.0430908,-0.0559082,-0.0497437,-0.039856,-0.0391846,-0.062561,-0.118317,-0.185364,-0.240417,-0.265106,-0.255768,-0.215851,-0.161133,-0.101135,-0.0349731,0.0276489,0.0712891,0.0767212,0.037262,-0.039856,-0.135712,-0.219543,-0.279999,-0.312958,-0.317535,-0.295929,-0.249542,-0.177521,-0.0929565,-0.0181885,0.0313416,0.04953,0.0362549,0.00750732,-0.0278625,-0.0595398,-0.0842896,-0.101868,-0.100739,-0.0763245,-0.0354309,0.0126038,0.0521545,0.0744934,0.0761108,0.0621643,0.0436401,0.0374451,0.0564575,0.0992126,0.161072,0.233032,0.309662,0.380951,0.433228,0.461761,0.451904,0.399811,0.312225,0.210815,0.11908,0.0531616,0.0132141,-0.0152893,-0.0420837,-0.0610046,-0.0699463,-0.0726929,-0.0800781,-0.110748,-0.164764,-0.224365,-0.251404,-0.244904,-0.206512,-0.150208,-0.0908203,-0.0271912,0.0327454,0.0797424,0.0928955,0.0655823,-0.00222778,-0.0991211,-0.196838,-0.274445,-0.322571,-0.336121,-0.316467,-0.271484,-0.207672,-0.127533,-0.0450439,0.0265198,0.0683899,0.072876,0.0470581,0.00491333,-0.0350952,-0.068512,-0.0916748,-0.101624,-0.0968628,-0.072876,-0.036377,0.00341797,0.0348206,0.0500793,0.0504761,0.0448914,0.0411987,0.0500793,0.0826111,0.137177,0.210205,0.290009,0.356781,0.404633,0.432098,0.433105,0.398926,0.327606,0.233826,0.139252,0.0657654,0.0259094,0.00805664,-0.00772095,-0.0237732,-0.0377197,-0.0459595,-0.0532227,-0.0775757,-0.132812,-0.20639,-0.263702,-0.28302,-0.26297,-0.210693,-0.139191,-0.0631714,0.012085,0.0774536,0.116913,0.116516,0.0744324,-0.00866699,-0.11618,-0.220062,-0.299072,-0.339539,-0.340424,-0.312439,-0.265778,-0.19873,-0.111938,-0.0236816,0.0406799,0.0704651,0.0646362,0.0389404,0.00765991,-0.0198669,-0.0444946,-0.06073,-0.0679932,-0.0599976,-0.038269,-0.00793457,0.0184631,0.0287781,0.0246277,0.012085,-0.00280762,-0.0067749,0.0160522,0.0732117,0.156525,0.253021,0.340546,0.40799,0.451904,0.471283,0.45813,0.400543,0.303497,0.184845,0.0783386,0.00933838,-0.0209351,-0.0328064,-0.0422058,-0.0462341,-0.0425415,-0.0406189,-0.0497437,-0.0798035,-0.13913,-0.212341,-0.271362,-0.29303,-0.267731,-0.203766,-0.124237,-0.0435486,0.0317993,0.0932922,0.127991,0.122406,0.0706177,-0.0285339,-0.146057,-0.249939,-0.317261,-0.344635,-0.337799,-0.304565,-0.248322,-0.166992,-0.0749817,0.0050354,0.0579224,0.0716858,0.0541077,0.020752,-0.0124817,-0.041626,-0.0600586,-0.0647583,-0.0520935,-0.024292,0.0110168,0.0465088,0.0673828,0.0688477,0.0478516,0.0135498,-0.019928,-0.0311279,-0.00704956,0.0502625,0.136108,0.236389,0.335571,0.417389,0.472565,0.493317,0.470612,0.402435,0.302216,0.185577,0.0803528,0.0104675,-0.0271301,-0.0489197,-0.0646362,-0.0736389,-0.0711365,-0.0593872,-0.0611572,-0.10376,-0.17981,-0.251892,-0.285309,-0.275787,-0.239136,-0.190491,-0.128784,-0.0470581,0.0426331,0.111603,0.132751,0.105988,0.0401917,-0.0535583,-0.155518,-0.248047,-0.31424,-0.337524,-0.32431,-0.290741,-0.236786,-0.160217,-0.0697937,0.011261,0.0603333,0.0678406,0.0461121,0.0177307,-0.00442505,-0.025116,-0.0464478,-0.0590515,-0.0524902,-0.0216675,0.0224304,0.0608826,0.0780029,0.0710754,0.0524292,0.0299377,0.0085144,0.00100708,0.0215454,0.0755615,0.157104,0.249207,0.333038,0.402039,0.452911,0.477386,0.456604,0.381958,0.27713,0.167389,0.077179,0.0178528,-0.0235596,-0.0583191,-0.0802002,-0.0852356,-0.0808716,-0.0802612,-0.0958557,-0.132965,-0.18512,-0.235565,-0.263824,-0.256927,-0.21344,-0.146515,-0.0763855,-0.0137024,0.041748,0.0842285,0.0982056,0.0730286,-0.0012207,-0.108124,-0.213104,-0.286987,-0.321625,-0.326263,-0.311676,-0.275726,-0.209076,-0.119385,-0.0334167,0.0274658,0.0569763,0.0559692,0.0353088,0.00759888,-0.020752,-0.0426331,-0.0532227,-0.0515442,-0.0307922,-0.00247192,0.0297241,0.0582581,0.0762329,0.073822,0.0512085,0.0206604,0.00228882,0.013092,0.0541077,0.11557,0.191284,0.277466,0.359192,0.423492,0.460815,0.463715,0.421356,0.344116,0.246063,0.148926,0.0681152,0.0125427,-0.0254517,-0.0522766,-0.0710144,-0.0845642,-0.0882568,-0.0904846,-0.108673,-0.155182,-0.216919,-0.261017,-0.269745,-0.241547,-0.193146,-0.133911,-0.0710144,-0.00524902,0.0559082,0.0950928,0.098114,0.052948,-0.0306702,-0.132416,-0.222015,-0.288208,-0.325165,-0.331482,-0.313629,-0.271881,-0.202087,-0.111938,-0.0259094,0.0343018,0.0585938,0.052887,0.0344849,0.0116882,-0.0128174,-0.0369873,-0.0502014,-0.0508118,-0.0316162,-0.000732422,0.0371094,0.0670471,0.078064,0.0709534,0.0518799,0.0294495,0.0184021,0.0300598,0.0710754,0.135315,0.216248,0.298004,0.370087,0.424652,0.457275,0.454376,0.408813,0.327332,0.226318,0.125305,0.0485229,-0.00100708,-0.0350342,-0.0593872,-0.0755005,-0.0820312,-0.0834351,-0.089325,-0.116119,-0.165833,-0.221161,-0.257599,-0.262085,-0.233032,-0.179199,-0.116394,-0.04953,0.0136108,0.0658264,0.09021,0.0774536,0.0245056,-0.0622864,-0.160217,-0.248718,-0.308868,-0.334106,-0.326996,-0.297516,-0.248535,-0.174225,-0.0851135,-0.00424194,0.0483093,0.0654907,0.0531006,0.02771,0.000396729,-0.0281067,-0.0487976,-0.0599365,-0.0571899,-0.0344849,-0.00189209,0.0342407,0.0583801,0.0648193,0.0567932,0.0404053,0.0222778,0.0173035,0.0394592,0.0914917,0.164581,0.249603,0.331696,0.396057,0.438599,0.45813,0.446472,0.393646,0.306061,0.204163,0.115173,0.0535583,0.0128784,-0.025177,-0.0593872,-0.0818787,-0.0887146,-0.0897217,-0.104218,-0.14505,-0.202698,-0.249268,-0.261963,-0.242371,-0.203827,-0.149323,-0.0830994,-0.0123596,0.0504761,0.085968,0.091217,0.0644836,0.00442505,-0.0865784,-0.189056,-0.27597,-0.329285,-0.348053,-0.340332,-0.314362,-0.263824,-0.185303,-0.0909424,-0.00817871,0.0472412,0.0683289,0.0692749,0.0612183,0.0426331,0.0127563,-0.0202026,-0.0418091,-0.0426941,-0.0305481,-0.00991821,0.00979614,0.0222778,0.0260315,0.0231018,0.015564,0.0101318,0.0147095,0.0448303,0.102478,0.17981,0.26767,0.348267,0.411621,0.454376,0.469482,0.44873,0.392639,0.311218,0.213348,0.121338,0.0487366,0.00302124,-0.0315552,-0.0592651,-0.0828247,-0.0986633,-0.106232,-0.117859,-0.15033,-0.204224,-0.251831,-0.268066,-0.243958,-0.194427,-0.137054,-0.0771179,-0.0105286,0.0579224,0.106567,0.112427,0.0767212,0.0065918,-0.081604,-0.177185,-0.265167,-0.332489,-0.36322,-0.362213,-0.334442,-0.282013,-0.206116,-0.114777,-0.0299377,0.0331421,0.0661011,0.0749817,0.0700073,0.0551758,0.03302,0.00375366,-0.0198669,-0.0316162,-0.0236206,-0.00469971,0.0139465,0.0226135,0.0211487,0.0152283,0.00683594,0.000274658,0.00610352,0.0323486,0.0875244,0.164978,0.253754,0.338013,0.403229,0.447205,0.469666,0.463043,0.41571,0.332031,0.227936,0.13208,0.0633545,0.0128784,-0.0280457,-0.065918,-0.0954285,-0.112091,-0.116455,-0.127777,-0.157715,-0.206726,-0.247314,-0.256927,-0.23114,-0.181091,-0.124023,-0.0636292,-0.00195312,0.0579834,0.0993347,0.110809,0.0846863,0.0200806,-0.0716248,-0.168854,-0.255371,-0.318207,-0.352417,-0.357452,-0.338745,-0.293701,-0.22525,-0.141205,-0.0582581,0.00683594,0.0438843,0.0596008,0.0628357,0.0564575,0.0414734,0.0201416,0.000793457,-0.00958252,-0.00900269,-0.00088501,0.00750732,0.0134888,0.0118713,0.003479,-0.00469971,-0.0117493,-0.0050354,0.0232239,0.0802002,0.159729,0.249603,0.332642,0.397064,0.443359,0.472015,0.46875,0.422241,0.339996,0.237518,0.14679,0.0788574,0.0283203,-0.0174561,-0.0646362,-0.0983276,-0.111603,-0.113892,-0.125641,-0.163818,-0.21524,-0.253906,-0.257782,-0.22934,-0.180145,-0.123505,-0.0655823,-0.000457764,0.0640259,0.113434,0.124573,0.0923462,0.0237732,-0.0602722,-0.147247,-0.232697,-0.303436,-0.349274,-0.364105,-0.346863,-0.30249,-0.236115,-0.157104,-0.0801392,-0.0160522,0.0269165,0.0507507,0.0583191,0.0539551,0.0438232,0.0271301,0.00616455,-0.00967407,-0.0110168,-0.00241089,0.00650024,0.00549316,-0.00100708,-0.00738525,-0.0115967,-0.0126038,-0.00692749,0.0148926,0.0639038,0.136719,0.225525,0.313843,0.381958,0.430817,0.465118,0.477661,0.452362,0.381348,0.279266,0.179932,0.101868,0.0435486,-0.0103455,-0.0663757,-0.110138,-0.131012,-0.134766,-0.143372,-0.1745,-0.217926,-0.245636,-0.244629,-0.216034,-0.169678,-0.116058,-0.0532227,0.0115967,0.069397,0.109344,0.123962,0.105988,0.0509338,-0.0324097,-0.130005,-0.223633,-0.293579,-0.339661,-0.360962,-0.357788,-0.323914,-0.263367,-0.183838,-0.104218,-0.0359802,0.0160522,0.0524292,0.0716248,0.073761,0.0605469,0.0409546,0.0211487,0.00570679,-0.00531006,-0.0132751,-0.019989,-0.0255127,-0.0271912,-0.0310669,-0.0357666,-0.0362549,-0.0271301,0.000213623,0.0487976,0.119324,0.203827,0.292816,0.367523,0.421967,0.457611,0.472168,0.456665,0.398407,0.310089,0.213348,0.13208,0.0759888,0.0274658,-0.0292053,-0.0865173,-0.122742,-0.134705,-0.142487,-0.170868,-0.21759,-0.254974,-0.261078,-0.234558,-0.187927,-0.13443,-0.070343,-0.00201416,0.0634155,0.115234,0.140594,0.131561,0.085968,0.0127563,-0.0740967,-0.16626,-0.245514,-0.309937,-0.353516,-0.371887,-0.354706,-0.305176,-0.235046,-0.15744,-0.0869751,-0.0221558,0.0337524,0.0727539,0.0891418,0.0877075,0.0734863,0.0520935,0.0287781,0.0071106,-0.00973511,-0.0216675,-0.0314026,-0.0377197,-0.0420837,-0.0485229,-0.0509338,-0.0467224,-0.0314636,0.00100708,0.0571289,0.137604,0.229004,0.316467,0.383759,0.437073,0.478149,0.492981,0.460358,0.377869,0.274231,0.175507,0.0997314,0.036377,-0.0297241,-0.0923462,-0.131897,-0.139862,-0.14035,-0.155457,-0.189728,-0.223511,-0.234985,-0.220551,-0.188873,-0.146118,-0.0900574,-0.0250244,0.0414124,0.0982666,0.136841,0.145782,0.121155,0.0624084,-0.0224304,-0.121399,-0.215973,-0.292145,-0.345123,-0.371765,-0.367249,-0.332977,-0.272766,-0.195251,-0.110931,-0.0360413,0.0240173,0.0657043,0.0861206,0.0934143,0.0846252,0.0636902,0.0343018,0.00650024,-0.0108643,-0.0219421,-0.0311279,-0.0397949,-0.0461731,-0.0504761,-0.0539551,-0.053833,-0.0474548,-0.028717,0.0110168,0.0745544,0.154114,0.2435,0.326385,0.393097,0.444122,0.474182,0.472443,0.425323,0.343567,0.246307,0.159454,0.0883789,0.0210876,-0.0491943,-0.106049,-0.137329,-0.148132,-0.159546,-0.186523,-0.221832,-0.246918,-0.243774,-0.215118,-0.17041,-0.113159,-0.0481873,0.0249634,0.0947571,0.145905,0.171417,0.1651,0.124084,0.0508728,-0.0440979,-0.148865,-0.246246,-0.323303,-0.375458,-0.396179,-0.379822,-0.331421,-0.25766,-0.170471,-0.0821533,-0.00262451,0.0612183,0.107239,0.126038,0.121155,0.0969849,0.0633545,0.0264587,-0.00933838,-0.0361023,-0.0546265,-0.0645752,-0.0654907,-0.0629578,-0.0594788,-0.0569763,-0.052887,-0.0436401,-0.020752,0.0225525,0.0873108,0.169739,0.260406,0.345123,0.414581,0.467682,0.494904,0.478607,0.415314,0.317139,0.212158,0.118988,0.038269,-0.0353088,-0.101471,-0.147919,-0.166656,-0.168335,-0.172638,-0.19397,-0.219879,-0.233368,-0.221222,-0.188141,-0.145172,-0.0918884,-0.0245667,0.0521545,0.12027,0.169128,0.190063,0.179596,0.133423,0.0582581,-0.0462341,-0.160065,-0.263702,-0.341614,-0.387878,-0.401428,-0.383423,-0.333984,-0.255035,-0.156647,-0.0588074,0.0256958,0.0901489,0.130402,0.147186,0.139404,0.113434,0.0687866,0.0191956,-0.0235596,-0.0525513,-0.0691833,-0.0782471,-0.0797424,-0.0736389,-0.0632935,-0.0569153,-0.0532227,-0.0455627,-0.0244446,0.016571,0.081604,0.164642,0.258789,0.345856,0.41745,0.467468,0.493561,0.477722,0.417542,0.321075,0.212341,0.109131,0.020874,-0.052887,-0.118652,-0.16745,-0.193634,-0.199463,-0.200958,-0.211273,-0.22821,-0.236847,-0.219269,-0.17807,-0.12442,-0.0589905,0.0111389,0.0826721,0.144623,0.189941,0.209015,0.191742,0.138733,0.0562439,-0.0461121,-0.156647,-0.261353,-0.343964,-0.392303,-0.402832,-0.383087,-0.33432,-0.256439,-0.155121,-0.0509338,0.0393372,0.106659,0.14798,0.164703,0.158386,0.125702,0.0740967,0.0149536,-0.0355835,-0.0678406,-0.0875854,-0.0996704,-0.101135,-0.0898743,-0.0718689,-0.0567932,-0.0504761,-0.0467224,-0.029541,0.00744629,0.0716248,0.153015,0.240204,0.325928,0.40155,0.461639,0.494324,0.483185,0.422577,0.328064,0.22049,0.118591,0.0270386,-0.0536194,-0.125702,-0.179138,-0.20517,-0.208527,-0.209259,-0.221832,-0.240143,-0.246643,-0.225037,-0.180603,-0.12323,-0.0606689,0.0120239,0.0880432,0.160736,0.212616,0.23175,0.21344,0.163971,0.0873718,-0.012146,-0.127441,-0.240356,-0.330414,-0.388794,-0.410339,-0.395844,-0.348663,-0.270355,-0.172363,-0.0687256,0.0285339,0.108521,0.161621,0.183289,0.175903,0.143768,0.0908813,0.0281982,-0.0275879,-0.0734863,-0.10556,-0.120148,-0.117981,-0.102539,-0.0810242,-0.0676575,-0.0585327,-0.0536804,-0.0409546,-0.0123596,0.0409546,0.11618,0.20752,0.297516,0.379486,0.445801,0.487396,0.490692,0.44928,0.364441,0.253754,0.142822,0.0427551,-0.0443726,-0.121826,-0.182434,-0.215179,-0.222961,-0.216705,-0.218536,-0.231079,-0.239685,-0.226654,-0.187866,-0.13443,-0.0716248,-0.00296021,0.0743103,0.15033,0.211487,0.243286,0.236664,0.197601,0.13324,0.0453186,-0.0654297,-0.184784,-0.29068,-0.368347,-0.403442,-0.402832,-0.369019,-0.305389,-0.217865,-0.115967,-0.0108032,0.0818176,0.147858,0.179474,0.183105,0.158722,0.115234,0.0551147,-0.00738525,-0.0610046,-0.098877,-0.118195,-0.121735,-0.113892,-0.0992737,-0.0856323,-0.0748901,-0.0700073,-0.0639038,-0.0470581,-0.00592041,0.0647583,0.156311,0.255981,0.351074,0.430359,0.485107,0.509552,0.490875,0.420135,0.309875,0.183563,0.065155,-0.036438,-0.119934,-0.187805,-0.229797,-0.240417,-0.230347,-0.219879,-0.220154,-0.221222,-0.212677,-0.184631,-0.143097,-0.091217,-0.0249023,0.0528259,0.130219,0.197266,0.238525,0.248932,0.230286,0.184906,0.110413,0.011261,-0.102081,-0.216583,-0.310608,-0.37323,-0.399261,-0.387543,-0.343506,-0.275299,-0.186188,-0.0835571,0.0160522,0.0971985,0.149597,0.171356,0.166504,0.138062,0.0910034,0.0316772,-0.0281067,-0.0758362,-0.108734,-0.121216,-0.120483,-0.111877,-0.0975952,-0.0845032,-0.0777283,-0.0812073,-0.0788574,-0.0593872,-0.0117493,0.0667114,0.165985,0.270355,0.366394,0.446533,0.504517,0.52652,0.494659,0.4021,0.272614,0.137604,0.0201416,-0.0791321,-0.164093,-0.226654,-0.258392,-0.253235,-0.227661,-0.208801,-0.206512,-0.208008,-0.194641,-0.157379,-0.109589,-0.0580444,0.00759888,0.0906067,0.176514,0.240814,0.275452,0.279602,0.255249,0.200195,0.113831,0.00491333,-0.108673,-0.216187,-0.306976,-0.369934,-0.397522,-0.384521,-0.33786,-0.266724,-0.184967,-0.0949097,-0.00106812,0.0841675,0.13858,0.154572,0.145111,0.121887,0.0854492,0.0302734,-0.032074,-0.0814819,-0.110352,-0.121735,-0.123749,-0.118195,-0.109467,-0.099884,-0.0906677,-0.0856934,-0.0844421,-0.0730896,-0.0361023,0.0390015,0.137329,0.242493,0.339203,0.425049,0.49115,0.515442,0.487518,0.404724,0.284576,0.150146,0.0308838,-0.0714111,-0.155457,-0.215515,-0.243622,-0.239136,-0.220276,-0.207733,-0.205322,-0.19812,-0.178192,-0.15329,-0.115234,-0.0585327,0.0178528,0.104034,0.187378,0.254425,0.298676,0.313171,0.290619,0.231812,0.145508,0.0443726,-0.0632935,-0.167938,-0.263977,-0.343781,-0.390564,-0.392029,-0.355591,-0.298737,-0.230133,-0.145447,-0.0487976,0.0369873,0.0975952,0.126587,0.13678,0.129944,0.101685,0.0515442,-0.0114136,-0.0684509,-0.110687,-0.133972,-0.14093,-0.13974,-0.132812,-0.11853,-0.101074,-0.0909424,-0.0899963,-0.0888062,-0.0636292,-0.00195312,0.0860291,0.186371,0.285767,0.371704,0.44162,0.481293,0.476807,0.419464,0.319733,0.193237,0.070282,-0.0298767,-0.110352,-0.167053,-0.198334,-0.206238,-0.200623,-0.191345,-0.185455,-0.180756,-0.172821,-0.156769,-0.127716,-0.0761108,-0.00268555,0.0808716,0.166046,0.244446,0.302216,0.329742,0.322906,0.28067,0.212494,0.123566,0.0255737,-0.0709534,-0.166168,-0.253967,-0.32785,-0.371948,-0.3815,-0.361816,-0.318146,-0.251831,-0.165497,-0.0722961,0.0114746,0.0754395,0.11792,0.137115,0.131134,0.0986633,0.0437012,-0.025116,-0.0895386,-0.136658,-0.160278,-0.16449,-0.156647,-0.140472,-0.115234,-0.0930176,-0.0849609,-0.0885925,-0.0886536,-0.0681763,-0.0229492,0.0512695,0.141418,0.239685,0.330017,0.406067,0.45224,0.460754,0.421234,0.335114,0.220673,0.101349,-0.00296021,-0.0881348,-0.145569,-0.179749,-0.195099,-0.197174,-0.192566,-0.186188,-0.179413,-0.163361,-0.139191,-0.0956421,-0.037384,0.0344849,0.117859,0.204987,0.281097,0.332428,0.354919,0.346863,0.308655,0.241486,0.152222,0.0532837,-0.0452271,-0.140472,-0.233429,-0.315369,-0.376587,-0.406189,-0.395233,-0.351074,-0.284424,-0.20517,-0.117065,-0.029541,0.0477905,0.101959,0.126251,0.120544,0.0894775,0.0370483,-0.0300598,-0.0959167,-0.143707,-0.16626,-0.170074,-0.15799,-0.138733,-0.112152,-0.0880432,-0.0777283,-0.0886536,-0.108917,-0.120056,-0.10611,-0.0566406,0.025238,0.123413,0.225586,0.321411,0.40451,0.459351,0.470428,0.424042,0.328949,0.214783,0.108124,0.0144958,-0.0639648,-0.126984,-0.175964,-0.200684,-0.202362,-0.196777,-0.187714,-0.169861,-0.143494,-0.104156,-0.0505371,0.0183105,0.105103,0.200958,0.289398,0.353638,0.393158,0.405518,0.385864,0.331207,0.246643,0.139679,0.0296021,-0.0740356,-0.174622,-0.273895,-0.363647,-0.426941,-0.448273,-0.425598,-0.370361,-0.291962,-0.201202,-0.107513,-0.0250244,0.0393372,0.0836182,0.103424,0.0976562,0.0628967,0.00805664,-0.0557861,-0.109741,-0.141541,-0.152557,-0.148651,-0.136932,-0.121735,-0.107178,-0.0994568,-0.114838,-0.149414,-0.187592,-0.20993,-0.199188,-0.143768,-0.0473022,0.0751648,0.20752,0.32666,0.424774,0.491211,0.513367,0.481689,0.396454,0.280273,0.159546,0.0563049,-0.0249023,-0.089325,-0.143372,-0.18222,-0.201691,-0.205505,-0.197113,-0.177734,-0.1492,-0.107117,-0.049469,0.0300598,0.132568,0.246796,0.35257,0.427521,0.467072,0.472168,0.440277,0.37619,0.278748,0.158539,0.0355835,-0.0770569,-0.177124,-0.266663,-0.350677,-0.419006,-0.457336,-0.458191,-0.425842,-0.367737,-0.293488,-0.208405,-0.12149,-0.0438843,0.0247803,0.0768433,0.110016,0.115295,0.0867004,0.0332947,-0.0334167,-0.0914917,-0.134644,-0.162689,-0.179321,-0.186646,-0.186188,-0.183624,-0.188599,-0.209198,-0.237854,-0.260956,-0.260956,-0.228058,-0.15155,-0.0353699,0.106232,0.257324,0.397858,0.511963,0.583252,0.601349,0.557465,0.45639,0.32016,0.180878,0.0569153,-0.0465088,-0.130066,-0.19577,-0.23175,-0.240753,-0.228546,-0.200195,-0.158386,-0.107452,-0.0454407,0.0319519,0.127441,0.233215,0.341278,0.435181,0.500366,0.525574,0.509277,0.454773,0.369537,0.256378,0.125092,-0.00256348,-0.110931,-0.203827,-0.289337,-0.372223,-0.448212,-0.500946,-0.518402,-0.495178,-0.440155,-0.362823,-0.276184,-0.176056,-0.0661011,0.0381775,0.12442,0.17981,0.192505,0.156189,0.0787964,-0.0200806,-0.112152,-0.18222,-0.235229,-0.268341,-0.280426,-0.274506,-0.259613,-0.249878,-0.259216,-0.282501,-0.306244,-0.308929,-0.272705,-0.188721,-0.0605469,0.101959,0.284363,0.45639,0.593994,0.680817,0.707001,0.660217,0.540558,0.374634,0.202423,0.0578613,-0.0546265,-0.137726,-0.198395,-0.228882,-0.227264,-0.202423,-0.163147,-0.124573,-0.0829468,-0.0336304,0.0354919,0.125916,0.235321,0.352905,0.46344,0.541962,0.570435,0.554993,0.501434,0.414368,0.295654,0.15094,0.00543213,-0.115387,-0.208405,-0.279877,-0.345642,-0.413422,-0.479828,-0.526855,-0.53894,-0.511078,-0.454041,-0.37738,-0.286591,-0.177124,-0.0542297,0.0626221,0.159454,0.212158,0.20813,0.150543,0.0565796,-0.056366,-0.166595,-0.258881,-0.330017,-0.371216,-0.383026,-0.369354,-0.33725,-0.303101,-0.282562,-0.283356,-0.283783,-0.262238,-0.205719,-0.110687,0.0181274,0.171753,0.337585,0.494995,0.619202,0.696533,0.713165,0.661102,0.550568,0.398682,0.240814,0.103485,-0.0134888,-0.107513,-0.18222,-0.229004,-0.238678,-0.214844,-0.171143,-0.12088,-0.0632324,0.00564575,0.0906677,0.195923,0.313904,0.428192,0.52243,0.581635,0.591309,0.562378,0.496674,0.39679,0.268066,0.12088,-0.0231018,-0.141876,-0.228943,-0.293579,-0.34613,-0.395172,-0.446991,-0.498688,-0.530212,-0.534393,-0.504578,-0.444519,-0.360291,-0.254517,-0.129669,6.10352e-05,0.110931,0.187866,0.208588,0.166931,0.0758362,-0.0425415,-0.174225,-0.296936,-0.3909,-0.443024,-0.446045,-0.411224,-0.351959,-0.285095,-0.226868,-0.197723,-0.202087,-0.217712,-0.214233,-0.179077,-0.101196,0.0162964,0.169067,0.347198,0.526062,0.67746,0.770569,0.785736,0.721375,0.594666,0.425934,0.241425,0.0696716,-0.0716248,-0.171295,-0.23175,-0.254242,-0.235168,-0.17981,-0.107788,-0.0377808,0.0283813,0.0993958,0.181274,0.278473,0.379669,0.472961,0.544189,0.586121,0.586273,0.545593,0.460022,0.333832,0.185028,0.0316772,-0.109131,-0.216187,-0.284363,-0.316925,-0.332306,-0.341675,-0.36087,-0.393707,-0.437744,-0.480408,-0.50647,-0.498688,-0.451691,-0.366241,-0.256653,-0.135773,-0.0162964,0.0818176,0.143951,0.157715,0.111603,0.0180664,-0.100677,-0.227661,-0.339081,-0.413177,-0.445129,-0.437256,-0.395447,-0.333832,-0.268799,-0.215027,-0.188049,-0.18396,-0.182831,-0.163818,-0.111755,-0.025116,0.0961914,0.243286,0.405853,0.564911,0.69162,0.757751,0.748199,0.667084,0.535248,0.376068,0.206787,0.0552368,-0.0653076,-0.145905,-0.189819,-0.19281,-0.157867,-0.0973816,-0.026123,0.0435486,0.110535,0.178802,0.250397,0.325714,0.398346,0.457794,0.495667,0.506866,0.486206,0.433502,0.346466,0.231689,0.11142,-0.00924683,-0.112946,-0.19101,-0.239868,-0.26593,-0.278931,-0.286316,-0.296387,-0.320831,-0.364502,-0.429138,-0.488953,-0.524109,-0.51712,-0.464783,-0.373779,-0.262482,-0.145844,-0.0297241,0.0671692,0.126709,0.134033,0.0835571,-0.0113525,-0.13382,-0.262085,-0.373169,-0.440674,-0.459137,-0.435303,-0.377991,-0.301422,-0.220337,-0.149658,-0.106049,-0.0973206,-0.103302,-0.100952,-0.0759888,-0.0175171,0.0743713,0.191956,0.335449,0.489288,0.625,0.714447,0.734863,0.688873,0.588196,0.451752,0.295105,0.143097,0.0137634,-0.0755005,-0.129547,-0.149994,-0.134369,-0.0862427,-0.0162354,0.0552979,0.116638,0.17276,0.229614,0.293304,0.352692,0.397003,0.423309,0.433167,0.421967,0.38324,0.310669,0.215515,0.109589,0.00759888,-0.0863647,-0.158783,-0.202484,-0.218872,-0.217865,-0.214905,-0.219543,-0.238403,-0.274963,-0.338593,-0.428955,-0.526245,-0.595123,-0.606659,-0.556519,-0.454498,-0.325378,-0.18277,-0.032074,0.0970459,0.18277,0.202484,0.152161,0.0391235,-0.106995,-0.259399,-0.389557,-0.468079,-0.487061,-0.451477,-0.378387,-0.283966,-0.188812,-0.112213,-0.0718079,-0.0810852,-0.118256,-0.148743,-0.142822,-0.0841064,0.0282593,0.176514,0.353973,0.541687,0.706329,0.815948,0.840363,0.776062,0.640167,0.469208,0.28418,0.109344,-0.0290527,-0.117188,-0.156311,-0.155304,-0.123413,-0.0711975,-0.00564575,0.0533447,0.0953674,0.128784,0.169739,0.226776,0.296173,0.364105,0.421417,0.458191,0.470154,0.449219,0.383514,0.279541,0.155243,0.0281982,-0.0861206,-0.176117,-0.230286,-0.24765,-0.233704,-0.210876,-0.197937,-0.203766,-0.2341,-0.286377,-0.367249,-0.469818,-0.571503,-0.635925,-0.632965,-0.557739,-0.42392,-0.258545,-0.0848389,0.081543,0.210022,0.273376,0.259064,0.164581,0.00939941,-0.176178,-0.356537,-0.501953,-0.580566,-0.584503,-0.521912,-0.42041,-0.299622,-0.182098,-0.0851135,-0.0230103,-0.00924683,-0.0318909,-0.0586548,-0.0575256,-0.0106812,0.0863037,0.218994,0.375305,0.536926,0.675781,0.762115,0.770844,0.699341,0.561279,0.389008,0.209473,0.0462952,-0.0798645,-0.1492,-0.166504,-0.142944,-0.0944214,-0.0305481,0.0424805,0.116302,0.175293,0.215698,0.250671,0.292297,0.344696,0.394318,0.428802,0.440338,0.42511,0.380066,0.301025,0.191956,0.0733032,-0.036438,-0.127594,-0.193237,-0.23175,-0.238525,-0.212952,-0.172546,-0.137054,-0.123688,-0.133148,-0.164703,-0.213684,-0.281555,-0.366241,-0.454834,-0.516998,-0.536407,-0.499359,-0.411011,-0.281158,-0.138519,-0.00750732,0.0901489,0.136658,0.127777,0.0617371,-0.0546265,-0.20639,-0.359619,-0.482758,-0.553925,-0.553497,-0.491425,-0.388672,-0.265442,-0.136993,-0.0226135,0.0635071,0.106903,0.102692,0.0686035,0.0297852,0.0132751,0.0355835,0.100677,0.196381,0.306305,0.411957,0.500549,0.553925,0.555786,0.502167,0.403229,0.281494,0.164032,0.0718079,0.0143738,-0.00967407,-0.0137024,-0.003479,0.0195312,0.0549011,0.0975342,0.139465,0.177185,0.209747,0.245178,0.28833,0.335724,0.372772,0.383698,0.36499,0.315704,0.241272,0.152344,0.0562439,-0.0282593,-0.0926819,-0.134827,-0.15033,-0.140137,-0.108002,-0.0653687,-0.0300598,-0.0110779,-0.0177917,-0.0450439,-0.0895996,-0.147308,-0.214569,-0.287323,-0.358063,-0.421417,-0.466064,-0.480072,-0.454041,-0.381622,-0.275238,-0.1633,-0.0704651,-0.00469971,0.0256348,0.0200806,-0.0266418,-0.112946,-0.22821,-0.343445,-0.429291,-0.467255,-0.452637,-0.387054,-0.287048,-0.169342,-0.0534973,0.0465088,0.115723,0.14328,0.127991,0.0748291,0.00558472,-0.0449829,-0.0501404,-0.00793457,0.065094,0.150818,0.238129,0.32074,0.391632,0.432892,0.424103,0.362976,0.270142,0.177307,0.110809,0.0683289,0.0400085,0.0226135,0.0190735,0.0354309,0.069458,0.114716,0.172821,0.2276,0.271545,0.305634,0.334045,0.358398,0.365845,0.340668,0.280548,0.19458,0.106659,0.0346375,-0.0181274,-0.0534363,-0.0733643,-0.0729675,-0.0487366,-0.00732422,0.0360413,0.0724792,0.0958557,0.101807,0.0885315,0.0585327,0.0224304,-0.0206604,-0.0707397,-0.128784,-0.189728,-0.246185,-0.296387,-0.348877,-0.399017,-0.43866,-0.451141,-0.421906,-0.355713,-0.272552,-0.197723,-0.133972,-0.0839539,-0.0512085,-0.0466309,-0.0794067,-0.1427,-0.214447,-0.268585,-0.300629,-0.297607,-0.259888,-0.193298,-0.112885,-0.0366516,0.0185242,0.0367126,0.0170593,-0.040741,-0.123169,-0.204437,-0.256714,-0.257202,-0.207397,-0.119537,-0.0125427,0.10202,0.215698,0.319672,0.390747,0.412842,0.381226,0.32309,0.263824,0.222015,0.197113,0.174316,0.157043,0.149323,0.152771,0.16275,0.175507,0.186035,0.190002,0.185638,0.177399,0.175446,0.181213,0.187927,0.181488,0.161011,0.13858,0.127533,0.134583,0.149933,0.161224,0.16626,0.173767,0.195831,0.2229,0.238739,0.2388,0.223694,0.200684,0.167328,0.126099,0.0767822,0.0190735,-0.0470581,-0.118317,-0.188141,-0.244049,-0.28598,-0.31839,-0.354034,-0.394989,-0.428864,-0.434387,-0.402771,-0.338013,-0.26181,-0.189056,-0.117523,-0.0505371,-0.0032959,0.00390625,-0.0350952,-0.113281,-0.219727,-0.326599,-0.419006,-0.476471,-0.486176,-0.446472,-0.374725,-0.290131,-0.207458,-0.142883,-0.107788,-0.110809,-0.151825,-0.213623,-0.264435,-0.277252,-0.239014,-0.155975,-0.0415344,0.0860291,0.210541,0.316864,0.389343,0.415314,0.396576,0.342773,0.270142,0.198273,0.143707,0.115723,0.107056,0.106903,0.104431,0.108795,0.123749,0.151154,0.184784,0.215637,0.243622,0.272888,0.31311,0.359192,0.394989,0.410675,0.404724,0.384918,0.360352,0.332977,0.307526,0.288666,0.273834,0.260559,0.246399,0.233765,0.218811,0.19873,0.168182,0.129272,0.0834961,0.0434265,0.0147705,-0.00924683,-0.0308838,-0.0548401,-0.0755615,-0.0918884,-0.110138,-0.137115,-0.180664,-0.245117,-0.32431,-0.403229,-0.466522,-0.493225,-0.482178,-0.439423,-0.379547,-0.3125,-0.249939,-0.201202,-0.181671,-0.203888,-0.268585,-0.361877,-0.456726,-0.526733,-0.561768,-0.550415,-0.495667,-0.403381,-0.299194,-0.200348,-0.127319,-0.0920105,-0.0971069,-0.137787,-0.196777,-0.251953,-0.276306,-0.258545,-0.201538,-0.114166,-0.0163879,0.0765076,0.153778,0.211212,0.243958,0.253632,0.247131,0.240143,0.242279,0.262482,0.297729,0.3396,0.369019,0.377808,0.368683,0.351837,0.338013,0.334106,0.338745,0.353424,0.380676,0.419067,0.461823,0.491699,0.493164,0.460693,0.405853,0.343506,0.287781,0.246185,0.222626,0.215179,0.219543,0.230408,0.245239,0.255707,0.256439,0.241486,0.212006,0.175507,0.140411,0.11438,0.0932312,0.0712891,0.0430908,0.00564575,-0.0378418,-0.0888062,-0.147858,-0.216187,-0.294373,-0.378601,-0.469543,-0.553986,-0.61853,-0.651489,-0.650238,-0.621033,-0.564728,-0.49707,-0.421478,-0.350952,-0.299347,-0.282898,-0.299469,-0.33725,-0.389679,-0.43457,-0.462036,-0.465576,-0.436462,-0.379608,-0.308197,-0.243958,-0.193573,-0.167786,-0.171356,-0.200806,-0.249268,-0.297455,-0.324982,-0.315521,-0.267914,-0.188873,-0.0925598,0.0112,0.111084,0.194244,0.255432,0.295837,0.324768,0.357605,0.39679,0.438995,0.484192,0.524994,0.554596,0.558136,0.532166,0.477875,0.413971,0.358398,0.320618,0.302307,0.301483,0.321411,0.356201,0.397339,0.423828,0.426941,0.40564,0.371948,0.337128,0.309143,0.2966,0.304291,0.327057,0.354034,0.374298,0.381073,0.372894,0.341156,0.286438,0.212555,0.127594,0.0505981,-0.0134888,-0.0675049,-0.114899,-0.158325,-0.195923,-0.223694,-0.246063,-0.27182,-0.300415,-0.329071,-0.35553,-0.379547,-0.411102,-0.450287,-0.492981,-0.531281,-0.555328,-0.55719,-0.535797,-0.493042,-0.438324,-0.379944,-0.334656,-0.31134,-0.309662,-0.333038,-0.376068,-0.433624,-0.485321,-0.514923,-0.512024,-0.471832,-0.406799,-0.327393,-0.246735,-0.169739,-0.112488,-0.0838928,-0.0836182,-0.105225,-0.130127,-0.14679,-0.137909,-0.10321,-0.0434875,0.0360413,0.118805,0.195923,0.256256,0.29425,0.310669,0.307861,0.299072,0.299194,0.313629,0.346527,0.388214,0.430878,0.463776,0.486511,0.494568,0.489532,0.472626,0.448669,0.427612,0.41571,0.413177,0.418121,0.420898,0.41391,0.392487,0.357605,0.312775,0.267395,0.230865,0.206238,0.195038,0.196594,0.206329,0.221405,0.228333,0.223694,0.206451,0.179199,0.140198,0.0975952,0.0549011,0.0161133,-0.0192566,-0.0536194,-0.085968,-0.11908,-0.151428,-0.180878,-0.210419,-0.236572,-0.264252,-0.289886,-0.320496,-0.356598,-0.399414,-0.445465,-0.490143,-0.519745,-0.53363,-0.528534,-0.504578,-0.461823,-0.403778,-0.337799,-0.276123,-0.232208,-0.211426,-0.208801,-0.226593,-0.258606,-0.300079,-0.333038,-0.354095,-0.358673,-0.346985,-0.323425,-0.29068,-0.255646,-0.217987,-0.185455,-0.15744,-0.13269,-0.108856,-0.0814819,-0.0509338,-0.0110779,0.0331421,0.0773315,0.118805,0.154572,0.181335,0.196594,0.202362,0.20517,0.205841,0.207916,0.217529,0.236053,0.263916,0.2966,0.328949,0.352417,0.363159,0.365906,0.362213,0.357391,0.354523,0.358185,0.36499,0.375458,0.38855,0.400543,0.400543,0.385986,0.356934,0.319153,0.281006,0.242371,0.208344,0.175781,0.146393,0.121063,0.0990601,0.0793457,0.0603333,0.0391846,0.0187378,0.00308228,-0.00698853,-0.00558472,0.000274658,0.00442505,0.00933838,0.0115356,0.0100708,0.00958252,-0.00296021,-0.0293274,-0.0525513,-0.0687256,-0.0905457,-0.139191,-0.204559,-0.261292,-0.30304,-0.331818,-0.36203,-0.387939,-0.411346,-0.41156,-0.378815,-0.345703,-0.323975,-0.303497,-0.270416,-0.229614,-0.195312,-0.167175,-0.1474,-0.134033,-0.125854,-0.124969,-0.136108,-0.154114,-0.172424,-0.194305,-0.213287,-0.22879,-0.241089,-0.245117,-0.243286,-0.231476,-0.212006,-0.190887,-0.160553,-0.119598,-0.0716248,-0.020813,0.0323486,0.0814819,0.126709,0.162292,0.187256,0.197662,0.194824,0.181885,0.165497,0.151215,0.141754,0.139801,0.143707,0.15033,0.156769,0.165924,0.175903,0.185852,0.19693,0.209015,0.22403,0.240143,0.255096,0.272949,0.29129,0.307648,0.314117,0.31076,0.293091,0.269135,0.234314,0.193085,0.145905,0.0993958,0.0569153,0.0222778,-0.0038147,-0.0209961,-0.0342407,-0.0371704,-0.0333557,-0.0256958,-0.0175781,-0.0161743,-0.00906372,-0.00189209,-0.00247192,-0.00106812,0.0103455,0.0289917,0.0450439,0.0485229,0.0404053,0.0250244,0.0085144,-0.0160522,-0.0512085,-0.0936279,-0.13147,-0.15979,-0.181427,-0.197998,-0.211945,-0.216858,-0.211884,-0.203552,-0.193756,-0.183105,-0.168182,-0.146118,-0.119995,-0.0933533,-0.0677185,-0.0458984,-0.0298767,-0.0216675,-0.026123,-0.0404053,-0.0639648,-0.086853,-0.107239,-0.123962,-0.134491,-0.138672,-0.130127,-0.114838,-0.0967102,-0.078064,-0.0622253,-0.0456543,-0.0334778,-0.0220947,-0.0116882,0.00268555,0.0191345,0.0375977,0.0542297,0.0683289,0.0813599,0.089325,0.0918274,0.0895386,0.08255,0.0730286,0.0645752,0.0565186,0.0476379,0.0414124,0.033905,0.0273132,0.0187988,0.0118713,0.00665283,0.0065918,0.0105896,0.0212708,0.0361023,0.0555115,0.0758972,0.0935059,0.10376,0.102966,0.0916748,0.0714722,0.0458374,0.0151672,-0.0147705,-0.040802,-0.0578003,-0.0648193,-0.061676,-0.0527649,-0.040863,-0.0296021,-0.0195312,-0.0126953,-0.00671387,-0.00402832,-0.00424194,-0.00195312,0.00280762,0.0104675,0.0194702,0.0307312,0.041748,0.0508728,0.0549011,0.053772,0.0484619,0.0383911,0.025177,0.0100098,-0.00457764,-0.0161133,-0.0225525,-0.0234985,-0.020813,-0.0150452,-0.00592041,0.00509644,0.0138245,0.0225525,0.0314026,0.0406189,0.0520935,0.0643005,0.077179,0.0908813,0.104706,0.114288,0.116241,0.110352,0.098114,0.0808716,0.0595398,0.0352478,0.0108643,-0.00946045,-0.0267944,-0.0379333,-0.0433044,-0.0436401,-0.0387878,-0.0303345,-0.0198669,-0.00469971,0.00558472,0.0110168,0.0112,0.00683594,-0.00106812,-0.0147705,-0.0274658,-0.0391235,-0.0483093,-0.0569153,-0.0640259,-0.0716248,-0.0769043,-0.0835571,-0.0906067,-0.0976562,-0.105225,-0.112488,-0.116638,-0.120331,-0.121552,-0.121277,-0.119141,-0.115051,-0.110474,-0.107574,-0.104156,-0.101532,-0.0993958,-0.0979309,-0.0957642,-0.0926208,-0.0896606,-0.0849609,-0.0811462,-0.0763855,-0.0713501,-0.0640259,-0.0563049,-0.0479736,-0.0393372,-0.0304565,-0.0205383,-0.0102539,0.000335693,0.0109253,0.020813,0.0310059,0.0423584,0.0534363,0.0644836,0.0759888,0.0872498,0.0948486,0.0977173,0.0974426,0.0953064,0.0933533,0.089325,0.0877991,0.0898132,0.0963745,0.108337,0.12442,0.141418,0.15625,0.166595,0.169067,0.166321,0.159668,0.150269,0.144897,0.141418,0.137787,0.13324,0.134918,0.139526,0.141693,0.135986,0.125305,0.109802,0.0896606,0.0681763,0.0467834,0.0281982,0.0125427,0.00497437,0.00582886,0.00952148,0.0105286,0.00845337,0.00457764,-0.00390625,-0.0162354,-0.0297852,-0.041687,-0.0534973,-0.0652466,-0.0742188,-0.0835571,-0.0922241,-0.103546,-0.116913,-0.130676,-0.144775,-0.151611,-0.153839,-0.148987,-0.144104,-0.138672,-0.13678,-0.137573,-0.139679,-0.143372,-0.146393,-0.147125,-0.14563,-0.144714,-0.14328,-0.1427,-0.141541,-0.141144,-0.142487,-0.144501,-0.143768,-0.138794,-0.127441,-0.109009,-0.0862427,-0.0592041,-0.0311279,-0.00650024,0.0139465,0.0238953,0.0256958,0.0201416,0.0119324,0.00396729,-0.0020752,-0.003479,0.000671387,0.0124207,0.0280457,0.0461731,0.065918,0.0841064,0.0985413,0.108734,0.114288,0.114227,0.112213,0.111938,0.11438,0.118591,0.126862,0.137848,0.147125,0.155365,0.159271,0.161011,0.1586,0.151764,0.14209,0.130341,0.11618,0.102142,0.0865784,0.0712891,0.058197,0.0465088,0.0375061,0.0296021,0.0238953,0.0191956,0.0175781,0.0169678,0.0189819,0.0225525,0.0273132,0.0308838,0.0312195,0.0285339,0.0218811,0.0134888,0.00302124,-0.00912476,-0.0213318,-0.0324097,-0.0419617,-0.0489807,-0.0518799,-0.0522156,-0.0490723,-0.0470581,-0.0464478,-0.0493164,-0.0542908,-0.0599365,-0.0653076,-0.068512,-0.0686646,-0.0675964,-0.0637512,-0.0591431,-0.0540161,-0.0504761,-0.0504761,-0.0541077,-0.0588684,-0.0620117,-0.061615,-0.0584717,-0.0545654,-0.0490723,-0.0440979,-0.0379944,-0.0338135,-0.0300598,-0.032135,-0.0358276,-0.0401306,-0.0420227,-0.0422974,-0.0387268,-0.032135,-0.0216064,-0.0114136,-0.00213623,0.00436401,0.0062561,0.00222778,-0.00750732,-0.0210876,-0.0337524,-0.0424805,-0.0453796,-0.040802,-0.0304565,-0.0146179,0.00430298,0.0231628,0.0379333,0.0465698,0.0479126,0.0414734,0.0299988,0.0171814,0.00476074,-0.00424194,-0.00866699,-0.00933838,-0.00543213,0.000396729,0.00515747,0.0103455,0.0102539,0.0062561,-0.00314331,-0.0138245,-0.0232849,-0.0279236,-0.0284424,-0.0232849,-0.0132751,-0.00289917,0.00811768,0.0171204,0.0246277,0.0274658,0.0258484,0.0203247,0.0140991,0.00793457,0.00415039,0.00241089,0.00515747,0.0085144,0.0128174,0.0169067,0.0212097,0.025116,0.0275879,0.0268555,0.0252991,0.0228271,0.0231018,0.0247803,0.0275269,0.0316772,0.0359802,0.0392761,0.0418701,0.0427551,0.0424194,0.0410767,0.0404663,0.0387878,0.0391846,0.0406189,0.0414734,0.0437622,0.0447693,0.045166,0.0443115,0.0428162,0.0424194,0.0405273,0.0391235,0.0384521,0.0375977,0.0367126,0.0337524,0.0299988,0.0244446,0.0179138,0.00946045,0.00112915,-0.00598145,-0.013092,-0.0192566,-0.0231018,-0.0234985,-0.0209351,-0.0148315,-0.00793457,-0.00180054,0.00549316,0.00900269,0.0088501,0.00341797,-0.0065918,-0.0212708,-0.0377197,-0.0545654,-0.0664368,-0.0755005,-0.0791321,-0.0791931,-0.0752258,-0.0714111,-0.0677185,-0.0669861,-0.0675049,-0.0696106,-0.0705261,-0.0714722,-0.0688477,-0.0648193,-0.0579224,-0.0509949,-0.0447693,-0.0404053,-0.0391235,-0.0400696,-0.04422,-0.0504761,-0.0564575,-0.0628967,-0.0646362,-0.0644836,-0.0603943,-0.0561829,-0.0516663,-0.0483093,-0.0465698,-0.04422,-0.0424194,-0.0386047,-0.0328064,-0.0240173,-0.0132141,-0.000396729,0.0119324,0.0214233,0.0285339,0.0293884,0.0282593,0.0258484,0.0244446,0.0229492,0.0240173,0.0258484,0.0297241,0.0339661,0.0391235,0.041626,0.041687,0.0377197,0.0312195,0.0263672,0.0240173,0.026123,0.0326233,0.0424805,0.0547791,0.0677185,0.0777893,0.0838928,0.0864563,0.0837708,0.0775146,0.0667725,0.0551758,0.0425415,0.0325623,0.024231,0.0198669,0.0155029,0.0169678,0.020752,0.02771,0.0339661,0.0404053,0.0450439,0.0493164,0.0526123,0.0555115,0.0560303,0.0556946,0.0534363,0.0495911,0.0465698,0.0428162,0.0397949,0.0383301,0.0347595,0.0279236,0.020813,0.0102539,0.00140381,-0.00778198,-0.0144958,-0.0200806,-0.0234985,-0.0259705,-0.0256348,-0.0212097,-0.015564,-0.00894165,-0.00531006,-0.00442505,-0.00698853,-0.00991821,-0.0131531,-0.0157166,-0.0205994,-0.0249023,-0.0306091,-0.0317383,-0.0335693,-0.0354919,-0.0386047,-0.0447693,-0.0505981,-0.0590515,-0.0658264,-0.0708008,-0.0732117,-0.0731506,-0.0724792,-0.0697937,-0.0665894,-0.0630798,-0.0586548,-0.0565796,-0.0559082,-0.0562439,-0.0567017,-0.0549622,-0.052948,-0.0491333,-0.0453186,-0.041687,-0.0381775,-0.0354919,-0.0327454,-0.0316162,-0.0307312,-0.0312805,-0.0314636,-0.0309448,-0.0303345,-0.028595,-0.0278625,-0.0279236,-0.0283203,-0.0296021,-0.0292664,-0.0279236,-0.0267029,-0.0223389,-0.0183105,-0.0104065,-0.00234985,0.00497437,0.0112,0.0154419,0.0167236,0.0171814,0.0173035,0.0177917,0.0189209,0.0209961,0.0226746,0.0265808,0.0293274,0.0317383,0.0354309,0.0388489,0.0419617,0.0444946,0.0452271,0.0459595,0.0457153,0.0434265,0.0399475,0.0347595,0.0301208,0.0265808,0.0240173,0.0255127,0.0287781,0.0356445,0.0448303,0.0551758,0.0649719,0.0737,0.0795288,0.0812683,0.0798645,0.0743103,0.0669861,0.0593262,0.0516663,0.0435486,0.0365906,0.0306702,0.0269165,0.0254517,0.0280457,0.032135,0.036438,0.0401306,0.0406189,0.0411377,0.0386047,0.0343628,0.0275879,0.019989,0.0106812,0.003479,-0.0015564,-0.00262451,-0.00106812,0.000732422,0.00323486,0.00430298,0.00396729,0.000274658,-0.0067749,-0.0171814,-0.0303345,-0.0428162,-0.0523376,-0.057251,-0.0578613,-0.0542908,-0.0491943,-0.0430298,-0.0368347,-0.032074,-0.0278625,-0.026123,-0.0272522,-0.0325623,-0.0370483,-0.0430908,-0.0475769,-0.0515442,-0.0542297,-0.0557861,-0.0565186,-0.0555725,-0.0552979,-0.0557861,-0.0575256,-0.0596619,-0.0645752,-0.0698547,-0.0757141,-0.07724,-0.0758972,-0.0704041,-0.0622253,-0.0512695,-0.0386047,-0.0240173,-0.0118103,-0.00140381,0.00390625,0.0050354,0.00256348,-0.00228882,-0.0101318,-0.0161133,-0.0220947,-0.0222778,-0.0200806,-0.0159607,-0.0104675,-0.00430298,0.000946045,0.00576782,0.00860596,0.00866699,0.00912476,0.00839233,0.00924683,0.0104675,0.0125427,0.01651,0.0210876,0.0237732,0.0283813,0.0313416,0.0346985,0.0371094,0.0391235,0.0401917,0.0390015,0.0369263,0.0337524,0.0305481,0.0265808,0.0232239,0.0193176,0.0173035,0.0153809,0.015564,0.0163879,0.0177917,0.0189209,0.0187378,0.0185242,0.0181885,0.0177917,0.0172424,0.0163879,0.0181885,0.0195312,0.0218811,0.0232239,0.0234375,0.020813,0.0182495,0.0138245,0.0104065,0.00726318,0.00604248,0.00750732,0.011261,0.0185852,0.0256958,0.0344238,0.0381165,0.0383911,0.0351562,0.0288696,0.0213318,0.012085,0.00323486,-0.00424194,-0.00732422,-0.00570679,0.000671387,0.0100098,0.0187988,0.0270386,0.0315552,0.0319519,0.0283813,0.0218201,0.0141602,0.00482178,-0.00189209,-0.0067749,-0.00744629,-0.00616455,-0.00140381,0.00363159,0.0088501,0.0126038,0.0136108,0.0135498,0.0104065,0.00598145,-0.00161743,-0.00827026,-0.0170593,-0.0235596,-0.0285339,-0.0332336,-0.0358276,-0.0383911,-0.0393372,-0.0386658,-0.0367126,-0.0317993,-0.02771,-0.0236816,-0.0209961,-0.0189209,-0.0189819,-0.0185852,-0.0202637,-0.0232239,-0.0274658,-0.0334778,-0.0410156,-0.0489197,-0.0557861,-0.0596008,-0.0610657,-0.0614929,-0.0586548,-0.052887,-0.0458984,-0.0380554,-0.0314636,-0.0260315,-0.0228271,-0.0202026,-0.0189209,-0.0184631,-0.0191345,-0.0204773,-0.0231628,-0.0249023,-0.0276489,-0.0289307,-0.0287781,-0.0272522,-0.0255737,-0.0202637,-0.0161133,-0.00924683,-0.00280762,0.00280762,0.00665283,0.00778198,0.00799561,0.00616455,0.00515747,0.00335693,0.00274658,0.00369263,0.0050354,0.00805664,0.0109253,0.0144348,0.0184631,0.0223389,0.0261841,0.0294495,0.0316162,0.0335693,0.0328064,0.0310669,0.02771,0.0222778,0.0180664,0.0147095,0.0146179,0.0152893,0.0195923,0.0259094,0.0337524,0.0418091,0.0484619,0.0513306,0.0510864,0.0470581,0.0390625,0.0303955,0.0221558,0.0166321,0.0142212,0.0146179,0.0181885,0.0216675,0.024231,0.0256958,0.0246887,0.0220032,0.0190735,0.0142822,0.0106812,0.00765991,0.00631714,0.0062561,0.0083313,0.0133667,0.0189819,0.0246887,0.0296631,0.0317993,0.0314636,0.0287781,0.024231,0.0173035,0.0106812,0.00375366,-0.000946045,-0.00744629,-0.0125427,-0.017395,-0.0213318,-0.0239563,-0.0262451,-0.0279236,-0.0279236,-0.0255127,-0.0206604,-0.015564,-0.0105286,-0.00610352,-0.00234985,0.000335693,0.000793457,-0.000335693,-0.00213623,-0.00543213,-0.00805664,-0.0103455,-0.0118713,-0.0133667,-0.0144348,-0.0174561,-0.0216064,-0.0281982,-0.0360413,-0.0446472,-0.0517578,-0.0575867,-0.0598145,-0.0593262,-0.0546265,-0.0471802,-0.0371094,-0.0265808,-0.0160522,-0.0071106,0.000732422,0.00616455,0.00878906,0.00924683,0.00759888,0.00604248,0.00363159,0.000671387,-0.00268555,-0.00839233,-0.0148926,-0.0228882,-0.0304565,-0.0386047,-0.0448303,-0.049469,-0.0511475,-0.0490723,-0.0449829,-0.0359802,-0.0250244,-0.0127563,-0.000396729,0.0114746,0.0216675,0.028656,0.0322876,0.0330811,0.0314026,0.0265808,0.020874,0.0142822,0.00616455,-0.000946045,-0.00985718,-0.0161133,-0.020874,-0.0246887,-0.0270386,-0.0283203,-0.0275269,-0.0256958,-0.0224304,-0.0173035,-0.0114746,-0.00576782,0,0.00665283,0.0118103,0.016571,0.0205994,0.0231628,0.0269775,0.0279236,0.028717,0.0273743,0.0235596,0.0169678,0.0088501,-0.00012207,-0.00967407,-0.0166321,-0.0223389,-0.025177,-0.0241089,-0.0212097,-0.015625,-0.00759888,0.00112915,0.0100098,0.0182495,0.0262451,0.0325623,0.0391846,0.0447693,0.0490723,0.0531616,0.0552368,0.0559692,0.0540161,0.0496521,0.0438232,0.036438,0.0301208,0.0249634,0.0215454,0.0212708,0.0224304,0.026123,0.0303955,0.0343018,0.0370483,0.0392761,0.0377197,0.037384,0.0347595,0.033905,0.03302,0.0337524,0.0358276,0.0377808,0.0401917,0.0409546,0.0405273,0.0386047,0.0332947,0.0271301,0.0194702,0.0105286,0.00195312,-0.00665283,-0.0138245,-0.0194092,-0.0230103,-0.025116,-0.0253601,-0.0247803,-0.0236816,-0.0226135,-0.0230103,-0.0256958,-0.0297241,-0.0358276,-0.0438232,-0.0516663,-0.0580444,-0.0636902,-0.065979,-0.0666504,-0.0646362,-0.0606079,-0.0556335,-0.0508728,-0.0488586,-0.0491333,-0.0524292,-0.0571289,-0.0628967,-0.0679321,-0.0721436,-0.0734253,-0.0722961,-0.0689392,-0.0654907,-0.0617371,-0.0582581,-0.0578003,-0.0591431,-0.0623474,-0.0636902,-0.0646973,-0.061676,-0.0555725,-0.0473938,-0.0358276,-0.0252991,-0.0138855,-0.00604248,-0.000213623,0.00274658,0.0032959,0.00302124,0.00341797,0.00424194,0.00765991,0.0120239,0.0191956,0.0263062,0.0336914,0.0387268,0.0431519,0.0446472,0.0458374,0.0464478,0.0472412,0.050415,0.0534363,0.0580444,0.0620728,0.0653076,0.0675964,0.0673828,0.065094,0.0609436,0.0541687,0.0474548,0.0410767,0.0355835,0.0335693,0.0324707,0.0345764,0.037262,0.0405273,0.0426331,0.0447693,0.0457153,0.045166,0.0437622,0.041626,0.0401917,0.0369873,0.0339661,0.0283813,0.0234985,0.0177917,0.0119324,0.00598145,-0.00167847,-0.00665283,-0.012146,-0.0166321,-0.0198059,-0.0232239,-0.0263672,-0.027771,-0.0299988,-0.0298767,-0.0289917,-0.0259705,-0.0225525,-0.0162964,-0.0116882,-0.00515747,0.00012207,0.00357056,0.00463867,0.00357056,-0.000335693,-0.00726318,-0.0144958,-0.0227661,-0.0308838,-0.0363159,-0.0383301,-0.0362549,-0.0308838,-0.0231628,-0.0140381,-0.00442505,0.0032959,0.0101929,0.0142822,0.0160522,0.0171814,0.0158386,0.0151062,0.0150452,0.0162354,0.0181885,0.0204163,0.0222778,0.0221558,0.0214233,0.0172424,0.0138245,0.00772095,0.0020752,-0.003479,-0.00717163,-0.00979614,-0.0103455,-0.00918579,-0.0088501,-0.00772095,-0.00698853,-0.00665283,-0.00558472,-0.00570679,-0.00750732,-0.00784302,-0.0101318,-0.011261,-0.0142212,-0.0183105,-0.0237732,-0.0301208,-0.0378418,-0.0445557,-0.0517578,-0.0578003,-0.0632324,-0.0661621,-0.0697937,-0.0700684,-0.070282,-0.0677185,-0.0644836,-0.0605469,-0.056366,-0.0509949,-0.0458984,-0.040741,-0.0353699,-0.0326843,-0.0308838,-0.0306702,-0.0324097,-0.0337524,-0.0369263,-0.0399475,-0.0440369,-0.0465088,-0.0484009,-0.0475159,-0.0431519,-0.0361633,-0.0261841,-0.0148315,-0.00289917,0.00894165,0.0195312,0.0281067,0.0348206,0.0404663,0.0436401,0.0473938,0.0491333,0.0509338,0.052002,0.0532227,0.0542297,0.0557861,0.0560303,0.0571899,0.0576477,0.0568542,0.057373,0.0580444,0.0596619,0.0628357,0.0673218,0.0727539,0.0785828,0.0841675,0.0895386,0.0939026,0.0974426,0.0996094,0.0993958,0.0971985,0.0928955,0.0869141,0.0785828,0.0686035,0.0578003,0.0468445,0.0371094,0.028595,0.0209961,0.0169678,0.0128174,0.011261,0.00985718,0.00906372,0.00692749,0.00390625,0.00088501,-0.00469971,-0.00839233,-0.0124817,-0.016571,-0.0193176,-0.0212097,-0.0228271,-0.0239563,-0.0246887,-0.0269165,-0.0298767,-0.03302,-0.0390015,-0.045105,-0.0533447,-0.0618286,-0.0724792,-0.0813599,-0.0907288,-0.0975342,-0.10321,-0.105164,-0.105042,-0.100464,-0.0942993,-0.0851746,-0.0745544,-0.0635071,-0.0525513,-0.04422,-0.0377808,-0.0367737,-0.0375977,-0.0411987,-0.0469666,-0.0524902,-0.0558472,-0.0576477,-0.0560303,-0.0521545,-0.0459595,-0.0391846,-0.0322876,-0.0263062,-0.0205383,-0.016571,-0.0144348,-0.0126953,-0.0110779,-0.0067749,-0.00128174,0.0065918,0.0144958,0.0233459,0.0313416,0.0377197,0.0414734,0.0436401,0.0433655,0.0412903,0.0386047,0.0353699,0.0328064,0.0303345,0.0304565,0.0306091,0.0315552,0.0325623,0.0334167,0.0350342,0.0359802,0.038269,0.0395203,0.0406189,0.0428772,0.0429688,0.0435486,0.0420227,0.0401917,0.0377197,0.0334778,0.0304565,0.02771,0.0247803,0.0224304,0.0198059,0.0169678,0.0148926,0.0104065,0.00643921,0.0017395,-0.0032959,-0.00750732,-0.0110168,-0.0134277,-0.0143738,-0.0150452,-0.0115967,-0.00991821,-0.00604248,-0.0032959,-0.00012207,0.00189209,0.00241089,0.00222778,0.00088501,-0.00234985,-0.00604248,-0.0104675,-0.0141602,-0.0169678,-0.0184021,-0.0186462,-0.0179749,-0.0167847,-0.0146179,-0.0137634,-0.0118713,-0.0109253,-0.0109253,-0.00979614,-0.00979614,-0.00765991,-0.00430298,0.000732422,0.00650024,0.0128784,0.0180664,0.0224915,0.0249634,0.0245056,0.0231018,0.0202026,0.0177917,0.015564,0.0144958,0.0160522,0.0174561,0.0194702,0.021759,0.0216064,0.0209351,0.0185242,0.0152893,0.0103455,0.00570679,0.0017395,-6.10352e-05,-0.00088501,0.0015564,0.00424194,0.0071106,0.0102539,0.0101318,0.0100708,0.00732422,0.00375366,-0.0012207,-0.00604248,-0.0111389,-0.0145569,-0.0180664,-0.0200806,-0.0221558,-0.0228882,-0.0249023,-0.0252991,-0.0279236,-0.0293274,-0.0324097,-0.0343628,-0.0367737,-0.0386658,-0.0386658,-0.0397949,-0.0380554,-0.0390625,-0.0385132,-0.0389404,-0.0391846,-0.0384521,-0.0388489,-0.0391235,-0.0393982,-0.0400085,-0.0406799,-0.0414124,-0.039856,-0.0378418,-0.0350952,-0.032074,-0.028656,-0.0256348,-0.0226746,-0.0198059,-0.0169067,-0.0129395,-0.0100708,-0.0062561,-0.0015564,0.00308228,0.00750732,0.0107422,0.0133667,0.0135498,0.0124817,0.00958252,0.00582886,0.00228882,0.00012207,0.00088501,0.00213623,0.00799561,0.0147705,0.0224304,0.0298767,0.0356445,0.0406189,0.0438843,0.0461731,0.0461731,0.0454407,0.0428772,0.0401917,0.0387878,0.0375061,0.0374451,0.037262,0.037323,0.0350952,0.0343018,0.0309448,0.0290527,0.0264587,0.0232239,0.021759,0.019928,0.0194702,0.0189209,0.0191345,0.0200806,0.0201416,0.0205994,0.0209961,0.0215454,0.0224304,0.0229492,0.0228882,0.0216064,0.0192566,0.0168457,0.0136108,0.00967407,0.00482178,-0.000213623,-0.00537109,-0.00933838,-0.0140381,-0.0152283,-0.0171204,-0.015564,-0.0151062,-0.0118713,-0.00939941,-0.0071106,-0.00463867,-0.00415039,-0.00280762,-0.00357056,-0.00476074,-0.00604248,-0.00952148,-0.0126953,-0.0167847,-0.0211487,-0.0246277,-0.028595,-0.0315552,-0.0333557,-0.0340881,-0.0330811,-0.032074,-0.0297852,-0.0274658,-0.025238,-0.0226135,-0.0212097,-0.0192566,-0.0174561,-0.0160522,-0.0142212,-0.0134888,-0.0128174,-0.0141602,-0.0152893,-0.0177307,-0.0209351,-0.024353,-0.0275269,-0.0290527,-0.0305481,-0.0304565,-0.0299988,-0.0282593,-0.0261841,-0.0237732,-0.020874,-0.0193176,-0.0184021,-0.01651,-0.0162964,-0.0146179,-0.0128174,-0.0104675,-0.00878906,-0.00726318,-0.00643921,-0.00604248,-0.00582886,-0.0062561,-0.00665283,-0.00738525,-0.00738525,-0.00683594,-0.00515747,-0.00201416,0.000946045,0.00509644,0.0088501,0.0123596,0.0145569,0.0163879,0.0166321,0.016571,0.0169067,0.0166321,0.017395,0.0183105,0.0187378,0.020813,0.0210876,0.021759,0.0220032,0.0203247,0.0203247,0.0189209,0.0179749,0.0178528,0.0177917,0.0183105,0.0184021,0.0196533,0.0195923,0.0202637,0.019928,0.0204163,0.0201416,0.0198669,0.0195923,0.0189209,0.0170593,0.0161743,0.0139465,0.012085,0.0101929,0.00900269,0.00750732,0.00692749,0.00772095,0.00704956,0.00900269,0.00985718,0.0106812,0.0123596,0.0119324,0.0123596,0.0118713,0.0103455,0.00906372,0.00650024,0.00408936,0.000732422,-0.00274658,-0.00491333,-0.00750732,-0.00918579,-0.0100098,-0.0108643,-0.0105896,-0.0105896,-0.00845337,-0.00698853,-0.00463867,-0.00274658,0,0.0012207,0.00262451,0.00280762,0.00234985,0.000946045,-0.0017395,-0.00491333,-0.00866699,-0.0120239,-0.0151062,-0.0169067,-0.0181885,-0.0174561,-0.0177917,-0.0171204,-0.0187988,-0.0191956,-0.0212097,-0.0228271,-0.024353,-0.025116,-0.0255127,-0.0239563,-0.0211487,-0.0182495,-0.0140991,-0.0110779,-0.00839233,-0.00671387,-0.00704956,-0.00704956,-0.00860596,-0.0115967,-0.0136108,-0.0171204,-0.0202637,-0.0228271,-0.0247803,-0.0263672,-0.0265198,-0.0262451,-0.0246887,-0.0229492,-0.0211487,-0.0191956,-0.0181885,-0.016571,-0.0158386,-0.0147705,-0.0134277,-0.0109253,-0.00939941,-0.00671387,-0.00363159,-0.00112915,0.00146484,0.00442505,0.00558472,0.00750732,0.00866699,0.00906372,0.0106812,0.0110168,0.0115967,0.011261,0.011261,0.0101318,0.00918579,0.00872803,0.00805664,0.00924683,0.0115967,0.013092,0.0153809,0.0176392,0.0194092,0.020874,0.0220032,0.0222168,0.0230103,0.0235596,0.0237732,0.0249023,0.026123,0.0266418,0.0260315,0.0255127,0.0234375,0.0206604,0.0181274,0.0138245,0.0111389,0.00811768,0.00726318,0.00698853,0.00704956,0.00738525,0.00784302,0.00692749,0.0065918,0.00558472,0.00369263,0.00296021,0.000457764,-0.000274658,-0.00106812,-0.0017395,-0.00167847,-0.00128174,-0.00140381,-0.00134277,-0.00189209,-0.00357056,-0.00537109,-0.00772095,-0.0103455,-0.012085,-0.0140991,-0.0145569,-0.0154419,-0.0157166,-0.0146179,-0.0144958,-0.0140381,-0.0133667,-0.0118713,-0.0108643,-0.0104675,-0.00778198,-0.00778198,-0.00576782,-0.00497437,-0.00357056,-0.00280762,-0.00195312,-0.00140381,-0.00112915,-0.00134277,-0.00213623,-0.00308228,-0.00476074,-0.00643921,-0.00805664,-0.00827026,-0.00872803,-0.00683594,-0.00509644,-0.00140381,0.0015564,0.00564575,0.00637817,0.00726318,0.00637817,0.00424194,0.00247192,-6.10352e-05,-0.00180054,-0.00308228,-0.0032959,-0.00213623,-0.0015564,-0.000457764,-0.00140381,-0.00189209,-0.00408936,-0.00650024,-0.00817871,-0.0114746,-0.0132141,-0.0142822,-0.0147095,-0.0138855,-0.0127563,-0.0114746,-0.0109253,-0.00985718,-0.00985718,-0.00958252,-0.00946045,-0.00946045,-0.00906372,-0.00906372,-0.00979614,-0.0108643,-0.0123596,-0.0142212,-0.0153809,-0.0169067,-0.0175171,-0.0172424,-0.0157166,-0.0132141,-0.0105286,-0.00811768,-0.00549316,-0.00476074,-0.00442505,-0.00442505,-0.00592041,-0.00698853,-0.0071106,-0.00799561,-0.0067749,-0.00448608,-0.00268555,-0.000213623,0.00308228,0.00549316,0.00900269,0.0108032,0.0147095,0.01651,0.0185852,0.0198669,0.0210876,0.0216064,0.0220947,0.0223389,0.0222168,0.0219421,0.0222168,0.0214233,0.0220947,0.0212708,0.020874,0.019989,0.0191345,0.0179138,0.0172424,0.016571,0.0161133,0.0158386,0.0175781,0.0177307,0.020813,0.0229492,0.0252991,0.0259705,0.0259705,0.0255127,0.0227661,0.0196533,0.0153809,0.0115967,0.00665283,0.00341797,6.10352e-05,-0.00262451,-0.00375366,-0.00457764,-0.00582886,-0.00531006,-0.00616455,-0.00637817,-0.0062561,-0.0067749,-0.00784302,-0.00845337,-0.0101318,-0.0115967,-0.013092,-0.0148926,-0.015625,-0.0169678,-0.0166321,-0.0161743,-0.0152283,-0.0144348,-0.0140381,-0.0143738,-0.0160522,-0.0188599,-0.0220032,-0.0253601,-0.0283813,-0.0313416,-0.0326233,-0.0323486,-0.0312195,-0.0289917,-0.025177,-0.0215454,-0.0183105,-0.0154419,-0.0143738,-0.0132141,-0.0131531,-0.0126953,-0.0129395,-0.0120239,-0.012085,-0.0109253,-0.0111389,-0.00979614,-0.00991821,-0.00958252,-0.0105896,-0.0110168,-0.0123596,-0.012085,-0.0133667,-0.013092,-0.013092,-0.0117493,-0.0102539,-0.0085144,-0.00448608,-0.00241089,0.000610352,0.00262451,0.00415039,0.00564575,0.00665283,0.0083313,0.00839233,0.00912476,0.00906372,0.00973511,0.0108032,0.0112,0.0117493,0.0113525,0.0104675,0.00952148,0.00744629,0.00750732,0.00671387,0.00631714,0.00717163,0.00793457,0.0104065,0.0136108,0.0158997,0.0191956,0.0205994,0.0229492,0.0232239,0.024292,0.0226135,0.0216675,0.0185852,0.0148315,0.0123596,0.00839233,0.00698853,0.00509644,0.00543213,0.00558472,0.00616455,0.0083313,0.00958252,0.0111389,0.0120239,0.0118713,0.0113525,0.00979614,0.00799561,0.00732422,0.00564575,0.00549316,0.00643921,0.00650024,0.0088501,0.00985718,0.00967407,0.00860596,0.00570679,0.00140381,-0.00442505,-0.0102539,-0.0167236,-0.0221558,-0.0257874,-0.0283203,-0.0276489,-0.0248413,-0.0205383,-0.0153809,-0.0104065,-0.00543213,-0.00161743,0.00088501,0.0015564,0.00189209,0.000610352,6.10352e-05,-0.00201416,-0.0038147,-0.00509644,-0.00717163,-0.00827026,-0.0104065,-0.0122681,-0.0140991,-0.0170593,-0.0179749,-0.019928,-0.0209961,-0.0209351,-0.0205994,-0.0179138,-0.0158997,-0.0122681,-0.00784302,-0.00497437,-0.00100708,0.00161743,0.00482178,0.00683594,0.00817871,0.0088501,0.00845337,0.00726318,0.00558472,0.0032959,0.000671387,-0.00274658,-0.00515747,-0.00799561,-0.00939941,-0.0112,-0.0102539,-0.00765991,-0.0017395,0.00759888,0.00924683,0.00482178,-0.00415039,-0.00732422,-0.00262451,0.00442505,0.00900269,0.0132141,0.016449,0.0175171,0.0119324,0.00469971,-0.00106812,-0.00390625,-0.00576782,-0.00805664,-0.0175171,-0.025177,-0.0246277,-0.0193176,-0.012085,-0.00558472,0.00357056,0.00979614,0.00933838,0.00772095,0.00549316,0.00744629,0.00537109,0.00469971,0.003479,0.000793457,0.00296021,0.00765991,0.00793457,0.00598145,0.00463867,0.00424194,0.00222778,0.000610352,0.000396729,0.0020752,0.00491333,0.00878906,0.00799561,0.000793457,-0.000732422,0.00592041,0.0115356,0.0138855,0.0127563,0.0248413,0.0378418,0.0403442,0.038269,0.0306702,0.0228882,0.0198669,0.0226135,0.016571,0.0144958,0.0140991,0.0108643,0.00280762,-0.00436401,-0.00537109,0.00088501,0.0083313,0.00918579,0.00415039,-0.000610352,-0.00442505,-0.0133667,-0.0201416,-0.0147095,-0.00650024,-0.00509644,-0.0133667,-0.0249634,-0.025177,-0.0176392,-0.0140991,-0.0194702,-0.0236816,-0.015564,-0.00900269,-0.0148926,-0.025116,-0.032959,-0.0296631,-0.0230103,-0.0205383,-0.028656,-0.0404053,-0.0438232,-0.0380554,-0.0267029,-0.020813,-0.0214233,-0.0241699,-0.0249634,-0.0302734,-0.0324707,-0.0264587,-0.0161743,-0.0161743,-0.0249634,-0.027771,-0.0259705,-0.025116,-0.020813,-0.0203247,-0.0210876,-0.0162964,-0.0067749,-0.0071106,-0.0147705,-0.0125427,-0.00704956,-0.00357056,-0.00274658,-0.000213623,-0.00100708,-0.00213623,0.00509644,0.0175171,0.025116,0.0194702,0.0144958,0.0257874,0.032959,0.0394592,0.041748,0.0499268,0.053894,0.04953,0.0414124,0.0303955,0.0298767,0.0253601,0.016571,0.0141602,0.0281067,0.0421448,0.0366516,0.0238953,0.0158386,0.0176392,0.0171204,0.0238342,0.0332336,0.0310059,0.0189209,0.0122681,0.0167847,0.0120239,0.00616455,0.0132751,0.0206604,0.0184631,0.0147095,0.0151062,0.0196533,0.0220947,0.0138245,-0.0111389,-0.0363159,-0.0399475,-0.0222778,-0.00845337,-0.0140381,-0.0311279,-0.0360413,-0.0262451,-0.0151672,-0.0138245,-0.0249023,-0.0386658,-0.040863,-0.0326233,-0.0302734,-0.0395203,-0.0431519,-0.0380554,-0.0312805,-0.0380554,-0.0468445,-0.0463867,-0.0347595,-0.026123,-0.0296021,-0.0390625,-0.0503235,-0.0465088,-0.037323,-0.0326843,-0.0368347,-0.0370483,-0.0324097,-0.0255127,-0.0173035,-0.012085,-0.0137024,-0.019989,-0.0226135,-0.0214233,-0.0195312,-0.0126038,-0.0071106,-0.00683594,-0.0151672,-0.0184021,-0.0123596,-0.0065918,0.000610352,0.00732422,0.0132751,0.0179138,0.0233459,0.0311279,0.0391846,0.0477295,0.0551758,0.0597229,0.0591431,0.0542297,0.0532227,0.0518188,0.0488586,0.0469055,0.0455017,0.0430298,0.0434875,0.0462952,0.0455017,0.040741,0.0397949,0.0405273,0.0391235,0.0434875,0.0479126,0.0488586,0.041748,0.0319519,0.0339661,0.0415344,0.0477295,0.0422058,0.0315552,0.024292,0.0275879,0.0340881,0.0302124,0.0137024,-0.00302124,-0.00765991,-0.00979614,-0.0175171,-0.0293884,-0.0346985,-0.0348206,-0.0326843,-0.0380554,-0.0453186,-0.0481873,-0.0476379,-0.0447693,-0.0489197,-0.0533447,-0.0590515,-0.065918,-0.0679321,-0.0683289,-0.0661621,-0.0611572,-0.0461121,-0.0260315,-0.0137024,-0.0185852,-0.027771,-0.0336304,-0.0367126,-0.040863,-0.0524902,-0.0661011,-0.0771179,-0.0763245,-0.0709534,-0.0634155,-0.0570374,-0.0569153,-0.0585938,-0.0587158,-0.0555115,-0.0532227,-0.049469,-0.0467224,-0.0473938,-0.0419617,-0.0311279,-0.0191956,-0.0104065,-0.00991821,-0.0138855,-0.0133667,-0.0020752,0.0124207,0.0284424,0.0396118,0.0491943,0.0604858,0.0731506,0.0828857,0.0876465,0.0885315,0.0846252,0.0794067,0.0782471,0.0800781,0.0839539,0.0894775,0.0930786,0.0939026,0.093689,0.0967102,0.101471,0.105164,0.103821,0.098999,0.0953674,0.094574,0.0948486,0.0905457,0.0838928,0.0751038,0.0710144,0.0700684,0.0720825,0.0758362,0.0769043,0.0689392,0.0564575,0.0459595,0.0377197,0.025116,0.00952148,-0.00531006,-0.0198059,-0.0328064,-0.0437012,-0.050415,-0.058136,-0.0690002,-0.0808105,-0.0912781,-0.102631,-0.115967,-0.124969,-0.128052,-0.129059,-0.137512,-0.155457,-0.168671,-0.166321,-0.148651,-0.123566,-0.0960388,-0.0718079,-0.0562439,-0.0519409,-0.0502014,-0.0484009,-0.0455017,-0.050415,-0.0681152,-0.089386,-0.104156,-0.0990601,-0.085968,-0.0783386,-0.0777893,-0.0826111,-0.0800781,-0.0747681,-0.0710144,-0.0726929,-0.0787354,-0.0827637,-0.0804749,-0.0648193,-0.0374451,-0.0140991,0.000213623,0.00692749,0.0137634,0.0285339,0.0533447,0.0778503,0.0960388,0.105164,0.11496,0.132812,0.157867,0.177124,0.184021,0.173645,0.151489,0.132965,0.12854,0.130676,0.134033,0.134308,0.12854,0.12027,0.122009,0.132751,0.141937,0.142822,0.137329,0.130737,0.128998,0.133148,0.136261,0.133423,0.126587,0.11853,0.112152,0.10672,0.102539,0.0990601,0.0932922,0.0853577,0.0706177,0.0552368,0.0379944,0.0187378,-0.0062561,-0.0392761,-0.0681763,-0.0855103,-0.0955811,-0.104034,-0.116791,-0.133575,-0.152557,-0.170349,-0.185852,-0.202484,-0.220398,-0.238068,-0.254517,-0.271362,-0.279205,-0.266998,-0.237854,-0.194916,-0.154297,-0.124237,-0.108185,-0.100555,-0.0938416,-0.0892639,-0.0916748,-0.106049,-0.12793,-0.146729,-0.153015,-0.142761,-0.122559,-0.105438,-0.0993347,-0.100281,-0.100006,-0.101013,-0.0995483,-0.098938,-0.100464,-0.0977173,-0.0820312,-0.0516663,-0.0160522,0.0170593,0.0406189,0.0555725,0.0677795,0.0891418,0.118317,0.149323,0.178986,0.204712,0.231537,0.26123,0.288452,0.301147,0.291138,0.257935,0.21994,0.189209,0.171417,0.167999,0.168457,0.168457,0.169006,0.173492,0.178986,0.180481,0.179871,0.174622,0.165833,0.15625,0.155304,0.158997,0.16684,0.170532,0.167328,0.155304,0.139587,0.124969,0.11618,0.109528,0.100128,0.086853,0.0704041,0.0472412,0.0204163,-0.0124817,-0.0509338,-0.0924072,-0.128784,-0.156586,-0.177979,-0.195984,-0.216461,-0.238129,-0.262695,-0.287994,-0.313354,-0.341217,-0.365387,-0.386108,-0.392426,-0.374298,-0.323303,-0.250885,-0.183014,-0.136169,-0.120148,-0.120819,-0.129211,-0.133026,-0.141083,-0.163483,-0.191071,-0.207672,-0.200684,-0.175446,-0.140472,-0.118073,-0.11087,-0.114716,-0.121063,-0.129333,-0.133148,-0.132294,-0.123901,-0.106781,-0.0752258,-0.0254517,0.0301208,0.0804138,0.114899,0.132568,0.148132,0.172699,0.21048,0.250336,0.284851,0.312225,0.336578,0.358063,0.377594,0.378601,0.349945,0.298676,0.245178,0.209412,0.198792,0.204102,0.209137,0.205383,0.198944,0.198944,0.200073,0.202881,0.202484,0.190491,0.177521,0.171967,0.173492,0.18222,0.189331,0.193909,0.182678,0.160553,0.136597,0.117065,0.103302,0.09021,0.0725403,0.0498657,0.0241699,-0.00515747,-0.0381165,-0.0777893,-0.124969,-0.171478,-0.213959,-0.250061,-0.277985,-0.306061,-0.337189,-0.369354,-0.400482,-0.431152,-0.463654,-0.487,-0.494324,-0.471161,-0.412109,-0.328796,-0.246643,-0.183441,-0.147583,-0.134918,-0.131683,-0.137329,-0.156921,-0.19223,-0.226532,-0.2388,-0.218536,-0.173096,-0.120941,-0.0830078,-0.0654907,-0.0639648,-0.0763245,-0.0949707,-0.114624,-0.126587,-0.129883,-0.11853,-0.0783997,-0.00631714,0.0750427,0.145386,0.195587,0.225189,0.245453,0.274567,0.311615,0.35141,0.382507,0.406128,0.423645,0.437592,0.443451,0.423248,0.373627,0.311218,0.253571,0.217926,0.210602,0.221497,0.231628,0.230804,0.223511,0.211945,0.201477,0.189484,0.169952,0.147186,0.129272,0.123749,0.133575,0.154633,0.175049,0.182007,0.172302,0.150665,0.124847,0.101868,0.0811462,0.0610046,0.0324707,-0.00234985,-0.0409546,-0.0778503,-0.117859,-0.162903,-0.214355,-0.267395,-0.31955,-0.363708,-0.402496,-0.440002,-0.475983,-0.508881,-0.538666,-0.555939,-0.551758,-0.515533,-0.446716,-0.364838,-0.287872,-0.228333,-0.18512,-0.149811,-0.11972,-0.103973,-0.116791,-0.156708,-0.201355,-0.221069,-0.20639,-0.165497,-0.116302,-0.0797424,-0.0554504,-0.0444336,-0.0478516,-0.0592041,-0.077179,-0.0982666,-0.11731,-0.114044,-0.0727539,0.00396729,0.0968628,0.181,0.24585,0.29007,0.326263,0.365326,0.404968,0.441345,0.462494,0.470337,0.472504,0.474457,0.462769,0.425507,0.364655,0.291077,0.225311,0.190674,0.186584,0.195923,0.203369,0.200348,0.189667,0.177521,0.171417,0.16391,0.148193,0.127655,0.107788,0.0991211,0.109863,0.136383,0.163147,0.175232,0.165833,0.136322,0.104889,0.0797424,0.0579834,0.0273132,-0.0157166,-0.0667725,-0.116577,-0.16095,-0.202881,-0.251556,-0.309601,-0.375122,-0.438477,-0.490356,-0.532959,-0.567993,-0.598145,-0.613983,-0.60202,-0.549286,-0.456787,-0.346527,-0.253174,-0.191956,-0.1604,-0.141144,-0.115631,-0.0873718,-0.0785217,-0.100739,-0.138672,-0.16214,-0.149078,-0.101807,-0.0466309,-0.0148315,-0.00732422,-0.0168457,-0.0349731,-0.0565796,-0.0795288,-0.106171,-0.132812,-0.139008,-0.106445,-0.0307312,0.0697327,0.167938,0.246399,0.303894,0.350494,0.396851,0.441101,0.477936,0.497406,0.497528,0.491699,0.487732,0.475525,0.437744,0.369598,0.282776,0.200806,0.151428,0.140198,0.149872,0.160675,0.155518,0.137604,0.122559,0.118317,0.112823,0.098999,0.079071,0.0578613,0.0510864,0.0706787,0.112701,0.158264,0.190338,0.191559,0.167267,0.130005,0.0942383,0.0571899,0.0133667,-0.0429688,-0.104767,-0.163239,-0.211212,-0.254639,-0.306519,-0.376312,-0.457611,-0.53833,-0.605804,-0.657867,-0.697815,-0.708282,-0.675385,-0.587402,-0.457794,-0.324036,-0.215454,-0.149139,-0.113953,-0.093689,-0.0683289,-0.0444336,-0.0385132,-0.0569763,-0.0782471,-0.0773315,-0.0447083,0.00476074,0.0498047,0.0722961,0.070282,0.0453796,0.00491333,-0.0399475,-0.0855103,-0.128937,-0.165375,-0.174164,-0.136047,-0.0535583,0.0483093,0.144562,0.226257,0.292816,0.36087,0.425507,0.483246,0.518219,0.526459,0.517944,0.508942,0.499146,0.473694,0.418549,0.334778,0.244507,0.174896,0.141937,0.134491,0.13678,0.133423,0.117798,0.0990601,0.0914917,0.0906067,0.0837708,0.0649719,0.0376587,0.0166321,0.0181885,0.0475159,0.0944214,0.141266,0.17276,0.181824,0.172485,0.1539,0.12619,0.0810852,0.0169678,-0.0591431,-0.135834,-0.20282,-0.261017,-0.319611,-0.386597,-0.468933,-0.552765,-0.632568,-0.700012,-0.747803,-0.756348,-0.707947,-0.60144,-0.464569,-0.329956,-0.22464,-0.154449,-0.105042,-0.0657654,-0.0343018,-0.0249634,-0.0376587,-0.0579834,-0.0533447,-0.0143738,0.0480652,0.106659,0.141418,0.151337,0.135712,0.0954285,0.0394592,-0.0275879,-0.102692,-0.169678,-0.205719,-0.19162,-0.130554,-0.0424805,0.0477295,0.12619,0.19577,0.267792,0.33902,0.406189,0.455322,0.480835,0.489014,0.496582,0.504456,0.494049,0.446533,0.36142,0.262238,0.181213,0.137115,0.122498,0.118256,0.109009,0.0934143,0.0805359,0.0809326,0.0866394,0.0832214,0.0640259,0.0363159,0.0128784,0.012207,0.0353699,0.0720825,0.111603,0.140411,0.155579,0.161133,0.161469,0.146393,0.105164,0.0383301,-0.0395203,-0.111267,-0.171143,-0.223236,-0.280884,-0.353241,-0.43866,-0.527527,-0.612701,-0.683167,-0.717621,-0.705139,-0.632446,-0.519226,-0.393097,-0.280884,-0.194824,-0.129669,-0.0767822,-0.041748,-0.0340881,-0.0531006,-0.074646,-0.0713501,-0.0241699,0.0532837,0.134827,0.192902,0.221558,0.217468,0.183502,0.126099,0.0479736,-0.0462952,-0.136261,-0.194153,-0.205048,-0.167664,-0.10141,-0.0283813,0.0379333,0.0977173,0.160461,0.232086,0.305908,0.368256,0.406921,0.427399,0.447205,0.462219,0.459534,0.419281,0.338074,0.240692,0.160797,0.117737,0.109009,0.110199,0.104645,0.091156,0.0789185,0.0765686,0.0791321,0.0732117,0.0542297,0.025177,-0.000946045,-0.00268555,0.0254517,0.0684509,0.107666,0.130402,0.138062,0.13678,0.134369,0.123962,0.0921631,0.0349121,-0.0384521,-0.110413,-0.166779,-0.215302,-0.27182,-0.350403,-0.443909,-0.538483,-0.613586,-0.652649,-0.641083,-0.580231,-0.485046,-0.379211,-0.28244,-0.202698,-0.138519,-0.0861206,-0.0556946,-0.0580444,-0.0822144,-0.103027,-0.0940857,-0.0339661,0.0622864,0.160889,0.234161,0.275909,0.285248,0.264435,0.216034,0.132629,0.0259705,-0.0777893,-0.147583,-0.17511,-0.15625,-0.112488,-0.0678406,-0.0327454,6.10352e-05,0.0420837,0.098877,0.1633,0.223297,0.272095,0.314362,0.36557,0.413025,0.436401,0.410492,0.330536,0.224976,0.13147,0.0744324,0.052887,0.0482483,0.0488586,0.0522156,0.0644226,0.0837708,0.0967102,0.0922852,0.0626221,0.0177917,-0.0189819,-0.0326233,-0.0161743,0.0248413,0.0654907,0.100891,0.126923,0.142273,0.148315,0.138519,0.102631,0.041748,-0.0288696,-0.0940247,-0.145508,-0.190735,-0.247925,-0.328796,-0.424164,-0.511505,-0.565308,-0.569153,-0.522247,-0.443176,-0.351227,-0.261688,-0.177979,-0.101471,-0.0371094,0.00308228,-0.00509644,-0.0540161,-0.10733,-0.131287,-0.0949097,0.00012207,0.115967,0.219208,0.293579,0.333984,0.339935,0.306854,0.234161,0.124084,0.00924683,-0.0681763,-0.098877,-0.0856323,-0.0536804,-0.0301208,-0.0241699,-0.024353,-0.0210876,-0.00369263,0.0222168,0.0511475,0.0848999,0.133636,0.209137,0.292816,0.353027,0.356049,0.291473,0.190277,0.0945129,0.032074,0.00189209,-0.0136108,-0.0253601,-0.0263062,-0.00335693,0.0406799,0.0838928,0.104309,0.0876465,0.041748,-0.00491333,-0.0306091,-0.0279846,-0.00497437,0.020813,0.0403442,0.0577087,0.0733032,0.0793457,0.0684509,0.0288696,-0.0357666,-0.103088,-0.156036,-0.188385,-0.216583,-0.260681,-0.329742,-0.403564,-0.44928,-0.441956,-0.385101,-0.306793,-0.225098,-0.152008,-0.090271,-0.0296631,0.0324707,0.0722046,0.0610046,0.00793457,-0.0624084,-0.112488,-0.0996704,-0.0264587,0.0791321,0.17981,0.260406,0.312439,0.334503,0.3255,0.275055,0.18161,0.0737,-0.00256348,-0.0278625,-0.00860596,0.0336914,0.0622864,0.0626221,0.0475159,0.0343628,0.0296631,0.0292053,0.0233459,0.0185852,0.0308838,0.0814209,0.155518,0.222015,0.241821,0.195099,0.106384,0.0151672,-0.0491333,-0.0748291,-0.0828247,-0.0910034,-0.0895386,-0.0682678,-0.0259705,0.0269775,0.0630798,0.0618286,0.0279846,-0.0131531,-0.0386658,-0.0369873,-0.0126038,0.0131531,0.032074,0.0512695,0.0666504,0.0757751,0.0610046,0.0102539,-0.0698547,-0.15625,-0.230743,-0.282227,-0.322144,-0.365509,-0.418549,-0.462097,-0.459625,-0.394836,-0.289551,-0.177582,-0.0794678,-0.0148926,0.0349121,0.0971985,0.157196,0.176117,0.146973,0.0833435,0.0109253,-0.0139465,0.0275879,0.108856,0.19928,0.276978,0.327271,0.34787,0.34436,0.308197,0.227325,0.120209,0.025116,-0.0268555,-0.0252991,0.0141602,0.06073,0.0851746,0.0800781,0.0663757,0.0558472,0.0448303,0.0238953,-0.00335693,-0.0221558,-0.00289917,0.0551758,0.127533,0.176117,0.167938,0.108856,0.0291138,-0.0401917,-0.0808105,-0.105652,-0.129944,-0.147522,-0.144501,-0.11261,-0.057312,-0.00012207,0.0340881,0.0268555,-0.00531006,-0.0457764,-0.0715332,-0.0795898,-0.0797424,-0.0785217,-0.069397,-0.0475159,-0.0202637,-0.00390625,-0.0198059,-0.0704041,-0.143616,-0.220947,-0.28772,-0.347382,-0.403564,-0.44873,-0.452759,-0.393768,-0.281433,-0.151886,-0.0402832,0.0339661,0.0692749,0.0938416,0.127655,0.14505,0.131409,0.102417,0.0673218,0.0536194,0.0908813,0.167389,0.25,0.323578,0.373169,0.38855,0.382172,0.355591,0.298065,0.216309,0.138672,0.0830078,0.0670471,0.0838318,0.110474,0.126587,0.117249,0.0923462,0.070282,0.0522766,0.0322266,0.00543213,-0.0224304,-0.0302734,-0.0116882,0.0200806,0.0469666,0.0432129,0.00738525,-0.041626,-0.0848999,-0.107849,-0.113159,-0.112213,-0.113556,-0.110596,-0.09021,-0.0583191,-0.0255737,-0.00274658,-0.00256348,-0.019928,-0.0414124,-0.057373,-0.0628357,-0.0735474,-0.0875854,-0.10202,-0.109253,-0.111603,-0.114166,-0.137115,-0.185364,-0.248932,-0.31546,-0.377319,-0.428284,-0.466339,-0.484589,-0.45282,-0.361877,-0.232544,-0.0907288,0.0369873,0.12854,0.182831,0.218384,0.23175,0.213013,0.162018,0.104309,0.06073,0.0600586,0.111481,0.195251,0.284637,0.361542,0.408417,0.416534,0.392914,0.343842,0.262756,0.175568,0.109589,0.0858459,0.102142,0.13678,0.167511,0.177063,0.161469,0.132629,0.105377,0.0779114,0.0467834,0.0118103,-0.00918579,-0.000396729,0.0288696,0.0545654,0.0556335,0.0229492,-0.0379944,-0.108459,-0.164825,-0.201355,-0.214233,-0.20993,-0.19281,-0.155975,-0.0957642,-0.0332947,0.012085,0.0350342,0.0311279,0.00616455,-0.0220947,-0.0380554,-0.0455017,-0.0577087,-0.0733643,-0.0939636,-0.116516,-0.144501,-0.185913,-0.250275,-0.328125,-0.404449,-0.470612,-0.518738,-0.542511,-0.529144,-0.46814,-0.360626,-0.22464,-0.0833435,0.0367737,0.123169,0.180542,0.223511,0.242706,0.235443,0.210205,0.175049,0.152496,0.164825,0.211334,0.277588,0.348206,0.399933,0.41571,0.402222,0.363831,0.298737,0.212952,0.127533,0.0592041,0.0345764,0.0543518,0.100464,0.145844,0.176453,0.186523,0.177124,0.159943,0.137848,0.108124,0.0697327,0.0444946,0.0473938,0.0639648,0.0802002,0.0755005,0.0394592,-0.0245056,-0.0971985,-0.156586,-0.199738,-0.221954,-0.231628,-0.231079,-0.208466,-0.159058,-0.0963135,-0.0428772,-0.0171814,-0.0174561,-0.0356445,-0.0571899,-0.065033,-0.0612793,-0.0609436,-0.0601501,-0.0671692,-0.0792542,-0.100006,-0.143036,-0.220673,-0.322968,-0.432617,-0.528809,-0.597198,-0.621429,-0.582916,-0.484589,-0.347534,-0.19577,-0.0505981,0.0640869,0.141022,0.190063,0.21167,0.204773,0.182007,0.152557,0.137054,0.158997,0.218201,0.303284,0.392761,0.471344,0.510223,0.50061,0.453156,0.378143,0.280273,0.18222,0.100342,0.0488586,0.041687,0.0675964,0.100616,0.121216,0.125183,0.112488,0.0936279,0.0711365,0.0497437,0.0238342,0.0126038,0.0307312,0.0688477,0.105835,0.124023,0.110809,0.0610657,-0.00268555,-0.0631714,-0.115845,-0.15451,-0.17511,-0.188812,-0.189484,-0.168396,-0.13089,-0.0953674,-0.0704651,-0.0636292,-0.0785828,-0.099884,-0.108459,-0.10437,-0.0975952,-0.0897217,-0.0856934,-0.0903931,-0.107849,-0.145447,-0.21463,-0.308472,-0.410828,-0.506989,-0.583038,-0.611023,-0.568665,-0.464111,-0.319153,-0.157379,-0.0134888,0.0922241,0.157318,0.19397,0.195709,0.167175,0.125519,0.0865173,0.0767822,0.114044,0.190399,0.290802,0.400146,0.494659,0.545929,0.548676,0.512085,0.435577,0.325989,0.217804,0.129608,0.0800781,0.0748291,0.101074,0.128937,0.13974,0.127106,0.0964355,0.0555115,0.0179138,-0.0188599,-0.0521545,-0.0612183,-0.0283813,0.028717,0.0852356,0.121216,0.11908,0.0700684,0.00289917,-0.0638428,-0.123016,-0.16275,-0.178467,-0.182281,-0.163086,-0.115448,-0.0579224,-0.0162964,0.00314331,-0.00765991,-0.050415,-0.103638,-0.144775,-0.175781,-0.192078,-0.192749,-0.182556,-0.167938,-0.159454,-0.175507,-0.232819,-0.323486,-0.424591,-0.523773,-0.590485,-0.593658,-0.517273,-0.388062,-0.227112,-0.0662537,0.0667114,0.157532,0.216309,0.234222,0.204102,0.145905,0.0794678,0.0292053,0.0318909,0.0940857,0.19693,0.321136,0.444794,0.537415,0.576996,0.560089,0.493561,0.387207,0.26886,0.168121,0.105164,0.0871887,0.115967,0.162415,0.191071,0.190948,0.162079,0.109344,0.0459595,-0.0187988,-0.0826721,-0.123016,-0.11377,-0.0595398,0.0119324,0.0766602,0.10556,0.0846863,0.0305481,-0.032959,-0.0987244,-0.157867,-0.194153,-0.203369,-0.181335,-0.127991,-0.0541077,0.0151062,0.0598755,0.0661621,0.0288696,-0.0404053,-0.113434,-0.176514,-0.222229,-0.2453,-0.243103,-0.227661,-0.210083,-0.210083,-0.24646,-0.325439,-0.427002,-0.52533,-0.588623,-0.579895,-0.499817,-0.365234,-0.200867,-0.0340881,0.106781,0.202423,0.260071,0.268341,0.223175,0.14859,0.0706787,0.021759,0.0282593,0.098053,0.205902,0.33075,0.447327,0.522491,0.544983,0.522247,0.452148,0.351624,0.249603,0.171204,0.126709,0.122955,0.153564,0.192017,0.210358,0.199066,0.160004,0.098114,0.0281982,-0.0411987,-0.100464,-0.129669,-0.110138,-0.0567932,0.0101929,0.0681152,0.0922241,0.0677795,0.0168457,-0.0450439,-0.109344,-0.163086,-0.197266,-0.212769,-0.195923,-0.147064,-0.0770569,-0.00616455,0.0478516,0.065033,0.0369263,-0.0221558,-0.0926819,-0.161682,-0.221008,-0.262817,-0.286591,-0.294708,-0.292694,-0.29895,-0.32666,-0.382843,-0.458405,-0.528687,-0.549957,-0.50061,-0.387115,-0.243225,-0.0942383,0.0376587,0.146118,0.235443,0.279663,0.259125,0.184967,0.0932312,0.025238,0.0137024,0.0670471,0.159668,0.27832,0.409485,0.514709,0.568542,0.565857,0.506256,0.390411,0.262634,0.15033,0.0767212,0.0588074,0.102356,0.172638,0.234985,0.270081,0.264984,0.215973,0.134094,0.0300598,-0.0855713,-0.171692,-0.192352,-0.153625,-0.0840149,-0.0067749,0.0513306,0.0699463,0.0588684,0.0240173,-0.0314636,-0.09552,-0.14859,-0.183105,-0.189606,-0.151764,-0.0836792,-0.0123596,0.0473022,0.0784607,0.0618896,0.00839233,-0.0617371,-0.144501,-0.226105,-0.289673,-0.332428,-0.352173,-0.356049,-0.355865,-0.375244,-0.419952,-0.481903,-0.537415,-0.547455,-0.496582,-0.393768,-0.259796,-0.109344,0.0443115,0.179199,0.287201,0.341949,0.322235,0.244843,0.145386,0.065033,0.0324097,0.0569763,0.127441,0.236328,0.36438,0.477325,0.545044,0.558472,0.506927,0.396729,0.258453,0.131287,0.0436401,0.0140991,0.0425415,0.109344,0.187256,0.249878,0.278931,0.26123,0.199341,0.101685,-0.0183105,-0.11673,-0.162354,-0.153442,-0.108734,-0.0458374,0.0085144,0.0390625,0.0458984,0.0252991,-0.0232849,-0.0856934,-0.14798,-0.197052,-0.209808,-0.176514,-0.109344,-0.0322266,0.0411377,0.0865173,0.0877075,0.0471191,-0.0226135,-0.112762,-0.207855,-0.289337,-0.348328,-0.384094,-0.397003,-0.406586,-0.430756,-0.47403,-0.521576,-0.545654,-0.526123,-0.457458,-0.358673,-0.24054,-0.104767,0.040741,0.186646,0.302765,0.354584,0.331207,0.258392,0.175629,0.114288,0.0899963,0.110016,0.17511,0.286041,0.413635,0.517456,0.57077,0.564301,0.495392,0.379822,0.24881,0.133698,0.052002,0.0167236,0.0273132,0.0713501,0.13324,0.191162,0.220276,0.205658,0.149597,0.0603333,-0.0343628,-0.0920715,-0.105042,-0.0882568,-0.0502625,-0.0017395,0.0365906,0.058136,0.0582581,0.0303955,-0.0253601,-0.091156,-0.157532,-0.205231,-0.211487,-0.175049,-0.112213,-0.0366516,0.0304565,0.0673828,0.0618286,0.0178528,-0.061615,-0.164825,-0.271423,-0.359955,-0.424377,-0.463776,-0.482178,-0.493042,-0.506653,-0.522034,-0.52063,-0.493225,-0.435394,-0.355713,-0.260345,-0.154694,-0.0409546,0.0838928,0.202698,0.282684,0.303101,0.26825,0.208466,0.15329,0.129211,0.136841,0.175568,0.255707,0.370422,0.484924,0.566803,0.596985,0.555328,0.454376,0.327393,0.204224,0.105103,0.0437622,0.0276489,0.0499878,0.0995483,0.164581,0.212555,0.225861,0.199066,0.129211,0.0327454,-0.049408,-0.0914917,-0.0969849,-0.0738831,-0.0316772,0.0155029,0.0584717,0.090271,0.0941772,0.0611572,0.00222778,-0.0718689,-0.138916,-0.172485,-0.162415,-0.118927,-0.0575256,0.00515747,0.0468445,0.0514832,0.016571,-0.0589294,-0.169006,-0.289886,-0.398407,-0.483521,-0.534637,-0.557861,-0.57135,-0.589966,-0.604462,-0.594513,-0.544098,-0.463837,-0.371216,-0.278748,-0.177734,-0.0602112,0.0782471,0.206726,0.286774,0.297729,0.25592,0.196503,0.150879,0.130005,0.131348,0.162567,0.237671,0.348816,0.457672,0.532715,0.553711,0.513092,0.41745,0.300629,0.188477,0.101471,0.050415,0.0376587,0.0551758,0.0990601,0.156647,0.204651,0.219666,0.195648,0.133759,0.0578003,0.0101318,-0.00106812,0.0104675,0.0346985,0.0661621,0.0967712,0.123749,0.140686,0.129333,0.0885315,0.02771,-0.0396118,-0.0976562,-0.119873,-0.104828,-0.0674438,-0.0189209,0.0292053,0.06073,0.0657043,0.040802,-0.0213318,-0.123505,-0.241943,-0.353424,-0.449677,-0.524567,-0.576599,-0.621155,-0.661774,-0.674713,-0.643311,-0.568207,-0.46759,-0.364899,-0.272705,-0.181946,-0.0786743,0.0319519,0.119202,0.159058,0.150543,0.112946,0.0853577,0.090332,0.118134,0.157776,0.216461,0.298462,0.397858,0.484863,0.529755,0.52002,0.453827,0.351746,0.245056,0.155304,0.0901489,0.050415,0.03302,0.0353088,0.0602112,0.0926208,0.113831,0.110809,0.0785217,0.0210876,-0.0263672,-0.0377197,-0.0170593,0.0180664,0.0568542,0.0957642,0.136932,0.179413,0.210815,0.218048,0.197327,0.153015,0.098938,0.0563049,0.0467834,0.0614929,0.0854492,0.108063,0.121063,0.112701,0.0803528,0.0218811,-0.0684509,-0.188324,-0.314789,-0.428284,-0.516663,-0.578278,-0.623444,-0.664185,-0.688599,-0.675446,-0.609283,-0.505127,-0.385986,-0.274109,-0.179413,-0.0865173,0.0169678,0.114502,0.169952,0.17276,0.136169,0.0925598,0.0730896,0.0860291,0.111755,0.148407,0.206573,0.287384,0.372437,0.43277,0.444794,0.399078,0.305389,0.194489,0.0974426,0.0307312,-0.00234985,-0.00592041,0.00991821,0.04422,0.0912781,0.133087,0.148804,0.128448,0.069397,-0.00732422,-0.0593262,-0.0712891,-0.0551758,-0.0237732,0.0126038,0.0547791,0.103424,0.146851,0.169952,0.166443,0.138519,0.0970459,0.0596619,0.0467834,0.0653076,0.102478,0.139343,0.172638,0.196655,0.197266,0.173218,0.111603,0.00549316,-0.129395,-0.267456,-0.384186,-0.476318,-0.547272,-0.610504,-0.66507,-0.693115,-0.664398,-0.582703,-0.46933,-0.351746,-0.247253,-0.155518,-0.0575867,0.0504761,0.135986,0.169189,0.15094,0.108063,0.0805969,0.0940857,0.131958,0.176971,0.230072,0.307922,0.4021,0.479736,0.50882,0.46701,0.36557,0.237793,0.117401,0.0204773,-0.0428772,-0.0724792,-0.0763245,-0.0584717,-0.0173035,0.0310669,0.0641785,0.0679932,0.0324097,-0.0341492,-0.0910034,-0.109009,-0.0928345,-0.0569153,-0.0126038,0.0337524,0.0836792,0.137329,0.175903,0.180542,0.15686,0.119263,0.0845642,0.0734253,0.0885925,0.119537,0.147858,0.169678,0.18277,0.175446,0.14975,0.10022,0.0157166,-0.0970459,-0.219727,-0.330078,-0.41861,-0.488678,-0.55365,-0.622223,-0.673981,-0.676941,-0.620361,-0.518341,-0.398193,-0.281219,-0.175293,-0.0644836,0.0566406,0.154297,0.196991,0.184692,0.143219,0.110352,0.108246,0.132141,0.166504,0.217194,0.294922,0.39325,0.479675,0.521423,0.49942,0.410614,0.281494,0.153778,0.0458374,-0.0292664,-0.0674438,-0.0785217,-0.069397,-0.0409546,-0.000793457,0.0273132,0.0307312,0.0012207,-0.053894,-0.104095,-0.11792,-0.0966492,-0.0558472,-0.00784302,0.0430298,0.0964355,0.148071,0.177979,0.173828,0.141357,0.0973816,0.0586548,0.0377197,0.0480652,0.0866394,0.13559,0.182831,0.217255,0.227264,0.206787,0.153229,0.0635071,-0.0587158,-0.192413,-0.316254,-0.413757,-0.484375,-0.539093,-0.593994,-0.640228,-0.650024,-0.611969,-0.534637,-0.442902,-0.352692,-0.264038,-0.165375,-0.0499268,0.0592651,0.127594,0.144501,0.13028,0.114777,0.11673,0.136505,0.165375,0.208801,0.280609,0.38385,0.488525,0.559631,0.572113,0.518341,0.407471,0.271149,0.138,0.0248413,-0.0560303,-0.098877,-0.112091,-0.0982056,-0.0622864,-0.0222778,-0.0012207,-0.0132141,-0.0609436,-0.125183,-0.170685,-0.173981,-0.143829,-0.0912781,-0.0246277,0.0542908,0.136169,0.204651,0.238251,0.234711,0.199677,0.151764,0.109344,0.085968,0.0984497,0.137451,0.185699,0.230469,0.257324,0.252625,0.212952,0.130219,0.00469971,-0.149261,-0.305786,-0.433167,-0.523315,-0.582703,-0.625244,-0.65802,-0.6633,-0.624664,-0.544983,-0.44873,-0.358185,-0.279541,-0.199677,-0.102081,0.00247192,0.0836792,0.118591,0.115387,0.103546,0.111816,0.140747,0.177521,0.21524,0.268188,0.351624,0.452911,0.531555,0.554993,0.509155,0.405792,0.277313,0.15329,0.0469055,-0.032074,-0.0787964,-0.098877,-0.0936279,-0.0670471,-0.0307922,-0.00289917,-0.00482178,-0.0470581,-0.114288,-0.172485,-0.191681,-0.169739,-0.124908,-0.0683289,-0.000335693,0.0808105,0.161133,0.222351,0.242767,0.222626,0.179657,0.139923,0.121277,0.128052,0.155914,0.189209,0.22644,0.256195,0.266113,0.247253,0.194977,0.0964355,-0.0429688,-0.201691,-0.347534,-0.460358,-0.541351,-0.606537,-0.657349,-0.680573,-0.654907,-0.578125,-0.472229,-0.369019,-0.284119,-0.212097,-0.128662,-0.0354309,0.0443726,0.0833435,0.0802002,0.0664368,0.0696106,0.103088,0.153961,0.205109,0.258392,0.334564,0.429749,0.515259,0.555603,0.529938,0.440613,0.315857,0.190399,0.0821533,-0.0012207,-0.0567932,-0.0877991,-0.0971985,-0.0830994,-0.0556946,-0.032959,-0.0336914,-0.0720215,-0.140137,-0.207581,-0.240601,-0.231415,-0.196716,-0.147064,-0.0826721,-0.000274658,0.0931702,0.177399,0.227325,0.237518,0.219391,0.194427,0.17926,0.188202,0.220062,0.258331,0.289215,0.3078,0.306732,0.284363,0.232208,0.142365,0.0132141,-0.140594,-0.290466,-0.413635,-0.509155,-0.585938,-0.652771,-0.698608,-0.697937,-0.641907,-0.544037,-0.436584,-0.334167,-0.239868,-0.138916,-0.0311279,0.0632324,0.110138,0.112885,0.100677,0.101471,0.128998,0.173553,0.224854,0.277405,0.350067,0.442108,0.523438,0.560364,0.5354,0.447205,0.316315,0.179077,0.0564575,-0.0375061,-0.0942383,-0.12027,-0.123901,-0.105652,-0.0724792,-0.0445557,-0.0387878,-0.0712891,-0.137115,-0.205719,-0.244049,-0.241272,-0.211823,-0.171692,-0.122498,-0.0543518,0.02771,0.108246,0.16391,0.18457,0.176727,0.157318,0.146912,0.16214,0.204224,0.255707,0.301422,0.331085,0.340149,0.324921,0.28302,0.204376,0.0830078,-0.0673218,-0.218597,-0.345459,-0.441895,-0.519409,-0.591309,-0.645599,-0.659943,-0.628479,-0.560272,-0.47995,-0.403107,-0.324097,-0.232025,-0.119812,-0.0117493,0.0640259,0.0977783,0.108795,0.122894,0.155182,0.203094,0.257324,0.316528,0.389465,0.474915,0.555939,0.606934,0.60437,0.539154,0.419891,0.276581,0.138336,0.0228271,-0.0605469,-0.116974,-0.148865,-0.152679,-0.13324,-0.107452,-0.0969849,-0.119263,-0.176453,-0.241211,-0.285248,-0.291229,-0.262817,-0.214966,-0.154572,-0.0791931,0.0100098,0.0955811,0.156311,0.18277,0.176636,0.1521,0.128998,0.132233,0.168182,0.224701,0.278992,0.318604,0.336182,0.332153,0.299347,0.226868,0.111023,-0.0384521,-0.199463,-0.344635,-0.454254,-0.536194,-0.600555,-0.647949,-0.664917,-0.638489,-0.57135,-0.486053,-0.402893,-0.324921,-0.245117,-0.147583,-0.0396729,0.0522766,0.104553,0.124695,0.133087,0.1539,0.196106,0.248138,0.301147,0.361298,0.440338,0.53363,0.610901,0.642181,0.607208,0.509491,0.377808,0.238739,0.114227,0.015625,-0.0589294,-0.108734,-0.13147,-0.125519,-0.101624,-0.0809326,-0.0861206,-0.128326,-0.198334,-0.262909,-0.296326,-0.292023,-0.261414,-0.214447,-0.1539,-0.0721436,0.0200806,0.106323,0.160553,0.170959,0.148987,0.120056,0.110077,0.130737,0.176514,0.227539,0.275787,0.312103,0.331696,0.325775,0.283508,0.194427,0.0608826,-0.0954285,-0.25061,-0.384033,-0.49472,-0.586182,-0.662506,-0.713776,-0.720032,-0.678406,-0.600342,-0.512421,-0.432434,-0.358002,-0.26886,-0.155304,-0.039856,0.0426941,0.0881958,0.115173,0.149872,0.207916,0.274902,0.333221,0.382233,0.442291,0.526123,0.61319,0.667755,0.663391,0.596344,0.484436,0.357269,0.229279,0.115967,0.0273743,-0.040863,-0.0895996,-0.114288,-0.11618,-0.103363,-0.0963135,-0.115295,-0.165833,-0.228668,-0.271606,-0.276733,-0.254578,-0.216705,-0.170288,-0.106995,-0.0220947,0.0701294,0.146515,0.188538,0.192169,0.171204,0.146057,0.14093,0.158661,0.192963,0.229279,0.258392,0.276398,0.281281,0.270599,0.227386,0.141418,0.0142212,-0.133911,-0.276062,-0.399261,-0.503296,-0.595917,-0.675598,-0.726196,-0.732117,-0.68927,-0.616608,-0.534912,-0.457123,-0.376709,-0.282349,-0.174164,-0.0747681,-0.00402832,0.0418091,0.0777893,0.125702,0.191345,0.262817,0.32666,0.391571,0.467987,0.555664,0.63089,0.669891,0.653717,0.585449,0.481171,0.363434,0.250336,0.152771,0.0743103,0.0106812,-0.0377808,-0.0671692,-0.0801392,-0.0894775,-0.110077,-0.152679,-0.213348,-0.268463,-0.294586,-0.285522,-0.250275,-0.201416,-0.144958,-0.0758362,0.0085144,0.0916748,0.157104,0.192627,0.199615,0.192017,0.185364,0.194153,0.222626,0.259216,0.292084,0.310089,0.31189,0.298065,0.263489,0.195587,0.0926208,-0.0357666,-0.173309,-0.302948,-0.416107,-0.512024,-0.601105,-0.684265,-0.740631,-0.749756,-0.710419,-0.643646,-0.572357,-0.498688,-0.409546,-0.292908,-0.15744,-0.0448914,0.0215454,0.0525513,0.0800171,0.126648,0.188934,0.242889,0.285095,0.337524,0.422485,0.525055,0.608673,0.649689,0.638062,0.578613,0.480408,0.363892,0.245728,0.147308,0.0691223,0.00616455,-0.0387268,-0.0633545,-0.066925,-0.0664368,-0.0838318,-0.128723,-0.196106,-0.255035,-0.284027,-0.278595,-0.248322,-0.20163,-0.143036,-0.0707397,0.0102539,0.0831604,0.135773,0.163361,0.173309,0.172485,0.17215,0.188599,0.229523,0.287262,0.340271,0.370026,0.372955,0.358337,0.31604,0.235229,0.114838,-0.0301208,-0.177795,-0.310333,-0.421356,-0.508606,-0.584503,-0.658539,-0.718018,-0.738892,-0.717804,-0.664459,-0.60318,-0.533966,-0.45459,-0.344696,-0.212219,-0.0842285,0.00765991,0.0589905,0.0925598,0.136169,0.197845,0.257996,0.304565,0.34906,0.414978,0.503052,0.583435,0.631439,0.62674,0.572968,0.481964,0.371765,0.256042,0.152435,0.0696106,0.00582886,-0.041687,-0.0704651,-0.081543,-0.0858459,-0.0977783,-0.134583,-0.195587,-0.254974,-0.28772,-0.287933,-0.255524,-0.204163,-0.140869,-0.0704651,0.00631714,0.078125,0.134247,0.167511,0.180084,0.178528,0.174042,0.184448,0.216034,0.266571,0.317932,0.351685,0.361816,0.353516,0.320953,0.255646,0.150757,0.0163879,-0.129669,-0.265381,-0.376801,-0.468811,-0.549561,-0.623901,-0.685272,-0.715607,-0.707886,-0.67041,-0.615936,-0.549683,-0.470001,-0.369873,-0.247803,-0.125031,-0.0279236,0.0322876,0.0723572,0.109344,0.154572,0.206512,0.259277,0.318268,0.392639,0.483704,0.575134,0.644257,0.672028,0.644989,0.56424,0.450958,0.324097,0.20343,0.103973,0.025116,-0.0322266,-0.0686035,-0.0856934,-0.0906067,-0.102692,-0.136597,-0.192352,-0.25531,-0.303284,-0.320831,-0.304718,-0.25827,-0.195038,-0.125031,-0.0488586,0.0279236,0.0967712,0.149475,0.180664,0.193573,0.19458,0.202484,0.231293,0.276581,0.323975,0.357788,0.373291,0.370026,0.34021,0.276245,0.178986,0.0533447,-0.0871277,-0.225922,-0.347198,-0.446198,-0.52887,-0.605042,-0.673859,-0.723511,-0.735474,-0.706604,-0.647675,-0.57251,-0.490082,-0.396454,-0.277405,-0.142151,-0.0245056,0.048584,0.0827637,0.100403,0.126984,0.171204,0.219818,0.265991,0.324371,0.406189,0.507324,0.602112,0.664642,0.676605,0.628937,0.535065,0.414032,0.28537,0.170471,0.0800171,0.0108643,-0.0401306,-0.0718079,-0.0857849,-0.0917358,-0.106995,-0.144501,-0.203827,-0.262421,-0.298187,-0.300476,-0.270752,-0.223358,-0.171204,-0.11496,-0.0491333,0.0211487,0.0856323,0.135712,0.164368,0.175507,0.182098,0.202423,0.243378,0.296844,0.345245,0.371155,0.373505,0.354919,0.312103,0.238251,0.132141,0.000396729,-0.140594,-0.273773,-0.384979,-0.476532,-0.559143,-0.641296,-0.713165,-0.75238,-0.74472,-0.69809,-0.629425,-0.550293,-0.461975,-0.35257,-0.223419,-0.0940247,0.00302124,0.0531616,0.0739746,0.0924988,0.12973,0.181824,0.238068,0.296936,0.373718,0.474457,0.583313,0.676605,0.723511,0.706451,0.630157,0.512177,0.378479,0.248718,0.140594,0.0544434,-0.011261,-0.0567932,-0.0808716,-0.0856323,-0.0916748,-0.118195,-0.172211,-0.239594,-0.291901,-0.310547,-0.298126,-0.262573,-0.218323,-0.166382,-0.100281,-0.0222168,0.053894,0.115967,0.153564,0.169006,0.172485,0.179657,0.204773,0.249329,0.298615,0.337189,0.357452,0.356781,0.33667,0.288544,0.207001,0.0932922,-0.0434265,-0.182617,-0.306244,-0.4086,-0.49826,-0.585114,-0.669891,-0.734192,-0.756592,-0.732513,-0.673187,-0.593903,-0.50766,-0.417206,-0.308319,-0.181946,-0.065033,0.0108643,0.0413513,0.0477905,0.0594788,0.0958557,0.150269,0.212158,0.285095,0.378326,0.496063,0.618866,0.716187,0.759155,0.730774,0.644775,0.524841,0.388947,0.263763,0.158783,0.0755005,0.0128174,-0.0320129,-0.0578003,-0.0747681,-0.0935059,-0.129944,-0.188049,-0.253906,-0.306183,-0.328522,-0.319397,-0.284027,-0.238922,-0.182007,-0.111267,-0.0307312,0.0475159,0.108673,0.149139,0.167389,0.177582,0.19458,0.228943,0.275909,0.324768,0.357727,0.37149,0.365845,0.337341,0.284119,0.202301,0.0854492,-0.052887,-0.19397,-0.324036,-0.437195,-0.537933,-0.636536,-0.725189,-0.783447,-0.790771,-0.752502,-0.679626,-0.593781,-0.504913,-0.40741,-0.289734,-0.161133,-0.0549011,0.00952148,0.0356445,0.04953,0.0718079,0.115723,0.168671,0.23053,0.307648,0.409424,0.529144,0.644379,0.728943,0.76004,0.727875,0.638885,0.516602,0.380554,0.257202,0.154572,0.0691223,0.00134277,-0.0439758,-0.0699463,-0.0813599,-0.0942993,-0.126251,-0.172974,-0.227264,-0.268677,-0.290558,-0.28894,-0.268127,-0.231628,-0.180603,-0.114502,-0.0428772,0.0280457,0.0918274,0.135315,0.158722,0.167053,0.177124,0.202484,0.241211,0.287201,0.320953,0.340546,0.344452,0.330017,0.288544,0.215027,0.108795,-0.0227661,-0.16391,-0.300201,-0.422241,-0.526917,-0.617859,-0.69223,-0.745117,-0.75647,-0.725189,-0.661774,-0.583588,-0.505798,-0.428131,-0.339996,-0.232758,-0.129456,-0.0559082,-0.0205994,-0.00234985,0.0261841,0.0807495,0.153107,0.225098,0.305511,0.40564,0.526184,0.648224,0.742188,0.785675,0.76889,0.69278,0.577545,0.440491,0.304047,0.186035,0.0908813,0.016571,-0.0326233,-0.0595398,-0.0697327,-0.0718079,-0.0915527,-0.134308,-0.194489,-0.253357,-0.290405,-0.302216,-0.289398,-0.25705,-0.211212,-0.149994,-0.0773315,-0.0012207,0.0700073,0.121277,0.149414,0.160736,0.167786,0.187134,0.223358,0.269257,0.309753,0.333832,0.340485,0.332092,0.296997,0.227539,0.120667,-0.0150452,-0.157257,-0.289001,-0.399261,-0.486053,-0.559143,-0.626343,-0.683838,-0.716736,-0.709808,-0.667603,-0.605255,-0.538757,-0.475372,-0.405914,-0.310608,-0.19693,-0.091217,-0.0252991,-0.000671387,0.0120239,0.0495911,0.122223,0.205231,0.283447,0.365173,0.466797,0.59198,0.715332,0.79776,0.815277,0.761108,0.651703,0.511566,0.356049,0.212769,0.0983276,0.0188599,-0.0273743,-0.0458984,-0.045105,-0.028656,-0.0218811,-0.0479736,-0.110138,-0.193024,-0.265381,-0.311218,-0.322021,-0.305176,-0.271362,-0.218262,-0.141144,-0.049469,0.0401917,0.110077,0.151215,0.16626,0.162231,0.157776,0.171692,0.207794,0.256531,0.297943,0.322144,0.3302,0.315521,0.265778,0.178802,0.0569763,-0.0834351,-0.22049,-0.332764,-0.414642,-0.474457,-0.529755,-0.585449,-0.639679,-0.679077,-0.690613,-0.674438,-0.634918,-0.585724,-0.531219,-0.458282,-0.350006,-0.211884,-0.0820312,0.00582886,0.0481262,0.073761,0.110352,0.170807,0.237244,0.303711,0.380676,0.481018,0.606537,0.732178,0.816071,0.833923,0.774658,0.655396,0.501434,0.336792,0.192902,0.085968,0.0184021,-0.0105896,-0.0159607,-0.00375366,0.0111389,0.0106812,-0.0255737,-0.0995483,-0.196167,-0.282227,-0.335846,-0.351349,-0.33136,-0.284302,-0.212006,-0.12088,-0.024353,0.0632935,0.128326,0.160065,0.164246,0.150665,0.136658,0.140198,0.169525,0.21698,0.263763,0.294434,0.299347,0.276245,0.22168,0.137848,0.0265808,-0.0971985,-0.215637,-0.314026,-0.386597,-0.438995,-0.48761,-0.545197,-0.609955,-0.666748,-0.697998,-0.701111,-0.674042,-0.628601,-0.570679,-0.493988,-0.380402,-0.231628,-0.0863647,0.0193176,0.0713501,0.0940857,0.119141,0.169952,0.23114,0.298126,0.372559,0.467346,0.588867,0.713318,0.806885,0.82962,0.770752,0.653839,0.508728,0.357452,0.227783,0.13324,0.0765076,0.0484009,0.0429688,0.0493164,0.0550232,0.0377808,-0.0148315,-0.103638,-0.208252,-0.299469,-0.352631,-0.359955,-0.3284,-0.269073,-0.190674,-0.0955811,0.000396729,0.0786743,0.130554,0.151337,0.143768,0.118408,0.0975342,0.0991211,0.129883,0.17691,0.222504,0.252899,0.262695,0.247986,0.207123,0.141083,0.0522766,-0.0546875,-0.163147,-0.249542,-0.31424,-0.365906,-0.420624,-0.485596,-0.564056,-0.648224,-0.716522,-0.745453,-0.733124,-0.685333,-0.619019,-0.534637,-0.419281,-0.267242,-0.108917,0.0189819,0.0858459,0.0995483,0.0941772,0.108795,0.155304,0.213226,0.278076,0.35968,0.473907,0.607819,0.729095,0.797821,0.794525,0.723999,0.60968,0.478546,0.350555,0.248199,0.174561,0.129547,0.106049,0.0923462,0.0812073,0.0613403,0.0189819,-0.0578003,-0.158997,-0.258728,-0.322815,-0.343231,-0.323975,-0.278076,-0.215027,-0.139069,-0.0610657,0.0088501,0.0585938,0.0852966,0.0852966,0.0686035,0.0468445,0.0396118,0.0608215,0.109589,0.172882,0.227875,0.26416,0.276245,0.265778,0.22821,0.162567,0.0700684,-0.0385132,-0.141693,-0.227722,-0.296722,-0.358337,-0.424988,-0.503967,-0.595062,-0.683594,-0.74176,-0.755585,-0.722565,-0.660492,-0.584595,-0.491974,-0.372711,-0.228943,-0.0885925,0.011261,0.053772,0.0545044,0.0512085,0.074646,0.126984,0.190399,0.261566,0.356934,0.479553,0.618866,0.737274,0.804321,0.806335,0.746674,0.640015,0.510895,0.384308,0.280823,0.20343,0.146179,0.105774,0.0804138,0.0610657,0.0388489,0.000396729,-0.0677185,-0.153503,-0.234314,-0.28418,-0.300964,-0.290344,-0.258331,-0.212494,-0.156982,-0.101807,-0.0536804,-0.0175781,0.00933838,0.0192566,0.0157166,0.0104675,0.0193176,0.0549011,0.116516,0.186859,0.244446,0.276062,0.286102,0.277313,0.244843,0.183899,0.098999,-0.00180054,-0.101959,-0.189941,-0.263367,-0.330688,-0.397125,-0.472107,-0.556335,-0.642517,-0.707794,-0.733124,-0.712311,-0.656921,-0.588531,-0.516541,-0.430695,-0.315308,-0.17981,-0.0586548,0.012085,0.0257874,0.0186462,0.0336914,0.0891418,0.168274,0.247589,0.329285,0.434113,0.568329,0.70694,0.812256,0.849213,0.814453,0.725067,0.606659,0.479675,0.355377,0.250153,0.165253,0.104492,0.0664368,0.0441589,0.0326233,0.0149536,-0.0225525,-0.0867004,-0.1651,-0.231537,-0.273041,-0.291016,-0.290283,-0.277069,-0.251831,-0.211609,-0.161285,-0.109131,-0.0625,-0.0265198,-0.00463867,0.00946045,0.0246277,0.0524292,0.101471,0.164429,0.226257,0.269867,0.293762,0.298859,0.283173,0.238922,0.170532,0.0785217,-0.0256348,-0.121826,-0.202209,-0.266174,-0.322754,-0.382507,-0.449615,-0.52713,-0.609283,-0.680481,-0.719025,-0.716797,-0.678223,-0.622375,-0.553772,-0.4617,-0.341766,-0.201752,-0.0711365,0.0214844,0.0614014,0.0728149,0.0877991,0.133759,0.203033,0.279205,0.365448,0.467529,0.594574,0.726135,0.831512,0.878967,0.852509,0.757141,0.620636,0.47168,0.333374,0.220886,0.133026,0.0730896,0.036499,0.0194092,0.0189209,0.0169678,-0.00973511,-0.0748291,-0.166321,-0.253418,-0.317383,-0.353516,-0.360138,-0.344116,-0.309418,-0.257935,-0.192413,-0.118195,-0.0502625,-0.00012207,0.025177,0.0334778,0.0385132,0.0575256,0.100342,0.163483,0.22464,0.269684,0.294312,0.302032,0.291473,0.254517,0.188873,0.100403,0.00195312,-0.0913391,-0.169067,-0.230865,-0.285034,-0.341492,-0.411102,-0.492767,-0.587616,-0.679291,-0.74292,-0.763367,-0.741028,-0.69043,-0.615601,-0.514191,-0.38208,-0.227112,-0.0751648,0.0396729,0.101959,0.122955,0.131744,0.158936,0.210419,0.275391,0.35376,0.450562,0.573456,0.709229,0.827332,0.898621,0.894592,0.814117,0.68103,0.526672,0.373383,0.240417,0.135101,0.0606689,0.015625,-0.00531006,-0.00958252,-0.0142212,-0.038269,-0.0969238,-0.185364,-0.275848,-0.348053,-0.392822,-0.403778,-0.384644,-0.34256,-0.282349,-0.207672,-0.126312,-0.0526123,0.00323486,0.0393372,0.0548401,0.0587158,0.0678406,0.0955811,0.148132,0.207245,0.259735,0.296509,0.318939,0.321686,0.294312,0.236664,0.153107,0.0526123,-0.0499268,-0.141876,-0.216248,-0.279083,-0.338196,-0.400696,-0.471893,-0.553986,-0.640228,-0.712372,-0.751221,-0.753052,-0.721771,-0.659882,-0.562897,-0.435852,-0.289124,-0.135315,0.000396729,0.0985413,0.15155,0.173706,0.185303,0.204712,0.243835,0.305389,0.393982,0.504791,0.630432,0.748413,0.843506,0.89212,0.867004,0.771362,0.63028,0.4711,0.315979,0.182831,0.0784607,0.00247192,-0.0480652,-0.0734253,-0.0800781,-0.0849609,-0.110016,-0.162567,-0.235107,-0.303436,-0.356537,-0.384186,-0.381561,-0.354248,-0.310669,-0.253357,-0.177521,-0.0984497,-0.0297241,0.0183105,0.0481262,0.0632324,0.0775146,0.102295,0.144623,0.199341,0.253082,0.295929,0.325928,0.338013,0.323364,0.276917,0.204895,0.114899,0.012207,-0.0854492,-0.167053,-0.231079,-0.287537,-0.343567,-0.400818,-0.465057,-0.538483,-0.622833,-0.701355,-0.754395,-0.766388,-0.731689,-0.651306,-0.536591,-0.40625,-0.267731,-0.116974,0.0292664,0.142426,0.200012,0.206726,0.197388,0.207733,0.256775,0.328674,0.413757,0.508728,0.621826,0.745178,0.849304,0.900513,0.865875,0.757355,0.602356,0.428345,0.25592,0.103973,-0.0142822,-0.0955811,-0.133484,-0.136719,-0.12088,-0.10437,-0.105652,-0.132416,-0.188812,-0.25827,-0.322632,-0.366058,-0.375977,-0.35968,-0.324493,-0.267914,-0.189819,-0.10321,-0.0200806,0.0490723,0.0982056,0.125427,0.134491,0.142212,0.160278,0.193085,0.23288,0.26358,0.28363,0.291962,0.281433,0.249725,0.19873,0.126648,0.0378418,-0.0518188,-0.129333,-0.193085,-0.245911,-0.297119,-0.355255,-0.422241,-0.493225,-0.564117,-0.640167,-0.706604,-0.741638,-0.730774,-0.667664,-0.566406,-0.444641,-0.315308,-0.179138,-0.0350952,0.0974426,0.195038,0.24054,0.240875,0.232483,0.253693,0.311157,0.38208,0.461639,0.546204,0.640167,0.732635,0.79715,0.805786,0.738007,0.610748,0.449066,0.282288,0.131958,0.0117493,-0.074646,-0.12442,-0.138123,-0.128113,-0.108063,-0.0939636,-0.101624,-0.144562,-0.217651,-0.298065,-0.357849,-0.385773,-0.374115,-0.336121,-0.271942,-0.190491,-0.0929565,0.00228882,0.0806885,0.129456,0.147125,0.143097,0.126038,0.115784,0.122894,0.154175,0.20108,0.245911,0.277588,0.296265,0.296265,0.274109,0.220276,0.138672,0.0358276,-0.0691223,-0.161682,-0.232025,-0.283173,-0.327393,-0.373718,-0.420746,-0.467743,-0.520416,-0.580017,-0.637939,-0.673645,-0.677002,-0.638397,-0.555328,-0.44101,-0.305389,-0.16214,-0.0167847,0.117462,0.223022,0.284851,0.301208,0.296997,0.29425,0.308807,0.338196,0.385254,0.447052,0.519135,0.595734,0.656525,0.685852,0.658752,0.575195,0.45108,0.307983,0.166718,0.0448303,-0.0511475,-0.118073,-0.154358,-0.167725,-0.162292,-0.148315,-0.140808,-0.153778,-0.191681,-0.242218,-0.28363,-0.301208,-0.286926,-0.253632,-0.209534,-0.159668,-0.098999,-0.0332336,0.0266418,0.0714722,0.0949707,0.104218,0.103821,0.115906,0.146301,0.192688,0.241364,0.278656,0.302216,0.312103,0.302551,0.268677,0.207581,0.120605,0.0139465,-0.0926208,-0.177917,-0.229279,-0.258057,-0.279541,-0.303711,-0.330292,-0.360687,-0.401428,-0.455048,-0.516663,-0.583832,-0.634796,-0.649292,-0.605469,-0.506317,-0.374176,-0.231415,-0.0967712,0.0353088,0.162231,0.26712,0.324493,0.321564,0.280823,0.237061,0.225586,0.250885,0.302826,0.364777,0.437744,0.524567,0.609955,0.664307,0.65332,0.568756,0.432281,0.274628,0.11972,-0.0205994,-0.130402,-0.196838,-0.217377,-0.204041,-0.171021,-0.133972,-0.107117,-0.101532,-0.126373,-0.176971,-0.233215,-0.27774,-0.292297,-0.276245,-0.237671,-0.179413,-0.103302,-0.0157166,0.0689392,0.136047,0.178986,0.192169,0.18866,0.179596,0.178467,0.191284,0.215302,0.242554,0.261139,0.265656,0.248718,0.209747,0.15155,0.0769043,-0.0106812,-0.0996094,-0.169678,-0.209534,-0.225586,-0.226196,-0.224701,-0.232544,-0.258545,-0.305389,-0.37088,-0.447998,-0.533386,-0.612976,-0.658264,-0.639404,-0.550232,-0.410492,-0.249725,-0.0904846,0.0498047,0.17215,0.264771,0.313782,0.302704,0.242157,0.172028,0.134033,0.150818,0.203644,0.280762,0.368195,0.464172,0.552155,0.610229,0.617126,0.555664,0.432831,0.280762,0.128326,-0.00424194,-0.108398,-0.172974,-0.195709,-0.186462,-0.161407,-0.134705,-0.11377,-0.10907,-0.12973,-0.174042,-0.218384,-0.245239,-0.248718,-0.22229,-0.171692,-0.107574,-0.0437622,0.0195923,0.078186,0.124237,0.147186,0.149872,0.144043,0.142761,0.152893,0.174316,0.207397,0.242889,0.264709,0.266785,0.247589,0.208588,0.148804,0.0759888,0.0020752,-0.0628357,-0.113495,-0.138062,-0.140076,-0.128448,-0.123627,-0.139801,-0.180603,-0.243561,-0.324036,-0.411774,-0.497345,-0.567474,-0.614258,-0.62204,-0.567932,-0.454498,-0.302429,-0.147186,-0.0179749,0.0808716,0.151886,0.203705,0.22934,0.21759,0.166779,0.102875,0.0678406,0.0889893,0.156036,0.241821,0.322144,0.396515,0.465912,0.51947,0.541168,0.502838,0.402283,0.259338,0.114044,-0.0116882,-0.108795,-0.177246,-0.214355,-0.213837,-0.185577,-0.138458,-0.0926819,-0.0568542,-0.0448303,-0.0636902,-0.101471,-0.142273,-0.169739,-0.174377,-0.153961,-0.116394,-0.0737,-0.0257874,0.0305481,0.0899963,0.13913,0.166595,0.178406,0.178741,0.181671,0.186859,0.19632,0.210419,0.220215,0.22168,0.208923,0.179749,0.138916,0.0912781,0.0414734,-0.0100708,-0.0575256,-0.0950928,-0.111267,-0.10907,-0.103821,-0.106384,-0.129456,-0.172638,-0.232361,-0.302429,-0.37262,-0.438141,-0.494568,-0.533234,-0.533508,-0.478394,-0.376801,-0.25061,-0.130615,-0.0357666,0.0296631,0.078125,0.118988,0.137726,0.124359,0.0759888,0.0233459,0.00476074,0.041626,0.116241,0.198792,0.273895,0.34082,0.404297,0.456268,0.479279,0.444977,0.353088,0.2276,0.10672,0.00280762,-0.0755005,-0.133026,-0.166656,-0.171631,-0.151672,-0.115387,-0.0771179,-0.0481262,-0.036377,-0.048645,-0.0765076,-0.109406,-0.133362,-0.139252,-0.125031,-0.0986023,-0.065094,-0.0209961,0.0367737,0.101013,0.156433,0.19812,0.224304,0.233551,0.229523,0.216309,0.203888,0.192291,0.176788,0.157379,0.132294,0.109741,0.0926819,0.0830078,0.0728149,0.0549011,0.0281067,0.0020752,-0.0137634,-0.0226746,-0.036438,-0.0634155,-0.105042,-0.153442,-0.204712,-0.253632,-0.301483,-0.351898,-0.404114,-0.45517,-0.488007,-0.486115,-0.446472,-0.374451,-0.290131,-0.207458,-0.129883,-0.0589905,0.00805664,0.0593262,0.0785828,0.06073,0.0234375,-0.00610352,-0.00247192,0.0391235,0.106323,0.184448,0.264313,0.346985,0.422028,0.472565,0.479553,0.429138,0.327179,0.200958,0.0720825,-0.0393372,-0.123901,-0.175964,-0.191162,-0.179199,-0.143707,-0.099884,-0.0582581,-0.0322876,-0.028595,-0.0496521,-0.0822754,-0.108856,-0.119202,-0.101746,-0.0594788,-0.00665283,0.0475159,0.0990601,0.148407,0.187195,0.206787,0.204041,0.184784,0.160004,0.143616,0.144043,0.161346,0.188263,0.210602,0.220001,0.217468,0.201965,0.174316,0.133026,0.0828857,0.0307312,-0.0154419,-0.0412903,-0.0410156,-0.0249634,-0.00430298,0.00234985,-0.00805664,-0.040863,-0.10022,-0.186035,-0.290741,-0.399353,-0.499542,-0.575256,-0.619751,-0.614655,-0.558289,-0.455841,-0.329529,-0.203217,-0.0992126,-0.0303955,0.0104675,0.0270386,0.024292,-0.00476074,-0.0542908,-0.0954285,-0.098877,-0.0475159,0.0479126,0.162903,0.270538,0.361084,0.433777,0.481354,0.486725,0.43338,0.321075,0.178589,0.0393372,-0.0733643,-0.155121,-0.202484,-0.210205,-0.181488,-0.125244,-0.0606689,0.000396729,0.0441589,0.0657654,0.0623474,0.0380554,0.000671387,-0.0338135,-0.0462341,-0.0352478,-0.0108032,0.0147705,0.0428772,0.0787964,0.125702,0.173035,0.209595,0.230621,0.23584,0.233765,0.232819,0.23584,0.236908,0.227875,0.206726,0.182831,0.156708,0.129883,0.103821,0.0826111,0.0670471,0.0549622,0.0484619,0.0510864,0.0582581,0.0575867,0.0400696,0.00161743,-0.0618286,-0.145172,-0.239685,-0.333832,-0.417938,-0.488403,-0.541107,-0.57016,-0.573975,-0.545715,-0.488861,-0.408264,-0.316986,-0.237396,-0.173157,-0.133575,-0.108185,-0.0885315,-0.0732117,-0.0674438,-0.0738831,-0.0820312,-0.0689392,-0.0195923,0.0622864,0.154907,0.237518,0.301086,0.355438,0.39505,0.40921,0.38678,0.315979,0.211609,0.101288,0.0116882,-0.0516052,-0.0934143,-0.113098,-0.10556,-0.0708618,-0.0205383,0.0303345,0.0665894,0.0848999,0.0839539,0.0627441,0.0292664,-0.00515747,-0.0279236,-0.0301208,-0.0117493,0.0205383,0.0579224,0.098877,0.146179,0.199341,0.24411,0.272278,0.278748,0.27121,0.257874,0.245575,0.231018,0.215698,0.195312,0.171875,0.150604,0.133362,0.124176,0.118134,0.110413,0.0933533,0.073822,0.0546265,0.0358276,0.0150452,-0.0175171,-0.0627441,-0.122498,-0.191498,-0.262085,-0.328735,-0.391571,-0.446381,-0.48996,-0.523041,-0.543976,-0.549896,-0.532501,-0.488403,-0.425781,-0.35968,-0.306915,-0.263428,-0.22821,-0.190216,-0.147308,-0.113373,-0.0921631,-0.0833435,-0.065918,-0.0224304,0.0516663,0.140076,0.222839,0.292694,0.35083,0.400696,0.431274,0.431274,0.391022,0.308807,0.204895,0.104767,0.026123,-0.0296021,-0.0646973,-0.0761719,-0.0648193,-0.0299988,0.016449,0.0577087,0.086853,0.0942383,0.0785828,0.045105,0.0111389,-0.0140381,-0.0244446,-0.0119324,0.01651,0.0595398,0.105988,0.159943,0.21637,0.267517,0.302216,0.313507,0.303223,0.279999,0.253693,0.23465,0.220154,0.205444,0.18222,0.157532,0.138855,0.126373,0.112823,0.0929565,0.0652466,0.0331421,0.00335693,-0.0185852,-0.0360413,-0.0547791,-0.0817566,-0.114838,-0.159546,-0.210419,-0.268463,-0.332977,-0.395233,-0.452911,-0.504791,-0.5466,-0.569092,-0.570099,-0.554718,-0.521637,-0.471497,-0.402222,-0.327332,-0.252563,-0.189728,-0.144287,-0.106506,-0.0775757,-0.0502625,-0.0278625,-0.0128174,0.00341797,0.0369873,0.0996094,0.180756,0.262146,0.327332,0.373566,0.40451,0.418457,0.410004,0.365448,0.283783,0.182159,0.08255,0.0071106,-0.0426331,-0.0668335,-0.0701904,-0.0540161,-0.0186462,0.0263672,0.0706787,0.101288,0.112488,0.0999451,0.0734863,0.0422974,0.0185242,0.017395,0.0362549,0.069519,0.108521,0.149536,0.196442,0.247467,0.292236,0.316132,0.316376,0.29953,0.271881,0.242371,0.213684,0.187927,0.159058,0.125916,0.0942383,0.0664978,0.0462952,0.0312195,0.0142212,-0.00744629,-0.0323486,-0.0551147,-0.0740967,-0.090332,-0.109131,-0.137573,-0.173218,-0.212952,-0.251068,-0.291748,-0.330536,-0.368256,-0.399078,-0.427338,-0.450623,-0.464508,-0.469269,-0.464783,-0.452026,-0.427338,-0.3862,-0.332489,-0.268402,-0.204773,-0.152618,-0.107849,-0.0686646,-0.0276489,0.00744629,0.0306091,0.0412903,0.053894,0.0856934,0.138855,0.203979,0.262146,0.306061,0.34317,0.371216,0.386658,0.368744,0.310333,0.221619,0.128052,0.0512695,-0.00491333,-0.0418701,-0.0564575,-0.0479736,-0.0182495,0.0220947,0.0665894,0.0987244,0.115723,0.112427,0.0931702,0.0666504,0.0457153,0.0401306,0.0578613,0.0900574,0.132355,0.174103,0.216858,0.25946,0.290131,0.298065,0.282684,0.247314,0.20639,0.168518,0.133484,0.105652,0.0870361,0.0751038,0.0648193,0.0532227,0.0386047,0.0218201,-6.10352e-05,-0.0252991,-0.0540161,-0.0817566,-0.102203,-0.108337,-0.104889,-0.0990601,-0.101074,-0.112366,-0.133698,-0.160004,-0.195709,-0.243561,-0.298004,-0.351624,-0.397858,-0.432556,-0.451813,-0.457672,-0.44873,-0.427002,-0.392761,-0.34848,-0.297272,-0.240875,-0.193573,-0.156525,-0.12738,-0.0992126,-0.0697327,-0.0448914,-0.0219421,-0.00302124,0.0270386,0.0714722,0.131287,0.203033,0.266907,0.319611,0.35611,0.380219,0.388794,0.368591,0.313293,0.23175,0.141266,0.0622864,0.003479,-0.0322266,-0.0499878,-0.0475769,-0.028595,0.00302124,0.0411377,0.0767212,0.100952,0.106842,0.0968628,0.0773926,0.0614929,0.0579224,0.0678406,0.0900574,0.115845,0.143555,0.17276,0.201874,0.227203,0.238586,0.232971,0.212341,0.188385,0.165924,0.148987,0.133148,0.115295,0.0979919,0.0798035,0.0626221,0.0471802,0.0308838,0.0146179,-0.00228882,-0.0193176,-0.0284424,-0.0305481,-0.028717,-0.0261841,-0.0300598,-0.0440369,-0.0698547,-0.104645,-0.143555,-0.189545,-0.242096,-0.294983,-0.345703,-0.386322,-0.416321,-0.437073,-0.449738,-0.456268,-0.458466,-0.44989,-0.423492,-0.379944,-0.326172,-0.27243,-0.225769,-0.179749,-0.131622,-0.0811462,-0.0323486,0.0017395,0.0244446,0.0469666,0.0856323,0.141266,0.203217,0.260071,0.303223,0.338531,0.365662,0.37619,0.360687,0.309601,0.228607,0.136322,0.052948,-0.00967407,-0.0548401,-0.0785217,-0.079071,-0.0541687,-0.012146,0.0334778,0.0740967,0.100555,0.108124,0.0983887,0.0778503,0.0535583,0.0386658,0.0403442,0.06073,0.0960999,0.136169,0.182098,0.231201,0.27887,0.312225,0.321686,0.306915,0.27356,0.235992,0.198181,0.164368,0.135162,0.108734,0.0852966,0.0677795,0.0577087,0.0511475,0.0422058,0.0302734,0.00958252,-0.00958252,-0.0265808,-0.0401917,-0.0534363,-0.0686646,-0.0876465,-0.108521,-0.130615,-0.154022,-0.181946,-0.217255,-0.255768,-0.29483,-0.333435,-0.370697,-0.400024,-0.423492,-0.44043,-0.454041,-0.457794,-0.448334,-0.418793,-0.372375,-0.316528,-0.264984,-0.220337,-0.177521,-0.133026,-0.0885925,-0.0514832,-0.0261841,-0.00958252,0.011261,0.0489807,0.104431,0.16806,0.228668,0.27887,0.315582,0.337067,0.342346,0.323639,0.275726,0.204102,0.121948,0.0481873,-0.00872803,-0.0411987,-0.0533447,-0.0452271,-0.0189209,0.016449,0.0526733,0.0849609,0.110535,0.124756,0.124298,0.11618,0.107178,0.107056,0.122498,0.151611,0.184357,0.216248,0.244781,0.270203,0.291412,0.303497,0.300537,0.280762,0.247406,0.211273,0.17746,0.1474,0.123688,0.0973206,0.0683899,0.040741,0.0204773,0.00900269,-0.00161743,-0.0151062,-0.0314636,-0.0424805,-0.0457764,-0.0439758,-0.040863,-0.040802,-0.0483093,-0.0630798,-0.0836182,-0.107513,-0.138458,-0.176849,-0.224426,-0.272034,-0.31955,-0.362762,-0.401611,-0.432159,-0.457184,-0.475037,-0.485046,-0.484924,-0.470276,-0.442566,-0.399872,-0.345123,-0.285187,-0.22934,-0.176117,-0.125641,-0.07724,-0.036438,-0.00604248,0.0179138,0.0405273,0.0741577,0.117126,0.171753,0.228882,0.28009,0.319946,0.345459,0.355042,0.342224,0.302368,0.237335,0.15799,0.0826721,0.020874,-0.0187988,-0.0375977,-0.0349121,-0.0153809,0.0202026,0.0627441,0.105713,0.137726,0.152283,0.156189,0.1521,0.142822,0.136505,0.137177,0.151215,0.173157,0.198059,0.222961,0.246246,0.268463,0.284515,0.287323,0.273773,0.245392,0.211426,0.177124,0.14975,0.124908,0.101471,0.0761719,0.0520935,0.032074,0.0147705,0.000396729,-0.0167847,-0.0352478,-0.0518799,-0.0635071,-0.0669861,-0.0675049,-0.0699463,-0.0814209,-0.0979309,-0.11853,-0.143951,-0.176575,-0.219269,-0.266052,-0.31311,-0.35611,-0.390564,-0.418457,-0.441101,-0.459198,-0.470276,-0.474243,-0.467529,-0.447998,-0.412445,-0.36377,-0.306793,-0.250214,-0.197449,-0.146729,-0.0971985,-0.0470581,-0.00732422,0.0177307,0.0296021,0.0430298,0.0724182,0.121216,0.178314,0.229279,0.268677,0.301025,0.328278,0.343964,0.330078,0.279144,0.201416,0.11496,0.0428162,-0.00866699,-0.0350952,-0.0422058,-0.0269165,0.00900269,0.0592651,0.113373,0.157593,0.186981,0.194153,0.184967,0.163574,0.140137,0.127258,0.130341,0.149139,0.179321,0.214508,0.250671,0.281097,0.307068,0.318604,0.307922,0.276062,0.23053,0.180756,0.134033,0.0955811,0.0679932,0.0479736,0.032959,0.0212708,0.0126038,0.00778198,0.00308228,-0.00698853,-0.0234375,-0.0437012,-0.0626221,-0.0763245,-0.0856934,-0.093689,-0.10321,-0.116974,-0.130615,-0.147644,-0.167328,-0.196167,-0.231201,-0.26825,-0.304565,-0.341492,-0.375916,-0.405731,-0.426392,-0.439758,-0.446594,-0.447662,-0.442566,-0.427063,-0.398529,-0.355103,-0.304443,-0.255371,-0.209808,-0.162354,-0.110931,-0.0554504,-0.0067749,0.0316162,0.0578003,0.082489,0.111481,0.150146,0.193359,0.230133,0.257935,0.279999,0.30188,0.317383,0.311829,0.284302,0.236664,0.181488,0.126312,0.0808105,0.0475769,0.0232239,0.0111389,0.0152283,0.0350952,0.065918,0.0975342,0.12442,0.14624,0.161285,0.168732,0.170532,0.172546,0.177643,0.185516,0.19516,0.209259,0.225769,0.243164,0.255707,0.26416,0.263763,0.253632,0.232971,0.206848,0.176575,0.144226,0.111603,0.0807495,0.053833,0.0281982,0.00497437,-0.0126038,-0.0252991,-0.036438,-0.0501404,-0.0649719,-0.0783386,-0.0907288,-0.104645,-0.119141,-0.135498,-0.153687,-0.175049,-0.197052,-0.219055,-0.242157,-0.269592,-0.29718,-0.325836,-0.353638,-0.384094,-0.411682,-0.43396,-0.447998,-0.457855,-0.45929,-0.453766,-0.432556,-0.394165,-0.338074,-0.272705,-0.210266,-0.156189,-0.10672,-0.0525513,0.00415039,0.052887,0.0814209,0.0966492,0.111694,0.142365,0.184631,0.228729,0.262817,0.281219,0.293091,0.302948,0.308411,0.295929,0.258789,0.20108,0.136322,0.0834961,0.0449829,0.0211487,0.00924683,0.00616455,0.0169678,0.037384,0.0654297,0.0942993,0.120728,0.140472,0.154633,0.164429,0.172974,0.188599,0.21109,0.237122,0.261902,0.281219,0.294769,0.303497,0.306915,0.303162,0.287598,0.261749,0.225769,0.184509,0.146301,0.11261,0.0840149,0.0526733,0.0194702,-0.015625,-0.0467224,-0.0715332,-0.0897217,-0.108582,-0.128937,-0.148804,-0.161469,-0.165649,-0.164978,-0.167938,-0.174713,-0.185242,-0.196503,-0.208252,-0.222748,-0.239075,-0.26001,-0.278595,-0.296265,-0.313629,-0.331543,-0.350555,-0.36499,-0.375641,-0.384979,-0.391083,-0.390137,-0.376984,-0.345703,-0.29718,-0.236237,-0.172974,-0.115845,-0.0681763,-0.0236816,0.0223389,0.0599365,0.0780029,0.0797424,0.0767822,0.0860291,0.113831,0.152893,0.191833,0.22403,0.249725,0.27356,0.291962,0.293823,0.269409,0.217377,0.150818,0.0922852,0.0504761,0.0273132,0.0210876,0.0282593,0.0498657,0.081604,0.11972,0.1586,0.18866,0.208069,0.217194,0.217194,0.212769,0.212433,0.21759,0.230133,0.24295,0.25174,0.253357,0.252411,0.245728,0.233765,0.213104,0.184906,0.146912,0.106842,0.0738831,0.0511475,0.0349731,0.0176392,-0.00531006,-0.0334167,-0.06073,-0.0843506,-0.105225,-0.127533,-0.152893,-0.178314,-0.192902,-0.191956,-0.176392,-0.158936,-0.144714,-0.134308,-0.13028,-0.130402,-0.141205,-0.156311,-0.180817,-0.211151,-0.246643,-0.282166,-0.310547,-0.331421,-0.347717,-0.357727,-0.361755,-0.360535,-0.352081,-0.339417,-0.315247,-0.277863,-0.232422,-0.183777,-0.14444,-0.112946,-0.0798645,-0.0439758,-0.00717163,0.0176392,0.0316772,0.0400696,0.0571289,0.0918884,0.142822,0.194977,0.239349,0.272705,0.301361,0.325439,0.337006,0.321899,0.276581,0.208862,0.140198,0.0856934,0.0502014,0.0312195,0.0259094,0.0371094,0.0618286,0.0987244,0.136047,0.167664,0.191833,0.200806,0.19928,0.186646,0.172089,0.163696,0.163025,0.17041,0.177734,0.187134,0.195038,0.202972,0.208588,0.207184,0.196655,0.17276,0.14093,0.10733,0.0751038,0.0479736,0.0201416,-0.00827026,-0.041626,-0.0748901,-0.102875,-0.123077,-0.137115,-0.149811,-0.15979,-0.163147,-0.15625,-0.139862,-0.122345,-0.108398,-0.104218,-0.106842,-0.115234,-0.128937,-0.148804,-0.173309,-0.199066,-0.223969,-0.248535,-0.272095,-0.292969,-0.307129,-0.316467,-0.321686,-0.327454,-0.333557,-0.33606,-0.327454,-0.299866,-0.256714,-0.209473,-0.172638,-0.144714,-0.114777,-0.0760498,-0.0334167,-0.000396729,0.0143738,0.0219421,0.0399475,0.0802612,0.139526,0.199463,0.245728,0.277191,0.30249,0.324432,0.332489,0.315979,0.267242,0.19928,0.131348,0.0783997,0.0470581,0.037323,0.0402832,0.0549011,0.0785217,0.105835,0.131744,0.150757,0.159271,0.157379,0.145508,0.12854,0.115295,0.116394,0.130615,0.15451,0.178528,0.19928,0.214783,0.225586,0.230957,0.224854,0.208069,0.175964,0.13559,0.0928345,0.0571289,0.0299377,0.00933838,-0.0102539,-0.0313416,-0.0549622,-0.0764465,-0.0886536,-0.094696,-0.101074,-0.112366,-0.126099,-0.130127,-0.125427,-0.112213,-0.102356,-0.0991211,-0.103485,-0.111145,-0.121063,-0.131348,-0.146912,-0.168182,-0.192017,-0.218262,-0.241089,-0.262909,-0.283173,-0.303497,-0.323822,-0.342163,-0.360016,-0.370758,-0.368683,-0.348328,-0.307404,-0.256439,-0.204163,-0.158386,-0.115631,-0.0682678,-0.0171204,0.0232849,0.0414124,0.0428772,0.0470581,0.0661011,0.105316,0.1539,0.200684,0.239594,0.27478,0.310608,0.34021,0.348267,0.32135,0.261566,0.183899,0.11261,0.0548401,0.0137024,-0.00878906,-0.0159607,-0.00408936,0.0231018,0.062561,0.107178,0.14328,0.165314,0.171478,0.167175,0.158203,0.15329,0.153168,0.157654,0.166504,0.177521,0.189728,0.203644,0.217712,0.222839,0.219055,0.204224,0.179321,0.148193,0.115845,0.0866394,0.0596008,0.0302124,-0.000213623,-0.032074,-0.0638428,-0.089386,-0.111084,-0.126373,-0.140259,-0.1492,-0.150543,-0.139404,-0.119873,-0.10022,-0.0879822,-0.0831604,-0.0842896,-0.0928345,-0.109924,-0.134491,-0.167267,-0.202881,-0.23645,-0.265167,-0.287598,-0.305115,-0.317261,-0.324097,-0.326324,-0.330292,-0.33667,-0.338409,-0.324493,-0.292145,-0.249542,-0.207458,-0.170685,-0.136932,-0.0956421,-0.0444336,0.00598145,0.0390625,0.0495911,0.0531616,0.0664368,0.0987244,0.142426,0.181488,0.206848,0.226868,0.251068,0.278931,0.293243,0.281616,0.236176,0.171295,0.109253,0.0613403,0.0294495,0.00906372,0.00296021,0.0115967,0.0346375,0.0690613,0.112152,0.15033,0.177307,0.188812,0.187653,0.179474,0.175171,0.17926,0.186188,0.195831,0.203827,0.212769,0.223083,0.234039,0.237244,0.226868,0.206787,0.177246,0.141479,0.103699,0.070343,0.0412903,0.0124817,-0.0160522,-0.0448914,-0.0704041,-0.0921631,-0.107666,-0.121063,-0.13504,-0.147308,-0.154633,-0.150757,-0.138184,-0.121277,-0.109253,-0.101196,-0.0961914,-0.0932312,-0.0973206,-0.110077,-0.131622,-0.156982,-0.184174,-0.209473,-0.234161,-0.258057,-0.28244,-0.302948,-0.317535,-0.329468,-0.339996,-0.347717,-0.345123,-0.324432,-0.289612,-0.246796,-0.204315,-0.169281,-0.134644,-0.0941772,-0.0481262,-0.0105286,0.0119324,0.0205994,0.0318909,0.057251,0.0987244,0.146851,0.191345,0.227203,0.261688,0.291626,0.314575,0.320557,0.296509,0.245972,0.181427,0.122498,0.0770569,0.046051,0.028595,0.0278625,0.0397949,0.0638428,0.0965881,0.130798,0.160217,0.180664,0.188599,0.186035,0.178802,0.174164,0.175964,0.182678,0.190399,0.193298,0.191956,0.194031,0.199127,0.20047,0.190399,0.169403,0.143951,0.11618,0.089386,0.0639038,0.0367737,0.00744629,-0.0239563,-0.053772,-0.0814209,-0.104218,-0.119873,-0.131805,-0.138123,-0.140747,-0.135437,-0.124023,-0.107452,-0.0924072,-0.0838928,-0.0838928,-0.0921631,-0.106567,-0.12738,-0.153961,-0.182953,-0.210815,-0.235504,-0.255859,-0.273224,-0.285858,-0.298737,-0.310089,-0.320343,-0.332367,-0.343689,-0.347931,-0.335785,-0.301819,-0.258057,-0.208862,-0.165039,-0.123505,-0.0768433,-0.0297241,0.0138245,0.0377197,0.0421448,0.0404663,0.0518799,0.0841675,0.129547,0.174164,0.211884,0.247314,0.286255,0.317261,0.332031,0.316864,0.269073,0.200806,0.130463,0.0734863,0.0357666,0.0170593,0.0158386,0.0316772,0.0626831,0.103485,0.144714,0.178314,0.197052,0.198181,0.183502,0.161346,0.14679,0.141602,0.143433,0.149414,0.158539,0.171204,0.186523,0.20282,0.213959,0.208008,0.186188,0.152161,0.117645,0.0819397,0.0480652,0.0158386,-0.0138245,-0.0410767,-0.0630188,-0.0828247,-0.0997925,-0.111023,-0.119263,-0.126923,-0.135437,-0.140411,-0.138,-0.128113,-0.115906,-0.105652,-0.100891,-0.101471,-0.104645,-0.110474,-0.12262,-0.142548,-0.166992,-0.19101,-0.21344,-0.233765,-0.255096,-0.277313,-0.297516,-0.312561,-0.325836,-0.335663,-0.336517,-0.325256,-0.296448,-0.254242,-0.206177,-0.161285,-0.124573,-0.0886536,-0.0490723,-0.011261,0.0146179,0.021759,0.0228882,0.0340881,0.0653076,0.115112,0.16745,0.211548,0.249329,0.289124,0.323914,0.344788,0.335236,0.292694,0.226868,0.154846,0.0934143,0.045166,0.0125427,-0.000396729,0.00497437,0.028656,0.0645752,0.10611,0.141754,0.166779,0.176392,0.172211,0.155792,0.138062,0.127045,0.122681,0.124237,0.129059,0.135651,0.147736,0.166718,0.184448,0.192749,0.185577,0.168671,0.141541,0.112701,0.081604,0.0515442,0.0191345,-0.0147095,-0.0452271,-0.0706787,-0.091217,-0.104492,-0.112701,-0.121063,-0.12677,-0.128723,-0.123352,-0.110931,-0.0971069,-0.0871277,-0.082428,-0.0814819,-0.0846863,-0.0926819,-0.107178,-0.128662,-0.156036,-0.18161,-0.205505,-0.22699,-0.245117,-0.260956,-0.276459,-0.28894,-0.300018,-0.309662,-0.312225,-0.303619,-0.280273,-0.245117,-0.208191,-0.170349,-0.137329,-0.102875,-0.0636292,-0.0268555,-0.00112915,0.0085144,0.0106812,0.0218811,0.0508728,0.0944214,0.139801,0.179993,0.217133,0.256531,0.291412,0.311279,0.306976,0.271149,0.211823,0.143097,0.0827637,0.0357666,0.00274658,-0.0132751,-0.0103455,0.00979614,0.0449829,0.0819397,0.116058,0.141541,0.155304,0.155853,0.147797,0.139465,0.136993,0.138794,0.145721,0.154907,0.163818,0.173035,0.182434,0.192078,0.195038,0.186646,0.168274,0.142487,0.117249,0.0926208,0.0654907,0.0369263,0.00811768,-0.0202026,-0.0489197,-0.0742188,-0.094696,-0.109009,-0.118134,-0.120209,-0.115448,-0.102539,-0.0838928,-0.0632935,-0.045166,-0.0343018,-0.0327454,-0.0404053,-0.0585938,-0.0854492,-0.118195,-0.154022,-0.186249,-0.214569,-0.238922,-0.259735,-0.274902,-0.284973,-0.291748,-0.304047,-0.317596,-0.327789,-0.326782,-0.305786,-0.273712,-0.239532,-0.209473,-0.182892,-0.147522,-0.102631,-0.0532227,-0.0187988,-0.0012207,0.00570679,0.0212708,0.0559082,0.103363,0.150421,0.184784,0.213348,0.245728,0.276794,0.297333,0.292297,0.252289,0.191071,0.123169,0.0667114,0.025238,-0.000457764,-0.0141602,-0.00860596,0.0151062,0.0520935,0.0950317,0.134918,0.164978,0.178406,0.175232,0.159546,0.14389,0.134155,0.131287,0.134033,0.138397,0.146057,0.15979,0.181824,0.205231,0.221008,0.221344,0.205505,0.182159,0.156769,0.12912,0.0969238,0.0602112,0.0241699,-0.00906372,-0.0349121,-0.0519409,-0.061615,-0.0692749,-0.0769958,-0.0808105,-0.0821533,-0.0775146,-0.0692749,-0.0622253,-0.0614014,-0.0658264,-0.0757751,-0.0906067,-0.109863,-0.134705,-0.165924,-0.199188,-0.230804,-0.257599,-0.281494,-0.299744,-0.312012,-0.318939,-0.324646,-0.331146,-0.334106,-0.327454,-0.307587,-0.276398,-0.24176,-0.20874,-0.18161,-0.154785,-0.119995,-0.0773926,-0.0386658,-0.0131531,-0.00128174,0.0105286,0.0366516,0.0787964,0.126984,0.163635,0.18692,0.207123,0.227661,0.248932,0.256927,0.237183,0.190491,0.132629,0.0821533,0.0477905,0.0290527,0.0194092,0.0185852,0.0297241,0.0525513,0.0863037,0.121063,0.149323,0.167847,0.172974,0.167999,0.163147,0.164032,0.172028,0.183289,0.192291,0.196594,0.202484,0.212219,0.226318,0.233551,0.22879,0.211426,0.186249,0.160278,0.135101,0.108917,0.0771179,0.0420227,0.00952148,-0.0201416,-0.0437622,-0.0614929,-0.0754395,-0.0878601,-0.0996094,-0.104767,-0.105988,-0.101288,-0.098053,-0.098053,-0.102692,-0.110077,-0.118408,-0.128876,-0.14389,-0.163757,-0.18866,-0.21402,-0.236053,-0.254364,-0.274048,-0.291809,-0.309875,-0.325104,-0.338074,-0.345306,-0.341003,-0.319885,-0.283905,-0.24176,-0.200806,-0.168182,-0.139923,-0.109589,-0.0775757,-0.0532837,-0.0436401,-0.0464478,-0.041687,-0.0181274,0.028717,0.0847778,0.135712,0.177124,0.215179,0.251282,0.279419,0.291138,0.269257,0.219147,0.156586,0.102539,0.0633545,0.0403442,0.0314026,0.0336914,0.046051,0.0686646,0.100067,0.130615,0.156708,0.170197,0.1698,0.160126,0.1539,0.157318,0.169464,0.184113,0.193817,0.196106,0.196594,0.204437,0.216248,0.222626,0.215851,0.201019,0.181824,0.166046,0.153168,0.134155,0.107178,0.0722961,0.0353088,-0.000274658,-0.0334778,-0.0610657,-0.0841064,-0.102417,-0.112885,-0.118408,-0.11731,-0.110413,-0.10141,-0.0963745,-0.100677,-0.11261,-0.127319,-0.144043,-0.162292,-0.185303,-0.212891,-0.240082,-0.261292,-0.27713,-0.29007,-0.302032,-0.31485,-0.326508,-0.337128,-0.3396,-0.327393,-0.298462,-0.258209,-0.216797,-0.180603,-0.151672,-0.123627,-0.0930176,-0.0653076,-0.04953,-0.0491943,-0.0534973,-0.0448914,-0.0138245,0.0387268,0.0977173,0.147064,0.186188,0.223297,0.256378,0.27774,0.27478,0.238068,0.175507,0.10968,0.0580444,0.0287781,0.0174561,0.0202637,0.0341492,0.0587158,0.0918884,0.130341,0.160675,0.180328,0.182953,0.171539,0.155365,0.146912,0.15329,0.170349,0.189728,0.205383,0.213562,0.223175,0.238586,0.249878,0.24881,0.229218,0.201019,0.172546,0.151825,0.135162,0.114166,0.0861816,0.0545044,0.0255737,-0.00357056,-0.0306091,-0.0576477,-0.0841675,-0.107513,-0.123566,-0.131744,-0.13382,-0.127258,-0.119385,-0.112152,-0.109802,-0.114563,-0.123688,-0.138184,-0.157654,-0.184509,-0.214355,-0.24115,-0.264252,-0.281342,-0.295166,-0.307251,-0.319672,-0.329956,-0.336456,-0.33075,-0.311951,-0.281494,-0.242828,-0.20639,-0.173157,-0.14505,-0.11618,-0.0869751,-0.0646362,-0.0551147,-0.0585327,-0.0602722,-0.0464478,-0.00900269,0.0469055,0.100739,0.147125,0.187988,0.227112,0.26001,0.274963,0.259613,0.208679,0.144165,0.0855103,0.0453186,0.0246887,0.019989,0.0306702,0.0545044,0.0875244,0.126862,0.160797,0.183289,0.192688,0.187256,0.169861,0.153839,0.150146,0.160065,0.180084,0.20343,0.221008,0.232971,0.243713,0.253571,0.255585,0.242096,0.214783,0.179932,0.150421,0.130615,0.115234,0.0972595,0.0728149,0.0476379,0.0212097,-0.00146484,-0.0237732,-0.0477905,-0.0763245,-0.103882,-0.122681,-0.131073,-0.132812,-0.129791,-0.126648,-0.12558,-0.126984,-0.130951,-0.140411,-0.156189,-0.179077,-0.207184,-0.233978,-0.256989,-0.276642,-0.293915,-0.311432,-0.329865,-0.344513,-0.352234,-0.347137,-0.325317,-0.289673,-0.247192,-0.206116,-0.168793,-0.135834,-0.103882,-0.0771179,-0.0628967,-0.0636902,-0.0767212,-0.0836182,-0.0721436,-0.0371094,0.0144348,0.0697327,0.122223,0.175446,0.226929,0.266998,0.281677,0.264648,0.21283,0.148071,0.0863037,0.0435486,0.0221558,0.0158997,0.0285339,0.0553589,0.0947571,0.141602,0.181824,0.204987,0.207794,0.194489,0.170349,0.150208,0.144379,0.151947,0.168274,0.190887,0.213837,0.236511,0.256989,0.269745,0.268066,0.249542,0.21933,0.183899,0.153625,0.13089,0.113708,0.09375,0.0710144,0.0488586,0.0297241,0.0105286,-0.0106812,-0.0371094,-0.0661621,-0.093689,-0.114777,-0.127533,-0.133759,-0.135498,-0.135498,-0.136444,-0.138336,-0.1427,-0.149872,-0.16275,-0.182831,-0.209534,-0.238525,-0.26123,-0.278809,-0.295105,-0.313843,-0.334167,-0.351837,-0.356995,-0.346985,-0.320007,-0.278931,-0.234772,-0.192017,-0.152771,-0.12027,-0.0910034,-0.0691833,-0.0606689,-0.0690002,-0.0852966,-0.0939026,-0.0798035,-0.0390625,0.0203247,0.0808105,0.136597,0.189484,0.239471,0.27652,0.286713,0.258606,0.19632,0.121338,0.0571899,0.0197449,0.0032959,0.00827026,0.0257874,0.0595398,0.106506,0.158722,0.201813,0.220551,0.215912,0.192902,0.163574,0.140808,0.133484,0.140411,0.158051,0.182495,0.210876,0.23819,0.264832,0.28183,0.28302,0.263763,0.228943,0.189819,0.153778,0.128448,0.105774,0.0844421,0.0602722,0.0379944,0.0163879,-0.00314331,-0.0236206,-0.0463867,-0.0698547,-0.0925598,-0.111023,-0.122223,-0.128387,-0.13208,-0.135162,-0.139191,-0.143433,-0.15155,-0.163239,-0.178802,-0.197998,-0.221832,-0.246796,-0.271027,-0.295105,-0.315521,-0.333496,-0.346375,-0.351959,-0.343353,-0.31781,-0.276245,-0.226196,-0.181,-0.14624,-0.120056,-0.0961914,-0.0787354,-0.0735474,-0.0841064,-0.103638,-0.113037,-0.0996094,-0.0556335,0.00592041,0.0724792,0.134766,0.19342,0.244904,0.27713,0.281006,0.245117,0.178131,0.0995483,0.0316772,-0.0117493,-0.0276489,-0.0172424,0.0119324,0.0551147,0.108582,0.163971,0.208344,0.233307,0.233093,0.21109,0.174896,0.143494,0.127045,0.127991,0.142944,0.162811,0.188385,0.217865,0.249664,0.274506,0.283569,0.272614,0.24585,0.210754,0.174042,0.140198,0.10611,0.0742188,0.0449829,0.020752,0.00012207,-0.0191956,-0.0328064,-0.04422,-0.0535583,-0.0636292,-0.0715332,-0.0776672,-0.0791321,-0.0816956,-0.0905457,-0.106903,-0.126923,-0.14859,-0.17041,-0.192505,-0.214447,-0.238525,-0.261353,-0.282104,-0.301147,-0.319885,-0.338806,-0.356262,-0.360291,-0.342438,-0.304962,-0.259216,-0.21759,-0.182892,-0.154175,-0.125641,-0.10022,-0.0862427,-0.0917358,-0.109009,-0.120605,-0.109131,-0.0710754,-0.0145569,0.0472412,0.106842,0.167847,0.226715,0.270081,0.284241,0.259796,0.198669,0.118805,0.0420837,-0.0148315,-0.0428162,-0.0466309,-0.0259705,0.011261,0.0624084,0.119598,0.172089,0.208344,0.220612,0.207245,0.175781,0.145844,0.129456,0.129883,0.141022,0.154968,0.174225,0.199463,0.231537,0.261078,0.278412,0.276123,0.256866,0.226379,0.197723,0.17215,0.145721,0.114716,0.0800171,0.0476379,0.0205383,-0.00247192,-0.0205994,-0.0366516,-0.0531006,-0.0669861,-0.0747681,-0.0730896,-0.0634155,-0.053833,-0.053833,-0.0600586,-0.0740967,-0.0943604,-0.12207,-0.154846,-0.192749,-0.230743,-0.267334,-0.297394,-0.322479,-0.341949,-0.359741,-0.371887,-0.368744,-0.343903,-0.303711,-0.257874,-0.215851,-0.181,-0.155701,-0.135254,-0.120209,-0.116638,-0.127197,-0.144287,-0.153625,-0.137054,-0.0906677,-0.0223389,0.0555115,0.13028,0.199005,0.256195,0.292969,0.301544,0.273438,0.205109,0.115295,0.0290527,-0.0346375,-0.0663757,-0.0663147,-0.0424194,-0.00222778,0.048584,0.104095,0.155579,0.188812,0.199341,0.179993,0.144714,0.112885,0.100464,0.107666,0.126434,0.151947,0.17926,0.208008,0.23819,0.264435,0.275787,0.267334,0.244232,0.213348,0.188049,0.170532,0.153961,0.134644,0.111694,0.0910034,0.0686646,0.0467834,0.0232849,-0.00323486,-0.0332336,-0.0592041,-0.0759888,-0.0804749,-0.0779114,-0.0718079,-0.0681763,-0.0657654,-0.0673828,-0.0779114,-0.0997925,-0.130219,-0.170746,-0.216248,-0.265656,-0.31189,-0.352966,-0.386047,-0.409668,-0.411499,-0.387451,-0.338745,-0.278534,-0.220276,-0.169861,-0.132233,-0.108124,-0.0927429,-0.0944214,-0.112488,-0.146454,-0.176849,-0.183167,-0.153778,-0.0920105,-0.0103455,0.0743713,0.158722,0.235901,0.295593,0.324249,0.30954,0.245789,0.149475,0.0508118,-0.028656,-0.0759888,-0.0898132,-0.0751648,-0.0377808,0.0142822,0.0777893,0.137451,0.181274,0.197662,0.185791,0.14975,0.108124,0.0797424,0.0722046,0.08255,0.107849,0.139343,0.173706,0.212677,0.252747,0.281677,0.287537,0.269592,0.236237,0.202881,0.177582,0.1586,0.138916,0.115906,0.0940247,0.0742188,0.0569763,0.0423584,0.0266418,0.0050354,-0.0172424,-0.036377,-0.0478516,-0.0524902,-0.0557861,-0.0580444,-0.065918,-0.0779114,-0.0953674,-0.116852,-0.140411,-0.164764,-0.194305,-0.230011,-0.268738,-0.306122,-0.341278,-0.369873,-0.383423,-0.374786,-0.342224,-0.294708,-0.242096,-0.190216,-0.147064,-0.113831,-0.0928955,-0.0895386,-0.105225,-0.134308,-0.163696,-0.17215,-0.150879,-0.101959,-0.032959,0.0449829,0.130066,0.211823,0.276398,0.308746,0.301086,0.245239,0.158325,0.0626221,-0.0198059,-0.0709534,-0.0910645,-0.0779114,-0.0397949,0.0153809,0.0802612,0.140869,0.183289,0.198181,0.17981,0.137787,0.089325,0.0575256,0.0461121,0.053833,0.0750427,0.105774,0.144165,0.187469,0.231018,0.260345,0.267517,0.251953,0.2229,0.192902,0.169067,0.149475,0.131226,0.113281,0.0958557,0.0791931,0.0658264,0.0524292,0.0375061,0.0182495,-0.00280762,-0.019928,-0.0299377,-0.0314026,-0.0283813,-0.029541,-0.0350952,-0.0503235,-0.0751648,-0.105042,-0.140137,-0.178986,-0.220337,-0.265106,-0.306732,-0.340546,-0.361542,-0.365723,-0.350067,-0.318817,-0.273041,-0.22644,-0.183441,-0.147247,-0.121338,-0.106781,-0.107056,-0.124908,-0.153503,-0.179321,-0.184692,-0.160553,-0.108582,-0.0377808,0.0422058,0.123352,0.201965,0.264313,0.295319,0.286041,0.235504,0.153687,0.0630798,-0.0157776,-0.0697937,-0.0949707,-0.0875854,-0.052948,0.0017395,0.0656433,0.12558,0.168396,0.185455,0.173096,0.136108,0.0878601,0.0473938,0.0274658,0.0275269,0.0435486,0.0740356,0.113281,0.15799,0.202423,0.235992,0.24646,0.236115,0.21109,0.18042,0.155914,0.136841,0.121002,0.106995,0.0971069,0.0885315,0.0810242,0.0701904,0.0576477,0.040802,0.0196533,-0.00161743,-0.0171204,-0.0257874,-0.0259094,-0.0262451,-0.028717,-0.0380554,-0.0556335,-0.0819397,-0.116455,-0.154022,-0.198517,-0.248383,-0.296997,-0.335571,-0.361359,-0.36438,-0.344696,-0.306732,-0.253296,-0.197174,-0.147247,-0.110931,-0.0873718,-0.0791321,-0.0869141,-0.109467,-0.14035,-0.170746,-0.182617,-0.161621,-0.107056,-0.0324097,0.0502625,0.131012,0.204163,0.26062,0.287598,0.275726,0.220551,0.134766,0.0392761,-0.0413513,-0.0923462,-0.109863,-0.0974426,-0.0598755,-0.00415039,0.0606079,0.123016,0.168335,0.187988,0.175842,0.137451,0.0867004,0.0428772,0.0147095,0.00912476,0.0203247,0.0491333,0.0895386,0.138336,0.185852,0.223969,0.242035,0.236237,0.211334,0.175049,0.141418,0.113037,0.0899353,0.069458,0.0561218,0.0497437,0.0498657,0.0556335,0.0610046,0.0585938,0.0482483,0.0316772,0.0143738,0.00167847,-0.00958252,-0.0240173,-0.0434875,-0.0663147,-0.0929565,-0.119537,-0.150208,-0.182678,-0.222076,-0.26416,-0.302643,-0.329803,-0.337128,-0.318939,-0.282562,-0.234039,-0.184509,-0.140259,-0.106567,-0.0816956,-0.0672607,-0.0700684,-0.0931702,-0.126587,-0.156311,-0.16391,-0.138916,-0.0866394,-0.0175781,0.0536194,0.125977,0.193237,0.246124,0.269684,0.254761,0.197174,0.114777,0.0287781,-0.040741,-0.0856323,-0.103638,-0.09552,-0.0645752,-0.0128784,0.0487366,0.108917,0.152344,0.169952,0.159668,0.12558,0.08255,0.0420227,0.0128784,-0.00167847,-0.000396729,0.0191345,0.0546265,0.10202,0.151093,0.191895,0.214966,0.220276,0.209259,0.191345,0.166443,0.134979,0.102966,0.0729675,0.0514832,0.0378418,0.0326843,0.0344238,0.0357666,0.036377,0.0340271,0.0289307,0.0212708,0.0132141,0,-0.0184021,-0.0414124,-0.0687256,-0.0993347,-0.133636,-0.169342,-0.208069,-0.250275,-0.290009,-0.319824,-0.333099,-0.325256,-0.295441,-0.247711,-0.190552,-0.131348,-0.0795288,-0.0425415,-0.0198059,-0.0177307,-0.038269,-0.0753784,-0.119598,-0.150543,-0.1539,-0.124298,-0.0657654,0.0083313,0.0873108,0.163971,0.229004,0.269867,0.276855,0.239868,0.167389,0.0804138,-0.00515747,-0.070343,-0.110077,-0.120148,-0.102753,-0.0635071,-0.00543213,0.0561829,0.109528,0.143036,0.151215,0.135712,0.104645,0.0700073,0.0379333,0.0145569,0.00631714,0.0115356,0.027771,0.0561829,0.0927429,0.128113,0.158875,0.178864,0.187805,0.187042,0.178864,0.164093,0.140411,0.112274,0.0831604,0.0579834,0.0369873,0.0246277,0.0175171,0.0128174,0.00985718,0.0083313,0.00839233,0.00457764,-0.00363159,-0.0204163,-0.0458984,-0.0786743,-0.115173,-0.152435,-0.188995,-0.22403,-0.257721,-0.286255,-0.305115,-0.308929,-0.293488,-0.259888,-0.212219,-0.162689,-0.116241,-0.0741577,-0.0387268,-0.0120239,-0.000793457,-0.0113525,-0.0391846,-0.0721436,-0.0927429,-0.0921631,-0.0674438,-0.0246887,0.0292664,0.0883179,0.151825,0.208344,0.240692,0.239014,0.195435,0.126312,0.0479126,-0.0218201,-0.0724182,-0.101013,-0.103424,-0.0820923,-0.0363159,0.0246887,0.0862427,0.131958,0.154358,0.146637,0.116974,0.0761719,0.0368347,0.00631714,-0.0109253,-0.0108032,0.00390625,0.0352478,0.0759888,0.119141,0.154968,0.17215,0.172882,0.157715,0.135315,0.111542,0.0892029,0.0670471,0.0516052,0.0396118,0.0357056,0.0378418,0.0431519,0.0462341,0.0432129,0.0361023,0.0263672,0.0172424,0.00598145,-0.00799561,-0.0284424,-0.0553589,-0.0898132,-0.128784,-0.170288,-0.213104,-0.254913,-0.29364,-0.322906,-0.333374,-0.317993,-0.278595,-0.220154,-0.159882,-0.107056,-0.0642395,-0.0317383,-0.00772095,0.000396729,-0.0151062,-0.0495911,-0.0871277,-0.10321,-0.0881958,-0.0440369,0.0128174,0.0744934,0.137726,0.200287,0.254089,0.28009,0.266907,0.21228,0.132477,0.0478516,-0.0249634,-0.0785828,-0.109741,-0.11496,-0.0942383,-0.0534363,0.00241089,0.0578613,0.103149,0.129547,0.132904,0.112885,0.0794678,0.0440369,0.0149536,-0.00363159,-0.0128174,-0.00918579,0.00604248,0.0379944,0.0777893,0.116791,0.143158,0.155975,0.157104,0.152771,0.144104,0.127991,0.104156,0.0759888,0.0479736,0.0271301,0.0134888,0.00637817,0.00167847,0.000457764,-0.0012207,0,-0.000946045,-0.00161743,-0.00912476,-0.0259705,-0.0518799,-0.0855713,-0.124023,-0.16449,-0.206665,-0.250336,-0.290741,-0.321899,-0.32962,-0.310211,-0.265045,-0.209412,-0.155243,-0.104034,-0.057373,-0.0128174,0.0177307,0.0238342,0.00396729,-0.0335693,-0.0647583,-0.0753784,-0.0606079,-0.0266418,0.0195312,0.0764465,0.143555,0.212158,0.26593,0.288879,0.271088,0.217194,0.142487,0.0643616,-0.00369263,-0.0553589,-0.0873718,-0.0986633,-0.086853,-0.0539551,-0.00592041,0.0444946,0.0832214,0.101135,0.0951843,0.0711365,0.0427551,0.0184021,-0.000274658,-0.0131531,-0.0184631,-0.0114136,0.0104675,0.0443115,0.0802612,0.108521,0.124573,0.131287,0.132477,0.130066,0.124908,0.11377,0.0992737,0.0805969,0.0637512,0.0499878,0.0394592,0.0296021,0.0198059,0.00894165,-0.00189209,-0.0124817,-0.0241089,-0.0378418,-0.0557861,-0.0798035,-0.107056,-0.14035,-0.175293,-0.212433,-0.249725,-0.283783,-0.305847,-0.308807,-0.288605,-0.246735,-0.193359,-0.14035,-0.0910034,-0.046051,-0.00650024,0.0194092,0.0256958,0.00933838,-0.0179138,-0.0390015,-0.0410156,-0.0237732,0.0108643,0.0534363,0.105835,0.1633,0.218719,0.257446,0.266388,0.239349,0.184174,0.115631,0.0468445,-0.0103455,-0.0509949,-0.0718689,-0.0723572,-0.0527649,-0.019989,0.0190735,0.0533447,0.0754395,0.0789185,0.0618286,0.0339661,0.00491333,-0.0167847,-0.0274658,-0.028656,-0.0206604,-0.00408936,0.0224304,0.0546875,0.0845642,0.104034,0.108673,0.101685,0.0927429,0.0851746,0.0801392,0.0740967,0.0681763,0.0644226,0.0658264,0.0701294,0.073822,0.0697327,0.0569153,0.0371704,0.0153809,-0.00817871,-0.0336914,-0.0600586,-0.0867004,-0.111877,-0.136108,-0.161011,-0.188995,-0.217865,-0.24765,-0.272705,-0.287384,-0.286255,-0.266113,-0.231201,-0.187378,-0.138916,-0.0906677,-0.0420837,-0.0020752,0.0238953,0.0316772,0.0216064,0.00778198,0.000274658,0.00933838,0.0328979,0.0670471,0.108459,0.156311,0.20639,0.249664,0.271027,0.260345,0.217926,0.15686,0.0892639,0.0282593,-0.0211487,-0.0556335,-0.0714722,-0.0675964,-0.045105,-0.0126038,0.0218201,0.046051,0.0570374,0.0508118,0.0314026,0.00692749,-0.0195923,-0.039856,-0.0516052,-0.0508118,-0.040741,-0.0187378,0.0138245,0.0498047,0.0833435,0.107788,0.11908,0.117798,0.111145,0.0974426,0.0806885,0.0588074,0.0375977,0.0195923,0.012207,0.0126953,0.0203247,0.0264587,0.0315552,0.028717,0.0218201,0.00582886,-0.0184631,-0.053009,-0.0950317,-0.140472,-0.181671,-0.220062,-0.250275,-0.27243,-0.280762,-0.272827,-0.246246,-0.205444,-0.160553,-0.118134,-0.0810242,-0.0509949,-0.0233459,-0.00549316,0.00140381,-0.00543213,-0.015625,-0.0195923,-0.00616455,0.0236206,0.0644226,0.108337,0.153351,0.199738,0.242371,0.269012,0.269867,0.239197,0.187805,0.127777,0.069458,0.0225525,-0.00946045,-0.0263672,-0.028717,-0.0175171,0.00234985,0.0265808,0.0457153,0.0523376,0.0421448,0.0159607,-0.0169678,-0.0447083,-0.0617371,-0.0678406,-0.0657043,-0.0583801,-0.0431519,-0.0178528,0.0129395,0.0415344,0.0592651,0.0653076,0.0645752,0.065155,0.0673218,0.0697937,0.068512,0.0626221,0.0563049,0.0505981,0.0443726,0.0366516,0.0236816,0.0067749,-0.0123596,-0.0315552,-0.0499268,-0.066925,-0.0820312,-0.0997314,-0.121338,-0.147858,-0.176971,-0.208344,-0.236908,-0.260559,-0.270752,-0.261475,-0.233032,-0.188385,-0.137512,-0.0846863,-0.0361633,0.00778198,0.041626,0.0584717,0.0547791,0.0353699,0.0175171,0.0118713,0.0256348,0.053894,0.0930176,0.138336,0.188721,0.238678,0.273621,0.282013,0.257446,0.206177,0.142029,0.0779114,0.024353,-0.012085,-0.028656,-0.0267944,-0.0100708,0.0177917,0.0469055,0.0696106,0.078064,0.0672607,0.0386047,-0.000335693,-0.0377808,-0.0628967,-0.0754395,-0.0763855,-0.070282,-0.0561218,-0.0341492,-0.0067749,0.0189819,0.0365906,0.0437012,0.0411987,0.0361023,0.0331421,0.0347595,0.0354309,0.0350342,0.0336914,0.0317383,0.0305481,0.0256348,0.0177917,0.00442505,-0.0144348,-0.0369263,-0.06073,-0.0831604,-0.102753,-0.123352,-0.14563,-0.172302,-0.201141,-0.230194,-0.255524,-0.26767,-0.265503,-0.247253,-0.215118,-0.175629,-0.128662,-0.0802002,-0.0324707,0.0136108,0.0458984,0.0599976,0.0565186,0.0466309,0.0424194,0.0531616,0.0765076,0.106995,0.143951,0.185242,0.232544,0.274719,0.299286,0.295654,0.262695,0.208923,0.148071,0.0926208,0.0478516,0.0151062,-0.0032959,-0.00894165,-0.00146484,0.0151062,0.0342407,0.0490723,0.0499268,0.0349121,0.00390625,-0.028656,-0.0521545,-0.0623474,-0.065094,-0.0640259,-0.0592041,-0.0475159,-0.0259705,0.00189209,0.0231018,0.0344849,0.0336304,0.0312195,0.0334778,0.0396729,0.0450439,0.04422,0.0410156,0.0362549,0.0315552,0.0267944,0.0183105,-0.00012207,-0.0263672,-0.0567017,-0.0895386,-0.119141,-0.145447,-0.170685,-0.195099,-0.218994,-0.242767,-0.26123,-0.276459,-0.280762,-0.272705,-0.250549,-0.21524,-0.171143,-0.124298,-0.0775146,-0.0327454,0.00924683,0.0438843,0.0626831,0.0635071,0.0542297,0.0482483,0.0571899,0.0783386,0.110352,0.147522,0.190216,0.240265,0.287384,0.31839,0.321014,0.291901,0.237518,0.170959,0.10791,0.0552979,0.0181885,-0.0012207,-0.00228882,0.0131531,0.0377808,0.0679932,0.0913391,0.102081,0.0889282,0.0549622,0.00918579,-0.03302,-0.0656433,-0.086792,-0.0976562,-0.0996704,-0.0888062,-0.0630188,-0.0263062,0.0110779,0.0379333,0.0498047,0.0498047,0.0461731,0.0422058,0.037323,0.0267029,0.0155029,0.00778198,0.00469971,0.00799561,0.0124207,0.0109253,-0.000671387,-0.0222778,-0.0522156,-0.0879822,-0.127441,-0.169525,-0.212158,-0.251282,-0.284973,-0.309814,-0.325592,-0.325378,-0.307526,-0.276306,-0.232635,-0.190002,-0.147522,-0.108185,-0.0686646,-0.0285339,0.00650024,0.0317993,0.0453186,0.0555115,0.0719604,0.101135,0.137726,0.173553,0.206787,0.237579,0.269409,0.296997,0.311951,0.306061,0.275726,0.229614,0.177246,0.131805,0.0957642,0.0706177,0.0531006,0.0426941,0.0397339,0.0412903,0.0487366,0.0535583,0.0495911,0.0293884,-0.0015564,-0.0300598,-0.0477905,-0.0527649,-0.0493164,-0.0452271,-0.0393372,-0.0292053,-0.012085,0.00958252,0.0275269,0.0349121,0.0312195,0.0259705,0.024231,0.028656,0.0350342,0.036499,0.0354919,0.0302734,0.0272522,0.0259705,0.0214844,0.00631714,-0.021759,-0.0597229,-0.100952,-0.142761,-0.181671,-0.221161,-0.259064,-0.29483,-0.321014,-0.336853,-0.334564,-0.315857,-0.28183,-0.239136,-0.19397,-0.150482,-0.112274,-0.0795288,-0.0502014,-0.028717,-0.0147705,-0.00738525,-6.10352e-05,0.0184631,0.0550232,0.104767,0.15979,0.208923,0.251068,0.287872,0.313507,0.32135,0.305634,0.266388,0.214355,0.161682,0.118988,0.0908813,0.0806885,0.0814209,0.0907288,0.100006,0.105164,0.105316,0.098053,0.0818176,0.0526733,0.0119324,-0.0298767,-0.0603943,-0.0700684,-0.0646973,-0.0556946,-0.0479126,-0.0412903,-0.0291138,-0.0103455,0.00698853,0.015564,0.0144348,0.012085,0.0148926,0.0274658,0.0437012,0.0559692,0.0605469,0.0585327,0.0535583,0.0484009,0.0391846,0.0235596,-0.000396729,-0.0311279,-0.0665894,-0.103699,-0.142151,-0.183014,-0.226196,-0.275635,-0.324432,-0.367004,-0.388458,-0.38269,-0.351349,-0.30188,-0.245117,-0.186707,-0.132751,-0.0808105,-0.0350342,-0.00390625,0.00665283,0.0017395,-0.0071106,-0.00112915,0.0265198,0.0755005,0.134766,0.198395,0.261292,0.317993,0.361084,0.37854,0.362091,0.310822,0.23645,0.158936,0.0898743,0.0432129,0.0202026,0.0181885,0.0313416,0.0532227,0.0777893,0.100464,0.109741,0.10202,0.0738831,0.0314026,-0.0122681,-0.0463867,-0.0636292,-0.0656433,-0.0578613,-0.0447693,-0.0283203,-0.00592041,0.0171204,0.0350342,0.0418091,0.0391846,0.0313416,0.0249634,0.021759,0.020752,0.0201416,0.0209351,0.020874,0.0211487,0.0218201,0.0198059,0.0112,-0.00442505,-0.0297241,-0.0626221,-0.100464,-0.141418,-0.183563,-0.226715,-0.270142,-0.311554,-0.343231,-0.354767,-0.340424,-0.302032,-0.249481,-0.195038,-0.146912,-0.104889,-0.0679932,-0.0344238,-0.0149536,-0.0154419,-0.028595,-0.0400085,-0.0279846,0.0126038,0.0732117,0.138,0.201202,0.263031,0.320618,0.363983,0.379608,0.35968,0.302307,0.228058,0.155579,0.0967712,0.0567017,0.037262,0.0354309,0.0479126,0.065979,0.0860291,0.100128,0.101288,0.0840149,0.0455627,-0.00476074,-0.0499878,-0.0788574,-0.0881958,-0.0832214,-0.0714111,-0.0574646,-0.0387878,-0.0124207,0.0140991,0.0324707,0.0359802,0.0296631,0.0225525,0.0220947,0.0269165,0.032135,0.0368347,0.0390625,0.0392761,0.0366516,0.0332336,0.0235596,0.00537109,-0.0265198,-0.0643005,-0.105438,-0.146393,-0.184906,-0.221344,-0.259003,-0.295319,-0.330078,-0.346252,-0.33786,-0.305054,-0.259338,-0.211761,-0.168732,-0.126434,-0.0810852,-0.0359802,-0.000946045,0.0118103,0.0050354,-0.00341797,0.00375366,0.0359802,0.0837708,0.133484,0.183563,0.234772,0.289948,0.338531,0.368347,0.363373,0.321228,0.256378,0.190002,0.132294,0.0894775,0.057251,0.0380554,0.0317993,0.0381775,0.0519409,0.0678406,0.0776672,0.0714722,0.0477905,0.0114746,-0.0213318,-0.0434875,-0.0535583,-0.0557861,-0.0568542,-0.0585938,-0.053833,-0.0384521,-0.0170593,0.000549316,0.00524902,0.00302124,0.00323486,0.0106812,0.0257874,0.0344849,0.0368347,0.0311279,0.0200806,0.00692749,-0.00515747,-0.0195312,-0.0406799,-0.0679321,-0.0994568,-0.129211,-0.157104,-0.18512,-0.213226,-0.245789,-0.282684,-0.316376,-0.332306,-0.318207,-0.278534,-0.230194,-0.184296,-0.145294,-0.105316,-0.0596008,-0.0137634,0.0146179,0.0147095,-0.00549316,-0.019989,-0.00738525,0.0360413,0.0926819,0.148315,0.199463,0.254364,0.311615,0.360077,0.38324,0.365784,0.312164,0.242554,0.179871,0.131134,0.100677,0.08255,0.0757141,0.0788574,0.0881958,0.101288,0.112091,0.10968,0.0862427,0.0387878,-0.016449,-0.0609436,-0.0842285,-0.0880432,-0.0816956,-0.073761,-0.0681763,-0.0544434,-0.0298767,-0.00201416,0.0148315,0.011261,-0.00308228,-0.012085,-0.0101929,0.00112915,0.0104065,0.0134888,0.0123596,0.00805664,0.0050354,0.00201416,-0.00811768,-0.0314636,-0.0693359,-0.113892,-0.15799,-0.198517,-0.237244,-0.274506,-0.31369,-0.352081,-0.375122,-0.36792,-0.326508,-0.264923,-0.205841,-0.15979,-0.122894,-0.0842896,-0.0404053,-0.00524902,0.00463867,-0.0124817,-0.0334167,-0.029541,0.0109253,0.0764465,0.146393,0.210205,0.271881,0.333557,0.388,0.419067,0.411346,0.361877,0.287445,0.213226,0.154785,0.11853,0.102753,0.0999451,0.105713,0.116119,0.126526,0.132355,0.127258,0.104706,0.0580444,-0.00247192,-0.0565186,-0.0864563,-0.0897217,-0.074707,-0.0552368,-0.0405273,-0.0292664,-0.0124207,0.00793457,0.017395,0.0100708,-0.0110779,-0.0297852,-0.0343628,-0.0228882,-0.00637817,0.00692749,0.0152283,0.0171204,0.012207,0.00375366,-0.0139465,-0.041748,-0.081543,-0.129608,-0.177521,-0.221741,-0.258209,-0.290894,-0.325104,-0.361816,-0.390564,-0.392487,-0.360535,-0.302155,-0.238464,-0.182617,-0.133484,-0.0879822,-0.0404663,-0.00268555,0.00805664,-0.00973511,-0.0404053,-0.0570374,-0.0404663,0.00845337,0.0745544,0.146729,0.223236,0.301483,0.372711,0.420624,0.432159,0.397919,0.328796,0.247864,0.176971,0.127655,0.102478,0.100067,0.111481,0.133698,0.160004,0.184296,0.195648,0.18457,0.143555,0.0786743,0.0128784,-0.0357666,-0.0617371,-0.0671082,-0.0610046,-0.0517578,-0.0396729,-0.0204773,0.00592041,0.0245056,0.0271912,0.012146,-0.00637817,-0.0167847,-0.0147095,-0.0065918,-0.00100708,-0.000396729,-0.0062561,-0.0148315,-0.0239563,-0.0349121,-0.058197,-0.0942383,-0.137787,-0.183105,-0.224365,-0.262482,-0.296326,-0.334564,-0.373169,-0.40036,-0.401367,-0.368256,-0.312103,-0.253021,-0.20047,-0.153442,-0.104706,-0.0553589,-0.0185242,-0.00979614,-0.0312805,-0.061554,-0.0708618,-0.0443726,0.0114746,0.0797424,0.14975,0.223419,0.300629,0.36792,0.407532,0.406128,0.358398,0.281219,0.201019,0.137909,0.0993958,0.0848999,0.0915527,0.11377,0.144043,0.17572,0.19986,0.20993,0.193298,0.146118,0.0779114,0.0136108,-0.0283813,-0.0406799,-0.0330811,-0.0179138,-0.000671387,0.0166321,0.0424805,0.0710144,0.0885315,0.0820312,0.0578003,0.0302734,0.0141602,0.0127563,0.0185852,0.0185242,0.0128784,0.00222778,-0.0104065,-0.0233459,-0.0413513,-0.0708618,-0.115448,-0.16861,-0.221069,-0.268005,-0.309662,-0.347992,-0.391144,-0.433167,-0.457184,-0.445862,-0.395569,-0.324158,-0.251831,-0.186646,-0.125763,-0.0657043,-0.00979614,0.0227661,0.0188599,-0.0142212,-0.0502625,-0.0639648,-0.0385132,0.0128784,0.079071,0.152557,0.230957,0.310669,0.376984,0.410889,0.400482,0.341217,0.253235,0.163239,0.0932922,0.0474548,0.0293884,0.0327454,0.0561829,0.0929565,0.135376,0.172089,0.190735,0.180756,0.140472,0.0855713,0.0334778,0.00167847,-0.00933838,-0.00576782,0.00442505,0.0152283,0.0306702,0.053772,0.0806885,0.0963745,0.094635,0.0787354,0.0649109,0.0585938,0.0628967,0.0661621,0.0629578,0.0505981,0.0293884,0.00564575,-0.0170593,-0.0434265,-0.0794678,-0.125763,-0.175049,-0.223175,-0.266907,-0.307739,-0.349945,-0.396179,-0.438141,-0.455841,-0.436188,-0.383972,-0.319153,-0.256927,-0.199524,-0.13974,-0.0780029,-0.0271912,-0.00524902,-0.0191345,-0.0524292,-0.0761108,-0.065979,-0.0215454,0.0432129,0.113495,0.191742,0.275513,0.357788,0.415924,0.43103,0.393433,0.312775,0.215912,0.128723,0.0672607,0.0326233,0.0201416,0.0292053,0.0579834,0.0996094,0.14505,0.174377,0.176392,0.145844,0.0892029,0.0292664,-0.0151672,-0.0362549,-0.0381165,-0.028717,-0.0123596,0.0109253,0.0434265,0.07901,0.108856,0.118988,0.108459,0.0881348,0.0740967,0.0708618,0.072876,0.0719604,0.0631714,0.0499878,0.0317993,0.012085,-0.0110168,-0.0424194,-0.0879822,-0.144897,-0.202148,-0.254242,-0.297394,-0.3396,-0.384705,-0.426788,-0.452026,-0.440094,-0.391632,-0.323364,-0.256653,-0.201813,-0.147919,-0.0885315,-0.0298767,0.00213623,-0.00592041,-0.0389404,-0.0697327,-0.0706177,-0.0371094,0.0191956,0.0854492,0.157257,0.239258,0.324646,0.393372,0.422028,0.399689,0.333557,0.242706,0.151764,0.0771179,0.0283813,0.00408936,0.000946045,0.0179749,0.0531616,0.100067,0.141754,0.161682,0.15094,0.111755,0.0604858,0.0144348,-0.0117493,-0.0183105,-0.0120239,-0.00308228,0.011261,0.0340881,0.065979,0.098938,0.11792,0.118256,0.105713,0.0942383,0.0919495,0.0969238,0.0984497,0.0879211,0.065155,0.0368347,0.0065918,-0.0256348,-0.0645752,-0.110931,-0.164764,-0.220001,-0.268066,-0.307404,-0.340424,-0.375519,-0.411224,-0.434387,-0.429291,-0.392487,-0.333099,-0.271759,-0.214844,-0.160736,-0.103973,-0.0457764,-0.00558472,-0.000274658,-0.0231018,-0.0505981,-0.0545044,-0.0269775,0.0215454,0.0828857,0.151215,0.228119,0.308411,0.376312,0.409424,0.395905,0.338348,0.252899,0.165497,0.0913391,0.0399475,0.0105286,0.003479,0.017395,0.0511475,0.0978699,0.143219,0.165253,0.15744,0.117798,0.0669861,0.020813,-0.00933838,-0.0233459,-0.0232849,-0.0143738,0.00576782,0.0358276,0.0738831,0.110352,0.131744,0.13324,0.12088,0.106384,0.0966492,0.0910645,0.0840149,0.0705261,0.0516663,0.0283813,0.00497437,-0.0214844,-0.0541077,-0.0969849,-0.148071,-0.202637,-0.256256,-0.304565,-0.347992,-0.390015,-0.427521,-0.450012,-0.442841,-0.402374,-0.3396,-0.273438,-0.213348,-0.156708,-0.098053,-0.0422974,-0.0062561,-0.00564575,-0.0313416,-0.0605469,-0.0657654,-0.0418701,0.00280762,0.0618896,0.129883,0.208801,0.291962,0.363647,0.401886,0.393921,0.340759,0.260223,0.171967,0.0960388,0.0390015,0.00665283,-0.00436401,0.0062561,0.0355835,0.0789185,0.125977,0.153625,0.151276,0.119812,0.0729675,0.0310669,0.00396729,-0.0062561,-0.00415039,0.0067749,0.0256348,0.0565796,0.0963135,0.136108,0.159882,0.164093,0.154633,0.141876,0.131287,0.126312,0.118195,0.106384,0.0860291,0.0606079,0.0309448,-0.00357056,-0.0478516,-0.103882,-0.171143,-0.24295,-0.310425,-0.365997,-0.409424,-0.443176,-0.469086,-0.474792,-0.450958,-0.392578,-0.316193,-0.244171,-0.185699,-0.137451,-0.0939026,-0.0514221,-0.0273132,-0.0298767,-0.0547791,-0.0765686,-0.0714111,-0.0326843,0.025238,0.0934143,0.163757,0.237061,0.307587,0.359344,0.375061,0.348053,0.282227,0.196716,0.111938,0.0431519,-0.00262451,-0.0244446,-0.0231628,0.000946045,0.0406799,0.0914001,0.138,0.165497,0.164093,0.133301,0.0891418,0.0463867,0.016571,0.000396729,-0.00256348,0.003479,0.0226746,0.0544434,0.0966492,0.141022,0.171143,0.183289,0.178406,0.167999,0.158112,0.146393,0.128876,0.104767,0.0774536,0.0498047,0.0238953,-0.00436401,-0.0406189,-0.0871277,-0.14505,-0.206787,-0.268921,-0.327332,-0.379486,-0.428864,-0.462555,-0.472015,-0.446381,-0.387054,-0.311493,-0.239136,-0.178314,-0.127655,-0.0773315,-0.0367737,-0.0205994,-0.0357666,-0.0671082,-0.0881958,-0.0765686,-0.0346985,0.0241089,0.0900574,0.159668,0.23175,0.299957,0.343903,0.34906,0.30899,0.237061,0.153625,0.0777893,0.0197449,-0.0177917,-0.0354309,-0.0352478,-0.0150452,0.0191345,0.0646362,0.103302,0.122284,0.115906,0.0908203,0.0613403,0.0401306,0.0281982,0.0259094,0.0282593,0.0345764,0.0509338,0.0787354,0.114899,0.150269,0.17337,0.181427,0.185791,0.185791,0.187714,0.181824,0.164307,0.135498,0.0996704,0.0635071,0.0279846,-0.00878906,-0.0507507,-0.102081,-0.15799,-0.21637,-0.273773,-0.328461,-0.380341,-0.429352,-0.466675,-0.478149,-0.449799,-0.384308,-0.3013,-0.220276,-0.14798,-0.0836182,-0.0241699,0.0167236,0.0248413,-0.00323486,-0.0489807,-0.078186,-0.0733643,-0.0336914,0.024353,0.0951843,0.17276,0.255646,0.331543,0.372833,0.368469,0.314514,0.226532,0.126526,0.0356445,-0.0340271,-0.0783997,-0.098053,-0.091217,-0.0595398,-0.0118713,0.0440979,0.0885925,0.109863,0.103546,0.0784607,0.0462341,0.0204773,0.00637817,0.0038147,0.00717163,0.0183105,0.0395203,0.0708618,0.109589,0.145508,0.170135,0.18042,0.184235,0.188599,0.190674,0.187195,0.170868,0.142822,0.106506,0.0667725,0.0255737,-0.0180664,-0.0661011,-0.118866,-0.174774,-0.22934,-0.280945,-0.327667,-0.37262,-0.412842,-0.437592,-0.434906,-0.398132,-0.335449,-0.263489,-0.194489,-0.131012,-0.0708618,-0.0152283,0.0198669,0.019928,-0.00900269,-0.0448914,-0.0589294,-0.040802,0.000732422,0.0554504,0.120819,0.195435,0.275391,0.342773,0.372162,0.355377,0.29303,0.206177,0.114105,0.0331421,-0.0306091,-0.0720825,-0.0908203,-0.0835571,-0.0552368,-0.00860596,0.040802,0.0754395,0.0851135,0.0730286,0.0462952,0.0231628,0.00558472,-0.00289917,-0.00650024,-0.00424194,0.00616455,0.028595,0.0619507,0.098877,0.129669,0.147583,0.159271,0.169617,0.180664,0.187195,0.181335,0.163239,0.133759,0.100342,0.0639038,0.0209351,-0.0266418,-0.0802002,-0.13678,-0.193695,-0.24646,-0.296173,-0.339813,-0.381561,-0.415253,-0.432098,-0.417999,-0.371552,-0.305634,-0.236115,-0.171143,-0.110474,-0.0505371,-0.000396729,0.0254517,0.0195312,-0.0065918,-0.0308838,-0.0309448,-0.00375366,0.0414124,0.0977173,0.162964,0.234711,0.302765,0.352081,0.364655,0.334106,0.265045,0.176392,0.0885315,0.0149536,-0.0365906,-0.0693359,-0.0814819,-0.0726318,-0.0447693,-0.0012207,0.040741,0.0648193,0.0646973,0.0466309,0.0234985,0.00772095,0.000457764,-0.000671387,0.00189209,0.00979614,0.0271301,0.0551758,0.0916748,0.126526,0.151886,0.163757,0.168274,0.17041,0.17215,0.168335,0.151764,0.124573,0.0873718,0.0480652,0.00967407,-0.0306091,-0.0725403,-0.121399,-0.173309,-0.22699,-0.277405,-0.323364,-0.365326,-0.405579,-0.43396,-0.437469,-0.408661,-0.347809,-0.272369,-0.198059,-0.12738,-0.0614929,0.00112915,0.0459595,0.058136,0.0385132,0.00289917,-0.0183105,-0.012207,0.0176392,0.0610046,0.115906,0.180481,0.253967,0.321289,0.359192,0.353912,0.303772,0.225586,0.140808,0.0638428,0.00140381,-0.0426331,-0.0671082,-0.0688477,-0.0485229,-0.013031,0.0289307,0.061554,0.069519,0.0561218,0.0296021,0.00491333,-0.00827026,-0.013092,-0.0126953,-0.00845337,0.0012207,0.0223389,0.0561218,0.0951843,0.128784,0.14679,0.156525,0.165436,0.178925,0.188477,0.188324,0.171021,0.1427,0.106995,0.0677185,0.0263062,-0.0228882,-0.079071,-0.138397,-0.197998,-0.253357,-0.305389,-0.353363,-0.397064,-0.43338,-0.454498,-0.448395,-0.406311,-0.338257,-0.260803,-0.187134,-0.119141,-0.0557861,0.00088501,0.0343628,0.0388489,0.0150452,-0.0158997,-0.0289917,-0.013031,0.0299377,0.0891418,0.156586,0.228882,0.302704,0.359528,0.384033,0.363495,0.300629,0.208405,0.110931,0.0279236,-0.0304565,-0.0647583,-0.0759888,-0.0639038,-0.032135,0.0132751,0.0608215,0.0909424,0.0969238,0.0769958,0.0423584,0.0083313,-0.0153809,-0.0269165,-0.0293884,-0.0236206,-0.0100098,0.0147095,0.0506592,0.0920105,0.129211,0.15329,0.165649,0.173431,0.179749,0.183228,0.177979,0.159729,0.129547,0.0910645,0.0489197,0.00564575,-0.0402832,-0.0894775,-0.144165,-0.200134,-0.253754,-0.304291,-0.352173,-0.397583,-0.437134,-0.456451,-0.447601,-0.404449,-0.33725,-0.261353,-0.185791,-0.112488,-0.0435486,0.0137634,0.0438232,0.0406799,0.0152283,-0.0123596,-0.0194092,-0.0017395,0.0360413,0.0908813,0.159393,0.239685,0.318268,0.377808,0.395508,0.365906,0.294586,0.200531,0.103302,0.0175781,-0.0461121,-0.0838318,-0.0941772,-0.0793457,-0.0422058,0.00946045,0.0605469,0.0914001,0.0947571,0.0722046,0.0392761,0.00811768,-0.0105896,-0.0198669,-0.0213318,-0.016571,-0.00128174,0.0271301,0.0671692,0.108063,0.139404,0.156372,0.16626,0.174774,0.183441,0.187988,0.182831,0.162567,0.131073,0.0914001,0.0477295,0.000549316,-0.0515442,-0.109741,-0.171143,-0.229462,-0.282501,-0.327057,-0.366577,-0.403564,-0.434448,-0.449066,-0.437073,-0.392029,-0.325989,-0.255707,-0.186798,-0.119659,-0.0536804,0.00234985,0.038269,0.0424805,0.0238953,0.0012207,-0.00549316,0.0134888,0.049469,0.0992737,0.16156,0.231537,0.304169,0.358856,0.379333,0.356873,0.291901,0.203888,0.111938,0.032074,-0.0297852,-0.0673828,-0.0805359,-0.0677185,-0.0336914,0.0148926,0.0630188,0.0949097,0.101685,0.0840149,0.0535583,0.0237732,0.000610352,-0.012207,-0.0184631,-0.0181274,-0.00765991,0.0169067,0.053009,0.0914001,0.122223,0.14035,0.151428,0.160889,0.168518,0.172699,0.165924,0.148468,0.120209,0.0866394,0.0487976,0.00598145,-0.0411377,-0.0953674,-0.153503,-0.212006,-0.267914,-0.318939,-0.363831,-0.40506,-0.43927,-0.454254,-0.440155,-0.393158,-0.3237,-0.248993,-0.179138,-0.112762,-0.0489807,0.00491333,0.0386047,0.0381165,0.012207,-0.0190735,-0.028717,-0.00765991,0.0336304,0.0890503,0.152161,0.225372,0.301483,0.362488,0.387726,0.365509,0.299683,0.209473,0.116638,0.0354919,-0.0280457,-0.0663757,-0.0770569,-0.0610046,-0.0229492,0.0264587,0.0767822,0.110687,0.116516,0.0970459,0.0623474,0.0267944,0.0015564,-0.0134277,-0.0175171,-0.0151062,-0.00247192,0.0218201,0.0580444,0.0982666,0.129333,0.145844,0.151672,0.154236,0.158325,0.160126,0.157257,0.143219,0.119385,0.0875854,0.053009,0.0148315,-0.0292053,-0.0836182,-0.144958,-0.207855,-0.267395,-0.32016,-0.365112,-0.406128,-0.439667,-0.456329,-0.444183,-0.399689,-0.332031,-0.259277,-0.189606,-0.124084,-0.0619507,-0.00805664,0.026123,0.0299988,0.0102539,-0.0171204,-0.0299988,-0.0167847,0.0187378,0.0684509,0.131287,0.202484,0.279205,0.341949,0.375183,0.366791,0.316376,0.237579,0.149139,0.0637512,-0.00375366,-0.0484619,-0.0677795,-0.0608215,-0.0303955,0.0143738,0.0648193,0.101471,0.117188,0.106995,0.0776672,0.0436401,0.0167236,-0.00195312,-0.013092,-0.0166321,-0.0115356,0.00866699,0.0420227,0.0820923,0.116119,0.137177,0.1474,0.153168,0.160675,0.166504,0.163818,0.151825,0.129456,0.103546,0.0724182,0.038269,-0.00274658,-0.0534973,-0.110138,-0.172485,-0.232483,-0.289215,-0.340332,-0.386444,-0.429749,-0.459625,-0.465576,-0.43866,-0.380157,-0.307251,-0.232758,-0.163086,-0.0971069,-0.0367126,0.0118713,0.0347595,0.0264587,-0.00167847,-0.0283203,-0.0304565,-0.00515747,0.0391846,0.0961914,0.162292,0.235443,0.308746,0.363312,0.379883,0.351166,0.28476,0.197662,0.109924,0.032959,-0.0249023,-0.0599365,-0.0666504,-0.0496521,-0.012146,0.0365906,0.0822144,0.112762,0.118134,0.098877,0.0673828,0.0343628,0.0105286,-0.00650024,-0.0139465,-0.0143738,-0.00268555,0.0229492,0.0575867,0.0949097,0.123016,0.140137,0.146301,0.150208,0.154175,0.155914,0.149536,0.133423,0.109344,0.0809326,0.04953,0.0161133,-0.0237732,-0.0733032,-0.13147,-0.192291,-0.250336,-0.30249,-0.34906,-0.393433,-0.431274,-0.453644,-0.44632,-0.407745,-0.34201,-0.269012,-0.200287,-0.136841,-0.0744324,-0.0187988,0.0204163,0.0268555,0.00817871,-0.0216064,-0.0396118,-0.028595,0.00637817,0.056366,0.117584,0.186462,0.260895,0.327393,0.368683,0.369415,0.327454,0.253845,0.165375,0.0820923,0.0132141,-0.0332947,-0.0585938,-0.0588074,-0.0361023,0.00531006,0.0556946,0.0962524,0.114899,0.108124,0.0811462,0.0484619,0.0198059,-0.0012207,-0.0129395,-0.0184021,-0.0146179,0.00576782,0.037384,0.0762329,0.11087,0.133301,0.143768,0.148407,0.152161,0.157257,0.154846,0.145111,0.125702,0.102142,0.0747681,0.0443726,0.0083313,-0.0339661,-0.0865173,-0.144714,-0.201874,-0.253632,-0.300354,-0.342163,-0.383514,-0.420685,-0.44278,-0.437927,-0.402618,-0.34613,-0.283234,-0.222229,-0.158936,-0.094696,-0.0346375,0.00839233,0.024292,0.0142822,-0.00335693,-0.0135498,-0.00302124,0.0290527,0.0721436,0.129059,0.191895,0.259399,0.322357,0.365326,0.373901,0.340485,0.274109,0.188324,0.104889,0.0338135,-0.0180664,-0.0477295,-0.053772,-0.0378418,-0.00415039,0.041626,0.081543,0.105103,0.103088,0.0794678,0.0452271,0.012085,-0.0104675,-0.0218201,-0.0250244,-0.0215454,-0.00576782,0.0228882,0.0610046,0.098999,0.123291,0.135376,0.13678,0.137329,0.138733,0.140137,0.136597,0.124969,0.102478,0.0757141,0.0474548,0.0161133,-0.0231018,-0.0744324,-0.134094,-0.194977,-0.249725,-0.293579,-0.330414,-0.365173,-0.397247,-0.42041,-0.419067,-0.391144,-0.341614,-0.284363,-0.226715,-0.171143,-0.117188,-0.0669861,-0.0247803,0.000549316,0.0015564,-0.0115967,-0.0204773,-0.0123596,0.0235596,0.0722046,0.132233,0.193909,0.25531,0.314117,0.358795,0.375122,0.351349,0.289124,0.204102,0.119873,0.0481262,-0.00213623,-0.0301208,-0.0344849,-0.0204163,0.0106812,0.0517578,0.0933533,0.11908,0.119659,0.0922852,0.0501404,0.00939941,-0.0189819,-0.0313416,-0.0326233,-0.0276489,-0.0127563,0.0146179,0.0526733,0.0918884,0.11972,0.12973,0.127533,0.121948,0.119141,0.118652,0.116302,0.106567,0.0880432,0.0646362,0.040802,0.0168457,-0.0160522,-0.0579224,-0.11087,-0.164825,-0.213501,-0.254364,-0.286377,-0.319672,-0.355042,-0.388123,-0.405579,-0.400543,-0.372223,-0.326782,-0.276978,-0.227051,-0.173553,-0.118805,-0.0614929,-0.0148926,0.00799561,0.00610352,-0.00314331,-0.00146484,0.0198059,0.0593872,0.10376,0.153961,0.207916,0.26886,0.329681,0.371094,0.374847,0.33902,0.272766,0.194366,0.119537,0.0583191,0.0153809,-0.0071106,-0.0110168,0.00112915,0.0257874,0.0593872,0.0907288,0.100891,0.0870361,0.0502014,0.011261,-0.0161133,-0.025177,-0.0204163,-0.0151062,-0.00799561,0.0071106,0.0367737,0.0718689,0.100006,0.108734,0.102081,0.0930176,0.0917358,0.100342,0.109528,0.110474,0.0993958,0.0822144,0.0620117,0.0396729,0.011261,-0.0271301,-0.0758362,-0.128784,-0.17746,-0.217804,-0.248138,-0.277588,-0.308746,-0.343445,-0.376709,-0.39859,-0.3992,-0.377655,-0.339081,-0.294769,-0.246796,-0.193634,-0.135101,-0.0711365,-0.0176392,0.0133667,0.0210876,0.0171814,0.0188599,0.038269,0.0728149,0.11322,0.160797,0.210999,0.26947,0.326263,0.367249,0.377136,0.349335,0.290283,0.216583,0.142944,0.0810242,0.0344238,0.00692749,-0.00357056,0.00234985,0.0193176,0.0468445,0.0706787,0.0820923,0.0740967,0.0466309,0.015625,-0.0104675,-0.020813,-0.0179749,-0.0104065,-0.00280762,0.00979614,0.0299377,0.0570374,0.0819397,0.0970459,0.100128,0.0986023,0.0975952,0.101135,0.104309,0.102142,0.0904846,0.0683289,0.0430298,0.0152283,-0.0103455,-0.0370483,-0.0671692,-0.102081,-0.140533,-0.176636,-0.210754,-0.240875,-0.275726,-0.317139,-0.361877,-0.401703,-0.421478,-0.41571,-0.387115,-0.339478,-0.284851,-0.224243,-0.160004,-0.0932312,-0.0293274,0.0195923,0.0429688,0.045166,0.0409546,0.0449829,0.0666504,0.101013,0.142761,0.187927,0.233704,0.282776,0.329407,0.35968,0.360809,0.328125,0.271271,0.204102,0.140472,0.085907,0.0485229,0.0222168,0.00531006,6.10352e-05,0.00860596,0.0304565,0.0534363,0.065918,0.0620728,0.0441589,0.0239563,0.0116882,0.0106812,0.0125427,0.0101929,0.0017395,0.000732422,0.0117493,0.0331421,0.0546265,0.0649719,0.0697327,0.0722961,0.0787354,0.0879211,0.0914917,0.0834351,0.0646973,0.0411377,0.0194702,0.000671387,-0.0177917,-0.0381775,-0.0638428,-0.0934143,-0.125641,-0.160675,-0.19577,-0.233826,-0.278412,-0.327179,-0.374969,-0.414307,-0.430023,-0.418274,-0.381744,-0.330139,-0.273834,-0.213684,-0.14798,-0.0794678,-0.0175781,0.0244446,0.0397949,0.0394592,0.0400696,0.0526733,0.0820312,0.11438,0.14798,0.18927,0.238251,0.296936,0.346649,0.374908,0.371552,0.340271,0.290894,0.230865,0.16745,0.106384,0.053833,0.0142212,-0.00811768,-0.0126038,-0.00323486,0.0194702,0.0434265,0.0592041,0.0632324,0.0526123,0.036438,0.0216675,0.00918579,-0.00100708,-0.0126038,-0.024292,-0.0257874,-0.0150452,0.0067749,0.0297241,0.0474548,0.0579834,0.065918,0.0736389,0.0822754,0.0849609,0.0800781,0.069519,0.053894,0.0377808,0.0231018,0.0104065,-0.00543213,-0.0297241,-0.065155,-0.106171,-0.151764,-0.197113,-0.242889,-0.290619,-0.337524,-0.38028,-0.414429,-0.429413,-0.419891,-0.388,-0.338745,-0.286316,-0.232971,-0.180542,-0.122894,-0.0603943,-0.00442505,0.029541,0.040802,0.0452271,0.0588074,0.0923462,0.136047,0.173767,0.207733,0.245636,0.292908,0.346863,0.387115,0.39801,0.373047,0.322357,0.259338,0.191895,0.125519,0.0658264,0.017395,-0.0149536,-0.0269775,-0.020752,0.00302124,0.0343018,0.057312,0.065155,0.0519409,0.0296631,0.00872803,-0.00665283,-0.0179749,-0.0297852,-0.0430298,-0.048584,-0.0375061,-0.0100098,0.0220947,0.0440979,0.0524292,0.0567017,0.0649109,0.0785217,0.0910034,0.094635,0.0863647,0.0748901,0.0629578,0.0524902,0.0400085,0.019989,-0.0118713,-0.0536194,-0.1008,-0.148407,-0.193146,-0.234314,-0.272949,-0.309326,-0.342682,-0.368195,-0.385376,-0.392029,-0.38324,-0.36322,-0.330963,-0.291748,-0.248047,-0.197723,-0.139252,-0.0739746,-0.0137024,0.0352478,0.0677795,0.0918884,0.118744,0.150208,0.185242,0.211548,0.235657,0.26358,0.298523,0.336121,0.363098,0.369415,0.346313,0.304382,0.247406,0.18631,0.125244,0.0691223,0.0245667,-0.00482178,-0.0182495,-0.0171204,-0.00262451,0.020813,0.0397339,0.0457153,0.0340881,0.012207,-0.0100708,-0.0269165,-0.0363159,-0.0427551,-0.0505981,-0.0556946,-0.0468445,-0.0222778,0.0110168,0.0401917,0.0583801,0.0691223,0.0806885,0.0932922,0.106781,0.111603,0.103882,0.0851746,0.0625,0.0406189,0.0216675,-0.00012207,-0.0291138,-0.0635071,-0.100616,-0.138672,-0.173767,-0.206909,-0.236725,-0.271423,-0.309143,-0.345245,-0.376923,-0.400421,-0.408142,-0.399261,-0.37088,-0.3284,-0.279663,-0.22168,-0.151489,-0.0718689,0.00442505,0.0677185,0.106659,0.127594,0.142548,0.161682,0.187195,0.206329,0.220612,0.236572,0.264923,0.307068,0.347931,0.372833,0.367584,0.335907,0.283691,0.222839,0.159454,0.0963745,0.0367737,-0.0144348,-0.0447693,-0.0553589,-0.0459595,-0.0246887,-0.00314331,0.0100098,0.00985718,-0.00134277,-0.0166321,-0.0298767,-0.0379944,-0.0434265,-0.0472412,-0.0491943,-0.040802,-0.0187378,0.0147705,0.048584,0.0734253,0.086853,0.0951843,0.104156,0.114441,0.11792,0.109192,0.0900574,0.0673828,0.0464478,0.0306702,0.0142212,-0.0065918,-0.0340881,-0.0665894,-0.102203,-0.139801,-0.176117,-0.213959,-0.255646,-0.297516,-0.338409,-0.372284,-0.39801,-0.411957,-0.409271,-0.390808,-0.353973,-0.303619,-0.24585,-0.181152,-0.110474,-0.0392761,0.0297852,0.0863037,0.122406,0.142151,0.155792,0.170959,0.191895,0.210754,0.227875,0.247528,0.277191,0.314636,0.349274,0.36734,0.358337,0.3237,0.269806,0.206909,0.141083,0.0714722,0.00576782,-0.0492554,-0.0828247,-0.0949707,-0.0853577,-0.0622864,-0.0343018,-0.0118713,-0.00012207,0.00335693,0.00134277,-0.00375366,-0.0114746,-0.0177307,-0.0246277,-0.0282593,-0.0254517,-0.00878906,0.0189209,0.0481262,0.0716858,0.0857849,0.0975952,0.10907,0.11673,0.118408,0.111938,0.0942993,0.0697937,0.0463867,0.0262451,0.00866699,-0.0143738,-0.0425415,-0.0748291,-0.109344,-0.147522,-0.182434,-0.217316,-0.252075,-0.288666,-0.321014,-0.341492,-0.351685,-0.357788,-0.358948,-0.349335,-0.325653,-0.287262,-0.244293,-0.194305,-0.140869,-0.0841675,-0.0210876,0.0433655,0.100281,0.140198,0.166595,0.189209,0.213165,0.233643,0.242493,0.249817,0.258728,0.274902,0.295166,0.312561,0.316193,0.297272,0.258881,0.206329,0.148407,0.0852966,0.0173035,-0.0412903,-0.0844421,-0.106445,-0.106384,-0.0861816,-0.0522156,-0.0172424,0.00726318,0.019989,0.0245667,0.0194092,0.00778198,-0.00744629,-0.0226135,-0.0346985,-0.0377197,-0.0269165,0.00195312,0.036377,0.0697937,0.0956421,0.117065,0.132294,0.138458,0.132904,0.117981,0.0951843,0.0664978,0.0360413,0.00991821,-0.0100708,-0.0261841,-0.0430298,-0.0598755,-0.0795898,-0.103027,-0.13089,-0.160797,-0.191284,-0.22699,-0.262085,-0.292908,-0.316254,-0.331207,-0.34317,-0.348877,-0.342346,-0.32196,-0.288879,-0.243622,-0.189545,-0.13147,-0.0697327,-0.0015564,0.0683289,0.131897,0.174164,0.197998,0.211151,0.220398,0.228119,0.228546,0.225922,0.224243,0.227448,0.23941,0.25531,0.264374,0.254028,0.222626,0.178314,0.126312,0.0708618,0.0134277,-0.0394592,-0.0795288,-0.103363,-0.108246,-0.0915527,-0.0603333,-0.0279846,-0.00463867,0.00827026,0.013092,0.0138245,0.00985718,0.00497437,0.00289917,0.00112915,0.00570679,0.0191345,0.0434875,0.0723572,0.0953674,0.10968,0.114777,0.112488,0.104095,0.0938416,0.0792542,0.0631714,0.0434265,0.0231018,0.0101929,0.00592041,0.00442505,-0.003479,-0.0197449,-0.0429688,-0.0729675,-0.105896,-0.141479,-0.178314,-0.218384,-0.256256,-0.283173,-0.293701,-0.293579,-0.290009,-0.289062,-0.287598,-0.280487,-0.264709,-0.238403,-0.202301,-0.160675,-0.115387,-0.0620728,0.00396729,0.0754395,0.141205,0.185638,0.209259,0.215179,0.210266,0.200958,0.186859,0.170959,0.158325,0.155975,0.169739,0.197327,0.224915,0.234161,0.224365,0.194153,0.147308,0.0878601,0.0210876,-0.0420227,-0.0971069,-0.135437,-0.148315,-0.132629,-0.0934143,-0.0434265,0.0032959,0.0404053,0.0614014,0.0713501,0.0674438,0.0568542,0.0387268,0.0168457,-0.00228882,-0.00912476,0.000213623,0.0221558,0.048584,0.0727539,0.0941772,0.110809,0.122345,0.127716,0.12262,0.106659,0.0809326,0.0526123,0.0269775,0.00558472,-0.0137024,-0.0351562,-0.0566406,-0.0767212,-0.0918884,-0.108398,-0.12442,-0.144287,-0.168121,-0.189941,-0.209137,-0.222076,-0.234833,-0.247589,-0.262817,-0.276062,-0.282501,-0.275848,-0.256378,-0.221954,-0.17746,-0.127716,-0.0718079,-0.00784302,0.056366,0.113281,0.149078,0.163239,0.163971,0.156036,0.14975,0.142761,0.137726,0.13858,0.148926,0.170135,0.198059,0.223694,0.232025,0.218384,0.184448,0.133148,0.0737,0.012207,-0.0438232,-0.0886536,-0.118591,-0.127594,-0.111267,-0.0748901,-0.0293884,0.00845337,0.0334167,0.0430298,0.0426331,0.036499,0.0257874,0.0124817,-0.00088501,-0.00967407,-0.00335693,0.0210876,0.0555725,0.0900574,0.114624,0.129395,0.137177,0.140076,0.134644,0.120728,0.0967712,0.0667725,0.0381775,0.0169067,0.00241089,-0.0067749,-0.0161743,-0.0271912,-0.037262,-0.0472412,-0.0586548,-0.0738831,-0.0910645,-0.114227,-0.142151,-0.170013,-0.193817,-0.212555,-0.227936,-0.240814,-0.25351,-0.264038,-0.268799,-0.262817,-0.2435,-0.212616,-0.172699,-0.12973,-0.08255,-0.0314026,0.0238342,0.0752258,0.115845,0.140137,0.147308,0.145386,0.139343,0.13382,0.128265,0.123291,0.121216,0.129608,0.1474,0.1698,0.187927,0.188721,0.172821,0.138855,0.0917358,0.037262,-0.019989,-0.072876,-0.11557,-0.142029,-0.14798,-0.12738,-0.0869751,-0.0383911,0.0062561,0.0414734,0.065918,0.0817566,0.086853,0.0828247,0.070282,0.053894,0.0414734,0.0415344,0.0542908,0.0721436,0.0895386,0.106506,0.120941,0.133698,0.136505,0.127716,0.107117,0.0812073,0.0508728,0.0227661,0.000732422,-0.0133667,-0.0213318,-0.0265808,-0.0283203,-0.0273132,-0.0292664,-0.0367126,-0.0516663,-0.0740356,-0.102875,-0.135254,-0.163483,-0.185791,-0.201965,-0.215912,-0.224365,-0.224426,-0.222015,-0.217468,-0.211548,-0.200287,-0.182159,-0.159943,-0.132904,-0.10022,-0.061615,-0.0201416,0.0231628,0.0622253,0.0898132,0.103973,0.107178,0.107452,0.105652,0.103973,0.101135,0.104767,0.11496,0.130127,0.147736,0.159546,0.157043,0.139191,0.103149,0.0560303,0.0050354,-0.0432129,-0.0833435,-0.109406,-0.120544,-0.11377,-0.0856323,-0.0437012,0.00497437,0.0453186,0.0701904,0.0820923,0.0871887,0.0841064,0.0766602,0.065918,0.0532837,0.0461121,0.0518799,0.069458,0.09375,0.116119,0.131409,0.140259,0.143036,0.137268,0.122742,0.101135,0.0750427,0.0470581,0.0212097,0.00296021,-0.00637817,-0.00946045,-0.0105286,-0.0108032,-0.00900269,-0.0101929,-0.0150452,-0.024292,-0.0384521,-0.0571899,-0.0819397,-0.106506,-0.126862,-0.144165,-0.160614,-0.177185,-0.190613,-0.203217,-0.218872,-0.235718,-0.245514,-0.24707,-0.236511,-0.213226,-0.175781,-0.13028,-0.0810852,-0.0311279,0.0211487,0.0653076,0.0912781,0.0940857,0.0812073,0.0640869,0.0489197,0.0401306,0.0425415,0.0562439,0.0762329,0.104156,0.13974,0.170471,0.181549,0.165588,0.123352,0.0658264,0.00161743,-0.0599365,-0.107452,-0.136444,-0.146729,-0.13382,-0.0944214,-0.0340881,0.0310669,0.0820923,0.113892,0.12619,0.124847,0.115051,0.102417,0.0900574,0.0754395,0.0661011,0.0706787,0.091217,0.116516,0.134583,0.141693,0.138184,0.128998,0.113892,0.09552,0.0767212,0.0570374,0.0401306,0.0302734,0.0313416,0.0386047,0.0446472,0.045105,0.0430298,0.0357056,0.0245056,0.00924683,-0.00482178,-0.0200806,-0.0399475,-0.0623474,-0.0822754,-0.0993958,-0.118927,-0.144836,-0.176392,-0.207855,-0.240417,-0.268799,-0.291077,-0.301483,-0.300537,-0.285645,-0.253235,-0.206451,-0.154236,-0.108582,-0.0630798,-0.020874,0.0154419,0.0366516,0.0412903,0.0354919,0.0293274,0.0267029,0.0316772,0.0461121,0.0655823,0.0871277,0.110016,0.136658,0.157928,0.159271,0.139801,0.101868,0.0526733,-0.0015564,-0.052887,-0.0918274,-0.114227,-0.119385,-0.107239,-0.0720215,-0.0185852,0.0410767,0.09375,0.130005,0.148743,0.151886,0.142487,0.12793,0.109131,0.0875244,0.0662537,0.0555725,0.0628357,0.0837708,0.108856,0.132355,0.150208,0.163757,0.170685,0.169861,0.161285,0.142822,0.116394,0.0879211,0.0641785,0.048645,0.0381165,0.0326233,0.0293884,0.0324707,0.0347595,0.0368347,0.0343628,0.0259094,0.00515747,-0.0265808,-0.0648193,-0.10498,-0.144958,-0.185455,-0.222748,-0.254425,-0.275909,-0.290222,-0.296112,-0.297119,-0.293091,-0.28363,-0.267517,-0.242432,-0.212341,-0.180145,-0.147858,-0.110748,-0.0730896,-0.0381775,-0.013031,0.0032959,0.0120239,0.0172424,0.0205383,0.0259705,0.0348206,0.0491333,0.0663757,0.0886536,0.11261,0.133423,0.141418,0.132568,0.11203,0.0782471,0.0379333,-0.00375366,-0.0396118,-0.0640869,-0.0763855,-0.0728149,-0.0503235,-0.00939941,0.0389404,0.0837708,0.117523,0.139343,0.148071,0.147125,0.140411,0.129333,0.115906,0.101868,0.0964355,0.106842,0.128326,0.151764,0.170197,0.184692,0.194641,0.20047,0.196045,0.184784,0.164246,0.135376,0.102478,0.0743103,0.0533447,0.0387268,0.0262451,0.0175781,0.0157166,0.01651,0.017395,0.0147705,0.00958252,-0.00576782,-0.0317383,-0.0679932,-0.106567,-0.144836,-0.182434,-0.219818,-0.251282,-0.275726,-0.293915,-0.306458,-0.312347,-0.314301,-0.313629,-0.310822,-0.300873,-0.278259,-0.24939,-0.218536,-0.184967,-0.146179,-0.107452,-0.069397,-0.0354919,-0.0083313,0.00985718,0.0182495,0.0271912,0.0410767,0.0619507,0.0845642,0.107452,0.13089,0.152771,0.171478,0.17511,0.162354,0.13089,0.0828857,0.028717,-0.0195923,-0.0571899,-0.0808716,-0.0873108,-0.0722046,-0.0370483,0.0128784,0.0689392,0.120148,0.156708,0.176636,0.178314,0.170288,0.155792,0.142365,0.130066,0.124573,0.129791,0.148926,0.174774,0.205109,0.229004,0.239594,0.235229,0.21994,0.197723,0.171478,0.14035,0.106232,0.0722046,0.046051,0.0306702,0.0256958,0.0220032,0.0157166,0.00582886,-0.00531006,-0.0152893,-0.0255737,-0.037262,-0.0541077,-0.0773315,-0.103424,-0.128662,-0.153839,-0.179474,-0.210022,-0.243225,-0.27774,-0.308472,-0.333984,-0.352295,-0.361877,-0.363098,-0.354034,-0.334045,-0.301086,-0.261078,-0.216705,-0.170746,-0.12558,-0.085022,-0.053894,-0.0308838,-0.0108643,0.00442505,0.0171814,0.0265198,0.0386047,0.0544434,0.0756531,0.103302,0.131073,0.155121,0.169617,0.170197,0.159943,0.13858,0.106171,0.0632324,0.0197449,-0.0198059,-0.0458374,-0.0562439,-0.0455017,-0.0184631,0.0189819,0.0644226,0.110474,0.152222,0.181091,0.19577,0.197388,0.189819,0.179871,0.170288,0.165649,0.164825,0.173431,0.186646,0.202148,0.216583,0.224243,0.223846,0.213837,0.194153,0.166107,0.133484,0.0970459,0.0620117,0.0309448,0.00665283,-0.00991821,-0.0213318,-0.0290527,-0.0328979,-0.0362549,-0.0384521,-0.0437622,-0.0512695,-0.0618896,-0.07724,-0.0979919,-0.121338,-0.146118,-0.171967,-0.198608,-0.224426,-0.248199,-0.270355,-0.289124,-0.304291,-0.313629,-0.319611,-0.320068,-0.315308,-0.302643,-0.280609,-0.255249,-0.226105,-0.192688,-0.155365,-0.118317,-0.0834351,-0.0525513,-0.0256348,-0.00296021,0.0162354,0.0360413,0.0561829,0.0757751,0.0966492,0.118988,0.143158,0.164368,0.177521,0.179749,0.168396,0.146057,0.114044,0.0751648,0.0380554,0.00543213,-0.0194702,-0.0292664,-0.0236206,-0.00128174,0.0328064,0.0747681,0.116852,0.152771,0.179138,0.19281,0.198273,0.195496,0.187378,0.178986,0.171082,0.168396,0.173096,0.183624,0.195435,0.203369,0.205231,0.198395,0.185242,0.165161,0.138733,0.106903,0.0715332,0.036438,0.00476074,-0.019989,-0.037262,-0.0484009,-0.0553589,-0.057373,-0.0543518,-0.0489807,-0.0419617,-0.0360413,-0.0312195,-0.0336304,-0.0444946,-0.0627441,-0.0856323,-0.114838,-0.148651,-0.185303,-0.221344,-0.254517,-0.282227,-0.302368,-0.314697,-0.320068,-0.323975,-0.321625,-0.311096,-0.290405,-0.265442,-0.239136,-0.212219,-0.180664,-0.14859,-0.113281,-0.0805359,-0.0516663,-0.0284424,-0.00827026,0.0139465,0.040863,0.0669861,0.0930786,0.118866,0.145721,0.1698,0.187988,0.195587,0.191742,0.170624,0.138855,0.0986633,0.0551147,0.0169678,-0.0139465,-0.0338135,-0.0358276,-0.0222778,0.00543213,0.0418091,0.0852356,0.127716,0.16156,0.184692,0.194763,0.196045,0.189209,0.177521,0.167389,0.158203,0.152435,0.152435,0.159546,0.170471,0.179199,0.18335,0.178589,0.169739,0.155457,0.134766,0.110138,0.0798035,0.0483093,0.0185852,-0.00665283,-0.0239563,-0.0343628,-0.039856,-0.0387878,-0.0343628,-0.0264587,-0.0201416,-0.0144348,-0.0122681,-0.0180664,-0.0316772,-0.0539551,-0.0808105,-0.110748,-0.144104,-0.176788,-0.209198,-0.238922,-0.263916,-0.284119,-0.298126,-0.309418,-0.318054,-0.323822,-0.322083,-0.311676,-0.294647,-0.273102,-0.244629,-0.211151,-0.17337,-0.134033,-0.0953064,-0.0596619,-0.0273132,-0.000946045,0.0225525,0.0449829,0.0652466,0.0856323,0.106506,0.129333,0.151825,0.166504,0.173767,0.173035,0.160126,0.13443,0.101288,0.0614929,0.0226135,-0.0112,-0.036377,-0.0433044,-0.0340881,-0.012085,0.0187378,0.0566406,0.098999,0.136505,0.166718,0.184845,0.191498,0.189209,0.17981,0.172821,0.169403,0.169128,0.170197,0.176727,0.189148,0.203979,0.215637,0.219208,0.212952,0.198395,0.172974,0.141602,0.108856,0.073822,0.0381775,0.00604248,-0.0178528,-0.0300598,-0.0341492,-0.0325623,-0.0259705,-0.0171204,-0.0110168,-0.00860596,-0.00845337,-0.0128174,-0.0262451,-0.0484619,-0.0757141,-0.105377,-0.136322,-0.168121,-0.199066,-0.22525,-0.250061,-0.272217,-0.290222,-0.301361,-0.310883,-0.320557,-0.329407,-0.327118,-0.317596,-0.300018,-0.276978,-0.248657,-0.216522,-0.18161,-0.143036,-0.102356,-0.065979,-0.0361023,-0.0137024,0.00967407,0.0335693,0.0579834,0.0763855,0.0954285,0.114441,0.132904,0.14563,0.152435,0.151428,0.138,0.113098,0.0836182,0.0503235,0.0196533,-0.00805664,-0.025177,-0.0284424,-0.0181274,0.00402832,0.0353699,0.0753174,0.118805,0.158203,0.189941,0.210358,0.223358,0.225769,0.222687,0.21933,0.216919,0.214233,0.212341,0.214966,0.223022,0.229797,0.231537,0.224976,0.211212,0.189148,0.160675,0.126923,0.0910034,0.0535583,0.0179138,-0.0124817,-0.032074,-0.040802,-0.0410767,-0.0375061,-0.0302124,-0.0213318,-0.0148926,-0.012085,-0.0128784,-0.0180664,-0.0315552,-0.0526733,-0.0763245,-0.102875,-0.129547,-0.158936,-0.187469,-0.215698,-0.243896,-0.271484,-0.2966,-0.316986,-0.33316,-0.349731,-0.364166,-0.36908,-0.363312,-0.346924,-0.321014,-0.287933,-0.249817,-0.208801,-0.164368,-0.116455,-0.0697937,-0.0324097,-0.00531006,0.0149536,0.033905,0.053009,0.069519,0.085968,0.099884,0.113037,0.125519,0.138733,0.149994,0.152222,0.141357,0.120148,0.0932312,0.0657654,0.0404053,0.0195923,0.00610352,0.0065918,0.0189209,0.0441589,0.081543,0.124237,0.166718,0.202698,0.230469,0.247467,0.254364,0.25235,0.244781,0.2341,0.223297,0.211212,0.20578,0.20517,0.208252,0.210205,0.207062,0.19873,0.184509,0.163422,0.136658,0.107574,0.0763855,0.0434875,0.0132751,-0.00991821,-0.0250244,-0.0320129,-0.0354309,-0.0344238,-0.0326233,-0.0324707,-0.0345764,-0.0378418,-0.0438843,-0.0559082,-0.0753784,-0.0972595,-0.123016,-0.150543,-0.179535,-0.208679,-0.234985,-0.260559,-0.284637,-0.305237,-0.321808,-0.333832,-0.342285,-0.349335,-0.351562,-0.349945,-0.342285,-0.327057,-0.298004,-0.262482,-0.223907,-0.185455,-0.143555,-0.0993958,-0.0542297,-0.0132751,0.01651,0.036438,0.049408,0.0632324,0.08255,0.102539,0.122223,0.134308,0.145233,0.158539,0.16861,0.170197,0.158203,0.134583,0.101288,0.0684509,0.041626,0.0235596,0.0182495,0.0247803,0.041748,0.0716858,0.109009,0.15094,0.19223,0.224915,0.244385,0.249146,0.2435,0.234497,0.227936,0.225922,0.221497,0.215698,0.212006,0.216797,0.223694,0.229279,0.2229,0.203156,0.174377,0.141937,0.108337,0.0758972,0.040741,0.00558472,-0.0254517,-0.0458984,-0.0545654,-0.0544434,-0.0515442,-0.0488586,-0.0471802,-0.0472412,-0.0507507,-0.053772,-0.0614929,-0.0752258,-0.0960388,-0.120331,-0.146576,-0.171204,-0.19458,-0.216705,-0.239136,-0.26297,-0.283691,-0.302155,-0.314636,-0.323486,-0.331482,-0.338013,-0.341492,-0.33902,-0.328003,-0.308197,-0.278748,-0.244843,-0.20752,-0.169342,-0.127594,-0.0861206,-0.0461121,-0.00967407,0.0185242,0.0409546,0.0559082,0.0718079,0.0898132,0.109192,0.126526,0.139069,0.1474,0.155792,0.162354,0.163757,0.155365,0.139679,0.114166,0.0867004,0.0656433,0.0526123,0.0499268,0.0552368,0.0671692,0.0883179,0.116394,0.149933,0.184448,0.214844,0.235107,0.242096,0.240143,0.233765,0.230286,0.225922,0.219147,0.210144,0.20163,0.197601,0.197113,0.201202,0.199615,0.186462,0.162811,0.13382,0.106384,0.0787964,0.0471802,0.0115967,-0.0231628,-0.0505371,-0.0671692,-0.0727539,-0.0705261,-0.0663147,-0.0642395,-0.0643616,-0.0652466,-0.0647583,-0.0698547,-0.0803528,-0.0982666,-0.122009,-0.148529,-0.174042,-0.195251,-0.213287,-0.23114,-0.252502,-0.272766,-0.289337,-0.302826,-0.3125,-0.321014,-0.331696,-0.340546,-0.34436,-0.337189,-0.316315,-0.286041,-0.251007,-0.21579,-0.177124,-0.134491,-0.0879211,-0.0424805,-0.00302124,0.0255737,0.0457153,0.0646362,0.0871277,0.110413,0.132568,0.149414,0.16156,0.170288,0.177582,0.183014,0.177643,0.161133,0.134705,0.104095,0.0761719,0.0569763,0.0454407,0.0428772,0.0489807,0.0630188,0.0857849,0.115295,0.148315,0.178192,0.200745,0.214355,0.221741,0.223175,0.224182,0.224854,0.227264,0.225647,0.222565,0.22049,0.220825,0.222412,0.220337,0.208527,0.189331,0.165253,0.136993,0.107178,0.0767822,0.0433044,0.00726318,-0.0240173,-0.0484009,-0.0646362,-0.074646,-0.0821533,-0.0866394,-0.0879822,-0.0890503,-0.0908813,-0.0913391,-0.0939636,-0.101746,-0.116455,-0.135101,-0.15564,-0.176117,-0.198853,-0.221741,-0.243561,-0.264435,-0.282776,-0.298187,-0.306396,-0.312561,-0.314575,-0.316467,-0.314972,-0.310333,-0.300293,-0.281433,-0.253418,-0.220886,-0.18866,-0.156525,-0.12027,-0.0809326,-0.0414124,-0.00476074,0.0234985,0.0441589,0.0617371,0.0806885,0.101807,0.122009,0.137512,0.146179,0.151886,0.158447,0.164032,0.163147,0.152893,0.133698,0.107391,0.0814209,0.0625,0.0508118,0.0493164,0.0549011,0.0687256,0.0905457,0.121399,0.157379,0.192505,0.224304,0.244171,0.253906,0.254578,0.251617,0.248871,0.243774,0.234558,0.221558,0.209808,0.201965,0.198273,0.196167,0.188049,0.171539,0.147858,0.119598,0.0908813,0.0608826,0.0275269,-0.00985718,-0.0444946,-0.0730286,-0.0915527,-0.100128,-0.100891,-0.0993958,-0.0968628,-0.0955811,-0.0949707,-0.0938416,-0.0963745,-0.105103,-0.118317,-0.137115,-0.157043,-0.175629,-0.194031,-0.208344,-0.222412,-0.236572,-0.252502,-0.26532,-0.278473,-0.286652,-0.295502,-0.303772,-0.309875,-0.311554,-0.305115,-0.287445,-0.257385,-0.21994,-0.180939,-0.144958,-0.107666,-0.0720215,-0.0375061,-0.00637817,0.0157166,0.0310059,0.0414734,0.0539551,0.0741577,0.0977173,0.122742,0.141083,0.154633,0.166321,0.174835,0.178741,0.171814,0.155701,0.129211,0.101074,0.07901,0.0681152,0.0686035,0.0761719,0.0900574,0.109528,0.132751,0.160004,0.187866,0.211884,0.22644,0.230682,0.225861,0.220734,0.21994,0.221069,0.219482,0.214355,0.204376,0.19632,0.188599,0.184296,0.174622,0.155914,0.128265,0.0975342,0.0697937,0.0457153,0.0206604,-0.00564575,-0.0340881,-0.0599976,-0.0794067,-0.0908203,-0.0954285,-0.0992737,-0.103638,-0.11087,-0.115234,-0.11618,-0.113037,-0.112366,-0.116241,-0.124756,-0.138123,-0.152283,-0.165375,-0.179932,-0.196594,-0.219727,-0.242615,-0.263641,-0.278931,-0.28772,-0.292633,-0.295929,-0.299347,-0.298615,-0.289459,-0.271088,-0.242706,-0.21048,-0.178406,-0.149139,-0.117126,-0.0821533,-0.0448303,-0.0100098,0.0155029,0.0325623,0.0453796,0.0596619,0.0791321,0.101807,0.123962,0.140259,0.153107,0.166443,0.179932,0.188873,0.186523,0.171967,0.143951,0.113098,0.0861816,0.066925,0.0585327,0.0569763,0.0628967,0.0788574,0.105835,0.141357,0.177643,0.21167,0.232147,0.242218,0.239685,0.230865,0.222015,0.212219,0.199951,0.184692,0.170074,0.160339,0.15921,0.162903,0.16449,0.156708,0.139526,0.116577,0.0920105,0.0664978,0.0359802,0.000732422,-0.0370483,-0.0706787,-0.0951843,-0.107117,-0.111938,-0.111023,-0.108063,-0.106842,-0.103149,-0.0972595,-0.0908813,-0.090271,-0.0969849,-0.110199,-0.128662,-0.148651,-0.167389,-0.184296,-0.201874,-0.220551,-0.239746,-0.256042,-0.267578,-0.27356,-0.276398,-0.280334,-0.284973,-0.28653,-0.282227,-0.265167,-0.236389,-0.206726,-0.176575,-0.149139,-0.117523,-0.0845642,-0.0503235,-0.0200806,0.00308228,0.0192566,0.0336914,0.0531616,0.078125,0.107056,0.134705,0.155853,0.17276,0.184967,0.193359,0.192688,0.182831,0.160278,0.126862,0.0934143,0.0666504,0.0528259,0.0484619,0.0545654,0.0690002,0.0892029,0.11673,0.145966,0.176239,0.19986,0.210938,0.212097,0.205719,0.197937,0.194489,0.192291,0.189667,0.185516,0.180542,0.178589,0.179993,0.182281,0.176971,0.162018,0.138458,0.110077,0.0814209,0.0531006,0.0229492,-0.00894165,-0.0404053,-0.0664368,-0.0843506,-0.0913391,-0.0924072,-0.0910034,-0.0907288,-0.0918274,-0.0906067,-0.0901489,-0.0899353,-0.0944214,-0.104218,-0.11792,-0.136719,-0.154175,-0.170135,-0.185303,-0.201965,-0.219482,-0.237122,-0.25235,-0.26593,-0.274719,-0.281555,-0.288055,-0.292694,-0.292633,-0.283966,-0.261749,-0.231873,-0.197327,-0.164307,-0.13269,-0.0995483,-0.0668335,-0.0335693,-0.00531006,0.0137024,0.0258484,0.0396118,0.0596008,0.0851135,0.113434,0.138733,0.157715,0.173553,0.184357,0.190826,0.184784,0.167999,0.136444,0.098877,0.0653076,0.0410156,0.0278625,0.0281982,0.0385132,0.0589905,0.0856323,0.120148,0.153961,0.186584,0.210205,0.218933,0.21814,0.209137,0.200684,0.196259,0.192688,0.188995,0.18335,0.17926,0.181488,0.187531,0.192963,0.186584,0.168274,0.143433,0.114777,0.085968,0.0560303,0.0201416,-0.0161133,-0.0498047,-0.0750427,-0.0881958,-0.0921631,-0.0921631,-0.0910034,-0.0907288,-0.0901489,-0.0884705,-0.0857849,-0.086792,-0.0940247,-0.105988,-0.125427,-0.144562,-0.164154,-0.181335,-0.200134,-0.220947,-0.241882,-0.259735,-0.272491,-0.281006,-0.283966,-0.285583,-0.286987,-0.284698,-0.274963,-0.255249,-0.227203,-0.196777,-0.166718,-0.138123,-0.109741,-0.0811462,-0.0506592,-0.0235596,-0.00247192,0.0127563,0.0263062,0.0434875,0.0653076,0.089325,0.111542,0.130127,0.145111,0.154449,0.159271,0.158051,0.148071,0.127869,0.100067,0.0708008,0.0484619,0.0358276,0.0349731,0.0444336,0.062561,0.0883179,0.118744,0.153564,0.186584,0.214783,0.231415,0.23584,0.230957,0.222015,0.213104,0.206055,0.198669,0.18988,0.18161,0.177307,0.179474,0.184235,0.183014,0.17276,0.152893,0.127991,0.101013,0.0706787,0.0375977,0.00112915,-0.0352478,-0.0644836,-0.0849609,-0.0942993,-0.094574,-0.0939026,-0.091217,-0.090332,-0.0883789,-0.0860291,-0.086853,-0.0928345,-0.104706,-0.121735,-0.141937,-0.162628,-0.180084,-0.197113,-0.214966,-0.2323,-0.248993,-0.26236,-0.271088,-0.276123,-0.279755,-0.284302,-0.28653,-0.283905,-0.269745,-0.245178,-0.215302,-0.184021,-0.156311,-0.129059,-0.0987244,-0.0664978,-0.0363159,-0.0128784,0.00189209,0.0139465,0.0293274,0.0522766,0.081543,0.108917,0.129547,0.145905,0.159332,0.169861,0.173492,0.165588,0.143768,0.111084,0.0782471,0.0514832,0.0367126,0.0346375,0.0424194,0.0595398,0.0834961,0.116394,0.153625,0.189667,0.218384,0.233215,0.233826,0.22403,0.213501,0.206512,0.202545,0.199127,0.192352,0.188049,0.188934,0.196045,0.203979,0.202362,0.186462,0.158997,0.12738,0.0957031,0.0643616,0.0297241,-0.00894165,-0.0441589,-0.0724792,-0.0861816,-0.0888062,-0.0846252,-0.0813599,-0.0810242,-0.0814209,-0.0837708,-0.0848999,-0.0882568,-0.098053,-0.114227,-0.136108,-0.158875,-0.17807,-0.192566,-0.207001,-0.223511,-0.243225,-0.262817,-0.277405,-0.285522,-0.286377,-0.28894,-0.29129,-0.291138,-0.283783,-0.261688,-0.228394,-0.192017,-0.160065,-0.133636,-0.108673,-0.0796814,-0.0479126,-0.0219421,-0.00497437,0.00491333,0.0142212,0.0336304,0.0609436,0.0923462,0.118866,0.137268,0.149994,0.160339,0.167053,0.164703,0.15033,0.121948,0.0881348,0.0585327,0.0387878,0.032074,0.0396729,0.0552979,0.0763855,0.10498,0.139526,0.178192,0.213165,0.237579,0.245728,0.239532,0.22699,0.214966,0.208008,0.203094,0.193085,0.18222,0.174042,0.175507,0.185303,0.191162,0.184509,0.165436,0.138245,0.109802,0.0822144,0.052002,0.0158997,-0.0236816,-0.0599365,-0.0855713,-0.0973206,-0.0984497,-0.0949707,-0.0919495,-0.0892029,-0.0877075,-0.0837708,-0.0802612,-0.08255,-0.0921631,-0.113281,-0.138672,-0.164246,-0.186035,-0.20343,-0.220673,-0.240692,-0.26062,-0.277313,-0.286774,-0.287048,-0.284912,-0.284119,-0.283691,-0.278137,-0.260071,-0.2276,-0.189056,-0.15564,-0.128662,-0.107391,-0.081604,-0.0518188,-0.0240173,-0.00549316,0.00302124,0.0100708,0.0256348,0.0516052,0.0848389,0.114777,0.137268,0.152496,0.162689,0.169281,0.168671,0.154449,0.12738,0.0906677,0.0583801,0.0336914,0.0255737,0.0308838,0.0467224,0.068512,0.0956421,0.129608,0.167267,0.20578,0.232025,0.239807,0.234161,0.218994,0.205994,0.196716,0.189545,0.179596,0.165833,0.154175,0.155365,0.163971,0.173431,0.169952,0.1539,0.12973,0.104645,0.0814819,0.0569763,0.0260315,-0.00985718,-0.0439758,-0.0696106,-0.0811462,-0.0809326,-0.0783386,-0.0767822,-0.0777283,-0.07724,-0.0753174,-0.0724792,-0.0740356,-0.0857849,-0.107117,-0.135254,-0.162903,-0.185791,-0.204773,-0.224304,-0.246918,-0.270355,-0.288727,-0.297394,-0.296173,-0.29068,-0.285645,-0.278656,-0.262817,-0.233551,-0.192566,-0.149933,-0.115631,-0.0925598,-0.0732117,-0.0524292,-0.0312805,-0.0143738,-0.00643921,-0.00363159,0.00369263,0.0222168,0.052948,0.0892029,0.120605,0.14444,0.16095,0.169861,0.1698,0.158264,0.130951,0.0920105,0.0493164,0.0140381,-0.00772095,-0.00811768,0.0065918,0.0315552,0.0633545,0.100739,0.142761,0.184357,0.218475,0.234833,0.231873,0.215973,0.198181,0.185181,0.176117,0.166504,0.155579,0.146515,0.14679,0.155792,0.167603,0.172028,0.163422,0.143951,0.121399,0.0997925,0.0780029,0.0502625,0.0186462,-0.0140991,-0.0404053,-0.0563049,-0.0628357,-0.0636292,-0.0647583,-0.0675964,-0.0708618,-0.0722961,-0.0700073,-0.0680542,-0.0740356,-0.0885925,-0.111603,-0.137115,-0.15979,-0.180756,-0.201202,-0.226776,-0.252502,-0.276245,-0.289734,-0.292969,-0.290558,-0.286255,-0.27832,-0.260406,-0.228729,-0.187378,-0.144226,-0.108856,-0.0855713,-0.0667725,-0.0478516,-0.0296021,-0.017395,-0.0141602,-0.0150452,-0.0102539,0.00827026,0.0369263,0.0710144,0.100006,0.124023,0.141357,0.152283,0.155701,0.144836,0.116394,0.0767212,0.0345764,-0.00012207,-0.0194092,-0.0232239,-0.0114746,0.0107422,0.0411377,0.0788574,0.123291,0.166992,0.202881,0.21933,0.218597,0.205505,0.192017,0.183105,0.175507,0.165375,0.153015,0.143433,0.144623,0.157104,0.170288,0.175629,0.167175,0.150208,0.13269,0.114624,0.0942383,0.065979,0.0317383,-0.0017395,-0.0302124,-0.0458374,-0.0518799,-0.0536804,-0.0550232,-0.058136,-0.0596619,-0.0578613,-0.0536194,-0.0531616,-0.0606689,-0.0780029,-0.10321,-0.128662,-0.152435,-0.17215,-0.195251,-0.222229,-0.250397,-0.272888,-0.285583,-0.28894,-0.287933,-0.284027,-0.272491,-0.24826,-0.210693,-0.166931,-0.126923,-0.0992737,-0.0768433,-0.0593262,-0.0421448,-0.0324097,-0.0316162,-0.0361023,-0.0369873,-0.0233459,0.00302124,0.0367737,0.0711975,0.101746,0.129395,0.150208,0.160675,0.154114,0.127991,0.0875244,0.0421448,0.000274658,-0.0293274,-0.0425415,-0.0390625,-0.0212708,0.00845337,0.0482483,0.0965271,0.145721,0.188812,0.212433,0.216858,0.205322,0.190552,0.178925,0.168182,0.156982,0.142273,0.13269,0.135498,0.151672,0.17041,0.181549,0.179596,0.168335,0.154175,0.139587,0.11972,0.0919495,0.0571899,0.0196533,-0.00985718,-0.0282593,-0.0347595,-0.0359802,-0.0390625,-0.0410767,-0.0440979,-0.0424194,-0.0413513,-0.041748,-0.0516052,-0.0705261,-0.0970459,-0.123505,-0.147186,-0.168335,-0.191406,-0.218262,-0.246063,-0.269409,-0.283691,-0.291901,-0.294434,-0.290283,-0.277069,-0.248718,-0.209351,-0.166779,-0.128326,-0.0991211,-0.0749817,-0.0547791,-0.0410767,-0.0368347,-0.040741,-0.0469666,-0.0439758,-0.0265808,0.00201416,0.0359802,0.0693359,0.102417,0.131561,0.153564,0.161469,0.1492,0.115906,0.0710754,0.0231628,-0.0163879,-0.041687,-0.0493164,-0.0437622,-0.024231,0.00704956,0.0491943,0.0976562,0.145233,0.179932,0.195099,0.192627,0.183228,0.174164,0.168274,0.160278,0.149261,0.138794,0.13559,0.145447,0.163361,0.178741,0.183777,0.178528,0.167328,0.156036,0.142487,0.124756,0.0970459,0.0638428,0.0294495,0.00146484,-0.0161743,-0.0258484,-0.0343628,-0.0414734,-0.0493164,-0.0516663,-0.049408,-0.0466309,-0.0462341,-0.0560303,-0.074646,-0.0990601,-0.12558,-0.1492,-0.172974,-0.200012,-0.230072,-0.25766,-0.277527,-0.287537,-0.289795,-0.284241,-0.270142,-0.246307,-0.21109,-0.171753,-0.133484,-0.102875,-0.0777893,-0.0577087,-0.0429688,-0.037384,-0.041748,-0.049469,-0.0501404,-0.0365906,-0.012207,0.017395,0.0479126,0.0807495,0.112946,0.141418,0.157928,0.153229,0.127594,0.0877991,0.0436401,0.00424194,-0.026123,-0.0436401,-0.0482483,-0.0379944,-0.0124207,0.0267029,0.0736389,0.12323,0.161743,0.180267,0.183228,0.176178,0.169342,0.163086,0.154694,0.142548,0.129608,0.124084,0.132141,0.149414,0.165375,0.171295,0.165985,0.155121,0.146301,0.136993,0.122498,0.098877,0.0692749,0.0392761,0.016449,0.00189209,-0.00482178,-0.013092,-0.0238953,-0.0378418,-0.0491333,-0.0535583,-0.0558472,-0.0593872,-0.0704651,-0.0873108,-0.108246,-0.125519,-0.140869,-0.155975,-0.178253,-0.205994,-0.234772,-0.258667,-0.274841,-0.281097,-0.278473,-0.265503,-0.240417,-0.206512,-0.166595,-0.127594,-0.090332,-0.0591431,-0.0371094,-0.0269775,-0.0271912,-0.0359802,-0.0421448,-0.0390015,-0.0264587,-0.00717163,0.0175171,0.0475769,0.0828857,0.118927,0.145844,0.155792,0.144043,0.114624,0.0767212,0.0380554,0.00280762,-0.0227661,-0.0370483,-0.0388489,-0.0255737,0.00268555,0.040741,0.0831604,0.119324,0.141144,0.1474,0.14389,0.139465,0.134918,0.129547,0.122284,0.115173,0.112427,0.120667,0.137054,0.153778,0.162964,0.161743,0.154175,0.144775,0.135986,0.122681,0.104309,0.081604,0.0555115,0.0353088,0.020813,0.0137634,0.00732422,-0.00314331,-0.0160522,-0.032135,-0.0433655,-0.053009,-0.0635071,-0.0766602,-0.094574,-0.116455,-0.134247,-0.147919,-0.159119,-0.174438,-0.193909,-0.216583,-0.236389,-0.251404,-0.25827,-0.254181,-0.240601,-0.217255,-0.187469,-0.154572,-0.121002,-0.0864563,-0.0546265,-0.0317383,-0.0231628,-0.0236816,-0.0327454,-0.0390625,-0.0334167,-0.0191956,-0.000793457,0.0222168,0.0499878,0.0840149,0.117584,0.14389,0.151672,0.136108,0.105103,0.0658264,0.0263672,-0.00537109,-0.02771,-0.0389404,-0.0369873,-0.0209351,0.0110779,0.0498047,0.0897217,0.121338,0.136261,0.13443,0.123749,0.112823,0.10202,0.094574,0.0856934,0.0795898,0.0822144,0.0986023,0.123413,0.147308,0.160614,0.161346,0.1539,0.145111,0.134308,0.11792,0.0971069,0.0718079,0.0478516,0.0326843,0.0255127,0.0227661,0.0185852,0.0100098,-0.00482178,-0.0205383,-0.0348206,-0.0500793,-0.0671692,-0.0887146,-0.111359,-0.13269,-0.148651,-0.15744,-0.166504,-0.178406,-0.196655,-0.21637,-0.23645,-0.248932,-0.248535,-0.235718,-0.212006,-0.183289,-0.149994,-0.116577,-0.0764465,-0.0354919,-0.00683594,0.00524902,-0.00106812,-0.0171814,-0.0303345,-0.0324097,-0.0249023,-0.0139465,-0.000549316,0.0222168,0.0558472,0.0967712,0.130402,0.147797,0.137848,0.111084,0.074707,0.037262,0.00543213,-0.0198059,-0.037384,-0.0434875,-0.0348206,-0.00946045,0.0273743,0.066925,0.10141,0.118988,0.124298,0.119598,0.114044,0.110199,0.104431,0.0932312,0.0803528,0.0720215,0.0767822,0.0928955,0.11261,0.123962,0.125427,0.120392,0.118408,0.118988,0.118408,0.109467,0.0899963,0.0668335,0.0480652,0.0391846,0.0340271,0.0284424,0.0137634,-0.00524902,-0.025177,-0.0390625,-0.0512085,-0.0652466,-0.0843506,-0.108124,-0.131897,-0.149597,-0.159332,-0.165375,-0.174225,-0.189941,-0.21228,-0.231537,-0.239685,-0.230865,-0.210754,-0.186249,-0.164917,-0.141937,-0.109863,-0.0657654,-0.0204773,0.00912476,0.0162964,0.00643921,-0.00497437,-0.00692749,-0.000335693,0.00543213,0.0071106,0.0104065,0.0267029,0.0574646,0.0949707,0.120728,0.122681,0.103973,0.0720825,0.0404663,0.0132141,-0.0065918,-0.0236206,-0.0335693,-0.0332947,-0.0152283,0.019989,0.061615,0.098053,0.115845,0.115234,0.10672,0.0977173,0.0910645,0.0845032,0.0740356,0.061615,0.0557861,0.0639038,0.0852356,0.110596,0.127777,0.130219,0.124298,0.11557,0.107849,0.0984497,0.0855713,0.0667114,0.0465088,0.0322876,0.0289307,0.0336914,0.0392761,0.038269,0.0269165,0.0118103,-0.00610352,-0.0232849,-0.0424194,-0.0681152,-0.0968628,-0.125916,-0.150604,-0.165314,-0.175049,-0.18396,-0.197784,-0.216034,-0.231476,-0.236664,-0.225861,-0.203094,-0.174957,-0.149597,-0.125305,-0.0959167,-0.057373,-0.0168457,0.00878906,0.0140991,0.00415039,-0.00604248,-0.00643921,0.00323486,0.0141602,0.0239563,0.0349121,0.0555115,0.0853577,0.117401,0.13739,0.131897,0.10498,0.0657654,0.0245667,-0.0105896,-0.0361023,-0.053894,-0.0609436,-0.0561829,-0.0336914,0.00463867,0.0502625,0.0885315,0.110352,0.112549,0.105652,0.0964355,0.0890503,0.0807495,0.0701294,0.0568542,0.0503235,0.058136,0.0791321,0.105988,0.124359,0.129608,0.128052,0.122498,0.118805,0.11261,0.100403,0.0802612,0.0552979,0.0349121,0.0245056,0.0224304,0.0212708,0.0145569,-0.000610352,-0.0179749,-0.0328979,-0.0450439,-0.0596008,-0.0788574,-0.102356,-0.126251,-0.145294,-0.157257,-0.165161,-0.175568,-0.193909,-0.21463,-0.230286,-0.228882,-0.211823,-0.182953,-0.153839,-0.127869,-0.099884,-0.0634155,-0.0195312,0.0194702,0.0381165,0.0363159,0.0221558,0.0110779,0.00958252,0.0140991,0.0173035,0.0209961,0.0288696,0.0507507,0.0822144,0.113556,0.12738,0.117798,0.0881348,0.0516052,0.0157166,-0.013031,-0.0359192,-0.0519409,-0.0609436,-0.0544434,-0.0308838,0.00616455,0.0453796,0.0761719,0.0892029,0.0891418,0.0848999,0.0820312,0.0806885,0.0769958,0.068512,0.0590515,0.0574646,0.0681763,0.0891418,0.107849,0.11673,0.114227,0.107178,0.100555,0.0969849,0.0918274,0.081543,0.065979,0.0502625,0.0412903,0.0396729,0.0397339,0.0362549,0.0228882,-0.000213623,-0.0253601,-0.0502625,-0.0731506,-0.0949707,-0.116638,-0.138672,-0.156097,-0.166718,-0.169861,-0.171692,-0.180206,-0.193756,-0.208069,-0.210358,-0.196259,-0.169464,-0.141602,-0.11618,-0.0925598,-0.0605469,-0.020752,0.0186462,0.0414124,0.045166,0.0346375,0.0259094,0.0271301,0.0342407,0.0412903,0.0466309,0.0547791,0.0720215,0.0962524,0.118866,0.125916,0.109009,0.074646,0.0331421,-0.00549316,-0.033905,-0.0510864,-0.0611572,-0.0638428,-0.0557861,-0.0318909,0.00256348,0.0430908,0.0723572,0.0816956,0.0744934,0.0620117,0.0555725,0.0548401,0.0546265,0.0483093,0.0390015,0.0384521,0.0534973,0.0809326,0.106506,0.116302,0.111603,0.100281,0.0920105,0.0879211,0.08255,0.0706787,0.0517578,0.0344849,0.027771,0.0299988,0.038269,0.0403442,0.0307312,0.0109253,-0.0147705,-0.0381165,-0.0606079,-0.0835571,-0.109192,-0.136169,-0.16095,-0.175232,-0.17981,-0.181152,-0.18692,-0.196716,-0.202545,-0.194366,-0.172546,-0.142944,-0.116455,-0.0927429,-0.0693359,-0.0375061,-0.00088501,0.0297852,0.0472412,0.0497437,0.0464478,0.0475159,0.0551147,0.0646362,0.0710144,0.0771179,0.0878601,0.102295,0.120056,0.128723,0.122681,0.0967102,0.0604858,0.0221558,-0.0105896,-0.0333557,-0.048584,-0.058197,-0.0603333,-0.0498657,-0.0269775,0.00100708,0.0284424,0.0422974,0.0436401,0.0386047,0.0353088,0.0368347,0.0378418,0.0354309,0.0299988,0.0271301,0.032074,0.0489807,0.069397,0.0864563,0.0927429,0.0906067,0.0869751,0.0836182,0.0810242,0.0719604,0.0546875,0.03302,0.0157166,0.00772095,0.00900269,0.0109253,0.00811768,-0.00262451,-0.01651,-0.0299377,-0.0432129,-0.0598145,-0.0822144,-0.110077,-0.138672,-0.16391,-0.179871,-0.189331,-0.195709,-0.200073,-0.195374,-0.176788,-0.14505,-0.106445,-0.0719604,-0.045166,-0.0254517,-0.0050354,0.0153809,0.032135,0.0390015,0.0371094,0.0340271,0.0400085,0.0564575,0.0756531,0.0928955,0.106567,0.120392,0.135925,0.147308,0.148468,0.132019,0.098999,0.0579834,0.0202637,-0.0103455,-0.0302734,-0.040802,-0.0448303,-0.0424194,-0.0315552,-0.0142212,0.00744629,0.0246277,0.0309448,0.0249023,0.0137024,0.00570679,0.00430298,0.00650024,0.00692749,0.00509644,0.00363159,0.0106812,0.0249023,0.0450439,0.0593872,0.0654907,0.0644836,0.0628967,0.0637512,0.0646362,0.061615,0.0511475,0.0351562,0.0194702,0.00952148,0.00436401,0.000213623,-0.0105896,-0.026123,-0.0461121,-0.0643005,-0.0799255,-0.0945129,-0.110474,-0.129272,-0.150604,-0.170349,-0.183105,-0.190277,-0.191406,-0.187531,-0.176392,-0.151886,-0.118652,-0.0791931,-0.0426331,-0.0112,0.0158386,0.0410767,0.0626221,0.0750427,0.0787964,0.0767822,0.0775146,0.0877991,0.101471,0.116638,0.126434,0.136719,0.146179,0.155243,0.156525,0.142151,0.113281,0.0730286,0.0332336,0.000274658,-0.0220947,-0.0344238,-0.0396118,-0.0388489,-0.0328979,-0.019928,-0.00308228,0.0125427,0.0211487,0.0192566,0.00717163,-0.0020752,-0.00604248,-0.00167847,0.00280762,0.00537109,0.00363159,0.00558472,0.0152893,0.0302124,0.0446472,0.0522156,0.0489807,0.0422058,0.0371704,0.0377808,0.0397949,0.036438,0.0248413,0.00860596,-0.0067749,-0.0170593,-0.0252991,-0.0366516,-0.0563049,-0.0802002,-0.104492,-0.122223,-0.133636,-0.141266,-0.152496,-0.165985,-0.181885,-0.193481,-0.19812,-0.195038,-0.185791,-0.168182,-0.143097,-0.108398,-0.0684509,-0.0267029,0.0139465,0.0508728,0.0787964,0.0974426,0.105896,0.107239,0.106842,0.110413,0.118744,0.129456,0.141541,0.155579,0.170288,0.184113,0.192169,0.185516,0.163635,0.128326,0.0856323,0.0437622,0.00878906,-0.0153809,-0.0302734,-0.0380554,-0.0384521,-0.0316772,-0.0171814,0,0.0120239,0.0134888,0.00402832,-0.00778198,-0.015564,-0.0177917,-0.0144958,-0.0128174,-0.0100098,-0.0050354,0.00643921,0.020752,0.0348206,0.0443726,0.0476379,0.0458984,0.0441589,0.0419617,0.0409546,0.0379333,0.0304565,0.0181885,0.00430298,-0.0101318,-0.0248413,-0.0428162,-0.066925,-0.0969238,-0.127258,-0.155182,-0.177246,-0.19397,-0.208801,-0.221344,-0.23053,-0.235382,-0.233887,-0.224976,-0.21048,-0.187256,-0.154846,-0.115387,-0.0737,-0.03302,0.0065918,0.0444336,0.0798035,0.109802,0.127106,0.13324,0.135651,0.139862,0.1492,0.16095,0.173309,0.184174,0.195038,0.20752,0.215363,0.211884,0.192291,0.157928,0.113953,0.0698547,0.0310059,0.00262451,-0.0163879,-0.0270386,-0.0314026,-0.0284424,-0.0182495,0.000732422,0.0198059,0.0307922,0.0296021,0.0190735,0.0067749,0.000549316,-0.00234985,-0.00665283,-0.015625,-0.0220947,-0.0215454,-0.00845337,0.0110779,0.0304565,0.0413513,0.0428162,0.0430908,0.0447693,0.0471802,0.0458374,0.0369263,0.0194092,-0.00146484,-0.019989,-0.0350342,-0.050415,-0.0734863,-0.104767,-0.140533,-0.172363,-0.196777,-0.215515,-0.232758,-0.24939,-0.264496,-0.272705,-0.270264,-0.256439,-0.231476,-0.200806,-0.165039,-0.127258,-0.089386,-0.0509338,-0.0110779,0.0289917,0.0646973,0.0927429,0.113373,0.129059,0.148804,0.170349,0.189484,0.202637,0.21048,0.215851,0.223846,0.230865,0.230133,0.216705,0.189056,0.151764,0.113373,0.078186,0.0490723,0.0259705,0.00750732,-0.00765991,-0.0170593,-0.0191345,-0.0116882,0.000335693,0.00912476,0.00985718,0.00430298,-0.000793457,-0.00012207,0.00671387,0.0118713,0.0114746,0.00894165,0.00738525,0.0149536,0.0287781,0.0443726,0.0542908,0.0564575,0.0555115,0.0546265,0.0550232,0.0545654,0.0477905,0.0324097,0.011261,-0.00991821,-0.0280457,-0.0454407,-0.0668335,-0.0975952,-0.136261,-0.175232,-0.209595,-0.237793,-0.26236,-0.284576,-0.303162,-0.313904,-0.312775,-0.295044,-0.26297,-0.222168,-0.17572,-0.130066,-0.0855103,-0.0455017,-0.00872803,0.0250244,0.0520935,0.0726929,0.0869751,0.100952,0.121002,0.147644,0.17691,0.202423,0.221893,0.234375,0.242889,0.245453,0.238739,0.218384,0.185242,0.144775,0.104218,0.0710754,0.0462341,0.0279846,0.0142212,0.00308228,-0.00448608,-0.0062561,-0.000671387,0.00772095,0.0128784,0.0124207,0.00765991,0.00430298,0.00643921,0.0128784,0.016449,0.0158386,0.012207,0.0101318,0.0139465,0.0252991,0.0367126,0.0448914,0.0522766,0.0590515,0.0686035,0.078125,0.0858459,0.0845642,0.0714111,0.0499878,0.0238953,-0.00430298,-0.0333557,-0.0674438,-0.106232,-0.148651,-0.186035,-0.21814,-0.243622,-0.266846,-0.290131,-0.312012,-0.327179,-0.331085,-0.318329,-0.290955,-0.251495,-0.204376,-0.155121,-0.106384,-0.0590515,-0.0101318,0.0334778,0.0701904,0.0929565,0.106781,0.118408,0.137604,0.1633,0.18927,0.212433,0.231415,0.247406,0.261749,0.269196,0.260956,0.233154,0.188873,0.136444,0.0848389,0.038269,0.00262451,-0.0241089,-0.0399475,-0.0465698,-0.0449829,-0.0341492,-0.0185852,-0.00167847,0.0109253,0.0157776,0.0158386,0.013092,0.0128174,0.0126953,0.0140381,0.0134277,0.0115967,0.0146179,0.0228882,0.038269,0.0546265,0.069397,0.0802612,0.0869141,0.0900574,0.0917358,0.0910034,0.0812073,0.0653687,0.0415344,0.013092,-0.0159607,-0.0463867,-0.0812683,-0.118652,-0.157532,-0.194489,-0.225708,-0.252686,-0.273712,-0.292572,-0.308411,-0.318268,-0.316254,-0.300079,-0.267059,-0.222565,-0.171417,-0.122345,-0.0774536,-0.0317993,0.0103455,0.0483093,0.0789185,0.0977173,0.108917,0.123749,0.147461,0.177521,0.209473,0.236664,0.255981,0.270691,0.279938,0.279205,0.262024,0.224701,0.173431,0.115784,0.0613403,0.0167236,-0.0191956,-0.0446472,-0.0604858,-0.0643616,-0.0567932,-0.0435486,-0.026123,-0.0140991,-0.00952148,-0.00912476,-0.0114746,-0.0134888,-0.0137024,-0.0138245,-0.012146,-0.0083313,-0.000732422,0.0124207,0.0279846,0.0461121,0.0624084,0.0756531,0.0842896,0.090332,0.091156,0.0884705,0.0793457,0.0632324,0.0439758,0.0205994,-0.00744629,-0.0393982,-0.0761719,-0.116058,-0.155792,-0.194244,-0.22699,-0.257263,-0.281891,-0.299133,-0.308746,-0.30719,-0.29483,-0.270264,-0.235992,-0.19342,-0.147308,-0.104095,-0.0636292,-0.0234985,0.0148315,0.0489807,0.07901,0.101746,0.122009,0.145966,0.174835,0.203766,0.229523,0.251953,0.268524,0.279663,0.284363,0.275787,0.252289,0.215302,0.169952,0.123291,0.0767822,0.0350952,-0.00390625,-0.0366516,-0.0604858,-0.0720825,-0.0740356,-0.066925,-0.0560303,-0.0448303,-0.0357056,-0.0257874,-0.0171204,-0.00967407,-0.003479,-0.00140381,-0.00201416,-0.0032959,-0.00213623,0.00390625,0.0146179,0.027771,0.0418701,0.0557861,0.0683289,0.0810852,0.0889893,0.0908203,0.0819397,0.0620728,0.0322876,-0.00268555,-0.0428162,-0.0857849,-0.12912,-0.172089,-0.211151,-0.245392,-0.271362,-0.291565,-0.304565,-0.311615,-0.312225,-0.304169,-0.282104,-0.248322,-0.202637,-0.152283,-0.105988,-0.0630188,-0.0220947,0.0198669,0.0598145,0.09375,0.117981,0.135162,0.153229,0.179749,0.211548,0.243164,0.269196,0.287323,0.300537,0.307861,0.305847,0.287323,0.251495,0.202209,0.146179,0.0899353,0.0401306,-0.00134277,-0.0350342,-0.0584717,-0.0701294,-0.072876,-0.06604,-0.0517578,-0.0359192,-0.0234985,-0.01651,-0.0158386,-0.0147705,-0.0151062,-0.0128174,-0.0118713,-0.0108643,-0.0103455,-0.00274658,0.0125427,0.0336914,0.053833,0.0718689,0.0819397,0.086853,0.0871277,0.0814819,0.0679321,0.0434875,0.0101929,-0.0302124,-0.0732117,-0.11618,-0.155457,-0.195374,-0.232147,-0.266327,-0.295715,-0.317474,-0.33197,-0.338867,-0.338806,-0.328003,-0.302765,-0.262024,-0.208252,-0.150879,-0.0993347,-0.0518188,-0.00732422,0.0342407,0.0704041,0.0976562,0.116913,0.132233,0.152954,0.181824,0.214172,0.247589,0.277863,0.304169,0.322235,0.332092,0.325928,0.299683,0.256531,0.202759,0.143829,0.089386,0.0423584,0.00650024,-0.0195312,-0.0359192,-0.0423584,-0.0403442,-0.0315552,-0.0183105,-0.00860596,-0.00430298,-0.00592041,-0.00637817,-0.00537109,-0.000946045,0.0020752,0.00469971,0.00592041,0.00967407,0.019989,0.0341492,0.0492554,0.0605469,0.0670471,0.0697937,0.0713501,0.0701904,0.065094,0.0510864,0.0249634,-0.00900269,-0.0484009,-0.0910645,-0.133972,-0.179474,-0.225586,-0.26825,-0.305786,-0.333832,-0.352417,-0.363098,-0.364838,-0.35611,-0.335449,-0.302551,-0.256317,-0.202301,-0.146057,-0.091217,-0.0406189,0.00289917,0.0422974,0.0762329,0.104828,0.127655,0.145844,0.166504,0.188202,0.21579,0.244446,0.270477,0.292358,0.305237,0.307983,0.294708,0.266327,0.22644,0.176788,0.122833,0.0704651,0.0261841,-0.00827026,-0.0279236,-0.0367737,-0.0358276,-0.028717,-0.0141602,0.00482178,0.0235596,0.0362549,0.0446472,0.0464478,0.0481873,0.0472412,0.0477905,0.0453186,0.0440979,0.046051,0.0526733,0.0627441,0.073761,0.0823669,0.0877075,0.0881958,0.0834351,0.0733643,0.0557861,0.0291138,-0.00549316,-0.0492554,-0.0979919,-0.15033,-0.197784,-0.2435,-0.282501,-0.317474,-0.344788,-0.365234,-0.377197,-0.378723,-0.37149,-0.352631,-0.318665,-0.271027,-0.214294,-0.154785,-0.0976562,-0.045166,0.00289917,0.0445557,0.0765076,0.098999,0.112823,0.126099,0.143219,0.165833,0.191284,0.218323,0.245117,0.267578,0.284576,0.290344,0.28009,0.251068,0.204895,0.147247,0.0852966,0.0292053,-0.0138245,-0.0420837,-0.0593262,-0.0632324,-0.0545044,-0.0332947,-0.00228882,0.0293274,0.0541077,0.0657654,0.0723572,0.0777283,0.081604,0.085022,0.0834351,0.078186,0.0751038,0.0785828,0.089325,0.104431,0.117249,0.125916,0.127594,0.125092,0.117401,0.103821,0.0836792,0.0507507,0.00631714,-0.0448303,-0.0983276,-0.148132,-0.195923,-0.241272,-0.285706,-0.325714,-0.356201,-0.375854,-0.384918,-0.386322,-0.382568,-0.367523,-0.338684,-0.292145,-0.232635,-0.169739,-0.111145,-0.0570374,-0.00772095,0.0377808,0.079071,0.109528,0.128662,0.141083,0.155121,0.175049,0.200409,0.226044,0.247986,0.262238,0.268585,0.267242,0.253357,0.223022,0.177185,0.118256,0.0567932,0.00296021,-0.0357666,-0.0612793,-0.0773315,-0.0841675,-0.0811462,-0.0653687,-0.0396118,-0.00912476,0.0163879,0.0348206,0.048584,0.0636292,0.0806885,0.0972595,0.110077,0.115845,0.11792,0.121277,0.127441,0.135254,0.140747,0.14209,0.136169,0.128662,0.119263,0.109344,0.0928955,0.065155,0.0256958,-0.0236206,-0.077179,-0.132141,-0.185364,-0.237244,-0.286591,-0.329468,-0.362305,-0.378876,-0.385925,-0.38324,-0.372894,-0.354706,-0.321747,-0.273956,-0.214111,-0.152679,-0.0961914,-0.0462341,0.000274658,0.0449829,0.0846252,0.115784,0.134033,0.145172,0.15799,0.176514,0.198334,0.220276,0.237,0.246979,0.251343,0.250549,0.238342,0.208862,0.163422,0.104309,0.0420227,-0.0124817,-0.053894,-0.0837708,-0.102478,-0.112152,-0.108337,-0.0906677,-0.0586548,-0.0231628,0.00894165,0.0326233,0.0513306,0.0673218,0.0846252,0.098938,0.108734,0.112427,0.113281,0.118195,0.128326,0.143219,0.154572,0.158112,0.154236,0.145569,0.133423,0.118073,0.094574,0.0588074,0.0103455,-0.0429688,-0.098114,-0.148987,-0.197449,-0.243286,-0.285858,-0.323822,-0.351349,-0.368927,-0.375183,-0.373627,-0.365906,-0.347992,-0.315643,-0.264099,-0.200409,-0.134308,-0.0744934,-0.021759,0.0263062,0.0722961,0.110809,0.138397,0.152161,0.158051,0.16806,0.182953,0.200409,0.217133,0.230286,0.238068,0.240692,0.235718,0.219727,0.188599,0.146729,0.0948486,0.0396118,-0.0104675,-0.0506592,-0.0785828,-0.0959167,-0.104431,-0.101959,-0.0888672,-0.0640259,-0.0318909,-0.00134277,0.024231,0.0466309,0.0678406,0.0875244,0.105164,0.117798,0.123688,0.125519,0.12619,0.129272,0.133087,0.137909,0.138855,0.135315,0.127777,0.117188,0.103302,0.0826721,0.0517578,0.00866699,-0.0419617,-0.0963745,-0.150757,-0.201355,-0.250275,-0.29538,-0.33316,-0.363312,-0.380554,-0.387268,-0.382904,-0.368195,-0.34082,-0.299805,-0.244232,-0.179657,-0.113495,-0.053772,-0.0012207,0.045166,0.0845032,0.117188,0.13913,0.149323,0.154449,0.162079,0.174438,0.190155,0.207581,0.222839,0.233887,0.240417,0.239685,0.223694,0.187988,0.137604,0.078186,0.0186462,-0.0320129,-0.0706177,-0.0986633,-0.114716,-0.117249,-0.104218,-0.0785217,-0.0420227,-0.00582886,0.0265808,0.0514832,0.073822,0.0919495,0.107849,0.118469,0.123016,0.124695,0.127106,0.133301,0.142212,0.152496,0.156708,0.155914,0.147308,0.136383,0.119385,0.0987854,0.0697327,0.0283203,-0.0202026,-0.0715332,-0.125244,-0.1763,-0.22464,-0.271362,-0.314697,-0.350159,-0.372894,-0.384308,-0.381744,-0.372284,-0.354919,-0.326782,-0.281281,-0.219543,-0.149323,-0.0838318,-0.0315552,0.0106812,0.0510864,0.0885925,0.120209,0.137909,0.141541,0.141602,0.149933,0.165497,0.184448,0.199005,0.207672,0.210999,0.210144,0.204163,0.18396,0.150085,0.10437,0.0524902,0.00268555,-0.0406189,-0.0717468,-0.0922852,-0.102478,-0.101807,-0.0898132,-0.0675964,-0.0335693,0.00442505,0.0396729,0.0677185,0.0894775,0.104767,0.119537,0.130127,0.136597,0.136658,0.13269,0.130737,0.133423,0.141479,0.150543,0.155457,0.154846,0.146393,0.13382,0.114288,0.0866394,0.0468445,-0.00448608,-0.0618286,-0.121216,-0.174957,-0.222565,-0.264038,-0.301758,-0.334503,-0.358459,-0.36908,-0.370087,-0.363434,-0.350067,-0.326263,-0.28537,-0.227051,-0.159119,-0.0947571,-0.0383911,0.0115356,0.0588074,0.0999451,0.13028,0.144287,0.144562,0.143372,0.14859,0.15921,0.171539,0.182953,0.190063,0.196167,0.200287,0.195923,0.1763,0.140137,0.0894775,0.0331421,-0.0201416,-0.065033,-0.0983887,-0.122894,-0.134705,-0.133301,-0.116516,-0.0845642,-0.0421448,0.000610352,0.0400085,0.0704041,0.094696,0.115631,0.13208,0.141266,0.143494,0.139587,0.134583,0.134705,0.140686,0.149597,0.157043,0.159546,0.156982,0.150604,0.138733,0.121002,0.0910034,0.0475159,-0.00531006,-0.0630188,-0.119659,-0.1698,-0.215363,-0.257263,-0.292297,-0.32074,-0.338593,-0.344971,-0.341492,-0.333435,-0.320282,-0.296448,-0.257202,-0.201691,-0.137787,-0.0758972,-0.0234375,0.0236206,0.0658264,0.102295,0.128601,0.142273,0.14389,0.142151,0.14389,0.151825,0.160675,0.171143,0.179657,0.184906,0.184021,0.174561,0.15155,0.115112,0.0687866,0.0144348,-0.0418091,-0.0885925,-0.119995,-0.137451,-0.141266,-0.135101,-0.117249,-0.0872498,-0.0471191,-0.00430298,0.0326233,0.0612183,0.0856934,0.103546,0.118195,0.129059,0.133636,0.134155,0.132812,0.133087,0.133362,0.139008,0.143707,0.146118,0.143097,0.134918,0.120605,0.102631,0.0787964,0.0458374,0.00256348,-0.0479736,-0.100677,-0.150208,-0.194092,-0.233368,-0.267578,-0.295258,-0.312286,-0.318329,-0.315369,-0.304779,-0.289734,-0.267242,-0.231354,-0.182556,-0.128113,-0.074646,-0.0264587,0.0151672,0.0554504,0.0914001,0.121277,0.138794,0.145844,0.147583,0.15155,0.160126,0.170288,0.176971,0.183167,0.185181,0.18457,0.178467,0.161011,0.12973,0.0873718,0.0333557,-0.0195312,-0.0645752,-0.0997314,-0.123413,-0.140594,-0.146454,-0.138458,-0.114899,-0.0792542,-0.0400085,-0.00576782,0.0220947,0.0456543,0.0701904,0.0910645,0.105652,0.113159,0.115509,0.11496,0.119659,0.125092,0.134766,0.142761,0.144958,0.140137,0.130127,0.117737,0.101288,0.0792542,0.0445557,0.00201416,-0.0472412,-0.0939636,-0.136719,-0.176117,-0.213959,-0.251068,-0.280823,-0.30069,-0.307312,-0.303772,-0.294983,-0.284973,-0.266174,-0.233826,-0.184967,-0.127197,-0.0697327,-0.0204773,0.0215454,0.0592651,0.0964355,0.128723,0.14975,0.158875,0.160004,0.1604,0.166168,0.175568,0.184113,0.18631,0.183838,0.178528,0.169128,0.156036,0.132477,0.0961914,0.0489807,0.000396729,-0.0446472,-0.0760498,-0.0997925,-0.113281,-0.123688,-0.122559,-0.109589,-0.0839539,-0.0514221,-0.0167847,0.00973511,0.0306702,0.049408,0.0679321,0.0848389,0.0974426,0.102631,0.101868,0.100677,0.103821,0.109802,0.116577,0.119141,0.113953,0.10321,0.0903931,0.0764465,0.0583191,0.0333557,-0.0020752,-0.0448303,-0.0889282,-0.12854,-0.16391,-0.195038,-0.22403,-0.250336,-0.269196,-0.275055,-0.270752,-0.262299,-0.251831,-0.240143,-0.221283,-0.189209,-0.148987,-0.105377,-0.0634155,-0.024231,0.0138245,0.0544434,0.0906067,0.120819,0.143158,0.159393,0.169067,0.177521,0.185364,0.190216,0.192627,0.193634,0.188477,0.180664,0.169739,0.151825,0.124908,0.0881958,0.0477295,0.00759888,-0.0287781,-0.0578613,-0.0821533,-0.101135,-0.10907,-0.105164,-0.0930176,-0.0744934,-0.0524902,-0.0312195,-0.0107422,0.0105896,0.0280457,0.0466309,0.0620117,0.0744934,0.0855713,0.0965881,0.108063,0.119385,0.131012,0.138062,0.138733,0.131348,0.119598,0.10202,0.07724,0.0479736,0.0100098,-0.0333557,-0.0765076,-0.117584,-0.155701,-0.190002,-0.218536,-0.245972,-0.26825,-0.281219,-0.285309,-0.28067,-0.273163,-0.262146,-0.25,-0.233032,-0.199951,-0.15564,-0.105774,-0.0585327,-0.0146179,0.0248413,0.0672607,0.113098,0.15094,0.176239,0.187988,0.192169,0.196259,0.205322,0.212891,0.212006,0.202148,0.188385,0.172974,0.1604,0.144775,0.119202,0.08255,0.0393372,-0.00280762,-0.0344849,-0.0569153,-0.0740356,-0.0865784,-0.0967712,-0.098877,-0.0888672,-0.0684509,-0.0424194,-0.0198059,-0.0020752,0.0132751,0.0302124,0.0476379,0.0674438,0.0823669,0.0935059,0.101471,0.107452,0.114716,0.12323,0.128204,0.125977,0.114777,0.0975342,0.0779114,0.0561218,0.0319519,0.0012207,-0.0365906,-0.0794678,-0.11853,-0.153839,-0.183014,-0.209259,-0.23465,-0.25705,-0.269745,-0.273621,-0.267242,-0.256104,-0.242096,-0.225586,-0.205658,-0.18042,-0.149414,-0.11203,-0.0729675,-0.0324707,0.00564575,0.0388489,0.0719604,0.103973,0.13382,0.15799,0.172546,0.179535,0.18457,0.193634,0.200409,0.201355,0.195435,0.180878,0.164764,0.149597,0.132355,0.10791,0.0758362,0.0393372,0.00222778,-0.0270386,-0.046051,-0.0577087,-0.0663757,-0.068512,-0.0692749,-0.0588074,-0.0424194,-0.0221558,-0.00543213,0.00549316,0.015625,0.0246277,0.0358276,0.0497437,0.0617371,0.0700073,0.0785217,0.0873108,0.0957031,0.105103,0.110748,0.108521,0.100128,0.0853577,0.0648193,0.0420837,0.015625,-0.0141602,-0.0491333,-0.0856934,-0.119995,-0.150146,-0.174896,-0.194641,-0.21344,-0.228455,-0.236328,-0.237335,-0.231201,-0.218994,-0.207123,-0.19342,-0.173553,-0.150604,-0.126587,-0.100342,-0.0710754,-0.0390625,-0.00549316,0.0275269,0.058136,0.0886536,0.117798,0.145569,0.164581,0.176788,0.186798,0.192169,0.195312,0.192902,0.181335,0.164093,0.145508,0.124237,0.100006,0.0744324,0.0479126,0.0218811,-0.00112915,-0.0216675,-0.0367737,-0.0454407,-0.0493164,-0.0481262,-0.0446472,-0.0384521,-0.0290527,-0.0180664,-0.00839233,0.00161743,0.0101929,0.0205994,0.0328064,0.0459595,0.0588074,0.0721436,0.0827637,0.0914001,0.0967712,0.0964355,0.091217,0.0841064,0.0707397,0.0515442,0.0283203,0.00222778,-0.0233459,-0.0482483,-0.0733643,-0.0973816,-0.118866,-0.139587,-0.154022,-0.166107,-0.174164,-0.180145,-0.184296,-0.184967,-0.182678,-0.179871,-0.174164,-0.168518,-0.159546,-0.148743,-0.135834,-0.120056,-0.0993958,-0.0737,-0.045166,-0.0105286,0.0219421,0.0514832,0.0802612,0.107056,0.130005,0.147522,0.156586,0.162231,0.164429,0.166046,0.164642,0.159729,0.151215,0.140198,0.128662,0.116913,0.102142,0.085968,0.0664368,0.0452271,0.0238342,0.00598145,-0.0108032,-0.0232239,-0.0328064,-0.0394592,-0.0439758,-0.0437012,-0.0387268,-0.032135,-0.0227661,-0.013031,-0.000457764,0.0118103,0.0255127,0.037384,0.0461121,0.0533447,0.0556946,0.0550232,0.0533447,0.0479736,0.0402832,0.0304565,0.0197449,0.00616455,-0.00738525,-0.0192566,-0.0328979,-0.0455627,-0.0600586,-0.0725403,-0.085907,-0.0973816,-0.109802,-0.121338,-0.132751,-0.143097,-0.153625,-0.161011,-0.165039,-0.165985,-0.163574,-0.156982,-0.144836,-0.129211,-0.11026,-0.0914001,-0.0730286,-0.0543518,-0.0315552,-0.00558472,0.0204773,0.045105,0.0670471,0.0892639,0.110687,0.131409,0.147858,0.160461,0.167053,0.170074,0.167786,0.163574,0.156586,0.145905,0.132019,0.117401,0.101624,0.0875854,0.0739746,0.0577087,0.038269,0.0167236,-0.00469971,-0.0194702,-0.0303345,-0.0371094,-0.0410156,-0.0433044,-0.0414124,-0.0350952,-0.0259094,-0.0142822,-0.00524902,0.00201416,0.00683594,0.0110168,0.0142822,0.0167847,0.016571,0.0160522,0.0141602,0.0120239,0.0105896,0.0101318,0.0071106,0.00357056,-0.00128174,-0.00610352,-0.0114136,-0.016571,-0.0231018,-0.0330811,-0.0467224,-0.0602722,-0.0751648,-0.0899353,-0.104218,-0.120483,-0.136261,-0.147461,-0.155029,-0.158875,-0.156586,-0.150879,-0.139862,-0.126862,-0.111084,-0.0953674,-0.0783386,-0.0598145,-0.0421448,-0.024292,-0.00570679,0.0140991,0.036438,0.0621643,0.0877075,0.110352,0.130951,0.150085,0.168182,0.181091,0.187317,0.184906,0.176514,0.164978,0.151001,0.133972,0.114838,0.0936279,0.0733032,0.0521545,0.0335693,0.0163879,0.00128174,-0.0124207,-0.0234985,-0.0333557,-0.0399475,-0.0433655,-0.0437622,-0.0428772,-0.0414124,-0.0396729,-0.0361023,-0.0306702,-0.0241699,-0.0195312,-0.0154419,-0.0112,-0.00805664,-0.00469971,0.00128174,0.00704956,0.0128174,0.0185242,0.0212097,0.0224915,0.0219421,0.0196533,0.0160522,0.0102539,0.000946045,-0.0122681,-0.0259705,-0.0406799,-0.0561829,-0.0739746,-0.0899963,-0.102753,-0.112946,-0.120728,-0.125183,-0.129395,-0.129669,-0.12677,-0.122742,-0.117188,-0.109192,-0.100067,-0.0877075,-0.0720825,-0.0559692,-0.0393982,-0.0221558,-0.00341797,0.01651,0.0386658,0.0605469,0.0810852,0.0994568,0.115448,0.129791,0.142548,0.150604,0.154175,0.151825,0.145508,0.135773,0.124512,0.113281,0.0992126,0.0838928,0.0675049,0.0527649,0.0420837,0.0340881,0.026123,0.0166321,0.00415039,-0.00704956,-0.0173035,-0.0261841,-0.0353088,-0.0441589,-0.0522766,-0.0577087,-0.0579834,-0.0543518,-0.0489197,-0.0447083,-0.0396118,-0.0316162,-0.0222168,-0.00973511,0.000396729,0.00692749,0.0126038,0.0162964,0.0206604,0.0226746,0.0240173,0.0215454,0.0187988,0.0115967,0.00610352,-0.000671387,-0.00650024,-0.0132141,-0.0222778,-0.0328064,-0.0428772,-0.0526123,-0.0601501,-0.069519,-0.0798035,-0.0913391,-0.0997314,-0.105988,-0.110077,-0.11142,-0.112091,-0.10791,-0.098053,-0.0838318,-0.065918,-0.0458374,-0.0272522,-0.00765991,0.0100708,0.0275879,0.0428162,0.0576477,0.0671082,0.0752258,0.0802612,0.0856934,0.0924988,0.098114,0.102692,0.104645,0.106384,0.10556,0.104034,0.0959778,0.0866394,0.0721436,0.0585327,0.0448914,0.0326233,0.0222168,0.0109253,6.10352e-05,-0.012146,-0.0220032,-0.0294495,-0.0358276,-0.0410156,-0.0459595,-0.0475159,-0.0462341,-0.0410767,-0.0350342,-0.028656,-0.0224915,-0.0147095,-0.00643921,-0.00100708,0.0032959,0.00598145,0.00750732,0.00860596,0.00637817,0.00582886,0.00598145,0.00778198,0.0103455,0.0115967,0.0123596,0.0104675,0.00778198,0.00396729,-0.00140381,-0.00698853,-0.0154419,-0.0227661,-0.0293274,-0.0363159,-0.0434875,-0.0497437,-0.0551147,-0.0588074,-0.0590515,-0.0604858,-0.0612183,-0.0599365,-0.0567932,-0.0524902,-0.0479126,-0.0431519,-0.0393372,-0.0322266,-0.0244446,-0.0167847,-0.00952148,-0.00296021,0.00222778,0.0100098,0.017395,0.0270386,0.0337524,0.0410156,0.0461731,0.0517578,0.0566406,0.0617371,0.0649109,0.0634155,0.0608215,0.057373,0.0521545,0.0455017,0.0375977,0.0272522,0.0162354,0.0062561,-0.00180054,-0.00845337,-0.0115356,-0.0147095,-0.0175171,-0.0187988,-0.0174561,-0.0151062,-0.0126953,-0.0100098,-0.00750732,-0.00564575,-0.00335693,-0.00195312,-0.000946045,0.000793457,0.00106812,0.000793457,0.00140381,0.00375366,0.00497437,0.0071106,0.0085144,0.00939941,0.00912476,0.00726318,0.00396729,0.000549316,-0.00415039,-0.00952148,-0.0174561,-0.024353,-0.0292664,-0.0320129,-0.0323486,-0.028717,-0.0234985,-0.0169067,-0.00958252,-0.000732422,0.00637817,0.00967407,0.00991821,0.00900269,0.00692749,0.00375366,-0.000946045,-0.00665283,-0.0112,-0.0126953,-0.0136108,-0.0147095,-0.0162354,-0.016449,-0.0152283,-0.0140991,-0.0134277,-0.0142212,-0.0138245,-0.0134277,-0.0140381,-0.0140381,-0.0142212,-0.0136108,-0.0149536,-0.015625,-0.0158386,-0.0138245,-0.0109253,-0.00765991,-0.00375366,0.0015564,0.00698853,0.0126953,0.0176392,0.0216675,0.0240173,0.0240173,0.0238953,0.020813,0.0180664,0.0149536,0.0120239,0.0083313,0.00524902,0.0032959,0.00497437,0.00643921,0.00878906,0.00918579,0.00939941,0.00894165,0.00979614,0.00906372,0.0071106,0.00363159,-0.00146484,-0.00839233,-0.0132141,-0.0159607,-0.0179138,-0.0192566,-0.0179749,-0.0137634,-0.00744629,-0.000610352,0.00524902,0.00906372,0.0111389,0.0103455,0.00894165,0.00827026,0.00637817,0.00396729,0.00180054,0.00180054,0.00436401,0.00872803,0.0138245,0.0188599,0.0226746,0.0268555,0.029541,0.0307922,0.0273132,0.0227661,0.0184021,0.0152893,0.0105896,0.00375366,-0.00476074,-0.013092,-0.0204773,-0.0283813,-0.0346375,-0.040802,-0.0475769,-0.0521545,-0.0536194,-0.0527649,-0.0496521,-0.0453796,-0.0424194,-0.0379944,-0.0354309,-0.032074,-0.0281067,-0.024231,-0.0224915,-0.0202026,-0.016449,-0.0110779,-0.00335693,0.00448608,0.0140381,0.020752,0.0250244,0.0273132,0.0308838,0.032074,0.0322266,0.0265198,0.0187988,0.0101929,0.00363159,-0.00106812,-0.00491333,-0.00860596,-0.012085,-0.0148926,-0.0118103,-0.00765991,-0.0032959,0.00134277,0.00323486,0.0062561,0.00631714,0.0085144,0.0100708,0.0125427,0.0115967,0.0110779,0.00900269,0.0111389,0.0142822,0.0185242,0.0220947,0.0248413,0.0256958,0.0279846,0.0314636,0.0334167,0.0333557,0.0319519,0.0273743,0.0240173,0.0231018,0.0230103,0.0216064,0.0172424,0.0110168,0.00582886,0.000610352,-0.00189209,-0.00396729,-0.00616455,-0.0085144,-0.0102539,-0.0103455,-0.0109253,-0.0083313,-0.00726318,-0.0088501,-0.0128784,-0.0181885,-0.0212708,-0.0253601,-0.028717,-0.0344849,-0.0376587,-0.0394592,-0.0393982,-0.0374451,-0.0341492,-0.0280457,-0.0245667,-0.0226135,-0.0205994,-0.0178528,-0.0148926,-0.0151062,-0.0195312,-0.0245667,-0.0283813,-0.0314026,-0.0322876,-0.0322876,-0.0293884,-0.0260315,-0.0203247,-0.0114136,-0.00256348,0.00958252,0.0189209,0.0259094,0.0271912,0.0272522,0.025116,0.0219421,0.0170593,0.0112,0.00631714,0.00408936,0.00430298,0.00759888,0.0107422,0.0137024,0.0175171,0.0196533,0.0198059,0.0201416,0.0185852,0.0146179,0.0111389,0.00692749,0.00442505,0.00457764,0.00683594,0.00878906,0.0101929,0.0134277,0.0166321,0.020874,0.0239563,0.0282593,0.0322876,0.033905,0.0346375,0.0341492,0.0339661,0.0332947,0.0311279,0.025116,0.0191345,0.0116882,0.00543213,-6.10352e-05,-0.00692749,-0.0116882,-0.0131531,-0.0119324,-0.0105896,-0.00952148,-0.00939941,-0.0115356,-0.0155029,-0.0213318,-0.0246277,-0.0285339,-0.0334167,-0.0385132,-0.0435486,-0.0463867,-0.0475769,-0.0471802,-0.0466309,-0.0423584,-0.0381775,-0.0338135,-0.0278625,-0.020874,-0.015564,-0.013092,-0.0118713,-0.0100098,-0.00811768,-0.0062561,-0.00497437,-0.00598145,-0.00811768,-0.0065918,-0.0038147,-0.00213623,0.000732422,0.000732422,0.00161743,0.00302124,0.00213623,0.00256348,0.000457764,-0.0017395,-0.00436401,-0.00592041,-0.0067749,-0.00671387,-0.00610352,-0.00604248,-0.00491333,-0.00256348,0.00256348,0.00744629,0.0136108,0.0169067,0.0195312,0.0222168,0.0263062,0.0308838,0.0324707,0.0338135,0.0348206,0.0347595,0.0354309,0.0357056,0.0376587,0.0369263,0.0343018,0.0328064,0.0314636,0.0302124,0.0265198,0.0231018,0.0187378,0.0140381,0.0085144,0.00509644,0.00302124,0.000732422,-0.00408936,-0.00946045,-0.015625,-0.0211487,-0.0262451,-0.0300598,-0.0343018,-0.0383911,-0.0388489,-0.0350952,-0.0310059,-0.0238342,-0.0162964,-0.0105286,-0.00732422,-0.00497437,-0.00457764,-0.00289917,-0.00442505,-0.00827026,-0.0120239,-0.0138855,-0.0144348,-0.0142822,-0.0127563,-0.011261,-0.0118713,-0.0114136,-0.0106812,-0.00839233,-0.00958252,-0.012085,-0.016449,-0.019989,-0.0234985,-0.0241699,-0.0267944,-0.02771,-0.0288696,-0.0284424,-0.0256348,-0.0224304,-0.0190735,-0.0141602,-0.00906372,-0.00213623,0.00228882,0.00827026,0.0136108,0.0180664,0.0202637,0.0230103,0.0247803,0.0267944,0.0273743,0.0267944,0.0250244,0.0231018,0.0232239,0.0238342,0.026123,0.0269775,0.0264587,0.025177,0.0234375,0.021759,0.0212097,0.0184021,0.0140991,0.00906372,0.003479,-0.000396729,-0.00436401,-0.0083313,-0.0118103,-0.0148926,-0.0152893,-0.0128174,-0.00759888,-0.00308228,0.000732422,0.00247192,0.00296021,0.00430298,0.00543213,0.00537109,0.00415039,0.00128174,-0.00128174,-0.00256348,-0.00314331,-0.00167847,0.000457764,-0.000396729,-0.00189209,-0.00167847,-0.000793457,-0.0017395,-0.00491333,-0.00979614,-0.0152283,-0.0205383,-0.0225525,-0.0240173,-0.0240173,-0.0266418,-0.0291138,-0.0303955,-0.0294495,-0.0276489,-0.025116,-0.0234985,-0.020752,-0.01651,-0.0113525,-0.00424194,0.0020752,0.00631714,0.00817871,0.0100098,0.0115356,0.0113525,0.0127563,0.0129395,0.0128174,0.012146,0.013092,0.0151062,0.0169678,0.0187378,0.0181885,0.0152283,0.0108032,0.00750732,0.00369263,-0.000335693,-0.00430298,-0.00933838,-0.0139465,-0.0166321,-0.0172424,-0.0167847,-0.0166321,-0.0163879,-0.0152893,-0.0126953,-0.00973511,-0.00671387,-0.00234985,-0.000396729,0.00241089,0.00247192,0.00424194,0.00604248,0.00860596,0.00973511,0.0100098,0.011261,0.0128784,0.0161133,0.016571,0.0179749,0.0187988,0.017395,0.0152283,0.0124817,0.00912476,0.00543213,0.00228882,-0.00222778,-0.00457764,-0.00637817,-0.00759888,-0.00894165,-0.0114136,-0.0144348,-0.017395,-0.0202637,-0.0247803,-0.0273132,-0.0259705,-0.0238342,-0.0204773,-0.0158997,-0.0104065,-0.00482178,0.0012207,0.00537109,0.00900269,0.0122681,0.0142822,0.0142212,0.0138855,0.0151062,0.0152283,0.0160522,0.0162964,0.0196533,0.0223389,0.0228882,0.0219421,0.0183105,0.0155029,0.0125427,0.00564575,-0.00180054,-0.00872803,-0.0127563,-0.0151062,-0.0184631,-0.0203247,-0.0222168,-0.0205383,-0.0192566,-0.0184021,-0.0171204,-0.0157166,-0.0157776,-0.0155029,-0.0153809,-0.0127563,-0.0100098,-0.00576782,-0.00268555,0.000213623,0.00222778,0.00402832,0.00476074,0.00415039,0.00390625,0.00335693,0.000396729,0.000610352,-0.0015564,-0.00180054,-0.000946045,0.000274658,0.000396729,-0.00012207,-0.000610352,0.000549316,-0.00201416,-0.00524902,-0.00900269,-0.0129395,-0.0137024,-0.016571,-0.0162354,-0.0154419,-0.0101929,-0.00683594,-0.00100708,0.00415039,0.0104065,0.0132751,0.0153809,0.0162964,0.017395,0.0172424,0.0173035,0.0163879,0.0151062,0.0153809,0.0152283,0.0146179,0.0129395,0.0114746,0.00985718,0.00973511,0.00765991,0.00592041,0.00308228,0.000793457,-0.00088501,-0.00268555,-0.00598145,-0.00805664,-0.00967407,-0.0119324,-0.0140991,-0.0152283,-0.0136108,-0.00900269,-0.00302124,0.00289917,0.00894165,0.0145569,0.0171204,0.0179749,0.0146179,0.012207,0.00616455,-0.000396729,-0.00784302,-0.012207,-0.0161743,-0.0187988,-0.0205383,-0.0216064,-0.0220032,-0.0197449,-0.0184021,-0.0171204,-0.015564,-0.0166321,-0.0182495,-0.0179138,-0.0150452,-0.013092,-0.0110779,-0.0115967,-0.00979614,-0.00778198,-0.0038147,0.00012207,0.00341797,0.00576782,0.00805664,0.0116882,0.0134277,0.0158997,0.0157776,0.0137634,0.0105896,0.00692749,0.00363159,0.00012207,-0.00167847,-0.00442505,-0.0050354,-0.00457764,-0.00088501,0.00201416,0.00497437,0.00744629,0.00793457,0.00878906,0.00817871,0.00793457,0.00671387,0.00442505,0.00146484,-0.0012207,-0.00128174,-0.000396729,0.00128174,0.0032959,0.00497437,0.00732422,0.00866699,0.0088501,0.00692749,0.00296021,0,-0.000396729,-0.00167847,-0.00140381,-0.00357056,-0.00415039,-0.00558472,-0.00772095,-0.00906372,-0.0085144,-0.00894165,-0.00933838,-0.00958252,-0.0106812,-0.0109253,-0.0114136,-0.0110779,-0.0104065,-0.00906372,-0.00765991,-0.00650024,-0.00616455,-0.00531006,-0.00457764,-0.00436401,-0.00396729,-0.00537109,-0.00476074,-0.00314331,-0.00134277,-0.00167847,-0.00189209,-0.00167847,0.000396729,0.00335693,0.00631714,0.00750732,0.00872803,0.00671387,0.00296021,6.10352e-05,-0.000213623,-0.00012207,-0.0012207,-0.00222778,-0.00256348,0.000213623,0.00497437,0.00933838,0.0122681,0.0145569,0.0176392,0.0193176,0.019989,0.0187988,0.0158997,0.011261,0.00592041,0.00161743,-0.00296021,-0.00665283,-0.00912476,-0.0107422,-0.0139465,-0.0140991,-0.0125427,-0.00744629,-0.00241089,0.000732422,0.00323486,0.00637817,0.00918579,0.0114746,0.0108643,0.00973511,0.00604248,0.00234985,-0.00363159,-0.0105286,-0.013092,-0.0147095,-0.0147705,-0.0148315,-0.0147095,-0.0132751,-0.0137634,-0.013092,-0.0146179,-0.0158997,-0.0184021,-0.0229492,-0.0257874,-0.0265808,-0.0256348,-0.025116,-0.0229492,-0.0193176,-0.0129395,-0.00549316,0.00195312,0.00811768,0.0109253,0.0118103,0.0110779,0.0105896,0.00805664,0.00531006,0.003479,0.00222778,0.00134277,0.00100708,0.000946045,0.00415039,0.00793457,0.0101318,0.0109253,0.0114136,0.0124207,0.0129395,0.013031,0.011261,0.00750732,0.00436401,0.0015564,0.000732422,0.00201416,0.00442505,0.00564575,0.00631714,0.0065918,0.00845337,0.0120239,0.0145569,0.0145569,0.0134888,0.0127563,0.0139465,0.0152283,0.0140381,0.0124207,0.00894165,0.00524902,0.00106812,-0.00146484,-0.00180054,-0.00268555,-0.00268555,-0.00442505,-0.00497437,-0.00408936,-0.00457764,-0.0067749,-0.0105286,-0.0147705,-0.0177307,-0.0202637,-0.0246887,-0.0273743,-0.0290527,-0.0280457,-0.0268555,-0.0245667,-0.0206604,-0.0169067,-0.0158997,-0.0149536,-0.0151672,-0.0150452,-0.0150452,-0.0153809,-0.0137024,-0.0108032,-0.0065918,-0.00289917,0.00012207,0.00280762,0.00476074,0.00543213,0.00598145,0.0050354,0.00396729,0.00357056,0.00424194,0.00491333,0.00744629,0.00973511,0.0115967,0.0140991,0.0148315,0.0142822,0.0131531,0.0110168,0.00738525,0.00363159,0.000946045,-0.000946045,-0.00180054,-0.00213623,-0.00140381,0.000946045,0.00341797,0.00537109,0.00631714,0.0071106,0.00784302,0.0083313,0.00765991,0.00717163,0.00726318,0.00805664,0.00985718,0.012207,0.0147095,0.0161133,0.0154419,0.0134888,0.0111389,0.00878906,0.00482178,0.000549316,-0.00341797,-0.00717163,-0.0100098,-0.0124207,-0.0141602,-0.0151062,-0.0166321,-0.0179138,-0.0205383,-0.0222778,-0.0226135,-0.0234375,-0.0231628,-0.0210876,-0.0181885,-0.0137634,-0.00872803,-0.00436401,0.00012207,0.00308228,0.0050354};
freunde_1_fois_soprano = (freunde_1_fois_soprano_0):((!,_));
freunde_1_fois_soprano_rtable_0(r) = (freunde_1_fois_soprano_0,r):rdtable;
|
|
b53101b393625544a340caa982dd864816a7a5a8ad90b63ac9b8bd5e8767d538 | grame-cncm/GeekBagatelles | freunde_soprano_waveform.dsp | freunde_soprano_0 = waveform{-0.0020752,-0.00100708,-0.00106812,-0.000213623,-0.00167847,-0.0015564,-0.000946045,-0.000549316,-0.000946045,-0.00146484,-0.00180054,-0.000610352,-6.10352e-05,-0.00128174,-0.00189209,-0.00100708,-0.000610352,-0.000610352,-0.0012207,-0.00195312,-0.00161743,-0.000793457,-0.000335693,-0.000610352,-0.000793457,-0.0012207,-0.00140381,-0.000610352,-0.000335693,-6.10352e-05,-0.00161743,-0.0017395,-0.00189209,-0.00088501,0.000213623,-0.00106812,-0.00180054,-0.0015564,-0.000549316,-0.000610352,-0.000793457,-0.00146484,-0.00140381,-0.000671387,-0.000610352,-0.00112915,-0.00100708,-0.000549316,-0.00167847,-0.00167847,-0.000671387,-0.000793457,-0.000671387,-0.00167847,-0.000732422,-0.00140381,-0.00100708,-0.000946045,-0.000549316,-0.00134277,-0.00228882,-0.00161743,-0.000732422,-0.000335693,-0.00128174,-0.00234985,-0.00140381,-0.00012207,-0.00128174,-0.00201416,-0.000457764,-0.000793457,-0.00195312,-0.00128174,-0.00100708,-0.000671387,-0.00140381,-0.0017395,-0.00222778,-0.000732422,-0.000213623,-0.00134277,-0.0015564,-0.0012207,-0.0017395,-0.00134277,-0.00106812,-0.00088501,-0.00106812,-0.000671387,-0.0015564,-0.0017395,-0.00140381,-0.000946045,-0.0017395,-0.00134277,-0.00189209,-0.00247192,-0.00100708,0.000213623,-0.00106812,-0.00302124,-0.00256348,-0.00167847,-0.000335693,-0.00134277,-0.00213623,-0.00228882,-0.00195312,-0.000549316,-0.000732422,-0.0015564,-0.00195312,-0.00106812,-0.000335693,-0.00088501,-0.00189209,-0.0017395,-0.00112915,-0.000732422,-0.00189209,-0.00241089,-0.00134277,-0.00088501,-0.000671387,-0.00146484,-0.00167847,-0.00234985,-0.00222778,-0.0012207,-0.00100708,-0.000335693,-0.000732422,-0.00189209,-0.0020752,0,0.000335693,-0.0015564,-0.00341797,-0.00228882,0.000335693,0.00112915,-0.000549316,-0.0020752,-0.00180054,0.000335693,0,-0.00128174,-0.00106812,-0.00088501,-0.000671387,-0.00140381,-0.0015564,-0.00134277,0.000335693,-6.10352e-05,-0.00140381,-0.00146484,-0.000549316,0.00012207,-0.000946045,-0.00088501,-0.0017395,-0.00161743,-0.000457764,0.000335693,-0.000610352,-0.000946045,-0.00100708,-0.000793457,-0.00106812,-0.0012207,-0.00167847,-0.0015564,-0.00180054,-0.0012207,-0.000671387,-0.000335693,-0.000610352,-0.00213623,-0.0012207,-6.10352e-05,-0.000335693,-0.00134277,-0.00140381,-0.00112915,-0.00106812,6.10352e-05,-0.00189209,-0.00222778,-0.0012207,-0.000396729,-0.000610352,-0.00161743,-0.00140381,-0.00201416,-0.000671387,0.000335693,-0.00189209,-0.0012207,-0.00088501,-0.000213623,-0.000671387,-0.00241089,-0.000335693,-0.00112915,6.10352e-05,-0.00189209,-0.00234985,-0.00106812,-0.000457764,-0.00012207,-0.000549316,-0.00180054,-0.00180054,-0.00241089,0.000335693,0.000732422,-0.00146484,-0.00302124,-0.00146484,0.000793457,-0.000396729,-0.00195312,-0.00189209,-0.00167847,0.00012207,-0.000457764,-0.000671387,-0.00146484,-0.00088501,-0.000671387,-0.000274658,-0.000335693,-0.00256348,-0.0017395,-0.000396729,0.000946045,-0.00088501,-0.00234985,-0.00140381,-0.000335693,-0.000335693,0,-0.00180054,-0.00146484,-0.00106812,-0.000396729,-0.00128174,-0.000946045,-0.00112915,-0.00112915,-0.000671387,-0.000457764,-0.00167847,-0.00128174,6.10352e-05,0,-0.0012207,-0.00341797,-0.00100708,0.000457764,0.00088501,-0.000396729,-0.00161743,-0.00161743,-0.00100708,-6.10352e-05,0.00012207,-0.00112915,-0.00201416,-0.00201416,-0.000457764,0.000610352,6.10352e-05,-0.00201416,-0.00234985,-0.000274658,0,-0.000335693,-0.00106812,-0.00189209,-0.00161743,-0.000457764,-0.000213623,-0.000946045,-0.000671387,-0.00128174,-0.00140381,-0.00112915,-0.00106812,-0.000549316,-0.00128174,-0.00274658,-0.00112915,-0.00012207,-0.000274658,-0.00234985,-0.00167847,-0.000793457,-6.10352e-05,-0.00180054,-0.00241089,-0.00161743,-0.000549316,-0.00128174,-0.000396729,-0.00180054,-0.00201416,-0.00189209,0.00140381,-0.000274658,-0.00335693,-0.0015564,-0.000549316,0.000457764,-0.000335693,-0.00180054,-0.00363159,-0.00100708,0.000671387,-0.0012207,-0.0020752,-0.00268555,-0.00234985,-0.000213623,0.000732422,-0.000610352,-0.00341797,-0.0012207,-0.000213623,0.000610352,-0.000732422,-0.00201416,-0.00314331,-0.000396729,0,-0.00167847,-0.00088501,-0.0020752,-0.000732422,-0.00100708,0,-0.00140381,-0.00201416,-0.000549316,0.000610352,-0.000213623,-0.00128174,-0.00146484,-0.000671387,-0.000335693,-0.000671387,-0.00195312,-0.000793457,-0.000549316,-0.0012207,-0.000946045,-0.00234985,-0.00106812,0,-0.000946045,-0.00100708,-0.000396729,-0.00112915,-0.000549316,0,-0.000793457,-0.00134277,-0.000610352,-0.0012207,-0.000732422,0.000610352,0,-0.00140381,-0.000457764,-0.000671387,-0.00161743,0.000274658,0.00012207,-0.00146484,-0.00195312,-0.00012207,-0.00012207,-0.000732422,-0.00161743,-0.0017395,-0.00012207,0.000610352,-0.00167847,-0.00180054,-0.000335693,0.000549316,-0.00112915,-0.00213623,-0.00296021,-0.00128174,0.000396729,0.000274658,-0.00234985,-0.00189209,-0.00134277,-0.00100708,0.000213623,0.000335693,-0.00201416,-0.00128174,-0.00106812,-0.000671387,-0.000946045,-0.000793457,-0.0015564,-0.00213623,0,-0.000457764,-0.000213623,-0.00106812,-0.00189209,-0.00146484,-0.00112915,-0.0012207,-0.00262451,-0.00146484,-0.000946045,-0.000457764,-0.00100708,-0.00201416,6.10352e-05,0.000732422,-0.00146484,-0.00363159,-0.000610352,-0.00012207,-0.0015564,-0.00140381,0.000213623,-0.00189209,-0.00128174,-0.000335693,-0.00134277,-0.00140381,-6.10352e-05,-0.0017395,-0.00296021,-0.000793457,-0.000274658,-0.00180054,-0.00222778,-0.00161743,0.000396729,0.000274658,-0.00241089,-0.00274658,-0.000396729,0.000396729,-0.00088501,-0.00296021,-0.00189209,-0.000213623,0.000457764,-0.000457764,-0.00341797,-0.00280762,-0.00012207,0.000335693,-0.00100708,-0.00228882,-0.00140381,6.10352e-05,-0.000549316,-0.00167847,-0.0017395,6.10352e-05,-0.000274658,-0.00140381,-0.00296021,-0.00134277,0.000457764,-0.000671387,-0.00268555,-0.0017395,-0.000213623,-0.00088501,-0.000793457,-0.0017395,-0.00195312,0.00012207,-0.00088501,-0.0017395,-0.00180054,0.000274658,-0.000274658,-0.0017395,-0.00247192,-0.00146484,-6.10352e-05,-0.000335693,-0.000213623,-0.00363159,-0.00234985,0.00012207,0.000396729,-0.000457764,-0.00256348,-0.00195312,-0.000274658,0.000335693,-0.0015564,-0.00161743,-0.000732422,-0.00112915,-0.00167847,-0.000549316,-0.000396729,-0.00161743,-0.00161743,-0.0015564,-0.00146484,-0.000732422,0.000213623,-0.00189209,-0.00247192,-0.00106812,-0.000671387,-0.00012207,-0.00268555,-0.00256348,-0.000396729,0.0015564,-0.00167847,-0.00274658,-0.000946045,0.00140381,-0.00012207,-0.0032959,-0.0032959,-6.10352e-05,0.00140381,-0.00112915,-0.0020752,-0.00195312,-0.00234985,-0.000213623,0.000610352,-0.00134277,-0.00262451,-0.00195312,-0.000610352,0.000213623,-0.00128174,-0.0017395,-0.00262451,-0.00234985,0,-0.000274658,-0.000274658,-0.00134277,-0.00195312,-0.00161743,-0.000396729,-0.000213623,-0.0012207,-0.00161743,-0.00128174,-0.000274658,-0.000793457,-0.00167847,-0.00100708,-0.000732422,-0.000335693,-0.00088501,-0.00106812,0.000335693,-0.000274658,-0.00241089,-0.00247192,-0.00201416,-6.10352e-05,-0.00012207,-0.00112915,-0.00134277,-0.000793457,0.000213623,-0.0017395,-0.000671387,0.000396729,-0.000274658,-0.00167847,-0.0020752,-0.000274658,0.000335693,0.000213623,-0.00222778,-0.00134277,0.000274658,-0.000335693,-0.00134277,-0.00106812,0.000610352,-6.10352e-05,-0.00195312,-0.00161743,-0.00088501,0.000671387,0.000274658,-0.00167847,-0.00335693,-0.00140381,0.00128174,0.000335693,-0.00274658,-0.00335693,-0.00256348,0.00195312,0.0032959,-0.00167847,-0.00457764,-0.00234985,0.0017395,0.000549316,-0.00100708,-0.00296021,-0.00314331,0.00128174,0.00140381,-0.000671387,-0.00256348,-0.00213623,-0.000335693,0.00012207,0.000274658,-0.00241089,-0.00241089,-0.000335693,0.000793457,0.000549316,-0.00247192,-0.00314331,-0.00180054,0.000732422,0.00088501,-0.00247192,-0.0032959,-0.00289917,-0.000457764,0.00161743,-0.00012207,-0.00189209,-0.00296021,-6.10352e-05,0.00201416,0.000274658,-0.00390625,-0.00341797,-0.00140381,0.00134277,-0.000549316,-0.00256348,-0.00415039,-0.00146484,0.00167847,0.000793457,-0.000793457,-0.00262451,-0.00280762,-0.00112915,0.000946045,0.00167847,-0.00241089,-0.00369263,-0.000335693,0.000671387,0.00100708,-0.00134277,-0.00128174,-0.00222778,-0.000274658,-0.000213623,-0.00195312,-0.00128174,-0.000793457,-0.00140381,-0.000549316,6.10352e-05,-0.000610352,-0.00274658,0.000671387,0.000793457,-0.00128174,-0.00268555,-0.00234985,-0.00106812,0.00012207,-0.000610352,-0.0017395,-0.00302124,-0.000946045,0.000457764,6.10352e-05,-0.000732422,-0.00222778,-0.00375366,-0.0012207,0.000274658,0.000213623,-0.00296021,-0.00424194,-0.00189209,0.000793457,0.00228882,-0.00195312,-0.00402832,-0.00161743,0.000457764,-0.00112915,-0.00357056,-0.00167847,-0.0017395,-0.0020752,0.000213623,-0.000549316,-0.00241089,-0.00375366,0.000549316,0.000457764,-0.00189209,-0.00457764,-0.00268555,-0.00128174,0.000671387,-0.000213623,-0.00314331,-0.00280762,-0.00106812,0.000335693,-0.000793457,-0.00314331,-0.00341797,-0.0012207,-0.00012207,-0.0015564,-0.00201416,-0.00274658,-0.00201416,0,0.000335693,-0.00213623,-0.00436401,-0.00195312,0.00161743,0.000457764,-0.00241089,-0.00424194,-0.0017395,0.00112915,0.00012207,-0.00201416,-0.00335693,-0.00134277,-6.10352e-05,-0.000213623,-0.0012207,-0.0015564,-0.00146484,-0.000671387,-0.00012207,-0.00128174,-0.00314331,-0.00134277,-0.00106812,-0.000213623,-0.00167847,-0.00167847,-0.00106812,0.000274658,0.00112915,-0.00256348,-0.00180054,-0.0017395,-0.00088501,-0.00268555,-0.00100708,0.0012207,-0.0012207,-0.00222778,-0.00128174,0.0015564,0.00106812,-0.00167847,-0.00369263,-0.00280762,0.00140381,0.00088501,-0.00167847,-0.00448608,-0.000396729,0.00106812,0.000946045,-0.00180054,-0.0012207,0.000213623,-0.000610352,-0.00146484,-0.00213623,-0.00106812,6.10352e-05,0.000213623,-0.0012207,-0.0020752,-0.000274658,0.000793457,-0.000549316,-0.00234985,-0.00201416,-0.000946045,-6.10352e-05,-0.00112915,-0.00128174,-0.00012207,0.00146484,0,-0.00314331,-0.00146484,0.0012207,-0.000732422,-0.00268555,-0.0020752,0.00012207,0.00106812,0.000213623,-0.00241089,-0.00128174,0.00012207,-0.000213623,-0.000549316,-0.0015564,0.00140381,-0.0017395,-0.00369263,-0.00128174,0.00201416,0.00012207,-0.00357056,-0.00262451,0.000213623,0.00180054,-6.10352e-05,-0.0020752,-0.00180054,-0.0012207,-0.00128174,0,0.00134277,-0.000610352,-0.00201416,-0.00167847,-0.000793457,0.000610352,0.00146484,-0.00268555,-0.00262451,-0.000549316,0.000732422,-0.00189209,-0.000335693,0.000213623,-0.00167847,-0.000610352,-0.000946045,-0.00106812,-0.00140381,0.00012207,0.0015564,-0.00201416,-0.00323486,-0.00247192,0.00189209,0.00146484,-0.00302124,-0.00408936,-0.000274658,0.00247192,0.000732422,-0.00341797,-0.00335693,0,0.0012207,-0.00146484,-0.00167847,-0.000396729,-0.00100708,-0.00241089,-0.00012207,0.00134277,-6.10352e-05,-0.00247192,-0.00308228,-0.000335693,0.00128174,-0.000274658,-0.00323486,-0.00323486,-0.00112915,0.000335693,-0.0020752,-0.00247192,-0.00161743,-0.00012207,0.00088501,-0.000549316,-0.00222778,-0.0020752,-0.00140381,0.000610352,-0.00140381,-0.00241089,0.000335693,-0.00140381,-0.00167847,-0.00012207,0.000671387,-0.0015564,-0.00134277,-0.000793457,-0.00228882,-0.00112915,0.000274658,-0.0017395,-0.00323486,-0.00128174,0.000732422,-0.00088501,-0.00213623,-0.00280762,-0.00140381,0.00201416,-0.000732422,-0.00314331,-0.00280762,0.00100708,-0.000335693,-0.00088501,-0.00189209,-0.00213623,-0.000549316,-0.00106812,-0.0017395,-0.0017395,-0.0012207,-0.00189209,-0.00128174,-0.00195312,-0.00323486,-0.00408936,-0.00146484,0.0017395,0.00088501,-0.00268555,-0.00531006,-0.000793457,0.00213623,-0.000457764,-0.00363159,-0.00509644,-0.00180054,0.000396729,0.00134277,-0.00128174,-0.00314331,-0.00201416,0.000213623,0.00228882,-0.000457764,-0.00335693,-0.000732422,0.00088501,-0.00222778,-0.00262451,0.000396729,0.00112915,-0.000457764,-0.00323486,-0.00296021,0.00106812,0.00128174,-0.0012207,-0.0038147,-0.00228882,-6.10352e-05,-0.000671387,-0.00100708,-0.00189209,6.10352e-05,-0.000213623,-0.00189209,-0.00128174,-0.000732422,0,-0.000274658,-0.00296021,-0.00341797,0.000549316,0.00161743,-0.0012207,-0.003479,-0.00180054,0.000457764,0.00140381,0.000610352,-0.00088501,-0.00201416,-0.000946045,0.0017395,-0.000457764,-0.00268555,-0.00308228,0.00128174,0.000793457,-0.00134277,-0.00189209,-0.00088501,-0.000671387,0.00140381,-6.10352e-05,-0.0032959,-0.00302124,0.00161743,-0.00088501,-0.0015564,-0.00140381,0.000213623,-0.0017395,-0.00140381,-0.00213623,-0.000732422,0.000610352,-0.000335693,-0.00335693,-0.000457764,-0.000335693,-0.0015564,-0.00228882,-0.000549316,-0.00106812,-0.00106812,-0.000610352,-0.00195312,-0.00134277,-0.00106812,0,-0.00140381,-0.00189209,-0.00128174,-0.000335693,0.000732422,-0.00140381,-0.00296021,-0.000457764,0.00012207,-0.000793457,-0.00134277,-0.00088501,-0.000946045,-0.00228882,-0.000946045,-0.00128174,-0.000946045,0.00012207,-0.000946045,-0.00128174,-0.00161743,-0.000549316,0.0012207,-0.00134277,-0.00363159,-0.000946045,0.00146484,-0.00189209,-0.00375366,-0.0015564,0.000335693,0.000274658,-0.00195312,-0.00241089,-0.00140381,0.0012207,-0.000457764,-0.00134277,0.000335693,-0.00100708,-0.00314331,0.000732422,0.00228882,0.000793457,-0.00296021,-0.00247192,-0.00012207,0.000396729,-0.00012207,-0.00357056,-0.00213623,0.000396729,-0.000335693,0.000274658,0.000549316,-0.00247192,-0.00268555,-0.00140381,0.000671387,0.000610352,-0.00167847,-0.00256348,-0.00228882,0.000732422,-0.00146484,-0.00396729,-0.00195312,0.000213623,0,-0.003479,-0.00341797,-0.000793457,0.000457764,-0.000610352,-0.00256348,-0.00189209,-0.000457764,6.10352e-05,0.0015564,-0.000793457,-0.00280762,-0.00180054,6.10352e-05,0.00247192,-0.00335693,-0.00369263,-0.00167847,0.0020752,-0.00128174,-0.00180054,-0.00180054,-0.0020752,-0.00241089,-0.00201416,-0.000396729,-0.00195312,-0.00201416,-0.000732422,-0.00268555,-0.000457764,-0.000274658,-0.00106812,-0.0032959,-0.00262451,-0.00106812,-0.00146484,0.00088501,-0.0012207,-0.00256348,-0.0017395,0.00189209,0.0017395,-0.00274658,-0.00234985,-0.0012207,-6.10352e-05,0.0015564,0.000335693,-0.00161743,-0.00314331,-0.000274658,0.0015564,-0.000732422,0.000671387,-0.00213623,-0.000732422,-0.00106812,-0.00012207,-0.00180054,-0.00128174,0.00100708,-0.00201416,-0.0012207,0,-6.10352e-05,0.00213623,-0.000274658,-0.00268555,-0.00189209,-6.10352e-05,0.00167847,-0.00012207,-0.000671387,-0.00274658,-0.00256348,-0.00012207,0.0020752,0.000457764,-0.00280762,-0.00228882,0.000396729,0.00341797,0.0017395,-0.00323486,-0.00402832,-0.00256348,0.000213623,0.00222778,-0.00262451,-0.00469971,-0.00247192,0.000793457,0.000549316,-0.00341797,-0.00280762,-0.00296021,0.00247192,0.00088501,-0.00112915,-0.00268555,-0.00341797,0.000610352,-0.000213623,-0.00268555,-0.00424194,-0.00247192,-0.000610352,-0.00106812,-0.00161743,-0.00357056,-0.00228882,-0.000335693,-0.000946045,-0.0020752,-0.00247192,-0.0012207,-0.00106812,-6.10352e-05,-0.000457764,-0.00195312,-0.003479,-0.0032959,0.0012207,0.00146484,-0.00195312,-0.00430298,-0.00335693,0.000274658,6.10352e-05,-0.00228882,-0.00234985,-0.000610352,-0.00180054,-0.00140381,0.000610352,-6.10352e-05,-0.00390625,-0.00234985,-0.0017395,0.00241089,0.00012207,-0.00408936,-0.00415039,0.00241089,0.00457764,-0.00442505,-0.00390625,-0.0017395,0.00195312,0.00180054,-0.000396729,-0.00189209,-0.00128174,0.000946045,-0.0012207,-0.00100708,-0.000396729,-0.00222778,-0.0015564,0.00088501,-0.000671387,-0.00195312,-0.00146484,-0.000457764,-0.000671387,-0.000274658,-0.000274658,-0.000213623,-0.00195312,-0.00296021,-0.00222778,0.00146484,-0.00088501,-0.00100708,-0.00262451,-0.00189209,0.00012207,0.000732422,-0.00430298,-0.0038147,-0.00140381,-0.000610352,0.000213623,-0.00357056,-0.00146484,-0.0012207,0.00222778,0.000671387,-0.0032959,-0.00341797,-0.00469971,0.000335693,-0.00195312,-0.0038147,-0.0050354,-0.00134277,0.00256348,-0.00262451,-0.0017395,-0.00308228,-0.00128174,-0.000335693,-0.00100708,-0.00262451,-0.00375366,0,0.000549316,-0.00289917,-0.000213623,-0.00128174,-0.000793457,-0.00296021,-0.00323486,-0.0015564,-0.00106812,-0.00106812,-0.00180054,-0.00335693,0.000671387,-0.000274658,0.000335693,-0.000793457,-0.000671387,-0.0020752,-0.00241089,0.000274658,-0.00167847,-0.00195312,-0.00106812,-0.00289917,0.000396729,0.00134277,0.000732422,-0.000793457,-0.000793457,0.00167847,0.00088501,-0.000793457,-0.000732422,-0.00201416,0.00213623,0.000457764,-0.00134277,-0.00195312,0.000396729,0.00167847,0.00167847,0.000549316,-0.00088501,-0.000335693,-0.00012207,-0.00128174,-0.00189209,-0.0017395,0.00140381,-0.00262451,-0.00335693,0,0.00161743,0.000335693,-0.00396729,-0.00402832,-0.00430298,0.000396729,0.00375366,-0.00128174,-0.00140381,-0.00241089,0.00012207,6.10352e-05,0.000335693,-0.000793457,-0.00543213,0.000274658,-0.000274658,-0.000732422,-0.00274658,-0.00357056,-0.000396729,0.00201416,-0.00012207,-0.00424194,-0.00497437,-0.00112915,-0.000671387,-0.000946045,-0.0020752,-0.00543213,-0.00524902,0.00180054,0.00335693,-0.00167847,-0.00738525,-0.00314331,-0.0017395,0.0017395,-0.000274658,-0.00390625,-0.00222778,-0.00088501,0.00195312,0.000671387,0.000549316,-0.00189209,-0.00564575,0.000610352,0.00140381,0.000457764,-0.00167847,-0.00436401,-6.10352e-05,0.00195312,0.00268555,-0.00213623,-0.00375366,0.00100708,0.00256348,0.00201416,-0.00369263,-0.00482178,-0.000213623,0.00289917,0.00140381,-0.00241089,-0.00256348,0.00012207,0.00161743,0.00314331,-0.0015564,-0.00357056,-0.00161743,0.00012207,0.00424194,-0.000549316,-0.00189209,-0.00201416,0.0017395,0.003479,-0.000732422,0.000274658,-0.000610352,-0.00280762,-0.0017395,-0.00189209,0.000946045,-0.00363159,-0.000457764,-6.10352e-05,0.000610352,0.00161743,-0.00262451,-0.000274658,-0.0015564,-0.000396729,-0.00335693,-0.00296021,-0.00415039,-0.00704956,-0.00222778,0.00100708,-0.000213623,-0.0065918,-0.00482178,0.0020752,0.00088501,-0.00100708,-0.00442505,-0.000946045,0.0020752,0.00195312,-0.00112915,-0.000549316,0.00134277,-0.00180054,-0.00430298,-0.00256348,-0.00195312,-0.00363159,-0.00112915,-0.00268555,-0.00469971,-6.10352e-05,0.0032959,6.10352e-05,-0.00363159,-0.00088501,0.00213623,0.0015564,-0.00201416,-0.00408936,-0.00012207,0.000671387,0.000946045,-0.00476074,-0.00390625,0.000457764,0.00106812,0.00262451,-0.00189209,-0.0038147,-0.00134277,0.00268555,0.00323486,0.000274658,-0.00100708,-0.00189209,0.00189209,0.00415039,0.00112915,-0.000610352,-0.00167847,0.000274658,0.000793457,-0.00012207,-0.00146484,-0.00262451,-0.00134277,0.00112915,-0.00128174,-0.00296021,-6.10352e-05,0.00161743,0.000793457,0.000396729,-0.00134277,-0.00195312,-0.000274658,-0.00161743,-0.00497437,-0.00289917,-0.00195312,-0.00189209,-0.00289917,-0.00289917,-0.000549316,-0.00268555,-0.0017395,-0.0038147,0.0012207,-0.00012207,-0.00375366,-0.00341797,0.00128174,0.000732422,-0.00161743,6.10352e-05,-0.00222778,0.000610352,-0.000946045,-0.00241089,-0.00408936,-0.00241089,0.00128174,-0.00262451,-0.00280762,0.000671387,-0.00222778,0.0020752,-0.0020752,-0.00180054,-0.00161743,-0.00100708,-0.0012207,-0.00598145,-0.00106812,0.000610352,-0.000732422,-0.00228882,-0.00195312,-0.00012207,-0.00134277,-0.00201416,-0.00341797,-0.00268555,-6.10352e-05,0.000671387,-0.000946045,-0.00189209,-0.000335693,-0.000946045,0.000671387,0.000946045,-0.00424194,-0.00134277,0.00012207,-0.000946045,-0.000335693,-0.00134277,-0.000549316,-0.00100708,-0.000335693,-0.00134277,-0.000457764,0.000213623,-0.00268555,-0.00256348,-0.000549316,0.0020752,0.000457764,-0.00396729,-0.00241089,0.00289917,0.00161743,-0.00341797,-0.00302124,-0.000335693,6.10352e-05,-0.00012207,-0.00012207,-0.00161743,-0.00180054,-0.00012207,-0.000274658,-6.10352e-05,-0.00280762,-0.00509644,-0.00476074,0.00213623,0.00375366,-0.00390625,-0.00274658,0.00128174,-0.000457764,0.00189209,0.000213623,-0.00222778,-0.00323486,0.00302124,0.00323486,-0.00424194,-0.00415039,-0.00280762,0.000457764,-0.00146484,-0.00234985,-0.00289917,-0.00213623,-0.00201416,-0.00402832,-0.000396729,-0.000274658,-0.00314331,-0.00256348,-0.00222778,0.00100708,-0.000793457,-0.00390625,-0.00357056,-0.00140381,0.00213623,-0.00363159,-0.00476074,-0.0017395,-0.000946045,-0.00161743,-0.00531006,-0.00402832,-0.00100708,0.0015564,-0.00274658,-0.00247192,-0.00161743,0.000457764,0.00012207,-0.00314331,-0.00167847,0.00134277,0,-0.00274658,-0.000671387,-0.00146484,0.000732422,0.00262451,-0.00262451,-0.00637817,-0.00241089,0.00726318,0.00228882,-0.00592041,-0.0038147,0.00195312,0.00457764,0.00140381,-0.00497437,-0.00180054,0.00335693,0.00515747,-0.000396729,-0.00012207,0.000671387,-0.000946045,-0.00128174,-0.0012207,0.000610352,-0.000274658,-0.00308228,-0.0032959,-0.000213623,0.00570679,0.00457764,-0.00195312,-0.00442505,-0.00128174,0.00308228,-0.00100708,-0.00482178,-0.00247192,-0.00201416,-0.00112915,-0.00161743,-0.00189209,-0.00228882,0.00106812,-0.0012207,-0.00476074,-0.000793457,0.000335693,-0.000671387,-0.00256348,-0.00268555,-0.00167847,-0.00106812,-0.000793457,-0.00436401,-0.00323486,0.00088501,-0.00189209,-0.00408936,-0.00408936,-0.000946045,0.0015564,0.000335693,-0.00491333,-0.00616455,0.000946045,-0.000549316,-0.00390625,-0.00262451,-0.00357056,-0.00308228,0.00167847,0.00296021,-0.000274658,-0.00247192,-0.00390625,-0.00222778,0.00228882,0.000213623,-0.00363159,-0.00241089,0.00088501,0.00134277,0.00189209,0.00408936,0.00100708,-0.00146484,0.0017395,-0.000793457,0.000549316,0.000946045,-6.10352e-05,-0.00228882,-0.00140381,0.00509644,0.00274658,0.000549316,-0.00363159,-0.000732422,0.00161743,0.00375366,0.00161743,-0.00112915,-0.00296021,6.10352e-05,0.000946045,-0.00146484,-0.00140381,-0.00268555,-0.0020752,-0.00112915,0.0012207,-0.00375366,-0.00247192,0.00314331,-0.000610352,-0.00570679,-0.00241089,-0.00140381,-0.00140381,0.000610352,-0.00128174,-0.00469971,-0.00430298,-0.0020752,-0.00189209,0.0020752,-0.00195312,-0.00543213,-0.00201416,0.00213623,-0.000610352,-0.00402832,-0.00256348,-0.00323486,-0.00088501,0.000671387,-0.00314331,-0.00280762,-0.000793457,-0.00140381,-0.00424194,-0.00314331,-0.000671387,-0.00314331,-0.000549316,0.00167847,-0.00222778,-0.00201416,-0.000335693,-6.10352e-05,-0.0012207,0.0012207,-0.00201416,-0.00314331,0.0012207,0.00524902,0.00256348,-0.000274658,0.000549316,-0.00228882,-0.000549316,0.00296021,0.000274658,-0.00323486,0.00228882,0.00457764,-0.00146484,-0.00088501,0.00228882,0.00161743,0,-0.00308228,0.0017395,0.00424194,0.0015564,-0.00228882,-0.000732422,0.00390625,-0.000946045,-0.00161743,-0.000335693,0.00213623,0.00146484,-0.00012207,-0.00167847,-0.003479,0.000213623,-0.00213623,-0.00241089,-0.00424194,-0.00308228,-6.10352e-05,0.00280762,0.000793457,-0.0067749,-0.00442505,0.00256348,0.00549316,-0.00195312,-0.00704956,-0.00268555,0.000793457,0.00396729,-0.00228882,-0.00732422,-0.00402832,0.00228882,0.00289917,-0.00491333,-0.00857544,-0.00228882,0.000213623,0.00189209,-0.00442505,-0.00665283,-0.000457764,0.00228882,0.000610352,-0.00524902,-0.00436401,-0.000610352,0.000946045,0.00088501,-0.00375366,-0.00363159,-0.000274658,0.00390625,-0.0012207,-0.00424194,-0.00280762,-0.00195312,0,0.00180054,0.00112915,-0.00491333,-0.0017395,0.00012207,0.00289917,0.00247192,-0.00161743,-0.00524902,-0.000610352,0.00524902,-0.000946045,-0.00241089,-0.00241089,-0.00296021,0.000793457,0.00402832,-0.000274658,-0.00604248,-0.000396729,0.00180054,-0.00112915,0.00012207,0.00128174,-0.003479,-0.000793457,0.00112915,0.000213623,0.000457764,0.000610352,-0.00128174,-0.00515747,-0.00140381,0.00088501,-0.00289917,-0.0020752,-0.00161743,0.00161743,0.00012207,-0.0015564,-0.000946045,-0.00390625,0.00100708,-0.00201416,-0.00457764,-0.0015564,0.000274658,-0.00140381,-0.00549316,-0.0038147,-0.0038147,-0.00280762,0.0017395,-0.00375366,-0.00772095,0.000396729,0.00537109,0.00436401,-0.000549316,-0.000671387,-0.0050354,-0.000610352,0.0032959,-0.00106812,-0.00424194,-0.00683594,-0.00180054,0.00222778,0.00357056,-0.00274658,-0.00878906,-0.000793457,0.00457764,0.00241089,-0.00314331,-0.00765991,-0.00167847,0.00457764,0.00396729,-0.00408936,-0.0105286,-0.00213623,0.00616455,0.00213623,-0.00671387,-0.00918579,-0.00335693,0.00268555,0.00448608,-0.00161743,-0.00912476,-0.00274658,0.00732422,0.00564575,-0.00012207,-0.00610352,-0.00866699,0.000549316,0.00784302,0.000457764,-0.00744629,-0.00424194,0.00430298,0.0067749,0.000732422,-0.00524902,-0.00933838,0.0012207,0.00979614,-0.00213623,-0.012146,-0.00811768,0.003479,0.00637817,0.000793457,-0.0050354,-0.0114746,-0.000335693,0.00323486,-0.000274658,-0.00268555,-0.00717163,-0.00448608,0.000732422,0.00610352,6.10352e-05,-0.00463867,-0.000793457,0.000549316,0.00415039,0.00106812,0.00106812,-0.00402832,-0.00436401,0.00323486,0.00402832,0.00308228,-0.00598145,-0.00650024,-6.10352e-05,0.00515747,0.00012207,-0.0085144,-0.00463867,-0.000549316,0.00357056,-0.00189209,-0.00631714,-0.00570679,-0.00497437,0.00671387,0.000274658,-0.00799561,-0.00857544,-0.00201416,0.00543213,0.00375366,-0.00289917,-0.00933838,-0.00088501,0.0032959,0.000396729,-0.00592041,-0.00570679,-0.00180054,0.000610352,0.00357056,0.000549316,-0.00436401,-0.00213623,0.00228882,0.003479,0,-0.00369263,-0.00415039,-0.00357056,0.00100708,0.0012207,-0.00643921,-0.00308228,0.00213623,0.0020752,0.00167847,-0.00201416,-0.00146484,-0.00167847,-0.00161743,-0.000671387,-0.00167847,-0.00274658,-0.00289917,-0.000793457,0.00088501,-0.00134277,0.00100708,-0.00167847,-0.000457764,0.00134277,0,0.00698853,0.00241089,-0.00341797,-0.00201416,0.00262451,0.00369263,-0.0020752,-0.00314331,-0.00549316,-0.00390625,-0.000213623,-0.00180054,-0.000671387,-0.00296021,-0.00146484,-0.000732422,0.00341797,-0.00088501,-0.00543213,-0.00201416,-0.000549316,0.00012207,-0.0032959,-0.00765991,-0.00524902,6.10352e-05,0.00375366,-0.00296021,-0.00704956,-0.00134277,0.00106812,0.000213623,-0.000457764,-0.00357056,-0.00213623,-0.00247192,0.000671387,0.00363159,0.00128174,0.00012207,-0.00558472,-0.00698853,0.000213623,0.00396729,-0.00262451,-0.0101318,-0.00582886,0.00128174,0.00650024,0.00408936,-0.00582886,-0.00759888,0.00128174,0.003479,-0.00112915,-0.00866699,-0.00213623,0.00592041,0.00543213,-0.00296021,-0.00643921,0.00128174,0.00772095,0.00692749,-0.00457764,-0.0104065,-0.000671387,0.00616455,0.0020752,-0.00222778,-0.00497437,-0.00262451,0.00442505,0.00631714,0.00201416,-0.00424194,-0.00012207,-0.00106812,-0.00335693,-0.00201416,6.10352e-05,0.0017395,-0.00262451,-0.00457764,-0.00289917,0.00643921,0.00476074,-0.00582886,-0.00866699,-0.00515747,0.0012207,0.000946045,-0.00247192,-0.00241089,-0.00247192,-0.000549316,0.00363159,-0.000274658,-0.00222778,-0.00463867,6.10352e-05,0.00161743,-0.00497437,-0.00469971,-0.00531006,-0.000274658,0.00228882,-0.00189209,-0.00112915,-0.00341797,0.00134277,-0.00247192,0.00161743,0.0032959,-0.0067749,-0.00497437,-6.10352e-05,0.00274658,-0.00180054,-0.00262451,-0.0062561,-0.00476074,0.00811768,0.00302124,-0.00537109,-0.0083313,-0.00112915,0.00543213,0.00515747,0.00140381,-0.00958252,-0.00482178,0.00845337,0.00704956,-0.00415039,-0.00564575,-0.00274658,0.00228882,0.00549316,-0.00012207,-0.0065918,-0.00402832,0.00582886,0.00222778,0.00112915,-0.00402832,-0.00924683,-0.00140381,0.00180054,0.00247192,-0.0032959,-0.0012207,-0.00222778,0.000671387,0.00497437,0.000457764,-0.00524902,-0.0038147,0.000457764,0.00430298,-0.00296021,-0.00665283,-0.00717163,0.00323486,0.00247192,-0.00604248,-0.00390625,-0.00610352,0.00308228,0.00140381,-0.000671387,-0.00274658,-0.00616455,0.000793457,0.0012207,0.00408936,-0.000274658,-0.00665283,-0.00582886,-0.00201416,0.0062561,0.00112915,-0.00784302,-0.00463867,-0.00375366,0.00509644,0.00558472,-0.0032959,-0.00469971,-0.00335693,0.000335693,-6.10352e-05,0.00088501,-0.00457764,-0.00408936,0.00256348,0.00234985,-0.000274658,0.00201416,-0.00161743,-0.00363159,0.00375366,0.00256348,-0.00375366,-0.00341797,0.00106812,0.000274658,0.00241089,0.000793457,-0.00637817,-0.00228882,0.00012207,0.0012207,0.00228882,-0.000732422,-0.00448608,-0.00314331,0.0020752,0.00469971,-0.000793457,-0.00811768,-0.0085144,-0.00268555,0.0050354,-0.00146484,-0.00827026,-0.00827026,-0.00256348,0.00637817,0.00582886,-0.00222778,-0.00631714,-0.00549316,0.00436401,0.0050354,-0.00314331,-0.0067749,-0.00531006,-0.00161743,0.00430298,-0.00167847,-0.00323486,-0.00341797,-0.00430298,0.00234985,-0.000396729,0.00396729,-0.00564575,-0.00323486,0.00106812,-0.00308228,0.00402832,-0.0032959,-0.00726318,-0.00671387,0.0050354,0.000396729,-0.00564575,-0.00827026,-0.00598145,0.00415039,0.000610352,-0.000213623,-0.00610352,-0.00402832,-6.10352e-05,0.00744629,6.10352e-05,-0.00537109,-0.00280762,0.00537109,0.00482178,-0.000335693,-0.000549316,-0.00390625,-6.10352e-05,0.00262451,0.00274658,0.00415039,-0.00436401,-0.00765991,0.000946045,0.00692749,0.00274658,-0.00570679,-0.00631714,-0.00247192,0.000732422,0.00839233,-0.00576782,-0.0071106,-0.00222778,-0.000610352,0.00280762,-0.00582886,-0.00732422,-0.00778198,0.00268555,0.00469971,-0.00241089,-0.00631714,-0.00357056,0.00222778,0.00369263,0.0012207,-0.00509644,-0.0015564,-0.00363159,0.00274658,0.00515747,-0.00100708,-0.00088501,-0.0050354,-0.00415039,0.00363159,0.00140381,-0.00738525,-0.00811768,-0.00717163,0.000946045,0.00201416,0.00491333,-0.00314331,-0.00692749,0.00146484,0.00161743,0.000946045,-0.0015564,-0.00793457,-0.00531006,0.00497437,0.00189209,-0.00692749,-0.000335693,0.00134277,0.00582886,0.00256348,-0.00744629,-0.00396729,0.00357056,0.00827026,-0.000213623,-0.00363159,-0.0083313,0.00189209,0.0131531,0.00268555,-0.00872803,-0.0038147,0.00469971,0.000946045,0.000946045,-0.000335693,-0.00247192,-0.00784302,-0.00140381,0.00134277,6.10352e-05,0.00088501,-0.0050354,-0.00570679,0.000732422,0.00167847,-0.00112915,-0.00308228,-0.00531006,-0.0038147,-0.00335693,0.00424194,-0.000335693,-0.00564575,0.00363159,0.00402832,0.0017395,-0.00247192,-0.00335693,0.000274658,-0.000732422,-0.00189209,-0.00906372,-0.00604248,0.00241089,-0.000549316,-0.00195312,-0.00402832,0.00161743,0,0.0012207,-0.00424194,-0.00717163,0.00442505,0.00012207,-0.000946045,-0.00784302,-0.00189209,0.00497437,0.00106812,-0.00012207,-0.00759888,0.000671387,0.00256348,0.00369263,-0.00616455,-0.00537109,0.00515747,0.003479,0.00128174,-0.00296021,0.00289917,0.00497437,0.00241089,-0.00180054,-0.00872803,-0.000213623,0.00112915,-0.00201416,-0.00482178,-0.000457764,0.00390625,0.00570679,0.000457764,-0.0067749,-0.00463867,0.00228882,0.00335693,-0.00357056,-0.00765991,-0.00717163,0.00335693,0.00308228,-0.000396729,-0.00088501,-0.00476074,0.0012207,0.00167847,0.00189209,-0.00744629,-0.0118713,-0.00396729,0.000549316,0.00524902,-0.00543213,-0.00698853,0.00161743,0.00369263,0.00088501,0.00302124,0.00088501,-0.00558472,-0.00698853,0.000946045,0.000549316,-0.00241089,-0.00201416,-0.00598145,-0.00274658,0.0038147,0.000457764,-0.0085144,-0.00592041,-0.000396729,-0.00140381,0.00296021,-0.00289917,-0.00604248,-0.000335693,0.00302124,0.00408936,0.000946045,-0.00296021,-0.00341797,0.00161743,0.00201416,-6.10352e-05,-0.00280762,0.00424194,0.00564575,0.000610352,-0.00128174,-0.00543213,0.0012207,0.00616455,-0.00106812,-0.00531006,-0.00515747,0.00161743,0.003479,-0.00112915,-0.00430298,-0.00180054,0.00268555,0.000274658,-0.00234985,-0.00592041,-0.00442505,0.00228882,0.003479,-0.0050354,-0.00784302,0.00274658,0.00369263,-0.000610352,-0.00112915,-0.00189209,-0.00558472,0.00161743,0.000671387,-0.000793457,0.00195312,-0.00262451,-0.00436401,-0.0032959,0.00491333,-0.00140381,-0.00491333,-0.00564575,-0.00357056,0.00482178,0.00430298,-0.003479,-0.00878906,0.000457764,0.00643921,-0.00189209,-0.00973511,-0.0109253,-0.000213623,0.00946045,-0.00314331,-0.011261,-0.00430298,0.00482178,0.00469971,-0.0065918,-0.00128174,-0.00357056,-0.00088501,0.00161743,0.00128174,0.00363159,0.000549316,-0.00289917,-0.00189209,0.00402832,0.00396729,-0.00247192,-0.000457764,-0.00537109,-0.00296021,0.00415039,-0.00106812,-0.00524902,-0.00491333,0.00759888,0.00213623,-0.00515747,-0.00637817,-0.00323486,0.0065918,0.00247192,-0.00878906,-0.00665283,-0.000274658,0.00436401,0.000671387,-0.00430298,-0.00933838,-0.00509644,0.00772095,0.00274658,-0.00537109,-0.00262451,0.00247192,-0.00012207,-0.000549316,-0.000549316,-0.00408936,-0.00012207,-0.0015564,-0.00323486,0.000213623,0.00558472,-0.0015564,-0.000274658,-0.00430298,-0.00637817,-0.00396729,-0.00274658,-0.00335693,-0.00463867,0.00671387,-0.00415039,-0.00430298,0.00357056,0.00247192,0.00140381,-0.00616455,-0.00012207,0.000213623,-0.000793457,-0.00289917,-0.00631714,-0.000732422,0.000549316,0.00241089,0.000671387,-0.000946045,0.00106812,0.00396729,0.00161743,-0.00308228,-0.00469971,-0.00100708,0.0015564,-0.00314331,-0.0038147,-0.00161743,0.00732422,-0.00180054,-0.00537109,-0.00341797,-0.00576782,0.000335693,-0.00308228,6.10352e-05,-0.00665283,0.000335693,0.00363159,0.00128174,0.00457764,-0.0101929,-0.000274658,0.00335693,-0.00146484,-0.00598145,-0.00341797,0.00341797,-0.00497437,-0.00335693,0.0038147,0.00247192,0.00167847,-0.000671387,-0.00415039,0.00390625,0.003479,-0.00308228,-0.00482178,-0.00302124,-0.000610352,-0.00323486,0.00161743,-0.00213623,-0.0071106,0.000793457,0.00692749,0.00112915,-0.00732422,-0.00241089,-0.00463867,-0.00112915,0.00448608,-0.00415039,-0.00424194,-0.00390625,0.00228882,0.00280762,-0.000396729,0.000946045,-0.00592041,0.00100708,0.00515747,0.00100708,-0.00241089,-0.0065918,0.0012207,0.00430298,0.00134277,-0.00402832,-0.00515747,0.0017395,-0.000946045,-6.10352e-05,-0.000793457,-0.00335693,-0.00912476,0.000549316,0.00482178,-0.00241089,-0.00442505,-0.00457764,0.00112915,0.00012207,0.00576782,-0.0012207,-0.0062561,-0.00497437,-0.00195312,0.00732422,0.00549316,-0.00424194,-0.012146,-0.00469971,0.00979614,0.00515747,-0.0032959,-0.00341797,-0.00363159,0.00369263,0.00469971,0.000274658,-0.00558472,-0.00195312,0.000335693,0.000335693,0.00213623,-0.0110779,-0.00717163,0.00463867,0.00692749,-0.000549316,-0.00759888,-0.00341797,0.00274658,0.0071106,0.000396729,-0.0109253,-0.0032959,0.00805664,0.0020752,6.10352e-05,-0.00323486,-0.00140381,0.00497437,0.000946045,-0.000793457,-0.00616455,-0.00222778,-0.00146484,-0.00543213,0.00274658,-0.00201416,-0.0020752,-0.00515747,-0.00146484,0.003479,-0.00189209,-0.00112915,-0.00509644,-0.00134277,-0.00100708,0.00112915,-0.00256348,-0.00692749,0.000793457,0.000549316,0.00106812,0.00180054,-0.0050354,-0.00424194,0.00448608,0.00268555,-0.00759888,-0.00335693,0.00631714,0.00476074,-0.00631714,-0.00564575,-0.00106812,-0.00012207,0.00817871,-0.00106812,-0.00537109,-0.00112915,-0.00402832,-0.00106812,0.000335693,0.000610352,-0.00537109,-0.00469971,0.000457764,-0.000946045,0.00268555,0.00543213,-0.00128174,-0.00274658,-0.00476074,-0.000671387,0.00363159,0,-0.00476074,-0.00738525,0.00939941,0.0105896,-0.00811768,-0.0109253,-0.00357056,0.00866699,0.00274658,-0.0050354,-0.0108032,-0.00604248,0.00128174,0.00604248,0.0065918,-0.0133667,-0.0158386,0.00241089,0.0186462,-0.000274658,-0.0174561,-0.00991821,-0.00262451,0.0141602,0.00363159,-0.0111389,-0.0144958,0,0.0114136,0.00665283,0.00247192,-0.0112,-0.0105286,0.000793457,0.0104675,-0.000549316,-0.0115967,-0.00448608,0.00308228,0.00631714,0.0129395,-0.00357056,-0.0195923,-0.00604248,0.00973511,0.00738525,-0.0123596,-0.0140991,-0.00891113,0.00247192,0.0140991,-0.00128174,-0.00878906,-0.00524902,-0.000396729,0.00598145,0.00665283,0.000457764,-0.0141602,-0.00134277,0.0118713,0.00592041,0.00128174,-0.00759888,-0.00341797,0.00222778,0.0109253,0.00140381,-0.0135498,-0.00900269,-0.000671387,0.0114136,0.00357056,-0.00704956,-0.0110779,-0.0038147,0.00967407,0.00958252,-0.00341797,-0.0181885,-0.00732422,0.00866699,0.00314331,-0.00872803,-0.00991821,-0.0067749,0.00839233,0.00732422,-0.00408936,-0.0114746,-0.00396729,0.00793457,0.00698853,0.00140381,-0.00799561,-0.00274658,0.00415039,0.0104675,0.00100708,-0.0115967,-0.00262451,-0.00296021,0.00482178,0.00543213,-0.00744629,-0.00582886,-0.00704956,0.00515747,0.00476074,-0.00549316,-0.00302124,-0.00524902,0.00357056,0.00302124,0.00161743,-0.000396729,-0.0050354,-0.00268555,-0.000549316,0.0032959,-0.00161743,0.000213623,-0.00228882,-0.00482178,-0.000671387,-0.00167847,-0.00280762,-0.00323486,0.000335693,0.00296021,0.00665283,0.0017395,-0.0105286,-0.00616455,-0.000274658,0.00280762,-0.00088501,-0.00704956,-0.0103455,-0.00268555,0.00772095,-0.00302124,-0.00991821,-0.00650024,-6.10352e-05,0.00314331,-0.00222778,-0.00369263,-0.00268555,0.00637817,0.00234985,-0.00765991,-0.00146484,0.0038147,0.00128174,-0.00302124,-0.00128174,0.00302124,0.0020752,0.000549316,-0.00582886,-0.0065918,0.00616455,0.00616455,-0.0020752,-0.00692749,-0.00106812,0.00268555,0.00256348,0.00683594,-0.00234985,-0.00683594,-0.00558472,0.00476074,0.00448608,-0.00241089,-0.00866699,-0.00408936,0.00369263,-0.00088501,0.000610352,-0.00106812,-0.00088501,0,0.00280762,-0.000793457,0.00195312,-0.00268555,-0.00558472,0.00201416,6.10352e-05,-0.00457764,-0.00213623,0.0038147,-0.00228882,-0.000793457,0.000335693,-0.00314331,-0.00717163,0.00448608,0.00241089,-0.003479,-0.000946045,-0.00891113,-0.00106812,0.00866699,0.0071106,-0.00799561,-0.00765991,-0.00262451,-0.00201416,0.00933838,0.000549316,-0.0123596,-0.00558472,0.00732422,0.00482178,-0.0032959,-0.00201416,-0.00772095,0.00256348,0.00750732,-0.003479,-0.00558472,-0.00469971,0.0015564,0.00106812,-0.00140381,0.0017395,-0.000610352,-0.0015564,-0.00228882,6.10352e-05,0.00134277,-0.00442505,-0.00195312,-0.00335693,-0.00610352,-0.00296021,0.000274658,0.00515747,-0.00247192,-0.00491333,-0.00637817,-0.00323486,0.00817871,-0.00717163,-0.00683594,-0.000549316,-0.00088501,-0.000457764,-0.00866699,0.00262451,0.00341797,-0.00146484,-0.0071106,-0.00671387,0.00448608,0.00491333,-0.00088501,-0.00665283,-0.00363159,0.0015564,0.0083313,0.00900269,-0.00604248,-0.00985718,-0.00323486,0.00497437,0.00262451,-0.00698853,-0.00189209,0.0012207,0.00189209,-0.000946045,-0.00582886,0.00415039,0.00772095,-0.00637817,-0.00778198,-0.00228882,0.00537109,0.00778198,-0.00128174,-0.00878906,-0.00256348,0.0065918,0.00189209,-0.00476074,-0.0050354,-0.00146484,0.00363159,0.00012207,-0.00918579,-0.00146484,0.00274658,0.00604248,-0.00228882,-0.00872803,0.000946045,0.00604248,0.00201416,-0.0115356,-0.0032959,0.00195312,0.00180054,-0.00469971,-0.0107422,-0.00509644,0.000732422,0.0120239,-0.00228882,-0.0132751,-0.00415039,0.000610352,0.0108032,0.000457764,-0.012085,-0.0085144,0.00463867,0.0128174,-0.00598145,-0.00991821,-0.00335693,-0.00106812,0.00549316,-0.00228882,-0.00396729,0.003479,0.0038147,-0.00515747,-0.00463867,0.0083313,0.00531006,-0.00564575,-0.00515747,0.00302124,0.0071106,0.00363159,-0.00268555,-0.00692749,-0.0032959,0.00732422,-0.00128174,-0.00726318,-0.0050354,-0.00262451,0.00778198,0.00476074,-0.00396729,-0.0105896,-0.00872803,0.00457764,0.00323486,0.00106812,-0.0136108,-0.00985718,0.00537109,0,-0.0050354,-0.0107422,0.0038147,0.00515747,0.00704956,-0.0015564,-0.00872803,0.00234985,0.00582886,-0.000946045,-0.00765991,-0.00726318,-0.00280762,0.00180054,0.00161743,-0.00424194,-0.0067749,-0.00100708,0.00531006,0.00213623,-0.00463867,-0.003479,0.00390625,-0.00314331,-0.00415039,0.00289917,-0.00415039,-0.00637817,-0.00180054,0.000946045,-0.0038147,0.000335693,0.00482178,-6.10352e-05,0.0012207,0.00112915,-0.00195312,-0.00436401,0.000335693,0.0067749,0.0108032,0.0017395,-0.00726318,-0.000793457,0.00671387,0.00280762,-0.00643921,-0.00912476,-0.00195312,0.00469971,-0.00650024,-0.0117493,-0.00274658,0.0113525,0.00665283,-0.0071106,-0.0132141,-0.0012207,0.0107422,0.00241089,-0.00857544,-0.00543213,-0.00228882,-0.000946045,0.0020752,-0.00363159,-0.00698853,0,0.00598145,-0.00369263,-0.00817871,-6.10352e-05,0.00390625,-0.000335693,-0.00900269,-0.00750732,0.00222778,0.0109253,0.00476074,-0.00811768,-0.0142822,0.0015564,0.0122681,0.000732422,-0.00912476,-0.0107422,-0.00463867,0.00778198,0.00390625,-0.0120239,-0.00357056,0.00933838,0.00375366,-0.00424194,0.00180054,0.00692749,0.00598145,0.000213623,-0.00390625,-0.00698853,-0.00112915,0.000396729,-0.00476074,-0.000946045,-0.00778198,-0.000457764,0.00704956,0.00167847,-0.00424194,-0.0126038,0.000457764,0.00592041,-0.00296021,-0.0145569,-0.00784302,0.0104065,0.00262451,-0.0067749,-0.00906372,0.00088501,0.0105286,0.00436401,-0.0105286,-0.0158386,0.00476074,0.0183105,-0.000213623,-0.0103455,-0.0111389,-0.000793457,0.00866699,0.00973511,-0.000213623,-0.00582886,-0.00302124,0.000549316,0.00537109,0.000946045,-0.00582886,-0.00991821,-0.00750732,0.00100708,0.00643921,0.00683594,-0.00335693,-0.0100098,-0.00570679,0.00918579,0.00476074,-0.00369263,-0.00128174,-0.00436401,-0.000610352,0.00491333,0.00341797,-0.00375366,-0.00390625,6.10352e-05,-0.00128174,0.000610352,0.000213623,-0.00201416,-0.00408936,0.00448608,0.000732422,-0.00946045,-0.00671387,0.00476074,0.0146179,-0.00201416,-0.00637817,-0.00698853,-0.00234985,0.00308228,-0.00180054,-0.00582886,-0.0105896,-0.0050354,0.00698853,0.00274658,-0.00112915,-0.00759888,-0.00631714,0.0012207,0.00341797,0.00402832,-0.00912476,-0.000610352,0.0012207,-0.00564575,-0.00161743,0.00424194,0.00363159,-0.00598145,-0.00213623,-0.0032959,-0.00146484,0.0102539,-0.00195312,-0.00952148,0.00247192,0.00463867,0.00180054,-0.000946045,-0.000274658,0.00335693,0.00323486,0.00189209,-0.00778198,-0.000610352,0.00558472,0.00436401,0.00631714,-0.00146484,-0.0124817,0.000274658,0.0124207,-0.000213623,-0.0125427,-0.00765991,0.000213623,0.00857544,0.000732422,-0.0114746,-0.00289917,0.00369263,-0.00375366,-0.00665283,-0.00134277,0.000610352,0.00463867,-0.00256348,-0.0123596,-0.00442505,0.013092,-0.00222778,-0.0153809,-0.00491333,0.000793457,0.00582886,0.00839233,-0.00228882,-0.0136108,0.00234985,0.00247192,0.000274658,0.00582886,-0.00280762,-0.0085144,-0.000671387,0.00738525,-0.00765991,-0.00643921,0.000732422,-0.00692749,-0.00570679,-0.000549316,0.00167847,-0.00140381,-0.00180054,-0.00302124,-0.00463867,0.00531006,0.00308228,-0.00482178,-0.000946045,-0.00369263,0.00106812,0.00463867,0.00247192,-0.00396729,-0.00637817,0.00088501,-0.00167847,0.00537109,0.00280762,-0.00570679,-0.00256348,0.000274658,-0.000274658,-0.00457764,0.000457764,0.00146484,0.00241089,0.00363159,-0.00671387,-0.00778198,0.00558472,-0.00161743,0.00167847,-0.00241089,-0.00891113,-0.00482178,0.0017395,0.00430298,-0.00604248,-0.00112915,-0.00112915,-0.00396729,0.00228882,0.00241089,-0.00778198,0.00213623,0.00396729,-0.00778198,-0.00335693,0.00558472,0.00222778,-0.00314331,-0.0012207,-0.00598145,-0.00357056,0.0071106,6.10352e-05,-0.0085144,0.00234985,0.00134277,-0.012085,-0.00274658,0.0083313,0.00924683,-0.0038147,-0.0113525,-0.0133667,0.00924683,0.016571,-0.00448608,-0.0108032,-0.00537109,0.00390625,0.0106812,-0.00012207,-0.0118713,-0.0106812,0.00189209,0.00732422,0.00112915,-0.00643921,-0.0113525,0.00323486,0.0153809,-0.00692749,-0.0104065,-0.000671387,-0.00363159,0.00289917,-0.00146484,-0.0085144,-0.00280762,0.00274658,-0.00274658,-0.00549316,0.00665283,0.00369263,-0.0101929,-0.00463867,-0.00469971,0.00408936,0.0088501,-0.0136108,-0.0184631,0.0050354,0.0178528,0.00415039,-0.00448608,-0.0114746,-0.00302124,0.0167847,0.00665283,-0.0104675,-0.0126038,0.00128174,0.0104065,0.0107422,0.00491333,-0.0133667,-0.00744629,0.0115967,0.00772095,-0.0083313,-0.0148926,0.000274658,0.00845337,0.00241089,-0.00524902,-0.0050354,-0.00213623,0.00146484,0.0012207,0.00262451,0.00396729,-0.00408936,-0.00985718,-0.00576782,0.00228882,-0.00549316,-0.00839233,-0.00543213,-0.00341797,-0.00100708,-0.00134277,0.00256348,0.0132141,0.00839233,-0.00845337,-0.00924683,0.00531006,0.00866699,-0.00750732,-0.00543213,-0.0050354,-0.00256348,0.00726318,0.00088501,-0.0012207,-0.00698853,-0.00616455,-0.00396729,0.00482178,0.00698853,-0.0088501,-0.0126038,-0.0050354,-0.00134277,0.00643921,0.00738525,-0.00247192,-0.0132141,-0.00811768,0.0102539,0.00549316,0.00335693,-0.00979614,-0.0118713,0.00979614,0.0116882,0.00241089,-0.00302124,0.00247192,0.00515747,0.00866699,-0.00543213,-0.0169678,-0.00262451,0.00891113,0.00765991,-0.00946045,-0.00900269,0.000732422,0.0147705,0.00280762,-0.0146179,-0.00958252,0.00106812,0.00549316,0.00643921,-0.0038147,-0.0127563,-0.0017395,0.0017395,-0.00531006,0.00289917,0.00268555,-0.00671387,0.00436401,0.00341797,-0.00289917,-0.000671387,-0.00106812,-0.000213623,-0.000671387,0.00430298,-0.00558472,-0.00778198,0.00650024,-0.00302124,-0.00482178,0.00268555,-0.0071106,-0.00357056,0.00704956,0.00912476,-0.000946045,-0.00448608,-0.00463867,-0.0032959,0.00616455,-0.00515747,-0.00616455,0.00213623,-0.00012207,-0.00302124,-0.00012207,0.00738525,-0.00268555,-0.00643921,-0.0115967,-0.000213623,0.0101929,0.00189209,-0.0100708,-0.00631714,-0.0032959,-0.0083313,-0.00390625,-0.00012207,-0.00280762,-0.00369263,-0.00369263,-0.00146484,0.00335693,0.00134277,0.000213623,0.00161743,-0.00515747,-0.00891113,-0.00106812,0.0100708,-0.00671387,-0.0181885,-0.00610352,0.0062561,0.00408936,-0.00817871,-0.0062561,0.00491333,0.00167847,0.00543213,0.00289917,-0.00482178,-0.00308228,0.00564575,0.00592041,-0.00515747,-0.00369263,-0.00134277,-0.00296021,0.00509644,-0.0012207,-0.00979614,-0.00314331,0.00222778,0.0071106,0.00128174,-0.00234985,-0.0128174,-0.000732422,0.0194702,0.00665283,-0.00189209,-0.0104065,-0.00213623,0.00415039,0.00363159,-0.00128174,-0.0159607,0.00241089,0.00375366,0.00146484,-0.00289917,-0.0067749,0.00167847,-0.000335693,0.0117493,-0.00302124,-0.0148926,-0.00390625,0.000213623,0.00415039,-0.00967407,-0.0122681,-0.0139465,0.00558472,0.0148315,-0.0104675,-0.0124207,-0.00222778,0.00811768,0.00683594,-0.000274658,-0.00650024,-0.0104065,0.00457764,0.00195312,0.0020752,0.000549316,-0.00692749,-0.00759888,-0.00088501,0.00650024,-0.00759888,-0.00280762,0.000671387,0.00482178,0.00482178,-0.00430298,-0.00939941,0.00222778,0.00598145,-0.00363159,0.00375366,-0.00448608,-0.00671387,-0.00100708,0.0050354,-0.0065918,-0.0085144,0.00717163,-0.00161743,-0.000610352,-0.00341797,-0.0107422,-0.00564575,0.0038147,0.00631714,-0.00469971,-0.00375366,-0.00692749,-0.000213623,0.0100708,-0.00704956,-0.00933838,0.00430298,0.0105896,-0.00247192,-0.00274658,0.00531006,-0.00726318,0.00189209,0.00106812,0.00726318,-0.00146484,-0.019989,-0.00189209,0.0127563,0.0146179,-0.00704956,-0.0101318,-0.000610352,-0.00256348,0.0114136,-0.000335693,-0.0153809,0.000793457,-0.00128174,-0.00140381,0.000335693,-0.00799561,-0.00717163,0.00463867,0.0100708,-0.00482178,-0.00213623,0.00616455,-6.10352e-05,0.00570679,-6.10352e-05,-0.00765991,-0.003479,0.00857544,-0.00363159,-0.0114136,0.00637817,-0.000549316,-0.00180054,-0.00335693,-0.0062561,0.00213623,0.0065918,0.00161743,-0.00738525,-0.0050354,0.00558472,0.00531006,-0.00357056,-0.0118103,-0.0065918,0.00469971,0.00415039,-0.00631714,-0.00967407,-0.00012207,0.00436401,0.00463867,-0.00918579,-0.00396729,-0.0015564,-0.00537109,0.00604248,-0.00195312,-0.00610352,-0.00201416,0.00772095,0.00363159,-0.0134888,0.00335693,0.00872803,0.0038147,-0.00408936,-0.0111389,0.00558472,0.00650024,-0.000274658,-0.012085,-0.00878906,0.00793457,0.00717163,-0.000396729,-0.0118713,-0.000610352,0.0126953,0.00167847,-0.00692749,0.00396729,0.000396729,-0.00375366,0.000946045,-0.00531006,-0.00274658,-0.00482178,0.00228882,-0.003479,-0.00222778,0.0015564,-0.012207,0.0105896,0.00912476,-0.00924683,-0.0115356,0.00463867,0.0148315,-0.00637817,-0.00469971,-0.00302124,-0.000549316,0.0071106,-0.00738525,-0.0102539,-0.00799561,0.0102539,-0.00448608,-0.0191956,0.00228882,-0.00369263,-0.00308228,0.0126953,0.000793457,-0.0194702,0.00213623,0.0232849,0.00845337,-0.0155029,-0.025177,0.00436401,0.0151672,0.0185242,-0.0157166,-0.0263672,0.00765991,0.00784302,0.00778198,0.00228882,-0.000732422,-0.00537109,0.00100708,0.00839233,0.00576782,0.00476074,-0.0107422,-0.0139465,0.00308228,0.0183105,0.00213623,-0.0178528,-0.0145569,-0.00296021,0.0104675,0.00189209,-0.0145569,-0.00604248,0.00314331,0.00442505,0.00228882,-0.00698853,-0.00463867,0.0017395,0.00469971,-0.00341797,-0.0106812,-0.00592041,0.00100708,0.00604248,-0.00323486,-0.0105896,-0.00247192,0.00469971,-0.00128174,-0.00497437,-0.00088501,0.00772095,0.00469971,-0.0105896,-0.00643921,0.0148926,0.00341797,-0.0146179,0.0020752,0.00598145,-0.00375366,-0.00390625,0.000213623,-0.00469971,-0.00180054,0.00396729,-0.0126953,-0.00793457,0.013031,0.000213623,-0.00576782,-0.00482178,-0.00396729,0.0065918,0.0186462,0.0015564,-0.0304565,-0.00531006,0.0137634,0.00296021,-0.00390625,-0.0108643,-0.00750732,0.0015564,0.00637817,0.00289917,-0.00161743,-0.00402832,-0.0083313,-0.00531006,0.00531006,-0.000671387,0.00314331,-0.012085,-0.0174561,0.0133667,0.0085144,-0.0062561,-0.00811768,-0.00448608,0.00476074,0.0109253,0.00140381,-0.0224915,-0.00650024,0.021759,0.00323486,-0.0114746,-0.00222778,-0.00772095,-0.000274658,0.0212708,-0.00363159,-0.0148926,0.0071106,0.0065918,-0.0106812,-0.00558472,0.0131531,0.00308228,-0.00515747,-0.00576782,-0.00256348,0.0141602,0.0113525,-0.0127563,-0.0101929,0.00958252,0.0140991,6.10352e-05,-0.00958252,-0.0128174,-0.00738525,0.0135498,0.000335693,-0.0145569,-0.00793457,0.00817871,0.0182495,-0.00424194,-0.0185852,-0.00509644,0.00857544,0.00784302,-0.00424194,-0.00817871,-0.0138245,0.00128174,0.0124817,-0.00335693,-0.00839233,-0.0105896,-0.00650024,0.0103455,0.000732422,-0.0071106,-0.00878906,0.0159607,0.00442505,-0.00671387,0.00967407,-0.00106812,-0.00335693,0.00509644,-0.0015564,-0.00430298,-0.0038147,-0.00100708,-0.00891113,-0.0038147,0.0116882,-0.016571,-0.00341797,0.0062561,0.00363159,-6.10352e-05,-0.0104065,0.00564575,0.00308228,0.00592041,0.00222778,-0.00778198,0,-0.00891113,-0.00778198,0.000274658,-0.00128174,-0.00531006,-0.00939941,0.00610352,0.000549316,-0.00146484,-0.00195312,-0.00314331,0.0012207,-0.00189209,-0.00396729,0.00436401,0.00991821,-0.0065918,-0.0123596,0.00396729,0.0038147,0.00531006,-0.00738525,-0.00704956,-0.0012207,0.00537109,0.00167847,-0.0133667,0,-0.0015564,0.00665283,0.00598145,0.00610352,0.000671387,-0.0126953,-0.000671387,-0.000732422,0.0071106,-0.00772095,-0.0246277,-0.00222778,0.00543213,0.0103455,-0.000213623,-0.011261,-0.0062561,0.00234985,0.0119324,-0.00308228,-0.00341797,0.00256348,0.00195312,0.0104065,0.00765991,-0.00524902,-0.00772095,0.00799561,-0.00167847,-0.00497437,-0.00543213,-0.00396729,-0.0038147,-0.00442505,0.0083313,-0.00631714,-0.00650024,-0.00363159,0.000732422,0.015564,0.00665283,-0.00979614,-0.0157166,-0.00726318,0.0116882,0.0114136,-0.0141602,-0.0155029,-0.00430298,0.00793457,0.00228882,-0.00692749,-0.00390625,-0.0126953,0.00717163,0.011261,-0.00524902,-0.00289917,0.00335693,0.000335693,-0.00134277,0.0108032,-0.00463867,-0.00637817,0.00408936,0.000732422,0.00180054,0.00482178,0.00222778,-0.0118103,0.011261,0.00878906,-0.0137024,-0.00180054,0.0104675,-0.00289917,-0.00134277,0.00549316,-0.0038147,-0.000732422,0.0020752,-0.0032959,-0.00924683,-0.000946045,-0.00549316,-0.0132141,-0.00234985,-0.000335693,-0.00650024,-0.000946045,-0.00268555,-0.00732422,0.00973511,0.00891113,-0.0131531,-0.017395,-0.00289917,0.00924683,0.0050354,-0.00341797,-0.0158386,-0.00256348,0.0124817,0.00924683,-0.00784302,-0.00189209,0.0108032,-0.000335693,-0.00509644,-0.013031,0.00549316,0.0067749,-0.00442505,-0.00222778,-0.0118713,0.00643921,-0.00106812,0.000732422,-0.00952148,-0.0155029,-0.000335693,0.0017395,0.00991821,0.00100708,-0.00576782,0.0020752,0.00213623,0.00772095,-0.00167847,0.00134277,-0.00610352,-0.00805664,0.0139465,-0.0017395,-0.0067749,-0.00476074,0.00515747,0.00222778,-0.00323486,-0.00274658,-0.00665283,0.00497437,0.00692749,-0.00448608,-0.0108032,0.00302124,0.00375366,0.00314331,0.00463867,-0.0134888,-0.0138855,0.00442505,0.0138245,0.00280762,-0.0123596,-0.0173035,0.0012207,0.0195312,0.0132751,-0.0141602,-0.00979614,0.0135498,-0.00665283,-0.00161743,0.00845337,0.00241089,-0.0116882,-0.0102539,0.0136108,6.10352e-05,-0.000549316,0.00100708,-0.0114746,-0.00476074,0.0100098,0.00146484,-0.0116882,-0.00341797,-0.00128174,-0.0104675,0.00924683,0.0103455,-0.00592041,-0.00222778,-0.00891113,-0.000671387,0.00665283,0.0110779,-0.00637817,-0.0114746,0.00918579,-0.0115967,-0.00256348,0.0109253,-0.00314331,-0.0112,-0.0015564,0.00289917,-0.00671387,-0.00146484,0.0020752,0.000610352,-0.00750732,-0.0146179,-0.00564575,0.0151672,0.00946045,-0.0188599,-0.0114746,0.0143738,0.00900269,-0.0126038,-0.017395,-0.00289917,0.0151062,0.013092,-0.00396729,-0.020874,-0.00717163,0.0228271,0.0119324,-0.00991821,-0.0260925,-0.00582886,0.0190735,0.00817871,-0.00598145,-0.0232849,-0.000335693,0.0249634,0.00323486,-0.00665283,-0.00759888,0.00247192,0.00805664,0.00793457,-0.00778198,-0.00671387,0.00213623,-0.00134277,-0.00323486,-0.00665283,0.00201416,0.00268555,0.00430298,-0.000610352,-0.00643921,0.00106812,0.00341797,-0.00308228,-0.00973511,-0.00134277,0.0107422,0.0017395,-0.00375366,-0.00604248,0.00112915,0.00335693,-0.00128174,-0.00784302,-0.00924683,0.0100708,-0.00543213,-0.011261,-0.00234985,0.0115356,0.00866699,-0.00497437,-0.00643921,-0.0122681,0.000732422,0.0203247,0.00369263,-0.0115967,-0.00891113,-0.00765991,0.00012207,0.0118103,0.00128174,-0.013092,0.0067749,0.00991821,-0.0126953,-0.00180054,0.0032959,-0.0065918,-0.00698853,0.00570679,-0.00717163,-0.00805664,0.00637817,-0.00256348,-0.00241089,0.00497437,0,-0.000457764,0.0017395,-0.00872803,-0.000732422,0.00973511,0.000671387,-0.01651,0.00106812,0.00973511,-0.00335693,-0.00213623,0.000274658,0.00256348,-0.0015564,-0.00924683,0.000732422,0.00543213,-0.00570679,-0.00717163,-0.003479,0.00112915,-0.00241089,0.000396729,0.00698853,-0.00665283,-0.00564575,-0.00314331,0.0012207,0.012207,-0.00772095,-0.00515747,-0.00201416,-0.000396729,0.000732422,0.00274658,0.00952148,-0.00531006,-0.00268555,-0.00289917,-0.00732422,0.00088501,0.00390625,0.00100708,-0.00543213,-0.0131531,-0.00308228,-0.0050354,0.00906372,0.00314331,-0.000274658,-0.000274658,-0.0124817,0.0140381,0.00933838,-0.000457764,-0.00933838,-0.00280762,0.00564575,-0.0154419,0.0017395,0.00704956,0.00302124,-0.00631714,-0.0157166,0.00280762,0.012085,0.00704956,-0.0178528,-0.0123596,0.0100708,0.0125427,-0.00323486,-0.0190735,-0.00274658,0.00497437,0.00100708,-0.00952148,-0.0135498,0.00891113,0.00491333,-0.0151672,-0.0185852,-0.0100708,0.00531006,0.00247192,-0.0111389,-0.00857544,-0.00189209,0.0100708,0.00671387,-0.00189209,-0.00296021,-0.00952148,0.00424194,0.00442505,-0.0115356,-0.00924683,0.00442505,0.0181274,-0.000549316,-0.00967407,0.00415039,0.00408936,0.0143738,-0.000457764,-0.0180664,-0.00396729,0.0110168,0.00201416,-0.0157776,0.00363159,0.00924683,0.0017395,-0.000793457,-0.00811768,0.00167847,0.00570679,0.00134277,-0.0179749,-0.0133667,0.0154419,0.00991821,0.000549316,-0.00296021,-0.0103455,-0.00442505,0.00363159,0.0141602,-0.000274658,-0.00973511,0.00289917,-0.00738525,0.00323486,0.00985718,0.00827026,-0.00918579,-0.0146179,0.00195312,0.000396729,0.00772095,-0.00564575,-0.0187378,-0.00189209,0.011261,0.00289917,-0.00576782,-0.00576782,-0.0015564,0.00765991,0.0088501,0.00476074,0.00692749,0.00979614,0.00952148,0.00296021,0.00457764,0.00665283,-0.00515747,-0.0106812,0.00491333,0.00357056,-0.00631714,-0.00543213,-0.00692749,-0.000274658,0.000671387,0.00509644,-0.003479,-0.0131531,-0.00146484,0.00106812,0.00631714,-0.00314331,-0.0158386,-0.00698853,0.00531006,0.00396729,-0.00958252,-0.0020752,0.00772095,0.00234985,-0.00918579,-0.0101929,-0.0017395,-0.00402832,0.00222778,0.00234985,-0.0119324,-0.00363159,0.00637817,0.00765991,-0.00228882,-0.0085144,-0.00201416,6.10352e-05,0.0015564,-0.00704956,-0.0015564,0.00390625,0.00784302,0.00912476,0.00256348,0.000732422,0.00274658,0.00912476,-0.00234985,-0.0144348,-0.00744629,-0.0012207,-0.00582886,-0.0205383,-0.0131531,0.00671387,0.00280762,-0.00866699,-0.0114746,-0.00241089,0.00222778,-0.00241089,-0.0137024,-0.0157166,-0.000610352,0.00549316,-0.00726318,-0.00726318,0.0071106,0.00759888,0.00497437,0.0120239,0.00335693,-0.00424194,0.00201416,0.00390625,-0.000335693,0.00576782,0.00448608,0.0083313,0.0343628,0.0361633,0.0101929,0.00497437,0.024353,0.0229492,0.00296021,-0.0137024,-0.0180664,-0.0197449,-0.0180664,-0.00967407,-0.0141602,-0.00732422,-0.0106812,-0.0177917,-0.00592041,-0.00570679,-0.0100098,-0.0200806,-0.0218811,-0.0128784,-0.0127563,0.000610352,0.00335693,-0.00396729,-0.00369263,-0.00228882,0.0171814,0.0138245,-0.00213623,-0.00958252,-0.00979614,0.0137024,0.00482178,-0.012146,-0.00543213,0.00415039,0.0119324,0.0083313,0,0.00308228,0.00241089,-0.00234985,-0.0110168,-0.00476074,-0.00631714,-0.0253601,-0.00979614,0.00280762,0.00128174,-0.0103455,-0.0140381,-0.00811768,-0.00341797,0.0153809,0.00390625,-0.00570679,-0.00222778,-0.00549316,0.0085144,0.000732422,-0.00891113,-0.0179138,0.00012207,0.00497437,-0.00946045,0.0115356,0.00692749,-0.00543213,-0.00650024,0.00128174,0.00683594,-0.00564575,-0.000396729,-0.00598145,-0.00799561,0.003479,0.0125427,0.00274658,-0.0110779,-0.00274658,0.00436401,0.00631714,-0.00201416,-0.0083313,-0.0117493,-0.0133667,0.00598145,0.00247192,-0.00402832,0.00750732,0.00582886,0.00891113,0.000274658,-0.00134277,-0.00509644,-0.00363159,0.00201416,0.00436401,0.00924683,0.00100708,0.003479,0.0062561,0.011261,0.00161743,-0.015564,-0.0101929,0.0050354,0.0144958,-0.000610352,-0.0020752,0.0194702,0.0338135,0.0241699,0.000274658,-0.00341797,0.00958252,0.0100708,-0.00268555,-0.0148926,-0.0198669,-0.00979614,-0.00952148,-0.00750732,-0.00683594,-0.0106812,-0.00314331,-0.00531006,-0.00537109,0.0015564,-0.0138855,-0.0250244,-0.0101929,-0.00643921,-0.012146,-0.0114136,-0.00375366,-0.00509644,-0.012146,0.00100708,-0.00692749,-0.0102539,0.0105896,0.0065918,-0.00463867,-0.0148315,0.0020752,0.00564575,0.000549316,0.000274658,-0.0205994,-0.00140381,0.00491333,0.003479,-0.00302124,-0.017395,0.000335693,0.00469971,0.00991821,-0.00857544,-0.025238,-0.0158997,-0.00167847,0.0173035,-0.0038147,-0.0232239,-0.0163879,0.00570679,0.0171814,-0.00323486,-0.0221558,-0.0220947,-0.00302124,0.0118713,-0.00457764,-0.0140381,-0.00140381,0.0129395,0.00683594,0.00280762,0.00491333,0.0169067,0.00759888,-0.00900269,-0.0115967,0.00576782,0.0196533,0.00784302,0.00415039,-0.00564575,0.00524902,0.0134888,0.0100098,0.0113525,-0.00637817,-0.00598145,0.00106812,-0.00012207,-0.00631714,-0.0166321,0.00906372,0.0231628,0,-0.0195923,-0.0012207,0.0159607,-0.000274658,-0.00939941,-0.000671387,0.000396729,0.000549316,0.00784302,0.00140381,-0.00274658,0.0071106,0.0108032,-0.00268555,-0.00537109,0.00448608,0.0065918,0.0115356,0.00799561,-0.00302124,-0.00549316,0.00900269,0.0101929,-0.00228882,-0.00918579,-0.00424194,-0.00189209,-0.0103455,0.000335693,0.0050354,-0.00524902,-0.0167847,-0.00457764,0.0100098,0.00604248,0.000610352,-0.0123596,-0.00375366,0.00106812,-0.00375366,-0.0100708,-0.00146484,0.00610352,-0.00341797,-0.0205383,-0.0132751,-0.00357056,0.000335693,0.00262451,-0.00726318,-0.00570679,0.00167847,0.00357056,0.0175781,0.013092,-0.00012207,-0.00744629,-0.00106812,0.00180054,-0.00189209,0.00134277,-0.00912476,6.10352e-05,0.0015564,-0.000549316,0.00497437,0.0124207,0.00323486,-0.0110168,-0.00369263,-0.0088501,-0.0015564,0.0117493,-0.00549316,-0.0224915,-0.0108643,0.000457764,-0.00549316,-0.00106812,0.0020752,0.00262451,0.000610352,-0.000274658,-0.00195312,0.00784302,0.0127563,-0.00543213,-0.0107422,-0.0032959,0.00765991,0.00891113,0.00811768,-0.0012207,-0.003479,0.000396729,-0.000396729,-0.00616455,-0.00268555,0.00442505,-0.000396729,-0.0032959,-0.00704956,0.00167847,0.0124817,-0.00195312,-0.0139465,-0.0085144,0,0.00448608,0.00610352,0.000457764,-0.00857544,0.00088501,0.0100098,-0.00524902,-0.003479,0.0050354,0.00430298,0.00509644,-0.00234985,-0.0038147,-0.00726318,0.00839233,0.0125427,-0.00637817,-0.0102539,-0.00341797,0.00323486,0.0150452,0.0212708,0.00643921,-0.013092,-0.0187988,-0.0085144,-0.00491333,-0.0157776,-0.0305481,-0.0283813,-0.00784302,-0.00280762,-0.00570679,0.00302124,0.0163879,0.0105896,-0.00161743,0.00509644,0.0132141,0.0137024,0.00222778,-0.0050354,-0.00424194,0.00811768,0.00979614,-0.00106812,-0.00134277,-0.000274658,0.00805664,0.0120239,0.00683594,-0.0111389,-0.0183105,-0.000549316,0.00341797,-0.0145569,-0.012085,-0.00704956,-0.0106812,-0.0106812,-0.00457764,-0.00918579,-0.0147705,-0.0083313,-0.0020752,-0.0105286,-0.0185242,-0.0132141,-0.0015564,-0.00289917,-0.0108643,0.000793457,0.0218811,0.0171204,-0.00128174,-0.00592041,0.00341797,0.00704956,-0.000213623,-0.00537109,-0.00469971,-0.0071106,-0.0129395,-0.00985718,0.00390625,0.0107422,-0.000732422,-0.00765991,-0.0103455,-0.00396729,0.00128174,-0.00991821,-0.0119324,-0.00967407,-0.00564575,-0.0020752,-0.00335693,0.00476074,0.00357056,-0.00314331,0.00140381,0.00979614,0.0126953,-0.00161743,-0.00732422,0.0115967,0.0137024,-6.10352e-05,-0.00201416,0.013092,0.0138855,0.00671387,0.00991821,0.00878906,0.00497437,-0.0017395,-0.00375366,-0.000457764,-0.00631714,-0.00692749,-0.00650024,-0.00268555,-0.000274658,0.00106812,0.003479,-0.00369263,0.00375366,0.00341797,-0.00146484,-0.0038147,-0.00906372,-0.00180054,0.00335693,-0.00134277,-0.0105896,-0.000335693,0.0126953,0.00845337,0.00442505,0.00491333,-0.000732422,-0.00100708,0.00570679,-0.00201416,-0.0100708,-0.00772095,0.00280762,0.00872803,0.0102539,0.00415039,-0.00234985,0.00598145,0.00180054,-0.0114746,-0.00241089,-0.00778198,-0.0067749,-0.012085,-0.013092,-0.000793457,-0.000671387,-0.00363159,-0.0071106,0.00549316,0.00765991,0.00491333,-0.000213623,0.00201416,0.00341797,0.0071106,0.00146484,-0.00195312,0.0102539,0.00442505,-0.00363159,0.00946045,0.0144958,-0.0020752,-0.00637817,-0.00524902,-0.00308228,-0.00543213,0.00369263,-0.00448608,-0.0184021,-0.0147095,-0.00991821,-0.00491333,-0.00549316,-0.0104675,-0.0119324,-0.00778198,0.0071106,0.00912476,-0.0147095,-0.0246887,-0.00643921,0.0114136,0.00543213,-0.0062561,-0.00598145,0.00537109,0.0160522,0.00738525,-0.00228882,-0.00262451,0.00524902,0.00256348,-0.00765991,-0.00598145,0.000213623,0.00631714,0.00357056,-0.00759888,-0.00827026,0.00430298,0.00750732,-0.0106812,-0.0141602,-0.00448608,0.00262451,0.00570679,-0.00112915,-0.00827026,-0.00692749,0.000732422,-0.00476074,-0.00866699,-0.00335693,-0.00457764,-0.00683594,-0.00604248,0.000671387,0.00180054,0.00692749,0.00650024,0.00088501,0.00228882,0.00704956,0.00991821,0.00531006,-0.00857544,-0.00683594,0.00088501,0.0067749,-0.00396729,-0.00827026,0.0062561,0.00650024,-0.00476074,-0.00448608,0.00390625,0.00146484,-0.00262451,0.00106812,0.00195312,-0.00637817,-0.00341797,0.0129395,0.00845337,0.000213623,-0.00274658,-0.000793457,0.00610352,-0.003479,0.000610352,0.0105286,-0.00537109,-0.00866699,-0.00140381,0.00610352,-0.00167847,-0.0202026,-0.0141602,-0.0038147,0.000335693,-0.0138245,-0.0170593,0.000274658,0.00241089,-0.000457764,-0.00195312,0.00289917,0,-0.00726318,-0.0032959,-0.00228882,-0.00262451,-0.00213623,-0.000946045,0.000335693,0.00289917,0.00357056,0.000396729,0.0017395,0.00827026,0.000549316,-0.0065918,-0.000396729,0.00598145,-0.003479,-0.00845337,0.000213623,-0.00482178,0.00195312,0.00302124,-0.00296021,0.00341797,-0.0020752,-0.000732422,-0.00268555,-0.0038147,-0.0088501,-0.0124207,-0.00274658,0.000671387,0.00140381,-0.00088501,0.00100708,-0.0020752,-0.00106812,0.000396729,-0.00415039,-0.00476074,-0.00732422,-0.0050354,0.00698853,0.00335693,-0.00704956,-0.0038147,-0.00012207,0.00845337,0.00424194,-0.00576782,-0.011261,-0.00671387,0.0113525,0.0100708,0.00717163,0.00335693,0.00012207,0.0118103,0.0132751,0.0105896,0.00280762,0.00665283,0.0181274,0.0175781,0.00839233,0.00140381,-0.00088501,-0.00497437,-0.00750732,-0.00872803,-0.00357056,-0.00549316,-0.0249023,-0.0256348,-0.0175781,-0.00375366,0.0088501,-0.00772095,-0.0256348,-0.00732422,0.0146179,0.00582886,-0.0143738,-0.0160522,-0.0020752,0.00744629,0.00784302,-0.003479,-0.00302124,0.0115967,0.0119324,0.0102539,0.003479,-0.00692749,-0.00946045,0.000671387,0.0103455,0.00241089,0.000946045,-0.00234985,-0.00302124,0.00457764,0.0148926,0.00469971,-0.0157166,-0.0138855,-0.00924683,-0.00140381,-0.00912476,-0.0202637,-0.015564,-0.00912476,-0.00811768,-0.00637817,-0.00234985,-0.00558472,-0.0148926,-0.0162354,-0.00839233,-0.00482178,-0.00180054,0.00228882,-0.00598145,-0.0109253,-0.00375366,0.00616455,0.0118713,0.00549316,-0.00363159,0.00604248,0.00991821,0.00167847,-0.00906372,-0.00323486,0.0139465,0.0106812,0.00390625,-0.00262451,-0.000793457,0.00616455,0.00402832,-0.00256348,-0.0171814,-0.0157776,-0.00476074,0.00134277,0.00732422,-0.0050354,-0.00845337,0.00582886,0.00906372,-0.0012207,-0.0107422,-0.00256348,0.00576782,0.0017395,-0.00396729,-0.00112915,0.0062561,0.00442505,-0.000671387,-0.000213623,0.00228882,0.00161743,0.00448608,0.00598145,-0.00112915,-0.00146484,0.0127563,0.0139465,0.0050354,0.00201416,0.00537109,0.0112,0.00457764,0.000396729,-0.00308228,0.000946045,0.00817871,-0.00604248,-0.0116882,-0.00134277,0.00228882,-0.00112915,-0.0134888,-0.0201416,-0.0110168,0.000732422,-0.00314331,-0.0124817,-0.0132141,0.00448608,0.013031,0.0100098,0.00140381,-0.00274658,0.00222778,0.00637817,0.0114746,0.00146484,-0.00341797,-0.00201416,0.0065918,0.00845337,0.0012207,-0.00140381,0.000671387,0.00296021,-0.00436401,-0.0134888,-0.0150452,-0.0103455,-0.00665283,-0.00323486,-0.00704956,-0.00570679,-0.00442505,-0.0015564,0.00738525,0.00146484,-0.00805664,-0.011261,0,0.0100098,0.0115967,0.00778198,0.00671387,0.00811768,0.00784302,0.00643921,-0.0071106,-0.0101929,-0.00222778,-0.00726318,-0.013031,-0.00524902,0.00827026,0.00247192,-0.00750732,-0.00631714,0.00543213,0.0101929,-0.00704956,-0.0171814,-0.00958252,0.00793457,0.00570679,-0.00698853,-0.00692749,0.00012207,0.00308228,0.00906372,0.00509644,0.00314331,-0.000732422,0.00482178,0.020874,0.0162354,-0.0062561,-0.0150452,0.0012207,0.0177307,0.0119324,-0.0118713,-0.0236206,-0.0129395,0.00357056,0.00778198,-0.00476074,-0.016449,-0.0159607,-0.00289917,0.000671387,-0.0015564,-0.00973511,-0.0194702,-0.00637817,0.00146484,-0.00570679,-0.0118103,-0.00744629,0.000396729,0.00262451,0.000610352,-0.00390625,-0.00726318,-0.000213623,-0.00106812,-0.00906372,-0.0114746,-0.00765991,0.0015564,0.00469971,0.00531006,0.00390625,0.00939941,0.0100098,0.00704956,0.0138245,0.0185852,0.0138245,0.00128174,-0.00448608,-0.00396729,0.00369263,0.0017395,-0.0157166,-0.0246887,-0.0167236,-0.00643921,-0.00436401,-0.0138855,-0.0220947,-0.0142822,-0.00610352,-0.00280762,-0.00784302,-0.0117493,-0.0067749,0.00335693,0.00933838,0.0015564,-0.00665283,-0.00134277,0.00924683,0.00610352,0.00436401,0.00463867,0.0142212,0.0140381,0.0100708,0.0125427,0.0119324,0.00564575,0.00012207,0.00442505,0.00430298,-0.00430298,-0.00650024,-0.000396729,-0.00213623,-0.00692749,-0.000335693,-0.00222778,-0.00891113,-0.00631714,-0.00476074,-0.00564575,-0.00582886,-0.013031,-0.0114136,-0.0015564,0.00482178,-0.00408936,-0.011261,-0.00463867,-0.00134277,0.00213623,0.00402832,-0.00180054,-0.00363159,0.00698853,0.0132751,0.0115356,0.00357056,0.00268555,0.00509644,0.00939941,0.00866699,-0.00357056,-0.00906372,-0.00390625,0.00369263,0.00537109,0.00088501,-0.00598145,-0.00323486,0.00274658,0.0062561,0.00482178,-0.00558472,-0.0114746,-0.000549316,0.00811768,0.00314331,-0.00262451,-0.00469971,0.000732422,0.00692749,0.00509644,0.00189209,-0.0015564,0.000457764,0.00128174,0.0050354,0.00012207,-0.00128174,0.00469971,0.00308228,0.00390625,0.00189209,0.000671387,-0.00531006,-0.00750732,-0.00222778,-0.000335693,-0.00463867,-0.00491333,-0.00537109,-0.00598145,-0.00738525,-0.00704956,0.00134277,-0.0020752,-0.00979614,-0.0116882,-0.00280762,0.00604248,0.00558472,0.0015564,-0.003479,-0.00134277,0.00289917,0.00683594,0.00262451,-0.00408936,-0.0015564,0.00128174,0.00375366,0.00335693,0.00274658,6.10352e-05,-0.00509644,-0.00213623,0.00112915,-0.00469971,-0.0143738,-0.0135498,-0.00765991,-0.00924683,-0.0101929,-0.0102539,-0.0151062,-0.0168457,-0.0144958,-0.00778198,-0.00570679,-0.0083313,-0.00845337,-0.000732422,0.00415039,0.00213623,-0.00323486,-0.000732422,0.00402832,0.00195312,-0.000335693,-0.000274658,0.00671387,0.00457764,-0.0020752,0.00112915,0.00598145,0.00234985,0.00088501,0.00308228,-0.00012207,0.00268555,0.00415039,0.000946045,0.000274658,0.00012207,0.00302124,6.10352e-05,-0.003479,-0.00363159,-0.00469971,0.00222778,-0.000610352,-0.00463867,-0.00335693,-0.00491333,-0.00857544,-0.0038147,-0.00100708,-0.00469971,-0.00878906,-0.00558472,-0.00515747,-0.00531006,0.000274658,0.000335693,-0.00195312,-0.00241089,-0.000549316,0.00576782,0.0115967,0.00436401,0.00408936,0.0085144,0.00558472,0.00341797,6.10352e-05,0.00241089,-0.000946045,-0.003479,0.000213623,-0.00100708,-0.00241089,-0.00180054,0.00357056,0.00448608,0.00268555,-0.000793457,-0.00256348,0.00442505,0.00576782,0.00228882,-0.00457764,-0.0062561,-0.003479,-0.00274658,-0.00375366,-0.00531006,-0.00857544,-0.0038147,0.0015564,0.0020752,0.00256348,-0.0032959,-0.00402832,0.00576782,0.00973511,0.00671387,0.00274658,0.000946045,-0.00100708,0.00323486,0.00213623,0.00088501,-0.000610352,-0.00314331,-0.00180054,-0.00296021,-0.000396729,0.00213623,-0.00308228,-0.00323486,0.000946045,0.00088501,-0.00543213,-0.00323486,0.00128174,0.00100708,-0.00390625,-0.0065918,-0.003479,-0.000610352,-0.00375366,-0.00631714,-0.00112915,0.00112915,-0.00201416,-0.0032959,-0.00247192,-0.00213623,-0.00482178,-0.0038147,-0.00704956,-0.00985718,-0.00408936,-0.00335693,-0.00878906,-0.0117493,-0.00839233,-0.00671387,-0.0114746,-0.0116882,-0.0118103,-0.015564,-0.0118103,-0.00811768,-0.00582886,-0.00692749,-0.0100098,-0.00738525,-0.000457764,0.00222778,-0.00543213,-0.00576782,0.000274658,0.00469971,0.00228882,0.00201416,0.00234985,-0.000732422,0.00100708,0.00973511,0.00616455,0.00268555,0.00430298,0.00134277,0.00308228,0.00698853,0.00335693,-0.000671387,-0.00308228,-0.00112915,0.00430298,0.00811768,0.00537109,0.00643921,0.0083313,0.0108032,0.011261,0.00827026,0.0103455,0.0152893,0.0174561,0.0153809,0.0114136,0.0133667,0.0127563,0.0114746,0.0126953,0.0114136,0.00759888,0.00341797,0.00357056,0.00778198,0.00631714,0.00012207,-0.000457764,0.00436401,0.00637817,0.00335693,-0.00314331,-0.0088501,-0.00772095,-0.00598145,-0.00872803,-0.0115356,-0.0102539,-0.00692749,-0.00698853,-0.0085144,-0.00726318,-0.0105896,-0.0114746,-0.0149536,-0.0178528,-0.0204773,-0.019928,-0.0187378,-0.020813,-0.0221558,-0.0206604,-0.0218201,-0.0212097,-0.0193176,-0.0245667,-0.0299377,-0.0288696,-0.0248413,-0.0267639,-0.0292053,-0.0323486,-0.0283813,-0.0265198,-0.0314636,-0.0343628,-0.0344849,-0.0316772,-0.0316162,-0.028595,-0.0231628,-0.0220032,-0.0229492,-0.0148315,-0.00717163,-0.00241089,0.00363159,0.00515747,0.0111389,0.01651,0.0212097,0.02771,0.033905,0.0393982,0.0455627,0.0493164,0.0564575,0.0655823,0.0648193,0.0609436,0.0621338,0.0679932,0.0704651,0.0672607,0.0640259,0.0621338,0.0587769,0.0541077,0.0524902,0.0495911,0.0404663,0.0310059,0.0282593,0.0273132,0.0231018,0.0108643,0.00112915,-0.00234985,-0.00799561,-0.0132141,-0.020813,-0.0223389,-0.0196533,-0.021759,-0.0203247,-0.0228882,-0.0234985,-0.0202637,-0.017395,-0.0197449,-0.0241089,-0.020874,-0.0176392,-0.0200806,-0.0195923,-0.0190735,-0.0224915,-0.0269775,-0.0312195,-0.0376587,-0.0436096,-0.0499878,-0.0599365,-0.0657654,-0.073761,-0.0835571,-0.0855103,-0.0875854,-0.0956421,-0.0971069,-0.0922241,-0.0912781,-0.090332,-0.0855713,-0.0808716,-0.0794678,-0.0744934,-0.0623474,-0.049469,-0.0410767,-0.0359802,-0.0224304,-0.00463867,0.0112,0.0210876,0.0301208,0.045105,0.0641479,0.0791931,0.0918884,0.108459,0.121399,0.131409,0.141876,0.150391,0.14859,0.144897,0.144562,0.141266,0.127045,0.108398,0.0926819,0.0807495,0.066925,0.0491943,0.0288696,0.0158997,0.0102539,0.00274658,-0.00570679,-0.00958252,-0.0146179,-0.0187988,-0.0193176,-0.0194702,-0.020874,-0.0224915,-0.024292,-0.0238953,-0.0171204,-0.0101318,-0.000946045,0.00726318,0.0114746,0.0194702,0.0271912,0.0292053,0.0263062,0.027771,0.0289917,0.0244446,0.0128174,0.00213623,-0.00857544,-0.0241089,-0.0393372,-0.0603943,-0.0853577,-0.105103,-0.121338,-0.129395,-0.138123,-0.147186,-0.154022,-0.15625,-0.148193,-0.137512,-0.131958,-0.131134,-0.135895,-0.13208,-0.119659,-0.103638,-0.0920715,-0.0844421,-0.074646,-0.0556946,-0.0305481,-0.00289917,0.0167847,0.0357666,0.0568542,0.0808716,0.105713,0.130859,0.152618,0.166321,0.1745,0.182739,0.186981,0.188385,0.182343,0.167908,0.14563,0.124908,0.103546,0.0845642,0.0673218,0.0476379,0.0248413,0.00323486,-0.0105896,-0.0177307,-0.0255737,-0.036499,-0.046051,-0.0504761,-0.0489807,-0.0431519,-0.0371094,-0.0387878,-0.037323,-0.025177,-0.00799561,0.0065918,0.0149536,0.0248413,0.0400696,0.0588684,0.0740967,0.0784607,0.081604,0.0855103,0.0833435,0.0757141,0.0653076,0.0527649,0.0303955,0.00314331,-0.0267639,-0.0570374,-0.0837708,-0.105499,-0.126648,-0.149872,-0.166565,-0.17691,-0.181488,-0.177368,-0.176178,-0.174896,-0.169861,-0.166718,-0.162628,-0.147247,-0.13028,-0.12323,-0.123291,-0.115356,-0.092804,-0.0634155,-0.0377197,-0.0182495,0.00430298,0.0328064,0.0678406,0.0969238,0.124756,0.147858,0.164307,0.180664,0.195831,0.204285,0.198914,0.187042,0.173096,0.158783,0.140076,0.116638,0.0915527,0.0707397,0.0496521,0.0278625,0.0104065,-0.00289917,-0.0168457,-0.0323486,-0.046051,-0.0559692,-0.0592651,-0.0630188,-0.0666504,-0.0686646,-0.0599365,-0.0455627,-0.0369873,-0.0300598,-0.0191956,-0.000274658,0.0224304,0.0420227,0.0578613,0.0700073,0.0837708,0.100342,0.11496,0.118469,0.111755,0.102081,0.092804,0.0747681,0.0438232,0.00704956,-0.0262451,-0.0565186,-0.081665,-0.108398,-0.138458,-0.162689,-0.17337,-0.175568,-0.176697,-0.177368,-0.18161,-0.184845,-0.181885,-0.170593,-0.155853,-0.148193,-0.148132,-0.144684,-0.129791,-0.10611,-0.0832214,-0.0640869,-0.0461731,-0.020874,0.0162354,0.0544434,0.0884705,0.119141,0.14679,0.17041,0.194153,0.214355,0.224487,0.221802,0.212219,0.200592,0.183563,0.161407,0.133972,0.106445,0.0758972,0.0453796,0.0212097,0.00222778,-0.0178528,-0.0374451,-0.0533447,-0.0669861,-0.0744324,-0.0773926,-0.080658,-0.085907,-0.0838318,-0.0736389,-0.0646973,-0.057312,-0.0481873,-0.0309448,-0.0106812,0.00765991,0.0220032,0.0390015,0.057251,0.0762329,0.0914001,0.105164,0.115295,0.119476,0.114227,0.104706,0.0874634,0.060791,0.0350342,0.00683594,-0.0233459,-0.0588684,-0.0928955,-0.120605,-0.143494,-0.158936,-0.170746,-0.178314,-0.185181,-0.192078,-0.194214,-0.184509,-0.170746,-0.162476,-0.159729,-0.153351,-0.139679,-0.118256,-0.0953064,-0.0768433,-0.0603333,-0.0383911,-0.0105896,0.024292,0.0603943,0.0914001,0.119202,0.146301,0.177704,0.20639,0.229126,0.240753,0.240936,0.233704,0.224243,0.209808,0.188263,0.159393,0.124847,0.0895996,0.0561218,0.028656,0.00396729,-0.0276489,-0.058136,-0.0809326,-0.0913391,-0.0985107,-0.106506,-0.110077,-0.109802,-0.105103,-0.0940247,-0.0784607,-0.0626221,-0.048645,-0.0350342,-0.0185242,0.00234985,0.0255737,0.0453796,0.0598755,0.0735474,0.0890503,0.0987854,0.102966,0.103973,0.101807,0.090332,0.0730896,0.0539551,0.0328064,0.00866699,-0.0191956,-0.0520935,-0.0875854,-0.114899,-0.133545,-0.147919,-0.164825,-0.183411,-0.199921,-0.209595,-0.205841,-0.193085,-0.18457,-0.184082,-0.181274,-0.162811,-0.131805,-0.101135,-0.0794678,-0.0618896,-0.0384521,-0.00515747,0.0318909,0.0673828,0.100006,0.126587,0.152893,0.181824,0.210602,0.233551,0.244507,0.246246,0.243164,0.239655,0.22934,0.210602,0.18576,0.155243,0.122742,0.0887146,0.0559082,0.0254211,-0.0100098,-0.0445557,-0.0720825,-0.0970459,-0.114563,-0.128113,-0.135986,-0.13623,-0.131409,-0.124573,-0.112274,-0.0922852,-0.0700073,-0.0500793,-0.0301208,-0.00878906,0.0142822,0.0387878,0.0589905,0.0783081,0.0906067,0.0977173,0.101624,0.103088,0.0985107,0.086853,0.0663757,0.0454407,0.0256348,0.00415039,-0.0216064,-0.0487366,-0.0730896,-0.0967102,-0.118042,-0.134705,-0.149994,-0.170197,-0.186768,-0.195709,-0.196777,-0.195648,-0.194305,-0.193085,-0.186981,-0.172485,-0.15155,-0.127991,-0.103149,-0.0787964,-0.0510864,-0.0170593,0.0210876,0.0600586,0.0969849,0.130615,0.161346,0.192413,0.221954,0.242676,0.2565,0.261078,0.261688,0.255493,0.242615,0.225037,0.203766,0.175629,0.142761,0.107666,0.0725403,0.0401917,0.00570679,-0.0261841,-0.0574646,-0.0856934,-0.108337,-0.123352,-0.131195,-0.13443,-0.136322,-0.137787,-0.129517,-0.112823,-0.0941467,-0.0752258,-0.0531616,-0.0297852,-0.00750732,0.0149536,0.040741,0.0632324,0.0789185,0.0883789,0.0963745,0.0986023,0.0958252,0.0874634,0.0704041,0.049469,0.028595,0.00564575,-0.0189209,-0.0471191,-0.0717468,-0.094696,-0.114563,-0.134155,-0.150665,-0.165833,-0.179932,-0.189453,-0.192474,-0.190887,-0.190399,-0.189453,-0.181885,-0.167053,-0.146973,-0.128601,-0.111603,-0.0875244,-0.0553589,-0.0200806,0.0151672,0.0516663,0.0877075,0.121613,0.155579,0.192017,0.224487,0.245758,0.255768,0.262207,0.268738,0.269257,0.260681,0.240326,0.214569,0.18576,0.154694,0.121338,0.0828247,0.0440979,0.00515747,-0.0325623,-0.0654907,-0.0925598,-0.115234,-0.131195,-0.142334,-0.148315,-0.147919,-0.14035,-0.125763,-0.108856,-0.0926819,-0.0740356,-0.0528259,-0.0275269,-0.000213623,0.0228882,0.0411987,0.0571899,0.0726929,0.0845032,0.0916138,0.0906677,0.085022,0.0744324,0.0603333,0.0437012,0.0256958,0.00390625,-0.0184631,-0.0457764,-0.0683899,-0.0877075,-0.107574,-0.127106,-0.145294,-0.160858,-0.1716,-0.178986,-0.183167,-0.186981,-0.187317,-0.183228,-0.173157,-0.160278,-0.145782,-0.128174,-0.105316,-0.0775146,-0.0499268,-0.0192566,0.0184631,0.0556335,0.0917969,0.126099,0.161133,0.190063,0.217194,0.240204,0.253693,0.258789,0.25946,0.256165,0.246429,0.225647,0.19986,0.168671,0.135315,0.100525,0.0636292,0.0253601,-0.0133667,-0.0492554,-0.0779114,-0.102692,-0.124298,-0.139587,-0.147369,-0.151001,-0.14798,-0.139526,-0.126312,-0.106445,-0.0838928,-0.0634155,-0.0391846,-0.0119324,0.016449,0.040741,0.0606689,0.0760498,0.0899353,0.103821,0.111267,0.109985,0.102631,0.0872498,0.0716858,0.0534363,0.0314026,0.00497437,-0.0232849,-0.0518799,-0.0785828,-0.100525,-0.12262,-0.145569,-0.165771,-0.179138,-0.185974,-0.189667,-0.191284,-0.188782,-0.181,-0.166901,-0.149139,-0.129059,-0.10733,-0.0854492,-0.061554,-0.0350952,-0.00772095,0.019989,0.0502625,0.0794678,0.106903,0.132812,0.158325,0.179657,0.197052,0.207458,0.213501,0.212616,0.209381,0.199402,0.184357,0.165649,0.141357,0.112091,0.081665,0.0522156,0.0200806,-0.0153809,-0.0493164,-0.0773926,-0.101868,-0.119202,-0.133636,-0.142151,-0.142334,-0.134491,-0.123962,-0.110596,-0.0909424,-0.0687256,-0.0420227,-0.015625,0.0112,0.0353088,0.0602722,0.0849609,0.10556,0.119995,0.12677,0.128448,0.128601,0.123016,0.107178,0.0869141,0.0641479,0.0414124,0.0158386,-0.0131531,-0.0422668,-0.0706177,-0.0915527,-0.111145,-0.130005,-0.148132,-0.159729,-0.167511,-0.168579,-0.167572,-0.163208,-0.15509,-0.142273,-0.123291,-0.102753,-0.0827637,-0.0619507,-0.0385132,-0.0153809,0.0085144,0.0285339,0.0480652,0.065918,0.0839539,0.0969849,0.108856,0.117645,0.122894,0.124573,0.124084,0.12149,0.116791,0.106171,0.0944824,0.0809326,0.0647583,0.0473022,0.028595,0.00933838,-0.0105286,-0.027771,-0.0424194,-0.0546875,-0.0671692,-0.0762939,-0.0786438,-0.0749817,-0.0704651,-0.0644226,-0.0553589,-0.041748,-0.025238,-0.00772095,0.00878906,0.0246277,0.0423584,0.057312,0.0682678,0.0771179,0.0838318,0.0885925,0.089325,0.0869141,0.0808716,0.0724182,0.0627441,0.0472412,0.0323486,0.0145569,-0.0038147,-0.0209961,-0.0367737,-0.0535583,-0.0681152,-0.0787354,-0.0877991,-0.094635,-0.0986633,-0.0999451,-0.0984497,-0.0962524,-0.0916748,-0.082489,-0.0711975,-0.0601196,-0.0490723,-0.038269,-0.0260315,-0.015625,-0.0038147,0.00610352,0.0150452,0.0233459,0.0285339,0.0333557,0.0369263,0.0385132,0.0397949,0.0403442,0.0400085,0.0367737,0.0326233,0.0289917,0.0273743,0.0238342,0.0187378,0.0133667,0.00946045,0.00817871,0.00515747,0.00396729,0.00302124,0.00128174,0.00247192,0.00302124,0.00402832,0.00558472,0.0071106,0.00793457,0.0100708,0.0111389,0.0136108,0.0151062,0.0140381,0.0129395,0.0139465,0.0136108,0.0133667,0.0115356,0.0107422,0.00772095,0.0062561,0.00430298,0.00189209,0.00134277,-0.000549316,-0.00262451,-0.00363159,-0.00616455,-0.00891113,-0.00906372,-0.0109253,-0.0152283,-0.0191956,-0.0198669,-0.0209351,-0.0224304,-0.0245667,-0.0265198,-0.0279846,-0.0298767,-0.0312805,-0.0313416,-0.03302,-0.0340881,-0.0365906,-0.0359802,-0.0357666,-0.0357056,-0.0360413,-0.0359192,-0.0351562,-0.0325623,-0.0275879,-0.0247803,-0.020752,-0.0181274,-0.011261,-0.00430298,0.00308228,0.00958252,0.0162964,0.0231628,0.0289917,0.0355835,0.0415344,0.046051,0.0501404,0.0523376,0.0531006,0.053009,0.0516663,0.0493164,0.0458984,0.0414734,0.0357666,0.0294495,0.0212708,0.0129395,0.00839233,0.00274658,-0.00424194,-0.0115967,-0.016571,-0.0191956,-0.0194702,-0.0205994,-0.0240173,-0.0226746,-0.0200806,-0.0178528,-0.0138855,-0.0104675,-0.00549316,-0.00296021,0.0017395,0.00537109,0.0104675,0.0126953,0.0140381,0.0128784,0.013092,0.0101929,0.00732422,0.00323486,-0.00195312,-0.00759888,-0.0142212,-0.0202026,-0.0250854,-0.029541,-0.0354919,-0.0400696,-0.0437622,-0.046051,-0.0467834,-0.0461731,-0.0461121,-0.0452271,-0.0431519,-0.0412903,-0.0377808,-0.0318909,-0.0279236,-0.0226135,-0.0160522,-0.011261,-0.00402832,0.00314331,0.0102539,0.0161133,0.0214233,0.0255737,0.0313416,0.0369873,0.0406799,0.0432739,0.0456238,0.0459595,0.0479126,0.0480652,0.0477905,0.0447083,0.0409546,0.0367126,0.0342407,0.0310059,0.0263062,0.0212097,0.0146179,0.00817871,0.003479,-0.00180054,-0.0062561,-0.00912476,-0.0131531,-0.0149536,-0.015625,-0.0162354,-0.0163879,-0.0148926,-0.0135498,-0.0134277,-0.0111389,-0.00891113,-0.00558472,-0.00012207,0.00390625,0.00424194,0.00515747,0.0065918,0.00805664,0.00866699,0.00671387,0.0050354,-6.10352e-05,-0.00180054,-0.00543213,-0.0101318,-0.015564,-0.0226135,-0.0282593,-0.0310059,-0.0349731,-0.0400696,-0.0439453,-0.0456238,-0.0447693,-0.0446167,-0.0436096,-0.0427551,-0.0402832,-0.0391846,-0.0344849,-0.028656,-0.0227661,-0.0175171,-0.0129395,-0.00637817,0.00289917,0.0110779,0.0189819,0.0254211,0.0314636,0.0378418,0.0447083,0.0506592,0.0549011,0.0569763,0.0579224,0.0578003,0.0561218,0.0541077,0.0498047,0.0457153,0.0396118,0.0303955,0.0235596,0.0181885,0.0138855,0.00524902,-0.00222778,-0.00906372,-0.013092,-0.0151672,-0.0162964,-0.0175781,-0.0224304,-0.0270996,-0.0279846,-0.0189209,-0.0085144,-0.00799561,-0.015564,-0.0127563,-0.000671387,0.00933838,0.0143738,0.0126953,0.00857544,0.00939941,0.0149536,0.0194092,0.0163879,0.00991821,-0.00140381,-0.00610352,-0.0101318,-0.0162964,-0.0249023,-0.0361633,-0.0473938,-0.0545654,-0.057312,-0.061676,-0.0634155,-0.0630798,-0.0606079,-0.0617371,-0.0587769,-0.0508728,-0.0397949,-0.0309448,-0.0263672,-0.0234375,-0.0171204,-0.00939941,-0.0017395,0.00671387,0.0129395,0.0146179,0.0187988,0.0270386,0.0367126,0.0475769,0.0555725,0.057312,0.0577087,0.0636902,0.072876,0.0785217,0.0767822,0.0710144,0.0644836,0.0578613,0.0522766,0.0443726,0.0347595,0.0241089,0.0141602,0.00750732,0.00195312,-0.00213623,-0.00180054,-0.00396729,-0.00683594,-0.00772095,-0.00726318,-0.00759888,-0.00704956,-0.00692749,-0.00592041,-0.0088501,-0.0144348,-0.0175171,-0.0182495,-0.0171204,-0.0173035,-0.0214844,-0.0222168,-0.0198059,-0.0140381,-0.00878906,-0.00531006,-0.00564575,-0.0050354,-0.00827026,-0.0157776,-0.0218811,-0.0296021,-0.0392761,-0.0559082,-0.0752869,-0.0917358,-0.103882,-0.110321,-0.115021,-0.11972,-0.121063,-0.116974,-0.105499,-0.0899353,-0.0725403,-0.0578003,-0.0427551,-0.0284424,-0.0135498,0.0020752,0.0161133,0.02771,0.0350952,0.0410156,0.0465698,0.0533447,0.0617981,0.0692749,0.078186,0.0875854,0.0940857,0.102203,0.113617,0.124084,0.128845,0.126984,0.120209,0.113434,0.105499,0.0955811,0.0789795,0.0594482,0.0401306,0.0202026,0.00476074,-0.00799561,-0.0163879,-0.0235596,-0.0285339,-0.0317383,-0.0301208,-0.0226746,-0.0138855,-0.00509644,-0.00106812,0.00222778,0.00778198,0.0146179,0.0194702,0.0214844,0.0200806,0.0192566,0.0177917,0.0151062,0.00991821,0.00213623,-0.00637817,-0.0191345,-0.0367126,-0.0545654,-0.0711365,-0.0913391,-0.11618,-0.140137,-0.157379,-0.166229,-0.168671,-0.170135,-0.169128,-0.159058,-0.142822,-0.126648,-0.112671,-0.0977783,-0.0812073,-0.0619507,-0.046051,-0.0332947,-0.0231628,-0.0119324,0.000335693,0.0106812,0.0192566,0.0302124,0.0447693,0.0606079,0.077301,0.0932312,0.110077,0.128845,0.145966,0.157532,0.162872,0.160858,0.154755,0.145782,0.133972,0.118256,0.0977783,0.0757751,0.0559692,0.0403442,0.0287781,0.020813,0.0161743,0.0150452,0.0141602,0.0188599,0.024292,0.0291138,0.0326843,0.0351562,0.0348206,0.0310669,0.0291138,0.0272522,0.024292,0.0157776,0.00952148,0.00436401,0.00375366,0.00469971,0.00262451,-0.00180054,-0.00296021,-0.0050354,-0.00958252,-0.0185852,-0.0343018,-0.0540161,-0.0777893,-0.100464,-0.12088,-0.138794,-0.156097,-0.171692,-0.181061,-0.181549,-0.175781,-0.164642,-0.152557,-0.14035,-0.126923,-0.109863,-0.0892639,-0.0706177,-0.0570374,-0.0454407,-0.0371704,-0.028717,-0.020813,-0.013092,-0.00161743,0.0103455,0.0223389,0.0354919,0.052948,0.0744324,0.0974426,0.11618,0.131134,0.144165,0.155914,0.165222,0.16806,0.165649,0.156036,0.143829,0.130188,0.113098,0.0948181,0.0756226,0.0583801,0.0401306,0.0232239,0.0103455,0.00448608,0.00247192,-0.000671387,-0.00497437,-0.0050354,0.0015564,0.00732422,0.0110168,0.013031,0.0140381,0.0152283,0.0181885,0.0202637,0.0190735,0.0175781,0.0162964,0.0155029,0.0105896,0.00335693,-0.00448608,-0.0143738,-0.0318909,-0.0518188,-0.0696106,-0.0795898,-0.0881348,-0.0990601,-0.111938,-0.123077,-0.126984,-0.124023,-0.120392,-0.121277,-0.127716,-0.129791,-0.125305,-0.117584,-0.111328,-0.108246,-0.103882,-0.0966492,-0.0885925,-0.0801392,-0.0661621,-0.0478516,-0.0265808,-0.00967407,0.00973511,0.0324707,0.060791,0.0887146,0.111938,0.12851,0.140015,0.151276,0.163208,0.171814,0.169128,0.161957,0.153168,0.143768,0.130066,0.113678,0.0991821,0.0829468,0.0632935,0.0402832,0.0228271,0.0123596,0.00195312,-0.0117493,-0.0241699,-0.0323486,-0.0340271,-0.0308838,-0.0282593,-0.0270996,-0.0247803,-0.0185242,-0.0110168,-0.00448608,0.00280762,0.0118713,0.0212708,0.0264282,0.024231,0.0214233,0.020813,0.0148926,-0.00180054,-0.0219421,-0.0386658,-0.0483093,-0.0576477,-0.0705261,-0.0838928,-0.0921326,-0.0948181,-0.094696,-0.0973816,-0.100281,-0.106842,-0.108002,-0.107513,-0.109131,-0.111816,-0.112152,-0.111328,-0.112274,-0.11261,-0.107513,-0.0956421,-0.0804138,-0.0634155,-0.0465698,-0.0235596,0.0067749,0.0392761,0.0714111,0.0991821,0.120483,0.141602,0.160461,0.176361,0.183014,0.181335,0.177521,0.16745,0.155426,0.143097,0.125702,0.107056,0.0855103,0.0614624,0.0401917,0.0240173,0.00967407,-0.00604248,-0.0202637,-0.0335693,-0.0405273,-0.0418701,-0.0410156,-0.0401306,-0.0395203,-0.0376587,-0.0328064,-0.0256348,-0.0158386,-0.00692749,0.00375366,0.0127563,0.0177307,0.0228271,0.029541,0.0294495,0.0210876,0.00759888,-0.00570679,-0.0161133,-0.0259094,-0.038269,-0.0532227,-0.0661011,-0.0751038,-0.0799255,-0.0841675,-0.089325,-0.0963135,-0.101074,-0.10437,-0.107117,-0.110199,-0.111267,-0.112091,-0.117584,-0.119812,-0.120148,-0.115112,-0.104889,-0.0924072,-0.0791931,-0.0643005,-0.0426025,-0.0135498,0.0187988,0.0499878,0.0795288,0.103302,0.12677,0.152008,0.171021,0.183624,0.185089,0.182495,0.176453,0.167511,0.154694,0.135834,0.115234,0.0903931,0.065033,0.0421448,0.0228271,0.00558472,-0.0115356,-0.0265198,-0.0374451,-0.0414734,-0.0410767,-0.0378418,-0.0355835,-0.0326233,-0.0263062,-0.0176392,-0.0100098,-0.000793457,0.0107422,0.0211487,0.0275269,0.028717,0.0310059,0.0332947,0.0338135,0.0252991,0.0100098,-0.00442505,-0.0152283,-0.0248413,-0.0344238,-0.0471802,-0.0595398,-0.0674438,-0.0726318,-0.0765686,-0.0820007,-0.0878601,-0.0939026,-0.0971069,-0.102692,-0.110535,-0.114502,-0.115906,-0.119598,-0.126587,-0.13147,-0.129181,-0.121399,-0.109192,-0.0962524,-0.081543,-0.061615,-0.0337524,-0.00140381,0.0336304,0.065033,0.0907288,0.113007,0.136566,0.158844,0.173767,0.179932,0.17746,0.169464,0.159454,0.14859,0.134033,0.111206,0.0861206,0.0622253,0.0430908,0.0266418,0.0100708,-0.0050354,-0.0147705,-0.0234375,-0.0283203,-0.0309448,-0.0284424,-0.024292,-0.019989,-0.0184021,-0.01651,-0.0114136,-0.00213623,0.00900269,0.0160522,0.0192566,0.0228882,0.0285339,0.0375977,0.0400696,0.0357056,0.0292664,0.0227661,0.0144348,0.00732422,-0.00180054,-0.0133667,-0.025238,-0.0347595,-0.0445557,-0.0548401,-0.0640259,-0.0735474,-0.0817566,-0.0933533,-0.105164,-0.114563,-0.121063,-0.126831,-0.134369,-0.141876,-0.144897,-0.14563,-0.14093,-0.132019,-0.119659,-0.104218,-0.0846252,-0.0603943,-0.0313416,0.00241089,0.0343018,0.0619507,0.0877991,0.112274,0.136993,0.156921,0.168671,0.172485,0.169922,0.165771,0.158661,0.146301,0.126831,0.10321,0.0783997,0.0579224,0.0371704,0.0140381,-0.0065918,-0.0231628,-0.0357056,-0.0465698,-0.0543518,-0.0574646,-0.0559082,-0.0498047,-0.0434265,-0.0358276,-0.0259705,-0.0103455,0.00744629,0.0236816,0.036377,0.0474548,0.0626221,0.0758362,0.0831604,0.0822754,0.0791321,0.0736389,0.0644226,0.0511475,0.0368347,0.0209961,0.00524902,-0.00918579,-0.0214233,-0.0344238,-0.0483093,-0.0631409,-0.0771179,-0.0881958,-0.101807,-0.115234,-0.126648,-0.134552,-0.141083,-0.147247,-0.152161,-0.152008,-0.148804,-0.137726,-0.124298,-0.109314,-0.0939636,-0.0748291,-0.0487366,-0.0198059,0.00811768,0.0341492,0.0565796,0.078186,0.0994568,0.11731,0.12912,0.133423,0.133545,0.124969,0.116241,0.102753,0.0864563,0.0614624,0.0339661,0.00698853,-0.0203247,-0.0477905,-0.0763855,-0.0983887,-0.113098,-0.120941,-0.126984,-0.123627,-0.106232,-0.0758362,-0.0423584,-0.0157166,0.0105286,0.0475159,0.0918884,0.126648,0.14563,0.162964,0.181732,0.196106,0.192749,0.17569,0.15979,0.144958,0.119934,0.0873108,0.057251,0.0359192,0.0185242,0.000457764,-0.0215454,-0.0397949,-0.0476379,-0.0491333,-0.0488586,-0.0505371,-0.053009,-0.053772,-0.0508728,-0.0476379,-0.0470581,-0.048584,-0.0516663,-0.0583191,-0.0640259,-0.0683899,-0.0690002,-0.0683289,-0.0717468,-0.0761108,-0.0769043,-0.072876,-0.0654297,-0.0555115,-0.0483093,-0.0411377,-0.0350952,-0.0305481,-0.0259094,-0.0226746,-0.020874,-0.0223389,-0.0245667,-0.0270386,-0.0285339,-0.0270386,-0.0257568,-0.0237732,-0.021759,-0.0195312,-0.0152283,-0.00698853,0.00692749,0.0215454,0.0320129,0.0409546,0.04953,0.06073,0.0704041,0.0771179,0.0821533,0.0861816,0.0879822,0.0879822,0.0869141,0.0867004,0.0846252,0.0794678,0.0719604,0.0658264,0.061615,0.0590515,0.0541687,0.0473938,0.040863,0.0355835,0.0303345,0.0240173,0.0187378,0.0148926,0.0101318,0.00469971,0.00134277,-0.00112915,-0.00241089,-0.00357056,-0.00531006,-0.00839233,-0.0108643,-0.0124817,-0.0152283,-0.0171814,-0.0226135,-0.0269775,-0.033905,-0.0396729,-0.0472412,-0.0532837,-0.0603333,-0.0674438,-0.0752258,-0.0830078,-0.0885925,-0.0919495,-0.094574,-0.0969849,-0.0977173,-0.094635,-0.0899353,-0.0839539,-0.0777893,-0.0706177,-0.0632935,-0.0556946,-0.0472412,-0.0389404,-0.029541,-0.0216675,-0.0132751,-0.00436401,0.0038147,0.0132141,0.0202637,0.0281067,0.0349731,0.0426025,0.0492554,0.053833,0.0588684,0.0639648,0.0667114,0.066925,0.0665894,0.0655823,0.0654907,0.0622864,0.0589905,0.0540161,0.0500793,0.0455627,0.041626,0.036377,0.0315552,0.0260925,0.0209351,0.0167847,0.0128174,0.00793457,0.00537109,0.00302124,0.00100708,-0.000671387,-0.00180054,-0.00289917,-0.00296021,-0.00296021,-0.00369263,-0.00442505,-0.00598145,-0.00698853,-0.00924683,-0.0115356,-0.0144348,-0.017395,-0.0210876,-0.0263062,-0.0306091,-0.0350342,-0.0411987,-0.0465088,-0.0518188,-0.056366,-0.0622253,-0.0657043,-0.0691833,-0.0701904,-0.0711365,-0.0716858,-0.0711975,-0.0690002,-0.0648193,-0.0613403,-0.0561218,-0.0497437,-0.0414734,-0.0311279,-0.0219421,-0.0113525,-0.000946045,0.0100098,0.0210876,0.0307922,0.0396729,0.0487366,0.0546265,0.0601196,0.0643616,0.0687256,0.0697937,0.0696716,0.0684509,0.0662537,0.0637512,0.0604553,0.057251,0.0535583,0.0509949,0.0469666,0.0433655,0.0404053,0.0383301,0.0349121,0.0331421,0.028717,0.0260315,0.0223389,0.0192566,0.0157166,0.0118103,0.00973511,0.00509644,0.000549316,-0.00308228,-0.00558472,-0.00918579,-0.0120239,-0.0155029,-0.0182495,-0.0204163,-0.0223389,-0.0257568,-0.0282593,-0.0311279,-0.0344238,-0.0384521,-0.0418091,-0.0448303,-0.0480652,-0.0518188,-0.0544434,-0.0579834,-0.0602112,-0.0622253,-0.0626221,-0.0632935,-0.0638123,-0.0630798,-0.0614014,-0.0580444,-0.0543518,-0.0505371,-0.0458984,-0.040802,-0.0334167,-0.0273132,-0.0195923,-0.0116882,-0.00314331,0.0065918,0.0150452,0.0237732,0.0311279,0.0401306,0.0467224,0.0539551,0.0598755,0.0655823,0.0696716,0.0724182,0.0733643,0.0726318,0.0718079,0.0706177,0.0679932,0.0644226,0.0610046,0.0554504,0.0514221,0.0463867,0.0415344,0.0354309,0.0299377,0.0238953,0.0195923,0.0149536,0.0102539,0.00482178,0.0012207,-0.00302124,-0.00698853,-0.00912476,-0.012085,-0.0140381,-0.0151672,-0.0167847,-0.0173035,-0.0175781,-0.0191345,-0.0198669,-0.021759,-0.0232239,-0.0257568,-0.0291138,-0.0322266,-0.036377,-0.0401917,-0.0450439,-0.0492554,-0.0542908,-0.058136,-0.0620728,-0.0647583,-0.0664368,-0.0678406,-0.0677795,-0.0677795,-0.0649719,-0.0622864,-0.0587158,-0.0541687,-0.0479126,-0.0404663,-0.0328979,-0.0260315,-0.0172424,-0.00845337,0.000335693,0.00866699,0.0182495,0.0260925,0.0350952,0.0419312,0.0478516,0.0551758,0.0606079,0.0634155,0.0661621,0.0684509,0.0691833,0.0684509,0.0654907,0.0631409,0.0597229,0.0566406,0.049469,0.0438232,0.038269,0.033905,0.0268555,0.0222168,0.0182495,0.0149536,0.0116882,0.00765991,0.00515747,0.0038147,0.00112915,-0.00201416,-0.00463867,-0.00463867,-0.00683594,-0.00738525,-0.00857544,-0.00817871,-0.00845337,-0.00692749,-0.00772095,-0.00744629,-0.00671387,-0.00570679,-0.00765991,-0.00967407,-0.0140991,-0.0179138,-0.0229492,-0.0278625,-0.0345764,-0.0390015,-0.0433655,-0.0484009,-0.0516052,-0.0539551,-0.0551147,-0.0568542,-0.0565796,-0.0557861,-0.053833,-0.0511475,-0.0473022,-0.0428162,-0.0378418,-0.03302,-0.0283813,-0.0234375,-0.0184631,-0.0118103,-0.00524902,0.00222778,0.0062561,0.0108643,0.0173035,0.024292,0.0293274,0.0333557,0.0378418,0.0410156,0.0434265,0.0477905,0.0509949,0.0540161,0.0545654,0.0521545,0.0522156,0.0526123,0.0515442,0.0498657,0.0474548,0.0438232,0.0401917,0.0370483,0.0365906,0.0336914,0.0292664,0.0213318,0.0157166,0.0120239,0.00765991,-0.000396729,-0.0062561,-0.00912476,-0.0157776,-0.0200806,-0.0202026,-0.0186462,-0.0171814,-0.0178528,-0.0170593,-0.0142212,-0.0120239,-0.0124207,-0.0137634,-0.015564,-0.0178528,-0.020813,-0.0248413,-0.0293274,-0.0339661,-0.0390015,-0.040802,-0.0440369,-0.0450439,-0.044281,-0.0437012,-0.041626,-0.0383301,-0.0339661,-0.0296021,-0.0270996,-0.0234985,-0.0225525,-0.0214844,-0.0214844,-0.0231018,-0.0228882,-0.0234375,-0.0230103,-0.0205383,-0.0170593,-0.0128784,-0.00793457,-0.00128174,0.0067749,0.0134277,0.0195923,0.0270386,0.0316772,0.0401306,0.0467224,0.0489197,0.0512085,0.0512085,0.0491333,0.0512085,0.0535583,0.0498657,0.0422058,0.0422058,0.041748,0.0393372,0.0355835,0.0315552,0.0262451,0.0177917,0.0124207,0.00811768,-0.00201416,-0.0109253,-0.0177917,-0.0236816,-0.0302124,-0.0376587,-0.0365906,-0.0306702,-0.0297852,-0.0258484,-0.0173035,-0.00918579,-0.00558472,-0.00375366,-0.00146484,-0.000335693,-0.00241089,-0.00531006,-0.00750732,-0.0115356,-0.0157166,-0.0196533,-0.0222168,-0.0260315,-0.0275269,-0.0281067,-0.0268555,-0.0278625,-0.025177,-0.0202026,-0.0167236,-0.0174561,-0.0177917,-0.0175781,-0.0204773,-0.0229492,-0.0226746,-0.0214844,-0.0128784,-0.00424194,-0.000396729,0.00463867,0.0100708,0.0198059,0.0300598,0.0303345,0.0309448,0.0351562,0.0401306,0.0509338,0.0541077,0.0418091,0.0246887,0.0177917,0.0258484,0.0330811,0.0278625,0.012085,0.00933838,0.0223389,0.0361633,0.0411987,0.0361633,0.0256958,0.0179138,0.0219421,0.021759,0.0152893,0.00106812,-0.0180664,-0.0388489,-0.0519409,-0.0592041,-0.065979,-0.0689392,-0.0654297,-0.0628967,-0.0543518,-0.0355835,-0.0195923,-0.00643921,0.00134277,0.00430298,0.00570679,0.00805664,0.00805664,0.00576782,-6.10352e-05,-0.0134277,-0.0270996,-0.036438,-0.0383301,-0.0363159,-0.0328064,-0.0274353,-0.019989,-0.00985718,0.00692749,0.024231,0.0357056,0.0414124,0.0405273,0.0369873,0.0336914,0.0323486,0.0262451,0.0186462,0.00827026,-0.00228882,-0.00637817,-0.00564575,-0.00088501,0.00637817,0.0135498,0.0191345,0.0256348,0.0314636,0.0388489,0.0411987,0.0377808,0.0293884,0.0157776,0.00262451,-0.00933838,-0.019928,-0.0240173,-0.0194092,-0.0173035,-0.0174561,-0.0169678,-0.00906372,0.00213623,0.00543213,-0.0065918,-0.0221558,-0.0328064,-0.0477905,-0.0711975,-0.0915527,-0.102875,-0.108734,-0.107513,-0.103424,-0.094696,-0.0748901,-0.0491943,-0.0299988,-0.0141602,-0.00408936,0.00262451,0.0114136,0.0184631,0.0173035,0.00878906,0.00189209,-0.00289917,-0.0123596,-0.0204773,-0.0205383,-0.0120239,-0.00180054,0.00396729,0.0115967,0.0340271,0.0646362,0.0865784,0.0958252,0.0979309,0.0976562,0.0939026,0.085968,0.0724182,0.0587769,0.0489197,0.0457153,0.0410767,0.0418091,0.0475769,0.0584412,0.0691223,0.0712891,0.0666504,0.0598755,0.0575867,0.0533447,0.041687,0.0231628,0.0050354,-0.0119324,-0.0288696,-0.0428772,-0.0527649,-0.0595398,-0.0606689,-0.0557861,-0.0512695,-0.0444336,-0.0357056,-0.025238,-0.0212708,-0.0260315,-0.0435486,-0.0640259,-0.0734253,-0.0779114,-0.0849609,-0.0913391,-0.0933533,-0.0883179,-0.0739746,-0.0567017,-0.0426025,-0.0303345,-0.019928,-0.01651,-0.0196533,-0.0250854,-0.0293274,-0.0361023,-0.0456238,-0.0584412,-0.0720215,-0.0775146,-0.0757141,-0.0677795,-0.0568542,-0.0434265,-0.028656,-0.0105896,0.0161133,0.0457764,0.0708618,0.0926208,0.108002,0.119537,0.127319,0.133087,0.131622,0.132416,0.133484,0.130798,0.122559,0.116119,0.115692,0.115021,0.106384,0.0852356,0.0587769,0.0386047,0.0238342,0.0065918,-0.0161743,-0.0359802,-0.0482483,-0.0546265,-0.0639038,-0.0712891,-0.0710144,-0.0583801,-0.0430298,-0.0365906,-0.0317993,-0.0204163,-0.00482178,0.00469971,0.00189209,-0.0147705,-0.0291138,-0.0330811,-0.0380554,-0.0446167,-0.0511475,-0.0461731,-0.0365906,-0.0269165,-0.0189209,-0.0138855,-0.0065918,-0.00256348,-0.00991821,-0.0279846,-0.0489197,-0.0656433,-0.0812683,-0.0977173,-0.116241,-0.133698,-0.140198,-0.137054,-0.128845,-0.11618,-0.0954285,-0.0701294,-0.0426941,-0.0111389,0.0238953,0.0597839,0.0924072,0.115173,0.132141,0.146698,0.161865,0.169861,0.171204,0.165314,0.160522,0.155579,0.149139,0.133881,0.114227,0.0976562,0.078186,0.0508118,0.0205383,-0.0071106,-0.0282593,-0.0457153,-0.065094,-0.0870361,-0.0987244,-0.0971069,-0.0942993,-0.0956421,-0.0922241,-0.0808716,-0.0583801,-0.0369263,-0.0239563,-0.0138855,0.00396729,0.0193176,0.024231,0.0172424,0.0088501,0.00946045,0.0163879,0.0163879,0.00598145,0.00476074,0.0146179,0.0241699,0.0224304,0.0139465,0.00323486,-0.00531006,-0.0185242,-0.0415344,-0.0711975,-0.0953674,-0.110535,-0.123291,-0.138794,-0.153168,-0.157654,-0.146637,-0.130676,-0.116699,-0.100128,-0.0716858,-0.0340881,0.00442505,0.040802,0.077179,0.11261,0.141754,0.159851,0.172607,0.186096,0.197998,0.200928,0.19397,0.179993,0.167664,0.158203,0.142548,0.113281,0.0769653,0.044281,0.01651,-0.0127563,-0.0438843,-0.0710144,-0.0892029,-0.10376,-0.11853,-0.129059,-0.127991,-0.119934,-0.110474,-0.100281,-0.0885925,-0.0740967,-0.0512085,-0.0270996,-0.0101318,0.00189209,0.00918579,0.0151672,0.0210876,0.0258484,0.0293884,0.0322266,0.0346985,0.0325623,0.0319519,0.0390015,0.0437622,0.0403442,0.0307922,0.0151062,-0.00314331,-0.0213318,-0.041626,-0.0700684,-0.0977783,-0.121552,-0.139191,-0.151947,-0.159332,-0.159393,-0.15155,-0.137726,-0.123077,-0.104645,-0.0753784,-0.0381775,-0.00180054,0.0354919,0.0686646,0.101288,0.131744,0.157104,0.176117,0.189209,0.200256,0.203278,0.202087,0.196716,0.187256,0.174225,0.155853,0.126099,0.0903931,0.0555115,0.0228271,-0.00891113,-0.041687,-0.0743103,-0.100189,-0.11731,-0.131287,-0.141479,-0.142273,-0.137115,-0.12793,-0.118195,-0.103546,-0.0832214,-0.0580444,-0.033905,-0.0134277,0.00167847,0.0137024,0.0245056,0.0351562,0.0434265,0.0467834,0.0487976,0.0503235,0.0508728,0.0533447,0.0571899,0.056366,0.0489197,0.037323,0.0236816,0.00732422,-0.0106812,-0.0337524,-0.0596008,-0.0839539,-0.108002,-0.128784,-0.147583,-0.161743,-0.169922,-0.169464,-0.162354,-0.149872,-0.132874,-0.107117,-0.0757751,-0.0422668,-0.00744629,0.0287781,0.0628052,0.0942993,0.12262,0.142822,0.162476,0.178986,0.188782,0.19046,0.187775,0.180603,0.17276,0.157776,0.131958,0.0985107,0.0635681,0.0291138,-0.00515747,-0.0404663,-0.0771179,-0.107452,-0.130188,-0.146454,-0.155518,-0.157867,-0.150146,-0.137451,-0.120941,-0.101624,-0.0755615,-0.0473022,-0.0179749,0.0088501,0.0322876,0.0513306,0.0672607,0.0791931,0.085907,0.085022,0.0843506,0.0873718,0.0841675,0.0732117,0.0643616,0.0630188,0.0587158,0.0481262,0.0326233,0.0203247,0.00939941,-0.00357056,-0.019989,-0.0383911,-0.053833,-0.0696716,-0.0845032,-0.0949097,-0.103424,-0.111755,-0.114105,-0.109467,-0.105042,-0.0970459,-0.0829468,-0.0673828,-0.0505371,-0.0333557,-0.0173035,-0.000946045,0.0142822,0.0270386,0.0422058,0.0576477,0.0690002,0.0745544,0.0765686,0.0738831,0.0670471,0.0540161,0.0323486,0.00476074,-0.0228882,-0.0454407,-0.0632324,-0.0769653,-0.0916138,-0.103363,-0.106323,-0.0922241,-0.0675049,-0.0458374,-0.0308838,-0.00704956,0.0279846,0.0634155,0.086853,0.0993958,0.106781,0.112488,0.110931,0.102631,0.0950317,0.0879822,0.0767822,0.0609436,0.0497437,0.0433655,0.0457153,0.0503235,0.0534973,0.0564575,0.0620117,0.0730896,0.0828247,0.0871277,0.0820923,0.0745544,0.0644836,0.0505981,0.0330811,0.0161743,-0.00201416,-0.0216064,-0.0426025,-0.0590515,-0.0720825,-0.0768433,-0.0776367,-0.0748901,-0.0697327,-0.061615,-0.0501404,-0.0375977,-0.0255127,-0.0181885,-0.0161133,-0.0147095,-0.0144958,-0.0150452,-0.0171204,-0.0232849,-0.0310059,-0.0414124,-0.0505981,-0.06073,-0.0693359,-0.0756226,-0.0809937,-0.0808716,-0.0778503,-0.0718079,-0.0634766,-0.0498047,-0.0360413,-0.0244446,-0.0138855,-0.00201416,0.00827026,0.0167847,0.0214844,0.0258484,0.0263672,0.0270996,0.025238,0.0228882,0.019989,0.019928,0.0200806,0.0198669,0.021759,0.0262451,0.0325623,0.0405273,0.0472412,0.0515442,0.0568542,0.058197,0.0569763,0.0547791,0.048584,0.0397339,0.0297852,0.0197449,0.00967407,-0.000610352,-0.00985718,-0.0183105,-0.0257568,-0.0294495,-0.0308838,-0.0289307,-0.0268555,-0.0222778,-0.0162354,-0.0120239,-0.0088501,-0.0067749,-0.00482178,-0.00616455,-0.0114136,-0.0172424,-0.0233459,-0.0273132,-0.0334167,-0.0377808,-0.041748,-0.0448303,-0.0446167,-0.0435486,-0.0433655,-0.0420837,-0.0403442,-0.0371094,-0.0349731,-0.0328064,-0.0303345,-0.0271912,-0.024292,-0.0220947,-0.0209351,-0.0179138,-0.0154419,-0.0140991,-0.0115356,-0.0083313,-0.00457764,0.000671387,0.00827026,0.0138855,0.019989,0.0271912,0.0351562,0.0414734,0.0475159,0.0521545,0.0575256,0.0617981,0.0644836,0.0664978,0.0664368,0.0635681,0.0601196,0.0536804,0.0465698,0.037323,0.0290527,0.0200806,0.012085,0.00482178,-0.00180054,-0.00582886,-0.00946045,-0.0113525,-0.0131531,-0.0134277,-0.0136108,-0.0125427,-0.0112,-0.0113525,-0.0102539,-0.0104065,-0.0116882,-0.0151672,-0.0198669,-0.0256958,-0.0307922,-0.0357056,-0.0385132,-0.0426025,-0.0433655,-0.0430298,-0.040802,-0.0393982,-0.0371094,-0.0354919,-0.0315552,-0.029541,-0.0282593,-0.0282593,-0.0273743,-0.0270386,-0.0275879,-0.0291138,-0.0292053,-0.0285339,-0.0272522,-0.0263062,-0.0232849,-0.0198669,-0.0144958,-0.0106812,-0.0050354,0.0017395,0.0100098,0.0172424,0.0238342,0.0305481,0.0352478,0.0404053,0.0448914,0.049408,0.053833,0.0585938,0.0620117,0.065979,0.069397,0.0684509,0.0674438,0.065155,0.0614624,0.0545654,0.0480652,0.0393982,0.0317383,0.0253601,0.0177917,0.0110168,0.00531006,-0.00088501,-0.00549316,-0.00772095,-0.00912476,-0.0105286,-0.0107422,-0.0118103,-0.0129395,-0.0138245,-0.0127563,-0.0157166,-0.0193176,-0.024231,-0.0281067,-0.0303345,-0.0325623,-0.0349121,-0.0371704,-0.038269,-0.0377197,-0.0380554,-0.0367126,-0.036377,-0.0353088,-0.0349731,-0.0356445,-0.0361633,-0.0383301,-0.0391846,-0.0403442,-0.0426941,-0.0462952,-0.0475769,-0.0496521,-0.0484009,-0.0458374,-0.0447083,-0.041687,-0.0358276,-0.0289307,-0.0209351,-0.012146,-0.00296021,0.00576782,0.0137634,0.0222168,0.0302734,0.0371094,0.0432129,0.0491943,0.0541077,0.0597839,0.0638123,0.0664978,0.0688477,0.0683289,0.0679321,0.0657654,0.0619507,0.0578003,0.0534973,0.0477905,0.0420837,0.0346375,0.028595,0.0221558,0.0167236,0.0104675,0.00549316,0.00180054,-0.00134277,-0.00289917,-0.00604248,-0.00759888,-0.00973511,-0.0113525,-0.0136108,-0.015564,-0.0191956,-0.0205994,-0.0229492,-0.0241699,-0.0259094,-0.0260925,-0.0259705,-0.0245056,-0.0249023,-0.0257568,-0.0273743,-0.0278625,-0.0293274,-0.0314636,-0.0337524,-0.0374451,-0.0391235,-0.040802,-0.0428162,-0.0445557,-0.0449524,-0.0453796,-0.0458374,-0.0437012,-0.0420227,-0.0383301,-0.0351562,-0.0312195,-0.0260925,-0.0224304,-0.0178528,-0.0126953,-0.00744629,-0.00268555,0.00256348,0.00817871,0.0153809,0.0224304,0.0287781,0.0358276,0.041626,0.0479126,0.0527649,0.0554504,0.0561218,0.0557861,0.053772,0.0508728,0.0473022,0.0444336,0.0404053,0.0361633,0.0310669,0.0275269,0.025238,0.0241089,0.0225525,0.0218201,0.0220947,0.0235596,0.0258484,0.0267029,0.0265808,0.0250244,0.0222778,0.0179749,0.013092,0.00872803,0.00375366,-0.00213623,-0.00616455,-0.0112,-0.015625,-0.0187988,-0.0209961,-0.0238342,-0.025238,-0.0279846,-0.0297241,-0.0322266,-0.0331421,-0.0345764,-0.036499,-0.0390625,-0.041748,-0.0433655,-0.0454407,-0.046051,-0.0479736,-0.0472412,-0.0462341,-0.0453796,-0.0422058,-0.0377808,-0.0326233,-0.0262451,-0.0166321,-0.00805664,0.00476074,0.0179749,0.0255127,0.02771,0.0302734,0.0314026,0.0297241,0.0218201,0.011261,0.000213623,-0.00448608,-0.00979614,-0.0146179,-0.0203247,-0.0210876,-0.0150452,-0.00247192,0.00958252,0.0202026,0.029541,0.040863,0.0551758,0.0627441,0.0622864,0.0574646,0.0541077,0.0475769,0.041626,0.0344238,0.0259705,0.0172424,0.0111389,0.00564575,0.00363159,0.00509644,0.00268555,0.000610352,0.00396729,0.00906372,0.00991821,0.0110168,0.00857544,0.00296021,-0.000274658,-0.00524902,-0.0129395,-0.020752,-0.0283203,-0.0357056,-0.0427551,-0.0479736,-0.0515442,-0.0523376,-0.0523376,-0.0527649,-0.0484619,-0.0434265,-0.0359192,-0.0302124,-0.025238,-0.0205994,-0.0147705,-0.0124207,-0.0124207,-0.0126953,-0.0137634,-0.0143738,-0.0157776,-0.0195312,-0.0237732,-0.0247803,-0.0262451,-0.0267639,-0.0202026,-0.0147095,-0.0135498,-0.00369263,0.00558472,0.00973511,0.0136108,0.0177917,0.0162964,0.0122681,0.0214844,0.024292,0.0191956,0.019928,0.0194702,0.0198059,0.0155029,0.0129395,0.0105286,0.0137634,0.0116882,0.00759888,0.0131531,0.0188599,0.0244446,0.0222168,0.0269775,0.0298767,0.0298767,0.0307922,0.0266418,0.0198059,0.0154419,0.0118103,0.00592041,-0.00241089,-0.00744629,-0.00549316,-0.00476074,-0.00180054,-0.000274658,0.00448608,0.0105286,0.0142212,0.0134888,0.00683594,0.00531006,0.00222778,-0.00363159,-0.0147705,-0.0280457,-0.0351562,-0.0394592,-0.0447083,-0.0527649,-0.057373,-0.0510864,-0.0457764,-0.0403442,-0.0322876,-0.0232239,-0.0124817,0.000610352,0.00738525,0.00576782,0.00811768,0.0155029,0.0180664,0.00939941,0.0050354,6.10352e-05,-0.00140381,-0.0101318,-0.0142822,-0.00933838,-0.00543213,0.000335693,0.00732422,0.0220947,0.0304565,0.0231018,0.0205383,0.0234375,0.0269775,0.0267029,0.0083313,-0.00967407,-0.019928,-0.0226746,-0.0264282,-0.0320129,-0.0311279,-0.0328979,-0.0238342,-0.0102539,0.00363159,0.0128174,0.0222168,0.0312805,0.0317383,0.0346375,0.0266418,0.0168457,0.0153809,0.0101318,0.0065918,0.000946045,-0.000793457,-0.00106812,0.000457764,0.00436401,0.00738525,0.0107422,0.0144348,0.0158386,0.0181885,0.0174561,0.0112,0.00247192,-0.00408936,-0.00946045,-0.0158997,-0.0195312,-0.0209961,-0.0202026,-0.0118103,-0.00592041,-0.00570679,-0.00698853,-0.0020752,0.00408936,0.00759888,0.00827026,0.0126038,0.0176392,0.0206604,0.0169678,0.00952148,0.00543213,0.00665283,0.00933838,0.00357056,-0.00375366,0.00314331,0.0180664,0.0228271,0.00912476,-0.00375366,-0.00778198,-0.00524902,-0.012146,-0.027771,-0.0455017,-0.0634766,-0.0724182,-0.078064,-0.0881958,-0.0910034,-0.085907,-0.0707397,-0.0473022,-0.0260315,-0.0017395,0.0238342,0.0404663,0.04422,0.0368347,0.0330811,0.0298767,0.0228882,0.0146179,0.00509644,-0.000274658,-0.00167847,0.00161743,0.00665283,0.0150452,0.0187378,0.024353,0.0379333,0.049469,0.0533447,0.0489807,0.044281,0.036499,0.0229492,0.00793457,-0.00134277,-0.000396729,0.00469971,0.00759888,0.0104065,0.0152893,0.0230103,0.0332947,0.0419312,0.0459595,0.0477295,0.0482483,0.052002,0.0488586,0.0369263,0.0190735,-6.10352e-05,-0.0120239,-0.0131531,-0.0171204,-0.0330811,-0.0500793,-0.0509949,-0.0360413,-0.0315552,-0.045166,-0.0602722,-0.0693359,-0.0704041,-0.082489,-0.115784,-0.148712,-0.151825,-0.128662,-0.106842,-0.0987854,-0.0848389,-0.0601196,-0.0226746,0.0119324,0.0368347,0.0490723,0.0469055,0.0429382,0.0388489,0.0334778,0.012207,-0.0067749,-0.0100098,-0.00912476,-0.016571,-0.0269775,-0.0250244,-0.013092,-0.00106812,0.00280762,0.00637817,0.0209961,0.0387268,0.0507507,0.0553589,0.0559692,0.053772,0.0554504,0.0606079,0.0619507,0.0649719,0.0776367,0.0933533,0.105164,0.113342,0.120056,0.130463,0.141357,0.137909,0.116028,0.0913391,0.0726318,0.0505981,0.0239563,-0.00323486,-0.0289917,-0.0514221,-0.0698547,-0.0817566,-0.091217,-0.0930176,-0.0915527,-0.0851135,-0.0786438,-0.0779724,-0.0830994,-0.0865173,-0.0908203,-0.104645,-0.119476,-0.127594,-0.126587,-0.115112,-0.0925598,-0.0700073,-0.0457764,-0.0137634,0.0194092,0.0428772,0.0561829,0.0593872,0.0531006,0.0405273,0.0181274,-0.0125427,-0.0437622,-0.0641479,-0.0770569,-0.0915527,-0.108185,-0.115448,-0.110931,-0.0968323,-0.0841064,-0.0724182,-0.0502625,-0.0167847,0.0126953,0.0332947,0.0516663,0.0716858,0.0913391,0.111481,0.127106,0.139862,0.153961,0.172485,0.188934,0.201538,0.209137,0.211609,0.207306,0.191223,0.165649,0.136658,0.103821,0.0671692,0.0231018,-0.0167847,-0.0518188,-0.0812073,-0.108337,-0.128113,-0.13858,-0.14563,-0.14328,-0.129944,-0.112488,-0.0961609,-0.081665,-0.0714722,-0.0641479,-0.0571289,-0.0522766,-0.0483093,-0.0411987,-0.0297241,-0.0175171,-0.00308228,0.0138245,0.0324097,0.0508118,0.065033,0.0696716,0.0624695,0.0495911,0.0296631,0.00213623,-0.036438,-0.0747681,-0.104828,-0.127838,-0.149933,-0.169403,-0.176636,-0.174622,-0.165375,-0.155579,-0.142426,-0.119812,-0.0855103,-0.0497437,-0.0149536,0.0204163,0.0525513,0.0843506,0.115631,0.145782,0.173553,0.205627,0.231476,0.24295,0.249115,0.257996,0.259247,0.244019,0.214844,0.175568,0.134766,0.0944824,0.0469055,-0.00457764,-0.0456238,-0.0753784,-0.107239,-0.139069,-0.15918,-0.166656,-0.162476,-0.156372,-0.156097,-0.147247,-0.117371,-0.085907,-0.0671692,-0.0532227,-0.0365906,-0.016449,0.00524902,0.017395,0.0241089,0.040863,0.0680542,0.0842896,0.091156,0.0949707,0.0965881,0.101959,0.0993958,0.0734863,0.0351562,0.00112915,-0.0292053,-0.0669861,-0.107788,-0.146454,-0.173706,-0.187592,-0.192291,-0.199921,-0.201935,-0.189453,-0.168518,-0.144287,-0.120667,-0.0930176,-0.0578613,-0.0106812,0.0315552,0.06604,0.093811,0.12851,0.165833,0.199066,0.224976,0.237915,0.245361,0.254364,0.255096,0.240417,0.215088,0.185425,0.149719,0.108246,0.0602722,0.00564575,-0.0390625,-0.0710144,-0.100403,-0.138336,-0.167114,-0.178314,-0.17691,-0.169586,-0.16449,-0.158386,-0.139252,-0.104553,-0.078186,-0.0567017,-0.0313416,-0.00531006,0.0167236,0.0362549,0.0478516,0.0557861,0.0739746,0.0905457,0.091217,0.0885315,0.09375,0.0975037,0.0940857,0.0833435,0.0630798,0.0375061,0.0100708,-0.0273743,-0.0696716,-0.101013,-0.128845,-0.157379,-0.177582,-0.188202,-0.193542,-0.189545,-0.172821,-0.159515,-0.144348,-0.121674,-0.0915527,-0.0595398,-0.0241089,0.0117493,0.0461121,0.078064,0.104034,0.126312,0.150269,0.176025,0.194977,0.20343,0.201263,0.200256,0.195892,0.18335,0.160461,0.126831,0.091156,0.058136,0.0206604,-0.0219421,-0.0612793,-0.093689,-0.127167,-0.155029,-0.175842,-0.186188,-0.181732,-0.162628,-0.138062,-0.115509,-0.086853,-0.0531006,-0.020813,0.0108032,0.0328064,0.0434265,0.0579834,0.0741577,0.0883789,0.0960388,0.0969238,0.0924683,0.0848389,0.0812073,0.0721436,0.0637512,0.057312,0.0496521,0.0396729,0.0292053,0.0141602,-0.00408936,-0.0169678,-0.0322266,-0.0513306,-0.0709534,-0.0838318,-0.0922852,-0.100342,-0.110077,-0.116913,-0.117126,-0.111084,-0.103638,-0.0920715,-0.0739746,-0.0518188,-0.0274353,-0.00558472,0.0148926,0.0323486,0.0508118,0.0679932,0.0798645,0.0856934,0.0842285,0.0830078,0.0814819,0.0734253,0.0563049,0.032135,0.00463867,-0.028656,-0.0618896,-0.086853,-0.0996094,-0.10202,-0.105377,-0.108185,-0.101868,-0.0802002,-0.0526733,-0.0331421,-0.0187378,0.0032959,0.037262,0.0686035,0.0856934,0.0955811,0.10202,0.103882,0.0951538,0.0813293,0.0697327,0.0632935,0.0548401,0.0418701,0.0317993,0.0299988,0.0341492,0.0466309,0.0617981,0.0724792,0.0823364,0.0919495,0.0973816,0.0983887,0.0908203,0.0760498,0.0551147,0.0328979,0.0100098,-0.0128784,-0.0343018,-0.0535583,-0.070282,-0.0803223,-0.0874634,-0.0888062,-0.0820007,-0.0737,-0.0633545,-0.0489807,-0.0332947,-0.0192566,-0.00704956,0.00088501,0.00201416,-0.00604248,-0.0172424,-0.0297241,-0.040741,-0.053894,-0.0661621,-0.073761,-0.078186,-0.0803223,-0.0809326,-0.0795288,-0.0700073,-0.0574646,-0.0432129,-0.0289307,-0.0141602,0.000793457,0.0118103,0.0202026,0.025177,0.0270996,0.0269775,0.0245056,0.0198059,0.0144348,0.011261,0.00918579,0.00906372,0.0100098,0.0118103,0.0152893,0.0218201,0.0288696,0.0356445,0.0434875,0.0499878,0.0577087,0.065094,0.0690002,0.0709534,0.070282,0.0657654,0.058136,0.0488586,0.0397949,0.0293274,0.0198059,0.012207,0.0062561,0.00106812,-0.000793457,-0.00268555,-0.00369263,-0.00268555,-0.0032959,-0.00363159,-0.00604248,-0.00891113,-0.0144958,-0.0197449,-0.027771,-0.0389404,-0.0498657,-0.0603333,-0.0704041,-0.0813293,-0.0885925,-0.0919495,-0.0905457,-0.0855713,-0.0786438,-0.0693359,-0.0575867,-0.0461121,-0.0343628,-0.025238,-0.0191345,-0.0158997,-0.0140991,-0.0137024,-0.016571,-0.0192566,-0.0223389,-0.024292,-0.0245667,-0.0238342,-0.0225525,-0.0172424,-0.0108643,-0.00314331,0.00476074,0.0142212,0.0236206,0.0346375,0.0440979,0.0519409,0.0560303,0.0585327,0.0596619,0.0597839,0.0592651,0.0590515,0.0583191,0.0576477,0.0567932,0.0571899,0.0556335,0.0534363,0.0513306,0.0498657,0.0498657,0.0467224,0.0420837,0.0380554,0.0340881,0.0281067,0.0209351,0.0105896,0.00146484,-0.00491333,-0.0136108,-0.0222778,-0.0308838,-0.0376587,-0.0432129,-0.0478516,-0.0523376,-0.0559082,-0.0592041,-0.061554,-0.0619507,-0.0623474,-0.0614624,-0.0582581,-0.0526123,-0.0472412,-0.040863,-0.0363159,-0.0308838,-0.0270996,-0.0256348,-0.0256348,-0.0269775,-0.0273743,-0.028595,-0.0284424,-0.0292664,-0.0302734,-0.0292664,-0.0258484,-0.0234375,-0.0191345,-0.0137024,-0.0083313,-0.00201416,0.00515747,0.0109253,0.0161133,0.0216064,0.0270386,0.0326843,0.0357056,0.0375061,0.0414734,0.0457764,0.04953,0.0547791,0.0589294,0.0640869,0.0686035,0.0726318,0.0749817,0.0753784,0.0745544,0.0714722,0.0686035,0.0630188,0.0556946,0.0471802,0.0397339,0.0302734,0.0184631,0.00839233,-0.000793457,-0.00946045,-0.0181274,-0.0245056,-0.0296021,-0.0326843,-0.0346375,-0.0346375,-0.0353699,-0.0353699,-0.0383301,-0.040741,-0.0440979,-0.0467224,-0.0507507,-0.0526733,-0.0532837,-0.0528259,-0.0511475,-0.0500793,-0.0475159,-0.045166,-0.0430298,-0.0402832,-0.0381165,-0.0377808,-0.0353088,-0.0317383,-0.0313416,-0.0312805,-0.032135,-0.0311279,-0.0299988,-0.0285339,-0.0283203,-0.0257568,-0.0238953,-0.0187988,-0.0151062,-0.00918579,-0.00222778,0.00598145,0.0139465,0.0218201,0.0302734,0.0369263,0.0428162,0.049408,0.0555725,0.0622864,0.0661621,0.0691223,0.0733643,0.0744324,0.0733032,0.0701294,0.066925,0.0634155,0.0579224,0.052948,0.0462952,0.039856,0.0334778,0.0267029,0.0189819,0.0116882,0.0050354,-0.000793457,-0.00564575,-0.00973511,-0.0124817,-0.0144958,-0.0163879,-0.0186462,-0.0215454,-0.0238342,-0.0274353,-0.0317993,-0.0355835,-0.0399475,-0.0435486,-0.0448303,-0.0471802,-0.0487976,-0.0487976,-0.0477905,-0.0467834,-0.0454407,-0.0426025,-0.0406799,-0.0384521,-0.0359802,-0.0340881,-0.0335693,-0.0324097,-0.0309448,-0.0301208,-0.0284424,-0.0269775,-0.0263672,-0.0234985,-0.0225525,-0.0197449,-0.0175171,-0.011261,-0.00683594,-0.000549316,0.00442505,0.0106812,0.0155029,0.0205994,0.025238,0.0306091,0.0346375,0.0392761,0.0428772,0.0472412,0.050415,0.0526733,0.0531616,0.0525513,0.0515442,0.0487976,0.0461121,0.0427551,0.0374451,0.0333557,0.0303345,0.0275269,0.0240173,0.0218811,0.0203247,0.0190735,0.0169067,0.0143738,0.012146,0.0115967,0.0114746,0.0107422,0.00918579,0.00692749,0.00167847,-0.00234985,-0.00912476,-0.0148926,-0.0204773,-0.0204163,-0.0125427,-0.00906372,-0.0139465,-0.0144348,-0.0142822,-0.0125427,-0.0178528,-0.0279846,-0.0387878,-0.046051,-0.0473938,-0.0555115,-0.0606079,-0.0605469,-0.0632935,-0.0567932,-0.0491943,-0.0426941,-0.0346985,-0.0227661,-0.0109253,-0.00241089,0.0067749,0.0146179,0.016449,0.0205994,0.0223389,0.0173035,0.0114136,0.00402832,0.000274658,-0.00234985,-0.00469971,-0.00857544,-0.00872803,-0.00463867,0.000671387,0.00827026,0.0226135,0.0362549,0.0434265,0.0413513,0.0409546,0.0438232,0.0434265,0.0355835,0.0222778,0.0107422,0.00845337,0.00979614,0.00637817,0.00509644,0.00531006,0.00637817,0.0117493,0.0162354,0.019989,0.0233459,0.0298767,0.0356445,0.036377,0.0328979,0.0317993,0.0317993,0.0270996,0.01651,0.00408936,-0.00598145,-0.0158997,-0.0259094,-0.0377808,-0.0475769,-0.0553589,-0.0606079,-0.065094,-0.0662537,-0.0655823,-0.0604553,-0.0542297,-0.0473938,-0.0426941,-0.0391846,-0.0328064,-0.0279236,-0.0250854,-0.0265198,-0.0252991,-0.0209351,-0.0144348,-0.0110168,-0.0127563,-0.00933838,-0.00424194,-0.000671387,0.000549316,-0.00201416,-0.00289917,0.0012207,0.00476074,0.0038147,-0.00088501,0.000213623,0.00946045,0.012207,0.00878906,0.00531006,0.00201416,0.00408936,0.00195312,-0.00784302,-0.0185852,-0.0238953,-0.020752,-0.0189209,-0.0113525,-0.000396729,0.00857544,0.0246887,0.0361633,0.0462952,0.0551758,0.0630798,0.0657654,0.0582581,0.0510864,0.0406799,0.0353088,0.0300598,0.0195312,0.00939941,0.00531006,0.00793457,0.00772095,0.00598145,0.00247192,0.00280762,0.00604248,0.00375366,-0.00167847,-0.00643921,-0.0113525,-0.0148926,-0.0186462,-0.0245056,-0.032135,-0.0392761,-0.040863,-0.0422668,-0.0439453,-0.0437622,-0.0422058,-0.0350342,-0.0274353,-0.0241089,-0.0168457,-0.00872803,-0.00296021,-0.00195312,-0.00515747,-0.00268555,0.00537109,0.0110168,0.00396729,0.0032959,0.0118713,0.0187988,0.0134888,0.00570679,0.0134277,0.0224304,0.0292053,0.0253601,0.0147705,0.0143738,0.00128174,-0.0168457,-0.0245056,-0.033905,-0.0458984,-0.0575256,-0.0532227,-0.0423584,-0.0310669,-0.0113525,0.00296021,0.0146179,0.0296021,0.0401306,0.0485229,0.0545044,0.0532227,0.0463867,0.0430298,0.0377197,0.0269775,0.020874,0.0183105,0.0171204,0.0148315,0.0115967,0.0106812,0.0145569,0.0259705,0.0327454,0.0314026,0.0259705,0.0148926,0.00335693,-0.0071106,-0.0175781,-0.0296021,-0.0441589,-0.0528259,-0.0554504,-0.0556335,-0.0542297,-0.0531616,-0.0466309,-0.0368347,-0.0283813,-0.0205994,-0.0108032,0.00314331,0.0133667,0.0149536,0.0167847,0.0264282,0.0266418,0.0178528,0.012146,0.0204163,0.0324097,0.0330811,0.0176392,0.0012207,-0.0017395,-0.00100708,-0.0114136,-0.028656,-0.0413513,-0.0519409,-0.0617371,-0.0724182,-0.0766296,-0.0745544,-0.0674438,-0.0617981,-0.0603943,-0.0456238,-0.0224915,0.00967407,0.0317993,0.0432739,0.0465698,0.0411987,0.0396118,0.0400696,0.0441589,0.0418091,0.036438,0.0346985,0.0392761,0.0551147,0.0649109,0.0638123,0.0602112,0.0577087,0.0539551,0.04953,0.0462341,0.0347595,0.0209961,0.00637817,-0.0153809,-0.0395203,-0.0469055,-0.04422,-0.0403442,-0.0326843,-0.0241089,-0.012085,0.0110168,0.0341492,0.0452271,0.0483093,0.0521545,0.0524902,0.0481262,0.0430298,0.036438,0.0260315,0.01651,0.000213623,-0.0226746,-0.0418091,-0.0449524,-0.0434875,-0.0394592,-0.0376587,-0.0470581,-0.0555115,-0.0527649,-0.0445557,-0.0586548,-0.0882568,-0.108917,-0.116364,-0.120667,-0.133545,-0.135437,-0.121002,-0.0976562,-0.0779724,-0.0602722,-0.0356445,-0.00564575,0.0256958,0.0448914,0.0522766,0.0518188,0.0466309,0.0391235,0.0331421,0.0287781,0.0192566,0.00839233,0.00491333,0.00469971,0.012085,0.0189819,0.0215454,0.0241089,0.0290527,0.0395203,0.0546875,0.0624695,0.0593872,0.0525513,0.0483093,0.0454407,0.0444336,0.0458374,0.0508728,0.069397,0.0900574,0.101624,0.11026,0.125244,0.138458,0.131958,0.114563,0.0957031,0.0793152,0.0622864,0.0432129,0.0179138,-0.00369263,-0.0196533,-0.0378418,-0.0570374,-0.0775757,-0.0877991,-0.0890503,-0.0832825,-0.0832825,-0.0932922,-0.100128,-0.0983887,-0.0969238,-0.108978,-0.12912,-0.138794,-0.135437,-0.125366,-0.116638,-0.101349,-0.0761719,-0.0424194,-0.00845337,0.0114746,0.020813,0.0265198,0.0322876,0.0328064,0.0222168,-0.00134277,-0.027771,-0.0422668,-0.052948,-0.0714722,-0.0906067,-0.100067,-0.0965881,-0.0876465,-0.082489,-0.0758972,-0.0614014,-0.0298767,0.0067749,0.032074,0.0440369,0.0561218,0.0752869,0.0964966,0.114685,0.127167,0.143677,0.168457,0.19281,0.207062,0.212494,0.220062,0.223358,0.207916,0.177643,0.141144,0.108978,0.0820923,0.052948,0.00979614,-0.0328979,-0.0623474,-0.0802002,-0.0940857,-0.104889,-0.115021,-0.119263,-0.110138,-0.097168,-0.0898132,-0.0843506,-0.0728149,-0.065033,-0.0726929,-0.0856934,-0.0907288,-0.0786438,-0.0542908,-0.0355835,-0.0236206,-0.00906372,0.017395,0.0478516,0.0649719,0.0662537,0.0536194,0.0388489,0.0253601,-0.000671387,-0.0387268,-0.077179,-0.101959,-0.12207,-0.145905,-0.168518,-0.176025,-0.169189,-0.154968,-0.146027,-0.140686,-0.126038,-0.0952454,-0.0582581,-0.0241699,0.00491333,0.0363159,0.0681763,0.0992737,0.122894,0.15033,0.186432,0.224091,0.244751,0.244415,0.240143,0.242554,0.24295,0.224976,0.188599,0.14209,0.101349,0.0664368,0.0304565,-0.00811768,-0.0438232,-0.0742188,-0.101807,-0.124512,-0.139191,-0.14328,-0.136047,-0.127258,-0.123901,-0.116302,-0.0964355,-0.0722961,-0.0543518,-0.0454407,-0.0424194,-0.0357056,-0.0203247,6.10352e-05,0.0205994,0.0369263,0.052887,0.0657654,0.0763855,0.0792542,0.0723572,0.0636902,0.0489807,0.0292664,0.00256348,-0.0307922,-0.0647583,-0.0953674,-0.119202,-0.138794,-0.158447,-0.176575,-0.182831,-0.174957,-0.162292,-0.155365,-0.146362,-0.123749,-0.0898743,-0.0568542,-0.0275879,0.00784302,0.0516663,0.0969238,0.129517,0.152893,0.184967,0.228577,0.261017,0.269592,0.256989,0.245178,0.240417,0.228455,0.195099,0.144562,0.0990601,0.0649109,0.0314026,-0.0124817,-0.0559082,-0.0814819,-0.0976562,-0.116241,-0.139923,-0.156189,-0.150818,-0.131287,-0.120728,-0.121277,-0.117188,-0.0963135,-0.0687866,-0.0458984,-0.040741,-0.0393372,-0.0246277,-0.00161743,0.0175781,0.0314636,0.0461731,0.0612183,0.0755005,0.0812683,0.0741577,0.0633545,0.0596619,0.053009,0.0332947,-0.000457764,-0.0379944,-0.069397,-0.0918884,-0.112427,-0.139252,-0.165314,-0.177368,-0.177368,-0.172363,-0.166565,-0.157715,-0.141876,-0.114441,-0.0844421,-0.0575867,-0.0265808,0.0161743,0.0639038,0.098999,0.121063,0.140015,0.170074,0.209259,0.237518,0.243835,0.235443,0.229401,0.225372,0.212677,0.186188,0.148651,0.108917,0.0738831,0.0401306,0.000213623,-0.0377197,-0.0661621,-0.0905457,-0.115448,-0.14035,-0.158112,-0.155579,-0.141083,-0.129944,-0.122681,-0.111481,-0.0917358,-0.0661011,-0.0420837,-0.0278625,-0.0215454,-0.0114746,0.00509644,0.0256348,0.0428162,0.0524292,0.0643616,0.0761108,0.0852966,0.0841675,0.0757141,0.0665894,0.0595398,0.0440369,0.0177307,-0.01651,-0.0502014,-0.0783997,-0.0993958,-0.123627,-0.148529,-0.165314,-0.167908,-0.161407,-0.15686,-0.151001,-0.141083,-0.121277,-0.0960388,-0.0743103,-0.0524902,-0.0224304,0.0140381,0.0503235,0.0774536,0.0993347,0.123077,0.156189,0.186249,0.19873,0.199005,0.198853,0.199341,0.193298,0.178192,0.151733,0.118469,0.0875854,0.0582581,0.0227661,-0.0142822,-0.0476379,-0.0777893,-0.101349,-0.123749,-0.143097,-0.153503,-0.151276,-0.14389,-0.135437,-0.121735,-0.102142,-0.0770569,-0.0459595,-0.0179138,-0.0038147,0.0050354,0.0192566,0.0412903,0.0610657,0.069397,0.0712891,0.0756226,0.0903931,0.102539,0.103882,0.098938,0.0917969,0.0804138,0.0663757,0.0445557,0.0152893,-0.0129395,-0.0357056,-0.0611267,-0.0889893,-0.107666,-0.115631,-0.115631,-0.113892,-0.116638,-0.119812,-0.115356,-0.101013,-0.0890503,-0.0835571,-0.0718079,-0.0548401,-0.0332336,-0.0116882,0.0088501,0.0293884,0.0522766,0.0761108,0.0951538,0.106567,0.114624,0.120605,0.122009,0.118317,0.106659,0.0882568,0.0640259,0.0379333,0.00946045,-0.0266418,-0.0655823,-0.101807,-0.130066,-0.149872,-0.158844,-0.158264,-0.145294,-0.124908,-0.102753,-0.0791321,-0.052948,-0.0259705,0.0012207,0.0299988,0.050415,0.0594482,0.0744934,0.0955811,0.10672,0.100677,0.0897217,0.0836792,0.081543,0.0833435,0.0810852,0.078064,0.0864563,0.0958252,0.098114,0.101288,0.101471,0.0993347,0.0926819,0.0844421,0.0709534,0.0516052,0.0344849,0.0126038,-0.0110779,-0.0343018,-0.0587158,-0.0814819,-0.0997314,-0.110535,-0.11496,-0.114014,-0.109314,-0.0997925,-0.0889893,-0.0737,-0.057373,-0.0415344,-0.0300598,-0.0214233,-0.0114136,-0.00247192,0.00128174,0.000274658,-0.00289917,-0.00900269,-0.0181885,-0.029541,-0.0399475,-0.0471191,-0.0522156,-0.0547791,-0.0532227,-0.0471191,-0.0405273,-0.0340271,-0.0232849,-0.00891113,0.00457764,0.016449,0.0220947,0.0281982,0.0302124,0.0298767,0.0256348,0.019928,0.0150452,0.0105896,0.00805664,0.0083313,0.0116882,0.0169067,0.024353,0.0345764,0.0467834,0.0619507,0.0787964,0.0943604,0.105774,0.110809,0.11142,0.107666,0.0977783,0.08255,0.0640259,0.0453796,0.028595,0.0122681,-0.00100708,-0.0149536,-0.024292,-0.0282593,-0.0288696,-0.0279846,-0.0267029,-0.0234375,-0.0189209,-0.015564,-0.0150452,-0.0167847,-0.0204163,-0.0244446,-0.0316772,-0.0433655,-0.0536194,-0.0632324,-0.0684509,-0.0745544,-0.0759583,-0.0757141,-0.0726318,-0.0669861,-0.0603943,-0.0544434,-0.0506592,-0.0453796,-0.0391846,-0.0340271,-0.0307922,-0.0293884,-0.028595,-0.0273132,-0.0278625,-0.0302734,-0.0308838,-0.0303955,-0.0268555,-0.0232239,-0.019928,-0.0158386,-0.00759888,0.000946045,0.00991821,0.0191956,0.0272522,0.0365906,0.0458374,0.0544434,0.058136,0.0629578,0.0681763,0.0699463,0.0691223,0.0664978,0.0631409,0.057312,0.0534363,0.0462952,0.0393372,0.0325623,0.0280457,0.0254211,0.0224915,0.0192566,0.0148315,0.0118713,0.0102539,0.00924683,0.00650024,0.0038147,-0.000213623,-0.00463867,-0.0114746,-0.0184631,-0.025177,-0.029541,-0.0343018,-0.0396118,-0.0429382,-0.0441589,-0.04422,-0.0421448,-0.0412903,-0.0395203,-0.037323,-0.0345764,-0.0320129,-0.0316162,-0.0332947,-0.0367737,-0.040741,-0.0456238,-0.0502014,-0.0536804,-0.0559082,-0.0547791,-0.0518188,-0.0484009,-0.0422668,-0.0342407,-0.0246277,-0.0149536,-0.00610352,0.00228882,0.0103455,0.0192566,0.0264282,0.0312805,0.0369263,0.0400696,0.0414124,0.0421448,0.0438232,0.0449524,0.0452881,0.0473938,0.0512085,0.053833,0.0549011,0.0553589,0.0554504,0.0556946,0.053772,0.0503235,0.0475159,0.0450439,0.0411987,0.0356445,0.0267639,0.0187988,0.0114746,0.00463867,-0.0015564,-0.00631714,-0.00891113,-0.0113525,-0.0129395,-0.0148926,-0.0172424,-0.0192566,-0.020813,-0.0235596,-0.0249634,-0.0270386,-0.0298767,-0.0317383,-0.0324097,-0.0344849,-0.0349731,-0.0374451,-0.0374451,-0.0363159,-0.037384,-0.0377197,-0.0383911,-0.0377808,-0.0386658,-0.0409546,-0.0418701,-0.0427551,-0.040802,-0.0391846,-0.0378418,-0.0365906,-0.03302,-0.0296021,-0.0248413,-0.0220947,-0.0185242,-0.0144348,-0.0085144,-0.00280762,0.00100708,0.00631714,0.0118103,0.0184631,0.0250854,0.0293274,0.0333557,0.0391235,0.0467834,0.0515442,0.0555115,0.0575256,0.0604553,0.0624084,0.0622253,0.0596008,0.0579224,0.0565186,0.0542297,0.0502625,0.0444946,0.0381775,0.0325623,0.0262451,0.0195923,0.0128174,0.00765991,0.00415039,0.000946045,-0.00296021,-0.00698853,-0.0114136,-0.0158386,-0.0190735,-0.0234985,-0.0273743,-0.0322876,-0.0351562,-0.0371094,-0.0385132,-0.0400085,-0.0394592,-0.0383301,-0.0359192,-0.0351562,-0.033905,-0.0328979,-0.0332947,-0.0324707,-0.0319519,-0.0328064,-0.0335693,-0.0336304,-0.0317993,-0.0278625,-0.0226135,-0.0222778,-0.0215454,-0.0204163,-0.0193176,-0.0177307,-0.0187988,-0.020752,-0.0225525,-0.0229492,-0.0209351,-0.0187988,-0.0126953,0.000457764,0.0102539,0.0175781,0.0237732,0.032074,0.0401306,0.0438843,0.041626,0.0368347,0.0338135,0.0327454,0.0323486,0.0278625,0.0269165,0.0285339,0.0324097,0.0363159,0.0385132,0.0396729,0.0413513,0.0425415,0.040863,0.0378418,0.0357056,0.0374451,0.037262,0.03302,0.0278625,0.0231628,0.0206604,0.016571,0.0100708,0.00228882,-0.00524902,-0.0100098,-0.0146179,-0.019928,-0.0268555,-0.032135,-0.0360413,-0.0367737,-0.0388489,-0.041626,-0.040741,-0.038269,-0.0366516,-0.0365906,-0.0343628,-0.0317383,-0.0288696,-0.025238,-0.0235596,-0.0228882,-0.0205994,-0.0173035,-0.0172424,-0.0179749,-0.0185852,-0.0205994,-0.021759,-0.0212708,-0.0206604,-0.0245056,-0.0249634,-0.0232849,-0.0211487,-0.0179138,-0.0167236,-0.0171204,-0.0136108,-0.0137024,-0.0108643,-0.0131531,-0.0146179,-0.0147705,-0.0175171,-0.0158997,-0.0187378,-0.0145569,-0.00900269,-0.00140381,0.00924683,0.0167236,0.0245667,0.033905,0.041687,0.0495911,0.0517578,0.0556335,0.0587158,0.0644836,0.0672607,0.0658264,0.0667114,0.069519,0.0716858,0.0688477,0.0605469,0.0499878,0.0420227,0.0353088,0.0238342,0.00732422,-0.00845337,-0.0222778,-0.0299988,-0.0387878,-0.0485229,-0.0585938,-0.0610046,-0.0587769,-0.056366,-0.0532837,-0.0453796,-0.0371704,-0.0255737,-0.0171814,-0.0100708,-0.00558472,0.000335693,0.00610352,0.00509644,0.000396729,-0.00369263,-0.00717163,-0.00750732,-0.0065918,-0.012085,-0.0167847,-0.0214844,-0.0189209,-0.0232849,-0.0303955,-0.0253601,-0.0222168,-0.0211487,-0.0297852,-0.0386658,-0.0446167,-0.0478516,-0.0440979,-0.0468445,-0.0466309,-0.0439453,-0.0402832,-0.0305481,-0.0128174,0.00341797,0.015625,0.0275879,0.040802,0.0520935,0.0627441,0.070282,0.0696106,0.069397,0.0681152,0.0627441,0.0606079,0.0608826,0.0623474,0.0634155,0.0614014,0.0545654,0.0483093,0.0461121,0.041748,0.0324707,0.0155029,-0.00228882,-0.0158386,-0.0254211,-0.0350342,-0.0474548,-0.0549011,-0.0558472,-0.0554504,-0.0519409,-0.0469666,-0.0380554,-0.0227661,-0.00979614,-0.000671387,0.0062561,0.0149536,0.024231,0.0335693,0.0443726,0.0445557,0.0324097,0.0144348,0.00247192,-0.00643921,-0.0175171,-0.0273743,-0.0308838,-0.0358276,-0.0401306,-0.0359192,-0.0231628,-0.0234985,-0.0409546,-0.058197,-0.0718689,-0.0814819,-0.085022,-0.0826721,-0.0812073,-0.0858459,-0.0837708,-0.0630798,-0.0345764,-0.0150452,-0.00476074,0.00732422,0.0265198,0.0469055,0.0649109,0.0740356,0.0779724,0.0802002,0.082489,0.081543,0.0761108,0.0690613,0.0704651,0.0787354,0.0755005,0.0602722,0.048645,0.0425415,0.0404053,0.0298767,0.00985718,-0.013092,-0.0312805,-0.0386047,-0.0446167,-0.0472412,-0.0457153,-0.037384,-0.0237732,-0.0105896,0.00302124,0.0219421,0.0438232,0.060791,0.0654907,0.0602722,0.0560303,0.0554504,0.0559082,0.0488586,0.02771,0.00497437,-0.0139465,-0.0304565,-0.0430298,-0.0570374,-0.0747681,-0.0863037,-0.0865173,-0.0858459,-0.0836792,-0.0799866,-0.0851135,-0.0986023,-0.11557,-0.129791,-0.145508,-0.146515,-0.12738,-0.102081,-0.0822754,-0.0727539,-0.0532837,-0.0122681,0.0225525,0.0410767,0.0410767,0.0390625,0.04422,0.0556946,0.068512,0.0683289,0.0665894,0.0706787,0.0730896,0.0706177,0.0654907,0.0612793,0.0610657,0.0599365,0.0509949,0.0310059,0.0250854,0.0293274,0.0310059,0.0220947,0.00195312,-0.0158997,-0.0190735,-0.00665283,0.00973511,0.0267639,0.048584,0.0729675,0.0977173,0.119202,0.137451,0.154236,0.160187,0.154907,0.13974,0.119995,0.0970459,0.0751038,0.0465698,0.00924683,-0.0306091,-0.065094,-0.0964355,-0.121063,-0.139862,-0.151215,-0.155029,-0.15451,-0.157593,-0.159668,-0.152161,-0.149323,-0.155914,-0.167908,-0.171265,-0.159729,-0.137238,-0.107574,-0.07724,-0.0488586,-0.013031,0.0282593,0.0584412,0.0682678,0.0661011,0.0617981,0.0519409,0.0376587,0.0204163,0.00442505,-0.00436401,-0.00900269,-0.0163879,-0.025238,-0.0294495,-0.0302124,-0.028595,-0.0307922,-0.0391846,-0.040741,-0.0263062,-0.00424194,0.0137634,0.0215454,0.0266418,0.0388489,0.0592651,0.0865784,0.121735,0.159393,0.196564,0.232697,0.263092,0.28067,0.285034,0.279327,0.255249,0.214905,0.165771,0.119995,0.0828857,0.0469055,0.0015564,-0.0434875,-0.082489,-0.11142,-0.135437,-0.158722,-0.178528,-0.190399,-0.186371,-0.175293,-0.165771,-0.15979,-0.154755,-0.149994,-0.153961,-0.169128,-0.175781,-0.158661,-0.116241,-0.0718079,-0.040802,-0.00537109,0.0383301,0.0779114,0.0958252,0.0875854,0.0592041,0.0358276,0.0213318,-0.00100708,-0.0387268,-0.0755615,-0.1008,-0.114899,-0.126434,-0.143951,-0.159058,-0.159943,-0.146637,-0.133209,-0.123901,-0.102539,-0.0657043,-0.020874,0.0191956,0.0528259,0.0789795,0.109314,0.14679,0.19101,0.238586,0.284698,0.319183,0.33786,0.34549,0.345154,0.331604,0.30719,0.263275,0.209045,0.155579,0.104309,0.0588684,0.0134888,-0.0378418,-0.0908203,-0.13504,-0.165771,-0.186646,-0.197845,-0.202759,-0.204895,-0.196777,-0.178802,-0.156433,-0.136444,-0.121216,-0.107727,-0.100464,-0.0924072,-0.0814819,-0.0592041,-0.0238342,0.0067749,0.0301208,0.0548401,0.0770569,0.0895386,0.0782471,0.053894,0.0249634,0.00430298,-0.0175171,-0.053833,-0.094635,-0.128937,-0.153076,-0.169861,-0.18866,-0.206177,-0.213501,-0.202759,-0.184631,-0.169403,-0.149323,-0.11496,-0.0635681,-0.00872803,0.0326233,0.0669861,0.108398,0.157318,0.199677,0.235107,0.265503,0.297852,0.330322,0.351074,0.353088,0.337372,0.308258,0.275085,0.241882,0.19986,0.144348,0.0851746,0.0354309,-0.00564575,-0.04953,-0.100067,-0.146576,-0.17804,-0.195038,-0.205719,-0.212006,-0.206451,-0.190552,-0.168243,-0.143494,-0.126831,-0.106171,-0.0843506,-0.0654907,-0.0520935,-0.0422668,-0.0261841,-0.00234985,0.0230103,0.0452881,0.0627441,0.0748291,0.0691223,0.0482483,0.0265198,0.00784302,-0.00857544,-0.0350952,-0.0737,-0.106659,-0.127167,-0.14209,-0.161682,-0.183502,-0.195374,-0.191681,-0.180328,-0.1698,-0.157593,-0.128174,-0.0842896,-0.0397949,-0.003479,0.0270386,0.0689392,0.122284,0.166382,0.19397,0.218445,0.253632,0.291473,0.321075,0.332764,0.325439,0.311462,0.293884,0.269135,0.234436,0.192535,0.142426,0.0913391,0.0429382,-0.00189209,-0.0457764,-0.089386,-0.132812,-0.171082,-0.189941,-0.197998,-0.20047,-0.198517,-0.187866,-0.165436,-0.140076,-0.119812,-0.102692,-0.0860291,-0.0785217,-0.0705261,-0.0583191,-0.0454407,-0.0297852,-0.0152283,0.00234985,0.0193176,0.0400085,0.0489807,0.0401917,0.019989,-0.000213623,-0.0157166,-0.0296021,-0.0492554,-0.0787964,-0.104645,-0.124969,-0.140198,-0.157654,-0.171692,-0.172821,-0.164093,-0.153076,-0.143768,-0.124237,-0.0870361,-0.0452271,-0.00497437,0.0301208,0.0632324,0.101532,0.144104,0.177368,0.202026,0.231598,0.263275,0.292358,0.316498,0.322296,0.313477,0.299744,0.278107,0.246979,0.210876,0.168396,0.11853,0.0691833,0.0229492,-0.0234375,-0.0605469,-0.0976562,-0.141937,-0.180328,-0.200409,-0.199799,-0.193481,-0.18576,-0.177795,-0.162079,-0.141083,-0.112335,-0.0914917,-0.085968,-0.09021,-0.0843506,-0.0644226,-0.0445557,-0.0312805,-0.024353,-0.00683594,0.0220947,0.0481873,0.0461121,0.0254211,0.00491333,-0.00924683,-0.0134277,-0.0255737,-0.0545654,-0.0867004,-0.102875,-0.110535,-0.124573,-0.146851,-0.162811,-0.162354,-0.146118,-0.134766,-0.128845,-0.110413,-0.0752258,-0.0312805,0.00784302,0.0362549,0.0617371,0.0964966,0.14267,0.17865,0.206512,0.230072,0.257935,0.293091,0.316711,0.318512,0.298737,0.281342,0.27066,0.247772,0.203613,0.144836,0.090271,0.0578613,0.0282593,-0.0229492,-0.089325,-0.139679,-0.161011,-0.166901,-0.186188,-0.21402,-0.226105,-0.200684,-0.160187,-0.139008,-0.136169,-0.128937,-0.100403,-0.0773926,-0.0756226,-0.0784607,-0.0680542,-0.041748,-0.0184631,-0.0104065,-0.00463867,0.0172424,0.0461121,0.0546265,0.0335693,0.00274658,-0.0101929,-0.0088501,-0.00805664,-0.0299988,-0.0602112,-0.0832825,-0.0979919,-0.111603,-0.129608,-0.138916,-0.141357,-0.141815,-0.140259,-0.129059,-0.103302,-0.0665894,-0.0303955,-0.00128174,0.0283813,0.0602722,0.0984497,0.139679,0.17804,0.213165,0.24115,0.269653,0.296783,0.311798,0.314362,0.301208,0.27771,0.244019,0.211273,0.176636,0.138733,0.0898132,0.0404663,-0.00524902,-0.044281,-0.0844421,-0.127991,-0.168854,-0.195038,-0.20343,-0.200867,-0.197052,-0.192749,-0.183289,-0.162201,-0.139465,-0.125824,-0.122681,-0.120483,-0.105774,-0.0846863,-0.0647583,-0.0518799,-0.0377808,-0.0140991,0.0142212,0.0383911,0.0462952,0.0444336,0.037262,0.0336304,0.0301208,0.0221558,0.00744629,-0.0120239,-0.032959,-0.0566406,-0.0819397,-0.107849,-0.126984,-0.134491,-0.136566,-0.134094,-0.130127,-0.114838,-0.0923462,-0.0596008,-0.0291138,-0.00228882,0.0279236,0.0621338,0.105377,0.147644,0.185089,0.213501,0.241547,0.273956,0.304169,0.315704,0.30423,0.286835,0.270081,0.254822,0.232269,0.189728,0.135651,0.0860291,0.0482483,0.00247192,-0.0484009,-0.102142,-0.146576,-0.177185,-0.196045,-0.213959,-0.227905,-0.224762,-0.209259,-0.194489,-0.185303,-0.179932,-0.169342,-0.150055,-0.127716,-0.115509,-0.10733,-0.0897217,-0.0621338,-0.0360413,-0.0112,0.013092,0.0361023,0.0525513,0.0597229,0.0563049,0.0481262,0.0469055,0.0466309,0.0297241,0.00213623,-0.0302734,-0.0583801,-0.078125,-0.0993347,-0.121399,-0.139679,-0.145966,-0.141357,-0.131866,-0.114502,-0.0909424,-0.061615,-0.0300598,-0.000610352,0.0322876,0.0758362,0.127106,0.170532,0.203217,0.226898,0.259399,0.297913,0.32785,0.334778,0.319183,0.303894,0.291077,0.275085,0.246521,0.200745,0.144012,0.0932922,0.0465698,-0.00457764,-0.0588684,-0.112213,-0.154968,-0.187988,-0.215698,-0.23999,-0.252899,-0.247528,-0.232086,-0.220734,-0.217529,-0.209473,-0.189728,-0.163879,-0.142822,-0.124908,-0.107178,-0.0819397,-0.0532837,-0.0288696,-0.0050354,0.0245667,0.0552368,0.0713501,0.0678406,0.056366,0.0491943,0.0517578,0.0454407,0.0184631,-0.016449,-0.048645,-0.0711365,-0.0922852,-0.113678,-0.133087,-0.144623,-0.145691,-0.146698,-0.141876,-0.121674,-0.09021,-0.0566406,-0.0297852,-0.00262451,0.0328064,0.0837708,0.139679,0.184906,0.214691,0.242737,0.276764,0.319061,0.353821,0.361206,0.343903,0.319061,0.301666,0.287109,0.259583,0.207733,0.141937,0.0842896,0.0399475,-0.0062561,-0.0610046,-0.12088,-0.165894,-0.194641,-0.218201,-0.240814,-0.251953,-0.241821,-0.226227,-0.222015,-0.222473,-0.209595,-0.17804,-0.147186,-0.133759,-0.130615,-0.117645,-0.0820923,-0.0437012,-0.0241699,-0.0116882,0.0114136,0.0444336,0.0626221,0.0598755,0.0476379,0.0448914,0.049469,0.0383911,0.00878906,-0.0244446,-0.0475159,-0.0647583,-0.0873718,-0.116791,-0.13913,-0.146698,-0.144775,-0.143829,-0.142426,-0.125824,-0.0993958,-0.0715332,-0.0440369,-0.0138245,0.0316162,0.0844421,0.133209,0.170746,0.203949,0.242554,0.283295,0.320343,0.347321,0.356506,0.346313,0.331604,0.318115,0.303955,0.273438,0.21698,0.152618,0.101074,0.0605469,0.0109253,-0.053009,-0.116577,-0.159943,-0.187256,-0.214569,-0.244568,-0.262024,-0.259918,-0.248779,-0.244751,-0.240997,-0.226562,-0.198334,-0.178589,-0.168671,-0.150879,-0.115112,-0.0722046,-0.0504761,-0.0391235,-0.0113525,0.0347595,0.0768433,0.0832214,0.0677185,0.0597229,0.069458,0.0762939,0.0547791,0.0173035,-0.0119324,-0.0267639,-0.0485229,-0.0866394,-0.125824,-0.141144,-0.139404,-0.14328,-0.162201,-0.171936,-0.152496,-0.113434,-0.0802612,-0.0603943,-0.0358276,0.00717163,0.0664978,0.123627,0.169739,0.208527,0.245422,0.283691,0.324707,0.359589,0.375488,0.367371,0.350616,0.335968,0.320068,0.29129,0.240417,0.181061,0.124695,0.0727539,0.0144958,-0.0506592,-0.114288,-0.164551,-0.20047,-0.233887,-0.268188,-0.292084,-0.296448,-0.28537,-0.273895,-0.265442,-0.25235,-0.229126,-0.201752,-0.176788,-0.148254,-0.114899,-0.0769653,-0.0489807,-0.0218811,0.00750732,0.0481262,0.086853,0.102203,0.0964355,0.0836792,0.0875854,0.0909424,0.0786438,0.0461731,0.00759888,-0.0205994,-0.0496521,-0.0848389,-0.123291,-0.147034,-0.158447,-0.166046,-0.178375,-0.188263,-0.173157,-0.139587,-0.100616,-0.073761,-0.0449524,0.0017395,0.0655823,0.132141,0.180054,0.219269,0.259857,0.305695,0.345703,0.374084,0.38678,0.385895,0.380005,0.362274,0.336914,0.300201,0.253815,0.199249,0.139191,0.0783081,0.0124207,-0.0518799,-0.112762,-0.166107,-0.213287,-0.256104,-0.288452,-0.308044,-0.315643,-0.314972,-0.305511,-0.292206,-0.273224,-0.248322,-0.218384,-0.187714,-0.154236,-0.112823,-0.0754395,-0.0399475,-0.00918579,0.0273132,0.0662537,0.0962524,0.111877,0.113281,0.111877,0.10498,0.0926208,0.0729675,0.0455627,0.0137634,-0.0221558,-0.061615,-0.0959167,-0.123352,-0.14267,-0.160614,-0.177032,-0.187531,-0.183167,-0.165375,-0.140472,-0.11322,-0.081604,-0.0405273,0.00946045,0.0620728,0.115784,0.170349,0.220215,0.262482,0.30188,0.336975,0.372009,0.392822,0.394684,0.382416,0.365509,0.344238,0.310669,0.262939,0.20343,0.142487,0.0804138,0.0169678,-0.0491333,-0.117188,-0.178314,-0.227509,-0.263763,-0.292267,-0.313141,-0.323761,-0.325043,-0.310608,-0.290619,-0.269409,-0.251007,-0.229004,-0.197449,-0.158936,-0.114899,-0.0760498,-0.0426941,-0.0110168,0.0249634,0.0632324,0.0967102,0.113892,0.114105,0.110199,0.105103,0.100952,0.0845032,0.0578613,0.0222168,-0.0116882,-0.0428162,-0.074707,-0.105438,-0.130341,-0.14209,-0.150208,-0.158783,-0.164307,-0.157104,-0.130341,-0.0996704,-0.073822,-0.0499268,-0.0148315,0.0367126,0.0950317,0.14563,0.182068,0.218933,0.26236,0.308258,0.340942,0.356323,0.361877,0.363281,0.359802,0.344238,0.31134,0.267578,0.215424,0.159729,0.1008,0.0392761,-0.0308838,-0.103424,-0.164032,-0.211151,-0.248993,-0.284698,-0.312683,-0.32431,-0.320526,-0.306366,-0.288727,-0.270538,-0.252472,-0.22699,-0.195496,-0.160736,-0.122162,-0.0869141,-0.0526123,-0.0255127,0.00134277,0.0305481,0.0624695,0.0887146,0.0975952,0.0975952,0.0956421,0.0986023,0.100677,0.0922852,0.0716248,0.040802,0.0131531,-0.00857544,-0.0297241,-0.0524902,-0.0751648,-0.0930176,-0.112091,-0.12912,-0.137726,-0.129944,-0.114349,-0.0993958,-0.0855103,-0.0619507,-0.0188599,0.0322266,0.0856323,0.129517,0.171539,0.216644,0.265106,0.309937,0.342804,0.359406,0.366699,0.363617,0.352631,0.326233,0.28598,0.23764,0.182068,0.120392,0.0516052,-0.0194702,-0.0821533,-0.140015,-0.196106,-0.246582,-0.28363,-0.303558,-0.315247,-0.323303,-0.322205,-0.309052,-0.285583,-0.268188,-0.252563,-0.230469,-0.198578,-0.160461,-0.128174,-0.0973816,-0.0661621,-0.0311279,0.00335693,0.0379333,0.0679321,0.0886536,0.104218,0.11377,0.119537,0.12442,0.123749,0.114502,0.0954895,0.0708008,0.0462341,0.0250244,0.00247192,-0.0228882,-0.0532227,-0.0779114,-0.0979919,-0.111267,-0.11972,-0.12207,-0.11496,-0.100616,-0.0797424,-0.0502625,-0.00979614,0.0421448,0.0950317,0.139862,0.184235,0.234894,0.293274,0.34256,0.366638,0.374756,0.379272,0.385559,0.373505,0.328583,0.268402,0.205902,0.153961,0.0965881,0.017395,-0.0671692,-0.13858,-0.190887,-0.238068,-0.292603,-0.337646,-0.357513,-0.359589,-0.354767,-0.355652,-0.345581,-0.32074,-0.292603,-0.271088,-0.253479,-0.220886,-0.175354,-0.128845,-0.0925598,-0.0626831,-0.0220032,0.0310059,0.078064,0.104828,0.117523,0.128723,0.141937,0.150269,0.145294,0.135895,0.124695,0.10791,0.0810852,0.0487976,0.0204773,-0.00180054,-0.0299377,-0.0687256,-0.105316,-0.125488,-0.127716,-0.126373,-0.125031,-0.115356,-0.0889893,-0.0469666,-0.00430298,0.0404663,0.0917358,0.151154,0.212738,0.266785,0.317719,0.368805,0.408722,0.429199,0.427979,0.415649,0.397461,0.36377,0.308197,0.236237,0.16745,0.105499,0.0334778,-0.0489807,-0.136658,-0.211731,-0.263824,-0.308594,-0.351959,-0.390869,-0.410522,-0.407715,-0.393951,-0.376587,-0.36026,-0.345978,-0.3237,-0.296234,-0.257172,-0.210663,-0.166443,-0.124298,-0.0796509,-0.024231,0.036499,0.0863037,0.116852,0.134491,0.15033,0.164642,0.168732,0.162476,0.148987,0.134491,0.114105,0.0828857,0.0459595,0.00872803,-0.0248413,-0.0593262,-0.0988464,-0.136719,-0.16214,-0.165161,-0.156372,-0.141022,-0.120331,-0.0898132,-0.0420227,0.0153809,0.0750427,0.13678,0.198242,0.261261,0.327728,0.391357,0.443695,0.471893,0.480347,0.478577,0.469788,0.445648,0.390747,0.316315,0.240479,0.174713,0.109131,0.0245667,-0.0757751,-0.168671,-0.23999,-0.293213,-0.347046,-0.401215,-0.440613,-0.453552,-0.445496,-0.432892,-0.418243,-0.398193,-0.371002,-0.34375,-0.319946,-0.288269,-0.236908,-0.17569,-0.117645,-0.0726929,-0.025238,0.0365906,0.10321,0.152283,0.170593,0.172028,0.176178,0.186188,0.191223,0.178314,0.149536,0.112427,0.072876,0.0315552,-0.0137024,-0.0606689,-0.107239,-0.153229,-0.191803,-0.215576,-0.220734,-0.204712,-0.175018,-0.138,-0.0924072,-0.0319519,0.040741,0.124298,0.207123,0.28302,0.354828,0.4245,0.489807,0.537994,0.56189,0.563568,0.550659,0.521423,0.473633,0.403412,0.321533,0.235962,0.151489,0.0640259,-0.0307922,-0.124634,-0.215363,-0.293701,-0.355896,-0.408112,-0.444824,-0.471008,-0.483948,-0.480743,-0.463013,-0.434021,-0.407867,-0.389923,-0.370209,-0.337921,-0.28952,-0.234772,-0.182159,-0.126495,-0.0708008,-0.00375366,0.0668335,0.127258,0.169861,0.188324,0.194305,0.196106,0.199066,0.19162,0.164551,0.123505,0.0757751,0.0330811,-0.00717163,-0.0570374,-0.114014,-0.168671,-0.207306,-0.229584,-0.240753,-0.236786,-0.214844,-0.169739,-0.113007,-0.0519409,0.0234375,0.110138,0.205444,0.293762,0.367584,0.43811,0.51059,0.575043,0.616699,0.626709,0.610138,0.581085,0.544037,0.49054,0.40744,0.3078,0.206055,0.110535,0.0211487,-0.0749817,-0.17337,-0.272614,-0.360596,-0.426788,-0.474579,-0.504639,-0.521332,-0.52597,-0.517731,-0.498657,-0.463959,-0.426971,-0.391418,-0.361267,-0.330078,-0.285583,-0.225372,-0.157867,-0.091156,-0.0322266,0.0290527,0.0917358,0.149597,0.185364,0.193146,0.185974,0.17746,0.168732,0.151215,0.117645,0.0770569,0.0332947,-0.00698853,-0.0489197,-0.0969238,-0.145355,-0.18631,-0.218994,-0.237518,-0.244171,-0.226715,-0.187775,-0.136322,-0.074646,-0.00335693,0.0869141,0.187775,0.286438,0.374908,0.449127,0.524963,0.600677,0.658844,0.685516,0.675568,0.645569,0.610413,0.570129,0.502014,0.395508,0.27121,0.15564,0.0591125,-0.032074,-0.14267,-0.264709,-0.375488,-0.451141,-0.500061,-0.535583,-0.565491,-0.578461,-0.56543,-0.532959,-0.496094,-0.459381,-0.417725,-0.372223,-0.331268,-0.29538,-0.253906,-0.197388,-0.133972,-0.0719604,-0.0169067,0.0355835,0.0880432,0.136505,0.167664,0.173615,0.165833,0.150726,0.137054,0.115173,0.0862427,0.0546265,0.0153809,-0.0273132,-0.0699463,-0.10907,-0.14209,-0.176239,-0.211731,-0.236176,-0.236176,-0.207733,-0.163696,-0.107727,-0.0395203,0.0496521,0.156921,0.269531,0.372681,0.461548,0.548187,0.629272,0.693695,0.733032,0.736725,0.711884,0.67511,0.625031,0.557465,0.46463,0.345093,0.214905,0.0933533,-0.0152893,-0.124756,-0.235779,-0.346436,-0.443756,-0.519989,-0.571198,-0.601685,-0.615631,-0.612762,-0.594025,-0.562683,-0.51947,-0.465179,-0.408997,-0.35907,-0.316986,-0.279999,-0.234375,-0.173828,-0.112213,-0.0589294,-0.00857544,0.0455627,0.102539,0.152832,0.181396,0.179047,0.165161,0.150482,0.130402,0.0975037,0.0571899,0.0151672,-0.0193176,-0.0457153,-0.0767822,-0.117645,-0.152008,-0.176453,-0.196106,-0.208069,-0.207733,-0.185699,-0.137848,-0.0630798,0.0269775,0.133484,0.25592,0.376038,0.483429,0.574219,0.656982,0.727173,0.770874,0.779266,0.755035,0.713501,0.667114,0.600677,0.509521,0.393616,0.266724,0.13208,-0.00558472,-0.13678,-0.25885,-0.365784,-0.469543,-0.565094,-0.634766,-0.663483,-0.658936,-0.644012,-0.624512,-0.593292,-0.54422,-0.482819,-0.422424,-0.367249,-0.316101,-0.271606,-0.238983,-0.211273,-0.172028,-0.119385,-0.0597839,-0.00415039,0.0463867,0.098114,0.146912,0.178589,0.186707,0.183075,0.171692,0.14859,0.103973,0.0505981,0.0103455,-0.0126953,-0.0312195,-0.0664978,-0.115448,-0.150879,-0.165771,-0.170013,-0.17395,-0.170135,-0.145111,-0.0885315,0.00195312,0.109802,0.234558,0.368805,0.489136,0.589386,0.673553,0.751221,0.813904,0.83725,0.809723,0.749664,0.685181,0.616364,0.526917,0.405029,0.261688,0.122681,-0.00793457,-0.130188,-0.252075,-0.373077,-0.485046,-0.57785,-0.645294,-0.690125,-0.708984,-0.713501,-0.698334,-0.661285,-0.603302,-0.53717,-0.467773,-0.401001,-0.341797,-0.291016,-0.255035,-0.231201,-0.196991,-0.149384,-0.0961609,-0.0440369,0.0151062,0.0836182,0.157593,0.212341,0.230682,0.227173,0.215302,0.191284,0.142487,0.0764465,0.00878906,-0.0322876,-0.0462952,-0.0585938,-0.0768433,-0.0917358,-0.0879211,-0.078186,-0.0748291,-0.0796509,-0.0778503,-0.0562439,-0.00112915,0.0809326,0.192474,0.327515,0.463562,0.579407,0.677185,0.770996,0.849609,0.881134,0.842224,0.746582,0.651154,0.579407,0.504425,0.396576,0.261139,0.128662,0.00979614,-0.100616,-0.220551,-0.351532,-0.481476,-0.601074,-0.706909,-0.784912,-0.812622,-0.796722,-0.760529,-0.715973,-0.664154,-0.589325,-0.495514,-0.400208,-0.333832,-0.299469,-0.281006,-0.263489,-0.231812,-0.185852,-0.134094,-0.0794678,-0.0161743,0.0610657,0.146362,0.227844,0.273102,0.278107,0.262482,0.237396,0.19986,0.141541,0.0748901,0.0189209,-0.00643921,-0.00671387,-0.0100098,-0.0220032,-0.0306091,-0.0272522,-0.0222168,-0.0239563,-0.038269,-0.0473022,-0.0178528,0.0591125,0.179321,0.3255,0.468994,0.592285,0.70047,0.807312,0.89444,0.926971,0.875305,0.752411,0.619385,0.520264,0.442017,0.345245,0.213837,0.0758972,-0.0425415,-0.133484,-0.222565,-0.337524,-0.478241,-0.629333,-0.758911,-0.840668,-0.865967,-0.852539,-0.82074,-0.777374,-0.717529,-0.635834,-0.54068,-0.452026,-0.388672,-0.351959,-0.333954,-0.3302,-0.314484,-0.262482,-0.181213,-0.0887146,-0.00106812,0.0869751,0.181061,0.283417,0.361267,0.390076,0.374573,0.329987,0.264221,0.189728,0.121002,0.0697937,0.0469666,0.0444946,0.0397339,0.0308838,0.0353088,0.053772,0.0634766,0.0496521,0.0162354,-0.00939941,0.0119324,0.0878601,0.203827,0.344025,0.49173,0.625092,0.740143,0.840057,0.913147,0.926117,0.854767,0.712006,0.551422,0.426971,0.333282,0.232483,0.109406,-0.013092,-0.112,-0.184082,-0.257782,-0.36792,-0.504822,-0.640686,-0.763428,-0.859314,-0.914978,-0.927032,-0.897919,-0.838318,-0.764374,-0.679535,-0.582947,-0.488251,-0.414368,-0.37262,-0.361938,-0.362335,-0.345306,-0.292023,-0.203033,-0.0954895,0.0215454,0.145508,0.269592,0.38678,0.472687,0.500885,0.47583,0.413757,0.326843,0.232697,0.144897,0.0798035,0.0512085,0.0606079,0.0794678,0.0931396,0.105225,0.119598,0.129456,0.119263,0.0855713,0.0520935,0.0613403,0.128601,0.240204,0.372833,0.506927,0.635223,0.762543,0.864441,0.909729,0.868927,0.75827,0.611664,0.467438,0.3396,0.219543,0.098053,-0.00933838,-0.0913391,-0.154236,-0.216919,-0.300995,-0.416901,-0.550201,-0.690277,-0.817841,-0.912537,-0.968262,-0.981689,-0.953094,-0.888397,-0.795288,-0.685852,-0.569061,-0.470734,-0.406372,-0.381012,-0.375031,-0.367706,-0.338989,-0.272491,-0.175964,-0.0544434,0.0847778,0.234039,0.378723,0.506714,0.580658,0.588318,0.53717,0.442688,0.334167,0.234222,0.155701,0.109406,0.103973,0.125244,0.155518,0.182495,0.202484,0.210266,0.19812,0.151947,0.0856934,0.0410156,0.0602722,0.147858,0.271271,0.399658,0.524353,0.656982,0.786713,0.871155,0.859924,0.746979,0.593353,0.453217,0.330078,0.200256,0.0671692,-0.0338135,-0.0924683,-0.13208,-0.180054,-0.250458,-0.346588,-0.464172,-0.596436,-0.733368,-0.858124,-0.953278,-1,-0.993347,-0.93988,-0.856171,-0.754761,-0.647522,-0.549591,-0.473816,-0.424286,-0.411011,-0.419678,-0.4133,-0.361084,-0.255981,-0.113342,0.0438843,0.205566,0.369049,0.524231,0.637512,0.678864,0.634216,0.534637,0.420807,0.313812,0.219208,0.155975,0.154175,0.199799,0.2565,0.29953,0.329742,0.344818,0.334106,0.282562,0.196777,0.109985,0.0682678,0.0930786,0.177979,0.292419,0.407043,0.515045,0.617188,0.695312,0.714966,0.649597,0.5159,0.361603,0.230927,0.137726,0.0555115,-0.0317993,-0.103882,-0.143677,-0.167236,-0.207306,-0.298737,-0.433746,-0.572418,-0.697571,-0.808777,-0.902679,-0.965698,-0.973572,-0.911743,-0.807526,-0.703278,-0.618042,-0.547455,-0.483704,-0.443146,-0.445496,-0.477051,-0.491821,-0.452423,-0.351807,-0.205231,-0.0410767,0.133545,0.312897,0.48941,0.629944,0.702484,0.687103,0.609741,0.499725,0.393097,0.311798,0.260468,0.246307,0.274445,0.335907,0.407715,0.46228,0.48349,0.46698,0.417511,0.338196,0.245758,0.17276,0.147919,0.17865,0.243896,0.320679,0.393677,0.459869,0.505585,0.515778,0.462677,0.356445,0.230743,0.12149,0.0319519,-0.0464478,-0.116302,-0.169586,-0.198181,-0.227234,-0.272614,-0.350067,-0.452545,-0.559052,-0.656708,-0.741943,-0.805511,-0.832153,-0.819397,-0.762878,-0.681152,-0.595154,-0.528198,-0.483093,-0.461823,-0.458862,-0.475433,-0.508331,-0.527191,-0.494507,-0.394226,-0.24115,-0.069397,0.0994568,0.267853,0.436096,0.578644,0.652679,0.631683,0.547058,0.448181,0.371063,0.323212,0.295105,0.292877,0.338715,0.429382,0.530792,0.608521,0.637665,0.618469,0.569733,0.495758,0.398865,0.301544,0.235443,0.217865,0.246918,0.294037,0.332275,0.357239,0.367523,0.360138,0.313232,0.219452,0.0925598,-0.029541,-0.124298,-0.190948,-0.248047,-0.298126,-0.337128,-0.363892,-0.38623,-0.426178,-0.493073,-0.574707,-0.644501,-0.688995,-0.706848,-0.702698,-0.672882,-0.612885,-0.529877,-0.44986,-0.401337,-0.382965,-0.389465,-0.412079,-0.45047,-0.492828,-0.506989,-0.46524,-0.360138,-0.213623,-0.0585327,0.102417,0.262085,0.417999,0.530121,0.562622,0.509247,0.4198,0.339661,0.286652,0.25766,0.249725,0.286102,0.378326,0.511536,0.638123,0.717102,0.743744,0.728516,0.688385,0.608246,0.491943,0.373077,0.297455,0.278717,0.300476,0.327911,0.34256,0.345917,0.341949,0.317993,0.247101,0.121155,-0.0318909,-0.173706,-0.28006,-0.358246,-0.42041,-0.471802,-0.5047,-0.512604,-0.505646,-0.515503,-0.555511,-0.605377,-0.64209,-0.653412,-0.646454,-0.627838,-0.590485,-0.528717,-0.446899,-0.368988,-0.321625,-0.302094,-0.304626,-0.3302,-0.373016,-0.412476,-0.409668,-0.348602,-0.240479,-0.112213,0.0151672,0.151337,0.299591,0.437042,0.512146,0.491211,0.396698,0.293884,0.224762,0.189209,0.176025,0.186188,0.250275,0.377716,0.53952,0.682831,0.768585,0.793488,0.777985,0.732025,0.644287,0.519196,0.394775,0.324158,0.31778,0.351196,0.376648,0.378845,0.366577,0.351196,0.317261,0.226776,0.0764465,-0.102631,-0.263489,-0.385376,-0.467102,-0.53537,-0.590729,-0.623169,-0.626099,-0.614166,-0.615021,-0.63028,-0.653015,-0.666107,-0.658203,-0.631866,-0.596588,-0.546509,-0.479584,-0.397797,-0.321686,-0.274109,-0.254028,-0.261139,-0.290192,-0.321808,-0.331207,-0.295441,-0.217255,-0.112885,0.00134277,0.121216,0.258118,0.398865,0.504578,0.520538,0.444427,0.321198,0.220337,0.1633,0.12973,0.107239,0.124298,0.219727,0.386566,0.565491,0.699463,0.76947,0.791138,0.777527,0.719543,0.605774,0.45813,0.34021,0.30188,0.325378,0.359131,0.373749,0.377594,0.387451,0.391815,0.351013,0.232269,0.0502014,-0.141418,-0.303345,-0.422485,-0.516235,-0.602203,-0.664093,-0.68927,-0.679871,-0.656311,-0.651611,-0.661407,-0.668182,-0.664368,-0.644226,-0.616302,-0.582214,-0.530731,-0.456726,-0.373749,-0.307648,-0.273438,-0.2612,-0.262482,-0.278107,-0.294708,-0.289856,-0.236786,-0.139191,-0.0222778,0.0959778,0.21759,0.345428,0.469543,0.545227,0.529449,0.423431,0.283417,0.180542,0.126373,0.103699,0.098053,0.13739,0.254028,0.431152,0.612488,0.747314,0.805023,0.800873,0.758331,0.675171,0.545715,0.394226,0.283813,0.253815,0.282562,0.320618,0.344421,0.362274,0.384705,0.395355,0.347778,0.21402,0.0204163,-0.179871,-0.34671,-0.475647,-0.583618,-0.683014,-0.747711,-0.757446,-0.721802,-0.669525,-0.640259,-0.630798,-0.624847,-0.607666,-0.579254,-0.55188,-0.531555,-0.50235,-0.445648,-0.372955,-0.311676,-0.279877,-0.264893,-0.259521,-0.258331,-0.244629,-0.217316,-0.157867,-0.0611267,0.0578613,0.179993,0.290802,0.382874,0.458252,0.498718,0.47348,0.375031,0.241486,0.136047,0.0809937,0.0809326,0.12323,0.201477,0.325958,0.482758,0.637115,0.759735,0.81189,0.788849,0.716766,0.606659,0.470459,0.339996,0.25,0.226044,0.260925,0.317719,0.370483,0.407196,0.423706,0.41095,0.3396,0.196655,-0.00765991,-0.233765,-0.432831,-0.581665,-0.680267,-0.747925,-0.77887,-0.763214,-0.714417,-0.650055,-0.595367,-0.574554,-0.576965,-0.581085,-0.576569,-0.56308,-0.548981,-0.526581,-0.475311,-0.401001,-0.325836,-0.268188,-0.230133,-0.21283,-0.203552,-0.180542,-0.139801,-0.072876,0.00973511,0.100525,0.198456,0.297638,0.387909,0.459045,0.485901,0.443756,0.339661,0.227386,0.149323,0.111603,0.109924,0.145508,0.231537,0.368195,0.527039,0.667328,0.757782,0.776581,0.732544,0.650879,0.531799,0.390015,0.265503,0.199005,0.211212,0.276367,0.351746,0.414886,0.454712,0.464355,0.424774,0.316162,0.138,-0.091217,-0.322479,-0.513153,-0.64444,-0.725769,-0.767059,-0.762543,-0.718597,-0.660126,-0.596985,-0.551941,-0.542419,-0.5578,-0.57959,-0.594421,-0.595032,-0.583954,-0.555511,-0.494354,-0.412018,-0.3255,-0.245422,-0.186646,-0.16153,-0.153961,-0.136902,-0.0971069,-0.0287781,0.0470581,0.124756,0.211945,0.29953,0.381134,0.448914,0.473694,0.42804,0.320679,0.214081,0.155853,0.14035,0.154236,0.198578,0.285583,0.414215,0.559662,0.682953,0.750061,0.73645,0.66095,0.567047,0.454498,0.323975,0.21524,0.170868,0.213165,0.304504,0.392944,0.456909,0.479858,0.46048,0.396637,0.269806,0.0750427,-0.165985,-0.401337,-0.578125,-0.686646,-0.735229,-0.7388,-0.710663,-0.660339,-0.6008,-0.541626,-0.5065,-0.515839,-0.559784,-0.603424,-0.629333,-0.630066,-0.60965,-0.566925,-0.48941,-0.388672,-0.288177,-0.203278,-0.145508,-0.125763,-0.130737,-0.124634,-0.0853577,-0.0180664,0.0506592,0.122284,0.205566,0.293823,0.376434,0.443756,0.467926,0.420471,0.309998,0.207733,0.160187,0.153961,0.174164,0.22757,0.321808,0.447113,0.575043,0.682678,0.739471,0.713348,0.620667,0.51001,0.396515,0.281616,0.199249,0.187653,0.248993,0.345093,0.429382,0.483093,0.490417,0.452148,0.365112,0.218109,0.00778198,-0.237244,-0.457123,-0.606781,-0.683838,-0.705231,-0.695221,-0.658783,-0.60556,-0.55719,-0.51886,-0.507324,-0.538849,-0.599609,-0.651398,-0.675964,-0.663086,-0.62616,-0.561066,-0.462067,-0.349792,-0.250671,-0.171143,-0.11731,-0.103638,-0.121399,-0.129333,-0.100342,-0.03302,0.0465088,0.12851,0.223022,0.314484,0.395294,0.462738,0.486176,0.432281,0.312897,0.202271,0.153839,0.150543,0.172546,0.229675,0.327576,0.450348,0.574768,0.673279,0.716766,0.681824,0.582214,0.470276,0.36322,0.259796,0.191803,0.196503,0.266113,0.362762,0.439056,0.482269,0.484497,0.432892,0.332886,0.179718,-0.0263062,-0.256439,-0.455963,-0.583221,-0.644897,-0.656982,-0.641998,-0.603973,-0.562897,-0.53537,-0.521423,-0.526093,-0.563477,-0.625427,-0.675964,-0.695099,-0.674286,-0.623566,-0.543549,-0.438446,-0.328918,-0.234558,-0.160278,-0.114166,-0.104645,-0.131073,-0.153839,-0.136841,-0.0672607,0.032135,0.131409,0.232422,0.322968,0.404968,0.471619,0.500671,0.457458,0.341217,0.211395,0.14328,0.141022,0.171478,0.227844,0.314087,0.434631,0.560944,0.66095,0.708801,0.680206,0.57489,0.450409,0.348602,0.25946,0.191071,0.178986,0.24585,0.354156,0.440002,0.480591,0.473907,0.420868,0.325836,0.185181,-0.00704956,-0.234833,-0.437531,-0.566315,-0.616852,-0.623688,-0.607391,-0.573364,-0.537048,-0.519653,-0.51416,-0.523224,-0.559937,-0.622955,-0.681335,-0.702484,-0.675507,-0.616302,-0.532349,-0.427582,-0.321014,-0.226654,-0.157257,-0.117523,-0.112488,-0.141876,-0.174286,-0.166382,-0.103363,-0.00845337,0.0925598,0.20517,0.319275,0.415039,0.479797,0.503235,0.466248,0.362885,0.238739,0.157104,0.129608,0.131073,0.16925,0.262695,0.40744,0.550659,0.651886,0.700195,0.685242,0.600677,0.479248,0.371338,0.269928,0.188324,0.168915,0.226776,0.326721,0.411469,0.470215,0.493164,0.460724,0.372162,0.236572,0.0491333,-0.171143,-0.375305,-0.516235,-0.592957,-0.62384,-0.616638,-0.579987,-0.536163,-0.512817,-0.508057,-0.525421,-0.560333,-0.613617,-0.663086,-0.691467,-0.688721,-0.645447,-0.567047,-0.464355,-0.354828,-0.2565,-0.179596,-0.128601,-0.109406,-0.126923,-0.169006,-0.190002,-0.151489,-0.0505981,0.0751648,0.197052,0.30719,0.392426,0.456238,0.493896,0.48999,0.421814,0.294037,0.174713,0.115845,0.116241,0.157867,0.237579,0.356445,0.491333,0.602814,0.672699,0.687714,0.629944,0.504822,0.374634,0.271881,0.193146,0.158325,0.190796,0.282013,0.387177,0.462402,0.49939,0.486725,0.420135,0.304962,0.141205,-0.0699463,-0.288055,-0.463074,-0.565918,-0.608307,-0.609802,-0.58316,-0.538116,-0.506256,-0.495911,-0.500671,-0.524231,-0.565582,-0.623962,-0.672943,-0.695435,-0.672424,-0.606903,-0.511536,-0.403961,-0.304779,-0.221069,-0.15744,-0.123566,-0.114899,-0.139526,-0.178314,-0.17865,-0.112091,0.00631714,0.131195,0.247589,0.349182,0.417389,0.454041,0.468048,0.446564,0.364014,0.244843,0.151947,0.117371,0.130402,0.180206,0.284698,0.427032,0.552429,0.62738,0.656311,0.640137,0.56308,0.442413,0.332001,0.238739,0.163361,0.155518,0.228851,0.346161,0.441223,0.490814,0.50531,0.475891,0.391357,0.255249,0.0675049,-0.158997,-0.367645,-0.512421,-0.580597,-0.602692,-0.597992,-0.564148,-0.51712,-0.48999,-0.485443,-0.498718,-0.534088,-0.586639,-0.648529,-0.689392,-0.696228,-0.662476,-0.590485,-0.485626,-0.369202,-0.267578,-0.191956,-0.144012,-0.110474,-0.0983276,-0.125366,-0.164642,-0.165161,-0.0924072,0.0377197,0.169189,0.280548,0.356323,0.393951,0.421875,0.44812,0.442963,0.36322,0.236572,0.133972,0.0968323,0.114624,0.182068,0.307037,0.454895,0.563141,0.614349,0.62851,0.609589,0.533234,0.413208,0.302551,0.208588,0.145905,0.159271,0.257324,0.390137,0.484039,0.523102,0.530212,0.490326,0.389191,0.235107,0.0311279,-0.197174,-0.408508,-0.545563,-0.593292,-0.593353,-0.569519,-0.524963,-0.479004,-0.461151,-0.474365,-0.502014,-0.539856,-0.60498,-0.682831,-0.731262,-0.728851,-0.678314,-0.593079,-0.480591,-0.357727,-0.252563,-0.17926,-0.12027,-0.0758972,-0.0641479,-0.100677,-0.153961,-0.167053,-0.106232,0.0200806,0.162415,0.281006,0.346252,0.378662,0.417236,0.465973,0.475647,0.397797,0.259399,0.136047,0.0751648,0.0838928,0.163208,0.296234,0.436981,0.536591,0.584442,0.60611,0.595642,0.533478,0.421356,0.297302,0.187042,0.127991,0.152557,0.260254,0.392334,0.484619,0.52832,0.538116,0.501892,0.405365,0.253357,0.0465088,-0.185699,-0.39624,-0.527924,-0.572876,-0.563019,-0.532074,-0.491547,-0.454895,-0.44101,-0.45462,-0.487732,-0.539673,-0.617584,-0.70343,-0.760132,-0.762817,-0.708923,-0.609192,-0.47934,-0.347931,-0.242493,-0.166107,-0.100281,-0.0467834,-0.02771,-0.0741577,-0.166656,-0.228577,-0.191467,-0.0461731,0.132538,0.262482,0.327301,0.353546,0.404572,0.486389,0.534149,0.465515,0.292145,0.116455,0.0250854,0.0326843,0.111877,0.235718,0.37677,0.494843,0.569397,0.61087,0.622742,0.586304,0.483032,0.343903,0.214355,0.134491,0.140533,0.239136,0.379852,0.478912,0.520874,0.537445,0.529449,0.463898,0.32254,0.119263,-0.116364,-0.344696,-0.50946,-0.571075,-0.555359,-0.515228,-0.480682,-0.458801,-0.448792,-0.456512,-0.481598,-0.527924,-0.614349,-0.721405,-0.804504,-0.814911,-0.752411,-0.639404,-0.500275,-0.364624,-0.255768,-0.174164,-0.0941467,-0.0166321,0.0167236,-0.0276489,-0.143005,-0.251678,-0.262421,-0.144012,0.0591125,0.232758,0.325043,0.352753,0.385651,0.468048,0.547791,0.538116,0.387177,0.169525,0.00491333,-0.0381165,0.0311279,0.155518,0.295837,0.418121,0.506317,0.565247,0.603485,0.610931,0.551331,0.424835,0.26825,0.140533,0.107727,0.188049,0.333954,0.460205,0.516846,0.53241,0.541412,0.524963,0.437653,0.271332,0.0413513,-0.213348,-0.423096,-0.531891,-0.530273,-0.481689,-0.449463,-0.447723,-0.460815,-0.467529,-0.476227,-0.503632,-0.581879,-0.701874,-0.810455,-0.84845,-0.799255,-0.695892,-0.563812,-0.42804,-0.31189,-0.225647,-0.145966,-0.0603333,-0.000946045,-0.0108643,-0.0983887,-0.21637,-0.29068,-0.256104,-0.101074,0.115173,0.28952,0.373962,0.397797,0.429596,0.505249,0.56543,0.518524,0.337311,0.104889,-0.0567017,-0.0732117,0.0335693,0.185181,0.324036,0.432007,0.526428,0.60498,0.650879,0.641479,0.551819,0.394226,0.216583,0.0906677,0.077301,0.1763,0.32019,0.433502,0.493561,0.529388,0.556854,0.546631,0.456848,0.274567,0.0212708,-0.237854,-0.433685,-0.52771,-0.527771,-0.48941,-0.457245,-0.455048,-0.469604,-0.471954,-0.466705,-0.489868,-0.578583,-0.707245,-0.808044,-0.833008,-0.776703,-0.667236,-0.533356,-0.406586,-0.306854,-0.228119,-0.15033,-0.0681763,-0.0158386,-0.0263062,-0.105316,-0.221222,-0.300323,-0.261017,-0.0930176,0.129517,0.297729,0.372955,0.396027,0.431,0.50296,0.554626,0.501617,0.31839,0.0914001,-0.0594482,-0.0681152,0.0396118,0.188324,0.328247,0.442291,0.538605,0.614227,0.655762,0.64035,0.544159,0.377838,0.193542,0.0632324,0.0440979,0.13739,0.288055,0.426849,0.507843,0.552155,0.580811,0.570404,0.48175,0.297638,0.0465088,-0.217194,-0.427856,-0.539459,-0.543427,-0.489319,-0.444885,-0.438782,-0.453827,-0.460205,-0.455902,-0.476715,-0.552338,-0.6745,-0.786652,-0.832092,-0.789398,-0.68161,-0.551208,-0.427704,-0.326233,-0.241333,-0.160675,-0.0809937,-0.0196533,-0.0102539,-0.0654907,-0.159454,-0.246246,-0.257721,-0.151733,0.04422,0.244629,0.364838,0.404022,0.4133,0.451935,0.508453,0.513885,0.399719,0.190948,-0.000946045,-0.0743103,-0.00933838,0.132141,0.276245,0.397461,0.498657,0.582764,0.62973,0.616364,0.533966,0.396027,0.229248,0.081604,0.0101929,0.0555115,0.193756,0.36731,0.506256,0.577637,0.596375,0.575897,0.513428,0.381348,0.168915,-0.0999451,-0.358398,-0.524841,-0.564819,-0.505432,-0.431274,-0.395905,-0.401337,-0.416656,-0.422424,-0.436432,-0.490265,-0.595703,-0.722961,-0.815033,-0.830261,-0.761475,-0.639862,-0.502228,-0.370544,-0.267517,-0.189392,-0.120667,-0.0467224,0.00436401,-0.0015564,-0.065979,-0.160126,-0.237854,-0.229675,-0.104156,0.0960388,0.280212,0.381531,0.414825,0.42981,0.469055,0.518982,0.51059,0.39035,0.181885,0,-0.0594482,0.0115356,0.153412,0.287048,0.396362,0.477783,0.535095,0.564758,0.548584,0.476654,0.343018,0.178253,0.0349731,-0.019989,0.0477295,0.206635,0.387909,0.512695,0.55899,0.557587,0.530609,0.468994,0.334686,0.111267,-0.16095,-0.401154,-0.530273,-0.530457,-0.449188,-0.365112,-0.328583,-0.339539,-0.368256,-0.392334,-0.421936,-0.482544,-0.595825,-0.730591,-0.827179,-0.837311,-0.75296,-0.60965,-0.453033,-0.320679,-0.228912,-0.16449,-0.103149,-0.0307922,0.0151672,0.00476074,-0.0609436,-0.152344,-0.223907,-0.228516,-0.125153,0.0618896,0.25531,0.382202,0.438049,0.461731,0.491882,0.532074,0.531677,0.426514,0.221222,0.0132751,-0.0836792,-0.0383301,0.0910034,0.221558,0.329193,0.419342,0.487915,0.529541,0.527313,0.467865,0.34671,0.184845,0.0310669,-0.0517578,-0.0167236,0.12793,0.314819,0.462219,0.526855,0.535706,0.519867,0.470947,0.35498,0.151276,-0.103485,-0.3349,-0.46759,-0.484619,-0.416718,-0.332214,-0.286102,-0.290344,-0.32605,-0.363434,-0.405762,-0.474365,-0.582947,-0.709808,-0.805359,-0.827637,-0.753357,-0.613159,-0.453705,-0.31778,-0.228058,-0.169342,-0.114685,-0.0516663,-0.000274658,0.0088501,-0.0307922,-0.101685,-0.168396,-0.20108,-0.152283,0.00241089,0.215698,0.400543,0.491547,0.510925,0.50827,0.523346,0.533966,0.478241,0.31778,0.0856323,-0.0972595,-0.131958,-0.0265198,0.124634,0.245422,0.335785,0.410187,0.46402,0.482483,0.454041,0.366119,0.210052,0.0265198,-0.112488,-0.14328,-0.0534363,0.125977,0.326569,0.470062,0.522491,0.512878,0.474426,0.406769,0.276978,0.0793152,-0.149658,-0.339996,-0.433685,-0.416779,-0.327637,-0.238922,-0.206787,-0.235107,-0.298523,-0.358917,-0.404297,-0.460052,-0.552765,-0.668396,-0.747192,-0.736725,-0.634033,-0.490204,-0.350861,-0.250732,-0.200745,-0.178467,-0.143433,-0.0739746,-0.00335693,0.016449,-0.024292,-0.0873108,-0.130127,-0.132965,-0.0618896,0.0873108,0.264099,0.390533,0.430481,0.429138,0.430603,0.449524,0.457977,0.396515,0.239319,0.0288696,-0.109802,-0.102875,0.0103455,0.13028,0.20871,0.276306,0.3461,0.395782,0.407318,0.374908,0.283234,0.13147,-0.0314026,-0.13382,-0.13147,-0.0236206,0.146637,0.324707,0.444641,0.484039,0.482422,0.462219,0.403503,0.274689,0.0810852,-0.128723,-0.295227,-0.375763,-0.359589,-0.277649,-0.209381,-0.203949,-0.243408,-0.288177,-0.320679,-0.353821,-0.408508,-0.493744,-0.595306,-0.667328,-0.666229,-0.584229,-0.468323,-0.366241,-0.290405,-0.235901,-0.179657,-0.100739,-0.00100708,0.0832825,0.106567,0.0733643,0.0176392,-0.0287781,-0.0624084,-0.0605469,0.0128784,0.141754,0.268066,0.343964,0.381622,0.411285,0.440948,0.451599,0.408112,0.279541,0.0812073,-0.100281,-0.176117,-0.136993,-0.0493164,0.0413513,0.136169,0.238983,0.31308,0.341003,0.328308,0.270203,0.153961,-0.00430298,-0.138062,-0.191345,-0.140747,-0.00234985,0.180206,0.351685,0.463287,0.512939,0.515503,0.474426,0.375153,0.212891,0.0151062,-0.172028,-0.296844,-0.331482,-0.280731,-0.191742,-0.131409,-0.128174,-0.160522,-0.194366,-0.215424,-0.252625,-0.33847,-0.467529,-0.588715,-0.645569,-0.619324,-0.536377,-0.431946,-0.324829,-0.217651,-0.121002,-0.0343628,0.0424194,0.108337,0.140411,0.114899,0.0359802,-0.0532837,-0.123901,-0.165497,-0.144684,-0.0484009,0.0972595,0.246918,0.355652,0.420532,0.445435,0.434631,0.392334,0.298981,0.140137,-0.0667114,-0.230011,-0.283356,-0.225494,-0.102692,0.0402832,0.177521,0.280945,0.32663,0.317444,0.27652,0.195312,0.065979,-0.0910645,-0.219788,-0.263489,-0.186249,-0.00296021,0.222412,0.422272,0.536591,0.56604,0.533356,0.454712,0.332886,0.170074,-0.0128784,-0.177917,-0.272766,-0.276428,-0.201874,-0.0925598,-0.0112,0.0142822,-0.0174561,-0.0767212,-0.151276,-0.239532,-0.346313,-0.462891,-0.554504,-0.592743,-0.553284,-0.448456,-0.309875,-0.172546,-0.0682678,-0.00784302,0.0171204,0.0306091,0.0476379,0.0500793,0.017395,-0.04953,-0.118927,-0.164429,-0.174896,-0.132629,-0.0279846,0.114502,0.242737,0.305634,0.313141,0.298737,0.27243,0.234283,0.162811,0.0421448,-0.124634,-0.2612,-0.290741,-0.212402,-0.0851135,0.0273743,0.115906,0.178802,0.212738,0.209137,0.178802,0.117859,0.00967407,-0.122345,-0.229858,-0.250122,-0.155243,0.0358276,0.254242,0.432831,0.529266,0.547119,0.525238,0.472961,0.379852,0.242218,0.0821533,-0.0577087,-0.13678,-0.132812,-0.0542297,0.0552368,0.129181,0.126312,0.0619507,-0.0181274,-0.0887146,-0.162201,-0.253479,-0.361481,-0.449921,-0.484497,-0.451599,-0.368134,-0.273285,-0.187927,-0.124176,-0.0906067,-0.0822754,-0.0789795,-0.0561829,-0.0310669,-0.0326233,-0.0606079,-0.0932922,-0.114105,-0.13147,-0.14389,-0.12262,-0.0620728,0.0162964,0.0919495,0.146973,0.180145,0.183838,0.174774,0.157715,0.110535,0.00598145,-0.143097,-0.250732,-0.28067,-0.237976,-0.147308,-0.041626,0.0549011,0.115509,0.14209,0.146118,0.133484,0.0819397,-0.0105286,-0.108337,-0.178802,-0.184509,-0.0907288,0.092804,0.291748,0.449341,0.537048,0.567108,0.561951,0.507996,0.415039,0.29187,0.161407,0.0508118,-0.00146484,0.0163879,0.0783997,0.155029,0.196045,0.188446,0.131805,0.053772,-0.0267639,-0.107666,-0.206909,-0.317047,-0.396118,-0.432281,-0.418182,-0.361664,-0.288177,-0.213684,-0.164215,-0.139801,-0.131073,-0.115295,-0.092804,-0.0764465,-0.077301,-0.0971069,-0.131409,-0.164886,-0.191803,-0.221008,-0.230927,-0.203705,-0.123016,-0.0119324,0.0747681,0.125977,0.151611,0.157104,0.144836,0.100067,0.0118103,-0.126495,-0.261536,-0.336243,-0.325165,-0.242828,-0.131073,-0.0170593,0.0734863,0.123566,0.132965,0.125305,0.107574,0.0636292,-0.013031,-0.104431,-0.159851,-0.123352,0.0216064,0.228241,0.429657,0.561279,0.601624,0.596497,0.572083,0.529327,0.458191,0.351288,0.227173,0.12851,0.0926208,0.123688,0.199799,0.262482,0.265106,0.203033,0.108734,0.024353,-0.0360413,-0.105438,-0.207397,-0.312073,-0.377655,-0.388184,-0.354492,-0.31073,-0.272491,-0.247528,-0.23764,-0.23584,-0.22699,-0.204163,-0.178253,-0.1604,-0.158325,-0.177856,-0.206238,-0.230072,-0.251953,-0.284485,-0.315826,-0.303223,-0.209869,-0.0691223,0.0455017,0.101959,0.120331,0.126984,0.122498,0.0900574,0.00195312,-0.148193,-0.305786,-0.388184,-0.353302,-0.229004,-0.0877991,0.0247803,0.11087,0.173096,0.205505,0.215424,0.199188,0.147308,0.0502014,-0.070343,-0.148712,-0.11731,0.0401306,0.256714,0.452759,0.573883,0.625977,0.649658,0.651276,0.619995,0.529541,0.390808,0.240753,0.126251,0.0796509,0.104034,0.175293,0.235046,0.241333,0.195648,0.140015,0.102081,0.0686646,0.00396729,-0.115906,-0.25235,-0.353363,-0.39267,-0.386505,-0.37851,-0.374237,-0.361816,-0.331482,-0.294098,-0.257263,-0.216095,-0.181549,-0.160065,-0.162964,-0.185364,-0.217255,-0.257263,-0.306976,-0.365906,-0.41214,-0.41153,-0.330536,-0.177704,-0.024231,0.078186,0.125641,0.138458,0.133698,0.100464,0.0216064,-0.116699,-0.281555,-0.399139,-0.403503,-0.295715,-0.133881,0.0184021,0.14389,0.242737,0.299072,0.309113,0.27597,0.202148,0.0920715,-0.0371094,-0.128723,-0.131744,-0.0168457,0.177032,0.389801,0.573303,0.686859,0.734894,0.731689,0.682007,0.583893,0.442963,0.287323,0.157104,0.0873718,0.0900574,0.15564,0.243011,0.299133,0.296722,0.250061,0.184296,0.108917,0.0148315,-0.112946,-0.256378,-0.37207,-0.443024,-0.467377,-0.467773,-0.448181,-0.410004,-0.35556,-0.306641,-0.269135,-0.240997,-0.221344,-0.209534,-0.211273,-0.22818,-0.257599,-0.295441,-0.334167,-0.369995,-0.391205,-0.394348,-0.341156,-0.220001,-0.0599976,0.074707,0.142883,0.157379,0.145233,0.119812,0.0706787,-0.0142822,-0.141815,-0.280334,-0.356323,-0.31839,-0.18161,-0.0241089,0.092804,0.161133,0.205383,0.233154,0.236969,0.211884,0.141754,0.0349121,-0.0828247,-0.153076,-0.131073,-0.0015564,0.199066,0.403351,0.57074,0.673615,0.718262,0.722748,0.682343,0.589264,0.442871,0.282745,0.155304,0.102692,0.125031,0.203949,0.299408,0.352966,0.344971,0.289001,0.215637,0.133423,0.0348206,-0.0912781,-0.247864,-0.389465,-0.470062,-0.474365,-0.444977,-0.427246,-0.427032,-0.421478,-0.392883,-0.347931,-0.297516,-0.261078,-0.249329,-0.25705,-0.272949,-0.287109,-0.294769,-0.304352,-0.331329,-0.36557,-0.386444,-0.364563,-0.270874,-0.112152,0.0592041,0.175171,0.220734,0.218536,0.192963,0.142487,0.049469,-0.0832214,-0.236847,-0.352203,-0.376312,-0.286316,-0.116577,0.053833,0.17981,0.252411,0.285309,0.280121,0.2341,0.149811,0.0387268,-0.0719604,-0.152161,-0.170868,-0.0917358,0.0878601,0.310059,0.504822,0.630798,0.689056,0.691864,0.654297,0.569794,0.445892,0.301331,0.183228,0.126495,0.137238,0.194489,0.278717,0.360138,0.397919,0.367584,0.280731,0.168396,0.0585938,-0.0459595,-0.156311,-0.278046,-0.390411,-0.460266,-0.470215,-0.446777,-0.425629,-0.404633,-0.364502,-0.312897,-0.26825,-0.244019,-0.233765,-0.238464,-0.258514,-0.287598,-0.322021,-0.346588,-0.355499,-0.345917,-0.319458,-0.279388,-0.229523,-0.154083,-0.0485229,0.0620117,0.130127,0.132019,0.089325,0.0317383,-0.0296631,-0.0906677,-0.154572,-0.215973,-0.262024,-0.259003,-0.185364,-0.0579224,0.0727539,0.159607,0.197784,0.211151,0.209381,0.187592,0.135162,0.0569153,-0.0302734,-0.0967712,-0.116455,-0.0597229,0.0826721,0.270416,0.45752,0.606445,0.690277,0.710876,0.681396,0.607574,0.500732,0.37088,0.246704,0.164429,0.144775,0.18161,0.258392,0.344574,0.398529,0.400482,0.360657,0.279114,0.168396,0.0340271,-0.121399,-0.282898,-0.431335,-0.535309,-0.564697,-0.536438,-0.489197,-0.43457,-0.364838,-0.291473,-0.229675,-0.204437,-0.21759,-0.261139,-0.32074,-0.381073,-0.428986,-0.45047,-0.449585,-0.427368,-0.374908,-0.298859,-0.220398,-0.137787,-0.0505371,0.0377197,0.101074,0.113281,0.0846252,0.0428772,0.00112915,-0.0380554,-0.068512,-0.100128,-0.142151,-0.160278,-0.128448,-0.0462341,0.0553589,0.140808,0.18811,0.200531,0.194641,0.173279,0.139343,0.0774536,-0.00891113,-0.0877991,-0.121887,-0.0881958,0.0147705,0.177032,0.351196,0.508057,0.619995,0.669525,0.660797,0.606049,0.515289,0.403015,0.290283,0.20697,0.179138,0.217102,0.290802,0.369934,0.419128,0.425354,0.388,0.308197,0.190216,0.0535583,-0.0843506,-0.230927,-0.366516,-0.452545,-0.467773,-0.434845,-0.395966,-0.372742,-0.353821,-0.328125,-0.304626,-0.297516,-0.320129,-0.36322,-0.402008,-0.423035,-0.428528,-0.419525,-0.387054,-0.335114,-0.286499,-0.249054,-0.222809,-0.194214,-0.149536,-0.0898132,-0.0279846,0.017395,0.0343628,0.0346985,0.0389404,0.0366516,0.0265808,0.00415039,-0.0436096,-0.114227,-0.169342,-0.167389,-0.115509,-0.0341492,0.0399475,0.0922241,0.127045,0.154968,0.170746,0.161621,0.112427,0.0280457,-0.0495911,-0.078186,-0.0462341,0.0516052,0.201752,0.381073,0.554626,0.681549,0.733612,0.719879,0.667999,0.578857,0.456238,0.329987,0.233429,0.198395,0.229675,0.305023,0.387177,0.441803,0.449188,0.399048,0.30368,0.175171,0.0249634,-0.131348,-0.285248,-0.425964,-0.523438,-0.556641,-0.536835,-0.491882,-0.446777,-0.412354,-0.384979,-0.368042,-0.370819,-0.389069,-0.414093,-0.437775,-0.448334,-0.440002,-0.415497,-0.371399,-0.308044,-0.242279,-0.182343,-0.13147,-0.0971069,-0.0663757,-0.028656,0.0189209,0.06604,0.101288,0.112885,0.103973,0.0838928,0.0624695,0.0405273,-0.00289917,-0.0704651,-0.133026,-0.150269,-0.115448,-0.0498047,0.0269775,0.0888062,0.135986,0.17981,0.199921,0.173492,0.0917969,-0.0176392,-0.104492,-0.144226,-0.13269,-0.0643005,0.0748901,0.270996,0.479126,0.645355,0.733826,0.742065,0.678925,0.566162,0.420135,0.277435,0.176117,0.145508,0.18811,0.27478,0.379608,0.468109,0.511871,0.487579,0.386169,0.228394,0.0476379,-0.12558,-0.285156,-0.418335,-0.503479,-0.532562,-0.505096,-0.448181,-0.395447,-0.36731,-0.362549,-0.361664,-0.357574,-0.367188,-0.398529,-0.420471,-0.414307,-0.387848,-0.353821,-0.318665,-0.275513,-0.236511,-0.213287,-0.198181,-0.186768,-0.166901,-0.132477,-0.0843506,-0.0158997,0.0552368,0.106384,0.130951,0.132202,0.102478,0.0557861,0.00012207,-0.069458,-0.142883,-0.195374,-0.193298,-0.13208,-0.0311279,0.0701904,0.149597,0.216644,0.249054,0.237915,0.178711,0.0899353,-0.00140381,-0.069458,-0.0871277,-0.045105,0.0657654,0.239532,0.435974,0.612427,0.71933,0.743347,0.69632,0.60733,0.488403,0.351135,0.232758,0.15686,0.155243,0.21524,0.296295,0.364899,0.399597,0.397919,0.343628,0.241425,0.091217,-0.081543,-0.242401,-0.378601,-0.479675,-0.542267,-0.563416,-0.544281,-0.497314,-0.444092,-0.403564,-0.371826,-0.347931,-0.332825,-0.335632,-0.364624,-0.401886,-0.421875,-0.413025,-0.384827,-0.350739,-0.313477,-0.264374,-0.189728,-0.0959778,-0.0169678,0.03302,0.0533447,0.057312,0.0646362,0.0822754,0.0919495,0.0808716,0.0515442,0.017395,-0.000335693,0.00643921,0.0158997,0.00744629,-0.00900269,-0.0189819,-0.00738525,0.036499,0.100739,0.155029,0.179596,0.170074,0.131409,0.0809937,0.0361633,-0.00396729,-0.0223389,-0.00537109,0.0396729,0.119659,0.240814,0.392273,0.531677,0.611877,0.608643,0.536438,0.444824,0.354828,0.278778,0.221741,0.181946,0.178131,0.214569,0.275757,0.334961,0.368256,0.353485,0.282349,0.161621,0.00778198,-0.147034,-0.273895,-0.360748,-0.420746,-0.469879,-0.495697,-0.490204,-0.450592,-0.402069,-0.370941,-0.362152,-0.368195,-0.370148,-0.371948,-0.375763,-0.370392,-0.354218,-0.328735,-0.306915,-0.278656,-0.232819,-0.170349,-0.105774,-0.0514832,-0.0113525,0.0159607,0.0323486,0.0516663,0.0764465,0.104767,0.118652,0.122498,0.115631,0.101196,0.094635,0.0909424,0.0822754,0.0567932,0.0235596,0.00308228,0.0038147,0.0280457,0.0585327,0.0830994,0.0909424,0.0865173,0.073822,0.0426025,0.00213623,-0.0444946,-0.0720215,-0.0677185,-0.040802,0.00952148,0.094635,0.220398,0.357849,0.465851,0.508453,0.484558,0.428986,0.353638,0.264954,0.187531,0.136322,0.134369,0.18457,0.262085,0.337921,0.390198,0.402161,0.360809,0.264709,0.12027,-0.0446167,-0.196045,-0.315247,-0.395844,-0.450134,-0.468872,-0.441071,-0.378113,-0.309784,-0.265564,-0.247101,-0.255432,-0.280792,-0.314301,-0.353088,-0.386505,-0.403625,-0.38739,-0.342896,-0.286316,-0.222626,-0.139343,-0.0418091,0.0312805,0.0646362,0.0662537,0.0526733,0.0346985,0.0270996,0.0404053,0.057312,0.077179,0.10202,0.121887,0.139801,0.152008,0.141418,0.10498,0.0440369,-0.0269165,-0.0873718,-0.11618,-0.105896,-0.062561,0.000213623,0.0522766,0.0846252,0.0897217,0.0657654,0.0158386,-0.0496521,-0.107788,-0.14859,-0.155304,-0.101807,0.0204163,0.190674,0.35907,0.480865,0.531128,0.519073,0.463287,0.37384,0.268799,0.172424,0.10791,0.101074,0.154572,0.238922,0.326447,0.393433,0.402008,0.351624,0.251801,0.11087,-0.0425415,-0.179382,-0.288055,-0.365295,-0.399994,-0.385498,-0.3367,-0.271759,-0.227386,-0.218384,-0.229462,-0.251343,-0.275238,-0.304565,-0.338593,-0.366699,-0.364899,-0.323303,-0.258392,-0.187378,-0.126709,-0.0758972,-0.0353088,-0.0116882,-0.0114136,-0.0299988,-0.049408,-0.0638123,-0.0646973,-0.0306702,0.020874,0.0752258,0.116974,0.138733,0.134827,0.117645,0.0841064,0.0307312,-0.0359192,-0.102081,-0.15033,-0.15155,-0.0977783,-0.0163879,0.0622864,0.113007,0.138733,0.130188,0.0861206,0.0228882,-0.0397949,-0.0861206,-0.111328,-0.100006,-0.0383911,0.0874634,0.255585,0.404419,0.48941,0.491821,0.432739,0.349182,0.263214,0.179138,0.109467,0.0759583,0.0935669,0.164703,0.255493,0.329987,0.370667,0.360199,0.296387,0.186035,0.0457153,-0.0997314,-0.218536,-0.292358,-0.326111,-0.328979,-0.30014,-0.251068,-0.197906,-0.163086,-0.15918,-0.183411,-0.217987,-0.249603,-0.283356,-0.31424,-0.331879,-0.315033,-0.259796,-0.184845,-0.115906,-0.061676,-0.0162964,0.0114136,0.0180664,0.0020752,-0.0310059,-0.0693359,-0.10321,-0.114777,-0.0871277,-0.0296631,0.0421448,0.105499,0.138062,0.135315,0.114777,0.0791931,0.0190735,-0.061554,-0.144684,-0.206512,-0.225891,-0.189209,-0.103973,0.00280762,0.0956421,0.141693,0.136444,0.0875244,0.0148315,-0.061554,-0.118591,-0.155518,-0.159454,-0.107391,0.016571,0.19342,0.369141,0.488739,0.525574,0.497864,0.430542,0.343414,0.247986,0.158203,0.104828,0.110077,0.170471,0.255493,0.340149,0.390869,0.385834,0.325897,0.22403,0.0969849,-0.0354309,-0.153839,-0.248779,-0.313019,-0.337585,-0.315979,-0.266968,-0.214081,-0.184235,-0.184753,-0.210266,-0.236176,-0.255096,-0.281342,-0.314575,-0.33255,-0.310944,-0.259674,-0.199341,-0.143555,-0.0997925,-0.0636902,-0.0371704,-0.0245667,-0.0263672,-0.0402832,-0.0567017,-0.0661011,-0.0524902,-0.00369263,0.0643616,0.128601,0.171539,0.182953,0.159729,0.118988,0.0640869,-0.00616455,-0.0894775,-0.166321,-0.200073,-0.185852,-0.131073,-0.0555725,0.0324707,0.0987854,0.116852,0.0819397,0.00570679,-0.0805359,-0.162628,-0.215179,-0.23053,-0.20578,-0.128448,0.00302124,0.174774,0.339325,0.449249,0.480804,0.446228,0.375977,0.284821,0.187988,0.111816,0.0762329,0.0963135,0.158722,0.238525,0.318054,0.379059,0.394165,0.348663,0.265045,0.153168,0.0366516,-0.0587158,-0.132812,-0.183685,-0.210999,-0.218719,-0.203156,-0.171143,-0.149048,-0.163422,-0.196564,-0.231476,-0.255249,-0.263824,-0.272949,-0.281616,-0.276581,-0.24765,-0.210815,-0.173889,-0.14328,-0.129852,-0.126648,-0.117188,-0.103149,-0.0875244,-0.0706787,-0.0557861,-0.0422058,-0.0101318,0.0469055,0.110138,0.165375,0.184357,0.153168,0.097168,0.0505371,0.0185852,-0.0167847,-0.0675049,-0.118317,-0.141205,-0.115509,-0.0449524,0.0507507,0.130402,0.16095,0.131073,0.0592041,-0.0232849,-0.107178,-0.17981,-0.228394,-0.24408,-0.212219,-0.119324,0.0369263,0.213562,0.348938,0.404968,0.381073,0.312225,0.216766,0.112946,0.0176392,-0.0395203,-0.0500793,-0.00958252,0.0869751,0.218201,0.350525,0.44101,0.451599,0.387177,0.279663,0.157593,0.0341492,-0.0727539,-0.1586,-0.215515,-0.228912,-0.190552,-0.117035,-0.046051,-0.0142822,-0.0290527,-0.0663147,-0.107452,-0.147308,-0.193756,-0.24115,-0.271942,-0.273773,-0.245178,-0.195709,-0.139587,-0.0883789,-0.0535583,-0.0308838,-0.0151062,-0.00564575,-0.0174561,-0.0444946,-0.0699463,-0.0792542,-0.0591125,-0.00650024,0.0577087,0.108246,0.124359,0.104095,0.0654907,0.0261841,-0.0194702,-0.085907,-0.156433,-0.20462,-0.208527,-0.167786,-0.0948181,-0.00924683,0.0553589,0.0759583,0.0387878,-0.0412903,-0.124908,-0.18866,-0.225159,-0.234283,-0.206635,-0.130615,-0.0140381,0.130341,0.265289,0.354553,0.373169,0.329468,0.261261,0.190338,0.129181,0.0873108,0.0774536,0.110535,0.184235,0.283966,0.380859,0.438934,0.438446,0.376923,0.281006,0.177795,0.0842285,-0.00717163,-0.0889893,-0.151886,-0.182007,-0.172882,-0.13974,-0.107178,-0.0996094,-0.122406,-0.155243,-0.182068,-0.197662,-0.207581,-0.220062,-0.229401,-0.225983,-0.206635,-0.178986,-0.144684,-0.105499,-0.0721436,-0.0515442,-0.0381775,-0.0248413,-0.00726318,0.0108643,0.0167236,0.0102539,0.00872803,0.0220032,0.049469,0.0814209,0.0960388,0.0761108,0.0283813,-0.0169067,-0.0435486,-0.065918,-0.103424,-0.1604,-0.201813,-0.207306,-0.175629,-0.115295,-0.0467224,-0.00576782,-0.0178528,-0.070282,-0.13208,-0.177856,-0.205383,-0.223816,-0.22757,-0.197723,-0.126312,-0.0178528,0.121552,0.261536,0.355103,0.375824,0.33905,0.286591,0.237457,0.191132,0.145233,0.114685,0.126251,0.190002,0.289612,0.387512,0.451599,0.46048,0.421417,0.350006,0.260468,0.163757,0.0636292,-0.0273743,-0.0995178,-0.144897,-0.15686,-0.137177,-0.101013,-0.0726929,-0.0761719,-0.113556,-0.16153,-0.19101,-0.200073,-0.207306,-0.224487,-0.241333,-0.241547,-0.226044,-0.202606,-0.177368,-0.156586,-0.141541,-0.126099,-0.113159,-0.104034,-0.104645,-0.109192,-0.104706,-0.0773926,-0.0296021,0.0179749,0.0476379,0.0557861,0.0421448,0.0184021,-0.00616455,-0.025177,-0.0475159,-0.0871277,-0.13028,-0.146179,-0.119263,-0.0562439,0.0183105,0.0767212,0.0968323,0.0677185,0.00222778,-0.0714111,-0.135101,-0.176575,-0.196991,-0.197784,-0.162201,-0.0758362,0.0493164,0.184631,0.291412,0.339142,0.330261,0.284027,0.221893,0.155762,0.0919495,0.0511475,0.0504761,0.101624,0.199005,0.308533,0.399139,0.445038,0.444214,0.39389,0.311218,0.221222,0.128448,0.0359802,-0.0461121,-0.105438,-0.126923,-0.106323,-0.0674438,-0.0428772,-0.044281,-0.0733643,-0.111145,-0.144958,-0.169189,-0.191803,-0.220123,-0.244293,-0.250214,-0.233276,-0.205841,-0.187317,-0.176849,-0.162537,-0.140198,-0.123016,-0.120544,-0.122681,-0.129608,-0.132294,-0.119324,-0.0858459,-0.0361023,0.0157776,0.050415,0.0522156,0.0237732,-0.0129395,-0.0397949,-0.0561218,-0.0855103,-0.134369,-0.175018,-0.177795,-0.133698,-0.0579834,0.0263062,0.0874634,0.0975952,0.0608826,-0.0113525,-0.0885925,-0.145905,-0.177246,-0.185974,-0.168518,-0.114777,-0.01651,0.123352,0.273895,0.382629,0.421265,0.392609,0.326385,0.252625,0.179199,0.112488,0.0691833,0.0739746,0.134491,0.237061,0.348602,0.431549,0.461273,0.436432,0.363495,0.262207,0.15329,0.0420227,-0.0704041,-0.170074,-0.227509,-0.228119,-0.183838,-0.12323,-0.0719604,-0.0516052,-0.0635681,-0.0847778,-0.109589,-0.135223,-0.171539,-0.214172,-0.251617,-0.269806,-0.259125,-0.227386,-0.182617,-0.133423,-0.0895386,-0.0583191,-0.0470581,-0.053772,-0.0725403,-0.0939636,-0.107239,-0.100006,-0.0699463,-0.0344849,-0.0017395,0.0245667,0.0297241,0.012207,-0.0171814,-0.048645,-0.089386,-0.147705,-0.204773,-0.229919,-0.202026,-0.130463,-0.0384521,0.04422,0.0869751,0.0742188,0.0137024,-0.0644226,-0.13208,-0.177917,-0.202087,-0.198669,-0.147858,-0.0412903,0.109406,0.270477,0.39624,0.451538,0.428986,0.356171,0.265442,0.17337,0.0933533,0.0426025,0.0452881,0.114624,0.233429,0.358124,0.447845,0.48114,0.457581,0.384491,0.275177,0.148987,0.0317993,-0.0646973,-0.14035,-0.184509,-0.184418,-0.141083,-0.0799866,-0.0304565,-0.0179138,-0.041748,-0.0863647,-0.13208,-0.171753,-0.207581,-0.235291,-0.246765,-0.23819,-0.216705,-0.190674,-0.164825,-0.132629,-0.0991211,-0.0789185,-0.0759583,-0.0890503,-0.113953,-0.136047,-0.141022,-0.12027,-0.0753784,-0.0216675,0.0198669,0.0357666,0.029541,0.00616455,-0.0259094,-0.0555725,-0.0899353,-0.144501,-0.204163,-0.238922,-0.217987,-0.145844,-0.0419312,0.0555725,0.108185,0.10376,0.0434875,-0.0425415,-0.12384,-0.186188,-0.226379,-0.237976,-0.202881,-0.110992,0.0317993,0.199738,0.34671,0.436523,0.446991,0.396454,0.313568,0.221802,0.129456,0.0583191,0.0377808,0.0770569,0.177856,0.307373,0.425293,0.49469,0.502472,0.452362,0.362946,0.252411,0.134308,0.012085,-0.102478,-0.190613,-0.223145,-0.194763,-0.128662,-0.0609436,-0.0196533,-0.0196533,-0.0476379,-0.085907,-0.126984,-0.172821,-0.224976,-0.273956,-0.304779,-0.309448,-0.282806,-0.230408,-0.164825,-0.106171,-0.0662537,-0.0473938,-0.0487366,-0.0687866,-0.102692,-0.12793,-0.128937,-0.103424,-0.0559692,-0.00128174,0.0457764,0.0646362,0.0510864,0.0163879,-0.0171204,-0.0527649,-0.105103,-0.175354,-0.225372,-0.225372,-0.172363,-0.0894775,0.00314331,0.0690613,0.0830994,0.0367737,-0.0454407,-0.130859,-0.200409,-0.246765,-0.264954,-0.228455,-0.136993,-0.00576782,0.147461,0.29483,0.402283,0.436096,0.393555,0.308441,0.212555,0.129791,0.0656433,0.0405273,0.0739746,0.164154,0.295563,0.427582,0.514954,0.530548,0.483154,0.394012,0.285583,0.166718,0.0491333,-0.0553589,-0.136658,-0.175964,-0.161469,-0.108734,-0.0479736,-0.0088501,-0.0071106,-0.0375061,-0.08255,-0.134827,-0.19101,-0.246979,-0.289124,-0.30954,-0.306641,-0.283966,-0.243164,-0.190796,-0.134308,-0.0926208,-0.0719604,-0.0672607,-0.0752869,-0.103149,-0.139069,-0.152344,-0.130066,-0.0747681,-0.00671387,0.053009,0.079071,0.0680542,0.0420227,0.0151672,-0.00866699,-0.0481262,-0.109741,-0.167664,-0.188385,-0.155701,-0.0842285,0.00738525,0.0848999,0.115784,0.0887146,0.0062561,-0.090332,-0.171356,-0.216766,-0.232697,-0.22757,-0.18866,-0.104095,0.0254211,0.173035,0.297638,0.360077,0.346771,0.277771,0.185364,0.0978394,0.0350342,0.00430298,0.0151062,0.0756226,0.185089,0.31543,0.43161,0.49826,0.503296,0.448181,0.351959,0.23819,0.131622,0.0424194,-0.036377,-0.0952454,-0.112274,-0.0761108,-0.00604248,0.0568542,0.0776367,0.0523376,-0.00357056,-0.070282,-0.131622,-0.187103,-0.240662,-0.285706,-0.306854,-0.301819,-0.269653,-0.220673,-0.171417,-0.138397,-0.127319,-0.133484,-0.150726,-0.180664,-0.212891,-0.228729,-0.215424,-0.172211,-0.103546,-0.0299988,0.0246277,0.0418701,0.0288696,0.00262451,-0.0152283,-0.0328064,-0.0676575,-0.117249,-0.148987,-0.138458,-0.0791931,0.0151062,0.112671,0.175842,0.177032,0.120544,0.0280457,-0.0599365,-0.115692,-0.145569,-0.163879,-0.157654,-0.10965,-0.0163879,0.113892,0.243011,0.334442,0.359589,0.316711,0.229584,0.138397,0.0668335,0.0108032,-0.0171814,0.00012207,0.0717468,0.182068,0.298309,0.389679,0.430817,0.421143,0.355774,0.259796,0.162201,0.074707,-0.00827026,-0.0883789,-0.140259,-0.139404,-0.0896606,-0.019989,0.0327454,0.049408,0.0267639,-0.0234375,-0.0818176,-0.122833,-0.147797,-0.179047,-0.22113,-0.254028,-0.261932,-0.24054,-0.201874,-0.164764,-0.139526,-0.137238,-0.144501,-0.161133,-0.180939,-0.191742,-0.185516,-0.160522,-0.118805,-0.0704041,-0.0289917,-0.00958252,-0.0133667,-0.037262,-0.0612793,-0.0745544,-0.0926819,-0.123169,-0.145355,-0.140015,-0.100677,-0.0266418,0.0649719,0.14209,0.174774,0.146515,0.0721436,-0.0143738,-0.0786438,-0.110077,-0.121063,-0.114624,-0.0736389,0.00765991,0.127167,0.258789,0.360199,0.404572,0.387726,0.32489,0.238312,0.151886,0.0718079,0.0109253,-0.00650024,0.0282593,0.119812,0.238403,0.343353,0.402893,0.405762,0.360748,0.276306,0.175842,0.0724182,-0.0310059,-0.130188,-0.209381,-0.231812,-0.189331,-0.108795,-0.0324097,0.00430298,-0.000671387,-0.0323486,-0.0751648,-0.119659,-0.162415,-0.206238,-0.250214,-0.275696,-0.280792,-0.259796,-0.210999,-0.156982,-0.120209,-0.109192,-0.115631,-0.132019,-0.150055,-0.162079,-0.162689,-0.13974,-0.0948181,-0.0414734,0.00891113,0.0343018,0.028656,-0.00515747,-0.0412903,-0.0604553,-0.085022,-0.127502,-0.161072,-0.160797,-0.110138,-0.0212097,0.0833435,0.169861,0.205109,0.174957,0.0908813,-0.00717163,-0.0885925,-0.143158,-0.168732,-0.163361,-0.112762,-0.0158997,0.124756,0.279602,0.407104,0.465302,0.437988,0.350006,0.238739,0.12912,0.0306091,-0.0419312,-0.0598755,-0.00979614,0.104431,0.249725,0.375092,0.444366,0.443085,0.375153,0.267853,0.148987,0.0260925,-0.0959167,-0.210938,-0.284485,-0.283905,-0.207733,-0.0997925,-0.00933838,0.0343628,0.0261841,-0.0124817,-0.0649719,-0.116241,-0.163422,-0.212006,-0.255432,-0.274109,-0.259064,-0.218048,-0.163147,-0.105225,-0.0655823,-0.0609436,-0.0820923,-0.113098,-0.133423,-0.138916,-0.126984,-0.0990601,-0.053009,-0.0017395,0.03302,0.0405273,0.019989,-0.0177917,-0.0587769,-0.0898743,-0.130005,-0.177246,-0.198059,-0.171753,-0.0935669,0.00939941,0.103363,0.156647,0.157776,0.103027,0.0105896,-0.0836792,-0.161469,-0.213837,-0.228729,-0.194885,-0.106567,0.0285339,0.193817,0.350281,0.452423,0.469788,0.410522,0.304779,0.185974,0.0821533,-0.0065918,-0.0545654,-0.0383911,0.0480652,0.190002,0.351074,0.473572,0.519928,0.481476,0.376495,0.243561,0.109253,-0.0212097,-0.145111,-0.245026,-0.29007,-0.260468,-0.165649,-0.0541077,0.027771,0.0536804,0.0230103,-0.0369873,-0.101288,-0.155579,-0.210724,-0.269531,-0.312561,-0.318512,-0.287109,-0.223572,-0.147369,-0.0869751,-0.061554,-0.0720215,-0.100342,-0.119263,-0.121552,-0.113281,-0.0949707,-0.060791,-0.0126038,0.0350342,0.0724182,0.0851135,0.0622864,0.0146179,-0.0400696,-0.0908813,-0.135223,-0.167053,-0.166107,-0.123352,-0.0369873,0.0646362,0.136841,0.161621,0.136383,0.0568542,-0.049469,-0.153564,-0.236389,-0.284637,-0.282074,-0.217926,-0.0996704,0.0624084,0.230072,0.364105,0.430267,0.414703,0.326447,0.199585,0.073761,-0.0238953,-0.078125,-0.0710754,-0.00369263,0.127838,0.301544,0.463898,0.559601,0.56308,0.476898,0.336365,0.182281,0.0303345,-0.106567,-0.208466,-0.2612,-0.242889,-0.154358,-0.0350342,0.0617371,0.114502,0.112213,0.0540161,-0.0380554,-0.134644,-0.214233,-0.275513,-0.316986,-0.332336,-0.313019,-0.253754,-0.170013,-0.0935669,-0.0522156,-0.0578613,-0.0913391,-0.12738,-0.152161,-0.163879,-0.158783,-0.12973,-0.0792542,-0.0171814,0.036438,0.0699463,0.0779724,0.0555115,0.0134277,-0.0434875,-0.109131,-0.1633,-0.179932,-0.151611,-0.0818176,0.0161133,0.106323,0.161011,0.168732,0.122009,0.0301208,-0.0753784,-0.171204,-0.2453,-0.283691,-0.263428,-0.174103,-0.0241699,0.155518,0.313629,0.413025,0.430481,0.367523,0.249939,0.11853,0.000671387,-0.0885315,-0.121063,-0.0834351,0.0246887,0.188599,0.363892,0.495087,0.542603,0.502747,0.390533,0.248779,0.101135,-0.0396118,-0.160126,-0.233887,-0.234772,-0.16275,-0.0454407,0.0662537,0.137787,0.15686,0.125916,0.0502014,-0.0450439,-0.137238,-0.221741,-0.289124,-0.325714,-0.318848,-0.268738,-0.192871,-0.116119,-0.0662537,-0.0593872,-0.0909424,-0.138245,-0.18161,-0.207123,-0.216309,-0.202606,-0.163147,-0.104218,-0.0444336,0.0071106,0.0463867,0.0507507,0.0246277,-0.0279846,-0.0972595,-0.165649,-0.204712,-0.194763,-0.132202,-0.0293884,0.0784607,0.155975,0.194366,0.186707,0.124298,0.0270996,-0.0714722,-0.158051,-0.21759,-0.22757,-0.176453,-0.0583801,0.111877,0.28537,0.406647,0.453217,0.423553,0.325043,0.190002,0.0533447,-0.0546265,-0.106781,-0.0963135,-0.0262451,0.106567,0.281342,0.435181,0.522217,0.5159,0.420593,0.279449,0.124298,-0.0230103,-0.144958,-0.229462,-0.256104,-0.206238,-0.0894775,0.039856,0.131958,0.161011,0.130402,0.0571899,-0.0353699,-0.133148,-0.229523,-0.304169,-0.342133,-0.339996,-0.29129,-0.212677,-0.129272,-0.0708008,-0.0588684,-0.098053,-0.167175,-0.227112,-0.262268,-0.263824,-0.23645,-0.194092,-0.137726,-0.0683289,0.0015564,0.0484009,0.0533447,0.0238953,-0.0265808,-0.0963135,-0.16745,-0.210999,-0.201752,-0.128387,-0.0144348,0.101746,0.189209,0.236847,0.233368,0.182953,0.0996094,-0.00396729,-0.114838,-0.195099,-0.213837,-0.158936,-0.0354919,0.132141,0.30484,0.444427,0.515381,0.500732,0.410339,0.271667,0.116974,-0.0229492,-0.108582,-0.12262,-0.049408,0.0964355,0.270081,0.415558,0.497772,0.496582,0.411346,0.270264,0.102417,-0.0726318,-0.227997,-0.333008,-0.353363,-0.282684,-0.154419,-0.0246277,0.0681763,0.111206,0.102203,0.0458374,-0.0424805,-0.143494,-0.240662,-0.320282,-0.370209,-0.370483,-0.312286,-0.218719,-0.122955,-0.0595398,-0.0522766,-0.0864563,-0.133087,-0.168243,-0.183624,-0.177368,-0.165497,-0.147583,-0.108917,-0.0512085,0.00610352,0.0381775,0.0363159,0.0088501,-0.0471191,-0.114349,-0.171539,-0.191803,-0.161621,-0.0882568,0.00201416,0.0854492,0.154755,0.191406,0.183075,0.137451,0.0575867,-0.0441589,-0.141418,-0.188934,-0.164978,-0.0699463,0.0777283,0.24295,0.399597,0.516235,0.563568,0.526764,0.414825,0.258667,0.0963135,-0.0328064,-0.103821,-0.0897217,0.0193176,0.187531,0.356995,0.475647,0.517639,0.477325,0.366638,0.197784,-0.00241089,-0.200928,-0.36322,-0.446442,-0.419342,-0.301086,-0.147125,-0.0151062,0.0686035,0.0971069,0.0750427,0.00463867,-0.0985107,-0.214294,-0.329193,-0.417572,-0.451813,-0.414703,-0.318726,-0.197784,-0.0920715,-0.036377,-0.0359192,-0.0612183,-0.0881958,-0.108582,-0.124023,-0.140198,-0.15094,-0.136169,-0.0991821,-0.0448914,0.00631714,0.0358276,0.0371094,0.00497437,-0.0467834,-0.0966492,-0.122162,-0.110321,-0.0678406,-0.0105896,0.045105,0.0975952,0.134552,0.14328,0.127106,0.081604,0.00296021,-0.0857849,-0.138672,-0.124634,-0.0444946,0.078186,0.21228,0.342133,0.44812,0.504089,0.49173,0.415222,0.290802,0.143097,0.0162354,-0.0583801,-0.04953,0.0384521,0.174377,0.317657,0.431274,0.483704,0.456055,0.359192,0.210541,0.0260925,-0.167511,-0.336578,-0.427582,-0.414032,-0.319,-0.189941,-0.0687866,0.0195312,0.0649109,0.062561,0.0102539,-0.0820007,-0.200195,-0.322815,-0.422485,-0.469452,-0.452545,-0.386658,-0.289398,-0.186768,-0.111938,-0.0726929,-0.0555115,-0.0457153,-0.0354919,-0.0420837,-0.078064,-0.120331,-0.140472,-0.129059,-0.0958252,-0.0545654,-0.0143738,0.0110168,0.015625,0.00985718,0.00302124,0.0115967,0.0354919,0.0563049,0.0671692,0.0675964,0.0624084,0.0567932,0.0567017,0.058136,0.0403442,-0.00765991,-0.0515442,-0.0545044,-0.0050354,0.0820007,0.178131,0.264709,0.334106,0.378052,0.389526,0.360596,0.292084,0.19516,0.0984497,0.0294495,0.00671387,0.0513306,0.148712,0.265625,0.363953,0.415771,0.41214,0.364624,0.269073,0.125153,-0.0458374,-0.214233,-0.336914,-0.375641,-0.330872,-0.238983,-0.143097,-0.0649109,-0.012085,0.0144958,0.00732422,-0.0397949,-0.131348,-0.250549,-0.370331,-0.45752,-0.48941,-0.463623,-0.395844,-0.312561,-0.243164,-0.186371,-0.125916,-0.0565796,0.0108032,0.0452881,0.0179138,-0.0502625,-0.113434,-0.145355,-0.146912,-0.124359,-0.0932922,-0.0571289,-0.0189209,0.0266418,0.0770569,0.131805,0.181488,0.204437,0.190552,0.140594,0.0777283,0.0370483,0.0224304,0.0152893,-0.00100708,-0.025238,-0.0357666,-0.00262451,0.0735474,0.167328,0.249664,0.300537,0.33075,0.344238,0.329803,0.275513,0.193024,0.108978,0.0401917,0.00314331,0.00967407,0.0748291,0.184631,0.299072,0.372894,0.387909,0.35498,0.285095,0.180145,0.0484009,-0.101013,-0.24054,-0.327972,-0.334106,-0.269653,-0.1745,-0.0932312,-0.0424194,-0.0161743,-0.012085,-0.0339661,-0.0826721,-0.152679,-0.242279,-0.330994,-0.396301,-0.421143,-0.399475,-0.345978,-0.293701,-0.262146,-0.234222,-0.185974,-0.106323,-0.0184021,0.0322266,0.0202026,-0.0287781,-0.0773926,-0.109863,-0.123749,-0.131531,-0.140808,-0.138245,-0.108459,-0.0514832,0.0297241,0.130188,0.217377,0.262604,0.252289,0.197571,0.130005,0.0742188,0.0357666,-0.00161743,-0.0488586,-0.08255,-0.0640869,0.0222778,0.152954,0.287323,0.384369,0.435242,0.444977,0.422272,0.358337,0.259918,0.144104,0.0356445,-0.0420837,-0.0617981,-0.0050354,0.116302,0.25885,0.367462,0.41745,0.40274,0.3367,0.221954,0.0632935,-0.116119,-0.285248,-0.406036,-0.437988,-0.381866,-0.267181,-0.144623,-0.053772,-0.00112915,0.0160522,-0.00866699,-0.0715332,-0.157654,-0.255157,-0.353363,-0.421753,-0.439392,-0.404358,-0.333435,-0.2612,-0.215027,-0.181396,-0.139465,-0.0862427,-0.0241699,0.0212708,0.0225525,-0.0106812,-0.0454407,-0.0682678,-0.0769043,-0.081604,-0.0957642,-0.111816,-0.105499,-0.0716248,-0.0147705,0.0657043,0.151001,0.216583,0.243835,0.218445,0.165039,0.11853,0.0794067,0.0275269,-0.0361633,-0.0884705,-0.0964966,-0.0432739,0.065094,0.202026,0.327057,0.419403,0.467865,0.475494,0.435089,0.336792,0.19812,0.0577087,-0.0433655,-0.0839539,-0.0588684,0.0367737,0.178467,0.320404,0.420593,0.454834,0.422211,0.324707,0.164551,-0.0363159,-0.239075,-0.398468,-0.472626,-0.457062,-0.36731,-0.241821,-0.123016,-0.0312195,0.0293274,0.0430298,0.00274658,-0.0879822,-0.214569,-0.345428,-0.446838,-0.502563,-0.50766,-0.456848,-0.376709,-0.294952,-0.208649,-0.110748,-0.00430298,0.0843506,0.111084,0.0697937,-0.00323486,-0.069519,-0.118988,-0.147522,-0.15625,-0.15564,-0.132477,-0.0833435,-0.00509644,0.0978394,0.205048,0.271484,0.283356,0.248657,0.178131,0.105774,0.0614014,0.0383911,0.0150452,-0.0187378,-0.0422668,-0.0268555,0.0564575,0.180206,0.283234,0.34491,0.376587,0.389191,0.38269,0.342224,0.2659,0.170532,0.0734863,-0.00448608,-0.0303955,0.00665283,0.0963135,0.208313,0.300812,0.353027,0.36142,0.328247,0.247864,0.124756,-0.0379944,-0.214233,-0.348846,-0.40274,-0.379669,-0.307983,-0.227112,-0.158051,-0.0972595,-0.0499268,-0.0322876,-0.0577087,-0.126251,-0.229736,-0.340607,-0.431549,-0.482422,-0.483948,-0.455505,-0.416779,-0.363098,-0.27243,-0.138397,0.00738525,0.115631,0.150055,0.112762,0.0345764,-0.0440369,-0.107574,-0.15799,-0.199799,-0.217651,-0.186646,-0.102539,0.0332336,0.194824,0.333008,0.404419,0.391876,0.299805,0.176575,0.0789795,0.0167236,-0.0355835,-0.0814209,-0.0991211,-0.0549011,0.0666504,0.230927,0.369537,0.446167,0.459198,0.424896,0.36261,0.280121,0.181549,0.0832825,0.00732422,-0.0345764,-0.0229492,0.0475159,0.162201,0.281403,0.35907,0.366852,0.320801,0.252411,0.168732,0.0556335,-0.0908813,-0.234711,-0.324554,-0.334351,-0.278534,-0.203552,-0.145233,-0.11377,-0.0923462,-0.0807495,-0.0907288,-0.132355,-0.205719,-0.292755,-0.37149,-0.435181,-0.468994,-0.463745,-0.432281,-0.397705,-0.353302,-0.278717,-0.171265,-0.0532227,0.0361023,0.0686646,0.0426941,-0.00952148,-0.0555115,-0.0952454,-0.133026,-0.175903,-0.205902,-0.185516,-0.0918884,0.0567017,0.209534,0.325836,0.377594,0.358337,0.289062,0.208466,0.138123,0.0737,0.00134277,-0.0638123,-0.0829468,-0.0149536,0.13147,0.302002,0.434509,0.50174,0.511414,0.475037,0.401886,0.294373,0.172089,0.0534363,-0.0412903,-0.077179,-0.0317383,0.0740967,0.208588,0.324646,0.378601,0.367798,0.31134,0.21463,0.0877991,-0.0631409,-0.223145,-0.349945,-0.395111,-0.353638,-0.263428,-0.168518,-0.0962524,-0.0563049,-0.0464478,-0.0624084,-0.105713,-0.181732,-0.281616,-0.38208,-0.461334,-0.504364,-0.504028,-0.475037,-0.430267,-0.365631,-0.274689,-0.162354,-0.049408,0.0360413,0.0662537,0.0409546,-0.0104065,-0.0566406,-0.104095,-0.154236,-0.200745,-0.228058,-0.204285,-0.108856,0.045105,0.212677,0.341278,0.392944,0.362762,0.288727,0.20697,0.141693,0.0758362,-0.00112915,-0.0700684,-0.0906677,-0.024353,0.124176,0.304962,0.444031,0.515778,0.533295,0.499542,0.421356,0.316772,0.20282,0.0863037,-0.0114746,-0.062561,-0.0420227,0.052948,0.188446,0.305969,0.369049,0.377441,0.337036,0.248718,0.125244,-0.032959,-0.20282,-0.337708,-0.391998,-0.365112,-0.288849,-0.202759,-0.128387,-0.0725403,-0.037262,-0.0322266,-0.0704651,-0.150146,-0.254761,-0.364685,-0.462738,-0.527863,-0.541687,-0.518921,-0.467773,-0.385223,-0.276306,-0.154633,-0.0409546,0.0299988,0.0434875,0.013031,-0.0354919,-0.0934143,-0.156982,-0.214355,-0.253082,-0.259125,-0.202362,-0.072876,0.0974426,0.247864,0.340332,0.363007,0.329803,0.270935,0.20752,0.143433,0.074646,0.00436401,-0.0400696,-0.0191956,0.0830078,0.23645,0.373688,0.463287,0.508179,0.50705,0.460938,0.385559,0.297852,0.202423,0.10141,0.0229492,-0.00241089,0.0367126,0.121002,0.207977,0.264771,0.289856,0.285645,0.244904,0.163635,0.0456238,-0.0954285,-0.223083,-0.3078,-0.330078,-0.306183,-0.261414,-0.204285,-0.145782,-0.0958252,-0.0710754,-0.0799866,-0.124023,-0.194763,-0.283569,-0.381287,-0.462952,-0.507111,-0.50235,-0.45343,-0.369659,-0.263275,-0.154572,-0.0569763,0.00323486,0.0114746,-0.0145569,-0.0619507,-0.11853,-0.18222,-0.238647,-0.270538,-0.260742,-0.183289,-0.0447083,0.108459,0.225372,0.275757,0.266449,0.23053,0.186432,0.137177,0.0858459,0.0359802,-0.00491333,-0.00698853,0.0533447,0.176971,0.316101,0.418518,0.466248,0.471619,0.440674,0.380127,0.30545,0.237305,0.172485,0.116302,0.0917358,0.118652,0.183563,0.253357,0.291626,0.291199,0.259857,0.203094,0.127441,0.0399475,-0.0597839,-0.152283,-0.21637,-0.234894,-0.210663,-0.176514,-0.150604,-0.134491,-0.127655,-0.127777,-0.141479,-0.167572,-0.208862,-0.263885,-0.32785,-0.394775,-0.444305,-0.452271,-0.415375,-0.346252,-0.262207,-0.180267,-0.0948181,-0.0212708,0.0148926,0.0062561,-0.0349121,-0.100464,-0.176697,-0.246857,-0.290466,-0.290527,-0.226379,-0.0913391,0.0758362,0.212158,0.273834,0.261932,0.21637,0.158508,0.0796509,-0.00698853,-0.0775757,-0.109802,-0.0819397,0.00946045,0.143829,0.287506,0.404694,0.478241,0.496643,0.452606,0.361542,0.258057,0.168915,0.107452,0.0667725,0.0669861,0.124756,0.212341,0.297791,0.348999,0.359131,0.332825,0.267792,0.171753,0.0542297,-0.073761,-0.17981,-0.2341,-0.234497,-0.197327,-0.149048,-0.106323,-0.0631409,-0.0381775,-0.0401306,-0.074707,-0.136383,-0.213898,-0.300751,-0.382538,-0.447052,-0.476379,-0.446442,-0.368713,-0.268402,-0.165649,-0.0794678,-0.00616455,0.037323,0.0357056,-0.00558472,-0.0730896,-0.152283,-0.224976,-0.275574,-0.295105,-0.259003,-0.151672,0.00845337,0.1633,0.25531,0.262207,0.217194,0.161957,0.0932312,-0.00424194,-0.10437,-0.169586,-0.174774,-0.112,0.00772095,0.159515,0.300812,0.403168,0.449524,0.436523,0.369263,0.272003,0.167114,0.0808716,0.0187988,-0.00924683,0.0249634,0.118378,0.228119,0.313019,0.34671,0.345306,0.316162,0.249878,0.142609,0.0126953,-0.108734,-0.186432,-0.21402,-0.196381,-0.154907,-0.10733,-0.0553589,-0.0119324,0.00918579,-0.00112915,-0.0426025,-0.109802,-0.201477,-0.308777,-0.401489,-0.451141,-0.435577,-0.359985,-0.261078,-0.157318,-0.0512085,0.0420227,0.10791,0.125641,0.0906677,0.0108032,-0.0947571,-0.202759,-0.279602,-0.304443,-0.263031,-0.154633,-0.00402832,0.148468,0.251282,0.2771,0.243683,0.181152,0.0987854,-0.0128174,-0.13382,-0.222137,-0.238861,-0.183289,-0.0750427,0.068512,0.218597,0.330658,0.384491,0.374237,0.312561,0.222229,0.119141,0.0206604,-0.0548401,-0.0851746,-0.0566406,0.0232239,0.132355,0.228119,0.282074,0.299072,0.279541,0.218658,0.118042,0.000274658,-0.115784,-0.194366,-0.225098,-0.207733,-0.151337,-0.0787354,-0.0108032,0.033905,0.0521545,0.0459595,0.0142212,-0.0472412,-0.141663,-0.255768,-0.346771,-0.379791,-0.345764,-0.259125,-0.151337,-0.040863,0.0552979,0.125488,0.165771,0.172607,0.13678,0.0549622,-0.0565186,-0.162811,-0.231079,-0.238739,-0.172821,-0.0509949,0.0856323,0.197784,0.261536,0.271667,0.231689,0.150055,0.0360413,-0.085907,-0.180542,-0.229675,-0.22403,-0.156586,-0.032959,0.108582,0.226105,0.29187,0.297974,0.259003,0.183899,0.0808105,-0.027771,-0.111542,-0.144165,-0.12149,-0.0516663,0.037323,0.125305,0.186707,0.209534,0.19046,0.129272,0.0370483,-0.0631409,-0.155243,-0.227448,-0.257843,-0.242401,-0.183563,-0.102356,-0.0287781,0.0137634,0.0232849,0.0114746,-0.0170593,-0.0673218,-0.138123,-0.218658,-0.276855,-0.283966,-0.229523,-0.132629,-0.0197449,0.0841064,0.169739,0.227448,0.249115,0.235443,0.185181,0.100952,0.00289917,-0.0799866,-0.127502,-0.108795,-0.0238342,0.0992737,0.216034,0.297241,0.326447,0.31012,0.246857,0.140015,0.0050354,-0.126434,-0.216187,-0.244354,-0.208374,-0.11261,0.0149536,0.145172,0.240326,0.273834,0.245911,0.169464,0.0661011,-0.0454407,-0.150665,-0.222137,-0.234833,-0.187103,-0.102295,-0.00576782,0.0787964,0.131866,0.14093,0.101746,0.0201416,-0.0837708,-0.182678,-0.260406,-0.30603,-0.314819,-0.291351,-0.233887,-0.155182,-0.0787354,-0.0284424,-0.012085,-0.0262451,-0.0608826,-0.115906,-0.188782,-0.257263,-0.284424,-0.262085,-0.198395,-0.101685,0.0144958,0.132629,0.238403,0.311615,0.339935,0.328583,0.276245,0.188995,0.0964355,0.0241089,-0.00912476,0.0135498,0.0932922,0.201538,0.304443,0.377106,0.407532,0.39563,0.329132,0.216248,0.0811462,-0.0386658,-0.117981,-0.15094,-0.139069,-0.0761108,0.0280457,0.140411,0.21994,0.245911,0.215759,0.14093,0.0403442,-0.0681763,-0.170746,-0.236847,-0.254761,-0.233551,-0.184845,-0.120209,-0.0525513,0.000396729,0.0132751,-0.0266418,-0.108063,-0.199188,-0.276245,-0.338135,-0.373749,-0.380188,-0.358002,-0.303101,-0.227051,-0.157043,-0.111877,-0.0923462,-0.098999,-0.13382,-0.189667,-0.24765,-0.278595,-0.272003,-0.226898,-0.143677,-0.0344849,0.0904846,0.21228,0.304352,0.352966,0.360657,0.325287,0.254822,0.175446,0.107391,0.069519,0.0832214,0.156525,0.265045,0.37262,0.452209,0.49173,0.486847,0.427643,0.319275,0.182007,0.0560303,-0.02771,-0.0661011,-0.0587769,-0.000396729,0.103821,0.21524,0.29068,0.309204,0.269257,0.184845,0.0721436,-0.0564575,-0.178131,-0.257782,-0.279724,-0.253418,-0.201691,-0.142609,-0.0819397,-0.037384,-0.0304565,-0.0769043,-0.172089,-0.283417,-0.376923,-0.446503,-0.489807,-0.498383,-0.463959,-0.389069,-0.299194,-0.22348,-0.177704,-0.160675,-0.165649,-0.206116,-0.275513,-0.342285,-0.368866,-0.347382,-0.279266,-0.172546,-0.0386658,0.106903,0.244843,0.344238,0.391022,0.383148,0.327515,0.244415,0.161011,0.0997925,0.0819397,0.125916,0.230469,0.357849,0.46463,0.530945,0.562683,0.547058,0.467926,0.335297,0.190613,0.0794678,0.0134888,-0.00604248,0.0212097,0.102478,0.220947,0.3284,0.378937,0.365906,0.305359,0.204285,0.0766296,-0.0575256,-0.172607,-0.248047,-0.270264,-0.2453,-0.193634,-0.126648,-0.0634766,-0.0312195,-0.0506592,-0.124969,-0.234772,-0.345764,-0.434357,-0.501007,-0.545563,-0.553101,-0.508179,-0.419678,-0.322693,-0.251556,-0.217865,-0.216766,-0.249786,-0.309601,-0.371735,-0.401886,-0.390411,-0.338135,-0.24939,-0.13208,0.00872803,0.152679,0.268799,0.32489,0.319794,0.272156,0.210938,0.158264,0.120605,0.110596,0.149384,0.234955,0.349945,0.457397,0.534027,0.569611,0.55719,0.483704,0.359802,0.222809,0.11972,0.0662537,0.0520935,0.0762939,0.151154,0.268188,0.385498,0.449402,0.436523,0.367035,0.263947,0.135223,-0.00357056,-0.126587,-0.201874,-0.221008,-0.191284,-0.137909,-0.0767212,-0.0224915,-0.0012207,-0.0354919,-0.128601,-0.254974,-0.375305,-0.46402,-0.524902,-0.559875,-0.559052,-0.5112,-0.423492,-0.34021,-0.286774,-0.266785,-0.275696,-0.31543,-0.37088,-0.419922,-0.440125,-0.421539,-0.366791,-0.274445,-0.15451,-0.0151062,0.12738,0.242218,0.304504,0.308136,0.26886,0.217987,0.172546,0.137512,0.122681,0.148193,0.224487,0.331146,0.435638,0.516907,0.558197,0.552155,0.493683,0.390869,0.271881,0.170807,0.103088,0.0712891,0.08255,0.141541,0.238525,0.335632,0.394623,0.397522,0.353546,0.268799,0.155365,0.0319519,-0.0766296,-0.149139,-0.182068,-0.182617,-0.156647,-0.118805,-0.0880432,-0.0748291,-0.0942993,-0.15329,-0.243286,-0.335907,-0.407379,-0.459595,-0.49585,-0.507843,-0.485168,-0.434082,-0.386505,-0.35733,-0.343689,-0.338715,-0.346039,-0.358978,-0.364899,-0.352295,-0.314301,-0.249939,-0.164764,-0.0697937,0.0302734,0.123627,0.197998,0.235962,0.234894,0.206787,0.176178,0.1539,0.15033,0.175903,0.236389,0.319519,0.403015,0.467926,0.512756,0.523834,0.489197,0.408325,0.30014,0.196899,0.124512,0.0918884,0.10141,0.152405,0.233368,0.328064,0.397797,0.412811,0.371155,0.288116,0.175171,0.0482483,-0.0743713,-0.16449,-0.208923,-0.204956,-0.168915,-0.118256,-0.0697327,-0.0453796,-0.0627441,-0.12558,-0.225891,-0.338043,-0.43222,-0.497589,-0.535156,-0.546112,-0.521881,-0.465363,-0.396637,-0.336517,-0.304901,-0.308136,-0.338654,-0.375366,-0.399139,-0.398193,-0.363434,-0.294373,-0.196381,-0.0848999,0.0311279,0.144501,0.240326,0.297516,0.297516,0.254089,0.205963,0.17215,0.162628,0.181274,0.234222,0.316986,0.406586,0.481598,0.531281,0.543213,0.508911,0.428986,0.323822,0.223022,0.143829,0.101807,0.110077,0.164978,0.250732,0.337646,0.397522,0.412354,0.375702,0.288269,0.167114,0.0380554,-0.0745544,-0.159515,-0.213745,-0.225372,-0.198853,-0.147919,-0.0991821,-0.078064,-0.100952,-0.164764,-0.257721,-0.361542,-0.453766,-0.520081,-0.557922,-0.567322,-0.539856,-0.488586,-0.424164,-0.367584,-0.334686,-0.333954,-0.351074,-0.369476,-0.37384,-0.364288,-0.336853,-0.278931,-0.19397,-0.0892029,0.0299988,0.14267,0.235168,0.286163,0.285309,0.255249,0.220459,0.202881,0.203217,0.220398,0.261261,0.324768,0.399658,0.474579,0.530334,0.550262,0.520325,0.447052,0.355438,0.268799,0.196838,0.158203,0.159729,0.199524,0.270752,0.344757,0.396027,0.411194,0.378387,0.298401,0.182617,0.0602112,-0.0553589,-0.146637,-0.199066,-0.214752,-0.20462,-0.171692,-0.138123,-0.127777,-0.154846,-0.221222,-0.311401,-0.399719,-0.477509,-0.538788,-0.579132,-0.586456,-0.560059,-0.510193,-0.450684,-0.401215,-0.379272,-0.383026,-0.397583,-0.400726,-0.38443,-0.350677,-0.296783,-0.223694,-0.132141,-0.0231628,0.0901489,0.187988,0.25531,0.275299,0.256165,0.223419,0.199799,0.196564,0.216522,0.254578,0.309326,0.370209,0.436432,0.49469,0.52832,0.520935,0.467987,0.381958,0.291473,0.21463,0.166779,0.159729,0.190613,0.257599,0.337708,0.403351,0.437531,0.428467,0.372955,0.278198,0.153961,0.0241699,-0.0899963,-0.167236,-0.205505,-0.213837,-0.187866,-0.143005,-0.107788,-0.107056,-0.151611,-0.229004,-0.322021,-0.419006,-0.503021,-0.567444,-0.603485,-0.606445,-0.578247,-0.524017,-0.469604,-0.433075,-0.41275,-0.39798,-0.380615,-0.361816,-0.343903,-0.307129,-0.248718,-0.172211,-0.0813293,0.0222168,0.123169,0.201874,0.2388,0.240662,0.23175,0.218872,0.214966,0.225372,0.252625,0.294159,0.34436,0.404419,0.467041,0.509125,0.512878,0.472229,0.399658,0.313293,0.232025,0.175629,0.162476,0.184753,0.238251,0.307709,0.371399,0.41275,0.413483,0.363495,0.276917,0.170929,0.056366,-0.0504761,-0.139252,-0.191406,-0.204041,-0.179871,-0.143677,-0.122833,-0.132477,-0.176117,-0.243408,-0.324707,-0.403839,-0.467773,-0.514099,-0.537781,-0.538788,-0.521088,-0.485962,-0.446838,-0.425171,-0.417114,-0.417786,-0.412537,-0.392883,-0.357178,-0.299805,-0.222961,-0.132355,-0.028595,0.0733643,0.16095,0.222351,0.243011,0.226044,0.194305,0.174164,0.179321,0.200073,0.236298,0.289062,0.355774,0.425842,0.483215,0.514282,0.504913,0.452881,0.366791,0.271271,0.189606,0.144958,0.139404,0.172821,0.243835,0.334686,0.40564,0.439331,0.423889,0.364838,0.268066,0.143555,0.0134888,-0.105652,-0.188324,-0.234039,-0.233032,-0.194641,-0.143951,-0.109467,-0.116699,-0.165771,-0.250275,-0.348938,-0.440674,-0.51651,-0.571289,-0.603638,-0.60202,-0.56424,-0.502228,-0.446777,-0.409332,-0.386169,-0.371735,-0.357788,-0.344818,-0.314636,-0.259857,-0.186035,-0.0960999,0.00497437,0.110657,0.198517,0.253235,0.272888,0.268982,0.255371,0.245514,0.24765,0.264832,0.298523,0.338715,0.388397,0.450195,0.501801,0.518463,0.493225,0.436096,0.360321,0.273499,0.1922,0.142212,0.138672,0.18335,0.253296,0.325104,0.383209,0.413208,0.393555,0.33075,0.227722,0.0983887,-0.0430908,-0.17691,-0.274841,-0.318665,-0.305573,-0.251617,-0.195221,-0.168671,-0.177368,-0.213959,-0.275238,-0.356567,-0.448792,-0.534698,-0.599792,-0.63208,-0.622223,-0.582611,-0.522217,-0.469788,-0.429871,-0.393555,-0.351074,-0.305969,-0.26236,-0.216095,-0.166443,-0.105499,-0.0268555,0.070282,0.160858,0.223907,0.252289,0.259674,0.264709,0.273956,0.289673,0.304291,0.319611,0.339874,0.369934,0.41684,0.468536,0.501617,0.502747,0.468872,0.404633,0.327576,0.251953,0.194214,0.163696,0.169861,0.219055,0.295837,0.368927,0.412354,0.413483,0.380188,0.308929,0.198456,0.0591125,-0.086792,-0.211609,-0.289185,-0.313354,-0.289398,-0.243683,-0.210327,-0.209259,-0.238739,-0.291931,-0.357849,-0.432159,-0.506042,-0.577515,-0.637451,-0.665558,-0.657867,-0.618134,-0.574432,-0.536438,-0.496765,-0.439728,-0.368469,-0.291473,-0.21106,-0.137573,-0.0666504,0.00167847,0.0766296,0.143097,0.18927,0.207794,0.209381,0.216248,0.242401,0.29187,0.352692,0.404175,0.435699,0.459198,0.491486,0.525635,0.538849,0.51001,0.450531,0.377594,0.30545,0.243744,0.206055,0.202606,0.229126,0.278046,0.335449,0.381348,0.40094,0.389862,0.343414,0.256836,0.135651,-0.00189209,-0.125092,-0.217102,-0.276642,-0.300476,-0.288666,-0.247101,-0.212952,-0.20813,-0.232086,-0.282898,-0.344757,-0.411133,-0.477234,-0.540344,-0.592285,-0.621948,-0.622833,-0.603699,-0.576721,-0.542358,-0.491608,-0.419739,-0.342133,-0.264496,-0.185913,-0.105835,-0.0290527,0.0346375,0.0869751,0.124512,0.145508,0.154297,0.159943,0.175232,0.209991,0.265442,0.328186,0.386322,0.425232,0.453033,0.477722,0.495361,0.49054,0.45343,0.396118,0.333557,0.269928,0.21698,0.193817,0.210205,0.258911,0.322876,0.382416,0.417786,0.425293,0.397034,0.333221,0.238739,0.114441,-0.0290527,-0.156189,-0.237793,-0.271271,-0.264038,-0.235168,-0.203491,-0.196991,-0.222412,-0.269928,-0.33551,-0.405975,-0.474701,-0.535492,-0.579803,-0.597107,-0.585358,-0.554016,-0.524445,-0.511536,-0.499878,-0.471344,-0.420471,-0.355713,-0.279388,-0.189453,-0.0885925,0.0124207,0.107239,0.190125,0.244293,0.260742,0.243683,0.21933,0.20932,0.221069,0.254822,0.301422,0.352966,0.399597,0.445709,0.49469,0.533691,0.533081,0.484161,0.4039,0.307251,0.217255,0.145905,0.109924,0.12027,0.171692,0.241669,0.313232,0.370667,0.394958,0.380859,0.31839,0.206299,0.0542297,-0.106445,-0.239258,-0.318665,-0.345581,-0.333679,-0.296112,-0.251678,-0.223633,-0.2229,-0.247925,-0.295166,-0.360992,-0.437653,-0.508179,-0.560791,-0.585449,-0.583679,-0.567047,-0.547913,-0.522614,-0.481689,-0.41684,-0.331604,-0.243408,-0.157043,-0.0708618,0.0182495,0.105103,0.178528,0.22348,0.238251,0.229858,0.21524,0.211731,0.231598,0.27417,0.324768,0.377991,0.423279,0.462616,0.5,0.528259,0.530334,0.490082,0.419739,0.335236,0.247864,0.167908,0.11557,0.109589,0.149536,0.22229,0.298309,0.353088,0.380005,0.371063,0.317596,0.219543,0.0841675,-0.0789185,-0.233704,-0.346161,-0.396515,-0.383698,-0.329742,-0.265503,-0.223083,-0.217926,-0.247986,-0.303619,-0.368195,-0.441467,-0.522095,-0.592896,-0.633881,-0.63974,-0.615906,-0.574768,-0.52597,-0.479004,-0.429138,-0.37027,-0.294952,-0.203827,-0.106445,-0.0101318,0.0773926,0.157043,0.221619,0.261139,0.270752,0.260864,0.253754,0.2612,0.292816,0.339325,0.393616,0.444092,0.486053,0.525299,0.556915,0.574158,0.558533,0.510406,0.430542,0.329865,0.236847,0.178986,0.164825,0.185577,0.229126,0.27536,0.322876,0.358643,0.366364,0.333618,0.255981,0.127655,-0.0381165,-0.205841,-0.340393,-0.414215,-0.434235,-0.412964,-0.371826,-0.329529,-0.299866,-0.291412,-0.316711,-0.372833,-0.443542,-0.522217,-0.595093,-0.646179,-0.669128,-0.66275,-0.638672,-0.600739,-0.538177,-0.455109,-0.363831,-0.277191,-0.193634,-0.106445,-0.0155029,0.070343,0.151398,0.208862,0.234619,0.238922,0.241425,0.259918,0.294037,0.338043,0.382538,0.426636,0.463562,0.49469,0.52832,0.55368,0.55838,0.529205,0.481934,0.425507,0.355896,0.283478,0.222626,0.194427,0.205048,0.2453,0.293945,0.330475,0.350861,0.357178,0.337372,0.278992,0.175171,0.0280457,-0.134033,-0.276184,-0.370056,-0.407928,-0.400818,-0.371338,-0.344757,-0.324554,-0.320282,-0.333344,-0.35791,-0.405182,-0.478058,-0.56308,-0.630951,-0.667389,-0.675903,-0.670929,-0.649933,-0.604706,-0.529602,-0.4263,-0.314972,-0.205566,-0.102203,-0.00704956,0.0776367,0.147369,0.197906,0.216766,0.211273,0.202759,0.210205,0.243073,0.300476,0.370392,0.433014,0.474915,0.499725,0.523621,0.549927,0.56012,0.537781,0.48584,0.421021,0.350281,0.285095,0.237732,0.214844,0.221558,0.248596,0.285095,0.321289,0.346039,0.355896,0.345978,0.298584,0.201263,0.0587158,-0.0930176,-0.227997,-0.326508,-0.378448,-0.391754,-0.380402,-0.357727,-0.334625,-0.32135,-0.326965,-0.350006,-0.389679,-0.449799,-0.519745,-0.586639,-0.630127,-0.650604,-0.663696,-0.66806,-0.641144,-0.569183,-0.46698,-0.35733,-0.240753,-0.123749,-0.0166321,0.081665,0.166229,0.223145,0.235962,0.213501,0.187988,0.182953,0.210205,0.266571,0.336304,0.410278,0.472015,0.516113,0.554108,0.586304,0.596436,0.57019,0.505981,0.420013,0.331665,0.255707,0.205505,0.189545,0.204559,0.243835,0.295502,0.336182,0.35611,0.354156,0.333832,0.276642,0.172028,0.0273743,-0.12738,-0.262421,-0.351196,-0.387238,-0.384888,-0.361755,-0.339874,-0.329132,-0.32959,-0.337585,-0.355835,-0.389465,-0.437439,-0.500122,-0.565643,-0.612671,-0.633484,-0.638123,-0.63208,-0.607574,-0.553009,-0.465698,-0.356842,-0.234039,-0.109802,0.00112915,0.0953064,0.169525,0.213226,0.223297,0.20932,0.190674,0.186249,0.20813,0.257385,0.328857,0.402161,0.465424,0.509583,0.547729,0.575623,0.581146,0.55603,0.506165,0.439117,0.362091,0.282623,0.228851,0.212158,0.228241,0.264771,0.307648,0.341553,0.358978,0.364838,0.342804,0.285095,0.179993,0.0340271,-0.12738,-0.269257,-0.363007,-0.405762,-0.409515,-0.395294,-0.378998,-0.367859,-0.36618,-0.369385,-0.386902,-0.416992,-0.466705,-0.531219,-0.589661,-0.62442,-0.642426,-0.65329,-0.651001,-0.624359,-0.563904,-0.475311,-0.363556,-0.233612,-0.106323,0.0120239,0.113342,0.198517,0.245575,0.250793,0.227448,0.204102,0.200531,0.220551,0.268066,0.33847,0.418335,0.481598,0.53006,0.572876,0.601807,0.605713,0.572144,0.514374,0.43866,0.35556,0.281738,0.2388,0.230347,0.249054,0.286987,0.329193,0.359406,0.371399,0.365784,0.33725,0.273499,0.162018,0.00616455,-0.149475,-0.277313,-0.356659,-0.387787,-0.389069,-0.379059,-0.375092,-0.374908,-0.379395,-0.387512,-0.408722,-0.446564,-0.502014,-0.565643,-0.617249,-0.643951,-0.655701,-0.664368,-0.667786,-0.64267,-0.574158,-0.474915,-0.358978,-0.232697,-0.107727,0.0071106,0.108459,0.187531,0.229523,0.227234,0.200531,0.178467,0.182831,0.216644,0.286041,0.368652,0.441803,0.494904,0.536713,0.579742,0.605774,0.593414,0.544708,0.482697,0.4151,0.345978,0.291931,0.267181,0.269867,0.295563,0.340546,0.379272,0.399872,0.402618,0.388794,0.350342,0.280792,0.168243,0.0219421,-0.125977,-0.246643,-0.322479,-0.355652,-0.35907,-0.357849,-0.368042,-0.384888,-0.403839,-0.419678,-0.436035,-0.462738,-0.51236,-0.572083,-0.623566,-0.651154,-0.664551,-0.675232,-0.680328,-0.66449,-0.610535,-0.521942,-0.405182,-0.269867,-0.129059,0.00296021,0.113678,0.196045,0.231689,0.227783,0.200348,0.171204,0.158386,0.181,0.245178,0.324768,0.400208,0.46698,0.534241,0.597321,0.635651,0.630188,0.581543,0.509857,0.427368,0.349182,0.290527,0.259735,0.256592,0.288055,0.342224,0.393097,0.42395,0.436646,0.425781,0.378052,0.295898,0.169189,0.0175781,-0.129181,-0.246246,-0.316162,-0.342896,-0.34314,-0.343079,-0.348602,-0.363831,-0.38739,-0.406982,-0.424957,-0.457397,-0.51712,-0.5849,-0.632477,-0.65625,-0.669006,-0.679596,-0.680664,-0.661011,-0.606903,-0.514709,-0.390747,-0.251221,-0.114685,0.0101318,0.119934,0.196716,0.224579,0.210663,0.18161,0.153839,0.138397,0.156647,0.213409,0.289337,0.361206,0.426788,0.496979,0.564758,0.610077,0.610657,0.574036,0.509857,0.427643,0.3414,0.281006,0.260071,0.270081,0.307312,0.364777,0.419525,0.455383,0.474701,0.470886,0.430145,0.336182,0.184906,0.011261,-0.143829,-0.254761,-0.313477,-0.338257,-0.347382,-0.353027,-0.354889,-0.360077,-0.375092,-0.401001,-0.436981,-0.489197,-0.55954,-0.627167,-0.6698,-0.688782,-0.701141,-0.711731,-0.702484,-0.65451,-0.568665,-0.457977,-0.330811,-0.202606,-0.0808716,0.0340881,0.13974,0.208923,0.227325,0.207245,0.17926,0.170868,0.186707,0.232025,0.292877,0.353363,0.405182,0.449524,0.497253,0.540009,0.562561,0.547729,0.50415,0.442627,0.367859,0.297638,0.258575,0.247589,0.259247,0.293945,0.339661,0.374512,0.397583,0.4104,0.402954,0.360992,0.274109,0.140411,-0.00778198,-0.138,-0.230591,-0.279785,-0.300415,-0.310333,-0.324371,-0.340393,-0.349945,-0.354889,-0.365631,-0.388794,-0.435028,-0.499603,-0.558044,-0.601074,-0.636047,-0.670349,-0.697174,-0.69516,-0.651276,-0.572479,-0.457642,-0.317596,-0.168243,-0.0303345,0.0855103,0.172211,0.217865,0.219666,0.184509,0.143829,0.123291,0.135895,0.188782,0.257263,0.32724,0.391541,0.457916,0.519318,0.561615,0.570068,0.535645,0.47934,0.407379,0.32663,0.257263,0.217773,0.213959,0.24469,0.299408,0.354706,0.396851,0.425568,0.433685,0.409515,0.345581,0.233948,0.0892029,-0.0620728,-0.18927,-0.272217,-0.311798,-0.316772,-0.310669,-0.312347,-0.325562,-0.340607,-0.351074,-0.367249,-0.396698,-0.453949,-0.517853,-0.570618,-0.610138,-0.638245,-0.664642,-0.678192,-0.666229,-0.617462,-0.526855,-0.397705,-0.249664,-0.104553,0.0255127,0.132019,0.206848,0.240997,0.231934,0.192474,0.149658,0.126251,0.149261,0.213074,0.295441,0.373077,0.437042,0.48999,0.53067,0.55484,0.548401,0.508911,0.442352,0.356506,0.27478,0.222229,0.208191,0.224091,0.2659,0.317932,0.356049,0.378448,0.388794,0.384216,0.351807,0.279663,0.156372,0.00845337,-0.126038,-0.225891,-0.284424,-0.310394,-0.319183,-0.326385,-0.338715,-0.348114,-0.356049,-0.363556,-0.376923,-0.405701,-0.454376,-0.506714,-0.546112,-0.57074,-0.596497,-0.62442,-0.644104,-0.633362,-0.580322,-0.48175,-0.352356,-0.20752,-0.0655823,0.062561,0.17276,0.249603,0.273499,0.24704,0.198669,0.151733,0.128845,0.149719,0.20993,0.284821,0.361938,0.429871,0.490875,0.537445,0.560211,0.543945,0.495575,0.423615,0.335297,0.250397,0.196655,0.182678,0.210602,0.274628,0.340942,0.379608,0.396637,0.406036,0.398712,0.358185,0.2659,0.122559,-0.0349731,-0.172424,-0.264496,-0.305786,-0.316589,-0.313232,-0.320953,-0.335846,-0.350403,-0.360535,-0.37384,-0.397644,-0.445709,-0.507782,-0.560211,-0.589935,-0.606232,-0.620209,-0.636322,-0.639465,-0.614502,-0.547729,-0.44101,-0.309204,-0.174286,-0.0418091,0.0845032,0.196564,0.274841,0.297455,0.273956,0.229675,0.188721,0.174164,0.199585,0.246521,0.298859,0.351868,0.409729,0.47583,0.526703,0.548401,0.53006,0.484436,0.415436,0.332001,0.253021,0.196442,0.172089,0.186707,0.242004,0.308594,0.355377,0.384094,0.399536,0.393829,0.355042,0.26712,0.129669,-0.0293884,-0.176575,-0.279663,-0.330322,-0.339996,-0.334625,-0.333771,-0.339142,-0.348267,-0.349731,-0.347321,-0.356567,-0.402161,-0.475159,-0.544891,-0.591614,-0.618042,-0.643677,-0.661285,-0.653351,-0.605988,-0.521606,-0.406311,-0.270325,-0.12616,0.00827026,0.124023,0.210144,0.258514,0.263885,0.235107,0.195892,0.164551,0.168671,0.21048,0.268188,0.324219,0.368713,0.414642,0.463959,0.504089,0.513153,0.47934,0.422272,0.356781,0.283142,0.217255,0.172272,0.159119,0.184509,0.247253,0.306915,0.346985,0.377991,0.396118,0.384216,0.338867,0.251404,0.128326,-0.00900269,-0.140747,-0.236725,-0.281006,-0.289398,-0.285828,-0.296173,-0.315918,-0.32663,-0.324829,-0.324158,-0.338867,-0.387177,-0.453705,-0.521271,-0.576721,-0.618713,-0.651947,-0.672485,-0.669403,-0.623627,-0.531952,-0.403015,-0.255981,-0.105774,0.0269165,0.132629,0.208588,0.242218,0.229919,0.188263,0.150269,0.131012,0.144348,0.1922,0.257507,0.326111,0.386169,0.439728,0.484375,0.512756,0.50885,0.467773,0.403015,0.328918,0.254974,0.198242,0.170746,0.171082,0.202026,0.261536,0.322754,0.368927,0.39035,0.392151,0.371155,0.324768,0.235962,0.101746,-0.0405273,-0.158386,-0.231201,-0.266052,-0.278992,-0.284241,-0.297241,-0.315643,-0.330811,-0.341492,-0.345032,-0.361603,-0.406372,-0.470337,-0.529663,-0.56665,-0.591339,-0.623016,-0.655914,-0.661133,-0.610077,-0.509125,-0.381866,-0.251465,-0.117584,0.01651,0.135101,0.234039,0.287994,0.28363,0.239807,0.193817,0.167175,0.179718,0.219208,0.265717,0.31308,0.358643,0.405853,0.455963,0.492157,0.495239,0.454773,0.385773,0.313141,0.245178,0.18692,0.146454,0.128448,0.149323,0.21048,0.283905,0.33725,0.366302,0.373688,0.354828,0.311066,0.236237,0.124298,-0.003479,-0.123505,-0.209656,-0.247864,-0.25296,-0.256165,-0.275238,-0.307037,-0.329651,-0.33905,-0.346252,-0.360596,-0.395782,-0.447845,-0.502228,-0.549988,-0.583557,-0.60965,-0.63858,-0.653229,-0.625092,-0.549133,-0.437317,-0.301147,-0.156097,-0.0140991,0.112946,0.216705,0.281616,0.292084,0.260803,0.225769,0.201355,0.193298,0.213898,0.257172,0.307648,0.355316,0.405365,0.46283,0.510803,0.520081,0.487122,0.429993,0.360992,0.287506,0.220062,0.168457,0.141266,0.14563,0.190399,0.262939,0.329803,0.363159,0.372742,0.35965,0.319946,0.25415,0.148865,0.0160522,-0.109253,-0.199677,-0.24939,-0.272766,-0.284149,-0.295288,-0.315094,-0.34021,-0.364166,-0.380188,-0.398376,-0.427307,-0.475159,-0.525177,-0.56012,-0.587921,-0.618988,-0.649323,-0.666656,-0.651825,-0.593079,-0.491608,-0.364899,-0.225433,-0.0814209,0.0612793,0.192627,0.289795,0.338135,0.333893,0.300598,0.269135,0.240662,0.236237,0.258331,0.29187,0.329651,0.379944,0.442078,0.502411,0.546387,0.553009,0.515106,0.447174,0.366699,0.282013,0.199921,0.13678,0.112946,0.142334,0.210205,0.284149,0.341217,0.378937,0.392426,0.370544,0.31543,0.219727,0.0794678,-0.074707,-0.20639,-0.289337,-0.326233,-0.339264,-0.345154,-0.360992,-0.377594,-0.384155,-0.381744,-0.381287,-0.403015,-0.449402,-0.507935,-0.558197,-0.589874,-0.615784,-0.641876,-0.666718,-0.669128,-0.628998,-0.533752,-0.399536,-0.254089,-0.114227,0.0178528,0.143005,0.257172,0.339142,0.36496,0.345093,0.302765,0.258179,0.234497,0.249603,0.280884,0.306458,0.333435,0.373962,0.433411,0.495697,0.539001,0.545166,0.503815,0.424713,0.335236,0.25415,0.19101,0.146118,0.136658,0.17337,0.241669,0.304688,0.355988,0.398193,0.404968,0.366302,0.289948,0.173553,0.0323486,-0.108643,-0.224762,-0.29953,-0.3367,-0.353363,-0.36792,-0.387787,-0.403015,-0.408661,-0.409454,-0.414368,-0.438873,-0.484711,-0.529785,-0.569794,-0.612274,-0.653229,-0.687592,-0.704559,-0.685364,-0.615692,-0.501129,-0.359802,-0.204956,-0.0561829,0.0883789,0.219452,0.326508,0.383148,0.385315,0.354034,0.309937,0.266968,0.247528,0.261353,0.28537,0.310272,0.347595,0.401947,0.470062,0.53006,0.555359,0.541473,0.487457,0.404694,0.308136,0.225037,0.166504,0.134216,0.141754,0.194824,0.272766,0.34201,0.396973,0.431061,0.420013,0.360138,0.248657,0.104553,-0.0455627,-0.184906,-0.295227,-0.37323,-0.41684,-0.437439,-0.438538,-0.428802,-0.418182,-0.413971,-0.41684,-0.427979,-0.45697,-0.499939,-0.536163,-0.574554,-0.618317,-0.666992,-0.692291,-0.675171,-0.616455,-0.516113,-0.389862,-0.246307,-0.0936279,0.0518188,0.188721,0.312225,0.400543,0.429382,0.401611,0.356995,0.304779,0.255249,0.226501,0.218933,0.225037,0.244965,0.28302,0.347168,0.427795,0.487122,0.506439,0.48349,0.418518,0.334625,0.24469,0.167664,0.118134,0.101288,0.130402,0.216583,0.325165,0.415375,0.479858,0.503815,0.480408,0.415649,0.30545,0.156097,-0.00845337,-0.165222,-0.292206,-0.367706,-0.402008,-0.413025,-0.418396,-0.4263,-0.437653,-0.44397,-0.444305,-0.453613,-0.496185,-0.564636,-0.627502,-0.677582,-0.713745,-0.735779,-0.740601,-0.713623,-0.645569,-0.536591,-0.392822,-0.227173,-0.0617981,0.0940857,0.230408,0.350189,0.443146,0.489868,0.481476,0.435028,0.369202,0.305908,0.271881,0.259796,0.259064,0.27478,0.310883,0.369263,0.44632,0.502075,0.515228,0.484833,0.408508,0.303497,0.197784,0.107391,0.0463867,0.0326233,0.0700073,0.157318,0.264099,0.363892,0.441864,0.485107,0.475494,0.417053,0.31369,0.161407,-0.0128784,-0.175293,-0.297302,-0.36618,-0.397369,-0.404846,-0.39859,-0.392212,-0.38382,-0.371277,-0.368256,-0.394501,-0.452271,-0.530945,-0.606506,-0.667114,-0.713165,-0.737579,-0.746033,-0.727783,-0.663483,-0.546783,-0.395447,-0.23645,-0.0846252,0.0565796,0.193298,0.316833,0.412476,0.464081,0.453888,0.400055,0.32724,0.2612,0.226105,0.218201,0.226654,0.254242,0.305634,0.379517,0.466187,0.538605,0.563904,0.536316,0.455566,0.345093,0.237579,0.149811,0.0898743,0.0716858,0.103027,0.187195,0.301605,0.41449,0.500061,0.540741,0.516052,0.437378,0.315308,0.148041,-0.0399475,-0.214569,-0.352966,-0.435242,-0.47113,-0.472015,-0.450012,-0.428986,-0.413696,-0.402283,-0.40329,-0.432495,-0.486389,-0.555237,-0.619476,-0.671875,-0.712067,-0.723572,-0.711151,-0.679932,-0.612549,-0.510071,-0.37851,-0.235779,-0.089325,0.0603333,0.204712,0.335236,0.436584,0.495636,0.496429,0.444489,0.366119,0.276703,0.208466,0.171478,0.163635,0.185364,0.235962,0.308136,0.404968,0.498444,0.546112,0.540802,0.478119,0.365448,0.246033,0.14563,0.0718079,0.0428162,0.065033,0.148529,0.284821,0.426575,0.533295,0.5961,0.592285,0.519928,0.395111,0.225647,0.0231628,-0.179382,-0.349335,-0.449921,-0.483704,-0.477997,-0.446167,-0.415497,-0.398132,-0.386993,-0.389587,-0.41806,-0.470123,-0.549591,-0.63623,-0.695221,-0.722961,-0.718201,-0.687439,-0.650726,-0.601532,-0.517975,-0.403168,-0.26355,-0.115234,0.0260315,0.153625,0.269989,0.373169,0.45932,0.497101,0.467987,0.396576,0.302002,0.207123,0.148041,0.127716,0.135834,0.169861,0.226044,0.312561,0.425446,0.515289,0.547241,0.519196,0.429535,0.307251,0.198517,0.113953,0.0653076,0.0670471,0.121002,0.237793,0.397797,0.543274,0.640472,0.667389,0.607239,0.485168,0.321289,0.119659,-0.103638,-0.307251,-0.455444,-0.523102,-0.523499,-0.488312,-0.437042,-0.409119,-0.404297,-0.408386,-0.42865,-0.47168,-0.53598,-0.623413,-0.694366,-0.722626,-0.717194,-0.679596,-0.627167,-0.578857,-0.512482,-0.416443,-0.292145,-0.1492,-0.0100098,0.112823,0.21759,0.313904,0.403015,0.47464,0.491089,0.444366,0.357849,0.250336,0.154358,0.0984497,0.0848389,0.100677,0.142883,0.206177,0.30127,0.412689,0.490997,0.518646,0.492157,0.406647,0.293762,0.189789,0.112213,0.0808105,0.110474,0.196899,0.335449,0.492065,0.621002,0.692413,0.68866,0.601196,0.452759,0.258331,0.0314636,-0.194305,-0.381531,-0.504822,-0.551666,-0.544556,-0.508789,-0.465424,-0.437378,-0.425018,-0.427521,-0.460999,-0.522888,-0.591278,-0.65564,-0.695648,-0.701477,-0.680878,-0.634979,-0.575165,-0.513367,-0.423096,-0.313751,-0.193207,-0.0696106,0.0479126,0.15451,0.249603,0.334778,0.410461,0.463684,0.467102,0.416382,0.329742,0.224976,0.129272,0.0681763,0.0429382,0.0461121,0.0802612,0.143433,0.23584,0.346375,0.433411,0.472748,0.458527,0.385223,0.281891,0.186859,0.123688,0.104095,0.145233,0.241608,0.381073,0.52887,0.65274,0.72522,0.722809,0.634552,0.481018,0.276764,0.0422668,-0.190552,-0.381683,-0.508911,-0.560333,-0.555298,-0.520081,-0.475891,-0.442139,-0.428192,-0.432739,-0.469666,-0.529449,-0.593292,-0.655029,-0.70047,-0.710205,-0.682831,-0.617035,-0.537506,-0.456512,-0.367645,-0.268311,-0.164368,-0.0584412,0.0404053,0.12616,0.208862,0.290619,0.366241,0.426575,0.444092,0.412018,0.337585,0.231689,0.121399,0.0441589,0.00222778,-0.00872803,0.0152893,0.0789795,0.179596,0.3078,0.4198,0.483368,0.483551,0.423431,0.334625,0.25296,0.192871,0.158264,0.1698,0.244293,0.369476,0.521149,0.660614,0.745911,0.743683,0.654419,0.501556,0.308044,0.0842285,-0.152344,-0.368134,-0.523895,-0.596497,-0.595581,-0.552612,-0.498047,-0.458466,-0.449463,-0.453949,-0.475098,-0.521759,-0.582947,-0.649323,-0.705444,-0.715759,-0.668732,-0.581329,-0.483276,-0.395569,-0.314087,-0.233154,-0.153229,-0.0679321,0.0182495,0.0949707,0.161346,0.225494,0.291199,0.363159,0.413757,0.413696,0.359253,0.260529,0.141205,0.0394592,-0.0260315,-0.0515442,-0.0411377,0.00866699,0.0977173,0.221344,0.35437,0.454437,0.501801,0.484619,0.414764,0.3237,0.251007,0.206787,0.199463,0.241943,0.342224,0.486237,0.634888,0.743408,0.778442,0.721558,0.582336,0.387451,0.160736,-0.0838928,-0.318176,-0.504486,-0.613617,-0.637909,-0.605499,-0.548401,-0.491089,-0.460602,-0.46228,-0.487244,-0.525177,-0.575958,-0.629333,-0.672089,-0.682556,-0.644836,-0.55838,-0.440613,-0.323425,-0.231598,-0.168243,-0.112946,-0.0622864,-0.0105896,0.0386658,0.0885315,0.144684,0.20697,0.274231,0.339874,0.385773,0.387238,0.332489,0.22522,0.0934753,-0.0218811,-0.0991821,-0.136993,-0.125153,-0.0610046,0.0483093,0.192139,0.338928,0.450409,0.500732,0.486298,0.417847,0.335114,0.265717,0.218048,0.208374,0.262817,0.379852,0.525513,0.669403,0.765564,0.776764,0.699585,0.548584,0.347046,0.113678,-0.131287,-0.351868,-0.517853,-0.605774,-0.615967,-0.57309,-0.508331,-0.458069,-0.444153,-0.453156,-0.467438,-0.502899,-0.560211,-0.613098,-0.64859,-0.644012,-0.583893,-0.484497,-0.364624,-0.249268,-0.161133,-0.100281,-0.061676,-0.0386658,-0.0204163,0.00201416,0.0340271,0.0775146,0.137665,0.212891,0.298584,0.362213,0.378174,0.339142,0.241943,0.110596,-0.0236206,-0.135498,-0.202698,-0.200531,-0.137115,-0.0240173,0.126312,0.287842,0.425629,0.507111,0.51651,0.461395,0.370667,0.27887,0.218262,0.199066,0.228577,0.317444,0.449402,0.596436,0.714417,0.762939,0.72403,0.596252,0.39679,0.163086,-0.0691223,-0.285095,-0.463684,-0.574036,-0.610992,-0.58786,-0.520538,-0.447906,-0.397247,-0.389343,-0.421539,-0.466644,-0.517059,-0.56778,-0.603424,-0.604889,-0.559875,-0.470459,-0.350616,-0.218445,-0.100006,-0.0322876,-0.0120239,-0.0227661,-0.0439453,-0.0569153,-0.0498657,-0.0167236,0.040741,0.116119,0.211212,0.308319,0.378174,0.391266,0.326843,0.191559,0.0261841,-0.123016,-0.224915,-0.26355,-0.234833,-0.14389,-0.00665283,0.156036,0.324432,0.465027,0.534424,0.516968,0.434906,0.323975,0.223297,0.165649,0.162872,0.222565,0.336243,0.484619,0.639587,0.756592,0.792755,0.729187,0.578644,0.364105,0.118927,-0.12384,-0.339142,-0.508575,-0.605652,-0.614563,-0.553955,-0.470734,-0.4039,-0.375916,-0.392548,-0.438934,-0.494171,-0.545441,-0.587799,-0.611328,-0.602356,-0.53598,-0.415161,-0.267059,-0.123077,-0.0194092,0.0220032,0.0180664,-0.0108032,-0.0475159,-0.0743713,-0.0756226,-0.0387878,0.0269775,0.112762,0.213501,0.316711,0.390686,0.399994,0.327393,0.188599,0.0186462,-0.143158,-0.261536,-0.304016,-0.272003,-0.166382,-0.000396729,0.195221,0.371674,0.492157,0.535706,0.498444,0.404419,0.282288,0.17337,0.10965,0.102478,0.163757,0.298187,0.483429,0.662354,0.782562,0.802155,0.715576,0.542755,0.315033,0.0698547,-0.155243,-0.348511,-0.492004,-0.559204,-0.550323,-0.48288,-0.389801,-0.317261,-0.298584,-0.338043,-0.412292,-0.492004,-0.561554,-0.610535,-0.626495,-0.602142,-0.527252,-0.402222,-0.247253,-0.0906067,0.0279236,0.0784607,0.065033,0.00375366,-0.0769043,-0.146973,-0.177917,-0.156921,-0.0875244,0.0188599,0.141876,0.267578,0.370056,0.419678,0.395111,0.289856,0.124847,-0.0551147,-0.210663,-0.298187,-0.294617,-0.20517,-0.0476379,0.134644,0.3078,0.448395,0.528931,0.534698,0.471283,0.356323,0.2341,0.144501,0.117249,0.159393,0.261475,0.406372,0.563232,0.68631,0.740143,0.69632,0.561554,0.361206,0.123352,-0.110992,-0.301331,-0.436432,-0.509735,-0.523438,-0.483948,-0.40979,-0.344971,-0.314026,-0.333496,-0.391815,-0.467865,-0.53833,-0.576172,-0.572968,-0.530945,-0.450531,-0.332764,-0.192352,-0.0541077,0.0509949,0.108002,0.112213,0.0596008,-0.0423584,-0.15509,-0.241608,-0.266632,-0.225891,-0.126923,0.00128174,0.126587,0.237732,0.32074,0.361267,0.335297,0.229675,0.0587158,-0.137451,-0.302429,-0.381195,-0.357513,-0.239319,-0.0565796,0.141754,0.329742,0.486969,0.585022,0.609863,0.559204,0.450867,0.327118,0.224152,0.182159,0.209656,0.288666,0.406647,0.537262,0.642487,0.689209,0.660278,0.548126,0.364014,0.137512,-0.0918884,-0.284912,-0.420929,-0.508911,-0.555969,-0.552765,-0.506042,-0.439392,-0.384155,-0.361755,-0.377716,-0.419067,-0.460541,-0.472565,-0.455383,-0.412964,-0.350006,-0.268463,-0.167786,-0.0571899,0.0455627,0.114288,0.129669,0.0877991,-0.00369263,-0.114105,-0.211731,-0.266968,-0.260254,-0.192413,-0.0912781,0.0145569,0.104218,0.180878,0.23349,0.242218,0.18396,0.0556946,-0.122223,-0.29422,-0.398041,-0.397797,-0.291412,-0.108521,0.104492,0.308136,0.485291,0.615112,0.680389,0.674377,0.595764,0.463013,0.321747,0.219055,0.192963,0.240479,0.343811,0.476105,0.59671,0.665497,0.671936,0.603485,0.45462,0.233276,-0.0270386,-0.277374,-0.472687,-0.598328,-0.653351,-0.638855,-0.573761,-0.481354,-0.383362,-0.307037,-0.271332,-0.279877,-0.319397,-0.363495,-0.38858,-0.388458,-0.355103,-0.284149,-0.185913,-0.0708618,0.0455017,0.143433,0.199463,0.199066,0.135712,0.011261,-0.148132,-0.293488,-0.387573,-0.399597,-0.336456,-0.235291,-0.127594,-0.0211487,0.0814209,0.162292,0.19986,0.165436,0.0424194,-0.143219,-0.320862,-0.415771,-0.386383,-0.240417,-0.0220947,0.214081,0.427124,0.599396,0.726837,0.785767,0.758514,0.650818,0.488068,0.320404,0.207855,0.18335,0.247437,0.368134,0.495972,0.583099,0.613007,0.588257,0.4953,0.32196,0.0847778,-0.177582,-0.413147,-0.580322,-0.653412,-0.642883,-0.577911,-0.486633,-0.382629,-0.281738,-0.207397,-0.187195,-0.218323,-0.278656,-0.338531,-0.36792,-0.352295,-0.284576,-0.178864,-0.0583801,0.0647583,0.180664,0.259583,0.277985,0.224304,0.092804,-0.106903,-0.331482,-0.516449,-0.610809,-0.592133,-0.476654,-0.318176,-0.162628,-0.0189819,0.107574,0.197571,0.234375,0.187988,0.0347595,-0.186646,-0.382538,-0.465302,-0.405304,-0.222229,0.0307922,0.296173,0.524231,0.696045,0.809875,0.848724,0.802216,0.671204,0.485718,0.299194,0.170532,0.134888,0.192352,0.31665,0.453888,0.548462,0.580658,0.557648,0.471954,0.313232,0.0888672,-0.164154,-0.3992,-0.564575,-0.625488,-0.598602,-0.525024,-0.431335,-0.337708,-0.246307,-0.175293,-0.146118,-0.168121,-0.222351,-0.279724,-0.313019,-0.297516,-0.226379,-0.12793,-0.0282593,0.0649109,0.145233,0.189056,0.185242,0.132477,0.0212708,-0.149933,-0.355164,-0.53067,-0.629272,-0.62027,-0.516296,-0.364685,-0.211731,-0.0777893,0.0420227,0.139862,0.205231,0.209045,0.111145,-0.0682678,-0.257935,-0.375031,-0.365448,-0.22757,-0.00918579,0.231079,0.441956,0.602692,0.716187,0.767975,0.751678,0.666168,0.512817,0.334778,0.190002,0.124969,0.153625,0.250732,0.375702,0.478516,0.529205,0.526581,0.475159,0.365509,0.187531,-0.041626,-0.274841,-0.452484,-0.533478,-0.524445,-0.459534,-0.37616,-0.297241,-0.223083,-0.154083,-0.111664,-0.123352,-0.177307,-0.254761,-0.318726,-0.333282,-0.290619,-0.202759,-0.098175,0.00509644,0.0941467,0.161804,0.192413,0.176971,0.105988,-0.0312805,-0.217438,-0.418518,-0.582214,-0.661346,-0.634888,-0.512024,-0.348511,-0.182007,-0.0342407,0.0956421,0.206512,0.274109,0.261414,0.134827,-0.0728149,-0.279663,-0.40686,-0.403687,-0.268982,-0.0522156,0.185303,0.390411,0.54361,0.662964,0.733032,0.735168,0.658844,0.512268,0.337128,0.182678,0.104706,0.120392,0.214172,0.337708,0.440674,0.495422,0.507935,0.478058,0.390076,0.240417,0.0358276,-0.189392,-0.376495,-0.475555,-0.490601,-0.455902,-0.402832,-0.341888,-0.270538,-0.203156,-0.159271,-0.1539,-0.180664,-0.23288,-0.27832,-0.280334,-0.234497,-0.159668,-0.0704651,0.0236206,0.109406,0.17395,0.205048,0.199677,0.146301,0.0379944,-0.115692,-0.291199,-0.455048,-0.567444,-0.595306,-0.524231,-0.388062,-0.239258,-0.105377,0.0161743,0.125702,0.201019,0.213745,0.132629,-0.0449524,-0.255829,-0.413361,-0.448578,-0.347321,-0.152069,0.073822,0.287659,0.45462,0.579193,0.667572,0.698578,0.661865,0.543488,0.365356,0.193146,0.0935669,0.0954895,0.177704,0.307526,0.434235,0.501801,0.511688,0.48288,0.413879,0.282562,0.0845032,-0.152618,-0.367188,-0.501343,-0.526642,-0.469452,-0.378662,-0.289673,-0.210205,-0.135651,-0.0752869,-0.0514221,-0.0851135,-0.159119,-0.239197,-0.291809,-0.277985,-0.205505,-0.0956421,0.0285339,0.142273,0.232941,0.297516,0.320007,0.285583,0.182159,0.0137024,-0.181488,-0.364685,-0.522827,-0.630402,-0.655975,-0.578918,-0.424561,-0.249329,-0.0898132,0.0232849,0.0958252,0.128937,0.112946,0.0353088,-0.110413,-0.274841,-0.392273,-0.405914,-0.299316,-0.10321,0.113434,0.30188,0.437042,0.520874,0.577637,0.6008,0.578583,0.494843,0.352875,0.208313,0.124084,0.12677,0.191406,0.28476,0.36377,0.391754,0.372284,0.33316,0.27887,0.194977,0.0620117,-0.107056,-0.262939,-0.357513,-0.363342,-0.304962,-0.229401,-0.167511,-0.135559,-0.114502,-0.0936279,-0.0834961,-0.098114,-0.137787,-0.180939,-0.191742,-0.15451,-0.0766296,0.0213318,0.113007,0.178802,0.213409,0.22757,0.216522,0.175903,0.094696,-0.021759,-0.152283,-0.274506,-0.390076,-0.498047,-0.577911,-0.59491,-0.528046,-0.404175,-0.271423,-0.16153,-0.0849609,-0.0275269,0.0157776,0.0458374,0.0380554,-0.0283203,-0.135162,-0.224091,-0.235291,-0.160461,-0.0231628,0.118195,0.226654,0.298248,0.359253,0.435699,0.506714,0.538391,0.486237,0.366241,0.245178,0.170807,0.153412,0.169525,0.194427,0.209137,0.204224,0.19632,0.20578,0.223236,0.20932,0.127441,-0.0114136,-0.143829,-0.212494,-0.204102,-0.161743,-0.127594,-0.120056,-0.12149,-0.108002,-0.0698547,-0.0317993,-0.0316772,-0.0653076,-0.105652,-0.118195,-0.0899963,-0.0340271,0.0342407,0.0962524,0.142273,0.169739,0.188385,0.189789,0.163361,0.0892029,-0.020752,-0.146912,-0.278381,-0.410065,-0.536926,-0.624512,-0.641602,-0.567108,-0.429871,-0.276978,-0.144684,-0.0539551,-0.00314331,0.0234375,0.0427551,0.0284424,-0.0474548,-0.168579,-0.280548,-0.308258,-0.227448,-0.0724182,0.0944824,0.221283,0.302338,0.367523,0.435974,0.489075,0.490204,0.414032,0.275085,0.140015,0.0602722,0.0517578,0.0889282,0.143005,0.196777,0.239868,0.277435,0.316589,0.346832,0.329803,0.229523,0.0676575,-0.0896606,-0.173431,-0.174957,-0.137512,-0.106842,-0.0940247,-0.0876465,-0.0597229,-0.0015564,0.0499268,0.0499268,-0.0038147,-0.0809326,-0.130524,-0.131012,-0.0952454,-0.0371704,0.0254211,0.0798645,0.128662,0.175018,0.20813,0.223022,0.188538,0.0951538,-0.0374451,-0.17804,-0.311127,-0.441284,-0.557526,-0.636841,-0.652679,-0.5914,-0.468445,-0.32431,-0.204773,-0.126099,-0.0759583,-0.0291138,0.0220032,0.041687,-0.00274658,-0.100281,-0.190277,-0.212616,-0.15451,-0.04953,0.0540161,0.133148,0.197388,0.264893,0.344238,0.40744,0.421875,0.372955,0.278107,0.189392,0.135315,0.12149,0.134705,0.171082,0.215973,0.248383,0.27536,0.298523,0.304504,0.263153,0.166718,0.0456238,-0.0565796,-0.1008,-0.0994568,-0.0714722,-0.0519409,-0.0426025,-0.0391235,-0.0259705,-0.00323486,0.00146484,-0.0202637,-0.0555725,-0.0808105,-0.078064,-0.0512085,0.00134277,0.0683899,0.130798,0.178711,0.206299,0.213745,0.204285,0.17395,0.112885,0.0184021,-0.0944824,-0.210144,-0.318054,-0.423553,-0.52121,-0.594238,-0.626312,-0.601349,-0.519745,-0.413544,-0.307251,-0.220001,-0.142883,-0.0662537,0.00799561,0.0592651,0.0512085,-0.0116882,-0.0935669,-0.148926,-0.15564,-0.121277,-0.0647583,-0.00665283,0.0456238,0.112213,0.211212,0.308716,0.370544,0.376923,0.331543,0.262939,0.206177,0.177917,0.171753,0.176636,0.184082,0.188721,0.20462,0.238068,0.270142,0.259064,0.19342,0.103546,0.0304565,-0.00357056,0.0065918,0.0387268,0.0510864,0.0390625,0.0263672,0.0318909,0.0533447,0.0640869,0.0501404,0.00497437,-0.0505371,-0.0828857,-0.0792542,-0.0350952,0.0356445,0.100006,0.146851,0.184082,0.219543,0.245697,0.251892,0.216248,0.125366,-0.0062561,-0.149139,-0.289337,-0.429199,-0.55838,-0.656647,-0.708466,-0.698853,-0.606506,-0.462158,-0.316437,-0.197571,-0.110931,-0.049408,-0.00973511,0.0152283,0.000274658,-0.0768433,-0.19455,-0.296173,-0.330658,-0.289185,-0.198059,-0.101532,-0.0145569,0.0728149,0.171936,0.272552,0.339203,0.363281,0.338989,0.267639,0.193695,0.148468,0.138916,0.152893,0.17981,0.217529,0.256653,0.292419,0.328583,0.351074,0.326782,0.256592,0.165222,0.0952454,0.0606079,0.0652466,0.0834351,0.0879211,0.0829468,0.0789795,0.0787354,0.085968,0.0827637,0.0577087,0.0134277,-0.0291138,-0.0396118,-0.0114136,0.0470581,0.113281,0.169922,0.213074,0.251221,0.281799,0.283081,0.247437,0.168396,0.0479736,-0.0973816,-0.245087,-0.38382,-0.509857,-0.621002,-0.703094,-0.743164,-0.720062,-0.624908,-0.489746,-0.357452,-0.253754,-0.186188,-0.14389,-0.115448,-0.092804,-0.106506,-0.181885,-0.28363,-0.362213,-0.380524,-0.343079,-0.264771,-0.15744,-0.0454407,0.0675964,0.187927,0.301666,0.37793,0.407654,0.390747,0.323761,0.241943,0.178192,0.147186,0.151215,0.187439,0.236572,0.286987,0.344818,0.409851,0.452271,0.438782,0.375092,0.294434,0.218781,0.16275,0.138245,0.129456,0.113892,0.101868,0.0922241,0.0955811,0.114502,0.125824,0.121399,0.102814,0.0836792,0.0775757,0.0905457,0.112762,0.135651,0.148132,0.149933,0.151398,0.147034,0.126312,0.0864563,0.0224304,-0.0656433,-0.159119,-0.251068,-0.348267,-0.447174,-0.551086,-0.658783,-0.743408,-0.777527,-0.743164,-0.65979,-0.564026,-0.471222,-0.394104,-0.309448,-0.217194,-0.134979,-0.0877075,-0.117981,-0.201263,-0.291931,-0.342957,-0.33075,-0.282349,-0.204163,-0.108063,-0.00817871,0.105225,0.226227,0.332275,0.402283,0.421021,0.384369,0.32431,0.28772,0.28476,0.308197,0.342285,0.375977,0.409515,0.448059,0.492004,0.519867,0.502563,0.433502,0.345154,0.270599,0.218719,0.202881,0.213013,0.207642,0.188324,0.171875,0.164215,0.167999,0.165314,0.138855,0.0758362,-0.000946045,-0.0555725,-0.0724182,-0.0516052,-0.013031,0.0253601,0.0579224,0.098999,0.144165,0.165375,0.149811,0.0972595,0.000671387,-0.127502,-0.258911,-0.391602,-0.523163,-0.640015,-0.741821,-0.821533,-0.858521,-0.837189,-0.751129,-0.636841,-0.524963,-0.438721,-0.374573,-0.307587,-0.240143,-0.179718,-0.164978,-0.209595,-0.273621,-0.326447,-0.32959,-0.284027,-0.206177,-0.101349,0.00509644,0.115784,0.2341,0.353882,0.460205,0.529999,0.553162,0.527649,0.484436,0.446564,0.426636,0.4245,0.428314,0.435364,0.443298,0.461884,0.487183,0.499054,0.474091,0.415375,0.350403,0.292084,0.246765,0.230743,0.22168,0.193542,0.154694,0.114166,0.0814209,0.0633545,0.0489807,0.0221558,-0.0182495,-0.0532227,-0.0653076,-0.0485229,-0.0157166,0.0212097,0.048645,0.0639648,0.0710144,0.0646973,0.0362549,-0.00906372,-0.0683899,-0.1492,-0.246429,-0.35321,-0.469666,-0.583221,-0.690552,-0.796295,-0.881744,-0.923492,-0.897705,-0.802216,-0.674713,-0.547058,-0.431549,-0.321686,-0.213409,-0.123291,-0.0657654,-0.0646973,-0.119659,-0.194977,-0.245911,-0.238312,-0.179047,-0.0858459,0.0322266,0.152069,0.27121,0.383759,0.48349,0.553619,0.579407,0.556702,0.492737,0.427032,0.388855,0.382965,0.39563,0.415039,0.433502,0.440125,0.450592,0.468109,0.474915,0.436523,0.362762,0.285309,0.228912,0.205841,0.216766,0.234833,0.216644,0.181885,0.142883,0.110474,0.0922241,0.0605469,0.00576782,-0.0680542,-0.137787,-0.178314,-0.182556,-0.157593,-0.117706,-0.0799255,-0.0464478,-0.0162354,0.00811768,0.0179138,0,-0.0523376,-0.146179,-0.261017,-0.377594,-0.490662,-0.5961,-0.690125,-0.776306,-0.837799,-0.846588,-0.787384,-0.668915,-0.529938,-0.405243,-0.304108,-0.220123,-0.138123,-0.068512,-0.0235596,-0.0265808,-0.0870361,-0.161621,-0.208649,-0.203705,-0.144165,-0.0559082,0.0522156,0.157196,0.256042,0.350739,0.435516,0.49765,0.524567,0.502625,0.437317,0.368713,0.328125,0.320862,0.34082,0.381531,0.423279,0.451874,0.472809,0.492676,0.499268,0.465179,0.393219,0.311462,0.24054,0.187317,0.168793,0.173615,0.162415,0.134766,0.0973816,0.0545044,0.0218201,-0.0181274,-0.070282,-0.131134,-0.191467,-0.229858,-0.231598,-0.195984,-0.138458,-0.0785828,-0.0337524,0.00491333,0.0379944,0.0564575,0.0540161,0.0292664,-0.0291138,-0.122894,-0.229126,-0.342743,-0.450073,-0.544769,-0.641998,-0.737122,-0.797852,-0.80014,-0.730133,-0.605042,-0.475037,-0.362823,-0.269653,-0.177795,-0.0820007,-0.00570679,0.0281982,-0.00933838,-0.0964355,-0.185913,-0.235107,-0.222229,-0.16684,-0.078186,0.0239563,0.119537,0.22757,0.344025,0.448242,0.511688,0.527863,0.493286,0.428314,0.372681,0.340668,0.331207,0.334015,0.350739,0.372345,0.38913,0.419403,0.444305,0.437439,0.385773,0.319855,0.263153,0.22699,0.22113,0.228333,0.204498,0.152832,0.101746,0.0565186,0.0214233,-0.00759888,-0.0525513,-0.116791,-0.179047,-0.205292,-0.188721,-0.140259,-0.0649109,0.0145569,0.078064,0.129333,0.164429,0.172089,0.146027,0.086792,-0.00247192,-0.124359,-0.246185,-0.357239,-0.459808,-0.547302,-0.628387,-0.707062,-0.765778,-0.781952,-0.741821,-0.655975,-0.556366,-0.465302,-0.384705,-0.300812,-0.199341,-0.0999451,-0.0279236,-0.0170593,-0.0779114,-0.165771,-0.233276,-0.247925,-0.218872,-0.158661,-0.0755615,0.0148315,0.120392,0.245026,0.373627,0.474243,0.524445,0.522003,0.471008,0.406036,0.348938,0.317444,0.30423,0.308197,0.330414,0.361084,0.409271,0.465515,0.505585,0.501343,0.459991,0.402283,0.340149,0.292023,0.269745,0.246643,0.19455,0.132019,0.0798645,0.0482483,0.0359802,0.027771,0.00012207,-0.0471802,-0.091217,-0.112823,-0.102142,-0.0613403,-0.012146,0.0287781,0.0549622,0.0748291,0.0792542,0.0674438,0.0358276,-0.0161743,-0.101074,-0.209808,-0.322754,-0.429474,-0.522949,-0.601471,-0.67746,-0.748779,-0.791809,-0.787262,-0.734436,-0.643341,-0.547058,-0.465515,-0.397125,-0.322205,-0.229736,-0.145233,-0.0910645,-0.0918884,-0.138123,-0.197388,-0.230927,-0.215698,-0.171082,-0.101349,-0.0110168,0.0786438,0.169922,0.277374,0.39093,0.479584,0.521881,0.519409,0.474426,0.42041,0.384552,0.377167,0.387848,0.409729,0.440552,0.472565,0.509399,0.546844,0.559875,0.527985,0.468384,0.406189,0.341339,0.292145,0.271606,0.249725,0.211151,0.166443,0.127258,0.098999,0.0760498,0.0396118,-0.0213318,-0.0973206,-0.168732,-0.209991,-0.207855,-0.170593,-0.112549,-0.0562439,-0.0105286,0.0252991,0.0478516,0.0464478,0.0114746,-0.0565186,-0.158844,-0.286926,-0.410522,-0.514557,-0.593414,-0.657043,-0.712616,-0.76001,-0.782562,-0.771545,-0.720001,-0.633698,-0.549866,-0.476776,-0.416382,-0.340057,-0.23819,-0.138458,-0.0635681,-0.0505981,-0.0873718,-0.133698,-0.153168,-0.130463,-0.092804,-0.0400085,0.0222168,0.089325,0.186646,0.304626,0.426971,0.520203,0.5755,0.587372,0.556122,0.519073,0.490997,0.479858,0.479736,0.483887,0.489471,0.497986,0.518463,0.541931,0.541687,0.500946,0.435303,0.368195,0.311951,0.281738,0.26886,0.240814,0.189545,0.128998,0.0679321,0.0187378,-0.0221558,-0.0735474,-0.146576,-0.225098,-0.289337,-0.310944,-0.277527,-0.209717,-0.139008,-0.0808716,-0.0367737,0.000274658,0.0238953,0.0238342,-0.00576782,-0.0670471,-0.160797,-0.270325,-0.378845,-0.478516,-0.558655,-0.630402,-0.700592,-0.762756,-0.793152,-0.78537,-0.728912,-0.638855,-0.54953,-0.467377,-0.386047,-0.281219,-0.159729,-0.0546875,0.012207,0.0114746,-0.037262,-0.100464,-0.138397,-0.136383,-0.108856,-0.0478516,0.0327454,0.128662,0.254425,0.398376,0.542755,0.651337,0.708069,0.705383,0.648651,0.572968,0.505829,0.456573,0.421356,0.40155,0.399048,0.410858,0.437592,0.471344,0.485718,0.458862,0.406036,0.348175,0.287933,0.238312,0.19577,0.136169,0.0679932,0.00515747,-0.0402832,-0.0632324,-0.0779724,-0.105377,-0.157532,-0.221893,-0.270538,-0.278717,-0.2453,-0.186768,-0.122406,-0.0639648,-0.0122681,0.0325623,0.0656433,0.0720215,0.038269,-0.0356445,-0.14563,-0.269653,-0.390686,-0.499054,-0.58847,-0.663757,-0.730072,-0.785034,-0.805237,-0.779785,-0.70343,-0.598602,-0.498871,-0.409332,-0.328186,-0.230927,-0.120667,-0.024231,0.0297241,0.0186462,-0.0350952,-0.0875244,-0.0991211,-0.0671692,-0.0146179,0.0556946,0.132416,0.216034,0.322144,0.443146,0.557648,0.632538,0.659607,0.626038,0.544891,0.462738,0.399994,0.359131,0.336914,0.331818,0.3414,0.36377,0.406311,0.454376,0.474976,0.450348,0.393158,0.330933,0.272156,0.229523,0.194824,0.141998,0.0747681,0.0101318,-0.0337524,-0.0540161,-0.0673218,-0.0957642,-0.144501,-0.198059,-0.232605,-0.226501,-0.188202,-0.137848,-0.0924072,-0.0578003,-0.0369873,-0.0224915,-0.013031,-0.0170593,-0.0397339,-0.0900574,-0.171204,-0.272217,-0.371155,-0.454041,-0.52066,-0.585968,-0.661346,-0.735382,-0.78537,-0.787781,-0.729187,-0.626312,-0.520081,-0.42041,-0.320465,-0.203827,-0.0698547,0.0517578,0.125824,0.121277,0.0504761,-0.0380554,-0.094635,-0.103302,-0.0758362,-0.021759,0.0473938,0.129456,0.245972,0.388184,0.527039,0.629791,0.673279,0.64328,0.560669,0.466248,0.395172,0.354431,0.338379,0.340393,0.34845,0.371155,0.4133,0.465759,0.492737,0.471344,0.408722,0.330475,0.258179,0.207733,0.177643,0.138336,0.0858459,0.0306702,-0.00537109,-0.0157166,-0.0245056,-0.0598755,-0.130188,-0.222565,-0.295959,-0.321014,-0.298126,-0.241089,-0.172821,-0.106171,-0.0424194,0.0213318,0.0733643,0.092804,0.0663757,-0.00933838,-0.128448,-0.271332,-0.415039,-0.532959,-0.619202,-0.686646,-0.744171,-0.789856,-0.800751,-0.768402,-0.6745,-0.55423,-0.448059,-0.360748,-0.285767,-0.18866,-0.0757141,0.0259094,0.0832214,0.0629578,0.00308228,-0.0542297,-0.0747681,-0.0579834,-0.0209351,0.0330811,0.0950317,0.17511,0.290192,0.41806,0.540192,0.627655,0.662537,0.636841,0.567169,0.493164,0.433289,0.393677,0.370209,0.35791,0.355652,0.366852,0.404022,0.44342,0.454041,0.420074,0.362091,0.306122,0.260193,0.231201,0.194885,0.137787,0.073761,0.012207,-0.0283203,-0.0571289,-0.0920105,-0.143005,-0.213898,-0.280731,-0.319855,-0.312958,-0.263428,-0.192871,-0.119995,-0.0595398,-0.0117493,0.028717,0.0575256,0.0546875,0.00912476,-0.0782471,-0.198059,-0.327515,-0.446991,-0.548401,-0.630951,-0.699585,-0.758789,-0.802155,-0.806366,-0.75885,-0.65329,-0.522888,-0.399536,-0.297913,-0.204834,-0.098175,0.0106812,0.102417,0.138245,0.0969849,0.015625,-0.0536194,-0.0774536,-0.0566406,-0.00744629,0.0588684,0.130127,0.220795,0.338318,0.469604,0.583435,0.65274,0.665161,0.612823,0.52832,0.448792,0.386169,0.345154,0.323425,0.319183,0.326172,0.354218,0.399384,0.438538,0.442627,0.406525,0.349274,0.291687,0.243561,0.20813,0.167847,0.107666,0.0357666,-0.0304565,-0.0721436,-0.0975952,-0.123291,-0.170074,-0.236389,-0.297729,-0.325897,-0.303162,-0.244751,-0.172211,-0.105896,-0.0532227,-0.0105896,0.0231018,0.0420227,0.0312805,-0.0161133,-0.0979919,-0.211273,-0.332825,-0.447784,-0.543152,-0.618713,-0.684967,-0.742554,-0.779938,-0.773285,-0.713165,-0.595825,-0.457062,-0.333618,-0.231934,-0.131531,-0.0226746,0.0805359,0.155975,0.163483,0.0961609,-0.000457764,-0.0748291,-0.0960999,-0.074707,-0.0249023,0.0390015,0.114288,0.216248,0.346436,0.479523,0.581604,0.634491,0.628174,0.565979,0.483612,0.411346,0.35907,0.328308,0.31308,0.308533,0.321136,0.355225,0.404236,0.436432,0.426361,0.374847,0.310211,0.256378,0.221954,0.195099,0.146027,0.0736389,-0.000213623,-0.0567017,-0.0870361,-0.103302,-0.126709,-0.176178,-0.236969,-0.28537,-0.295624,-0.25827,-0.19455,-0.126373,-0.0692749,-0.0195312,0.0232239,0.0583191,0.0755615,0.0548401,-0.00973511,-0.114014,-0.240082,-0.369995,-0.490204,-0.591675,-0.672211,-0.733154,-0.773346,-0.776978,-0.730927,-0.625488,-0.48349,-0.34906,-0.24295,-0.159515,-0.0792542,0.00228882,0.0751038,0.104156,0.0612183,-0.02771,-0.107452,-0.138062,-0.117371,-0.0658264,-0.00146484,0.0693359,0.155701,0.264221,0.386993,0.496246,0.567719,0.592621,0.565308,0.503815,0.438049,0.388733,0.360931,0.350616,0.35141,0.354095,0.364838,0.388245,0.421417,0.429199,0.398315,0.338379,0.276245,0.233948,0.207184,0.185577,0.14563,0.0860291,0.0179138,-0.0307312,-0.0587158,-0.0787964,-0.112823,-0.170685,-0.229004,-0.270081,-0.265625,-0.215973,-0.147186,-0.0774536,-0.0241699,0.0126038,0.0358276,0.0495911,0.0397339,-0.00576782,-0.086853,-0.201752,-0.333099,-0.458252,-0.555908,-0.628326,-0.684418,-0.732544,-0.761139,-0.753632,-0.694305,-0.582275,-0.452423,-0.333221,-0.243073,-0.16571,-0.0776367,0.00991821,0.0794067,0.0863037,0.0255737,-0.0628052,-0.133148,-0.150665,-0.120056,-0.0612183,0.00872803,0.085907,0.185974,0.313812,0.449127,0.560669,0.627258,0.639404,0.599609,0.523499,0.451874,0.401154,0.373901,0.361755,0.355225,0.355103,0.366241,0.399139,0.424835,0.422943,0.389008,0.334564,0.279938,0.237915,0.211151,0.177032,0.123962,0.0639038,0.0131531,-0.0228271,-0.0498047,-0.0797424,-0.127502,-0.190063,-0.246979,-0.273102,-0.255157,-0.205719,-0.146118,-0.0906067,-0.046051,-0.0128174,0.0122681,0.0184631,-0.00463867,-0.0663757,-0.166718,-0.296448,-0.432495,-0.552612,-0.643433,-0.705627,-0.749878,-0.778778,-0.783081,-0.740875,-0.635315,-0.488983,-0.344574,-0.234711,-0.162811,-0.098175,-0.0261841,0.0503235,0.0883789,0.0546875,-0.0306702,-0.113281,-0.143555,-0.113953,-0.0488586,0.020874,0.0913391,0.177521,0.285919,0.41153,0.524689,0.602539,0.632812,0.61377,0.55658,0.491486,0.44101,0.410004,0.396301,0.391541,0.386902,0.382294,0.393829,0.41684,0.422028,0.390137,0.33429,0.281219,0.245087,0.227325,0.20462,0.160004,0.0941467,0.0299988,-0.0184631,-0.052948,-0.0874634,-0.144501,-0.221893,-0.287598,-0.319,-0.30603,-0.256989,-0.188385,-0.124634,-0.0757141,-0.0389404,-0.0104675,0.0015564,-0.0180664,-0.0722046,-0.158508,-0.274902,-0.40564,-0.52417,-0.611481,-0.66571,-0.70108,-0.730743,-0.74704,-0.722748,-0.635162,-0.500885,-0.361145,-0.248199,-0.17511,-0.112335,-0.0328979,0.0569763,0.11618,0.0968323,0.0183105,-0.0675049,-0.112946,-0.100464,-0.0539551,0.00012207,0.0504761,0.120056,0.220398,0.345642,0.473633,0.573029,0.629944,0.635773,0.601959,0.546906,0.494843,0.460724,0.439331,0.415771,0.380127,0.345825,0.33786,0.355774,0.367859,0.350067,0.306183,0.263092,0.238983,0.23349,0.221344,0.176788,0.100525,0.016571,-0.0498047,-0.0992737,-0.142548,-0.189056,-0.247986,-0.298401,-0.318848,-0.294373,-0.231262,-0.149994,-0.0786438,-0.0308838,-0.00280762,0.0138855,0.0187988,-0.00189209,-0.0518188,-0.132751,-0.243958,-0.368805,-0.485382,-0.576508,-0.640472,-0.686859,-0.722626,-0.744965,-0.731598,-0.653229,-0.520599,-0.374512,-0.250397,-0.160675,-0.0867004,-0.00296021,0.0827637,0.132812,0.10672,0.0190735,-0.0749817,-0.131805,-0.132629,-0.0890503,-0.0328979,0.028656,0.10733,0.216034,0.347046,0.471741,0.571808,0.62262,0.618591,0.573212,0.510742,0.454773,0.416779,0.396851,0.375916,0.348938,0.32605,0.324432,0.34436,0.352417,0.336304,0.293701,0.248535,0.222076,0.214844,0.205902,0.171539,0.108582,0.041748,-0.0105286,-0.0463867,-0.0810852,-0.129944,-0.19162,-0.249329,-0.274628,-0.255493,-0.200073,-0.128113,-0.0603333,-0.0107422,0.0214233,0.0405273,0.0432739,0.0162964,-0.045166,-0.139252,-0.259674,-0.393433,-0.517242,-0.613098,-0.678131,-0.725494,-0.760193,-0.77301,-0.737915,-0.630859,-0.47583,-0.324371,-0.210724,-0.135101,-0.0606079,0.029541,0.116241,0.1492,0.0906067,-0.028595,-0.135315,-0.175507,-0.153687,-0.102142,-0.0526123,-0.00442505,0.0710144,0.184357,0.321289,0.443756,0.529205,0.56369,0.546844,0.498199,0.450134,0.416168,0.405365,0.408264,0.406189,0.389191,0.374695,0.385712,0.406311,0.403168,0.36026,0.296783,0.245911,0.230194,0.237976,0.232361,0.196106,0.132019,0.0727539,0.0313416,0.00268555,-0.0346985,-0.103149,-0.182831,-0.248444,-0.271545,-0.246643,-0.189117,-0.116638,-0.0553589,-0.012146,0.0190735,0.0365906,0.0360413,0.00463867,-0.0636902,-0.166901,-0.297791,-0.433624,-0.555359,-0.64624,-0.706909,-0.754028,-0.78894,-0.789795,-0.726379,-0.593811,-0.430389,-0.282806,-0.184021,-0.11618,-0.0384521,0.0552368,0.127838,0.11972,0.0265808,-0.103882,-0.200348,-0.220886,-0.186096,-0.13623,-0.0899963,-0.0307312,0.0635681,0.191559,0.331818,0.450256,0.532227,0.565582,0.552948,0.516052,0.477448,0.459656,0.463898,0.468445,0.457306,0.427979,0.410126,0.414551,0.421692,0.404083,0.351685,0.288452,0.256653,0.263611,0.27597,0.261932,0.204895,0.129181,0.0624695,0.0141602,-0.0238953,-0.0807495,-0.159332,-0.236176,-0.284241,-0.277527,-0.221802,-0.140808,-0.0634766,-0.00726318,0.0302124,0.0490723,0.0526733,0.0324097,-0.0212097,-0.114899,-0.241547,-0.385498,-0.523438,-0.635223,-0.71524,-0.772552,-0.818787,-0.843079,-0.811554,-0.697327,-0.528046,-0.352295,-0.219543,-0.13623,-0.0606079,0.0291138,0.115448,0.139069,0.0621338,-0.0766296,-0.201538,-0.254913,-0.234436,-0.17804,-0.120544,-0.057251,0.0362549,0.162811,0.303284,0.429596,0.519806,0.560333,0.552826,0.518585,0.479065,0.457397,0.464844,0.485565,0.488525,0.467438,0.446167,0.447571,0.455048,0.43866,0.383636,0.304779,0.252747,0.253082,0.273682,0.271881,0.225891,0.156036,0.0920715,0.0428772,0.00363159,-0.0513306,-0.12973,-0.212158,-0.27121,-0.283356,-0.244843,-0.173035,-0.0921326,-0.0262451,0.0189209,0.0434875,0.0491943,0.0367126,-0.00805664,-0.0940247,-0.216705,-0.361664,-0.506104,-0.629333,-0.720459,-0.787048,-0.834351,-0.853149,-0.819794,-0.708466,-0.543213,-0.367188,-0.226166,-0.134094,-0.0508118,0.0404053,0.119995,0.137115,0.0600586,-0.0736389,-0.194305,-0.245026,-0.229584,-0.183075,-0.138062,-0.0817566,0.00872803,0.134033,0.274963,0.395172,0.481873,0.524902,0.52356,0.496429,0.45993,0.444824,0.459259,0.484436,0.490814,0.471222,0.44577,0.446381,0.45813,0.449005,0.398193,0.318848,0.265839,0.263763,0.287323,0.28952,0.242889,0.166656,0.0959167,0.0452271,0.00430298,-0.0524902,-0.134369,-0.218048,-0.273956,-0.279724,-0.235901,-0.159515,-0.0782471,-0.0157166,0.027771,0.0528259,0.0638123,0.0561829,0.016571,-0.0649719,-0.186646,-0.331146,-0.47644,-0.601807,-0.703217,-0.788269,-0.852417,-0.878662,-0.837036,-0.713074,-0.540283,-0.362671,-0.222565,-0.119324,-0.0184021,0.0878601,0.163879,0.152069,0.0410156,-0.114441,-0.230682,-0.272156,-0.252808,-0.211334,-0.173431,-0.115173,-0.013031,0.127777,0.278717,0.397308,0.472015,0.499451,0.486572,0.456116,0.422699,0.417511,0.440338,0.469208,0.474091,0.45752,0.444214,0.448914,0.454773,0.431549,0.37149,0.29892,0.266052,0.28241,0.307312,0.302216,0.249329,0.17691,0.116119,0.0690002,0.0178528,-0.0583801,-0.156097,-0.242218,-0.283569,-0.266113,-0.199463,-0.105835,-0.0161133,0.052948,0.0972595,0.116974,0.117035,0.094696,0.0330811,-0.0714111,-0.213745,-0.372559,-0.52301,-0.643555,-0.739807,-0.819458,-0.871948,-0.873352,-0.794373,-0.645569,-0.475372,-0.320068,-0.207855,-0.100342,0.0195312,0.130341,0.173096,0.0998535,-0.0509338,-0.20108,-0.279114,-0.281555,-0.252228,-0.226044,-0.199738,-0.122742,0.00985718,0.171417,0.31543,0.412415,0.457733,0.45697,0.431061,0.396362,0.371399,0.380127,0.408447,0.429657,0.432556,0.42926,0.443878,0.469116,0.472565,0.429138,0.351013,0.296509,0.293488,0.32196,0.333557,0.294769,0.224487,0.15979,0.122559,0.0953674,0.0422058,-0.0470581,-0.151672,-0.225983,-0.240417,-0.201141,-0.124847,-0.0426025,0.0246277,0.07724,0.108246,0.123627,0.120483,0.0833435,0.00402832,-0.118652,-0.273956,-0.43631,-0.576782,-0.695038,-0.795044,-0.867859,-0.892609,-0.838593,-0.705292,-0.533813,-0.366119,-0.240997,-0.132416,-0.0125427,0.106567,0.168335,0.116028,-0.0310669,-0.203705,-0.313568,-0.338715,-0.312408,-0.279449,-0.256104,-0.193634,-0.0733643,0.0919495,0.256653,0.37442,0.429535,0.424835,0.398926,0.366455,0.351074,0.362091,0.39093,0.409729,0.410461,0.412354,0.431488,0.467102,0.483429,0.446716,0.369141,0.303162,0.297516,0.341217,0.374969,0.353302,0.284973,0.211609,0.171265,0.145447,0.0973816,0.00234985,-0.11972,-0.215912,-0.247528,-0.20993,-0.125763,-0.0314636,0.045166,0.0997925,0.132141,0.150726,0.154907,0.121735,0.0332947,-0.105499,-0.275635,-0.442291,-0.578186,-0.68396,-0.774963,-0.840271,-0.85498,-0.788177,-0.654236,-0.487183,-0.339203,-0.238129,-0.151154,-0.0514832,0.0501404,0.0971069,0.0418701,-0.0926208,-0.243225,-0.332153,-0.348602,-0.320953,-0.290619,-0.266449,-0.204773,-0.094574,0.052002,0.200684,0.319061,0.385986,0.398041,0.381287,0.349731,0.337799,0.360138,0.397186,0.422882,0.419739,0.41153,0.420807,0.44516,0.456116,0.425293,0.36026,0.310547,0.309326,0.345703,0.374512,0.351807,0.289459,0.228241,0.187653,0.156586,0.100128,0.00296021,-0.108582,-0.187866,-0.205566,-0.16684,-0.0899353,-0.00308228,0.0722046,0.127777,0.156311,0.164978,0.15329,0.11087,0.0233459,-0.113678,-0.289276,-0.466583,-0.610596,-0.715424,-0.784485,-0.817993,-0.79361,-0.701263,-0.558594,-0.401886,-0.275757,-0.181732,-0.0943604,-0.00631714,0.0536194,0.0326233,-0.069458,-0.213745,-0.330658,-0.375031,-0.367859,-0.341675,-0.317657,-0.273102,-0.178986,-0.0427551,0.102875,0.228058,0.312073,0.351471,0.36496,0.360992,0.351624,0.351624,0.37027,0.397858,0.410065,0.410797,0.410461,0.417236,0.415314,0.389404,0.337463,0.287445,0.2771,0.309998,0.353424,0.356903,0.30954,0.244293,0.200867,0.175171,0.142151,0.0721436,-0.0316162,-0.127594,-0.169189,-0.148193,-0.0752869,0.0110168,0.0853577,0.142487,0.1745,0.187714,0.180145,0.145111,0.074707,-0.0411987,-0.202148,-0.382812,-0.546051,-0.671204,-0.747589,-0.778046,-0.75531,-0.676697,-0.555298,-0.409607,-0.275574,-0.169128,-0.0832825,-0.0113525,0.0344849,0.0144958,-0.07724,-0.205841,-0.320068,-0.376648,-0.379181,-0.357117,-0.336792,-0.302277,-0.225769,-0.106567,0.0236816,0.139526,0.226166,0.274628,0.305115,0.323547,0.335968,0.353149,0.379669,0.410065,0.423218,0.414825,0.394348,0.377167,0.361084,0.335358,0.286499,0.231415,0.214294,0.251221,0.313965,0.345428,0.320465,0.265381,0.218109,0.186249,0.155426,0.090271,-0.0150452,-0.112091,-0.153351,-0.124634,-0.0465088,0.0455017,0.127594,0.19342,0.234772,0.246979,0.233154,0.191406,0.114899,-0.00759888,-0.173889,-0.362823,-0.535431,-0.666504,-0.739929,-0.755157,-0.712219,-0.624084,-0.501953,-0.358246,-0.228333,-0.120544,-0.0343628,0.0276489,0.0497437,0.00564575,-0.0963135,-0.224152,-0.325836,-0.374023,-0.374756,-0.355652,-0.340485,-0.314972,-0.249878,-0.138733,-0.0162964,0.0891418,0.153961,0.185913,0.215027,0.256317,0.30838,0.351471,0.384766,0.405518,0.4133,0.413422,0.40451,0.377167,0.32663,0.263885,0.200531,0.161011,0.168121,0.218109,0.274628,0.299316,0.280121,0.243683,0.213623,0.189728,0.15625,0.0794067,-0.0312805,-0.116516,-0.136383,-0.0848999,0.00827026,0.104309,0.177246,0.233551,0.27417,0.29483,0.282288,0.224091,0.121002,-0.0220032,-0.189056,-0.363281,-0.525299,-0.644012,-0.707977,-0.705231,-0.645355,-0.545563,-0.420074,-0.290619,-0.17337,-0.0717468,0.00698853,0.0534363,0.0428772,-0.0273132,-0.133698,-0.240753,-0.316772,-0.348602,-0.349274,-0.340546,-0.32605,-0.298309,-0.233093,-0.140411,-0.0437622,0.0394592,0.0882568,0.115784,0.147583,0.197571,0.263214,0.327911,0.379456,0.403961,0.40564,0.394104,0.378387,0.344818,0.29248,0.227509,0.164825,0.133972,0.154572,0.213226,0.263489,0.272949,0.241425,0.197052,0.162872,0.135376,0.0944824,0.0144348,-0.080658,-0.134369,-0.118927,-0.0355835,0.0778503,0.179657,0.251465,0.295898,0.318054,0.321533,0.294891,0.226654,0.108337,-0.0527649,-0.237061,-0.415771,-0.554169,-0.63208,-0.641663,-0.596436,-0.52182,-0.425293,-0.317169,-0.202423,-0.0889282,0.000549316,0.0452271,0.0324097,-0.032959,-0.128174,-0.216858,-0.282562,-0.321075,-0.337372,-0.335236,-0.317108,-0.281555,-0.22403,-0.150208,-0.0833435,-0.0230103,0.0235596,0.0550232,0.0875854,0.130951,0.186035,0.240143,0.290009,0.330872,0.357056,0.371216,0.367249,0.338928,0.281067,0.216522,0.165497,0.14502,0.157928,0.19397,0.227722,0.232941,0.214355,0.181885,0.147308,0.107788,0.0620117,-0.0071106,-0.085022,-0.127716,-0.113556,-0.0430298,0.0599976,0.161743,0.245636,0.306305,0.343353,0.353149,0.328583,0.262939,0.157043,0.0147095,-0.151886,-0.319733,-0.464417,-0.559784,-0.587036,-0.555176,-0.483826,-0.387177,-0.281738,-0.175354,-0.0725403,0.0117493,0.0584412,0.0415344,-0.0300598,-0.132416,-0.226379,-0.292084,-0.327454,-0.339539,-0.338867,-0.322144,-0.284912,-0.221466,-0.138458,-0.0643616,-0.00698853,0.025177,0.0455627,0.0667725,0.105835,0.16095,0.216248,0.261261,0.287781,0.297119,0.299072,0.294556,0.275696,0.230194,0.174774,0.124237,0.108246,0.134491,0.189728,0.236115,0.245026,0.22229,0.185577,0.14563,0.0963745,0.0314026,-0.053009,-0.132538,-0.1698,-0.146973,-0.0696106,0.0420837,0.157867,0.257172,0.329987,0.367706,0.376251,0.350128,0.280731,0.174042,0.0287781,-0.139343,-0.302277,-0.428925,-0.503235,-0.513489,-0.471802,-0.398254,-0.309937,-0.222687,-0.131348,-0.0440369,0.0265198,0.058136,0.0298767,-0.0484619,-0.148651,-0.233765,-0.286774,-0.307373,-0.310791,-0.307037,-0.29303,-0.262085,-0.208313,-0.140472,-0.0743713,-0.0231018,0.00900269,0.0315552,0.0595398,0.107452,0.177704,0.24585,0.294037,0.316589,0.316162,0.29892,0.267792,0.215179,0.141998,0.0630798,0.0126038,0.0151672,0.0610046,0.128937,0.191864,0.220123,0.223419,0.209656,0.178711,0.124237,0.0452881,-0.0531616,-0.144501,-0.192291,-0.174561,-0.0950317,0.0170593,0.130676,0.231354,0.306458,0.355774,0.37793,0.358856,0.290466,0.168335,0.00845337,-0.164093,-0.315918,-0.422089,-0.467987,-0.452148,-0.396027,-0.315369,-0.229004,-0.141663,-0.0561218,0.0151062,0.0558472,0.049469,-0.00549316,-0.0888062,-0.171814,-0.230927,-0.258667,-0.263367,-0.259674,-0.253021,-0.238922,-0.213959,-0.174103,-0.129395,-0.0861816,-0.0592041,-0.0414734,-0.0137024,0.0401917,0.121399,0.214172,0.292938,0.341675,0.356567,0.351013,0.321533,0.269745,0.187592,0.0881958,-0.00616455,-0.0628967,-0.06073,-0.0120239,0.0571289,0.11557,0.150604,0.161804,0.156769,0.138672,0.0979309,0.0283813,-0.0575867,-0.125702,-0.150543,-0.120331,-0.0452271,0.0519409,0.141876,0.218872,0.277771,0.314423,0.323029,0.292877,0.215515,0.0932312,-0.0596008,-0.207581,-0.323975,-0.388733,-0.395355,-0.360748,-0.300201,-0.225037,-0.141357,-0.0518799,0.0232239,0.0657654,0.0614014,0.0104675,-0.06604,-0.139679,-0.193756,-0.225433,-0.232941,-0.225433,-0.209808,-0.187531,-0.160187,-0.132629,-0.106659,-0.0881958,-0.0776367,-0.073761,-0.0627441,-0.0301208,0.0351562,0.124084,0.216034,0.296173,0.350616,0.377777,0.371399,0.328735,0.249664,0.147034,0.0463867,-0.0297241,-0.0622253,-0.0534363,-0.0174561,0.0187988,0.0465698,0.0649109,0.0730286,0.0704651,0.0480652,0.00396729,-0.0571899,-0.110199,-0.127594,-0.0964355,-0.0253601,0.0617371,0.141693,0.200256,0.23819,0.259247,0.261597,0.234955,0.174896,0.0776367,-0.0484009,-0.179535,-0.282562,-0.338654,-0.337311,-0.296234,-0.229187,-0.154419,-0.082428,-0.0142822,0.0414124,0.0721436,0.065979,0.0183105,-0.0564575,-0.133972,-0.190552,-0.21637,-0.214691,-0.195709,-0.167786,-0.137329,-0.108063,-0.0834351,-0.0628052,-0.0564575,-0.0628052,-0.0706177,-0.0667725,-0.040741,0.00991821,0.0834351,0.164825,0.2453,0.308929,0.346771,0.353821,0.325958,0.259338,0.166779,0.0730896,0.000213623,-0.0354919,-0.0343018,-0.00744629,0.0233459,0.0447693,0.0502625,0.0410156,0.0141602,-0.0314026,-0.0916748,-0.159943,-0.204224,-0.208527,-0.164307,-0.0761108,0.0350952,0.143829,0.232269,0.289124,0.314484,0.302826,0.254028,0.168121,0.0484009,-0.0897217,-0.219452,-0.317657,-0.359924,-0.341675,-0.274445,-0.183563,-0.0906677,-0.00671387,0.06604,0.118134,0.132355,0.0967102,0.0185242,-0.0791321,-0.163544,-0.212738,-0.226562,-0.211548,-0.17746,-0.134491,-0.0913391,-0.0509949,-0.0214233,-0.00872803,-0.0115356,-0.0296631,-0.0498047,-0.0522156,-0.0273743,0.0297241,0.105499,0.181396,0.244507,0.287506,0.310333,0.306366,0.271332,0.205841,0.120544,0.0334167,-0.0273132,-0.040741,-0.012207,0.037323,0.0748901,0.0842285,0.0704041,0.0411987,0.0050354,-0.0481262,-0.130463,-0.218781,-0.280792,-0.284973,-0.229584,-0.134644,-0.025177,0.0778503,0.168671,0.242065,0.28363,0.285919,0.248718,0.167053,0.0507507,-0.082489,-0.202148,-0.284302,-0.312897,-0.293945,-0.24408,-0.174957,-0.0900574,0.00598145,0.0972595,0.155518,0.158508,0.103302,0.0135498,-0.0808105,-0.153076,-0.197174,-0.217316,-0.212952,-0.183289,-0.132965,-0.0706787,-0.0119324,0.027771,0.0420837,0.0350952,0.0220032,0.00946045,0.0115356,0.0350952,0.0830078,0.144287,0.208466,0.264496,0.298981,0.306244,0.280884,0.222961,0.136108,0.0424194,-0.0367737,-0.0761719,-0.0700073,-0.0294495,0.0218201,0.0585327,0.0819397,0.085022,0.066925,0.0179749,-0.0603333,-0.158203,-0.248932,-0.299408,-0.293213,-0.233215,-0.137054,-0.0299988,0.0661011,0.14035,0.188263,0.207184,0.197235,0.149719,0.0648193,-0.0487976,-0.1604,-0.238129,-0.270264,-0.258453,-0.215576,-0.148529,-0.0684509,0.0181274,0.0973206,0.153503,0.170197,0.139404,0.0700073,-0.0214233,-0.110748,-0.179199,-0.218262,-0.22464,-0.202881,-0.159668,-0.100739,-0.0350342,0.024231,0.0645752,0.0783997,0.0719604,0.0602722,0.0590515,0.0811462,0.119385,0.168671,0.219116,0.264893,0.299805,0.319611,0.308929,0.258514,0.17276,0.0714111,-0.0228271,-0.0889282,-0.114441,-0.0988464,-0.0558472,-0.00531006,0.0361633,0.0547791,0.0556946,0.0369263,-0.0114136,-0.0896606,-0.184753,-0.267242,-0.302429,-0.272675,-0.189941,-0.0885925,0.00390625,0.0770569,0.133148,0.16806,0.169922,0.128387,0.0444946,-0.0721436,-0.191742,-0.28537,-0.329132,-0.315582,-0.257172,-0.169739,-0.0756226,0.0195312,0.112885,0.194763,0.24585,0.240875,0.171814,0.0592041,-0.0550232,-0.141418,-0.189606,-0.210541,-0.213226,-0.195984,-0.157379,-0.0964966,-0.0256348,0.0315552,0.0639038,0.0740356,0.0768433,0.0879822,0.11853,0.164154,0.2229,0.28363,0.337128,0.368713,0.371887,0.346375,0.292145,0.209869,0.103149,-0.00524902,-0.0961609,-0.138,-0.128723,-0.0864563,-0.0387878,-0.00482178,0.0153809,0.0231628,0.0172424,-0.0210876,-0.094635,-0.18631,-0.261597,-0.294891,-0.279785,-0.220123,-0.131683,-0.0330811,0.058197,0.128113,0.164215,0.165985,0.127594,0.049408,-0.0637512,-0.190948,-0.299408,-0.363892,-0.37149,-0.334564,-0.263763,-0.169006,-0.0567932,0.0654297,0.166718,0.228516,0.237305,0.201599,0.135101,0.0544434,-0.0232239,-0.0921326,-0.139343,-0.161743,-0.157104,-0.134033,-0.0990601,-0.0628052,-0.0304565,-0.00415039,0.0126038,0.0283203,0.0523376,0.101074,0.171478,0.254578,0.334778,0.402344,0.447327,0.45993,0.43576,0.371277,0.265961,0.141815,0.0185242,-0.082428,-0.141754,-0.155518,-0.127991,-0.0803223,-0.027771,0.00811768,0.0157776,0.0012207,-0.0410156,-0.109528,-0.193878,-0.272675,-0.315094,-0.308319,-0.249542,-0.158264,-0.0574646,0.0344238,0.106995,0.151154,0.159332,0.126251,0.0504761,-0.0614624,-0.181335,-0.283813,-0.347839,-0.365784,-0.338135,-0.272156,-0.187775,-0.0905457,0.0136108,0.103027,0.163208,0.175507,0.142151,0.0783081,0.0104065,-0.0448914,-0.0799866,-0.0944214,-0.0917969,-0.0757141,-0.0478516,-0.0146179,0.0134888,0.025238,0.0220032,0.00979614,0.00128174,0.0120239,0.0508728,0.121216,0.218048,0.322479,0.414825,0.479065,0.506653,0.490082,0.43335,0.336029,0.208069,0.0628967,-0.0643616,-0.143494,-0.164978,-0.141754,-0.0971069,-0.0512695,-0.0184631,0.00228882,-0.00140381,-0.0363159,-0.1008,-0.185181,-0.268066,-0.317993,-0.314026,-0.257324,-0.16571,-0.0644226,0.0228271,0.0881958,0.126648,0.131409,0.100067,0.0250244,-0.0869141,-0.207306,-0.30423,-0.353699,-0.351746,-0.306702,-0.234833,-0.149719,-0.0549622,0.0354309,0.105713,0.140076,0.127838,0.0734253,-0.00167847,-0.0726929,-0.123962,-0.14502,-0.136383,-0.105042,-0.057251,-0.00436401,0.0465698,0.0820923,0.0961609,0.0832825,0.0551147,0.0292664,0.0216064,0.0525513,0.119537,0.212341,0.313293,0.40329,0.472015,0.510345,0.508453,0.45639,0.355652,0.218536,0.0707397,-0.0495911,-0.121674,-0.141663,-0.126373,-0.100952,-0.0731506,-0.0390625,-0.0110779,-0.00726318,-0.0425415,-0.116516,-0.207184,-0.274689,-0.296051,-0.274109,-0.220276,-0.14502,-0.0602112,0.0218201,0.0898132,0.123566,0.110931,0.0575867,-0.0309448,-0.139191,-0.243347,-0.319733,-0.349518,-0.336517,-0.287933,-0.216309,-0.122284,-0.0189819,0.0764465,0.139252,0.152008,0.114624,0.045105,-0.0342407,-0.104492,-0.157257,-0.183014,-0.183838,-0.15155,-0.0914001,-0.0205383,0.0405273,0.0832825,0.101349,0.098114,0.0861816,0.074646,0.0764465,0.106445,0.163879,0.244568,0.333099,0.406372,0.457184,0.482025,0.477051,0.428864,0.328918,0.195099,0.0649109,-0.0313416,-0.0840149,-0.101288,-0.107727,-0.10672,-0.0862427,-0.0519409,-0.0255127,-0.029541,-0.0779724,-0.157104,-0.229675,-0.266449,-0.266052,-0.231415,-0.169922,-0.0934143,-0.0159607,0.0564575,0.107666,0.12323,0.0930786,0.0132141,-0.100281,-0.214417,-0.298737,-0.339325,-0.339478,-0.310669,-0.258575,-0.18161,-0.0767822,0.0328979,0.118927,0.154297,0.134094,0.079071,0.0104065,-0.0567932,-0.11618,-0.160187,-0.186249,-0.180878,-0.140411,-0.0801392,-0.0157776,0.0339661,0.0599976,0.0640259,0.0578003,0.0553589,0.0666504,0.10376,0.164154,0.235291,0.310883,0.378662,0.437103,0.473236,0.472961,0.42395,0.331268,0.214417,0.103821,0.0205994,-0.0306091,-0.0593872,-0.0762939,-0.081543,-0.0691223,-0.0443726,-0.0263672,-0.0325623,-0.0708618,-0.132477,-0.200928,-0.247864,-0.261871,-0.240997,-0.190216,-0.121887,-0.0461731,0.0267029,0.0848389,0.115112,0.105713,0.0501404,-0.0446167,-0.154968,-0.249664,-0.311218,-0.33429,-0.322296,-0.279053,-0.206909,-0.109741,-0.0071106,0.0785217,0.128448,0.132141,0.100616,0.0470581,-0.0175781,-0.0830994,-0.133698,-0.161194,-0.161133,-0.134369,-0.0926819,-0.0462952,-0.00402832,0.0267639,0.0379333,0.0303345,0.0200806,0.0241699,0.0550232,0.115509,0.19751,0.283905,0.367645,0.441467,0.493347,0.504242,0.462402,0.370667,0.247925,0.121399,0.0157776,-0.0593872,-0.104645,-0.119537,-0.112762,-0.0856323,-0.0496521,-0.0215454,-0.0151062,-0.0414124,-0.089325,-0.150208,-0.202271,-0.229126,-0.227112,-0.196381,-0.141602,-0.0726929,-0.00128174,0.0589294,0.093811,0.0932922,0.0506592,-0.027771,-0.119873,-0.206116,-0.270752,-0.304169,-0.310608,-0.280121,-0.214233,-0.118317,-0.0167847,0.0637512,0.109253,0.118134,0.0940247,0.049469,-0.00698853,-0.0653076,-0.110077,-0.131073,-0.12616,-0.100739,-0.0584412,-0.0148315,0.0228882,0.0406189,0.0327454,0.00778198,-0.0158386,-0.0212097,0.00296021,0.0569153,0.135559,0.229248,0.32724,0.417572,0.483612,0.509003,0.483887,0.411194,0.303284,0.176788,0.0586548,-0.0355835,-0.0950928,-0.120544,-0.126648,-0.121826,-0.108917,-0.0867004,-0.0707397,-0.077179,-0.11557,-0.171692,-0.213287,-0.220398,-0.188934,-0.137787,-0.0839539,-0.0324097,0.0172424,0.0604553,0.0808716,0.06604,0.0123596,-0.0664368,-0.151489,-0.224304,-0.271332,-0.282074,-0.260406,-0.207977,-0.141144,-0.0679932,0.00228882,0.0640259,0.103363,0.105042,0.0690002,0.00759888,-0.057251,-0.107239,-0.131744,-0.130859,-0.11322,-0.0752258,-0.020874,0.0371094,0.0836792,0.103088,0.0906067,0.0571289,0.019989,-0.00280762,-0.000335693,0.032074,0.0933533,0.176697,0.264709,0.349121,0.417725,0.455048,0.454102,0.406586,0.315094,0.204102,0.0943604,0.0100708,-0.0463867,-0.0838928,-0.109924,-0.123169,-0.119659,-0.107513,-0.103821,-0.122498,-0.166443,-0.214905,-0.244568,-0.246307,-0.218445,-0.165894,-0.0988464,-0.0237732,0.0452271,0.0959167,0.110077,0.0876465,0.024353,-0.0697327,-0.17276,-0.261597,-0.313354,-0.324158,-0.295441,-0.236176,-0.15155,-0.0453796,0.0624084,0.148376,0.186646,0.171692,0.117584,0.0454407,-0.0326233,-0.106903,-0.166107,-0.194824,-0.187531,-0.140533,-0.0667114,0.0124817,0.0822754,0.128265,0.142273,0.126312,0.0975037,0.0751038,0.0711975,0.091156,0.133484,0.187927,0.253296,0.3237,0.385986,0.420074,0.410675,0.35376,0.261871,0.164368,0.0797424,0.0143738,-0.0305481,-0.0636902,-0.085907,-0.0944824,-0.0920105,-0.0935669,-0.108795,-0.142548,-0.19516,-0.247986,-0.278442,-0.277863,-0.241669,-0.177521,-0.102203,-0.0281067,0.038269,0.090332,0.110077,0.0867004,0.0151062,-0.0865173,-0.193756,-0.280731,-0.333221,-0.345428,-0.32074,-0.25885,-0.167572,-0.0563049,0.0540161,0.144287,0.19397,0.196106,0.161407,0.0966492,0.0191956,-0.0578613,-0.11618,-0.148132,-0.155914,-0.133881,-0.0891418,-0.0316772,0.0280457,0.0765686,0.102539,0.106049,0.1008,0.0983887,0.113159,0.146179,0.193756,0.252563,0.313232,0.368256,0.405853,0.416565,0.394775,0.338806,0.250458,0.150543,0.0569763,-0.0105286,-0.0507507,-0.0745544,-0.0921326,-0.101624,-0.0996704,-0.0955811,-0.10437,-0.142944,-0.203888,-0.26059,-0.289276,-0.284363,-0.246918,-0.187653,-0.114502,-0.0308838,0.0474548,0.101196,0.116028,0.0869751,0.0168457,-0.0855103,-0.199249,-0.303894,-0.371399,-0.392487,-0.365295,-0.304108,-0.214569,-0.0979919,0.0288696,0.136047,0.201477,0.213348,0.18396,0.125916,0.0575867,-0.0144958,-0.0784607,-0.123688,-0.141754,-0.123169,-0.0775146,-0.0223389,0.0279846,0.065918,0.0879211,0.0951538,0.0956421,0.101471,0.126587,0.173035,0.23053,0.291809,0.346985,0.393158,0.423889,0.430878,0.401001,0.331207,0.23114,0.130951,0.0462341,-0.012085,-0.0484619,-0.0722046,-0.0836792,-0.0836182,-0.0791931,-0.0869751,-0.108917,-0.151001,-0.210815,-0.26825,-0.30603,-0.313019,-0.278442,-0.208801,-0.119202,-0.032074,0.0440979,0.0965881,0.114105,0.093811,0.0232849,-0.0835571,-0.201477,-0.301147,-0.363281,-0.386169,-0.367035,-0.316437,-0.234039,-0.129517,-0.0212708,0.0708008,0.125244,0.145966,0.137329,0.10437,0.0593872,0.0071106,-0.0338135,-0.057373,-0.0596008,-0.0429382,-0.0198059,0.00643921,0.028595,0.0430908,0.0463867,0.041626,0.0456238,0.0667114,0.115692,0.186646,0.266113,0.346039,0.417114,0.468445,0.487854,0.468719,0.410461,0.314484,0.201202,0.094696,0.0106812,-0.0447693,-0.0744934,-0.0876465,-0.0918884,-0.0827637,-0.0681152,-0.0630798,-0.0819397,-0.134033,-0.202362,-0.257324,-0.279724,-0.272827,-0.24295,-0.199127,-0.136841,-0.0605469,0.0200806,0.0719604,0.0821533,0.0447693,-0.0306091,-0.122681,-0.21048,-0.282471,-0.329742,-0.344574,-0.326385,-0.27832,-0.202484,-0.109253,-0.0205994,0.0441589,0.0708008,0.0637512,0.0406189,0.0171814,-0.00631714,-0.0287781,-0.0474548,-0.0535583,-0.0345764,0.0050354,0.0479126,0.0779724,0.0857849,0.0750427,0.0545044,0.0403442,0.0393982,0.0583801,0.103973,0.17041,0.253357,0.336975,0.40979,0.465851,0.492737,0.480347,0.421143,0.323883,0.215759,0.116974,0.0445557,-0.00564575,-0.0437622,-0.0752258,-0.0943604,-0.0964966,-0.0949707,-0.102875,-0.135437,-0.18866,-0.240753,-0.269745,-0.266174,-0.235901,-0.183289,-0.120605,-0.0532227,0.0126038,0.065094,0.0854492,0.0635681,0.000457764,-0.094574,-0.198456,-0.286438,-0.343018,-0.364899,-0.352966,-0.310272,-0.240601,-0.145782,-0.0438843,0.0393372,0.0821533,0.0830994,0.0551147,0.0148315,-0.028717,-0.0687866,-0.1008,-0.115112,-0.0997314,-0.0597229,-0.00476074,0.0475769,0.0881958,0.10611,0.103149,0.0848999,0.0646362,0.0595398,0.0817566,0.129791,0.195984,0.272339,0.349609,0.415771,0.463409,0.47522,0.443024,0.372406,0.273834,0.174164,0.091156,0.0369263,0.00482178,-0.01651,-0.03302,-0.0406189,-0.0426941,-0.0495911,-0.0769043,-0.133026,-0.210541,-0.275574,-0.304504,-0.296631,-0.257843,-0.19986,-0.127106,-0.0455627,0.0351562,0.0910645,0.108124,0.082489,0.0137634,-0.081604,-0.184692,-0.274841,-0.333618,-0.355713,-0.339813,-0.30188,-0.238525,-0.155243,-0.0644836,0.0151062,0.060791,0.0673218,0.0437012,0.00878906,-0.0263062,-0.0578613,-0.0785217,-0.0903931,-0.0808105,-0.0524902,-0.00933838,0.0317993,0.0578003,0.0675964,0.0619507,0.0503235,0.0420227,0.0504761,0.0898743,0.155304,0.236725,0.319519,0.388336,0.440613,0.472626,0.473633,0.431488,0.344086,0.234283,0.128448,0.0515442,0.00497437,-0.0221558,-0.0429382,-0.0559692,-0.0495911,-0.0400085,-0.0391235,-0.062561,-0.118256,-0.185425,-0.240417,-0.265045,-0.255829,-0.215912,-0.161072,-0.101135,-0.0351562,0.0278625,0.0711365,0.0767212,0.037262,-0.039856,-0.135712,-0.219543,-0.279938,-0.313019,-0.317505,-0.295898,-0.249542,-0.177521,-0.0929565,-0.0181885,0.0312805,0.0495911,0.0361633,0.00759888,-0.0278625,-0.0595398,-0.0842896,-0.101868,-0.100739,-0.0762329,-0.0354919,0.0127563,0.052002,0.074646,0.0760498,0.0622864,0.0434875,0.0374451,0.0565796,0.0990601,0.161133,0.233032,0.309662,0.380951,0.433289,0.46167,0.451874,0.399811,0.312347,0.210724,0.119049,0.0531616,0.0132751,-0.0153809,-0.0420837,-0.0608826,-0.0700073,-0.0726929,-0.0800781,-0.110809,-0.164642,-0.224487,-0.251343,-0.244843,-0.206573,-0.150055,-0.0908203,-0.0273743,0.032959,0.0796509,0.092804,0.0657043,-0.00228882,-0.0991821,-0.196655,-0.274628,-0.322418,-0.336243,-0.316376,-0.271545,-0.207642,-0.127502,-0.0450439,0.0265198,0.0683289,0.072876,0.0470581,0.00491333,-0.0350342,-0.0686035,-0.0916748,-0.101532,-0.0969238,-0.0728149,-0.036438,0.003479,0.0349121,0.0499878,0.0505371,0.0448914,0.0411377,0.0500793,0.0826721,0.137177,0.210144,0.290009,0.35672,0.404694,0.432068,0.433075,0.398926,0.327576,0.233826,0.139191,0.0657043,0.0260315,0.00799561,-0.00772095,-0.0237732,-0.0376587,-0.046051,-0.0531616,-0.0775757,-0.132751,-0.20639,-0.263763,-0.28302,-0.262939,-0.210602,-0.13913,-0.0632324,0.012207,0.077301,0.116974,0.116516,0.0743713,-0.0085144,-0.116241,-0.220062,-0.298981,-0.3396,-0.340393,-0.312408,-0.265717,-0.198792,-0.111938,-0.0236206,0.0406189,0.0704651,0.0646973,0.0388489,0.00765991,-0.0198669,-0.0444946,-0.060791,-0.0679321,-0.0599976,-0.0383301,-0.00778198,0.0184021,0.0287781,0.0246887,0.012085,-0.00289917,-0.00671387,0.0159607,0.0732117,0.156433,0.253082,0.340546,0.40799,0.451813,0.471405,0.458069,0.400543,0.303436,0.184906,0.0782471,0.00939941,-0.0209351,-0.0328064,-0.0422058,-0.0461731,-0.0425415,-0.0406189,-0.0497437,-0.0798035,-0.139069,-0.212402,-0.271332,-0.293091,-0.267639,-0.203766,-0.124176,-0.0436096,0.0317993,0.0932312,0.128052,0.122345,0.0705261,-0.0284424,-0.146118,-0.249939,-0.317108,-0.344757,-0.337799,-0.304504,-0.248383,-0.166992,-0.0749817,0.00497437,0.0579834,0.0716858,0.0541077,0.020813,-0.0126038,-0.0415344,-0.0599976,-0.0648193,-0.0520935,-0.024353,0.0110779,0.0463867,0.0674438,0.0689392,0.0477905,0.0135498,-0.0198669,-0.0312195,-0.00698853,0.0502014,0.136108,0.236389,0.335571,0.417389,0.472565,0.493286,0.470612,0.402283,0.302277,0.185516,0.0803223,0.0104675,-0.0271912,-0.0488586,-0.0646973,-0.0735474,-0.0711365,-0.0594482,-0.0611267,-0.103699,-0.179932,-0.251892,-0.285248,-0.275757,-0.239075,-0.190552,-0.128723,-0.0471191,0.0427551,0.111481,0.132812,0.105988,0.0402832,-0.0535583,-0.155518,-0.248047,-0.314148,-0.337585,-0.324219,-0.290741,-0.236786,-0.160126,-0.0698547,0.0114136,0.0602112,0.0679932,0.0459595,0.0177307,-0.00442505,-0.0250854,-0.0465088,-0.0590515,-0.0524902,-0.021759,0.0224304,0.060791,0.078064,0.0710144,0.0524292,0.0299988,0.0085144,0.00100708,0.0215454,0.0755615,0.157104,0.249207,0.333008,0.402008,0.452881,0.477325,0.456635,0.381958,0.2771,0.167389,0.07724,0.0177917,-0.0234985,-0.0583801,-0.0801392,-0.0852966,-0.0807495,-0.0803223,-0.0957642,-0.132965,-0.185089,-0.235565,-0.263763,-0.256927,-0.213501,-0.146362,-0.0763855,-0.0137634,0.0418701,0.0841064,0.0982666,0.0729675,-0.0012207,-0.108063,-0.213165,-0.286926,-0.321625,-0.326233,-0.311676,-0.275696,-0.209137,-0.119324,-0.0335693,0.0275879,0.0569153,0.0560303,0.0352478,0.00750732,-0.0206604,-0.0426941,-0.0532227,-0.0515442,-0.0308838,-0.00241089,0.0296631,0.0582581,0.0763855,0.0737,0.0512085,0.020752,0.00222778,0.013092,0.0541077,0.115631,0.191223,0.277527,0.359131,0.423492,0.460815,0.463684,0.421265,0.344147,0.246033,0.148926,0.0680542,0.0126038,-0.0255127,-0.0522156,-0.0710144,-0.0845642,-0.0881348,-0.0906067,-0.108582,-0.155243,-0.21698,-0.261017,-0.269745,-0.241486,-0.193298,-0.133881,-0.0709534,-0.00524902,0.0559082,0.0950928,0.098053,0.052948,-0.0306091,-0.132416,-0.221954,-0.288269,-0.325165,-0.331421,-0.313629,-0.271881,-0.202087,-0.111938,-0.0258484,0.0343018,0.0585327,0.052887,0.0344849,0.0115967,-0.0128174,-0.0369873,-0.0502014,-0.0508118,-0.0316162,-0.000671387,0.0370483,0.0669861,0.078125,0.0708618,0.0518799,0.0294495,0.0184021,0.0302124,0.0708618,0.135437,0.216095,0.298126,0.369995,0.424561,0.457397,0.454285,0.408661,0.327515,0.226227,0.125244,0.048584,-0.00100708,-0.0350342,-0.0593872,-0.0755005,-0.0820007,-0.0834961,-0.089325,-0.116119,-0.165833,-0.221069,-0.25766,-0.262085,-0.233032,-0.179199,-0.116364,-0.04953,0.0135498,0.065918,0.0900574,0.0774536,0.0245667,-0.0624084,-0.160126,-0.248718,-0.308929,-0.334015,-0.326965,-0.297577,-0.248383,-0.174377,-0.0851135,-0.00424194,0.0484009,0.0654907,0.053009,0.0278625,0.000396729,-0.0281067,-0.0487976,-0.0598755,-0.057251,-0.0344238,-0.00195312,0.0342407,0.0584412,0.0647583,0.0568542,0.0403442,0.0223389,0.0173035,0.0394592,0.0914917,0.164551,0.249603,0.331665,0.395966,0.43866,0.458069,0.446564,0.393494,0.306122,0.204163,0.115112,0.0536194,0.0128784,-0.025177,-0.0593262,-0.0819397,-0.0886536,-0.0898132,-0.104156,-0.145111,-0.202606,-0.249329,-0.261932,-0.242401,-0.203705,-0.149323,-0.0832214,-0.0122681,0.050415,0.085968,0.091217,0.0645752,0.00436401,-0.0865784,-0.188934,-0.276031,-0.329315,-0.347992,-0.340393,-0.314301,-0.263824,-0.185303,-0.0908813,-0.00817871,0.0471802,0.0683899,0.0691833,0.0612183,0.0426941,0.0126038,-0.0200806,-0.041748,-0.0428162,-0.0303345,-0.0100708,0.00991821,0.0221558,0.0260315,0.0231628,0.0155029,0.0101929,0.0146179,0.0448303,0.102478,0.17981,0.267639,0.348328,0.41153,0.454376,0.469543,0.448669,0.39267,0.311218,0.213348,0.121277,0.0487976,0.00296021,-0.0314636,-0.0593872,-0.0827637,-0.0986633,-0.106232,-0.117706,-0.150482,-0.204102,-0.251953,-0.267975,-0.243896,-0.19455,-0.137054,-0.0770569,-0.0105286,0.0578003,0.106781,0.112274,0.0767212,0.0065918,-0.081604,-0.177185,-0.265167,-0.332428,-0.363281,-0.362152,-0.334503,-0.282013,-0.206116,-0.114899,-0.0297241,0.03302,0.0661011,0.0749817,0.0700073,0.0552368,0.0330811,0.00369263,-0.019928,-0.0314636,-0.0236206,-0.00476074,0.0140381,0.0226135,0.0210876,0.0152893,0.00683594,0.000274658,0.00610352,0.0324097,0.0874634,0.1651,0.253632,0.337982,0.403229,0.447174,0.469666,0.462952,0.415771,0.332001,0.227905,0.132141,0.0633545,0.0128784,-0.0280457,-0.0658264,-0.0954285,-0.112213,-0.116364,-0.127777,-0.157715,-0.206726,-0.247314,-0.256927,-0.23114,-0.181152,-0.123962,-0.0636902,-0.00189209,0.0578613,0.0993958,0.110748,0.0847778,0.019989,-0.0715332,-0.168854,-0.255432,-0.318176,-0.352417,-0.357513,-0.338806,-0.293549,-0.225433,-0.141205,-0.058197,0.00683594,0.0438232,0.0596619,0.0627441,0.0564575,0.0414734,0.0202026,0.000732422,-0.00952148,-0.00900269,-0.000946045,0.00772095,0.0132751,0.0118713,0.00363159,-0.00476074,-0.0116882,-0.00509644,0.0232849,0.0801392,0.15979,0.249603,0.332611,0.397125,0.44342,0.471954,0.468658,0.422272,0.340057,0.237457,0.14679,0.0788574,0.0282593,-0.0173035,-0.0646973,-0.0982666,-0.111816,-0.113678,-0.125763,-0.163757,-0.215302,-0.253815,-0.257843,-0.22934,-0.180145,-0.123505,-0.0656433,-0.000457764,0.0640259,0.113495,0.12442,0.0923462,0.0238953,-0.0605469,-0.147125,-0.232758,-0.303345,-0.349335,-0.364014,-0.346924,-0.302429,-0.236176,-0.157104,-0.0801392,-0.0160522,0.0269775,0.0506592,0.0583191,0.0540161,0.0438232,0.0271912,0.00616455,-0.00967407,-0.0110779,-0.00234985,0.0065918,0.00549316,-0.00112915,-0.00726318,-0.0116882,-0.0126038,-0.00683594,0.0148926,0.0637512,0.136719,0.225555,0.313751,0.382019,0.430664,0.465179,0.47757,0.452423,0.381195,0.279449,0.17981,0.101868,0.0436096,-0.0104675,-0.0662537,-0.110199,-0.131073,-0.134644,-0.143433,-0.1745,-0.217865,-0.245636,-0.24469,-0.215912,-0.169739,-0.116119,-0.0531616,0.0114746,0.069519,0.109253,0.124023,0.105835,0.0510864,-0.0324097,-0.130005,-0.223694,-0.293427,-0.339722,-0.36087,-0.357788,-0.323883,-0.263275,-0.183746,-0.10437,-0.0358276,0.0160522,0.0523376,0.0717468,0.0737,0.0606079,0.040863,0.0212097,0.00564575,-0.00524902,-0.0133667,-0.019928,-0.0256348,-0.0270386,-0.0311279,-0.0357666,-0.0363159,-0.0269775,0.00012207,0.0487976,0.119324,0.203888,0.292816,0.367523,0.421936,0.45752,0.472137,0.456635,0.398376,0.31012,0.213287,0.132019,0.0760498,0.0274353,-0.0292664,-0.0865173,-0.122742,-0.134766,-0.142487,-0.170868,-0.21759,-0.255035,-0.260925,-0.234619,-0.187927,-0.134369,-0.0704041,-0.00201416,0.0634766,0.115234,0.140594,0.13147,0.0861206,0.0126038,-0.0740356,-0.166229,-0.245514,-0.309875,-0.353546,-0.371887,-0.354645,-0.305298,-0.234955,-0.157379,-0.0870361,-0.0221558,0.0336914,0.0728149,0.0891418,0.0876465,0.0734863,0.0520935,0.0287781,0.00704956,-0.00973511,-0.0216675,-0.0314026,-0.0377197,-0.0420227,-0.0487366,-0.0508118,-0.0467834,-0.0315552,0.00106812,0.0570374,0.137573,0.229065,0.316437,0.383759,0.437042,0.478058,0.49295,0.460388,0.377838,0.274231,0.175507,0.0997925,0.036377,-0.0297852,-0.0923462,-0.131744,-0.140076,-0.140198,-0.155518,-0.189667,-0.223572,-0.234955,-0.220551,-0.188873,-0.14624,-0.0899353,-0.025177,0.0414734,0.0982666,0.13678,0.145782,0.121216,0.0623474,-0.0224304,-0.121399,-0.216034,-0.292145,-0.345093,-0.371735,-0.367188,-0.333099,-0.272766,-0.19516,-0.110992,-0.0359802,0.0239563,0.0656433,0.0861816,0.0933533,0.0846252,0.0637512,0.0341492,0.0065918,-0.0109253,-0.0218811,-0.0311279,-0.0397949,-0.0461731,-0.0504761,-0.0539551,-0.053772,-0.0475159,-0.028595,0.0108643,0.0745544,0.154236,0.243225,0.326508,0.393158,0.44397,0.474304,0.47229,0.425293,0.343567,0.246307,0.159393,0.0884705,0.0209961,-0.0491333,-0.106049,-0.137329,-0.148193,-0.159454,-0.186432,-0.222015,-0.246704,-0.243958,-0.215027,-0.17041,-0.11322,-0.0481262,0.0249023,0.0949097,0.145844,0.171417,0.1651,0.124176,0.0507507,-0.0440979,-0.148804,-0.246368,-0.323303,-0.375366,-0.39624,-0.379791,-0.331421,-0.257721,-0.17041,-0.0822144,-0.00262451,0.0612183,0.107239,0.126099,0.121063,0.0971069,0.0632935,0.0265198,-0.00939941,-0.0361023,-0.0546875,-0.0644836,-0.0654907,-0.0630188,-0.0594482,-0.0569763,-0.0527649,-0.0437622,-0.0205994,0.0224304,0.0873718,0.169739,0.260345,0.345093,0.414551,0.467712,0.494751,0.478577,0.415314,0.317169,0.212067,0.119049,0.0381775,-0.0351562,-0.101624,-0.147797,-0.166718,-0.168335,-0.172546,-0.19397,-0.219879,-0.233429,-0.22113,-0.18811,-0.145172,-0.0919495,-0.0245056,0.0520935,0.12027,0.169128,0.189941,0.179718,0.133301,0.0582581,-0.0461731,-0.160126,-0.263611,-0.341675,-0.387787,-0.401398,-0.383362,-0.334015,-0.254974,-0.156708,-0.0587158,0.0256348,0.09021,0.130402,0.147247,0.139252,0.113617,0.0687256,0.0191345,-0.0234985,-0.0526123,-0.0691833,-0.0782471,-0.0797424,-0.0736389,-0.0632935,-0.0569153,-0.0532227,-0.0456238,-0.0244446,0.0166321,0.0814819,0.164764,0.258789,0.345703,0.417511,0.467529,0.4935,0.477722,0.417572,0.321014,0.212402,0.10907,0.0209351,-0.052948,-0.118652,-0.167389,-0.193634,-0.199524,-0.200867,-0.211395,-0.228058,-0.236908,-0.219116,-0.17804,-0.124573,-0.0588684,0.0111389,0.0826721,0.144623,0.189941,0.208984,0.191864,0.138672,0.0562439,-0.0461121,-0.156586,-0.261414,-0.343903,-0.392212,-0.402954,-0.383026,-0.334351,-0.256378,-0.155243,-0.0508728,0.0393372,0.106567,0.148041,0.164642,0.158447,0.125702,0.0740356,0.0149536,-0.0355835,-0.0677795,-0.0876465,-0.0996704,-0.101135,-0.0898743,-0.0718689,-0.0566406,-0.0505981,-0.0465698,-0.0296021,0.00744629,0.0716858,0.152893,0.240265,0.325775,0.401611,0.461548,0.494354,0.483032,0.422546,0.328186,0.220398,0.118652,0.0270386,-0.0536194,-0.125763,-0.178986,-0.205292,-0.208466,-0.209259,-0.22168,-0.240265,-0.246582,-0.225037,-0.180603,-0.12323,-0.0606689,0.0119324,0.0880432,0.160797,0.212494,0.231812,0.213409,0.163818,0.0874634,-0.012207,-0.127441,-0.240417,-0.330322,-0.388794,-0.410339,-0.395844,-0.348663,-0.270325,-0.172272,-0.0688477,0.028656,0.108459,0.161682,0.183167,0.175964,0.143677,0.0909424,0.0281067,-0.0275269,-0.0735474,-0.105438,-0.120331,-0.117859,-0.102692,-0.0808716,-0.0677185,-0.0585327,-0.0536194,-0.0410767,-0.0122681,0.0409546,0.116241,0.207458,0.297577,0.379395,0.445831,0.487396,0.490753,0.449249,0.364441,0.253754,0.142761,0.0428162,-0.044281,-0.121887,-0.182281,-0.215179,-0.223022,-0.216644,-0.218536,-0.23114,-0.239655,-0.226654,-0.187866,-0.134491,-0.0716248,-0.00289917,0.0742188,0.150391,0.211334,0.243347,0.236572,0.197723,0.133087,0.0452881,-0.0654297,-0.184753,-0.290741,-0.368256,-0.403412,-0.40274,-0.368988,-0.305359,-0.217865,-0.115967,-0.0108032,0.0818176,0.147858,0.179474,0.182953,0.158783,0.115295,0.0550232,-0.00732422,-0.0611267,-0.0987244,-0.118317,-0.121613,-0.113953,-0.0991821,-0.0856323,-0.0748901,-0.0700073,-0.0638123,-0.0469666,-0.00604248,0.0648193,0.156311,0.255981,0.351135,0.430328,0.485107,0.50946,0.490997,0.420013,0.309937,0.183502,0.065094,-0.036377,-0.119995,-0.187714,-0.229736,-0.240417,-0.230408,-0.219879,-0.220062,-0.221283,-0.212677,-0.18457,-0.143158,-0.091156,-0.0249634,0.052887,0.130188,0.197327,0.238464,0.248932,0.230255,0.184967,0.11026,0.0113525,-0.102142,-0.216522,-0.31073,-0.373169,-0.399261,-0.387573,-0.343414,-0.275299,-0.186249,-0.0833435,0.0157776,0.0973206,0.149536,0.171417,0.166443,0.138062,0.0909424,0.0316772,-0.0279846,-0.0760498,-0.108582,-0.121277,-0.120544,-0.111755,-0.0976562,-0.0845032,-0.0776367,-0.0812683,-0.0787964,-0.0593872,-0.0117493,0.0667114,0.165894,0.270416,0.366302,0.446503,0.504578,0.526306,0.494751,0.402069,0.272552,0.137573,0.0202637,-0.0792542,-0.164032,-0.226654,-0.258392,-0.253235,-0.227661,-0.208801,-0.206512,-0.208069,-0.19455,-0.157593,-0.109467,-0.0580444,0.00759888,0.0906067,0.176514,0.240875,0.27536,0.279602,0.255371,0.200134,0.113892,0.00491333,-0.108643,-0.216187,-0.306976,-0.369934,-0.397522,-0.384491,-0.337799,-0.266846,-0.184845,-0.0950317,-0.00100708,0.0841675,0.13858,0.154572,0.145111,0.121887,0.0855103,0.0302734,-0.032135,-0.0814209,-0.110321,-0.121735,-0.123749,-0.118134,-0.109528,-0.0997314,-0.0907288,-0.0857849,-0.0843506,-0.0730286,-0.0362549,0.0390015,0.137238,0.242554,0.339203,0.425049,0.49115,0.515381,0.487518,0.404694,0.284576,0.150208,0.0308838,-0.0714722,-0.155304,-0.215515,-0.243622,-0.239136,-0.220276,-0.207733,-0.205231,-0.198181,-0.178192,-0.153351,-0.115173,-0.0585938,0.0179138,0.103973,0.187439,0.254425,0.298737,0.313141,0.290619,0.231812,0.145447,0.0444336,-0.0632935,-0.167999,-0.263947,-0.343689,-0.390686,-0.391876,-0.355652,-0.298737,-0.230133,-0.145508,-0.048645,0.0367737,0.0977173,0.126495,0.13678,0.129944,0.101532,0.0516663,-0.0114746,-0.0683899,-0.110748,-0.133972,-0.14093,-0.13974,-0.132874,-0.11853,-0.101074,-0.0909424,-0.0901489,-0.0887146,-0.0636292,-0.00201416,0.0860291,0.186432,0.285706,0.371674,0.441681,0.481262,0.476776,0.419525,0.319733,0.193146,0.070343,-0.0299988,-0.11026,-0.167175,-0.198181,-0.206299,-0.200684,-0.191223,-0.185425,-0.180725,-0.172821,-0.15686,-0.127655,-0.0761108,-0.00268555,0.0809326,0.165985,0.244415,0.302338,0.329529,0.322968,0.28067,0.212494,0.123505,0.0255737,-0.0708618,-0.166168,-0.253967,-0.32785,-0.371948,-0.381531,-0.361755,-0.318176,-0.25174,-0.165497,-0.0722961,0.0115356,0.0752869,0.117981,0.137238,0.130951,0.098938,0.0435486,-0.0250854,-0.0895386,-0.136658,-0.160278,-0.164551,-0.156586,-0.140472,-0.115295,-0.0929565,-0.0849609,-0.0887146,-0.0885315,-0.0683289,-0.0229492,0.0513306,0.141266,0.239746,0.329987,0.406036,0.452209,0.460663,0.421265,0.335114,0.220673,0.101349,-0.00296021,-0.0880432,-0.145691,-0.179596,-0.19516,-0.197174,-0.192474,-0.186188,-0.179474,-0.163361,-0.139191,-0.0956421,-0.037384,0.0344238,0.117859,0.204956,0.281067,0.332428,0.35498,0.34671,0.308777,0.241333,0.152222,0.0532837,-0.0452881,-0.140533,-0.233368,-0.31543,-0.376495,-0.40625,-0.395172,-0.351135,-0.284363,-0.205231,-0.116974,-0.0296631,0.0479126,0.101868,0.126251,0.120728,0.0892639,0.037262,-0.0302124,-0.0959167,-0.143555,-0.166321,-0.170074,-0.157928,-0.138733,-0.112152,-0.0879822,-0.0777893,-0.0886536,-0.108978,-0.119995,-0.10611,-0.0567017,0.0252991,0.123413,0.225494,0.321472,0.40451,0.45932,0.470398,0.424042,0.328979,0.21463,0.108246,0.0144958,-0.0639648,-0.126923,-0.176025,-0.200684,-0.202362,-0.196838,-0.187653,-0.169922,-0.143433,-0.104218,-0.0505981,0.0184631,0.105042,0.200928,0.289398,0.353638,0.393158,0.405579,0.385712,0.331268,0.246582,0.139679,0.0296021,-0.0740967,-0.174622,-0.273773,-0.363617,-0.426971,-0.44812,-0.425629,-0.370331,-0.292023,-0.201202,-0.107452,-0.025177,0.0394592,0.0834961,0.103546,0.0975037,0.0630188,0.00799561,-0.0558472,-0.10965,-0.141541,-0.152557,-0.148651,-0.136902,-0.121735,-0.107178,-0.0994568,-0.114838,-0.149384,-0.187531,-0.209991,-0.199188,-0.143677,-0.0473022,0.0751038,0.207581,0.326569,0.424896,0.491089,0.513489,0.481598,0.396454,0.280212,0.159668,0.0562439,-0.0247803,-0.089386,-0.14328,-0.182281,-0.201691,-0.205444,-0.197174,-0.177704,-0.149139,-0.107178,-0.049408,0.0301208,0.132416,0.246857,0.352631,0.42746,0.467041,0.472229,0.440125,0.376251,0.278656,0.158661,0.0355835,-0.0771179,-0.177032,-0.266724,-0.350677,-0.418915,-0.457306,-0.458191,-0.42569,-0.36792,-0.293427,-0.208374,-0.121552,-0.0438232,0.0245667,0.0769653,0.109985,0.115295,0.0867004,0.0333557,-0.0336304,-0.0912781,-0.134827,-0.162476,-0.179535,-0.186523,-0.186249,-0.183502,-0.188721,-0.209137,-0.237854,-0.260925,-0.260925,-0.228119,-0.15155,-0.0353088,0.106171,0.257324,0.397858,0.511932,0.58316,0.60141,0.557373,0.45639,0.320129,0.180878,0.0569153,-0.0465698,-0.129944,-0.195892,-0.231689,-0.240814,-0.228455,-0.200348,-0.158264,-0.107513,-0.0454407,0.0320129,0.127319,0.233276,0.341339,0.435089,0.500397,0.525513,0.509338,0.454773,0.369598,0.256378,0.125031,-0.00247192,-0.110992,-0.203827,-0.289276,-0.372345,-0.44812,-0.501007,-0.518402,-0.495087,-0.440277,-0.362762,-0.276093,-0.176117,-0.06604,0.0381775,0.124298,0.179932,0.192352,0.156189,0.0788574,-0.0202026,-0.112,-0.182404,-0.235107,-0.268311,-0.280457,-0.274506,-0.259583,-0.249939,-0.259186,-0.282562,-0.306305,-0.308868,-0.272766,-0.188599,-0.0606689,0.102081,0.284302,0.45639,0.593903,0.680878,0.70697,0.660187,0.540619,0.374512,0.202545,0.0578003,-0.0545654,-0.137787,-0.198242,-0.229065,-0.227112,-0.202423,-0.1633,-0.124359,-0.0831604,-0.0334778,0.0354309,0.126038,0.235168,0.352966,0.463409,0.541931,0.570343,0.555023,0.501343,0.414429,0.295563,0.15094,0.00543213,-0.115356,-0.208374,-0.279877,-0.345581,-0.413483,-0.479675,-0.526917,-0.539001,-0.510925,-0.454102,-0.37738,-0.286591,-0.177032,-0.0542297,0.0626831,0.159393,0.212219,0.20813,0.150604,0.0565186,-0.0563049,-0.166565,-0.25885,-0.329926,-0.371277,-0.382965,-0.369385,-0.337189,-0.303101,-0.282471,-0.283295,-0.283813,-0.262085,-0.205841,-0.110657,0.0181885,0.171692,0.337585,0.494965,0.619202,0.696442,0.713226,0.661072,0.550537,0.398651,0.240875,0.103424,-0.0134277,-0.107666,-0.182068,-0.229065,-0.238647,-0.214844,-0.171204,-0.120819,-0.0632324,0.00564575,0.0905457,0.196106,0.31369,0.428253,0.52243,0.581665,0.591217,0.562408,0.496582,0.396851,0.267975,0.120941,-0.0231628,-0.141815,-0.229004,-0.293488,-0.3461,-0.395172,-0.446899,-0.498718,-0.530212,-0.534363,-0.504578,-0.444489,-0.360199,-0.254486,-0.129669,0.00012207,0.110931,0.187866,0.208588,0.166992,0.0757751,-0.0425415,-0.174225,-0.296906,-0.39093,-0.442963,-0.446045,-0.411194,-0.351959,-0.285095,-0.226776,-0.197845,-0.201935,-0.217651,-0.214355,-0.178925,-0.101196,0.0162354,0.169006,0.34726,0.52597,0.67746,0.770599,0.785645,0.721283,0.594635,0.425903,0.241425,0.0696106,-0.0715332,-0.171265,-0.23175,-0.254242,-0.235046,-0.179932,-0.107727,-0.0378418,0.0283813,0.0993958,0.181335,0.278442,0.379669,0.4729,0.544281,0.585968,0.586243,0.545563,0.459991,0.333893,0.185028,0.0317383,-0.109192,-0.216034,-0.284485,-0.316772,-0.332275,-0.341675,-0.36087,-0.393677,-0.437714,-0.480408,-0.506439,-0.498657,-0.451691,-0.366119,-0.256836,-0.135559,-0.0163879,0.0818176,0.144012,0.157654,0.111664,0.0180664,-0.1008,-0.227509,-0.339142,-0.413086,-0.445221,-0.437195,-0.395508,-0.333771,-0.26886,-0.215027,-0.18811,-0.183899,-0.182953,-0.163696,-0.111877,-0.0250244,0.0962524,0.243225,0.405853,0.564911,0.69162,0.757721,0.748108,0.667175,0.535095,0.376099,0.206848,0.0551758,-0.065155,-0.146027,-0.189728,-0.19281,-0.157776,-0.0973816,-0.0260925,0.0435486,0.110596,0.178711,0.250458,0.325714,0.398254,0.457794,0.495697,0.506836,0.486115,0.433563,0.346375,0.23175,0.11142,-0.00924683,-0.112946,-0.19101,-0.239807,-0.266052,-0.278778,-0.286377,-0.296387,-0.32074,-0.364502,-0.429138,-0.488922,-0.524231,-0.516968,-0.464905,-0.373688,-0.262482,-0.145844,-0.0296021,0.0669861,0.126923,0.133881,0.0835571,-0.0113525,-0.133881,-0.262024,-0.37323,-0.440674,-0.459137,-0.435242,-0.378113,-0.301331,-0.220398,-0.149597,-0.106049,-0.0973206,-0.103363,-0.100952,-0.0760498,-0.0175171,0.0743713,0.191864,0.335571,0.489197,0.624969,0.714417,0.734833,0.688782,0.588318,0.451599,0.295227,0.143005,0.0137634,-0.0755615,-0.129456,-0.149933,-0.13443,-0.0862427,-0.0161743,0.0552368,0.116699,0.17276,0.229523,0.293365,0.352692,0.396851,0.423492,0.433014,0.422028,0.383301,0.310608,0.215515,0.109802,0.00738525,-0.0862427,-0.158844,-0.202423,-0.218933,-0.217773,-0.214966,-0.219543,-0.238403,-0.274963,-0.338593,-0.428986,-0.526184,-0.595245,-0.606567,-0.556519,-0.454498,-0.3255,-0.182678,-0.0320129,0.0969238,0.182831,0.202606,0.152008,0.0391846,-0.106995,-0.259399,-0.389526,-0.468109,-0.487061,-0.451416,-0.378387,-0.284088,-0.18866,-0.112274,-0.0718079,-0.0810852,-0.118256,-0.14859,-0.143005,-0.0839539,0.0281982,0.176514,0.354034,0.541626,0.70639,0.815826,0.840546,0.775848,0.640259,0.469208,0.284149,0.109314,-0.0291138,-0.117126,-0.156311,-0.155304,-0.123505,-0.0711365,-0.00564575,0.0534363,0.0953674,0.128784,0.169739,0.226837,0.296051,0.364227,0.421356,0.458252,0.470123,0.449127,0.383484,0.279602,0.15509,0.0283203,-0.0861816,-0.176025,-0.230347,-0.24765,-0.233704,-0.210876,-0.197906,-0.203827,-0.233948,-0.286499,-0.367126,-0.46994,-0.571472,-0.635895,-0.632965,-0.5578,-0.423889,-0.258453,-0.0848389,0.081543,0.209991,0.273346,0.259064,0.16449,0.00946045,-0.176239,-0.356506,-0.501892,-0.580536,-0.584503,-0.521942,-0.42041,-0.299591,-0.182068,-0.0851135,-0.0231018,-0.00918579,-0.0318909,-0.0586548,-0.0575867,-0.0104675,0.0861816,0.219116,0.375244,0.536987,0.67569,0.762207,0.77066,0.699402,0.561218,0.389069,0.20932,0.0463867,-0.0798645,-0.149261,-0.166504,-0.142944,-0.0943604,-0.0305481,0.0424194,0.116364,0.175232,0.215851,0.25061,0.292358,0.344635,0.394287,0.428864,0.440338,0.42511,0.380127,0.300995,0.191864,0.0733643,-0.036377,-0.127716,-0.193024,-0.231873,-0.238403,-0.213013,-0.172485,-0.137054,-0.12384,-0.133026,-0.164703,-0.213684,-0.281464,-0.366241,-0.454773,-0.516907,-0.536377,-0.499329,-0.410858,-0.281281,-0.138397,-0.00759888,0.0901489,0.136719,0.127716,0.0617371,-0.0546875,-0.20639,-0.359589,-0.482758,-0.553955,-0.553345,-0.491547,-0.388519,-0.265442,-0.137054,-0.0225525,0.0635681,0.106781,0.102692,0.0686646,0.0296021,0.0134888,0.0355835,0.100525,0.196503,0.306244,0.411957,0.50061,0.553894,0.555695,0.502228,0.403168,0.281555,0.164093,0.0716858,0.0144348,-0.00973511,-0.0136108,-0.00363159,0.0196533,0.0548401,0.0975037,0.139465,0.177124,0.209808,0.245178,0.288269,0.335785,0.372681,0.383759,0.36496,0.315643,0.241272,0.152405,0.0561218,-0.0282593,-0.0926819,-0.134766,-0.15033,-0.140198,-0.10791,-0.0654297,-0.0300598,-0.0110168,-0.0177307,-0.0452271,-0.089386,-0.147369,-0.214691,-0.28717,-0.358185,-0.421417,-0.466034,-0.480072,-0.454041,-0.381622,-0.275299,-0.163208,-0.0705261,-0.00463867,0.0256348,0.0201416,-0.0266418,-0.112946,-0.22818,-0.343414,-0.42926,-0.467255,-0.452606,-0.387115,-0.286987,-0.169342,-0.0534363,0.0463867,0.115784,0.14328,0.127991,0.0748291,0.00564575,-0.0450439,-0.0502014,-0.00784302,0.065033,0.150818,0.238129,0.32074,0.391602,0.432953,0.424103,0.362946,0.270142,0.177246,0.110809,0.0682678,0.0401306,0.0226135,0.0189209,0.0356445,0.0693359,0.114777,0.17276,0.227661,0.271484,0.305847,0.333893,0.358398,0.365784,0.340729,0.280457,0.194489,0.10672,0.0345764,-0.0180664,-0.0534973,-0.0734253,-0.072876,-0.0487366,-0.00738525,0.0360413,0.0724792,0.0959778,0.101746,0.0885315,0.0585327,0.0224304,-0.020752,-0.0706177,-0.128998,-0.189667,-0.246185,-0.296448,-0.348785,-0.399048,-0.43866,-0.451141,-0.421814,-0.355774,-0.272552,-0.197662,-0.134033,-0.0837708,-0.0514221,-0.0465698,-0.0794678,-0.14267,-0.214355,-0.268646,-0.300537,-0.297577,-0.259857,-0.193298,-0.112885,-0.0365906,0.0184631,0.0367737,0.0170593,-0.040802,-0.123016,-0.204559,-0.256592,-0.257172,-0.207458,-0.119385,-0.0126038,0.101959,0.215759,0.319611,0.390747,0.412872,0.381073,0.323212,0.263702,0.222076,0.196991,0.174377,0.157043,0.149323,0.152679,0.162964,0.175354,0.186096,0.190002,0.185516,0.17746,0.175507,0.181061,0.188049,0.181488,0.16095,0.138794,0.12738,0.134552,0.149933,0.161285,0.166168,0.173828,0.195831,0.2229,0.238739,0.238739,0.223816,0.200531,0.167389,0.125977,0.0769043,0.0189209,-0.0470581,-0.118317,-0.188049,-0.24408,-0.28598,-0.31839,-0.354095,-0.394958,-0.428864,-0.434357,-0.40274,-0.337921,-0.261871,-0.188995,-0.117523,-0.0504761,-0.0032959,0.0038147,-0.0350342,-0.113342,-0.219727,-0.326569,-0.419006,-0.476501,-0.486176,-0.446381,-0.374847,-0.29007,-0.20752,-0.142944,-0.107788,-0.110748,-0.151947,-0.213562,-0.264496,-0.277252,-0.238922,-0.156036,-0.041626,0.0861816,0.21048,0.316772,0.389404,0.415222,0.396637,0.342682,0.270142,0.198242,0.143616,0.115784,0.106903,0.107056,0.104431,0.108734,0.12384,0.151001,0.184845,0.215576,0.243744,0.272675,0.313293,0.359192,0.394958,0.410614,0.404755,0.384766,0.360413,0.332886,0.307587,0.288605,0.273834,0.260406,0.246521,0.233612,0.218872,0.198669,0.168243,0.129181,0.0834961,0.0434875,0.0147095,-0.00918579,-0.0310059,-0.0546875,-0.0756226,-0.0917969,-0.11026,-0.136993,-0.180725,-0.245178,-0.324158,-0.403412,-0.46637,-0.493286,-0.482086,-0.439392,-0.379517,-0.312408,-0.249939,-0.201263,-0.181549,-0.203888,-0.268738,-0.361755,-0.456787,-0.526764,-0.561676,-0.550415,-0.495697,-0.403351,-0.299194,-0.200409,-0.127319,-0.0920105,-0.0971069,-0.137909,-0.196716,-0.251953,-0.276367,-0.258514,-0.201538,-0.114288,-0.0162354,0.0764465,0.153687,0.211334,0.243835,0.253632,0.247101,0.240143,0.24234,0.262482,0.297729,0.3396,0.368988,0.377777,0.368652,0.351868,0.337921,0.334015,0.338715,0.353485,0.380676,0.419067,0.461884,0.491608,0.493073,0.460815,0.405762,0.343567,0.287842,0.245972,0.222809,0.215088,0.219543,0.230469,0.245178,0.255707,0.2565,0.241425,0.212006,0.175507,0.14035,0.114502,0.0931396,0.0712891,0.0430908,0.00564575,-0.0378418,-0.0887146,-0.147797,-0.216309,-0.29422,-0.378601,-0.469543,-0.553894,-0.618591,-0.651489,-0.650208,-0.621002,-0.564636,-0.49704,-0.421539,-0.350861,-0.299408,-0.282806,-0.299469,-0.33725,-0.389679,-0.434631,-0.461884,-0.465759,-0.436249,-0.37973,-0.308136,-0.24408,-0.19342,-0.167908,-0.171265,-0.200867,-0.249268,-0.297394,-0.325165,-0.315308,-0.268127,-0.188721,-0.0926819,0.011261,0.110992,0.194214,0.255432,0.295837,0.324707,0.357727,0.396637,0.439117,0.4841,0.524963,0.554565,0.558197,0.532074,0.477905,0.413879,0.358459,0.320679,0.302155,0.301544,0.321472,0.356049,0.397522,0.423706,0.42691,0.405701,0.372009,0.337036,0.309204,0.29657,0.304291,0.327118,0.353973,0.374359,0.381012,0.373016,0.341064,0.286377,0.212616,0.127502,0.0505371,-0.0132751,-0.0676575,-0.114899,-0.158264,-0.195984,-0.223633,-0.246033,-0.271881,-0.300415,-0.328979,-0.355499,-0.379517,-0.411072,-0.450348,-0.49295,-0.531281,-0.555298,-0.55719,-0.535767,-0.493011,-0.438324,-0.379944,-0.334564,-0.311462,-0.309601,-0.333099,-0.376038,-0.433624,-0.485382,-0.514832,-0.512085,-0.471802,-0.40686,-0.327179,-0.246857,-0.169739,-0.112427,-0.0838928,-0.0836792,-0.105225,-0.130066,-0.146851,-0.137848,-0.103302,-0.0434875,0.0361023,0.118805,0.19577,0.256378,0.29422,0.31073,0.3078,0.299072,0.299255,0.313568,0.346497,0.388123,0.430939,0.463562,0.486725,0.494354,0.489655,0.472565,0.44873,0.427582,0.41571,0.413147,0.418121,0.420868,0.413818,0.392548,0.357574,0.312683,0.267456,0.230804,0.206238,0.195099,0.196503,0.20639,0.221405,0.228394,0.223633,0.206512,0.179047,0.140259,0.0975037,0.0549622,0.0161743,-0.0193176,-0.0536194,-0.085968,-0.119049,-0.151398,-0.180939,-0.210327,-0.236572,-0.264282,-0.289795,-0.320526,-0.356506,-0.399384,-0.445374,-0.490204,-0.519653,-0.533691,-0.528534,-0.504639,-0.461823,-0.403687,-0.337799,-0.276184,-0.232086,-0.211487,-0.208801,-0.226501,-0.258667,-0.299988,-0.333099,-0.354095,-0.358734,-0.346924,-0.323425,-0.290741,-0.255646,-0.217987,-0.185425,-0.157379,-0.132751,-0.108734,-0.081543,-0.0508118,-0.0110779,0.0330811,0.0774536,0.118713,0.154572,0.181274,0.196564,0.202362,0.205109,0.205841,0.207916,0.217438,0.236115,0.263824,0.296631,0.328857,0.352478,0.363098,0.365906,0.362427,0.357117,0.354706,0.358063,0.365112,0.375366,0.388458,0.400665,0.400543,0.385834,0.357117,0.319,0.281128,0.242218,0.208466,0.17569,0.146301,0.121063,0.0991211,0.0793152,0.0603333,0.0391846,0.0186462,0.00314331,-0.00704956,-0.00543213,0.000213623,0.00448608,0.00933838,0.0115356,0.0100098,0.00967407,-0.00296021,-0.0293274,-0.0525513,-0.0687256,-0.0905457,-0.139252,-0.204498,-0.261353,-0.302887,-0.331879,-0.361938,-0.388,-0.411194,-0.411682,-0.378662,-0.345764,-0.323883,-0.303558,-0.270325,-0.229584,-0.195312,-0.167236,-0.147308,-0.134033,-0.125763,-0.125031,-0.135986,-0.154236,-0.172363,-0.194366,-0.213165,-0.228912,-0.241089,-0.245026,-0.243408,-0.231476,-0.212006,-0.190887,-0.160675,-0.119385,-0.0716858,-0.020752,0.0322876,0.081543,0.126587,0.162415,0.187195,0.197723,0.194824,0.181885,0.165497,0.151154,0.141876,0.139679,0.143768,0.150391,0.156647,0.165985,0.176025,0.185852,0.196777,0.209045,0.22403,0.240143,0.255035,0.27301,0.29129,0.307587,0.314026,0.310791,0.29303,0.269135,0.234283,0.193085,0.145905,0.0993958,0.0569763,0.0221558,-0.00375366,-0.0210876,-0.0342407,-0.037262,-0.0333557,-0.0255737,-0.0176392,-0.0161743,-0.00900269,-0.00195312,-0.00247192,-0.00106812,0.0102539,0.0290527,0.0449524,0.048584,0.0403442,0.025177,0.00839233,-0.0159607,-0.0512695,-0.0935669,-0.13147,-0.15979,-0.181396,-0.197906,-0.212006,-0.216766,-0.211884,-0.203491,-0.193817,-0.183014,-0.168335,-0.146027,-0.119934,-0.0934143,-0.0677185,-0.0458984,-0.0297241,-0.021759,-0.0260315,-0.0405273,-0.0639038,-0.0869141,-0.107239,-0.123962,-0.13443,-0.138733,-0.130066,-0.114899,-0.0967102,-0.0779724,-0.0622253,-0.0457764,-0.0333557,-0.0221558,-0.0115967,0.00274658,0.0190735,0.0375977,0.0542908,0.0683899,0.0812073,0.089386,0.0917969,0.0894775,0.0826721,0.072876,0.0645752,0.0565186,0.0477295,0.0412903,0.0339661,0.0272522,0.0188599,0.0118713,0.0065918,0.00671387,0.0105286,0.0212097,0.0363159,0.0553589,0.0758972,0.0935669,0.103699,0.103027,0.0916748,0.0714722,0.0458374,0.0151062,-0.0146179,-0.0410156,-0.0576477,-0.0649109,-0.061676,-0.0527649,-0.040863,-0.0296021,-0.0195312,-0.0126038,-0.00665283,-0.00415039,-0.00408936,-0.00201416,0.00289917,0.0103455,0.0195923,0.0306702,0.041748,0.0508728,0.0549011,0.053772,0.0484619,0.0383911,0.025177,0.0100098,-0.00463867,-0.0160522,-0.0224915,-0.0236206,-0.020752,-0.0151062,-0.00582886,0.0050354,0.0138855,0.0225525,0.0314636,0.0406189,0.052002,0.0644226,0.0771179,0.0910034,0.104645,0.114349,0.116241,0.110413,0.098053,0.0808716,0.0595398,0.0351562,0.0110168,-0.00973511,-0.0265808,-0.0379944,-0.0433655,-0.0436096,-0.0388489,-0.0302734,-0.019928,-0.00469971,0.00549316,0.0111389,0.0110779,0.00698853,-0.00112915,-0.0147095,-0.0275269,-0.0391235,-0.0484009,-0.0567932,-0.0640869,-0.0716858,-0.0768433,-0.0835571,-0.0906067,-0.0976562,-0.105225,-0.112488,-0.116638,-0.120331,-0.12149,-0.121338,-0.119141,-0.11496,-0.110535,-0.107666,-0.104156,-0.101471,-0.0994568,-0.0979309,-0.0957031,-0.0927429,-0.0894775,-0.0851135,-0.0810852,-0.0763855,-0.0713501,-0.0640869,-0.0562439,-0.0480652,-0.0392761,-0.0304565,-0.0205383,-0.0102539,0.000396729,0.0108032,0.020874,0.0310059,0.0422668,0.0534973,0.0643616,0.0761108,0.0871887,0.094696,0.0977783,0.0974426,0.0953674,0.0932922,0.089386,0.0877075,0.0898132,0.0963135,0.108398,0.124359,0.141541,0.156189,0.166565,0.169067,0.166321,0.159668,0.15033,0.144775,0.141479,0.137787,0.133148,0.134979,0.139526,0.141754,0.135895,0.125366,0.109802,0.0896606,0.0681763,0.0467834,0.0281982,0.0126038,0.00497437,0.00582886,0.00958252,0.0104675,0.0085144,0.00457764,-0.00390625,-0.0162354,-0.0297852,-0.041687,-0.0535583,-0.065155,-0.0743103,-0.0834351,-0.0923462,-0.103546,-0.116852,-0.130615,-0.144836,-0.151611,-0.153687,-0.149139,-0.143951,-0.138672,-0.13678,-0.137512,-0.139679,-0.143341,-0.146362,-0.147186,-0.145569,-0.144775,-0.14328,-0.14267,-0.141602,-0.141022,-0.142609,-0.144501,-0.143768,-0.138794,-0.12738,-0.108978,-0.0863647,-0.0590515,-0.0312805,-0.00650024,0.0140381,0.0238953,0.0256348,0.0202637,0.0118103,0.00408936,-0.00213623,-0.003479,0.000671387,0.0124207,0.0281067,0.046051,0.06604,0.0840149,0.0984497,0.108795,0.114166,0.114288,0.112213,0.112,0.114288,0.118713,0.126709,0.137909,0.147186,0.155304,0.159332,0.161011,0.1586,0.151886,0.141876,0.130524,0.116028,0.102203,0.0865784,0.0712891,0.058197,0.0465698,0.0375977,0.0293884,0.0241089,0.0191956,0.0175171,0.0169678,0.0189209,0.0226135,0.0273132,0.0307922,0.0312805,0.0285339,0.0218811,0.0134277,0.00308228,-0.00912476,-0.0214233,-0.0323486,-0.0420227,-0.0489807,-0.0518799,-0.0522766,-0.0489807,-0.0471191,-0.0463867,-0.049408,-0.0542908,-0.0598755,-0.0653076,-0.068512,-0.0687256,-0.0675049,-0.0639038,-0.0589905,-0.0541077,-0.0504761,-0.0504761,-0.0541077,-0.0589294,-0.0619507,-0.061676,-0.0583801,-0.0546265,-0.0490723,-0.0441589,-0.0379333,-0.033905,-0.0299988,-0.0322266,-0.0357666,-0.0401917,-0.0419312,-0.0422668,-0.0386658,-0.0322266,-0.0216064,-0.0114746,-0.00201416,0.00424194,0.0062561,0.00228882,-0.00759888,-0.0209961,-0.0338135,-0.0424805,-0.0453796,-0.040741,-0.0306091,-0.0145569,0.00436401,0.0230103,0.0379944,0.0464478,0.0480652,0.0414124,0.0299988,0.0171204,0.00482178,-0.00424194,-0.00878906,-0.00918579,-0.00531006,0.000213623,0.00524902,0.0103455,0.0102539,0.0062561,-0.00308228,-0.0138245,-0.0232849,-0.0278625,-0.028656,-0.0230103,-0.0133667,-0.00289917,0.00805664,0.0171814,0.0245667,0.0275879,0.0257568,0.0203247,0.0141602,0.00793457,0.00415039,0.00241089,0.00509644,0.0085144,0.0128784,0.0168457,0.0211487,0.025238,0.0274353,0.0268555,0.0254211,0.0226746,0.0232239,0.0247803,0.0274353,0.0317383,0.0359802,0.0393372,0.0418091,0.0426941,0.0425415,0.0410156,0.0404663,0.0387268,0.0393372,0.0404663,0.0415344,0.0437622,0.0447083,0.0452271,0.04422,0.0429382,0.0422668,0.040741,0.0389404,0.0385132,0.0375977,0.0367126,0.0338135,0.0299988,0.0244446,0.0179138,0.00946045,0.00112915,-0.00592041,-0.0131531,-0.0193176,-0.0230103,-0.0235596,-0.0209351,-0.0147705,-0.00799561,-0.00180054,0.00549316,0.00891113,0.0088501,0.003479,-0.00671387,-0.0212097,-0.0378418,-0.0544434,-0.0665894,-0.0754395,-0.0791931,-0.0791321,-0.0752869,-0.0714111,-0.0677185,-0.0669861,-0.0675964,-0.0696106,-0.0704651,-0.0715332,-0.0688477,-0.0648193,-0.0579224,-0.0509949,-0.0447083,-0.0405273,-0.0390625,-0.0400696,-0.0441589,-0.0504761,-0.0565186,-0.0628052,-0.0646973,-0.0644836,-0.0603943,-0.0561829,-0.0516052,-0.0483093,-0.0467224,-0.0440979,-0.0425415,-0.0385132,-0.032959,-0.0239563,-0.0132751,-0.000335693,0.0119324,0.0213318,0.028595,0.0293274,0.0282593,0.0259094,0.024353,0.0229492,0.0241089,0.0257568,0.0297852,0.0339661,0.0389404,0.0418091,0.041626,0.0377197,0.0312805,0.0263062,0.0241089,0.0260315,0.0326233,0.0424805,0.0547791,0.0677795,0.0777283,0.0839539,0.0864563,0.0837708,0.0775146,0.0668335,0.0551758,0.0424805,0.0326843,0.0241699,0.0198669,0.015564,0.0169678,0.020752,0.02771,0.0339661,0.0403442,0.045166,0.0491943,0.0527649,0.0553589,0.0562439,0.0554504,0.0535583,0.04953,0.0467224,0.0426941,0.039856,0.0383911,0.0346985,0.0279236,0.020752,0.0102539,0.00146484,-0.00793457,-0.0143738,-0.0201416,-0.0234985,-0.0260315,-0.0254211,-0.0214233,-0.0155029,-0.00891113,-0.00531006,-0.00442505,-0.00683594,-0.0100708,-0.013092,-0.0157166,-0.0205994,-0.0249634,-0.0305481,-0.0317993,-0.0334778,-0.0356445,-0.0385132,-0.0447693,-0.0505371,-0.0591125,-0.0657043,-0.0708618,-0.0733032,-0.0730896,-0.0724792,-0.0698547,-0.0664978,-0.0632324,-0.0586548,-0.0565796,-0.0558472,-0.0563049,-0.0566406,-0.0550232,-0.0528259,-0.0491943,-0.0452881,-0.041626,-0.0383301,-0.0354309,-0.0328064,-0.0315552,-0.0308838,-0.0311279,-0.0315552,-0.0309448,-0.0303345,-0.028595,-0.0279236,-0.0278625,-0.0283813,-0.0296021,-0.0292664,-0.0280457,-0.0265808,-0.0224304,-0.0183105,-0.0104065,-0.00234985,0.00491333,0.011261,0.0153809,0.0167236,0.0172424,0.0173035,0.0177307,0.0190735,0.0209351,0.0226135,0.0265808,0.0294495,0.0316772,0.0353699,0.0390015,0.0418701,0.0445557,0.045105,0.0461121,0.0455627,0.0434875,0.0399475,0.0346375,0.0302734,0.0265808,0.0239563,0.0255127,0.028717,0.0357056,0.0447693,0.0551758,0.0649719,0.073761,0.0794678,0.0812683,0.0798645,0.0743103,0.066925,0.0593872,0.0516663,0.0434875,0.0367126,0.0305481,0.0269775,0.0254211,0.0281067,0.0319519,0.0365906,0.0400696,0.0404053,0.0414124,0.0384521,0.0343628,0.0276489,0.019928,0.0108032,0.00335693,-0.00140381,-0.00274658,-0.00106812,0.000732422,0.00323486,0.00430298,0.00390625,0.000274658,-0.0067749,-0.0171814,-0.0303955,-0.0428162,-0.0523376,-0.057312,-0.0578003,-0.0542297,-0.0492554,-0.0429382,-0.0369263,-0.032074,-0.0279236,-0.0260315,-0.0272522,-0.0326233,-0.0369873,-0.0431519,-0.0475769,-0.0515442,-0.0542297,-0.0558472,-0.0564575,-0.0556335,-0.0552368,-0.0558472,-0.0574646,-0.0598755,-0.0643005,-0.0700684,-0.0755615,-0.077301,-0.0758972,-0.0704041,-0.0622253,-0.0513306,-0.0386047,-0.0240173,-0.0116882,-0.00146484,0.0038147,0.00524902,0.00247192,-0.00222778,-0.0101929,-0.0160522,-0.0220947,-0.0222168,-0.0200806,-0.0159607,-0.0104065,-0.00442505,0.00100708,0.00576782,0.0085144,0.00872803,0.00906372,0.00845337,0.00918579,0.0104065,0.0126038,0.016571,0.0209961,0.0238342,0.0282593,0.0314636,0.0344849,0.037262,0.0391235,0.0400696,0.0390625,0.0368347,0.0338135,0.0304565,0.0266418,0.0232239,0.0192566,0.017395,0.0153809,0.0155029,0.01651,0.0176392,0.0189209,0.0188599,0.0184631,0.0182495,0.0177307,0.0172424,0.0163879,0.0181274,0.0195312,0.0218811,0.0232239,0.0233459,0.020813,0.0183105,0.0138245,0.0104065,0.00726318,0.00598145,0.00750732,0.011261,0.0185242,0.0256958,0.0344849,0.0380554,0.0383911,0.0350342,0.0289917,0.0211487,0.012207,0.00308228,-0.00408936,-0.00732422,-0.00582886,0.000793457,0.0100098,0.0186462,0.0271912,0.0314636,0.0320129,0.0283813,0.0218201,0.0141602,0.00482178,-0.00201416,-0.00665283,-0.00750732,-0.00616455,-0.00140381,0.00357056,0.00891113,0.0126038,0.0136108,0.0134277,0.0105286,0.00582886,-0.00146484,-0.0083313,-0.0170593,-0.0236206,-0.0284424,-0.0331421,-0.0358276,-0.0383911,-0.0393372,-0.0386047,-0.0368347,-0.0317383,-0.027771,-0.0236816,-0.0209961,-0.0188599,-0.0191345,-0.0185242,-0.0202637,-0.0232239,-0.0273743,-0.0335693,-0.0409546,-0.0488586,-0.0559082,-0.0595398,-0.0610046,-0.061615,-0.0585938,-0.052887,-0.0459595,-0.0379944,-0.0316162,-0.0259705,-0.0228882,-0.0201416,-0.0189819,-0.0184021,-0.0191345,-0.0204773,-0.0232239,-0.0248413,-0.0276489,-0.0289917,-0.028656,-0.0273743,-0.0252991,-0.0204163,-0.0161133,-0.00918579,-0.00296021,0.00296021,0.0065918,0.00784302,0.00784302,0.00631714,0.00509644,0.00335693,0.00280762,0.00363159,0.00491333,0.00817871,0.0108032,0.0144348,0.0184631,0.0223389,0.0261841,0.0294495,0.0316162,0.0335693,0.0327454,0.0310669,0.02771,0.0222778,0.0181274,0.0146179,0.0146179,0.0152893,0.0195923,0.0258484,0.033905,0.041748,0.0484009,0.0514221,0.0509949,0.0470581,0.0390015,0.0304565,0.0220947,0.0166321,0.0142822,0.0146179,0.0182495,0.0216064,0.024353,0.0256958,0.0246277,0.0220947,0.0190735,0.0142212,0.0107422,0.00765991,0.00631714,0.00616455,0.00839233,0.0132751,0.0190735,0.0246887,0.0296631,0.0317993,0.0316162,0.028656,0.024353,0.0172424,0.0106812,0.0038147,-0.000946045,-0.00750732,-0.0124207,-0.0174561,-0.0212708,-0.0240173,-0.0261841,-0.0280457,-0.0278625,-0.0255127,-0.020752,-0.015564,-0.0105896,-0.00610352,-0.00228882,0.000335693,0.000793457,-0.000396729,-0.00213623,-0.00543213,-0.00805664,-0.0104065,-0.0118713,-0.0132751,-0.0144348,-0.0175171,-0.0215454,-0.0281982,-0.0360413,-0.0445557,-0.0518799,-0.0575256,-0.0597839,-0.0593262,-0.0545654,-0.0471802,-0.0371094,-0.0265808,-0.0159607,-0.00704956,0.000671387,0.00616455,0.0088501,0.00918579,0.00765991,0.00598145,0.00363159,0.000671387,-0.00262451,-0.00845337,-0.0149536,-0.0228271,-0.0303955,-0.0387878,-0.0447083,-0.0495911,-0.0509338,-0.0491333,-0.0448914,-0.0360413,-0.0249634,-0.0128174,-0.000396729,0.0115356,0.0216675,0.0285339,0.0324097,0.032959,0.0314026,0.0265808,0.020874,0.0142212,0.0062561,-0.00100708,-0.00979614,-0.0161743,-0.020752,-0.0247803,-0.0270386,-0.0283203,-0.0275269,-0.0257568,-0.0224304,-0.0172424,-0.0115967,-0.00570679,0,0.00665283,0.0118713,0.016571,0.0205383,0.0231628,0.0269775,0.0279846,0.028717,0.0273743,0.0236206,0.0169067,0.00878906,0,-0.00967407,-0.0166321,-0.0224304,-0.025177,-0.0241089,-0.0212097,-0.015625,-0.00759888,0.0012207,0.00985718,0.0182495,0.0263672,0.0324707,0.0392761,0.0447083,0.0491943,0.053009,0.0553589,0.0558472,0.0541077,0.0496521,0.0437622,0.036499,0.0300598,0.0250244,0.0214844,0.0213318,0.0224304,0.0260315,0.0303955,0.0343628,0.0369873,0.0392761,0.0377197,0.037384,0.0347595,0.0337524,0.0331421,0.0336914,0.0358276,0.0378418,0.0401917,0.040863,0.0406799,0.0384521,0.0334778,0.0269165,0.0195923,0.0104675,0.00195312,-0.00665283,-0.0137634,-0.0195312,-0.0229492,-0.0250854,-0.0252991,-0.0249023,-0.0235596,-0.0227661,-0.0228882,-0.0257568,-0.0296631,-0.0359802,-0.0437622,-0.0517578,-0.0580444,-0.0636902,-0.065979,-0.0666504,-0.0646362,-0.06073,-0.0554504,-0.0508728,-0.0489197,-0.0491333,-0.0524902,-0.0569153,-0.0629578,-0.0679932,-0.0720825,-0.0734253,-0.0722961,-0.0688477,-0.0654907,-0.0617981,-0.058136,-0.0578613,-0.0592041,-0.0622864,-0.0636902,-0.0646973,-0.061676,-0.0555725,-0.0473938,-0.0358276,-0.0253601,-0.0138245,-0.00604248,-0.000213623,0.00280762,0.00323486,0.00308228,0.00335693,0.00430298,0.00765991,0.0120239,0.0191345,0.0263672,0.0336914,0.0387878,0.0430908,0.0447693,0.0457764,0.0465088,0.0471802,0.0505371,0.0532837,0.058136,0.0620728,0.0653076,0.0676575,0.0672607,0.065155,0.0609436,0.0541077,0.0474548,0.0410767,0.0356445,0.0334167,0.0325623,0.0345764,0.037262,0.0404663,0.0426025,0.0448303,0.0456238,0.0452271,0.0437012,0.041748,0.0400696,0.0370483,0.033905,0.0283813,0.0234375,0.0179138,0.0118103,0.00604248,-0.00167847,-0.00671387,-0.012085,-0.016571,-0.0198669,-0.0232239,-0.0263062,-0.0278625,-0.0299377,-0.0298767,-0.0289917,-0.0260315,-0.0223389,-0.016449,-0.0115967,-0.00524902,0.000213623,0.00363159,0.00448608,0.00369263,-0.000396729,-0.00717163,-0.0144958,-0.0227661,-0.0307922,-0.0363159,-0.0383301,-0.0362549,-0.0308838,-0.0231018,-0.0140991,-0.00436401,0.00335693,0.0101318,0.0143738,0.0160522,0.0172424,0.0158386,0.0150452,0.0151672,0.0161743,0.0181885,0.0204773,0.0222168,0.0222168,0.0213318,0.0173035,0.0137024,0.00778198,0.0020752,-0.00357056,-0.00717163,-0.00979614,-0.0103455,-0.00912476,-0.00891113,-0.00784302,-0.00683594,-0.00671387,-0.00549316,-0.00576782,-0.00744629,-0.00793457,-0.0101318,-0.0112,-0.0142212,-0.0183105,-0.0237732,-0.0301208,-0.0377808,-0.0446167,-0.0516663,-0.0578003,-0.0632324,-0.0662537,-0.0696716,-0.0701904,-0.0701904,-0.0677185,-0.0645752,-0.0603943,-0.0564575,-0.0508728,-0.046051,-0.040741,-0.0353088,-0.0328064,-0.0307922,-0.0307922,-0.0323486,-0.0336304,-0.0370483,-0.0399475,-0.0438843,-0.0466309,-0.0484009,-0.0475159,-0.0431519,-0.0361023,-0.0262451,-0.0147705,-0.00289917,0.00891113,0.0195923,0.0279846,0.0349121,0.0404053,0.0436096,0.0473938,0.0491333,0.0509949,0.0518799,0.0533447,0.0541077,0.0558472,0.0561218,0.0571899,0.0576477,0.0568542,0.057312,0.058197,0.0596008,0.0628967,0.0672607,0.0728149,0.0785217,0.0842285,0.0894775,0.0939636,0.0973816,0.0996704,0.0993347,0.0972595,0.0928955,0.086792,0.0787964,0.0684509,0.0578003,0.0468445,0.0370483,0.028656,0.0209961,0.0169678,0.0128174,0.011261,0.00991821,0.00891113,0.00698853,0.0038147,0.00088501,-0.00469971,-0.00839233,-0.0124817,-0.016571,-0.0193176,-0.0212097,-0.0228271,-0.0239563,-0.0247803,-0.0268555,-0.0298767,-0.03302,-0.0389404,-0.0452271,-0.0532227,-0.0617981,-0.0724792,-0.0814209,-0.0906677,-0.0975952,-0.10321,-0.105225,-0.105042,-0.100403,-0.0942993,-0.0852356,-0.0744934,-0.0634155,-0.0526123,-0.04422,-0.0377197,-0.0367737,-0.0375977,-0.0411377,-0.0470581,-0.0524292,-0.0559692,-0.0575867,-0.0559692,-0.0522156,-0.046051,-0.0391846,-0.0322266,-0.0263672,-0.0204773,-0.0167236,-0.0142822,-0.0127563,-0.0110168,-0.00683594,-0.00128174,0.00650024,0.0146179,0.0232239,0.0314026,0.0377197,0.0414734,0.0436096,0.0433655,0.0412903,0.0386047,0.0353088,0.0328979,0.0302734,0.0305481,0.0306091,0.0315552,0.0326233,0.0333557,0.0350342,0.0359802,0.0383301,0.0394592,0.0406189,0.0428772,0.0428772,0.0435486,0.0420227,0.0401917,0.0377197,0.0335693,0.0304565,0.0276489,0.0249023,0.0222778,0.019989,0.0169067,0.0148926,0.0104065,0.00643921,0.00167847,-0.00314331,-0.00750732,-0.0111389,-0.0132751,-0.0144348,-0.0149536,-0.0117493,-0.00991821,-0.00598145,-0.00323486,-0.000213623,0.00195312,0.00234985,0.00213623,0.00100708,-0.00241089,-0.00598145,-0.0105896,-0.0140991,-0.0170593,-0.0184021,-0.0186462,-0.0181274,-0.016571,-0.0147095,-0.0137634,-0.0118713,-0.0110168,-0.0108643,-0.00979614,-0.00985718,-0.00765991,-0.00424194,0.000671387,0.0065918,0.0128784,0.0180664,0.0224304,0.0250244,0.0244446,0.0231628,0.0201416,0.0178528,0.0154419,0.0146179,0.0158997,0.0175781,0.0193176,0.0218201,0.0215454,0.0209961,0.0184021,0.0153809,0.0103455,0.00576782,0.00167847,-6.10352e-05,-0.000732422,0.00140381,0.00436401,0.0071106,0.0103455,0.0100708,0.0101318,0.00732422,0.00375366,-0.0012207,-0.00610352,-0.0110779,-0.0145569,-0.0181885,-0.019928,-0.0222168,-0.0227661,-0.0250854,-0.025177,-0.0279236,-0.0293884,-0.0324097,-0.0343018,-0.0367126,-0.0387268,-0.0386047,-0.0399475,-0.0378418,-0.0391846,-0.0384521,-0.0390015,-0.0391235,-0.0383911,-0.0389404,-0.0390015,-0.0395203,-0.0399475,-0.0406189,-0.0414734,-0.0397949,-0.0378418,-0.0351562,-0.0320129,-0.028717,-0.0256958,-0.0226135,-0.0198669,-0.0169067,-0.0129395,-0.0101318,-0.00616455,-0.00146484,0.00308228,0.00744629,0.0108032,0.0132751,0.0134888,0.0124817,0.00958252,0.00576782,0.00228882,6.10352e-05,0.000946045,0.0020752,0.00805664,0.0147705,0.0224304,0.0298767,0.0357056,0.0406189,0.0438232,0.0462952,0.0459595,0.0455627,0.0428162,0.0403442,0.0386658,0.0376587,0.037384,0.037323,0.037262,0.0351562,0.0343018,0.0308838,0.0291138,0.0263672,0.0232849,0.0216064,0.0200806,0.0194092,0.0189209,0.0191956,0.0200806,0.0201416,0.0206604,0.020813,0.0218201,0.0222778,0.0229492,0.0228882,0.0216675,0.0191956,0.0169067,0.0135498,0.00973511,0.00476074,-0.00012207,-0.00543213,-0.00933838,-0.0139465,-0.0152893,-0.0169678,-0.015625,-0.0151062,-0.0118103,-0.00946045,-0.00704956,-0.00463867,-0.00415039,-0.00274658,-0.00363159,-0.00469971,-0.00604248,-0.00967407,-0.0125427,-0.0169067,-0.0209961,-0.0247803,-0.0284424,-0.0316162,-0.0332947,-0.0341492,-0.03302,-0.032074,-0.0299377,-0.0273132,-0.025238,-0.0227661,-0.0209961,-0.0194702,-0.0173035,-0.0159607,-0.0143738,-0.0134277,-0.0128174,-0.0140991,-0.0153809,-0.0177307,-0.020874,-0.0244446,-0.0275269,-0.0289307,-0.0306702,-0.0303955,-0.0299988,-0.0281982,-0.0263062,-0.0236206,-0.0209351,-0.0194092,-0.0184021,-0.016449,-0.0162964,-0.0146179,-0.0127563,-0.0104675,-0.00878906,-0.00717163,-0.00643921,-0.00598145,-0.00592041,-0.0062561,-0.00671387,-0.00738525,-0.00726318,-0.00698853,-0.00524902,-0.00189209,0.000793457,0.00531006,0.00857544,0.0124817,0.0145569,0.0163879,0.0166321,0.016571,0.0170593,0.01651,0.017395,0.0184021,0.0186462,0.020874,0.0209961,0.0218201,0.0218201,0.0205383,0.0203247,0.0187988,0.0181274,0.0177307,0.0178528,0.0182495,0.0185242,0.0195923,0.0196533,0.0202026,0.0200806,0.0203247,0.0202026,0.0198669,0.0195312,0.0189819,0.0169678,0.0161743,0.0140381,0.0119324,0.0102539,0.00900269,0.00738525,0.0071106,0.00750732,0.0071106,0.00900269,0.00985718,0.0105896,0.0124207,0.0118713,0.0123596,0.0119324,0.0101929,0.00918579,0.00650024,0.00408936,0.000732422,-0.00274658,-0.00491333,-0.00744629,-0.00924683,-0.00991821,-0.0108032,-0.0106812,-0.0105896,-0.0085144,-0.00692749,-0.00469971,-0.00280762,0,0.00128174,0.00247192,0.00302124,0.00222778,0.00100708,-0.00180054,-0.00491333,-0.00872803,-0.0119324,-0.0151062,-0.0169067,-0.0181885,-0.0174561,-0.0177307,-0.0172424,-0.0186462,-0.0192566,-0.0212097,-0.0228271,-0.024292,-0.0250854,-0.0255737,-0.0238342,-0.0212708,-0.0181885,-0.0140991,-0.0110779,-0.00839233,-0.00671387,-0.00704956,-0.00704956,-0.00872803,-0.0114136,-0.0137634,-0.0171204,-0.0202637,-0.0228882,-0.0246277,-0.0264282,-0.0264282,-0.0262451,-0.0247803,-0.0229492,-0.0210876,-0.0192566,-0.0181274,-0.016571,-0.0157776,-0.0148315,-0.0133667,-0.0110168,-0.00924683,-0.00671387,-0.00375366,-0.00100708,0.0015564,0.00436401,0.00570679,0.00744629,0.00857544,0.00912476,0.0106812,0.0109253,0.0116882,0.0111389,0.0113525,0.0101318,0.00918579,0.00878906,0.00799561,0.00939941,0.0114746,0.0131531,0.0152893,0.0177307,0.0194092,0.020813,0.0220947,0.0221558,0.0230103,0.0234985,0.0238342,0.0248413,0.0262451,0.0265198,0.0260925,0.0255127,0.0233459,0.020813,0.0179138,0.0139465,0.0111389,0.00811768,0.00717163,0.00704956,0.00704956,0.00744629,0.00784302,0.00692749,0.00665283,0.00558472,0.00369263,0.00302124,0.000335693,-0.000213623,-0.00112915,-0.0017395,-0.00161743,-0.00140381,-0.0012207,-0.0015564,-0.00180054,-0.00341797,-0.00549316,-0.00772095,-0.0102539,-0.012146,-0.0139465,-0.0147095,-0.0153809,-0.0157166,-0.0146179,-0.0144958,-0.0139465,-0.0134277,-0.0118103,-0.0109253,-0.0103455,-0.00793457,-0.00765991,-0.00592041,-0.00482178,-0.00369263,-0.00274658,-0.00201416,-0.00134277,-0.00112915,-0.00140381,-0.0020752,-0.00308228,-0.00482178,-0.00637817,-0.00817871,-0.00811768,-0.00872803,-0.00683594,-0.00515747,-0.00134277,0.00146484,0.00564575,0.00637817,0.00726318,0.00637817,0.00424194,0.00256348,-0.00012207,-0.00189209,-0.00302124,-0.00335693,-0.00213623,-0.0015564,-0.000335693,-0.00146484,-0.00189209,-0.00408936,-0.00637817,-0.0083313,-0.0115356,-0.013092,-0.0143738,-0.0146179,-0.0140381,-0.0126953,-0.0114746,-0.0108643,-0.00991821,-0.00979614,-0.00967407,-0.00946045,-0.00946045,-0.00906372,-0.00906372,-0.00979614,-0.0108643,-0.0122681,-0.0142822,-0.0152893,-0.0169678,-0.0174561,-0.0172424,-0.0157776,-0.0131531,-0.0105896,-0.00805664,-0.00549316,-0.00476074,-0.00442505,-0.00442505,-0.00598145,-0.00698853,-0.00704956,-0.00799561,-0.00683594,-0.00448608,-0.00268555,-0.000274658,0.00308228,0.00558472,0.0088501,0.0109253,0.0146179,0.01651,0.0185242,0.019989,0.0209961,0.0215454,0.0221558,0.0222778,0.0222778,0.0218201,0.0223389,0.0211487,0.0223389,0.0211487,0.020874,0.0200806,0.0191345,0.0179138,0.0172424,0.016571,0.0161133,0.0158386,0.0175781,0.0177307,0.020752,0.0231018,0.025238,0.0260925,0.0259094,0.0255127,0.0228271,0.0195923,0.0154419,0.0115356,0.00671387,0.00335693,6.10352e-05,-0.00262451,-0.00369263,-0.00469971,-0.00576782,-0.00537109,-0.00610352,-0.00637817,-0.00631714,-0.0067749,-0.00784302,-0.00839233,-0.0100708,-0.0116882,-0.013031,-0.0150452,-0.015564,-0.0169678,-0.0166321,-0.0161743,-0.0152283,-0.0144348,-0.0139465,-0.0144348,-0.0160522,-0.0187378,-0.0221558,-0.0252991,-0.0284424,-0.0314026,-0.0326233,-0.0322266,-0.0313416,-0.0288696,-0.0252991,-0.0215454,-0.0181885,-0.015564,-0.0142212,-0.0132141,-0.0131531,-0.0126953,-0.0129395,-0.0120239,-0.012146,-0.0109253,-0.0110779,-0.0100098,-0.00973511,-0.00973511,-0.0105286,-0.0110779,-0.012207,-0.012207,-0.0132751,-0.0131531,-0.013031,-0.0117493,-0.0102539,-0.0085144,-0.00448608,-0.00241089,0.000610352,0.00262451,0.00415039,0.00564575,0.00671387,0.00827026,0.00845337,0.00912476,0.00912476,0.00973511,0.0106812,0.0114746,0.0115356,0.0114136,0.0103455,0.00958252,0.00750732,0.00744629,0.00671387,0.00631714,0.00726318,0.00784302,0.0104675,0.0135498,0.0160522,0.0190735,0.020752,0.0228271,0.0233459,0.024231,0.0226135,0.0216675,0.0185852,0.0148926,0.012207,0.0085144,0.00692749,0.00509644,0.00531006,0.00564575,0.00616455,0.0083313,0.00958252,0.0111389,0.0120239,0.0118713,0.0113525,0.00979614,0.00799561,0.00732422,0.00570679,0.00543213,0.00643921,0.00650024,0.00891113,0.00967407,0.00979614,0.00857544,0.00558472,0.0015564,-0.00457764,-0.0102539,-0.0167236,-0.0221558,-0.0256958,-0.0283813,-0.0275269,-0.0249634,-0.0204773,-0.0152893,-0.0104675,-0.00537109,-0.00167847,0.00088501,0.00167847,0.00161743,0.000793457,-6.10352e-05,-0.00189209,-0.00396729,-0.0050354,-0.00717163,-0.0083313,-0.0103455,-0.0122681,-0.0141602,-0.0169067,-0.0179749,-0.019989,-0.0209351,-0.0209351,-0.0206604,-0.0178528,-0.0158997,-0.0122681,-0.00784302,-0.00497437,-0.00100708,0.0015564,0.00491333,0.00683594,0.00811768,0.00891113,0.0085144,0.00717163,0.00564575,0.00314331,0.000793457,-0.00274658,-0.00509644,-0.00805664,-0.00933838,-0.0112,-0.0102539,-0.00759888,-0.0017395,0.00750732,0.00933838,0.00469971,-0.00408936,-0.00738525,-0.00256348,0.00430298,0.00906372,0.0131531,0.01651,0.0174561,0.0119324,0.00463867,-0.00100708,-0.00408936,-0.00558472,-0.00811768,-0.0175781,-0.0250244,-0.0247803,-0.0193176,-0.0120239,-0.00558472,0.00341797,0.0100098,0.00918579,0.00778198,0.00549316,0.00750732,0.00537109,0.00476074,0.00341797,0.00088501,0.00289917,0.00765991,0.00793457,0.00604248,0.00457764,0.00430298,0.00213623,0.000671387,0.000335693,0.00213623,0.00491333,0.00872803,0.00799561,0.000793457,-0.000793457,0.00592041,0.0114136,0.0139465,0.0126038,0.0249023,0.0377808,0.0403442,0.0381775,0.0307312,0.0228882,0.019928,0.0225525,0.0166321,0.0144348,0.0140991,0.0110168,0.00274658,-0.00442505,-0.00531006,0.000793457,0.0083313,0.00924683,0.00415039,-0.000671387,-0.00436401,-0.0133667,-0.0201416,-0.0147095,-0.0065918,-0.0050354,-0.0132751,-0.0250244,-0.025177,-0.0176392,-0.0140991,-0.0194092,-0.0237732,-0.015625,-0.0088501,-0.0151062,-0.0249634,-0.0330811,-0.0296021,-0.0229492,-0.020752,-0.0285339,-0.0405273,-0.0437012,-0.0381165,-0.0267029,-0.020813,-0.0213318,-0.024231,-0.0249023,-0.0302734,-0.0325623,-0.0263062,-0.0162964,-0.0161133,-0.0249634,-0.027771,-0.0260315,-0.0250244,-0.020874,-0.0202026,-0.0212097,-0.0162354,-0.0067749,-0.00704956,-0.0148926,-0.0124817,-0.0071106,-0.00357056,-0.00262451,-0.000335693,-0.000946045,-0.00222778,0.00515747,0.0175171,0.0250854,0.0194092,0.0146179,0.0256348,0.03302,0.0394592,0.041687,0.0499878,0.053894,0.0495911,0.0414124,0.0303345,0.0299377,0.025238,0.0168457,0.0138855,0.0283203,0.0420227,0.0366516,0.0239563,0.0157166,0.0177307,0.0171204,0.0238342,0.0332336,0.0309448,0.0189209,0.0123596,0.0167236,0.0120239,0.00616455,0.0134277,0.0205383,0.0185852,0.0145569,0.0151672,0.0195923,0.0221558,0.0138245,-0.0111389,-0.036377,-0.0399475,-0.0222778,-0.0085144,-0.0139465,-0.0311279,-0.0359802,-0.0263672,-0.0150452,-0.0138855,-0.0248413,-0.0387268,-0.040863,-0.0325623,-0.0303345,-0.0395203,-0.0431519,-0.0379333,-0.0313416,-0.0379944,-0.0469055,-0.0463867,-0.0346375,-0.0262451,-0.0294495,-0.0391235,-0.0502014,-0.0466309,-0.037262,-0.0326843,-0.0369263,-0.0370483,-0.0323486,-0.0256348,-0.0172424,-0.012146,-0.0135498,-0.019989,-0.0227661,-0.0212708,-0.0195312,-0.0126953,-0.00704956,-0.00692749,-0.0151062,-0.0184631,-0.0124207,-0.00650024,0.000549316,0.00732422,0.0132751,0.0178528,0.0234375,0.0311279,0.0391235,0.0477295,0.0552368,0.0596619,0.0591125,0.0542297,0.0532837,0.0517578,0.0488586,0.0469666,0.0455017,0.0429382,0.0434875,0.0463867,0.0454407,0.040802,0.0397949,0.0404663,0.0391235,0.0434875,0.0479126,0.0487976,0.0418091,0.0319519,0.0339661,0.0414734,0.0477905,0.0421448,0.0315552,0.024292,0.0276489,0.0340881,0.0301208,0.0138245,-0.00308228,-0.00759888,-0.00985718,-0.0174561,-0.0293884,-0.0346985,-0.0349121,-0.0326843,-0.0381165,-0.0452271,-0.0482483,-0.0475769,-0.0448303,-0.0489197,-0.0532837,-0.0590515,-0.065979,-0.0677795,-0.0684509,-0.0661011,-0.0611267,-0.0461121,-0.0259705,-0.0138245,-0.0185242,-0.02771,-0.0336914,-0.0367126,-0.040863,-0.0524902,-0.0661011,-0.0770569,-0.0763855,-0.0708618,-0.0634766,-0.0570374,-0.0569153,-0.0585938,-0.0587769,-0.0554504,-0.0532227,-0.049469,-0.0467224,-0.0473938,-0.0418701,-0.0312195,-0.0191345,-0.0104675,-0.00985718,-0.0140381,-0.0132751,-0.00213623,0.0124207,0.0284424,0.0396118,0.0491943,0.0604553,0.0731506,0.0829468,0.0875244,0.0885315,0.0846863,0.0793152,0.0783081,0.0800781,0.0839539,0.0894775,0.0930786,0.093811,0.09375,0.0966492,0.101532,0.105103,0.103882,0.098999,0.0954285,0.094574,0.0948181,0.0904846,0.0839539,0.0751038,0.0709534,0.0701294,0.0720215,0.0758972,0.0768433,0.0688477,0.0564575,0.0459595,0.0377197,0.0250854,0.00952148,-0.00537109,-0.0198059,-0.0328064,-0.0437012,-0.0502625,-0.0583801,-0.0687866,-0.0808716,-0.0913391,-0.102478,-0.116119,-0.124847,-0.128113,-0.128998,-0.137573,-0.155304,-0.168732,-0.166321,-0.148651,-0.123566,-0.0960388,-0.0718689,-0.0561829,-0.0519409,-0.0503235,-0.0481873,-0.0456238,-0.0503235,-0.0681152,-0.089386,-0.104095,-0.0991211,-0.085907,-0.0783997,-0.0777283,-0.0827637,-0.0799255,-0.0748291,-0.0710144,-0.0727539,-0.0787354,-0.0827637,-0.0804749,-0.0648193,-0.0375061,-0.0139465,0.00012207,0.00698853,0.0136108,0.0285339,0.0534363,0.0779114,0.0958252,0.105377,0.114838,0.132812,0.15799,0.17691,0.184235,0.173492,0.15155,0.133026,0.128387,0.130737,0.133972,0.134308,0.128601,0.120148,0.12207,0.132751,0.141937,0.142822,0.137238,0.130737,0.129059,0.133087,0.13623,0.133484,0.126587,0.118469,0.112274,0.106567,0.102631,0.098999,0.0933533,0.0852966,0.0706177,0.0552368,0.0379944,0.0185852,-0.00610352,-0.0393372,-0.0680542,-0.0856934,-0.0953674,-0.104156,-0.116638,-0.133698,-0.152496,-0.170349,-0.185852,-0.202484,-0.220398,-0.238129,-0.254303,-0.271484,-0.279205,-0.266968,-0.237793,-0.194885,-0.154297,-0.124237,-0.108185,-0.100525,-0.0939026,-0.0892639,-0.0916748,-0.106049,-0.127838,-0.146698,-0.153015,-0.142822,-0.122498,-0.105499,-0.0992737,-0.100281,-0.0999451,-0.101135,-0.0995178,-0.0988464,-0.100525,-0.0976562,-0.0820007,-0.0516663,-0.0160522,0.0169678,0.0406799,0.0555725,0.0677185,0.0892029,0.118317,0.149261,0.179047,0.204712,0.231476,0.261261,0.288391,0.301147,0.291138,0.257935,0.220001,0.189117,0.171478,0.167847,0.168518,0.168457,0.169006,0.173615,0.178802,0.180603,0.17981,0.174713,0.165771,0.156311,0.155304,0.158844,0.166992,0.17041,0.167511,0.155182,0.139679,0.124908,0.116241,0.109406,0.100281,0.086792,0.070343,0.0473022,0.0204773,-0.0124817,-0.0509949,-0.0922852,-0.128845,-0.156433,-0.178192,-0.195709,-0.216644,-0.237976,-0.262817,-0.287781,-0.313477,-0.341156,-0.365356,-0.386047,-0.392487,-0.374237,-0.323364,-0.250885,-0.182953,-0.136322,-0.120056,-0.120941,-0.12912,-0.133026,-0.141144,-0.163422,-0.191132,-0.207581,-0.200745,-0.175354,-0.140533,-0.11792,-0.110992,-0.114563,-0.121155,-0.129333,-0.133148,-0.132202,-0.124023,-0.106659,-0.0753784,-0.0254211,0.0301208,0.0804138,0.114899,0.132629,0.148132,0.172607,0.210602,0.250214,0.284973,0.312134,0.336639,0.358124,0.377502,0.378601,0.349945,0.298737,0.244965,0.209595,0.198578,0.204163,0.209198,0.205292,0.198914,0.198914,0.200012,0.202942,0.202423,0.190552,0.177368,0.172028,0.173553,0.182007,0.189453,0.193817,0.182678,0.160522,0.136658,0.116913,0.103363,0.0901489,0.0725403,0.0498657,0.0241089,-0.00509644,-0.0381775,-0.0777283,-0.125031,-0.171417,-0.213959,-0.250061,-0.278046,-0.305969,-0.33725,-0.369324,-0.400543,-0.431061,-0.463623,-0.487061,-0.494171,-0.471283,-0.412079,-0.328796,-0.246582,-0.18335,-0.147644,-0.134888,-0.131531,-0.137451,-0.156769,-0.192291,-0.226501,-0.238739,-0.218445,-0.173157,-0.12088,-0.0830078,-0.0655823,-0.0639038,-0.0762329,-0.0949707,-0.114685,-0.126587,-0.129944,-0.118378,-0.0784607,-0.00631714,0.0750427,0.145447,0.195496,0.225159,0.245514,0.274567,0.311615,0.351471,0.382416,0.406189,0.423615,0.437531,0.44342,0.423279,0.373566,0.311066,0.253693,0.217926,0.21048,0.221619,0.231476,0.230865,0.223572,0.211884,0.201477,0.189453,0.169922,0.147247,0.129181,0.12384,0.133484,0.154694,0.175018,0.181946,0.172272,0.150604,0.124969,0.101807,0.0811462,0.0610046,0.0324097,-0.00234985,-0.040863,-0.0778503,-0.117859,-0.163025,-0.214233,-0.267456,-0.319611,-0.363617,-0.402557,-0.439941,-0.476105,-0.508728,-0.538666,-0.55603,-0.551666,-0.515625,-0.446564,-0.364899,-0.287781,-0.228333,-0.185181,-0.149719,-0.11972,-0.104034,-0.116699,-0.15686,-0.201263,-0.22113,-0.20639,-0.165497,-0.116302,-0.0797424,-0.0554504,-0.0444946,-0.0477905,-0.0592041,-0.077179,-0.0983276,-0.117249,-0.114166,-0.0725403,0.00375366,0.0969849,0.180817,0.245972,0.29007,0.326233,0.365295,0.405029,0.441345,0.462402,0.470276,0.472626,0.474365,0.46283,0.425446,0.364685,0.291077,0.22522,0.190735,0.186432,0.196045,0.203369,0.200195,0.189789,0.177368,0.171478,0.163879,0.148041,0.12793,0.107513,0.0992737,0.109802,0.136383,0.163147,0.175232,0.165894,0.136169,0.104889,0.0798035,0.0579224,0.0273132,-0.015564,-0.0669861,-0.116364,-0.161011,-0.202881,-0.251556,-0.309601,-0.375153,-0.438385,-0.490417,-0.532898,-0.568054,-0.598053,-0.613953,-0.602142,-0.549133,-0.456787,-0.346649,-0.25296,-0.192017,-0.160461,-0.141022,-0.115784,-0.0873108,-0.0785217,-0.1008,-0.138672,-0.16214,-0.148926,-0.101959,-0.0465698,-0.0148315,-0.00738525,-0.0167236,-0.0350952,-0.0565186,-0.0795288,-0.10611,-0.132965,-0.138916,-0.106445,-0.0307312,0.0697937,0.167786,0.246521,0.303833,0.350525,0.396851,0.441071,0.477844,0.497375,0.497589,0.491547,0.487793,0.475433,0.437653,0.369659,0.282745,0.200745,0.151337,0.140259,0.149811,0.160675,0.155518,0.137573,0.122559,0.118317,0.112823,0.098999,0.079071,0.0579224,0.0509949,0.0706787,0.11261,0.158325,0.190216,0.19162,0.167328,0.129944,0.0942993,0.0571899,0.0134277,-0.0430298,-0.104706,-0.163208,-0.211212,-0.2547,-0.306458,-0.376312,-0.45752,-0.538452,-0.60556,-0.658051,-0.697662,-0.708374,-0.675293,-0.587372,-0.457855,-0.323975,-0.215363,-0.1492,-0.114014,-0.093689,-0.0683899,-0.044281,-0.0386658,-0.0568542,-0.0782471,-0.0773926,-0.0447693,0.00491333,0.0496521,0.0723572,0.070282,0.0454407,0.00482178,-0.0399475,-0.0855103,-0.128937,-0.165314,-0.174286,-0.135895,-0.0535583,0.0483093,0.144623,0.226105,0.292877,0.36087,0.425507,0.483154,0.51825,0.526367,0.517914,0.50885,0.499329,0.47348,0.418671,0.334686,0.244568,0.174835,0.141876,0.134552,0.13678,0.133301,0.11792,0.098999,0.0914917,0.0906067,0.0838318,0.0649719,0.0376587,0.016571,0.0181274,0.0476379,0.0942383,0.141418,0.17276,0.181885,0.172424,0.153961,0.126099,0.0810852,0.0170593,-0.0592041,-0.135834,-0.20282,-0.260925,-0.319672,-0.386505,-0.468994,-0.552765,-0.632538,-0.700012,-0.747864,-0.756256,-0.707855,-0.60141,-0.46463,-0.329803,-0.224762,-0.154358,-0.105042,-0.0657654,-0.0343018,-0.0249634,-0.0376587,-0.0579834,-0.0534363,-0.0142212,0.0479126,0.106781,0.141357,0.151398,0.135773,0.0954285,0.0393982,-0.0274353,-0.102692,-0.169678,-0.205719,-0.19162,-0.130524,-0.0425415,0.0477295,0.12616,0.195831,0.267792,0.338928,0.40625,0.455292,0.480743,0.489075,0.496521,0.504486,0.494019,0.446503,0.361328,0.262268,0.181061,0.137177,0.122498,0.118256,0.108978,0.0933533,0.0805969,0.0809326,0.0865784,0.0832825,0.0639648,0.036377,0.0128784,0.012207,0.0353088,0.0721436,0.111542,0.140472,0.155426,0.161194,0.161407,0.146454,0.105225,0.038269,-0.0396118,-0.111145,-0.171204,-0.223145,-0.281006,-0.353149,-0.43866,-0.527588,-0.612549,-0.683228,-0.717651,-0.705048,-0.632477,-0.519257,-0.392944,-0.281128,-0.19455,-0.129852,-0.0767212,-0.041748,-0.0341492,-0.053009,-0.074646,-0.0713501,-0.024231,0.0534363,0.134766,0.192963,0.221466,0.217529,0.183411,0.12616,0.0479736,-0.0463867,-0.136108,-0.194214,-0.204956,-0.167725,-0.101288,-0.0284424,0.0379944,0.0976562,0.160522,0.231934,0.306122,0.368134,0.406982,0.427368,0.447113,0.46228,0.459595,0.41925,0.337982,0.240814,0.160675,0.117706,0.108978,0.110321,0.104553,0.091217,0.0788574,0.0766296,0.079071,0.0731506,0.0543518,0.0250854,-0.000946045,-0.00268555,0.0252991,0.068512,0.107727,0.13028,0.138123,0.136719,0.13443,0.12384,0.0922852,0.0348206,-0.0384521,-0.110474,-0.166718,-0.215302,-0.27182,-0.350403,-0.44397,-0.538452,-0.613556,-0.652618,-0.641083,-0.580078,-0.485168,-0.379059,-0.282562,-0.202606,-0.138519,-0.0861816,-0.0555725,-0.058197,-0.0821533,-0.103088,-0.0940857,-0.033905,0.0622864,0.160858,0.234161,0.27597,0.285156,0.264374,0.216034,0.13269,0.0259705,-0.0777893,-0.147522,-0.175232,-0.15625,-0.112335,-0.0679321,-0.0327454,0.000213623,0.0419312,0.098999,0.163086,0.223419,0.272003,0.314423,0.365448,0.413147,0.43631,0.410522,0.330536,0.225037,0.13147,0.0744324,0.052948,0.0482483,0.0487976,0.0522766,0.0644226,0.0837708,0.0966492,0.0923462,0.0626221,0.0179138,-0.0191956,-0.0324707,-0.0162354,0.0249634,0.0653687,0.100952,0.126831,0.142334,0.148254,0.13858,0.102539,0.0418091,-0.0289307,-0.0939636,-0.145508,-0.190735,-0.247925,-0.328735,-0.424164,-0.511536,-0.565308,-0.569122,-0.522156,-0.443146,-0.351349,-0.261536,-0.17804,-0.101624,-0.0369263,0.00302124,-0.00515747,-0.0540161,-0.107391,-0.131134,-0.0949707,0.00012207,0.115967,0.219269,0.293488,0.333954,0.339935,0.306854,0.234161,0.124023,0.00933838,-0.0682678,-0.0988464,-0.0855713,-0.053772,-0.0301208,-0.024231,-0.024231,-0.0211487,-0.00369263,0.0221558,0.0512695,0.0847778,0.133698,0.208984,0.292938,0.352814,0.35611,0.291626,0.190125,0.0944824,0.032074,0.00195312,-0.0136108,-0.0252991,-0.0264282,-0.00323486,0.0406189,0.0838928,0.10437,0.0875244,0.041748,-0.00482178,-0.0306091,-0.0280457,-0.00491333,0.020752,0.0404053,0.0576477,0.0733032,0.0792542,0.0684509,0.0288696,-0.0357666,-0.103088,-0.156097,-0.188263,-0.216644,-0.260681,-0.329651,-0.403625,-0.449127,-0.442017,-0.385162,-0.306641,-0.225098,-0.152008,-0.090271,-0.0297241,0.0325623,0.0722961,0.0609436,0.00799561,-0.062561,-0.112427,-0.0996704,-0.0264282,0.0791321,0.17981,0.260406,0.312408,0.334442,0.325714,0.274902,0.181732,0.0736389,-0.00256348,-0.0279236,-0.0085144,0.0336304,0.0622864,0.0626221,0.0475159,0.0344238,0.0297241,0.0291138,0.0234985,0.0184631,0.0310669,0.0812073,0.155579,0.222015,0.24173,0.19516,0.106323,0.0151062,-0.0489197,-0.0749817,-0.0828247,-0.0909424,-0.0896606,-0.0680542,-0.0260315,0.0269775,0.0630798,0.0618896,0.0279236,-0.0131531,-0.0386047,-0.0370483,-0.0126953,0.0131531,0.0322266,0.0512085,0.0666504,0.0757751,0.0609436,0.0103455,-0.0698547,-0.156372,-0.230591,-0.282349,-0.322021,-0.365509,-0.418732,-0.461884,-0.459717,-0.394684,-0.289673,-0.177521,-0.0794678,-0.0149536,0.0349121,0.0971069,0.157318,0.176025,0.146973,0.0833435,0.0110168,-0.0140381,0.0276489,0.108795,0.199341,0.276978,0.327301,0.347778,0.34436,0.308258,0.227173,0.120331,0.0250854,-0.0270386,-0.025177,0.0140991,0.06073,0.0851746,0.0801392,0.0663757,0.0558472,0.0447693,0.0239563,-0.003479,-0.0219421,-0.00296021,0.0551147,0.127594,0.176117,0.167999,0.108795,0.0291138,-0.0401306,-0.0808716,-0.105499,-0.130005,-0.147369,-0.144623,-0.11261,-0.057251,-0.000213623,0.0341492,0.0268555,-0.00537109,-0.0456238,-0.0716248,-0.0795898,-0.0796509,-0.0786438,-0.0691223,-0.0477295,-0.0201416,-0.00396729,-0.0198669,-0.0704041,-0.143616,-0.220886,-0.287842,-0.34726,-0.403625,-0.44873,-0.452759,-0.393829,-0.281342,-0.152069,-0.0400696,0.0338135,0.0692749,0.09375,0.127777,0.144958,0.13147,0.102295,0.0673828,0.0534973,0.0909424,0.16745,0.249878,0.3237,0.373077,0.388458,0.382294,0.355499,0.298065,0.216309,0.138733,0.0829468,0.0671082,0.0838318,0.110413,0.126587,0.11731,0.0922852,0.070343,0.0522766,0.032135,0.00558472,-0.0224915,-0.0302734,-0.0115967,0.0200806,0.0468445,0.0433655,0.00732422,-0.041626,-0.0848389,-0.10791,-0.113098,-0.112213,-0.113556,-0.110596,-0.090271,-0.0582581,-0.0256348,-0.00274658,-0.00256348,-0.0198059,-0.0415344,-0.057312,-0.0628052,-0.0736389,-0.0874634,-0.102081,-0.109192,-0.111755,-0.114014,-0.137115,-0.185516,-0.248779,-0.315491,-0.377319,-0.428253,-0.46637,-0.484497,-0.452881,-0.361877,-0.232544,-0.0906677,0.0368347,0.128601,0.182831,0.218384,0.23175,0.213074,0.161957,0.10437,0.0606689,0.0600586,0.11142,0.195374,0.284485,0.361664,0.408203,0.416565,0.392944,0.34375,0.262695,0.175629,0.109528,0.085907,0.102081,0.13678,0.167511,0.177032,0.161469,0.132538,0.105438,0.0778503,0.0467834,0.0118103,-0.00918579,-0.000457764,0.0289307,0.0545044,0.0556946,0.0228882,-0.0379333,-0.108459,-0.164886,-0.201202,-0.214355,-0.209869,-0.19281,-0.155975,-0.0958252,-0.0332336,0.0120239,0.0350342,0.0311279,0.00610352,-0.0220947,-0.0379944,-0.0455627,-0.0576477,-0.0734253,-0.0939636,-0.116577,-0.144348,-0.186035,-0.250122,-0.328308,-0.404236,-0.470734,-0.518646,-0.54248,-0.529114,-0.468109,-0.360657,-0.22464,-0.0832214,0.0367126,0.12323,0.180389,0.22348,0.242828,0.235291,0.210266,0.175018,0.152405,0.164978,0.211334,0.277527,0.348267,0.399872,0.415771,0.402161,0.363892,0.298645,0.213013,0.127594,0.0590515,0.0346985,0.0542297,0.100464,0.145966,0.1763,0.186523,0.177185,0.159851,0.137909,0.108124,0.0697937,0.0443726,0.0475159,0.0638123,0.0802002,0.0755615,0.0393982,-0.0245667,-0.0970459,-0.156647,-0.199585,-0.222076,-0.231598,-0.231018,-0.208588,-0.158997,-0.0961609,-0.0430298,-0.0171204,-0.0175171,-0.0355835,-0.0571899,-0.065033,-0.0613403,-0.060791,-0.0602722,-0.0670471,-0.0794067,-0.0998535,-0.143097,-0.220673,-0.322876,-0.432617,-0.528931,-0.597107,-0.621338,-0.583008,-0.484558,-0.347382,-0.195892,-0.0505981,0.0640869,0.141022,0.190063,0.21167,0.204773,0.182007,0.152557,0.137054,0.158844,0.218323,0.303101,0.392944,0.471283,0.510132,0.50061,0.453217,0.378052,0.280273,0.182281,0.100342,0.0487976,0.041687,0.0675964,0.100616,0.121277,0.125153,0.112488,0.093689,0.0710754,0.0499268,0.0236206,0.0126953,0.0306702,0.0690002,0.105652,0.124176,0.110748,0.0610657,-0.00268555,-0.0631409,-0.115845,-0.15451,-0.175171,-0.188721,-0.189606,-0.168243,-0.130951,-0.0953064,-0.0704041,-0.0637512,-0.0784607,-0.100006,-0.108337,-0.104431,-0.0975037,-0.0896606,-0.0857849,-0.0903931,-0.107788,-0.145508,-0.21463,-0.308533,-0.410736,-0.506989,-0.582947,-0.611145,-0.568665,-0.464081,-0.319122,-0.157379,-0.0134888,0.0922241,0.157379,0.193817,0.19577,0.167175,0.125427,0.0865784,0.0767212,0.114014,0.19046,0.290802,0.399994,0.494751,0.545837,0.548737,0.512085,0.435516,0.325958,0.217773,0.129608,0.0799866,0.0748291,0.101074,0.128845,0.139801,0.127045,0.0964966,0.0553589,0.0179749,-0.0187988,-0.0520935,-0.0613403,-0.0281982,0.028656,0.0852356,0.121338,0.118927,0.0701904,0.00280762,-0.0638123,-0.123016,-0.16275,-0.178467,-0.182343,-0.163086,-0.115448,-0.0579834,-0.0162354,0.00314331,-0.00765991,-0.050415,-0.103638,-0.144897,-0.17569,-0.192078,-0.19281,-0.182556,-0.167908,-0.159454,-0.175568,-0.232819,-0.323425,-0.424622,-0.523682,-0.590546,-0.593567,-0.517181,-0.388123,-0.227051,-0.0663147,0.0667725,0.15744,0.216309,0.234222,0.204102,0.145966,0.0792542,0.0293884,0.0317383,0.0941467,0.196838,0.321198,0.444763,0.537384,0.576904,0.56012,0.493622,0.386993,0.268982,0.16806,0.105103,0.0873108,0.115845,0.162476,0.19101,0.190887,0.162079,0.109314,0.0459595,-0.0189209,-0.08255,-0.123169,-0.113678,-0.0594482,0.0118713,0.0767212,0.105499,0.0848389,0.0303955,-0.0328064,-0.0987854,-0.157867,-0.194214,-0.203278,-0.181396,-0.128052,-0.0540161,0.0151062,0.0597839,0.0662537,0.028717,-0.0403442,-0.113495,-0.176514,-0.222229,-0.2453,-0.243073,-0.227661,-0.210144,-0.209991,-0.246429,-0.3255,-0.426849,-0.52536,-0.588531,-0.579926,-0.499725,-0.365234,-0.200928,-0.0340271,0.10672,0.202423,0.260193,0.268188,0.223297,0.148468,0.0708008,0.0216064,0.0283203,0.0979919,0.205841,0.330872,0.447235,0.522491,0.544952,0.522156,0.452148,0.351685,0.249542,0.171356,0.126587,0.123016,0.153564,0.192078,0.210205,0.199066,0.160126,0.0979919,0.0282593,-0.0411987,-0.100525,-0.129669,-0.110199,-0.0567017,0.0101929,0.0681152,0.0922241,0.0677185,0.0168457,-0.0450439,-0.109406,-0.162964,-0.197327,-0.21283,-0.195831,-0.147125,-0.0769043,-0.00631714,0.0478516,0.065094,0.0368347,-0.0220947,-0.0927429,-0.161621,-0.220947,-0.262878,-0.286591,-0.294708,-0.292694,-0.29892,-0.32663,-0.382751,-0.458466,-0.528656,-0.549866,-0.500671,-0.387054,-0.243286,-0.0942383,0.0376587,0.146118,0.235382,0.279663,0.259125,0.184906,0.0932312,0.0252991,0.0136108,0.0671082,0.159607,0.27832,0.409454,0.514771,0.568512,0.565918,0.506165,0.390411,0.262604,0.150391,0.0766296,0.0587769,0.102356,0.172699,0.234955,0.270081,0.264954,0.216034,0.134033,0.0301208,-0.0856323,-0.1716,-0.192413,-0.153564,-0.0840149,-0.00683594,0.0513306,0.0700073,0.0587769,0.0241089,-0.0315552,-0.0954285,-0.14859,-0.183075,-0.189606,-0.151733,-0.0836792,-0.0122681,0.0473022,0.0784607,0.0618896,0.00845337,-0.0617371,-0.144501,-0.226044,-0.289795,-0.332336,-0.352142,-0.356049,-0.355774,-0.375366,-0.419739,-0.482086,-0.537262,-0.547455,-0.496521,-0.393829,-0.259735,-0.109406,0.0443726,0.179138,0.287262,0.341888,0.322296,0.24469,0.145569,0.0648193,0.0325623,0.0568542,0.127594,0.236298,0.364227,0.477509,0.544952,0.558533,0.506775,0.396851,0.258392,0.131348,0.0434875,0.0140991,0.0426025,0.109253,0.187317,0.249786,0.278931,0.261261,0.199249,0.101685,-0.0182495,-0.116791,-0.162201,-0.153625,-0.108521,-0.0459595,0.00857544,0.0390625,0.0459595,0.025238,-0.0232239,-0.0856934,-0.147919,-0.197113,-0.209808,-0.176453,-0.109314,-0.0322266,0.0411987,0.0863647,0.0878601,0.0470581,-0.0226135,-0.112671,-0.207855,-0.289398,-0.348175,-0.384094,-0.397034,-0.406525,-0.430817,-0.473969,-0.521545,-0.545715,-0.526031,-0.457458,-0.358643,-0.240662,-0.104645,0.0406799,0.186707,0.302673,0.354553,0.331268,0.258331,0.175781,0.114227,0.0901489,0.109863,0.175232,0.286041,0.413544,0.517517,0.570679,0.564301,0.495422,0.379791,0.248779,0.133636,0.0521545,0.0167236,0.0272522,0.0714111,0.133209,0.191132,0.220215,0.205566,0.149658,0.0602722,-0.0343018,-0.0922241,-0.10498,-0.0882568,-0.0502625,-0.00180054,0.0366516,0.0580444,0.0583191,0.0303345,-0.025238,-0.091156,-0.157593,-0.20517,-0.211548,-0.175018,-0.112152,-0.0367737,0.0305481,0.0673828,0.0617981,0.0177917,-0.061615,-0.164764,-0.271484,-0.359863,-0.424438,-0.463623,-0.482147,-0.493073,-0.506592,-0.522003,-0.52066,-0.493225,-0.435303,-0.355774,-0.260345,-0.154694,-0.0410156,0.0838928,0.202698,0.282684,0.302948,0.268463,0.208252,0.153412,0.12912,0.136841,0.17569,0.255585,0.370483,0.484894,0.566772,0.596924,0.555359,0.454376,0.327301,0.204285,0.105164,0.0437012,0.02771,0.0498657,0.0996704,0.164551,0.212555,0.225891,0.199005,0.129272,0.0327454,-0.049469,-0.0913391,-0.0971069,-0.073761,-0.0317993,0.015564,0.0584412,0.09021,0.0942383,0.0611267,0.00222778,-0.0718689,-0.138916,-0.172424,-0.162476,-0.118866,-0.0575867,0.00524902,0.0469666,0.0514221,0.016571,-0.0588684,-0.169006,-0.289948,-0.398376,-0.483368,-0.534698,-0.557861,-0.571289,-0.589996,-0.604431,-0.594482,-0.544098,-0.463745,-0.371277,-0.278656,-0.177795,-0.0602112,0.0782471,0.206787,0.286774,0.297729,0.25592,0.196655,0.150665,0.130127,0.131348,0.162476,0.23764,0.348785,0.457642,0.532623,0.553772,0.512939,0.417511,0.300598,0.188385,0.101471,0.0504761,0.0376587,0.0552368,0.098999,0.156708,0.204559,0.219666,0.195709,0.133759,0.0577087,0.0101929,-0.00106812,0.0104675,0.0345764,0.0663757,0.0965881,0.12384,0.140686,0.129333,0.0885315,0.027771,-0.0396118,-0.0975952,-0.119995,-0.104706,-0.0675964,-0.0187988,0.0290527,0.0609436,0.0654907,0.0409546,-0.0212708,-0.123688,-0.241821,-0.353485,-0.449677,-0.524567,-0.576508,-0.621277,-0.661621,-0.674835,-0.643219,-0.568176,-0.467651,-0.364777,-0.272827,-0.181885,-0.0787354,0.0320129,0.119141,0.159119,0.150482,0.113007,0.0853577,0.090332,0.118042,0.157867,0.216431,0.298462,0.397858,0.484894,0.529602,0.520081,0.453766,0.351807,0.245026,0.15509,0.090332,0.0503235,0.032959,0.0353088,0.0602722,0.0926208,0.113831,0.11087,0.0783997,0.0212097,-0.0265198,-0.0376587,-0.0170593,0.0179749,0.0569153,0.0956421,0.137115,0.179199,0.210876,0.218048,0.197327,0.152954,0.098938,0.056366,0.0467834,0.0614624,0.0853577,0.108063,0.121063,0.11261,0.0804138,0.0218811,-0.068512,-0.188263,-0.314758,-0.428192,-0.516632,-0.578247,-0.623413,-0.664154,-0.688538,-0.675507,-0.609253,-0.505096,-0.385895,-0.274109,-0.179382,-0.0865173,0.0169678,0.114502,0.169922,0.17276,0.136108,0.0926208,0.0730896,0.085968,0.111816,0.148376,0.206512,0.287445,0.372406,0.432678,0.444763,0.399139,0.305298,0.19455,0.0973816,0.0307312,-0.00234985,-0.00592041,0.00991821,0.044281,0.091217,0.133087,0.148804,0.128448,0.069519,-0.00744629,-0.0592651,-0.0711975,-0.0552979,-0.0236816,0.0125427,0.0547791,0.103485,0.14679,0.170013,0.166382,0.13858,0.0969849,0.0597229,0.0467224,0.0653687,0.102478,0.139191,0.17276,0.196564,0.197327,0.173096,0.111755,0.00543213,-0.129456,-0.267395,-0.384308,-0.476227,-0.547302,-0.610413,-0.665161,-0.693085,-0.664307,-0.582825,-0.46933,-0.351807,-0.247192,-0.15564,-0.0574646,0.050415,0.135895,0.16925,0.150879,0.108002,0.080658,0.0940247,0.13208,0.17691,0.229919,0.308044,0.401947,0.479736,0.508728,0.467102,0.365509,0.237854,0.11731,0.0205383,-0.0429382,-0.0723572,-0.0763855,-0.0584412,-0.0172424,0.0309448,0.0643005,0.0678406,0.0325623,-0.0342407,-0.0910034,-0.108917,-0.092804,-0.0569763,-0.0125427,0.0337524,0.0836792,0.13739,0.175781,0.180664,0.15686,0.119141,0.0848389,0.0732117,0.0886536,0.119537,0.147797,0.169739,0.182739,0.175446,0.149719,0.100281,0.015564,-0.0969238,-0.219879,-0.330078,-0.418579,-0.488739,-0.553497,-0.622345,-0.673889,-0.67691,-0.620331,-0.518402,-0.398041,-0.281342,-0.175232,-0.0645752,0.0567017,0.154175,0.197052,0.184631,0.14328,0.110321,0.108185,0.132141,0.166565,0.217102,0.294952,0.393219,0.479675,0.521332,0.499542,0.410522,0.281464,0.153748,0.0458374,-0.0292664,-0.0674438,-0.0785828,-0.0693359,-0.0409546,-0.000793457,0.0273132,0.0307312,0.0012207,-0.053833,-0.104156,-0.117859,-0.0966492,-0.0558472,-0.00793457,0.0430908,0.0964355,0.14798,0.177979,0.173828,0.141418,0.0973816,0.0586548,0.0376587,0.0482483,0.0864563,0.135712,0.182739,0.217194,0.227325,0.206726,0.153229,0.0633545,-0.0585938,-0.192535,-0.316254,-0.413635,-0.484436,-0.539001,-0.594025,-0.640076,-0.650055,-0.611938,-0.534637,-0.44281,-0.352814,-0.263947,-0.165314,-0.0499878,0.0593872,0.127441,0.144562,0.130188,0.114899,0.116699,0.136383,0.165497,0.208801,0.280548,0.38382,0.488647,0.559448,0.572205,0.518188,0.40744,0.27121,0.137848,0.0249023,-0.0561218,-0.0988464,-0.112,-0.0982666,-0.0621338,-0.0224304,-0.00106812,-0.0133667,-0.0608826,-0.125153,-0.170685,-0.174042,-0.143677,-0.0913391,-0.0245667,0.0542908,0.136169,0.204498,0.238403,0.234619,0.199585,0.151825,0.109253,0.0860291,0.0983887,0.137451,0.185699,0.230408,0.257385,0.252563,0.21283,0.13028,0.00476074,-0.149384,-0.305634,-0.433167,-0.523346,-0.582611,-0.625305,-0.657867,-0.663422,-0.624512,-0.545105,-0.448669,-0.358246,-0.279449,-0.199677,-0.102142,0.00247192,0.0836792,0.118591,0.115448,0.103424,0.111877,0.140686,0.177643,0.215088,0.26825,0.351532,0.452942,0.531555,0.554962,0.509125,0.405853,0.277191,0.153351,0.0468445,-0.0320129,-0.0788574,-0.0988464,-0.0936279,-0.0670471,-0.0308838,-0.00274658,-0.0050354,-0.0469055,-0.114349,-0.172424,-0.191742,-0.169678,-0.124969,-0.0681763,-0.000457764,0.0809326,0.161072,0.222351,0.242737,0.222626,0.179718,0.139862,0.121338,0.12793,0.155975,0.189209,0.226379,0.256165,0.266113,0.247314,0.194977,0.0964355,-0.0429382,-0.201538,-0.347595,-0.460327,-0.541351,-0.606445,-0.65744,-0.680481,-0.654907,-0.578186,-0.472229,-0.368988,-0.284149,-0.211884,-0.128845,-0.0353699,0.0443726,0.0833435,0.0802002,0.0664368,0.069519,0.103088,0.154022,0.205109,0.258392,0.334503,0.42981,0.515167,0.555573,0.529877,0.440796,0.315643,0.190552,0.0820923,-0.0012207,-0.0567932,-0.0877991,-0.0972595,-0.0830078,-0.0557861,-0.032959,-0.0336304,-0.0720215,-0.140137,-0.207581,-0.240601,-0.231476,-0.196655,-0.147125,-0.0827637,-0.00012207,0.0929565,0.17746,0.227234,0.237518,0.219391,0.194366,0.179321,0.188263,0.220001,0.258331,0.289185,0.307861,0.306702,0.284363,0.232147,0.142426,0.013092,-0.140472,-0.290619,-0.413544,-0.509125,-0.585907,-0.652679,-0.698669,-0.697906,-0.641815,-0.544159,-0.436523,-0.334106,-0.239929,-0.138916,-0.0310059,0.0630798,0.110138,0.112946,0.100616,0.101532,0.128998,0.173553,0.224701,0.277435,0.350006,0.442139,0.523346,0.560333,0.535309,0.447327,0.316162,0.17926,0.0562439,-0.037384,-0.0943604,-0.120148,-0.123962,-0.105652,-0.0724182,-0.0445557,-0.0388489,-0.0711975,-0.137177,-0.205719,-0.243896,-0.241425,-0.211731,-0.171692,-0.122559,-0.0542908,0.02771,0.108185,0.163879,0.184631,0.176636,0.157318,0.146851,0.162201,0.204163,0.255768,0.301331,0.331146,0.340149,0.324982,0.282959,0.204376,0.0830078,-0.0673218,-0.218536,-0.34549,-0.441864,-0.519409,-0.591278,-0.64563,-0.660004,-0.628387,-0.560272,-0.480011,-0.402954,-0.324371,-0.231812,-0.119812,-0.0117493,0.0639648,0.0978394,0.108795,0.122833,0.155182,0.203033,0.257324,0.316498,0.389465,0.474976,0.555908,0.606903,0.604431,0.539062,0.419922,0.27652,0.138336,0.0228271,-0.0605469,-0.116974,-0.148804,-0.15274,-0.133148,-0.107452,-0.0969238,-0.119324,-0.176361,-0.24115,-0.28537,-0.291016,-0.262878,-0.214966,-0.154572,-0.0791931,0.0100708,0.0954285,0.156372,0.182739,0.176636,0.152008,0.12912,0.132141,0.168121,0.224823,0.278717,0.318848,0.336121,0.332092,0.299469,0.226837,0.11087,-0.038269,-0.199585,-0.344574,-0.454163,-0.536255,-0.600616,-0.647919,-0.664886,-0.638397,-0.571411,-0.485962,-0.402893,-0.32489,-0.245178,-0.147583,-0.0396729,0.0522156,0.104645,0.124695,0.133026,0.153961,0.196167,0.248047,0.301147,0.361267,0.440399,0.533478,0.610992,0.641998,0.607239,0.509521,0.377655,0.2388,0.114288,0.0155029,-0.0587769,-0.108734,-0.131683,-0.125366,-0.101746,-0.0808716,-0.0861206,-0.128326,-0.198334,-0.262939,-0.296295,-0.292023,-0.261353,-0.214508,-0.153839,-0.0721436,0.0200806,0.106323,0.160461,0.171021,0.148987,0.120056,0.109924,0.130859,0.176453,0.22757,0.275757,0.312073,0.331665,0.325775,0.283569,0.194305,0.0610046,-0.0954895,-0.250458,-0.384216,-0.494507,-0.586243,-0.662476,-0.713745,-0.720062,-0.678375,-0.600342,-0.512482,-0.432404,-0.358063,-0.268799,-0.155304,-0.0400085,0.0428162,0.0881958,0.115173,0.149872,0.208069,0.274902,0.33316,0.382355,0.442139,0.526306,0.613007,0.667786,0.663361,0.596313,0.484436,0.357239,0.229248,0.115906,0.0275269,-0.0409546,-0.0895996,-0.114349,-0.116028,-0.103363,-0.0963745,-0.115173,-0.165985,-0.228577,-0.271667,-0.276703,-0.254639,-0.216705,-0.170258,-0.106995,-0.0220947,0.0700684,0.146576,0.188446,0.192139,0.171143,0.146179,0.140869,0.158722,0.192871,0.229248,0.258331,0.27652,0.281219,0.27066,0.227448,0.141357,0.0142212,-0.133881,-0.276031,-0.399323,-0.503143,-0.596039,-0.675507,-0.726227,-0.732086,-0.68927,-0.616638,-0.534973,-0.457062,-0.376831,-0.282288,-0.174164,-0.0748291,-0.00396729,0.0418091,0.0778503,0.125641,0.191406,0.262756,0.32663,0.391541,0.467865,0.555847,0.630798,0.6698,0.653748,0.585358,0.481201,0.363434,0.250336,0.152679,0.0743103,0.0107422,-0.0377808,-0.0671692,-0.0801392,-0.0894775,-0.110077,-0.152679,-0.213348,-0.268463,-0.294556,-0.285492,-0.250275,-0.201538,-0.144897,-0.0758972,0.00866699,0.0915527,0.157257,0.192535,0.199677,0.191956,0.185425,0.194153,0.222626,0.259186,0.292023,0.310211,0.311737,0.298126,0.263489,0.195557,0.0926819,-0.0358276,-0.173218,-0.302948,-0.416107,-0.512024,-0.601135,-0.684174,-0.740662,-0.749725,-0.710388,-0.643677,-0.572296,-0.498657,-0.409607,-0.292816,-0.157532,-0.0448303,0.0214844,0.0525513,0.0799866,0.126709,0.188934,0.242889,0.285095,0.337524,0.422424,0.525116,0.608643,0.649658,0.638062,0.578583,0.480469,0.363892,0.245758,0.147308,0.0691833,0.00610352,-0.0387268,-0.0632935,-0.0668335,-0.0665894,-0.0836182,-0.128845,-0.196106,-0.254913,-0.284027,-0.278717,-0.248199,-0.201691,-0.142944,-0.0708008,0.0102539,0.0831604,0.135773,0.163422,0.173218,0.172546,0.172089,0.188599,0.229523,0.287262,0.34021,0.369995,0.373016,0.358337,0.316101,0.235168,0.114838,-0.0301208,-0.177795,-0.310394,-0.421143,-0.508789,-0.58429,-0.658661,-0.717926,-0.738983,-0.717712,-0.664429,-0.603149,-0.533966,-0.454559,-0.344696,-0.212219,-0.0842285,0.00772095,0.0588684,0.0926208,0.13623,0.197784,0.257935,0.304626,0.348999,0.415039,0.503021,0.583435,0.631409,0.626709,0.573029,0.481873,0.371887,0.25592,0.152496,0.069519,0.00582886,-0.041687,-0.0704651,-0.081543,-0.0858459,-0.0978394,-0.13443,-0.195648,-0.254974,-0.28772,-0.287933,-0.255493,-0.204102,-0.14093,-0.070343,0.00616455,0.0782471,0.134094,0.167511,0.180206,0.178375,0.174103,0.184509,0.215851,0.266846,0.317719,0.351868,0.361664,0.353546,0.320862,0.255585,0.150818,0.0163879,-0.12973,-0.265228,-0.376923,-0.468719,-0.549591,-0.62384,-0.685181,-0.715637,-0.707733,-0.670471,-0.615906,-0.54953,-0.470123,-0.369812,-0.247864,-0.125031,-0.0278625,0.032135,0.0724792,0.109192,0.154633,0.206573,0.259125,0.318451,0.392426,0.483826,0.575043,0.644287,0.671936,0.644958,0.564148,0.45108,0.323975,0.203552,0.103882,0.0250854,-0.0322266,-0.0686035,-0.0856934,-0.0906067,-0.102692,-0.136505,-0.192413,-0.25531,-0.303223,-0.320862,-0.304779,-0.258179,-0.194977,-0.125092,-0.0487976,0.0278625,0.0967712,0.149536,0.180603,0.193634,0.19455,0.202423,0.231415,0.276367,0.324097,0.357727,0.373291,0.370056,0.340149,0.276306,0.178986,0.0534363,-0.0871887,-0.22583,-0.347168,-0.446167,-0.52887,-0.605103,-0.673767,-0.723633,-0.735291,-0.706726,-0.647522,-0.572632,-0.489868,-0.396576,-0.277252,-0.142151,-0.0245667,0.048584,0.0828247,0.100342,0.127045,0.171204,0.219666,0.266235,0.324097,0.406433,0.507111,0.602203,0.664551,0.676636,0.628845,0.535095,0.414032,0.285309,0.170532,0.0799866,0.0108643,-0.0400696,-0.0718689,-0.0856934,-0.0917969,-0.106995,-0.144501,-0.203766,-0.262543,-0.298126,-0.300598,-0.27066,-0.223358,-0.171265,-0.11496,-0.0491333,0.0210876,0.0856323,0.135712,0.164368,0.175568,0.182068,0.202423,0.243286,0.296844,0.345245,0.371216,0.373413,0.354828,0.312134,0.238129,0.132202,0.000335693,-0.140594,-0.273773,-0.38504,-0.47644,-0.559204,-0.641266,-0.713165,-0.75235,-0.74469,-0.69812,-0.629272,-0.550476,-0.461823,-0.352692,-0.223358,-0.0940247,0.00302124,0.0531616,0.0738831,0.0925598,0.129517,0.182007,0.237854,0.297058,0.373688,0.474365,0.583282,0.676636,0.723419,0.706451,0.630188,0.512085,0.37851,0.248535,0.140808,0.0542908,-0.0111389,-0.0569763,-0.0808105,-0.0855713,-0.0917358,-0.118134,-0.172272,-0.239532,-0.291809,-0.310608,-0.298065,-0.262604,-0.218262,-0.166443,-0.100189,-0.0222168,0.053894,0.115845,0.153687,0.168854,0.172546,0.179596,0.204834,0.249268,0.298645,0.337189,0.357391,0.356842,0.336639,0.288513,0.20697,0.0933533,-0.0434265,-0.182556,-0.306366,-0.408447,-0.498322,-0.585175,-0.6698,-0.734222,-0.7565,-0.732544,-0.673096,-0.593964,-0.507599,-0.417236,-0.308258,-0.181946,-0.065094,0.0109253,0.0412903,0.0478516,0.0594482,0.0958252,0.150269,0.212158,0.285156,0.378326,0.496094,0.618713,0.716309,0.759003,0.730804,0.644684,0.524902,0.388916,0.263763,0.158722,0.0756226,0.0126953,-0.0319519,-0.0578003,-0.0748291,-0.0932922,-0.130127,-0.187927,-0.253967,-0.306183,-0.328522,-0.319336,-0.284149,-0.238861,-0.182068,-0.111206,-0.0307922,0.0475159,0.108734,0.149139,0.167389,0.177521,0.19455,0.229065,0.275757,0.324982,0.357513,0.371613,0.365784,0.337311,0.284088,0.202271,0.0855103,-0.052887,-0.19397,-0.324036,-0.437195,-0.537933,-0.636383,-0.725372,-0.783295,-0.790741,-0.752563,-0.679535,-0.593811,-0.504761,-0.407532,-0.289734,-0.161133,-0.0548401,0.00946045,0.0357056,0.0495911,0.0717468,0.115692,0.168732,0.230469,0.3078,0.409271,0.529266,0.644287,0.728912,0.76001,0.727783,0.638916,0.516571,0.380524,0.257111,0.154633,0.0690002,0.00146484,-0.0440369,-0.0700073,-0.0812073,-0.0944214,-0.12616,-0.172943,-0.227234,-0.268585,-0.290527,-0.289001,-0.268066,-0.231689,-0.180603,-0.114502,-0.0428772,0.0280457,0.0917969,0.135223,0.158722,0.167175,0.177032,0.202545,0.24115,0.287323,0.320801,0.340607,0.34436,0.330139,0.288452,0.215027,0.108734,-0.0226746,-0.163879,-0.300201,-0.422272,-0.526855,-0.61792,-0.6922,-0.745087,-0.7565,-0.725098,-0.661804,-0.583496,-0.505768,-0.428131,-0.339935,-0.232697,-0.129517,-0.0558472,-0.0205994,-0.00247192,0.0263062,0.0805969,0.153229,0.225037,0.30545,0.405762,0.526031,0.648193,0.742157,0.785645,0.76886,0.692749,0.577515,0.440552,0.303894,0.186188,0.0908813,0.01651,-0.0324707,-0.0596619,-0.0697937,-0.0717468,-0.0915527,-0.134308,-0.19455,-0.253296,-0.290466,-0.302277,-0.289337,-0.25705,-0.211212,-0.149994,-0.077301,-0.00112915,0.0700073,0.121338,0.149384,0.160675,0.167847,0.187195,0.223236,0.269409,0.309662,0.333832,0.340546,0.332001,0.296967,0.227509,0.120667,-0.0148926,-0.15744,-0.288788,-0.399384,-0.485962,-0.559113,-0.626312,-0.683838,-0.716705,-0.709808,-0.667664,-0.605164,-0.538727,-0.475372,-0.405914,-0.310669,-0.196838,-0.091217,-0.0254211,-0.000549316,0.0119324,0.0496521,0.12207,0.205383,0.283417,0.365112,0.466766,0.59201,0.715302,0.797638,0.815247,0.761078,0.651825,0.511414,0.35611,0.212677,0.0983276,0.0188599,-0.0273743,-0.0458984,-0.045166,-0.028595,-0.0218811,-0.0479736,-0.110138,-0.192963,-0.265442,-0.311218,-0.322021,-0.305176,-0.271332,-0.218201,-0.141266,-0.049408,0.0400696,0.110138,0.151215,0.166229,0.162201,0.157654,0.171814,0.207642,0.256592,0.297913,0.322144,0.3302,0.315582,0.265778,0.17865,0.0571899,-0.0835571,-0.220337,-0.332825,-0.414551,-0.474365,-0.529877,-0.585449,-0.63974,-0.678925,-0.690613,-0.674438,-0.634979,-0.585571,-0.531342,-0.458191,-0.350006,-0.211823,-0.0822144,0.00610352,0.0479126,0.073761,0.110321,0.170746,0.237305,0.303558,0.380798,0.481018,0.606445,0.732147,0.816101,0.833893,0.774628,0.655365,0.501404,0.336853,0.192871,0.085968,0.0184021,-0.0105896,-0.0159607,-0.00369263,0.0111389,0.0105896,-0.0254211,-0.0997314,-0.196045,-0.282288,-0.335846,-0.351288,-0.331482,-0.284241,-0.212006,-0.120941,-0.024292,0.0632324,0.128387,0.159943,0.164307,0.150665,0.136566,0.140198,0.169586,0.216919,0.263702,0.294495,0.299255,0.276306,0.221558,0.138,0.0265808,-0.0972595,-0.215637,-0.314026,-0.386658,-0.438934,-0.48764,-0.545105,-0.610077,-0.666718,-0.697906,-0.701141,-0.67395,-0.628723,-0.570526,-0.493958,-0.380402,-0.231689,-0.0862427,0.0192566,0.0712891,0.0940857,0.119202,0.169861,0.231201,0.297913,0.372681,0.467316,0.588715,0.713501,0.806702,0.829651,0.770752,0.653839,0.508728,0.35733,0.227997,0.133087,0.0765686,0.0484009,0.0428772,0.049469,0.0549011,0.0378418,-0.0147705,-0.103699,-0.208252,-0.299469,-0.352539,-0.359985,-0.3284,-0.269073,-0.190613,-0.0957031,0.000457764,0.0787354,0.130524,0.151398,0.143768,0.118378,0.0975037,0.0992737,0.129791,0.176849,0.222626,0.252747,0.262817,0.247925,0.207184,0.141022,0.0523376,-0.0548401,-0.163025,-0.249603,-0.314087,-0.365967,-0.420593,-0.485443,-0.56424,-0.64798,-0.716522,-0.745514,-0.732941,-0.685516,-0.618927,-0.534637,-0.419342,-0.267181,-0.108978,0.0191345,0.0858459,0.0995178,0.0940857,0.108917,0.155243,0.213226,0.278107,0.35965,0.473816,0.608002,0.728912,0.797852,0.794495,0.723969,0.609741,0.478455,0.350525,0.24826,0.174561,0.129517,0.106049,0.0924072,0.0809937,0.061554,0.0188599,-0.0578003,-0.158936,-0.258789,-0.322754,-0.343231,-0.324036,-0.277924,-0.215027,-0.13913,-0.0610046,0.0088501,0.0585938,0.0852966,0.0853577,0.0686035,0.0469055,0.0394592,0.0608826,0.10965,0.17276,0.227997,0.264038,0.276367,0.265717,0.22818,0.162628,0.0700073,-0.0384521,-0.141663,-0.227661,-0.296844,-0.358246,-0.424896,-0.504089,-0.594971,-0.683624,-0.741669,-0.755585,-0.722626,-0.660461,-0.584564,-0.491943,-0.37262,-0.229004,-0.0885925,0.0113525,0.0536194,0.0545044,0.0512695,0.0744934,0.127106,0.190338,0.261597,0.356903,0.479523,0.618866,0.737305,0.80423,0.806366,0.746429,0.640137,0.510803,0.384369,0.28067,0.203705,0.145905,0.105835,0.0804749,0.0610046,0.0389404,0.000396729,-0.0677185,-0.153503,-0.234283,-0.284149,-0.300995,-0.290283,-0.258392,-0.212555,-0.156921,-0.101807,-0.0536194,-0.0176392,0.00946045,0.0191956,0.0157166,0.0105286,0.0194092,0.0547791,0.116577,0.186768,0.244507,0.276031,0.286255,0.2771,0.244965,0.183838,0.098999,-0.0017395,-0.101959,-0.189941,-0.263489,-0.330536,-0.397186,-0.472076,-0.556244,-0.642609,-0.707581,-0.733368,-0.712067,-0.657043,-0.588379,-0.516724,-0.430603,-0.315308,-0.17981,-0.0585938,0.012085,0.0256958,0.0187988,0.0335693,0.0892639,0.168182,0.247528,0.329468,0.43396,0.568329,0.70697,0.812134,0.849274,0.814362,0.725098,0.606567,0.479736,0.355225,0.250122,0.165314,0.104431,0.0664368,0.04422,0.0326233,0.0149536,-0.0225525,-0.0867004,-0.1651,-0.231476,-0.273102,-0.290955,-0.290283,-0.2771,-0.25174,-0.211609,-0.161346,-0.109192,-0.0623474,-0.0265808,-0.00469971,0.00952148,0.0245667,0.0524902,0.10141,0.164551,0.226227,0.269806,0.293762,0.29892,0.283142,0.238983,0.170471,0.0786438,-0.0256958,-0.121735,-0.202271,-0.266113,-0.322815,-0.382355,-0.449677,-0.527039,-0.609253,-0.680542,-0.718933,-0.716919,-0.678131,-0.622345,-0.553772,-0.46167,-0.341736,-0.201752,-0.0710754,0.0213318,0.061554,0.0728149,0.0877075,0.13382,0.203094,0.279205,0.365448,0.467529,0.594574,0.726044,0.831604,0.878845,0.852478,0.757111,0.620667,0.471619,0.333435,0.220734,0.133026,0.0731506,0.036499,0.0194092,0.0189819,0.0168457,-0.00958252,-0.0749817,-0.166229,-0.253418,-0.317444,-0.353424,-0.360199,-0.344086,-0.309387,-0.257935,-0.192352,-0.118256,-0.0501404,-0.00012207,0.025177,0.0334778,0.0385132,0.0575867,0.100281,0.163483,0.224579,0.269806,0.294159,0.302094,0.291534,0.254303,0.188995,0.100281,0.00201416,-0.0912781,-0.169189,-0.230804,-0.285095,-0.3414,-0.411011,-0.492889,-0.587372,-0.679382,-0.742889,-0.763275,-0.740997,-0.69046,-0.615509,-0.514221,-0.382019,-0.227112,-0.0752258,0.0397339,0.101959,0.122894,0.131958,0.158783,0.21048,0.275299,0.353821,0.45047,0.573486,0.709137,0.827393,0.898529,0.894562,0.814087,0.680939,0.526642,0.373413,0.240326,0.135101,0.0606079,0.015625,-0.00531006,-0.00967407,-0.0140991,-0.0383911,-0.0967712,-0.185425,-0.275909,-0.347992,-0.392883,-0.403748,-0.384705,-0.34256,-0.28241,-0.207581,-0.126373,-0.0526123,0.00323486,0.0392761,0.0550232,0.0585938,0.0679321,0.0955811,0.148132,0.207245,0.259735,0.29657,0.318939,0.321686,0.294373,0.236572,0.153076,0.0526733,-0.0499268,-0.141876,-0.216309,-0.278931,-0.338196,-0.400726,-0.471893,-0.553955,-0.640198,-0.712402,-0.751221,-0.753021,-0.721802,-0.65979,-0.562958,-0.43576,-0.289185,-0.135162,0.000213623,0.0986633,0.15155,0.173706,0.185303,0.20462,0.243835,0.305511,0.393829,0.504913,0.630341,0.748383,0.843475,0.891998,0.867035,0.77121,0.630402,0.470947,0.316101,0.182617,0.0786438,0.00234985,-0.0480652,-0.0734863,-0.0799255,-0.0851746,-0.109863,-0.162537,-0.235168,-0.303497,-0.356445,-0.384216,-0.38147,-0.354309,-0.310547,-0.253418,-0.177582,-0.0984497,-0.0297852,0.0184021,0.0480652,0.0632324,0.0775146,0.102295,0.144562,0.199402,0.253021,0.295898,0.32605,0.337799,0.323547,0.276642,0.205048,0.114899,0.012146,-0.0852966,-0.167175,-0.231018,-0.287506,-0.343689,-0.400726,-0.465027,-0.538513,-0.622833,-0.701416,-0.754303,-0.766449,-0.73175,-0.651215,-0.536652,-0.40625,-0.267731,-0.116974,0.0292664,0.142426,0.200012,0.206635,0.197449,0.207642,0.256836,0.328644,0.413696,0.508789,0.621735,0.745239,0.849182,0.900391,0.865906,0.757324,0.602142,0.42865,0.255646,0.104095,-0.0143738,-0.0954285,-0.133698,-0.136505,-0.121002,-0.104309,-0.105652,-0.132538,-0.188599,-0.25827,-0.322693,-0.365967,-0.376038,-0.359589,-0.324646,-0.267792,-0.18988,-0.10321,-0.0200806,0.0490723,0.098175,0.125488,0.134491,0.142212,0.160278,0.193146,0.232819,0.26355,0.283691,0.29187,0.281403,0.249725,0.198792,0.126648,0.0378418,-0.0516663,-0.129395,-0.193024,-0.245911,-0.297119,-0.355164,-0.422363,-0.493164,-0.564148,-0.640076,-0.706635,-0.741547,-0.730743,-0.667725,-0.566254,-0.444763,-0.315247,-0.179199,-0.0350342,0.0973206,0.19516,0.240417,0.240875,0.232544,0.253632,0.311218,0.381958,0.46167,0.546234,0.640015,0.732697,0.796967,0.805908,0.737854,0.610809,0.449066,0.282349,0.131866,0.0117493,-0.074646,-0.12442,-0.138245,-0.12793,-0.108063,-0.0940247,-0.101471,-0.144684,-0.217529,-0.298065,-0.357849,-0.385773,-0.374084,-0.336029,-0.272003,-0.19046,-0.0929565,0.00228882,0.0807495,0.129456,0.147125,0.143097,0.126038,0.115845,0.122742,0.154297,0.201019,0.24585,0.277649,0.296173,0.296295,0.273956,0.220337,0.138672,0.0358276,-0.0691833,-0.161682,-0.231934,-0.283295,-0.327393,-0.373627,-0.420868,-0.467712,-0.520416,-0.579926,-0.638,-0.673615,-0.677032,-0.638245,-0.555359,-0.440948,-0.30545,-0.16214,-0.0167847,0.117523,0.2229,0.284912,0.301208,0.296906,0.29422,0.308868,0.338135,0.385223,0.447113,0.519073,0.595764,0.656433,0.685974,0.6586,0.575226,0.45108,0.307922,0.166718,0.0448914,-0.0512085,-0.118134,-0.154236,-0.167786,-0.162354,-0.148254,-0.140869,-0.153687,-0.191681,-0.242218,-0.283569,-0.30127,-0.286926,-0.253693,-0.209473,-0.159729,-0.0990601,-0.0331421,0.0265198,0.0715332,0.0950317,0.104095,0.103973,0.115784,0.146362,0.192627,0.241486,0.278442,0.302429,0.311951,0.302551,0.268738,0.207581,0.120544,0.0140991,-0.0927429,-0.177917,-0.229248,-0.258057,-0.279449,-0.303772,-0.3302,-0.360657,-0.401398,-0.455048,-0.516632,-0.583893,-0.634705,-0.649261,-0.605438,-0.506317,-0.374084,-0.231476,-0.0967712,0.0353088,0.162201,0.26712,0.324432,0.321533,0.280884,0.236969,0.225708,0.250732,0.302887,0.364777,0.437653,0.524628,0.609863,0.664429,0.65329,0.568726,0.432281,0.274567,0.119934,-0.020752,-0.130341,-0.196777,-0.217377,-0.204041,-0.170929,-0.133972,-0.107178,-0.10141,-0.126373,-0.176971,-0.233215,-0.27771,-0.292206,-0.276245,-0.237732,-0.17926,-0.103302,-0.0157166,0.0688477,0.136108,0.178925,0.192139,0.18866,0.179657,0.178375,0.191345,0.215179,0.242737,0.260925,0.265839,0.248596,0.209808,0.151672,0.0768433,-0.0106812,-0.0995178,-0.169739,-0.209534,-0.225555,-0.226166,-0.224701,-0.232544,-0.258453,-0.305359,-0.37088,-0.448059,-0.533295,-0.613007,-0.658264,-0.639343,-0.550262,-0.4104,-0.249725,-0.0904846,0.0498657,0.172089,0.264832,0.313812,0.302612,0.242218,0.172028,0.134033,0.150879,0.203613,0.280609,0.368317,0.464172,0.552155,0.610138,0.617249,0.555511,0.432831,0.280731,0.128387,-0.00430298,-0.108398,-0.172882,-0.19577,-0.18631,-0.161469,-0.134766,-0.113678,-0.108978,-0.129944,-0.173828,-0.218445,-0.245239,-0.248718,-0.222229,-0.171692,-0.107666,-0.0436096,0.0194702,0.078186,0.124298,0.147247,0.149811,0.144104,0.142761,0.152832,0.174286,0.207458,0.242737,0.264832,0.266632,0.24765,0.20871,0.14859,0.0761719,0.0020752,-0.0629578,-0.113281,-0.138184,-0.140015,-0.128448,-0.123627,-0.139801,-0.180664,-0.2435,-0.324036,-0.411743,-0.497314,-0.567383,-0.614349,-0.621948,-0.567932,-0.45462,-0.302338,-0.147247,-0.0179138,0.0808716,0.151947,0.203552,0.229462,0.217529,0.16684,0.102875,0.0679321,0.0889282,0.156097,0.24173,0.322205,0.396454,0.465851,0.519592,0.541077,0.502808,0.402283,0.259247,0.114105,-0.0116882,-0.108795,-0.177246,-0.214355,-0.213745,-0.185638,-0.138458,-0.0926819,-0.0568542,-0.0447693,-0.0639038,-0.101288,-0.142273,-0.169861,-0.174286,-0.153961,-0.116364,-0.0736389,-0.0258484,0.0304565,0.0900574,0.13913,0.166565,0.178314,0.178802,0.181549,0.18692,0.196228,0.21048,0.220123,0.22168,0.208923,0.179718,0.138916,0.0912781,0.0414734,-0.0100708,-0.0575256,-0.0951538,-0.111206,-0.108978,-0.103882,-0.106384,-0.129395,-0.172607,-0.232361,-0.302429,-0.372681,-0.437988,-0.494568,-0.533295,-0.533417,-0.478577,-0.376709,-0.250549,-0.130737,-0.0357056,0.0296631,0.078186,0.118866,0.137787,0.124359,0.0758972,0.0233459,0.00497437,0.0414734,0.116241,0.198914,0.273773,0.340881,0.404236,0.456299,0.479187,0.445038,0.352966,0.227661,0.106659,0.00289917,-0.0755615,-0.132965,-0.166656,-0.171692,-0.151611,-0.115356,-0.0770569,-0.0481262,-0.036438,-0.048584,-0.0765076,-0.109406,-0.133362,-0.139252,-0.124969,-0.0986633,-0.065155,-0.020874,0.0366516,0.101074,0.156433,0.19812,0.224304,0.233612,0.229523,0.216248,0.203888,0.1922,0.176788,0.157318,0.132355,0.10965,0.0927429,0.0829468,0.0727539,0.0549622,0.0281067,0.0020752,-0.0137024,-0.0228271,-0.036377,-0.0634155,-0.10498,-0.153503,-0.20462,-0.253693,-0.301544,-0.351807,-0.404175,-0.455109,-0.487976,-0.486176,-0.446442,-0.37442,-0.290192,-0.207397,-0.129944,-0.0589294,0.00799561,0.0593262,0.0785828,0.06073,0.0234375,-0.00616455,-0.00234985,0.0390015,0.106384,0.184509,0.264282,0.346832,0.422211,0.472473,0.479584,0.428986,0.32724,0.200928,0.0719604,-0.0391846,-0.124023,-0.175903,-0.191132,-0.17926,-0.143616,-0.0998535,-0.0582581,-0.0322876,-0.028595,-0.0496521,-0.0822754,-0.108856,-0.119202,-0.101746,-0.0593872,-0.00665283,0.0475159,0.0990601,0.148468,0.187103,0.206787,0.204041,0.184753,0.159943,0.143768,0.14389,0.161407,0.188263,0.210602,0.220001,0.217377,0.202026,0.174225,0.133087,0.0828247,0.0308838,-0.015625,-0.0411377,-0.0410156,-0.0250244,-0.00415039,0.00228882,-0.00805664,-0.040802,-0.100189,-0.186096,-0.29068,-0.399384,-0.499451,-0.575287,-0.619598,-0.614685,-0.558258,-0.45578,-0.32959,-0.203156,-0.0991821,-0.0303345,0.0104065,0.0269775,0.024353,-0.00476074,-0.0543518,-0.0954285,-0.0987854,-0.0475159,0.0479736,0.162811,0.270477,0.361206,0.433563,0.481476,0.486633,0.43335,0.321136,0.178528,0.0393982,-0.0733643,-0.15509,-0.202484,-0.210266,-0.181488,-0.125244,-0.0606689,0.000457764,0.0440979,0.0657654,0.0623474,0.0381775,0.000457764,-0.0337524,-0.0461731,-0.0353088,-0.0108032,0.0148926,0.0426941,0.0789185,0.125641,0.173096,0.209595,0.23053,0.23584,0.233826,0.232697,0.235962,0.236908,0.227722,0.206848,0.182739,0.156708,0.129852,0.103821,0.08255,0.0671082,0.0549011,0.0485229,0.0510864,0.058197,0.0576477,0.0401917,0.0015564,-0.0618896,-0.145233,-0.239532,-0.333893,-0.41806,-0.48819,-0.541199,-0.570007,-0.574036,-0.545715,-0.4888,-0.408264,-0.316986,-0.237305,-0.173157,-0.133545,-0.108185,-0.0883789,-0.0733032,-0.0673828,-0.0739746,-0.0819397,-0.0689392,-0.0196533,0.0622864,0.154846,0.237579,0.301086,0.355438,0.39502,0.409271,0.386719,0.315979,0.21167,0.101196,0.0116882,-0.0515442,-0.0934753,-0.113007,-0.105713,-0.0707397,-0.020752,0.0305481,0.0664978,0.0848389,0.0840149,0.0627441,0.0292664,-0.00515747,-0.0279236,-0.0301208,-0.0117493,0.0205994,0.0579224,0.0987854,0.14624,0.199341,0.244019,0.272339,0.278656,0.271271,0.257843,0.245514,0.231079,0.215576,0.195374,0.171936,0.150604,0.133301,0.124237,0.117981,0.110474,0.0932922,0.073822,0.0546265,0.0357666,0.0151062,-0.0175781,-0.0626831,-0.12262,-0.191406,-0.262146,-0.328644,-0.391602,-0.44632,-0.489929,-0.52301,-0.543945,-0.549927,-0.532349,-0.488464,-0.42569,-0.359802,-0.306793,-0.263489,-0.22818,-0.190125,-0.147369,-0.113342,-0.0920715,-0.0833435,-0.06604,-0.0221558,0.0515442,0.140198,0.222626,0.292816,0.3508,0.400604,0.431274,0.431274,0.391083,0.308655,0.205048,0.104706,0.0260925,-0.029541,-0.0646973,-0.0761719,-0.0647583,-0.0299988,0.016449,0.0577087,0.0869141,0.0941467,0.0785828,0.045166,0.0111389,-0.0140381,-0.0244446,-0.0119324,0.016571,0.0594482,0.105988,0.159851,0.216522,0.267456,0.302216,0.313477,0.303223,0.279999,0.253754,0.234619,0.220062,0.205505,0.182159,0.157593,0.138794,0.126373,0.112762,0.0930176,0.065155,0.0331421,0.00335693,-0.0185242,-0.0360413,-0.0548401,-0.081665,-0.114899,-0.159454,-0.210388,-0.268463,-0.332947,-0.395294,-0.452881,-0.504761,-0.546509,-0.569122,-0.570007,-0.554688,-0.521606,-0.471466,-0.402222,-0.32724,-0.252625,-0.189728,-0.144226,-0.106659,-0.0774536,-0.050415,-0.02771,-0.0128174,0.00335693,0.0369873,0.0995178,0.180817,0.262024,0.327454,0.373413,0.404633,0.418396,0.410065,0.365448,0.283691,0.182159,0.0826111,0.0071106,-0.0426025,-0.0668335,-0.0701904,-0.0540161,-0.0186462,0.0263672,0.0706787,0.101288,0.112488,0.100006,0.0734863,0.0422058,0.0185852,0.017395,0.0362549,0.0696106,0.108521,0.149475,0.196503,0.247437,0.292267,0.31604,0.316376,0.299591,0.271881,0.24234,0.213745,0.187866,0.159058,0.125916,0.0942383,0.0664978,0.0463867,0.0311279,0.0142212,-0.00744629,-0.0323486,-0.0551758,-0.0740356,-0.090332,-0.109131,-0.137573,-0.173279,-0.212891,-0.251221,-0.291687,-0.330536,-0.368256,-0.399048,-0.427307,-0.450592,-0.464569,-0.469269,-0.464752,-0.452087,-0.427185,-0.38623,-0.332489,-0.268311,-0.204834,-0.152496,-0.10791,-0.0686646,-0.0276489,0.00750732,0.0304565,0.0414734,0.053833,0.0856323,0.139008,0.203888,0.262085,0.306183,0.342957,0.371338,0.386658,0.368713,0.310333,0.22168,0.127991,0.0512695,-0.00476074,-0.0419312,-0.0564575,-0.0479126,-0.0182495,0.0220032,0.0665894,0.0987244,0.115692,0.112488,0.0930786,0.0666504,0.0457764,0.0401306,0.0578003,0.09021,0.132202,0.174164,0.216919,0.259338,0.290192,0.298126,0.282623,0.247314,0.206451,0.168457,0.133484,0.10556,0.0870361,0.0751038,0.0647583,0.0531616,0.0386658,0.0216675,0,-0.0252991,-0.0540161,-0.0818176,-0.102142,-0.108398,-0.104889,-0.0990601,-0.101013,-0.112488,-0.133636,-0.160004,-0.195709,-0.243561,-0.297913,-0.351746,-0.397644,-0.432678,-0.451813,-0.457642,-0.44873,-0.42691,-0.392761,-0.348511,-0.297241,-0.240875,-0.193542,-0.156525,-0.12738,-0.0991821,-0.0697327,-0.0448914,-0.0220947,-0.00280762,0.0269165,0.0715332,0.131134,0.203156,0.266785,0.319733,0.356049,0.380188,0.388855,0.36853,0.313354,0.23175,0.141205,0.0623474,0.00341797,-0.032135,-0.0501404,-0.0474548,-0.028656,0.00302124,0.0411377,0.0767212,0.101013,0.106781,0.0969238,0.077301,0.0614624,0.0580444,0.0677185,0.09021,0.115692,0.143677,0.17276,0.201874,0.227112,0.238525,0.233154,0.212219,0.188324,0.165985,0.148987,0.133148,0.115356,0.0979309,0.0798035,0.0626221,0.0471802,0.0308838,0.0146179,-0.00234985,-0.0192566,-0.0284424,-0.0305481,-0.028717,-0.0260925,-0.0300598,-0.0440979,-0.0697937,-0.104645,-0.143555,-0.189606,-0.242004,-0.294952,-0.345703,-0.386383,-0.416229,-0.437042,-0.449738,-0.456238,-0.458374,-0.449799,-0.423553,-0.379852,-0.326233,-0.272339,-0.225769,-0.17981,-0.131531,-0.0812073,-0.0322876,0.00167847,0.0245056,0.0469055,0.0857849,0.141266,0.203156,0.260132,0.303223,0.33847,0.365692,0.37616,0.360535,0.309723,0.228394,0.136505,0.052887,-0.00958252,-0.0548401,-0.0785828,-0.0789185,-0.0542908,-0.012085,0.0336304,0.0739746,0.100677,0.108063,0.0983887,0.0779114,0.0535583,0.0386047,0.0404663,0.0606079,0.0961609,0.136108,0.182068,0.231354,0.27887,0.312134,0.321808,0.306854,0.27356,0.235962,0.19812,0.16449,0.135101,0.108734,0.0852966,0.0678406,0.0575867,0.0511475,0.0422668,0.0302124,0.00967407,-0.00958252,-0.0266418,-0.0401306,-0.0534363,-0.0686646,-0.0875854,-0.108582,-0.130524,-0.154022,-0.181885,-0.217255,-0.255829,-0.294769,-0.333496,-0.370667,-0.399933,-0.423492,-0.44046,-0.453827,-0.457916,-0.448334,-0.418793,-0.372345,-0.316589,-0.264832,-0.220551,-0.177368,-0.133148,-0.0885315,-0.0515442,-0.0262451,-0.00952148,0.0111389,0.0491333,0.104309,0.168121,0.228668,0.278778,0.315704,0.336914,0.342346,0.3237,0.275635,0.204163,0.121948,0.0481262,-0.00866699,-0.0413513,-0.0532227,-0.0452881,-0.0189819,0.016449,0.0526123,0.085022,0.110535,0.124695,0.124298,0.116241,0.107117,0.107056,0.122559,0.15155,0.184509,0.216187,0.24469,0.270203,0.291412,0.303497,0.300476,0.280792,0.247375,0.211273,0.17746,0.147369,0.123749,0.0972595,0.0683899,0.040741,0.0205383,0.0088501,-0.00146484,-0.0151672,-0.0314636,-0.0424805,-0.0456238,-0.0440369,-0.0409546,-0.0406799,-0.0482483,-0.0631409,-0.0836792,-0.107391,-0.138519,-0.17691,-0.224365,-0.271942,-0.319611,-0.362823,-0.40155,-0.43222,-0.457062,-0.475098,-0.485107,-0.484772,-0.470337,-0.442474,-0.399994,-0.345032,-0.285156,-0.229462,-0.175964,-0.125763,-0.0771179,-0.036499,-0.00598145,0.0179138,0.0404663,0.0741577,0.117188,0.171692,0.228851,0.279999,0.320007,0.345306,0.355164,0.342072,0.302338,0.237305,0.15799,0.0826111,0.0209351,-0.0187378,-0.0375977,-0.0349731,-0.0153809,0.0202026,0.0626221,0.105896,0.137573,0.152344,0.156097,0.152222,0.14267,0.136658,0.137054,0.151276,0.173157,0.198059,0.222961,0.246185,0.268646,0.284363,0.287384,0.273773,0.2453,0.211487,0.177032,0.149811,0.124908,0.101471,0.0762329,0.052002,0.0320129,0.0149536,0.000213623,-0.016571,-0.0353699,-0.0517578,-0.0636292,-0.066925,-0.0675049,-0.0699463,-0.0813293,-0.0979919,-0.118378,-0.144012,-0.176575,-0.219208,-0.266113,-0.312958,-0.356232,-0.390411,-0.418579,-0.440948,-0.459259,-0.470276,-0.474243,-0.46759,-0.447906,-0.412354,-0.363892,-0.306702,-0.250214,-0.19751,-0.14679,-0.0970459,-0.0471802,-0.00732422,0.0177917,0.0296021,0.0429382,0.0724792,0.121216,0.178314,0.229187,0.268799,0.300812,0.3284,0.343964,0.330078,0.278992,0.201538,0.114838,0.0428772,-0.00872803,-0.0350952,-0.0422058,-0.0269775,0.00900269,0.0593262,0.113281,0.157715,0.186859,0.194305,0.184906,0.163483,0.140198,0.127167,0.130402,0.149048,0.179382,0.214417,0.250732,0.281006,0.307129,0.318604,0.3078,0.276245,0.230408,0.180817,0.134033,0.0954895,0.0680542,0.0479736,0.032959,0.0212708,0.0125427,0.00793457,0.00296021,-0.00698853,-0.0234375,-0.0437622,-0.062561,-0.0762939,-0.0856934,-0.0936279,-0.103363,-0.116913,-0.130615,-0.147705,-0.167328,-0.196167,-0.23114,-0.268311,-0.304565,-0.3414,-0.375977,-0.405701,-0.426239,-0.439941,-0.446381,-0.447723,-0.442474,-0.426971,-0.398651,-0.355042,-0.304443,-0.255432,-0.209717,-0.162415,-0.11087,-0.0555725,-0.00665283,0.0315552,0.0578613,0.082489,0.11142,0.150208,0.193298,0.230255,0.257843,0.279999,0.301941,0.317322,0.311737,0.284363,0.236572,0.18161,0.126251,0.0809326,0.0475159,0.0232849,0.0110168,0.0153809,0.0350342,0.065979,0.0975037,0.124359,0.146301,0.161346,0.168518,0.170746,0.172424,0.177795,0.185425,0.19516,0.209259,0.225769,0.243164,0.255707,0.26416,0.263702,0.253693,0.23288,0.206909,0.176514,0.144287,0.111603,0.080658,0.053833,0.0282593,0.00491333,-0.0124817,-0.0253601,-0.0363159,-0.0501404,-0.065033,-0.078186,-0.0908203,-0.104706,-0.118988,-0.135559,-0.153748,-0.175018,-0.196991,-0.219116,-0.242279,-0.269409,-0.297394,-0.325775,-0.353638,-0.384094,-0.411682,-0.433899,-0.448059,-0.457855,-0.459259,-0.453766,-0.432556,-0.394104,-0.338135,-0.272614,-0.210266,-0.15625,-0.106659,-0.0526123,0.00415039,0.052887,0.0814819,0.0965881,0.111755,0.142212,0.184753,0.228577,0.262878,0.281128,0.293213,0.302765,0.308594,0.295898,0.258789,0.20108,0.136444,0.0833435,0.045105,0.0209961,0.00924683,0.00616455,0.0169678,0.0374451,0.0653687,0.0942383,0.120941,0.140411,0.154694,0.164307,0.173096,0.188446,0.211212,0.237122,0.261871,0.281128,0.29483,0.303497,0.306854,0.303223,0.287598,0.261749,0.22583,0.184509,0.146301,0.112671,0.0838928,0.0527649,0.0196533,-0.0159607,-0.0465698,-0.0715332,-0.0897217,-0.108582,-0.128937,-0.148804,-0.161469,-0.165649,-0.164978,-0.167908,-0.174774,-0.185242,-0.196564,-0.208191,-0.222687,-0.239136,-0.259918,-0.278656,-0.296173,-0.313568,-0.331604,-0.350525,-0.36496,-0.37558,-0.38504,-0.391083,-0.390137,-0.377045,-0.345703,-0.29718,-0.236237,-0.172943,-0.115845,-0.0683289,-0.0234985,0.0221558,0.0599976,0.0779114,0.0798035,0.0767212,0.0860291,0.113892,0.152832,0.191803,0.223969,0.249786,0.273499,0.291931,0.293884,0.26947,0.217316,0.150879,0.0922241,0.0505371,0.0273132,0.0210876,0.0283203,0.0497437,0.081665,0.119659,0.158661,0.188599,0.20813,0.217194,0.217102,0.212677,0.212494,0.21759,0.230133,0.24295,0.25174,0.253357,0.252472,0.245697,0.233704,0.213165,0.184906,0.146851,0.106842,0.0740356,0.0508728,0.0351562,0.0175171,-0.00524902,-0.0334167,-0.06073,-0.0843506,-0.105164,-0.127594,-0.152893,-0.178314,-0.19281,-0.191956,-0.176514,-0.158844,-0.144775,-0.134216,-0.130341,-0.130463,-0.141083,-0.156433,-0.180725,-0.211151,-0.246704,-0.282074,-0.310608,-0.331482,-0.347595,-0.357849,-0.361664,-0.360535,-0.35202,-0.339478,-0.315308,-0.27771,-0.232483,-0.183746,-0.144501,-0.112885,-0.0799255,-0.0439453,-0.0071106,0.0175781,0.0316772,0.0400696,0.0571289,0.0918884,0.142822,0.194977,0.23941,0.272491,0.301544,0.325378,0.337036,0.321869,0.276581,0.208862,0.140259,0.0855713,0.0502014,0.0312195,0.0259705,0.0369873,0.0619507,0.0986023,0.136169,0.167572,0.191803,0.200867,0.199127,0.186768,0.171936,0.163757,0.162964,0.17041,0.177795,0.187042,0.195038,0.202942,0.208527,0.207306,0.196442,0.172821,0.14093,0.107239,0.0751648,0.0479736,0.0202026,-0.00839233,-0.0415344,-0.0748291,-0.102966,-0.123016,-0.137177,-0.149719,-0.160004,-0.163025,-0.156372,-0.139801,-0.122498,-0.108337,-0.104309,-0.10672,-0.115356,-0.128784,-0.148926,-0.173157,-0.199066,-0.22403,-0.248444,-0.272156,-0.292938,-0.307129,-0.316498,-0.321686,-0.327393,-0.333618,-0.336121,-0.327393,-0.299927,-0.256592,-0.209595,-0.172546,-0.144836,-0.114563,-0.0761719,-0.0333557,-0.000457764,0.0144348,0.0218811,0.0400085,0.0803223,0.139404,0.199524,0.245697,0.277191,0.30249,0.324432,0.332489,0.315979,0.267242,0.199249,0.131287,0.0783997,0.0470581,0.037384,0.0402832,0.0547791,0.0786438,0.105713,0.131805,0.150665,0.15918,0.15744,0.145447,0.12851,0.115356,0.116364,0.130615,0.15451,0.178467,0.199402,0.214691,0.225494,0.231018,0.224823,0.208069,0.175903,0.135712,0.092804,0.0571289,0.0298767,0.00946045,-0.0104675,-0.0312195,-0.0550232,-0.0763855,-0.0887146,-0.094635,-0.101013,-0.112427,-0.125977,-0.13028,-0.125366,-0.112274,-0.102203,-0.0993347,-0.103363,-0.111145,-0.121002,-0.131409,-0.146851,-0.168121,-0.192139,-0.218048,-0.241211,-0.262817,-0.283081,-0.303558,-0.323761,-0.342285,-0.359863,-0.37088,-0.368591,-0.348328,-0.307465,-0.256439,-0.204163,-0.158386,-0.115784,-0.0681152,-0.0171814,0.0232849,0.0414734,0.0428772,0.0469666,0.0661621,0.105225,0.154022,0.200592,0.239532,0.274841,0.310608,0.340057,0.348389,0.321136,0.261688,0.183838,0.112549,0.0548401,0.0137024,-0.00878906,-0.0159607,-0.00408936,0.0231628,0.0624695,0.107178,0.143341,0.165314,0.171478,0.167175,0.158112,0.153412,0.153015,0.157776,0.166382,0.177643,0.189728,0.203552,0.217865,0.222809,0.218994,0.204285,0.179321,0.148193,0.115784,0.0867004,0.0594482,0.0303345,-0.000274658,-0.0320129,-0.0639038,-0.089325,-0.111145,-0.126373,-0.140259,-0.149139,-0.150604,-0.139404,-0.119873,-0.100342,-0.0878601,-0.0832825,-0.0842285,-0.0928955,-0.109863,-0.134552,-0.167236,-0.202881,-0.23645,-0.265228,-0.287506,-0.305115,-0.317322,-0.324036,-0.326294,-0.330261,-0.336578,-0.338379,-0.324493,-0.292084,-0.249603,-0.207458,-0.170746,-0.136841,-0.0956421,-0.0444946,0.00604248,0.0390015,0.04953,0.0532227,0.0663757,0.0987854,0.142334,0.181396,0.20697,0.226715,0.251221,0.278717,0.293427,0.281464,0.236176,0.171356,0.109253,0.0614014,0.0293274,0.00918579,0.00289917,0.0114746,0.0348206,0.0688477,0.112274,0.15033,0.177246,0.188721,0.187775,0.179382,0.175171,0.17926,0.186249,0.195709,0.203888,0.212677,0.223145,0.2341,0.237061,0.227112,0.206635,0.177307,0.141479,0.103699,0.070343,0.0412903,0.0124817,-0.0159607,-0.0448914,-0.0704041,-0.0922241,-0.107574,-0.121063,-0.13504,-0.147247,-0.154846,-0.150543,-0.138184,-0.12149,-0.10907,-0.101288,-0.0961609,-0.0932312,-0.0972595,-0.110199,-0.131531,-0.156982,-0.184174,-0.209473,-0.2341,-0.258179,-0.282288,-0.303009,-0.317505,-0.329407,-0.340149,-0.347595,-0.345154,-0.324554,-0.289398,-0.246857,-0.204285,-0.169189,-0.134705,-0.0940857,-0.0481262,-0.0104675,0.0118713,0.0205994,0.0319519,0.0571899,0.0987854,0.14679,0.191345,0.227234,0.261536,0.291687,0.314575,0.320618,0.296387,0.246094,0.181335,0.122406,0.077179,0.0459595,0.028595,0.027771,0.039856,0.0637512,0.0964966,0.130859,0.160126,0.180603,0.188721,0.185913,0.178864,0.174164,0.175964,0.182617,0.19046,0.193146,0.192078,0.19397,0.199066,0.200531,0.190399,0.169403,0.14389,0.116241,0.089386,0.0639038,0.0367737,0.00750732,-0.0240173,-0.0536804,-0.0814819,-0.104156,-0.119934,-0.131683,-0.138336,-0.140594,-0.135498,-0.124084,-0.107391,-0.0924683,-0.0838318,-0.0838928,-0.0921326,-0.106567,-0.127319,-0.154022,-0.183014,-0.210663,-0.235626,-0.255768,-0.273224,-0.285828,-0.298737,-0.309998,-0.320343,-0.332336,-0.34375,-0.347778,-0.335907,-0.301666,-0.258179,-0.208862,-0.165039,-0.123413,-0.0769043,-0.0296021,0.0137024,0.0377197,0.0422668,0.0404053,0.0519409,0.0841064,0.12973,0.174042,0.212006,0.247192,0.286255,0.317322,0.332001,0.316772,0.269135,0.200745,0.130463,0.0734863,0.0357666,0.0170593,0.0158386,0.0315552,0.0628052,0.103363,0.144775,0.178253,0.197174,0.198059,0.183563,0.161285,0.14679,0.141693,0.14328,0.149536,0.158447,0.171265,0.186371,0.202942,0.213745,0.20813,0.186188,0.152161,0.117706,0.0818787,0.0481262,0.0157776,-0.0137634,-0.0411377,-0.0630188,-0.0828247,-0.0997925,-0.110992,-0.119263,-0.126923,-0.135437,-0.14035,-0.138062,-0.128052,-0.116028,-0.10556,-0.100861,-0.101532,-0.104553,-0.110413,-0.12262,-0.142548,-0.166901,-0.19101,-0.213348,-0.233765,-0.255249,-0.2771,-0.297638,-0.312469,-0.325897,-0.335571,-0.336517,-0.325226,-0.296448,-0.25415,-0.206116,-0.161407,-0.12442,-0.0887146,-0.0491943,-0.0111389,0.0144958,0.0218811,0.0227661,0.0339661,0.0654907,0.11496,0.16745,0.211609,0.249329,0.289062,0.324036,0.344635,0.335297,0.292694,0.226776,0.154968,0.0933533,0.045166,0.0126038,-0.000549316,0.00509644,0.028656,0.0644836,0.10611,0.141876,0.166656,0.176453,0.172272,0.155701,0.138062,0.127106,0.12262,0.124237,0.12912,0.135559,0.147797,0.166718,0.184357,0.192749,0.185638,0.168579,0.141541,0.112671,0.081665,0.0514832,0.0192566,-0.0148315,-0.045166,-0.0706177,-0.0913391,-0.10437,-0.112762,-0.121063,-0.126709,-0.128784,-0.12323,-0.110992,-0.0970459,-0.0871277,-0.082489,-0.0814209,-0.0846863,-0.0926819,-0.107117,-0.128784,-0.156036,-0.181549,-0.205627,-0.226898,-0.245178,-0.260864,-0.276581,-0.288788,-0.299988,-0.309662,-0.312225,-0.303619,-0.280273,-0.245087,-0.20813,-0.170471,-0.137177,-0.103027,-0.0634766,-0.0269775,-0.00100708,0.00845337,0.0107422,0.0218811,0.0508728,0.0944824,0.13974,0.179993,0.217041,0.2565,0.291412,0.311279,0.306976,0.271149,0.211731,0.143097,0.0827637,0.0356445,0.00289917,-0.0133667,-0.0103455,0.00985718,0.0448914,0.0820007,0.116028,0.141541,0.155365,0.155762,0.147797,0.139465,0.136993,0.138794,0.145569,0.15509,0.163635,0.173096,0.182343,0.192139,0.195038,0.186646,0.168243,0.142548,0.117188,0.0927429,0.0654297,0.0369263,0.00817871,-0.0203247,-0.0488586,-0.0742188,-0.094696,-0.108978,-0.118134,-0.120209,-0.115448,-0.102478,-0.0840149,-0.0632324,-0.045166,-0.0343628,-0.0326843,-0.0404663,-0.0584412,-0.0855713,-0.118134,-0.154083,-0.186096,-0.214508,-0.239075,-0.259674,-0.274902,-0.284973,-0.291809,-0.303955,-0.317596,-0.327789,-0.326782,-0.305695,-0.273773,-0.239532,-0.209381,-0.182892,-0.147644,-0.102539,-0.0532837,-0.0186462,-0.00128174,0.00570679,0.0213318,0.0557861,0.103485,0.150269,0.184845,0.213287,0.245758,0.276764,0.297302,0.292358,0.252228,0.191071,0.12323,0.0667114,0.025177,-0.000396729,-0.0142822,-0.00839233,0.0149536,0.0520935,0.0950928,0.134827,0.164978,0.178314,0.175354,0.159454,0.143951,0.134033,0.131409,0.133972,0.138458,0.145966,0.15979,0.181885,0.205231,0.220947,0.221466,0.205383,0.182159,0.156769,0.12912,0.0969849,0.0601196,0.024231,-0.00912476,-0.0348206,-0.052002,-0.061554,-0.0693359,-0.0769653,-0.0807495,-0.0822144,-0.0774536,-0.0693359,-0.0621338,-0.0613403,-0.065979,-0.0756226,-0.0907288,-0.109802,-0.134766,-0.165985,-0.199066,-0.230927,-0.257507,-0.281464,-0.299744,-0.311951,-0.319,-0.324707,-0.331085,-0.334167,-0.327393,-0.307648,-0.276367,-0.241669,-0.208801,-0.181549,-0.154755,-0.119995,-0.0774536,-0.0386047,-0.0132141,-0.00128174,0.0105286,0.0365906,0.0788574,0.126831,0.163757,0.186859,0.207184,0.22757,0.248871,0.256989,0.237122,0.190552,0.132477,0.0821533,0.0479126,0.0289307,0.0194092,0.0186462,0.0297852,0.0524902,0.0863037,0.121063,0.149323,0.167847,0.172943,0.167999,0.1633,0.163879,0.17215,0.183289,0.192291,0.196503,0.202606,0.212158,0.226318,0.233612,0.22879,0.211395,0.186249,0.160339,0.13504,0.108917,0.07724,0.0418091,0.00967407,-0.0202026,-0.0437622,-0.0614624,-0.0754395,-0.0878601,-0.0996094,-0.104828,-0.105835,-0.101288,-0.098053,-0.0979919,-0.102692,-0.110138,-0.118317,-0.128937,-0.143829,-0.163757,-0.18866,-0.21402,-0.236053,-0.254364,-0.274017,-0.291748,-0.309875,-0.325043,-0.338135,-0.345245,-0.340942,-0.319946,-0.283905,-0.241821,-0.200806,-0.168121,-0.140015,-0.109528,-0.0776367,-0.0532837,-0.0436096,-0.0463867,-0.041687,-0.0181274,0.028656,0.0849609,0.135559,0.177185,0.215088,0.251282,0.279449,0.291016,0.269409,0.219208,0.156433,0.102753,0.0632935,0.0403442,0.0314026,0.0336914,0.0458984,0.0687256,0.100067,0.130615,0.156586,0.170349,0.169739,0.160278,0.153748,0.157379,0.169525,0.184021,0.193878,0.196167,0.196503,0.204437,0.216248,0.222626,0.215759,0.20108,0.181824,0.165894,0.15329,0.134094,0.107178,0.0723572,0.0352478,-0.000213623,-0.0335693,-0.0610046,-0.0841675,-0.102356,-0.112946,-0.118317,-0.117371,-0.110321,-0.101471,-0.0963135,-0.100677,-0.11261,-0.127319,-0.143951,-0.162354,-0.185242,-0.212891,-0.240143,-0.2612,-0.277252,-0.290009,-0.302002,-0.314819,-0.326508,-0.33725,-0.339478,-0.327515,-0.298309,-0.258331,-0.216766,-0.180603,-0.151611,-0.123749,-0.0928955,-0.0654907,-0.0493164,-0.0493164,-0.0533447,-0.0450439,-0.0137634,0.0386047,0.0978394,0.146912,0.186371,0.223236,0.256378,0.277771,0.27478,0.237976,0.175568,0.109741,0.0579224,0.0289307,0.017395,0.0203247,0.0342407,0.0585938,0.0920105,0.130188,0.160797,0.180328,0.182953,0.171478,0.155518,0.146698,0.153503,0.170258,0.189728,0.205383,0.213623,0.223083,0.238647,0.249786,0.248779,0.229248,0.200867,0.172607,0.151825,0.135223,0.114105,0.0861816,0.0545654,0.0255127,-0.00363159,-0.0304565,-0.0578003,-0.0841675,-0.107391,-0.123688,-0.131683,-0.13382,-0.12738,-0.119263,-0.112152,-0.109863,-0.114441,-0.123901,-0.138062,-0.157654,-0.184418,-0.214417,-0.241089,-0.264221,-0.281342,-0.295288,-0.307129,-0.319794,-0.329865,-0.336365,-0.33075,-0.31189,-0.281464,-0.24295,-0.206238,-0.173218,-0.14502,-0.11618,-0.0869751,-0.0646362,-0.0551758,-0.0584412,-0.0603333,-0.0463867,-0.00891113,0.0469055,0.100739,0.147125,0.187988,0.227173,0.259918,0.275024,0.259674,0.208588,0.144104,0.0855713,0.0452271,0.0248413,0.019989,0.0306091,0.0545654,0.0875244,0.126831,0.160797,0.183411,0.192627,0.187195,0.169922,0.153748,0.150208,0.160065,0.180054,0.20343,0.221008,0.23288,0.243683,0.253571,0.255646,0.242065,0.21463,0.180054,0.15033,0.130615,0.115234,0.0971069,0.072876,0.0476379,0.0211487,-0.00140381,-0.0238342,-0.0477295,-0.0762939,-0.103882,-0.12262,-0.131287,-0.132751,-0.129852,-0.126587,-0.125641,-0.126984,-0.130951,-0.140411,-0.156097,-0.179199,-0.207123,-0.233948,-0.25705,-0.276581,-0.293945,-0.31134,-0.329865,-0.344482,-0.352142,-0.347168,-0.325287,-0.289612,-0.247253,-0.206116,-0.168732,-0.135895,-0.103973,-0.0770569,-0.0628967,-0.0637512,-0.0766296,-0.0836182,-0.0722961,-0.0369263,0.0142212,0.0697937,0.122284,0.175446,0.226837,0.26712,0.281677,0.264618,0.21283,0.148041,0.0862427,0.0436096,0.0221558,0.0159607,0.0283813,0.0553589,0.0948181,0.141541,0.181824,0.204895,0.207855,0.194489,0.170349,0.150269,0.144348,0.151886,0.168396,0.190796,0.213898,0.23645,0.257111,0.269653,0.268066,0.249603,0.219208,0.184021,0.153503,0.130951,0.113678,0.093811,0.0709534,0.0489197,0.0296021,0.0106812,-0.0107422,-0.0371094,-0.0661011,-0.09375,-0.114685,-0.127594,-0.133759,-0.135498,-0.135437,-0.136383,-0.138397,-0.14267,-0.149811,-0.162872,-0.182678,-0.209595,-0.238403,-0.261353,-0.278656,-0.295227,-0.313751,-0.334106,-0.351959,-0.356842,-0.347107,-0.319946,-0.278992,-0.234772,-0.191956,-0.15274,-0.120331,-0.0910034,-0.0691223,-0.0608826,-0.0688477,-0.0853577,-0.093811,-0.0798645,-0.0390625,0.0203247,0.0807495,0.136658,0.189392,0.23941,0.276581,0.286713,0.258514,0.196381,0.121338,0.0571899,0.0196533,0.00335693,0.00811768,0.0258484,0.0596008,0.106506,0.158722,0.201752,0.220673,0.215851,0.192963,0.163544,0.140808,0.133484,0.140411,0.158051,0.182556,0.210815,0.23819,0.264832,0.281891,0.282898,0.263885,0.228912,0.189728,0.153839,0.128387,0.105713,0.0845642,0.0602112,0.0379333,0.01651,-0.00323486,-0.0236206,-0.0462952,-0.0698547,-0.0925598,-0.110931,-0.122223,-0.128326,-0.132141,-0.135101,-0.139252,-0.143341,-0.15155,-0.163361,-0.178711,-0.197998,-0.221893,-0.246643,-0.271149,-0.295044,-0.315582,-0.333435,-0.346436,-0.35202,-0.343292,-0.31778,-0.276306,-0.226105,-0.181,-0.14624,-0.120148,-0.0960999,-0.0787354,-0.0735474,-0.0841675,-0.103546,-0.113159,-0.0993958,-0.0557861,0.00592041,0.0726318,0.134644,0.193481,0.244965,0.276978,0.281006,0.245178,0.178131,0.0994568,0.0316772,-0.0116882,-0.02771,-0.0171204,0.0118713,0.0550232,0.108643,0.163879,0.208374,0.233276,0.233093,0.210999,0.174896,0.143494,0.127106,0.127991,0.143005,0.162811,0.188385,0.217987,0.249451,0.274628,0.283478,0.272766,0.245758,0.210815,0.17395,0.140259,0.105896,0.0744934,0.0447693,0.020752,0.00012207,-0.0191956,-0.0328979,-0.0441589,-0.0535583,-0.0636902,-0.0714722,-0.0777893,-0.079071,-0.081665,-0.0904846,-0.106995,-0.126923,-0.148529,-0.170471,-0.192474,-0.214355,-0.238647,-0.261261,-0.282135,-0.300995,-0.320007,-0.338654,-0.356384,-0.360077,-0.34256,-0.304962,-0.259186,-0.21759,-0.182953,-0.154083,-0.125702,-0.100189,-0.0862427,-0.0917358,-0.10907,-0.120605,-0.109131,-0.0710144,-0.0146179,0.0472412,0.106842,0.167999,0.226562,0.270142,0.284149,0.259857,0.198669,0.118805,0.0420837,-0.0147705,-0.0428772,-0.0465698,-0.0260925,0.0114746,0.0622253,0.11972,0.17215,0.208252,0.220612,0.207245,0.175781,0.145844,0.129456,0.129852,0.141022,0.154968,0.174164,0.199524,0.231476,0.261139,0.27832,0.276184,0.256836,0.22644,0.197571,0.172211,0.14563,0.114777,0.0800781,0.0475159,0.0205994,-0.00256348,-0.0205994,-0.0366516,-0.053009,-0.0671082,-0.074707,-0.0730896,-0.0634155,-0.053894,-0.053772,-0.0601196,-0.0741577,-0.0942993,-0.12207,-0.154846,-0.192749,-0.230743,-0.267242,-0.297394,-0.322479,-0.34201,-0.359528,-0.372009,-0.368652,-0.343964,-0.30368,-0.257843,-0.215759,-0.181152,-0.15564,-0.135162,-0.12027,-0.116577,-0.127167,-0.144226,-0.153687,-0.136993,-0.0906677,-0.0223389,0.0555115,0.130188,0.199127,0.256042,0.292938,0.301605,0.273438,0.205109,0.115295,0.0291138,-0.0347595,-0.0663757,-0.0662537,-0.0424805,-0.00222778,0.048645,0.103973,0.15564,0.188721,0.199402,0.17981,0.144836,0.112823,0.100464,0.107727,0.126434,0.151886,0.179321,0.207977,0.238129,0.264496,0.275848,0.267242,0.244354,0.213287,0.188049,0.170593,0.1539,0.134705,0.111664,0.0910034,0.0686646,0.0468445,0.0232239,-0.00314331,-0.0332947,-0.0591125,-0.0758972,-0.0805359,-0.0779114,-0.0718079,-0.0681763,-0.0657043,-0.0675049,-0.0777893,-0.0997925,-0.130188,-0.170746,-0.216309,-0.265564,-0.311798,-0.353027,-0.386047,-0.409729,-0.411407,-0.387573,-0.338593,-0.278717,-0.220123,-0.169922,-0.132202,-0.108124,-0.0927429,-0.0944824,-0.112427,-0.146454,-0.176849,-0.183167,-0.153839,-0.0919495,-0.0105286,0.0745544,0.1586,0.236053,0.295502,0.32431,0.309448,0.245758,0.149475,0.0508118,-0.028717,-0.0759583,-0.0897217,-0.0751648,-0.0378418,0.0143738,0.0776367,0.137573,0.181152,0.197784,0.185699,0.149811,0.108063,0.0798645,0.0720825,0.0826111,0.107788,0.139404,0.173615,0.212738,0.252808,0.281555,0.287598,0.269592,0.236176,0.202942,0.177582,0.1586,0.138916,0.115906,0.0940247,0.0742188,0.0569763,0.0424194,0.0265808,0.00509644,-0.0171814,-0.036499,-0.0477905,-0.0524902,-0.0558472,-0.0579834,-0.065918,-0.0779114,-0.0953674,-0.116852,-0.140472,-0.164642,-0.194489,-0.229797,-0.268799,-0.30603,-0.341278,-0.369995,-0.383362,-0.374695,-0.342224,-0.294708,-0.242065,-0.190277,-0.146973,-0.113831,-0.0928955,-0.0895386,-0.105316,-0.134155,-0.163818,-0.172028,-0.151001,-0.101868,-0.03302,0.0448914,0.130127,0.211731,0.276367,0.308777,0.300995,0.245239,0.158386,0.0624695,-0.0197449,-0.0709534,-0.0910645,-0.0778503,-0.0397949,0.0152893,0.0802002,0.14093,0.183411,0.198059,0.179871,0.137787,0.089386,0.0574646,0.0461121,0.053894,0.0749817,0.105774,0.144226,0.187378,0.231018,0.260406,0.267395,0.252014,0.2229,0.192871,0.169067,0.149536,0.131195,0.113281,0.0958252,0.0791321,0.0658264,0.0524902,0.0374451,0.0182495,-0.00280762,-0.019928,-0.0299377,-0.0314636,-0.0282593,-0.0296021,-0.0350342,-0.050415,-0.0749817,-0.105164,-0.140076,-0.178986,-0.220276,-0.265106,-0.306793,-0.340485,-0.361542,-0.365784,-0.349945,-0.318939,-0.272888,-0.226501,-0.183502,-0.147186,-0.121338,-0.106842,-0.106995,-0.124969,-0.153503,-0.179321,-0.184631,-0.160522,-0.108582,-0.0377808,0.0422058,0.123352,0.201935,0.264282,0.295288,0.28598,0.235504,0.153625,0.0630798,-0.0157166,-0.0698547,-0.0949097,-0.0875854,-0.052948,0.00167847,0.0656433,0.12558,0.168335,0.185425,0.173157,0.136047,0.0878601,0.0475159,0.0273743,0.0275879,0.0434875,0.0740967,0.113281,0.158051,0.202362,0.235962,0.246521,0.236053,0.21106,0.180389,0.155914,0.136841,0.121002,0.106903,0.0971069,0.0885925,0.0809937,0.0700684,0.0578003,0.040741,0.0196533,-0.00161743,-0.0170593,-0.0257568,-0.0259094,-0.0263062,-0.028656,-0.0381165,-0.0555115,-0.0820923,-0.116516,-0.153839,-0.198669,-0.248383,-0.296967,-0.335571,-0.361328,-0.364288,-0.344757,-0.306641,-0.253296,-0.197113,-0.147247,-0.110931,-0.0873718,-0.0791931,-0.086853,-0.109467,-0.14035,-0.170746,-0.182617,-0.161621,-0.107056,-0.0324097,0.0502625,0.131073,0.204163,0.260681,0.287445,0.275757,0.220612,0.134644,0.0393982,-0.0414734,-0.0922852,-0.109924,-0.0974426,-0.0599365,-0.00402832,0.0604553,0.123077,0.168396,0.187927,0.175842,0.137512,0.086792,0.0428772,0.0147095,0.00906372,0.0203247,0.0491943,0.0894775,0.138336,0.185852,0.224091,0.241882,0.236389,0.211273,0.175171,0.141357,0.113098,0.0899353,0.069458,0.0561829,0.0496521,0.0499268,0.0555725,0.0610657,0.0585327,0.0482483,0.0316162,0.0144958,0.00161743,-0.00958252,-0.0240173,-0.0434265,-0.0663757,-0.0930176,-0.119476,-0.150208,-0.182739,-0.222015,-0.26416,-0.302673,-0.329742,-0.337128,-0.319,-0.282562,-0.233948,-0.18457,-0.14035,-0.106506,-0.081665,-0.0672607,-0.0701294,-0.0930786,-0.126587,-0.156372,-0.163879,-0.138916,-0.0867004,-0.0175781,0.0536804,0.125916,0.193298,0.246185,0.269531,0.254822,0.197174,0.114838,0.028717,-0.040741,-0.0855713,-0.10376,-0.0954285,-0.0645752,-0.0128784,0.0487366,0.108917,0.152222,0.170074,0.159515,0.125702,0.082428,0.0420837,0.0129395,-0.00167847,-0.000457764,0.0192566,0.0546265,0.101959,0.151154,0.191864,0.214966,0.220276,0.209259,0.191345,0.166443,0.134888,0.103088,0.072876,0.0514832,0.0379333,0.0326843,0.0344238,0.0357056,0.0365906,0.0339661,0.0288696,0.0214233,0.0131531,6.10352e-05,-0.0184021,-0.0414734,-0.0687256,-0.0992737,-0.133759,-0.169189,-0.20813,-0.250275,-0.289948,-0.319794,-0.333008,-0.325287,-0.295441,-0.247711,-0.190613,-0.131287,-0.0794678,-0.0426025,-0.0196533,-0.0178528,-0.0381165,-0.0755005,-0.119537,-0.150604,-0.153839,-0.124237,-0.0658264,0.0083313,0.0873718,0.163757,0.229187,0.269745,0.276917,0.239929,0.167236,0.0804138,-0.00509644,-0.0704041,-0.109985,-0.120056,-0.102875,-0.0634155,-0.00549316,0.0561829,0.109528,0.142883,0.151276,0.135651,0.104767,0.0698547,0.0379944,0.0144958,0.00637817,0.0114746,0.0278625,0.0561218,0.0927429,0.128174,0.158783,0.178925,0.187714,0.187042,0.178925,0.164032,0.140472,0.112152,0.0833435,0.0577087,0.0371094,0.0245667,0.0175171,0.0128784,0.00979614,0.0083313,0.00839233,0.00448608,-0.00363159,-0.0203247,-0.0459595,-0.0786438,-0.115112,-0.152496,-0.188934,-0.22403,-0.257721,-0.286255,-0.305115,-0.30899,-0.293488,-0.259796,-0.21228,-0.162628,-0.116364,-0.0740356,-0.0388489,-0.0118713,-0.000946045,-0.0111389,-0.0393372,-0.0721436,-0.0926208,-0.0924072,-0.0672607,-0.0248413,0.0292053,0.0884705,0.151733,0.208313,0.240753,0.238983,0.195374,0.126373,0.0479126,-0.0219421,-0.0723572,-0.101013,-0.103485,-0.0820007,-0.0363159,0.0245667,0.0864563,0.131805,0.15451,0.146576,0.117035,0.0762329,0.0368347,0.00631714,-0.0109253,-0.0108032,0.00390625,0.0352478,0.0759583,0.119141,0.155029,0.172211,0.172699,0.157928,0.135223,0.111481,0.0892639,0.0670471,0.0516663,0.0394592,0.0358276,0.0378418,0.0432129,0.0461731,0.0434265,0.0359192,0.0266418,0.0170593,0.00610352,-0.00805664,-0.0284424,-0.0553589,-0.0897217,-0.128784,-0.170349,-0.212952,-0.254974,-0.293549,-0.322876,-0.333282,-0.318115,-0.278442,-0.220215,-0.159851,-0.106995,-0.0643005,-0.0317383,-0.00784302,0.000549316,-0.0151672,-0.0497437,-0.0870361,-0.10321,-0.0882568,-0.0439453,0.0128174,0.0744324,0.137787,0.200195,0.25415,0.279999,0.266907,0.21228,0.132629,0.0475769,-0.0247803,-0.0787354,-0.10965,-0.114899,-0.0942993,-0.0533447,0.00241089,0.0579224,0.103027,0.12973,0.132751,0.112946,0.0794678,0.0439453,0.0150452,-0.00369263,-0.0126953,-0.00924683,0.00604248,0.0379944,0.0778503,0.116638,0.143219,0.155975,0.157104,0.152893,0.143951,0.128113,0.104156,0.0758972,0.0480652,0.0270996,0.0134888,0.00631714,0.0017395,0.000396729,-0.00112915,-0.000213623,-0.000671387,-0.00180054,-0.00900269,-0.0260925,-0.0517578,-0.0856934,-0.124023,-0.164429,-0.206726,-0.250275,-0.290741,-0.321869,-0.32959,-0.310211,-0.265045,-0.209473,-0.155243,-0.104034,-0.0574646,-0.0128174,0.0176392,0.0238953,0.00390625,-0.0334778,-0.0647583,-0.0753784,-0.0606079,-0.0265808,0.0194092,0.0765076,0.143494,0.212219,0.265961,0.288727,0.271149,0.217102,0.14267,0.0641479,-0.003479,-0.0554504,-0.0873108,-0.0987244,-0.086853,-0.053894,-0.00598145,0.0444946,0.0832825,0.101135,0.0951538,0.0711975,0.0426941,0.0183105,-0.00012207,-0.0133667,-0.0183105,-0.0115356,0.0105896,0.04422,0.0803223,0.108459,0.124573,0.131348,0.132355,0.130188,0.124695,0.113892,0.0991211,0.080658,0.0637512,0.0499878,0.0394592,0.0294495,0.019989,0.00878906,-0.00189209,-0.0124817,-0.0241699,-0.0378418,-0.0556946,-0.0798645,-0.107056,-0.140259,-0.175354,-0.21228,-0.249878,-0.283813,-0.305634,-0.308929,-0.288605,-0.246704,-0.193298,-0.14035,-0.0910034,-0.0461121,-0.00650024,0.0194092,0.0256348,0.00939941,-0.0179749,-0.0388489,-0.0410767,-0.0237732,0.0108643,0.0534973,0.105713,0.163361,0.218658,0.257446,0.266388,0.23941,0.184082,0.115631,0.0469055,-0.0103455,-0.0510864,-0.0718689,-0.0724182,-0.0526733,-0.0200806,0.0191956,0.0532227,0.0755615,0.0788574,0.0618896,0.033905,0.00476074,-0.016571,-0.0275879,-0.0285339,-0.020752,-0.00408936,0.0224915,0.0546265,0.0845642,0.104034,0.108734,0.101624,0.0927429,0.0852966,0.0799255,0.0742188,0.0681152,0.0643616,0.065979,0.0700684,0.073822,0.0697327,0.0569763,0.0371094,0.0154419,-0.0083313,-0.0336304,-0.0601196,-0.0865784,-0.112091,-0.136047,-0.161011,-0.188995,-0.217865,-0.247711,-0.272614,-0.287506,-0.286163,-0.266235,-0.231079,-0.187439,-0.138916,-0.0906677,-0.0420227,-0.00222778,0.0240173,0.0316162,0.0216675,0.00784302,0.000213623,0.00939941,0.0328979,0.0670471,0.108398,0.156433,0.206299,0.249664,0.270996,0.260254,0.217926,0.15686,0.0892639,0.0281982,-0.0210876,-0.0556946,-0.0714111,-0.0675964,-0.045166,-0.0126038,0.0218811,0.046051,0.0569763,0.0508118,0.0314636,0.00692749,-0.0196533,-0.0397339,-0.0517578,-0.0508118,-0.0406799,-0.0188599,0.0139465,0.0496521,0.0834351,0.107788,0.119049,0.117706,0.111206,0.0973816,0.080658,0.0587769,0.0375977,0.0196533,0.012146,0.0126953,0.0203247,0.0264282,0.0316162,0.028717,0.021759,0.00592041,-0.0184631,-0.0531616,-0.0948181,-0.140594,-0.18161,-0.220001,-0.250397,-0.272339,-0.280792,-0.272766,-0.246246,-0.205444,-0.160522,-0.118134,-0.0810852,-0.0509949,-0.0234375,-0.00537109,0.00134277,-0.00537109,-0.0157166,-0.0195312,-0.00616455,0.0236206,0.0644226,0.108337,0.153503,0.199677,0.24234,0.268982,0.269806,0.239197,0.187866,0.127655,0.0696106,0.0224915,-0.00939941,-0.0265198,-0.028656,-0.0175171,0.00228882,0.0266418,0.0456238,0.0524902,0.0420227,0.0161133,-0.0170593,-0.0446167,-0.0617981,-0.0676575,-0.065918,-0.0583191,-0.0431519,-0.0179138,0.0129395,0.041626,0.0591125,0.0653687,0.0644836,0.0652466,0.0673218,0.0697327,0.0686035,0.0626221,0.0563049,0.0505981,0.0443726,0.0366516,0.0236206,0.0067749,-0.0123596,-0.0315552,-0.0498657,-0.0669861,-0.0820007,-0.0997925,-0.121277,-0.147919,-0.176971,-0.208374,-0.236786,-0.260742,-0.270477,-0.261688,-0.23288,-0.188538,-0.137451,-0.0846863,-0.0361633,0.00778198,0.0415344,0.0585938,0.0546265,0.0354309,0.0175171,0.0119324,0.0255127,0.0539551,0.0930176,0.138245,0.188782,0.238647,0.27356,0.282013,0.257507,0.206116,0.141937,0.0779724,0.024292,-0.0119324,-0.028717,-0.0269165,-0.00991821,0.0177917,0.0469055,0.0696106,0.078064,0.0671692,0.0386658,-0.000396729,-0.0377197,-0.0629578,-0.0755005,-0.0762329,-0.070343,-0.0561218,-0.0341492,-0.00665283,0.0188599,0.0367126,0.0436096,0.0411987,0.0361023,0.0331421,0.0346985,0.0354919,0.0349121,0.0338135,0.0317383,0.0305481,0.0256348,0.0177917,0.00442505,-0.0143738,-0.0368347,-0.06073,-0.0832214,-0.102753,-0.123352,-0.14563,-0.172363,-0.201141,-0.230194,-0.255493,-0.267578,-0.265625,-0.247192,-0.215088,-0.175629,-0.128662,-0.0802612,-0.0324707,0.0136108,0.0458374,0.0600586,0.056366,0.0467834,0.0423584,0.0532227,0.0763855,0.107117,0.143829,0.185364,0.232605,0.274506,0.299469,0.295441,0.262695,0.208984,0.14798,0.0926208,0.0477905,0.0151672,-0.0032959,-0.00891113,-0.0015564,0.0151672,0.0342407,0.0490723,0.0498657,0.0350342,0.00375366,-0.028656,-0.0520935,-0.0624084,-0.065155,-0.0639648,-0.0593262,-0.0473938,-0.0260315,0.00195312,0.0230103,0.0345764,0.0336914,0.0310669,0.0335693,0.0396118,0.045105,0.0441589,0.0409546,0.036377,0.0314026,0.0268555,0.0181885,6.10352e-05,-0.0265198,-0.0566406,-0.0895996,-0.119141,-0.145447,-0.170685,-0.195099,-0.218933,-0.242828,-0.2612,-0.276428,-0.280731,-0.272675,-0.250671,-0.215179,-0.171143,-0.124298,-0.0775757,-0.0327454,0.00933838,0.0438843,0.062561,0.0635681,0.0541687,0.0483093,0.0571899,0.0782471,0.110413,0.147583,0.190125,0.240265,0.287384,0.318329,0.321075,0.29187,0.237457,0.170929,0.108063,0.0551758,0.0183105,-0.00128174,-0.00234985,0.0132141,0.0377197,0.0679932,0.0914917,0.101959,0.0889893,0.0549011,0.00924683,-0.0330811,-0.0656433,-0.086792,-0.0976562,-0.0996094,-0.0888672,-0.0630188,-0.0263062,0.0110779,0.0377808,0.0498657,0.0497437,0.0461731,0.0422668,0.037262,0.0267029,0.015564,0.00772095,0.00469971,0.00799561,0.0123596,0.0109253,-0.000671387,-0.0222168,-0.0523376,-0.0879211,-0.127502,-0.169464,-0.212158,-0.251282,-0.284973,-0.309723,-0.3255,-0.3255,-0.307465,-0.276245,-0.232605,-0.190063,-0.147461,-0.108246,-0.0686035,-0.028595,0.00650024,0.0317993,0.0453796,0.0552979,0.0721436,0.101074,0.137665,0.173706,0.206635,0.237793,0.269257,0.297119,0.31189,0.30603,0.275696,0.229523,0.177307,0.131744,0.0957642,0.0706177,0.0532227,0.0425415,0.0397949,0.0412903,0.0487366,0.0534973,0.0495911,0.0293274,-0.00146484,-0.0301208,-0.0477905,-0.0527649,-0.0493164,-0.0452271,-0.0393372,-0.0293274,-0.0118713,0.00939941,0.0275879,0.0348206,0.0313416,0.0259094,0.024231,0.028717,0.0349121,0.0366516,0.0353699,0.0303955,0.0272522,0.0259705,0.0214844,0.00631714,-0.021759,-0.0597229,-0.100952,-0.142822,-0.181671,-0.22113,-0.259064,-0.294891,-0.321014,-0.336639,-0.334778,-0.315765,-0.281891,-0.239136,-0.19397,-0.150391,-0.112335,-0.0794067,-0.0502625,-0.028656,-0.0148926,-0.00726318,-0.000213623,0.0185242,0.0549622,0.104767,0.15979,0.208984,0.251007,0.287842,0.313477,0.321198,0.305786,0.266388,0.214233,0.161743,0.118988,0.0908203,0.0807495,0.0813293,0.0907288,0.100067,0.105042,0.105438,0.0979919,0.0819397,0.0526123,0.0119324,-0.0299377,-0.0602722,-0.070282,-0.0645752,-0.0556946,-0.0479736,-0.0411987,-0.0291138,-0.0104065,0.0071106,0.0155029,0.0143738,0.012146,0.0148926,0.0274353,0.0436096,0.0560303,0.0605469,0.0585327,0.0536804,0.0483093,0.0391235,0.0235596,-0.000335693,-0.0310669,-0.0666504,-0.103699,-0.142273,-0.182831,-0.226318,-0.275635,-0.324371,-0.366974,-0.388519,-0.382538,-0.35141,-0.30188,-0.245026,-0.186768,-0.132751,-0.0808105,-0.0350342,-0.00390625,0.00665283,0.00180054,-0.00726318,-0.00100708,0.0264282,0.0754395,0.134888,0.198395,0.261139,0.318115,0.360992,0.378662,0.362,0.31073,0.236511,0.158844,0.0898743,0.0432739,0.0200806,0.0181885,0.0314636,0.0531616,0.0777893,0.100464,0.109741,0.10202,0.0739746,0.0313416,-0.012207,-0.0463867,-0.0637512,-0.0654907,-0.0578613,-0.0448303,-0.0283203,-0.00582886,0.0171814,0.0349731,0.0418091,0.0391846,0.0313416,0.0249023,0.0218201,0.020752,0.0201416,0.0209351,0.0209351,0.0211487,0.021759,0.0198059,0.0112,-0.00430298,-0.0299377,-0.062561,-0.100464,-0.141418,-0.183563,-0.226654,-0.270142,-0.311462,-0.343231,-0.354767,-0.340393,-0.302094,-0.24939,-0.194977,-0.146973,-0.104828,-0.0680542,-0.0344238,-0.0148926,-0.0155029,-0.0285339,-0.0400696,-0.0279236,0.0125427,0.0733032,0.138,0.201202,0.263092,0.320465,0.364166,0.379456,0.359741,0.302277,0.227997,0.15564,0.0967102,0.0568542,0.0371704,0.0354919,0.0479126,0.065918,0.0861816,0.100067,0.101288,0.0840149,0.0455627,-0.00476074,-0.0499878,-0.0789185,-0.0881348,-0.0832825,-0.0714111,-0.0574646,-0.0387268,-0.0125427,0.0142212,0.0324707,0.0359192,0.0296631,0.0226135,0.0220032,0.0268555,0.0322876,0.0366516,0.0392761,0.0391235,0.0366516,0.0332336,0.0235596,0.00537109,-0.0264282,-0.0643616,-0.105377,-0.146362,-0.184967,-0.221283,-0.259064,-0.295227,-0.330078,-0.346252,-0.337921,-0.30484,-0.259521,-0.211609,-0.168793,-0.126434,-0.0810852,-0.0359802,-0.000946045,0.0118103,0.00509644,-0.003479,0.0038147,0.0359192,0.0838928,0.133362,0.183685,0.234711,0.289948,0.338531,0.368378,0.363342,0.321136,0.256439,0.189941,0.132294,0.089386,0.057251,0.0380554,0.0318909,0.0381165,0.0519409,0.0678406,0.0776367,0.0714722,0.0477905,0.0114136,-0.0212708,-0.0435486,-0.0534973,-0.0558472,-0.0567017,-0.0586548,-0.053772,-0.0386047,-0.0169678,0.000549316,0.00524902,0.00308228,0.00314331,0.0108032,0.0256348,0.0344849,0.0369263,0.0311279,0.0200806,0.00698853,-0.00524902,-0.0194702,-0.040741,-0.0677795,-0.0995178,-0.12912,-0.157104,-0.185181,-0.213226,-0.245697,-0.282745,-0.316498,-0.332214,-0.318176,-0.278595,-0.230133,-0.184296,-0.145447,-0.105164,-0.0597229,-0.0135498,0.0144958,0.0148315,-0.00558472,-0.019928,-0.00738525,0.0361023,0.0926208,0.148315,0.199402,0.254486,0.311462,0.36026,0.383087,0.365784,0.312134,0.242615,0.179871,0.131012,0.1008,0.082489,0.0757751,0.0787964,0.0881958,0.101288,0.112091,0.109741,0.0861206,0.0388489,-0.016449,-0.0608826,-0.0843506,-0.0879822,-0.081604,-0.073822,-0.0681763,-0.0545044,-0.0298767,-0.00201416,0.0148315,0.0112,-0.00296021,-0.012207,-0.0100708,0.00106812,0.0104065,0.0134888,0.0123596,0.00799561,0.00509644,0.00201416,-0.00811768,-0.0314026,-0.069458,-0.11377,-0.158051,-0.198456,-0.237244,-0.274506,-0.31369,-0.352142,-0.375092,-0.36792,-0.326447,-0.264893,-0.205902,-0.159729,-0.122894,-0.0842896,-0.0404663,-0.00515747,0.00448608,-0.0123596,-0.0334778,-0.029541,0.0110168,0.0763855,0.146454,0.210205,0.271881,0.333557,0.388062,0.419067,0.411346,0.361938,0.287384,0.213226,0.154907,0.118469,0.102753,0.0999451,0.105713,0.116119,0.126587,0.132202,0.12738,0.104553,0.058197,-0.00256348,-0.0564575,-0.0864563,-0.0898132,-0.0745544,-0.0552368,-0.0405273,-0.0292664,-0.0124207,0.00793457,0.017395,0.0100708,-0.0110779,-0.0297241,-0.0344849,-0.0228271,-0.00637817,0.0067749,0.0152893,0.0171204,0.012146,0.00369263,-0.0138855,-0.0418091,-0.081543,-0.129517,-0.177521,-0.221802,-0.258179,-0.290802,-0.325226,-0.361755,-0.390594,-0.392487,-0.360596,-0.302155,-0.238464,-0.182617,-0.133545,-0.0879211,-0.0405273,-0.00268555,0.00805664,-0.00979614,-0.0404053,-0.0570374,-0.0404053,0.00839233,0.0745544,0.146698,0.223297,0.301331,0.372742,0.420532,0.432159,0.397919,0.328735,0.247864,0.177032,0.127502,0.102539,0.100067,0.11142,0.133759,0.159851,0.184418,0.195557,0.184509,0.143616,0.0785828,0.013031,-0.0359192,-0.061676,-0.0671692,-0.0610046,-0.0516663,-0.039856,-0.0202637,0.00576782,0.0245667,0.0272522,0.012085,-0.00637817,-0.0167847,-0.0147705,-0.00643921,-0.00112915,-0.000335693,-0.00631714,-0.0147095,-0.0239563,-0.0349731,-0.058136,-0.0942993,-0.137787,-0.183075,-0.224487,-0.26236,-0.296387,-0.334564,-0.373016,-0.400482,-0.401215,-0.368378,-0.312012,-0.253021,-0.200531,-0.15329,-0.104767,-0.0554504,-0.0184021,-0.00985718,-0.0312805,-0.0614624,-0.0709534,-0.0443726,0.0114746,0.0796509,0.149811,0.223358,0.300751,0.367859,0.407532,0.406189,0.358337,0.281281,0.201019,0.138,0.0993347,0.0848999,0.0916748,0.113678,0.144012,0.175781,0.19986,0.209991,0.193207,0.146179,0.0779114,0.0136108,-0.0283813,-0.0406799,-0.03302,-0.0179138,-0.000732422,0.0167236,0.0422668,0.0711975,0.0883179,0.0822144,0.0575867,0.0304565,0.0140991,0.0128174,0.0185242,0.0184631,0.0128784,0.00222778,-0.0104065,-0.0234375,-0.0411987,-0.0710144,-0.115356,-0.168579,-0.221069,-0.267975,-0.309601,-0.348053,-0.391144,-0.433167,-0.457245,-0.44577,-0.395569,-0.324158,-0.251892,-0.186523,-0.125916,-0.0656433,-0.00979614,0.0228271,0.0187988,-0.0141602,-0.0503235,-0.0639648,-0.0385132,0.0128784,0.0789795,0.152496,0.231018,0.310608,0.377045,0.410797,0.400543,0.341217,0.253235,0.163147,0.0933533,0.0474548,0.0292664,0.0328979,0.0561829,0.0930176,0.135376,0.172028,0.190887,0.180542,0.140686,0.0854492,0.0335693,0.00167847,-0.00939941,-0.00570679,0.00436401,0.0152893,0.0305481,0.053894,0.0805969,0.0964355,0.094635,0.0787354,0.0649109,0.0585327,0.0628967,0.0662537,0.0628052,0.0506592,0.0293884,0.00564575,-0.0169678,-0.0434875,-0.0795288,-0.125641,-0.175171,-0.223083,-0.266907,-0.3078,-0.349854,-0.39624,-0.43811,-0.45578,-0.436188,-0.383972,-0.319122,-0.256927,-0.199524,-0.13974,-0.0779724,-0.0272522,-0.00524902,-0.0191956,-0.0523376,-0.0762329,-0.0658264,-0.0216064,0.0432129,0.113556,0.191681,0.275574,0.357727,0.415894,0.431,0.393494,0.312683,0.215973,0.128662,0.0673218,0.0326233,0.0200806,0.0292664,0.0579224,0.0996704,0.144897,0.174438,0.1763,0.145966,0.0890503,0.0293274,-0.0152283,-0.0361023,-0.038269,-0.028717,-0.0123596,0.0109253,0.0434265,0.0789185,0.108917,0.119049,0.108337,0.0881958,0.0740356,0.0708008,0.0729675,0.0719604,0.0631409,0.0499878,0.0317993,0.012085,-0.0108643,-0.0425415,-0.0879211,-0.144836,-0.202271,-0.254242,-0.297302,-0.339661,-0.384644,-0.426849,-0.451935,-0.440125,-0.391541,-0.323425,-0.256592,-0.201874,-0.147919,-0.0885315,-0.0299377,0.00222778,-0.00592041,-0.0390015,-0.0697327,-0.0705261,-0.037262,0.0192566,0.0853577,0.157257,0.239258,0.324646,0.393341,0.421936,0.399658,0.333496,0.242676,0.151825,0.0770569,0.0283813,0.00408936,0.00100708,0.0178528,0.0532837,0.100006,0.141754,0.161682,0.151001,0.111603,0.0606079,0.0142822,-0.0115967,-0.0184021,-0.012085,-0.00302124,0.0111389,0.0342407,0.065918,0.098938,0.117981,0.118256,0.105713,0.0941467,0.0920105,0.0969238,0.0984497,0.0879211,0.065155,0.0367737,0.00665283,-0.0256958,-0.0644226,-0.110992,-0.164703,-0.220062,-0.268066,-0.307465,-0.340393,-0.375488,-0.411133,-0.434509,-0.429199,-0.392487,-0.333221,-0.271484,-0.215027,-0.160614,-0.104095,-0.0456238,-0.00558472,-0.000335693,-0.0230103,-0.0505981,-0.0545654,-0.0269165,0.0214844,0.0830078,0.151062,0.22818,0.308319,0.376373,0.409332,0.396027,0.338196,0.253021,0.165436,0.0914917,0.0397949,0.0105896,0.00341797,0.0174561,0.0511475,0.0977783,0.14328,0.165314,0.157379,0.117859,0.066925,0.020874,-0.00924683,-0.0234985,-0.0232849,-0.0142212,0.00570679,0.0357666,0.0740356,0.11026,0.131744,0.133209,0.120941,0.106384,0.0965881,0.091156,0.0841064,0.0704651,0.0516663,0.0283813,0.00497437,-0.0215454,-0.0540161,-0.0969849,-0.148132,-0.202545,-0.256317,-0.304504,-0.348053,-0.389862,-0.427704,-0.44986,-0.442871,-0.402344,-0.339539,-0.273499,-0.213287,-0.15686,-0.0979309,-0.0424805,-0.00610352,-0.00576782,-0.0312195,-0.0606689,-0.0657043,-0.0419312,0.00280762,0.0618896,0.129852,0.208862,0.291931,0.363617,0.401886,0.393768,0.340942,0.26001,0.17215,0.0958252,0.0391235,0.00665283,-0.00436401,0.0062561,0.0356445,0.0788574,0.126099,0.153564,0.151337,0.119812,0.0730286,0.0310669,0.00396729,-0.00631714,-0.00408936,0.00671387,0.0256348,0.0565186,0.0963745,0.135986,0.160004,0.163971,0.154694,0.141815,0.131409,0.126251,0.118134,0.106506,0.085907,0.0606689,0.0309448,-0.00357056,-0.0478516,-0.103882,-0.171143,-0.24295,-0.310333,-0.365967,-0.409393,-0.443146,-0.469116,-0.474701,-0.45108,-0.392426,-0.316254,-0.244171,-0.185699,-0.137512,-0.093811,-0.0514832,-0.0271912,-0.0299377,-0.0547791,-0.0764465,-0.0715332,-0.0326233,0.025238,0.0934143,0.163757,0.237061,0.307648,0.359253,0.375092,0.348114,0.282074,0.196838,0.111816,0.0431519,-0.00256348,-0.0245056,-0.0231628,0.00100708,0.0406189,0.0914001,0.138,0.165497,0.164093,0.133362,0.0890503,0.0464478,0.016571,0.000396729,-0.00247192,0.003479,0.0225525,0.0545654,0.0966492,0.14093,0.171265,0.183167,0.178589,0.167847,0.158112,0.146301,0.128937,0.104645,0.0775757,0.0496521,0.0238953,-0.00436401,-0.0406189,-0.0871277,-0.144958,-0.206787,-0.268921,-0.327301,-0.379456,-0.428864,-0.462555,-0.472015,-0.446442,-0.386993,-0.311554,-0.239136,-0.178314,-0.127716,-0.077301,-0.0367126,-0.020752,-0.0355835,-0.0673218,-0.0880432,-0.0765686,-0.0346985,0.024231,0.0898743,0.159851,0.231689,0.299927,0.343903,0.34906,0.309113,0.236908,0.153687,0.0777283,0.0198059,-0.0178528,-0.0353699,-0.0353088,-0.0150452,0.0191345,0.0646362,0.10321,0.122284,0.115906,0.0908203,0.0613403,0.0400696,0.0282593,0.0259705,0.0281067,0.0346985,0.0508728,0.0786438,0.11496,0.15033,0.173218,0.181488,0.185699,0.185699,0.187927,0.18161,0.164429,0.135376,0.0996704,0.0635681,0.0279846,-0.00872803,-0.0508118,-0.101959,-0.158112,-0.216187,-0.273895,-0.328308,-0.380402,-0.42926,-0.466644,-0.478119,-0.449738,-0.384369,-0.301208,-0.220337,-0.147919,-0.0836792,-0.0241089,0.0167236,0.0248413,-0.0032959,-0.0489197,-0.0782471,-0.0733643,-0.0337524,0.0244446,0.0950928,0.17276,0.255707,0.331482,0.372742,0.368591,0.314423,0.22644,0.126587,0.0356445,-0.0340881,-0.0783081,-0.098053,-0.091217,-0.0595398,-0.0118713,0.0440979,0.0885925,0.109802,0.103546,0.0784607,0.0462341,0.0204163,0.00643921,0.00375366,0.00717163,0.0184021,0.0393982,0.0709534,0.109528,0.145508,0.170074,0.180481,0.184174,0.188599,0.190674,0.187256,0.170807,0.142883,0.106445,0.0668335,0.0255127,-0.0179749,-0.0661011,-0.118866,-0.174774,-0.229248,-0.281006,-0.327576,-0.37262,-0.412872,-0.437531,-0.434906,-0.398132,-0.335449,-0.263428,-0.194489,-0.131073,-0.0707397,-0.0154419,0.0200806,0.0198059,-0.00900269,-0.0448914,-0.0589905,-0.040802,0.000732422,0.0553589,0.120819,0.195435,0.27536,0.342682,0.372284,0.355377,0.292938,0.206238,0.114014,0.0332336,-0.0306091,-0.0720825,-0.0908203,-0.0834961,-0.0552979,-0.0085144,0.0406799,0.0755615,0.0851135,0.0729675,0.0463867,0.0231628,0.00543213,-0.00268555,-0.0065918,-0.00430298,0.00616455,0.028595,0.0620117,0.0988464,0.129608,0.147583,0.159119,0.169678,0.180603,0.187195,0.181335,0.163208,0.133759,0.100403,0.0638123,0.0209351,-0.0266418,-0.0801392,-0.136841,-0.193634,-0.246429,-0.296112,-0.339874,-0.381531,-0.4151,-0.432159,-0.417999,-0.371552,-0.305573,-0.236176,-0.171143,-0.110321,-0.0505981,-0.000457764,0.0255127,0.0194702,-0.00650024,-0.0309448,-0.0308838,-0.0038147,0.0413513,0.0977173,0.162964,0.234619,0.302826,0.352081,0.364685,0.333954,0.265167,0.176239,0.0885925,0.0150452,-0.0366516,-0.0692749,-0.0814819,-0.0726929,-0.0447083,-0.0012207,0.0406189,0.0649719,0.0646362,0.0466309,0.0234985,0.00778198,0.000396729,-0.000671387,0.00189209,0.00979614,0.0271912,0.0551147,0.0916748,0.126587,0.151886,0.163757,0.168335,0.17041,0.172089,0.168396,0.151672,0.124634,0.0873108,0.0481262,0.00958252,-0.0306091,-0.0724792,-0.121399,-0.173279,-0.226898,-0.277435,-0.323212,-0.365448,-0.405518,-0.434082,-0.437317,-0.408844,-0.347717,-0.272278,-0.198181,-0.127319,-0.061554,0.0012207,0.0459595,0.0579834,0.0386658,0.00280762,-0.0183105,-0.0122681,0.0177307,0.0610046,0.115845,0.180542,0.253967,0.321289,0.359192,0.353882,0.303833,0.225494,0.140869,0.0638123,0.00134277,-0.0426025,-0.0671692,-0.0687256,-0.048645,-0.0128784,0.0288696,0.061554,0.069519,0.0560303,0.0296021,0.00491333,-0.00817871,-0.0132141,-0.0125427,-0.0085144,0.0012207,0.0223389,0.0561829,0.0950928,0.128845,0.146637,0.156647,0.165375,0.178925,0.188446,0.188263,0.171143,0.142609,0.107117,0.0676575,0.0263062,-0.0228882,-0.079071,-0.138397,-0.197998,-0.253418,-0.30545,-0.353302,-0.397034,-0.433289,-0.454712,-0.448242,-0.406372,-0.338196,-0.260803,-0.187042,-0.119202,-0.0556335,0.000793457,0.0343628,0.0389404,0.0149536,-0.0158386,-0.0289917,-0.013031,0.0299377,0.0890503,0.156647,0.228851,0.302551,0.359741,0.383881,0.363556,0.300598,0.208466,0.110931,0.0279236,-0.0304565,-0.0647583,-0.0759583,-0.0639038,-0.032135,0.0131531,0.0608826,0.0909424,0.0968323,0.0770569,0.0422668,0.0083313,-0.0153809,-0.0269775,-0.0293884,-0.0235596,-0.0100708,0.0147705,0.0506592,0.0920105,0.129272,0.153229,0.165649,0.173431,0.179718,0.183289,0.177979,0.159668,0.129608,0.0910034,0.0490723,0.00543213,-0.0401917,-0.089386,-0.144287,-0.200012,-0.253906,-0.304291,-0.352142,-0.397522,-0.437103,-0.456512,-0.447571,-0.404419,-0.33725,-0.261353,-0.18576,-0.112549,-0.0434875,0.0138245,0.0437622,0.0406189,0.0153809,-0.0123596,-0.0194702,-0.00161743,0.0359802,0.0908813,0.159332,0.239746,0.318268,0.377777,0.395508,0.365906,0.294617,0.200531,0.10321,0.0175171,-0.0459595,-0.0840149,-0.0940857,-0.0791931,-0.0423584,0.00952148,0.0605469,0.0914001,0.094696,0.0723572,0.0392761,0.00805664,-0.0105896,-0.0198669,-0.0211487,-0.0167847,-0.00112915,0.0269775,0.0672607,0.108063,0.139404,0.156433,0.166168,0.174774,0.183411,0.187988,0.182739,0.162628,0.131073,0.0913391,0.0477295,0.000549316,-0.0515442,-0.109863,-0.171082,-0.229523,-0.282349,-0.327118,-0.366577,-0.403564,-0.434418,-0.449127,-0.43692,-0.39209,-0.325958,-0.255707,-0.186707,-0.11972,-0.0536804,0.00228882,0.0381775,0.0425415,0.0238953,0.00106812,-0.00543213,0.0134277,0.049469,0.0993347,0.161469,0.231598,0.304169,0.358917,0.379272,0.356781,0.292084,0.203705,0.112152,0.0319519,-0.0297241,-0.0673828,-0.0805969,-0.0677185,-0.0335693,0.0147705,0.0631409,0.0947571,0.101746,0.0840149,0.0536194,0.0236206,0.000732422,-0.0123596,-0.0184021,-0.0181274,-0.00765991,0.0169067,0.052948,0.0914917,0.122223,0.14035,0.151489,0.160736,0.168579,0.172607,0.165985,0.148376,0.12027,0.0865784,0.0487976,0.00604248,-0.0411987,-0.0953064,-0.153503,-0.211945,-0.267975,-0.318939,-0.363892,-0.405029,-0.439209,-0.454224,-0.440125,-0.393158,-0.3237,-0.249054,-0.179047,-0.112823,-0.0490723,0.0050354,0.0385132,0.0381775,0.012085,-0.0189819,-0.028717,-0.00778198,0.0336914,0.0889893,0.152222,0.22522,0.301483,0.362488,0.387726,0.365509,0.299744,0.209259,0.116852,0.0353699,-0.0279846,-0.0663757,-0.0771179,-0.0610657,-0.0228882,0.0264282,0.0767212,0.110657,0.116577,0.0969849,0.0624084,0.0267639,0.00140381,-0.0132751,-0.0176392,-0.0149536,-0.00262451,0.0218811,0.0580444,0.0983276,0.129181,0.145905,0.151611,0.154358,0.158112,0.160278,0.157196,0.143219,0.119324,0.0876465,0.052887,0.0149536,-0.0292664,-0.0836182,-0.144958,-0.207794,-0.267517,-0.320068,-0.365112,-0.406097,-0.439606,-0.456299,-0.444305,-0.399597,-0.332001,-0.259247,-0.189606,-0.124237,-0.0618896,-0.00811768,0.0261841,0.0299377,0.0102539,-0.0170593,-0.0299988,-0.0167236,0.0186462,0.068512,0.131287,0.202484,0.279114,0.34201,0.375244,0.366638,0.316437,0.237579,0.149048,0.0637512,-0.00369263,-0.0485229,-0.0676575,-0.0609436,-0.0302124,0.0142212,0.0648193,0.101532,0.117188,0.106903,0.0777893,0.0435486,0.0167236,-0.00201416,-0.013031,-0.0167236,-0.0115356,0.00857544,0.0421448,0.0820007,0.116119,0.137238,0.147369,0.153015,0.160797,0.166443,0.163818,0.151672,0.129517,0.103485,0.0724792,0.0381775,-0.00274658,-0.0534363,-0.110199,-0.172485,-0.232544,-0.289276,-0.34021,-0.386566,-0.429596,-0.459717,-0.465576,-0.438538,-0.380188,-0.307251,-0.232697,-0.163086,-0.0971069,-0.0367126,0.0118713,0.0347595,0.0264282,-0.0017395,-0.0281982,-0.0306091,-0.00509644,0.0391846,0.0961609,0.16214,0.235565,0.308655,0.36322,0.380005,0.351074,0.284821,0.197571,0.109924,0.0330811,-0.0249634,-0.0598755,-0.0667725,-0.049469,-0.0123596,0.0365906,0.0822144,0.112762,0.118134,0.0988464,0.0673218,0.0344238,0.0104675,-0.00643921,-0.0139465,-0.0144348,-0.00268555,0.0229492,0.0575867,0.0949097,0.123016,0.140198,0.146301,0.150208,0.154175,0.155914,0.149536,0.133423,0.109314,0.0809326,0.049469,0.0161743,-0.0238342,-0.0732117,-0.131409,-0.192352,-0.250397,-0.302338,-0.34906,-0.393494,-0.431213,-0.453705,-0.44632,-0.407715,-0.341949,-0.269073,-0.200256,-0.13678,-0.0744934,-0.0186462,0.0203247,0.0267639,0.0083313,-0.021759,-0.0393982,-0.0287781,0.00643921,0.056366,0.117584,0.186371,0.260925,0.327301,0.368805,0.369385,0.327454,0.253906,0.165222,0.0821533,0.0133667,-0.0334778,-0.0583801,-0.0588684,-0.0361023,0.00524902,0.0558472,0.0961609,0.114838,0.108185,0.0810852,0.0485229,0.0198059,-0.0012207,-0.013092,-0.0182495,-0.0146179,0.00570679,0.037384,0.0762329,0.11087,0.133362,0.143677,0.14859,0.151947,0.157318,0.154846,0.14502,0.125824,0.10202,0.0748291,0.0444336,0.0083313,-0.0339661,-0.0865784,-0.144623,-0.201874,-0.253693,-0.300323,-0.342072,-0.383545,-0.420685,-0.44281,-0.437775,-0.40274,-0.345978,-0.283356,-0.222015,-0.159058,-0.094635,-0.0346375,0.00839233,0.024292,0.0143738,-0.00335693,-0.0135498,-0.00296021,0.0290527,0.0720825,0.129059,0.191956,0.259399,0.322205,0.365509,0.373749,0.340546,0.274017,0.188385,0.104889,0.0338135,-0.0181274,-0.0475769,-0.053833,-0.0378418,-0.00408936,0.0415344,0.081604,0.105042,0.103149,0.0794067,0.0452271,0.012207,-0.0105896,-0.0216675,-0.025177,-0.0214233,-0.00592041,0.0230103,0.0609436,0.098999,0.123352,0.135315,0.136841,0.137329,0.138733,0.140137,0.136658,0.124847,0.102539,0.0757141,0.0473022,0.0161743,-0.0231018,-0.0743713,-0.134155,-0.194824,-0.249786,-0.293549,-0.330414,-0.365112,-0.397308,-0.42041,-0.419067,-0.391083,-0.341675,-0.284363,-0.226776,-0.171021,-0.117249,-0.0669861,-0.0247803,0.000549316,0.0015564,-0.0115967,-0.0205383,-0.0122681,0.0234985,0.0722046,0.132202,0.193878,0.25531,0.314148,0.358795,0.375031,0.35141,0.289001,0.204224,0.119873,0.0479736,-0.00201416,-0.0302734,-0.0344238,-0.0204773,0.0107422,0.0516663,0.0934143,0.119049,0.119598,0.0923462,0.0501404,0.00933838,-0.0189209,-0.0313416,-0.0326233,-0.0275879,-0.0128784,0.0147705,0.0526123,0.0918884,0.119812,0.129669,0.127655,0.121826,0.119202,0.118652,0.116364,0.106506,0.0880432,0.0646973,0.040802,0.0167847,-0.0159607,-0.0579834,-0.110931,-0.164764,-0.213501,-0.254364,-0.286316,-0.319794,-0.354828,-0.388184,-0.40564,-0.400482,-0.372284,-0.326843,-0.276855,-0.227112,-0.173492,-0.118713,-0.061554,-0.0148315,0.00793457,0.00616455,-0.00323486,-0.00146484,0.0198669,0.0592651,0.103821,0.153839,0.207977,0.268799,0.329742,0.371002,0.374847,0.338928,0.272888,0.194214,0.119598,0.0583191,0.0153809,-0.0071106,-0.0110168,0.00112915,0.0256958,0.0593872,0.0907288,0.100861,0.0869141,0.0503235,0.0111389,-0.0160522,-0.025177,-0.0203247,-0.0151062,-0.00799561,0.0071106,0.0367737,0.0718079,0.100006,0.108795,0.102081,0.0930176,0.0917969,0.100342,0.109589,0.110321,0.0995178,0.0822144,0.0619507,0.0397339,0.0112,-0.0270996,-0.0757751,-0.128845,-0.17746,-0.217712,-0.24826,-0.277435,-0.308868,-0.343292,-0.376709,-0.398651,-0.399139,-0.377716,-0.338989,-0.29483,-0.246704,-0.193695,-0.13504,-0.0711365,-0.0177307,0.0134888,0.0209351,0.0172424,0.0189209,0.0381165,0.0729675,0.113007,0.161011,0.210815,0.269745,0.325958,0.36731,0.377106,0.349335,0.290192,0.216705,0.142761,0.0812073,0.0343018,0.00698853,-0.00357056,0.00228882,0.0194092,0.0467834,0.0706787,0.0821533,0.0740967,0.0465698,0.0157166,-0.0104675,-0.020752,-0.0180664,-0.0104065,-0.00274658,0.00973511,0.0299377,0.0570374,0.0819397,0.0970459,0.100128,0.0985107,0.0975952,0.101135,0.10437,0.10202,0.0905457,0.0683899,0.0428162,0.0155029,-0.0104675,-0.0369263,-0.0672607,-0.10202,-0.140533,-0.176697,-0.210724,-0.240936,-0.275574,-0.317108,-0.361938,-0.401672,-0.421417,-0.41571,-0.387177,-0.339264,-0.285034,-0.224091,-0.160065,-0.0932312,-0.0293884,0.0197449,0.0428162,0.0452271,0.0410156,0.0449524,0.0666504,0.100952,0.142822,0.187866,0.233826,0.282745,0.329315,0.359589,0.36087,0.328125,0.27121,0.204102,0.140533,0.0858459,0.0485229,0.0222168,0.00537109,0,0.0085144,0.0304565,0.0534363,0.065918,0.0620117,0.04422,0.0238953,0.0117493,0.0105896,0.0126038,0.0101318,0.00180054,0.000793457,0.0116882,0.03302,0.0547791,0.0649109,0.0697327,0.0723572,0.0786438,0.0879211,0.0913391,0.0835571,0.0646362,0.0411987,0.0194092,0.000610352,-0.0177307,-0.0383301,-0.0636902,-0.0934753,-0.125763,-0.160461,-0.195831,-0.233826,-0.278259,-0.327301,-0.374908,-0.414215,-0.430145,-0.418121,-0.381866,-0.330078,-0.273834,-0.213745,-0.14798,-0.0795288,-0.0174561,0.024292,0.0397949,0.0393982,0.0401306,0.0526123,0.0820923,0.114349,0.148041,0.189117,0.238403,0.296906,0.346649,0.374969,0.371552,0.34021,0.290955,0.230804,0.16745,0.106323,0.053894,0.0141602,-0.00811768,-0.0125427,-0.00323486,0.0194092,0.0434265,0.0592041,0.0632324,0.0526123,0.036499,0.0216064,0.00912476,-0.00088501,-0.0126953,-0.024292,-0.0257568,-0.0149536,0.00671387,0.0297852,0.0473938,0.058136,0.0657654,0.0737,0.0822754,0.085022,0.0799866,0.069458,0.0540161,0.0376587,0.0231628,0.0104065,-0.00543213,-0.0297241,-0.065155,-0.106232,-0.151672,-0.197235,-0.242828,-0.290619,-0.337524,-0.38028,-0.414307,-0.429535,-0.419861,-0.387848,-0.338806,-0.286316,-0.232941,-0.180481,-0.122894,-0.0603943,-0.00448608,0.029541,0.040863,0.045166,0.0587769,0.0922852,0.136169,0.173615,0.207794,0.245636,0.292877,0.346771,0.387177,0.39798,0.373016,0.322357,0.259338,0.191864,0.12558,0.0657043,0.017395,-0.0148926,-0.0269165,-0.020874,0.00308228,0.0343628,0.057312,0.065094,0.052002,0.0296021,0.00872803,-0.00671387,-0.0179749,-0.0297852,-0.0429382,-0.0487366,-0.0374451,-0.0100708,0.0220947,0.0440979,0.0524292,0.0567017,0.0649109,0.0785217,0.0910645,0.094574,0.0864563,0.0747681,0.0629578,0.0525513,0.0400085,0.019989,-0.0118103,-0.0536804,-0.100739,-0.148315,-0.193298,-0.234222,-0.272888,-0.309387,-0.342682,-0.368134,-0.385376,-0.391998,-0.383209,-0.363281,-0.330872,-0.291809,-0.248047,-0.197662,-0.139404,-0.073761,-0.0137634,0.0353088,0.0677185,0.0919495,0.118591,0.150391,0.185089,0.21167,0.235504,0.263702,0.298462,0.336121,0.363098,0.369324,0.346375,0.304291,0.247437,0.186249,0.125244,0.0691223,0.0245667,-0.00476074,-0.0182495,-0.0171204,-0.00262451,0.020813,0.0397339,0.0456238,0.0340881,0.012146,-0.00991821,-0.0269165,-0.036377,-0.0426941,-0.0505981,-0.0556946,-0.0468445,-0.0223389,0.0110168,0.0402832,0.0583801,0.0690613,0.0808105,0.0932312,0.106781,0.111664,0.10376,0.0852966,0.0624695,0.0404663,0.0218201,-0.000213623,-0.0291138,-0.0634766,-0.100677,-0.13858,-0.173889,-0.206848,-0.236725,-0.271484,-0.309113,-0.345154,-0.377045,-0.400391,-0.408051,-0.399261,-0.37088,-0.3284,-0.279663,-0.221619,-0.15155,-0.0718079,0.00436401,0.0677795,0.106567,0.127655,0.142487,0.161682,0.187195,0.206238,0.220734,0.236511,0.264893,0.307037,0.347931,0.372833,0.367584,0.335785,0.283813,0.222748,0.159454,0.0963135,0.0368347,-0.0144958,-0.0447083,-0.0554504,-0.0458984,-0.0246887,-0.00323486,0.0100708,0.00979614,-0.0012207,-0.0167236,-0.0297241,-0.0380554,-0.0434265,-0.0473022,-0.0491333,-0.040863,-0.0187378,0.0147095,0.048645,0.0733032,0.0869141,0.0950928,0.104218,0.114441,0.11792,0.109253,0.0899963,0.0673828,0.0465088,0.0306702,0.0142822,-0.0067749,-0.0339661,-0.0667114,-0.102142,-0.139862,-0.176117,-0.213959,-0.255585,-0.297638,-0.338379,-0.372284,-0.39798,-0.411957,-0.409332,-0.390808,-0.353882,-0.30368,-0.245758,-0.181061,-0.110535,-0.0391846,0.0297852,0.0863037,0.122406,0.142151,0.155853,0.170868,0.191864,0.210815,0.227783,0.247589,0.277191,0.314575,0.349396,0.367188,0.358398,0.3237,0.269653,0.207062,0.141083,0.0714722,0.00576782,-0.0493164,-0.0827637,-0.0949707,-0.0853577,-0.0624084,-0.0340881,-0.0120239,-6.10352e-05,0.0032959,0.00134277,-0.00369263,-0.0115356,-0.0176392,-0.0246277,-0.0282593,-0.0253601,-0.00878906,0.0188599,0.0483093,0.0716248,0.0857849,0.0975952,0.109192,0.116577,0.11853,0.111877,0.0942383,0.0699463,0.0462341,0.0263062,0.00857544,-0.0142822,-0.0426025,-0.0747681,-0.109467,-0.147461,-0.182495,-0.217377,-0.252075,-0.288605,-0.321075,-0.3414,-0.351685,-0.357849,-0.358917,-0.349274,-0.325714,-0.28717,-0.244293,-0.194305,-0.140869,-0.0841675,-0.0211487,0.0433655,0.100281,0.140137,0.166656,0.189117,0.213165,0.233612,0.242554,0.249786,0.258667,0.274902,0.295166,0.312469,0.316254,0.297119,0.258911,0.206299,0.148254,0.0854492,0.0171814,-0.0411987,-0.0844421,-0.106506,-0.106171,-0.0863647,-0.052002,-0.017395,0.00744629,0.019928,0.0245667,0.0194702,0.00772095,-0.00738525,-0.0225525,-0.0347595,-0.0377808,-0.0268555,0.00189209,0.036377,0.0697327,0.0956421,0.117035,0.132294,0.138397,0.132965,0.117981,0.0950928,0.0665894,0.0359192,0.0100098,-0.0100708,-0.0262451,-0.0428772,-0.0598755,-0.0795898,-0.103027,-0.130859,-0.160797,-0.191345,-0.226898,-0.262085,-0.292877,-0.316315,-0.331085,-0.343292,-0.348785,-0.342346,-0.32196,-0.288849,-0.243622,-0.189606,-0.131409,-0.0697937,-0.00146484,0.0682678,0.131805,0.174286,0.197784,0.211273,0.220337,0.22818,0.228455,0.225891,0.224243,0.227325,0.239471,0.255249,0.264496,0.253906,0.222687,0.178314,0.126312,0.0708618,0.0134277,-0.0393982,-0.0795898,-0.10321,-0.108459,-0.0914917,-0.0603333,-0.0279846,-0.00463867,0.00827026,0.0132141,0.0137024,0.00991821,0.0050354,0.00280762,0.0012207,0.00558472,0.0191956,0.0435486,0.0722046,0.0954895,0.109589,0.114777,0.112549,0.104095,0.09375,0.0794067,0.0630798,0.0434875,0.0231018,0.0101318,0.00598145,0.00436401,-0.00335693,-0.0198059,-0.0430298,-0.0728149,-0.105988,-0.141541,-0.178192,-0.218384,-0.256317,-0.28302,-0.293884,-0.293427,-0.290009,-0.289124,-0.287506,-0.280457,-0.264771,-0.238312,-0.202362,-0.160614,-0.115356,-0.0622253,0.00408936,0.0752869,0.141205,0.185638,0.209198,0.21524,0.210205,0.201019,0.186859,0.170929,0.158264,0.156036,0.1698,0.197174,0.224976,0.234161,0.224304,0.194153,0.147369,0.0877991,0.0211487,-0.0420837,-0.0971069,-0.135437,-0.148376,-0.132477,-0.0934753,-0.0434265,0.0032959,0.0404053,0.0614624,0.0713501,0.0675049,0.0567017,0.0387878,0.0168457,-0.00222778,-0.00924683,0.000335693,0.0220032,0.048645,0.0727539,0.0941467,0.110748,0.122498,0.127594,0.122833,0.106567,0.0809326,0.0526733,0.0269165,0.00558472,-0.0136108,-0.0353088,-0.0564575,-0.0768433,-0.0917969,-0.108398,-0.12442,-0.144287,-0.168182,-0.189941,-0.209045,-0.222137,-0.234894,-0.247437,-0.262939,-0.275909,-0.282562,-0.275909,-0.256317,-0.222015,-0.17746,-0.127655,-0.0718689,-0.00784302,0.056366,0.113281,0.148987,0.1633,0.163879,0.156036,0.149811,0.142761,0.137726,0.138458,0.148926,0.170135,0.198059,0.223755,0.232025,0.218384,0.184357,0.133209,0.0737,0.012085,-0.0437012,-0.0888062,-0.11853,-0.127594,-0.111206,-0.0750427,-0.0293274,0.00845337,0.0333557,0.0430298,0.0426941,0.036438,0.0257568,0.0124207,-0.000793457,-0.00967407,-0.00335693,0.0211487,0.0555725,0.0900574,0.114624,0.129456,0.137054,0.140198,0.134491,0.12088,0.0967102,0.0668335,0.038269,0.0168457,0.00241089,-0.0067749,-0.0161743,-0.0271912,-0.037262,-0.0472412,-0.0586548,-0.0738831,-0.0910034,-0.114349,-0.141937,-0.170135,-0.193817,-0.212555,-0.227844,-0.240875,-0.253479,-0.264038,-0.268738,-0.262939,-0.243347,-0.212677,-0.17276,-0.129669,-0.08255,-0.0315552,0.0239563,0.0752258,0.115845,0.140137,0.147369,0.145233,0.139465,0.13382,0.128174,0.123413,0.121155,0.129669,0.147247,0.169922,0.187775,0.188782,0.17276,0.139008,0.0916138,0.037323,-0.019928,-0.072876,-0.115631,-0.14209,-0.147919,-0.12738,-0.0870361,-0.038269,0.00604248,0.0415344,0.065979,0.081604,0.086853,0.0828857,0.070282,0.053833,0.041626,0.0414124,0.0544434,0.0721436,0.0895386,0.106445,0.121002,0.133636,0.136505,0.127655,0.107178,0.0811462,0.0508118,0.0228271,0.000610352,-0.0132751,-0.0214233,-0.0265198,-0.0283203,-0.0273743,-0.0292053,-0.0368347,-0.0516052,-0.0740356,-0.102814,-0.135437,-0.163208,-0.185913,-0.201935,-0.215851,-0.224426,-0.224426,-0.221954,-0.217529,-0.211487,-0.200348,-0.182068,-0.160065,-0.13269,-0.100342,-0.061615,-0.0200806,0.0231018,0.0622864,0.0898132,0.103973,0.107239,0.10733,0.105713,0.104034,0.101135,0.104706,0.11496,0.130188,0.147705,0.159454,0.157196,0.139069,0.10321,0.0560303,0.00509644,-0.0432739,-0.0832825,-0.109467,-0.120392,-0.11377,-0.0856323,-0.0437012,0.00497437,0.0453796,0.0700073,0.0823364,0.0870361,0.0841675,0.0766296,0.0658264,0.0533447,0.046051,0.0518799,0.069458,0.093811,0.116028,0.131409,0.140259,0.143097,0.137238,0.12262,0.101349,0.0749817,0.0469666,0.0212708,0.00302124,-0.00643921,-0.00933838,-0.0107422,-0.0106812,-0.00900269,-0.0101929,-0.0151062,-0.024292,-0.0383911,-0.057251,-0.0819397,-0.106506,-0.126923,-0.144104,-0.160736,-0.177124,-0.190674,-0.203094,-0.218994,-0.235626,-0.245514,-0.24704,-0.236572,-0.213226,-0.175842,-0.130188,-0.0812073,-0.0310059,0.0209961,0.0653076,0.0912781,0.0941467,0.0811462,0.0640259,0.0489807,0.0401306,0.0424805,0.0562439,0.0762939,0.104095,0.13974,0.170532,0.181549,0.165558,0.123352,0.0658264,0.00161743,-0.0599365,-0.107391,-0.136566,-0.146637,-0.13382,-0.0944214,-0.0340881,0.0310669,0.0821533,0.113831,0.126251,0.124847,0.11496,0.102539,0.0900574,0.0753784,0.0661011,0.0706177,0.0912781,0.116516,0.134491,0.141754,0.138184,0.129059,0.113892,0.0954895,0.0767212,0.0571289,0.0400696,0.0303345,0.0312195,0.0386658,0.0446167,0.045105,0.0429382,0.0357666,0.024353,0.00939941,-0.00497437,-0.019989,-0.0399475,-0.0623474,-0.0823364,-0.0993347,-0.118866,-0.144958,-0.1763,-0.207855,-0.240417,-0.268799,-0.291016,-0.301544,-0.300537,-0.285583,-0.253357,-0.20639,-0.154297,-0.108582,-0.0630798,-0.020813,0.0153809,0.0366516,0.0411987,0.0356445,0.0292053,0.0267639,0.0316772,0.0461121,0.0656433,0.0871277,0.109985,0.136658,0.157928,0.159271,0.13974,0.10202,0.0525513,-0.00146484,-0.0527649,-0.0918884,-0.114227,-0.119385,-0.10733,-0.0719604,-0.0185242,0.0410156,0.09375,0.130066,0.148651,0.151733,0.142609,0.127838,0.109131,0.0875244,0.0663147,0.0555725,0.0627441,0.0838928,0.108856,0.132294,0.15033,0.163696,0.170746,0.169861,0.161194,0.142944,0.116241,0.0879822,0.0640869,0.048645,0.0380554,0.0326233,0.0293884,0.0324097,0.0347595,0.0368347,0.0344238,0.0258484,0.00509644,-0.0265808,-0.0647583,-0.105042,-0.144958,-0.185364,-0.222809,-0.254303,-0.276093,-0.290131,-0.296112,-0.29718,-0.29303,-0.283691,-0.267517,-0.242493,-0.21228,-0.180145,-0.147919,-0.110657,-0.0731506,-0.0380554,-0.013092,0.00335693,0.0120239,0.0172424,0.0206604,0.0259094,0.0348206,0.0491333,0.0663757,0.0885925,0.112671,0.133423,0.141418,0.132629,0.111938,0.0782471,0.0379333,-0.0038147,-0.0395203,-0.0640869,-0.0763855,-0.0728149,-0.0503235,-0.00933838,0.0388489,0.0838318,0.117462,0.139343,0.148041,0.147125,0.140411,0.129395,0.115784,0.101959,0.0963745,0.106903,0.128265,0.151825,0.170135,0.184753,0.194641,0.200409,0.196167,0.184631,0.164368,0.135315,0.102539,0.0742188,0.0534973,0.0386047,0.0262451,0.0176392,0.0157166,0.01651,0.0174561,0.0147095,0.00958252,-0.00570679,-0.0317993,-0.0679932,-0.106506,-0.144897,-0.182343,-0.219788,-0.251221,-0.275696,-0.293884,-0.306458,-0.312347,-0.314301,-0.313477,-0.310883,-0.300873,-0.278198,-0.249451,-0.218536,-0.184906,-0.14624,-0.107452,-0.069397,-0.0354309,-0.00845337,0.00991821,0.0182495,0.0270996,0.0410767,0.0620117,0.0844421,0.107574,0.130798,0.15274,0.171478,0.175171,0.162354,0.130798,0.0829468,0.028717,-0.0195923,-0.057251,-0.0808716,-0.0873108,-0.0722046,-0.0371094,0.0129395,0.0688477,0.120209,0.156708,0.176575,0.178375,0.170258,0.155701,0.142334,0.130127,0.124573,0.129852,0.148865,0.174835,0.205048,0.229065,0.239594,0.235229,0.21994,0.197723,0.171539,0.14035,0.106171,0.0723572,0.0458984,0.0307922,0.0255737,0.0221558,0.015625,0.00592041,-0.00531006,-0.0153809,-0.0254211,-0.037323,-0.0541077,-0.077301,-0.103424,-0.128601,-0.1539,-0.179382,-0.20993,-0.243347,-0.277649,-0.308441,-0.333954,-0.352295,-0.361938,-0.363007,-0.354034,-0.334106,-0.301147,-0.261017,-0.216766,-0.170807,-0.125427,-0.0851746,-0.0539551,-0.0307922,-0.0108032,0.00424194,0.0173035,0.0265198,0.0385132,0.0545044,0.0755005,0.103363,0.131012,0.155182,0.169464,0.170258,0.159851,0.138672,0.106171,0.0632324,0.0197449,-0.0198669,-0.0458374,-0.0562439,-0.0455627,-0.0184021,0.0189819,0.0643616,0.110535,0.152161,0.181061,0.195831,0.197388,0.189789,0.179932,0.170258,0.165558,0.164886,0.173431,0.186646,0.202148,0.216583,0.224243,0.223755,0.213898,0.194092,0.166168,0.133545,0.0968323,0.0620728,0.0310669,0.00643921,-0.00973511,-0.0214844,-0.0289917,-0.032959,-0.0361633,-0.0386047,-0.0437012,-0.0512695,-0.0620117,-0.0770569,-0.098114,-0.121338,-0.146118,-0.171936,-0.198578,-0.224426,-0.248199,-0.270416,-0.289062,-0.304291,-0.31369,-0.319611,-0.320068,-0.315308,-0.302612,-0.28067,-0.255096,-0.226227,-0.192627,-0.155365,-0.118256,-0.0834961,-0.0524292,-0.0256958,-0.00280762,0.0161133,0.0361023,0.0561829,0.0757141,0.0966492,0.119049,0.143097,0.16449,0.17746,0.179657,0.168518,0.145905,0.114105,0.0751648,0.0380554,0.00537109,-0.0193176,-0.0293884,-0.0234375,-0.00134277,0.0328979,0.074707,0.116913,0.152679,0.17926,0.192688,0.198334,0.195435,0.187439,0.178925,0.171143,0.168335,0.173218,0.183502,0.195496,0.203369,0.205231,0.198395,0.185181,0.165222,0.138794,0.106781,0.0716858,0.0362549,0.00491333,-0.019989,-0.037323,-0.0482483,-0.0555115,-0.057251,-0.0544434,-0.0489197,-0.0419312,-0.0360413,-0.0312195,-0.0336914,-0.0443726,-0.0628052,-0.0855713,-0.114899,-0.14859,-0.185303,-0.221344,-0.254425,-0.282288,-0.302277,-0.314697,-0.320129,-0.323883,-0.321533,-0.311127,-0.290405,-0.265289,-0.239258,-0.212158,-0.180725,-0.14859,-0.11322,-0.0805969,-0.0516663,-0.0284424,-0.00827026,0.0139465,0.040802,0.0670471,0.0930176,0.118927,0.145569,0.169861,0.187988,0.195557,0.191742,0.170593,0.138855,0.0986023,0.0552368,0.0169678,-0.0139465,-0.0337524,-0.0358276,-0.0222168,0.00531006,0.0418701,0.0852356,0.127716,0.16153,0.184631,0.194824,0.195984,0.189209,0.177582,0.167328,0.158264,0.152283,0.152496,0.159607,0.17041,0.179199,0.183502,0.178467,0.169861,0.155365,0.134827,0.109985,0.0798035,0.0483093,0.0185242,-0.00665283,-0.0238953,-0.0344238,-0.039856,-0.0387268,-0.0344238,-0.0265198,-0.0201416,-0.0143738,-0.0123596,-0.0179749,-0.0317383,-0.053894,-0.0807495,-0.110809,-0.144104,-0.176788,-0.209259,-0.238861,-0.264038,-0.283966,-0.298187,-0.309387,-0.317993,-0.323883,-0.322021,-0.311676,-0.294708,-0.27301,-0.244568,-0.211273,-0.173157,-0.134155,-0.0953064,-0.0596619,-0.0273132,-0.00100708,0.0225525,0.0450439,0.065155,0.0856934,0.106445,0.129333,0.151886,0.166504,0.173767,0.172943,0.160278,0.134308,0.101349,0.061554,0.0224915,-0.0111389,-0.036499,-0.0432129,-0.0340271,-0.012146,0.0187378,0.0565796,0.0991211,0.136505,0.166718,0.184753,0.19162,0.189056,0.179993,0.17276,0.169403,0.16925,0.170074,0.176849,0.189056,0.203949,0.215576,0.219208,0.212891,0.198395,0.172882,0.141602,0.108917,0.0737,0.038269,0.00598145,-0.0177917,-0.0301208,-0.0340881,-0.0325623,-0.0259705,-0.0171814,-0.0110168,-0.00857544,-0.00839233,-0.0128784,-0.0262451,-0.0484619,-0.0756226,-0.105499,-0.136169,-0.168243,-0.199066,-0.225159,-0.250122,-0.272217,-0.290131,-0.301422,-0.310791,-0.320618,-0.329315,-0.327118,-0.317596,-0.299988,-0.276978,-0.248718,-0.21637,-0.181671,-0.142944,-0.102417,-0.0658264,-0.0362549,-0.0135498,0.00967407,0.0334778,0.0580444,0.0763855,0.0954285,0.114441,0.132874,0.14563,0.152405,0.151398,0.138062,0.113159,0.0834961,0.050415,0.0196533,-0.00799561,-0.0252991,-0.0283203,-0.0182495,0.00408936,0.0353088,0.0753784,0.118652,0.158264,0.18988,0.210388,0.223297,0.22583,0.222687,0.219269,0.216919,0.214233,0.212402,0.214905,0.223022,0.229797,0.231689,0.224915,0.211212,0.189117,0.160675,0.126923,0.0910034,0.0536194,0.0179138,-0.0124207,-0.032135,-0.040741,-0.0411377,-0.0375061,-0.0301208,-0.0213318,-0.0150452,-0.012085,-0.0128784,-0.0180664,-0.0316162,-0.0524902,-0.0765076,-0.102814,-0.129517,-0.159058,-0.187256,-0.215912,-0.243896,-0.271423,-0.29657,-0.317047,-0.333099,-0.349731,-0.364227,-0.369049,-0.36322,-0.347046,-0.320862,-0.287994,-0.249786,-0.208801,-0.164429,-0.116302,-0.0698547,-0.0322876,-0.00543213,0.0151062,0.0338135,0.053009,0.069519,0.085968,0.0997314,0.113159,0.125427,0.138733,0.149994,0.152222,0.141357,0.120056,0.0932922,0.0657043,0.0405273,0.0195312,0.00610352,0.0065918,0.0189819,0.0440979,0.081665,0.124023,0.16684,0.202606,0.230469,0.247437,0.254364,0.252411,0.244751,0.2341,0.223236,0.211395,0.205627,0.205383,0.208191,0.210144,0.207123,0.198669,0.184509,0.163422,0.136658,0.107513,0.0764465,0.0434265,0.0134277,-0.0100098,-0.0249634,-0.0320129,-0.0353699,-0.0344238,-0.0325623,-0.0326233,-0.0343628,-0.0380554,-0.0437012,-0.0559692,-0.0753784,-0.097168,-0.123016,-0.150543,-0.179535,-0.208649,-0.234955,-0.260468,-0.284698,-0.305237,-0.321747,-0.333893,-0.342285,-0.349274,-0.351624,-0.349945,-0.342346,-0.327057,-0.298065,-0.262421,-0.22403,-0.185364,-0.143616,-0.0992737,-0.0542908,-0.0132751,0.016571,0.036377,0.049408,0.0632324,0.08255,0.102692,0.122009,0.134491,0.145172,0.158508,0.168518,0.170349,0.158051,0.134644,0.101349,0.0684509,0.041626,0.0234985,0.0183105,0.0247803,0.041687,0.0718079,0.108856,0.151001,0.1922,0.224915,0.244354,0.249115,0.2435,0.234497,0.227905,0.225891,0.221466,0.215637,0.212067,0.216705,0.223816,0.229126,0.223022,0.203094,0.174286,0.141876,0.108398,0.0758362,0.040802,0.00549316,-0.0254211,-0.0458984,-0.0545044,-0.0545044,-0.0514832,-0.0489807,-0.0469666,-0.0473938,-0.0506592,-0.053772,-0.0614624,-0.0752258,-0.0960388,-0.12027,-0.146637,-0.171143,-0.19455,-0.216858,-0.239075,-0.262939,-0.283691,-0.302155,-0.314636,-0.323486,-0.331543,-0.337921,-0.341492,-0.33905,-0.327972,-0.308197,-0.278778,-0.244751,-0.207581,-0.169342,-0.127655,-0.0860291,-0.0461121,-0.00973511,0.0184631,0.0410767,0.0559082,0.0718079,0.0897217,0.109192,0.126587,0.139069,0.147369,0.155762,0.162292,0.163818,0.155426,0.139526,0.114227,0.0867004,0.0656433,0.0526123,0.0499878,0.0551147,0.0672607,0.0883179,0.116302,0.149933,0.184418,0.214905,0.235046,0.242065,0.240265,0.233612,0.230347,0.225891,0.219116,0.210205,0.201538,0.197662,0.197052,0.201202,0.199677,0.186432,0.16275,0.13382,0.106384,0.0788574,0.0471802,0.0116882,-0.0232849,-0.0504761,-0.0671082,-0.0728149,-0.0704651,-0.0663147,-0.0641479,-0.0644226,-0.065094,-0.0647583,-0.0699463,-0.0802002,-0.0983887,-0.121948,-0.148529,-0.174103,-0.195099,-0.213348,-0.231018,-0.252563,-0.272675,-0.289398,-0.302887,-0.312347,-0.321075,-0.331604,-0.340607,-0.344299,-0.33725,-0.316315,-0.286041,-0.250946,-0.215851,-0.177032,-0.134552,-0.0879211,-0.0424194,-0.00308228,0.0255127,0.0457764,0.0646362,0.0871887,0.110321,0.132629,0.149384,0.161469,0.170349,0.177643,0.183014,0.177704,0.161133,0.134644,0.104095,0.0761719,0.0570374,0.0452271,0.0430908,0.0489197,0.0630798,0.0857849,0.115356,0.148254,0.178253,0.200684,0.214417,0.22168,0.223236,0.224091,0.224762,0.227234,0.225708,0.222473,0.220459,0.220795,0.222473,0.220276,0.208588,0.18927,0.165314,0.136993,0.107117,0.0768433,0.0431519,0.00738525,-0.0241699,-0.0483093,-0.0647583,-0.0744934,-0.0822754,-0.0864563,-0.0880432,-0.0891418,-0.0908203,-0.0913391,-0.0940857,-0.101624,-0.116516,-0.135162,-0.155426,-0.1763,-0.198792,-0.221802,-0.2435,-0.264496,-0.282745,-0.298065,-0.306519,-0.312408,-0.314636,-0.316498,-0.314972,-0.310333,-0.300323,-0.281281,-0.253418,-0.220947,-0.18866,-0.156586,-0.120148,-0.0809937,-0.0414124,-0.00476074,0.0234985,0.0441589,0.061615,0.0808105,0.101746,0.122009,0.137573,0.146027,0.152008,0.158264,0.164215,0.163025,0.152954,0.133636,0.107452,0.0814209,0.0624695,0.0507507,0.049408,0.0548401,0.0687256,0.0905457,0.121399,0.157318,0.192627,0.224243,0.244171,0.253815,0.254639,0.251617,0.248871,0.243622,0.234619,0.221558,0.209717,0.202087,0.198181,0.196167,0.18811,0.171478,0.147797,0.119598,0.0909424,0.0608826,0.0275269,-0.00985718,-0.0444946,-0.0730286,-0.0915527,-0.100128,-0.100861,-0.0993347,-0.0969238,-0.0955811,-0.0949097,-0.093811,-0.0964355,-0.10498,-0.118378,-0.137115,-0.157043,-0.175568,-0.194031,-0.208374,-0.22229,-0.236725,-0.25235,-0.265289,-0.278534,-0.286652,-0.295502,-0.30368,-0.309937,-0.311462,-0.305176,-0.287384,-0.257324,-0.220062,-0.180817,-0.145111,-0.107513,-0.0721436,-0.037384,-0.0065918,0.0157776,0.0310669,0.0414124,0.0539551,0.0741577,0.0977173,0.122681,0.141205,0.154419,0.166443,0.174622,0.178802,0.171814,0.15564,0.129272,0.101074,0.0789795,0.0681763,0.068512,0.0761108,0.0901489,0.109467,0.13269,0.160065,0.187866,0.211884,0.22644,0.23053,0.226044,0.220673,0.220001,0.221008,0.219604,0.214294,0.204376,0.19632,0.18866,0.184235,0.174622,0.155975,0.128174,0.0975952,0.0697327,0.0457764,0.0206604,-0.00570679,-0.0340271,-0.0600586,-0.0793152,-0.0908813,-0.0954285,-0.0992737,-0.103546,-0.110931,-0.115234,-0.116119,-0.113098,-0.112213,-0.116364,-0.124756,-0.138062,-0.152283,-0.165314,-0.180054,-0.196503,-0.219879,-0.242554,-0.26355,-0.279053,-0.287659,-0.292694,-0.295837,-0.299469,-0.298462,-0.289459,-0.271088,-0.242676,-0.21048,-0.178375,-0.149139,-0.117035,-0.0822144,-0.0447693,-0.0101318,0.015625,0.0325623,0.0452881,0.0597229,0.0791321,0.101868,0.123749,0.140472,0.152954,0.166565,0.179871,0.188782,0.186646,0.171814,0.144012,0.113098,0.0860291,0.0669861,0.0585327,0.0569763,0.0628967,0.0787964,0.105835,0.141357,0.177704,0.211548,0.232269,0.242218,0.239746,0.230804,0.222076,0.212219,0.199921,0.184692,0.170013,0.1604,0.159271,0.16275,0.164642,0.156586,0.139587,0.116577,0.0920105,0.0663757,0.0361023,0.000671387,-0.0369873,-0.0708008,-0.0950928,-0.107117,-0.111938,-0.110992,-0.108063,-0.10672,-0.10321,-0.0972595,-0.0908813,-0.090271,-0.0970459,-0.110138,-0.128662,-0.148712,-0.167328,-0.184357,-0.201813,-0.220612,-0.239746,-0.255981,-0.267792,-0.273346,-0.276428,-0.280396,-0.284973,-0.286591,-0.282227,-0.265228,-0.236237,-0.206787,-0.176575,-0.149048,-0.117523,-0.0845642,-0.0503235,-0.019989,0.00308228,0.0192566,0.0336304,0.0532227,0.078186,0.106995,0.134766,0.155701,0.172943,0.184906,0.193298,0.192688,0.182831,0.160187,0.126984,0.0933533,0.0667114,0.0527649,0.0485229,0.0545654,0.0689392,0.0892639,0.116699,0.145966,0.176239,0.199921,0.210938,0.212006,0.20578,0.197845,0.194489,0.192291,0.189728,0.185425,0.180603,0.178528,0.180145,0.18222,0.17691,0.162079,0.138458,0.110077,0.0814209,0.0531616,0.0228882,-0.00891113,-0.0403442,-0.0664978,-0.0842285,-0.0914001,-0.0924683,-0.0908813,-0.0908813,-0.0917358,-0.0906677,-0.0899963,-0.0900574,-0.0942383,-0.104431,-0.117859,-0.136719,-0.154083,-0.170197,-0.185242,-0.202087,-0.219391,-0.237183,-0.252289,-0.265961,-0.274628,-0.281677,-0.287933,-0.292694,-0.292694,-0.283966,-0.261749,-0.231934,-0.197327,-0.164307,-0.132629,-0.0995178,-0.066925,-0.0334778,-0.00531006,0.0136108,0.0259094,0.0396729,0.0595398,0.0851746,0.113342,0.138733,0.157867,0.173492,0.184418,0.190735,0.184845,0.167908,0.136322,0.098999,0.0653076,0.040802,0.0279846,0.0281982,0.0385132,0.0589905,0.0856934,0.120056,0.154083,0.186432,0.210388,0.218719,0.218262,0.208984,0.200745,0.196228,0.192688,0.189056,0.183289,0.17926,0.181488,0.187531,0.193024,0.186584,0.168243,0.143494,0.114563,0.0861816,0.0559692,0.0201416,-0.0161133,-0.0498047,-0.0751038,-0.0881348,-0.0922241,-0.0921326,-0.0910034,-0.0907288,-0.0900574,-0.0885315,-0.0858459,-0.086792,-0.0939636,-0.105988,-0.125488,-0.144501,-0.164215,-0.181274,-0.200195,-0.220886,-0.241943,-0.259674,-0.272552,-0.280945,-0.283966,-0.285706,-0.286835,-0.284698,-0.275024,-0.255157,-0.227234,-0.196777,-0.166779,-0.138,-0.109863,-0.0809937,-0.0507507,-0.0235596,-0.00247192,0.0128784,0.0260925,0.0436096,0.065155,0.089386,0.111481,0.130188,0.145111,0.154419,0.159271,0.158051,0.148041,0.127777,0.100128,0.0708618,0.0483093,0.0360413,0.0348206,0.0445557,0.062561,0.0881958,0.118927,0.153351,0.186707,0.21463,0.231476,0.235779,0.230927,0.221954,0.213013,0.206238,0.198517,0.18988,0.181732,0.177246,0.179474,0.184296,0.182953,0.172821,0.15274,0.128113,0.101013,0.0706177,0.0376587,0.00100708,-0.0350952,-0.0646362,-0.0848999,-0.0943604,-0.0944824,-0.0939636,-0.091217,-0.090271,-0.0884705,-0.085968,-0.086853,-0.0928955,-0.104706,-0.121674,-0.141998,-0.162537,-0.180054,-0.197174,-0.214905,-0.232208,-0.249115,-0.262207,-0.271088,-0.276184,-0.279724,-0.284241,-0.286499,-0.283905,-0.269592,-0.245361,-0.215088,-0.184082,-0.156311,-0.128998,-0.0988464,-0.0663757,-0.036377,-0.0128174,0.00180054,0.0140381,0.0293274,0.0522766,0.081543,0.10907,0.129456,0.145844,0.159454,0.1698,0.173553,0.165558,0.143768,0.111145,0.0782471,0.0514832,0.0367126,0.0345764,0.0425415,0.0593872,0.0835571,0.116364,0.153625,0.189606,0.218384,0.233276,0.233826,0.22403,0.213501,0.206512,0.202545,0.199066,0.192413,0.187988,0.188934,0.196106,0.203888,0.202362,0.186432,0.159119,0.127258,0.0957031,0.0643616,0.0296631,-0.00878906,-0.044281,-0.0724182,-0.0861816,-0.0888062,-0.0847778,-0.0811462,-0.0811462,-0.0812683,-0.0838318,-0.0848999,-0.0882568,-0.098053,-0.114227,-0.136108,-0.158783,-0.178131,-0.192627,-0.206848,-0.223572,-0.243225,-0.262756,-0.277435,-0.285492,-0.286438,-0.288849,-0.29129,-0.291199,-0.283691,-0.261749,-0.228333,-0.192017,-0.160004,-0.133698,-0.108582,-0.0798035,-0.0478516,-0.0219421,-0.0050354,0.0050354,0.0140381,0.0338135,0.0608826,0.0923462,0.118927,0.137177,0.150055,0.160278,0.167053,0.164764,0.150269,0.12207,0.0879822,0.0585938,0.0387878,0.0320129,0.0397339,0.0552368,0.0763855,0.104889,0.139679,0.177979,0.213287,0.237579,0.245636,0.239594,0.22699,0.214966,0.207977,0.203094,0.193085,0.182281,0.173889,0.175629,0.185303,0.191071,0.184418,0.165497,0.138184,0.109863,0.0821533,0.052002,0.0158997,-0.0238342,-0.0597839,-0.0855713,-0.0973816,-0.0985107,-0.0949097,-0.0921326,-0.0889893,-0.0879822,-0.0835571,-0.0804138,-0.082489,-0.0922241,-0.11322,-0.138672,-0.164307,-0.185974,-0.203552,-0.220612,-0.240753,-0.260529,-0.277435,-0.286591,-0.287109,-0.284973,-0.283966,-0.283752,-0.278107,-0.260071,-0.227509,-0.189117,-0.155579,-0.128723,-0.10733,-0.081604,-0.0518799,-0.0239563,-0.00564575,0.00314331,0.00991821,0.0256958,0.0515442,0.0848389,0.114777,0.137238,0.152344,0.16275,0.169128,0.168793,0.154358,0.127441,0.0906677,0.0583801,0.0336304,0.0256348,0.0307312,0.0469055,0.0683289,0.0957031,0.129608,0.167328,0.205719,0.231934,0.239929,0.2341,0.218933,0.206055,0.196655,0.189606,0.179535,0.165833,0.154175,0.155365,0.163879,0.173431,0.169922,0.153961,0.129669,0.104645,0.081604,0.0568542,0.0260925,-0.00985718,-0.0439453,-0.0696106,-0.0811462,-0.0809937,-0.0782471,-0.0767822,-0.0777283,-0.07724,-0.0752869,-0.0726318,-0.0738831,-0.0857849,-0.107178,-0.135101,-0.162964,-0.185699,-0.204834,-0.224243,-0.246918,-0.270325,-0.288727,-0.297394,-0.296173,-0.29068,-0.285583,-0.278717,-0.262878,-0.23349,-0.192474,-0.149994,-0.11557,-0.0926208,-0.0730896,-0.0525513,-0.0312805,-0.0142822,-0.0065918,-0.00357056,0.00369263,0.0222168,0.052948,0.0892029,0.120544,0.14444,0.161011,0.1698,0.1698,0.158264,0.130951,0.0920105,0.049408,0.0138855,-0.00759888,-0.00811768,0.00665283,0.0314636,0.0633545,0.100739,0.14267,0.184357,0.218384,0.234894,0.23175,0.216034,0.19812,0.185242,0.176025,0.166504,0.15564,0.146454,0.146851,0.155762,0.167511,0.172028,0.163422,0.144104,0.121277,0.0999451,0.0778503,0.050415,0.0185852,-0.0140381,-0.0404663,-0.0562439,-0.0629578,-0.0634766,-0.0648193,-0.0675049,-0.0710144,-0.0722046,-0.0700073,-0.0679321,-0.0742188,-0.0884705,-0.111603,-0.137115,-0.15979,-0.180664,-0.201263,-0.226776,-0.252411,-0.276367,-0.289673,-0.292938,-0.290619,-0.286255,-0.278198,-0.260406,-0.22879,-0.187256,-0.144287,-0.108856,-0.0855713,-0.0668335,-0.0477905,-0.0296631,-0.017395,-0.0140991,-0.0151062,-0.0102539,0.00827026,0.0369263,0.0709534,0.100067,0.124023,0.141357,0.152283,0.155701,0.144897,0.116302,0.0767212,0.0346985,-0.000335693,-0.0193176,-0.0231628,-0.0115356,0.0107422,0.0411377,0.0788574,0.123352,0.166992,0.20282,0.219391,0.218536,0.205505,0.192078,0.183075,0.175446,0.165497,0.152893,0.143555,0.144501,0.157104,0.17041,0.175507,0.167389,0.150055,0.13269,0.114685,0.0941467,0.06604,0.0316772,-0.0017395,-0.0302124,-0.0458984,-0.0518188,-0.0536804,-0.0550232,-0.0580444,-0.0597229,-0.0578003,-0.0536194,-0.0532227,-0.0606079,-0.0779724,-0.103302,-0.128662,-0.152283,-0.172272,-0.195221,-0.222015,-0.25061,-0.272766,-0.285645,-0.28894,-0.287933,-0.284088,-0.272339,-0.248383,-0.210663,-0.166718,-0.127106,-0.0991211,-0.0769043,-0.0592651,-0.0422058,-0.0322876,-0.0316162,-0.0362549,-0.0368347,-0.0234985,0.00308228,0.0367737,0.0712891,0.101746,0.129395,0.150146,0.160736,0.154022,0.128052,0.0875244,0.0421448,0.000213623,-0.0293274,-0.0424805,-0.0391235,-0.0212097,0.00839233,0.0483093,0.0964966,0.145782,0.188599,0.212616,0.216705,0.205383,0.19046,0.178986,0.168121,0.157043,0.142151,0.132751,0.135376,0.151825,0.170258,0.18161,0.179535,0.168396,0.154236,0.139526,0.119812,0.0918884,0.057251,0.0195923,-0.00985718,-0.0283203,-0.0347595,-0.0357666,-0.0392761,-0.0409546,-0.0440979,-0.0424805,-0.0411987,-0.0418701,-0.0514832,-0.0705261,-0.097168,-0.123352,-0.147247,-0.168243,-0.191467,-0.218109,-0.246246,-0.269196,-0.283752,-0.29187,-0.294434,-0.290283,-0.2771,-0.248444,-0.209595,-0.166656,-0.128387,-0.0991211,-0.0748901,-0.0548401,-0.0410767,-0.0369873,-0.0406189,-0.0470581,-0.0439453,-0.0265198,0.00195312,0.0360413,0.0693359,0.102356,0.131622,0.153564,0.161469,0.149139,0.115967,0.0709534,0.0232849,-0.016449,-0.041687,-0.0493164,-0.0437622,-0.024292,0.00717163,0.0490723,0.0977783,0.145172,0.179993,0.195038,0.192688,0.183167,0.174225,0.168182,0.160187,0.149323,0.138672,0.135651,0.145355,0.163422,0.178802,0.183685,0.178528,0.167389,0.155914,0.142609,0.124756,0.0969849,0.0639038,0.0294495,0.00140381,-0.0161743,-0.0257568,-0.0344238,-0.0414124,-0.049408,-0.0516052,-0.049469,-0.0465698,-0.0462341,-0.0561218,-0.0745544,-0.0990601,-0.12558,-0.1492,-0.172882,-0.200073,-0.230072,-0.257599,-0.277588,-0.287506,-0.289734,-0.284302,-0.270142,-0.246368,-0.210999,-0.171814,-0.133484,-0.102875,-0.0777893,-0.0577087,-0.0430298,-0.037323,-0.0418091,-0.049408,-0.0501404,-0.0366516,-0.012207,0.017395,0.0479126,0.0808105,0.112823,0.141541,0.157928,0.153229,0.127655,0.0877075,0.0437622,0.00408936,-0.0260315,-0.0436096,-0.0482483,-0.0380554,-0.0123596,0.0266418,0.0737,0.12323,0.161621,0.180389,0.183167,0.1763,0.169189,0.163147,0.154694,0.142548,0.129608,0.124084,0.132202,0.149323,0.165314,0.171417,0.165894,0.155182,0.14624,0.137054,0.122406,0.098938,0.0691833,0.0393372,0.0163879,0.00195312,-0.00482178,-0.013031,-0.0239563,-0.0379333,-0.0489807,-0.0536804,-0.0558472,-0.0594482,-0.0704041,-0.0873108,-0.108459,-0.125305,-0.141022,-0.155853,-0.178314,-0.205963,-0.234711,-0.258575,-0.274963,-0.281006,-0.278442,-0.265503,-0.240326,-0.206512,-0.166656,-0.127441,-0.0904846,-0.0590515,-0.0370483,-0.0269775,-0.0273132,-0.0359192,-0.0422058,-0.0390015,-0.0263672,-0.00726318,0.0175171,0.0475769,0.0828857,0.118927,0.145844,0.155762,0.144012,0.114624,0.0767212,0.0381165,0.00280762,-0.0228271,-0.0370483,-0.0387878,-0.0256958,0.00274658,0.0406799,0.0830994,0.119537,0.141022,0.147369,0.14389,0.139465,0.134888,0.129517,0.122345,0.115112,0.112488,0.120667,0.136993,0.153748,0.163086,0.161621,0.154236,0.144836,0.135834,0.122894,0.104095,0.0817566,0.0554504,0.0353088,0.020874,0.0137634,0.00726318,-0.00308228,-0.0161133,-0.032074,-0.0433655,-0.0531006,-0.0634766,-0.0765686,-0.094635,-0.116455,-0.134216,-0.147919,-0.15918,-0.174377,-0.193878,-0.216583,-0.23645,-0.251404,-0.258179,-0.254303,-0.240601,-0.217194,-0.187378,-0.154755,-0.12088,-0.0865784,-0.0546265,-0.0316772,-0.0232239,-0.0236816,-0.0326843,-0.0391846,-0.0333557,-0.0192566,-0.000732422,0.0221558,0.0499878,0.0840149,0.117584,0.143829,0.151672,0.136108,0.105103,0.0658264,0.0263062,-0.00524902,-0.0278625,-0.0388489,-0.0369263,-0.0209961,0.0111389,0.0496521,0.0898743,0.121277,0.136322,0.134369,0.123749,0.112823,0.10202,0.094635,0.0856323,0.0795288,0.0822754,0.0986023,0.123413,0.147247,0.160736,0.161285,0.1539,0.14502,0.134369,0.117859,0.097168,0.0717468,0.0477905,0.0327454,0.0254211,0.0228271,0.0187378,0.00985718,-0.00482178,-0.0204163,-0.0349121,-0.0500793,-0.0671692,-0.0886536,-0.111328,-0.132751,-0.148651,-0.15744,-0.166443,-0.178467,-0.196564,-0.21637,-0.236511,-0.248932,-0.248535,-0.235718,-0.212006,-0.183228,-0.150055,-0.116577,-0.0764465,-0.0354919,-0.00698853,0.00543213,-0.0012207,-0.0170593,-0.0303345,-0.0324097,-0.0248413,-0.0140381,-0.000549316,0.0222168,0.0557861,0.0968323,0.130341,0.147858,0.137787,0.111145,0.074646,0.037262,0.00543213,-0.0198669,-0.037323,-0.0435486,-0.0347595,-0.00958252,0.0275269,0.066925,0.101288,0.119202,0.124023,0.119812,0.113953,0.11026,0.10437,0.0932312,0.0803223,0.0720215,0.0767212,0.0930176,0.112488,0.124023,0.125427,0.120392,0.118378,0.119049,0.118378,0.109467,0.0899963,0.066925,0.0480652,0.0391846,0.0339661,0.0285339,0.0137634,-0.00531006,-0.0250854,-0.0390625,-0.0511475,-0.0653687,-0.0842285,-0.108246,-0.131744,-0.149658,-0.159332,-0.165375,-0.174225,-0.189941,-0.212341,-0.231537,-0.239746,-0.230804,-0.210724,-0.18631,-0.164886,-0.141937,-0.109924,-0.0657043,-0.0204773,0.00912476,0.0163879,0.00643921,-0.00491333,-0.00704956,-0.000335693,0.00549316,0.0071106,0.0104065,0.0267029,0.0575256,0.0949707,0.120667,0.122833,0.103973,0.0720215,0.0404663,0.0132141,-0.0065918,-0.0235596,-0.0336304,-0.0332336,-0.0152283,0.019928,0.0617371,0.0979309,0.115967,0.115234,0.10672,0.0976562,0.091217,0.0844421,0.0740356,0.061615,0.0557861,0.0638123,0.0852356,0.110657,0.127716,0.13028,0.124298,0.115509,0.107849,0.0985107,0.0853577,0.0667725,0.0464478,0.0324097,0.0287781,0.0336914,0.0393372,0.0381165,0.0270996,0.0117493,-0.00610352,-0.0232849,-0.0423584,-0.0681152,-0.0969238,-0.125916,-0.150604,-0.165375,-0.174957,-0.18396,-0.197784,-0.216034,-0.231415,-0.236633,-0.22583,-0.203094,-0.175018,-0.149536,-0.125366,-0.0958252,-0.0574646,-0.0167847,0.0088501,0.0139465,0.00424194,-0.00610352,-0.00637817,0.00323486,0.0141602,0.0239563,0.0349731,0.0555115,0.0852966,0.117523,0.13739,0.131805,0.105042,0.0657654,0.0245667,-0.0106812,-0.0360413,-0.0539551,-0.0609436,-0.0561829,-0.0336914,0.00463867,0.050415,0.0883789,0.110474,0.112427,0.105774,0.0963135,0.0890503,0.0808105,0.0701294,0.0567017,0.050415,0.058197,0.079071,0.105988,0.12442,0.129669,0.12793,0.12262,0.118805,0.11261,0.100403,0.0802612,0.0554504,0.0347595,0.0245667,0.0223389,0.0214233,0.0144958,-0.000671387,-0.0179749,-0.0328064,-0.0450439,-0.0596619,-0.0787964,-0.102295,-0.126251,-0.145294,-0.157196,-0.165161,-0.175568,-0.193878,-0.21463,-0.230347,-0.228851,-0.211823,-0.182892,-0.1539,-0.127838,-0.0998535,-0.0634766,-0.0194702,0.0193176,0.0383911,0.0361023,0.0222778,0.0109253,0.00967407,0.0142212,0.0171814,0.0209961,0.0289307,0.0507507,0.0822144,0.113617,0.127319,0.117859,0.0880432,0.0516663,0.015625,-0.0129395,-0.0359802,-0.0518799,-0.0610046,-0.0545044,-0.0307922,0.00610352,0.0455017,0.0761108,0.0891418,0.0892639,0.0848999,0.0820007,0.0807495,0.0769653,0.068512,0.0590515,0.0575256,0.0681152,0.0892029,0.107788,0.116791,0.114166,0.107239,0.100525,0.0969849,0.0917969,0.0814819,0.06604,0.0502625,0.0412903,0.0396729,0.0397339,0.036377,0.0226135,-6.10352e-05,-0.0254211,-0.0502625,-0.0731506,-0.0949707,-0.116699,-0.138519,-0.15625,-0.166656,-0.169922,-0.171692,-0.180145,-0.193817,-0.208069,-0.210327,-0.196228,-0.169525,-0.141479,-0.116364,-0.0924072,-0.0605469,-0.0209351,0.0188599,0.0412903,0.0452271,0.0345764,0.0259705,0.0270996,0.0341492,0.0413513,0.0466309,0.0547791,0.0720825,0.0960999,0.118988,0.125824,0.108978,0.074646,0.0330811,-0.00543213,-0.0339661,-0.0509949,-0.0611267,-0.0638123,-0.0557861,-0.0317993,0.00247192,0.0430298,0.0724792,0.081604,0.074646,0.0619507,0.0555725,0.0548401,0.0545654,0.0484619,0.0388489,0.0385132,0.0534363,0.0809937,0.106445,0.116302,0.111664,0.100128,0.0920715,0.0879822,0.082489,0.0706787,0.0517578,0.0343628,0.0279236,0.0298767,0.0383911,0.0401917,0.0307922,0.0109253,-0.0148315,-0.0380554,-0.0606079,-0.0836792,-0.10907,-0.13623,-0.161072,-0.17511,-0.179871,-0.181152,-0.186859,-0.196777,-0.202484,-0.194427,-0.172485,-0.142944,-0.116516,-0.0926208,-0.0693359,-0.0375977,-0.00088501,0.0297852,0.0473938,0.0495911,0.0465088,0.0475159,0.0550232,0.0646973,0.0708618,0.07724,0.0878601,0.102295,0.120056,0.128662,0.122681,0.0967712,0.0604553,0.0221558,-0.0105896,-0.0332947,-0.0487366,-0.058197,-0.0602112,-0.0499878,-0.0269775,0.00100708,0.0283813,0.0423584,0.0435486,0.0386047,0.0353088,0.0369263,0.0377808,0.0354309,0.0301208,0.0269775,0.032074,0.0490723,0.0693359,0.0865173,0.0926208,0.0906677,0.0869751,0.0836182,0.0809937,0.0719604,0.0546875,0.03302,0.0157776,0.00759888,0.00918579,0.0108032,0.00817871,-0.00268555,-0.016571,-0.0298767,-0.0432739,-0.0598755,-0.0820923,-0.110138,-0.138519,-0.164093,-0.179657,-0.189545,-0.195709,-0.200073,-0.195221,-0.176971,-0.144836,-0.106659,-0.0718079,-0.0452881,-0.0253601,-0.0050354,0.0153809,0.0322266,0.0389404,0.0371094,0.0339661,0.0400696,0.056366,0.0756226,0.092804,0.106659,0.120392,0.135834,0.147369,0.148468,0.131958,0.0990601,0.0579834,0.0202026,-0.0103455,-0.0303345,-0.040741,-0.0448303,-0.0423584,-0.0316162,-0.0142212,0.00750732,0.0245667,0.0309448,0.0249634,0.0137024,0.00570679,0.00436401,0.00643921,0.00692749,0.00515747,0.00357056,0.0108032,0.0247803,0.045105,0.0594482,0.0653076,0.0646973,0.0628052,0.0636292,0.0647583,0.061615,0.0510864,0.0352478,0.0194702,0.00952148,0.00424194,0.000335693,-0.0107422,-0.0259705,-0.0462952,-0.0642395,-0.0798645,-0.0944824,-0.110474,-0.129333,-0.150543,-0.170258,-0.183167,-0.190277,-0.191467,-0.187439,-0.176453,-0.151825,-0.118591,-0.0792542,-0.0425415,-0.011261,0.0158386,0.0410767,0.062561,0.0751038,0.0788574,0.0767212,0.0775757,0.0876465,0.101532,0.116699,0.126373,0.136658,0.14624,0.155243,0.156525,0.14209,0.113342,0.0729675,0.0333557,0.000213623,-0.0221558,-0.0343018,-0.0396729,-0.0388489,-0.0328064,-0.019989,-0.00314331,0.0126953,0.0209961,0.0193176,0.00717163,-0.00201416,-0.00610352,-0.00167847,0.00280762,0.00537109,0.00363159,0.00564575,0.0151672,0.0302734,0.0445557,0.0523376,0.0487976,0.0422668,0.0371094,0.0378418,0.039856,0.0363159,0.0249023,0.00857544,-0.00683594,-0.0171204,-0.025177,-0.0367737,-0.0562439,-0.0802002,-0.104553,-0.122162,-0.133545,-0.141357,-0.152496,-0.165894,-0.182007,-0.193298,-0.198181,-0.194977,-0.185913,-0.168121,-0.143097,-0.108459,-0.0683899,-0.0267029,0.0138855,0.0509338,0.0786438,0.0975952,0.105774,0.10733,0.106903,0.110321,0.118805,0.129456,0.141541,0.155579,0.170258,0.184082,0.192078,0.185638,0.163544,0.128326,0.0856323,0.0437622,0.00878906,-0.0153809,-0.0302734,-0.0381165,-0.0384521,-0.0316162,-0.0172424,0,0.012085,0.0134888,0.00408936,-0.00778198,-0.015564,-0.0177917,-0.0145569,-0.0127563,-0.0100708,-0.0050354,0.0065918,0.0205994,0.0349121,0.044281,0.0476379,0.0458984,0.04422,0.0418701,0.0409546,0.0379333,0.0305481,0.0181274,0.00430298,-0.0101318,-0.0248413,-0.0428772,-0.066925,-0.0968323,-0.127319,-0.155182,-0.177368,-0.193817,-0.208862,-0.221283,-0.230682,-0.235229,-0.233948,-0.224976,-0.210541,-0.187103,-0.154968,-0.115234,-0.0737,-0.03302,0.0065918,0.0444336,0.0798645,0.109741,0.127167,0.133209,0.135559,0.139862,0.149323,0.160797,0.173431,0.184082,0.195099,0.207458,0.215363,0.211945,0.1922,0.157928,0.113953,0.0698547,0.0310669,0.00247192,-0.0162354,-0.0270996,-0.0313416,-0.0284424,-0.0183105,0.00088501,0.0198059,0.0306702,0.0297241,0.0189819,0.0067749,0.000610352,-0.00247192,-0.00665283,-0.015564,-0.0222168,-0.0215454,-0.0085144,0.0111389,0.0304565,0.0412903,0.0429382,0.0429382,0.0448303,0.0471191,0.0458374,0.0369263,0.0193176,-0.00146484,-0.019928,-0.0350342,-0.0503235,-0.0737,-0.104492,-0.140747,-0.172272,-0.196777,-0.215637,-0.232697,-0.24939,-0.264435,-0.272675,-0.270203,-0.2565,-0.231476,-0.200806,-0.1651,-0.127167,-0.0895386,-0.0508118,-0.0111389,0.0290527,0.0646362,0.0928955,0.113281,0.128998,0.148865,0.17041,0.189392,0.202606,0.210541,0.215851,0.223755,0.230804,0.230255,0.216522,0.18927,0.15155,0.113556,0.078064,0.0490723,0.0259705,0.00750732,-0.00759888,-0.0171204,-0.0189819,-0.0118103,0.000457764,0.00900269,0.0100098,0.00415039,-0.000671387,-0.000213623,0.00671387,0.0118713,0.0115356,0.00878906,0.00750732,0.0147705,0.0289917,0.0443726,0.0542297,0.0565796,0.0553589,0.0546875,0.0550232,0.0545044,0.0478516,0.0323486,0.0114136,-0.0100098,-0.0280457,-0.0454407,-0.0668335,-0.0975037,-0.13623,-0.175232,-0.209595,-0.237854,-0.262268,-0.284637,-0.303101,-0.313904,-0.312744,-0.295166,-0.262817,-0.222137,-0.175842,-0.130005,-0.0855103,-0.0455017,-0.00872803,0.0250244,0.0520935,0.0727539,0.0869141,0.101074,0.120941,0.147797,0.176849,0.202484,0.221893,0.234283,0.24295,0.245361,0.238739,0.218384,0.185242,0.144684,0.104218,0.0711365,0.0461121,0.0279846,0.0142822,0.00296021,-0.00436401,-0.0062561,-0.000671387,0.00778198,0.0128174,0.0124207,0.00772095,0.00442505,0.0062561,0.013031,0.016449,0.0158386,0.012207,0.0100708,0.0140381,0.0252991,0.0367126,0.0448914,0.0522766,0.0591125,0.0684509,0.0782471,0.0857849,0.0845642,0.0714111,0.0500793,0.0238953,-0.00436401,-0.0332947,-0.0673828,-0.106323,-0.148651,-0.185974,-0.218109,-0.243622,-0.266724,-0.290283,-0.311951,-0.32724,-0.330994,-0.31839,-0.290863,-0.251465,-0.204285,-0.155182,-0.106171,-0.0592651,-0.0100708,0.0334167,0.070282,0.0928955,0.106781,0.118469,0.137573,0.1633,0.18927,0.212555,0.231354,0.247437,0.261749,0.269135,0.261017,0.233093,0.188934,0.136383,0.0848999,0.0381775,0.00274658,-0.024231,-0.039856,-0.0466309,-0.0448914,-0.0341492,-0.0185852,-0.00167847,0.0110168,0.0157166,0.0158386,0.013031,0.0129395,0.0125427,0.0139465,0.0134888,0.0117493,0.0145569,0.0229492,0.038269,0.0546875,0.0693359,0.0802612,0.0869141,0.0900574,0.0917358,0.0910645,0.0812073,0.0653687,0.041626,0.013092,-0.0159607,-0.0462952,-0.0813293,-0.118591,-0.157532,-0.194427,-0.22583,-0.252563,-0.273773,-0.292542,-0.308319,-0.318329,-0.316162,-0.300079,-0.266968,-0.222626,-0.171356,-0.122345,-0.0774536,-0.0317383,0.0102539,0.0484619,0.0788574,0.0977173,0.108978,0.123688,0.147522,0.177368,0.209534,0.236633,0.255981,0.27066,0.279938,0.279266,0.261932,0.224701,0.173431,0.115692,0.0613403,0.0167847,-0.0193176,-0.0444946,-0.0605469,-0.0643616,-0.0567017,-0.0436096,-0.0260925,-0.0140381,-0.00958252,-0.00906372,-0.0114746,-0.0134888,-0.0137634,-0.0137634,-0.012085,-0.00845337,-0.000610352,0.0122681,0.0280457,0.0461121,0.0624695,0.0755615,0.0842896,0.0903931,0.0910645,0.0884705,0.0794678,0.0630798,0.0440369,0.0205994,-0.00750732,-0.0393982,-0.0761108,-0.11618,-0.155701,-0.194214,-0.22699,-0.257324,-0.281799,-0.299133,-0.308716,-0.30719,-0.294891,-0.270203,-0.235901,-0.193542,-0.147247,-0.104156,-0.0636292,-0.0234985,0.0147705,0.0491333,0.0789185,0.101746,0.12207,0.145844,0.174957,0.203705,0.229523,0.251953,0.268524,0.279602,0.284485,0.275696,0.252136,0.215424,0.169922,0.123291,0.0767212,0.0350952,-0.0038147,-0.0367126,-0.0603943,-0.0720825,-0.0740356,-0.0668335,-0.0562439,-0.0446167,-0.0357666,-0.0257568,-0.0171204,-0.00973511,-0.00341797,-0.00146484,-0.00201416,-0.0032959,-0.0020752,0.00390625,0.0145569,0.0278625,0.0419312,0.0555725,0.0686035,0.0809326,0.0890503,0.0908203,0.0818787,0.0621338,0.0322266,-0.00268555,-0.0428772,-0.0856934,-0.12912,-0.172089,-0.211151,-0.2453,-0.271423,-0.291473,-0.304565,-0.311615,-0.312286,-0.304108,-0.282227,-0.248322,-0.202698,-0.152283,-0.105896,-0.0630798,-0.0221558,0.019928,0.0597229,0.09375,0.118042,0.135162,0.153076,0.179871,0.211395,0.243225,0.269196,0.287384,0.300476,0.307983,0.305847,0.287323,0.251556,0.202209,0.146179,0.0899353,0.0401917,-0.00140381,-0.0350342,-0.0585327,-0.0700073,-0.0730286,-0.065918,-0.0518799,-0.0358276,-0.0235596,-0.016449,-0.0158386,-0.0148315,-0.0151062,-0.0128174,-0.0119324,-0.0108643,-0.0103455,-0.00280762,0.0126038,0.0336914,0.053833,0.0719604,0.0818787,0.086853,0.0871277,0.081543,0.0678406,0.0434875,0.0103455,-0.0302734,-0.0732117,-0.116119,-0.155579,-0.195221,-0.232208,-0.266235,-0.295837,-0.317322,-0.332092,-0.338867,-0.338806,-0.328064,-0.302765,-0.262024,-0.208252,-0.15094,-0.0992737,-0.0518799,-0.00726318,0.0341492,0.0704041,0.0977783,0.116791,0.132202,0.152954,0.181824,0.214172,0.247589,0.277863,0.304016,0.322357,0.332001,0.325897,0.299652,0.2565,0.202698,0.14389,0.089386,0.0422668,0.00650024,-0.0195312,-0.0359802,-0.0422668,-0.0404053,-0.0314026,-0.0185242,-0.0085144,-0.00424194,-0.00604248,-0.00637817,-0.00537109,-0.00088501,0.0020752,0.00463867,0.00598145,0.00952148,0.0201416,0.0340881,0.0492554,0.0605469,0.0669861,0.0697937,0.0712891,0.070282,0.065033,0.0511475,0.0249023,-0.00906372,-0.0482483,-0.091156,-0.133972,-0.179474,-0.225555,-0.26825,-0.305786,-0.333771,-0.352478,-0.363007,-0.364899,-0.355988,-0.335571,-0.30249,-0.256256,-0.202362,-0.146027,-0.091156,-0.040741,0.00308228,0.0421448,0.0762939,0.104767,0.127655,0.145844,0.166504,0.188263,0.215637,0.244629,0.270264,0.292419,0.305237,0.307983,0.294708,0.266296,0.22644,0.176788,0.122955,0.070343,0.0261841,-0.00817871,-0.0280457,-0.0367126,-0.0358276,-0.0288696,-0.0140381,0.00476074,0.0235596,0.0363159,0.0444946,0.0465088,0.0481262,0.0472412,0.0477905,0.0452271,0.0441589,0.0459595,0.0527649,0.0627441,0.073822,0.0822144,0.0877991,0.0881958,0.0835571,0.0731506,0.0559082,0.0290527,-0.00558472,-0.0491943,-0.0979919,-0.150269,-0.197845,-0.243561,-0.282349,-0.317596,-0.344635,-0.365356,-0.377106,-0.378723,-0.37149,-0.352692,-0.318604,-0.270996,-0.214355,-0.154694,-0.0976562,-0.045166,0.00289917,0.0446167,0.0765076,0.098938,0.112823,0.126099,0.14328,0.165771,0.191345,0.218323,0.245026,0.267517,0.284698,0.290192,0.28006,0.251221,0.204773,0.147308,0.0851746,0.0293274,-0.0138855,-0.0420837,-0.0592651,-0.0632935,-0.0544434,-0.0332947,-0.00228882,0.0293274,0.0541077,0.0656433,0.0724182,0.0776367,0.081665,0.085022,0.0834961,0.078125,0.0751038,0.0785828,0.089325,0.10437,0.11731,0.125916,0.127594,0.125092,0.117462,0.103821,0.0836792,0.0507507,0.00631714,-0.0448914,-0.0983276,-0.148041,-0.196045,-0.24115,-0.285767,-0.325623,-0.356171,-0.375916,-0.384827,-0.386383,-0.382629,-0.367462,-0.338654,-0.292084,-0.232605,-0.169739,-0.111145,-0.0570374,-0.00778198,0.0378418,0.0789795,0.109528,0.128662,0.141144,0.154968,0.175171,0.200256,0.226044,0.247986,0.262268,0.268524,0.267181,0.253418,0.222961,0.177185,0.118256,0.0567932,0.00296021,-0.0358276,-0.0612183,-0.0774536,-0.0841064,-0.0810852,-0.0654297,-0.0395203,-0.00918579,0.016449,0.0347595,0.048645,0.0635681,0.0807495,0.0970459,0.110138,0.115845,0.11792,0.121277,0.127441,0.135223,0.140808,0.141998,0.136169,0.128662,0.119324,0.109314,0.092804,0.0652466,0.0256348,-0.0236206,-0.077179,-0.132141,-0.185364,-0.237244,-0.286591,-0.329529,-0.362213,-0.378937,-0.385834,-0.383301,-0.372833,-0.354706,-0.321747,-0.273956,-0.214081,-0.152679,-0.0961609,-0.0462341,0.000213623,0.0450439,0.0845642,0.115845,0.134033,0.14502,0.158112,0.176453,0.198181,0.220398,0.237061,0.246857,0.251465,0.250458,0.238403,0.208801,0.163544,0.104156,0.0421448,-0.0125427,-0.053772,-0.0838318,-0.102539,-0.112091,-0.108398,-0.0906677,-0.0586548,-0.0232239,0.00891113,0.0326233,0.0513306,0.0673218,0.0845642,0.0988464,0.108795,0.112335,0.11322,0.118195,0.128387,0.143219,0.154633,0.15799,0.154358,0.145508,0.133484,0.117981,0.094635,0.0588684,0.0102539,-0.0429382,-0.098053,-0.149048,-0.197388,-0.243225,-0.285919,-0.323761,-0.351349,-0.368927,-0.375153,-0.373627,-0.365906,-0.347992,-0.315643,-0.264099,-0.200348,-0.134216,-0.0745544,-0.021759,0.0263062,0.0722961,0.110748,0.138458,0.152161,0.158112,0.167999,0.183014,0.200256,0.217194,0.230347,0.237915,0.240753,0.235718,0.219788,0.188446,0.146851,0.094696,0.0397339,-0.0105286,-0.0506592,-0.0785828,-0.0957642,-0.104553,-0.101807,-0.0889282,-0.0639648,-0.0319519,-0.00128174,0.0241699,0.0467224,0.0678406,0.0875244,0.105164,0.117859,0.123566,0.125702,0.126038,0.129181,0.133148,0.138,0.138733,0.135376,0.127716,0.117188,0.103302,0.0826721,0.0517578,0.00866699,-0.0418701,-0.0964966,-0.150604,-0.201416,-0.250336,-0.295227,-0.333221,-0.363342,-0.380463,-0.387177,-0.383026,-0.368042,-0.34082,-0.299988,-0.24408,-0.17981,-0.113495,-0.0536194,-0.00140381,0.0452881,0.0845032,0.117035,0.139191,0.149323,0.154419,0.162079,0.174377,0.190277,0.20752,0.222809,0.233765,0.24054,0.239594,0.223694,0.187988,0.137573,0.0782471,0.0186462,-0.0320129,-0.0706787,-0.0986023,-0.114624,-0.117371,-0.104095,-0.0785217,-0.0420837,-0.00576782,0.0265198,0.0515442,0.0737,0.0920105,0.107849,0.118378,0.123077,0.124634,0.127258,0.133209,0.142273,0.152496,0.156647,0.155975,0.147247,0.136383,0.119385,0.0987854,0.0697327,0.0283813,-0.0202637,-0.0714722,-0.125153,-0.176361,-0.22464,-0.271271,-0.314758,-0.350067,-0.372894,-0.384308,-0.381805,-0.372223,-0.354889,-0.326721,-0.281342,-0.219543,-0.149261,-0.0838928,-0.0314636,0.0106812,0.0509949,0.0886536,0.120209,0.137909,0.141479,0.141693,0.149872,0.165558,0.184357,0.199127,0.207581,0.210999,0.210144,0.204163,0.18396,0.149994,0.104492,0.0522766,0.00280762,-0.040741,-0.0715332,-0.0924683,-0.102295,-0.101959,-0.0896606,-0.0677185,-0.0334167,0.00436401,0.0396118,0.0679321,0.0892029,0.10498,0.119385,0.130188,0.136566,0.136658,0.13269,0.130676,0.133545,0.141418,0.150604,0.155365,0.154846,0.146454,0.133698,0.114441,0.0865173,0.0469666,-0.00463867,-0.0617371,-0.121155,-0.175018,-0.222473,-0.264038,-0.301758,-0.334503,-0.358459,-0.368988,-0.370148,-0.363434,-0.350067,-0.326172,-0.285431,-0.227051,-0.159119,-0.0948181,-0.0384521,0.0115356,0.0587769,0.0998535,0.130402,0.144226,0.144562,0.143341,0.14859,0.15918,0.171539,0.183014,0.189941,0.196381,0.200073,0.196045,0.176361,0.139923,0.0895996,0.0331421,-0.0201416,-0.065094,-0.0983276,-0.122955,-0.134644,-0.133301,-0.116455,-0.0846252,-0.0420837,0.000610352,0.0400696,0.070343,0.0948181,0.115509,0.13208,0.141266,0.143494,0.139679,0.134491,0.134705,0.140686,0.149597,0.157043,0.159393,0.157043,0.150543,0.138733,0.121002,0.0910645,0.0473938,-0.00524902,-0.0629578,-0.119812,-0.169678,-0.215424,-0.257263,-0.292267,-0.32074,-0.338715,-0.344818,-0.341553,-0.333344,-0.320343,-0.296448,-0.257111,-0.201752,-0.137665,-0.0760498,-0.0233459,0.0236816,0.0657043,0.102417,0.128387,0.142334,0.14389,0.14209,0.143951,0.151733,0.160736,0.171143,0.179657,0.184967,0.183899,0.174622,0.15155,0.115173,0.0686646,0.0146179,-0.0420227,-0.0885315,-0.119934,-0.137451,-0.141418,-0.134979,-0.117371,-0.0871277,-0.0472412,-0.00415039,0.0325623,0.0612183,0.0856934,0.103485,0.118256,0.129059,0.133636,0.134094,0.132812,0.133087,0.133362,0.138916,0.143768,0.146027,0.143158,0.134888,0.120544,0.102692,0.0787964,0.0458374,0.00262451,-0.0481262,-0.100525,-0.150269,-0.194153,-0.233368,-0.267456,-0.29538,-0.312286,-0.31839,-0.315369,-0.304688,-0.289795,-0.267303,-0.231201,-0.182556,-0.128174,-0.0743713,-0.0267029,0.0152893,0.0552979,0.0914917,0.121216,0.138794,0.145691,0.147644,0.15155,0.160065,0.170349,0.176849,0.183289,0.185089,0.18457,0.178375,0.161133,0.129608,0.0873718,0.0334167,-0.0194702,-0.0646362,-0.0996704,-0.123413,-0.140594,-0.146362,-0.138519,-0.114838,-0.0792542,-0.0400085,-0.00570679,0.0220032,0.0457764,0.0701294,0.091217,0.105438,0.11322,0.11557,0.114899,0.11972,0.125031,0.134827,0.142609,0.14502,0.140137,0.130127,0.117706,0.101288,0.0792542,0.0446167,0.00180054,-0.0470581,-0.0940857,-0.136566,-0.176117,-0.213959,-0.251007,-0.280792,-0.300659,-0.307312,-0.30368,-0.295044,-0.284821,-0.266296,-0.233704,-0.185089,-0.127106,-0.0697327,-0.0205383,0.0216675,0.0591125,0.0964966,0.128662,0.149811,0.158783,0.160126,0.160339,0.166107,0.175629,0.184082,0.18631,0.18396,0.178375,0.169128,0.156097,0.132477,0.0960999,0.0489807,0.000457764,-0.0447693,-0.0759583,-0.0997925,-0.113342,-0.123566,-0.122681,-0.109406,-0.0841064,-0.0514221,-0.0167847,0.00973511,0.0306091,0.049469,0.0678406,0.0848999,0.0973206,0.102692,0.101959,0.100616,0.103882,0.109741,0.116577,0.119202,0.113953,0.103149,0.0903931,0.0765076,0.0583191,0.0332336,-0.00195312,-0.0448303,-0.0890503,-0.128448,-0.163971,-0.194977,-0.224091,-0.250336,-0.269135,-0.275085,-0.270752,-0.262268,-0.25174,-0.240204,-0.221222,-0.18927,-0.148987,-0.105377,-0.0634155,-0.024231,0.0138245,0.0545044,0.0906067,0.120819,0.143219,0.159393,0.169006,0.177521,0.185364,0.190216,0.192688,0.193634,0.188385,0.180817,0.169678,0.151825,0.124908,0.0881958,0.0477905,0.00759888,-0.0287781,-0.0578613,-0.0820923,-0.101196,-0.10907,-0.105225,-0.0929565,-0.0744324,-0.0525513,-0.0312195,-0.0106812,0.0105286,0.0281067,0.0465698,0.0620117,0.0744324,0.0856323,0.0964355,0.108124,0.119476,0.130859,0.138184,0.138733,0.131287,0.119598,0.102081,0.07724,0.0479736,0.0100708,-0.0333557,-0.0765686,-0.117462,-0.155853,-0.189941,-0.218445,-0.246033,-0.268188,-0.281219,-0.28537,-0.28067,-0.273102,-0.262146,-0.250061,-0.23288,-0.200012,-0.15564,-0.105774,-0.0584412,-0.0147095,0.0249023,0.0671692,0.11322,0.150726,0.176453,0.187927,0.192139,0.196228,0.205292,0.212891,0.212067,0.202087,0.188324,0.173157,0.160278,0.144836,0.119202,0.0826111,0.0392761,-0.00274658,-0.0345764,-0.0569153,-0.0739746,-0.086792,-0.0965881,-0.098999,-0.0888672,-0.0683899,-0.0425415,-0.0196533,-0.00213623,0.0133667,0.0300598,0.0477295,0.0673218,0.082489,0.0932922,0.101685,0.107391,0.114624,0.123352,0.128113,0.125916,0.114899,0.0974426,0.0779724,0.0560303,0.0319519,0.0012207,-0.0366516,-0.0794067,-0.11853,-0.1539,-0.182953,-0.20932,-0.234558,-0.257111,-0.269745,-0.273621,-0.267242,-0.256104,-0.242004,-0.225708,-0.205505,-0.180542,-0.149261,-0.112091,-0.0729675,-0.0325623,0.00576782,0.0387268,0.0720825,0.103882,0.133972,0.157867,0.172607,0.179382,0.184692,0.193542,0.200409,0.201355,0.195435,0.180939,0.164703,0.149658,0.132202,0.108002,0.0757141,0.0394592,0.00213623,-0.0269775,-0.0459595,-0.0578003,-0.0662537,-0.0686035,-0.0692749,-0.0587769,-0.0424194,-0.0222168,-0.00543213,0.00558472,0.015564,0.0246887,0.0357666,0.0497437,0.061676,0.0700684,0.0784607,0.0873108,0.0957642,0.105042,0.110748,0.108459,0.100067,0.0854492,0.0647583,0.0421448,0.015564,-0.0140991,-0.0491333,-0.0856934,-0.120056,-0.149994,-0.174957,-0.194489,-0.213501,-0.228455,-0.236237,-0.237457,-0.231018,-0.219116,-0.207123,-0.19342,-0.173492,-0.150726,-0.126434,-0.100464,-0.0710754,-0.0390015,-0.00558472,0.0275269,0.058136,0.0886536,0.117798,0.145569,0.164642,0.176697,0.186859,0.192078,0.195374,0.192963,0.181335,0.163971,0.14563,0.124237,0.0998535,0.0744934,0.0479736,0.021759,-0.00112915,-0.0216675,-0.0368347,-0.0452881,-0.0493164,-0.0481873,-0.0445557,-0.0385132,-0.0291138,-0.0179749,-0.00839233,0.0015564,0.0102539,0.0204773,0.032959,0.0459595,0.0587769,0.0721436,0.0826721,0.0915527,0.0967712,0.0963745,0.0913391,0.0840149,0.0708618,0.0514221,0.0283203,0.00222778,-0.0233459,-0.0482483,-0.0734253,-0.0973206,-0.118927,-0.139526,-0.154022,-0.166168,-0.174042,-0.180206,-0.184296,-0.184906,-0.182678,-0.179871,-0.174103,-0.168518,-0.159515,-0.148712,-0.135895,-0.119995,-0.0993958,-0.073761,-0.045105,-0.0105896,0.0220032,0.0513306,0.0803223,0.107056,0.130066,0.147461,0.156647,0.16214,0.16449,0.165985,0.164764,0.159607,0.151215,0.140259,0.128601,0.116913,0.102081,0.0861206,0.0663757,0.0452271,0.0239563,0.00582886,-0.0106812,-0.0233459,-0.0328064,-0.0393982,-0.0440369,-0.0436096,-0.0387878,-0.032135,-0.0226746,-0.013031,-0.000610352,0.0120239,0.0253601,0.037384,0.0461121,0.0533447,0.0556946,0.0551147,0.0532837,0.0480652,0.0401306,0.0306091,0.0196533,0.00610352,-0.00732422,-0.0192566,-0.03302,-0.0455017,-0.0601196,-0.0725403,-0.0858459,-0.0974426,-0.10965,-0.121338,-0.132751,-0.143097,-0.153564,-0.161072,-0.165039,-0.165985,-0.163635,-0.15686,-0.144897,-0.12912,-0.11026,-0.0914917,-0.0730286,-0.0543518,-0.0314636,-0.00564575,0.0204773,0.0452271,0.066925,0.0894775,0.110596,0.131287,0.148041,0.1604,0.167053,0.170074,0.167786,0.163544,0.156586,0.145905,0.131958,0.117523,0.10141,0.0877991,0.073822,0.0578003,0.0381775,0.0167236,-0.00469971,-0.0194702,-0.0302734,-0.0371704,-0.0409546,-0.0432739,-0.0413513,-0.0352478,-0.0258484,-0.0143738,-0.00524902,0.0020752,0.0067749,0.0110168,0.0143738,0.0166321,0.016571,0.0160522,0.0141602,0.0119324,0.0106812,0.0100708,0.0071106,0.00357056,-0.0012207,-0.00616455,-0.0113525,-0.016571,-0.0232239,-0.03302,-0.0467224,-0.0602722,-0.0751038,-0.0899353,-0.104156,-0.120483,-0.136322,-0.147461,-0.154907,-0.158997,-0.156525,-0.150818,-0.140076,-0.126709,-0.111145,-0.0953674,-0.0782471,-0.0598755,-0.0420227,-0.0244446,-0.00558472,0.0140991,0.0362549,0.0623474,0.0876465,0.110321,0.131012,0.149994,0.168335,0.180939,0.187378,0.184845,0.176514,0.164978,0.151001,0.134033,0.114777,0.093689,0.0733032,0.0521545,0.0336304,0.0162354,0.00134277,-0.0125427,-0.0233459,-0.0334167,-0.039856,-0.0434875,-0.0436096,-0.0430298,-0.0414124,-0.0396729,-0.0360413,-0.0307312,-0.0241089,-0.0195312,-0.0155029,-0.0111389,-0.00805664,-0.00476074,0.00134277,0.00692749,0.0129395,0.0185242,0.0211487,0.0226135,0.0219421,0.0195923,0.0160522,0.0103455,0.000793457,-0.012207,-0.0259094,-0.040741,-0.0560303,-0.0740967,-0.0899963,-0.102692,-0.113007,-0.120728,-0.125153,-0.129456,-0.129517,-0.126984,-0.122559,-0.11731,-0.109131,-0.100189,-0.0876465,-0.0721436,-0.0559692,-0.0393982,-0.0221558,-0.003479,0.016571,0.0386658,0.0605469,0.0810852,0.0993958,0.115448,0.12973,0.142548,0.150604,0.154175,0.151733,0.145569,0.135773,0.12442,0.113342,0.0991211,0.0838928,0.0674438,0.0528259,0.0420837,0.0340881,0.0260925,0.0167236,0.00415039,-0.00704956,-0.017395,-0.0260925,-0.0353699,-0.0440979,-0.0522766,-0.0576477,-0.0579834,-0.0543518,-0.0489807,-0.0446167,-0.0396118,-0.0316772,-0.0222168,-0.00967407,0.000396729,0.00698853,0.0126038,0.0162964,0.0206604,0.0227661,0.0238953,0.0216675,0.0187378,0.0116882,0.00598145,-0.000671387,-0.00643921,-0.0132751,-0.0222168,-0.032959,-0.0428162,-0.0526123,-0.0600586,-0.0696106,-0.0797424,-0.0913391,-0.0997925,-0.105896,-0.110077,-0.111328,-0.112091,-0.10791,-0.098053,-0.0837708,-0.065979,-0.0457764,-0.0273132,-0.00750732,0.0100098,0.0275269,0.0428772,0.0576477,0.0672607,0.0750427,0.0803223,0.0858459,0.0924072,0.098114,0.102692,0.104645,0.106323,0.10556,0.103973,0.0960388,0.0866394,0.0721436,0.0584412,0.0449524,0.0326233,0.0222168,0.0109253,0,-0.0120239,-0.0221558,-0.0294495,-0.0358276,-0.0410156,-0.0459595,-0.0475159,-0.0462341,-0.0411377,-0.0349121,-0.0287781,-0.0223389,-0.0147095,-0.0065918,-0.00088501,0.00323486,0.00598145,0.00759888,0.0085144,0.00637817,0.00582886,0.00598145,0.00784302,0.0104065,0.0115356,0.0123596,0.0105286,0.00772095,0.00402832,-0.00140381,-0.00698853,-0.0155029,-0.0226135,-0.0294495,-0.0362549,-0.0434875,-0.0497437,-0.0550232,-0.0589294,-0.0589905,-0.0604553,-0.0612793,-0.0598755,-0.0567932,-0.0524902,-0.0479736,-0.0430298,-0.0393982,-0.0322266,-0.0245667,-0.016571,-0.00967407,-0.00289917,0.00228882,0.00991821,0.0175171,0.0269775,0.033905,0.040863,0.0462341,0.0517578,0.0566406,0.0617371,0.0649109,0.0633545,0.0609436,0.057312,0.0520935,0.0455627,0.0375061,0.0273132,0.0161743,0.00631714,-0.00189209,-0.00839233,-0.0115967,-0.0147095,-0.0174561,-0.0188599,-0.0174561,-0.0151062,-0.0126953,-0.00991821,-0.00744629,-0.00576782,-0.0032959,-0.00195312,-0.00100708,0.00088501,0.00100708,0.00088501,0.00134277,0.0038147,0.00491333,0.00704956,0.00845337,0.00952148,0.00891113,0.00738525,0.0038147,0.000671387,-0.00424194,-0.00952148,-0.017395,-0.0244446,-0.0292053,-0.032074,-0.0323486,-0.028656,-0.0235596,-0.0169067,-0.00958252,-0.000793457,0.00650024,0.00952148,0.0100098,0.0088501,0.0071106,0.00357056,-0.000793457,-0.00665283,-0.011261,-0.0126953,-0.0136108,-0.0146179,-0.0162964,-0.016449,-0.0151062,-0.0142822,-0.0133667,-0.0141602,-0.0138855,-0.0134888,-0.0138855,-0.0140991,-0.0142212,-0.0136108,-0.0148926,-0.0158386,-0.015625,-0.0139465,-0.0108643,-0.00772095,-0.00363159,0.00146484,0.00698853,0.0126953,0.0176392,0.0216675,0.0240173,0.0241089,0.0238342,0.020874,0.0180664,0.0149536,0.012085,0.00827026,0.00524902,0.00335693,0.00497437,0.00643921,0.00878906,0.00924683,0.00939941,0.00891113,0.00979614,0.00912476,0.00704956,0.00363159,-0.00140381,-0.0085144,-0.013092,-0.0161133,-0.0178528,-0.0192566,-0.0179749,-0.0137024,-0.00750732,-0.000671387,0.00524902,0.00912476,0.0110779,0.0102539,0.00900269,0.00811768,0.00650024,0.00390625,0.00180054,0.00189209,0.00424194,0.00878906,0.0138855,0.0187988,0.0228271,0.0267639,0.029541,0.0307922,0.0273743,0.0227661,0.0182495,0.0154419,0.0104675,0.0038147,-0.00482178,-0.013092,-0.0203247,-0.028595,-0.0344238,-0.0409546,-0.0475159,-0.0522156,-0.0536194,-0.052887,-0.04953,-0.0454407,-0.0422668,-0.0380554,-0.0353699,-0.0320129,-0.0281982,-0.0241089,-0.0224915,-0.0202026,-0.016449,-0.0111389,-0.00323486,0.00436401,0.0140381,0.020874,0.0248413,0.0273743,0.0309448,0.0320129,0.0322876,0.0264282,0.0188599,0.0101318,0.00363159,-0.00106812,-0.00491333,-0.0085144,-0.012085,-0.0148315,-0.0118713,-0.00759888,-0.0032959,0.00128174,0.00323486,0.0062561,0.00637817,0.00845337,0.0100708,0.0126953,0.0114746,0.0110779,0.00906372,0.0110168,0.0143738,0.0185242,0.0220032,0.0249023,0.0256348,0.0281067,0.0313416,0.0334778,0.0333557,0.0319519,0.0273743,0.0240173,0.0230103,0.0231628,0.0214844,0.0173035,0.0109253,0.00598145,0.000457764,-0.0017395,-0.00408936,-0.00604248,-0.0085144,-0.0103455,-0.0102539,-0.0108643,-0.00839233,-0.00717163,-0.00891113,-0.0127563,-0.0184021,-0.0211487,-0.0254211,-0.0287781,-0.0342407,-0.0379333,-0.0392761,-0.0394592,-0.0375061,-0.0340271,-0.0282593,-0.0244446,-0.0226746,-0.0205383,-0.0179138,-0.0149536,-0.0150452,-0.0195312,-0.0245667,-0.0284424,-0.0313416,-0.0323486,-0.0323486,-0.0293884,-0.0260315,-0.0202637,-0.0114746,-0.00256348,0.00967407,0.0189209,0.0258484,0.0271912,0.0272522,0.025177,0.0218811,0.0171814,0.0110779,0.00637817,0.00408936,0.00424194,0.00765991,0.0106812,0.0137024,0.0175171,0.0196533,0.0198059,0.0202026,0.0184021,0.0147705,0.0110168,0.00698853,0.00448608,0.00442505,0.00704956,0.00872803,0.0101929,0.0134277,0.0167847,0.020752,0.0239563,0.0283813,0.0322266,0.0338135,0.0347595,0.0340271,0.0340271,0.0333557,0.0311279,0.0250854,0.0191345,0.0116882,0.00537109,0,-0.00698853,-0.0115967,-0.0132141,-0.0118713,-0.0106812,-0.00939941,-0.00952148,-0.0114746,-0.015564,-0.0212097,-0.0247803,-0.0283813,-0.0334778,-0.0385132,-0.0434265,-0.0465088,-0.0475769,-0.0470581,-0.0467834,-0.0423584,-0.0381775,-0.0338135,-0.0278625,-0.020813,-0.015625,-0.013031,-0.0118713,-0.0100098,-0.00811768,-0.00631714,-0.00497437,-0.00598145,-0.00811768,-0.0065918,-0.0038147,-0.0020752,0.000671387,0.000793457,0.00161743,0.00296021,0.00234985,0.00234985,0.000610352,-0.0017395,-0.00436401,-0.00592041,-0.0067749,-0.00665283,-0.00616455,-0.00604248,-0.00482178,-0.00268555,0.00262451,0.00744629,0.0135498,0.0169067,0.0195923,0.0221558,0.0263672,0.0308838,0.0324097,0.033905,0.0348206,0.0347595,0.0354309,0.0356445,0.0377197,0.0369263,0.0342407,0.0328979,0.0314026,0.0302124,0.0265198,0.0231628,0.0185852,0.0141602,0.00857544,0.0050354,0.00314331,0.000671387,-0.00402832,-0.00958252,-0.0154419,-0.0213318,-0.0261841,-0.0299377,-0.0344238,-0.0383301,-0.0387878,-0.0351562,-0.0309448,-0.0238953,-0.0162964,-0.0105286,-0.00738525,-0.00491333,-0.00448608,-0.00296021,-0.00436401,-0.00827026,-0.0120239,-0.0138855,-0.0143738,-0.0142822,-0.0128784,-0.0110779,-0.0118713,-0.0115356,-0.0106812,-0.00827026,-0.00979614,-0.0119324,-0.016449,-0.0200806,-0.0234375,-0.0241699,-0.0267029,-0.02771,-0.0288696,-0.0284424,-0.0256958,-0.0224304,-0.0190735,-0.0141602,-0.00906372,-0.0020752,0.00222778,0.00817871,0.0137634,0.0179138,0.0202637,0.0230103,0.0246887,0.0268555,0.0272522,0.0268555,0.0250244,0.0231018,0.0232239,0.0238342,0.0261841,0.0269165,0.0265198,0.025177,0.0233459,0.0218201,0.0211487,0.0184021,0.0140991,0.00906372,0.00357056,-0.000396729,-0.00442505,-0.00827026,-0.0118103,-0.0148926,-0.0152283,-0.0128784,-0.00750732,-0.00308228,0.000671387,0.00262451,0.00289917,0.00430298,0.00537109,0.00549316,0.00402832,0.00134277,-0.00128174,-0.00262451,-0.00314331,-0.00161743,0.000457764,-0.000457764,-0.0017395,-0.00180054,-0.000671387,-0.0017395,-0.0050354,-0.00958252,-0.0152893,-0.0205383,-0.0225525,-0.0240173,-0.0240173,-0.0265808,-0.0292664,-0.0303345,-0.0294495,-0.02771,-0.0250244,-0.0234985,-0.020874,-0.016449,-0.011261,-0.00430298,0.00222778,0.0062561,0.00827026,0.0100098,0.0115356,0.0114136,0.0126953,0.0129395,0.0128784,0.012146,0.013092,0.0151062,0.0169678,0.0187378,0.0181885,0.0152283,0.0108643,0.00750732,0.00375366,-0.000335693,-0.00424194,-0.00939941,-0.0139465,-0.016571,-0.0173035,-0.0167236,-0.016571,-0.016571,-0.0152283,-0.0126953,-0.00979614,-0.00665283,-0.00241089,-0.000335693,0.00241089,0.00241089,0.00430298,0.00604248,0.0085144,0.00979614,0.0100098,0.0112,0.013031,0.0160522,0.016571,0.0181274,0.0185852,0.0174561,0.0152283,0.0124207,0.00912476,0.00549316,0.00228882,-0.00228882,-0.00448608,-0.00637817,-0.00759888,-0.00900269,-0.0114136,-0.0144958,-0.0173035,-0.0202637,-0.0248413,-0.0272522,-0.0260315,-0.0237732,-0.0205383,-0.0158997,-0.0103455,-0.00482178,0.00128174,0.00524902,0.00906372,0.012207,0.0144348,0.0140381,0.0139465,0.0151062,0.0152893,0.0159607,0.0163879,0.0195923,0.0223389,0.0228271,0.0219421,0.0183105,0.0155029,0.0126038,0.00564575,-0.00189209,-0.00866699,-0.0128174,-0.0151062,-0.0184021,-0.0204163,-0.0221558,-0.0205383,-0.0192566,-0.0184021,-0.0170593,-0.0157776,-0.0157166,-0.0155029,-0.0155029,-0.0126038,-0.0100708,-0.00570679,-0.00280762,0.000335693,0.00213623,0.00402832,0.00491333,0.00408936,0.00396729,0.00335693,0.000457764,0.000549316,-0.0015564,-0.0017395,-0.00106812,0.000335693,0.000396729,-6.10352e-05,-0.000732422,0.000610352,-0.00195312,-0.00543213,-0.00891113,-0.0128784,-0.0138245,-0.016449,-0.0162964,-0.0155029,-0.0100098,-0.00704956,-0.00088501,0.00408936,0.0105286,0.0132141,0.0154419,0.0162964,0.017395,0.0172424,0.017395,0.0162964,0.0150452,0.0154419,0.0152283,0.0146179,0.0129395,0.0115356,0.00979614,0.00985718,0.00750732,0.00604248,0.00302124,0.000732422,-0.00088501,-0.00262451,-0.00598145,-0.00799561,-0.00973511,-0.0118713,-0.0140991,-0.0152893,-0.0135498,-0.00912476,-0.00280762,0.00268555,0.00906372,0.0145569,0.0170593,0.0179749,0.0147095,0.012207,0.00610352,-0.000335693,-0.00784302,-0.0122681,-0.0161743,-0.0187988,-0.0205383,-0.0216675,-0.0220032,-0.0198059,-0.0184021,-0.0170593,-0.0157166,-0.0166321,-0.0182495,-0.0179138,-0.0150452,-0.013092,-0.0110779,-0.0115967,-0.00985718,-0.00772095,-0.00390625,0.000213623,0.0032959,0.00592041,0.00805664,0.0115967,0.0134888,0.0159607,0.0157776,0.0137634,0.0106812,0.00683594,0.00369263,0.000213623,-0.00180054,-0.00436401,-0.00509644,-0.00442505,-0.000946045,0.00201416,0.00497437,0.00750732,0.00793457,0.00878906,0.00817871,0.00784302,0.0067749,0.00436401,0.0015564,-0.0012207,-0.00134277,-0.000396729,0.00140381,0.00323486,0.00509644,0.00717163,0.00872803,0.0088501,0.00692749,0.00302124,-6.10352e-05,-0.000457764,-0.00161743,-0.00140381,-0.00363159,-0.00415039,-0.00549316,-0.00778198,-0.00906372,-0.0085144,-0.00900269,-0.00924683,-0.00967407,-0.0105896,-0.0110168,-0.0114746,-0.0110779,-0.0104065,-0.00906372,-0.00759888,-0.0065918,-0.00616455,-0.00531006,-0.00448608,-0.00442505,-0.00396729,-0.00531006,-0.00476074,-0.0032959,-0.0012207,-0.0017395,-0.00189209,-0.00167847,0.000396729,0.0032959,0.00637817,0.00759888,0.00857544,0.00683594,0.00280762,0.00012207,-0.000213623,-0.000213623,-0.00106812,-0.00228882,-0.00256348,0.00012207,0.0050354,0.00924683,0.012207,0.0146179,0.0175781,0.0192566,0.0202026,0.0185852,0.0160522,0.0110779,0.00610352,0.00146484,-0.00289917,-0.00665283,-0.00906372,-0.0108032,-0.0138855,-0.0141602,-0.0125427,-0.00744629,-0.00241089,0.000671387,0.00323486,0.00643921,0.00906372,0.0115967,0.0108032,0.00979614,0.00604248,0.00228882,-0.003479,-0.0105896,-0.013092,-0.0146179,-0.0147705,-0.0148926,-0.0146179,-0.0133667,-0.0137024,-0.013092,-0.0147095,-0.0158386,-0.0184631,-0.0230103,-0.0256958,-0.0265808,-0.0255737,-0.025177,-0.0228882,-0.0193176,-0.0129395,-0.00558472,0.00201416,0.00811768,0.0108643,0.0117493,0.0111389,0.0105286,0.00811768,0.00524902,0.00357056,0.00213623,0.00134277,0.00088501,0.00100708,0.00415039,0.00784302,0.0101929,0.0109253,0.0114136,0.0124207,0.013092,0.0128784,0.0113525,0.00744629,0.00448608,0.00140381,0.000732422,0.0020752,0.00436401,0.00558472,0.00631714,0.0065918,0.00839233,0.012085,0.0145569,0.0144958,0.0134277,0.0128174,0.0138855,0.0152283,0.0140991,0.0123596,0.00900269,0.00524902,0.00100708,-0.00140381,-0.00180054,-0.00268555,-0.00262451,-0.00457764,-0.00491333,-0.00408936,-0.00457764,-0.00683594,-0.0104675,-0.0148926,-0.0175171,-0.0203247,-0.0246277,-0.0273743,-0.0291138,-0.0279846,-0.0268555,-0.0245667,-0.0206604,-0.0169678,-0.0158997,-0.0149536,-0.0151672,-0.0150452,-0.0149536,-0.0154419,-0.0137024,-0.0108032,-0.0065918,-0.00289917,0.00012207,0.00280762,0.00491333,0.00531006,0.00598145,0.00515747,0.0038147,0.00363159,0.00415039,0.00491333,0.00744629,0.00973511,0.0116882,0.0140381,0.0148315,0.0143738,0.013092,0.0110779,0.00738525,0.00369263,0.00088501,-0.000793457,-0.00189209,-0.0020752,-0.0015564,0.00106812,0.00341797,0.00543213,0.0062561,0.0071106,0.00793457,0.0083313,0.00759888,0.00732422,0.00717163,0.00805664,0.00991821,0.012146,0.0147095,0.0161743,0.0153809,0.0134888,0.0111389,0.00878906,0.00482178,0.000549316,-0.00341797,-0.00726318,-0.00991821,-0.0124817,-0.0140991,-0.0151062,-0.0167236,-0.0178528,-0.0205994,-0.0222778,-0.0226746,-0.0233459,-0.0232239,-0.0211487,-0.0180664,-0.0138245,-0.00872803,-0.00430298,6.10352e-05,0.00308228,0.00509644,0.0160522,0.01651,0.0152893,0.012085,0.0102539,0.0108643,0.00772095,0.00570679,0.00515747,0.00402832,0.00424194,0.00357056,0.00314331,0.00537109,0.00759888,0.00732422,0.00738525,0.00933838,0.0109253,0.0111389,0.0104675,0.00778198,0.00582886,0.00415039,0.00189209,0.00161743,0.00201416,0.000671387,-0.00088501,-0.000335693,-0.00128174,-0.00222778,-0.00463867,-0.00665283,-0.00784302,-0.00738525,-0.00750732,-0.00811768,-0.0104065,-0.0113525,-0.00933838,-0.00933838,-0.0136108,-0.0174561,-0.0186462,-0.0191345,-0.0212708,-0.020874,-0.0222168,-0.0225525,-0.0233459,-0.0238953,-0.0240173,-0.0215454,-0.0181885,-0.021759,-0.0224915,-0.0196533,-0.0169678,-0.0161133,-0.015625,-0.0137634,-0.0155029,-0.0152893,-0.0187378,-0.0209961,-0.0212708,-0.0213318,-0.0241089,-0.02771,-0.0303955,-0.0302124,-0.028717,-0.0299377,-0.0346985,-0.0376587,-0.0386047,-0.0370483,-0.0359192,-0.0361023,-0.0393372,-0.0397339,-0.0369263,-0.0349731,-0.0326843,-0.0317993,-0.0324097,-0.029541,-0.0241089,-0.0219421,-0.0214844,-0.0183105,-0.0128784,-0.00683594,-0.00256348,-0.000732422,-0.000396729,0.00424194,0.00891113,0.0118103,0.0115967,0.0123596,0.0131531,0.0124207,0.0146179,0.0151062,0.0181885,0.0184021,0.0177917,0.0157776,0.0148926,0.01651,0.0192566,0.0203247,0.0181274,0.0195312,0.0221558,0.0266418,0.0283203,0.0290527,0.0328064,0.0353699,0.0379944,0.039856,0.0406189,0.0402832,0.0434875,0.0465698,0.0446167,0.0445557,0.0437622,0.0420837,0.0406799,0.039856,0.0360413,0.0349121,0.0350952,0.0334778,0.0306702,0.0280457,0.0267029,0.0241699,0.0205994,0.0177917,0.0159607,0.0138245,0.0117493,0.0119324,0.012085,0.00985718,0.00262451,0.000610352,0.00463867,0.00671387,0.00531006,0.00463867,0.00564575,0.00732422,0.00912476,0.0117493,0.0103455,0.00738525,0.00442505,0.00558472,0.0083313,0.00491333,0.00195312,-0.00088501,-0.00195312,-0.00424194,-0.0124207,-0.020752,-0.0240173,-0.0257568,-0.0310059,-0.0334167,-0.0318909,-0.0318909,-0.0379333,-0.04422,-0.0428162,-0.0397339,-0.0424194,-0.0444946,-0.0440979,-0.0438843,-0.0484009,-0.0488586,-0.0462341,-0.0424805,-0.0415344,-0.0472412,-0.0478516,-0.0422058,-0.0337524,-0.0344849,-0.0429382,-0.0466309,-0.0400696,-0.0322266,-0.0334778,-0.0350342,-0.0346375,-0.0343628,-0.0343628,-0.0360413,-0.0428772,-0.0513306,-0.0593262,-0.0620728,-0.0619507,-0.0632935,-0.065094,-0.0631409,-0.0556946,-0.0518188,-0.0541077,-0.0518799,-0.0457764,-0.0337524,-0.0254211,-0.020752,-0.0178528,-0.0118103,-0.00402832,0.00616455,0.0149536,0.0162354,0.015625,0.020874,0.0281982,0.0347595,0.0352478,0.0340881,0.0350952,0.040802,0.0471802,0.0493164,0.0491333,0.052002,0.0587158,0.0624084,0.0620117,0.0620117,0.0623474,0.0633545,0.0624084,0.0619507,0.0639648,0.0653076,0.0633545,0.0590515,0.0588684,0.0621338,0.0610046,0.0592041,0.0617371,0.0643005,0.0645752,0.0634766,0.06073,0.06073,0.061676,0.0635681,0.0637512,0.0586548,0.0504761,0.0485229,0.0511475,0.048645,0.0437622,0.0397949,0.0381775,0.0397339,0.0387268,0.0383301,0.0355835,0.0336914,0.0320129,0.0328064,0.027771,0.0236816,0.0212097,0.019928,0.0166321,0.0115356,0.00906372,0.00515747,-0.0020752,-0.00979614,-0.01651,-0.0194092,-0.0213318,-0.0227661,-0.0281067,-0.0350952,-0.0380554,-0.037384,-0.0379944,-0.0424194,-0.0512695,-0.0547791,-0.0561829,-0.0563049,-0.0602722,-0.0677185,-0.069458,-0.065094,-0.0656433,-0.0682678,-0.0705261,-0.0691833,-0.0700684,-0.0720215,-0.0704041,-0.0677185,-0.0672607,-0.0677185,-0.069519,-0.0701294,-0.0733032,-0.0769043,-0.0771179,-0.0759583,-0.0747681,-0.0760498,-0.0758972,-0.0740356,-0.0734253,-0.0741577,-0.074646,-0.0743103,-0.0752869,-0.0763855,-0.0718079,-0.0661621,-0.0627441,-0.0603333,-0.0582581,-0.0510864,-0.0386047,-0.0278625,-0.0202637,-0.0155029,-0.0106812,-0.000793457,0.00967407,0.0161743,0.0204773,0.0214233,0.0204163,0.0228882,0.0283203,0.0337524,0.0366516,0.0360413,0.0334167,0.0344849,0.0401917,0.0448303,0.049408,0.0532227,0.0599365,0.0638123,0.0692749,0.0757751,0.0828247,0.0883179,0.0903931,0.0907288,0.0922241,0.0959778,0.101074,0.103882,0.10202,0.0973206,0.0925598,0.0899353,0.0900574,0.0887146,0.0869141,0.080658,0.0730286,0.0679321,0.065979,0.0632935,0.0541687,0.0458984,0.0395203,0.0339661,0.0291138,0.0228882,0.0198669,0.0186462,0.0124207,0.00524902,0.00482178,0.0100708,0.0146179,0.0185242,0.0214844,0.0244446,0.0271912,0.0290527,0.0322876,0.033905,0.0354919,0.0316162,0.0279846,0.0237732,0.0215454,0.0181885,0.0132141,0.00515747,-0.00408936,-0.0124817,-0.0209961,-0.0281067,-0.0374451,-0.0465698,-0.0547791,-0.0624084,-0.0707397,-0.0782471,-0.0848999,-0.090271,-0.0967102,-0.101868,-0.107727,-0.110474,-0.110199,-0.11142,-0.113098,-0.110992,-0.105896,-0.100403,-0.0963745,-0.0904846,-0.0808716,-0.0690613,-0.0639648,-0.0608826,-0.0560303,-0.0479126,-0.041687,-0.0383911,-0.0390625,-0.0399475,-0.0389404,-0.0401917,-0.0432129,-0.0500793,-0.0587769,-0.0636292,-0.0647583,-0.0632324,-0.0631409,-0.0663757,-0.0675049,-0.0624084,-0.053894,-0.0448914,-0.0414734,-0.0374451,-0.0311279,-0.0205383,-0.00958252,-0.00140381,0.00772095,0.0162964,0.021759,0.0283203,0.0349731,0.0437012,0.0517578,0.0576477,0.0614624,0.0647583,0.0682678,0.0749817,0.0807495,0.0867004,0.0903931,0.0924683,0.0924683,0.0916138,0.0940247,0.0962524,0.0949097,0.0905457,0.0848999,0.0814819,0.0799255,0.0771179,0.0730896,0.0681763,0.061676,0.0561829,0.053009,0.0510864,0.049408,0.0469666,0.0447083,0.041626,0.0397949,0.0400696,0.0390625,0.036499,0.0335693,0.0284424,0.024353,0.0193176,0.0194702,0.0193176,0.0174561,0.0122681,0.0109253,0.0119324,0.0148315,0.0174561,0.0174561,0.0184631,0.020874,0.021759,0.0211487,0.0209961,0.0193176,0.0161133,0.0108032,0.00805664,0.00375366,-0.00189209,-0.00845337,-0.0127563,-0.0171814,-0.0238342,-0.0334778,-0.0404663,-0.0441589,-0.0467834,-0.0536194,-0.0606079,-0.0631409,-0.0653076,-0.0687866,-0.0752869,-0.0801392,-0.0842896,-0.0863647,-0.0883179,-0.0895996,-0.0871277,-0.0842896,-0.0849609,-0.0828247,-0.0785217,-0.0743103,-0.0706787,-0.0700684,-0.065155,-0.0557861,-0.0479736,-0.041687,-0.0358276,-0.0284424,-0.0261841,-0.0220947,-0.0200806,-0.0181274,-0.0178528,-0.0159607,-0.0131531,-0.0176392,-0.0234985,-0.0268555,-0.0237732,-0.021759,-0.0247803,-0.0314026,-0.0358276,-0.0334778,-0.0281067,-0.0231018,-0.0219421,-0.020874,-0.0171814,-0.0125427,-0.00827026,-0.00424194,0.00335693,0.00637817,0.00598145,0.00683594,0.0107422,0.0172424,0.0250854,0.0303955,0.0332336,0.0349731,0.0397339,0.0463867,0.0522766,0.0582581,0.0606079,0.0630188,0.0658264,0.0673218,0.0675964,0.0682678,0.0691223,0.0633545,0.0551147,0.0483093,0.0469666,0.0484009,0.0456238,0.0394592,0.0348206,0.032135,0.0292053,0.0263062,0.0272522,0.0247803,0.0214844,0.0181274,0.0154419,0.0138245,0.011261,0.00772095,0.00341797,0.000946045,-0.00201416,-0.00296021,-0.00112915,0.0012207,0.00112915,0.00201416,0.00234985,0.00491333,0.00811768,0.0114746,0.0134277,0.0149536,0.0183105,0.0195312,0.0190735,0.0166321,0.0157776,0.0196533,0.0248413,0.0245056,0.0222778,0.0193176,0.0191956,0.0218811,0.019989,0.0151062,0.0088501,0.00671387,0.00463867,0.00128174,-0.000671387,-0.00308228,-0.00665283,-0.0122681,-0.0190735,-0.0253601,-0.0283813,-0.0282593,-0.027771,-0.0273743,-0.0256348,-0.0237732,-0.0231018,-0.0220032,-0.0204163,-0.0187378,-0.0152893,-0.0161743,-0.0137024,-0.0137634,-0.0114746,-0.00784302,-0.00750732,-0.0115356,-0.0158997,-0.0171204,-0.0166321,-0.0169678,-0.0209351,-0.0224915,-0.0222168,-0.0244446,-0.0265808,-0.0299988,-0.0319519,-0.0314026,-0.0318909,-0.0353088,-0.0387878,-0.0381165,-0.0371704,-0.0388489,-0.041626,-0.0430298,-0.0441589,-0.0449524,-0.0443726,-0.040741,-0.0365906,-0.0361023,-0.0349121,-0.032135,-0.0265198,-0.0209351,-0.0181885,-0.0143738,-0.00939941,-0.00650024,-0.00592041,-0.00463867,-0.00296021,-0.000610352,-0.00424194,-0.00732422,-0.00778198,-0.00845337,-0.00946045,-0.013031,-0.0138855,-0.0113525,-0.0109253,-0.0102539,-0.00845337,-0.003479,0.00167847,0.00543213,0.00811768,0.0134888,0.0181885,0.0204163,0.0232849,0.0279236,0.032959,0.0346985,0.0371704,0.0404663,0.045105,0.0483093,0.0498657,0.0522156,0.0559082,0.0566406,0.0571289,0.057373,0.0601196,0.0592041,0.0578613,0.0553589,0.0526123,0.0467224,0.0431519,0.0379333,0.0318909,0.0270996,0.0205383,0.0152893,0.0125427,0.0113525,0.0110168,0.00939941,0.00616455,0.00759888,0.00900269,0.0110779,0.0128784,0.0155029,0.0183105,0.0202026,0.0224915,0.0237732,0.0260315,0.0271912,0.0267639,0.0249634,0.0241089,0.0237732,0.0214233,0.0180664,0.0161743,0.0140381,0.0105896,0.00436401,0.000946045,-0.0012207,-0.00430298,-0.0109253,-0.0185242,-0.0255127,-0.0288696,-0.0323486,-0.037323,-0.0467834,-0.0532837,-0.0562439,-0.0576477,-0.0602722,-0.0637512,-0.0656433,-0.0643616,-0.0619507,-0.060791,-0.0595398,-0.0579834,-0.057373,-0.056366,-0.0531616,-0.049408,-0.0479126,-0.0479736,-0.0472412,-0.0444336,-0.0410767,-0.0399475,-0.0418091,-0.0418091,-0.040802,-0.0375061,-0.0348206,-0.0363159,-0.0401917,-0.0420227,-0.040863,-0.0394592,-0.0406799,-0.0425415,-0.0435486,-0.0423584,-0.0390015,-0.0362549,-0.0357056,-0.0357056,-0.0341492,-0.0311279,-0.0287781,-0.0255737,-0.0205994,-0.0135498,-0.00845337,-0.00604248,-0.00296021,0.000335693,0.00524902,0.00765991,0.00839233,0.00906372,0.0100098,0.00958252,0.0103455,0.0118103,0.0152893,0.0181885,0.0177307,0.0162964,0.0181885,0.0222778,0.0249023,0.0258484,0.0263062,0.0262451,0.0262451,0.0285339,0.0314636,0.0338135,0.0346375,0.0353088,0.0371704,0.0386047,0.0397949,0.040802,0.0419312,0.0402832,0.0396729,0.0387878,0.0381165,0.0380554,0.0379944,0.0340271,0.0318909,0.0299988,0.0293884,0.0280457,0.0237732,0.0220947,0.0194092,0.0174561,0.0166321,0.0189209,0.024353,0.0316772,0.0358276,0.0383301,0.0441589,0.0553589,0.0635681,0.0646973,0.061615,0.062561,0.0681152,0.0690613,0.0640869,0.057373,0.0489807,0.0391235,0.0314026,0.0229492,0.0161133,0.00799561,0.000549316,-0.00845337,-0.0141602,-0.015625,-0.0159607,-0.0158997,-0.0158997,-0.0148315,-0.00872803,-0.00308228,0.00302124,0.00891113,0.012146,0.0157776,0.0189209,0.0201416,0.0184021,0.017395,0.0152283,0.0135498,0.00805664,-0.00256348,-0.0115356,-0.0167236,-0.020874,-0.0269165,-0.0353699,-0.0418091,-0.0452271,-0.046051,-0.0453796,-0.0462341,-0.0480652,-0.0478516,-0.0459595,-0.0419312,-0.0363159,-0.0326843,-0.0312195,-0.0292053,-0.0275269,-0.0249634,-0.0241089,-0.024231,-0.0236816,-0.024292,-0.0256958,-0.0281067,-0.0306702,-0.0332336,-0.0354919,-0.0379944,-0.0405273,-0.0418701,-0.0437012,-0.0428772,-0.0410156,-0.0397339,-0.0385132,-0.0374451,-0.0355835,-0.0334167,-0.0301208,-0.0283203,-0.0256348,-0.0248413,-0.0234985,-0.0237732,-0.0255737,-0.0262451,-0.0264282,-0.0255127,-0.0263672,-0.028595,-0.0301208,-0.0300598,-0.0299377,-0.029541,-0.0274353,-0.0257568,-0.0219421,-0.0185242,-0.0145569,-0.0100708,-0.00650024,-0.000549316,0.00408936,0.00866699,0.0106812,0.0150452,0.0183105,0.0201416,0.0221558,0.0237732,0.0250244,0.0256958,0.0249023,0.0240173,0.0255737,0.0263062,0.0258484,0.024292,0.025177,0.0272522,0.0285339,0.0296631,0.0312805,0.0344849,0.0361023,0.0378418,0.0403442,0.0429382,0.045105,0.0477905,0.0478516,0.0487976,0.0489197,0.048645,0.0479736,0.0469666,0.0474548,0.0454407,0.0434875,0.0418701,0.0409546,0.038269,0.0355835,0.0343018,0.0339661,0.0332947,0.032135,0.0316162,0.0310669,0.0301208,0.0296631,0.0296631,0.0293274,0.028656,0.0274353,0.0258484,0.0252991,0.0241699,0.0220032,0.0179749,0.0142822,0.0114746,0.0083313,0.00268555,-0.00234985,-0.00558472,-0.00918579,-0.0142822,-0.0170593,-0.0195923,-0.0232849,-0.0236816,-0.0265808,-0.028595,-0.0304565,-0.0305481,-0.0314636,-0.0326843,-0.03302,-0.0350342,-0.0348206,-0.0356445,-0.036377,-0.0371094,-0.0377197,-0.0393982,-0.0414734,-0.0413513,-0.0424194,-0.0432129,-0.0429382,-0.04422,-0.0440979,-0.0448303,-0.0438232,-0.0436096,-0.0401306,-0.0391235,-0.037262,-0.0361633,-0.0336914,-0.0312195,-0.0302734,-0.0310669,-0.0316772,-0.0315552,-0.0320129,-0.0316772,-0.0328979,-0.0318909,-0.032135,-0.0316162,-0.0305481,-0.0293884,-0.0284424,-0.0281067,-0.0267639,-0.0234375,-0.0195312,-0.0184631,-0.0162964,-0.0134888,-0.0117493,-0.0083313,-0.00637817,-0.00598145,-0.00509644,-0.00448608,-0.00424194,-0.00402832,-0.00430298,-0.0050354,-0.00576782,-0.00576782,-0.00564575,-0.00524902,-0.00442505,-0.00274658,-0.00146484,6.10352e-05,0.00195312,0.00476074,0.00692749,0.00933838,0.012146,0.0141602,0.0159607,0.0177307,0.0182495,0.0195923,0.0202026,0.0201416,0.0186462,0.0192566,0.0192566,0.0191345,0.0185242,0.0178528,0.0185242,0.0188599,0.0181885,0.0177307,0.0191956,0.0209961,0.0228271,0.0231018,0.0240173,0.0258484,0.0256958,0.0278625,0.0297852,0.0309448,0.0317383,0.032135,0.0328979,0.0328979,0.0331421,0.0328979,0.0324707,0.0316772,0.0296631,0.0289917,0.0274353,0.02771,0.0265198,0.0255127,0.0270386,0.0268555,0.0249634,0.0235596,0.0274353,0.0293274,0.0270386,0.0221558,0.0195923,0.0185852,0.0168457,0.0124817,0.00765991,0.00564575,0.00604248,0.0020752,-0.00289917,-0.00537109,-0.00457764,-0.00537109,-0.00891113,-0.0124207,-0.012207,-0.0120239,-0.0129395,-0.0148315,-0.0157166,-0.0154419,-0.0141602,-0.0154419,-0.015564,-0.0147095,-0.0134888,-0.0134277,-0.0161743,-0.0171204,-0.0195312,-0.0192566,-0.020813,-0.0233459,-0.0267029,-0.027771,-0.025238,-0.0265808,-0.028656,-0.0303955,-0.0297241,-0.0285339,-0.0287781,-0.0304565,-0.0306091,-0.0289307,-0.028717,-0.0275269,-0.0284424,-0.0271912,-0.027771,-0.0270996,-0.0272522,-0.0267029,-0.0250854,-0.0247803,-0.0236816,-0.024353,-0.0236206,-0.0234985,-0.0227661,-0.0214844,-0.020813,-0.0214233,-0.0192566,-0.0163879,-0.0129395,-0.013092,-0.0132141,-0.0108643,-0.00872803,-0.00717163,-0.00692749,-0.00396729,-0.00228882,-0.00289917,-0.00280762,-0.00323486,-0.00396729,-0.0032959,-0.00296021,-0.00408936,-0.00415039,-0.00375366,-0.00363159,-0.00424194,-0.00268555,-0.000274658,0.000610352,0.0015564,0.00390625,0.00549316,0.00811768,0.00991821,0.0114746,0.0128174,0.0128784,0.0138855,0.0144348,0.0161743,0.016449,0.0167236,0.0168457,0.0175781,0.0173035,0.0189209,0.0194702,0.0185852,0.0188599,0.0196533,0.0188599,0.0194092,0.0210876,0.0257568,0.0285339,0.0323486,0.0419312,0.0596008,0.077179,0.0812073,0.0711365,0.0654907,0.0690613,0.0693359,0.0549622,0.0391235,0.0294495,0.0276489,0.0205383,0.00784302,-0.00665283,-0.0162964,-0.0236206,-0.032074,-0.036377,-0.0344238,-0.0230103,-0.00817871,0.0101929,0.0297241,0.0453796,0.0561829,0.0627441,0.0675964,0.0679321,0.0597839,0.0473938,0.0381775,0.0361633,0.0324707,0.020752,0.00793457,-0.0050354,-0.015564,-0.0269775,-0.0309448,-0.0353088,-0.0375061,-0.0397339,-0.0378418,-0.0259094,-0.0105286,-0.00402832,-0.00436401,-0.00302124,0.00195312,-0.00222778,-0.0126038,-0.0276489,-0.0376587,-0.049469,-0.0576477,-0.060791,-0.0577087,-0.0551147,-0.0563049,-0.0556335,-0.0499878,-0.0461731,-0.0429382,-0.0375977,-0.0264282,-0.0190735,-0.0227661,-0.0313416,-0.0346985,-0.0324707,-0.0353699,-0.0489807,-0.0630798,-0.0741577,-0.0822754,-0.0916748,-0.0983276,-0.101074,-0.101624,-0.100952,-0.0967102,-0.0889282,-0.0783997,-0.0673828,-0.058197,-0.0468445,-0.0383301,-0.0332947,-0.0296021,-0.0239563,-0.0221558,-0.0224304,-0.0221558,-0.0228271,-0.0239563,-0.0238953,-0.0245056,-0.0214233,-0.0190735,-0.0181885,-0.0142212,-0.0020752,0.0088501,0.0185852,0.024353,0.0296631,0.036377,0.0447693,0.0481262,0.0458374,0.0438843,0.0431519,0.041748,0.0378418,0.0353088,0.0392761,0.0422058,0.0418701,0.0440979,0.0555115,0.0696106,0.0809326,0.0922241,0.104889,0.115021,0.120331,0.124176,0.128937,0.132416,0.130127,0.121399,0.112152,0.102142,0.092804,0.0821533,0.0708618,0.0589905,0.0518799,0.0464478,0.0428162,0.0377197,0.0334167,0.032074,0.0339661,0.0334167,0.032074,0.0314636,0.0314026,0.0273743,0.0210876,0.0172424,0.0178528,0.0185242,0.0178528,0.0171204,0.0153809,0.0134888,0.012146,0.0122681,0.0125427,0.0109253,0.0107422,0.013092,0.0123596,0.00515747,-0.00497437,-0.0150452,-0.0236816,-0.0327454,-0.0479126,-0.0667725,-0.0812683,-0.09021,-0.0963745,-0.105835,-0.11792,-0.126373,-0.125031,-0.121613,-0.123901,-0.126709,-0.129059,-0.126495,-0.121277,-0.118866,-0.118713,-0.119202,-0.115631,-0.111084,-0.111938,-0.114563,-0.113159,-0.108063,-0.105499,-0.106567,-0.109467,-0.112,-0.114563,-0.115906,-0.110931,-0.101807,-0.0910645,-0.0838928,-0.0783997,-0.0716248,-0.0589905,-0.0434265,-0.0290527,-0.0187378,-0.0111389,-0.00845337,-0.00402832,0.00357056,0.0144958,0.0205383,0.0226135,0.024353,0.029541,0.0378418,0.0492554,0.0604553,0.0679321,0.0706177,0.0710754,0.0745544,0.0851135,0.0991211,0.10791,0.108063,0.106049,0.109863,0.118866,0.128601,0.13678,0.139923,0.138733,0.136993,0.140259,0.145905,0.153076,0.157257,0.155762,0.148804,0.142609,0.137451,0.135437,0.131805,0.12262,0.106506,0.0886536,0.0757141,0.0698547,0.0643005,0.0546875,0.0426025,0.0293884,0.0196533,0.0149536,0.0171204,0.0200806,0.0185852,0.013092,0.00912476,0.0114136,0.0187988,0.0265198,0.0322266,0.0339661,0.0340881,0.0311279,0.0297241,0.0310669,0.0341492,0.0315552,0.0215454,0.0112,0.00256348,-0.00228882,-0.00973511,-0.0168457,-0.0270996,-0.0393372,-0.0551147,-0.0718079,-0.0819397,-0.0903931,-0.0996094,-0.115692,-0.131012,-0.143829,-0.151398,-0.15625,-0.1586,-0.160797,-0.162811,-0.163025,-0.160522,-0.153625,-0.145172,-0.137848,-0.131195,-0.126495,-0.120667,-0.114624,-0.111664,-0.107666,-0.102814,-0.100342,-0.104706,-0.112762,-0.116302,-0.109741,-0.100067,-0.0940857,-0.0941467,-0.0906067,-0.0798035,-0.0649719,-0.049408,-0.0376587,-0.0280457,-0.019928,-0.0145569,-0.00973511,-0.00296021,0.00637817,0.0108643,0.0113525,0.00817871,0.0113525,0.0203247,0.0324097,0.0403442,0.0434875,0.0471802,0.0548401,0.0674438,0.0808716,0.0922241,0.10376,0.112091,0.118469,0.12384,0.130798,0.139252,0.146118,0.151825,0.149384,0.147705,0.1492,0.154907,0.160065,0.160187,0.156708,0.148987,0.142273,0.136993,0.132751,0.126312,0.115173,0.100616,0.0842896,0.0705261,0.0596619,0.049408,0.036438,0.0227661,0.0112,0.00296021,-0.00213623,-0.00302124,-0.00256348,-0.00457764,-0.0101929,-0.0104675,-0.00564575,0.00128174,0.0085144,0.0151672,0.0216675,0.0256348,0.0279846,0.0292664,0.0322266,0.0376587,0.0381165,0.032135,0.024231,0.0169678,0.0117493,0.00543213,-0.00335693,-0.0147705,-0.028717,-0.0445557,-0.0603943,-0.0747681,-0.0871887,-0.102875,-0.118042,-0.133148,-0.145782,-0.154633,-0.160339,-0.163086,-0.166321,-0.169403,-0.169861,-0.166107,-0.158325,-0.149048,-0.137787,-0.127777,-0.117249,-0.106903,-0.0975952,-0.091156,-0.0835571,-0.0758362,-0.0714111,-0.0714111,-0.0734253,-0.0708618,-0.0654907,-0.06073,-0.058136,-0.0579834,-0.0564575,-0.0510864,-0.0421448,-0.0322266,-0.0238342,-0.0170593,-0.0101929,-0.00906372,-0.00958252,-0.00610352,-0.00140381,0.000732422,-0.00543213,-0.0110168,-0.0110779,-0.00357056,0.00558472,0.011261,0.0139465,0.0193176,0.0273743,0.0381165,0.0506592,0.0676575,0.0860291,0.0999451,0.106567,0.113495,0.121826,0.13147,0.136841,0.137451,0.136719,0.134979,0.135559,0.139252,0.142334,0.143829,0.139923,0.134491,0.127655,0.122406,0.117188,0.111084,0.101288,0.0877075,0.0732117,0.0588684,0.0469666,0.0341492,0.0204163,0.00759888,-0.00598145,-0.0175171,-0.0241089,-0.0224915,-0.0220032,-0.0218201,-0.0229492,-0.0220032,-0.0180664,-0.0135498,-0.00698853,-0.000610352,0.00576782,0.0105286,0.0111389,0.0127563,0.0151672,0.0196533,0.0204163,0.0177917,0.0115967,0.00564575,0.000549316,-0.00424194,-0.00866699,-0.015625,-0.0238953,-0.0296631,-0.0337524,-0.0406799,-0.0481873,-0.0544434,-0.0559082,-0.0602112,-0.069458,-0.0764465,-0.0803223,-0.0836182,-0.0887146,-0.091156,-0.0914001,-0.0931396,-0.094635,-0.0920105,-0.089386,-0.0874634,-0.0862427,-0.0797424,-0.0740967,-0.0683899,-0.0635681,-0.0551147,-0.0457764,-0.0381775,-0.0340271,-0.03302,-0.0336304,-0.0307312,-0.0249023,-0.0235596,-0.0250854,-0.0238342,-0.0195312,-0.0175781,-0.0172424,-0.0159607,-0.0104065,-0.00692749,-0.00692749,-0.00726318,-0.00549316,-0.00341797,-0.00234985,-0.000671387,-0.00262451,-0.00570679,-0.0108032,-0.0140991,-0.0159607,-0.016449,-0.0169678,-0.0175781,-0.016571,-0.0132141,-0.0085144,-0.00201416,0.00631714,0.0153809,0.0222778,0.0274353,0.03302,0.0399475,0.0471191,0.0510864,0.0526733,0.0549011,0.056366,0.057251,0.0587158,0.062561,0.0672607,0.0704651,0.0729675,0.0759583,0.0792542,0.0817566,0.0856323,0.0884705,0.0876465,0.0851135,0.0798035,0.074646,0.0672607,0.0599976,0.0521545,0.0419312,0.0308838,0.0189819,0.0105896,0.00268555,-0.00357056,-0.0085144,-0.0133667,-0.0152893,-0.0171204,-0.0163879,-0.0137024,-0.0104675,-0.00726318,-0.0050354,-0.00296021,-0.00012207,0.0050354,0.0104675,0.0145569,0.0149536,0.0153809,0.0137024,0.0144348,0.0132751,0.0132751,0.0110779,0.0101318,0.00827026,0.00692749,0.00698853,0.00616455,0.00531006,0.0038147,0.00274658,-0.00180054,-0.00683594,-0.0113525,-0.0148315,-0.0169067,-0.0205994,-0.0281067,-0.0340881,-0.0374451,-0.0383911,-0.0418701,-0.0446167,-0.0466309,-0.0459595,-0.0461121,-0.0476379,-0.0512085,-0.052887,-0.0523376,-0.0508728,-0.0505981,-0.0517578,-0.0513306,-0.0513306,-0.0477905,-0.0437012,-0.0400085,-0.0403442,-0.0410767,-0.0420837,-0.0401917,-0.0383301,-0.0390625,-0.0400085,-0.0406189,-0.0406189,-0.0401306,-0.0390625,-0.037384,-0.0381775,-0.0404053,-0.041687,-0.0414734,-0.0405273,-0.0404053,-0.0422058,-0.0414124,-0.0418091,-0.0406189,-0.0404663,-0.036499,-0.0326233,-0.0288696,-0.0263672,-0.024231,-0.0198059,-0.0148315,-0.0085144,-0.0020752,0.00222778,0.00784302,0.0112,0.016449,0.020813,0.0256958,0.0290527,0.0298767,0.0312805,0.0331421,0.0354919,0.0371094,0.0377808,0.0399475,0.0413513,0.041626,0.0411987,0.041626,0.0441589,0.0456238,0.0436096,0.0430908,0.0401306,0.0386658,0.0354309,0.0308838,0.0279846,0.0260315,0.0250244,0.0238953,0.024353,0.0263672,0.0281982,0.0304565,0.0334778,0.039856,0.045166,0.0522766,0.0597839,0.0664978,0.0717468,0.0764465,0.0791931,0.0804749,0.0757751,0.0701294,0.0619507,0.0592041,0.0542908,0.0462952,0.0368347,0.0282593,0.0235596,0.0195312,0.0151062,0.00939941,0.00683594,0.00784302,0.00985718,0.0119324,0.0138245,0.0162964,0.0185852,0.0206604,0.0201416,0.0206604,0.0204773,0.0180664,0.0146179,0.012207,0.00765991,0.00161743,-0.00457764,-0.0108032,-0.0150452,-0.020752,-0.0238953,-0.0265808,-0.0292664,-0.0315552,-0.0322876,-0.0323486,-0.0330811,-0.0344849,-0.0357056,-0.0361633,-0.0345764,-0.0346985,-0.0349731,-0.0361023,-0.0381165,-0.0411377,-0.0458374,-0.0505981,-0.0546265,-0.0579834,-0.0621338,-0.0658264,-0.0688477,-0.0711975,-0.0728149,-0.0739746,-0.072876,-0.0723572,-0.0712891,-0.0691223,-0.0668335,-0.0630798,-0.058197,-0.0549622,-0.0523376,-0.0498047,-0.0469055,-0.0440979,-0.0422668,-0.0411377,-0.0406799,-0.0397339,-0.0390625,-0.0369873,-0.0356445,-0.0337524,-0.0305481,-0.0289917,-0.0257568,-0.0226746,-0.0195923,-0.0158386,-0.0145569,-0.011261,-0.0083313,-0.00543213,-0.00415039,-0.00314331,-0.00106812,-0.000457764,0.000610352,0.000274658,-0.000335693,0.000213623,0.000457764,-0.000274658,0.00012207,0.000732422,0.00280762,0.00436401,0.00592041,0.00778198,0.0103455,0.0137024,0.0161743,0.0190735,0.0236206,0.02771,0.0320129,0.0354309,0.0385132,0.0429382,0.0468445,0.0507507,0.0525513,0.0559082,0.0578613,0.0594482,0.0605469,0.0609436,0.0624695,0.0626221,0.0636292,0.0643005,0.0648193,0.0662537,0.0661621,0.0661621,0.06604,0.0666504,0.0673218,0.0668335,0.0664368,0.0649719,0.0635681,0.0619507,0.0610657,0.0596008,0.0567932,0.0549011,0.0526733,0.0495911,0.0470581,0.0435486,0.0422058,0.0380554,0.0347595,0.0319519,0.0292053,0.0257568,0.0227661,0.0202026,0.0167236,0.0135498,0.00985718,0.00793457,0.00531006,0.000946045,-0.00241089,-0.00582886,-0.0106812,-0.016449,-0.0206604,-0.0248413,-0.0305481,-0.0353088,-0.0409546,-0.0457153,-0.0491943,-0.0532227,-0.0569153,-0.0609436,-0.0637512,-0.0654297,-0.0683899,-0.0710144,-0.0724182,-0.0720825,-0.0716248,-0.0725403,-0.0718689,-0.0711975,-0.0712891,-0.0696106,-0.0687866,-0.0670471,-0.0653687,-0.0632324,-0.0614624,-0.0585327,-0.0559082,-0.0548401,-0.0515442,-0.0508728,-0.0491943,-0.0490723,-0.0481262,-0.0467834,-0.0462952,-0.0463867,-0.0464478,-0.0467224,-0.0463867,-0.0462341,-0.045105,-0.0440979,-0.0412903,-0.039856,-0.0374451,-0.0352478,-0.032074,-0.028717,-0.0263672,-0.0239563,-0.0203247,-0.0177307,-0.0145569,-0.0125427,-0.00946045,-0.00759888,-0.00683594,-0.0050354,-0.00408936,-0.00335693,-0.00189209,-0.000793457,0.00280762,0.00430298,0.00732422,0.00900269,0.0113525,0.0147705,0.0169678,0.0205383,0.0238953,0.0282593,0.0318909,0.0366516,0.0411377,0.0457764,0.0501404,0.0543518,0.0587769,0.0619507,0.0641479,0.0666504,0.0687866,0.0701904,0.0705261,0.070343,0.0715332,0.0720825,0.0711365,0.070343,0.0700073,0.0693359,0.0687866,0.0676575,0.066925,0.0671692,0.0658264,0.0654907,0.0636902,0.0628967,0.0611267,0.0591125,0.0578613,0.0569153,0.0551147,0.0534973,0.050415,0.0483093,0.0467834,0.0443726,0.0429382,0.0406189,0.0380554,0.0356445,0.0319519,0.0283813,0.0240173,0.0212097,0.0167236,0.012085,0.0085144,0.00436401,-0.000946045,-0.00616455,-0.0108032,-0.0157166,-0.0190735,-0.0234375,-0.0270996,-0.0298767,-0.0346375,-0.0377808,-0.040802,-0.0436096,-0.0457764,-0.0485229,-0.0503235,-0.0524902,-0.0540161,-0.0550232,-0.0551758,-0.0561218,-0.056366,-0.0564575,-0.0565186,-0.0568542,-0.057251,-0.0579224,-0.058136,-0.0585938,-0.0598755,-0.0602112,-0.0614014,-0.0622253,-0.0634766,-0.0645752,-0.0663147,-0.0664978,-0.0671082,-0.0675049,-0.0671692,-0.0665894,-0.0656433,-0.0644226,-0.0628052,-0.0609436,-0.0590515,-0.0556946,-0.0541077,-0.0518188,-0.048645,-0.0462952,-0.0423584,-0.0396118,-0.0369263,-0.0347595,-0.0331421,-0.0310669,-0.0294495,-0.028717,-0.0270386,-0.0259094,-0.025238,-0.0248413,-0.0235596,-0.0212708,-0.0194092,-0.0172424,-0.0142212,-0.00946045,-0.00408936,0.000671387,0.00738525,0.0122681,0.0195923,0.0240173,0.0281982,0.032959,0.0379333,0.0412903,0.0434265,0.0461731,0.0498047,0.0512085,0.0534363,0.0542297,0.0558472,0.057251,0.0589294,0.0596008,0.0610046,0.0634155,0.0643616,0.0652466,0.0667114,0.0675964,0.0691833,0.069458,0.0699463,0.0691223,0.0693359,0.068512,0.0675964,0.0673218,0.0667114,0.0665894,0.0644836,0.0634766,0.0619507,0.0612183,0.0600586,0.0576477,0.0562439,0.0548401,0.0536804,0.0512695,0.0502014,0.0482483,0.0467224,0.0452271,0.0430908,0.0410767,0.0383911,0.036377,0.0335693,0.0309448,0.0285339,0.0256958,0.0227661,0.0194702,0.015564,0.0122681,0.00793457,0.0038147,-0.00100708,-0.00415039,-0.0083313,-0.0118713,-0.0157166,-0.0188599,-0.0222778,-0.0261841,-0.0297852,-0.0334167,-0.0371704,-0.0418091,-0.0459595,-0.0504761,-0.0547791,-0.0587769,-0.0626221,-0.0657043,-0.0697937,-0.0730896,-0.0762329,-0.0787964,-0.080658,-0.0822754,-0.08255,-0.0823364,-0.081665,-0.0812683,-0.0803223,-0.0787964,-0.077179,-0.0753784,-0.073761,-0.0712891,-0.0688477,-0.0658264,-0.0636902,-0.0614624,-0.0584412,-0.056366,-0.0552368,-0.0541077,-0.0523376,-0.0514221,-0.049469,-0.0495911,-0.0476379,-0.0470581,-0.0452881,-0.0432129,-0.0412903,-0.0401917,-0.0368347,-0.0345764,-0.0322266,-0.0297852,-0.0255737,-0.0227661,-0.0195312,-0.0161133,-0.0125427,-0.00906372,-0.00717163,-0.00491333,-0.00112915,0.00140381,0.00442505,0.00744629,0.0102539,0.0134277,0.0166321,0.019928,0.0224304,0.0261841,0.0282593,0.0307922,0.0340271,0.0370483,0.0415344,0.04422,0.0481873,0.0505371,0.0549011,0.057312,0.06073,0.0619507,0.0645752,0.0671692,0.0696106,0.0724182,0.0805359,0.0931396,0.0914917,0.0769043,0.0730896,0.0849609,0.103424,0.104034,0.082428,0.0533447,0.0610046,0.0993958,0.0922241,0.0383301,0.0369263,0.0988464,0.123505,0.0856323,0.0420837,0.0344849,0.0439453,0.0420837,0.0261841,0.0126953,0.0131531,0.0136108,0.0158997,0.0320129,0.0445557,0.052002,0.057312,0.0583801,0.0687866,0.0899353,0.0992737,0.0736389,0.0569763,0.0643616,0.0622864,0.0468445,0.0190735,-0.00442505,-0.0246887,-0.0344849,-0.0387268,-0.0379333,-0.0403442,-0.0632935,-0.0822144,-0.0776367,-0.0681763,-0.0737,-0.0713501,-0.0512695,-0.0447083,-0.062561,-0.0817566,-0.0903931,-0.101685,-0.11377,-0.127991,-0.153625,-0.17569,-0.184692,-0.188721,-0.183685,-0.177368,-0.186035,-0.194824,-0.181549,-0.154083,-0.128448,-0.103088,-0.0837708,-0.0666504,-0.0491333,-0.0424194,-0.046051,-0.0492554,-0.0377808,-0.0340881,-0.0515442,-0.0738831,-0.0872498,-0.0907288,-0.0894775,-0.0879822,-0.0920715,-0.0964966,-0.0879822,-0.0646362,-0.0312805,-0.00726318,0.00201416,0.0100098,0.013031,0.00469971,0.00509644,0.0190735,0.0223389,0.0157166,0.0128174,0.0126953,0.0160522,0.0238342,0.038269,0.0591125,0.0793152,0.0903931,0.100006,0.127655,0.168732,0.203766,0.222473,0.226562,0.222809,0.218933,0.222137,0.224976,0.222412,0.213898,0.194427,0.164551,0.138184,0.129333,0.132355,0.12973,0.112823,0.0875244,0.0734863,0.078125,0.0872498,0.0926819,0.0897217,0.081665,0.0730896,0.0626221,0.0549622,0.0543518,0.0595398,0.0586548,0.0430908,0.0234985,0.013031,0.015564,0.0209961,0.0205994,0.0123596,0.00274658,-0.00088501,0.00146484,0.00408936,0.00415039,-0.00268555,-0.0193176,-0.0401917,-0.0559082,-0.0635681,-0.069397,-0.078125,-0.09021,-0.107788,-0.125366,-0.13913,-0.145233,-0.146301,-0.147522,-0.157654,-0.168793,-0.177368,-0.179657,-0.175171,-0.172485,-0.17865,-0.193207,-0.206177,-0.213348,-0.218201,-0.218384,-0.219727,-0.220947,-0.229919,-0.239929,-0.2453,-0.244965,-0.24295,-0.234375,-0.221008,-0.202698,-0.180389,-0.152222,-0.122559,-0.0918884,-0.0587769,-0.0319519,-0.0185242,-0.0128784,0.00088501,0.0198669,0.0307312,0.0340881,0.0400696,0.0504761,0.0526733,0.0527649,0.0596619,0.0729675,0.082428,0.0838318,0.078064,0.0743713,0.0787354,0.091156,0.103302,0.111603,0.118591,0.12793,0.139191,0.151825,0.165222,0.178528,0.192871,0.204041,0.210663,0.222137,0.24115,0.262482,0.276306,0.279877,0.276978,0.273621,0.267853,0.258667,0.245972,0.227325,0.203491,0.177582,0.154755,0.13382,0.111877,0.0840149,0.0569153,0.0335693,0.0131531,-0.00442505,-0.0139465,-0.0133667,-0.00866699,-0.00537109,-0.00631714,-0.00274658,0.00726318,0.0189819,0.028595,0.0379944,0.0437012,0.0462341,0.0443726,0.0431519,0.0403442,0.0350952,0.0259705,0.0137634,0.000610352,-0.00967407,-0.0215454,-0.0361633,-0.0508728,-0.0675049,-0.0874634,-0.113892,-0.139526,-0.15918,-0.177124,-0.199249,-0.221954,-0.238129,-0.247711,-0.25592,-0.259857,-0.260803,-0.262024,-0.269653,-0.274292,-0.269531,-0.256317,-0.246307,-0.240662,-0.234436,-0.225769,-0.223633,-0.221466,-0.20343,-0.172485,-0.144226,-0.127106,-0.113342,-0.0908813,-0.0620117,-0.0363159,-0.0209351,-0.0101318,0.00100708,6.10352e-05,-0.00967407,-0.0147095,-0.00228882,0.0162354,0.0191956,0.011261,0.00811768,0.0185242,0.0326233,0.0426025,0.048584,0.0522766,0.0518799,0.0547791,0.0710754,0.0993958,0.129059,0.147034,0.153503,0.162415,0.183289,0.205566,0.221222,0.235046,0.244751,0.247864,0.246979,0.249725,0.26355,0.272888,0.27066,0.255585,0.236176,0.220734,0.208313,0.195435,0.17865,0.1586,0.133759,0.106323,0.0787354,0.0559082,0.0350952,0.0155029,-0.00497437,-0.0233459,-0.0361633,-0.0384521,-0.0298767,-0.0145569,-0.00424194,-0.000610352,0.00323486,0.0144958,0.0281982,0.0405273,0.0515442,0.0566406,0.0556335,0.0473022,0.0388489,0.0336304,0.0304565,0.0230103,0.011261,-0.00375366,-0.0169067,-0.0275879,-0.0430298,-0.0580444,-0.0683289,-0.0793152,-0.105103,-0.131683,-0.146851,-0.157593,-0.177795,-0.198792,-0.208527,-0.215637,-0.228241,-0.238464,-0.240814,-0.239594,-0.24054,-0.242828,-0.241882,-0.235107,-0.225098,-0.217529,-0.212067,-0.210266,-0.207916,-0.198395,-0.181274,-0.158264,-0.12851,-0.101196,-0.0810852,-0.0653687,-0.0413513,-0.0183105,-0.00531006,0.00189209,0.00616455,0.00369263,0.00128174,0.00146484,0.0126953,0.0245667,0.0313416,0.0283813,0.0222778,0.0250854,0.0326233,0.0395203,0.0405273,0.0369873,0.0405273,0.0545654,0.0733643,0.0910034,0.111084,0.131744,0.146362,0.158386,0.169403,0.182892,0.204163,0.221466,0.231079,0.233154,0.23941,0.251678,0.25885,0.260193,0.254639,0.241669,0.220459,0.197052,0.184021,0.169403,0.146698,0.119324,0.0932312,0.070343,0.0422668,0.0138245,-0.00991821,-0.0256958,-0.0423584,-0.0612793,-0.0704041,-0.061554,-0.0477905,-0.0397949,-0.0336304,-0.0218811,-0.00744629,0.00549316,0.0178528,0.0328064,0.0481873,0.0560303,0.0525513,0.0444946,0.0400696,0.0363159,0.0296631,0.0191345,0.00973511,-0.00195312,-0.0167236,-0.0312195,-0.045166,-0.0565186,-0.0717468,-0.094635,-0.116638,-0.13382,-0.148193,-0.164307,-0.181335,-0.197571,-0.208527,-0.222229,-0.237061,-0.247986,-0.250122,-0.251801,-0.257935,-0.259521,-0.256256,-0.251007,-0.248779,-0.244965,-0.237305,-0.224823,-0.20813,-0.182617,-0.149597,-0.115021,-0.0895996,-0.0656433,-0.0348206,-0.00524902,0.0133667,0.0281067,0.0377808,0.039856,0.0363159,0.0331421,0.0355835,0.0396729,0.0395203,0.0303955,0.0185242,0.0211487,0.0279236,0.0323486,0.0332947,0.0361633,0.04422,0.0549011,0.0716248,0.0968323,0.123505,0.147125,0.160797,0.172485,0.181946,0.19455,0.208923,0.220612,0.229401,0.234039,0.237976,0.247253,0.261017,0.268311,0.262695,0.249542,0.233276,0.21759,0.201691,0.186768,0.170471,0.144562,0.113953,0.0826721,0.0569153,0.0307922,0.00247192,-0.0260315,-0.0489807,-0.0643005,-0.0749817,-0.0752258,-0.0653687,-0.0518188,-0.0401917,-0.0345764,-0.0230103,-0.00390625,0.0151672,0.0298767,0.0396729,0.0480652,0.052948,0.0465698,0.0369263,0.0280457,0.0216675,0.0083313,-0.0115967,-0.0299377,-0.0424194,-0.0559692,-0.070282,-0.0820923,-0.0919495,-0.107849,-0.128387,-0.141144,-0.149658,-0.158051,-0.171478,-0.18457,-0.196716,-0.20871,-0.220612,-0.232697,-0.238983,-0.241272,-0.245178,-0.253754,-0.259674,-0.253235,-0.241669,-0.234497,-0.232697,-0.229065,-0.214752,-0.190216,-0.163818,-0.143616,-0.119812,-0.0855713,-0.0536194,-0.0346375,-0.0236816,-0.00308228,0.0232239,0.036377,0.0322876,0.028656,0.0354919,0.0469055,0.0501404,0.0440369,0.0420227,0.0473022,0.0534363,0.0536804,0.0561829,0.0642395,0.0775146,0.0854492,0.0891418,0.101685,0.119202,0.134094,0.144562,0.157104,0.163971,0.167786,0.169922,0.178192,0.190735,0.202209,0.204498,0.210327,0.22644,0.244507,0.251404,0.249878,0.248718,0.247528,0.239532,0.227112,0.214508,0.202606,0.186432,0.164032,0.134766,0.103363,0.0740967,0.0470581,0.0202637,-0.00793457,-0.0342407,-0.0522156,-0.0622253,-0.0646362,-0.0643005,-0.0623474,-0.0574646,-0.0475159,-0.0390625,-0.0306702,-0.0224304,-0.0088501,0.00112915,0.0012207,6.10352e-05,-0.00134277,-0.00180054,-0.00491333,-0.0124207,-0.0182495,-0.0266418,-0.0358276,-0.0436096,-0.0479736,-0.0491333,-0.0567932,-0.0678406,-0.0800781,-0.0877075,-0.0966492,-0.110596,-0.123169,-0.134369,-0.147644,-0.163208,-0.181671,-0.197052,-0.208252,-0.220612,-0.233215,-0.240479,-0.24295,-0.245636,-0.249054,-0.247437,-0.240417,-0.234161,-0.228455,-0.216583,-0.195648,-0.170349,-0.14563,-0.122742,-0.0979309,-0.0714722,-0.0448303,-0.0260315,-0.0109253,0.00631714,0.0209351,0.0267639,0.0289917,0.0331421,0.0391846,0.04422,0.0440979,0.0420837,0.0437622,0.0448914,0.0438232,0.0449524,0.0487366,0.0552979,0.0614014,0.0691223,0.0771179,0.0858459,0.0925598,0.0974426,0.101959,0.106567,0.111877,0.114349,0.115845,0.117798,0.12207,0.130737,0.14267,0.157196,0.171539,0.185516,0.197327,0.206299,0.214569,0.222565,0.226776,0.226379,0.220276,0.212067,0.203217,0.187775,0.166901,0.139923,0.111755,0.081543,0.0526733,0.0246887,0.003479,-0.0110779,-0.0244446,-0.0367126,-0.0467834,-0.0511475,-0.0516663,-0.0480652,-0.0463867,-0.0437622,-0.038269,-0.032135,-0.0246277,-0.0158386,-0.00637817,-0.000549316,0.00106812,-0.000274658,-0.000946045,0.00106812,0.00222778,0.000457764,-0.00570679,-0.0088501,-0.00872803,-0.0083313,-0.0133667,-0.0206604,-0.024231,-0.0310059,-0.036438,-0.0410156,-0.0428162,-0.0525513,-0.0708618,-0.0932312,-0.118134,-0.134888,-0.149323,-0.16806,-0.185913,-0.193695,-0.193298,-0.194824,-0.197174,-0.193756,-0.188202,-0.175964,-0.163086,-0.150726,-0.136047,-0.123077,-0.109314,-0.0942993,-0.0764465,-0.0632935,-0.0578613,-0.0528259,-0.0484619,-0.0410767,-0.0359802,-0.0339661,-0.0345764,-0.0310059,-0.0219421,-0.0137024,-0.00415039,0.00357056,0.0108032,0.0163879,0.0240173,0.032074,0.0378418,0.0386047,0.0369873,0.0357056,0.0353088,0.0345764,0.0304565,0.0248413,0.0224915,0.0187378,0.0115356,0.00222778,-0.00195312,-0.00302124,-0.0012207,-0.000335693,0.00582886,0.0154419,0.0256958,0.0371094,0.0512085,0.0649109,0.0779724,0.0883179,0.0961609,0.10141,0.108337,0.11496,0.115509,0.108856,0.101807,0.0918884,0.0775146,0.0643005,0.0565186,0.0512085,0.046051,0.0391846,0.0333557,0.0287781,0.0294495,0.0348206,0.0422058,0.0487976,0.0545044,0.0629578,0.0748291,0.0891418,0.0968323,0.0959778,0.0928955,0.0927429,0.0926819,0.0883179,0.0771179,0.0683899,0.0630798,0.0571899,0.0497437,0.0428772,0.0360413,0.032135,0.0284424,0.0270996,0.0284424,0.0324097,0.0365906,0.0397339,0.0436096,0.0456238,0.0429382,0.0349731,0.0255127,0.0197449,0.0114136,-0.0012207,-0.0152893,-0.0281982,-0.0419312,-0.053833,-0.0661011,-0.077179,-0.0828247,-0.0863037,-0.0896606,-0.0899963,-0.0842896,-0.078125,-0.0730286,-0.0701294,-0.0637512,-0.0583191,-0.0559082,-0.0565796,-0.0561829,-0.0556335,-0.058197,-0.0644226,-0.0724182,-0.079071,-0.0856323,-0.0932312,-0.098114,-0.103088,-0.105652,-0.106171,-0.102966,-0.0996094,-0.094696,-0.0880432,-0.0830078,-0.0792542,-0.0754395,-0.0704651,-0.0664368,-0.0638123,-0.0636902,-0.0644836,-0.0654907,-0.0676575,-0.0706787,-0.0733032,-0.0726929,-0.0712891,-0.0718079,-0.0706787,-0.0656433,-0.0577087,-0.04953,-0.0427551,-0.0353699,-0.0258484,-0.0146179,-0.00570679,0.00268555,0.0118103,0.0191956,0.0234985,0.0245056,0.0267029,0.0272522,0.0284424,0.0261841,0.0227661,0.0191345,0.0177307,0.0159607,0.0152283,0.0169678,0.0214844,0.0254211,0.0318909,0.0395203,0.0514832,0.0628967,0.0741577,0.0869141,0.104706,0.123077,0.133423,0.134369,0.134155,0.134766,0.133209,0.126495,0.117981,0.108521,0.100616,0.0967102,0.102356,0.105042,0.0957642,0.0814209,0.0811462,0.0882568,0.0888062,0.0818787,0.0773926,0.0783997,0.0808716,0.0857849,0.0832214,0.0751038,0.0679321,0.0649719,0.0596008,0.0502014,0.0389404,0.0292053,0.0187378,0.0136108,0.00509644,-0.00604248,-0.0142212,-0.0215454,-0.0210876,-0.0185852,-0.0179749,-0.0173035,-0.0152283,-0.00985718,-0.0115967,-0.0137024,-0.0145569,-0.01651,-0.0224915,-0.0324097,-0.041687,-0.049408,-0.0577087,-0.0720215,-0.0858459,-0.0979919,-0.108795,-0.123413,-0.132538,-0.135223,-0.137665,-0.140533,-0.143341,-0.141022,-0.138672,-0.139343,-0.133759,-0.130859,-0.126099,-0.12262,-0.117188,-0.110931,-0.104706,-0.0993347,-0.0947571,-0.0923462,-0.0852966,-0.0776367,-0.0690002,-0.0620728,-0.0541077,-0.0388489,-0.0253601,-0.015625,-0.00805664,0.000457764,0.00772095,0.00827026,0.00604248,0.00128174,-0.00314331,-0.0126953,-0.0232849,-0.032135,-0.0401917,-0.0508728,-0.0606689,-0.0644226,-0.0628967,-0.058136,-0.0521545,-0.0426025,-0.027771,-0.0114746,0.00778198,0.0263672,0.0435486,0.0599976,0.0774536,0.0957642,0.112335,0.128052,0.143158,0.156036,0.168182,0.171875,0.178314,0.18457,0.188599,0.186035,0.180725,0.173035,0.162537,0.152008,0.142761,0.128662,0.106171,0.077179,0.0515442,0.0332336,0.0185242,0.00222778,-0.0162354,-0.0310059,-0.0334167,-0.0266418,-0.016571,-0.00878906,0.00268555,0.0191345,0.0388489,0.0532227,0.0617371,0.069458,0.077301,0.0749817,0.0720825,0.0649109,0.0552368,0.0444336,0.0340271,0.0232239,0.0105896,-0.00146484,-0.00744629,-0.0128174,-0.0160522,-0.0191956,-0.0126038,-0.00213623,0.00448608,0.00717163,0.00772095,0.0101318,0.00946045,0.00167847,-0.00891113,-0.0215454,-0.0361633,-0.0585327,-0.0822144,-0.103149,-0.114838,-0.12384,-0.137726,-0.146362,-0.144501,-0.133636,-0.121552,-0.113434,-0.10672,-0.101349,-0.0926208,-0.0812073,-0.0761108,-0.0756226,-0.0800781,-0.0851135,-0.0864563,-0.0889893,-0.0958252,-0.103363,-0.107849,-0.111267,-0.111938,-0.107849,-0.100189,-0.0879822,-0.0733643,-0.0567932,-0.0404663,-0.0246887,-0.012085,-0.00012207,0.00967407,0.0189209,0.0250244,0.025238,0.0209961,0.0153809,0.0118713,0.00436401,-0.00671387,-0.0206604,-0.0318909,-0.0410156,-0.0438843,-0.0444946,-0.0436096,-0.0412903,-0.0335693,-0.0218811,-0.00598145,0.0124817,0.0307922,0.0481262,0.0672607,0.0814209,0.0940247,0.105164,0.118256,0.127716,0.134644,0.14093,0.150055,0.162018,0.172424,0.180542,0.189453,0.194489,0.194824,0.190399,0.183563,0.174286,0.160004,0.14093,0.120331,0.103821,0.0941467,0.0886536,0.0767822,0.0531616,0.0250244,0.00106812,-0.00918579,-0.012146,-0.0155029,-0.0260925,-0.0339661,-0.0318909,-0.0206604,-0.0065918,-0.000335693,-0.00463867,-0.0106812,-0.00784302,0.00845337,0.0268555,0.0381775,0.0386658,0.0322266,0.0330811,0.0411377,0.036499,0.017395,-0.00100708,-0.00765991,-0.00817871,-0.00924683,-0.0138245,-0.0259094,-0.0297852,-0.0427551,-0.0668335,-0.0969238,-0.121399,-0.134369,-0.139465,-0.145905,-0.163483,-0.175842,-0.182831,-0.182281,-0.184296,-0.18631,-0.182159,-0.179535,-0.177124,-0.182343,-0.18576,-0.183685,-0.181732,-0.184174,-0.189331,-0.184753,-0.175171,-0.15625,-0.132294,-0.111145,-0.0904846,-0.070343,-0.0531006,-0.0454407,-0.0389404,-0.0231628,-0.0071106,0.0088501,0.0166321,0.0247803,0.0322876,0.0369873,0.0361633,0.0269165,0.0177307,0.0114746,0.00918579,0.00985718,0.0140991,0.0209351,0.0313416,0.040741,0.045105,0.0504761,0.0592651,0.0733032,0.0841675,0.0952454,0.104492,0.11731,0.132965,0.147705,0.164551,0.185852,0.20578,0.219879,0.229736,0.242218,0.257263,0.266724,0.265167,0.258667,0.249329,0.237854,0.225311,0.210663,0.193298,0.171814,0.146179,0.119995,0.0903931,0.0592041,0.0331421,0.0155029,-0.00106812,-0.0152893,-0.0249634,-0.02771,-0.0236816,-0.0158997,-0.0111389,-0.0117493,-0.0146179,-0.013031,-0.0101929,-0.00717163,-0.00616455,-0.00167847,-0.00112915,-0.00631714,-0.0134277,-0.0182495,-0.0214233,-0.0283813,-0.0381165,-0.0462952,-0.0548401,-0.0653687,-0.078064,-0.0906067,-0.10437,-0.120331,-0.140594,-0.164825,-0.188934,-0.20639,-0.221619,-0.236786,-0.253082,-0.269073,-0.281952,-0.290009,-0.297516,-0.300537,-0.300873,-0.297577,-0.295441,-0.295624,-0.298523,-0.296448,-0.283234,-0.262085,-0.235718,-0.204224,-0.167786,-0.125305,-0.0774536,-0.0281067,0.011261,0.0370483,0.0499878,0.0603333,0.0654297,0.0683899,0.0741577,0.0822754,0.0883179,0.0907288,0.0932922,0.0997925,0.102753,0.10376,0.0968323,0.0877991,0.0837708,0.0888062,0.101624,0.123016,0.151154,0.181335,0.207916,0.2341,0.261932,0.290619,0.315704,0.329315,0.328979,0.323212,0.319458,0.319275,0.317444,0.312012,0.298309,0.280609,0.258789,0.23941,0.219543,0.19342,0.160278,0.126251,0.090332,0.053894,0.0204773,-0.00857544,-0.0326843,-0.0578613,-0.0777283,-0.09375,-0.102356,-0.103821,-0.093689,-0.0792542,-0.0644226,-0.0509949,-0.0325623,-0.00817871,0.0202026,0.0383911,0.0441589,0.0453796,0.0446167,0.0387268,0.0282593,0.0167847,0.00524902,-0.0109253,-0.0304565,-0.053833,-0.0829468,-0.113892,-0.14267,-0.172699,-0.207397,-0.245361,-0.279449,-0.306702,-0.324554,-0.338135,-0.354767,-0.375977,-0.391602,-0.394226,-0.386322,-0.377167,-0.370483,-0.366028,-0.358185,-0.345245,-0.335632,-0.325378,-0.300079,-0.250397,-0.187439,-0.129272,-0.0799255,-0.0236816,0.0391846,0.0973816,0.131622,0.140198,0.136108,0.127594,0.120605,0.110321,0.101959,0.0986633,0.0977173,0.0973816,0.102295,0.11142,0.118134,0.115173,0.106232,0.0993958,0.104492,0.122009,0.147125,0.179871,0.224976,0.273163,0.312012,0.341217,0.36026,0.378387,0.390808,0.391876,0.380066,0.36142,0.342224,0.331268,0.3237,0.310394,0.281128,0.243561,0.207458,0.176788,0.144897,0.0999451,0.0524902,0.0159607,-0.00973511,-0.0377808,-0.0712891,-0.0962524,-0.110077,-0.118866,-0.127106,-0.133972,-0.129791,-0.113434,-0.0864563,-0.0549622,-0.0265198,-0.00296021,0.0145569,0.0369873,0.0622864,0.0807495,0.0812073,0.0684509,0.0542297,0.0393982,0.0150452,-0.0195312,-0.0551758,-0.0845642,-0.111481,-0.144226,-0.182404,-0.21637,-0.245361,-0.273773,-0.303497,-0.332672,-0.359589,-0.38028,-0.390869,-0.389801,-0.387451,-0.387909,-0.391144,-0.382416,-0.357117,-0.333557,-0.327789,-0.334961,-0.335693,-0.315369,-0.27301,-0.221802,-0.164978,-0.0994568,-0.0310669,0.0352478,0.0875854,0.133484,0.164368,0.170746,0.158386,0.136169,0.116699,0.102142,0.0881958,0.0809937,0.0789185,0.0832214,0.0836792,0.0810852,0.081665,0.0860291,0.0883789,0.0855103,0.086853,0.106506,0.14679,0.202423,0.262543,0.315979,0.360138,0.388519,0.404846,0.410461,0.40564,0.387512,0.357574,0.326843,0.305237,0.28833,0.271484,0.251617,0.229126,0.200256,0.160614,0.120392,0.0807495,0.0434875,0.00704956,-0.0288696,-0.0565796,-0.0792542,-0.0983887,-0.113678,-0.122498,-0.122681,-0.122833,-0.120605,-0.106903,-0.0807495,-0.0448303,-0.00933838,0.0227661,0.0500793,0.0719604,0.0890503,0.101196,0.107513,0.106506,0.0948181,0.0756226,0.0490723,0.015564,-0.0202026,-0.0596619,-0.097168,-0.133209,-0.170685,-0.208862,-0.244507,-0.276184,-0.305695,-0.335846,-0.366699,-0.389343,-0.399994,-0.40155,-0.398804,-0.397644,-0.388794,-0.37149,-0.348724,-0.334106,-0.330139,-0.323761,-0.309387,-0.279602,-0.238068,-0.184631,-0.117798,-0.0481873,0.0256348,0.0934753,0.150482,0.188446,0.19812,0.189545,0.168243,0.144165,0.116455,0.0851746,0.0654297,0.0575867,0.0605469,0.0606689,0.0516663,0.0455627,0.0430298,0.0390625,0.0297852,0.0223389,0.0317993,0.0598755,0.107452,0.168457,0.236053,0.29953,0.346161,0.381073,0.404846,0.411194,0.39389,0.359528,0.329803,0.306915,0.287445,0.263885,0.241547,0.223419,0.202423,0.169006,0.128387,0.089325,0.0496521,0.00643921,-0.0316162,-0.0605469,-0.0852356,-0.109192,-0.128052,-0.134033,-0.133759,-0.135712,-0.136902,-0.125092,-0.0949097,-0.0628967,-0.0312805,0.00262451,0.0445557,0.0814819,0.105316,0.122833,0.136719,0.14624,0.138794,0.122894,0.100128,0.0729675,0.0362549,-0.00576782,-0.0447083,-0.0823364,-0.125702,-0.175232,-0.219116,-0.25827,-0.296783,-0.335632,-0.372681,-0.3992,-0.410126,-0.411346,-0.405518,-0.395966,-0.383026,-0.364227,-0.337982,-0.312225,-0.297058,-0.294556,-0.292145,-0.272552,-0.223572,-0.16214,-0.101074,-0.0404053,0.025238,0.0968323,0.165649,0.218781,0.244507,0.243347,0.224426,0.200409,0.178253,0.152618,0.120728,0.0914001,0.077179,0.0739746,0.0733032,0.0617371,0.0446167,0.0270996,0.0123596,0.000732422,-0.00302124,0.00793457,0.0397949,0.0954285,0.164551,0.233551,0.286163,0.32135,0.349792,0.370941,0.371002,0.345032,0.303497,0.264709,0.245361,0.233765,0.216187,0.188202,0.152679,0.121277,0.0942993,0.0624084,0.0193176,-0.0292053,-0.0691223,-0.0950928,-0.112091,-0.126251,-0.137573,-0.139587,-0.135315,-0.127167,-0.120209,-0.110596,-0.0906677,-0.0586548,-0.0227661,0.0116882,0.0434265,0.0736389,0.108643,0.136169,0.148376,0.144897,0.129791,0.111938,0.093811,0.0678406,0.028595,-0.0149536,-0.0592651,-0.0957642,-0.129333,-0.168243,-0.214081,-0.262604,-0.309052,-0.351288,-0.390076,-0.420471,-0.43811,-0.438385,-0.427185,-0.41153,-0.38974,-0.359741,-0.323486,-0.299255,-0.288513,-0.276184,-0.255157,-0.222748,-0.175171,-0.110992,-0.0366516,0.0316162,0.0875244,0.143951,0.208862,0.260864,0.279266,0.267456,0.245087,0.223572,0.201599,0.174774,0.150604,0.134094,0.12027,0.105164,0.100616,0.098114,0.0826111,0.0512085,0.0169067,0.000274658,0.00228882,0.0167236,0.0524292,0.107452,0.173218,0.239594,0.296387,0.343811,0.378448,0.390411,0.380798,0.35907,0.327179,0.291138,0.2612,0.241821,0.226501,0.201141,0.160278,0.115906,0.0761108,0.0369263,-0.0110779,-0.0686035,-0.122894,-0.162964,-0.181732,-0.187988,-0.185913,-0.184082,-0.181396,-0.168396,-0.146851,-0.118988,-0.0933533,-0.0670471,-0.0370483,0.000274658,0.0370483,0.0732117,0.105042,0.132416,0.150055,0.155243,0.142426,0.116638,0.0833435,0.049469,0.0104065,-0.0326843,-0.0799255,-0.124176,-0.160614,-0.198059,-0.244843,-0.301544,-0.363953,-0.420868,-0.464417,-0.491425,-0.505035,-0.512085,-0.51181,-0.490753,-0.448914,-0.401825,-0.364899,-0.342133,-0.323029,-0.296234,-0.263885,-0.214233,-0.138458,-0.0463867,0.0387268,0.100403,0.162201,0.240936,0.318329,0.354218,0.341003,0.303619,0.27301,0.25,0.233368,0.215759,0.195038,0.169342,0.148376,0.148193,0.1586,0.145355,0.0969238,0.036499,-0.000457764,-0.00650024,0.00515747,0.0296021,0.0719604,0.137054,0.209808,0.278931,0.336639,0.376709,0.398193,0.399475,0.380402,0.347839,0.305176,0.272614,0.264435,0.265625,0.25,0.209045,0.161957,0.130188,0.105042,0.0605469,-0.0124207,-0.0914001,-0.149872,-0.178589,-0.190216,-0.200012,-0.207733,-0.20813,-0.194885,-0.171265,-0.139404,-0.110321,-0.0845642,-0.0584412,-0.0249634,0.0115967,0.048584,0.0832214,0.118866,0.147522,0.160797,0.155762,0.137787,0.116028,0.0892029,0.0487976,-0.00650024,-0.0643005,-0.110077,-0.147125,-0.185638,-0.236847,-0.298798,-0.367371,-0.435303,-0.497253,-0.545166,-0.578247,-0.597443,-0.601685,-0.582275,-0.54187,-0.49115,-0.445038,-0.402161,-0.357513,-0.320618,-0.284027,-0.235962,-0.156769,-0.0516663,0.053009,0.129517,0.19516,0.27536,0.36026,0.419067,0.418457,0.372162,0.313904,0.274506,0.24939,0.22644,0.198914,0.169739,0.1492,0.150604,0.157715,0.147919,0.0991211,0.0256348,-0.0336304,-0.0556335,-0.0510864,-0.0327454,0.000549316,0.0661621,0.161285,0.253235,0.315979,0.355896,0.384552,0.399994,0.38739,0.347504,0.297455,0.263214,0.256775,0.269531,0.27832,0.260864,0.219543,0.182678,0.157867,0.11972,0.0391235,-0.065033,-0.146698,-0.185974,-0.201141,-0.214417,-0.223083,-0.214569,-0.190125,-0.16153,-0.132629,-0.100281,-0.0715332,-0.0461121,-0.0181885,0.0168457,0.0570374,0.0959778,0.134216,0.173828,0.201935,0.203033,0.182068,0.156097,0.127716,0.0832825,0.0220947,-0.0428162,-0.0955811,-0.137238,-0.178864,-0.229919,-0.290405,-0.357391,-0.430878,-0.503967,-0.565155,-0.61026,-0.63974,-0.647797,-0.629669,-0.592804,-0.544159,-0.485962,-0.424713,-0.374237,-0.341797,-0.30484,-0.230133,-0.119049,-0.00939941,0.0677185,0.13382,0.23114,0.352539,0.441956,0.469452,0.447327,0.403503,0.360535,0.325836,0.292755,0.253357,0.202881,0.166504,0.171875,0.198456,0.189941,0.122162,0.0333557,-0.0292664,-0.0657654,-0.103699,-0.139069,-0.132874,-0.0699463,0.0259705,0.123413,0.204834,0.269653,0.318939,0.353638,0.363617,0.336365,0.274689,0.221619,0.216858,0.246185,0.263763,0.249115,0.232941,0.238251,0.241547,0.201477,0.11261,0.0105896,-0.0751038,-0.13623,-0.185699,-0.223297,-0.240204,-0.237518,-0.217194,-0.185364,-0.157928,-0.139526,-0.117462,-0.0854492,-0.048645,-0.0201416,0.00442505,0.0453796,0.110931,0.174225,0.213348,0.226898,0.234711,0.238312,0.223022,0.177643,0.113617,0.0509949,0.000213623,-0.0457153,-0.094574,-0.147797,-0.209473,-0.278931,-0.356842,-0.443085,-0.531006,-0.609131,-0.664215,-0.689056,-0.692749,-0.679718,-0.646851,-0.58725,-0.506165,-0.43335,-0.387115,-0.345764,-0.277435,-0.168579,-0.0462341,0.0536804,0.130402,0.216858,0.335785,0.45752,0.537506,0.544891,0.501801,0.452484,0.424957,0.406586,0.368317,0.306854,0.250549,0.23053,0.237854,0.230255,0.172272,0.0736389,-0.0225525,-0.09021,-0.140472,-0.185181,-0.215698,-0.200256,-0.127838,-0.0245667,0.0653076,0.127655,0.180481,0.230927,0.266724,0.261078,0.213959,0.16275,0.152222,0.190674,0.240143,0.266846,0.269806,0.274109,0.290863,0.289673,0.23645,0.131744,0.0218201,-0.0644836,-0.123749,-0.169861,-0.208862,-0.230255,-0.22879,-0.210602,-0.190002,-0.177246,-0.166504,-0.151947,-0.129944,-0.10611,-0.0791321,-0.0410767,0.0169067,0.0895996,0.15094,0.190338,0.213684,0.229675,0.238739,0.22818,0.190216,0.138245,0.0889893,0.0491333,0.0118713,-0.0317993,-0.0906677,-0.15918,-0.237183,-0.323639,-0.417511,-0.509186,-0.589935,-0.649475,-0.684509,-0.695099,-0.681732,-0.644958,-0.585968,-0.522949,-0.473297,-0.427979,-0.369995,-0.280121,-0.162354,-0.0453796,0.0485229,0.141602,0.261536,0.400055,0.516571,0.577789,0.579651,0.55484,0.535034,0.521271,0.499268,0.455566,0.398468,0.353821,0.337585,0.330261,0.288269,0.193024,0.07724,-0.0259705,-0.111267,-0.186371,-0.248199,-0.272217,-0.244904,-0.179138,-0.103699,-0.0386047,0.0230103,0.0799866,0.125824,0.143158,0.124084,0.0867004,0.0717468,0.102753,0.160736,0.208801,0.23999,0.269653,0.31012,0.343231,0.331879,0.259583,0.158844,0.0666504,-0.00811768,-0.0728149,-0.130524,-0.174042,-0.19281,-0.190338,-0.184296,-0.183685,-0.184296,-0.185181,-0.185516,-0.180603,-0.171936,-0.153168,-0.109863,-0.0426941,0.0293884,0.0876465,0.129852,0.167114,0.201599,0.220123,0.208984,0.1763,0.141205,0.109192,0.0808716,0.0467834,0.00195312,-0.0523376,-0.117126,-0.192535,-0.283569,-0.379791,-0.47464,-0.555023,-0.615234,-0.658722,-0.678925,-0.669403,-0.632538,-0.585114,-0.550537,-0.522217,-0.478729,-0.398376,-0.288177,-0.180939,-0.0929565,-6.10352e-05,0.129669,0.286255,0.430206,0.522766,0.56308,0.578979,0.59967,0.618591,0.618256,0.583618,0.530396,0.492828,0.486176,0.485291,0.44632,0.357849,0.250336,0.148254,0.0458374,-0.0664368,-0.17865,-0.259857,-0.286987,-0.267792,-0.230072,-0.188263,-0.136841,-0.0753784,-0.017395,0.0127563,0.000213623,-0.0322876,-0.0465698,-0.0212708,0.0271912,0.0729675,0.116638,0.173157,0.250946,0.329987,0.367859,0.349731,0.292084,0.222809,0.156525,0.0845642,0.0145569,-0.045105,-0.080658,-0.0944214,-0.100525,-0.105316,-0.111267,-0.118469,-0.13147,-0.156372,-0.183289,-0.202362,-0.193695,-0.162964,-0.123962,-0.0861206,-0.0432739,0.0118713,0.0652466,0.105042,0.11853,0.112335,0.0987244,0.0855713,0.0697327,0.0522766,0.0293274,0.00631714,-0.0222778,-0.0627441,-0.125763,-0.205292,-0.290192,-0.372498,-0.454285,-0.53067,-0.585968,-0.611755,-0.607391,-0.59021,-0.569275,-0.547577,-0.511017,-0.459595,-0.392609,-0.313568,-0.233765,-0.152893,-0.0596619,0.0630798,0.20047,0.327728,0.418518,0.481415,0.53302,0.580414,0.610657,0.619476,0.613281,0.602478,0.590332,0.580536,0.565094,0.529877,0.460724,0.361267,0.251129,0.142609,0.0340881,-0.0722046,-0.160187,-0.213226,-0.231079,-0.228241,-0.21283,-0.188995,-0.154083,-0.128265,-0.123962,-0.14035,-0.156921,-0.157593,-0.135223,-0.0960999,-0.0425415,0.0177917,0.0888672,0.171692,0.251221,0.306366,0.317383,0.293884,0.253632,0.215912,0.175629,0.125092,0.0762939,0.0462341,0.0340271,0.0285339,0.0190735,0.00430298,-0.0138855,-0.0387268,-0.072876,-0.114227,-0.148041,-0.16745,-0.171417,-0.166321,-0.150879,-0.126373,-0.0960388,-0.0619507,-0.0322266,-0.0162964,-0.0152283,-0.0249634,-0.0333557,-0.0353699,-0.039856,-0.0491333,-0.061554,-0.0745544,-0.0897217,-0.118591,-0.165222,-0.222229,-0.281128,-0.341156,-0.396515,-0.4422,-0.468933,-0.481262,-0.482544,-0.47464,-0.456177,-0.430054,-0.393677,-0.348663,-0.295166,-0.240204,-0.181396,-0.107391,-0.00604248,0.109589,0.217438,0.298981,0.367645,0.432831,0.489746,0.524628,0.533966,0.534027,0.539612,0.547974,0.550323,0.538391,0.513611,0.470459,0.408661,0.335571,0.255371,0.1698,0.0804138,-0.00112915,-0.061615,-0.10202,-0.127716,-0.147247,-0.156433,-0.157257,-0.16153,-0.178314,-0.204102,-0.224304,-0.22583,-0.209137,-0.175842,-0.129791,-0.0681763,0.00402832,0.0769653,0.143951,0.195099,0.223419,0.225494,0.213684,0.197327,0.179932,0.158508,0.137054,0.124298,0.123627,0.122833,0.117584,0.109924,0.0999451,0.0791321,0.0410767,-0.00369263,-0.0418701,-0.0696106,-0.0957031,-0.119476,-0.134094,-0.13504,-0.12677,-0.118195,-0.112823,-0.108521,-0.108734,-0.114624,-0.121552,-0.128601,-0.136841,-0.146301,-0.153168,-0.153412,-0.158844,-0.173889,-0.19632,-0.223297,-0.251892,-0.285645,-0.318726,-0.3461,-0.364014,-0.378326,-0.389862,-0.396973,-0.38913,-0.368591,-0.343018,-0.312897,-0.278442,-0.232147,-0.16806,-0.0856323,0.00268555,0.0820923,0.149933,0.212677,0.272491,0.327972,0.371887,0.394562,0.402557,0.406769,0.420868,0.447723,0.476715,0.491333,0.486725,0.471893,0.446045,0.40329,0.342743,0.26651,0.180817,0.0934753,0.0205383,-0.0313416,-0.0634766,-0.0838318,-0.100067,-0.11731,-0.132477,-0.146973,-0.166107,-0.182343,-0.189728,-0.190338,-0.182495,-0.161957,-0.120941,-0.0599365,0.00201416,0.0520935,0.0870361,0.112671,0.132629,0.143555,0.145355,0.141083,0.13739,0.135162,0.140411,0.153229,0.165985,0.17395,0.174225,0.167175,0.15094,0.121216,0.0841064,0.0467834,0.0155029,-0.0157776,-0.0481873,-0.0754395,-0.0891418,-0.0923462,-0.0974426,-0.108124,-0.124695,-0.13858,-0.146698,-0.153015,-0.161682,-0.172028,-0.177856,-0.180206,-0.180725,-0.185577,-0.195038,-0.209595,-0.232941,-0.259857,-0.285583,-0.311401,-0.330811,-0.339203,-0.339478,-0.338593,-0.336243,-0.333435,-0.326233,-0.30658,-0.279449,-0.248535,-0.21698,-0.184021,-0.138519,-0.0736389,0.00750732,0.0887146,0.153687,0.204285,0.244904,0.283752,0.321411,0.344299,0.350952,0.344147,0.3508,0.375763,0.412811,0.44455,0.453094,0.441559,0.412964,0.37616,0.326172,0.25946,0.177124,0.0885315,0.0202637,-0.0231628,-0.049469,-0.0719604,-0.0856323,-0.0888672,-0.0942993,-0.112213,-0.136566,-0.159393,-0.16925,-0.167908,-0.161194,-0.1492,-0.124634,-0.0791321,-0.0180664,0.0418091,0.0787354,0.0904846,0.0959778,0.110657,0.131134,0.140472,0.13623,0.134766,0.149384,0.177124,0.202209,0.209717,0.201599,0.184509,0.16275,0.133148,0.0924683,0.0443726,0.00088501,-0.0274353,-0.0435486,-0.0578613,-0.0747681,-0.0895386,-0.0940247,-0.0995178,-0.115509,-0.142548,-0.165558,-0.176178,-0.17691,-0.176239,-0.177521,-0.176697,-0.174225,-0.169403,-0.170532,-0.182281,-0.202759,-0.224304,-0.243011,-0.258179,-0.276855,-0.292206,-0.290741,-0.277588,-0.266449,-0.271088,-0.282562,-0.283295,-0.270203,-0.247772,-0.231354,-0.215027,-0.183228,-0.128662,-0.0532837,0.0306091,0.105377,0.152496,0.182404,0.211609,0.242279,0.265289,0.27066,0.268066,0.27597,0.306458,0.350189,0.389404,0.421539,0.436523,0.428192,0.394348,0.343231,0.282227,0.210815,0.13974,0.0758972,0.0310059,0.00543213,-0.00759888,-0.00933838,-0.00772095,-0.0112,-0.0353088,-0.0760498,-0.11618,-0.146118,-0.161285,-0.165314,-0.16214,-0.148315,-0.115967,-0.0678406,-0.0149536,0.0283813,0.0484619,0.0502625,0.046051,0.0526123,0.0652466,0.0798035,0.0914917,0.108795,0.13443,0.165039,0.187775,0.194427,0.185577,0.165558,0.131805,0.0922852,0.0544434,0.0238342,0.00509644,-0.00402832,-0.00845337,-0.0140991,-0.0221558,-0.0350342,-0.0508728,-0.0704041,-0.098175,-0.130402,-0.159668,-0.173096,-0.174377,-0.169861,-0.163147,-0.158203,-0.154419,-0.157928,-0.172821,-0.195038,-0.218597,-0.241821,-0.266724,-0.289673,-0.30014,-0.296295,-0.284027,-0.267853,-0.256256,-0.255096,-0.263763,-0.268402,-0.262543,-0.243225,-0.218109,-0.187317,-0.143829,-0.0834961,-0.00985718,0.0673218,0.136047,0.185852,0.210663,0.217712,0.223633,0.235107,0.250122,0.261871,0.275757,0.299744,0.337372,0.381744,0.415649,0.422363,0.401154,0.353088,0.294373,0.228668,0.167999,0.110474,0.0646973,0.0368347,0.0232239,0.0205383,0.0168457,0.00811768,-0.00878906,-0.0380554,-0.0770569,-0.120148,-0.151062,-0.157532,-0.144165,-0.117859,-0.091217,-0.060791,-0.0256958,0.0127563,0.0420227,0.0509338,0.0405273,0.0262451,0.0249634,0.0429382,0.070282,0.0944214,0.115692,0.137329,0.159668,0.172607,0.167511,0.143768,0.10907,0.0729675,0.0422058,0.0175781,-0.00112915,-0.0112,-0.0116882,-0.00900269,-0.0132141,-0.0296021,-0.0540161,-0.0777893,-0.10202,-0.126099,-0.148254,-0.163757,-0.1651,-0.151733,-0.133545,-0.11731,-0.109802,-0.111816,-0.123688,-0.143097,-0.16745,-0.192963,-0.214752,-0.23114,-0.238647,-0.239319,-0.230927,-0.219116,-0.208374,-0.202606,-0.210724,-0.228668,-0.247864,-0.257263,-0.251556,-0.235718,-0.211212,-0.180725,-0.133545,-0.0744934,-0.0149536,0.0406799,0.0852356,0.120148,0.135895,0.14563,0.161682,0.186859,0.220551,0.248047,0.276306,0.306976,0.342224,0.374695,0.392822,0.39328,0.368866,0.326111,0.281128,0.241089,0.211548,0.17804,0.143555,0.111542,0.0908813,0.0762329,0.0551147,0.0265198,-0.00692749,-0.0437622,-0.080658,-0.107117,-0.118317,-0.113678,-0.0976562,-0.077301,-0.0593872,-0.0425415,-0.0289307,-0.0187378,-0.00891113,-0.00323486,-0.00515747,-0.00973511,-0.00201416,0.0227661,0.0578613,0.0865784,0.103363,0.109924,0.112,0.110077,0.101135,0.0860291,0.0657654,0.0400696,0.0177917,0.00631714,0.0032959,-0.000335693,-0.00744629,-0.0175171,-0.0296631,-0.0437622,-0.061615,-0.0769043,-0.0885925,-0.0957642,-0.102142,-0.105042,-0.101349,-0.0908203,-0.0828247,-0.077301,-0.0842896,-0.0994568,-0.120728,-0.142609,-0.160675,-0.17511,-0.185974,-0.191956,-0.194031,-0.194977,-0.197906,-0.198456,-0.197571,-0.205505,-0.220795,-0.237732,-0.253357,-0.264954,-0.264038,-0.25,-0.225708,-0.197998,-0.169342,-0.13269,-0.0831604,-0.0275879,0.0241699,0.0663757,0.100342,0.12793,0.153229,0.185181,0.221558,0.247711,0.259857,0.26947,0.287598,0.316315,0.343079,0.352814,0.348785,0.336578,0.316589,0.290527,0.261078,0.226166,0.181885,0.136505,0.098999,0.0706177,0.048584,0.0281067,0.00637817,-0.0100708,-0.0276489,-0.0452271,-0.0598755,-0.0640259,-0.0569153,-0.0496521,-0.0455627,-0.0410156,-0.0315552,-0.0180664,-0.00424194,0.00396729,0.00738525,0.00750732,0.0065918,0.0122681,0.0258484,0.0396118,0.0457764,0.0459595,0.0465698,0.0475159,0.0477295,0.0422668,0.032959,0.0201416,0.00469971,-0.0114136,-0.0228882,-0.0283203,-0.0314636,-0.036499,-0.0430298,-0.0480652,-0.0501404,-0.0469666,-0.0437012,-0.0397339,-0.0374451,-0.0369263,-0.037384,-0.0375977,-0.0377197,-0.0403442,-0.0457153,-0.0556335,-0.069519,-0.0838318,-0.0963745,-0.108124,-0.119476,-0.130127,-0.143677,-0.161194,-0.178528,-0.191345,-0.203491,-0.217194,-0.237457,-0.257172,-0.272614,-0.282562,-0.289337,-0.289734,-0.283234,-0.271332,-0.252136,-0.221741,-0.178986,-0.13208,-0.0795898,-0.0226746,0.0374451,0.0929565,0.134094,0.162964,0.186981,0.213074,0.2341,0.246429,0.258118,0.274902,0.303894,0.3349,0.361145,0.372742,0.367462,0.347168,0.317596,0.281891,0.240204,0.187775,0.134766,0.0942383,0.0687256,0.052002,0.0383911,0.0241089,0.0101929,-0.00524902,-0.0236206,-0.0415344,-0.0536804,-0.0606079,-0.0618896,-0.0559692,-0.0443726,-0.0324707,-0.019989,-0.00692749,0.00402832,0.00726318,0.0032959,-0.00537109,-0.00692749,-0.00161743,0.00524902,0.00839233,0.0119324,0.0147705,0.0196533,0.0238342,0.0263672,0.0233459,0.0155029,0.00262451,-0.0103455,-0.0230103,-0.0320129,-0.0400085,-0.0438843,-0.0439453,-0.040741,-0.0345764,-0.0241699,-0.012085,-0.000274658,0.00698853,0.00952148,0.00375366,0.00012207,-0.00100708,-0.00195312,-0.00827026,-0.016449,-0.0241089,-0.0291138,-0.0359802,-0.0471802,-0.0634766,-0.0813293,-0.103027,-0.12851,-0.157532,-0.185028,-0.210266,-0.227844,-0.24173,-0.255432,-0.264496,-0.274506,-0.283234,-0.290009,-0.293884,-0.293365,-0.289062,-0.274628,-0.247528,-0.206787,-0.156311,-0.100281,-0.0371094,0.0275879,0.085968,0.127167,0.155426,0.176636,0.192627,0.205231,0.213837,0.22229,0.237061,0.260132,0.291931,0.319794,0.337036,0.338989,0.32431,0.302155,0.270477,0.233276,0.192413,0.15509,0.122681,0.101807,0.0909424,0.0847778,0.0797424,0.0706787,0.0568542,0.036499,0.0138245,-0.00280762,-0.0144958,-0.0223389,-0.0266418,-0.0275879,-0.0219421,-0.0145569,-0.00738525,-0.00375366,-0.00991821,-0.0254211,-0.0445557,-0.0603943,-0.0678406,-0.0709534,-0.0711975,-0.0671692,-0.0589294,-0.0471802,-0.0333557,-0.0203247,-0.0145569,-0.0159607,-0.0239563,-0.0323486,-0.0371704,-0.0390625,-0.0377197,-0.0307922,-0.0198669,-0.00112915,0.0209351,0.0444336,0.0666504,0.0821533,0.0895386,0.0892639,0.0841675,0.07724,0.0679321,0.0574646,0.0470581,0.0361633,0.0232849,0.00738525,-0.0116882,-0.0322266,-0.0587769,-0.0908813,-0.124969,-0.160461,-0.192963,-0.226562,-0.253632,-0.272552,-0.288055,-0.302155,-0.312225,-0.318451,-0.324493,-0.330139,-0.331146,-0.325836,-0.309326,-0.286316,-0.253479,-0.210205,-0.156036,-0.100464,-0.0410156,0.0198669,0.0761108,0.118713,0.14502,0.164307,0.18161,0.195099,0.206512,0.215363,0.231201,0.251221,0.276245,0.301086,0.324158,0.335907,0.330933,0.314575,0.291077,0.263275,0.229584,0.193298,0.160675,0.136383,0.118805,0.10202,0.0899353,0.07724,0.0627441,0.0420837,0.0188599,-0.0012207,-0.0171204,-0.0281067,-0.0370483,-0.0411987,-0.0458374,-0.0509338,-0.0549011,-0.057312,-0.0596008,-0.0684509,-0.0807495,-0.090271,-0.0949707,-0.0914001,-0.0848999,-0.07724,-0.0654297,-0.0518188,-0.0380554,-0.0250244,-0.0123596,-0.00415039,0.00134277,0.00241089,0.00375366,0.00744629,0.0151672,0.0281067,0.0434875,0.0599365,0.0760498,0.0917358,0.105988,0.118927,0.123749,0.119659,0.106049,0.0898132,0.0725403,0.0559082,0.0399475,0.0226746,0.0062561,-0.00906372,-0.0245667,-0.0430298,-0.0674438,-0.0966492,-0.129669,-0.163422,-0.197235,-0.226837,-0.250122,-0.268982,-0.281555,-0.288513,-0.28952,-0.289337,-0.289276,-0.28717,-0.285034,-0.283081,-0.279388,-0.267731,-0.245361,-0.218781,-0.187866,-0.152496,-0.108917,-0.0592651,-0.00939941,0.0356445,0.0706177,0.0966492,0.113953,0.130951,0.146179,0.160126,0.172943,0.186981,0.207733,0.235443,0.266785,0.294952,0.31308,0.319672,0.315704,0.304688,0.283905,0.258118,0.228394,0.197723,0.168335,0.14679,0.134216,0.125427,0.116577,0.101471,0.0798645,0.0560303,0.0282593,0.00128174,-0.024231,-0.0477905,-0.0683289,-0.0826721,-0.0898132,-0.0920715,-0.0934143,-0.0971069,-0.102295,-0.111481,-0.120941,-0.129944,-0.132355,-0.129272,-0.119995,-0.105835,-0.0871277,-0.065918,-0.0401306,-0.0128784,0.00958252,0.0250854,0.0349731,0.0438843,0.053894,0.0656433,0.0783081,0.0949707,0.11261,0.129181,0.144897,0.15918,0.167175,0.166656,0.155426,0.13913,0.118469,0.0954895,0.0714722,0.0505371,0.0331421,0.0158997,-0.00274658,-0.0215454,-0.0421448,-0.0673828,-0.0967102,-0.128326,-0.163879,-0.196045,-0.228577,-0.256714,-0.276978,-0.288605,-0.294891,-0.297974,-0.296295,-0.292694,-0.290192,-0.288269,-0.28717,-0.282349,-0.278107,-0.271088,-0.257172,-0.231598,-0.198456,-0.159729,-0.118469,-0.0715332,-0.0227661,0.0246277,0.0670471,0.102081,0.126831,0.146637,0.16449,0.182404,0.200928,0.219788,0.241943,0.265717,0.292816,0.315826,0.330933,0.334503,0.328918,0.313751,0.290009,0.2565,0.219666,0.186646,0.157318,0.131409,0.109863,0.0920105,0.0743713,0.0552979,0.0353088,0.0127563,-0.0137024,-0.0448914,-0.0733032,-0.0949097,-0.108582,-0.117981,-0.124573,-0.126495,-0.12207,-0.117462,-0.11261,-0.108337,-0.105835,-0.104889,-0.102081,-0.0930786,-0.0775757,-0.0596008,-0.0394592,-0.0153809,0.0101318,0.0318909,0.0518188,0.0677795,0.081604,0.0898743,0.0942383,0.100952,0.108795,0.119934,0.131073,0.140533,0.14679,0.148712,0.146118,0.138062,0.127502,0.111755,0.0929565,0.0724182,0.0551758,0.041748,0.0290527,0.0163879,0.000610352,-0.0157776,-0.0381165,-0.0656433,-0.0954285,-0.127441,-0.160614,-0.194153,-0.223969,-0.246033,-0.263489,-0.273834,-0.279999,-0.281464,-0.282898,-0.282684,-0.285767,-0.288513,-0.290527,-0.292755,-0.295288,-0.293091,-0.280212,-0.25946,-0.229797,-0.193146,-0.148041,-0.0963135,-0.0450439,0.00476074,0.053894,0.0977173,0.129791,0.153687,0.170258,0.186432,0.203552,0.221893,0.242065,0.263489,0.283234,0.30368,0.319183,0.3284,0.326111,0.310883,0.284302,0.249542,0.215424,0.182159,0.151733,0.123352,0.101074,0.0822144,0.0662537,0.0495911,0.0310059,0.00765991,-0.0211487,-0.0514832,-0.0800781,-0.101074,-0.115295,-0.122223,-0.12323,-0.119202,-0.111877,-0.102142,-0.0904846,-0.0817566,-0.0776367,-0.0811462,-0.0843506,-0.082489,-0.0748291,-0.0626221,-0.0432129,-0.0209961,0.00396729,0.0308838,0.0587158,0.08255,0.0996704,0.108337,0.112885,0.114685,0.118469,0.120941,0.127991,0.134308,0.141357,0.147797,0.153564,0.157104,0.155579,0.148041,0.131531,0.110992,0.0883179,0.0665894,0.0458984,0.0247803,0.00576782,-0.0168457,-0.0404663,-0.0656433,-0.094696,-0.125366,-0.160614,-0.197723,-0.231537,-0.261078,-0.281677,-0.296295,-0.305176,-0.309723,-0.31073,-0.31073,-0.309937,-0.312134,-0.315155,-0.316711,-0.315308,-0.310394,-0.295776,-0.270081,-0.234222,-0.19101,-0.143341,-0.0910645,-0.0399475,0.0124207,0.0602722,0.102539,0.13382,0.157928,0.173553,0.184906,0.195709,0.207581,0.222626,0.238464,0.256714,0.277313,0.297974,0.312225,0.317261,0.310669,0.290802,0.260468,0.220947,0.179321,0.139923,0.103485,0.0742188,0.053833,0.0392761,0.0324097,0.0252991,0.0175781,0.00213623,-0.0184631,-0.0427551,-0.0644836,-0.082489,-0.094574,-0.101135,-0.0995178,-0.0916138,-0.0802002,-0.0681763,-0.0579224,-0.0507507,-0.049408,-0.0532227,-0.057312,-0.0556335,-0.048584,-0.0334778,-0.0115967,0.0129395,0.0386047,0.0626221,0.0829468,0.0979309,0.105103,0.106171,0.1008,0.0974426,0.098114,0.105164,0.115631,0.126495,0.138794,0.149384,0.154755,0.154419,0.148041,0.134094,0.112,0.0832825,0.0561829,0.0312805,0.00912476,-0.0108032,-0.0282593,-0.0464478,-0.0675049,-0.0923462,-0.116577,-0.143005,-0.173553,-0.207916,-0.239258,-0.264221,-0.282959,-0.294434,-0.300751,-0.301819,-0.300476,-0.297729,-0.29303,-0.287048,-0.283142,-0.279327,-0.274628,-0.264771,-0.250671,-0.232208,-0.206451,-0.174377,-0.135376,-0.0914917,-0.04953,-0.00765991,0.0334778,0.0736389,0.106445,0.133026,0.151825,0.164551,0.172028,0.180267,0.192474,0.207794,0.221222,0.235168,0.249054,0.263611,0.27182,0.270203,0.261017,0.240479,0.212341,0.178711,0.147247,0.122406,0.101196,0.085907,0.0752258,0.0677795,0.0634155,0.0543518,0.0427551,0.0255737,0.00314331,-0.0218201,-0.0465088,-0.0628967,-0.0708618,-0.0697937,-0.0665894,-0.0603333,-0.0517578,-0.0425415,-0.0346985,-0.032074,-0.0327454,-0.0397339,-0.0462341,-0.048584,-0.0401306,-0.0234375,-0.00604248,0.0137634,0.0361023,0.0603943,0.0811462,0.0954895,0.103302,0.105713,0.104309,0.101685,0.102814,0.106567,0.112274,0.119995,0.126648,0.132538,0.131622,0.125641,0.113007,0.093811,0.069519,0.0422668,0.0146179,-0.00839233,-0.0260315,-0.0406189,-0.0539551,-0.0706787,-0.0875854,-0.108185,-0.132141,-0.159332,-0.189209,-0.216919,-0.240082,-0.258453,-0.268921,-0.274567,-0.274231,-0.273102,-0.270477,-0.268585,-0.266785,-0.265106,-0.260803,-0.253693,-0.243744,-0.230865,-0.215912,-0.198059,-0.174103,-0.146576,-0.118378,-0.0881348,-0.0595398,-0.0280457,0.00415039,0.0391235,0.0754395,0.108917,0.134888,0.152954,0.163208,0.16925,0.177246,0.185089,0.189453,0.194641,0.201202,0.214294,0.227386,0.239319,0.243958,0.240601,0.224579,0.202209,0.178467,0.153564,0.128662,0.104828,0.0862427,0.0734863,0.0663757,0.0624084,0.0608826,0.0547791,0.040741,0.0212708,0.000335693,-0.0157166,-0.0278625,-0.0353088,-0.0377808,-0.0375977,-0.0340271,-0.028656,-0.0184631,-0.00979614,-0.00576782,-0.0115967,-0.0189209,-0.0245667,-0.0228271,-0.0160522,-0.00457764,0.00866699,0.0249023,0.0404663,0.056366,0.0690002,0.0775757,0.0776367,0.069458,0.0589294,0.0518799,0.0491943,0.0519409,0.0565796,0.0626221,0.0679321,0.0700073,0.0712891,0.0683899,0.0613403,0.0446167,0.0232849,0.00134277,-0.0157166,-0.0290527,-0.0381775,-0.045166,-0.0514221,-0.0589905,-0.0717468,-0.0871887,-0.10733,-0.128326,-0.152008,-0.17511,-0.194305,-0.208649,-0.218719,-0.222961,-0.222748,-0.220459,-0.220886,-0.224579,-0.228455,-0.230408,-0.233429,-0.233032,-0.228912,-0.221222,-0.215851,-0.208649,-0.194305,-0.170532,-0.146912,-0.122009,-0.0926819,-0.062561,-0.0309448,0.00430298,0.041626,0.0769043,0.103638,0.119995,0.132141,0.142151,0.154419,0.169067,0.183289,0.196503,0.208313,0.224976,0.241608,0.257263,0.266113,0.263824,0.249603,0.22583,0.200867,0.178253,0.158661,0.139069,0.120209,0.104492,0.0948181,0.089325,0.0857849,0.0785828,0.0643616,0.0436096,0.0197449,0.0032959,-0.00631714,-0.0114746,-0.0152283,-0.0182495,-0.0205994,-0.0216064,-0.0206604,-0.0203247,-0.0246887,-0.0335693,-0.0452271,-0.052887,-0.0522766,-0.0453796,-0.032959,-0.0210876,-0.00991821,-0.00256348,0.00396729,0.00598145,0.00616455,0.00335693,0.00128174,-0.00268555,-0.0020752,0.0050354,0.0220032,0.0403442,0.0566406,0.0690002,0.0754395,0.0789795,0.0755005,0.0675964,0.0585938,0.0466309,0.0337524,0.0240173,0.0193176,0.0198669,0.0179138,0.0152893,0.00549316,-0.0083313,-0.0291138,-0.0546875,-0.081665,-0.110535,-0.137909,-0.164886,-0.186432,-0.203033,-0.216766,-0.225494,-0.235107,-0.244019,-0.252228,-0.259338,-0.26712,-0.272766,-0.272949,-0.268799,-0.261536,-0.253906,-0.240875,-0.224487,-0.203369,-0.17746,-0.144897,-0.108337,-0.0727539,-0.0374451,0.00268555,0.0468445,0.089386,0.122345,0.144775,0.1604,0.168457,0.17337,0.180939,0.191803,0.202606,0.213959,0.227997,0.247314,0.267456,0.28067,0.283234,0.273224,0.249603,0.220001,0.189056,0.160614,0.136993,0.118591,0.104553,0.0977173,0.0959167,0.098175,0.0960999,0.0858459,0.0657043,0.0397339,0.0117493,-0.0109253,-0.0275269,-0.0367126,-0.0426025,-0.0471191,-0.0501404,-0.0489807,-0.0473022,-0.0489807,-0.0567932,-0.0666504,-0.0793152,-0.086792,-0.0885315,-0.0810852,-0.0704041,-0.0595398,-0.0507507,-0.0401917,-0.0299988,-0.0195923,-0.013092,-0.00744629,-0.00280762,0.00296021,0.0143738,0.0314636,0.0532227,0.0748291,0.0916138,0.104492,0.113281,0.115906,0.114441,0.108002,0.0991821,0.0856934,0.0714111,0.06073,0.053894,0.0480652,0.0411377,0.0296021,0.0136108,-0.0100098,-0.0375061,-0.0689392,-0.103363,-0.138397,-0.172089,-0.201935,-0.223236,-0.23764,-0.245972,-0.250885,-0.253021,-0.254425,-0.255981,-0.256714,-0.256836,-0.253632,-0.248932,-0.242004,-0.231262,-0.217377,-0.204102,-0.19046,-0.171417,-0.147308,-0.120148,-0.0906067,-0.0580444,-0.0224915,0.0167847,0.0549622,0.0935669,0.127045,0.149658,0.160461,0.163086,0.164215,0.169006,0.17395,0.179657,0.190674,0.206055,0.226562,0.248718,0.266907,0.276184,0.271332,0.254028,0.225494,0.19986,0.171936,0.146515,0.125366,0.108978,0.100128,0.0934143,0.090271,0.0848389,0.0748901,0.0543518,0.025177,-0.00637817,-0.0332947,-0.0534363,-0.0679321,-0.0785217,-0.0828857,-0.0856934,-0.0865173,-0.0851746,-0.081665,-0.0826111,-0.0918884,-0.103027,-0.107513,-0.103485,-0.093689,-0.081604,-0.0667114,-0.0493164,-0.0304565,-0.0117493,0.00857544,0.0263672,0.040802,0.0502014,0.058197,0.0684509,0.0810852,0.0939026,0.105042,0.114502,0.119934,0.120667,0.116455,0.112427,0.105499,0.0960388,0.0812073,0.0664368,0.0555115,0.0458984,0.037384,0.0266418,0.0118713,-0.00643921,-0.0299377,-0.0541077,-0.0809326,-0.108124,-0.135773,-0.161072,-0.181274,-0.194763,-0.202484,-0.207733,-0.211487,-0.212891,-0.215759,-0.220673,-0.22522,-0.228058,-0.227448,-0.22818,-0.225494,-0.218323,-0.207916,-0.196167,-0.187714,-0.177032,-0.162872,-0.142883,-0.119049,-0.0892639,-0.0561829,-0.0181885,0.0189819,0.0587769,0.0974426,0.129791,0.149597,0.157532,0.160065,0.159271,0.160858,0.1633,0.170929,0.184692,0.203491,0.226715,0.250122,0.269867,0.276855,0.268799,0.24704,0.215515,0.177521,0.138336,0.10202,0.0740967,0.0541077,0.0410156,0.0344849,0.0346375,0.0360413,0.0324707,0.0168457,-0.00408936,-0.0283203,-0.0514221,-0.0716248,-0.0858459,-0.0916748,-0.0904846,-0.085968,-0.0767212,-0.0644836,-0.0508728,-0.0432129,-0.0413513,-0.041687,-0.039856,-0.0359802,-0.0307922,-0.0214844,-0.0104675,0.00180054,0.0137634,0.0246887,0.0350952,0.0426941,0.0444946,0.0422058,0.0403442,0.0387878,0.0412903,0.0462341,0.0545654,0.0658264,0.0761719,0.0845642,0.0887146,0.0909424,0.0901489,0.0828857,0.0714111,0.057373,0.0461121,0.0377197,0.0305481,0.0246887,0.0186462,0.0106812,0.000732422,-0.0122681,-0.0287781,-0.0493164,-0.0743103,-0.0999451,-0.122681,-0.143005,-0.159668,-0.175903,-0.189453,-0.201019,-0.209137,-0.21759,-0.224365,-0.229523,-0.232819,-0.232361,-0.227173,-0.215179,-0.202271,-0.188782,-0.176697,-0.165771,-0.155365,-0.145569,-0.130951,-0.109314,-0.0870361,-0.0579834,-0.025177,0.0135498,0.0541077,0.0930786,0.126709,0.148987,0.158325,0.159271,0.155426,0.152069,0.1492,0.146637,0.148651,0.155762,0.171204,0.190125,0.206055,0.213074,0.208069,0.190216,0.164032,0.132965,0.102203,0.0721436,0.049408,0.0349121,0.0316772,0.0359192,0.0455017,0.0558472,0.060791,0.0559082,0.0424194,0.0231018,0.00274658,-0.0148926,-0.0287781,-0.036499,-0.0393372,-0.0346985,-0.0266418,-0.0168457,-0.0100098,-0.0088501,-0.0140991,-0.0259705,-0.0386047,-0.0475159,-0.0527649,-0.0544434,-0.0533447,-0.0455017,-0.0358276,-0.0227661,-0.0112,0.000274658,0.00698853,0.00933838,0.012207,0.0158997,0.0249634,0.036377,0.0514221,0.0691223,0.0871277,0.101959,0.112762,0.118652,0.118317,0.113098,0.102692,0.0908203,0.0801392,0.0720215,0.0670471,0.0632935,0.0592651,0.0527649,0.0411377,0.0235596,0.000274658,-0.0293274,-0.0632935,-0.0967102,-0.12912,-0.155304,-0.176575,-0.192139,-0.201935,-0.209045,-0.213684,-0.217529,-0.222473,-0.228455,-0.234039,-0.23819,-0.238068,-0.235168,-0.227112,-0.216522,-0.203552,-0.191406,-0.181061,-0.169342,-0.153748,-0.133759,-0.111145,-0.0839539,-0.0524292,-0.0172424,0.019928,0.0585327,0.0940247,0.119812,0.132141,0.134308,0.129608,0.124634,0.122284,0.122345,0.129608,0.142944,0.165497,0.193481,0.221466,0.241821,0.248657,0.238983,0.213959,0.181213,0.144226,0.108795,0.0788574,0.0593262,0.0506592,0.0524902,0.0612793,0.0700073,0.0745544,0.0684509,0.0515442,0.0255737,-0.00268555,-0.0311279,-0.053772,-0.0668335,-0.0708008,-0.0677795,-0.0610046,-0.0498657,-0.0381165,-0.0310059,-0.0326233,-0.0392761,-0.0489807,-0.0555725,-0.0578613,-0.0539551,-0.0447083,-0.0310669,-0.0152893,0.00180054,0.0195923,0.0349121,0.0426025,0.0459595,0.0468445,0.0499878,0.0541687,0.061554,0.0732117,0.0883179,0.103027,0.114227,0.121155,0.125092,0.123352,0.116516,0.105225,0.0928955,0.0808716,0.0697327,0.0629578,0.0578613,0.0536194,0.0447693,0.032959,0.0163879,-0.00424194,-0.0310669,-0.0611267,-0.0920715,-0.120483,-0.145355,-0.165161,-0.180389,-0.191345,-0.201263,-0.210266,-0.217377,-0.226562,-0.2388,-0.24939,-0.25592,-0.257263,-0.255646,-0.249054,-0.236847,-0.223145,-0.20752,-0.191864,-0.179657,-0.170258,-0.159119,-0.142761,-0.120056,-0.0913391,-0.0552979,-0.0119324,0.0315552,0.0744324,0.114777,0.145508,0.161346,0.160004,0.150818,0.140686,0.133545,0.130341,0.137238,0.155029,0.180664,0.207794,0.233154,0.249878,0.250397,0.231354,0.194489,0.149933,0.103882,0.0618896,0.0304565,0.0157776,0.0173035,0.0292053,0.0462341,0.0618896,0.0730896,0.0709534,0.0536194,0.0245667,-0.0085144,-0.0392761,-0.0626831,-0.0729675,-0.0689392,-0.0544434,-0.0362549,-0.0158386,0.00256348,0.0161743,0.0183105,0.00946045,-0.00683594,-0.0219421,-0.0307312,-0.0358276,-0.0334778,-0.0241089,-0.00857544,0.00778198,0.0224304,0.0344849,0.0423584,0.0434875,0.0413513,0.0390625,0.040741,0.0489197,0.0605469,0.0787354,0.0987244,0.11731,0.128174,0.132477,0.130524,0.121948,0.109406,0.093689,0.0791931,0.0689392,0.0634155,0.0599365,0.0590515,0.0548401,0.0459595,0.0283813,0.00241089,-0.0310669,-0.0697327,-0.109467,-0.146301,-0.176361,-0.199463,-0.21463,-0.223572,-0.22757,-0.229523,-0.232422,-0.238861,-0.249268,-0.259918,-0.270264,-0.27243,-0.269867,-0.258392,-0.242737,-0.222015,-0.198181,-0.174377,-0.156372,-0.144165,-0.130737,-0.11557,-0.0975952,-0.0741577,-0.0413513,-0.003479,0.0384521,0.0786438,0.118378,0.150482,0.165497,0.163635,0.149384,0.133759,0.121399,0.114014,0.115845,0.128326,0.151398,0.179535,0.207184,0.227722,0.232605,0.217102,0.182404,0.138336,0.0934753,0.0543518,0.0247803,0.0101929,0.0134277,0.0306702,0.0525513,0.0733643,0.0882568,0.0888672,0.0743713,0.0452881,0.00991821,-0.0246277,-0.0505981,-0.0636292,-0.0626221,-0.0485229,-0.0275879,-0.00576782,0.0157166,0.0309448,0.0350342,0.024353,0.00564575,-0.0140381,-0.0255127,-0.0315552,-0.0307922,-0.020752,-0.00482178,0.0162964,0.0366516,0.0534973,0.0648193,0.0689392,0.0673828,0.0642395,0.0634155,0.0652466,0.0720825,0.0829468,0.0969849,0.108521,0.115509,0.116028,0.111816,0.102692,0.0883179,0.0710754,0.0547791,0.0428772,0.0359192,0.0333557,0.0293274,0.0232239,0.0136108,-0.000793457,-0.0216064,-0.0492554,-0.0818787,-0.114166,-0.144836,-0.167725,-0.185638,-0.197784,-0.204041,-0.206848,-0.207977,-0.20871,-0.21167,-0.217438,-0.225494,-0.232819,-0.236053,-0.235504,-0.230255,-0.220947,-0.205963,-0.187927,-0.171143,-0.157196,-0.144836,-0.13504,-0.125153,-0.11261,-0.0957642,-0.0706177,-0.0394592,-0.00430298,0.0311279,0.065979,0.0984497,0.123016,0.132751,0.129517,0.118591,0.10556,0.0956421,0.0941467,0.10321,0.121155,0.142944,0.168396,0.193817,0.212952,0.217651,0.202942,0.173767,0.135834,0.0959167,0.0590515,0.0322266,0.0185852,0.0210876,0.0328064,0.0508728,0.069397,0.0820007,0.0858459,0.0733643,0.0512695,0.0219421,-0.00799561,-0.0310669,-0.041687,-0.0390015,-0.0260925,-0.00704956,0.0142822,0.0361023,0.052948,0.0587158,0.0527649,0.0379944,0.0220947,0.00912476,0.000549316,-0.000457764,0.00476074,0.0171204,0.0313416,0.0452271,0.0574646,0.0628967,0.0628052,0.0579834,0.0498047,0.0414734,0.0367126,0.0367126,0.0429382,0.052948,0.0638123,0.0733032,0.0785828,0.0802002,0.0769043,0.0681152,0.0569763,0.0431519,0.0324097,0.0249634,0.0215454,0.0198059,0.0185852,0.0157776,0.00946045,-0.00524902,-0.0261841,-0.0522156,-0.0808716,-0.110809,-0.13739,-0.159668,-0.175507,-0.185425,-0.190063,-0.192078,-0.193878,-0.199005,-0.20697,-0.217712,-0.228729,-0.239807,-0.246643,-0.249603,-0.240662,-0.225891,-0.20639,-0.18692,-0.165436,-0.145447,-0.130951,-0.119934,-0.109314,-0.0964966,-0.079071,-0.0566406,-0.0246887,0.012207,0.0484619,0.0810852,0.109192,0.13028,0.13739,0.132477,0.119659,0.107239,0.0994568,0.0997925,0.108398,0.12323,0.144623,0.167053,0.184174,0.191956,0.186523,0.166046,0.132477,0.0940247,0.0586548,0.0318909,0.016449,0.0167236,0.0299988,0.0525513,0.0750427,0.0916138,0.0996094,0.0948181,0.0774536,0.0503235,0.0189209,-0.00576782,-0.0196533,-0.0197449,-0.00692749,0.016449,0.0418701,0.065918,0.0819397,0.0885315,0.0842896,0.0667725,0.0418701,0.0177307,6.10352e-05,-0.00933838,-0.0100708,-0.000213623,0.0144348,0.0300598,0.0431519,0.0510864,0.0531616,0.0479126,0.0386658,0.0270996,0.0177307,0.0143738,0.0179138,0.0282593,0.0425415,0.0555725,0.0670471,0.0730286,0.0732117,0.0678406,0.0582581,0.0456238,0.0333557,0.0236206,0.0174561,0.0161743,0.016571,0.0152283,0.0104675,6.10352e-05,-0.0159607,-0.0390015,-0.0661011,-0.0960999,-0.124176,-0.150726,-0.171875,-0.187042,-0.193024,-0.195374,-0.196442,-0.198914,-0.202271,-0.207123,-0.214844,-0.223022,-0.228851,-0.230682,-0.227173,-0.218597,-0.203094,-0.182159,-0.162476,-0.145233,-0.130066,-0.12088,-0.115509,-0.110992,-0.100525,-0.081604,-0.0545044,-0.0249023,0.00671387,0.0412903,0.0760498,0.104828,0.121002,0.122833,0.110474,0.0920715,0.0751648,0.0686646,0.0729675,0.0853577,0.104553,0.129944,0.158783,0.183899,0.196564,0.192871,0.173096,0.139465,0.0977173,0.0596008,0.0336304,0.0245056,0.0302734,0.0498657,0.0749817,0.102356,0.122345,0.133026,0.129608,0.109741,0.0748901,0.0366516,0.00497437,-0.0112,-0.0106812,0.00448608,0.0271912,0.0521545,0.0758972,0.093689,0.1008,0.0931396,0.0706787,0.0404663,0.0108032,-0.0107422,-0.0201416,-0.016449,-0.00402832,0.0141602,0.032074,0.0462952,0.0553589,0.0566406,0.048645,0.033905,0.0145569,-0.000213623,-0.0071106,-0.00274658,0.0104065,0.0287781,0.0447693,0.0565186,0.0613403,0.0597229,0.0510864,0.0353088,0.015564,-0.00241089,-0.0142212,-0.0175171,-0.0134888,-0.00442505,0.00598145,0.0118103,0.00845337,-0.00491333,-0.0272522,-0.0558472,-0.0881348,-0.119537,-0.145966,-0.165222,-0.173218,-0.171021,-0.162079,-0.152679,-0.1492,-0.152161,-0.16214,-0.177368,-0.194885,-0.214294,-0.229797,-0.237457,-0.231201,-0.214355,-0.190399,-0.166046,-0.141998,-0.122742,-0.110992,-0.108917,-0.112885,-0.115448,-0.112274,-0.100067,-0.0782471,-0.0463867,-0.0106812,0.0280457,0.0646973,0.0964966,0.11557,0.115967,0.104492,0.0879822,0.0751038,0.0714722,0.078125,0.0919495,0.116455,0.144836,0.175568,0.198334,0.208313,0.203217,0.181,0.144958,0.105042,0.0716248,0.0522766,0.046051,0.0546875,0.0740356,0.0986633,0.120544,0.135223,0.137512,0.127777,0.102203,0.0654297,0.0293884,0.00582886,-0.00167847,0.00558472,0.0234375,0.0465698,0.0693359,0.0870361,0.0957031,0.0924072,0.0767822,0.0492554,0.0177307,-0.00732422,-0.0211487,-0.0215454,-0.0138245,0.000213623,0.015625,0.0282593,0.0350952,0.0356445,0.0281982,0.0148926,-0.00402832,-0.0210876,-0.0303955,-0.0271912,-0.0138855,0.00592041,0.0261841,0.0430908,0.0541687,0.0575256,0.0541077,0.0430298,0.0283813,0.0118713,0.000274658,-0.00375366,0.00189209,0.012146,0.0241089,0.0320129,0.032074,0.0213318,0.00112915,-0.0288696,-0.0621338,-0.0957031,-0.125244,-0.147583,-0.159729,-0.162292,-0.156036,-0.1492,-0.146637,-0.153229,-0.166443,-0.18811,-0.211548,-0.237061,-0.256317,-0.265961,-0.261414,-0.241669,-0.214905,-0.18457,-0.155914,-0.131012,-0.112488,-0.103973,-0.107056,-0.116791,-0.123169,-0.11792,-0.0953064,-0.0626831,-0.0222778,0.0181885,0.0583801,0.0956421,0.124512,0.138458,0.134552,0.117188,0.0949707,0.0773926,0.0730896,0.0823364,0.103088,0.127777,0.154419,0.178802,0.195038,0.20047,0.192871,0.168182,0.133301,0.0926819,0.0610657,0.0458374,0.0489807,0.0663147,0.0898743,0.111481,0.129456,0.139923,0.14093,0.127258,0.0987854,0.0599365,0.0240173,-0.00146484,-0.00549316,0.00878906,0.0326843,0.0571899,0.0766296,0.0892029,0.0943604,0.0867004,0.0664978,0.0366516,0.00357056,-0.0255127,-0.0377197,-0.036499,-0.0206604,-0.00134277,0.0167236,0.0287781,0.0343018,0.0343628,0.0271912,0.0141602,-0.00515747,-0.0220947,-0.0322876,-0.0273743,-0.0113525,0.0118713,0.0342407,0.0508728,0.0605469,0.0620728,0.0532227,0.0390015,0.0202637,0.00274658,-0.0101929,-0.0144348,-0.00933838,0.00335693,0.0178528,0.0269165,0.0268555,0.0142822,-0.00872803,-0.0393982,-0.074646,-0.108398,-0.13623,-0.155762,-0.164429,-0.161743,-0.152069,-0.141663,-0.138,-0.144012,-0.159119,-0.178528,-0.202759,-0.224915,-0.239807,-0.245758,-0.240753,-0.223816,-0.196167,-0.164215,-0.135895,-0.11618,-0.106445,-0.105896,-0.115112,-0.128387,-0.135559,-0.128265,-0.106445,-0.0736389,-0.0298767,0.0181274,0.0675049,0.107849,0.136841,0.148865,0.14267,0.121948,0.0963745,0.0779114,0.0718079,0.0818787,0.103424,0.131958,0.162872,0.193207,0.216034,0.226166,0.215759,0.18692,0.141693,0.0934143,0.0531616,0.0314636,0.0279236,0.041626,0.0638123,0.0905457,0.113495,0.127167,0.128601,0.112671,0.0808105,0.0401917,0.00201416,-0.0209351,-0.0245667,-0.00866699,0.0190735,0.0488586,0.073822,0.0924683,0.100464,0.0973206,0.0789795,0.0504761,0.0167847,-0.00765991,-0.017395,-0.0118103,0.00357056,0.0246887,0.0414124,0.0520935,0.0551147,0.0508728,0.0397949,0.020813,-0.00268555,-0.0234375,-0.0353088,-0.0326233,-0.0192566,0.00241089,0.0216675,0.0360413,0.0401306,0.0385132,0.0296631,0.0162964,-0.00140381,-0.0177307,-0.0289307,-0.0291138,-0.0201416,-0.00335693,0.0135498,0.0236206,0.0234985,0.0108643,-0.0110168,-0.0395203,-0.0712891,-0.100342,-0.125488,-0.141663,-0.149323,-0.148315,-0.139404,-0.132202,-0.12973,-0.138123,-0.154297,-0.175018,-0.199402,-0.220612,-0.234772,-0.240479,-0.2341,-0.216858,-0.187653,-0.154358,-0.123627,-0.101532,-0.0895996,-0.0885925,-0.0965881,-0.108917,-0.116699,-0.113098,-0.0944214,-0.0636292,-0.0244446,0.0194092,0.0630798,0.102814,0.129517,0.139923,0.132416,0.110321,0.0848999,0.0627441,0.0526123,0.0564575,0.0714722,0.0956421,0.124237,0.154297,0.180542,0.193298,0.188446,0.165161,0.127991,0.0852356,0.0479126,0.0253601,0.0212708,0.0316162,0.0525513,0.0785828,0.106384,0.127594,0.137726,0.130005,0.107849,0.0736389,0.0381165,0.0139465,0.00491333,0.0134888,0.0312805,0.0539551,0.0773926,0.0942383,0.107452,0.106842,0.0936279,0.0673828,0.037384,0.0126038,-0.00128174,-0.00402832,0.00390625,0.0159607,0.0283203,0.0375061,0.0426941,0.0430298,0.0361633,0.0226746,0.0017395,-0.0173035,-0.0303345,-0.0317383,-0.0233459,-0.00839233,0.00738525,0.0202637,0.0276489,0.0294495,0.0234985,0.0104675,-0.0083313,-0.0262451,-0.0386047,-0.0432739,-0.0381775,-0.0262451,-0.00958252,0.00262451,0.00564575,-0.00088501,-0.0151672,-0.037262,-0.0634766,-0.0904846,-0.113342,-0.128662,-0.134705,-0.131744,-0.120544,-0.109467,-0.102692,-0.105652,-0.118256,-0.137573,-0.1604,-0.184692,-0.203217,-0.215302,-0.216034,-0.202423,-0.181549,-0.1539,-0.127716,-0.10791,-0.0974426,-0.0990601,-0.107666,-0.121826,-0.133148,-0.136658,-0.126984,-0.101807,-0.0669861,-0.0249634,0.0166321,0.0561218,0.0883789,0.10611,0.108917,0.098053,0.0805969,0.0652466,0.0564575,0.0617371,0.0782471,0.102203,0.130066,0.157776,0.181,0.194305,0.193542,0.174377,0.143433,0.104492,0.0696106,0.0453796,0.0366516,0.0419312,0.0588684,0.0798645,0.101959,0.117126,0.124176,0.117645,0.0977783,0.0678406,0.0383911,0.0169067,0.0108032,0.020752,0.0420227,0.0677185,0.0921326,0.109924,0.120483,0.12088,0.108643,0.0869141,0.0600586,0.036438,0.0222778,0.020752,0.0258484,0.0368347,0.0455017,0.0489807,0.0466309,0.037323,0.0224304,0.00146484,-0.0228271,-0.045105,-0.0599365,-0.0632324,-0.0542297,-0.0386047,-0.0202026,-0.0050354,0.00390625,0.00643921,0.000396729,-0.0104675,-0.0250854,-0.0390625,-0.0482483,-0.0468445,-0.0360413,-0.0169678,0.00436401,0.0236816,0.0349121,0.0353088,0.0222778,0.00180054,-0.0250244,-0.0533447,-0.0787354,-0.0987244,-0.108337,-0.108856,-0.105042,-0.098053,-0.0956421,-0.100861,-0.116974,-0.139404,-0.165771,-0.19101,-0.214508,-0.229858,-0.234375,-0.225647,-0.204163,-0.176178,-0.150818,-0.132629,-0.122406,-0.118378,-0.121216,-0.131531,-0.14267,-0.14798,-0.140411,-0.116577,-0.0779114,-0.0313416,0.0157776,0.0552368,0.0843506,0.104828,0.111938,0.109192,0.0932922,0.0734863,0.0569763,0.0524292,0.0649719,0.0908813,0.12207,0.15155,0.175018,0.187775,0.192139,0.182617,0.16153,0.12851,0.0906067,0.057251,0.0379944,0.0411377,0.0578003,0.0834961,0.105316,0.121735,0.129517,0.129059,0.119995,0.0996704,0.0705261,0.0391846,0.0179138,0.016449,0.0302124,0.0531616,0.0742188,0.0900574,0.100342,0.100861,0.0968323,0.0838318,0.0647583,0.040802,0.0204773,0.00958252,0.0109253,0.0218201,0.032959,0.0386658,0.0381165,0.032074,0.0249634,0.0144348,0.00146484,-0.015625,-0.0302734,-0.0365906,-0.0328979,-0.0209351,-0.00570679,0.0065918,0.0134888,0.0133667,0.00631714,-0.0050354,-0.0193176,-0.0327454,-0.0437622,-0.0482483,-0.0440979,-0.0309448,-0.0134277,0.00375366,0.0144958,0.0162964,0.00805664,-0.00857544,-0.032135,-0.057373,-0.0814819,-0.100464,-0.111755,-0.114288,-0.108795,-0.102356,-0.0987244,-0.101196,-0.110077,-0.124756,-0.145294,-0.168335,-0.191284,-0.208984,-0.218201,-0.217041,-0.204712,-0.183228,-0.159729,-0.143768,-0.136383,-0.134491,-0.134491,-0.139191,-0.147369,-0.155853,-0.153076,-0.136841,-0.105225,-0.0597229,-0.00784302,0.0377197,0.0714722,0.0926208,0.105713,0.111755,0.108124,0.0942993,0.078186,0.0682678,0.073761,0.0955811,0.127777,0.159607,0.186188,0.202362,0.207306,0.200684,0.182495,0.152344,0.111542,0.0686035,0.0347595,0.0211487,0.0283203,0.0492554,0.0748291,0.0960999,0.108582,0.110474,0.105377,0.0916138,0.0696716,0.0388489,0.0116882,-0.000274658,0.00845337,0.0322876,0.0612793,0.0881348,0.107849,0.120605,0.123901,0.118805,0.105042,0.0853577,0.0614624,0.0420227,0.0306702,0.0323486,0.0410767,0.0499268,0.0535583,0.0513306,0.044281,0.0341492,0.0197449,0.00161743,-0.0192566,-0.0360413,-0.0465088,-0.046051,-0.0391235,-0.0273743,-0.0193176,-0.0144958,-0.0155029,-0.0213318,-0.0289917,-0.0404053,-0.0481873,-0.053772,-0.0524292,-0.0428162,-0.0259705,-0.00750732,0.00665283,0.0128784,0.0114746,-0.000335693,-0.0198669,-0.0444336,-0.069458,-0.0892029,-0.104218,-0.11142,-0.111145,-0.105774,-0.100067,-0.0996094,-0.107391,-0.121155,-0.139679,-0.163879,-0.189453,-0.212616,-0.226898,-0.229462,-0.220215,-0.198914,-0.172424,-0.147797,-0.132355,-0.122833,-0.117798,-0.116852,-0.12207,-0.131805,-0.138519,-0.130127,-0.104767,-0.0648193,-0.0186462,0.025177,0.0593872,0.0861206,0.103302,0.114838,0.115234,0.104218,0.0845642,0.0646973,0.0577087,0.0699463,0.0953064,0.123352,0.147247,0.162354,0.172607,0.176361,0.173279,0.156708,0.12677,0.0863647,0.0500793,0.0299988,0.0315552,0.0498657,0.0723572,0.0909424,0.10437,0.112213,0.116974,0.114288,0.100006,0.074707,0.0459595,0.0265198,0.028656,0.0481873,0.0742188,0.0951538,0.108398,0.116638,0.122009,0.121674,0.112488,0.0918884,0.0656433,0.0419312,0.028656,0.0282593,0.0368347,0.0454407,0.0477295,0.0452271,0.0399475,0.0359802,0.0263062,0.00933838,-0.0137634,-0.0363159,-0.049408,-0.0523376,-0.0456238,-0.0359192,-0.0262451,-0.0204773,-0.0194702,-0.0211487,-0.0264282,-0.0353699,-0.0467224,-0.0559082,-0.0609436,-0.0577087,-0.0476379,-0.0318909,-0.0169678,-0.00665283,-0.00363159,-0.0065918,-0.0170593,-0.0335693,-0.0552368,-0.0761719,-0.0928955,-0.102478,-0.104156,-0.102203,-0.0968323,-0.0949097,-0.0985107,-0.107788,-0.121948,-0.140259,-0.162964,-0.186981,-0.208069,-0.217987,-0.212952,-0.196716,-0.174957,-0.155029,-0.139343,-0.128662,-0.122559,-0.121277,-0.127045,-0.138397,-0.150055,-0.150055,-0.128448,-0.09021,-0.0439453,0.00262451,0.0397949,0.0696716,0.0923462,0.108521,0.115295,0.106232,0.085907,0.0633545,0.0539551,0.0613403,0.0869141,0.116577,0.14328,0.16095,0.174713,0.184357,0.186768,0.171753,0.141144,0.0979919,0.0556946,0.0291138,0.0241699,0.0399475,0.0608826,0.0795898,0.09375,0.105896,0.115692,0.117706,0.108337,0.0846863,0.0567932,0.0353088,0.0325623,0.0489197,0.0737,0.0972595,0.113281,0.125244,0.132751,0.135223,0.130798,0.115021,0.091156,0.0652466,0.0475159,0.0437012,0.0509338,0.0576477,0.0579224,0.0513306,0.0414124,0.0306702,0.0177917,0.000396729,-0.0236816,-0.0488586,-0.0664368,-0.0726318,-0.0671082,-0.0560303,-0.0447083,-0.0377197,-0.0349731,-0.0371094,-0.040741,-0.0484009,-0.0580444,-0.0662537,-0.0691833,-0.0640869,-0.0499878,-0.0311279,-0.0100098,0.00564575,0.0124207,0.0105286,-6.10352e-05,-0.0169067,-0.0375061,-0.0592651,-0.0777283,-0.0900574,-0.094574,-0.0944214,-0.0906067,-0.0892029,-0.0914001,-0.0997314,-0.115631,-0.136658,-0.163422,-0.191803,-0.214355,-0.226654,-0.224243,-0.211884,-0.192017,-0.171204,-0.152557,-0.138458,-0.129181,-0.126312,-0.130676,-0.142761,-0.154846,-0.157043,-0.141357,-0.10611,-0.0595398,-0.0127563,0.0284424,0.0605469,0.0887146,0.109985,0.121063,0.117462,0.0969849,0.0716248,0.0517578,0.0536804,0.0743713,0.105225,0.133759,0.1539,0.171478,0.184418,0.19101,0.182404,0.156036,0.112213,0.065979,0.0309448,0.0186462,0.0283203,0.0500793,0.0730286,0.0939636,0.110657,0.125092,0.134094,0.131805,0.112549,0.0805359,0.0489807,0.0361633,0.0444946,0.0677185,0.0917358,0.110413,0.123627,0.134888,0.143433,0.144562,0.134369,0.11026,0.0795288,0.0542297,0.0428772,0.0435486,0.0498657,0.0507507,0.046051,0.0376587,0.0275269,0.0182495,0.0050354,-0.0152283,-0.0396729,-0.0622253,-0.072876,-0.0730896,-0.0632935,-0.0523376,-0.0425415,-0.0388489,-0.0394592,-0.0440369,-0.0508728,-0.0596008,-0.066925,-0.0715332,-0.069397,-0.0580444,-0.040802,-0.0186462,-0.000274658,0.0122681,0.0163879,0.00958252,-0.00592041,-0.027771,-0.0499878,-0.0718689,-0.0881348,-0.0979919,-0.0996094,-0.0963135,-0.0907288,-0.0898743,-0.0947571,-0.108246,-0.128662,-0.155029,-0.184357,-0.212402,-0.230408,-0.237183,-0.230804,-0.213562,-0.193085,-0.174835,-0.161011,-0.149323,-0.140076,-0.140747,-0.150726,-0.165314,-0.168396,-0.153076,-0.117035,-0.0711975,-0.0220947,0.0205994,0.0578613,0.0890503,0.114105,0.130676,0.130066,0.112274,0.0863647,0.0706787,0.0771179,0.102631,0.13443,0.16214,0.183014,0.197388,0.207184,0.210876,0.199249,0.169678,0.121063,0.0700073,0.0332947,0.0212097,0.0316162,0.053833,0.0755005,0.0949097,0.107727,0.121216,0.126434,0.12207,0.0986023,0.0647583,0.0347595,0.0254211,0.0368347,0.0609436,0.0864563,0.107117,0.124695,0.138672,0.147858,0.150391,0.140594,0.116791,0.0853577,0.0598755,0.0479736,0.0497437,0.0534363,0.053894,0.0483093,0.0394592,0.0303345,0.0193176,0.00323486,-0.0184021,-0.0434875,-0.0638123,-0.0749817,-0.0738831,-0.066925,-0.057373,-0.0506592,-0.0488586,-0.0512695,-0.0568542,-0.0637512,-0.0704651,-0.0748291,-0.0761108,-0.070282,-0.0568542,-0.0371704,-0.0158386,0.00195312,0.0123596,0.013031,0.00296021,-0.0157776,-0.0383301,-0.061554,-0.0819397,-0.0953064,-0.101959,-0.101685,-0.097168,-0.09375,-0.0956421,-0.104553,-0.122223,-0.148468,-0.180664,-0.215912,-0.243561,-0.256836,-0.255432,-0.245697,-0.228241,-0.208191,-0.187042,-0.164307,-0.148865,-0.146362,-0.158722,-0.175232,-0.180878,-0.1651,-0.128784,-0.0811462,-0.0340271,0.0104065,0.0544434,0.0983887,0.137726,0.158722,0.155762,0.130676,0.101532,0.0883789,0.0977783,0.123413,0.151398,0.176575,0.196228,0.216309,0.233429,0.240082,0.22464,0.182404,0.122406,0.0658264,0.0293884,0.0205994,0.0303345,0.0479736,0.0653687,0.0808716,0.0979919,0.113953,0.118988,0.105103,0.0710754,0.032959,0.00448608,-0.000549316,0.0153809,0.0436096,0.0751038,0.10437,0.128784,0.148529,0.162201,0.164642,0.149323,0.120483,0.085907,0.0599365,0.0517578,0.0599365,0.0719604,0.0823364,0.0838318,0.078064,0.0686035,0.0562439,0.0355835,0.00631714,-0.0293274,-0.0599365,-0.0775146,-0.0796509,-0.0689392,-0.0560303,-0.0445557,-0.0401917,-0.0434875,-0.0510864,-0.061554,-0.0752258,-0.0871887,-0.0963135,-0.0967712,-0.0869751,-0.0683289,-0.0422058,-0.0187378,-0.0012207,0.00195312,-0.00717163,-0.0249634,-0.0468445,-0.0725403,-0.0943604,-0.110138,-0.115631,-0.115112,-0.109314,-0.101807,-0.0949707,-0.0964966,-0.11026,-0.136658,-0.170197,-0.206055,-0.237183,-0.256256,-0.256989,-0.24765,-0.229584,-0.20932,-0.183075,-0.157654,-0.137787,-0.132355,-0.143768,-0.165222,-0.180939,-0.177032,-0.147583,-0.102295,-0.0488586,-0.000274658,0.0452881,0.0898743,0.133759,0.167114,0.175568,0.15451,0.119049,0.0882568,0.0834961,0.102814,0.136719,0.168243,0.191406,0.211487,0.229187,0.24469,0.241211,0.211823,0.15686,0.0900574,0.0379944,0.0126953,0.0175171,0.0370483,0.0583801,0.0765686,0.0931396,0.110413,0.121552,0.120056,0.0985107,0.0611267,0.0227661,0.00140381,0.00549316,0.0327454,0.0667114,0.0975952,0.119934,0.14035,0.157776,0.16571,0.16095,0.13739,0.102753,0.069458,0.0518188,0.0536804,0.0671692,0.078064,0.0814819,0.0771179,0.0691223,0.057251,0.0383911,0.0113525,-0.0224304,-0.056366,-0.081665,-0.0903931,-0.082489,-0.0645752,-0.0481262,-0.0389404,-0.0383301,-0.0441589,-0.0559082,-0.0715332,-0.0864563,-0.098114,-0.102631,-0.0973206,-0.0796509,-0.0518188,-0.0214844,0.00289917,0.0134277,0.0110779,-0.00357056,-0.0296631,-0.0593872,-0.0888672,-0.113617,-0.128845,-0.136047,-0.13382,-0.125427,-0.116852,-0.113495,-0.119995,-0.138733,-0.171082,-0.211609,-0.247375,-0.270416,-0.27771,-0.275848,-0.266907,-0.247589,-0.217926,-0.182678,-0.156097,-0.145966,-0.153503,-0.167236,-0.172211,-0.156311,-0.121155,-0.0765076,-0.03302,0.00952148,0.0589294,0.114502,0.165558,0.195496,0.192352,0.167725,0.141357,0.126038,0.132477,0.150055,0.170532,0.189453,0.209198,0.230927,0.249878,0.256165,0.237854,0.19162,0.127838,0.0666504,0.0264282,0.0115356,0.0155029,0.0248413,0.0391846,0.0593262,0.0820923,0.105652,0.114563,0.104095,0.0743103,0.0391846,0.0134277,0.00598145,0.0201416,0.0455627,0.0738831,0.0991821,0.12616,0.15451,0.175171,0.182739,0.168579,0.138184,0.103699,0.0784607,0.0671692,0.0677795,0.0700073,0.069397,0.0671692,0.0653687,0.0599976,0.0498657,0.0282593,-0.0020752,-0.0375977,-0.0681763,-0.0858459,-0.0889893,-0.0798035,-0.0677185,-0.0568542,-0.0493164,-0.0469666,-0.0521545,-0.061615,-0.0737,-0.0861206,-0.0947571,-0.0944824,-0.0830078,-0.0612183,-0.0353088,-0.0105896,0.00704956,0.0128174,0.00476074,-0.0161743,-0.0431519,-0.0736389,-0.103821,-0.130005,-0.148468,-0.157318,-0.156311,-0.149994,-0.143768,-0.143097,-0.155426,-0.180389,-0.211395,-0.242615,-0.266632,-0.284149,-0.293427,-0.293152,-0.278931,-0.253418,-0.220673,-0.189941,-0.170685,-0.163818,-0.163025,-0.155029,-0.130676,-0.093811,-0.053772,-0.0148926,0.025177,0.0727539,0.124969,0.172699,0.200531,0.203094,0.187531,0.166656,0.158508,0.167999,0.18692,0.202271,0.21402,0.227783,0.245697,0.261261,0.259399,0.232025,0.181549,0.119934,0.0634155,0.0244446,0.0102539,0.0100708,0.0158997,0.027771,0.0471191,0.069458,0.0880432,0.0923462,0.0789795,0.0489807,0.0183105,-0.00448608,-0.00778198,0.00933838,0.037384,0.0665894,0.0991821,0.131134,0.159851,0.181213,0.189789,0.178986,0.152496,0.120728,0.0940247,0.0811462,0.081665,0.0854492,0.0848389,0.0831604,0.0794678,0.0726929,0.0630798,0.0432739,0.0115967,-0.0259705,-0.0598755,-0.0838928,-0.0899963,-0.0832825,-0.0740967,-0.0662537,-0.0623474,-0.060791,-0.0648193,-0.0713501,-0.0805359,-0.0917969,-0.0996094,-0.100861,-0.0921326,-0.0711365,-0.0436096,-0.0182495,-0.00228882,0.00515747,-0.000213623,-0.0169067,-0.0411377,-0.068512,-0.0967102,-0.124023,-0.144684,-0.1586,-0.161194,-0.156769,-0.153625,-0.157318,-0.171692,-0.197235,-0.228394,-0.255646,-0.276978,-0.292023,-0.305115,-0.31134,-0.30484,-0.282135,-0.248871,-0.220673,-0.203705,-0.19455,-0.177704,-0.147034,-0.105225,-0.0622253,-0.0249023,0.0103455,0.0518188,0.102692,0.156311,0.195984,0.211487,0.206116,0.19751,0.203491,0.220123,0.238251,0.246429,0.249878,0.256042,0.271088,0.284485,0.280548,0.253021,0.204437,0.148529,0.094635,0.0548401,0.0310059,0.0172424,0.00839233,0.00692749,0.0124817,0.0287781,0.0455017,0.0553589,0.0497437,0.0301208,0.00952148,-0.00402832,-0.00448608,0.00650024,0.0249023,0.0456238,0.0683289,0.0954895,0.125244,0.154846,0.174164,0.175293,0.162689,0.145172,0.131805,0.124176,0.118713,0.110474,0.0965881,0.0843506,0.0747681,0.0675049,0.0591125,0.041626,0.0151062,-0.0144958,-0.0388489,-0.0557861,-0.0640259,-0.0696716,-0.072876,-0.0754395,-0.0769653,-0.0770569,-0.0794067,-0.0826111,-0.0857849,-0.0891418,-0.0886536,-0.0844421,-0.0742188,-0.0593872,-0.0410156,-0.024353,-0.0110168,-0.00576782,-0.00979614,-0.0221558,-0.0399475,-0.060791,-0.0851135,-0.111145,-0.13678,-0.158203,-0.174286,-0.183624,-0.189606,-0.19812,-0.213287,-0.233154,-0.253143,-0.268524,-0.279388,-0.289612,-0.302155,-0.311401,-0.311218,-0.297455,-0.276581,-0.25946,-0.246094,-0.225891,-0.188049,-0.133484,-0.0727539,-0.0180664,0.0260925,0.0647583,0.10498,0.146515,0.183014,0.201874,0.199188,0.188202,0.193024,0.21698,0.248657,0.27121,0.283356,0.291138,0.298523,0.30014,0.290741,0.264893,0.219788,0.161011,0.102692,0.0579224,0.0336304,0.0232849,0.0185852,0.016449,0.015625,0.0188599,0.0224304,0.0285339,0.0267029,0.0140991,-0.00564575,-0.0166321,-0.0122681,0.00692749,0.0369263,0.0635681,0.0842896,0.101135,0.117584,0.138794,0.156586,0.165039,0.157043,0.143219,0.137177,0.13974,0.148315,0.150391,0.140198,0.118591,0.0932922,0.0687256,0.0479736,0.0255737,-0.00195312,-0.0310059,-0.053894,-0.0636292,-0.0612793,-0.0555725,-0.0512695,-0.0522156,-0.0612793,-0.0739746,-0.0876465,-0.0986633,-0.104553,-0.108398,-0.105042,-0.0936279,-0.0725403,-0.0459595,-0.0181885,0.00375366,0.0162964,0.0160522,0.00448608,-0.0137024,-0.0347595,-0.0558472,-0.0785217,-0.102631,-0.123352,-0.141357,-0.15509,-0.1651,-0.177032,-0.197327,-0.226501,-0.256165,-0.281799,-0.296448,-0.306244,-0.316711,-0.330811,-0.338654,-0.334167,-0.312073,-0.292267,-0.285706,-0.28476,-0.268799,-0.22348,-0.1604,-0.0929565,-0.0351562,0.0128174,0.0636902,0.118042,0.175507,0.218872,0.229065,0.209656,0.192139,0.204437,0.239868,0.276367,0.294952,0.303284,0.318115,0.334564,0.340668,0.326904,0.291199,0.231354,0.157715,0.0948181,0.0508728,0.0299377,0.0200806,0.0173035,0.0152893,0.0128784,0.0135498,0.0160522,0.0179749,0.0115967,-0.00750732,-0.028595,-0.0385132,-0.0283813,6.10352e-05,0.0360413,0.0719604,0.094696,0.10965,0.123901,0.14389,0.159851,0.15918,0.144775,0.130341,0.12851,0.139008,0.153503,0.160797,0.154175,0.132141,0.103821,0.0740967,0.0449524,0.0111389,-0.0265198,-0.0595398,-0.0820007,-0.086792,-0.078186,-0.0644836,-0.0518799,-0.0458984,-0.0499878,-0.065979,-0.0845642,-0.102081,-0.110809,-0.11557,-0.111877,-0.0986023,-0.0733643,-0.0397949,-0.00335693,0.0283813,0.0467834,0.0469666,0.0314026,0.00592041,-0.0214233,-0.04953,-0.0810852,-0.111481,-0.137665,-0.158051,-0.173035,-0.185638,-0.198395,-0.215851,-0.23819,-0.267242,-0.295166,-0.319336,-0.336853,-0.348328,-0.353699,-0.356659,-0.357117,-0.351746,-0.338257,-0.312744,-0.276184,-0.228577,-0.174561,-0.119324,-0.0610046,0.00302124,0.0714111,0.132294,0.174774,0.196442,0.203552,0.20752,0.221466,0.246979,0.276703,0.297638,0.30954,0.324493,0.344147,0.359528,0.356995,0.329987,0.279938,0.217041,0.158203,0.110596,0.0794067,0.0531616,0.0313416,0.0145569,0.00912476,0.0101318,0.0113525,0.00952148,0.000213623,-0.0189819,-0.0383301,-0.045105,-0.0320129,-0.00717163,0.0209961,0.0473938,0.0725403,0.0969849,0.119476,0.138855,0.152008,0.151611,0.135559,0.122406,0.123413,0.135712,0.151001,0.157043,0.153168,0.142609,0.124298,0.101135,0.0710144,0.0335693,-0.0126953,-0.0597839,-0.0922241,-0.105225,-0.102753,-0.0933533,-0.0812073,-0.0704041,-0.0639648,-0.0654297,-0.0728149,-0.0820923,-0.0917969,-0.102417,-0.108185,-0.101135,-0.0802612,-0.0505981,-0.0155029,0.0174561,0.0415344,0.0528259,0.0508118,0.0419312,0.0249634,-0.00100708,-0.0365906,-0.0744934,-0.108398,-0.135101,-0.154633,-0.170807,-0.191803,-0.219543,-0.251953,-0.279388,-0.296173,-0.309875,-0.330658,-0.359253,-0.381744,-0.389069,-0.381958,-0.366791,-0.347321,-0.324554,-0.293488,-0.251007,-0.194489,-0.129517,-0.0626831,-0.00314331,0.0474548,0.0943604,0.138123,0.1763,0.20047,0.218719,0.238861,0.267731,0.300323,0.325378,0.343567,0.36026,0.371063,0.363434,0.33551,0.294891,0.24765,0.202271,0.158447,0.12027,0.0896606,0.069458,0.057251,0.048584,0.0422058,0.0293884,0.00793457,-0.01651,-0.0371094,-0.049408,-0.0532227,-0.0473938,-0.0337524,-0.00985718,0.0269775,0.0687256,0.10672,0.133545,0.145905,0.148712,0.146118,0.138397,0.127502,0.118805,0.118652,0.125092,0.136047,0.144562,0.147125,0.139923,0.121674,0.093689,0.0559692,0.0118103,-0.0339661,-0.0761108,-0.104492,-0.118469,-0.11972,-0.114563,-0.107239,-0.0969238,-0.0889893,-0.0852966,-0.0894775,-0.0951538,-0.0996704,-0.100281,-0.0934143,-0.0784607,-0.0549622,-0.0266418,0.00308228,0.0283813,0.0467224,0.0547791,0.0514221,0.0392761,0.0202026,-0.00549316,-0.036438,-0.068512,-0.0963135,-0.117706,-0.136993,-0.161682,-0.191406,-0.222076,-0.248657,-0.270538,-0.294495,-0.326569,-0.360657,-0.385101,-0.391754,-0.391876,-0.384644,-0.367706,-0.338531,-0.296051,-0.24469,-0.186859,-0.126587,-0.0709534,-0.025177,0.0175171,0.0630188,0.10376,0.128662,0.143768,0.168793,0.212158,0.263031,0.303162,0.332825,0.358521,0.380524,0.387665,0.37088,0.335114,0.286438,0.233368,0.183899,0.141266,0.113892,0.0973816,0.0879822,0.0813293,0.0777283,0.0704041,0.0533447,0.0268555,-0.00195312,-0.0249634,-0.0380554,-0.0438232,-0.038269,-0.0213318,0.00839233,0.0440369,0.0797424,0.107391,0.127045,0.136383,0.137573,0.132477,0.123291,0.11496,0.110809,0.114563,0.120667,0.127777,0.13147,0.129456,0.115356,0.0906677,0.0547791,0.0147705,-0.0260925,-0.065094,-0.0943604,-0.109924,-0.113617,-0.109863,-0.103363,-0.0967102,-0.0909424,-0.0917358,-0.0986633,-0.109863,-0.113342,-0.110657,-0.102081,-0.0863037,-0.0631409,-0.0335693,-0.00396729,0.0209961,0.037384,0.0461731,0.0458374,0.0361633,0.0179138,-0.00415039,-0.0299988,-0.0578613,-0.0841675,-0.105896,-0.126312,-0.146973,-0.173218,-0.200256,-0.224487,-0.245178,-0.265961,-0.291626,-0.318451,-0.339813,-0.353027,-0.360321,-0.358582,-0.341736,-0.31189,-0.273956,-0.232605,-0.184235,-0.128174,-0.0624084,-0.00537109,0.0387878,0.0733032,0.098938,0.113831,0.12558,0.148468,0.182678,0.216431,0.247192,0.278107,0.313965,0.348053,0.36142,0.345367,0.306854,0.255035,0.200928,0.149475,0.112427,0.0869141,0.0752258,0.0725403,0.0769653,0.0853577,0.0906677,0.0839539,0.0655823,0.0387268,0.0110168,-0.0106812,-0.0180664,-0.0119324,0.00671387,0.0375977,0.0747681,0.110748,0.139923,0.161682,0.171082,0.164154,0.143829,0.116974,0.0952454,0.0835571,0.0795898,0.081543,0.0903931,0.0972595,0.0968323,0.0857849,0.0643616,0.0301208,-0.0131531,-0.060791,-0.104553,-0.135162,-0.147858,-0.147247,-0.135498,-0.116913,-0.0979919,-0.0866394,-0.0829468,-0.0842285,-0.0885925,-0.0933533,-0.0939636,-0.0883179,-0.0733032,-0.048584,-0.0193176,0.00839233,0.033905,0.0487366,0.0522766,0.0445557,0.0267639,-0.000671387,-0.0323486,-0.0658264,-0.0968323,-0.123016,-0.143494,-0.161743,-0.177704,-0.196381,-0.220398,-0.240417,-0.259735,-0.284576,-0.314026,-0.33847,-0.352203,-0.354034,-0.341492,-0.310059,-0.260803,-0.205231,-0.15799,-0.120331,-0.0767822,-0.0195312,0.032959,0.0683289,0.0910034,0.107788,0.117462,0.134369,0.167572,0.212158,0.246094,0.263275,0.274445,0.291809,0.31308,0.32135,0.297729,0.246521,0.185303,0.130951,0.09021,0.065979,0.0531616,0.0447693,0.0418701,0.0464478,0.0549622,0.0617371,0.0629578,0.0569153,0.039856,0.0173035,0.00598145,0.0126953,0.0324707,0.0602722,0.0904846,0.121399,0.148712,0.17276,0.19281,0.204163,0.200409,0.173706,0.139343,0.111481,0.0962524,0.0873108,0.0782471,0.0715332,0.0624084,0.0498657,0.0355835,0.0143738,-0.0182495,-0.0600586,-0.103699,-0.145447,-0.170746,-0.178711,-0.172363,-0.157318,-0.135834,-0.115173,-0.102142,-0.0954895,-0.0912781,-0.0870361,-0.0803223,-0.0732117,-0.0614624,-0.045105,-0.0196533,0.0110168,0.0396118,0.057373,0.0612793,0.0516663,0.0301208,-0.00100708,-0.036377,-0.0760498,-0.115967,-0.151215,-0.177582,-0.195892,-0.208527,-0.218781,-0.228333,-0.238647,-0.2547,-0.279114,-0.308655,-0.338379,-0.358521,-0.360077,-0.337372,-0.300659,-0.247437,-0.180389,-0.106842,-0.0404053,0.0192566,0.0711975,0.111145,0.136169,0.147522,0.1492,0.152496,0.166168,0.190338,0.219452,0.25296,0.284698,0.301819,0.310547,0.314148,0.303223,0.263489,0.202606,0.133759,0.0749817,0.0312195,0.0067749,-0.00564575,-0.0067749,0.00112915,0.0139465,0.0276489,0.0403442,0.04422,0.037384,0.0231628,0.0174561,0.0252991,0.0445557,0.0714722,0.10556,0.139404,0.168121,0.188934,0.206848,0.214081,0.211609,0.19577,0.173553,0.146973,0.125916,0.107849,0.0956421,0.0818176,0.0639648,0.0390015,0.012085,-0.015564,-0.0478516,-0.0871887,-0.126984,-0.163422,-0.189941,-0.201416,-0.197449,-0.180725,-0.156586,-0.131348,-0.111877,-0.0965881,-0.0862427,-0.0818176,-0.0783997,-0.0707397,-0.0561829,-0.0379333,-0.0152893,0.0102539,0.0377197,0.0603943,0.0701294,0.0637512,0.0448303,0.0150452,-0.0267029,-0.0765686,-0.12558,-0.166321,-0.201813,-0.232819,-0.25705,-0.270538,-0.2771,-0.282684,-0.288269,-0.299194,-0.31839,-0.343567,-0.361755,-0.36026,-0.33429,-0.288788,-0.227997,-0.159729,-0.0879211,-0.0145569,0.0592651,0.127502,0.176697,0.199188,0.201752,0.198853,0.201935,0.215576,0.241272,0.270203,0.294434,0.306976,0.313812,0.32489,0.328979,0.304504,0.247253,0.172699,0.0998535,0.0387268,-0.00335693,-0.0250244,-0.0317383,-0.0307312,-0.0256348,-0.0128174,0.0100708,0.0335693,0.0426025,0.0344238,0.0192566,0.0135498,0.0250244,0.0534973,0.0949097,0.136993,0.172272,0.198669,0.222687,0.243073,0.251221,0.239655,0.208801,0.169739,0.134552,0.109253,0.0920105,0.0726318,0.0524902,0.0279846,0.00341797,-0.0228882,-0.0520935,-0.0857849,-0.125305,-0.166443,-0.203094,-0.226562,-0.231598,-0.219788,-0.196777,-0.167389,-0.137329,-0.110199,-0.0897217,-0.0713501,-0.0592651,-0.0488586,-0.0370483,-0.0246277,-0.00765991,0.0138245,0.0390015,0.0582581,0.0690002,0.0693359,0.0579224,0.0301208,-0.0114746,-0.0634155,-0.119659,-0.169006,-0.212952,-0.250671,-0.281891,-0.304443,-0.318054,-0.322815,-0.321075,-0.32196,-0.336517,-0.362,-0.386169,-0.386658,-0.355835,-0.302094,-0.241089,-0.170593,-0.0934143,-0.00924683,0.0769653,0.160126,0.223083,0.250122,0.247314,0.232941,0.230865,0.245972,0.268738,0.285309,0.299194,0.315033,0.328918,0.33725,0.336639,0.313812,0.259338,0.179718,0.0932312,0.0268555,-0.0135498,-0.0353088,-0.0475769,-0.0498657,-0.0429382,-0.0249634,0.00256348,0.0313416,0.0549011,0.0603943,0.0525513,0.0489807,0.0657043,0.101624,0.142883,0.179932,0.208252,0.232208,0.251617,0.263824,0.26355,0.247314,0.214294,0.1716,0.13208,0.100952,0.0762939,0.052002,0.0267639,-0.00396729,-0.0388489,-0.077179,-0.113007,-0.147034,-0.184235,-0.219879,-0.251068,-0.266907,-0.262085,-0.237457,-0.202759,-0.164825,-0.130859,-0.104553,-0.082428,-0.0596619,-0.0400696,-0.028717,-0.0173035,-6.10352e-05,0.0233459,0.0484619,0.0691833,0.085022,0.0917358,0.0839539,0.0571899,0.0147095,-0.0391846,-0.0986633,-0.159851,-0.212738,-0.256989,-0.294159,-0.325378,-0.345917,-0.351135,-0.34906,-0.351471,-0.364899,-0.381287,-0.395569,-0.399872,-0.380402,-0.332214,-0.262421,-0.183746,-0.100861,-0.0142822,0.0740967,0.15918,0.227509,0.266449,0.273834,0.261353,0.245026,0.242218,0.263153,0.290131,0.306793,0.314148,0.319122,0.327789,0.328583,0.308594,0.255707,0.175568,0.0892639,0.0171814,-0.0299377,-0.0520935,-0.0570374,-0.0517578,-0.041626,-0.0202637,0.0117493,0.0479736,0.0783081,0.0955811,0.0991211,0.100128,0.110931,0.140259,0.183563,0.229523,0.266571,0.285706,0.292419,0.292542,0.286499,0.268585,0.230072,0.17926,0.124634,0.0818787,0.0528259,0.0312195,0.0100098,-0.0220947,-0.0603943,-0.104034,-0.145905,-0.184357,-0.222076,-0.258789,-0.290283,-0.304962,-0.297302,-0.264893,-0.216309,-0.165497,-0.118042,-0.0818176,-0.0548401,-0.0375061,-0.0228271,-0.0107422,-0.000610352,0.00759888,0.0191345,0.0361023,0.0561829,0.0734253,0.0786438,0.0645752,0.0306091,-0.0190735,-0.0807495,-0.145172,-0.208649,-0.266907,-0.317505,-0.355316,-0.379181,-0.387726,-0.386505,-0.383148,-0.380737,-0.385498,-0.393158,-0.393219,-0.370544,-0.319519,-0.249664,-0.170197,-0.0909424,-0.0103455,0.0779724,0.167664,0.239929,0.280273,0.287384,0.272675,0.25705,0.257996,0.274353,0.288666,0.297241,0.297058,0.295898,0.299927,0.298981,0.269531,0.210144,0.131012,0.0520935,-0.0171204,-0.0617371,-0.0794067,-0.0751038,-0.0575867,-0.0381775,-0.0142212,0.0187378,0.0586548,0.0920715,0.107239,0.111664,0.116638,0.135498,0.172699,0.230682,0.29187,0.333679,0.353088,0.358246,0.360199,0.347107,0.31189,0.25415,0.185699,0.125031,0.078064,0.0450439,0.0234985,0.00558472,-0.0223389,-0.060791,-0.102692,-0.142944,-0.185913,-0.231415,-0.273956,-0.308716,-0.325714,-0.315247,-0.278198,-0.22113,-0.158386,-0.105042,-0.0665894,-0.0367126,-0.0116882,0.00341797,0.0104065,0.0104675,0.0100098,0.0129395,0.0238342,0.0422058,0.0543518,0.0525513,0.0336914,-0.0038147,-0.0554504,-0.118195,-0.187531,-0.253815,-0.313232,-0.362762,-0.402008,-0.425293,-0.428864,-0.416107,-0.404907,-0.400818,-0.404175,-0.404755,-0.389252,-0.344635,-0.276093,-0.197723,-0.122406,-0.0410156,0.0501404,0.151733,0.242065,0.298645,0.314575,0.30188,0.279266,0.264038,0.26416,0.270416,0.271606,0.268524,0.270416,0.276703,0.281006,0.264709,0.2229,0.155518,0.0708008,-0.016449,-0.0808105,-0.107574,-0.106171,-0.0899353,-0.066925,-0.0331421,0.0102539,0.0634766,0.110474,0.141418,0.151154,0.146118,0.147369,0.170532,0.220673,0.27478,0.319275,0.352478,0.377655,0.389526,0.383545,0.351959,0.298859,0.227325,0.149597,0.0782471,0.0261841,-0.00857544,-0.0314636,-0.0479126,-0.066925,-0.0886536,-0.114563,-0.143768,-0.172699,-0.207733,-0.243835,-0.277313,-0.286499,-0.266724,-0.224915,-0.168243,-0.110931,-0.0582581,-0.0147095,0.0181885,0.0377197,0.0464478,0.0453796,0.0367126,0.0289307,0.0226746,0.0216064,0.0169067,0.0088501,-0.0065918,-0.0369873,-0.0848999,-0.147034,-0.214233,-0.277863,-0.334961,-0.388519,-0.431488,-0.457916,-0.462738,-0.449066,-0.427582,-0.406036,-0.393951,-0.385895,-0.364288,-0.321533,-0.258514,-0.191132,-0.125366,-0.0503235,0.037384,0.135834,0.227722,0.292084,0.322418,0.317719,0.296906,0.275421,0.262604,0.254242,0.237793,0.219788,0.208923,0.207794,0.212067,0.207062,0.184418,0.13739,0.0717468,0.00402832,-0.0481262,-0.0712891,-0.0725403,-0.0609436,-0.0410767,-0.0128174,0.0350952,0.093689,0.154022,0.197784,0.21759,0.220551,0.224976,0.242065,0.269409,0.299591,0.323364,0.336792,0.343567,0.34436,0.334106,0.303436,0.250885,0.179321,0.10376,0.0327454,-0.0259094,-0.0675049,-0.0924683,-0.10733,-0.120544,-0.135162,-0.146179,-0.15033,-0.1586,-0.174835,-0.197327,-0.214294,-0.217926,-0.19986,-0.16214,-0.112152,-0.0585938,-0.00900269,0.0346985,0.0688477,0.0940857,0.102478,0.0920715,0.0696106,0.0418091,0.013031,-0.0147095,-0.0395203,-0.0622253,-0.0882568,-0.121887,-0.166901,-0.220398,-0.27536,-0.328125,-0.379608,-0.427704,-0.464752,-0.48349,-0.481812,-0.463745,-0.437195,-0.409851,-0.384644,-0.345642,-0.287781,-0.213409,-0.137451,-0.0716858,-0.0124207,0.0487366,0.120941,0.194031,0.249329,0.275909,0.271881,0.255707,0.242279,0.237518,0.236298,0.223297,0.20047,0.174896,0.154968,0.146362,0.136902,0.117859,0.0821533,0.0323486,-0.0149536,-0.0457764,-0.0498657,-0.0330811,-0.00448608,0.0206604,0.0443726,0.0741577,0.122162,0.177185,0.223358,0.248932,0.255646,0.264557,0.285767,0.32309,0.35907,0.378784,0.374695,0.354218,0.329407,0.303955,0.265717,0.21048,0.141205,0.0711975,0.0118103,-0.0318909,-0.0622864,-0.0834351,-0.104553,-0.130402,-0.156525,-0.174561,-0.182892,-0.185699,-0.187988,-0.192139,-0.192017,-0.177795,-0.146454,-0.102356,-0.0550232,-0.0189209,0.00402832,0.0198059,0.0336914,0.0454407,0.0495911,0.0439453,0.0298767,0.0147705,0.00213623,-0.0120239,-0.0303345,-0.0596008,-0.0994568,-0.150543,-0.206055,-0.261017,-0.311279,-0.354431,-0.39093,-0.417328,-0.431946,-0.431274,-0.418854,-0.400269,-0.382965,-0.370209,-0.354828,-0.318451,-0.254639,-0.174042,-0.0959167,-0.0292664,0.0303345,0.0935669,0.161469,0.214569,0.239075,0.224365,0.188721,0.156708,0.148041,0.1586,0.168335,0.165314,0.156036,0.152496,0.157867,0.15744,0.14035,0.102631,0.04953,-0.00469971,-0.0471191,-0.0602722,-0.0438843,-0.00592041,0.0389404,0.0802612,0.119476,0.160675,0.205109,0.244568,0.267395,0.266571,0.255981,0.25592,0.279114,0.316162,0.346588,0.357178,0.347656,0.32724,0.300323,0.267059,0.218323,0.153625,0.0826111,0.0198669,-0.0236206,-0.0519409,-0.065094,-0.0704651,-0.0785217,-0.0895996,-0.105835,-0.116638,-0.121826,-0.125916,-0.133759,-0.142609,-0.142151,-0.124359,-0.0932312,-0.0518188,-0.0137634,0.0101929,0.0189209,0.0152893,0.00784302,-0.00308228,-0.0220032,-0.046051,-0.0673218,-0.0822754,-0.0939636,-0.105316,-0.11853,-0.139008,-0.168793,-0.211334,-0.260468,-0.307373,-0.345428,-0.375031,-0.39563,-0.403687,-0.398651,-0.377655,-0.345825,-0.31308,-0.29187,-0.278534,-0.257507,-0.215759,-0.150543,-0.0810852,-0.0232849,0.0191956,0.0628967,0.118134,0.173431,0.206055,0.199188,0.155579,0.104156,0.0755615,0.0755005,0.0873718,0.0941467,0.0936279,0.0940247,0.107056,0.125092,0.134979,0.125153,0.0926208,0.0455017,0.00128174,-0.0198059,-0.00744629,0.0342407,0.0899963,0.13858,0.173828,0.203888,0.24234,0.286255,0.314087,0.308533,0.276642,0.244293,0.237976,0.26001,0.293427,0.313354,0.306793,0.281555,0.250122,0.222076,0.188538,0.138794,0.0732117,0.00280762,-0.0511475,-0.0803223,-0.0782471,-0.0553589,-0.0328064,-0.0260925,-0.0340881,-0.0422058,-0.0395203,-0.033905,-0.0377197,-0.0559692,-0.0785828,-0.0863647,-0.0680542,-0.0314636,0.00738525,0.0289307,0.0306702,0.0148315,-0.00738525,-0.0340881,-0.0657654,-0.102142,-0.140594,-0.176636,-0.200409,-0.210541,-0.209717,-0.208801,-0.216766,-0.23819,-0.272339,-0.307983,-0.336517,-0.357513,-0.37027,-0.375641,-0.370483,-0.351532,-0.318939,-0.282227,-0.252472,-0.225372,-0.194702,-0.151398,-0.0991211,-0.0496521,-0.0100098,0.0206604,0.0540161,0.0922241,0.122894,0.133484,0.116364,0.080658,0.0457764,0.0261841,0.0241699,0.0290527,0.0340881,0.0401306,0.0567932,0.0842896,0.113892,0.133301,0.132751,0.113953,0.0906067,0.0684509,0.0630798,0.0779114,0.110748,0.15155,0.183411,0.211548,0.243011,0.278992,0.308044,0.315704,0.300476,0.276184,0.254089,0.246368,0.249451,0.256256,0.254761,0.238251,0.213898,0.186371,0.160065,0.12738,0.0875244,0.045105,0.00442505,-0.0262451,-0.0400085,-0.0312805,-0.00650024,0.0151672,0.0247803,0.0235596,0.0241089,0.029541,0.0285339,0.0173035,-0.00268555,-0.0198669,-0.0268555,-0.0216064,-0.00933838,0.0020752,0.00543213,-0.00692749,-0.0308838,-0.0618896,-0.0954285,-0.132538,-0.168243,-0.201202,-0.228912,-0.248718,-0.2612,-0.262939,-0.262421,-0.266571,-0.282471,-0.303009,-0.318665,-0.327789,-0.330872,-0.329193,-0.318604,-0.298462,-0.272888,-0.251068,-0.235779,-0.223907,-0.205292,-0.172546,-0.126495,-0.0819397,-0.0436096,-0.0109253,0.0220947,0.0622864,0.0963135,0.108185,0.089386,0.0437012,-0.00268555,-0.0313416,-0.0396729,-0.0334167,-0.0246887,-0.00924683,0.0137634,0.0526123,0.0971069,0.133881,0.151947,0.145966,0.121948,0.0964966,0.0900574,0.108063,0.142761,0.17865,0.210205,0.235962,0.26181,0.288788,0.310394,0.312744,0.29129,0.252075,0.217529,0.206787,0.217316,0.232422,0.236389,0.22879,0.210724,0.187592,0.159393,0.130676,0.0971069,0.0570374,0.0134888,-0.0184021,-0.0232849,-0.00222778,0.0310669,0.0628967,0.0831604,0.0918884,0.0920105,0.0917969,0.0881958,0.0726929,0.044281,0.012146,-0.00805664,-0.00811768,0.00469971,0.0162964,0.0171204,0.00469971,-0.0210876,-0.0592651,-0.101685,-0.146576,-0.189728,-0.229584,-0.263489,-0.285156,-0.289948,-0.282227,-0.272278,-0.270203,-0.278381,-0.294891,-0.313354,-0.326385,-0.335175,-0.335693,-0.329529,-0.313354,-0.287445,-0.254028,-0.226227,-0.210052,-0.196106,-0.170471,-0.13208,-0.0912781,-0.0596008,-0.0371094,-0.0110779,0.0252991,0.061676,0.0826111,0.0769043,0.046051,0.00241089,-0.0328979,-0.0465698,-0.0414124,-0.0336304,-0.0232849,-0.00341797,0.0355835,0.0844421,0.126099,0.150604,0.154083,0.142487,0.12088,0.103149,0.107574,0.135315,0.173157,0.202148,0.221405,0.242615,0.271271,0.297913,0.305573,0.288269,0.249207,0.208191,0.188263,0.193878,0.210938,0.22113,0.214752,0.198914,0.181946,0.167328,0.145905,0.113831,0.0745544,0.033905,-0.00106812,-0.0168457,-0.00463867,0.02771,0.0638123,0.0845032,0.0913391,0.0941467,0.0999451,0.102203,0.0905457,0.0653687,0.0348206,0.013031,0.00857544,0.0189819,0.0328979,0.0387268,0.0278625,0.00463867,-0.0280457,-0.0664368,-0.110931,-0.156708,-0.200073,-0.237457,-0.264771,-0.277435,-0.274017,-0.264771,-0.259247,-0.266388,-0.283569,-0.304108,-0.317993,-0.328064,-0.337189,-0.340668,-0.336853,-0.320862,-0.297974,-0.272766,-0.253296,-0.231934,-0.203552,-0.164032,-0.119995,-0.0773926,-0.0400696,-0.00891113,0.0234375,0.0522156,0.0701294,0.0691833,0.0461121,0.0107422,-0.0222168,-0.0415344,-0.0457153,-0.039856,-0.021759,0.00408936,0.0376587,0.07724,0.111877,0.137451,0.14502,0.136383,0.116852,0.101074,0.101074,0.117706,0.14798,0.181732,0.210205,0.234558,0.258331,0.280121,0.29422,0.290192,0.267731,0.23819,0.218597,0.213074,0.218872,0.227173,0.225098,0.210602,0.185577,0.159851,0.135498,0.110657,0.081543,0.0454407,0.013092,-0.00469971,0.0012207,0.0256958,0.0557861,0.0757751,0.0812683,0.0791931,0.0758972,0.0708618,0.0587769,0.0401917,0.0166321,-0.00247192,-0.0071106,0.00369263,0.0191345,0.0332947,0.0315552,0.0129395,-0.0183105,-0.0550232,-0.091217,-0.126312,-0.158447,-0.192627,-0.222412,-0.239258,-0.241608,-0.237061,-0.23584,-0.242889,-0.261017,-0.282288,-0.299194,-0.31073,-0.31604,-0.316162,-0.315582,-0.3078,-0.294617,-0.279053,-0.269073,-0.258331,-0.236847,-0.203613,-0.161804,-0.116852,-0.0731506,-0.0302124,0.0162354,0.0556335,0.0821533,0.085907,0.0664368,0.0292664,-0.00900269,-0.0320129,-0.0393982,-0.0375061,-0.0272522,-0.0065918,0.0317993,0.0767212,0.115112,0.138245,0.145966,0.139465,0.120941,0.102478,0.0977783,0.109406,0.133423,0.159454,0.18161,0.202423,0.225037,0.247437,0.260254,0.256317,0.235626,0.208923,0.197449,0.207184,0.227844,0.242401,0.243561,0.235046,0.218658,0.198792,0.170685,0.135895,0.0950317,0.0535583,0.019989,0.00408936,0.0118103,0.0391846,0.0722046,0.0973816,0.103485,0.0990601,0.0924683,0.0826721,0.0629578,0.0311279,-0.00408936,-0.0303345,-0.0371094,-0.0270386,-0.00958252,0.00363159,0.00524902,-0.0109253,-0.0368347,-0.0690613,-0.10437,-0.140747,-0.17569,-0.204285,-0.226654,-0.236847,-0.233276,-0.222076,-0.213623,-0.217377,-0.234772,-0.257996,-0.27771,-0.290863,-0.301331,-0.310547,-0.313416,-0.307312,-0.294434,-0.278778,-0.266785,-0.252625,-0.232025,-0.201019,-0.164703,-0.126923,-0.0858459,-0.0445557,-0.00213623,0.0399475,0.0679932,0.0753784,0.0593872,0.0299988,0.00247192,-0.0168457,-0.0250244,-0.0271912,-0.0175781,0.0085144,0.0452881,0.0888062,0.123688,0.147583,0.15564,0.150208,0.136047,0.121674,0.119476,0.129059,0.147583,0.17041,0.190399,0.210663,0.229797,0.247925,0.250671,0.235962,0.20871,0.182892,0.174225,0.182159,0.196716,0.208588,0.211487,0.20752,0.197327,0.18222,0.158722,0.126099,0.0887146,0.0524902,0.0264282,0.0177307,0.029541,0.0577087,0.0867004,0.104218,0.109253,0.108246,0.104706,0.0941467,0.0716858,0.0422058,0.0129395,-0.00564575,-0.00845337,0.00146484,0.012146,0.0155029,0.00631714,-0.0166321,-0.0469055,-0.0842896,-0.122009,-0.158661,-0.188599,-0.213745,-0.229858,-0.232941,-0.226318,-0.218933,-0.218262,-0.228516,-0.247986,-0.270996,-0.289948,-0.302551,-0.309784,-0.311676,-0.310455,-0.303772,-0.289185,-0.276581,-0.268982,-0.265717,-0.2565,-0.233093,-0.194763,-0.147919,-0.100677,-0.052948,-0.00442505,0.0424805,0.078064,0.0941467,0.0819397,0.0458984,0.00140381,-0.0308838,-0.0413513,-0.0361023,-0.0224304,-0.000396729,0.0369263,0.089386,0.136108,0.166168,0.178467,0.17215,0.153015,0.129944,0.121002,0.127655,0.151672,0.179138,0.199799,0.219879,0.240204,0.258789,0.266632,0.259338,0.236511,0.205292,0.184296,0.186035,0.207397,0.23175,0.240662,0.233612,0.215759,0.194366,0.166229,0.128784,0.0855103,0.0394592,0.0017395,-0.0205994,-0.0137024,0.0189209,0.0614014,0.0936279,0.103973,0.102478,0.0971069,0.0888672,0.0699463,0.0415344,0.00946045,-0.0184021,-0.0291138,-0.0206604,0.00012207,0.0167236,0.0170593,-0.00189209,-0.0326843,-0.0679932,-0.103973,-0.138794,-0.169861,-0.197052,-0.219391,-0.230133,-0.228729,-0.217712,-0.210876,-0.218994,-0.240875,-0.268463,-0.290619,-0.306183,-0.315643,-0.318329,-0.320282,-0.314911,-0.304901,-0.290283,-0.282806,-0.277588,-0.26947,-0.251007,-0.218323,-0.175354,-0.129181,-0.0799255,-0.0264282,0.0283813,0.0707397,0.0935669,0.0875244,0.0583801,0.0196533,-0.00991821,-0.0271912,-0.0327454,-0.0300598,-0.0152893,0.0185242,0.0681152,0.116974,0.152069,0.165649,0.16275,0.149139,0.134827,0.131134,0.138458,0.159668,0.184357,0.206177,0.227112,0.248535,0.271332,0.284698,0.279877,0.253357,0.21463,0.192017,0.194641,0.215363,0.237732,0.242554,0.233704,0.220337,0.210144,0.197174,0.170349,0.12851,0.0761108,0.02771,0.00537109,0.00918579,0.0338135,0.0620728,0.081543,0.0898743,0.0882568,0.0904846,0.0913391,0.0798035,0.0514832,0.0105286,-0.0233459,-0.0358276,-0.0238342,-0.00704956,0.00274658,-0.00357056,-0.0239563,-0.0514832,-0.0804749,-0.106903,-0.137726,-0.170685,-0.202545,-0.22522,-0.231598,-0.224091,-0.211334,-0.207397,-0.214844,-0.235718,-0.261353,-0.282562,-0.295441,-0.304779,-0.312744,-0.32074,-0.32135,-0.309204,-0.293762,-0.28476,-0.286835,-0.28894,-0.283569,-0.258789,-0.220398,-0.170593,-0.117645,-0.0595398,0.00012207,0.053009,0.0903931,0.102295,0.0838928,0.0481262,0.00973511,-0.0173035,-0.0319519,-0.0332947,-0.0198669,0.0110779,0.0558472,0.103699,0.138519,0.159058,0.16153,0.150818,0.133972,0.119537,0.123627,0.143341,0.173157,0.202942,0.229797,0.254578,0.277252,0.289459,0.281464,0.253235,0.216431,0.189331,0.186707,0.20639,0.236633,0.262024,0.273499,0.272278,0.262268,0.241272,0.204834,0.152161,0.0924072,0.0353088,-0.00296021,-0.0124207,0.00598145,0.041626,0.0736389,0.0940247,0.101685,0.108795,0.108398,0.0964966,0.0675049,0.0304565,-0.00289917,-0.0209961,-0.0187378,-0.00335693,0.00857544,0.0116882,-0.00228882,-0.0275269,-0.0587769,-0.0913391,-0.127167,-0.166443,-0.200348,-0.225769,-0.23645,-0.228241,-0.213013,-0.201477,-0.20639,-0.225433,-0.253693,-0.281891,-0.30484,-0.325287,-0.340271,-0.350525,-0.351074,-0.342468,-0.327301,-0.313354,-0.308136,-0.308655,-0.306122,-0.291412,-0.258667,-0.212891,-0.157715,-0.0967712,-0.0339661,0.0280457,0.0759583,0.102295,0.100281,0.0716248,0.0323486,-0.0050354,-0.0300598,-0.0397339,-0.0343018,-0.0112,0.0312195,0.0834351,0.131012,0.16153,0.173431,0.166901,0.151215,0.131866,0.123962,0.132294,0.157379,0.189331,0.224762,0.257324,0.285645,0.306305,0.310944,0.293213,0.256317,0.217651,0.195374,0.197906,0.217041,0.240143,0.255432,0.259735,0.256653,0.24826,0.227509,0.189728,0.137329,0.0785217,0.0325623,0.011261,0.0176392,0.0394592,0.0653687,0.0876465,0.0975952,0.101288,0.102356,0.0959167,0.0743103,0.0383911,0.00323486,-0.0192566,-0.0212708,-0.0071106,0.00979614,0.0188599,0.0137634,-0.00442505,-0.0298767,-0.0593262,-0.0923462,-0.131958,-0.17041,-0.200531,-0.219116,-0.219269,-0.207916,-0.197113,-0.196045,-0.206512,-0.228119,-0.254425,-0.279266,-0.303162,-0.326294,-0.344238,-0.352356,-0.352081,-0.346985,-0.338318,-0.336182,-0.341797,-0.347595,-0.342804,-0.319122,-0.277588,-0.224579,-0.163208,-0.0939026,-0.0193176,0.0470581,0.0884705,0.102692,0.0877075,0.0541687,0.0117493,-0.0253601,-0.0463867,-0.0526733,-0.0430908,-0.0114746,0.0376587,0.0923462,0.136444,0.158661,0.164825,0.160065,0.150604,0.136841,0.135559,0.151337,0.182404,0.215912,0.248383,0.282959,0.308929,0.318329,0.305908,0.274445,0.23584,0.211884,0.210205,0.22818,0.255707,0.279114,0.29187,0.298065,0.294952,0.270935,0.223022,0.158051,0.0919495,0.0375061,0.00616455,0.000671387,0.0175781,0.0448914,0.0779114,0.105438,0.120605,0.124695,0.117584,0.0966492,0.0627441,0.0256958,-0.0050354,-0.0180664,-0.0134277,-0.00128174,0.00704956,0.00717163,-0.00222778,-0.0231628,-0.0522156,-0.0897217,-0.13028,-0.168793,-0.197998,-0.211151,-0.210388,-0.199585,-0.184296,-0.176117,-0.181,-0.201019,-0.228912,-0.259857,-0.290283,-0.314819,-0.332886,-0.339996,-0.337585,-0.324371,-0.311066,-0.305969,-0.313141,-0.332153,-0.34491,-0.347931,-0.330658,-0.297455,-0.247925,-0.177917,-0.100616,-0.0221558,0.0452881,0.0873718,0.097168,0.0766296,0.0381165,-0.0104675,-0.0518799,-0.0764465,-0.0827637,-0.0675049,-0.0269165,0.0303955,0.0861206,0.12973,0.156189,0.161285,0.151398,0.134308,0.121216,0.125305,0.148865,0.187988,0.231018,0.277527,0.319275,0.343811,0.346924,0.327118,0.291016,0.247437,0.213562,0.200012,0.210815,0.240662,0.27066,0.29361,0.304962,0.30127,0.277039,0.23349,0.173431,0.106903,0.0465698,0.00759888,-0.00146484,0.017395,0.0499878,0.0844421,0.111755,0.132477,0.145233,0.140259,0.11792,0.0808105,0.0424805,0.0100708,-0.00671387,-0.00799561,0.000274658,0.0085144,0.00744629,-0.00576782,-0.0306091,-0.0623474,-0.0988464,-0.138519,-0.177795,-0.208527,-0.224579,-0.223816,-0.209198,-0.190338,-0.180603,-0.185089,-0.204376,-0.230408,-0.26001,-0.289673,-0.315369,-0.331879,-0.340668,-0.336639,-0.323364,-0.308533,-0.302155,-0.306305,-0.325287,-0.345581,-0.356171,-0.343475,-0.309052,-0.254913,-0.185699,-0.111084,-0.0343628,0.0383911,0.0903931,0.111542,0.0933533,0.0488586,-0.00811768,-0.0599976,-0.0915527,-0.100739,-0.0881958,-0.0542908,-0.00570679,0.0477905,0.0987854,0.138062,0.154633,0.146851,0.132874,0.120331,0.123016,0.146454,0.187317,0.235229,0.281799,0.319122,0.342804,0.350067,0.338531,0.30719,0.25946,0.218109,0.202942,0.21283,0.241669,0.273834,0.298737,0.30838,0.30484,0.284912,0.244843,0.188599,0.122345,0.0610046,0.0194092,0.00793457,0.0214844,0.0487366,0.0826111,0.116119,0.139801,0.150818,0.145844,0.127777,0.098114,0.0626221,0.0310669,0.0108643,0.00610352,0.00946045,0.0134888,0.0104675,-0.00341797,-0.0266418,-0.0594482,-0.0987244,-0.141357,-0.17926,-0.208313,-0.22113,-0.216522,-0.198914,-0.179932,-0.167664,-0.168793,-0.187256,-0.216919,-0.252411,-0.286652,-0.316437,-0.335571,-0.344574,-0.34314,-0.333099,-0.319122,-0.309662,-0.31134,-0.3237,-0.343964,-0.360931,-0.361816,-0.338318,-0.291626,-0.223297,-0.141754,-0.0599365,0.0195923,0.0791321,0.109406,0.105988,0.0748291,0.0215454,-0.0390015,-0.0865784,-0.108582,-0.107452,-0.0818176,-0.037323,0.0160522,0.0654907,0.106842,0.130798,0.13269,0.124023,0.114441,0.112152,0.126251,0.167847,0.22348,0.277039,0.322693,0.35141,0.359741,0.348938,0.322144,0.280945,0.237183,0.206177,0.197235,0.213623,0.248322,0.287842,0.314026,0.318115,0.301544,0.266785,0.215912,0.155853,0.0934753,0.0445557,0.0182495,0.0178528,0.0412903,0.0768433,0.116791,0.147522,0.163422,0.162628,0.143616,0.117371,0.0828247,0.0501404,0.0245667,0.012146,0.00793457,0.0088501,0.00900269,-0.000549316,-0.0209961,-0.0542297,-0.0920715,-0.132812,-0.169006,-0.196838,-0.211609,-0.209656,-0.192963,-0.171539,-0.153687,-0.147247,-0.157715,-0.185303,-0.224091,-0.268799,-0.307587,-0.332214,-0.343018,-0.343231,-0.336304,-0.324707,-0.314819,-0.312683,-0.32254,-0.345245,-0.371826,-0.384705,-0.376434,-0.339874,-0.279449,-0.19873,-0.109741,-0.0212097,0.0582581,0.110199,0.124695,0.100006,0.0485229,-0.013092,-0.0704651,-0.108185,-0.125153,-0.11618,-0.0812073,-0.0266418,0.0308838,0.0787354,0.113281,0.128601,0.122681,0.108459,0.100403,0.107239,0.136993,0.185852,0.243622,0.296631,0.341675,0.365784,0.367523,0.346497,0.305573,0.252472,0.20578,0.184418,0.191467,0.220795,0.261688,0.299255,0.325165,0.328979,0.311737,0.271149,0.214081,0.147705,0.0847778,0.0388489,0.0220032,0.0346375,0.0669861,0.106049,0.142761,0.168396,0.177856,0.170258,0.14679,0.112274,0.0691223,0.0349731,0.0115356,0.00296021,0.00442505,0.00827026,0.00543213,-0.00650024,-0.0301208,-0.0665894,-0.108002,-0.150208,-0.185699,-0.20932,-0.214508,-0.200684,-0.173218,-0.143616,-0.123566,-0.120667,-0.139404,-0.175171,-0.224579,-0.272491,-0.314758,-0.341614,-0.35376,-0.349121,-0.338593,-0.324432,-0.313629,-0.313568,-0.325836,-0.350464,-0.380341,-0.396912,-0.389679,-0.351959,-0.288055,-0.199921,-0.101135,-0.00878906,0.068512,0.115234,0.126709,0.0997314,0.0458984,-0.0204773,-0.0828857,-0.125092,-0.142212,-0.133423,-0.0920715,-0.0323486,0.0289307,0.0747681,0.10672,0.119873,0.113342,0.103363,0.0972595,0.107239,0.139191,0.190125,0.250458,0.309448,0.358002,0.379517,0.374084,0.346497,0.300323,0.243011,0.195312,0.172089,0.17865,0.208466,0.251129,0.293884,0.326965,0.337189,0.315704,0.27066,0.213348,0.148712,0.0884705,0.0484619,0.0353699,0.0473938,0.0829468,0.126587,0.168671,0.196503,0.20462,0.187775,0.156921,0.116241,0.0674438,0.0263062,-6.10352e-05,-0.00967407,-0.00979614,-0.0067749,-0.00717163,-0.0169067,-0.0379944,-0.0711975,-0.113953,-0.152496,-0.18335,-0.20108,-0.201141,-0.182831,-0.152618,-0.123413,-0.101288,-0.0997925,-0.123016,-0.165894,-0.219604,-0.273621,-0.318176,-0.346588,-0.358307,-0.353973,-0.342468,-0.326782,-0.315369,-0.314911,-0.326447,-0.351807,-0.385223,-0.40625,-0.402618,-0.365173,-0.300659,-0.213409,-0.113892,-0.020813,0.0580444,0.111755,0.129395,0.103699,0.0474548,-0.020813,-0.0872498,-0.133209,-0.151489,-0.141815,-0.106567,-0.0502014,0.0127563,0.0611267,0.0935669,0.110657,0.109406,0.0991211,0.0935669,0.103699,0.135376,0.188599,0.252686,0.312744,0.361145,0.38382,0.379395,0.353638,0.305695,0.242676,0.183685,0.153015,0.154633,0.182739,0.227325,0.275635,0.312225,0.329865,0.320465,0.287598,0.236115,0.177795,0.119812,0.0763855,0.0603333,0.0723572,0.101288,0.141937,0.181549,0.206055,0.209869,0.194305,0.161469,0.116699,0.0646362,0.0201416,-0.00592041,-0.0145569,-0.0146179,-0.0107422,-0.00918579,-0.0189819,-0.0387268,-0.0688477,-0.106903,-0.145447,-0.175568,-0.192688,-0.192078,-0.1716,-0.135773,-0.100342,-0.0777283,-0.0757141,-0.0990601,-0.142487,-0.197998,-0.254822,-0.307251,-0.344238,-0.363098,-0.362213,-0.345245,-0.324554,-0.309875,-0.306915,-0.319397,-0.345642,-0.382477,-0.410187,-0.411957,-0.384308,-0.327789,-0.249329,-0.154572,-0.0549011,0.0346985,0.0987854,0.122681,0.104828,0.0532837,-0.0140381,-0.0812683,-0.130402,-0.158203,-0.159119,-0.133759,-0.0786438,-0.0118103,0.0467834,0.0848999,0.101013,0.10498,0.0975037,0.0922852,0.0977173,0.124512,0.173828,0.238647,0.302429,0.355713,0.387512,0.391754,0.367371,0.314819,0.247864,0.181671,0.137665,0.12738,0.150543,0.196777,0.248932,0.296722,0.326233,0.329193,0.30545,0.264038,0.208527,0.149811,0.102081,0.0783997,0.0805359,0.107849,0.147858,0.184845,0.209381,0.214569,0.200409,0.168121,0.121216,0.0693359,0.0222778,-0.00643921,-0.0181885,-0.0148315,-0.00900269,-0.00262451,-0.00570679,-0.0211487,-0.0489807,-0.0891418,-0.128113,-0.161621,-0.18335,-0.186768,-0.168579,-0.135773,-0.0974426,-0.0679321,-0.0583191,-0.074646,-0.115784,-0.1698,-0.231079,-0.286987,-0.330658,-0.353699,-0.357239,-0.342621,-0.319946,-0.302948,-0.297241,-0.304688,-0.327301,-0.361328,-0.398651,-0.420197,-0.412689,-0.372833,-0.303101,-0.213623,-0.110321,-0.0128784,0.0632324,0.106995,0.110657,0.0789185,0.020874,-0.0481262,-0.111206,-0.152832,-0.168243,-0.157318,-0.121399,-0.0636902,-0.00289917,0.0461121,0.0736389,0.0830078,0.0844421,0.0819397,0.0887146,0.108643,0.148987,0.207581,0.273895,0.334351,0.377777,0.397369,0.385834,0.344025,0.280945,0.210541,0.151001,0.118378,0.119049,0.149811,0.203217,0.257935,0.307312,0.336456,0.339203,0.315826,0.267578,0.211548,0.157928,0.116302,0.0974426,0.102417,0.12616,0.157654,0.185089,0.200592,0.196045,0.173218,0.133698,0.0849609,0.0355835,-0.00112915,-0.0209961,-0.0254211,-0.0169678,-0.00692749,0,-0.00363159,-0.0185242,-0.0458374,-0.0843506,-0.120148,-0.149933,-0.166046,-0.164642,-0.143951,-0.110809,-0.077301,-0.0558472,-0.0546875,-0.0776367,-0.123413,-0.181549,-0.243622,-0.298981,-0.337646,-0.360199,-0.361603,-0.3461,-0.324646,-0.30719,-0.301758,-0.303833,-0.321014,-0.348602,-0.380127,-0.400665,-0.391754,-0.350464,-0.280457,-0.195312,-0.103638,-0.0181274,0.0459595,0.0845642,0.0932922,0.0683289,0.0152283,-0.0505981,-0.11087,-0.148651,-0.162872,-0.152344,-0.121613,-0.073761,-0.0186462,0.0287781,0.0579224,0.0740967,0.0827637,0.0889282,0.100006,0.118866,0.156372,0.20932,0.267578,0.319946,0.357727,0.373169,0.35907,0.323486,0.271332,0.208527,0.150726,0.117706,0.117706,0.150391,0.206238,0.26712,0.317108,0.347321,0.352081,0.330261,0.292267,0.244019,0.192627,0.14093,0.110138,0.106659,0.121948,0.147644,0.172485,0.182617,0.174896,0.154236,0.119934,0.0759583,0.0348206,-0.000946045,-0.0220032,-0.0226135,-0.0144348,-0.00726318,-0.00134277,-0.00222778,-0.0161743,-0.0411987,-0.0748291,-0.110809,-0.141083,-0.156647,-0.15799,-0.141418,-0.111145,-0.0782471,-0.0562439,-0.0539551,-0.0758972,-0.120209,-0.175903,-0.233429,-0.286255,-0.325226,-0.350739,-0.355896,-0.343964,-0.321136,-0.301422,-0.293152,-0.295959,-0.307465,-0.327728,-0.355316,-0.381287,-0.389069,-0.364105,-0.30603,-0.226715,-0.136444,-0.0498047,0.019989,0.0653076,0.0856323,0.0775146,0.0411987,-0.0138855,-0.0755005,-0.12738,-0.156311,-0.161346,-0.143768,-0.105103,-0.0527649,0.00012207,0.0386658,0.0602722,0.0724182,0.0843506,0.102814,0.123505,0.148254,0.187988,0.23941,0.293091,0.333771,0.354218,0.348999,0.325104,0.281067,0.223694,0.164368,0.122284,0.106506,0.124176,0.172882,0.236053,0.297852,0.34314,0.361542,0.354706,0.32489,0.280884,0.228516,0.176697,0.134888,0.111084,0.109985,0.128601,0.153503,0.169189,0.169403,0.153412,0.124176,0.0885925,0.0503235,0.0152893,-0.00537109,-0.0110779,-0.00637817,-0.000946045,0.00415039,0.00341797,-0.00772095,-0.0274353,-0.0597229,-0.093811,-0.124969,-0.146912,-0.15564,-0.147919,-0.124237,-0.0953064,-0.0692749,-0.0589905,-0.069458,-0.10611,-0.15979,-0.216431,-0.269318,-0.309601,-0.336578,-0.346985,-0.341003,-0.321472,-0.301941,-0.286774,-0.282013,-0.286987,-0.303772,-0.329651,-0.359924,-0.379059,-0.373413,-0.339203,-0.272095,-0.185364,-0.0927429,-0.0148315,0.0420227,0.0802612,0.0921326,0.0724792,0.0257568,-0.0349731,-0.0979309,-0.149261,-0.174377,-0.171417,-0.145966,-0.100525,-0.0434875,0.0112,0.052002,0.0793152,0.0963135,0.107574,0.120728,0.142426,0.169006,0.201691,0.242279,0.287994,0.321533,0.334442,0.324219,0.295837,0.254761,0.199921,0.146912,0.109467,0.102692,0.132416,0.192749,0.259186,0.318115,0.354431,0.364105,0.349396,0.317596,0.272339,0.214417,0.15799,0.115021,0.0977173,0.101471,0.12149,0.148193,0.162872,0.161865,0.146973,0.121735,0.0892639,0.0555115,0.0259094,0.00592041,0.000671387,0.00134277,0.00302124,0.00408936,-0.000457764,-0.0124207,-0.0316772,-0.0593872,-0.0898743,-0.118378,-0.137787,-0.147369,-0.141205,-0.120331,-0.0960388,-0.0761108,-0.0714722,-0.0885315,-0.127167,-0.177643,-0.229858,-0.275574,-0.310608,-0.333435,-0.34201,-0.337463,-0.320343,-0.299316,-0.283691,-0.279663,-0.285645,-0.297577,-0.318115,-0.341888,-0.358643,-0.350677,-0.313904,-0.251617,-0.171692,-0.0908203,-0.0209351,0.0331421,0.0664978,0.0745544,0.0574646,0.0179749,-0.0415344,-0.102692,-0.150208,-0.173035,-0.170013,-0.142761,-0.0953064,-0.0394592,0.0132751,0.0527649,0.0751648,0.0926208,0.109131,0.127106,0.142212,0.161621,0.192963,0.232758,0.276855,0.307861,0.321533,0.316101,0.294769,0.254578,0.206238,0.158936,0.127655,0.120331,0.145111,0.193542,0.250946,0.302338,0.3349,0.345703,0.334503,0.306458,0.263489,0.212158,0.159515,0.117523,0.0953064,0.0954895,0.114349,0.137451,0.152161,0.155029,0.145966,0.12793,0.100067,0.0690613,0.0386658,0.0184631,0.00750732,0.00268555,-0.000274658,-0.00140381,-0.00497437,-0.0106812,-0.0253601,-0.0481262,-0.0751648,-0.101959,-0.12558,-0.137238,-0.134308,-0.122009,-0.102814,-0.0855103,-0.078186,-0.0889282,-0.117584,-0.158112,-0.202698,-0.242401,-0.277527,-0.307526,-0.324646,-0.327515,-0.318268,-0.301758,-0.284424,-0.273895,-0.277313,-0.289124,-0.305023,-0.321472,-0.33551,-0.337311,-0.319611,-0.276184,-0.210938,-0.132751,-0.0578003,0.00491333,0.052002,0.0737,0.0679321,0.0352478,-0.0129395,-0.0699463,-0.125427,-0.162476,-0.175964,-0.164703,-0.131744,-0.0828247,-0.0287781,0.0210876,0.0582581,0.0819397,0.0992737,0.11557,0.133972,0.15329,0.176239,0.206726,0.247101,0.290466,0.322479,0.332092,0.320679,0.290466,0.2435,0.188324,0.138,0.109528,0.109924,0.14093,0.191742,0.248199,0.300934,0.336243,0.349854,0.335358,0.298645,0.246368,0.189392,0.135986,0.101685,0.0870361,0.094635,0.117126,0.142548,0.160522,0.163086,0.15094,0.123749,0.0888062,0.0484009,0.0150452,-0.00738525,-0.020752,-0.0209961,-0.0172424,-0.0118713,-0.00665283,-0.00799561,-0.0201416,-0.0438843,-0.078186,-0.111603,-0.136047,-0.145569,-0.139191,-0.11853,-0.0913391,-0.0682678,-0.0579834,-0.0681763,-0.0972595,-0.143768,-0.194824,-0.2453,-0.28717,-0.318115,-0.333496,-0.329468,-0.314575,-0.289337,-0.267456,-0.256439,-0.256775,-0.268738,-0.288055,-0.312134,-0.33075,-0.334106,-0.313904,-0.269196,-0.198669,-0.118866,-0.0422058,0.0212097,0.0641479,0.0783081,0.062561,0.0241699,-0.0322876,-0.0968323,-0.154694,-0.189789,-0.197571,-0.178253,-0.135376,-0.0801392,-0.0246887,0.0235596,0.0562439,0.0755615,0.0898132,0.104156,0.124023,0.147369,0.176575,0.218872,0.269989,0.318115,0.347443,0.351746,0.328583,0.281677,0.21698,0.148529,0.093811,0.065918,0.0726929,0.115692,0.18222,0.254486,0.319397,0.360535,0.371887,0.353821,0.311554,0.252686,0.190338,0.136993,0.106781,0.0963745,0.109314,0.135437,0.161194,0.1716,0.165161,0.141083,0.10141,0.0561218,0.0116882,-0.0193176,-0.0349121,-0.0361023,-0.028595,-0.0157776,-0.000793457,0.00991821,0.00973511,-0.00692749,-0.0360413,-0.0726929,-0.108643,-0.133209,-0.137512,-0.120483,-0.0914917,-0.0608826,-0.0395203,-0.0336914,-0.0524292,-0.0910034,-0.144775,-0.201752,-0.256439,-0.300476,-0.32724,-0.335632,-0.324432,-0.299408,-0.268402,-0.24234,-0.228333,-0.228912,-0.245178,-0.269135,-0.295624,-0.316772,-0.32254,-0.310211,-0.270203,-0.203949,-0.125702,-0.0499878,0.0135498,0.0563049,0.0681152,0.048645,0.00857544,-0.0499268,-0.114685,-0.171692,-0.20578,-0.211151,-0.187866,-0.142212,-0.0863647,-0.0347595,0.00979614,0.0381775,0.057312,0.0733032,0.0909424,0.114166,0.139526,0.1763,0.221283,0.273285,0.321411,0.347321,0.345825,0.313629,0.258575,0.187103,0.117371,0.0617981,0.0349731,0.0435486,0.0934143,0.16925,0.256378,0.335907,0.387329,0.40329,0.386902,0.345093,0.284485,0.21759,0.157867,0.116638,0.0992737,0.106445,0.128174,0.148987,0.159058,0.151062,0.125916,0.0861816,0.0440979,0.00598145,-0.0223389,-0.033905,-0.0332336,-0.0191956,0.000274658,0.0236206,0.0371094,0.0409546,0.0228882,-0.00979614,-0.0514221,-0.0917358,-0.120331,-0.129272,-0.117859,-0.0916138,-0.056366,-0.0301208,-0.0174561,-0.0315552,-0.0672607,-0.123016,-0.187714,-0.24939,-0.299927,-0.330322,-0.340881,-0.329071,-0.300415,-0.259796,-0.217773,-0.18988,-0.182159,-0.197906,-0.22818,-0.263367,-0.29483,-0.321014,-0.32724,-0.3078,-0.260254,-0.187195,-0.101868,-0.0245056,0.0271912,0.0482483,0.0379333,0.0032959,-0.0489197,-0.106049,-0.162201,-0.20108,-0.216187,-0.201416,-0.163086,-0.110931,-0.0563049,-0.00946045,0.0249023,0.0440369,0.0542908,0.0669861,0.0861206,0.112335,0.145447,0.184692,0.23175,0.283356,0.325226,0.340332,0.320465,0.27182,0.203033,0.128937,0.0628052,0.0197449,0.0104065,0.0425415,0.112274,0.206238,0.308197,0.392151,0.437592,0.437439,0.398468,0.335114,0.265381,0.199524,0.145905,0.110321,0.0954895,0.101074,0.118927,0.139526,0.144287,0.124695,0.0885925,0.0459595,0.00793457,-0.0228882,-0.0332336,-0.0252991,-0.00402832,0.0245056,0.0548401,0.0788574,0.0899353,0.0817566,0.0484009,-0.00296021,-0.0606079,-0.106232,-0.130798,-0.13028,-0.107513,-0.0726318,-0.0397339,-0.0176392,-0.0129395,-0.0363159,-0.0863037,-0.153168,-0.22403,-0.281952,-0.317444,-0.326843,-0.312683,-0.278656,-0.236633,-0.193146,-0.159058,-0.143433,-0.151001,-0.185516,-0.234772,-0.286438,-0.324036,-0.343689,-0.339722,-0.313629,-0.266052,-0.202698,-0.13269,-0.0687866,-0.0209961,6.10352e-05,-0.00692749,-0.0383911,-0.0792542,-0.118195,-0.148468,-0.164642,-0.166656,-0.152832,-0.128784,-0.0974426,-0.0643616,-0.0365906,-0.0114746,0.00827026,0.0202637,0.0343018,0.0578613,0.0953674,0.14093,0.190125,0.235565,0.276245,0.303436,0.31012,0.28772,0.239746,0.176697,0.111816,0.0588684,0.0314636,0.036499,0.0760498,0.147125,0.234161,0.321747,0.390015,0.424957,0.420258,0.384094,0.327118,0.260193,0.199066,0.149811,0.11792,0.102417,0.103882,0.112091,0.119049,0.118378,0.103027,0.0763855,0.0452271,0.0176392,-0.00241089,-0.0071106,0.00509644,0.0322266,0.065033,0.0943604,0.111816,0.113434,0.0957642,0.0597229,0.012085,-0.0367126,-0.0787354,-0.105164,-0.11142,-0.101135,-0.0801392,-0.0569153,-0.040863,-0.0415344,-0.0617981,-0.100861,-0.151215,-0.202423,-0.240479,-0.259857,-0.25885,-0.242828,-0.218384,-0.189728,-0.165375,-0.146179,-0.141663,-0.155182,-0.188873,-0.236633,-0.283417,-0.32309,-0.350464,-0.36496,-0.357117,-0.327637,-0.276642,-0.21167,-0.147644,-0.091217,-0.0505371,-0.0297241,-0.0275879,-0.0380554,-0.0575867,-0.0822144,-0.11026,-0.130463,-0.141602,-0.139587,-0.131134,-0.114502,-0.0912781,-0.0697327,-0.0457153,-0.024292,0.0020752,0.0383301,0.0818176,0.126251,0.164093,0.201599,0.235046,0.263153,0.27771,0.269135,0.242676,0.202606,0.156647,0.111542,0.0802612,0.0697327,0.0845032,0.123413,0.183502,0.253754,0.32196,0.373962,0.395447,0.384216,0.347839,0.298798,0.246033,0.19986,0.158936,0.126923,0.106995,0.0999451,0.102814,0.104431,0.101013,0.0849609,0.0646973,0.0448303,0.0322876,0.0324097,0.0434265,0.0664978,0.0908203,0.110321,0.123901,0.126373,0.117584,0.0939636,0.0526733,-0.000335693,-0.0528259,-0.0949707,-0.119263,-0.12558,-0.114838,-0.0965881,-0.0751038,-0.0578613,-0.0492554,-0.0552979,-0.0794678,-0.113007,-0.148987,-0.177582,-0.194885,-0.200134,-0.194702,-0.184845,-0.17511,-0.170197,-0.171753,-0.183167,-0.204498,-0.240417,-0.285919,-0.327576,-0.354889,-0.361755,-0.351135,-0.334564,-0.306793,-0.273102,-0.227448,-0.17276,-0.117035,-0.0748901,-0.0555725,-0.0542908,-0.0598755,-0.0684509,-0.0722046,-0.0760498,-0.0888062,-0.109253,-0.128601,-0.138336,-0.138336,-0.124969,-0.10437,-0.0789795,-0.0492554,-0.0154419,0.0245667,0.0712891,0.118195,0.159271,0.186646,0.202026,0.215088,0.229248,0.243835,0.244904,0.232025,0.206451,0.178467,0.15451,0.134155,0.122833,0.12149,0.136658,0.169525,0.219391,0.274963,0.32135,0.346588,0.345642,0.327179,0.30188,0.272614,0.238983,0.200134,0.156708,0.117645,0.0906677,0.0795898,0.0795288,0.079071,0.0741577,0.0669861,0.061676,0.0645752,0.0751038,0.0907288,0.108002,0.118927,0.121613,0.118652,0.11142,0.0993347,0.0752258,0.0354919,-0.0134888,-0.065094,-0.10498,-0.128387,-0.133301,-0.122406,-0.104156,-0.0814209,-0.0590515,-0.0438232,-0.0411987,-0.052887,-0.079071,-0.110474,-0.138672,-0.160614,-0.178375,-0.195374,-0.210724,-0.226898,-0.23819,-0.245422,-0.248657,-0.254486,-0.266571,-0.285034,-0.303894,-0.314972,-0.315582,-0.309937,-0.302887,-0.293945,-0.281952,-0.256714,-0.214905,-0.160614,-0.105164,-0.0671692,-0.0477295,-0.0450439,-0.0489197,-0.0556946,-0.0639038,-0.0788574,-0.102631,-0.128601,-0.146179,-0.1492,-0.13443,-0.108185,-0.0755005,-0.040802,-0.00979614,0.0211487,0.0543518,0.0920715,0.129333,0.161865,0.188049,0.213409,0.244293,0.274628,0.291534,0.285492,0.253967,0.207977,0.156525,0.109528,0.0770569,0.0649719,0.0769653,0.11261,0.173553,0.248871,0.322815,0.375488,0.396179,0.383148,0.349335,0.305969,0.259735,0.211334,0.159058,0.111084,0.0755615,0.0602722,0.0640259,0.0750427,0.0846863,0.0877075,0.0885925,0.090271,0.0940247,0.104034,0.118317,0.12973,0.131409,0.123291,0.111542,0.0941467,0.0673828,0.0303955,-0.0183105,-0.0711365,-0.113678,-0.13858,-0.142334,-0.125427,-0.0966492,-0.0638123,-0.0339661,-0.0126953,-0.00811768,-0.0234985,-0.0597229,-0.105896,-0.152832,-0.192017,-0.221008,-0.242554,-0.256317,-0.266113,-0.268188,-0.261749,-0.247711,-0.23584,-0.231354,-0.237915,-0.256256,-0.278259,-0.298309,-0.311066,-0.318329,-0.317993,-0.307037,-0.284088,-0.247986,-0.200867,-0.147919,-0.0992737,-0.0613403,-0.0377197,-0.0303955,-0.0331421,-0.0414734,-0.0562439,-0.0785217,-0.102814,-0.122894,-0.136383,-0.142487,-0.135437,-0.113159,-0.0804138,-0.0426025,-0.00515747,0.0326843,0.0697327,0.108459,0.146973,0.181061,0.215302,0.251465,0.280792,0.29483,0.288727,0.263611,0.222015,0.166565,0.107452,0.058136,0.0338135,0.0420837,0.0810852,0.14563,0.226044,0.30954,0.378784,0.420135,0.429718,0.404694,0.358124,0.295441,0.228119,0.162537,0.108337,0.0719604,0.0561218,0.0593872,0.0724792,0.091217,0.106323,0.114624,0.116913,0.113953,0.107849,0.106384,0.110535,0.116852,0.122009,0.124023,0.116852,0.0978394,0.0645752,0.0194702,-0.0346375,-0.0865784,-0.12558,-0.145782,-0.145508,-0.125977,-0.0914001,-0.0546875,-0.0259094,-0.0114136,-0.0200806,-0.0488586,-0.0908813,-0.138794,-0.183075,-0.218719,-0.241425,-0.252747,-0.255249,-0.249603,-0.241089,-0.232208,-0.22464,-0.224701,-0.230743,-0.245514,-0.269928,-0.296783,-0.311951,-0.312408,-0.304443,-0.295288,-0.28302,-0.265106,-0.241608,-0.207794,-0.165985,-0.121552,-0.0852356,-0.061676,-0.0466309,-0.0333557,-0.0210876,-0.0189819,-0.0314636,-0.0592041,-0.0957642,-0.131134,-0.155365,-0.163422,-0.150482,-0.119598,-0.074707,-0.0297241,0.0181885,0.0716858,0.128723,0.178925,0.21228,0.233704,0.251129,0.267517,0.278778,0.274292,0.253418,0.217773,0.175964,0.132416,0.0943604,0.0705261,0.0657654,0.0822754,0.11853,0.179382,0.254761,0.330414,0.38623,0.407867,0.398529,0.366852,0.32605,0.2771,0.221466,0.160736,0.103882,0.0647583,0.0514832,0.0624695,0.0822144,0.0999451,0.107056,0.108734,0.108124,0.105896,0.108643,0.115356,0.121735,0.121399,0.114014,0.104095,0.0924683,0.0729675,0.0400085,-0.00732422,-0.0610657,-0.107117,-0.139069,-0.151672,-0.150208,-0.133545,-0.107666,-0.0782471,-0.0522156,-0.0391235,-0.0465698,-0.0730896,-0.112274,-0.152161,-0.18576,-0.212402,-0.229736,-0.240814,-0.2453,-0.244507,-0.236176,-0.223755,-0.211334,-0.207184,-0.21524,-0.235626,-0.261871,-0.286377,-0.303497,-0.310455,-0.306793,-0.303009,-0.295624,-0.280884,-0.254303,-0.217102,-0.171814,-0.123016,-0.0793152,-0.0448303,-0.0185852,-0.000213623,0.00912476,0.0062561,-0.0137634,-0.0481873,-0.0899353,-0.132477,-0.164825,-0.175018,-0.161133,-0.12558,-0.0745544,-0.0162964,0.0422058,0.102875,0.157928,0.203705,0.235718,0.2547,0.267517,0.274231,0.273773,0.26236,0.236908,0.200928,0.158447,0.114349,0.0749817,0.0509338,0.0475769,0.0657043,0.107178,0.171356,0.251617,0.335114,0.402161,0.436249,0.435638,0.407715,0.361267,0.301544,0.23288,0.161346,0.0932312,0.0429382,0.0172424,0.0197449,0.0424805,0.0692749,0.0932312,0.109406,0.11972,0.126251,0.130005,0.132477,0.131073,0.121002,0.104156,0.0832214,0.0601196,0.0371704,0.00469971,-0.0355835,-0.08255,-0.12207,-0.148651,-0.160614,-0.155975,-0.141205,-0.116241,-0.0878601,-0.0580444,-0.0395203,-0.0378418,-0.0508118,-0.0789185,-0.114288,-0.148041,-0.176025,-0.19873,-0.215088,-0.225311,-0.231598,-0.233765,-0.230682,-0.226227,-0.2229,-0.225433,-0.238647,-0.258575,-0.278259,-0.29538,-0.304108,-0.303009,-0.298065,-0.295044,-0.289948,-0.270752,-0.238983,-0.19281,-0.137177,-0.0787354,-0.0290527,0.00671387,0.0291138,0.0426025,0.0421448,0.025238,-0.0150452,-0.0673828,-0.12384,-0.168732,-0.188263,-0.183746,-0.153687,-0.105164,-0.0440979,0.0175171,0.0750427,0.132751,0.181824,0.219788,0.241943,0.253967,0.263367,0.273773,0.27832,0.267517,0.239746,0.199677,0.152557,0.103973,0.0582581,0.0281067,0.020813,0.0410767,0.0899963,0.169006,0.267303,0.362335,0.433899,0.46167,0.452362,0.413696,0.356384,0.28717,0.206909,0.126831,0.0585327,0.0142822,0.00140381,0.0158997,0.045166,0.0677795,0.0765686,0.0747681,0.0691223,0.0653076,0.0676575,0.0760498,0.0851746,0.0919495,0.0974426,0.100677,0.0988464,0.0845032,0.0495911,-0.00637817,-0.0734863,-0.132874,-0.174896,-0.194885,-0.188263,-0.161072,-0.119873,-0.0724182,-0.0284424,-0.00195312,-0.000274658,-0.0241699,-0.065979,-0.117798,-0.162872,-0.198059,-0.220795,-0.232544,-0.234039,-0.229736,-0.222137,-0.212341,-0.208252,-0.210815,-0.22229,-0.237244,-0.254028,-0.266174,-0.272888,-0.271606,-0.262207,-0.250214,-0.245422,-0.24765,-0.245026,-0.233612,-0.207977,-0.165375,-0.111267,-0.0551147,-0.00817871,0.0313416,0.0595398,0.0725403,0.0644226,0.0257568,-0.0388489,-0.111664,-0.174561,-0.214172,-0.219055,-0.192688,-0.13858,-0.0706787,0.00515747,0.0748291,0.142883,0.201599,0.24295,0.262878,0.265839,0.263214,0.264771,0.267395,0.256989,0.231873,0.192078,0.148041,0.101868,0.0594482,0.0274353,0.0144348,0.024231,0.0595398,0.124695,0.216766,0.321075,0.412292,0.465179,0.471741,0.438446,0.377319,0.300598,0.212158,0.123566,0.0390625,-0.0250854,-0.0543518,-0.0471802,-0.0127563,0.0274353,0.057251,0.0723572,0.0794678,0.0842896,0.0915527,0.102356,0.112762,0.118866,0.117188,0.110931,0.101349,0.0861206,0.0578613,0.00958252,-0.052002,-0.113556,-0.160797,-0.184418,-0.187439,-0.171753,-0.144287,-0.107178,-0.0669861,-0.0304565,-0.0123596,-0.0158997,-0.0425415,-0.0836182,-0.124634,-0.156372,-0.175354,-0.18576,-0.188385,-0.189056,-0.188385,-0.187256,-0.185242,-0.188873,-0.20047,-0.219391,-0.237976,-0.254425,-0.262024,-0.260406,-0.253143,-0.244843,-0.235565,-0.231354,-0.23114,-0.224243,-0.208313,-0.181152,-0.143829,-0.0978394,-0.0496521,-0.00946045,0.0216675,0.0402832,0.0435486,0.0269775,-0.0120239,-0.0657654,-0.121948,-0.166107,-0.188995,-0.183624,-0.149323,-0.0954895,-0.0279236,0.0426025,0.10611,0.158112,0.198578,0.222412,0.231598,0.230072,0.228119,0.229523,0.233032,0.230469,0.214233,0.186646,0.151672,0.111481,0.0710144,0.0341492,0.00991821,0.00872803,0.0356445,0.091217,0.176361,0.273956,0.362335,0.416046,0.429382,0.406097,0.359131,0.297913,0.227325,0.147034,0.0690002,0.00570679,-0.0283813,-0.0303955,-0.00732422,0.0232239,0.045105,0.0522766,0.0546265,0.0610657,0.0726929,0.0906067,0.107849,0.119324,0.121552,0.121887,0.115356,0.100403,0.0691833,0.0158386,-0.0531006,-0.121674,-0.173492,-0.200806,-0.205231,-0.189453,-0.158386,-0.111755,-0.0591125,-0.00872803,0.024353,0.0304565,0.0101318,-0.028656,-0.0690002,-0.103699,-0.128448,-0.148926,-0.166168,-0.183838,-0.196655,-0.202698,-0.20462,-0.208862,-0.218719,-0.231537,-0.241547,-0.24234,-0.229065,-0.210999,-0.192535,-0.183289,-0.183899,-0.196228,-0.214172,-0.234039,-0.243225,-0.240417,-0.217773,-0.175171,-0.11557,-0.0536804,0.00604248,0.0577087,0.0900574,0.0963135,0.0715332,0.0166321,-0.0583191,-0.132141,-0.186035,-0.210663,-0.20047,-0.158997,-0.0957031,-0.0232849,0.0512085,0.119598,0.175018,0.212494,0.229919,0.232544,0.227051,0.221466,0.220612,0.217926,0.205841,0.180145,0.143555,0.0975952,0.0471191,-0.00088501,-0.0397949,-0.0536804,-0.0360413,0.0203247,0.109863,0.221466,0.336029,0.430939,0.486969,0.498322,0.46524,0.394165,0.295715,0.182739,0.0722046,-0.0212708,-0.0836182,-0.107513,-0.0957031,-0.058197,-0.0106812,0.0298767,0.0610046,0.0842896,0.101685,0.117035,0.131805,0.141022,0.144501,0.142761,0.133636,0.118195,0.0906677,0.0471802,-0.0111389,-0.0791321,-0.141022,-0.185181,-0.203613,-0.195099,-0.163818,-0.117371,-0.0653687,-0.012207,0.0332336,0.0588684,0.0584412,0.0310669,-0.0147095,-0.0667114,-0.114563,-0.1492,-0.17215,-0.184509,-0.187103,-0.183685,-0.178864,-0.174225,-0.174225,-0.182159,-0.194153,-0.205231,-0.211823,-0.211731,-0.204041,-0.196991,-0.194641,-0.200073,-0.209534,-0.224365,-0.24054,-0.24469,-0.232941,-0.202698,-0.154907,-0.0950317,-0.0333557,0.0204773,0.0631409,0.0866394,0.0833435,0.0526123,-0.00357056,-0.077179,-0.15155,-0.199799,-0.215637,-0.201141,-0.160187,-0.0993347,-0.0308838,0.0390625,0.103149,0.154846,0.18692,0.199677,0.197052,0.185425,0.177307,0.179047,0.183563,0.180145,0.164825,0.136383,0.0997314,0.0603943,0.0209351,-0.0109253,-0.0265198,-0.0163879,0.0267639,0.100464,0.198914,0.303223,0.391998,0.44342,0.450195,0.415375,0.349121,0.264038,0.169678,0.0758362,-0.00408936,-0.0578613,-0.0779724,-0.0631409,-0.0232849,0.0236206,0.0589905,0.0808716,0.0924683,0.101288,0.110199,0.119202,0.124176,0.124908,0.125488,0.125916,0.123901,0.112762,0.0837708,0.0346375,-0.0317383,-0.0988464,-0.150604,-0.177979,-0.183228,-0.16684,-0.135834,-0.0917358,-0.0371704,0.0177307,0.057312,0.0711365,0.0570374,0.0190735,-0.0262451,-0.0678406,-0.0982666,-0.120148,-0.134827,-0.145447,-0.152496,-0.155579,-0.158051,-0.168182,-0.183838,-0.206635,-0.226318,-0.236969,-0.233887,-0.220398,-0.200806,-0.182007,-0.169739,-0.166504,-0.170135,-0.184631,-0.210266,-0.231476,-0.235291,-0.214691,-0.172607,-0.11792,-0.0623474,-0.0132141,0.0287781,0.0568542,0.0657043,0.0474548,-0.00274658,-0.0767212,-0.151154,-0.202209,-0.217102,-0.199463,-0.157196,-0.0995178,-0.0357666,0.03302,0.0972595,0.148987,0.178864,0.185638,0.175842,0.158325,0.147034,0.14859,0.158508,0.160522,0.150208,0.128662,0.0992737,0.0686646,0.0331421,-0.00476074,-0.0350342,-0.039856,-0.00817871,0.0610046,0.161621,0.27356,0.375153,0.442291,0.466431,0.448853,0.397461,0.318848,0.219055,0.10907,0.00643921,-0.0681152,-0.102203,-0.098114,-0.0621338,-0.0128784,0.0292664,0.0608826,0.0849609,0.106842,0.127045,0.145172,0.153839,0.156769,0.15625,0.158997,0.156647,0.142487,0.109131,0.0520935,-0.0245056,-0.101288,-0.161743,-0.19577,-0.203278,-0.185089,-0.147522,-0.0907288,-0.0184021,0.0577087,0.114014,0.13739,0.126099,0.0830078,0.0236816,-0.03302,-0.0818787,-0.121552,-0.152893,-0.173889,-0.184509,-0.185303,-0.181,-0.180878,-0.19101,-0.208527,-0.223755,-0.23114,-0.22229,-0.200409,-0.172821,-0.150726,-0.139404,-0.140594,-0.152496,-0.174561,-0.206055,-0.243683,-0.271545,-0.278534,-0.254578,-0.200256,-0.126709,-0.0505371,0.0126038,0.0569153,0.0773926,0.0734863,0.0404663,-0.020813,-0.101624,-0.179474,-0.229065,-0.240265,-0.213165,-0.157043,-0.0860291,-0.00991821,0.0602112,0.116852,0.154846,0.172363,0.170593,0.154694,0.13504,0.121887,0.121063,0.129669,0.13623,0.132751,0.117035,0.0914001,0.0586548,0.0221558,-0.00817871,-0.0214844,-0.0085144,0.0383301,0.116302,0.216095,0.321625,0.409851,0.460541,0.463562,0.420349,0.340942,0.239655,0.131134,0.0300598,-0.0503235,-0.100006,-0.111816,-0.0838928,-0.0267029,0.0400696,0.0951538,0.130798,0.146851,0.153076,0.156708,0.158722,0.156982,0.153168,0.146179,0.139191,0.130066,0.114899,0.0862427,0.0370483,-0.0265808,-0.0927429,-0.143829,-0.168335,-0.163208,-0.134155,-0.0871887,-0.0298767,0.0333557,0.0905457,0.129517,0.136993,0.110748,0.0564575,-0.0111389,-0.0740967,-0.122223,-0.154083,-0.17337,-0.181213,-0.180542,-0.173035,-0.164154,-0.161804,-0.170074,-0.188202,-0.20932,-0.22464,-0.226105,-0.213409,-0.1922,-0.17511,-0.167847,-0.166229,-0.171143,-0.185852,-0.210876,-0.244629,-0.273163,-0.283905,-0.265778,-0.212158,-0.138916,-0.0630188,-0.0015564,0.0430908,0.0641479,0.060791,0.0327454,-0.0241699,-0.102081,-0.179535,-0.228241,-0.241669,-0.217316,-0.163483,-0.0904846,-0.015564,0.0524902,0.107513,0.146912,0.164307,0.160278,0.140015,0.11557,0.101685,0.10437,0.116913,0.126648,0.12851,0.122406,0.105713,0.0785217,0.0471191,0.0173035,-0.00201416,6.10352e-05,0.0307922,0.0914917,0.179871,0.278534,0.365173,0.42215,0.440216,0.418732,0.35791,0.270416,0.169586,0.0720825,-0.00650024,-0.0549622,-0.070343,-0.0551758,-0.0173035,0.032135,0.079071,0.115234,0.141144,0.153503,0.156647,0.158508,0.161957,0.165314,0.171204,0.176025,0.171539,0.154846,0.12262,0.0714722,0.00704956,-0.0592651,-0.11792,-0.158508,-0.170685,-0.151825,-0.109406,-0.0528259,0.0085144,0.0636902,0.104828,0.122009,0.111084,0.0738831,0.0201416,-0.0353088,-0.0852966,-0.123077,-0.147644,-0.160187,-0.166901,-0.174042,-0.184021,-0.197723,-0.216095,-0.232941,-0.247375,-0.254425,-0.247375,-0.228455,-0.197906,-0.165558,-0.140198,-0.128937,-0.134888,-0.161011,-0.201477,-0.249054,-0.288513,-0.306519,-0.298981,-0.259796,-0.194763,-0.114899,-0.0410156,0.016571,0.0536804,0.0632324,0.0444336,-0.00128174,-0.06604,-0.135895,-0.192352,-0.21994,-0.215759,-0.182617,-0.122894,-0.0552979,0.00985718,0.0593262,0.0952454,0.117462,0.12558,0.122742,0.117188,0.115173,0.120728,0.134766,0.148651,0.15509,0.152557,0.133484,0.0976562,0.0517578,0.00906372,-0.0193176,-0.0221558,0.00161743,0.053894,0.135376,0.236053,0.336914,0.416046,0.456848,0.450531,0.398712,0.317261,0.221283,0.130951,0.0525513,-0.0110168,-0.0503235,-0.0592651,-0.0343018,0.0174561,0.0732117,0.118134,0.14389,0.157654,0.164551,0.174225,0.187592,0.197449,0.198669,0.191223,0.1763,0.155518,0.125488,0.0793152,0.0161133,-0.0578003,-0.121155,-0.162628,-0.171875,-0.150879,-0.107513,-0.052002,0.00582886,0.0649109,0.113098,0.138916,0.134369,0.0976562,0.0365906,-0.0299377,-0.0892639,-0.132751,-0.163879,-0.183502,-0.196655,-0.204559,-0.207184,-0.208649,-0.209534,-0.214905,-0.223633,-0.232605,-0.233612,-0.222137,-0.200928,-0.175354,-0.154846,-0.149261,-0.156372,-0.176025,-0.203156,-0.235718,-0.272003,-0.302612,-0.313477,-0.296051,-0.246643,-0.17041,-0.0881348,-0.0194092,0.0264282,0.0481873,0.0469666,0.0270386,-0.0132141,-0.0767822,-0.147461,-0.201813,-0.226562,-0.216644,-0.174561,-0.110748,-0.0435486,0.0206604,0.0719604,0.112091,0.141144,0.151062,0.146301,0.126373,0.107513,0.0964966,0.0973816,0.104645,0.10907,0.110748,0.104034,0.0903931,0.0734863,0.0575256,0.0485229,0.0502625,0.0696106,0.109131,0.1716,0.250061,0.329742,0.393951,0.424896,0.416046,0.373169,0.30127,0.217529,0.135712,0.0622864,0.00598145,-0.0289307,-0.0343628,-0.00866699,0.0404663,0.0947571,0.137451,0.162354,0.172363,0.173157,0.172699,0.172272,0.168915,0.159058,0.145966,0.131866,0.11972,0.106445,0.082428,0.0428772,-0.00967407,-0.0634155,-0.102081,-0.119263,-0.112885,-0.089386,-0.0564575,-0.019928,0.020752,0.0599365,0.0869141,0.0898132,0.065918,0.0166321,-0.041748,-0.0924072,-0.131866,-0.1586,-0.174622,-0.185699,-0.194305,-0.199402,-0.205505,-0.212341,-0.224579,-0.240814,-0.255432,-0.260864,-0.250549,-0.22583,-0.194153,-0.163757,-0.14093,-0.13269,-0.140076,-0.161957,-0.19397,-0.235168,-0.278931,-0.307373,-0.311462,-0.284424,-0.228394,-0.156311,-0.0841064,-0.0250244,0.0171814,0.0403442,0.0410156,0.0188599,-0.0256958,-0.0886536,-0.144836,-0.177795,-0.179871,-0.154297,-0.111267,-0.0582581,-0.0071106,0.0377197,0.0713501,0.0923462,0.102356,0.100067,0.0917969,0.0852356,0.0910645,0.108643,0.137787,0.162537,0.176239,0.176575,0.162201,0.137451,0.104034,0.0706787,0.0481262,0.0457153,0.0666504,0.113098,0.180603,0.260925,0.338135,0.392426,0.410339,0.389679,0.334351,0.262024,0.181671,0.108185,0.048645,0.00778198,-0.0126953,-0.00732422,0.0270996,0.0761108,0.121887,0.151062,0.163696,0.164642,0.162415,0.1633,0.165771,0.165558,0.161621,0.153961,0.142548,0.126373,0.103882,0.0641479,0.00765991,-0.0551147,-0.104645,-0.134766,-0.138123,-0.122223,-0.0926208,-0.0552368,-0.0111389,0.0358276,0.0736389,0.0917969,0.0805359,0.040741,-0.016571,-0.0752869,-0.122559,-0.156311,-0.183167,-0.202423,-0.216705,-0.222473,-0.223816,-0.221222,-0.219727,-0.222809,-0.230133,-0.232758,-0.226898,-0.208374,-0.182739,-0.158722,-0.144501,-0.141815,-0.149933,-0.169403,-0.198792,-0.238861,-0.282562,-0.319519,-0.3367,-0.320679,-0.270203,-0.19455,-0.11261,-0.0393982,0.0175781,0.0575256,0.0762329,0.0701294,0.0357056,-0.0234985,-0.0951538,-0.1539,-0.185577,-0.18692,-0.160522,-0.11792,-0.0666504,-0.0138245,0.036438,0.0775757,0.107391,0.125031,0.126923,0.122559,0.120819,0.126373,0.140808,0.160278,0.17215,0.173767,0.164551,0.144775,0.115356,0.0828857,0.0532837,0.0341492,0.0367126,0.0657654,0.123566,0.201538,0.286102,0.360077,0.405518,0.414215,0.390869,0.338379,0.265961,0.184753,0.105835,0.0400085,-0.0012207,-0.0139465,0.00341797,0.0409546,0.0860291,0.125031,0.147644,0.15979,0.163757,0.163544,0.159515,0.152222,0.143433,0.134888,0.128601,0.120819,0.107849,0.0832825,0.0440369,-0.00793457,-0.0612793,-0.103485,-0.128174,-0.132477,-0.117798,-0.0888672,-0.0487976,-0.00128174,0.0434875,0.0739746,0.0787964,0.0560303,0.00991821,-0.049408,-0.107727,-0.154633,-0.18988,-0.212555,-0.221283,-0.217865,-0.207581,-0.194366,-0.186523,-0.187103,-0.197845,-0.208923,-0.218781,-0.220459,-0.214508,-0.204163,-0.192688,-0.184692,-0.180664,-0.178986,-0.181946,-0.193634,-0.216522,-0.251068,-0.28717,-0.30545,-0.289673,-0.239594,-0.165436,-0.0877991,-0.0223389,0.0198669,0.0489197,0.0661621,0.0658264,0.036499,-0.0248413,-0.105164,-0.172699,-0.207642,-0.203369,-0.168854,-0.117371,-0.0584412,0.000396729,0.0555115,0.104156,0.142822,0.161285,0.155426,0.134094,0.113678,0.106171,0.115692,0.132294,0.145966,0.154907,0.158112,0.156311,0.14563,0.127502,0.101959,0.07724,0.0626831,0.0745544,0.117249,0.187653,0.267578,0.334839,0.373688,0.383301,0.370056,0.332336,0.274109,0.199738,0.120331,0.048645,0.00140381,-0.0102539,0.0102539,0.0504761,0.0926208,0.120667,0.134888,0.14328,0.148865,0.145355,0.137909,0.123413,0.10611,0.0966492,0.098053,0.106384,0.111084,0.101532,0.0719604,0.0246887,-0.0245667,-0.0687866,-0.101196,-0.119934,-0.123016,-0.111542,-0.0871277,-0.04953,-0.00732422,0.0260315,0.0385132,0.0255737,-0.00924683,-0.0524292,-0.094574,-0.128265,-0.156433,-0.174957,-0.182343,-0.180054,-0.173615,-0.167572,-0.171356,-0.186249,-0.208801,-0.234833,-0.25235,-0.25827,-0.250671,-0.236053,-0.216522,-0.192352,-0.165771,-0.144226,-0.137054,-0.14502,-0.172699,-0.211487,-0.25415,-0.282135,-0.28067,-0.248322,-0.193024,-0.12677,-0.0623474,-0.0116882,0.0259094,0.0449524,0.0447693,0.0209351,-0.0249634,-0.0862427,-0.139679,-0.167328,-0.1604,-0.124084,-0.0733643,-0.0187988,0.032135,0.0749817,0.10611,0.123352,0.125641,0.112762,0.093811,0.079071,0.0769653,0.0939026,0.126709,0.162018,0.188202,0.20047,0.197784,0.180664,0.152161,0.115631,0.0809326,0.0618896,0.0648193,0.0965881,0.157043,0.233612,0.309448,0.359924,0.377991,0.363281,0.322205,0.264557,0.195557,0.12323,0.0590515,0.0145569,-0.0017395,0.00939941,0.0465088,0.0907288,0.122681,0.135834,0.135223,0.126923,0.119202,0.113098,0.106445,0.098114,0.0942383,0.0994568,0.109406,0.120209,0.117371,0.0909424,0.0404053,-0.0220947,-0.0799866,-0.123627,-0.147247,-0.152344,-0.138062,-0.106445,-0.0587769,-0.00396729,0.0440979,0.0710754,0.0677795,0.0336914,-0.0189819,-0.0747681,-0.121735,-0.157715,-0.183167,-0.197906,-0.202759,-0.197449,-0.190735,-0.188324,-0.195557,-0.213623,-0.236786,-0.256256,-0.262482,-0.251404,-0.22583,-0.194885,-0.163544,-0.134491,-0.115173,-0.108795,-0.121887,-0.155182,-0.207184,-0.265717,-0.309448,-0.321808,-0.295715,-0.232208,-0.151337,-0.0710754,-0.00308228,0.0476379,0.0799255,0.0906677,0.0731506,0.0226135,-0.0490723,-0.119812,-0.165833,-0.174286,-0.149261,-0.10321,-0.0489197,0.00222778,0.0471191,0.0835571,0.10907,0.12088,0.116516,0.102692,0.0906067,0.0934143,0.113831,0.148376,0.183685,0.208923,0.21698,0.206909,0.183411,0.145905,0.103088,0.0614014,0.0343018,0.0318909,0.0623474,0.125031,0.207733,0.289124,0.349609,0.375702,0.368378,0.334167,0.279785,0.213013,0.138245,0.0708618,0.0198059,-0.00509644,0.00302124,0.0354309,0.0785828,0.11026,0.124176,0.124298,0.119263,0.113342,0.110992,0.107056,0.102356,0.100677,0.107513,0.119659,0.128784,0.125305,0.0974426,0.046051,-0.0184021,-0.0774536,-0.121338,-0.146027,-0.148529,-0.132141,-0.0994568,-0.053772,-0.00167847,0.0424805,0.0653076,0.058197,0.0237732,-0.0292664,-0.0855713,-0.131134,-0.164154,-0.186523,-0.197174,-0.196716,-0.189117,-0.17804,-0.172485,-0.177795,-0.195435,-0.220337,-0.24173,-0.251404,-0.241089,-0.218658,-0.189728,-0.163696,-0.140869,-0.128387,-0.121399,-0.129791,-0.157928,-0.204376,-0.261536,-0.310333,-0.325958,-0.29718,-0.228455,-0.141266,-0.0585327,0.00576782,0.052948,0.0844421,0.097168,0.082428,0.03302,-0.0467834,-0.129333,-0.18576,-0.202271,-0.176361,-0.124847,-0.065979,-0.0105286,0.0422668,0.0877991,0.127441,0.151154,0.151733,0.133636,0.112091,0.100861,0.109741,0.135223,0.16275,0.181824,0.185638,0.176025,0.155518,0.127258,0.0922852,0.0534363,0.0235596,0.0179138,0.0459595,0.111084,0.196503,0.283478,0.349792,0.385376,0.388916,0.364349,0.316315,0.247528,0.163696,0.0785828,0.0114136,-0.0227661,-0.020813,0.00811768,0.0503235,0.0877991,0.109863,0.123627,0.130859,0.133759,0.133209,0.127716,0.116364,0.107513,0.106903,0.115295,0.123505,0.121735,0.098175,0.0526123,-0.00744629,-0.0649109,-0.109924,-0.134491,-0.140137,-0.128723,-0.101959,-0.0634766,-0.016571,0.029541,0.0576477,0.0596619,0.0343018,-0.0129395,-0.0682678,-0.116974,-0.156921,-0.181885,-0.19577,-0.193878,-0.184021,-0.168121,-0.157257,-0.158447,-0.173218,-0.197662,-0.222473,-0.23819,-0.239807,-0.227661,-0.207794,-0.185913,-0.162537,-0.143097,-0.130066,-0.128845,-0.141998,-0.176117,-0.222961,-0.272217,-0.301483,-0.29361,-0.245087,-0.172363,-0.0914917,-0.024231,0.0238342,0.0520935,0.0673218,0.065918,0.0399475,-0.0151672,-0.0864563,-0.148804,-0.180603,-0.170532,-0.128387,-0.0726318,-0.0162354,0.0322266,0.0722961,0.104645,0.125916,0.133972,0.118591,0.0951538,0.0748901,0.0724182,0.0926208,0.125092,0.158051,0.17804,0.184418,0.178864,0.164429,0.140808,0.109131,0.0752869,0.0527649,0.0524902,0.0858459,0.148712,0.225433,0.293762,0.337189,0.348785,0.333832,0.296844,0.243164,0.180054,0.11261,0.0526123,0.0114746,-0.00274658,0.0145569,0.0561218,0.104095,0.137512,0.149719,0.14502,0.131287,0.118378,0.107574,0.0961609,0.082428,0.0724182,0.0735474,0.0877991,0.106323,0.113831,0.0969849,0.0546875,-0.00222778,-0.0536194,-0.0915527,-0.111542,-0.117188,-0.110748,-0.0923462,-0.0620117,-0.0200806,0.0204163,0.0410767,0.0339661,-0.000671387,-0.0495911,-0.0975952,-0.133301,-0.157593,-0.170929,-0.17511,-0.171692,-0.161804,-0.148651,-0.142487,-0.15033,-0.17569,-0.21283,-0.246765,-0.264282,-0.26181,-0.243561,-0.216766,-0.188599,-0.161407,-0.136505,-0.115509,-0.105652,-0.117859,-0.152832,-0.206238,-0.258392,-0.28476,-0.273956,-0.229401,-0.166504,-0.100616,-0.0424194,0.00357056,0.0367737,0.0541077,0.0455627,0.0113525,-0.0427551,-0.0978394,-0.135834,-0.143951,-0.124908,-0.086792,-0.0386047,0.0120239,0.0571899,0.0930176,0.112335,0.116516,0.104309,0.082489,0.0635681,0.0569763,0.0711975,0.101471,0.138855,0.173218,0.197235,0.207794,0.202087,0.180603,0.146515,0.104034,0.0645752,0.0419312,0.0469666,0.0846252,0.148193,0.219269,0.280792,0.319855,0.331604,0.31839,0.283478,0.234497,0.176117,0.117584,0.0671692,0.0371094,0.032959,0.0524902,0.0848389,0.113342,0.124695,0.121552,0.10965,0.0942383,0.0820923,0.074646,0.069519,0.0708618,0.0805969,0.102081,0.124756,0.139679,0.133301,0.101349,0.048584,-0.0103455,-0.0642395,-0.106506,-0.132751,-0.141022,-0.131287,-0.105652,-0.0658264,-0.0221558,0.00979614,0.021759,0.00939941,-0.0195923,-0.0559692,-0.0883179,-0.115173,-0.135101,-0.14624,-0.148865,-0.147644,-0.144897,-0.146637,-0.160797,-0.186768,-0.221558,-0.254913,-0.274963,-0.276428,-0.260132,-0.230927,-0.196442,-0.160797,-0.129456,-0.106903,-0.0997314,-0.113556,-0.149384,-0.200745,-0.255096,-0.290863,-0.292419,-0.258118,-0.200256,-0.129944,-0.0604553,-0.00228882,0.0400696,0.0644836,0.0646362,0.0400085,-0.00891113,-0.0689392,-0.11972,-0.145111,-0.140594,-0.110138,-0.0655823,-0.0171814,0.027771,0.0640869,0.0892639,0.102478,0.103088,0.091217,0.0760498,0.0681152,0.0784607,0.107452,0.147186,0.183838,0.207306,0.214081,0.202484,0.176178,0.137177,0.0919495,0.0512695,0.0256958,0.0273743,0.0602722,0.12207,0.199005,0.272888,0.327118,0.353821,0.352814,0.32254,0.269196,0.203094,0.134979,0.07724,0.037323,0.0226746,0.0303345,0.0561218,0.0863647,0.10907,0.118378,0.116119,0.106049,0.0919495,0.08255,0.0796509,0.0828857,0.0924072,0.107178,0.125977,0.137787,0.135315,0.108917,0.0612183,0.00106812,-0.0587158,-0.106903,-0.136841,-0.146118,-0.136719,-0.112,-0.0742188,-0.0292053,0.0129395,0.0385132,0.0390015,0.0150452,-0.0264282,-0.0720215,-0.11087,-0.140472,-0.15686,-0.1633,-0.165314,-0.16449,-0.166779,-0.174561,-0.189117,-0.213165,-0.239746,-0.262482,-0.269745,-0.260468,-0.237396,-0.20517,-0.170349,-0.138,-0.11322,-0.102753,-0.108917,-0.136566,-0.183228,-0.239594,-0.284912,-0.297577,-0.272217,-0.216766,-0.147369,-0.0791931,-0.0213318,0.0238342,0.0561829,0.0690613,0.057373,0.0140991,-0.0514832,-0.11557,-0.152405,-0.152008,-0.121826,-0.078064,-0.0298767,0.0157776,0.0575867,0.0913391,0.112885,0.118195,0.105774,0.085022,0.0669861,0.0662537,0.0899353,0.126312,0.163086,0.191071,0.203827,0.203491,0.188446,0.156311,0.112946,0.0669861,0.0349121,0.0281982,0.0536194,0.110199,0.184509,0.257324,0.310394,0.337921,0.341797,0.32196,0.279388,0.218872,0.151489,0.0888062,0.0458984,0.0262451,0.0342407,0.0603943,0.093689,0.115295,0.120819,0.11557,0.106171,0.0942383,0.0856323,0.0791321,0.0761719,0.0820007,0.0983276,0.121613,0.143158,0.150818,0.131012,0.0838928,0.0219421,-0.0400085,-0.0923462,-0.127655,-0.146301,-0.145447,-0.125977,-0.0901489,-0.0441589,0.00140381,0.0313416,0.037323,0.0166321,-0.0204773,-0.0612183,-0.0965881,-0.125427,-0.147034,-0.159454,-0.165161,-0.163208,-0.162964,-0.169189,-0.185699,-0.211548,-0.24295,-0.267059,-0.275757,-0.266632,-0.244293,-0.215302,-0.182831,-0.149597,-0.120819,-0.102142,-0.103973,-0.129791,-0.176025,-0.232605,-0.278992,-0.297455,-0.279602,-0.230255,-0.16275,-0.0909424,-0.0268555,0.0270996,0.0621338,0.0743103,0.0611267,0.020752,-0.0375977,-0.0970459,-0.139679,-0.155701,-0.141998,-0.105103,-0.0536194,-0.00088501,0.0462341,0.0812073,0.102875,0.111084,0.105835,0.0940247,0.0835571,0.0808716,0.0954285,0.123505,0.157257,0.187927,0.205292,0.205231,0.185425,0.150818,0.105316,0.0600586,0.0268555,0.0166321,0.0393372,0.0932922,0.168121,0.247528,0.314423,0.357117,0.371399,0.355896,0.311951,0.247925,0.173889,0.101959,0.0473938,0.0153809,0.0102539,0.0272522,0.0561218,0.0844421,0.105225,0.11557,0.115631,0.111145,0.105164,0.103973,0.10498,0.111664,0.122681,0.136383,0.147461,0.147461,0.12616,0.08255,0.0228271,-0.0426941,-0.101807,-0.143158,-0.161407,-0.156708,-0.133545,-0.0948181,-0.0470581,0.00189209,0.0396729,0.0550232,0.046051,0.0135498,-0.0323486,-0.0797424,-0.124084,-0.156311,-0.175903,-0.186859,-0.191071,-0.193298,-0.197052,-0.205566,-0.220398,-0.238922,-0.255768,-0.263428,-0.256927,-0.237732,-0.209991,-0.179535,-0.149261,-0.126312,-0.114777,-0.118469,-0.140533,-0.181732,-0.233948,-0.275696,-0.292267,-0.272675,-0.220551,-0.15033,-0.0803223,-0.020752,0.0264282,0.0575256,0.0687866,0.0552368,0.00991821,-0.0585938,-0.127045,-0.173553,-0.183563,-0.159454,-0.111084,-0.052002,0.00717163,0.0624695,0.104645,0.133301,0.141815,0.131287,0.10907,0.0863647,0.0758362,0.0866394,0.113617,0.14563,0.173767,0.189789,0.190338,0.172211,0.141144,0.0986633,0.0570374,0.0282593,0.025238,0.0556335,0.118195,0.202271,0.285706,0.3508,0.386444,0.389526,0.359802,0.303833,0.230194,0.147583,0.0723572,0.0147095,-0.0134888,-0.00933838,0.0233459,0.0684509,0.107727,0.133148,0.143494,0.141815,0.135559,0.127991,0.119995,0.111938,0.110535,0.115448,0.128113,0.140533,0.139526,0.115295,0.0654297,0.00167847,-0.0634155,-0.116241,-0.151215,-0.163361,-0.154968,-0.128052,-0.0841064,-0.028656,0.024353,0.0611267,0.0706177,0.0491333,0.00576782,-0.0470581,-0.0997314,-0.144836,-0.17804,-0.199188,-0.20752,-0.208374,-0.201874,-0.199005,-0.201752,-0.215088,-0.2341,-0.250336,-0.259521,-0.255585,-0.240753,-0.21759,-0.190338,-0.161621,-0.138733,-0.125702,-0.13147,-0.1604,-0.20871,-0.258179,-0.285492,-0.280396,-0.241486,-0.181488,-0.118805,-0.0646973,-0.0157776,0.0304565,0.0632935,0.0687256,0.0332947,-0.0377197,-0.116638,-0.173553,-0.193542,-0.177124,-0.137329,-0.0846863,-0.024353,0.0385132,0.0977783,0.144623,0.166656,0.159943,0.131348,0.0977173,0.0739746,0.0713501,0.0871887,0.110931,0.137329,0.16214,0.178528,0.181,0.166504,0.134827,0.0934753,0.0562439,0.0402832,0.057251,0.109741,0.184082,0.262604,0.327057,0.369659,0.390594,0.382355,0.342682,0.273499,0.184845,0.0929565,0.020752,-0.015625,-0.0160522,0.0128784,0.0558472,0.0952454,0.125488,0.150818,0.165314,0.168396,0.158844,0.139191,0.117462,0.103638,0.103821,0.116577,0.130463,0.134216,0.116516,0.0786438,0.0234985,-0.0334167,-0.0869141,-0.128448,-0.152893,-0.157776,-0.141479,-0.105103,-0.0527649,0.00280762,0.0447083,0.0655823,0.0574646,0.0266418,-0.0182495,-0.0701294,-0.124359,-0.169678,-0.20282,-0.218445,-0.218719,-0.212891,-0.208466,-0.209808,-0.221466,-0.236237,-0.248718,-0.256653,-0.258575,-0.252686,-0.24115,-0.222229,-0.192688,-0.16153,-0.138794,-0.13739,-0.161285,-0.207733,-0.252625,-0.275085,-0.264435,-0.224579,-0.172546,-0.126099,-0.0838928,-0.0396729,0.00793457,0.0461121,0.0550232,0.0196533,-0.0506592,-0.125092,-0.17865,-0.194305,-0.178375,-0.141541,-0.0912781,-0.0301208,0.0388489,0.106171,0.159454,0.181885,0.172821,0.142212,0.108246,0.0843506,0.0784607,0.0861206,0.101685,0.122345,0.143555,0.162964,0.172028,0.165649,0.139801,0.0997314,0.0639038,0.0493164,0.0738831,0.131409,0.207123,0.28476,0.347168,0.385834,0.401825,0.390198,0.347107,0.273499,0.181732,0.086853,0.0127563,-0.0236816,-0.0232849,0.00549316,0.0510864,0.0959778,0.133698,0.161682,0.177917,0.180939,0.172882,0.153961,0.130188,0.114349,0.109253,0.116699,0.128448,0.130341,0.112427,0.072876,0.0179749,-0.0411987,-0.0920715,-0.130676,-0.153564,-0.158447,-0.144348,-0.107727,-0.0532227,0.00289917,0.0467834,0.0661621,0.0562439,0.0246277,-0.0194092,-0.0715332,-0.123016,-0.168121,-0.203491,-0.224304,-0.23053,-0.227661,-0.223907,-0.2229,-0.232086,-0.243744,-0.256927,-0.264618,-0.266113,-0.25885,-0.245178,-0.224152,-0.200592,-0.179138,-0.166229,-0.16745,-0.187103,-0.217987,-0.243073,-0.253021,-0.237915,-0.200134,-0.151886,-0.105225,-0.0634155,-0.0246887,0.0032959,0.0177307,0.00924683,-0.0284424,-0.0851746,-0.141754,-0.17981,-0.187653,-0.166992,-0.12262,-0.0634155,0.00241089,0.0663147,0.121399,0.158447,0.17276,0.167786,0.148651,0.122833,0.104156,0.0970459,0.101074,0.114441,0.130737,0.144348,0.149872,0.146851,0.13269,0.109863,0.0892639,0.0783081,0.0866394,0.122498,0.179993,0.249603,0.315582,0.369324,0.401611,0.405426,0.377441,0.319183,0.239319,0.149658,0.0704651,0.0151672,-0.0134888,-0.0153809,0.00778198,0.0448914,0.0877075,0.130859,0.163208,0.17746,0.181213,0.176025,0.165558,0.155914,0.146973,0.138519,0.129517,0.120056,0.103821,0.0750427,0.0314636,-0.0220032,-0.0770569,-0.122742,-0.149872,-0.155914,-0.143829,-0.117981,-0.0791321,-0.0342407,0.00924683,0.0448914,0.0592651,0.0485229,0.0151062,-0.0325623,-0.0874634,-0.135895,-0.176239,-0.205963,-0.226776,-0.239807,-0.248108,-0.252289,-0.251556,-0.253479,-0.256592,-0.260071,-0.262146,-0.259583,-0.249329,-0.233215,-0.213348,-0.196899,-0.190002,-0.194489,-0.210541,-0.232422,-0.245178,-0.241333,-0.219208,-0.181274,-0.137848,-0.0976562,-0.0622253,-0.0289307,-0.00314331,0.00692749,-0.00549316,-0.0467224,-0.104553,-0.158325,-0.190002,-0.193207,-0.170746,-0.128998,-0.0757141,-0.0126038,0.0555725,0.118805,0.166565,0.187866,0.182739,0.164764,0.142426,0.127991,0.123352,0.123291,0.123749,0.124908,0.125244,0.121826,0.116119,0.102875,0.0823364,0.0637512,0.061676,0.0849609,0.136993,0.209259,0.28476,0.350342,0.398712,0.425049,0.426453,0.398926,0.336517,0.246765,0.147308,0.0588684,0.00100708,-0.0230103,-0.0216675,-0.00274658,0.0296631,0.0675964,0.109192,0.150146,0.176971,0.188446,0.187531,0.178802,0.17041,0.167664,0.166504,0.15799,0.140747,0.109741,0.0655823,0.0133667,-0.0424805,-0.0954895,-0.137909,-0.163696,-0.168335,-0.151062,-0.11557,-0.0683289,-0.017395,0.025238,0.0527649,0.0636902,0.0502625,0.0168457,-0.0294495,-0.0838928,-0.135986,-0.176788,-0.205841,-0.22522,-0.235626,-0.243408,-0.252686,-0.25885,-0.263092,-0.265778,-0.266846,-0.265106,-0.261688,-0.252686,-0.238983,-0.223572,-0.207123,-0.197449,-0.199799,-0.218597,-0.242218,-0.25592,-0.248871,-0.215363,-0.164429,-0.112,-0.0724792,-0.0447693,-0.0214233,-0.0015564,0.00866699,-0.00738525,-0.0575256,-0.128265,-0.188934,-0.219269,-0.212158,-0.177856,-0.129059,-0.0722046,-0.0103455,0.0580444,0.123169,0.174896,0.19986,0.198792,0.178864,0.156036,0.144012,0.140533,0.142944,0.14093,0.131134,0.118317,0.100189,0.0834961,0.0663147,0.0516052,0.0428772,0.0495911,0.0828247,0.146637,0.236969,0.330078,0.405853,0.448517,0.459045,0.438721,0.392944,0.323212,0.231079,0.129608,0.0370483,-0.0275879,-0.0533447,-0.041748,-0.00973511,0.0296631,0.0665894,0.102631,0.135986,0.166229,0.188873,0.199005,0.198242,0.191284,0.185028,0.181213,0.173767,0.154572,0.116455,0.0583191,-0.0113525,-0.0794067,-0.134705,-0.168732,-0.181824,-0.174561,-0.15094,-0.111084,-0.0586548,-0.00195312,0.044281,0.0697327,0.0682678,0.0444336,0.00463867,-0.0422668,-0.0914917,-0.138062,-0.17569,-0.203766,-0.222473,-0.234711,-0.2435,-0.252289,-0.261017,-0.269928,-0.275238,-0.278259,-0.276764,-0.269531,-0.255646,-0.237457,-0.221741,-0.212402,-0.214844,-0.227173,-0.244354,-0.252808,-0.245697,-0.217438,-0.170471,-0.116364,-0.066925,-0.0301208,-0.00598145,0.00671387,0.00616455,-0.0150452,-0.0631409,-0.130615,-0.197571,-0.241608,-0.246643,-0.216583,-0.162292,-0.0956421,-0.024292,0.0476379,0.115234,0.170593,0.199921,0.207245,0.195648,0.175964,0.161743,0.155579,0.153839,0.152618,0.146362,0.132294,0.11026,0.0818176,0.0488586,0.0189209,0.00256348,0.00912476,0.0446167,0.112335,0.205627,0.310455,0.405975,0.476562,0.507263,0.495758,0.443756,0.360199,0.255981,0.147461,0.0508118,-0.020874,-0.06073,-0.065918,-0.041626,0.00167847,0.0492554,0.0927429,0.12616,0.147522,0.165161,0.181274,0.194366,0.202942,0.207062,0.205566,0.196899,0.181335,0.149597,0.0962524,0.0224915,-0.0612183,-0.138,-0.191803,-0.214844,-0.207977,-0.179138,-0.133423,-0.0756226,-0.0118103,0.0437622,0.0823364,0.0910034,0.0700073,0.0294495,-0.0228882,-0.0748901,-0.120148,-0.15744,-0.186249,-0.210205,-0.225983,-0.240997,-0.253693,-0.266968,-0.280121,-0.291473,-0.298309,-0.295898,-0.287109,-0.268738,-0.243225,-0.21759,-0.202484,-0.204376,-0.221466,-0.243835,-0.253479,-0.24173,-0.20752,-0.159668,-0.110657,-0.0717468,-0.0379944,-0.00436401,0.0161743,0.0158386,-0.0182495,-0.0826721,-0.158508,-0.22168,-0.25415,-0.250671,-0.216583,-0.16275,-0.0943604,-0.0162354,0.0630188,0.134369,0.184174,0.200806,0.193878,0.176575,0.16153,0.157776,0.161407,0.1651,0.164093,0.158661,0.145294,0.122345,0.0892639,0.0452271,0.0020752,-0.0267639,-0.0248413,0.0204163,0.104156,0.210541,0.322296,0.417664,0.485229,0.517914,0.511017,0.46283,0.377045,0.265381,0.144226,0.0387268,-0.0304565,-0.0613403,-0.0575867,-0.0332336,-0.000396729,0.0353088,0.0709534,0.101807,0.126709,0.145691,0.158661,0.170746,0.187531,0.207916,0.225494,0.231873,0.216583,0.176971,0.11261,0.0302124,-0.058197,-0.138794,-0.199921,-0.234955,-0.237122,-0.209381,-0.15509,-0.0842285,-0.0147095,0.041626,0.0753784,0.0834351,0.0674438,0.0333557,-0.0127563,-0.0636902,-0.11026,-0.147461,-0.17337,-0.190063,-0.204285,-0.223572,-0.246368,-0.273163,-0.297516,-0.315765,-0.326782,-0.329132,-0.317261,-0.292938,-0.260925,-0.229584,-0.208984,-0.206635,-0.213287,-0.215424,-0.208313,-0.18335,-0.152283,-0.121552,-0.0914917,-0.0593872,-0.0229492,0.00314331,0.00793457,-0.0206604,-0.081604,-0.151276,-0.21048,-0.244843,-0.251892,-0.234497,-0.193817,-0.131958,-0.049469,0.0385132,0.117859,0.174225,0.199677,0.199738,0.18576,0.16806,0.158203,0.15564,0.15625,0.158264,0.158661,0.154083,0.136902,0.108246,0.0639038,0.0147095,-0.0229492,-0.0343018,-0.00665283,0.0602112,0.157715,0.266449,0.369934,0.45517,0.509857,0.524689,0.493225,0.419067,0.313141,0.196564,0.0894775,0.0107422,-0.0383301,-0.0549011,-0.0444946,-0.0213318,0.0104065,0.0471802,0.0785828,0.101685,0.120331,0.134552,0.147858,0.169525,0.196167,0.222473,0.23999,0.238647,0.211212,0.15509,0.0767822,-0.0108032,-0.0990601,-0.172943,-0.22522,-0.247375,-0.237579,-0.196716,-0.130737,-0.0597229,0.00375366,0.0508118,0.0739746,0.0716248,0.0509338,0.0129395,-0.033905,-0.0812073,-0.120483,-0.149536,-0.169403,-0.185181,-0.203156,-0.225555,-0.253571,-0.283752,-0.312805,-0.338318,-0.351868,-0.351135,-0.336304,-0.308716,-0.273285,-0.241943,-0.218536,-0.198334,-0.179138,-0.156769,-0.125031,-0.0920105,-0.0654297,-0.0475769,-0.0386658,-0.0346375,-0.0345764,-0.0423584,-0.0708618,-0.121338,-0.180664,-0.232544,-0.257996,-0.252289,-0.219604,-0.165771,-0.102966,-0.0299377,0.0447693,0.114685,0.168457,0.199585,0.210663,0.202148,0.188934,0.177307,0.16925,0.165161,0.158783,0.148193,0.128174,0.0977783,0.0632935,0.0237732,-0.00839233,-0.0259705,-0.0195923,0.017395,0.0889282,0.187653,0.298126,0.400543,0.47522,0.511139,0.503571,0.458191,0.382629,0.287323,0.185242,0.089386,0.013031,-0.0339661,-0.0495911,-0.0359192,-0.0105896,0.0174561,0.0422058,0.062561,0.0826721,0.106384,0.131958,0.156372,0.178864,0.199738,0.217865,0.229523,0.22644,0.198242,0.138458,0.0578613,-0.0332947,-0.114502,-0.175507,-0.211273,-0.22168,-0.210327,-0.176178,-0.123352,-0.0626831,-0.00604248,0.0342407,0.048645,0.0411377,0.0171204,-0.0148315,-0.0492554,-0.0818787,-0.108734,-0.133972,-0.154846,-0.174622,-0.197113,-0.221741,-0.249115,-0.280548,-0.311615,-0.340149,-0.359131,-0.362823,-0.351196,-0.329132,-0.303223,-0.278931,-0.246521,-0.203033,-0.150269,-0.0943604,-0.0447083,-0.0127563,0.00201416,0.00939941,0.0114746,0.00112915,-0.0297241,-0.0860291,-0.160065,-0.225098,-0.268463,-0.281891,-0.268646,-0.233948,-0.183411,-0.117859,-0.0397949,0.0399475,0.113007,0.165558,0.19046,0.198914,0.198334,0.198914,0.202423,0.205902,0.200684,0.187653,0.162964,0.12851,0.0867004,0.0401306,-0.00811768,-0.0479736,-0.0653076,-0.0516663,0.00146484,0.0888062,0.19577,0.308777,0.407043,0.480347,0.514099,0.508118,0.461395,0.383026,0.284821,0.183014,0.0932922,0.0268555,-0.0137024,-0.0276489,-0.0227661,-0.00967407,0.00732422,0.0247803,0.041687,0.0613403,0.0846252,0.110077,0.137787,0.169067,0.201752,0.230743,0.246429,0.238403,0.201355,0.135651,0.0532227,-0.0308838,-0.107239,-0.167328,-0.207062,-0.222229,-0.209808,-0.173035,-0.118591,-0.0622253,-0.016449,0.0120239,0.0197449,0.0115356,-0.00665283,-0.0310669,-0.0577087,-0.0817566,-0.102417,-0.12027,-0.136047,-0.15329,-0.175354,-0.199677,-0.231537,-0.266724,-0.301147,-0.333771,-0.356659,-0.366699,-0.363342,-0.349731,-0.329926,-0.301422,-0.262604,-0.209717,-0.146301,-0.0782471,-0.0184021,0.0240173,0.0467834,0.0551758,0.0479126,0.0226746,-0.0245667,-0.0960388,-0.176575,-0.246979,-0.289673,-0.300812,-0.279999,-0.231476,-0.169067,-0.097168,-0.0212097,0.0525513,0.116699,0.160126,0.183563,0.191223,0.196716,0.208649,0.223297,0.236176,0.238922,0.225647,0.193146,0.142548,0.0831604,0.0178528,-0.0404663,-0.085022,-0.0996094,-0.0749817,-0.00704956,0.0950928,0.214752,0.332428,0.427856,0.48999,0.510864,0.49173,0.438599,0.358063,0.261932,0.166656,0.0888062,0.0355835,0.00665283,-0.00396729,-0.00524902,-0.00650024,-0.00491333,-0.00146484,0.0067749,0.0238342,0.0499878,0.0830078,0.124237,0.171356,0.218109,0.25174,0.264099,0.246185,0.195099,0.116699,0.0275269,-0.0603943,-0.135101,-0.190674,-0.219452,-0.222687,-0.200409,-0.158264,-0.108063,-0.0635681,-0.0297241,-0.0124817,-0.0100708,-0.0188599,-0.0314636,-0.0481262,-0.0667725,-0.0801392,-0.094574,-0.108002,-0.124298,-0.146027,-0.176514,-0.213165,-0.253906,-0.295776,-0.332825,-0.36026,-0.375641,-0.376831,-0.363831,-0.337646,-0.30249,-0.256714,-0.202606,-0.142822,-0.0801392,-0.019928,0.0269165,0.0561829,0.0658264,0.0512695,0.0188599,-0.0315552,-0.0953064,-0.163422,-0.222809,-0.263947,-0.277588,-0.25946,-0.212738,-0.150482,-0.0787964,-0.0110779,0.0492554,0.0950928,0.126831,0.148926,0.161072,0.172546,0.18988,0.21167,0.234894,0.25235,0.253143,0.229248,0.18222,0.118591,0.0475769,-0.0168457,-0.0611267,-0.0793152,-0.061554,-0.0085144,0.0799866,0.19046,0.305695,0.401001,0.456451,0.465637,0.433685,0.380859,0.315643,0.247589,0.181,0.118713,0.0697327,0.0456238,0.0437622,0.0491943,0.0488586,0.0325623,0.00515747,-0.0157166,-0.0140381,0.00564575,0.0406799,0.0826721,0.125916,0.169861,0.209656,0.236237,0.232483,0.191345,0.118042,0.0310059,-0.0517578,-0.115692,-0.156708,-0.179932,-0.185577,-0.172943,-0.144348,-0.108459,-0.0730286,-0.0526123,-0.0531006,-0.0669861,-0.0862427,-0.0978394,-0.0987854,-0.0914001,-0.0844421,-0.0821533,-0.0866394,-0.0992737,-0.118469,-0.14679,-0.189209,-0.241333,-0.30014,-0.351746,-0.385162,-0.399323,-0.392426,-0.372833,-0.340881,-0.293488,-0.233612,-0.15918,-0.0838928,-0.0170593,0.0299377,0.0534363,0.0594482,0.0484619,0.0249634,-0.0146179,-0.0722961,-0.139587,-0.20343,-0.250946,-0.266571,-0.249268,-0.204224,-0.145966,-0.0848389,-0.0236816,0.0336304,0.0867004,0.126587,0.150391,0.161621,0.162872,0.171082,0.187439,0.210663,0.231476,0.238647,0.223297,0.185699,0.134827,0.0777283,0.0224915,-0.0222168,-0.040863,-0.0293884,0.0187378,0.0987244,0.194885,0.288727,0.362091,0.403229,0.410614,0.389008,0.346985,0.287262,0.219666,0.154968,0.105438,0.0807495,0.0789795,0.0880432,0.0939636,0.0861206,0.0643005,0.0390015,0.0184631,0.00698853,0.00772095,0.0195923,0.0438232,0.0834961,0.130127,0.171692,0.198914,0.19632,0.160522,0.0996704,0.0267639,-0.045166,-0.102753,-0.141266,-0.159332,-0.152618,-0.132416,-0.101135,-0.0720825,-0.0542297,-0.0512695,-0.0649109,-0.0912781,-0.120605,-0.141205,-0.154419,-0.153748,-0.141144,-0.12207,-0.105042,-0.0932922,-0.0953674,-0.114563,-0.151489,-0.201874,-0.262695,-0.322815,-0.369537,-0.39679,-0.401611,-0.384827,-0.346375,-0.292358,-0.224365,-0.144562,-0.0688477,-0.00582886,0.0324707,0.0489197,0.0457153,0.0315552,0.0104065,-0.0275879,-0.0826111,-0.145447,-0.203369,-0.237579,-0.240936,-0.213745,-0.170868,-0.119873,-0.066925,-0.0148926,0.0383911,0.0871277,0.125427,0.150146,0.161072,0.171875,0.188385,0.211487,0.236969,0.251678,0.244629,0.213501,0.164764,0.106445,0.0514221,0.00671387,-0.0219421,-0.0314026,-0.00918579,0.0472412,0.134308,0.237396,0.332001,0.399475,0.427185,0.418182,0.379456,0.322754,0.255707,0.18576,0.120819,0.0711975,0.0444946,0.0424805,0.0553589,0.0692749,0.0738831,0.0627441,0.0444336,0.0287781,0.0248413,0.0350952,0.0525513,0.0791931,0.110077,0.142944,0.170349,0.183075,0.167664,0.120331,0.0510864,-0.0275269,-0.0968323,-0.146698,-0.173492,-0.179047,-0.167053,-0.138794,-0.0992737,-0.0617371,-0.0339661,-0.0259094,-0.0388489,-0.068512,-0.102539,-0.13269,-0.15329,-0.162292,-0.161346,-0.158203,-0.153503,-0.151276,-0.154083,-0.167175,-0.193695,-0.234955,-0.287994,-0.337036,-0.371674,-0.382874,-0.371613,-0.337799,-0.286926,-0.223907,-0.15033,-0.0733643,-0.00759888,0.0353088,0.0554504,0.0492554,0.0247803,-0.00946045,-0.0551758,-0.109802,-0.163361,-0.207184,-0.230927,-0.228729,-0.199005,-0.150604,-0.0939026,-0.0386047,0.0088501,0.0502014,0.0836792,0.109863,0.132477,0.146118,0.159729,0.177917,0.202606,0.229858,0.254089,0.260681,0.2388,0.191956,0.130737,0.0689392,0.0188599,-0.0102539,-0.0155029,0.00717163,0.0595398,0.139801,0.233368,0.324219,0.391083,0.419525,0.410278,0.36972,0.313751,0.248199,0.184174,0.128052,0.0856934,0.0635681,0.0634155,0.0740967,0.0828247,0.0794067,0.0597229,0.0332947,0.00900269,-0.00106812,0.00665283,0.0259094,0.058136,0.0973206,0.136658,0.171692,0.189789,0.179382,0.133026,0.0631409,-0.0185852,-0.0943604,-0.150482,-0.184235,-0.193481,-0.181824,-0.153503,-0.114899,-0.0761108,-0.0487366,-0.0393982,-0.0522156,-0.0818787,-0.115906,-0.145233,-0.162689,-0.165833,-0.158783,-0.148315,-0.13739,-0.131683,-0.135773,-0.154633,-0.191406,-0.247864,-0.314148,-0.376831,-0.420471,-0.435577,-0.417175,-0.366974,-0.291931,-0.201355,-0.102814,-0.0114746,0.0597229,0.0967102,0.103149,0.0769653,0.0310059,-0.0246277,-0.0892639,-0.155029,-0.210327,-0.247253,-0.25592,-0.235504,-0.189331,-0.132416,-0.0732117,-0.0200806,0.024353,0.0629578,0.0957031,0.123505,0.148529,0.169586,0.191803,0.21698,0.245026,0.265625,0.273773,0.258057,0.215759,0.152557,0.0842285,0.0226746,-0.0188599,-0.0296021,-0.00799561,0.0434265,0.12262,0.216522,0.309937,0.385376,0.428802,0.431946,0.400208,0.344635,0.277435,0.209595,0.15033,0.104156,0.0732117,0.0612183,0.0646973,0.0742188,0.0802612,0.0719604,0.0520935,0.0256348,0.00765991,0.00750732,0.0231018,0.0503235,0.0841064,0.117706,0.145782,0.164825,0.16571,0.137329,0.0822144,0.00912476,-0.0673828,-0.128845,-0.167664,-0.181335,-0.176117,-0.155975,-0.127502,-0.0977783,-0.0743103,-0.0606689,-0.065918,-0.0861816,-0.115234,-0.144684,-0.166168,-0.175293,-0.171082,-0.15979,-0.148041,-0.139404,-0.140015,-0.152222,-0.178467,-0.223145,-0.281616,-0.342896,-0.39093,-0.417847,-0.417572,-0.388,-0.332214,-0.255829,-0.161621,-0.0655823,0.0160522,0.0670471,0.0855713,0.0776367,0.0498047,0.0120239,-0.040863,-0.105103,-0.166901,-0.214233,-0.233429,-0.224243,-0.1922,-0.1492,-0.101532,-0.0553589,-0.0128784,0.0272522,0.061615,0.0921326,0.11972,0.145782,0.177643,0.21637,0.256989,0.292542,0.312134,0.30719,0.270416,0.208588,0.131287,0.0549622,-0.00604248,-0.0389404,-0.0390015,-0.00308228,0.0661621,0.163879,0.269745,0.364441,0.429474,0.452484,0.435638,0.392273,0.329926,0.256378,0.18631,0.124512,0.0798645,0.0608826,0.0629578,0.0740967,0.0791931,0.0701294,0.0474548,0.0224304,0.00396729,-0.000549316,0.0104065,0.032074,0.062561,0.101959,0.139923,0.1698,0.180481,0.159058,0.104706,0.0310669,-0.0471802,-0.116852,-0.167572,-0.196899,-0.206177,-0.193756,-0.164368,-0.125031,-0.0885315,-0.0663147,-0.06073,-0.074646,-0.10202,-0.131531,-0.158783,-0.178467,-0.18576,-0.182343,-0.176361,-0.168915,-0.163544,-0.170197,-0.191406,-0.231598,-0.284821,-0.342407,-0.390259,-0.418732,-0.422607,-0.391937,-0.329803,-0.238251,-0.130341,-0.0263062,0.0526733,0.0910034,0.0953674,0.0707397,0.0297241,-0.0245056,-0.0949707,-0.168732,-0.230927,-0.25946,-0.248596,-0.205231,-0.143829,-0.0834351,-0.0306091,0.00967407,0.0404663,0.0644836,0.0792542,0.0871887,0.0920715,0.104095,0.13208,0.17691,0.234436,0.284698,0.314484,0.312897,0.276978,0.216583,0.145294,0.0748901,0.0184021,-0.0141602,-0.0115356,0.0323486,0.114349,0.218445,0.315491,0.385773,0.417175,0.412415,0.38623,0.344299,0.288177,0.220947,0.156525,0.109314,0.0903931,0.100128,0.119537,0.128723,0.118134,0.0910645,0.0561218,0.0259705,0.00616455,-0.00357056,0.000274658,0.0175171,0.0496521,0.0930176,0.134888,0.163025,0.163818,0.130463,0.0751648,0.00744629,-0.0593872,-0.115234,-0.155701,-0.179596,-0.183685,-0.168671,-0.142487,-0.117462,-0.100739,-0.098175,-0.110596,-0.128784,-0.149933,-0.169067,-0.182831,-0.187531,-0.183167,-0.172699,-0.158997,-0.148926,-0.15155,-0.171936,-0.212494,-0.271881,-0.336914,-0.393158,-0.433075,-0.447235,-0.426971,-0.37262,-0.285431,-0.174774,-0.0591125,0.0371094,0.098114,0.119141,0.102539,0.061554,0.00234985,-0.0715332,-0.150482,-0.221954,-0.264496,-0.269745,-0.240143,-0.18396,-0.120056,-0.0579224,-0.00604248,0.033905,0.0620117,0.0808716,0.0949097,0.108246,0.124634,0.151489,0.189453,0.235107,0.275574,0.300476,0.296051,0.262695,0.202148,0.129852,0.0609436,0.0088501,-0.0124207,-0.000396729,0.0484009,0.131958,0.236847,0.338989,0.416656,0.451477,0.438782,0.396179,0.337311,0.273224,0.210327,0.15094,0.101196,0.0721436,0.0708618,0.0882568,0.110748,0.117523,0.103149,0.0754395,0.0487976,0.0340881,0.037323,0.0507507,0.070282,0.0934143,0.119873,0.143097,0.155243,0.142212,0.0963135,0.0264282,-0.0469055,-0.109314,-0.148468,-0.164978,-0.163696,-0.148529,-0.124084,-0.093811,-0.0683289,-0.0597229,-0.0726929,-0.103638,-0.145111,-0.183502,-0.209656,-0.222351,-0.220947,-0.210205,-0.193634,-0.177917,-0.1651,-0.162201,-0.176788,-0.213898,-0.269196,-0.332214,-0.386108,-0.421021,-0.424896,-0.399261,-0.345642,-0.264709,-0.167114,-0.06604,0.0209351,0.0740356,0.0863647,0.0653687,0.0229492,-0.0324707,-0.0933533,-0.154755,-0.208466,-0.238647,-0.238586,-0.204773,-0.147186,-0.0832214,-0.0279236,0.0102539,0.0334778,0.0470581,0.0549011,0.0646973,0.0779114,0.0997314,0.132355,0.179321,0.236237,0.290283,0.325623,0.323151,0.284821,0.215088,0.134888,0.0614014,0.00759888,-0.0181274,-0.0100708,0.0369263,0.121613,0.233368,0.342285,0.423828,0.457184,0.445312,0.40451,0.350616,0.291138,0.226166,0.164642,0.11261,0.0840149,0.080658,0.0921326,0.0991821,0.0882568,0.0602112,0.027771,0.00531006,6.10352e-05,0.0137634,0.0405273,0.0769043,0.11972,0.163208,0.197235,0.209381,0.186432,0.126984,0.0420227,-0.0488586,-0.128662,-0.184021,-0.210815,-0.211212,-0.190216,-0.151947,-0.110992,-0.0750427,-0.0585938,-0.065094,-0.0923462,-0.129395,-0.16684,-0.196777,-0.213623,-0.216431,-0.206573,-0.191223,-0.176575,-0.170074,-0.177795,-0.205383,-0.252136,-0.313141,-0.377594,-0.431824,-0.459869,-0.450348,-0.397919,-0.309204,-0.19812,-0.0835571,0.0158386,0.0847778,0.116852,0.11087,0.0667725,-0.00241089,-0.0875244,-0.172485,-0.239655,-0.277191,-0.277252,-0.247589,-0.190216,-0.118042,-0.0426025,0.0225525,0.0667725,0.0885925,0.090332,0.085907,0.0844421,0.0917969,0.114441,0.149597,0.196045,0.24234,0.278595,0.292419,0.275238,0.229248,0.162415,0.0925598,0.0336914,0.00234985,0.00463867,0.0459595,0.123077,0.223236,0.3255,0.403748,0.438782,0.430817,0.392883,0.339203,0.282806,0.227386,0.173431,0.128784,0.104492,0.104431,0.121338,0.134369,0.126831,0.0936279,0.0482483,0.00924683,-0.0120239,-0.0116882,0.00524902,0.036377,0.0783997,0.128723,0.176178,0.205627,0.199524,0.152283,0.0777893,-0.00811768,-0.0855103,-0.144623,-0.18161,-0.195374,-0.186432,-0.156921,-0.116791,-0.0795898,-0.0619507,-0.0712891,-0.102478,-0.145294,-0.186523,-0.214508,-0.227905,-0.22522,-0.211548,-0.19101,-0.169525,-0.155914,-0.154755,-0.176849,-0.220795,-0.285645,-0.358246,-0.424957,-0.467529,-0.472229,-0.43222,-0.349945,-0.237793,-0.117462,-0.00750732,0.072876,0.117371,0.12088,0.0895996,0.0281067,-0.0522766,-0.139252,-0.215973,-0.265564,-0.281067,-0.258179,-0.20282,-0.13028,-0.0555115,0.00424194,0.0447083,0.0675964,0.0785828,0.0836792,0.0872498,0.0979919,0.12088,0.158264,0.209534,0.263153,0.304626,0.316498,0.292267,0.234772,0.159058,0.0809937,0.0181885,-0.0185852,-0.016449,0.0278625,0.111877,0.223572,0.335175,0.418121,0.45517,0.444092,0.399048,0.338928,0.275635,0.213348,0.158997,0.118134,0.101288,0.109528,0.132812,0.15094,0.144836,0.111664,0.06073,0.0126038,-0.0191956,-0.0281982,-0.0163879,0.0136108,0.0583191,0.112946,0.16684,0.201935,0.203217,0.1633,0.0896606,0.000793457,-0.0840149,-0.151062,-0.191681,-0.20578,-0.190552,-0.156525,-0.112152,-0.0730896,-0.0531006,-0.0588684,-0.0909424,-0.137787,-0.188049,-0.227722,-0.250275,-0.254425,-0.241821,-0.217316,-0.190063,-0.167236,-0.159058,-0.173218,-0.213226,-0.272949,-0.341064,-0.405853,-0.447327,-0.450531,-0.411957,-0.329132,-0.220551,-0.103363,-0.00415039,0.0637512,0.0941467,0.0877991,0.0524292,-0.00576782,-0.0791321,-0.153839,-0.216858,-0.251892,-0.251892,-0.216705,-0.154846,-0.0842896,-0.0195312,0.02771,0.0549622,0.0701294,0.0757141,0.0798035,0.0852966,0.0974426,0.12384,0.163879,0.215363,0.264099,0.295959,0.299591,0.269592,0.217438,0.152222,0.0894775,0.040802,0.0155029,0.0221558,0.068512,0.152954,0.257385,0.354431,0.416107,0.428802,0.402832,0.356903,0.307373,0.257599,0.206848,0.154755,0.112946,0.0949707,0.103485,0.125916,0.137848,0.124023,0.0863037,0.0428162,0.0124817,0.00402832,0.0107422,0.0264282,0.0497437,0.0819397,0.121674,0.158264,0.173218,0.152679,0.0985107,0.0273743,-0.0468445,-0.109253,-0.154572,-0.184235,-0.193542,-0.180145,-0.149811,-0.110992,-0.0789185,-0.0688477,-0.0811462,-0.112274,-0.148468,-0.181,-0.203705,-0.216919,-0.224152,-0.22522,-0.223358,-0.219055,-0.217529,-0.226044,-0.247864,-0.286926,-0.334564,-0.38147,-0.415497,-0.420349,-0.391815,-0.327911,-0.234619,-0.127441,-0.0250244,0.0517578,0.0913391,0.0910645,0.0549622,-0.00134277,-0.0716858,-0.145111,-0.211548,-0.26001,-0.27652,-0.255096,-0.195557,-0.115967,-0.0340881,0.0307922,0.0729675,0.0961609,0.10611,0.110748,0.113281,0.118927,0.131958,0.159729,0.199463,0.243225,0.279602,0.292206,0.270935,0.22113,0.156647,0.0916748,0.041626,0.0184021,0.0238953,0.0667114,0.144562,0.246643,0.348785,0.424957,0.453278,0.431,0.377106,0.310791,0.251282,0.200806,0.15799,0.124908,0.106659,0.108582,0.127991,0.146118,0.142273,0.108185,0.0526733,-0.00146484,-0.0331421,-0.0358276,-0.0141602,0.0226746,0.069397,0.118713,0.163818,0.190735,0.186707,0.145569,0.0745544,-0.00827026,-0.0886536,-0.149475,-0.187317,-0.199921,-0.192078,-0.168243,-0.135986,-0.108398,-0.0949707,-0.103638,-0.130463,-0.166656,-0.199677,-0.217773,-0.221802,-0.213745,-0.200256,-0.187927,-0.181549,-0.182495,-0.19812,-0.232147,-0.283478,-0.344757,-0.407043,-0.453705,-0.469727,-0.445557,-0.379059,-0.276703,-0.155975,-0.037384,0.0557861,0.108856,0.120819,0.093689,0.0391846,-0.0351562,-0.119812,-0.200867,-0.258118,-0.280884,-0.263763,-0.211151,-0.139862,-0.0644226,0,0.0483093,0.0767212,0.0922852,0.100464,0.107391,0.122681,0.147308,0.188385,0.239655,0.289062,0.323822,0.33075,0.303284,0.245178,0.170135,0.0908203,0.0249634,-0.0110168,-0.0109253,0.036499,0.128052,0.247711,0.365906,0.447784,0.475311,0.446228,0.386993,0.319183,0.258575,0.204285,0.15451,0.118042,0.105103,0.121002,0.154907,0.17981,0.171265,0.125427,0.0567932,-0.00772095,-0.0501404,-0.0629578,-0.0513306,-0.0177307,0.0343018,0.0966492,0.159271,0.197723,0.198517,0.15509,0.0802002,-0.0065918,-0.0843506,-0.143341,-0.178802,-0.190338,-0.178589,-0.150208,-0.114014,-0.0867004,-0.0830994,-0.109314,-0.157928,-0.212555,-0.256989,-0.279114,-0.276703,-0.255157,-0.222076,-0.188385,-0.161469,-0.149384,-0.157867,-0.191345,-0.251129,-0.326508,-0.403564,-0.46524,-0.492676,-0.475311,-0.409851,-0.302155,-0.171936,-0.0452881,0.0524292,0.103699,0.107727,0.0742188,0.0202637,-0.048645,-0.124512,-0.19873,-0.253479,-0.271545,-0.244904,-0.180267,-0.10141,-0.028656,0.0237732,0.0534973,0.0684509,0.0719604,0.0751648,0.0804749,0.0944824,0.122498,0.171082,0.233765,0.299805,0.348511,0.36322,0.337189,0.277313,0.197784,0.116028,0.0455627,0.00308228,-0.00161743,0.0418091,0.13382,0.254303,0.375641,0.458649,0.484619,0.452606,0.385986,0.313629,0.248596,0.192688,0.14267,0.108063,0.0975952,0.121002,0.164825,0.198059,0.198242,0.155701,0.0883789,0.019989,-0.0284424,-0.0526123,-0.0514832,-0.028595,0.0132751,0.0688477,0.124756,0.163208,0.168518,0.135834,0.0690613,-0.0115967,-0.0870361,-0.145447,-0.177521,-0.183685,-0.166168,-0.132629,-0.0960999,-0.0699463,-0.0690613,-0.0991211,-0.153839,-0.216858,-0.271271,-0.304108,-0.312012,-0.297577,-0.266968,-0.229919,-0.195496,-0.173553,-0.171082,-0.193756,-0.242218,-0.310059,-0.383209,-0.442017,-0.465912,-0.444366,-0.377777,-0.275696,-0.1604,-0.0518799,0.0333557,0.0807495,0.0898132,0.057251,-0.00671387,-0.0897217,-0.17395,-0.23645,-0.266296,-0.259399,-0.220398,-0.158508,-0.0856934,-0.013031,0.0457764,0.0810852,0.092804,0.086792,0.0774536,0.0779724,0.0968323,0.134155,0.186371,0.245697,0.300873,0.338654,0.348999,0.324493,0.267181,0.189728,0.105316,0.0387878,0.00610352,0.0210876,0.0856934,0.187256,0.304016,0.403412,0.46463,0.474579,0.442749,0.384979,0.315247,0.245422,0.182007,0.133301,0.110474,0.119049,0.149719,0.182892,0.193756,0.172943,0.124084,0.0640869,0.0114136,-0.0263672,-0.0445557,-0.0387878,-0.00772095,0.0431519,0.104492,0.153412,0.174835,0.158844,0.108002,0.036499,-0.040802,-0.110321,-0.165314,-0.195557,-0.198578,-0.174561,-0.132141,-0.0917358,-0.0700073,-0.077179,-0.113159,-0.167725,-0.225494,-0.273621,-0.301666,-0.30838,-0.293762,-0.267181,-0.236237,-0.209808,-0.197113,-0.202606,-0.233551,-0.283691,-0.344971,-0.403412,-0.44455,-0.455566,-0.426239,-0.354218,-0.245575,-0.119812,-0.00424194,0.0732117,0.0996704,0.0771179,0.0209961,-0.0490723,-0.125244,-0.200409,-0.259338,-0.29187,-0.281464,-0.228668,-0.14624,-0.0555115,0.0214233,0.0728149,0.094696,0.0977783,0.0914001,0.0882568,0.0900574,0.103821,0.13443,0.18692,0.253693,0.318848,0.359131,0.358063,0.317169,0.247253,0.165894,0.0908813,0.0351562,0.0118103,0.0301208,0.098175,0.208069,0.3367,0.445984,0.500671,0.489929,0.42981,0.353699,0.286377,0.229126,0.177368,0.132019,0.108917,0.121399,0.165314,0.209869,0.223022,0.192627,0.127441,0.056366,-0.00189209,-0.0381775,-0.0536804,-0.0440979,-0.0104065,0.045166,0.110077,0.162964,0.184235,0.164307,0.107239,0.0310059,-0.048584,-0.119659,-0.1716,-0.200409,-0.202545,-0.176514,-0.133301,-0.0940247,-0.0750427,-0.090332,-0.135162,-0.196167,-0.254089,-0.295715,-0.315247,-0.309998,-0.287384,-0.255707,-0.225708,-0.203613,-0.196167,-0.21228,-0.252686,-0.313019,-0.381012,-0.439056,-0.470001,-0.461212,-0.407776,-0.311127,-0.187653,-0.0592651,0.0425415,0.098175,0.101959,0.0589294,-0.0117493,-0.0973206,-0.185425,-0.260742,-0.306641,-0.31012,-0.265625,-0.185974,-0.0916748,-0.00610352,0.0597229,0.0959778,0.104431,0.0944214,0.0775146,0.0691223,0.0784607,0.108582,0.159058,0.2229,0.291351,0.343903,0.363831,0.342468,0.285492,0.206177,0.122162,0.0534363,0.0146179,0.024353,0.0855713,0.18866,0.3078,0.410339,0.469788,0.478241,0.441681,0.379608,0.307861,0.237396,0.173553,0.129852,0.115906,0.138397,0.185181,0.228394,0.243622,0.222351,0.170135,0.10672,0.0436096,-0.00900269,-0.0446167,-0.0532227,-0.0307922,0.0181885,0.0769653,0.128723,0.157104,0.15686,0.125824,0.0720825,0.00515747,-0.0646362,-0.122742,-0.158936,-0.169067,-0.153748,-0.12442,-0.0995178,-0.0912781,-0.106842,-0.145569,-0.196991,-0.249451,-0.289124,-0.310669,-0.310791,-0.29361,-0.264771,-0.233276,-0.206726,-0.195496,-0.204437,-0.236725,-0.287323,-0.349335,-0.41214,-0.459198,-0.471741,-0.441742,-0.365906,-0.25766,-0.134979,-0.0234375,0.0561218,0.0944214,0.0892639,0.0430298,-0.0306091,-0.121735,-0.212402,-0.281006,-0.316254,-0.306122,-0.257935,-0.179535,-0.0881348,-0.00189209,0.0643005,0.101135,0.113678,0.108063,0.098999,0.0926819,0.100342,0.127777,0.175629,0.23819,0.301331,0.34314,0.351868,0.322296,0.25885,0.177704,0.0985107,0.0387268,0.0138855,0.0354919,0.108063,0.218719,0.34549,0.44873,0.500885,0.493011,0.440002,0.366699,0.291138,0.220001,0.155975,0.110474,0.0943604,0.116119,0.165771,0.211395,0.231598,0.210602,0.159851,0.0986633,0.044281,0.00430298,-0.0196533,-0.0238953,-0.00509644,0.0348206,0.0883789,0.132874,0.154358,0.141022,0.0986633,0.0400085,-0.0250854,-0.0832214,-0.129669,-0.154419,-0.15744,-0.13739,-0.107178,-0.0848389,-0.0835571,-0.108795,-0.155701,-0.210876,-0.265167,-0.303833,-0.321198,-0.315765,-0.292816,-0.260803,-0.231415,-0.209534,-0.203156,-0.217377,-0.253815,-0.306458,-0.366516,-0.420471,-0.45462,-0.452423,-0.406433,-0.319397,-0.204163,-0.0876465,0.00604248,0.0610657,0.0740356,0.0522156,-0.000274658,-0.0758362,-0.163086,-0.241882,-0.292816,-0.30188,-0.270325,-0.206635,-0.130524,-0.050415,0.0182495,0.0675964,0.0909424,0.0949097,0.0891418,0.0861206,0.0909424,0.111755,0.150269,0.203888,0.264221,0.312958,0.333344,0.320465,0.275757,0.209869,0.137238,0.0750427,0.0384521,0.0441589,0.0956421,0.186707,0.301208,0.404572,0.468994,0.478729,0.441132,0.378601,0.310944,0.245026,0.181946,0.129333,0.105225,0.117523,0.161072,0.206909,0.229736,0.217041,0.174103,0.119598,0.0671082,0.0245667,-0.00396729,-0.0137634,-0.00088501,0.0290527,0.0733032,0.114502,0.139862,0.137512,0.106323,0.0567017,-0.00100708,-0.0553589,-0.101013,-0.131012,-0.139404,-0.12793,-0.102356,-0.0798645,-0.0744324,-0.0950928,-0.13678,-0.190613,-0.242676,-0.282806,-0.305359,-0.306702,-0.292603,-0.264771,-0.237854,-0.214233,-0.203033,-0.210327,-0.237976,-0.286591,-0.344482,-0.400818,-0.441284,-0.451202,-0.424774,-0.360596,-0.264221,-0.150269,-0.0440369,0.0324097,0.0710754,0.0683899,0.0324707,-0.0284424,-0.108521,-0.19281,-0.263885,-0.301147,-0.295837,-0.251556,-0.180939,-0.104218,-0.0336914,0.0234985,0.0610657,0.081604,0.0881348,0.0887146,0.090332,0.100861,0.128784,0.176849,0.236298,0.29422,0.330933,0.334167,0.301483,0.240875,0.163971,0.0888672,0.0326843,0.0112,0.0370483,0.11087,0.220001,0.339661,0.440125,0.495178,0.494354,0.447571,0.374847,0.29483,0.218719,0.154297,0.109589,0.0972595,0.117859,0.162689,0.203827,0.220001,0.201752,0.15564,0.100006,0.0484009,0.0102539,-0.0110779,-0.0114136,0.00946045,0.0473938,0.0910034,0.12851,0.146362,0.13739,0.102814,0.0493164,-0.0114136,-0.0680542,-0.109406,-0.131073,-0.131012,-0.114563,-0.0917969,-0.0787354,-0.0855713,-0.116241,-0.16275,-0.215637,-0.263092,-0.295959,-0.307922,-0.298248,-0.270203,-0.234436,-0.202881,-0.182831,-0.182892,-0.202362,-0.244171,-0.300201,-0.364227,-0.422272,-0.459656,-0.461884,-0.423553,-0.343414,-0.233368,-0.115356,-0.0151672,0.048584,0.073822,0.0617371,0.0222778,-0.041626,-0.123413,-0.205719,-0.268127,-0.291626,-0.272552,-0.220001,-0.151886,-0.08255,-0.0216675,0.0250244,0.0541077,0.0670471,0.0699463,0.070343,0.0761719,0.0973816,0.138245,0.196381,0.262543,0.318665,0.347321,0.338928,0.294769,0.224579,0.14267,0.0677185,0.0167236,0.00442505,0.0414734,0.12323,0.235291,0.349731,0.438538,0.47934,0.467102,0.420807,0.356171,0.286041,0.218384,0.15918,0.121887,0.117371,0.144104,0.182068,0.207916,0.204102,0.171417,0.121948,0.0692749,0.0234375,-0.00900269,-0.0203247,-0.00979614,0.0215454,0.0643005,0.107391,0.138336,0.147369,0.130463,0.0918884,0.0376587,-0.0205383,-0.0717468,-0.105652,-0.119537,-0.112762,-0.0936279,-0.0778503,-0.0732117,-0.0933533,-0.132538,-0.185028,-0.238403,-0.282562,-0.308716,-0.312744,-0.296906,-0.265839,-0.228577,-0.195648,-0.174622,-0.1716,-0.193024,-0.2388,-0.299652,-0.362274,-0.412872,-0.440887,-0.435638,-0.39389,-0.316772,-0.214752,-0.108521,-0.0197449,0.0348206,0.0528259,0.0346985,-0.00958252,-0.0722961,-0.144562,-0.211395,-0.256042,-0.265106,-0.239868,-0.186707,-0.121826,-0.057312,-0.00140381,0.0387268,0.057312,0.061676,0.0584412,0.0599976,0.069397,0.0915527,0.133087,0.190002,0.255493,0.308533,0.333679,0.323151,0.279266,0.213165,0.137512,0.0724792,0.0344849,0.0340271,0.074646,0.15033,0.250946,0.352081,0.429718,0.459198,0.436584,0.378174,0.307587,0.244751,0.194214,0.15744,0.135651,0.137665,0.161072,0.195648,0.218597,0.21463,0.176636,0.116791,0.0552368,0.00671387,-0.0205994,-0.0256958,-0.012085,0.0175171,0.056366,0.0996704,0.133087,0.144684,0.127777,0.0846252,0.0283813,-0.024292,-0.0640869,-0.0876465,-0.0964966,-0.0926208,-0.0822144,-0.0738831,-0.0774536,-0.0997314,-0.142822,-0.196106,-0.249207,-0.289948,-0.31073,-0.307251,-0.284485,-0.248779,-0.212555,-0.183899,-0.168793,-0.1716,-0.196503,-0.243073,-0.304443,-0.365906,-0.415771,-0.439209,-0.427185,-0.379517,-0.298798,-0.19873,-0.0956421,-0.012146,0.0389404,0.0543518,0.0332336,-0.0144958,-0.0805359,-0.154846,-0.217194,-0.254913,-0.259338,-0.235107,-0.186188,-0.123169,-0.058136,0.00088501,0.040741,0.0602112,0.0627441,0.0601196,0.0610657,0.0725403,0.0973816,0.140472,0.196503,0.257111,0.305695,0.325775,0.31189,0.264832,0.19577,0.121216,0.0594482,0.0248413,0.0302124,0.0789795,0.164093,0.270416,0.368469,0.434357,0.450592,0.421478,0.365173,0.299255,0.234497,0.176117,0.135162,0.119812,0.136047,0.172211,0.207397,0.22113,0.206726,0.166504,0.113495,0.0594482,0.0120239,-0.0185852,-0.0299988,-0.0148315,0.0202026,0.0644226,0.107513,0.133759,0.137054,0.115509,0.0744934,0.0245056,-0.0227661,-0.0603333,-0.0834961,-0.089325,-0.0809326,-0.0657654,-0.0588684,-0.0681763,-0.0985107,-0.146027,-0.201141,-0.252075,-0.289734,-0.304108,-0.297058,-0.272095,-0.235718,-0.200592,-0.171692,-0.157196,-0.162292,-0.191864,-0.242828,-0.305237,-0.36496,-0.414978,-0.441345,-0.433075,-0.387848,-0.307373,-0.20639,-0.106232,-0.0226746,0.029541,0.0510864,0.0395203,-0.00112915,-0.0636902,-0.138245,-0.202026,-0.242493,-0.250885,-0.230743,-0.191803,-0.137787,-0.0762939,-0.0158997,0.028595,0.0516663,0.0576477,0.0569763,0.0579834,0.065033,0.0865173,0.126251,0.183411,0.244415,0.29361,0.317841,0.311798,0.275513,0.213409,0.140869,0.0767822,0.0363159,0.0330811,0.0690002,0.141418,0.238983,0.336029,0.407318,0.433228,0.413635,0.364502,0.304169,0.24173,0.185638,0.147186,0.133423,0.147797,0.179474,0.210388,0.22522,0.21283,0.175232,0.117981,0.0564575,0.00408936,-0.0318909,-0.0426941,-0.029541,0.00415039,0.0518799,0.101532,0.138245,0.150055,0.132538,0.0929565,0.0426941,-0.00631714,-0.0467834,-0.0724792,-0.0821533,-0.0771179,-0.06604,-0.0586548,-0.0643616,-0.0888062,-0.130951,-0.182404,-0.234894,-0.27536,-0.297729,-0.294556,-0.272003,-0.235291,-0.196503,-0.163208,-0.143829,-0.14444,-0.167236,-0.216705,-0.282745,-0.352814,-0.40918,-0.443695,-0.44812,-0.415039,-0.346039,-0.244293,-0.132751,-0.0344849,0.0284424,0.0509338,0.040741,0.00457764,-0.0434875,-0.104767,-0.174561,-0.232941,-0.264832,-0.253082,-0.205048,-0.14035,-0.077179,-0.0272522,0.0104065,0.037262,0.0518188,0.0545044,0.0523376,0.0536804,0.0671082,0.0995178,0.152161,0.216705,0.277039,0.311737,0.309784,0.27417,0.220001,0.156647,0.0988464,0.0541687,0.0380554,0.0592041,0.12149,0.213287,0.314972,0.394562,0.428864,0.411682,0.355438,0.290863,0.232208,0.189667,0.156586,0.136169,0.138916,0.165558,0.206177,0.238525,0.240265,0.204437,0.140533,0.0688477,0.00958252,-0.0296021,-0.0426025,-0.0343018,-0.00610352,0.0354919,0.0865173,0.130188,0.154846,0.149323,0.112213,0.057251,0.00280762,-0.038269,-0.0638123,-0.0742188,-0.0755005,-0.0675049,-0.0605469,-0.0600586,-0.0743103,-0.108459,-0.156311,-0.207733,-0.251801,-0.278656,-0.281799,-0.265381,-0.231354,-0.192871,-0.158997,-0.137238,-0.134369,-0.150604,-0.190002,-0.247864,-0.315094,-0.379517,-0.428589,-0.453156,-0.443359,-0.396851,-0.314758,-0.210144,-0.105377,-0.0195923,0.0292664,0.0461731,0.0361633,0.00558472,-0.0409546,-0.105316,-0.170929,-0.22522,-0.249786,-0.238312,-0.198395,-0.141266,-0.0841675,-0.0336914,0.00683594,0.0328064,0.0518799,0.0582581,0.061676,0.0643616,0.0801392,0.114288,0.166168,0.225708,0.272614,0.296967,0.291626,0.259857,0.21228,0.155975,0.101349,0.061615,0.048645,0.0755615,0.140076,0.22818,0.315155,0.374084,0.389587,0.364288,0.319733,0.271332,0.227783,0.190796,0.161072,0.150879,0.162811,0.196381,0.231476,0.245087,0.225555,0.176117,0.109589,0.0437622,-0.00857544,-0.0435486,-0.0542908,-0.0406799,-0.00390625,0.0472412,0.100677,0.141876,0.158325,0.144958,0.108978,0.0596619,0.0113525,-0.0306091,-0.0597839,-0.0753784,-0.0784607,-0.0712891,-0.0661621,-0.0698547,-0.0888062,-0.124359,-0.167786,-0.211151,-0.244751,-0.261261,-0.258179,-0.237915,-0.20813,-0.176117,-0.149994,-0.134766,-0.133636,-0.152496,-0.191742,-0.251465,-0.318329,-0.378723,-0.417572,-0.430817,-0.418915,-0.379395,-0.314636,-0.223419,-0.12323,-0.0344849,0.0183105,0.0289917,0.0101318,-0.0220947,-0.0564575,-0.093811,-0.140259,-0.189453,-0.224365,-0.22348,-0.187195,-0.128601,-0.0706177,-0.0273743,0.0017395,0.0212708,0.0377197,0.0479736,0.0558472,0.0646973,0.0761108,0.101471,0.138794,0.18988,0.241272,0.275085,0.280945,0.257324,0.216858,0.172211,0.131073,0.103363,0.0932312,0.109131,0.150818,0.214569,0.286316,0.341888,0.362335,0.339325,0.286987,0.230469,0.192413,0.173615,0.167725,0.168121,0.177124,0.197113,0.226562,0.247101,0.238983,0.195221,0.127594,0.0549622,-0.0038147,-0.0387878,-0.0466309,-0.0311279,0.00228882,0.0455017,0.0870361,0.121216,0.139191,0.135162,0.106567,0.061615,0.012207,-0.0280457,-0.0541077,-0.0653076,-0.0679932,-0.0634766,-0.0600586,-0.0634155,-0.0776367,-0.106506,-0.146454,-0.187256,-0.221283,-0.239746,-0.243286,-0.228119,-0.204163,-0.177368,-0.156982,-0.14798,-0.152496,-0.168396,-0.198395,-0.243286,-0.29657,-0.346497,-0.381683,-0.395691,-0.391266,-0.364227,-0.318665,-0.251465,-0.171143,-0.0920105,-0.0310669,-0.00012207,0.00564575,-0.00985718,-0.0327454,-0.0642395,-0.101868,-0.147034,-0.191345,-0.212555,-0.20517,-0.167389,-0.115112,-0.0630798,-0.0171814,0.0145569,0.0415344,0.0627441,0.078125,0.0863647,0.086792,0.0890503,0.102875,0.135376,0.181152,0.223297,0.249939,0.251556,0.23584,0.208588,0.179199,0.15094,0.129181,0.119049,0.129059,0.165497,0.220795,0.279602,0.318115,0.324036,0.299133,0.261017,0.229523,0.20697,0.193146,0.182404,0.178253,0.184418,0.201752,0.218048,0.216705,0.189667,0.140076,0.0792542,0.0225525,-0.0150452,-0.0319519,-0.0233459,0.0017395,0.0371704,0.0765686,0.111267,0.135498,0.138794,0.120148,0.0817566,0.0334167,-0.0133667,-0.0491333,-0.0704041,-0.0786438,-0.0778503,-0.0724792,-0.0686035,-0.0707397,-0.0838928,-0.109314,-0.142487,-0.176514,-0.203278,-0.217194,-0.215515,-0.201874,-0.182159,-0.164886,-0.155426,-0.154419,-0.164429,-0.184021,-0.215759,-0.257996,-0.304626,-0.346375,-0.373688,-0.380951,-0.371063,-0.342682,-0.300812,-0.242889,-0.175354,-0.106659,-0.04422,-0.00772095,0.0065918,-0.000396729,-0.0232849,-0.0531006,-0.0917969,-0.136169,-0.177704,-0.202606,-0.198517,-0.170471,-0.122345,-0.0677185,-0.0163879,0.0267029,0.0600586,0.082489,0.0910034,0.0913391,0.0847778,0.0820923,0.0887146,0.111938,0.150482,0.194214,0.234222,0.256378,0.256927,0.240875,0.212158,0.179596,0.15094,0.13208,0.129333,0.147644,0.185577,0.232819,0.271606,0.291199,0.287109,0.265839,0.241547,0.221008,0.204712,0.193481,0.185638,0.186188,0.192017,0.196838,0.190948,0.166321,0.124847,0.0757751,0.0314026,0.00222778,-0.00991821,-0.00430298,0.016449,0.0464478,0.081543,0.108978,0.125153,0.122223,0.100403,0.0646362,0.0210876,-0.020752,-0.0544434,-0.0762329,-0.0855713,-0.0841675,-0.0748901,-0.0661011,-0.0635681,-0.0710754,-0.0906677,-0.120148,-0.149933,-0.177307,-0.194427,-0.202209,-0.200348,-0.191864,-0.181152,-0.172607,-0.170807,-0.177795,-0.190613,-0.213562,-0.243286,-0.278046,-0.310883,-0.33551,-0.349396,-0.353973,-0.349121,-0.326569,-0.284576,-0.220795,-0.144348,-0.0704651,-0.0162964,0.0101929,0.0187378,0.0101929,-0.0112,-0.0512085,-0.106781,-0.166504,-0.210876,-0.223022,-0.202423,-0.152893,-0.09021,-0.0252991,0.0314636,0.0762939,0.10498,0.111877,0.102478,0.0810852,0.0580444,0.0513306,0.0673828,0.109528,0.167114,0.224976,0.267853,0.287048,0.28363,0.259674,0.218719,0.168243,0.118195,0.0864563,0.0849609,0.117188,0.171936,0.23114,0.272614,0.29129,0.291016,0.280548,0.265717,0.244843,0.21933,0.194427,0.177917,0.172089,0.171082,0.168121,0.153168,0.126251,0.0905457,0.0542908,0.0238953,0.00704956,0.00408936,0.0159607,0.0367737,0.0624084,0.0864563,0.104645,0.111542,0.103546,0.0784607,0.0401917,-0.00268555,-0.0422058,-0.0720825,-0.0891418,-0.09375,-0.0872498,-0.0752258,-0.0642395,-0.060791,-0.0671082,-0.0841675,-0.109863,-0.139587,-0.168457,-0.191559,-0.205109,-0.207855,-0.202759,-0.196503,-0.189941,-0.186523,-0.187653,-0.190948,-0.200531,-0.222137,-0.250122,-0.281006,-0.307373,-0.323425,-0.334351,-0.335785,-0.323486,-0.29129,-0.233154,-0.158936,-0.0833435,-0.0265808,0.003479,0.0157776,0.00979614,-0.00604248,-0.0400696,-0.0930176,-0.151154,-0.196899,-0.207642,-0.184967,-0.134644,-0.0698547,-0.00759888,0.0469666,0.0862427,0.108124,0.108185,0.0948181,0.0716858,0.0484619,0.0385132,0.0511475,0.0959167,0.160522,0.229248,0.279449,0.297974,0.289856,0.258453,0.214844,0.163208,0.112946,0.0800781,0.077301,0.111755,0.173889,0.243561,0.297394,0.319855,0.312958,0.288513,0.254364,0.217529,0.179932,0.14444,0.119873,0.113159,0.124084,0.141693,0.155579,0.155701,0.140747,0.112335,0.080658,0.052887,0.0341492,0.0298767,0.0346985,0.0440979,0.0567017,0.0681152,0.0762329,0.0733032,0.053833,0.019989,-0.0241089,-0.0626221,-0.0895996,-0.100861,-0.0969849,-0.0820007,-0.0617371,-0.0432129,-0.0324707,-0.0319519,-0.0464478,-0.0755005,-0.114685,-0.156097,-0.194366,-0.217529,-0.226837,-0.223694,-0.216034,-0.206055,-0.196655,-0.187378,-0.180389,-0.182281,-0.198578,-0.226837,-0.259796,-0.292938,-0.314484,-0.327789,-0.334442,-0.327057,-0.302216,-0.252014,-0.181946,-0.103027,-0.0350952,0.00857544,0.0279236,0.0282593,0.0100708,-0.0215454,-0.0723572,-0.128845,-0.178711,-0.202148,-0.191132,-0.152405,-0.0917969,-0.0246277,0.0367126,0.0843506,0.108643,0.111938,0.0975037,0.0756226,0.0499268,0.0337524,0.0377808,0.0729675,0.133148,0.202484,0.258789,0.289459,0.291809,0.272095,0.233368,0.183075,0.131195,0.0899963,0.0743103,0.0957642,0.149384,0.21994,0.281128,0.312683,0.309448,0.282013,0.244843,0.205841,0.168457,0.133362,0.109314,0.104645,0.123688,0.157532,0.185089,0.193359,0.178711,0.142883,0.102081,0.0640869,0.0338135,0.0167236,0.0100098,0.013092,0.0274353,0.0432129,0.0592651,0.0620117,0.0476379,0.0179138,-0.0191345,-0.0513306,-0.0729675,-0.0827637,-0.081665,-0.0705261,-0.0524292,-0.0333557,-0.0214233,-0.0198669,-0.0357056,-0.0653076,-0.10556,-0.150543,-0.19101,-0.220795,-0.233093,-0.230804,-0.217102,-0.197845,-0.180267,-0.165771,-0.159058,-0.16153,-0.176025,-0.200531,-0.230347,-0.261353,-0.286926,-0.304016,-0.31369,-0.319336,-0.315918,-0.294098,-0.247864,-0.179199,-0.103699,-0.0374451,0.00189209,0.0222168,0.0281067,0.0212708,0.000671387,-0.04422,-0.105896,-0.165771,-0.19812,-0.191559,-0.153748,-0.0916748,-0.024353,0.0380554,0.0879211,0.121887,0.133545,0.123749,0.098999,0.0634766,0.0306091,0.0188599,0.0400696,0.0926208,0.159393,0.220734,0.259674,0.276764,0.27356,0.252228,0.215027,0.168518,0.12262,0.0991211,0.107239,0.147797,0.207062,0.258789,0.283691,0.275696,0.246429,0.21106,0.178925,0.15033,0.125763,0.108337,0.110535,0.134155,0.169464,0.198792,0.209198,0.194305,0.156372,0.107666,0.0597229,0.0214233,-0.000335693,-0.00558472,-0.0012207,0.0100708,0.0232849,0.0375977,0.0465088,0.040741,0.0232849,-0.00643921,-0.0360413,-0.0586548,-0.0714111,-0.0726318,-0.06604,-0.0526123,-0.0396118,-0.0324707,-0.033905,-0.0463867,-0.0690613,-0.101196,-0.138,-0.174438,-0.200256,-0.210205,-0.204956,-0.190796,-0.175354,-0.163544,-0.157257,-0.155579,-0.160126,-0.173706,-0.195221,-0.225647,-0.253571,-0.27652,-0.289185,-0.291138,-0.288116,-0.281555,-0.269257,-0.243896,-0.202423,-0.148315,-0.0889282,-0.0357056,0.00134277,0.0245667,0.0324707,0.0216675,-0.0038147,-0.0484009,-0.0998535,-0.146515,-0.172363,-0.167999,-0.134705,-0.0756226,-0.0088501,0.0526123,0.100861,0.12677,0.130188,0.113098,0.0838928,0.0462952,0.0181274,0.0150452,0.0409546,0.0940857,0.1604,0.22348,0.264832,0.283752,0.277527,0.251068,0.210266,0.163147,0.118652,0.0930786,0.0935669,0.120331,0.165314,0.208466,0.238251,0.245239,0.235168,0.213287,0.190216,0.16745,0.149994,0.138,0.136322,0.14328,0.156525,0.165833,0.16214,0.143097,0.111206,0.0743103,0.0428772,0.0201416,0.00912476,0.00738525,0.0111389,0.0192566,0.0293884,0.0357056,0.0383911,0.0302734,0.0134277,-0.0118103,-0.0367737,-0.0552368,-0.0679321,-0.0708618,-0.0699463,-0.0646362,-0.0609436,-0.0557861,-0.0526733,-0.0536804,-0.0620117,-0.0799866,-0.106323,-0.135315,-0.157257,-0.170135,-0.171875,-0.168793,-0.165649,-0.166382,-0.168793,-0.171875,-0.175446,-0.180389,-0.18988,-0.203827,-0.217529,-0.226715,-0.227448,-0.22348,-0.218201,-0.220215,-0.227509,-0.23175,-0.225037,-0.20108,-0.160675,-0.109528,-0.0585938,-0.0134888,0.0265808,0.0517578,0.0567017,0.0393982,-0.00390625,-0.0606079,-0.115509,-0.149536,-0.156372,-0.132355,-0.0822754,-0.0220032,0.040741,0.0926819,0.126648,0.137177,0.123566,0.0924072,0.0522766,0.0224304,0.0158386,0.0393372,0.0884705,0.147369,0.201752,0.238647,0.254242,0.246765,0.218781,0.177979,0.132202,0.0923462,0.0713501,0.0779114,0.110077,0.158722,0.207184,0.238129,0.246429,0.233551,0.208069,0.173218,0.137451,0.104309,0.0823364,0.0763855,0.0894775,0.113892,0.138855,0.153168,0.152161,0.131531,0.101074,0.0644226,0.0317993,0.00469971,-0.0109253,-0.0159607,-0.0101318,0.00549316,0.0240173,0.0367126,0.0381775,0.0259094,-0.000457764,-0.032959,-0.0647583,-0.0874634,-0.0986633,-0.0954285,-0.0823364,-0.0629578,-0.0412903,-0.0231018,-0.012146,-0.0151672,-0.0344849,-0.0668335,-0.105713,-0.140411,-0.164307,-0.17395,-0.172821,-0.165039,-0.15451,-0.143829,-0.135437,-0.129333,-0.130524,-0.137054,-0.147186,-0.157043,-0.164032,-0.169586,-0.172028,-0.176117,-0.184357,-0.19577,-0.208527,-0.21228,-0.205383,-0.181,-0.141998,-0.0912781,-0.038269,0.00946045,0.04953,0.0715332,0.0706177,0.045105,-0.00323486,-0.0599365,-0.108185,-0.133698,-0.134552,-0.108521,-0.0635681,-0.00683594,0.0491333,0.0965881,0.124237,0.12793,0.109985,0.0768433,0.0396729,0.0105896,0.00146484,0.0128174,0.0455627,0.0861816,0.128387,0.159729,0.179596,0.184021,0.174896,0.155853,0.133545,0.113953,0.10498,0.107574,0.121735,0.138733,0.151337,0.153748,0.141815,0.12262,0.100525,0.0848389,0.0779724,0.0814209,0.0952454,0.11377,0.135498,0.15274,0.159607,0.149323,0.122406,0.0848999,0.0438843,0.0107422,-0.0101929,-0.0169067,-0.0103455,0.0038147,0.0213318,0.0358276,0.0450439,0.041687,0.0262451,0.00088501,-0.0287781,-0.0549011,-0.0711365,-0.0744934,-0.0676575,-0.0556335,-0.0402832,-0.0279236,-0.0193176,-0.016571,-0.0191956,-0.0285339,-0.0437622,-0.0602722,-0.0757141,-0.0845642,-0.0861206,-0.0849609,-0.0849609,-0.0877991,-0.0929565,-0.0976562,-0.102142,-0.104218,-0.100464,-0.0952454,-0.098053,-0.107574,-0.111877,-0.101349,-0.0892029,-0.0894775,-0.105652,-0.126831,-0.135223,-0.132812,-0.12738,-0.126434,-0.12323,-0.110931,-0.0858459,-0.053833,-0.0265808,-0.00683594,0.00195312,0.00772095,0.00732422,0.0032959,-0.00750732,-0.024231,-0.0397339,-0.0498047,-0.0478516,-0.0404663,-0.0268555,-0.0101929,0.00906372,0.0291138,0.0437012,0.04953,0.0464478,0.0380554,0.0279846,0.0206604,0.0193176,0.0205383,0.0270386,0.0403442,0.057312,0.0758972,0.0883179,0.0920715,0.0871887,0.0769043,0.0663147,0.0558472,0.0491333,0.0436096,0.0452881,0.0514832,0.0644836,0.0798035,0.0919495,0.101807,0.104767,0.103699,0.0964355,0.0869141,0.0766296,0.0691223,0.0622253,0.0540161,0.0456238,0.0405273,0.0379333,0.0385132,0.040741,0.0424194,0.0429382,0.0425415,0.0402832,0.036438,0.0302734,0.0216675,0.0100708,-0.00543213,-0.0200806,-0.0317993,-0.037384,-0.0366516,-0.0296631,-0.0228882,-0.0148926,-0.00744629,0.00308228,0.0124207,0.0182495,0.0151672,0.0083313,-0.0015564,-0.00726318,-0.0108032,-0.0132141,-0.0197449,-0.0272522,-0.0324097,-0.0302734,-0.0250244,-0.025177,-0.0330811,-0.0393982,-0.0361023,-0.0246277,-0.0155029,-0.0161133,-0.0235596,-0.0270996,-0.0220032,-0.0114746,-0.0118713,-0.0259094,-0.041687,-0.0501404,-0.0519409,-0.0557861,-0.0657043,-0.0789185,-0.0879211,-0.0838318,-0.0734863,-0.0636292,-0.0597839,-0.0543518,-0.0428772,-0.028595,-0.0174561,-0.0131531,-0.0142822,-0.0162354,-0.0125427,-0.00738525,-0.0062561,-0.00872803,-0.0132751,-0.013031,-0.00991821,-0.00576782,-0.0071106,-0.0124207,-0.0179749,-0.0218811,-0.0234375,-0.0269775,-0.0322266,-0.0377808,-0.0400696,-0.0376587,-0.032074,-0.0250854,-0.0197449,-0.0166321,-0.011261,-0.00558472,0.000457764,0.00531006,0.00900269,0.012085,0.0154419,0.0178528,0.0194092,0.0194702,0.01651,0.0126953,0.00717163,0.000610352,-0.00463867,-0.00726318,-0.00482178,0.00256348,0.0148926,0.0298767,0.0444336,0.0567017,0.0640869,0.0655823,0.0596008,0.0481873,0.032959,0.015625,-0.00106812,-0.0135498,-0.0192566,-0.0177307,-0.00906372,0.00323486,0.0151062,0.0269775,0.0375977,0.0469666,0.052002,0.0542297,0.0518799,0.0441589,0.0369263,0.0307922,0.0266418,0.0241089,0.0215454,0.0200806,0.0244446,0.0334167,0.0420837,0.0518188,0.0599365,0.0667114,0.0673218,0.0654907,0.0632935,0.0583801,0.0528259,0.0421448,0.0298767,0.0214233,0.0183105,0.0200806,0.0178528,0.0175171,0.0182495,0.0191956,0.0228882,0.0205383,0.0160522,0.00726318,-0.0017395,-0.0111389,-0.0220032,-0.0309448,-0.0383301,-0.0422058,-0.0414734,-0.0357056,-0.0271912,-0.0162964,-0.00643921,0.000732422,0.00442505,0.00256348,-0.00491333,-0.0180664,-0.032959,-0.0469055,-0.0585938,-0.0655823,-0.068512,-0.0671692,-0.0619507,-0.053833,-0.0458984,-0.0396729,-0.0380554,-0.0418701,-0.0479736,-0.053833,-0.0592041,-0.0612793,-0.061615,-0.0599365,-0.0566406,-0.0532837,-0.0503235,-0.0523376,-0.0576477,-0.0656433,-0.0726929,-0.078064,-0.0801392,-0.0767822,-0.0691223,-0.0570374,-0.0447083,-0.0322266,-0.021759,-0.0151062,-0.0129395,-0.0161743,-0.0223389,-0.028595,-0.0325623,-0.033905,-0.0331421,-0.0314026,-0.0285339,-0.0247803,-0.0189209,-0.0132141,-0.00692749,-0.000396729,0.0062561,0.0122681,0.0191956,0.0253601,0.032135,0.0360413,0.036499,0.0343018,0.0307922,0.0272522,0.0262451,0.0256958,0.0273132,0.0314026,0.0387268,0.0477295,0.057251,0.0654297,0.0716248,0.0752869,0.0773926,0.078186,0.0762939,0.0730286,0.0690002,0.0663147,0.0646362,0.0644226,0.0649109,0.0658264,0.0679321,0.0696716,0.0706177,0.0700073,0.0677185,0.0638123,0.0602112,0.0558472,0.052887,0.0490723,0.0462341,0.041626,0.0377808,0.0350342,0.0330811,0.0326843,0.0322876,0.0312805,0.032135,0.0336304,0.0353699,0.0353088,0.0335693,0.0260315,0.0179138,0.00698853,-0.00396729,-0.0135498,-0.021759,-0.0274353,-0.0293884,-0.0269775,-0.021759,-0.0154419,-0.0108032,-0.00857544,-0.0111389,-0.0167236,-0.025238,-0.0346985,-0.0440369,-0.0522766,-0.0583191,-0.061554,-0.0628967,-0.0622864,-0.0621338,-0.060791,-0.0618896,-0.0631409,-0.0649109,-0.0662537,-0.0657043,-0.0635681,-0.0602112,-0.0576477,-0.0545654,-0.0533447,-0.052002,-0.0547791,-0.0569763,-0.0628052,-0.0682678,-0.072876,-0.0755005,-0.0758972,-0.0752869,-0.0718689,-0.0675964,-0.061554,-0.0533447,-0.0454407,-0.0392761,-0.0344238,-0.0325623,-0.0316772,-0.0322266,-0.033905,-0.0359192,-0.0371704,-0.0381775,-0.0360413,-0.0323486,-0.0265198,-0.0190735,-0.0105286,-0.0012207,0.0071106,0.0168457,0.0232849,0.0294495,0.0317383,0.032074,0.0306091,0.028656,0.0275269,0.0259705,0.0270386,0.0281067,0.0323486,0.0369263,0.040863,0.045166,0.0466309,0.0479736,0.0467834,0.045166,0.0440979,0.0426941,0.04422,0.0463867,0.0493164,0.0508118,0.0532227,0.0514832,0.050415,0.0469055,0.0447693,0.041687,0.0392761,0.0388489,0.0391235,0.0404053,0.0422058,0.0426941,0.0422668,0.0395203,0.036438,0.0299988,0.0263672,0.0218201,0.019928,0.0192566,0.0220032,0.0263672,0.0320129,0.0370483,0.0391235,0.0385132,0.0355835,0.0317993,0.0266418,0.0198059,0.0137634,0.00683594,0.00161743,-0.0020752,-0.00482178,-0.00515747,-0.00375366,-0.000732422,0.00134277,0.00390625,0.00549316,0.00637817,0.0062561,0.00582886,0.00289917,-0.0017395,-0.00726318,-0.0132751,-0.0194092,-0.0236816,-0.0270386,-0.0292053,-0.029541,-0.0308838,-0.0312805,-0.0326233,-0.032135,-0.0336304,-0.0333557,-0.0344849,-0.0336304,-0.0344238,-0.0334167,-0.0323486,-0.0324097,-0.0311279,-0.0324097,-0.0340881,-0.0354309,-0.0374451,-0.0388489,-0.0381775,-0.0379333,-0.0356445,-0.0317993,-0.0260315,-0.019928,-0.0151672,-0.0128174,-0.0126038,-0.0151672,-0.0187988,-0.0232239,-0.02771,-0.0299377,-0.0318909,-0.0297852,-0.0265198,-0.020874,-0.0149536,-0.0103455,-0.0083313,-0.00839233,-0.0110779,-0.0141602,-0.0161133,-0.0178528,-0.0160522,-0.0124207,-0.00665283,-0.000549316,0.00396729,0.00692749,0.0062561,0.0032959,-0.00195312,-0.0085144,-0.0157776,-0.0187378,-0.0200806,-0.0181274,-0.0131531,-0.00765991,-0.0020752,0.00323486,0.00469971,0.00415039,-0.000732422,-0.0065918,-0.0128174,-0.016449,-0.0179749,-0.0153809,-0.0105286,-0.00509644,0.00134277,0.0062561,0.00912476,0.0115356,0.0109253,0.00939941,0.00717163,0.00564575,0.00549316,0.00631714,0.00759888,0.00979614,0.0114136,0.0126038,0.0115356,0.00891113,0.00765991,0.00616455,0.00717163,0.00939941,0.0132751,0.0177307,0.0232849,0.028656,0.0324707,0.0340271,0.0343628,0.0322876,0.0293884,0.0260315,0.0228882,0.0212097,0.0224304,0.024292,0.0279236,0.0311279,0.0339661,0.0340271,0.0339661,0.0328064,0.0316162,0.0313416,0.0316162,0.0324097,0.0345764,0.0360413,0.0393982,0.040802,0.0418701,0.0409546,0.0386658,0.0352478,0.0324707,0.0302124,0.0299988,0.0299988,0.0320129,0.0318909,0.0313416,0.0289917,0.0250244,0.0198059,0.0148926,0.00912476,0.00402832,0.000793457,-0.00134277,-0.000946045,-0.000335693,0.00140381,0.00268555,0.0020752,0.00228882,-0.000213623,-0.00128174,-0.00375366,-0.00671387,-0.00924683,-0.013092,-0.0157166,-0.0183105,-0.0223389,-0.0266418,-0.032074,-0.037262,-0.0409546,-0.0434875,-0.0448914,-0.0446167,-0.0433655,-0.041626,-0.0395203,-0.0374451,-0.037323,-0.039856,-0.0445557,-0.0517578,-0.0576477,-0.0632324,-0.066925,-0.0675964,-0.06604,-0.0636902,-0.0587158,-0.0546265,-0.050415,-0.0479736,-0.0480652,-0.0512085,-0.0542908,-0.0583801,-0.06073,-0.0620117,-0.0602112,-0.0585938,-0.053894,-0.0498047,-0.04422,-0.0414124,-0.0384521,-0.0383301,-0.0383911,-0.0378418,-0.0375977,-0.0346375,-0.0310669,-0.0256348,-0.0202637,-0.0138855,-0.00891113,-0.00576782,-0.00491333,-0.00765991,-0.00985718,-0.013092,-0.013092,-0.0115967,-0.00811768,-0.00314331,0.00448608,0.0115967,0.0184021,0.0249634,0.0282593,0.0303345,0.0302124,0.0310059,0.0324707,0.0343018,0.0387268,0.0430298,0.0479126,0.0524292,0.0551147,0.0575867,0.0593262,0.0608826,0.0630798,0.0647583,0.0662537,0.0671082,0.0675964,0.0668335,0.0655823,0.0630798,0.0603943,0.0567932,0.0549011,0.0535583,0.0555115,0.0580444,0.061554,0.0652466,0.0674438,0.0690002,0.0690002,0.0673218,0.0648193,0.0613403,0.0588684,0.0557861,0.0536804,0.0519409,0.0506592,0.048645,0.0448914,0.0402832,0.0341492,0.0278625,0.0214233,0.0161743,0.0125427,0.0118103,0.0126038,0.015625,0.0173035,0.0182495,0.0142212,0.00772095,-0.00234985,-0.0140991,-0.024292,-0.0337524,-0.0392761,-0.040863,-0.0403442,-0.0353699,-0.0301208,-0.0247803,-0.020874,-0.020874,-0.0263672,-0.0348206,-0.0461731,-0.0564575,-0.0654297,-0.0709534,-0.0730896,-0.0740967,-0.0714722,-0.0690613,-0.0658264,-0.0637512,-0.0632935,-0.0649109,-0.0666504,-0.0681152,-0.0680542,-0.065918,-0.0614624,-0.0574646,-0.0526123,-0.0505371,-0.0499268,-0.0518188,-0.0565186,-0.0635681,-0.0691833,-0.0745544,-0.074646,-0.0700073,-0.0623474,-0.0516663,-0.0406189,-0.0338135,-0.0281067,-0.0269775,-0.027771,-0.0312805,-0.0367126,-0.0418091,-0.0447693,-0.0432129,-0.037323,-0.0276489,-0.0163879,-0.00549316,0.003479,0.00939941,0.0128174,0.0145569,0.013031,0.0119324,0.0100098,0.00878906,0.00845337,0.00900269,0.0108032,0.012146,0.0152893,0.0181274,0.0218811,0.0241089,0.028595,0.0313416,0.0346375,0.0369263,0.0399475,0.0411377,0.0437012,0.0445557,0.0449524,0.044281,0.045105,0.0448303,0.0463867,0.0473022,0.0476379,0.046051,0.0445557,0.0421448,0.0406189,0.0393372,0.0395203,0.0406189,0.041626,0.0431519,0.045105,0.0465698,0.0477905,0.0464478,0.0448303,0.0424194,0.0399475,0.0367737,0.0331421,0.0287781,0.0256958,0.0249023,0.0256348,0.0275269,0.0292053,0.0301208,0.0310669,0.0315552,0.0306702,0.0292053,0.0264282,0.0235596,0.0196533,0.015625,0.0106812,0.00592041,0.00302124,0.00012207,-0.000457764,-0.000396729,0,0.0020752,0.00302124,0.0038147,0.00296021,0.00241089,0,-0.00363159,-0.00933838,-0.0155029,-0.0219421,-0.0256348,-0.0288696,-0.028717,-0.0281982,-0.0268555,-0.0246277,-0.0224304,-0.0200806,-0.0181885,-0.0172424,-0.0194092,-0.021759,-0.0270386,-0.0322876,-0.0379333,-0.0432129,-0.0457153,-0.0462952,-0.0422668,-0.0369873,-0.0305481,-0.0249634,-0.0202026,-0.0181885,-0.0173035,-0.0200806,-0.0245667,-0.0289307,-0.0343018,-0.0367737,-0.0379944,-0.0358276,-0.0326233,-0.027771,-0.0245056,-0.0216675,-0.0214233,-0.0212708,-0.0231018,-0.0233459,-0.0229492,-0.0219421,-0.019928,-0.0172424,-0.0146179,-0.0111389,-0.0104675,-0.00985718,-0.0124817,-0.0132751,-0.0151672,-0.0162964,-0.0158386,-0.0154419,-0.0127563,-0.0101318,-0.0071106,-0.00582886,-0.00726318,-0.0106812,-0.0152283,-0.0175781,-0.0194092,-0.0173035,-0.013092,-0.00878906,-0.00213623,0.00390625,0.0085144,0.00872803,0.00726318,0.00189209,-0.00335693,-0.00778198,-0.0100708,-0.00946045,-0.00643921,-0.00222778,0.00390625,0.00985718,0.0134888,0.0167847,0.0153809,0.0136108,0.0110779,0.00805664,0.00726318,0.0067749,0.00726318,0.00799561,0.00866699,0.00952148,0.0110168,0.0120239,0.0138245,0.0134277,0.0149536,0.0154419,0.0173035,0.0187378,0.0205383,0.0213318,0.0213318,0.020813,0.0191956,0.0178528,0.0177917,0.0167847,0.0177917,0.0177307,0.0184021,0.0189819,0.0194092,0.0196533,0.0204773,0.0204773,0.0216675,0.0223389,0.0229492,0.0240173,0.0249023,0.0261841,0.0258484,0.0260925,0.0267029,0.0260315,0.0259705,0.0249634,0.0241089,0.0229492,0.0220032,0.0209961,0.0211487,0.0202637,0.020874,0.0204773,0.0205994,0.0198669,0.0202026,0.0194702,0.0184021,0.0166321,0.0142212,0.012146,0.00939941,0.00866699,0.00738525,0.0065918,0.00598145,0.00531006,0.0038147,0.00280762,0.00201416,0.00128174,0.00012207,-0.00100708,-0.00201416,-0.00424194,-0.00564575,-0.00866699,-0.0122681,-0.0157166,-0.0200806,-0.0236816,-0.0265198,-0.0281067,-0.0283813,-0.0279236,-0.0260315,-0.0238953,-0.0220032,-0.0212097,-0.0215454,-0.0232849,-0.0255737,-0.0283813,-0.0317993,-0.0339661,-0.0357666,-0.0355835,-0.0353088,-0.0341492,-0.0327454,-0.0312805,-0.028656,-0.0263062,-0.0245056,-0.0231628,-0.0230103,-0.0224304,-0.0226135,-0.0225525,-0.0234985,-0.0265198,-0.0293274,-0.0342407,-0.0361633,-0.0385132,-0.0375977,-0.0348206,-0.0293884,-0.0240173,-0.0182495,-0.0145569,-0.0119324,-0.0115967,-0.0137634,-0.0172424,-0.0228882,-0.0264282,-0.028656,-0.0281067,-0.0261841,-0.0216064,-0.0177917,-0.0126038,-0.00906372,-0.00582886,-0.00598145,-0.00637817,-0.00817871,-0.00900269,-0.00845337,-0.00570679,-0.00234985,0.00134277,0.00436401,0.00692749,0.00750732,0.00698853,0.00424194,0.00161743,-0.00100708,-0.00296021,-0.00180054,0.00134277,0.00631714,0.0123596,0.0171814,0.020752,0.0221558,0.0224304,0.0216064,0.0198669,0.0197449,0.0191345,0.0195923,0.0212708,0.0226746,0.0256958,0.0267639,0.0291138,0.0288696,0.0296021,0.0283813,0.0289307,0.0296631,0.0303955,0.0314636,0.0331421,0.0331421,0.0323486,0.0311279,0.0293274,0.0271912,0.024353,0.0228882,0.020874,0.0200806,0.0206604,0.0209351,0.0222168,0.0225525,0.0226746,0.0222168,0.0226135,0.0226746,0.0233459,0.0247803,0.0257568,0.0268555,0.0274353,0.0270996,0.0250854,0.0209961,0.0157166,0.00979614,0.00476074,0.00201416,0.000732422,0.00222778,0.00576782,0.00973511,0.0134888,0.016449,0.0167236,0.0145569,0.0104675,0.00598145,-0.000549316,-0.00369263,-0.00671387,-0.00604248,-0.00491333,-0.00296021,-0.00234985,-0.00195312,-0.00491333,-0.00778198,-0.0126038,-0.0169678,-0.0213318,-0.0226746,-0.0228271,-0.019928,-0.0166321,-0.013031,-0.0115356,-0.011261,-0.0146179,-0.0187988,-0.024231,-0.0297241,-0.0337524,-0.0356445,-0.0343628,-0.0306091,-0.0246277,-0.0191345,-0.0147705,-0.0126038,-0.0142212,-0.0171814,-0.0222168,-0.0282593,-0.03302,-0.0366516,-0.037384,-0.0361633,-0.032959,-0.029541,-0.0267029,-0.0245056,-0.0230103,-0.0239563,-0.0246277,-0.0265198,-0.0275269,-0.0275879,-0.0267639,-0.0255127,-0.0244446,-0.0233459,-0.0229492,-0.0231628,-0.0233459,-0.0237732,-0.0236206,-0.0224304,-0.0210876,-0.0182495,-0.015564,-0.0134277,-0.0122681,-0.0129395,-0.0152893,-0.0189209,-0.0232849,-0.0267029,-0.0284424,-0.0289307,-0.0259094,-0.0206604,-0.0140381,-0.00799561,-0.00274658,0.000946045,0.00189209,0.00189209,0.000396729,-0.00256348,-0.00363159,-0.00448608,-0.00390625,-0.00247192,0.000274658,0.00213623,0.00415039,0.00463867,0.00482178,0.00363159,0.00247192,0.00302124,0.00448608,0.00793457,0.0126038,0.0179138,0.0226746,0.0265198,0.028595,0.0310669,0.0302734,0.0302124,0.0288696,0.0292664,0.0301208,0.0317993,0.03302,0.0344849,0.0335693,0.0327454,0.0300598,0.0279236,0.0252991,0.024292,0.0236816,0.0268555,0.0316772,0.0360413,0.0411987,0.0450439,0.0455017,0.045166,0.0428162,0.0397949,0.0360413,0.0334778,0.0314636,0.0310059,0.0322266,0.0332947,0.0348206,0.0352478,0.0336304,0.0320129,0.0281982,0.0259705,0.0218811,0.0201416,0.0182495,0.0191956,0.0197449,0.0212708,0.0218201,0.0203247,0.0178528,0.0136108,0.00958252,0.00631714,0.00289917,0.00140381,0.000274658,0.000457764,0.00088501,0.0015564,0.00274658,0.0017395,-0.00012207,-0.0032959,-0.00750732,-0.0110168,-0.0137024,-0.0154419,-0.0180664,-0.0187378,-0.0212708,-0.0222778,-0.0241699,-0.0270386,-0.0296021,-0.0336304,-0.0369263,-0.0386658,-0.0391846,-0.038269,-0.0362549,-0.0343628,-0.0313416,-0.0297852,-0.0274353,-0.0270386,-0.0281067,-0.0306091,-0.0346985,-0.0383301,-0.0422668,-0.0445557,-0.0465088,-0.0479126,-0.0475769,-0.0476379,-0.045105,-0.0444336,-0.0419312,-0.0404053,-0.0384521,-0.0358276,-0.0343628,-0.0316772,-0.0298767,-0.0299988,-0.0294495,-0.0317993,-0.0328064,-0.0350342,-0.0361023,-0.0358276,-0.0336304,-0.0315552,-0.0276489,-0.0237732,-0.0200806,-0.017395,-0.015564,-0.016571,-0.0179138,-0.0200806,-0.0215454,-0.0226746,-0.020752,-0.0193176,-0.0144958,-0.00958252,-0.00424194,-0.000274658,0.00296021,0.00531006,0.00469971,0.00515747,0.00424194,0.00457764,0.00549316,0.0071106,0.00979614,0.0114746,0.0140991,0.0148926,0.0163879,0.0173035,0.0179138,0.0189209,0.019928,0.0215454,0.0232849,0.0257568,0.0289307,0.0296631,0.0311279,0.0309448,0.0299988,0.0289307,0.0279236,0.0274353,0.027771,0.029541,0.0311279,0.0346375,0.0371704,0.0406799,0.0429382,0.044281,0.0431519,0.0415344,0.0389404,0.0352478,0.032959,0.0296631,0.0280457,0.0278625,0.0271912,0.0285339,0.0289917,0.0296631,0.0292053,0.0283813,0.0283203,0.02771,0.02771,0.0285339,0.0283203,0.0289917,0.0292664,0.0289307,0.028656,0.0270386,0.0250854,0.0215454,0.0182495,0.0140991,0.0114136,0.00939941,0.00772095,0.0062561,0.0050354,0.00357056,0.00341797,0.00180054,0.0015564,0.00128174,-0.000213623,0.000213623,-0.000335693,-0.000457764,-0.00128174,-0.0017395,-0.00396729,-0.00738525,-0.0102539,-0.0131531,-0.0161743,-0.0176392,-0.0188599,-0.0196533,-0.0195312,-0.0184021,-0.0178528,-0.0171204,-0.0185852,-0.0197449,-0.0234375,-0.0259705,-0.028717,-0.0297852,-0.0297241,-0.0283203,-0.027771,-0.0257568,-0.0246887,-0.0241699,-0.0249634,-0.0264282,-0.0290527,-0.0312195,-0.0331421,-0.0344849,-0.0340271,-0.0336304,-0.0310059,-0.0285339,-0.025238,-0.0221558,-0.0206604,-0.0201416,-0.0214844,-0.0231018,-0.0250854,-0.0275269,-0.0283203,-0.0290527,-0.0291138,-0.0283203,-0.0259705,-0.024231,-0.0211487,-0.0204773,-0.0179749,-0.0192566,-0.0185852,-0.0202637,-0.0204163,-0.020813,-0.0214233,-0.0214844,-0.0216675,-0.020752,-0.0197449,-0.0180664,-0.0162354,-0.0149536,-0.0128784,-0.0112,-0.0101929,-0.00872803,-0.00839233,-0.00738525,-0.00744629,-0.00671387,-0.00604248,-0.00524902,-0.00369263,-0.00390625,-0.00274658,-0.00241089,-0.00189209,-0.000274658,0.000396729,0.00134277,0.00280762,0.00415039,0.00610352,0.00650024,0.00744629,0.00784302,0.00805664,0.00793457,0.00827026,0.00750732,0.0085144,0.00900269,0.0118103,0.0129395,0.0162354,0.0185242,0.020813,0.0218811,0.0229492,0.0224915,0.0222778,0.0211487,0.0201416,0.0189209,0.0184631,0.0187378,0.0188599,0.020874,0.0224915,0.0248413,0.0272522,0.0293884,0.0300598,0.0320129,0.0317383,0.032074,0.0303345,0.0289307,0.027771,0.0261841,0.0250854,0.0254211,0.0260315,0.027771,0.0294495,0.0310669,0.0318909,0.0322876,0.0312195,0.0292664,0.0264282,0.0249634,0.0218811,0.021759,0.020752,0.0216064,0.0230103,0.024292,0.0256958,0.0257568,0.0256348,0.0227661,0.0204163,0.0163879,0.0148315,0.0118713,0.0105896,0.0105896,0.0102539,0.0102539,0.0108643,0.00933838,0.00817871,0.00570679,0.00241089,-0.000793457,-0.00408936,-0.0067749,-0.00933838,-0.0101318,-0.0116882,-0.0116882,-0.0126038,-0.011261,-0.0120239,-0.0124207,-0.0136108,-0.0149536,-0.0169067,-0.0181885,-0.0190735,-0.0212708,-0.0230103,-0.0246887,-0.0273132,-0.0296631,-0.0311279,-0.0332336,-0.0341492,-0.0346375,-0.0334778,-0.0327454,-0.0311279,-0.0296021,-0.0292053,-0.0293274,-0.0296631,-0.0316772,-0.0344238,-0.0367126,-0.0396729,-0.0404053,-0.0410156,-0.0403442,-0.0376587,-0.0356445,-0.0325623,-0.0306091,-0.0306091,-0.0312805,-0.032959,-0.0349731,-0.0369873,-0.0379333,-0.038269,-0.0379333,-0.0360413,-0.0338135,-0.0306702,-0.0289917,-0.0271912,-0.0263062,-0.0253601,-0.0259705,-0.0246887,-0.024292,-0.0220947,-0.0200806,-0.0177307,-0.0162354,-0.0146179,-0.0139465,-0.0128174,-0.0124207,-0.0114136,-0.0105286,-0.00918579,-0.00643921,-0.00369263,-0.000457764,0.00241089,0.00424194,0.0050354,0.00531006,0.00436401,0.00463867,0.00396729,0.00369263,0.00543213,0.00772095,0.012146,0.0158997,0.0213318,0.024353,0.0269775,0.0275269,0.0274353,0.0269165,0.0255737,0.0244446,0.0234985,0.0231018,0.0231628,0.0255127,0.0278625,0.0309448,0.0334778,0.0350342,0.0358276,0.0360413,0.0350342,0.0344238,0.0324097,0.0312805,0.0301208,0.0299988,0.0307922,0.0322876,0.0340881,0.0351562,0.0367126,0.0370483,0.037323,0.0361023,0.0349121,0.0334778,0.0316772,0.0297852,0.028656,0.0281067,0.0271912,0.0267029,0.0267639,0.0267029,0.0274353,0.0283813,0.0284424,0.0288696,0.0281067,0.0259094,0.0246887,0.0209351,0.0181885,0.0139465,0.011261,0.00793457,0.00665283,0.00576782,0.00537109,0.00558472,0.00537109,0.00430298,0.00369263,0.00167847,-0.000274658,-0.00314331,-0.00558472,-0.00827026,-0.0101318,-0.0115356,-0.0119324,-0.0132751,-0.0131531,-0.0144958,-0.0149536,-0.0162354,-0.0183105,-0.0205383,-0.0218201,-0.0246887,-0.0259094,-0.0273743,-0.028717,-0.0292053,-0.0293274,-0.0290527,-0.0284424,-0.0278625,-0.028717,-0.0292664,-0.0294495,-0.0310059,-0.0317993,-0.0332947,-0.0344849,-0.0350342,-0.0357056,-0.0351562,-0.0346985,-0.0336914,-0.0324097,-0.0318909,-0.0306091,-0.0293274,-0.0281982,-0.0264282,-0.0256958,-0.0253601,-0.0253601,-0.0250854,-0.0256958,-0.0268555,-0.027771,-0.0282593,-0.0288696,-0.0284424,-0.0273132,-0.0249634,-0.0224304,-0.0191956,-0.0167236,-0.0141602,-0.0131531,-0.0138855,-0.0137634,-0.01651,-0.0177917,-0.0192566,-0.0198059,-0.0184631,-0.016571,-0.012146,-0.00973511,-0.00643921,-0.00482178,-0.00296021,-0.00335693,-0.00280762,-0.00448608,-0.00482178,-0.00570679,-0.00549316,-0.00323486,-0.00088501,0.00222778,0.00424194,0.00692749,0.00778198,0.00872803,0.00872803,0.00839233,0.00845337,0.00799561,0.0088501,0.00857544,0.0103455,0.0112,0.0122681,0.0132751,0.0137634,0.0140381,0.0140381,0.0140381,0.0141602,0.0138855,0.0138855,0.0142822,0.0151672,0.0162354,0.0170593,0.0179749,0.0188599,0.0193176,0.0193176,0.0195312,0.0200806,0.0198669,0.0201416,0.0205383,0.0204163,0.021759,0.0222168,0.0224915,0.0228882,0.0228271,0.0222168,0.0222168,0.0218811,0.0214844,0.0212097,0.020752,0.0201416,0.020752,0.0206604,0.0212708,0.0221558,0.0224304,0.0227661,0.0224915,0.0222168,0.0218811,0.0212097,0.0214844,0.0212708,0.0215454,0.0222778,0.0230103,0.0223389,0.0228882,0.0211487,0.0198669,0.0175171,0.0154419,0.0124207,0.0105896,0.00866699,0.00759888,0.00738525,0.00704956,0.00845337,0.0085144,0.00900269,0.00878906,0.00878906,0.00637817,0.00482178,0.00189209,-0.00106812,-0.00369263,-0.00665283,-0.00912476,-0.0104675,-0.011261,-0.0111389,-0.0110168,-0.0114136,-0.0102539,-0.0114746,-0.0113525,-0.013031,-0.0134888,-0.0159607,-0.0172424,-0.0180664,-0.0198059,-0.0206604,-0.0220032,-0.0228882,-0.0249634,-0.0257568,-0.0272522,-0.0274353,-0.0288696,-0.0274353,-0.0283203,-0.0269775,-0.0267029,-0.0265198,-0.0260925,-0.0265198,-0.0268555,-0.0279236,-0.0282593,-0.0299988,-0.0305481,-0.0312805,-0.0316162,-0.0324707,-0.0324097,-0.0327454,-0.0318909,-0.0314636,-0.0302734,-0.0297241,-0.0292053,-0.0291138,-0.028656,-0.028717,-0.028656,-0.0284424,-0.027771,-0.0272522,-0.0264282,-0.0256348,-0.0245056,-0.0223389,-0.0212708,-0.0193176,-0.0181274,-0.0167847,-0.0171204,-0.0159607,-0.0172424,-0.017395,-0.016571,-0.0162354,-0.0142212,-0.0122681,-0.0102539,-0.00784302,-0.00610352,-0.00308228,-0.00201416,0.00012207,0.000610352,0.00140381,0.00180054,0.00234985,0.00424194,0.0050354,0.00778198,0.00933838,0.0114136,0.0128174,0.0141602,0.0146179,0.0160522,0.0162964,0.0171204,0.0187378,0.0196533,0.0214233,0.0233459,0.0247803,0.0260315,0.0263062,0.0274353,0.0271912,0.0267639,0.0270996,0.0262451,0.0257568,0.0267029,0.0267029,0.0283813,0.0292053,0.0306702,0.0305481,0.0312195,0.0308838,0.0316162,0.032074,0.0324707,0.0326233,0.0328979,0.0327454,0.0332947,0.0324707,0.0323486,0.0306091,0.0285339,0.0265198,0.0249023,0.024353,0.0244446,0.0245056,0.0250854,0.0261841,0.0267639,0.0268555,0.0259094,0.0246887,0.0222778,0.0194702,0.0167236,0.0133667,0.0118713,0.00985718,0.00827026,0.00726318,0.00631714,0.00509644,0.00448608,0.0038147,0.00222778,0.000457764,-0.00146484,-0.00335693,-0.00491333,-0.00671387,-0.00717163,-0.00839233,-0.00952148,-0.0107422,-0.0124207,-0.0133667,-0.0151062,-0.016449,-0.0171814,-0.0187988,-0.0190735,-0.0205994,-0.0210876,-0.0216675,-0.0222168,-0.0229492,-0.0235596,-0.0255737,-0.0267029,-0.0279846,-0.0285339,-0.0285339,-0.0279846,-0.0270996,-0.0267639,-0.0256958,-0.0256958,-0.0267639,-0.0270996,-0.0281982,-0.0292664,-0.0298767,-0.0296631,-0.0297852,-0.0275269,-0.0263062,-0.024353,-0.0224915,-0.020874,-0.0201416,-0.0196533,-0.0196533,-0.020874,-0.0214844,-0.0224304,-0.0221558,-0.0226746,-0.020874,-0.020813,-0.0190735,-0.0187378,-0.0174561,-0.0171204,-0.0157776,-0.0144348,-0.0133667,-0.0128174,-0.0112,-0.0101929,-0.00857544,-0.00744629,-0.00604248,-0.00549316,-0.00549316,-0.00576782,-0.00671387,-0.00704956,-0.00692749,-0.00738525,-0.00616455,-0.00537109,-0.00408936,-0.00195312,-0.00161743,-0.000213623,0.000610352,0.00201416,0.00213623,0.00390625,0.00335693,0.00363159,0.00369263,0.0038147,0.00408936,0.0050354,0.00509644,0.00604248,0.00671387,0.00650024,0.00765991,0.00784302,0.00857544,0.0083313,0.00793457,0.00692749,0.00692749,0.00616455,0.0071106,0.00759888,0.00933838,0.00991821,0.0122681,0.0124817,0.0136108,0.0140991,0.0133667,0.0129395,0.0126038,0.0115356,0.0118103,0.0115356,0.0128174,0.0128784,0.0138855,0.0144958,0.0151672,0.0158997,0.0152283,0.0154419,0.0151062,0.0151062,0.0153809,0.0162354,0.0172424,0.0182495,0.0194092,0.0191956,0.0189209,0.0185242,0.0174561,0.0162354,0.015564,0.0145569,0.0142822,0.0141602,0.0154419,0.0161743,0.0177917,0.0184631,0.0190735,0.0195923,0.0185852,0.017395,0.0157776,0.0134277,0.0118713,0.0101318,0.00866699,0.00793457,0.00726318,0.00750732,0.00759888,0.00778198,0.00759888,0.00778198,0.00704956,0.00616455,0.00509644,0.00457764,0.00369263,0.00357056,0.00369263,0.00357056,0.00363159,0.00289917,0.00106812,-0.000549316,-0.00296021,-0.00442505,-0.00698853,-0.00784302,-0.0100098,-0.0106812,-0.0108032,-0.0115967,-0.0111389,-0.0123596,-0.012085,-0.0129395,-0.0140381,-0.0145569,-0.0152283,-0.0159607,-0.0162964,-0.0170593,-0.0170593,-0.0173035,-0.0179749,-0.0176392,-0.0192566,-0.0195312,-0.0209961,-0.0212097,-0.0224304,-0.0224304,-0.0228882,-0.0238342,-0.0238342,-0.0249023,-0.0241089,-0.024292,-0.0236816,-0.0234375,-0.0228271,-0.0231018,-0.0231018,-0.0224915,-0.0229492,-0.0219421,-0.0224915,-0.0216064,-0.0216675,-0.0213318,-0.0204773,-0.0196533,-0.0191956,-0.0191956,-0.0187988,-0.0188599,-0.0189209,-0.0189819,-0.0195923,-0.0188599,-0.0188599,-0.0184021,-0.016449,-0.0149536,-0.0136108,-0.0122681,-0.0105896,-0.00973511,-0.00811768,-0.00732422,-0.0065918,-0.00531006,-0.00476074,-0.00424194,-0.00201416,-0.0020752,-0.000213623,0.000274658,0.000274658,-6.10352e-05,-0.000610352,-0.00112915,-0.0012207,-0.00112915,0.000213623,0.00112915,0.00314331,0.00549316,0.00726318,0.00906372,0.0114746,0.012085,0.013031,0.0129395,0.0133667,0.0128174,0.0134277,0.0132751,0.0139465,0.0152283,0.0161743,0.0171204,0.0184021,0.0186462,0.0194702,0.0197449,0.0195312,0.0192566,0.0189209,0.0180664,0.0179749,0.017395,0.0184021,0.0188599,0.019989,0.0202026,0.020752,0.0216675,0.020813,0.0213318,0.0201416,0.0197449,0.0191956,0.0191956,0.0194092,0.0195312,0.0203247,0.0194092,0.0204773,0.0192566,0.0189209,0.017395,0.0166321,0.0149536,0.0149536,0.0134277,0.0146179,0.0147095,0.0143738,0.0151062,0.0142212,0.0144958,0.0148926,0.0170593,0.0216064,0.0241699,0.0205383,0.0117493,0.000549316,-0.00732422,-0.0108032,-0.0102539,-0.00924683,-0.00698853,-0.00222778,0.0050354,0.0105286,0.0104675,0.00497437,-0.00256348,-0.0104065,-0.0134277,-0.0160522,-0.0161133,-0.0153809,-0.0119324,-0.00683594,-0.00369263,-0.0012207,-0.00314331,-0.00592041,-0.00918579,-0.0118713,-0.0144348,-0.0157166,-0.0167236,-0.0158386,-0.0147095,-0.0129395,-0.0118713,-0.0114746,-0.012146,-0.0122681,-0.0133667,-0.0147705,-0.0167236,-0.0173035,-0.0184021,-0.0179749,-0.0162964,-0.0153809,-0.0140381,-0.0133667,-0.0143738,-0.0168457,-0.0191956,-0.0218811,-0.0250244,-0.0267639,-0.0275269,-0.0260315,-0.0244446,-0.020874,-0.0181885,-0.0173035,-0.016449,-0.0173035,-0.0186462,-0.019928,-0.0215454,-0.0227661,-0.0241699,-0.0240173,-0.0226746,-0.019989,-0.0177307,-0.0158997,-0.0142822,-0.0126953,-0.0117493,-0.012207,-0.0132751,-0.0152893,-0.0149536,-0.0142212,-0.0114136,-0.0085144,-0.00564575,-0.00402832,-0.00369263,-0.00402832,-0.00476074,-0.00631714,-0.00784302,-0.0088501,-0.00939941,-0.00744629,-0.0050354,-0.00375366,-0.003479,-0.00268555,-0.00280762,-0.0020752,-0.00268555,-0.0032959,-0.00161743,0.000457764,0.00408936,0.0083313,0.0118713,0.0152283,0.0153809,0.0155029,0.0137024,0.0140381,0.0174561,0.0203247,0.0260925,0.032135,0.0334778,0.0344238,0.0334167,0.0310059,0.0265198,0.0155029,0.00704956,0.00341797,0.0136108,0.0297852,0.0366516,0.0309448,0.0246887,0.0306702,0.0381775,0.0340271,0.0143738,-0.00845337,-0.0139465,0.0118713,0.0393982,0.0440979,0.0289307,0.0143738,0.0139465,0.0236206,0.0205994,-0.00268555,-0.0257568,-0.0237732,0.00396729,0.0214844,0.0290527,0.0320129,0.0238953,0.0244446,0.0336914,0.0322266,0.025238,0.0180664,0.0071106,-0.00134277,-0.000213623,0.0126038,0.0239563,0.0144958,-0.00308228,-0.00582886,0.00408936,0.00973511,-0.00268555,-0.0237732,-0.0353699,-0.0261841,-0.0137634,-0.015625,-0.0255127,-0.0285339,-0.0162354,-0.00247192,-0.00616455,-0.0260925,-0.0420837,-0.0418701,-0.0285339,-0.0240173,-0.0353699,-0.0463867,-0.0431519,-0.0310669,-0.0274353,-0.037323,-0.048645,-0.0533447,-0.0491943,-0.0446167,-0.049469,-0.0484619,-0.040741,-0.0307312,-0.0234375,-0.0232849,-0.024231,-0.0198669,-0.0167236,-0.0184021,-0.0219421,-0.0279236,-0.0281982,-0.0261841,-0.0218201,-0.0213318,-0.0205994,-0.01651,-0.0107422,-0.00817871,-0.00906372,-0.0118713,-0.0162964,-0.0205994,-0.024353,-0.0259705,-0.0237732,-0.0172424,-0.013092,-0.0113525,-0.0125427,-0.0100708,-0.00469971,-0.00100708,-0.000610352,0.00296021,0.00772095,0.0132751,0.0172424,0.0214844,0.0278625,0.0333557,0.0381775,0.0394592,0.0368347,0.0315552,0.0310669,0.0336304,0.0336304,0.0330811,0.0328064,0.0359802,0.0411377,0.0444336,0.0443726,0.0428772,0.0394592,0.0368347,0.0342407,0.0332336,0.0333557,0.0357666,0.041626,0.0458374,0.0485229,0.0481262,0.0481873,0.0458374,0.0424805,0.038269,0.0334778,0.0307312,0.0306702,0.0306702,0.0317993,0.036499,0.0393372,0.0369263,0.0255737,0.0148926,0.0104675,0.0112,0.0101929,0.00491333,-0.00128174,-0.00296021,-0.00088501,0.000732422,0.00140381,0.000335693,-0.00296021,-0.00576782,-0.00582886,-0.00778198,-0.0142212,-0.0210876,-0.020752,-0.0169678,-0.0168457,-0.0201416,-0.0241089,-0.0258484,-0.0245056,-0.0231628,-0.0316772,-0.0447083,-0.0519409,-0.0472412,-0.0420227,-0.0432129,-0.0528259,-0.0606079,-0.061615,-0.052002,-0.0415344,-0.0401306,-0.0503235,-0.0589294,-0.0613403,-0.0593872,-0.0587769,-0.0632324,-0.0671082,-0.065979,-0.065033,-0.0692749,-0.0823364,-0.0953674,-0.10672,-0.112946,-0.11142,-0.102417,-0.0845032,-0.0601196,-0.0357056,-0.0131531,0.0065918,0.0147705,0.0137024,0.00946045,-0.00146484,-0.0147095,-0.0267029,-0.0316772,-0.0300598,-0.0174561,0.00247192,0.0232849,0.0347595,0.0400085,0.039856,0.0327454,0.0247803,0.0160522,0.00558472,-0.00213623,0.000213623,0.0125427,0.0276489,0.0390625,0.045105,0.0493164,0.0523376,0.057251,0.0591125,0.0599365,0.0611267,0.0664368,0.0769043,0.0909424,0.103149,0.111938,0.114441,0.107178,0.0940247,0.0817566,0.0724792,0.0704041,0.0740356,0.0799255,0.0844421,0.085968,0.0880432,0.0896606,0.0853577,0.0749817,0.0588684,0.0462952,0.0396729,0.0380554,0.0400696,0.0418091,0.0459595,0.0475159,0.0492554,0.0512085,0.0512085,0.0492554,0.0430298,0.0332947,0.0237732,0.017395,0.0123596,0.00704956,0.000335693,-0.00817871,-0.016571,-0.0239563,-0.0288696,-0.0332336,-0.0350952,-0.0341492,-0.0342407,-0.0375061,-0.0400696,-0.0447693,-0.0480652,-0.0514832,-0.058136,-0.0654297,-0.0722961,-0.0747681,-0.0744324,-0.0704651,-0.069519,-0.0701904,-0.0741577,-0.0775146,-0.082489,-0.086792,-0.0944824,-0.10376,-0.114166,-0.122559,-0.128723,-0.129517,-0.128662,-0.128113,-0.129791,-0.130127,-0.126648,-0.119873,-0.114349,-0.113281,-0.117126,-0.123962,-0.132202,-0.13974,-0.140137,-0.131744,-0.11322,-0.0820923,-0.0466309,-0.0119324,0.0178528,0.041748,0.0574646,0.0637512,0.0579224,0.0423584,0.0189819,0.00296021,-0.000396729,0.0083313,0.0233459,0.0421448,0.0602112,0.0757141,0.0852966,0.0860291,0.0783081,0.0663757,0.0536194,0.0452271,0.0455017,0.0591125,0.0809326,0.10437,0.119995,0.130951,0.138458,0.14502,0.146912,0.147247,0.148193,0.150665,0.157318,0.165771,0.172699,0.173492,0.164764,0.144104,0.114563,0.0840149,0.0575867,0.0420837,0.0355835,0.0377808,0.0413513,0.0454407,0.0471191,0.0469055,0.0425415,0.0340271,0.0195312,0.00515747,-0.00274658,-0.00424194,0.000946045,0.0108032,0.0190735,0.0241089,0.0255737,0.0224915,0.0209961,0.0194092,0.0154419,0.00665283,-0.00598145,-0.0175781,-0.0282593,-0.0345764,-0.040802,-0.0532227,-0.0645752,-0.0744324,-0.0774536,-0.0787354,-0.0735474,-0.068512,-0.0675049,-0.0698547,-0.0729675,-0.0784607,-0.0842285,-0.0912781,-0.0990601,-0.108917,-0.120148,-0.129517,-0.137115,-0.144775,-0.154419,-0.164764,-0.17215,-0.174225,-0.169586,-0.161194,-0.153229,-0.147858,-0.143219,-0.14444,-0.148926,-0.158386,-0.170929,-0.182831,-0.184418,-0.167725,-0.129456,-0.0767212,-0.0174561,0.0359192,0.0767212,0.105042,0.116791,0.115509,0.0991211,0.0717468,0.0405273,0.0174561,0.013092,0.0276489,0.0576477,0.085907,0.106995,0.119812,0.123291,0.117371,0.100006,0.0752869,0.0521545,0.0384521,0.0406189,0.0575867,0.0875854,0.12088,0.148193,0.162628,0.168854,0.172882,0.179321,0.185852,0.187775,0.184906,0.18222,0.184082,0.185303,0.179535,0.159119,0.122894,0.0762939,0.0344238,0.00375366,-0.012207,-0.0149536,-0.0106812,-0.0032959,0.00088501,0.0050354,0.00616455,0.00558472,-0.00128174,-0.0174561,-0.0343628,-0.0440369,-0.0381775,-0.0231628,-0.00805664,0.00302124,0.0101929,0.0151062,0.0189819,0.0182495,0.012085,0.000396729,-0.0150452,-0.0343018,-0.0520935,-0.065979,-0.0743713,-0.0797424,-0.086853,-0.0967102,-0.104309,-0.106506,-0.102692,-0.0969849,-0.0939636,-0.0953674,-0.0991211,-0.103546,-0.105438,-0.109406,-0.119598,-0.133636,-0.15033,-0.165833,-0.17804,-0.184906,-0.186249,-0.180054,-0.168335,-0.156769,-0.144836,-0.133026,-0.124573,-0.124023,-0.136047,-0.152954,-0.168457,-0.165771,-0.141602,-0.0997314,-0.0473022,0.00671387,0.0552979,0.0993347,0.132202,0.149261,0.147247,0.123749,0.0885315,0.0593872,0.049469,0.0611267,0.0889282,0.124237,0.152832,0.169464,0.17276,0.162872,0.14328,0.114227,0.0803223,0.0506592,0.0365906,0.0454407,0.0722961,0.108734,0.139587,0.155243,0.1586,0.155762,0.15451,0.151825,0.15094,0.147705,0.148468,0.156647,0.173218,0.188049,0.188721,0.165558,0.121613,0.0708008,0.0279236,-0.00128174,-0.0184631,-0.0287781,-0.0351562,-0.0376587,-0.0312805,-0.0234985,-0.0178528,-0.0193176,-0.0303955,-0.0467224,-0.0598755,-0.0638123,-0.0565796,-0.0406189,-0.0241699,-0.0126038,-0.0067749,-0.000946045,0.00509644,0.0088501,0.00482178,-0.0105896,-0.0327454,-0.0518799,-0.0638123,-0.0699463,-0.0752258,-0.0832825,-0.092804,-0.101746,-0.106781,-0.109192,-0.110748,-0.114349,-0.12262,-0.131012,-0.138794,-0.143005,-0.144165,-0.145111,-0.148651,-0.156433,-0.168579,-0.17926,-0.186768,-0.18576,-0.181213,-0.172485,-0.161804,-0.148468,-0.132874,-0.117523,-0.106781,-0.107178,-0.116364,-0.123077,-0.117249,-0.0908813,-0.0512695,-0.00924683,0.028717,0.0626831,0.098053,0.124512,0.135498,0.125977,0.0978394,0.0675964,0.0474548,0.0461731,0.0639648,0.0971069,0.136719,0.1698,0.191345,0.194214,0.184509,0.162628,0.131195,0.0973816,0.0658264,0.0514832,0.0603943,0.0922852,0.13147,0.161407,0.176636,0.177917,0.175293,0.167664,0.15564,0.139191,0.124023,0.117706,0.122681,0.134827,0.143219,0.137573,0.111816,0.0733032,0.0346375,0.00140381,-0.0228882,-0.0377197,-0.0458374,-0.0468445,-0.0424194,-0.03302,-0.0249634,-0.0191345,-0.0195923,-0.0299988,-0.0449524,-0.0582581,-0.0618896,-0.0536804,-0.0371704,-0.0195923,-0.00778198,0.00213623,0.00939941,0.0163879,0.0159607,0.00570679,-0.0176392,-0.0421448,-0.0605469,-0.0727539,-0.078186,-0.0823364,-0.0846252,-0.085907,-0.0849609,-0.0851135,-0.0863037,-0.0908203,-0.0977783,-0.108734,-0.119202,-0.131134,-0.140259,-0.14563,-0.148132,-0.152618,-0.160187,-0.170746,-0.177704,-0.181335,-0.176575,-0.168793,-0.157776,-0.146118,-0.137573,-0.129517,-0.126038,-0.124512,-0.118805,-0.105774,-0.0802002,-0.0492554,-0.0136108,0.0239563,0.0633545,0.0996704,0.124298,0.130402,0.121002,0.0961609,0.0704041,0.0499268,0.0418701,0.0502014,0.0697937,0.0976562,0.129669,0.157379,0.177124,0.177185,0.156708,0.124573,0.0917969,0.0690613,0.0576477,0.0610657,0.0791321,0.109406,0.143219,0.172363,0.191742,0.198517,0.194489,0.177643,0.152405,0.12793,0.112091,0.108978,0.112,0.112762,0.104431,0.0854492,0.0600586,0.0357056,0.0109253,-0.0160522,-0.0421448,-0.0592651,-0.0675964,-0.0654297,-0.0598755,-0.0545654,-0.0497437,-0.045166,-0.0426025,-0.0449524,-0.0432739,-0.0406189,-0.0361633,-0.0282593,-0.020752,-0.00924683,0.000457764,0.0102539,0.0138855,0.0128174,0.00396729,-0.0100708,-0.028717,-0.0462952,-0.061554,-0.0742188,-0.0864563,-0.094696,-0.0967712,-0.0960999,-0.09375,-0.0933533,-0.094696,-0.100342,-0.107239,-0.11496,-0.125763,-0.139008,-0.150879,-0.159515,-0.163544,-0.164215,-0.165497,-0.167053,-0.16684,-0.159851,-0.147186,-0.135559,-0.128723,-0.129272,-0.133972,-0.141602,-0.143951,-0.131958,-0.103363,-0.0637512,-0.0205994,0.0182495,0.0579224,0.0951538,0.128937,0.145844,0.139679,0.111816,0.0748291,0.0468445,0.0381775,0.0443726,0.0626831,0.0877991,0.122742,0.160614,0.187195,0.194031,0.175568,0.143341,0.103149,0.0678406,0.0450439,0.0438232,0.0593262,0.0894775,0.125641,0.163361,0.19577,0.214172,0.215515,0.198914,0.169678,0.135559,0.110413,0.105896,0.115295,0.126984,0.125366,0.111145,0.0865173,0.0575256,0.0249634,-0.00827026,-0.0411377,-0.0678406,-0.0820923,-0.0802002,-0.0641479,-0.0469666,-0.0379333,-0.038269,-0.0405273,-0.0432739,-0.0479126,-0.0522156,-0.0493164,-0.0397949,-0.0214844,-0.0012207,0.0202637,0.0387268,0.0477905,0.0453796,0.028595,0.00262451,-0.0245056,-0.048645,-0.0637512,-0.0739746,-0.0830994,-0.0912781,-0.0944214,-0.09021,-0.0876465,-0.0934753,-0.106567,-0.120941,-0.130737,-0.138245,-0.145172,-0.154572,-0.164093,-0.171021,-0.173218,-0.174957,-0.176849,-0.179321,-0.179718,-0.171417,-0.155365,-0.141144,-0.129608,-0.122223,-0.116577,-0.117981,-0.122498,-0.11618,-0.0924072,-0.0528259,-0.00952148,0.0293884,0.0620728,0.0890503,0.108978,0.123566,0.124573,0.102814,0.0634766,0.0293884,0.0235596,0.0418091,0.0688477,0.0875854,0.109741,0.141998,0.171814,0.177582,0.154175,0.121002,0.089386,0.0663147,0.052002,0.0536804,0.0712891,0.094696,0.120667,0.14563,0.166901,0.177521,0.174438,0.161743,0.143951,0.121948,0.0993958,0.0907288,0.101013,0.116364,0.115692,0.0964355,0.0680542,0.040741,0.0155029,-0.00991821,-0.0340881,-0.0534363,-0.069458,-0.0710754,-0.0551758,-0.0355835,-0.0275269,-0.0336304,-0.0397949,-0.0387878,-0.033905,-0.0350952,-0.0419312,-0.039856,-0.0245667,-0.00228882,0.0183105,0.0354309,0.0477295,0.0516052,0.0420837,0.0224304,-0.00234985,-0.0252991,-0.0425415,-0.0561218,-0.0691223,-0.0818176,-0.0863037,-0.0804138,-0.0707397,-0.0699463,-0.0822754,-0.100677,-0.117584,-0.129517,-0.142426,-0.154633,-0.166321,-0.172272,-0.172485,-0.170013,-0.167175,-0.164215,-0.160004,-0.149658,-0.137329,-0.12616,-0.120605,-0.116119,-0.112091,-0.10733,-0.0935669,-0.069519,-0.0320129,0.00967407,0.0479126,0.0791321,0.102692,0.121002,0.132538,0.133148,0.117188,0.0829468,0.0469666,0.0270386,0.0328979,0.0551758,0.0792542,0.102631,0.126373,0.149261,0.159119,0.145508,0.118042,0.0840149,0.0555115,0.0413513,0.0439453,0.0622253,0.0842896,0.108856,0.133026,0.152344,0.161743,0.153839,0.135162,0.110657,0.0887146,0.0691223,0.0631409,0.0717468,0.0880432,0.093689,0.080658,0.0533447,0.019928,-0.0105286,-0.0376587,-0.0630188,-0.0863037,-0.101807,-0.101471,-0.0826721,-0.0568542,-0.0428772,-0.0397949,-0.0425415,-0.0400085,-0.0361023,-0.0371704,-0.0420837,-0.0437622,-0.0367126,-0.0218811,-0.00274658,0.0171814,0.032074,0.0381165,0.0357666,0.0241089,0.00491333,-0.0161743,-0.0350952,-0.0508728,-0.0654907,-0.0811462,-0.0909424,-0.0909424,-0.0842285,-0.0795898,-0.0845032,-0.0969849,-0.110657,-0.123505,-0.135101,-0.146973,-0.158447,-0.167328,-0.171021,-0.168396,-0.162476,-0.157318,-0.152008,-0.143341,-0.131531,-0.121063,-0.112671,-0.107727,-0.103546,-0.0908813,-0.0655823,-0.0246887,0.0244446,0.0713501,0.105438,0.129333,0.146454,0.157104,0.157196,0.143158,0.111816,0.0751648,0.0471802,0.0400696,0.0546875,0.0818787,0.10907,0.134705,0.158508,0.173889,0.169678,0.146118,0.108795,0.0722961,0.0444336,0.037262,0.0544434,0.0839539,0.114105,0.138336,0.155579,0.166504,0.168579,0.158051,0.131958,0.0993958,0.0686646,0.0487366,0.0483093,0.0643005,0.0785217,0.0738831,0.0502014,0.0171814,-0.0128174,-0.0369263,-0.0597839,-0.0843506,-0.105225,-0.11142,-0.1008,-0.0744934,-0.0498657,-0.0394592,-0.0397949,-0.0414734,-0.0423584,-0.0404663,-0.040863,-0.0426941,-0.0440369,-0.0386047,-0.0189209,0.0105286,0.0328064,0.0383911,0.0303345,0.0133667,-0.00717163,-0.0259094,-0.0426025,-0.0534363,-0.0617371,-0.0748901,-0.0921326,-0.101074,-0.0976562,-0.0918884,-0.0928955,-0.108124,-0.128998,-0.147644,-0.157532,-0.165894,-0.172882,-0.185364,-0.195099,-0.200409,-0.193085,-0.179871,-0.166443,-0.154968,-0.143951,-0.132019,-0.127106,-0.127655,-0.12088,-0.0908813,-0.0375977,0.0218201,0.0720825,0.112946,0.150269,0.18631,0.207733,0.202362,0.168121,0.118805,0.074707,0.0488586,0.0378418,0.0365906,0.0487366,0.0798645,0.123566,0.163147,0.184357,0.180725,0.156433,0.118927,0.0776367,0.0434265,0.02771,0.0357056,0.0597229,0.0924072,0.126709,0.15799,0.181,0.19342,0.191132,0.165314,0.122894,0.078125,0.0541687,0.0531616,0.0653687,0.0709534,0.0627441,0.0444336,0.0234375,0.000335693,-0.0256348,-0.058136,-0.0914917,-0.118469,-0.12677,-0.113007,-0.0889282,-0.0643616,-0.0447693,-0.0287781,-0.0195923,-0.0157776,-0.0151062,-0.0148315,-0.01651,-0.020874,-0.0232239,-0.0174561,0.00140381,0.0258484,0.0397949,0.0386658,0.024353,0.00524902,-0.0146179,-0.0330811,-0.0532837,-0.0767822,-0.0996704,-0.111664,-0.112885,-0.108002,-0.106842,-0.110321,-0.119812,-0.134644,-0.148804,-0.161743,-0.170746,-0.175446,-0.181335,-0.186768,-0.18692,-0.180481,-0.167175,-0.15451,-0.145172,-0.139343,-0.13382,-0.127991,-0.119476,-0.105225,-0.0805969,-0.0430908,0.00726318,0.0629578,0.11377,0.150543,0.176025,0.19162,0.196899,0.183685,0.147919,0.101471,0.0652466,0.0484009,0.0508118,0.0646362,0.08255,0.107666,0.138733,0.165039,0.173157,0.158661,0.128448,0.0928955,0.0642395,0.0487366,0.0464478,0.0549622,0.0771179,0.103149,0.128845,0.149139,0.162872,0.166992,0.158661,0.135376,0.103363,0.0745544,0.0620117,0.0654907,0.0697937,0.0630188,0.0404053,0.0110168,-0.0137024,-0.0325623,-0.0502014,-0.0750427,-0.103973,-0.12088,-0.117523,-0.0967102,-0.0725403,-0.0548401,-0.0440369,-0.0343628,-0.0235596,-0.0143738,-0.00839233,-0.00637817,-0.0071106,-0.0103455,-0.0106812,-0.00274658,0.0108643,0.0218811,0.0254211,0.0177917,0.0012207,-0.0171814,-0.0303955,-0.0426941,-0.0613403,-0.0855713,-0.110931,-0.124359,-0.125153,-0.121552,-0.125305,-0.138672,-0.156189,-0.169006,-0.177185,-0.18222,-0.187439,-0.197174,-0.206787,-0.204102,-0.190887,-0.170471,-0.149597,-0.135376,-0.131683,-0.134155,-0.135437,-0.128723,-0.108185,-0.0726929,-0.0260925,0.0237732,0.0744324,0.12442,0.173096,0.208466,0.221283,0.205841,0.170471,0.129272,0.093811,0.066925,0.0500793,0.0497437,0.0687866,0.0987854,0.131744,0.158203,0.166779,0.15625,0.130615,0.0977173,0.0683289,0.0500793,0.0462341,0.0505371,0.065918,0.091217,0.119598,0.146454,0.163879,0.168671,0.161682,0.141876,0.11972,0.101624,0.0941467,0.0913391,0.0900574,0.0813293,0.0636292,0.0396729,0.0105896,-0.020874,-0.0518188,-0.0788574,-0.101532,-0.112335,-0.109131,-0.0952454,-0.0758362,-0.056366,-0.0426025,-0.0316162,-0.0246887,-0.0194702,-0.0148315,-0.0138245,-0.0113525,-0.0032959,0.00778198,0.0269775,0.0446167,0.0536194,0.0517578,0.037262,0.0159607,-0.00772095,-0.0297852,-0.0508728,-0.070282,-0.0875244,-0.0977173,-0.105103,-0.107727,-0.111145,-0.120544,-0.138062,-0.160736,-0.182495,-0.19986,-0.211151,-0.218445,-0.220551,-0.21759,-0.20697,-0.189667,-0.172424,-0.158997,-0.150269,-0.145111,-0.144226,-0.144012,-0.135651,-0.111542,-0.0676575,-0.0100708,0.0511475,0.103302,0.145508,0.176361,0.194366,0.198669,0.185577,0.155365,0.117462,0.0872498,0.0708618,0.0673218,0.0750427,0.0889893,0.10556,0.123688,0.136322,0.134644,0.116638,0.0907288,0.0670471,0.0469666,0.032959,0.0308838,0.0415344,0.0641479,0.0908203,0.114105,0.127777,0.137848,0.145447,0.14798,0.141754,0.125244,0.108795,0.102875,0.108582,0.11142,0.0971069,0.0679932,0.0341492,0.00323486,-0.0264282,-0.0536194,-0.0814209,-0.103821,-0.113831,-0.108795,-0.0922852,-0.0735474,-0.0558472,-0.0415344,-0.0312805,-0.0222778,-0.0158997,-0.0107422,-0.00402832,0.00448608,0.0127563,0.0197449,0.0318909,0.0485229,0.0610657,0.0633545,0.0515442,0.0265198,-0.0017395,-0.0265808,-0.0465698,-0.0681152,-0.0892029,-0.104767,-0.113159,-0.11496,-0.11792,-0.130676,-0.152954,-0.177521,-0.194885,-0.20813,-0.217194,-0.221283,-0.221283,-0.212158,-0.193634,-0.171875,-0.153625,-0.140686,-0.131683,-0.123566,-0.121552,-0.121735,-0.117371,-0.0984497,-0.0513306,0.0172424,0.0847778,0.137848,0.171478,0.196381,0.206909,0.205566,0.184906,0.141022,0.0963135,0.0627441,0.0526733,0.0597229,0.078064,0.100342,0.121948,0.14093,0.143951,0.126099,0.0986023,0.0697937,0.044281,0.0231018,0.0112,0.0151672,0.0368347,0.0683289,0.0950928,0.109741,0.115448,0.11792,0.119873,0.120209,0.110992,0.094574,0.0832825,0.0869751,0.103149,0.116119,0.108795,0.081665,0.0427551,0.00363159,-0.0296021,-0.0593262,-0.0863037,-0.10733,-0.11377,-0.10611,-0.0852356,-0.0599365,-0.0353088,-0.0152893,-0.00839233,-0.00946045,-0.0148315,-0.0168457,-0.00793457,0.00289917,0.011261,0.0191956,0.0341492,0.0536194,0.0671082,0.0674438,0.0487366,0.0182495,-0.012085,-0.0370483,-0.0596008,-0.081604,-0.10321,-0.117798,-0.122559,-0.123962,-0.129181,-0.145782,-0.165985,-0.187439,-0.20639,-0.222961,-0.231262,-0.227997,-0.221802,-0.213074,-0.202026,-0.18222,-0.157532,-0.136993,-0.124359,-0.119476,-0.116516,-0.108398,-0.0875854,-0.0490723,0.00692749,0.065033,0.114441,0.153625,0.183746,0.206451,0.215027,0.204834,0.175629,0.136108,0.0972595,0.0711365,0.0640869,0.0714722,0.0871887,0.105988,0.124847,0.140411,0.141022,0.123169,0.0942993,0.0637512,0.0319519,0.00778198,-0.00357056,0.00189209,0.020813,0.0454407,0.070282,0.0933533,0.110413,0.122406,0.124969,0.117188,0.0987244,0.0807495,0.0710754,0.0761719,0.0876465,0.0888672,0.0764465,0.0539551,0.0266418,-0.000671387,-0.0245056,-0.0512085,-0.0786438,-0.0973206,-0.0983276,-0.0812073,-0.0583801,-0.0356445,-0.0135498,0.000274658,0.00463867,0.00213623,-0.00323486,-0.00537109,-0.00167847,0.00247192,0.00891113,0.021759,0.0409546,0.0614624,0.0734863,0.0687256,0.0468445,0.0161743,-0.0134277,-0.0396729,-0.068512,-0.0966492,-0.121552,-0.137451,-0.143158,-0.14444,-0.151276,-0.167236,-0.189728,-0.211212,-0.226044,-0.234711,-0.239655,-0.240875,-0.233154,-0.215851,-0.190552,-0.164978,-0.140259,-0.123169,-0.116241,-0.115784,-0.115356,-0.101196,-0.065094,-0.00726318,0.0575256,0.115356,0.15979,0.196655,0.227112,0.246246,0.240997,0.207458,0.15451,0.10376,0.0714111,0.0587769,0.0605469,0.0750427,0.0978394,0.127045,0.150543,0.15625,0.141998,0.114014,0.0797424,0.0432129,0.00738525,-0.0134888,-0.0161133,0.000457764,0.0244446,0.0479736,0.0679932,0.0852356,0.103363,0.114685,0.112274,0.0950317,0.0747681,0.0635681,0.0679932,0.0804749,0.0844421,0.0708618,0.0480652,0.0234375,0.00274658,-0.0182495,-0.0438843,-0.0711365,-0.091156,-0.0969849,-0.0884705,-0.0686035,-0.0420227,-0.0134277,0.00878906,0.0187988,0.0194092,0.0175781,0.017395,0.0189209,0.0168457,0.0138245,0.0174561,0.0343018,0.058197,0.0751648,0.0752869,0.0561829,0.0298767,0.00268555,-0.0259094,-0.0587769,-0.0948181,-0.12677,-0.14624,-0.153564,-0.154236,-0.161865,-0.175507,-0.192627,-0.210266,-0.226837,-0.238922,-0.24704,-0.247528,-0.236176,-0.216919,-0.194366,-0.16806,-0.141022,-0.115967,-0.101135,-0.0992737,-0.104706,-0.100739,-0.0709534,-0.0142822,0.0518799,0.107574,0.148468,0.184082,0.216919,0.23764,0.236237,0.204224,0.155853,0.108124,0.0733643,0.0559692,0.0560303,0.0743713,0.101532,0.129852,0.146973,0.149323,0.136322,0.117981,0.0922241,0.0583191,0.0204773,-0.00637817,-0.00811768,0.0115356,0.037262,0.0541077,0.0612793,0.0653076,0.0789795,0.0895996,0.0883789,0.0717468,0.049469,0.0405273,0.0492554,0.0673218,0.0743713,0.0635681,0.0421448,0.0191956,-0.000549316,-0.020813,-0.0423584,-0.0626831,-0.0763855,-0.081543,-0.0756226,-0.0575256,-0.0296021,0.0012207,0.017395,0.020813,0.0154419,0.0158386,0.0238342,0.0341492,0.0363159,0.0316772,0.0324707,0.0475769,0.0699463,0.0854492,0.079071,0.0545654,0.025177,-0.000396729,-0.0234375,-0.0508118,-0.0841675,-0.11496,-0.137054,-0.148376,-0.153412,-0.163971,-0.181732,-0.202087,-0.225372,-0.243561,-0.255096,-0.25946,-0.259338,-0.253632,-0.238647,-0.213409,-0.17804,-0.138794,-0.104645,-0.0889282,-0.0852966,-0.0826111,-0.0679932,-0.0377808,0.00799561,0.0587158,0.102692,0.142548,0.181213,0.216644,0.241272,0.244293,0.221008,0.176025,0.127502,0.0883179,0.0673828,0.0649719,0.073761,0.0888672,0.104767,0.121826,0.133484,0.128998,0.109192,0.0777893,0.0421448,0.0114746,-0.00598145,-0.00604248,0.00778198,0.0293274,0.053009,0.0712891,0.0873718,0.0993347,0.101013,0.089386,0.0676575,0.0448914,0.0327454,0.0344238,0.0461731,0.0522156,0.0461121,0.0307922,0.012207,-0.0032959,-0.0211487,-0.0427551,-0.0687866,-0.0914917,-0.100128,-0.090271,-0.0675964,-0.0391846,-0.0150452,0.00289917,0.0161133,0.0269775,0.0358276,0.040802,0.0424194,0.0400085,0.0391846,0.0445557,0.0590515,0.0764465,0.0877991,0.0844421,0.0671692,0.0432129,0.0195923,-0.00543213,-0.0387268,-0.0783081,-0.114777,-0.144165,-0.159332,-0.168854,-0.177795,-0.195709,-0.217529,-0.237793,-0.253632,-0.263947,-0.273285,-0.277863,-0.272278,-0.25415,-0.224365,-0.189941,-0.154846,-0.125641,-0.102814,-0.0855103,-0.0692749,-0.0449524,-0.0112,0.0351562,0.0861816,0.134033,0.17569,0.212402,0.242279,0.259857,0.251617,0.217255,0.16806,0.120148,0.0851746,0.0647583,0.0614014,0.0710144,0.0908813,0.114227,0.131866,0.13623,0.124084,0.0987244,0.065033,0.0292664,-0.00369263,-0.0228271,-0.0204773,-6.10352e-05,0.0289917,0.0575256,0.0802612,0.098938,0.111938,0.112,0.0968323,0.0715332,0.0461731,0.0296021,0.0288696,0.0339661,0.0369263,0.0316772,0.0209961,0.0100708,-0.00436401,-0.0229492,-0.0475769,-0.0714722,-0.0890503,-0.0924683,-0.0827637,-0.0628052,-0.0351562,-0.00772095,0.0124817,0.0269775,0.0347595,0.0390015,0.0429382,0.0449524,0.0437622,0.0447693,0.0542297,0.070343,0.0881348,0.09375,0.0875244,0.069397,0.0461121,0.0204773,-0.0109253,-0.0480652,-0.0856934,-0.119049,-0.142822,-0.156525,-0.167908,-0.182404,-0.201691,-0.225037,-0.246979,-0.267517,-0.286255,-0.299927,-0.304108,-0.29361,-0.268066,-0.233948,-0.195557,-0.15799,-0.127441,-0.105713,-0.0877075,-0.0666504,-0.0367737,0.00576782,0.0560303,0.109314,0.158508,0.201935,0.241272,0.272339,0.288666,0.276245,0.2388,0.187317,0.135986,0.0969238,0.0718689,0.0675049,0.0753784,0.0923462,0.110077,0.121613,0.120209,0.10202,0.0725403,0.0351562,-0.00228882,-0.0334778,-0.0506592,-0.0477905,-0.0271912,0.00335693,0.0357056,0.0666504,0.0935669,0.112549,0.116028,0.102142,0.0784607,0.0553589,0.0397949,0.0366516,0.0361023,0.0324707,0.0246277,0.0162354,0.00738525,-0.00448608,-0.0231018,-0.0457764,-0.0699463,-0.0887146,-0.0950317,-0.0890503,-0.0713501,-0.0477295,-0.0206604,0.00280762,0.0241089,0.0390015,0.0493164,0.0552368,0.0574646,0.058136,0.06073,0.0724182,0.0892639,0.105316,0.110321,0.103088,0.085968,0.0643616,0.036499,-0.000457764,-0.0438843,-0.0895386,-0.129517,-0.15918,-0.180145,-0.194305,-0.209473,-0.225769,-0.244415,-0.26355,-0.281891,-0.297577,-0.308594,-0.308319,-0.294617,-0.270477,-0.238739,-0.199249,-0.155701,-0.114014,-0.0841675,-0.0614624,-0.0418701,-0.0162964,0.0248413,0.0765076,0.130463,0.178528,0.219879,0.253906,0.280212,0.293365,0.280609,0.243896,0.18988,0.135712,0.0932312,0.0678406,0.0635681,0.0733643,0.0925598,0.111938,0.122345,0.119995,0.10437,0.0787964,0.0414124,-0.00213623,-0.0375061,-0.0569153,-0.0508728,-0.0269775,0.00491333,0.036438,0.0643005,0.0925598,0.110413,0.117126,0.103699,0.0754395,0.0480652,0.0282593,0.0239563,0.0226135,0.0194092,0.0126038,0.00280762,-0.00610352,-0.0190735,-0.0350342,-0.0544434,-0.073822,-0.0872498,-0.0913391,-0.0832214,-0.0655823,-0.039856,-0.0129395,0.00726318,0.0234375,0.0336304,0.0425415,0.048584,0.0525513,0.0542297,0.058197,0.0704651,0.0909424,0.108917,0.117706,0.11026,0.0939026,0.0692749,0.0380554,-0.000610352,-0.0474548,-0.0950317,-0.136322,-0.166656,-0.188324,-0.204895,-0.220276,-0.237396,-0.253967,-0.271667,-0.288391,-0.303101,-0.31543,-0.318604,-0.309326,-0.284821,-0.246704,-0.203827,-0.160614,-0.122009,-0.0917969,-0.0671692,-0.0396118,-0.00448608,0.0402832,0.091217,0.140198,0.187378,0.230682,0.272095,0.302277,0.315826,0.302765,0.263092,0.207123,0.149719,0.105499,0.0779114,0.0696106,0.0753784,0.0913391,0.111328,0.126373,0.127655,0.112213,0.0828857,0.0425415,-0.0017395,-0.0389404,-0.0603333,-0.0602112,-0.0413513,-0.00866699,0.028595,0.0638123,0.0953064,0.114105,0.118317,0.103363,0.0763855,0.0481262,0.0280457,0.0215454,0.0189819,0.0162964,0.00857544,0.000274658,-0.00671387,-0.0157776,-0.0292664,-0.0477295,-0.0686646,-0.0835571,-0.0892639,-0.0830078,-0.0654297,-0.0409546,-0.0168457,0.00564575,0.0233459,0.036499,0.045166,0.050415,0.0523376,0.0552979,0.0602722,0.0716248,0.0885315,0.104034,0.110474,0.105164,0.0888672,0.0646362,0.0344849,-0.00335693,-0.0487366,-0.0959778,-0.139587,-0.171936,-0.194702,-0.211395,-0.226227,-0.24173,-0.257843,-0.272614,-0.287781,-0.302887,-0.314636,-0.319855,-0.31012,-0.285919,-0.250549,-0.211548,-0.173279,-0.14035,-0.112152,-0.0855103,-0.0556946,-0.0162354,0.0311279,0.0826721,0.135101,0.185303,0.235046,0.281891,0.318329,0.334564,0.321136,0.278656,0.220276,0.162872,0.11792,0.086792,0.0712891,0.0717468,0.0872498,0.111206,0.129608,0.135437,0.123749,0.0979309,0.0593262,0.0147095,-0.0273132,-0.0541077,-0.0620728,-0.049469,-0.0200806,0.0144958,0.0517578,0.0863037,0.112274,0.122559,0.113678,0.0890503,0.0602722,0.0385132,0.0246277,0.0163879,0.00827026,0.000671387,-0.00296021,-0.00772095,-0.0175781,-0.0332947,-0.0512085,-0.0686646,-0.0791321,-0.081665,-0.0752258,-0.0599365,-0.0354309,-0.00817871,0.0172424,0.0362549,0.0479126,0.052948,0.053833,0.0516663,0.0498657,0.0505981,0.058197,0.0714722,0.0856934,0.0940247,0.0942383,0.0855713,0.0706177,0.0455017,0.00759888,-0.0393372,-0.0889282,-0.134552,-0.170746,-0.199463,-0.221283,-0.23819,-0.252747,-0.267059,-0.279785,-0.292938,-0.307465,-0.318451,-0.323151,-0.314911,-0.291077,-0.260132,-0.225159,-0.191406,-0.159058,-0.129456,-0.0970459,-0.0636292,-0.0267029,0.0147095,0.0636292,0.11496,0.169464,0.222961,0.274567,0.318268,0.341614,0.337708,0.303345,0.250061,0.195099,0.147644,0.112762,0.0926208,0.0895386,0.0996094,0.121002,0.139862,0.145905,0.133087,0.103699,0.0646973,0.0183105,-0.0276489,-0.0632935,-0.0785217,-0.0708008,-0.0431519,-0.00726318,0.0311279,0.0675049,0.0943604,0.107727,0.102478,0.082489,0.0579834,0.0371704,0.0258484,0.0225525,0.0212708,0.0193176,0.0191956,0.0183105,0.0103455,-0.0050354,-0.0292664,-0.0517578,-0.0676575,-0.0733032,-0.0687256,-0.0551758,-0.0306702,-0.0038147,0.0226135,0.0404053,0.050415,0.0531006,0.0517578,0.0468445,0.0420837,0.040802,0.046051,0.0563049,0.0696106,0.0796509,0.0821533,0.0757751,0.0614014,0.0379944,0.00289917,-0.0384521,-0.0849609,-0.126709,-0.161133,-0.187592,-0.208649,-0.227325,-0.244629,-0.260193,-0.276245,-0.292084,-0.305634,-0.315918,-0.317841,-0.309204,-0.289856,-0.261871,-0.228241,-0.192749,-0.158997,-0.12851,-0.103302,-0.0793152,-0.0502014,-0.0124817,0.0340271,0.0852356,0.13739,0.189453,0.242065,0.288269,0.320953,0.328522,0.308868,0.270599,0.222626,0.176971,0.138123,0.112427,0.101135,0.106232,0.122009,0.138519,0.145782,0.141541,0.121552,0.0904846,0.0478516,0.00335693,-0.0361633,-0.0599976,-0.0652466,-0.052887,-0.0279846,0.00296021,0.0383301,0.0701904,0.0895386,0.0927429,0.0779724,0.0560303,0.0359192,0.0236816,0.0177307,0.0146179,0.0158386,0.0185852,0.0233459,0.0229492,0.0157776,0.00088501,-0.0187378,-0.0356445,-0.0477905,-0.0534363,-0.048584,-0.0347595,-0.013031,0.0101929,0.0315552,0.0471191,0.0560303,0.0578613,0.0532837,0.0429382,0.0346375,0.0314026,0.0350342,0.0422058,0.0532227,0.0586548,0.0610046,0.0543518,0.0406799,0.0169067,-0.016571,-0.0579224,-0.098999,-0.136322,-0.167847,-0.194092,-0.214844,-0.231415,-0.245972,-0.260254,-0.275757,-0.290466,-0.302429,-0.308533,-0.307709,-0.297241,-0.278259,-0.252228,-0.221741,-0.189209,-0.156769,-0.130676,-0.107056,-0.0820007,-0.0477905,-0.00323486,0.0466309,0.0990601,0.152344,0.207397,0.261017,0.306244,0.332275,0.328186,0.301331,0.255981,0.210144,0.167053,0.135437,0.116852,0.114563,0.127502,0.145294,0.157715,0.158722,0.144226,0.116028,0.0754395,0.025177,-0.0234985,-0.0612793,-0.0783081,-0.0739746,-0.0555725,-0.025177,0.0106812,0.0479736,0.0767822,0.0882568,0.0803223,0.0602112,0.0406189,0.0279236,0.0219421,0.0188599,0.0188599,0.0234375,0.0315552,0.0404663,0.0411987,0.0311279,0.0118713,-0.0083313,-0.0246277,-0.0336914,-0.0346375,-0.0279236,-0.0135498,0.00592041,0.0241089,0.0379944,0.0457764,0.0479736,0.0427551,0.0315552,0.0195312,0.0135498,0.0152283,0.0250244,0.0353699,0.0444336,0.0493164,0.0511475,0.0457153,0.0310059,0.00280762,-0.0346985,-0.0761719,-0.112335,-0.141144,-0.164642,-0.184906,-0.204285,-0.222961,-0.241333,-0.258575,-0.275757,-0.291534,-0.30484,-0.311554,-0.31012,-0.295166,-0.26947,-0.237579,-0.20578,-0.179718,-0.159668,-0.140808,-0.117584,-0.0881348,-0.0500793,-0.00610352,0.0444336,0.0998535,0.162872,0.227386,0.283417,0.321136,0.330658,0.316315,0.283569,0.240662,0.198395,0.161072,0.134491,0.124176,0.129059,0.14502,0.161194,0.164978,0.154175,0.12738,0.0892029,0.0426941,-0.00592041,-0.0477295,-0.0752258,-0.0840149,-0.0755615,-0.0505981,-0.0148315,0.0238342,0.0556946,0.0738831,0.0767212,0.0656433,0.0534363,0.0423584,0.0375977,0.0343628,0.0343628,0.0386047,0.0475769,0.0569153,0.0603943,0.0495911,0.0322876,0.00967407,-0.00946045,-0.0222778,-0.0288696,-0.0276489,-0.0195312,-0.00509644,0.0120239,0.0292053,0.0384521,0.041748,0.0361023,0.024292,0.0122681,0.00509644,0.00558472,0.0123596,0.0220947,0.0314026,0.0401917,0.0467224,0.0479126,0.040802,0.0223389,-0.00616455,-0.040802,-0.0755005,-0.105896,-0.13028,-0.152832,-0.172272,-0.193024,-0.212067,-0.232208,-0.25235,-0.273346,-0.29068,-0.303497,-0.309784,-0.303223,-0.284821,-0.25827,-0.229126,-0.202606,-0.177795,-0.156708,-0.137054,-0.117371,-0.0919495,-0.0574646,-0.0134277,0.0380554,0.0971069,0.159393,0.220795,0.274017,0.311798,0.324982,0.313019,0.280457,0.238312,0.197784,0.161194,0.13739,0.125488,0.130859,0.144012,0.157043,0.16095,0.14859,0.12262,0.0834351,0.0388489,-0.00878906,-0.0505981,-0.0786438,-0.0867004,-0.0750427,-0.0509949,-0.0186462,0.0171204,0.0477295,0.069397,0.074707,0.0696106,0.058136,0.0500793,0.0461731,0.0471802,0.0482483,0.0513306,0.0569763,0.0652466,0.0673828,0.0593262,0.0386047,0.0148315,-0.00604248,-0.0189209,-0.0248413,-0.0256958,-0.0198669,-0.0102539,0.0032959,0.0157166,0.0240173,0.0261841,0.0212708,0.0118713,0.00213623,-0.00442505,-0.00491333,0.00256348,0.0147095,0.0280457,0.0381775,0.0455017,0.0479126,0.0448303,0.0306702,0.00469971,-0.0290527,-0.0637512,-0.0933533,-0.118317,-0.14035,-0.163544,-0.187103,-0.210724,-0.231689,-0.251465,-0.269196,-0.286987,-0.300476,-0.306122,-0.299072,-0.281616,-0.256104,-0.229065,-0.204163,-0.181488,-0.160858,-0.140869,-0.120605,-0.0975952,-0.066925,-0.0260315,0.0280457,0.0914001,0.156769,0.217316,0.267303,0.302887,0.316498,0.309265,0.280396,0.241211,0.198792,0.161682,0.137177,0.124695,0.129333,0.141144,0.154297,0.157928,0.145844,0.119141,0.0804749,0.0383301,-0.00610352,-0.0462341,-0.0731506,-0.0823364,-0.0704041,-0.0443726,-0.011261,0.0228882,0.0524902,0.0747681,0.0834351,0.0809937,0.069519,0.0578003,0.0525513,0.0522766,0.0550232,0.0589294,0.0633545,0.069397,0.0709534,0.0617981,0.041626,0.0155029,-0.00827026,-0.024353,-0.0343018,-0.0369263,-0.0335693,-0.0255127,-0.0112,0.00390625,0.0152283,0.0189819,0.0158386,0.00866699,-0.000732422,-0.00784302,-0.00866699,-0.000946045,0.0153809,0.033905,0.0468445,0.0546875,0.0564575,0.052948,0.0401306,0.0166321,-0.0152893,-0.0524292,-0.0840149,-0.110413,-0.132629,-0.154175,-0.177643,-0.200256,-0.221405,-0.243347,-0.267059,-0.290192,-0.307648,-0.315765,-0.310608,-0.294373,-0.269592,-0.240479,-0.213501,-0.18866,-0.167908,-0.150818,-0.133026,-0.109985,-0.0802002,-0.0400696,0.00991821,0.0683899,0.132812,0.198059,0.255249,0.296448,0.31543,0.309998,0.285492,0.248047,0.208191,0.171143,0.143616,0.128937,0.130127,0.141266,0.15509,0.161804,0.155426,0.131348,0.0944214,0.0471802,-0.000549316,-0.0423584,-0.0722961,-0.0845642,-0.0801392,-0.0589294,-0.0263672,0.00924683,0.0428162,0.0669861,0.0795288,0.0820007,0.0779114,0.0706787,0.0646973,0.0641479,0.0677185,0.0752869,0.0834961,0.0880432,0.085968,0.0752258,0.0562439,0.0310669,0.00570679,-0.0167847,-0.0310669,-0.0361633,-0.0354919,-0.0278625,-0.0187378,-0.00918579,-0.000396729,0.00256348,-0.00012207,-0.00906372,-0.019989,-0.0263672,-0.0238342,-0.0133667,0.00195312,0.0191956,0.0357666,0.0489807,0.057251,0.0571289,0.0488586,0.0315552,0.0062561,-0.0226135,-0.0516663,-0.0766296,-0.0992737,-0.120148,-0.139465,-0.162354,-0.186981,-0.214355,-0.240936,-0.264496,-0.284637,-0.295502,-0.298065,-0.28717,-0.267853,-0.244904,-0.221283,-0.200592,-0.182007,-0.164307,-0.152161,-0.14035,-0.124695,-0.0977173,-0.0555115,0.00140381,0.0643616,0.128326,0.186371,0.236053,0.273621,0.292816,0.288513,0.264038,0.22464,0.186981,0.154083,0.134766,0.126312,0.12912,0.139801,0.151947,0.158386,0.151337,0.130524,0.0950928,0.0525513,0.00744629,-0.0311279,-0.0579834,-0.0686035,-0.0600586,-0.0393372,-0.0103455,0.0211487,0.0519409,0.077179,0.0921326,0.094635,0.0881348,0.0777283,0.0728149,0.0755005,0.0829468,0.0881348,0.0881348,0.0844421,0.0783081,0.0661621,0.0458374,0.0189819,-0.0104065,-0.0349731,-0.0504761,-0.0547791,-0.0504761,-0.0400696,-0.0316772,-0.0228271,-0.0178528,-0.0147095,-0.0161133,-0.0204163,-0.0249634,-0.0280457,-0.0237732,-0.012207,0.00973511,0.0340271,0.0551758,0.0683289,0.0726929,0.0706787,0.0641479,0.049408,0.0271912,-0.000610352,-0.0300598,-0.0576477,-0.080658,-0.101288,-0.122955,-0.15033,-0.181946,-0.212341,-0.24234,-0.266724,-0.287933,-0.300934,-0.305695,-0.298309,-0.280792,-0.256714,-0.231018,-0.210205,-0.191345,-0.174835,-0.160675,-0.146454,-0.128662,-0.103546,-0.065918,-0.0176392,0.0400696,0.101196,0.163361,0.218323,0.263153,0.289001,0.291809,0.273773,0.242493,0.206451,0.172882,0.141357,0.120544,0.111877,0.115021,0.124756,0.132812,0.133759,0.122345,0.100281,0.0672607,0.0270386,-0.0122681,-0.0444946,-0.0612183,-0.06073,-0.0448303,-0.0205994,0.00872803,0.0428162,0.0734863,0.0961609,0.107788,0.108978,0.106842,0.102966,0.102753,0.102295,0.103088,0.100677,0.0950317,0.0869141,0.070282,0.0469055,0.0184631,-0.0126038,-0.0383301,-0.0593872,-0.0697937,-0.0704041,-0.0628967,-0.0543518,-0.0471191,-0.0411377,-0.0380554,-0.0340881,-0.0332336,-0.0342407,-0.0357666,-0.0330811,-0.0215454,-0.000610352,0.0244446,0.0481873,0.0671082,0.0789185,0.0856323,0.0852966,0.077179,0.0612793,0.0397949,0.0132141,-0.0139465,-0.0420227,-0.0700684,-0.0960999,-0.124695,-0.155365,-0.187531,-0.219269,-0.24704,-0.268524,-0.282562,-0.291077,-0.292145,-0.286041,-0.269409,-0.247101,-0.225555,-0.20932,-0.197174,-0.184296,-0.166992,-0.148651,-0.12677,-0.101868,-0.0677185,-0.0181274,0.0428162,0.108459,0.167389,0.21524,0.250336,0.273773,0.281006,0.267914,0.238068,0.197388,0.1604,0.128845,0.107239,0.0973816,0.0975037,0.106781,0.117126,0.121399,0.112823,0.0940857,0.0646973,0.0309448,-0.00341797,-0.0336304,-0.0504761,-0.0504761,-0.0336304,-0.00524902,0.0256348,0.058197,0.0909424,0.119598,0.140198,0.146118,0.139923,0.128387,0.120819,0.114166,0.110748,0.0997925,0.0832214,0.0653687,0.0445557,0.0215454,-0.00463867,-0.0325623,-0.0603333,-0.0799255,-0.0924072,-0.0963135,-0.0917969,-0.0834351,-0.0735474,-0.0654297,-0.0584412,-0.0532837,-0.0473022,-0.0406799,-0.0331421,-0.0236816,-0.0104065,0.00900269,0.0357666,0.0632324,0.0866394,0.10321,0.110748,0.114166,0.109406,0.0964966,0.0741577,0.0446167,0.0112,-0.0226746,-0.0552368,-0.0877991,-0.12088,-0.154175,-0.187714,-0.21698,-0.242828,-0.264496,-0.281738,-0.296295,-0.303619,-0.302673,-0.291748,-0.273682,-0.253296,-0.233704,-0.212891,-0.192627,-0.168518,-0.145233,-0.121735,-0.0964355,-0.0613403,-0.0159607,0.0401306,0.0990601,0.153748,0.203766,0.245087,0.277039,0.291412,0.282135,0.251556,0.207977,0.163147,0.124512,0.0933533,0.0748291,0.0671082,0.0726929,0.0838928,0.0949707,0.098053,0.0896606,0.0716858,0.0428162,0.00912476,-0.0232239,-0.0433655,-0.0464478,-0.0325623,-0.00442505,0.0312805,0.0728149,0.116638,0.156036,0.181274,0.189453,0.180542,0.163757,0.145905,0.128265,0.108582,0.0873718,0.0682678,0.0505371,0.0346375,0.0142212,-0.00967407,-0.0390625,-0.0684509,-0.0951538,-0.116638,-0.127655,-0.129456,-0.121552,-0.109802,-0.0965881,-0.0833435,-0.0691833,-0.0528259,-0.0381165,-0.0283813,-0.0204773,-0.00985718,0.00973511,0.0375061,0.0689392,0.0977783,0.121063,0.137054,0.146576,0.144897,0.132202,0.107056,0.0738831,0.0358276,-0.00430298,-0.0422668,-0.0776367,-0.108185,-0.136383,-0.164429,-0.193634,-0.221619,-0.247528,-0.270264,-0.289673,-0.306244,-0.315369,-0.313293,-0.298401,-0.274902,-0.25061,-0.22757,-0.203613,-0.177307,-0.149994,-0.127045,-0.106659,-0.0833435,-0.0471802,0.00497437,0.0644836,0.121613,0.170532,0.213837,0.251282,0.276184,0.279541,0.253571,0.210541,0.163818,0.123901,0.0921326,0.0665894,0.0526733,0.0516663,0.0656433,0.0847778,0.0957642,0.0943604,0.0798035,0.057373,0.0296021,-0.00012207,-0.0238342,-0.0311279,-0.0189209,0.00967407,0.0470581,0.0852966,0.125916,0.167053,0.196167,0.207916,0.197571,0.173096,0.150482,0.131744,0.114441,0.0949097,0.0742188,0.0545654,0.039856,0.0209961,-0.00570679,-0.0390625,-0.0763855,-0.109985,-0.136047,-0.155579,-0.1633,-0.158325,-0.142212,-0.12088,-0.0999451,-0.0822754,-0.0653687,-0.0484009,-0.0324707,-0.020874,-0.0101929,0.00726318,0.0353088,0.0696106,0.102631,0.129333,0.147797,0.16095,0.167725,0.162079,0.143616,0.113159,0.0774536,0.0402832,0.00482178,-0.0314636,-0.0657654,-0.0983887,-0.129517,-0.162079,-0.194031,-0.228394,-0.256775,-0.281738,-0.301544,-0.317444,-0.323364,-0.317383,-0.300262,-0.273895,-0.247772,-0.220947,-0.194641,-0.165222,-0.133209,-0.107727,-0.0880432,-0.0696106,-0.0428772,-0.00128174,0.0498657,0.101196,0.145172,0.184418,0.216522,0.240204,0.248871,0.234375,0.201019,0.155365,0.10907,0.0714722,0.0424805,0.0266418,0.0232239,0.032074,0.0487976,0.0679932,0.0823364,0.0879822,0.0834351,0.0654297,0.0420837,0.0226135,0.0152283,0.024292,0.0468445,0.0777283,0.11087,0.14563,0.177704,0.203033,0.213684,0.207916,0.187042,0.15918,0.13208,0.107788,0.085968,0.0679932,0.0478516,0.0272522,0.00308228,-0.0263672,-0.0600586,-0.097168,-0.133026,-0.164764,-0.186188,-0.194366,-0.187531,-0.166901,-0.14093,-0.112335,-0.0871887,-0.0642395,-0.0426941,-0.0249634,-0.0106812,0.00189209,0.0179749,0.0405273,0.0728149,0.107727,0.142944,0.170258,0.187592,0.194366,0.190948,0.174377,0.147705,0.112549,0.0710144,0.0306702,-0.00872803,-0.0455017,-0.0789795,-0.111328,-0.145844,-0.179993,-0.214844,-0.249451,-0.280548,-0.306854,-0.325226,-0.333832,-0.331543,-0.316254,-0.289612,-0.254822,-0.218719,-0.18576,-0.159119,-0.133362,-0.110474,-0.0900574,-0.0744324,-0.0612793,-0.0401917,-0.00515747,0.0432739,0.0955811,0.139191,0.171692,0.195557,0.212555,0.217377,0.20108,0.160858,0.109985,0.0633545,0.0311279,0.0118103,0.00476074,0.0083313,0.0231628,0.0495911,0.0779724,0.0997925,0.109528,0.107727,0.098053,0.0833435,0.0687256,0.0610657,0.0662537,0.085907,0.114014,0.142883,0.167847,0.189453,0.207306,0.214691,0.205444,0.183075,0.152008,0.123077,0.0987244,0.0755615,0.0499268,0.0202026,-0.0104675,-0.0404663,-0.0719604,-0.105835,-0.142609,-0.174774,-0.198792,-0.209259,-0.20697,-0.191406,-0.166718,-0.135223,-0.104218,-0.077179,-0.0558472,-0.0377197,-0.020752,-0.00289917,0.0158386,0.0390015,0.0680542,0.105103,0.145691,0.183411,0.210876,0.226379,0.228668,0.220276,0.198669,0.165833,0.124695,0.0797424,0.0369263,-0.00302124,-0.0399475,-0.0755615,-0.113159,-0.148926,-0.185974,-0.222809,-0.261414,-0.295715,-0.321289,-0.336365,-0.339539,-0.331085,-0.313812,-0.286163,-0.253143,-0.218384,-0.186859,-0.160675,-0.139923,-0.116974,-0.0928955,-0.0721436,-0.0561829,-0.0406799,-0.0153809,0.0227661,0.0671692,0.105713,0.131195,0.14624,0.155426,0.161407,0.155914,0.135376,0.100189,0.0634155,0.0375061,0.024292,0.0190735,0.0177307,0.024292,0.0420227,0.0664368,0.0918884,0.109589,0.118378,0.120544,0.117188,0.112885,0.107788,0.107574,0.117584,0.135712,0.157867,0.175507,0.188721,0.198578,0.205963,0.205048,0.189789,0.162476,0.13028,0.100128,0.0718079,0.0404053,0.00732422,-0.0275879,-0.0611267,-0.0920715,-0.122742,-0.154022,-0.180542,-0.198853,-0.207062,-0.205505,-0.199249,-0.183838,-0.160278,-0.130798,-0.101349,-0.0762939,-0.0547791,-0.0305481,-0.00234985,0.0299377,0.0628967,0.0954285,0.131195,0.168121,0.204437,0.234222,0.249268,0.253357,0.242737,0.223755,0.194763,0.159332,0.119049,0.0778503,0.0374451,-0.00308228,-0.0444336,-0.0841675,-0.12384,-0.162415,-0.199585,-0.236908,-0.270477,-0.299469,-0.317841,-0.327637,-0.329865,-0.325623,-0.312958,-0.292023,-0.263947,-0.232819,-0.201752,-0.171539,-0.142883,-0.112488,-0.0836182,-0.057373,-0.0396118,-0.02771,-0.0176392,-0.00650024,0.00912476,0.0281982,0.0482483,0.0679932,0.0853577,0.100739,0.114349,0.122833,0.122894,0.111481,0.0904846,0.066925,0.0453796,0.0293884,0.0230103,0.0260925,0.0386658,0.0621338,0.0924683,0.126648,0.156525,0.174835,0.182404,0.180389,0.172363,0.164093,0.156647,0.153748,0.156708,0.162201,0.168457,0.1745,0.177032,0.174561,0.161469,0.136902,0.100677,0.0596619,0.0180664,-0.0204773,-0.0552368,-0.0892639,-0.118195,-0.142883,-0.161682,-0.175842,-0.187103,-0.196106,-0.19986,-0.199249,-0.190674,-0.174561,-0.150482,-0.120148,-0.0852356,-0.0478516,-0.0100708,0.0276489,0.065918,0.103638,0.139587,0.170746,0.198517,0.223022,0.244965,0.257599,0.2612,0.252289,0.233612,0.208649,0.176849,0.141602,0.103363,0.0617981,0.0194702,-0.0228271,-0.0639648,-0.105896,-0.147461,-0.190002,-0.229797,-0.2659,-0.298401,-0.324768,-0.345306,-0.35672,-0.355988,-0.344635,-0.322205,-0.295044,-0.264374,-0.230682,-0.19577,-0.159607,-0.124695,-0.0960388,-0.0716248,-0.0542908,-0.0422058,-0.0367126,-0.0332336,-0.0282593,-0.0149536,0.00704956,0.0347595,0.0639038,0.0907288,0.115356,0.136719,0.150208,0.147919,0.130951,0.101135,0.069519,0.0421448,0.0236816,0.0147705,0.0191956,0.0380554,0.0718079,0.114105,0.156036,0.186371,0.201599,0.200928,0.188049,0.169189,0.148193,0.132965,0.124634,0.126648,0.134155,0.144958,0.156525,0.162964,0.161072,0.144897,0.116913,0.0787354,0.0366516,-0.00448608,-0.041748,-0.0719604,-0.097168,-0.115112,-0.127258,-0.138458,-0.14859,-0.160126,-0.172211,-0.180603,-0.185425,-0.182678,-0.169189,-0.142609,-0.105988,-0.0603943,-0.0137024,0.0303955,0.0714722,0.11026,0.142822,0.169922,0.188873,0.202606,0.215363,0.227509,0.237579,0.242615,0.240601,0.23053,0.213837,0.188446,0.156525,0.117584,0.0721436,0.0231018,-0.0265198,-0.0751038,-0.120331,-0.162292,-0.201599,-0.238739,-0.270752,-0.301605,-0.3255,-0.344238,-0.356323,-0.358795,-0.35202,-0.333008,-0.30484,-0.272156,-0.236237,-0.198669,-0.160065,-0.122498,-0.0939636,-0.0744324,-0.0610657,-0.0490723,-0.0368347,-0.0265198,-0.0214233,-0.0161133,-0.00476074,0.0212708,0.0549622,0.085907,0.104645,0.113434,0.11972,0.125977,0.12677,0.111145,0.0836182,0.0531006,0.0304565,0.0220947,0.0220032,0.0294495,0.0440979,0.0718689,0.105774,0.14035,0.166443,0.17865,0.181732,0.17511,0.161072,0.143341,0.125031,0.117798,0.119385,0.125366,0.131958,0.133209,0.135773,0.133698,0.124847,0.104156,0.0724792,0.0383301,0.00643921,-0.0204773,-0.046051,-0.0696716,-0.09021,-0.105225,-0.118042,-0.131805,-0.147705,-0.160797,-0.166656,-0.162018,-0.151215,-0.13208,-0.105438,-0.0679321,-0.0225525,0.0222168,0.0610046,0.0908203,0.115448,0.137665,0.158112,0.174561,0.186249,0.199738,0.213226,0.227509,0.23584,0.234833,0.22583,0.205841,0.177307,0.141144,0.0960388,0.0465698,-0.00335693,-0.0511475,-0.0973206,-0.139069,-0.180664,-0.215698,-0.246704,-0.275848,-0.302002,-0.325226,-0.340668,-0.348053,-0.348175,-0.339142,-0.32196,-0.295776,-0.265717,-0.232941,-0.200745,-0.167999,-0.13382,-0.100739,-0.0701294,-0.0450439,-0.0241699,-0.003479,0.0171204,0.0326233,0.0386658,0.0361023,0.0343018,0.0400085,0.0522766,0.0630798,0.0710754,0.074646,0.0794678,0.0882568,0.0944214,0.0927429,0.0794678,0.0563049,0.0338135,0.0157166,0.00482178,0.00241089,0.00967407,0.0270996,0.0541687,0.086792,0.122009,0.152283,0.171936,0.176178,0.168396,0.153748,0.140472,0.13269,0.130127,0.131012,0.132629,0.135437,0.138794,0.140472,0.13504,0.118469,0.0925598,0.0608826,0.028717,-0.0012207,-0.0269775,-0.0499268,-0.0693359,-0.0860291,-0.0987244,-0.111603,-0.121613,-0.131531,-0.136444,-0.135712,-0.127777,-0.11377,-0.0889893,-0.0555115,-0.0162354,0.0236816,0.0586548,0.0879211,0.110321,0.128265,0.142944,0.154572,0.16275,0.170868,0.179596,0.189117,0.194977,0.194366,0.18396,0.165894,0.138458,0.101624,0.0587769,0.0142212,-0.0304565,-0.0718079,-0.111267,-0.147125,-0.177917,-0.20462,-0.22934,-0.251801,-0.271881,-0.290344,-0.302277,-0.308655,-0.306183,-0.298737,-0.284576,-0.264557,-0.237061,-0.204773,-0.170593,-0.135315,-0.101532,-0.0684509,-0.0394592,-0.013031,0.0104065,0.0289307,0.0424805,0.0488586,0.0457764,0.0358276,0.0205994,0.00765991,-0.00128174,-0.00296021,0,0.00817871,0.0198059,0.0318909,0.0455017,0.0533447,0.0536194,0.0418701,0.0198669,-0.00543213,-0.0265198,-0.0369873,-0.037384,-0.0271912,-0.00335693,0.0326843,0.0792542,0.131409,0.174713,0.205109,0.215302,0.212219,0.200409,0.185303,0.167999,0.153748,0.145569,0.145844,0.149933,0.155579,0.157318,0.153412,0.140259,0.117584,0.0867004,0.0528259,0.0194702,-0.00912476,-0.0351562,-0.0577087,-0.0775757,-0.094574,-0.107056,-0.115692,-0.124756,-0.13147,-0.133484,-0.129333,-0.115448,-0.0941467,-0.0654907,-0.0323486,0.00241089,0.0359192,0.0617981,0.0823364,0.0954895,0.105164,0.112,0.119537,0.128448,0.138397,0.149536,0.159851,0.16571,0.164032,0.152069,0.130859,0.100739,0.0653687,0.0259094,-0.0135498,-0.0516052,-0.0870361,-0.118134,-0.145569,-0.167908,-0.187927,-0.205902,-0.223694,-0.239594,-0.251221,-0.258514,-0.257782,-0.253082,-0.24408,-0.231079,-0.213226,-0.189941,-0.165039,-0.138123,-0.112946,-0.0877991,-0.0621338,-0.0344238,-0.00637817,0.016449,0.032074,0.0385132,0.037323,0.0331421,0.0220032,0.00509644,-0.0198669,-0.0448914,-0.0593262,-0.0584412,-0.0434875,-0.0237732,-0.00878906,0.00289917,0.0137024,0.0259705,0.0310059,0.0205994,-0.00256348,-0.0287781,-0.0415344,-0.038269,-0.0190735,0.00946045,0.0432129,0.0874634,0.138245,0.18866,0.227722,0.248383,0.251617,0.240936,0.222809,0.202759,0.184174,0.173431,0.169525,0.169525,0.168121,0.164642,0.157715,0.14679,0.127167,0.0968323,0.0589294,0.0189209,-0.0144958,-0.0418091,-0.06604,-0.0890503,-0.113098,-0.129608,-0.140808,-0.147919,-0.153687,-0.156372,-0.151611,-0.138794,-0.118591,-0.0940247,-0.0673828,-0.0380554,-0.00750732,0.0197449,0.0435486,0.061615,0.0779724,0.0956421,0.115784,0.136047,0.153564,0.168243,0.178192,0.183624,0.180267,0.16745,0.143768,0.115112,0.0819397,0.0487366,0.0159607,-0.0147095,-0.0410767,-0.0654907,-0.0895996,-0.113434,-0.140686,-0.168335,-0.195374,-0.221344,-0.243958,-0.261536,-0.271271,-0.269989,-0.260529,-0.243347,-0.220795,-0.196442,-0.170013,-0.142761,-0.116852,-0.0928955,-0.0724792,-0.0526733,-0.0314636,-0.0110779,0.00778198,0.0202026,0.0264282,0.0276489,0.0236816,0.0140381,-0.00335693,-0.02771,-0.0500793,-0.0654907,-0.0664978,-0.0556335,-0.0424194,-0.0276489,-0.0145569,0.0017395,0.0168457,0.0236816,0.0179749,0.000610352,-0.0161133,-0.0249634,-0.0184021,-0.000335693,0.0293274,0.0681763,0.11496,0.16684,0.216034,0.253632,0.271667,0.273346,0.257996,0.233276,0.205841,0.182556,0.166992,0.159271,0.155701,0.152618,0.148804,0.140747,0.125702,0.100342,0.0626221,0.0168457,-0.0281067,-0.065155,-0.093689,-0.115112,-0.131012,-0.139252,-0.142151,-0.140869,-0.140747,-0.141754,-0.143555,-0.141357,-0.133698,-0.119812,-0.0992737,-0.0716248,-0.0369263,0.00491333,0.0455627,0.0819397,0.109131,0.13028,0.146454,0.158661,0.166168,0.168335,0.168396,0.167664,0.167572,0.165771,0.158661,0.142822,0.121002,0.0926819,0.0620117,0.0267029,-0.00952148,-0.0458984,-0.0798035,-0.111267,-0.139679,-0.164551,-0.186646,-0.204773,-0.220673,-0.234375,-0.243347,-0.247437,-0.246307,-0.23941,-0.22699,-0.210815,-0.191803,-0.169128,-0.144226,-0.11731,-0.0916138,-0.069458,-0.0484619,-0.0283203,-0.00717163,0.0135498,0.0289917,0.0366516,0.0381775,0.0327454,0.0214233,0.00402832,-0.0210876,-0.0484009,-0.0709534,-0.0845642,-0.0846252,-0.0730896,-0.0536804,-0.0307922,-0.00631714,0.0170593,0.0366516,0.045166,0.039856,0.0244446,0.00576782,-0.00717163,-0.00839233,0.00442505,0.0298767,0.0677185,0.113556,0.165436,0.216095,0.256165,0.275513,0.272949,0.251129,0.219208,0.184357,0.149658,0.122894,0.101868,0.0900574,0.085907,0.0856323,0.085022,0.0771179,0.0585938,0.0326843,0.00167847,-0.0290527,-0.0575256,-0.0805359,-0.0986633,-0.110413,-0.118134,-0.121002,-0.120209,-0.118988,-0.116791,-0.113953,-0.108124,-0.0954285,-0.077301,-0.0516663,-0.0222168,0.0122681,0.0476379,0.0798035,0.104767,0.120941,0.127655,0.12738,0.126038,0.123413,0.124084,0.123566,0.125763,0.131622,0.135712,0.137573,0.130188,0.114502,0.0895386,0.0584412,0.0228882,-0.0149536,-0.0524902,-0.0883789,-0.119873,-0.14502,-0.164703,-0.17865,-0.188934,-0.197845,-0.204163,-0.209595,-0.213013,-0.212402,-0.20697,-0.197113,-0.185028,-0.171936,-0.155426,-0.135834,-0.11261,-0.0889282,-0.0669861,-0.0455627,-0.0239563,-0.00012207,0.0222778,0.0414124,0.052948,0.0583801,0.0564575,0.050415,0.0371094,0.0148926,-0.0145569,-0.0488586,-0.0799866,-0.0993958,-0.10498,-0.0961609,-0.0789185,-0.0556946,-0.0328979,-0.0109253,0.00878906,0.0226135,0.024353,0.0113525,-0.0104065,-0.0303955,-0.0350952,-0.0230103,0.00302124,0.0377808,0.0792542,0.129333,0.183075,0.233093,0.264893,0.270599,0.251282,0.217773,0.182007,0.149658,0.124512,0.10611,0.0948181,0.094635,0.0970459,0.100006,0.097168,0.0832214,0.0610657,0.0299988,-0.00570679,-0.0414124,-0.0697937,-0.090271,-0.102539,-0.110413,-0.115112,-0.116455,-0.113007,-0.106903,-0.1008,-0.0967102,-0.0930786,-0.0838928,-0.0673828,-0.0420227,-0.0131531,0.0187988,0.0491333,0.0775757,0.100677,0.116974,0.126434,0.131622,0.135437,0.138855,0.142273,0.142883,0.141998,0.140259,0.134827,0.124847,0.106903,0.0808105,0.052002,0.0203247,-0.011261,-0.0422668,-0.0719604,-0.0991211,-0.122223,-0.142548,-0.156921,-0.171204,-0.182404,-0.193085,-0.202484,-0.207733,-0.210052,-0.205292,-0.195099,-0.178802,-0.157196,-0.134705,-0.109528,-0.0834961,-0.0574646,-0.032959,-0.0138245,6.10352e-05,0.0119324,0.0224915,0.0312195,0.0367126,0.0344238,0.0276489,0.0172424,0.0038147,-0.0124817,-0.0377808,-0.0667725,-0.0969849,-0.118988,-0.127655,-0.123505,-0.111542,-0.0948181,-0.074646,-0.052948,-0.032074,-0.0152283,-0.0109253,-0.0140991,-0.0246277,-0.0328064,-0.0317383,-0.0175171,0.0134277,0.0543518,0.103363,0.155853,0.208466,0.254822,0.285706,0.294891,0.279999,0.246765,0.205505,0.166565,0.137238,0.11618,0.103638,0.0960388,0.0949707,0.0957642,0.0919495,0.077301,0.0531616,0.0171814,-0.0215454,-0.0597229,-0.0910645,-0.114838,-0.130127,-0.137451,-0.138519,-0.133087,-0.124084,-0.113556,-0.103424,-0.0925598,-0.0804749,-0.0654907,-0.045166,-0.0206604,0.0085144,0.0397949,0.0693359,0.0955811,0.117249,0.130615,0.139404,0.142944,0.145447,0.146637,0.149597,0.150482,0.150482,0.148468,0.142151,0.131531,0.114838,0.091156,0.060791,0.0269775,-0.0065918,-0.0391235,-0.0691223,-0.0967102,-0.120667,-0.139008,-0.152405,-0.161285,-0.168243,-0.173828,-0.177643,-0.181488,-0.182007,-0.180145,-0.173889,-0.164429,-0.152679,-0.138,-0.121735,-0.10321,-0.0838318,-0.0645752,-0.0461121,-0.0314026,-0.0175781,-0.00537109,0.0071106,0.0163879,0.0190735,0.0159607,0.00759888,-0.00543213,-0.0213318,-0.0437012,-0.0699463,-0.0983887,-0.124023,-0.141205,-0.146515,-0.139465,-0.122223,-0.0983276,-0.0698547,-0.0404663,-0.0144348,0.00750732,0.0204773,0.0255127,0.0212708,0.0137024,0.0110168,0.0202026,0.0423584,0.0752258,0.11261,0.153351,0.19516,0.236511,0.265961,0.277527,0.266113,0.235443,0.195709,0.155762,0.118469,0.0877991,0.0643616,0.0485229,0.0415344,0.0404663,0.0386658,0.0332947,0.0198669,-0.00140381,-0.0283203,-0.0555725,-0.0812073,-0.098114,-0.109924,-0.113342,-0.111664,-0.104767,-0.0915527,-0.0759583,-0.0591125,-0.0441589,-0.0302124,-0.0158386,0.000335693,0.0206604,0.0432739,0.0667114,0.0900574,0.111664,0.130066,0.143829,0.151215,0.153229,0.152344,0.149719,0.145172,0.140869,0.132751,0.125702,0.115631,0.105103,0.0890503,0.0679321,0.0410767,0.0114136,-0.0187378,-0.0478516,-0.0763855,-0.102203,-0.125702,-0.14444,-0.15744,-0.16806,-0.172546,-0.17691,-0.179718,-0.182831,-0.183228,-0.180328,-0.172821,-0.161346,-0.150055,-0.136658,-0.122345,-0.104431,-0.0836792,-0.0628052,-0.0444336,-0.0309448,-0.0211487,-0.013031,-0.00402832,0.00448608,0.0100098,0.00906372,0.00167847,-0.00805664,-0.0171814,-0.0248413,-0.0376587,-0.0575867,-0.0881348,-0.116913,-0.135498,-0.137177,-0.124634,-0.107666,-0.0895996,-0.0684509,-0.040863,-0.00750732,0.0234375,0.0402832,0.0393982,0.0255127,0.011261,0.0071106,0.0148315,0.0333557,0.058197,0.0891418,0.128662,0.175781,0.222137,0.255585,0.265961,0.248322,0.209991,0.161407,0.115021,0.0764465,0.0481873,0.0289307,0.0188599,0.0204773,0.0297241,0.0424194,0.0493164,0.0436096,0.0232239,-0.00448608,-0.0343628,-0.0570374,-0.0739746,-0.0814209,-0.0841675,-0.0777893,-0.0636292,-0.0438232,-0.0225525,-0.00442505,0.00900269,0.019928,0.0289917,0.0395203,0.0506592,0.0663147,0.0847778,0.103882,0.121948,0.132751,0.136444,0.134094,0.128387,0.120667,0.112885,0.104218,0.09375,0.086853,0.0804138,0.0759583,0.0684509,0.0546875,0.0349121,0.00839233,-0.0203247,-0.0505371,-0.0789795,-0.103546,-0.126251,-0.142487,-0.154755,-0.159332,-0.159515,-0.155518,-0.153168,-0.152283,-0.153961,-0.157257,-0.157196,-0.152954,-0.144501,-0.134216,-0.121826,-0.108185,-0.0899963,-0.0691833,-0.0479126,-0.0312805,-0.0212708,-0.0162964,-0.0147705,-0.0108032,-0.00744629,-0.00167847,-0.000793457,-0.0015564,-0.00524902,-0.0115356,-0.0186462,-0.029541,-0.0488586,-0.0752869,-0.107513,-0.134979,-0.148926,-0.145569,-0.12912,-0.105988,-0.0794067,-0.0517578,-0.020752,0.0104675,0.0324707,0.0395203,0.0289917,0.0118103,-0.00180054,-0.00100708,0.0137024,0.0380554,0.0706787,0.107788,0.151001,0.19397,0.228851,0.2453,0.238647,0.209656,0.169678,0.125977,0.090332,0.0649109,0.0506592,0.0465698,0.0498657,0.057373,0.06604,0.0706177,0.0671692,0.0505371,0.0256958,-0.00457764,-0.0271912,-0.0426941,-0.0470581,-0.0448914,-0.0368347,-0.0245667,-0.00979614,0.00396729,0.0147705,0.0194092,0.0195923,0.0187988,0.0190735,0.0220032,0.0317383,0.0469666,0.0677795,0.0889282,0.10556,0.113159,0.112427,0.10672,0.0977173,0.086853,0.074646,0.0617371,0.0526733,0.0478516,0.0465698,0.0452881,0.0393372,0.0281067,0.0103455,-0.0125427,-0.0383911,-0.0652466,-0.0906677,-0.112091,-0.130615,-0.140869,-0.147125,-0.145172,-0.140808,-0.135101,-0.131805,-0.132629,-0.136108,-0.138062,-0.138458,-0.134094,-0.126831,-0.11557,-0.102356,-0.0836182,-0.0642395,-0.0426025,-0.0248413,-0.012207,-0.0067749,-0.0065918,-0.00967407,-0.0120239,-0.0131531,-0.013092,-0.0143738,-0.0187378,-0.0250244,-0.0322876,-0.0400085,-0.0516052,-0.069458,-0.094635,-0.121277,-0.143158,-0.150604,-0.14502,-0.128845,-0.108398,-0.0849609,-0.0579224,-0.0273132,0.00234985,0.0228271,0.0291138,0.0256958,0.0181274,0.0171814,0.0264282,0.0452881,0.0723572,0.10437,0.140015,0.177307,0.210724,0.234283,0.241882,0.231812,0.204773,0.169464,0.132202,0.100281,0.0767822,0.0632324,0.0579834,0.0575256,0.0597229,0.0624084,0.0606689,0.052002,0.0348206,0.0115967,-0.0120239,-0.0316772,-0.0405273,-0.0434875,-0.0386047,-0.0300598,-0.0173035,-0.00457764,0.00665283,0.0131531,0.0157776,0.016449,0.017395,0.0205383,0.0269165,0.0375061,0.0525513,0.0707397,0.0873718,0.100861,0.104828,0.101074,0.0923462,0.0797424,0.0656433,0.0528259,0.040741,0.0322876,0.0263062,0.0216064,0.0175171,0.0108643,0.000396729,-0.0140381,-0.033905,-0.0542297,-0.0745544,-0.0931396,-0.106171,-0.117371,-0.123291,-0.126923,-0.126434,-0.12384,-0.120331,-0.118713,-0.119324,-0.119812,-0.119598,-0.115112,-0.10611,-0.0941467,-0.0792542,-0.0661011,-0.0531616,-0.041626,-0.0322266,-0.0275879,-0.0284424,-0.0324707,-0.040863,-0.0469666,-0.0506592,-0.0498047,-0.0456238,-0.0421448,-0.0409546,-0.0432739,-0.0468445,-0.0534973,-0.065979,-0.0845642,-0.109314,-0.134552,-0.15155,-0.155762,-0.142822,-0.11853,-0.0877075,-0.0540161,-0.0191345,0.0160522,0.0476379,0.0698547,0.0782471,0.0726318,0.061554,0.0516663,0.0532227,0.0643005,0.0848389,0.108917,0.135895,0.16571,0.194489,0.21759,0.224426,0.213013,0.183075,0.145111,0.106171,0.0754395,0.0526733,0.0420227,0.0365906,0.0375977,0.041687,0.0453796,0.0490723,0.0441589,0.0317993,0.0140381,-0.00509644,-0.0189209,-0.0238953,-0.0205994,-0.0113525,0.000457764,0.0107422,0.0184631,0.0255127,0.0281067,0.0273132,0.0224304,0.0183105,0.0167236,0.0213318,0.0326233,0.0482483,0.0645752,0.0785828,0.0848389,0.0830994,0.0735474,0.0594482,0.0437012,0.0294495,0.0181885,0.00946045,0.00564575,0.00592041,0.00985718,0.0137024,0.0124207,0.00442505,-0.0112,-0.0293884,-0.0484009,-0.0657654,-0.0813293,-0.0934143,-0.101471,-0.103424,-0.102081,-0.098938,-0.0967712,-0.0959167,-0.0972595,-0.100861,-0.105225,-0.108124,-0.10907,-0.105316,-0.100403,-0.0932312,-0.086853,-0.0789795,-0.0719604,-0.065918,-0.0603943,-0.0583191,-0.058197,-0.0603333,-0.0580444,-0.052887,-0.0432739,-0.0334778,-0.0273132,-0.025238,-0.0265198,-0.0281067,-0.0330811,-0.0420227,-0.0601196,-0.0844421,-0.107788,-0.120605,-0.119873,-0.104095,-0.0847778,-0.061676,-0.0370483,-0.00827026,0.0230103,0.0495911,0.0642395,0.0626831,0.0504761,0.0369263,0.0283203,0.0313416,0.0418701,0.0594482,0.0808716,0.108917,0.140747,0.174377,0.199127,0.208527,0.198395,0.173096,0.139526,0.107391,0.081604,0.0632935,0.0531006,0.0487366,0.0491333,0.0547791,0.0622864,0.0657043,0.0622253,0.048645,0.0306091,0.0105286,-0.00314331,-0.00946045,-0.00878906,-0.00509644,0.000793457,0.00564575,0.0101318,0.0138245,0.0144348,0.0132141,0.00817871,0.00402832,0.0020752,0.00491333,0.0157166,0.0294495,0.0452271,0.0571289,0.0620728,0.06073,0.0562439,0.0487976,0.0404053,0.0313416,0.0236206,0.0179749,0.0167236,0.0186462,0.0197449,0.0195312,0.0148315,0.00509644,-0.00906372,-0.0258484,-0.0426025,-0.0591125,-0.0720825,-0.0838928,-0.0919495,-0.0977783,-0.0992737,-0.0991821,-0.0993347,-0.101013,-0.105835,-0.11142,-0.114899,-0.116852,-0.114227,-0.109528,-0.100464,-0.0910645,-0.0803223,-0.0697937,-0.0610046,-0.0542908,-0.0498047,-0.0468445,-0.0465088,-0.0469666,-0.0469055,-0.0410156,-0.0324097,-0.0218811,-0.0149536,-0.0139465,-0.0168457,-0.0226135,-0.0293274,-0.0400085,-0.0558472,-0.0769653,-0.0996704,-0.115021,-0.118469,-0.108734,-0.0920715,-0.0697937,-0.0471802,-0.0216675,0.00341797,0.0270386,0.0452271,0.0547791,0.0543518,0.0490723,0.0418091,0.0419312,0.0518188,0.0681152,0.0890503,0.110321,0.131744,0.156097,0.17865,0.19812,0.200745,0.186646,0.15744,0.122345,0.0920715,0.0677185,0.0510864,0.0379944,0.0289917,0.0272522,0.0288696,0.036438,0.0404053,0.0396729,0.0299377,0.0152893,0.00106812,-0.00924683,-0.0137024,-0.0125427,-0.00973511,-0.00610352,-0.00189209,0.00424194,0.0134277,0.0222168,0.028717,0.0307312,0.0292664,0.0289917,0.0324707,0.0397949,0.0501404,0.057312,0.0610046,0.0588684,0.0543518,0.0471802,0.0391235,0.0299377,0.0195312,0.0100708,0.00228882,-0.00234985,-0.00415039,-0.00509644,-0.00604248,-0.00967407,-0.0174561,-0.0269775,-0.0391235,-0.0514221,-0.0627441,-0.0732117,-0.0822754,-0.089325,-0.0939026,-0.0953674,-0.0930176,-0.0900574,-0.0878601,-0.0869141,-0.0881958,-0.0882568,-0.0890503,-0.0857849,-0.0812683,-0.077179,-0.0743713,-0.0726318,-0.0715332,-0.0688477,-0.0661011,-0.0622864,-0.0617371,-0.0618896,-0.0632324,-0.0614014,-0.0549011,-0.0465088,-0.0375977,-0.032074,-0.0281067,-0.0253601,-0.0223389,-0.0216675,-0.0275269,-0.0386047,-0.0546265,-0.0704651,-0.081665,-0.0856323,-0.0804749,-0.0670471,-0.0473022,-0.0229492,0.00161743,0.0264282,0.0501404,0.0698547,0.0808716,0.0794678,0.0673828,0.0502014,0.0403442,0.0378418,0.0435486,0.0531616,0.0658264,0.0844421,0.110535,0.13739,0.158936,0.164307,0.153412,0.129181,0.100189,0.072876,0.0479126,0.0289307,0.0163879,0.0114746,0.0139465,0.0245056,0.0353699,0.0481262,0.0548401,0.0536804,0.0448914,0.0334778,0.0236206,0.0181885,0.0179749,0.0189209,0.0193176,0.0203247,0.024292,0.0306091,0.0386047,0.0422668,0.0395203,0.0347595,0.0310059,0.0305481,0.0323486,0.0350342,0.0350952,0.0344849,0.0309448,0.0261841,0.0210876,0.0148315,0.00952148,0.00424194,-0.000671387,-0.00442505,-0.00750732,-0.00683594,-0.00430298,-0.00280762,-0.00704956,-0.0158997,-0.0263672,-0.0370483,-0.0467834,-0.0567932,-0.0669861,-0.0767212,-0.0833435,-0.0866394,-0.0863037,-0.0848389,-0.0834961,-0.0828247,-0.0834351,-0.0846863,-0.0863037,-0.0883179,-0.0898743,-0.0878601,-0.0853577,-0.0832214,-0.0811462,-0.0779724,-0.0708618,-0.0620117,-0.0517578,-0.0428772,-0.0383301,-0.0349121,-0.0297241,-0.0216675,-0.0114746,-0.0032959,-0.00134277,-0.00335693,-0.00704956,-0.00946045,-0.0108032,-0.0148315,-0.0245056,-0.0396729,-0.0576477,-0.0720215,-0.0774536,-0.0762329,-0.069458,-0.0601196,-0.0503235,-0.0343018,-0.0145569,0.00906372,0.0313416,0.0425415,0.0440369,0.0350952,0.0259705,0.0202637,0.0204773,0.0249634,0.0311279,0.0420837,0.0587158,0.0834961,0.113281,0.139862,0.154083,0.152557,0.135162,0.111328,0.0863647,0.0645752,0.0476379,0.0354919,0.0302124,0.0328064,0.0437622,0.0608826,0.0761108,0.0830078,0.0798035,0.0680542,0.0522156,0.0393372,0.0293884,0.0226135,0.019989,0.0178528,0.0209961,0.0270996,0.0357056,0.0444946,0.0466309,0.0413513,0.0312805,0.0184631,0.00839233,0.00128174,-0.000213623,0.00106812,0.00415039,0.00891113,0.0124817,0.01651,0.0184631,0.0168457,0.0127563,0.00457764,-0.00537109,-0.0143738,-0.0205383,-0.0245056,-0.0252991,-0.0278625,-0.0307312,-0.0333557,-0.0357666,-0.0359802,-0.0379944,-0.041748,-0.0480652,-0.0555115,-0.0636292,-0.0679932,-0.0713501,-0.0726929,-0.0743713,-0.0777283,-0.0787354,-0.0801392,-0.0793152,-0.0768433,-0.0739746,-0.0712891,-0.069458,-0.0677185,-0.0646973,-0.0594482,-0.0534973,-0.0465698,-0.0410156,-0.0384521,-0.0361633,-0.0341492,-0.0296631,-0.0257568,-0.0221558,-0.0221558,-0.0232239,-0.0214233,-0.0176392,-0.0144348,-0.0152283,-0.0212708,-0.0340881,-0.0473022,-0.0626221,-0.0739746,-0.0852966,-0.0922241,-0.0907288,-0.0800781,-0.0599365,-0.0358276,-0.0109253,0.0142822,0.0346375,0.0479736,0.0497437,0.0415344,0.0257568,0.0139465,0.00793457,0.0107422,0.0228271,0.0422058,0.069397,0.104034,0.139008,0.165894,0.177307,0.171539,0.151062,0.123688,0.094635,0.0700073,0.052002,0.0424194,0.0418701,0.049469,0.0621338,0.0760498,0.0861206,0.0875854,0.0794067,0.0621338,0.041626,0.0226135,0.0101318,0.00415039,0.00247192,0.00268555,0.00363159,0.00750732,0.0124207,0.0157166,0.0125427,0.00482178,-0.00491333,-0.0112,-0.0109253,-0.0050354,0.00390625,0.0153809,0.0239563,0.0309448,0.0349731,0.0330811,0.0269775,0.0179138,0.00738525,-0.00314331,-0.0120239,-0.0170593,-0.01651,-0.0104065,-0.00476074,-0.00112915,-0.00128174,-0.00576782,-0.0118103,-0.0216675,-0.0340271,-0.049408,-0.0649719,-0.0767212,-0.0855103,-0.0887146,-0.0885925,-0.0861206,-0.081604,-0.0787354,-0.0741577,-0.0718689,-0.070343,-0.0691833,-0.069519,-0.0691223,-0.0710754,-0.0701294,-0.0679932,-0.0623474,-0.0539551,-0.0468445,-0.0401917,-0.0351562,-0.0302124,-0.024231,-0.0188599,-0.0154419,-0.0146179,-0.0136108,-0.0151672,-0.0159607,-0.0177307,-0.0205383,-0.0248413,-0.0324097,-0.0447693,-0.0606689,-0.078064,-0.0904846,-0.0956421,-0.0928955,-0.0862427,-0.072876,-0.0542297,-0.0266418,0.0050354,0.0314636,0.0477905,0.0507507,0.0471191,0.0386047,0.0301208,0.0245667,0.0218811,0.0269165,0.040863,0.065918,0.098175,0.131622,0.1604,0.176697,0.176849,0.161682,0.13443,0.103088,0.0711365,0.0465088,0.0280457,0.0202026,0.0226746,0.0338135,0.0497437,0.0636902,0.0717468,0.0686035,0.0566406,0.0406799,0.0253601,0.0122681,0.00302124,-0.00195312,-0.0020752,0.003479,0.0128174,0.0235596,0.0316772,0.0357056,0.0346375,0.0302124,0.0234985,0.0178528,0.0162354,0.0188599,0.0245667,0.0312805,0.0337524,0.0326843,0.0297852,0.0226135,0.0139465,0.00167847,-0.0107422,-0.0215454,-0.0275879,-0.0279236,-0.0256348,-0.0202637,-0.0161133,-0.0145569,-0.016571,-0.0226746,-0.0322876,-0.0440979,-0.0568542,-0.0706177,-0.0827637,-0.0913391,-0.0933533,-0.09021,-0.0829468,-0.0742188,-0.0671692,-0.0618896,-0.0590515,-0.057312,-0.0569153,-0.0595398,-0.0645752,-0.0713501,-0.0757141,-0.0757751,-0.0699463,-0.0602722,-0.048584,-0.0383911,-0.028656,-0.0188599,-0.00939941,-0.00228882,-0.00289917,-0.00878906,-0.017395,-0.0240173,-0.0255737,-0.0259094,-0.0267029,-0.029541,-0.032959,-0.036499,-0.0410156,-0.0487366,-0.0594482,-0.070343,-0.0767822,-0.0762939,-0.0681763,-0.0552368,-0.0389404,-0.0183105,0.00448608,0.0245056,0.0360413,0.0383911,0.0333557,0.025177,0.0200806,0.0179138,0.0212708,0.0307922,0.0504761,0.0766296,0.109467,0.136322,0.152557,0.156769,0.147034,0.12912,0.105316,0.0794678,0.057373,0.0421448,0.037384,0.0421448,0.0531616,0.0663147,0.077179,0.0837708,0.0805969,0.0689392,0.0515442,0.0337524,0.0183105,0.00946045,0.00531006,0.00726318,0.0128784,0.0236206,0.0348206,0.0428162,0.0456238,0.0406189,0.0306702,0.0206604,0.0116882,0.00564575,0.00280762,0.00448608,0.00827026,0.0147705,0.0179138,0.0189209,0.015564,0.0104065,0.00112915,-0.00979614,-0.0209961,-0.0306702,-0.0354919,-0.0360413,-0.0340271,-0.0308838,-0.0292053,-0.0284424,-0.0292664,-0.0334167,-0.0402832,-0.0512085,-0.0617981,-0.0714722,-0.0795898,-0.0826721,-0.0833435,-0.0794678,-0.0731506,-0.0664368,-0.0604553,-0.0566406,-0.0542297,-0.0524902,-0.053009,-0.0555725,-0.0599365,-0.0632935,-0.0622864,-0.056366,-0.0468445,-0.0393982,-0.0317383,-0.0248413,-0.0168457,-0.00958252,-0.00643921,-0.0101318,-0.0175781,-0.025177,-0.028717,-0.0296021,-0.0306702,-0.0353088,-0.0406189,-0.0465698,-0.050415,-0.0583191,-0.0690002,-0.0822144,-0.0908813,-0.0908203,-0.0812073,-0.0668335,-0.048645,-0.0281067,-0.00476074,0.0184631,0.0381165,0.0462341,0.0453796,0.0376587,0.0293274,0.0257568,0.0274353,0.0354919,0.0508118,0.0730286,0.101349,0.129059,0.15155,0.162476,0.157776,0.142487,0.115631,0.0899963,0.0653076,0.048645,0.0412903,0.0412903,0.0488586,0.0603333,0.0720215,0.0823364,0.0847778,0.0769043,0.0617371,0.0423584,0.0264282,0.0148926,0.0109253,0.0105896,0.0150452,0.0220032,0.0313416,0.0404053,0.0439453,0.0401306,0.0306091,0.0176392,0.00637817,-0.00247192,-0.00637817,-0.00637817,-0.00289917,0.00302124,0.00683594,0.00857544,0.00564575,0.0015564,-0.00650024,-0.0147705,-0.0255127,-0.0340881,-0.0387878,-0.038269,-0.0336304,-0.028595,-0.024292,-0.0226135,-0.0214844,-0.024353,-0.0280457,-0.0361633,-0.045105,-0.053894,-0.0613403,-0.0644226,-0.0648193,-0.0627441,-0.0594482,-0.0548401,-0.0521545,-0.0500793,-0.0504761,-0.0522156,-0.0554504,-0.0603333,-0.0657654,-0.0708008,-0.0741577,-0.072876,-0.0693359,-0.0620117,-0.0544434,-0.0461121,-0.0378418,-0.0296631,-0.0239563,-0.0205994,-0.020752,-0.0246277,-0.0292664,-0.0336914,-0.0368347,-0.0387268,-0.0403442,-0.0437012,-0.0481873,-0.0534973,-0.0576477,-0.0597229,-0.0592041,-0.0568542,-0.053009,-0.0452271,-0.0334167,-0.0169067,0.00140381,0.0173035,0.0279236,0.0330811,0.0334778,0.0315552,0.0294495,0.0296021,0.0306702,0.0378418,0.04953,0.0692749,0.092804,0.116455,0.13443,0.142609,0.140259,0.127991,0.109467,0.0899353,0.0715332,0.0578613,0.0491333,0.0487976,0.0551758,0.065918,0.0764465,0.0829468,0.0830078,0.0752258,0.060791,0.0447083,0.0309448,0.0196533,0.013092,0.0108032,0.0132141,0.0185852,0.0253601,0.0303345,0.0313416,0.0285339,0.0194702,0.00973511,-0.00088501,-0.00732422,-0.00958252,-0.00839233,-0.00396729,0.00106812,0.00576782,0.00866699,0.0106812,0.00799561,0.00357056,-0.00424194,-0.0111389,-0.0174561,-0.0209961,-0.021759,-0.019928,-0.0163879,-0.013092,-0.0118103,-0.0127563,-0.0162354,-0.021759,-0.0291138,-0.0396729,-0.0490723,-0.0593262,-0.0663147,-0.0710144,-0.0737,-0.073761,-0.0744934,-0.0729675,-0.0711975,-0.0693359,-0.068512,-0.0706177,-0.0726318,-0.074707,-0.0765076,-0.0770569,-0.0762939,-0.074707,-0.0689392,-0.0618896,-0.052002,-0.0405273,-0.0317383,-0.0248413,-0.0203247,-0.0169067,-0.0168457,-0.0190735,-0.0224304,-0.0269775,-0.0310059,-0.0356445,-0.0404663,-0.0457153,-0.0514832,-0.0555115,-0.0580444,-0.057312,-0.0536804,-0.0477905,-0.0369263,-0.0239563,-0.00817871,0.00564575,0.016449,0.024231,0.0291138,0.0296631,0.0292664,0.0258484,0.0268555,0.0306702,0.0418091,0.0586548,0.0804749,0.10321,0.123169,0.137054,0.14267,0.138458,0.125153,0.104492,0.0836182,0.0644836,0.0508728,0.0458984,0.0484619,0.0570374,0.0671692,0.0752869,0.0789185,0.0765686,0.0675049,0.052887,0.0376587,0.020813,0.00991821,0.00402832,0.0038147,0.00979614,0.0181885,0.0256958,0.0320129,0.0340881,0.032074,0.0249023,0.0155029,0.00726318,0.0017395,-0.000335693,0.00100708,0.00457764,0.0112,0.0157776,0.0189819,0.0198059,0.0166321,0.0101318,0.00201416,-0.00537109,-0.0110779,-0.015564,-0.0177917,-0.0191956,-0.0185242,-0.0187378,-0.0209351,-0.0241699,-0.0302734,-0.0374451,-0.0468445,-0.0558472,-0.0635681,-0.0691223,-0.0730896,-0.0759583,-0.0760498,-0.0761719,-0.0762329,-0.0748901,-0.0749817,-0.0742188,-0.0752258,-0.0757141,-0.0767212,-0.078064,-0.0761719,-0.0753784,-0.0722961,-0.0692749,-0.0644226,-0.0592651,-0.0521545,-0.0445557,-0.0387268,-0.0348206,-0.0313416,-0.0289307,-0.0255737,-0.0234985,-0.0245056,-0.0273743,-0.0333557,-0.0394592,-0.045105,-0.049469,-0.0536804,-0.0571899,-0.0556946,-0.0498657,-0.0362549,-0.0194092,-0.00100708,0.0138245,0.0245667,0.0322266,0.0363159,0.0377808,0.0342407,0.0263062,0.0201416,0.0188599,0.0272522,0.0422668,0.0634766,0.0857849,0.106445,0.122833,0.133362,0.134888,0.126831,0.11087,0.0889282,0.0681152,0.0510864,0.0424805,0.0413513,0.0489807,0.0584412,0.0687866,0.0751648,0.0766296,0.0736389,0.0633545,0.0498047,0.0343628,0.0202026,0.0118103,0.00918579,0.0138245,0.0206604,0.028656,0.0344238,0.0379333,0.0375061,0.0340881,0.0260925,0.0181885,0.0105896,0.00683594,0.00717163,0.00991821,0.0155029,0.0200806,0.0236816,0.0241089,0.0218811,0.0161743,0.00805664,-0.000396729,-0.00717163,-0.0126953,-0.0167236,-0.0195923,-0.0204163,-0.0206604,-0.0209351,-0.0249023,-0.0297241,-0.0368347,-0.0447083,-0.0536194,-0.0603333,-0.0668335,-0.0725403,-0.0761719,-0.0784607,-0.0798035,-0.0814819,-0.0818787,-0.0830994,-0.0845642,-0.0857849,-0.0875854,-0.0879211,-0.0870361,-0.0841064,-0.0809326,-0.0765076,-0.073822,-0.0699463,-0.0653687,-0.06073,-0.0556946,-0.0514221,-0.0483093,-0.0439453,-0.0390625,-0.0341492,-0.0267029,-0.0223389,-0.0185852,-0.0191345,-0.0230103,-0.0305481,-0.0383301,-0.0467834,-0.0516663,-0.0525513,-0.048584,-0.0368347,-0.0185852,0.00436401,0.0266418,0.0453796,0.0562439,0.0578003,0.0536194,0.0441589,0.0310059,0.0194702,0.0128174,0.0148315,0.0273132,0.049408,0.0759583,0.103424,0.125702,0.138458,0.139465,0.128448,0.107574,0.0813293,0.0556946,0.0359192,0.0252991,0.0250854,0.0339661,0.0482483,0.0645752,0.0759583,0.0827637,0.0803223,0.0697937,0.0546265,0.0371704,0.0228882,0.0137024,0.0123596,0.01651,0.0257568,0.0354919,0.0445557,0.0488586,0.0491943,0.0435486,0.0331421,0.0218201,0.0108643,0.00637817,0.00531006,0.0088501,0.0147705,0.0209351,0.025177,0.0270386,0.0257568,0.0203247,0.0108032,0.00146484,-0.00845337,-0.0147095,-0.0194702,-0.0210876,-0.0218201,-0.0218811,-0.0216064,-0.0245056,-0.0278625,-0.0354919,-0.0438232,-0.0532837,-0.0626831,-0.070343,-0.0762939,-0.0801392,-0.0821533,-0.0833435,-0.0836182,-0.0842896,-0.0858459,-0.0889282,-0.0923462,-0.098053,-0.100464,-0.101746,-0.0994568,-0.0952454,-0.0890503,-0.081665,-0.0726318,-0.0643616,-0.056366,-0.0512695,-0.0508728,-0.0507507,-0.0515442,-0.0493164,-0.046051,-0.040741,-0.036499,-0.0313416,-0.0275269,-0.0236816,-0.0218201,-0.0226135,-0.0262451,-0.0297852,-0.0292053,-0.0226135,-0.0110779,0.00430298,0.021759,0.0381165,0.0514221,0.0596619,0.0624695,0.0585938,0.0477905,0.0355835,0.0250244,0.0224304,0.028595,0.0426941,0.0631409,0.085022,0.105774,0.120209,0.124634,0.119049,0.103973,0.0817566,0.0579224,0.0376587,0.0265808,0.0241089,0.0319519,0.0448303,0.0599976,0.0734863,0.0807495,0.0812073,0.0733643,0.0609436,0.0458374,0.0302734,0.020752,0.0161133,0.0179138,0.0232239,0.0317383,0.0405273,0.0462341,0.0472412,0.0428162,0.0340271,0.0239563,0.0150452,0.0083313,0.00537109,0.00698853,0.00985718,0.0149536,0.0206604,0.0236206,0.0245056,0.0216675,0.0161133,0.00918579,0.00161743,-0.00357056,-0.00811768,-0.0101318,-0.0115967,-0.0122681,-0.0147705,-0.0175781,-0.0222778,-0.0290527,-0.0376587,-0.0473938,-0.0589294,-0.068512,-0.0769043,-0.08255,-0.0865173,-0.0892029,-0.090271,-0.0907288,-0.0921326,-0.0964355,-0.100281,-0.106232,-0.111084,-0.116516,-0.117706,-0.11792,-0.113678,-0.10498,-0.0924072,-0.0777893,-0.065155,-0.0553589,-0.0484009,-0.0424805,-0.0392761,-0.0383301,-0.0421448,-0.0461731,-0.0495911,-0.0509338,-0.0489807,-0.0448303,-0.0396118,-0.0298767,-0.0182495,-0.00280762,0.0147095,0.0297241,0.0414124,0.050415,0.0554504,0.0563049,0.0531616,0.0461121,0.0381165,0.0306702,0.0289307,0.0308838,0.0412903,0.0557861,0.074646,0.0932922,0.110077,0.120148,0.122162,0.114349,0.0994568,0.0787964,0.057312,0.0387268,0.0270386,0.0257568,0.0307312,0.0415344,0.0542297,0.0671082,0.0749817,0.0777283,0.0724792,0.0612793,0.0467834,0.0320129,0.0205994,0.0151672,0.0134277,0.0154419,0.020752,0.0273743,0.0337524,0.036499,0.0354309,0.0314026,0.0257568,0.0206604,0.0158997,0.0137634,0.0133667,0.0157166,0.017395,0.0196533,0.0214233,0.0222168,0.0224915,0.0205994,0.0194702,0.01651,0.0136108,0.0112,0.011261,0.0085144,0.00564575,0.00106812,-0.00436401,-0.0106812,-0.0176392,-0.0263062,-0.0355835,-0.045105,-0.0546875,-0.0633545,-0.0711365,-0.0779114,-0.0852356,-0.0908203,-0.0964966,-0.100952,-0.10611,-0.109863,-0.114014,-0.11618,-0.118317,-0.119202,-0.119385,-0.117188,-0.114014,-0.107666,-0.100281,-0.0916748,-0.0817566,-0.0717468,-0.0603333,-0.0502014,-0.0418091,-0.0381775,-0.036377,-0.0376587,-0.0386047,-0.0412903,-0.0441589,-0.0448914,-0.0433655,-0.0340881,-0.0195312,-6.10352e-05,0.0194092,0.0379944,0.0533447,0.0640259,0.0697937,0.0687866,0.0602722,0.0473022,0.0332947,0.0258484,0.0250854,0.0341492,0.0499878,0.0691833,0.0899353,0.108856,0.122955,0.128265,0.123077,0.108246,0.085968,0.0626221,0.041748,0.0302734,0.0258484,0.0280457,0.0354919,0.0445557,0.0540161,0.0602722,0.061676,0.0575256,0.0476379,0.0346985,0.0224915,0.0149536,0.012146,0.0135498,0.0161743,0.0201416,0.024231,0.0265808,0.0270996,0.0247803,0.0212708,0.0167236,0.0138855,0.0134888,0.0173035,0.0214844,0.02771,0.0326233,0.0355835,0.0356445,0.0326233,0.0285339,0.0238953,0.019928,0.017395,0.0158997,0.0175171,0.0192566,0.0213318,0.0214233,0.0185852,0.013031,0.00402832,-0.00744629,-0.0191956,-0.0303955,-0.0406189,-0.0496521,-0.0569763,-0.0624084,-0.0677185,-0.0725403,-0.0785828,-0.0856934,-0.0949097,-0.106903,-0.11792,-0.126984,-0.13382,-0.137665,-0.138458,-0.136841,-0.13147,-0.12323,-0.112488,-0.101807,-0.0920715,-0.0854492,-0.0795898,-0.0742188,-0.0691223,-0.0645752,-0.0612183,-0.0608826,-0.0579224,-0.0542908,-0.0475769,-0.0387878,-0.0293884,-0.0169678,-0.00280762,0.0154419,0.0327454,0.0479736,0.0583801,0.0633545,0.065094,0.0623474,0.0549622,0.0453796,0.0354919,0.0324097,0.0352478,0.0473938,0.061676,0.0783081,0.094696,0.108795,0.116974,0.118042,0.108521,0.091217,0.0708008,0.0518188,0.0386047,0.0310059,0.0313416,0.0368347,0.0470581,0.0587769,0.0680542,0.0719604,0.0691833,0.0594482,0.0468445,0.0307312,0.0179749,0.00912476,0.00610352,0.00765991,0.0116882,0.0166321,0.0210876,0.0245667,0.0238342,0.0203247,0.0127563,0.00582886,-0.000732422,-0.0015564,0.000213623,0.00491333,0.0107422,0.0169678,0.0238342,0.0284424,0.0306091,0.0289307,0.025238,0.0228882,0.0201416,0.0202026,0.0200806,0.0223389,0.0249023,0.0279236,0.0282593,0.0246887,0.0188599,0.00958252,-0.00106812,-0.0124207,-0.0250244,-0.036499,-0.0468445,-0.0546265,-0.0605469,-0.0654297,-0.070343,-0.0765686,-0.0842285,-0.0916748,-0.101746,-0.111603,-0.122223,-0.128998,-0.134155,-0.134766,-0.132202,-0.127167,-0.118591,-0.107513,-0.094574,-0.0829468,-0.073822,-0.066925,-0.0622253,-0.0597229,-0.0576477,-0.0569763,-0.057251,-0.0562439,-0.0542297,-0.0476379,-0.0357056,-0.0189209,0.00012207,0.0181885,0.033905,0.0458374,0.0557861,0.0610046,0.0620117,0.0555725,0.0437012,0.0306702,0.0222168,0.0209961,0.0280457,0.0391846,0.0524902,0.0667725,0.0820923,0.0960388,0.105835,0.105988,0.0965881,0.0795288,0.061615,0.0467834,0.0377197,0.0343018,0.0360413,0.0412903,0.049469,0.058136,0.0672607,0.0718689,0.0708008,0.0636292,0.0518799,0.0394592,0.0292053,0.0225525,0.0176392,0.0159607,0.0145569,0.013092,0.0124817,0.012085,0.0105896,0.00784302,0.00308228,-0.000213623,-0.00280762,-0.00222778,0.000549316,0.00509644,0.00845337,0.0110168,0.0123596,0.0144958,0.015625,0.0181885,0.020813,0.0223389,0.0261841,0.028595,0.0331421,0.0353088,0.0371094,0.0353699,0.0315552,0.0245667,0.0167847,0.00817871,6.10352e-05,-0.00784302,-0.0153809,-0.0226135,-0.029541,-0.037384,-0.046051,-0.0561218,-0.0688477,-0.0841675,-0.0997925,-0.113495,-0.124695,-0.133087,-0.136383,-0.137329,-0.134216,-0.128998,-0.121063,-0.112885,-0.104431,-0.0987244,-0.0940247,-0.0917969,-0.0888062,-0.0866394,-0.0840149,-0.0804138,-0.0754395,-0.0686035,-0.0570374,-0.0410156,-0.0194092,0.00222778,0.0232849,0.0397949,0.0521545,0.0614624,0.0662537,0.0649719,0.0565186,0.0428772,0.0278625,0.0187988,0.017395,0.0233459,0.0336304,0.0466309,0.0614014,0.0775757,0.0909424,0.0983887,0.0954285,0.0823364,0.0638123,0.0444336,0.0305481,0.0231018,0.0230103,0.0289307,0.0392761,0.0525513,0.0681763,0.0813293,0.0898132,0.090332,0.0818787,0.0693359,0.0557861,0.045166,0.0371704,0.032135,0.0279846,0.0244446,0.0231628,0.0219421,0.0209961,0.0171204,0.00866699,-0.00112915,-0.0105286,-0.0157776,-0.0171814,-0.0171204,-0.0149536,-0.0128784,-0.00979614,-0.00732422,-0.0050354,-0.00268555,-0.000793457,0.00140381,0.00442505,0.00918579,0.0152893,0.0226746,0.0306702,0.0365906,0.0399475,0.0391846,0.0350952,0.0283203,0.0201416,0.0104675,-0.00012207,-0.00805664,-0.0168457,-0.0223389,-0.0279846,-0.0334778,-0.0409546,-0.0502625,-0.0624084,-0.074707,-0.0892029,-0.102966,-0.115295,-0.125031,-0.13028,-0.131073,-0.128387,-0.12384,-0.11557,-0.105713,-0.0953674,-0.0856934,-0.0791931,-0.074707,-0.0727539,-0.0707397,-0.0674438,-0.0653076,-0.0595398,-0.0531616,-0.0402832,-0.0227661,-0.0015564,0.0184021,0.0366516,0.0505981,0.0617371,0.06604,0.0658264,0.0569763,0.0435486,0.028717,0.0173035,0.0124207,0.0135498,0.0212708,0.0340881,0.0480652,0.0637512,0.0760498,0.0812073,0.078064,0.0663147,0.0509949,0.0343018,0.0219421,0.0155029,0.0167847,0.0244446,0.0377197,0.0541687,0.069458,0.0822144,0.0873718,0.0852966,0.0769043,0.0649719,0.052887,0.041626,0.0350952,0.0305481,0.0297241,0.0303955,0.032074,0.0315552,0.028717,0.0205383,0.0100708,-0.000274658,-0.0101929,-0.0166321,-0.0204773,-0.021759,-0.0201416,-0.0169067,-0.0126953,-0.0105286,-0.00912476,-0.00924683,-0.0083313,-0.00784302,-0.0062561,-0.00146484,0.00408936,0.0117493,0.0184631,0.0232239,0.0256958,0.025238,0.0219421,0.0171204,0.00958252,0.00228882,-0.00463867,-0.0117493,-0.0159607,-0.0211487,-0.024292,-0.0303345,-0.0381775,-0.0475769,-0.0595398,-0.0714722,-0.0832825,-0.094574,-0.101685,-0.108002,-0.110931,-0.110138,-0.107178,-0.101288,-0.0948181,-0.0880432,-0.0832825,-0.0783081,-0.0744324,-0.0709534,-0.06604,-0.0632324,-0.0603333,-0.0576477,-0.0506592,-0.0371704,-0.0198669,-0.000274658,0.0169067,0.0316162,0.0458374,0.0590515,0.0678406,0.0696716,0.0606079,0.0473938,0.0320129,0.0235596,0.0202026,0.0194702,0.0227661,0.0288696,0.0426025,0.0587769,0.0736389,0.0801392,0.077301,0.065918,0.0499268,0.03302,0.0186462,0.00933838,0.00537109,0.00900269,0.0189819,0.033905,0.0508118,0.0663147,0.0768433,0.0785828,0.0738831,0.0631409,0.052002,0.0421448,0.0352478,0.0283813,0.0246887,0.0233459,0.0256958,0.0279846,0.0274353,0.0233459,0.0143738,0.00457764,-0.00482178,-0.012146,-0.01651,-0.0191956,-0.0192566,-0.0157776,-0.0123596,-0.00827026,-0.0067749,-0.00582886,-0.00610352,-0.00570679,-0.00671387,-0.00631714,-0.00491333,0.00134277,0.00704956,0.0129395,0.016571,0.0171814,0.0170593,0.0128784,0.00692749,-0.00189209,-0.0115967,-0.019928,-0.0274353,-0.0344238,-0.0410156,-0.0481873,-0.0550232,-0.0622864,-0.0704041,-0.0800781,-0.0903931,-0.0992737,-0.107117,-0.111755,-0.114441,-0.114563,-0.109131,-0.102692,-0.0920715,-0.0829468,-0.0747681,-0.0671692,-0.0599365,-0.053833,-0.0507507,-0.0479126,-0.0445557,-0.0350342,-0.0193176,-0.000946045,0.0177917,0.0345764,0.0515442,0.0684509,0.0823364,0.0877991,0.0832214,0.0706787,0.0571289,0.0447083,0.0360413,0.0297241,0.0265198,0.0293884,0.0385132,0.052002,0.0638123,0.0712891,0.070343,0.0624084,0.0488586,0.0335693,0.0186462,0.0067749,0.00201416,0.00296021,0.0110779,0.0241089,0.0383911,0.0540161,0.0649719,0.0701904,0.0681152,0.0603943,0.0522766,0.0437012,0.0371094,0.0316772,0.0280457,0.0255737,0.0267639,0.0274353,0.0250854,0.0187988,0.00900269,-0.00262451,-0.012146,-0.021759,-0.0273743,-0.0293274,-0.0273132,-0.0222778,-0.0163879,-0.0114136,-0.00817871,-0.00650024,-0.00637817,-0.00784302,-0.0112,-0.0132751,-0.0135498,-0.00827026,-0.000549316,0.00906372,0.0176392,0.0247803,0.0296021,0.0303955,0.0261841,0.0162964,0.00408936,-0.0110168,-0.0254211,-0.0386047,-0.0506592,-0.0604553,-0.0673218,-0.0733643,-0.078186,-0.0822144,-0.0877991,-0.0944214,-0.102631,-0.110748,-0.119049,-0.124023,-0.124573,-0.121002,-0.116241,-0.108643,-0.0987854,-0.0843506,-0.0699463,-0.0575256,-0.0498047,-0.0435486,-0.0357666,-0.0227661,-0.00469971,0.0124207,0.0285339,0.0430298,0.0597229,0.0789185,0.093811,0.100189,0.0950317,0.0842896,0.0721436,0.0624084,0.0551758,0.049469,0.0457153,0.0483093,0.0539551,0.0636292,0.0729675,0.07724,0.0742188,0.062561,0.0462341,0.0293274,0.0143738,0.00604248,0.00234985,0.00531006,0.0124207,0.024292,0.0400085,0.0562439,0.0678406,0.0725403,0.0689392,0.061615,0.0522156,0.0440979,0.0363159,0.0297241,0.0256958,0.0235596,0.0245056,0.0244446,0.0231628,0.0183105,0.0110168,0.000946045,-0.0105896,-0.0210876,-0.0307922,-0.0361023,-0.0375061,-0.037262,-0.0360413,-0.033905,-0.0306091,-0.0253601,-0.0197449,-0.0153809,-0.0126953,-0.00952148,-0.00631714,-0.00140381,0.00335693,0.00799561,0.0105896,0.012207,0.0126953,0.0117493,0.0100708,0.00631714,0.00146484,-0.00558472,-0.015625,-0.0264282,-0.0394592,-0.0526733,-0.0658264,-0.0798645,-0.0919495,-0.102692,-0.109924,-0.114777,-0.118713,-0.12207,-0.125305,-0.125031,-0.122833,-0.117371,-0.113342,-0.108459,-0.103088,-0.0954285,-0.0841064,-0.0727539,-0.0614624,-0.0473022,-0.0327454,-0.0133667,0.00799561,0.0309448,0.0516663,0.0705261,0.0861816,0.0973816,0.102631,0.102356,0.0966492,0.0885925,0.0774536,0.0675049,0.0611267,0.0612793,0.0667725,0.0753784,0.0831604,0.0887146,0.0905457,0.0869141,0.0768433,0.061554,0.0424805,0.0247803,0.0117493,0.00671387,0.00952148,0.019928,0.0333557,0.0490723,0.0637512,0.073822,0.0798035,0.0785217,0.0724182,0.0626831,0.0502625,0.0394592,0.0307922,0.0252991,0.0226135,0.0200806,0.0175781,0.013031,0.0071106,-0.000793457,-0.00891113,-0.0181274,-0.0283813,-0.036499,-0.0430298,-0.0455017,-0.0458984,-0.0457764,-0.0462341,-0.0447083,-0.0428772,-0.0405273,-0.0362549,-0.0310059,-0.0231628,-0.0140991,-0.0038147,0.00515747,0.0138855,0.0188599,0.0216064,0.0203247,0.0138855,0.00616455,-0.00262451,-0.0105896,-0.0178528,-0.0237732,-0.0307312,-0.0375977,-0.0447083,-0.052948,-0.0620728,-0.0742188,-0.0878601,-0.102356,-0.115906,-0.129608,-0.138062,-0.142822,-0.142761,-0.137451,-0.128662,-0.117523,-0.103821,-0.0904846,-0.0785217,-0.0681152,-0.0614624,-0.0542297,-0.046051,-0.0334778,-0.0175171,0.00161743,0.0224915,0.044281,0.0653076,0.0863647,0.101532,0.108582,0.108124,0.098999,0.0883179,0.0757141,0.0664368,0.0586548,0.0556946,0.0575867,0.0632324,0.0708618,0.0789185,0.0802612,0.0775146,0.0679321,0.0546875,0.0406189,0.0292053,0.0232849,0.021759,0.0266418,0.036499,0.0487976,0.0631409,0.0758972,0.0834961,0.0861816,0.0836792,0.0775757,0.0714722,0.0654297,0.0602722,0.0549622,0.049469,0.045105,0.0390015,0.0314026,0.0213318,0.00772095,-0.00738525,-0.0205994,-0.0316162,-0.0405273,-0.0457153,-0.048584,-0.0484009,-0.0490723,-0.0484009,-0.0491943,-0.0498657,-0.0508728,-0.0500793,-0.0481262,-0.0419312,-0.0345764,-0.024231,-0.0115356,0.000610352,0.011261,0.0175781,0.020813,0.0184631,0.0144958,0.00765991,-0.00146484,-0.00952148,-0.0186462,-0.0275879,-0.036377,-0.0458984,-0.0563049,-0.0667114,-0.0785828,-0.0914917,-0.104645,-0.118805,-0.130951,-0.14035,-0.145691,-0.146362,-0.143158,-0.137665,-0.129181,-0.120209,-0.108643,-0.098053,-0.0858459,-0.0740356,-0.061554,-0.0465088,-0.0285339,-0.00598145,0.0195923,0.04422,0.065918,0.082489,0.094635,0.101288,0.103882,0.100128,0.0914917,0.0796509,0.0691833,0.065094,0.0654297,0.0707397,0.0758362,0.079071,0.0798645,0.077301,0.070343,0.0583801,0.0436096,0.0266418,0.0135498,0.00665283,0.00839233,0.0184631,0.0332336,0.0502625,0.0657654,0.0773926,0.0851135,0.0871277,0.0857849,0.0817566,0.077179,0.0726318,0.0707397,0.0713501,0.0721436,0.0738831,0.0706787,0.0641479,0.0511475,0.0342407,0.0149536,-0.00323486,-0.0187988,-0.0303345,-0.0390015,-0.041687,-0.0429382,-0.0393372,-0.0371704,-0.0348206,-0.0375977,-0.0432129,-0.0508118,-0.0557861,-0.057312,-0.0539551,-0.0473938,-0.0386047,-0.0257568,-0.0124817,0.00167847,0.012146,0.0180664,0.0161743,0.0108643,0.00213623,-0.00765991,-0.0169067,-0.0275879,-0.0381775,-0.0501404,-0.06073,-0.0704041,-0.0812073,-0.0896606,-0.101013,-0.112152,-0.123749,-0.133423,-0.138245,-0.138794,-0.135712,-0.130188,-0.125092,-0.118317,-0.110535,-0.100464,-0.0899963,-0.0820923,-0.0731506,-0.0628052,-0.0457153,-0.0223389,0.0062561,0.0353088,0.0610657,0.0830994,0.1008,0.112823,0.117126,0.11261,0.0996094,0.0834961,0.0684509,0.0587769,0.0560303,0.0578613,0.0648193,0.0707397,0.0767822,0.0807495,0.078125,0.0697327,0.0533447,0.0336914,0.013031,-0.0012207,-0.00799561,-0.00558472,0.00610352,0.0231628,0.0434265,0.0633545,0.0802002,0.0913391,0.0942383,0.0914001,0.0826721,0.0739746,0.0657654,0.0610046,0.0582581,0.0583191,0.0592651,0.0587769,0.0559082,0.0489197,0.0366516,0.0223389,0.00637817,-0.00900269,-0.0229492,-0.0330811,-0.0400085,-0.041748,-0.0411987,-0.0397339,-0.0390015,-0.0393982,-0.0413513,-0.0420227,-0.0424805,-0.0405273,-0.0366516,-0.0297852,-0.0209351,-0.0085144,0.00280762,0.0118713,0.0177917,0.0173035,0.0128784,0.00476074,-0.00564575,-0.0190735,-0.0328064,-0.0458374,-0.0576477,-0.0692749,-0.0768433,-0.0845642,-0.0926208,-0.103088,-0.115112,-0.127838,-0.137909,-0.144623,-0.148804,-0.15033,-0.148712,-0.144897,-0.135315,-0.12088,-0.106049,-0.0933533,-0.0827637,-0.0706177,-0.0540161,-0.0306091,-0.00592041,0.0205994,0.0449524,0.0673828,0.0888672,0.107452,0.120331,0.121399,0.11322,0.0987854,0.0843506,0.0741577,0.0677795,0.0683289,0.070282,0.074646,0.0791321,0.0832214,0.0842285,0.0794678,0.065918,0.0455017,0.0220947,0.00598145,-0.00537109,-0.0050354,0.00268555,0.0153809,0.0316772,0.0506592,0.0689392,0.0834961,0.0899353,0.0890503,0.081665,0.0718079,0.0626831,0.0554504,0.0518188,0.052002,0.0516663,0.0514832,0.0487976,0.0435486,0.0363159,0.025177,0.0116882,-0.00442505,-0.0200806,-0.0336914,-0.0409546,-0.0444946,-0.0444946,-0.0432129,-0.041748,-0.040802,-0.0371094,-0.0337524,-0.0302124,-0.0273132,-0.025177,-0.0215454,-0.0177307,-0.0110168,-0.00442505,0.00134277,0.00576782,0.00631714,0.00482178,0.0012207,-0.00262451,-0.00900269,-0.0182495,-0.0308838,-0.0458984,-0.0598755,-0.0727539,-0.0851135,-0.0979309,-0.112274,-0.126251,-0.137451,-0.143829,-0.143677,-0.14035,-0.138519,-0.135986,-0.132019,-0.122681,-0.110596,-0.0996704,-0.0917358,-0.085907,-0.0751648,-0.0563049,-0.028656,0.00112915,0.0269165,0.0488586,0.0677795,0.0888672,0.105316,0.113098,0.108978,0.0973816,0.0836792,0.0734253,0.0688477,0.0686035,0.0712891,0.0735474,0.0766296,0.078064,0.0798035,0.0767212,0.0674438,0.0501404,0.0307312,0.0118713,0.00201416,0.00180054,0.00933838,0.0223389,0.0368347,0.0525513,0.068512,0.0828247,0.0917358,0.0932312,0.0889893,0.0805359,0.0733032,0.0668335,0.0635681,0.0618896,0.0609436,0.0589294,0.053772,0.0463867,0.0343628,0.0225525,0.00857544,-0.0062561,-0.0214844,-0.0350342,-0.0444946,-0.048584,-0.0474548,-0.0465698,-0.0465088,-0.0480652,-0.0484619,-0.0466309,-0.0448914,-0.0418701,-0.0387268,-0.0350952,-0.0284424,-0.0201416,-0.0112,-0.0017395,0.00476074,0.00738525,0.00665283,0.00234985,-0.00357056,-0.00979614,-0.0186462,-0.0293274,-0.0443726,-0.0580444,-0.0711365,-0.0810852,-0.0908813,-0.102356,-0.114441,-0.124756,-0.130798,-0.130615,-0.127838,-0.124756,-0.124084,-0.122498,-0.11731,-0.107239,-0.0951538,-0.0882568,-0.0830078,-0.0767212,-0.0601196,-0.0324097,0.00106812,0.0318909,0.0546265,0.0730896,0.092804,0.111206,0.123352,0.118713,0.101685,0.0804749,0.0655823,0.0612183,0.0620728,0.0644836,0.0658264,0.0674438,0.0728149,0.07724,0.0771179,0.0679321,0.048584,0.0256348,0.00436401,-0.00939941,-0.0118103,-0.00396729,0.00939941,0.0276489,0.0444336,0.062561,0.0794678,0.0915527,0.0963135,0.0914001,0.0821533,0.0738831,0.0690613,0.069458,0.0714111,0.0724182,0.0716248,0.0682678,0.0610657,0.0498657,0.0344238,0.0167847,-0.000610352,-0.0167847,-0.03302,-0.0419312,-0.0466309,-0.0444946,-0.0401917,-0.0387878,-0.0422668,-0.0473022,-0.0496521,-0.0489807,-0.0469055,-0.0457764,-0.0443726,-0.0391235,-0.0293274,-0.01651,-0.00436401,0.0017395,0.00323486,0,-0.00592041,-0.0137634,-0.0224304,-0.0326233,-0.0441589,-0.0567017,-0.0697937,-0.0794067,-0.0874634,-0.0957642,-0.104553,-0.115967,-0.127655,-0.134033,-0.135895,-0.133881,-0.130798,-0.126587,-0.122009,-0.112946,-0.101074,-0.0895996,-0.0796509,-0.0734253,-0.0630188,-0.0473022,-0.0214844,0.00704956,0.0361023,0.0610657,0.0827637,0.102295,0.118317,0.125763,0.120331,0.105042,0.0853577,0.0696716,0.060791,0.0582581,0.0599365,0.0637512,0.0686035,0.0744934,0.0805969,0.0789795,0.0686035,0.0496521,0.0255737,0.00308228,-0.012207,-0.0175781,-0.0105896,0.00415039,0.024231,0.0463867,0.0679321,0.0867004,0.0992737,0.102692,0.098053,0.0874634,0.0751648,0.0673828,0.0630188,0.065033,0.0657654,0.0674438,0.065094,0.060791,0.0520935,0.0406189,0.0249023,0.00631714,-0.012085,-0.028595,-0.0391235,-0.0440979,-0.0422668,-0.0402832,-0.0393982,-0.0410767,-0.0426941,-0.0429382,-0.041626,-0.0397949,-0.0400085,-0.0381775,-0.0337524,-0.0241699,-0.0134277,-0.00357056,0.00134277,0.000457764,-0.00457764,-0.0119324,-0.0219421,-0.0346375,-0.0483093,-0.0641479,-0.0791321,-0.0917969,-0.101074,-0.108734,-0.114349,-0.121887,-0.129395,-0.136658,-0.138397,-0.137573,-0.135498,-0.133698,-0.132629,-0.12851,-0.118988,-0.106506,-0.0941467,-0.0838928,-0.0714111,-0.0524902,-0.0249023,0.00671387,0.0377197,0.0630188,0.0851135,0.104218,0.120667,0.128784,0.124359,0.108917,0.0898132,0.0751038,0.0666504,0.0632935,0.0643616,0.0667725,0.072876,0.0796509,0.0857849,0.0842896,0.0741577,0.0550232,0.0316162,0.00805664,-0.0107422,-0.0191345,-0.0170593,-0.00469971,0.0139465,0.0358276,0.0577087,0.0793152,0.0953674,0.103485,0.101624,0.0933533,0.0830078,0.0743103,0.0689392,0.0671692,0.0664368,0.0672607,0.0664978,0.0641479,0.0583801,0.0492554,0.0369873,0.0221558,0.00604248,-0.0114746,-0.024292,-0.0328064,-0.0351562,-0.0344849,-0.0358276,-0.0377808,-0.0400696,-0.0397339,-0.0370483,-0.0345764,-0.0332336,-0.0330811,-0.0296631,-0.0241089,-0.0161133,-0.00891113,-0.00558472,-0.00592041,-0.0103455,-0.0169678,-0.0259705,-0.036499,-0.0490723,-0.0629578,-0.0775146,-0.0924683,-0.104309,-0.11377,-0.121674,-0.129669,-0.137177,-0.144623,-0.147247,-0.145691,-0.140259,-0.136902,-0.132812,-0.128052,-0.11792,-0.105835,-0.0928955,-0.0832825,-0.0723572,-0.0551758,-0.0300598,0.00213623,0.0323486,0.057373,0.0792542,0.0997314,0.11853,0.128662,0.125153,0.11026,0.0901489,0.0749817,0.0663147,0.061676,0.0593262,0.0584412,0.0628967,0.069397,0.0761108,0.074646,0.065155,0.0478516,0.0276489,0.00637817,-0.0103455,-0.0171814,-0.0138855,-0.00167847,0.0161743,0.0362549,0.0559692,0.0752258,0.0903931,0.0973816,0.0953064,0.0871277,0.0783081,0.0716248,0.0690002,0.0689392,0.0684509,0.0688477,0.0675049,0.0630798,0.0558472,0.045166,0.0328979,0.0189819,0.00442505,-0.00952148,-0.0198669,-0.0249023,-0.0238342,-0.0214844,-0.020813,-0.0228882,-0.025238,-0.0246277,-0.0209961,-0.0170593,-0.015564,-0.0144348,-0.0117493,-0.00543213,0.00256348,0.00717163,0.00704956,0.00189209,-0.00610352,-0.0167847,-0.0285339,-0.041748,-0.0562439,-0.0705261,-0.085907,-0.100189,-0.113434,-0.123413,-0.132355,-0.140869,-0.150879,-0.158936,-0.161957,-0.158264,-0.152008,-0.145691,-0.139465,-0.131744,-0.118713,-0.10376,-0.0912781,-0.0819397,-0.0713501,-0.0549011,-0.0282593,0.00189209,0.0310669,0.0560303,0.0793152,0.103027,0.123352,0.133972,0.129333,0.112488,0.0920105,0.074646,0.0632324,0.0552979,0.0502014,0.0505981,0.0564575,0.0666504,0.0744324,0.0773926,0.0700073,0.0544434,0.0322876,0.00991821,-0.00912476,-0.0177917,-0.0161133,-0.00537109,0.0108643,0.0320129,0.0541077,0.0764465,0.0921326,0.0975952,0.094696,0.0848389,0.0744324,0.0669861,0.0604553,0.0587769,0.0579224,0.0599365,0.0602112,0.0578613,0.0505371,0.0397339,0.0261841,0.0110168,-0.00463867,-0.0185852,-0.0282593,-0.0306091,-0.0262451,-0.0194702,-0.0154419,-0.0140991,-0.0134888,-0.0118103,-0.00924683,-0.00784302,-0.00805664,-0.00900269,-0.0065918,-0.000213623,0.00872803,0.0160522,0.0193176,0.0179138,0.0110168,0.00134277,-0.0126953,-0.0288696,-0.0475159,-0.0673828,-0.0877991,-0.10672,-0.118927,-0.128113,-0.133484,-0.139343,-0.146912,-0.152954,-0.154297,-0.151215,-0.146973,-0.144165,-0.144012,-0.140686,-0.131134,-0.115692,-0.101196,-0.0891418,-0.0753784,-0.0548401,-0.0241089,0.0110168,0.0430298,0.0668335,0.0873718,0.107178,0.124756,0.132538,0.125641,0.106995,0.0861816,0.0706787,0.0622253,0.0557861,0.0514832,0.0523376,0.0590515,0.0700684,0.078125,0.0775146,0.0668335,0.0497437,0.0283203,0.00616455,-0.0125427,-0.0220032,-0.020752,-0.00906372,0.00991821,0.0326843,0.0564575,0.0778503,0.0940857,0.100464,0.0963135,0.0872498,0.0754395,0.0666504,0.0585938,0.0535583,0.0506592,0.0508728,0.0521545,0.0501404,0.0439453,0.0326843,0.0204163,0.00683594,-0.00698853,-0.0213318,-0.0317383,-0.0367126,-0.0352478,-0.0297241,-0.0263672,-0.0239563,-0.0231018,-0.0179138,-0.012207,-0.00759888,-0.00531006,-0.00308228,0.00140381,0.00891113,0.016449,0.0202026,0.0194092,0.0148315,0.00805664,-0.00268555,-0.0161743,-0.0314026,-0.0476379,-0.0644226,-0.0809326,-0.0973816,-0.111938,-0.123016,-0.132202,-0.141266,-0.15033,-0.157532,-0.158722,-0.156097,-0.149475,-0.142548,-0.13678,-0.127258,-0.114227,-0.0978394,-0.0834351,-0.074646,-0.062561,-0.0452881,-0.0179749,0.0153809,0.0448914,0.0701294,0.0915527,0.114105,0.133209,0.142761,0.135895,0.114899,0.0906067,0.0709534,0.0587769,0.0498657,0.0430908,0.0421448,0.0463867,0.0565186,0.065094,0.0674438,0.0587769,0.0424805,0.0200806,-0.00222778,-0.0191345,-0.0269165,-0.0241089,-0.013092,0.00524902,0.0264282,0.0511475,0.074646,0.0923462,0.0991821,0.0971069,0.0881958,0.0809937,0.0734253,0.0690613,0.0633545,0.0593262,0.0565796,0.0534363,0.048645,0.0397339,0.02771,0.0143738,0.000396729,-0.0119324,-0.0236206,-0.0314636,-0.0345764,-0.0317993,-0.0290527,-0.0267639,-0.0287781,-0.0296021,-0.0263672,-0.0214844,-0.0157776,-0.0120239,-0.00799561,-0.000732422,0.0102539,0.0202637,0.0246277,0.0238953,0.0179138,0.0088501,-0.00363159,-0.0178528,-0.0353699,-0.0539551,-0.0730896,-0.0917358,-0.108795,-0.121552,-0.131409,-0.139465,-0.147034,-0.155182,-0.160126,-0.159332,-0.1539,-0.148132,-0.142944,-0.139252,-0.131866,-0.121155,-0.106995,-0.0936279,-0.080658,-0.0630188,-0.037262,-0.00482178,0.0312195,0.0631409,0.0915527,0.117035,0.137909,0.150543,0.150604,0.137726,0.117584,0.0973816,0.0804749,0.0686646,0.0588684,0.0561218,0.0598755,0.0690002,0.0783081,0.0829468,0.0773926,0.0631409,0.0432739,0.0189819,-0.00369263,-0.0224915,-0.0303955,-0.0289307,-0.0161133,0.00323486,0.0265808,0.0505981,0.0713501,0.0841064,0.0888672,0.0839539,0.0761719,0.0666504,0.0583191,0.0513306,0.0468445,0.0448303,0.0445557,0.0440369,0.0418091,0.0343628,0.0255127,0.0138855,0.00241089,-0.0101929,-0.0186462,-0.0249634,-0.0253601,-0.0236206,-0.0201416,-0.0194702,-0.0182495,-0.0171814,-0.0138855,-0.0105896,-0.00817871,-0.00671387,-0.00268555,0.00402832,0.0107422,0.0177307,0.0185852,0.0162354,0.00772095,-0.00262451,-0.016571,-0.0326843,-0.0514832,-0.0699463,-0.0883179,-0.105438,-0.119324,-0.129669,-0.137512,-0.143555,-0.15094,-0.155365,-0.157654,-0.15451,-0.150055,-0.144348,-0.140472,-0.134827,-0.125763,-0.112823,-0.0996094,-0.0876465,-0.0751038,-0.0571899,-0.0296021,0.00308228,0.0362549,0.0638123,0.0885925,0.111877,0.132538,0.144501,0.141754,0.127167,0.106445,0.0888672,0.0769043,0.0672607,0.0602112,0.0579834,0.0641479,0.0751038,0.085022,0.0891418,0.0834351,0.0701904,0.0505371,0.0288696,0.00811768,-0.00765991,-0.0131531,-0.00985718,0.00146484,0.0200806,0.0404053,0.061615,0.0788574,0.0881958,0.0887146,0.0827637,0.0744324,0.0653076,0.0576477,0.048645,0.0427551,0.0390625,0.0378418,0.0354919,0.0291138,0.020752,0.0105896,0.000671387,-0.00900269,-0.0184021,-0.0260315,-0.0292053,-0.027771,-0.0231018,-0.0203247,-0.0196533,-0.020752,-0.0183105,-0.0138245,-0.00952148,-0.00592041,-0.00363159,0.00222778,0.0112,0.0197449,0.025238,0.0239563,0.0191956,0.00912476,-0.0038147,-0.0197449,-0.0379333,-0.057251,-0.0761719,-0.0956421,-0.113159,-0.126831,-0.136658,-0.144104,-0.150482,-0.157196,-0.161865,-0.163422,-0.160004,-0.153839,-0.14859,-0.142273,-0.134369,-0.124512,-0.110474,-0.0977173,-0.0843506,-0.0690002,-0.049408,-0.0222778,0.0088501,0.0411377,0.070282,0.0964355,0.119049,0.137238,0.145172,0.142151,0.127167,0.106903,0.0880432,0.0736389,0.0633545,0.0561218,0.0552368,0.0599976,0.070282,0.0808716,0.0849609,0.0800781,0.065979,0.0462341,0.0238953,0.00476074,-0.00839233,-0.0115356,-0.00698853,0.0062561,0.0257568,0.0481262,0.0700684,0.0861816,0.0928955,0.0901489,0.0818787,0.0707397,0.0602722,0.0513306,0.0449524,0.0405273,0.0388489,0.0389404,0.0383911,0.0350342,0.0272522,0.0163879,0.00296021,-0.00973511,-0.0205383,-0.0265198,-0.02771,-0.0256958,-0.0195923,-0.0142822,-0.00857544,-0.00497437,-0.00128174,0.00201416,0.00369263,0.00463867,0.00537109,0.00732422,0.0125427,0.0184631,0.0216675,0.0206604,0.0149536,0.00497437,-0.00866699,-0.025238,-0.0444946,-0.0647583,-0.085968,-0.106567,-0.123627,-0.137787,-0.146576,-0.151733,-0.15686,-0.16095,-0.164093,-0.163696,-0.159515,-0.152954,-0.14624,-0.141602,-0.13382,-0.123352,-0.108795,-0.0943604,-0.082489,-0.0708008,-0.0545654,-0.0306702,-0.000213623,0.0302124,0.0565796,0.0794067,0.101074,0.121826,0.136566,0.137054,0.124695,0.103424,0.0845032,0.0704651,0.0610657,0.0539551,0.0505371,0.0546265,0.0667114,0.082428,0.094635,0.0962524,0.0873108,0.0697327,0.048584,0.0274353,0.0102539,0.000213623,-0.000396729,0.0065918,0.0231018,0.0440369,0.0674438,0.0866394,0.0973816,0.097168,0.0888062,0.0765076,0.0639648,0.0508118,0.0393982,0.0294495,0.0246887,0.0232849,0.0245667,0.0228882,0.0182495,0.0108032,0.0012207,-0.00698853,-0.0166321,-0.0245056,-0.0285339,-0.0265808,-0.0205994,-0.0138245,-0.0103455,-0.0067749,-0.00323486,0.00308228,0.00799561,0.0109253,0.0115967,0.0134888,0.0188599,0.0268555,0.0320129,0.0319519,0.0259094,0.015625,0.00228882,-0.0140991,-0.0332947,-0.0560303,-0.078064,-0.100677,-0.119659,-0.136169,-0.147247,-0.155701,-0.160736,-0.164551,-0.167664,-0.167572,-0.164978,-0.159515,-0.153961,-0.148712,-0.142548,-0.13504,-0.123077,-0.109406,-0.0950317,-0.0827637,-0.06604,-0.0434265,-0.0131531,0.0195312,0.0507507,0.0758972,0.0975037,0.116302,0.130341,0.133972,0.125427,0.106232,0.0858459,0.069458,0.0603943,0.0561218,0.0549011,0.0570374,0.0675964,0.0802002,0.0916748,0.0959778,0.0891418,0.0726929,0.0527649,0.0314026,0.0155029,0.00576782,0.00558472,0.0136108,0.027771,0.0492554,0.0699463,0.0895386,0.100525,0.102478,0.0957031,0.082428,0.0691833,0.0559692,0.0445557,0.0365906,0.029541,0.0267639,0.0255127,0.0249023,0.020752,0.0132141,0.00256348,-0.00839233,-0.0181274,-0.0257568,-0.0310059,-0.0314636,-0.0281982,-0.0212097,-0.0152283,-0.0101929,-0.00665283,-0.0012207,0.00497437,0.0103455,0.0131531,0.0159607,0.0194702,0.0249634,0.0297241,0.0316772,0.0267639,0.0180664,0.00469971,-0.0112,-0.0288696,-0.0492554,-0.0687256,-0.0887146,-0.105652,-0.121674,-0.13382,-0.141876,-0.147797,-0.152405,-0.157715,-0.160675,-0.161407,-0.158112,-0.153015,-0.147461,-0.141205,-0.130859,-0.118134,-0.102081,-0.0879211,-0.0773926,-0.0671692,-0.053009,-0.0322876,-0.00692749,0.0175171,0.0380554,0.0588684,0.0797424,0.101196,0.116364,0.11972,0.10907,0.0927429,0.0748291,0.0624695,0.0531006,0.0455017,0.0406189,0.0428772,0.0525513,0.069458,0.0830078,0.0904846,0.0864563,0.0748291,0.0583801,0.0428772,0.0292664,0.0218201,0.0202026,0.0259094,0.0383911,0.056366,0.0768433,0.0940247,0.103699,0.104218,0.0971069,0.0863647,0.0739746,0.0617981,0.0508118,0.0430908,0.036377,0.0335693,0.0294495,0.025177,0.0180664,0.00918579,-0.00234985,-0.0152283,-0.0280457,-0.0380554,-0.0397339,-0.0362549,-0.0279846,-0.0204773,-0.0147095,-0.00817871,-0.00189209,0.00616455,0.0101929,0.0118103,0.0100708,0.00918579,0.0119324,0.0179749,0.0241699,0.0274353,0.0241699,0.0182495,0.00799561,-0.00482178,-0.020874,-0.0414124,-0.0642395,-0.0897217,-0.111603,-0.132477,-0.146454,-0.155029,-0.161133,-0.164825,-0.166046,-0.16449,-0.15918,-0.15155,-0.144226,-0.13913,-0.133362,-0.125916,-0.114288,-0.100006,-0.0863647,-0.0748901,-0.0634155,-0.0475769,-0.0263672,0.000946045,0.0281067,0.052002,0.0709534,0.0874634,0.103088,0.116028,0.118988,0.110138,0.0909424,0.0701294,0.0556335,0.0479736,0.0418091,0.0375977,0.0366516,0.0438232,0.0569153,0.0716858,0.0809326,0.0796509,0.0718079,0.0583191,0.0439453,0.0332336,0.0267639,0.0263672,0.0318909,0.0422058,0.0569763,0.0743103,0.0910034,0.103546,0.107788,0.103302,0.0922241,0.0799255,0.0679321,0.0571899,0.0473022,0.0375977,0.0293884,0.0234985,0.0177917,0.0132141,0.00598145,-0.00234985,-0.0127563,-0.0230103,-0.0310059,-0.0333557,-0.0317383,-0.0256958,-0.0191956,-0.0147095,-0.00967407,-0.00491333,0.00463867,0.0132141,0.0179749,0.0173035,0.0159607,0.015564,0.0205383,0.0252991,0.025238,0.0191345,0.00967407,-0.00161743,-0.0140991,-0.0285339,-0.0467834,-0.0681763,-0.0900574,-0.111328,-0.130524,-0.14563,-0.155304,-0.161743,-0.164703,-0.166107,-0.164368,-0.158508,-0.15033,-0.139923,-0.132538,-0.124634,-0.117126,-0.105835,-0.093689,-0.0812683,-0.0714722,-0.061676,-0.0495911,-0.0314636,-0.00845337,0.0174561,0.0401306,0.0600586,0.0769653,0.0914917,0.104492,0.109802,0.104492,0.0877991,0.0677185,0.0514221,0.0411377,0.0365906,0.0336304,0.0326233,0.0381165,0.0491943,0.0657043,0.0800781,0.0852356,0.0791931,0.0664368,0.0542297,0.0450439,0.0410767,0.0396729,0.0414124,0.0473022,0.0585938,0.0743103,0.0900574,0.101959,0.105042,0.100861,0.0916748,0.0797424,0.0680542,0.0575256,0.0470581,0.037384,0.0270996,0.0205994,0.0151672,0.0113525,0.00610352,-0.00274658,-0.0138855,-0.0236206,-0.0297852,-0.0316772,-0.029541,-0.0254211,-0.0202026,-0.0141602,-0.00750732,0,0.00845337,0.0160522,0.0211487,0.0223389,0.0205994,0.0204163,0.0216064,0.0245667,0.0245056,0.0202026,0.0110168,0.000274658,-0.0117493,-0.024292,-0.0397949,-0.0592651,-0.0805359,-0.102295,-0.121338,-0.137177,-0.148987,-0.157654,-0.163879,-0.165375,-0.163422,-0.157928,-0.149719,-0.140137,-0.130005,-0.120148,-0.109314,-0.0973206,-0.0877075,-0.0758972,-0.0671082,-0.0568542,-0.0488586,-0.0386658,-0.0267639,-0.00866699,0.0131531,0.0353699,0.0542908,0.0687256,0.0812683,0.0917969,0.0967712,0.092804,0.0763855,0.0577087,0.0389404,0.028595,0.0227661,0.0191345,0.0195923,0.0263062,0.041748,0.0604553,0.07724,0.0848389,0.0844421,0.0785217,0.0707397,0.061676,0.0558472,0.0516663,0.0522156,0.0567017,0.065155,0.0769043,0.0892029,0.0987854,0.104034,0.1008,0.0939636,0.0837708,0.0733032,0.0620728,0.0510864,0.0385132,0.0274353,0.0181274,0.0103455,0.0032959,-0.00637817,-0.016449,-0.025177,-0.0322876,-0.0344849,-0.0353699,-0.0312805,-0.0256958,-0.0159607,-0.00778198,0.000610352,0.00643921,0.0112,0.0158386,0.0183105,0.0173035,0.0158386,0.0136108,0.01651,0.0192566,0.0212097,0.0187988,0.013092,0.00482178,-0.00582886,-0.0211487,-0.0402832,-0.061554,-0.0842896,-0.105103,-0.124634,-0.141602,-0.153229,-0.160126,-0.163544,-0.163635,-0.160522,-0.155304,-0.146515,-0.137177,-0.127045,-0.116913,-0.105652,-0.0934143,-0.0819397,-0.070282,-0.0608826,-0.052002,-0.0455017,-0.038269,-0.0281067,-0.0125427,0.00717163,0.0287781,0.0476379,0.0632324,0.0770569,0.090271,0.0994568,0.0973816,0.0819397,0.058136,0.037384,0.0234375,0.0160522,0.0124207,0.00991821,0.0163879,0.0326233,0.0558472,0.0773926,0.0904846,0.0923462,0.0865173,0.0765076,0.0687866,0.0596619,0.0533447,0.0512085,0.053009,0.061676,0.0739746,0.0889282,0.101074,0.107849,0.107117,0.0991821,0.0867004,0.0731506,0.06073,0.0491943,0.0381165,0.0279236,0.0196533,0.0131531,0.00738525,-0.000335693,-0.0101318,-0.0211487,-0.0311279,-0.0366516,-0.0396118,-0.0370483,-0.0303345,-0.0185852,-0.00637817,0.00308228,0.00946045,0.0140381,0.0187988,0.0209961,0.0188599,0.0123596,0.0062561,0.00592041,0.0107422,0.016571,0.0184021,0.0154419,0.00906372,0.000732422,-0.0115967,-0.0290527,-0.0514221,-0.0757141,-0.0983276,-0.119202,-0.136658,-0.147858,-0.155243,-0.155762,-0.154755,-0.150604,-0.14624,-0.139252,-0.131287,-0.122894,-0.114227,-0.105774,-0.0959167,-0.0852966,-0.0738831,-0.0631409,-0.0536804,-0.0455627,-0.0400085,-0.0335693,-0.0236816,-0.00958252,0.0105896,0.0289307,0.0445557,0.0578613,0.069397,0.0812073,0.0877991,0.0841064,0.0673218,0.0444946,0.024231,0.0129395,0.00900269,0.0088501,0.0127563,0.0226746,0.0418701,0.066925,0.0899963,0.102966,0.103821,0.0957642,0.0845032,0.0743103,0.0649109,0.0587158,0.0562439,0.0578613,0.0663147,0.0788574,0.0922852,0.105835,0.111145,0.110077,0.100342,0.0881958,0.0743103,0.0601196,0.0467224,0.0314636,0.0182495,0.0065918,-0.00128174,-0.00878906,-0.0169678,-0.0255127,-0.032959,-0.0379333,-0.0389404,-0.036438,-0.0319519,-0.0241089,-0.0139465,-0.00476074,0.0015564,0.00598145,0.00738525,0.0115967,0.0126038,0.0134888,0.0112,0.0111389,0.0152283,0.0211487,0.0254211,0.0265808,0.0214233,0.0120239,-0.000396729,-0.0154419,-0.0346375,-0.0555725,-0.077301,-0.098938,-0.118042,-0.132629,-0.14444,-0.149811,-0.152832,-0.15155,-0.148712,-0.144012,-0.137238,-0.127655,-0.117859,-0.108246,-0.0988464,-0.0891418,-0.0796509,-0.0683289,-0.0579834,-0.0484619,-0.0432739,-0.0387878,-0.0351562,-0.0258484,-0.011261,0.00744629,0.024231,0.0369873,0.0477295,0.0585327,0.0707397,0.0769653,0.0739746,0.0574646,0.0353699,0.0169678,0.00900269,0.00631714,0.00717163,0.0108643,0.019928,0.0391235,0.0637512,0.0881348,0.105377,0.109253,0.103973,0.0931396,0.0820923,0.0755005,0.0699463,0.0664368,0.065155,0.0682678,0.0779114,0.0917358,0.105164,0.112091,0.109131,0.098999,0.0842896,0.0719604,0.0580444,0.04422,0.0279846,0.0125427,6.10352e-05,-0.00750732,-0.0116882,-0.0174561,-0.0232849,-0.0296021,-0.0336914,-0.0349121,-0.0340271,-0.029541,-0.0229492,-0.0144958,-0.00717163,-0.00302124,0.0012207,0.00543213,0.0118103,0.0152283,0.0159607,0.0126038,0.0120239,0.0129395,0.0188599,0.0216064,0.0209351,0.0152283,0.00683594,-0.00314331,-0.0148926,-0.0312195,-0.0493164,-0.0676575,-0.0866394,-0.103821,-0.118134,-0.128845,-0.135651,-0.139343,-0.140198,-0.13913,-0.133972,-0.127594,-0.118927,-0.111481,-0.103363,-0.0955811,-0.0865784,-0.0764465,-0.06604,-0.0578003,-0.0491943,-0.0418701,-0.0361633,-0.0330811,-0.0314026,-0.0270386,-0.0191345,-0.00592041,0.00549316,0.0148315,0.0219421,0.0314636,0.0428162,0.0528259,0.0559692,0.0465088,0.0326843,0.0198669,0.0138245,0.0146179,0.0160522,0.0183105,0.0258484,0.0426025,0.066925,0.0913391,0.109406,0.116699,0.115509,0.10965,0.100861,0.091217,0.0834961,0.0765686,0.0729675,0.0721436,0.0762329,0.085022,0.0954285,0.101074,0.0996094,0.0897217,0.0758362,0.0608826,0.0461121,0.0325623,0.0189209,0.00543213,-0.00396729,-0.0108032,-0.0141602,-0.0163879,-0.0190735,-0.0238342,-0.0294495,-0.0335693,-0.0356445,-0.033905,-0.0278625,-0.0202637,-0.0124207,-0.00537109,0.00189209,0.00912476,0.0161743,0.0206604,0.0204163,0.0157776,0.0100708,0.00692749,0.00772095,0.0110168,0.0113525,0.00793457,0.00341797,-0.00247192,-0.00946045,-0.0212708,-0.0363159,-0.0542908,-0.072876,-0.0898743,-0.10556,-0.117859,-0.126312,-0.130951,-0.132019,-0.12973,-0.125305,-0.118713,-0.112091,-0.105103,-0.0999451,-0.0934753,-0.0855713,-0.0761108,-0.0681763,-0.0595398,-0.0523376,-0.0436096,-0.0338135,-0.0284424,-0.027771,-0.0318909,-0.0348206,-0.0297852,-0.0193176,-0.00732422,0.000457764,0.00570679,0.0148926,0.0301208,0.0473938,0.0562439,0.0499268,0.0359192,0.0215454,0.0170593,0.0175171,0.0193176,0.0210876,0.0263672,0.041626,0.0675964,0.093811,0.116028,0.127106,0.12973,0.122345,0.111755,0.0993347,0.0905457,0.0822754,0.0755005,0.0708008,0.0714111,0.0769653,0.0879822,0.0954285,0.0954895,0.0876465,0.0729675,0.0586548,0.044281,0.0317383,0.0174561,0.00289917,-0.0100098,-0.0198059,-0.0244446,-0.0268555,-0.0292664,-0.0317383,-0.0361023,-0.0385132,-0.040802,-0.0366516,-0.0299377,-0.0186462,-0.00827026,-0.00106812,0.0038147,0.0071106,0.0126953,0.0169067,0.0159607,0.0103455,0.00341797,6.10352e-05,0.00430298,0.00991821,0.0138855,0.0132141,0.00979614,0.00610352,-0.00222778,-0.0133667,-0.0311279,-0.0487976,-0.0683289,-0.0874634,-0.104492,-0.116852,-0.123901,-0.124969,-0.12442,-0.121887,-0.118591,-0.112274,-0.104889,-0.0983276,-0.0930786,-0.0889893,-0.082489,-0.0745544,-0.0644226,-0.0564575,-0.0508118,-0.0441589,-0.0381165,-0.0313416,-0.029541,-0.03302,-0.037323,-0.0375977,-0.0282593,-0.0158386,-0.00363159,0.00289917,0.00946045,0.0198669,0.0334778,0.0452881,0.0440369,0.0334167,0.0194702,0.00985718,0.0101318,0.0151672,0.0218201,0.0296631,0.0420837,0.0632324,0.0882568,0.113342,0.129517,0.134308,0.128326,0.116364,0.104706,0.0960388,0.0908203,0.0852356,0.0787964,0.0763855,0.0793152,0.0880432,0.0962524,0.0976562,0.0885925,0.0736389,0.0565796,0.0405273,0.0259705,0.0124207,-0.00128174,-0.0138245,-0.0226746,-0.0267639,-0.0283813,-0.028595,-0.0297852,-0.0317993,-0.0360413,-0.0371704,-0.0371704,-0.0312805,-0.0218811,-0.0124207,-0.00396729,0.000396729,0.00363159,0.00738525,0.0120239,0.0144958,0.0127563,0.00772095,0.00302124,0.00335693,0.00765991,0.0138855,0.0168457,0.0150452,0.00991821,0.00134277,-0.00872803,-0.0216675,-0.0375977,-0.0546875,-0.0724792,-0.0891418,-0.100616,-0.107574,-0.109985,-0.109802,-0.110596,-0.10965,-0.106659,-0.101013,-0.0954895,-0.0913391,-0.0907288,-0.0888062,-0.0837708,-0.0748291,-0.0637512,-0.0553589,-0.0480652,-0.0420227,-0.0334778,-0.0265198,-0.0228882,-0.0270996,-0.033905,-0.038269,-0.0344238,-0.025238,-0.0169678,-0.0124207,-0.00744629,0.00302124,0.0202026,0.0379333,0.0445557,0.0400696,0.028717,0.0204163,0.0192566,0.0215454,0.0238953,0.0268555,0.0341492,0.0511475,0.0769043,0.104034,0.126434,0.136993,0.13678,0.130066,0.12088,0.112671,0.104645,0.0940247,0.0827637,0.0741577,0.0720825,0.0752869,0.0804749,0.0828247,0.0777893,0.0675049,0.0531616,0.0380554,0.0257568,0.0119324,-0.000946045,-0.0145569,-0.0264282,-0.0336914,-0.037262,-0.0377808,-0.0375061,-0.0383911,-0.0396118,-0.0400085,-0.036499,-0.0297241,-0.0198059,-0.0100098,-0.00213623,0.0020752,0.00491333,0.00793457,0.0122681,0.0157776,0.0146179,0.0102539,0.00698853,0.00726318,0.0125427,0.0185242,0.0210876,0.0179749,0.0133667,0.00537109,-0.00402832,-0.0159607,-0.0306091,-0.0471802,-0.0643616,-0.0787964,-0.0898743,-0.0959167,-0.0993347,-0.102203,-0.104156,-0.105103,-0.103546,-0.098938,-0.0954895,-0.0917358,-0.0882568,-0.0851746,-0.077301,-0.0673218,-0.0565186,-0.0475769,-0.0421448,-0.0375977,-0.0331421,-0.0287781,-0.0261841,-0.0284424,-0.0354919,-0.0418091,-0.0448303,-0.0388489,-0.0303955,-0.0226135,-0.0181885,-0.0141602,-0.00515747,0.00946045,0.0232849,0.0291138,0.0255127,0.0179749,0.013031,0.015564,0.0220947,0.0304565,0.038269,0.0473022,0.0628967,0.0867004,0.113007,0.135651,0.14679,0.146851,0.139069,0.129456,0.120209,0.109985,0.0969238,0.0817566,0.066925,0.0594482,0.0583801,0.0636292,0.0665894,0.0634766,0.0531616,0.0397949,0.0270386,0.0167847,0.00726318,-0.00457764,-0.0198669,-0.0337524,-0.0418091,-0.041687,-0.0365906,-0.0324707,-0.0317383,-0.0315552,-0.0307312,-0.025177,-0.0168457,-0.0085144,-0.00308228,-0.000610352,-0.000274658,0.0012207,0.00549316,0.0114746,0.0152893,0.0155029,0.0117493,0.00872803,0.00958252,0.0131531,0.0167847,0.0172424,0.0140991,0.0085144,0.00469971,0.000335693,-0.00592041,-0.0169678,-0.0307922,-0.0462952,-0.0601196,-0.0718689,-0.0812683,-0.0885925,-0.0948181,-0.100067,-0.101685,-0.0993958,-0.0939026,-0.0874634,-0.0830078,-0.0795898,-0.0783081,-0.0740967,-0.0713501,-0.0675049,-0.0642395,-0.0613403,-0.0564575,-0.0488586,-0.0412903,-0.0341492,-0.029541,-0.0296021,-0.0317383,-0.0370483,-0.0419312,-0.0444336,-0.0430908,-0.0379944,-0.0319519,-0.0227661,-0.0107422,0.0067749,0.0250244,0.0386047,0.0433655,0.039856,0.0335693,0.0312805,0.0336914,0.0385132,0.04422,0.0518799,0.0682678,0.091156,0.119934,0.142609,0.154175,0.153351,0.141602,0.126434,0.110321,0.0928955,0.0747681,0.0564575,0.0436096,0.0399475,0.0435486,0.0504761,0.056366,0.0539551,0.0458984,0.0324097,0.0190735,0.00778198,-0.00335693,-0.0151672,-0.0283203,-0.0368347,-0.0391235,-0.0335693,-0.0256958,-0.0202026,-0.019989,-0.020874,-0.0216675,-0.0179138,-0.0140991,-0.0109253,-0.0088501,-0.0050354,-0.00012207,0.00598145,0.0118713,0.0179138,0.0218201,0.0222168,0.0202026,0.0171204,0.0154419,0.0162964,0.0175781,0.0184631,0.01651,0.0137024,0.0103455,0.00616455,0.000274658,-0.0103455,-0.0241089,-0.0392761,-0.0508118,-0.0627441,-0.0710754,-0.0791321,-0.0849609,-0.0895996,-0.0921326,-0.0926819,-0.0917358,-0.0906067,-0.0901489,-0.0895996,-0.0900574,-0.0888672,-0.085907,-0.0809326,-0.0731506,-0.065033,-0.0575256,-0.0502014,-0.0434265,-0.0369263,-0.032959,-0.0349731,-0.0414734,-0.0514221,-0.0589294,-0.0593872,-0.0546875,-0.0455017,-0.0368347,-0.0249023,-0.00939941,0.012085,0.0340271,0.0499878,0.0550232,0.0501404,0.0424194,0.0367737,0.0375977,0.0409546,0.0438843,0.0513306,0.0635681,0.0867004,0.112,0.136169,0.147919,0.148315,0.137329,0.121277,0.102814,0.0842285,0.0657654,0.0490723,0.0357056,0.0300598,0.0307922,0.0381775,0.0447693,0.0473938,0.0411987,0.0301208,0.0166321,0.00509644,-0.00457764,-0.012207,-0.0212097,-0.0259094,-0.028595,-0.0250854,-0.0187988,-0.012085,-0.0104065,-0.0127563,-0.0168457,-0.0193176,-0.0181274,-0.0135498,-0.0071106,0.000396729,0.00738525,0.0147705,0.0233459,0.0319519,0.0371094,0.0385132,0.0326843,0.0249023,0.0175781,0.0144348,0.0149536,0.0167847,0.0186462,0.0184021,0.0192566,0.019989,0.0185242,0.0125427,0.000793457,-0.0158386,-0.0334167,-0.0505371,-0.0646973,-0.0761108,-0.0852356,-0.0926208,-0.098175,-0.100189,-0.100281,-0.098938,-0.098175,-0.097168,-0.0983276,-0.0978394,-0.0960999,-0.0923462,-0.0871277,-0.079071,-0.0717468,-0.0638123,-0.0549011,-0.0484619,-0.0434265,-0.0403442,-0.0397949,-0.0414734,-0.0458374,-0.0505981,-0.0512695,-0.0495911,-0.0402832,-0.0281067,-0.0151062,-0.00289917,0.00967407,0.0238953,0.0390015,0.0508728,0.0526733,0.0471191,0.0394592,0.0369263,0.0401917,0.0465698,0.0541077,0.062561,0.0749817,0.0926819,0.112488,0.128448,0.133423,0.129181,0.114502,0.0977783,0.0805359,0.0648193,0.0505981,0.0390015,0.0297852,0.0265808,0.0284424,0.0334167,0.0386047,0.0381775,0.0322266,0.0223389,0.0120239,0.00430298,-0.00128174,-0.0062561,-0.0112,-0.0140991,-0.015625,-0.0124207,-0.0088501,-0.00665283,-0.00704956,-0.0112,-0.0120239,-0.0100708,-0.00482178,0.0032959,0.0102539,0.0189819,0.0272522,0.0328979,0.0377808,0.0387878,0.0375977,0.0328979,0.0265808,0.019928,0.0152283,0.0144348,0.0176392,0.0224915,0.0272522,0.0289307,0.0281067,0.0246277,0.0161133,0.00341797,-0.0150452,-0.0347595,-0.0526123,-0.0700684,-0.0826111,-0.0932312,-0.0996704,-0.103821,-0.106506,-0.108185,-0.10907,-0.108643,-0.107666,-0.106232,-0.105164,-0.104767,-0.101685,-0.0960999,-0.0865173,-0.0760498,-0.0655823,-0.0554504,-0.0469666,-0.037384,-0.0306702,-0.024231,-0.0215454,-0.0226746,-0.027771,-0.033905,-0.037384,-0.0362549,-0.0313416,-0.0239563,-0.0182495,-0.0108032,-0.0012207,0.0142212,0.0307312,0.0435486,0.0479736,0.0435486,0.037384,0.0371704,0.0393372,0.0433655,0.0443726,0.0471191,0.0545044,0.0710144,0.0922241,0.111084,0.121002,0.120148,0.111664,0.0999451,0.0872498,0.0753784,0.0597229,0.0455017,0.0306091,0.0229492,0.0222168,0.02771,0.0346375,0.0369263,0.0332947,0.0270386,0.0206604,0.0184021,0.0161743,0.0124817,0.00570679,-0.00195312,-0.00564575,-0.00390625,0.00140381,0.00610352,0.0062561,0.00436401,0.00289917,0.00463867,0.0106812,0.0181885,0.0226746,0.0264282,0.0283813,0.0307312,0.0319519,0.0341492,0.0322266,0.0270996,0.0193176,0.0118103,0.00772095,0.00759888,0.0112,0.0138245,0.0147705,0.0144958,0.012146,0.00891113,0.00274658,-0.00805664,-0.0229492,-0.0404053,-0.0571899,-0.0711975,-0.0821533,-0.0900574,-0.0957031,-0.100128,-0.103088,-0.10376,-0.103699,-0.101349,-0.100189,-0.0995178,-0.0993347,-0.0986633,-0.0955811,-0.0905457,-0.0832825,-0.0743103,-0.0654907,-0.0562439,-0.046051,-0.0367126,-0.0280457,-0.0211487,-0.0177917,-0.0171204,-0.0187378,-0.0228882,-0.0293274,-0.0365906,-0.0402832,-0.0384521,-0.0309448,-0.0230103,-0.0142822,-0.00476074,0.0101929,0.028656,0.0429382,0.0485229,0.0439453,0.0338135,0.0283203,0.0261841,0.0268555,0.0283203,0.0314026,0.0403442,0.057312,0.0796509,0.102203,0.116913,0.120605,0.115356,0.103363,0.0904846,0.0764465,0.0634766,0.049469,0.0363159,0.0299377,0.0298767,0.036499,0.0455627,0.0519409,0.0539551,0.0490723,0.0431519,0.0357056,0.0316162,0.0275269,0.0214844,0.0128784,0.00564575,0.00256348,0.00463867,0.00900269,0.00912476,0.00549316,0.00222778,0.00112915,0.00582886,0.0112,0.0161743,0.0183105,0.0192566,0.0189819,0.0184631,0.0184631,0.0177917,0.0140381,0.00778198,0.000549316,-0.0050354,-0.00491333,-0.0015564,0.00213623,0.00463867,0.00375366,0.00314331,0.0020752,-0.00128174,-0.00839233,-0.019928,-0.0349731,-0.0484619,-0.0623474,-0.0718689,-0.0804749,-0.0857849,-0.0908203,-0.0943604,-0.0960388,-0.0971069,-0.0957642,-0.0957031,-0.0939636,-0.0934143,-0.0918884,-0.0897217,-0.0853577,-0.0782471,-0.0701294,-0.061676,-0.0516663,-0.0422058,-0.0338135,-0.0254211,-0.0198059,-0.0155029,-0.0129395,-0.0143738,-0.0178528,-0.0256348,-0.0336914,-0.0401306,-0.0422668,-0.0395203,-0.0344849,-0.028656,-0.0228882,-0.0132751,0.00134277,0.0166321,0.0273132,0.0282593,0.0233459,0.0178528,0.017395,0.0205383,0.0246277,0.0296631,0.037262,0.0499878,0.0708008,0.0944824,0.115021,0.127991,0.129333,0.123627,0.113678,0.102753,0.0907288,0.0776367,0.0634155,0.0520935,0.0448914,0.0454407,0.0491943,0.0549622,0.0556335,0.0520935,0.0448914,0.0367737,0.0300598,0.0231628,0.0158997,0.00784302,-0.000213623,-0.00564575,-0.00704956,-0.003479,0.000610352,0.0012207,-6.10352e-05,-0.00189209,-0.000732422,0.00167847,0.00549316,0.00592041,0.00692749,0.00570679,0.00497437,0.00631714,0.00772095,0.00924683,0.00878906,0.00637817,0.00515747,0.00247192,0.003479,0.00369263,0.00430298,0.0032959,0.000610352,-0.00262451,-0.00549316,-0.0088501,-0.0147095,-0.0218201,-0.0313416,-0.0396118,-0.0491333,-0.0565186,-0.0646362,-0.0708618,-0.0783081,-0.0840149,-0.0908203,-0.0944824,-0.0966492,-0.0967712,-0.0944214,-0.0916748,-0.0874634,-0.0813293,-0.0743103,-0.0661621,-0.0596008,-0.053772,-0.0477905,-0.0419312,-0.0359192,-0.0317993,-0.0301208,-0.0291138,-0.0279236,-0.0263672,-0.0245056,-0.0269165,-0.0324707,-0.0414734,-0.0483093,-0.0492554,-0.0453796,-0.0402832,-0.0350952,-0.0309448,-0.0215454,-0.0050354,0.0144958,0.0293274,0.036377,0.0344238,0.0316162,0.0343628,0.0415344,0.0490723,0.0545044,0.0597839,0.0692749,0.0871277,0.108124,0.128601,0.139587,0.13858,0.127716,0.112946,0.0983276,0.0860291,0.0712891,0.0559692,0.0390625,0.0289307,0.0272522,0.0328064,0.0410156,0.0438843,0.0397949,0.0308838,0.0222168,0.017395,0.0139465,0.0100708,0.00134277,-0.00799561,-0.0129395,-0.0114136,-0.00424194,0.00335693,0.00582886,0.0017395,-0.00302124,-0.00476074,-0.0015564,0.00296021,0.00482178,0.00375366,0.00256348,0.00402832,0.00759888,0.0134888,0.0163879,0.0144348,0.00924683,0.00314331,-0.00112915,-0.00189209,0.00012207,0.00112915,0.00167847,0.00134277,0.00189209,0.00491333,0.00604248,0.00390625,-0.0050354,-0.0183105,-0.0318909,-0.0458374,-0.0564575,-0.0679321,-0.07724,-0.0866394,-0.0926819,-0.0959167,-0.0960388,-0.0944824,-0.0939026,-0.0929565,-0.0932922,-0.091156,-0.0887146,-0.0841064,-0.0779114,-0.0710754,-0.0630798,-0.0544434,-0.04422,-0.0346985,-0.0257568,-0.0191345,-0.0147095,-0.0129395,-0.0118713,-0.013031,-0.0140991,-0.0181885,-0.0261841,-0.0334167,-0.0389404,-0.0366516,-0.0308838,-0.0246277,-0.0183105,-0.0110779,0.000793457,0.0163879,0.0308838,0.0380554,0.0378418,0.0338135,0.032074,0.0347595,0.0391235,0.0438232,0.0496521,0.0584412,0.0724182,0.0921326,0.110931,0.125427,0.130005,0.123688,0.112091,0.0960999,0.0808716,0.0653076,0.0487366,0.0336304,0.0220032,0.0177307,0.0176392,0.0237732,0.0279236,0.0271912,0.0245056,0.0174561,0.0123596,0.00866699,0.00650024,0.00396729,-0.0017395,-0.00643921,-0.00744629,-0.00341797,0.0015564,0.00543213,0.00402832,0.000671387,-0.000671387,0.00222778,0.0085144,0.0140991,0.0187988,0.0205383,0.0228271,0.0232849,0.024292,0.0231628,0.0185242,0.0106812,0.0012207,-0.00610352,-0.0105896,-0.00973511,-0.0065918,-0.00302124,0.000793457,0.0038147,0.00698853,0.00827026,0.00509644,-0.00363159,-0.0172424,-0.0328979,-0.0475159,-0.0608826,-0.0708618,-0.0788574,-0.0845032,-0.0865784,-0.0867004,-0.0848389,-0.0822754,-0.0812683,-0.0799866,-0.0800781,-0.0797424,-0.0793152,-0.0779724,-0.0736389,-0.0675049,-0.0589294,-0.0498047,-0.0400085,-0.0297241,-0.0203247,-0.0128784,-0.00650024,-0.00308228,-0.00268555,-0.00247192,-0.0050354,-0.00738525,-0.0127563,-0.0206604,-0.0301208,-0.0376587,-0.041687,-0.040741,-0.0371704,-0.0322876,-0.0245056,-0.0144348,0.000549316,0.016571,0.0289307,0.0343628,0.0326233,0.0308838,0.029541,0.0306091,0.0317383,0.0336914,0.0397339,0.050415,0.0674438,0.0874634,0.106171,0.117371,0.11792,0.111206,0.0967102,0.0820923,0.0661621,0.049408,0.032074,0.0173035,0.0085144,0.00906372,0.0140381,0.024353,0.0302734,0.0317383,0.0308838,0.0287781,0.0260315,0.0244446,0.0191956,0.0124817,0.00463867,6.10352e-05,-0.000671387,0.00363159,0.0083313,0.00939941,0.00784302,0.00524902,0.00704956,0.0103455,0.0148926,0.0153809,0.0139465,0.0101318,0.00900269,0.00793457,0.00900269,0.00683594,0.00448608,-0.000610352,-0.00476074,-0.00650024,-0.00430298,-0.00128174,0.00256348,0.00430298,0.00524902,0.00570679,0.00738525,0.0062561,0.0020752,-0.00805664,-0.0202637,-0.03302,-0.0444336,-0.053894,-0.0619507,-0.0687256,-0.074646,-0.0775757,-0.0801392,-0.0793152,-0.0776367,-0.0778503,-0.0768433,-0.0770569,-0.0763855,-0.0741577,-0.0698547,-0.0635681,-0.0567017,-0.0467224,-0.0380554,-0.0264282,-0.0168457,-0.00839233,-0.00222778,0.0015564,0.0017395,-0.000274658,-0.00509644,-0.0101929,-0.0173035,-0.0255127,-0.0375977,-0.0485229,-0.0561829,-0.0585327,-0.0550232,-0.0498657,-0.0432129,-0.0355835,-0.0228882,-0.00738525,0.00683594,0.0161133,0.0174561,0.0152893,0.0149536,0.0170593,0.0224304,0.028656,0.0363159,0.0477905,0.0646973,0.0861816,0.108246,0.124634,0.131073,0.127167,0.114624,0.0996094,0.0820007,0.0649719,0.0469055,0.0297241,0.017395,0.0126038,0.0144958,0.0222168,0.0292664,0.0326843,0.0311279,0.0270996,0.0218201,0.0161743,0.0110168,0.00448608,-0.00436401,-0.0101318,-0.0122681,-0.00811768,-0.000732422,0.00637817,0.00857544,0.00857544,0.00985718,0.0138245,0.0186462,0.0220032,0.0218811,0.0195923,0.017395,0.0161743,0.0169678,0.0180664,0.0162354,0.0119324,0.00759888,0.00448608,0.00357056,0.00610352,0.00793457,0.00946045,0.00958252,0.0104675,0.0114746,0.0127563,0.0114746,0.00375366,-0.00631714,-0.0190735,-0.0313416,-0.0414734,-0.0518799,-0.0614014,-0.0693359,-0.0748291,-0.0767822,-0.0767212,-0.0744324,-0.073761,-0.0725403,-0.0714111,-0.0706177,-0.069397,-0.0673828,-0.065033,-0.0619507,-0.0584412,-0.0532837,-0.0482483,-0.0400085,-0.032074,-0.0250854,-0.019928,-0.0174561,-0.0162354,-0.0167236,-0.0171814,-0.0194092,-0.0264282,-0.0366516,-0.0488586,-0.0584412,-0.065155,-0.0675964,-0.0649109,-0.0598755,-0.0512085,-0.0397949,-0.0238342,-0.00558472,0.0134277,0.0260315,0.0317993,0.0323486,0.0325623,0.0346375,0.0393372,0.0432739,0.0489197,0.0559082,0.0687866,0.0860291,0.104828,0.120148,0.12558,0.120392,0.108063,0.0919495,0.0749817,0.057312,0.0396729,0.0226135,0.00872803,0.00180054,0.00195312,0.0085144,0.0159607,0.0193176,0.0194092,0.016449,0.0149536,0.0127563,0.0124207,0.00933838,0.00576782,0.00256348,0.00201416,0.0062561,0.0131531,0.0198669,0.0220032,0.0209961,0.0212097,0.0221558,0.0260315,0.0294495,0.0293884,0.0269165,0.0246277,0.0231018,0.0238342,0.0238342,0.0212097,0.0178528,0.0124207,0.00967407,0.00726318,0.00744629,0.00933838,0.0101318,0.0105286,0.0115356,0.0112,0.0114136,0.00845337,0.00335693,-0.00665283,-0.017395,-0.0307922,-0.0423584,-0.0520935,-0.0624695,-0.0713501,-0.0785217,-0.0841675,-0.0856934,-0.0869141,-0.0855713,-0.0856934,-0.0846252,-0.0832214,-0.0826111,-0.0794067,-0.0763855,-0.0715332,-0.0663147,-0.0602722,-0.053772,-0.0458984,-0.0368347,-0.0282593,-0.0204773,-0.0151062,-0.0129395,-0.0125427,-0.0122681,-0.0134277,-0.0177307,-0.0252991,-0.036438,-0.0473022,-0.0549622,-0.0579834,-0.0578613,-0.0539551,-0.0481873,-0.0384521,-0.0252991,-0.00793457,0.00933838,0.0228271,0.0307312,0.0319519,0.0326233,0.0320129,0.0332947,0.0344849,0.0360413,0.0410767,0.0490723,0.0641479,0.0810852,0.0976562,0.109192,0.113098,0.108124,0.098114,0.0826111,0.0671082,0.0487976,0.0310059,0.0149536,0.00335693,-0.00134277,0.00088501,0.0085144,0.0154419,0.0215454,0.0249634,0.0269165,0.0274353,0.0283813,0.0275879,0.0246887,0.0194702,0.015564,0.0148315,0.0171204,0.0224915,0.0255127,0.0273132,0.0262451,0.0275269,0.0291138,0.0326233,0.0346375,0.0342407,0.0319519,0.028595,0.027771,0.0270386,0.0264282,0.0233459,0.0178528,0.0115356,0.00610352,0.0020752,0.00167847,0.00088501,0.000549316,0.000213623,0.000610352,0.00161743,0.00222778,0.000732422,-0.00497437,-0.0150452,-0.0283203,-0.0428162,-0.0565186,-0.0687256,-0.0787354,-0.0875244,-0.0929565,-0.0949707,-0.0933533,-0.089325,-0.0842896,-0.0808105,-0.0774536,-0.0769043,-0.0760498,-0.0752258,-0.072876,-0.0689392,-0.0632324,-0.0569763,-0.0478516,-0.037384,-0.025238,-0.0148315,-0.0067749,-0.0032959,-0.00442505,-0.00717163,-0.0115967,-0.016449,-0.0236206,-0.0328979,-0.0433655,-0.052948,-0.057373,-0.0584412,-0.0546875,-0.0504761,-0.0452271,-0.0396729,-0.029541,-0.0158997,-0.000457764,0.012146,0.0183105,0.0215454,0.0248413,0.0297241,0.0360413,0.0420837,0.0459595,0.0512695,0.0594482,0.0726929,0.0892029,0.103638,0.111206,0.112823,0.105377,0.094574,0.0830078,0.0680542,0.0526733,0.0356445,0.0191956,0.00817871,0.00476074,0.0088501,0.0158386,0.0228271,0.0265198,0.0279846,0.0291138,0.0300598,0.0306702,0.0281982,0.0234375,0.0175171,0.0142822,0.016449,0.0223389,0.0294495,0.0345764,0.0348206,0.0358276,0.0374451,0.0406799,0.0424194,0.0409546,0.0349121,0.0280457,0.0226135,0.0202637,0.0189819,0.0178528,0.0129395,0.00793457,0.00262451,-0.000671387,-0.00274658,-0.00289917,-0.00549316,-0.00698853,-0.0103455,-0.0102539,-0.00958252,-0.00924683,-0.0104675,-0.0167847,-0.0263062,-0.0366516,-0.0459595,-0.0552368,-0.0624695,-0.0723572,-0.0788574,-0.0844421,-0.0856323,-0.0822754,-0.0787354,-0.0759583,-0.0735474,-0.0725403,-0.0717468,-0.0700073,-0.0682678,-0.0674438,-0.0654297,-0.0624084,-0.0567932,-0.0498657,-0.0399475,-0.0312805,-0.0226135,-0.0168457,-0.0126953,-0.00939941,-0.0105896,-0.0110779,-0.0158386,-0.0233459,-0.0315552,-0.0414124,-0.0510864,-0.0580444,-0.0617981,-0.0610657,-0.0559692,-0.0475769,-0.0367737,-0.0241089,-0.00891113,0.00726318,0.0205994,0.0289917,0.0312195,0.0316162,0.0302734,0.0316162,0.0343018,0.037262,0.0445557,0.0541077,0.0686035,0.0845642,0.0999451,0.110535,0.112885,0.107452,0.0967712,0.0812073,0.0645752,0.048645,0.0335693,0.0189209,0.0104675,0.00778198,0.0107422,0.0176392,0.0256348,0.0307922,0.0328064,0.033905,0.0325623,0.0325623,0.0306702,0.0292053,0.0255127,0.0239563,0.0232239,0.0262451,0.0309448,0.032959,0.033905,0.0310669,0.0303955,0.0309448,0.032135,0.0320129,0.0292664,0.0260315,0.0226746,0.0209351,0.0189209,0.016571,0.0124207,0.00778198,0.00189209,-0.00280762,-0.00531006,-0.00765991,-0.00772095,-0.00805664,-0.00704956,-0.0062561,-0.00631714,-0.00650024,-0.0100708,-0.0161133,-0.0258484,-0.0370483,-0.0483093,-0.0594482,-0.0688477,-0.0769043,-0.0832214,-0.0861816,-0.0869141,-0.0842896,-0.0808105,-0.0777893,-0.0760498,-0.0751038,-0.0744324,-0.0735474,-0.0722046,-0.0701904,-0.0669861,-0.0612183,-0.0546875,-0.0439453,-0.0339661,-0.0230103,-0.0132751,-0.00726318,-0.00335693,-0.00314331,-0.00531006,-0.0100708,-0.0157166,-0.0249023,-0.0340881,-0.0443726,-0.0533447,-0.0602722,-0.0623474,-0.061554,-0.0567932,-0.0484009,-0.0387878,-0.0263062,-0.0126953,0.00234985,0.0144348,0.0240173,0.0279236,0.028595,0.0288696,0.0317383,0.0355835,0.0430908,0.0505371,0.0604553,0.0737,0.0895386,0.105103,0.11618,0.119476,0.113495,0.100616,0.0849609,0.0680542,0.0508728,0.0353699,0.0197449,0.00872803,0.00509644,0.00698853,0.0146179,0.0231018,0.0294495,0.032074,0.0330811,0.0334778,0.0332336,0.0333557,0.0299988,0.0260315,0.0215454,0.0214233,0.0232849,0.0281067,0.0343018,0.0361023,0.0361633,0.036438,0.0367737,0.038269,0.0383301,0.0350952,0.0293884,0.0231628,0.0173035,0.0142822,0.0110779,0.00717163,0.0015564,-0.00430298,-0.00924683,-0.0128784,-0.0133667,-0.0140381,-0.0152893,-0.0157166,-0.0181274,-0.0184631,-0.0189209,-0.0196533,-0.0226135,-0.0290527,-0.0376587,-0.0468445,-0.0551147,-0.0613403,-0.0676575,-0.0730896,-0.0776367,-0.0797424,-0.0786438,-0.0763855,-0.0716858,-0.0701294,-0.0673218,-0.0664978,-0.0657654,-0.0646973,-0.0624695,-0.0600586,-0.056366,-0.0512695,-0.0452881,-0.0379333,-0.0307312,-0.0232849,-0.0185852,-0.0148926,-0.0152283,-0.0177917,-0.0209351,-0.0253601,-0.0302734,-0.0374451,-0.0447693,-0.052002,-0.0569763,-0.0575256,-0.0541077,-0.0474548,-0.0388489,-0.0302734,-0.0188599,-0.00476074,0.00878906,0.0221558,0.0306702,0.0334778,0.0353088,0.036377,0.0404663,0.0444336,0.0487366,0.0532837,0.0602722,0.0704651,0.0845642,0.0971069,0.105835,0.107056,0.100739,0.0914001,0.0775757,0.0645752,0.0492554,0.0353088,0.0224915,0.0137634,0.0116882,0.0138245,0.0212708,0.0289917,0.0343018,0.0381775,0.039856,0.0401306,0.0400696,0.0381165,0.0343018,0.0293274,0.0241699,0.0226746,0.0232849,0.02771,0.0296631,0.029541,0.028717,0.0267029,0.0263672,0.0269165,0.0257568,0.0211487,0.0161743,0.0108643,0.00759888,0.0067749,0.00537109,0.00256348,-0.000793457,-0.00543213,-0.00845337,-0.0113525,-0.012085,-0.013031,-0.0134888,-0.0148315,-0.0145569,-0.0134888,-0.0127563,-0.0132751,-0.016571,-0.0233459,-0.0315552,-0.041626,-0.0509338,-0.0592041,-0.0681152,-0.0750427,-0.0804138,-0.082428,-0.0823364,-0.0805359,-0.0771179,-0.0758972,-0.0730896,-0.0723572,-0.0713501,-0.0691833,-0.066925,-0.0644836,-0.0598755,-0.0546265,-0.0481873,-0.0394592,-0.0314026,-0.0240173,-0.0187378,-0.0159607,-0.0157166,-0.0155029,-0.0175781,-0.0214844,-0.0270996,-0.0344238,-0.0414124,-0.0475769,-0.0496521,-0.0492554,-0.0448303,-0.0387878,-0.0301208,-0.0202026,-0.00872803,0.00469971,0.0159607,0.0249023,0.0289917,0.0304565,0.0310059,0.0333557,0.0369873,0.0422668,0.0481873,0.0568542,0.0678406,0.0822144,0.0960388,0.107178,0.110992,0.108917,0.0995178,0.0873718,0.0730896,0.0585327,0.0448914,0.0319519,0.0225525,0.0170593,0.0172424,0.0224304,0.0274353,0.0323486,0.0332947,0.0340271,0.0315552,0.0294495,0.0259705,0.0224304,0.0177917,0.0137634,0.0128174,0.0141602,0.0185852,0.0231018,0.0267639,0.0272522,0.0275879,0.0269775,0.0264282,0.0266418,0.024353,0.0202026,0.015564,0.012207,0.0109253,0.0100708,0.00906372,0.00604248,0.00140381,-0.00222778,-0.00698853,-0.00912476,-0.0115356,-0.0137024,-0.0157776,-0.0178528,-0.0180664,-0.0181274,-0.0184021,-0.0202637,-0.0255737,-0.0331421,-0.0424805,-0.0522156,-0.0603333,-0.0677795,-0.074646,-0.0794678,-0.0827637,-0.0828247,-0.0802002,-0.0761719,-0.0722961,-0.0700684,-0.0682678,-0.0675049,-0.0663147,-0.0644226,-0.0621338,-0.0595398,-0.0552368,-0.0498047,-0.0426025,-0.0341492,-0.0269775,-0.0206604,-0.0171204,-0.0162354,-0.0167236,-0.0185852,-0.0226746,-0.0275879,-0.0356445,-0.0430298,-0.0493164,-0.0510864,-0.0489197,-0.0431519,-0.0354919,-0.0263672,-0.01651,-0.00357056,0.0101929,0.0231628,0.0318909,0.0350952,0.0349731,0.0359192,0.0386047,0.0418091,0.0462341,0.050415,0.057312,0.0673218,0.0817566,0.0956421,0.105835,0.108734,0.105652,0.0967102,0.0856323,0.0728149,0.0579834,0.0428162,0.0293884,0.0184631,0.013031,0.0138855,0.0185852,0.0238953,0.0281067,0.0316162,0.0317993,0.0319519,0.0310059,0.028717,0.0250244,0.0195923,0.0157166,0.0134888,0.0140991,0.0175781,0.0214844,0.0234985,0.0230103,0.0228271,0.0235596,0.024353,0.024292,0.0225525,0.0179749,0.0136108,0.0105286,0.0100708,0.00839233,0.0065918,0.003479,-0.00112915,-0.00558472,-0.00857544,-0.0101318,-0.0114746,-0.0124817,-0.0138245,-0.0149536,-0.0140991,-0.0138855,-0.0141602,-0.0162354,-0.0227661,-0.0309448,-0.040741,-0.0491333,-0.0575867,-0.065033,-0.0724792,-0.078064,-0.0818176,-0.082428,-0.0802612,-0.0776367,-0.0748901,-0.0730896,-0.0726318,-0.0711975,-0.0700684,-0.0672607,-0.0644226,-0.0611267,-0.0568542,-0.0509949,-0.0432739,-0.0343628,-0.0263672,-0.0201416,-0.017395,-0.0158997,-0.017395,-0.0193176,-0.0239563,-0.0317383,-0.039856,-0.0466309,-0.0487366,-0.0462341,-0.0393982,-0.0302124,-0.0202637,-0.00872803,0.00463867,0.0185242,0.0289307,0.0357056,0.0357056,0.0331421,0.0311279,0.032074,0.0359802,0.0391846,0.0461121,0.0540161,0.0683899,0.0842285,0.0993958,0.108459,0.11026,0.105042,0.0967102,0.0845642,0.0710144,0.0567932,0.0409546,0.0279236,0.0200806,0.016449,0.017395,0.0221558,0.0265808,0.0290527,0.0303345,0.0304565,0.0293884,0.0279236,0.0246887,0.0196533,0.0134277,0.00878906,0.0062561,0.00778198,0.0100098,0.0124207,0.0124817,0.0142212,0.0160522,0.019928,0.0240173,0.0259094,0.0246277,0.0223389,0.0197449,0.0174561,0.0170593,0.0142822,0.0100708,0.0050354,0.000274658,-0.00289917,-0.00430298,-0.00509644,-0.00570679,-0.00811768,-0.00817871,-0.00839233,-0.00778198,-0.00778198,-0.0101318,-0.0155029,-0.0238953,-0.0335693,-0.0430908,-0.0528259,-0.061554,-0.0711975,-0.0779724,-0.0838928,-0.0858459,-0.0838318,-0.0820923,-0.0779724,-0.0754395,-0.0734253,-0.0707397,-0.0701904,-0.0686035,-0.0671692,-0.0663147,-0.0634766,-0.0594482,-0.053772,-0.0453796,-0.0354919,-0.0264282,-0.0198059,-0.0154419,-0.0149536,-0.0158386,-0.0191956,-0.0249634,-0.0349731,-0.0428162,-0.0477905,-0.0473938,-0.0396118,-0.0312805,-0.0194092,-0.00744629,0.0071106,0.021759,0.0340881,0.0404663,0.040741,0.036499,0.0332336,0.0299377,0.0302124,0.0325623,0.0377808,0.0462952,0.0587769,0.0744324,0.0904846,0.100861,0.105316,0.102631,0.0942993,0.0830994,0.0692749,0.0550232,0.0411987,0.0285339,0.0206604,0.0159607,0.0160522,0.0198059,0.0249023,0.0284424,0.0297852,0.029541,0.0280457,0.0254211,0.0237732,0.0195312,0.0141602,0.00878906,0.0050354,0.00558472,0.00683594,0.00839233,0.00900269,0.00906372,0.0108643,0.0141602,0.0184021,0.0226746,0.024292,0.0248413,0.024231,0.0226135,0.0214233,0.0188599,0.0151672,0.00967407,0.00402832,-0.00106812,-0.00448608,-0.00537109,-0.00598145,-0.00558472,-0.00497437,-0.00476074,-0.00482178,-0.00515747,-0.00772095,-0.0126038,-0.020874,-0.0320129,-0.0434875,-0.0541687,-0.0639648,-0.0725403,-0.0791931,-0.0842285,-0.0869751,-0.0862427,-0.0836182,-0.0792542,-0.0761719,-0.0724182,-0.0704651,-0.0684509,-0.0672607,-0.0655823,-0.0637512,-0.061554,-0.0578003,-0.0534363,-0.0465088,-0.0390015,-0.0298767,-0.0221558,-0.0163879,-0.0135498,-0.0148926,-0.0169678,-0.0223389,-0.0279846,-0.0331421,-0.0360413,-0.0359192,-0.0312805,-0.0235596,-0.0133667,6.10352e-05,0.0126953,0.0250244,0.0325623,0.0360413,0.0343018,0.0317383,0.0279846,0.0257568,0.0256348,0.0276489,0.0331421,0.0440369,0.0579834,0.0741577,0.0869751,0.0943604,0.0960388,0.0916748,0.0842285,0.0730286,0.0614014,0.0477905,0.0361023,0.0271912,0.0237732,0.0252991,0.0281067,0.0326843,0.0346985,0.0357666,0.0345764,0.0322876,0.0287781,0.0246887,0.0191345,0.0128784,0.00906372,0.00683594,0.00726318,0.00952148,0.0116882,0.0115356,0.0110168,0.0108032,0.0108032,0.0134277,0.0137634,0.0142822,0.0138855,0.0149536,0.017395,0.019928,0.0209351,0.0204163,0.015625,0.0108032,0.00549316,0.000274658,-0.0038147,-0.00805664,-0.0119324,-0.0131531,-0.013092,-0.0104065,-0.00857544,-0.00765991,-0.0100098,-0.0149536,-0.0223389,-0.0311279,-0.0406799,-0.0524902,-0.0640869,-0.0738831,-0.0827637,-0.0867004,-0.0879211,-0.0865784,-0.0830078,-0.0787964,-0.0738831,-0.0679321,-0.0632324,-0.0583191,-0.0562439,-0.0532837,-0.0509949,-0.0489807,-0.0461121,-0.0430298,-0.0395203,-0.0349731,-0.0306702,-0.0268555,-0.0246887,-0.0235596,-0.0241699,-0.0254211,-0.0265808,-0.0269165,-0.025177,-0.0220947,-0.0179749,-0.0127563,-0.00576782,0.00289917,0.0115356,0.0180664,0.0209961,0.019989,0.0175781,0.0167847,0.0163879,0.0194702,0.0225525,0.0269775,0.0371094,0.0487366,0.0644836,0.0786438,0.0879211,0.0897217,0.086792,0.0803223,0.0728149,0.0634766,0.0536194,0.0428772,0.0339661,0.0294495,0.0303345,0.0342407,0.040741,0.0436096,0.0438843,0.0421448,0.0387878,0.0347595,0.0297852,0.0226135,0.0151062,0.00759888,0.00296021,0.00222778,0.00430298,0.00738525,0.00967407,0.00918579,0.0101929,0.0100098,0.012207,0.0128174,0.0126038,0.0103455,0.00784302,0.00698853,0.00866699,0.0101318,0.012207,0.0106812,0.00939941,0.00570679,0.003479,0.000732422,-0.00289917,-0.00576782,-0.00991821,-0.012207,-0.0136108,-0.0134888,-0.012146,-0.0132141,-0.0138855,-0.0183105,-0.0228271,-0.0293274,-0.0358276,-0.044281,-0.0536804,-0.0632935,-0.0719604,-0.0775146,-0.0803223,-0.0803223,-0.0779724,-0.0740967,-0.0697937,-0.0636292,-0.058197,-0.052948,-0.0481873,-0.045105,-0.0433655,-0.0426025,-0.041687,-0.040741,-0.0388489,-0.0377197,-0.0369873,-0.0377808,-0.0379944,-0.0379944,-0.036499,-0.0330811,-0.0298767,-0.0245056,-0.0185242,-0.0114746,-0.00289917,0.00476074,0.0125427,0.0175171,0.019928,0.0192566,0.0161133,0.0133667,0.0114746,0.0111389,0.0125427,0.0171814,0.025177,0.037323,0.0515442,0.0663147,0.077179,0.0828857,0.0830078,0.0795898,0.0726318,0.0643005,0.0542297,0.0433655,0.0352478,0.0298767,0.0303955,0.0340271,0.0396118,0.0454407,0.0487976,0.049469,0.0498047,0.0467834,0.0426025,0.0358276,0.0270996,0.0192566,0.0118713,0.00857544,0.00637817,0.00537109,0.00564575,0.00469971,0.00448608,0.00457764,0.00497437,0.00476074,0.00415039,0.00222778,0.00088501,0,-0.000213623,0.0015564,0.00213623,0.0020752,0.00180054,0.00012207,-0.000335693,-0.00195312,-0.003479,-0.00396729,-0.00616455,-0.00570679,-0.00637817,-0.00491333,-0.00457764,-0.0038147,-0.00531006,-0.00857544,-0.0134277,-0.0201416,-0.0279236,-0.0361633,-0.0446167,-0.0548401,-0.0629578,-0.0696106,-0.073822,-0.0749817,-0.0743713,-0.0726318,-0.069397,-0.0661011,-0.0627441,-0.058136,-0.0542297,-0.0500793,-0.0479126,-0.0457764,-0.0430908,-0.0399475,-0.0361023,-0.0330811,-0.0314636,-0.0319519,-0.0324097,-0.0336914,-0.0334778,-0.0326233,-0.0297241,-0.0250244,-0.0187378,-0.0104675,-0.00140381,0.00817871,0.0178528,0.024353,0.0273743,0.0259094,0.0216064,0.01651,0.0128174,0.00952148,0.0101318,0.0124207,0.0197449,0.0311279,0.0455627,0.0602112,0.0724792,0.0797424,0.0814209,0.0791321,0.0724792,0.0644226,0.0552979,0.0444946,0.037323,0.0309448,0.0299988,0.0327454,0.0369873,0.0424194,0.0459595,0.0483093,0.0483093,0.0455017,0.0415344,0.0354919,0.027771,0.0195923,0.012085,0.0065918,0.00308228,0.0017395,0.00134277,0.000793457,0.000549316,0.00134277,0.00213623,0.00396729,0.00390625,0.00390625,0.00140381,0.00112915,0,0.000793457,0.000396729,0.00012207,-0.000335693,-0.00134277,-0.00268555,-0.00369263,-0.00610352,-0.00793457,-0.00967407,-0.0109253,-0.0113525,-0.0112,-0.0104065,-0.0101318,-0.0112,-0.0126038,-0.0169678,-0.0220947,-0.0288696,-0.038269,-0.0475769,-0.0570374,-0.0657654,-0.0722961,-0.074646,-0.0729675,-0.0701294,-0.0653076,-0.0591125,-0.0534363,-0.0473938,-0.0434875,-0.0414124,-0.0414734,-0.0436096,-0.045166,-0.0464478,-0.0455627,-0.0434875,-0.0418091,-0.0410156,-0.0383301,-0.0351562,-0.0300598,-0.024231,-0.0181274,-0.0132141,-0.00750732,-0.00180054,0.0050354,0.0119324,0.0186462,0.0233459,0.0246277,0.0237732,0.0205383,0.0174561,0.015625,0.015625,0.0162964,0.020813,0.0266418,0.0379944,0.0500793,0.0624084,0.0705261,0.0752258,0.0734253,0.0693359,0.0623474,0.0540161,0.0448303,0.0359192,0.0281982,0.0241699,0.0260315,0.0307922,0.0381775,0.0434875,0.0469666,0.0475769,0.0465088,0.0428772,0.0377197,0.0299377,0.0216064,0.0127563,0.00491333,0.00128174,-0.00100708,0,0.00106812,0.00234985,0.00296021,0.00415039,0.00643921,0.00772095,0.00817871,0.00570679,0.0032959,0.000457764,-0.00106812,-0.0012207,-0.0020752,-0.00268555,-0.00515747,-0.0071106,-0.00827026,-0.00857544,-0.00857544,-0.00933838,-0.0108032,-0.0128784,-0.0142212,-0.015564,-0.01651,-0.0179749,-0.0211487,-0.0260925,-0.0302734,-0.0357666,-0.0414124,-0.0464478,-0.0539551,-0.0606079,-0.0653687,-0.0677795,-0.0675049,-0.0653076,-0.0617981,-0.0580444,-0.0534363,-0.0473022,-0.0418701,-0.0371704,-0.0354919,-0.0356445,-0.0367126,-0.0370483,-0.0378418,-0.0391846,-0.0410767,-0.0428162,-0.044281,-0.0420227,-0.0379944,-0.0314026,-0.0228271,-0.0149536,-0.00482178,0.00476074,0.0141602,0.024353,0.0304565,0.0338135,0.0328979,0.0288696,0.0252991,0.0213318,0.0202026,0.0196533,0.0203247,0.0241699,0.0323486,0.0434265,0.0560303,0.066925,0.0732117,0.0743713,0.0714111,0.0665894,0.0580444,0.0496521,0.0384521,0.0282593,0.0205994,0.0171204,0.0185852,0.0226746,0.0293274,0.0342407,0.0379333,0.0406799,0.0419312,0.0411377,0.0381165,0.0317383,0.0232849,0.0141602,0.0065918,0.000610352,-0.0017395,-0.0038147,-0.00497437,-0.00457764,-0.00302124,0.000274658,0.00524902,0.00827026,0.00967407,0.0088501,0.00732422,0.00497437,0.00268555,-6.10352e-05,-0.00323486,-0.00805664,-0.0108643,-0.0139465,-0.0146179,-0.0144958,-0.0140381,-0.0141602,-0.0138245,-0.0142822,-0.0140381,-0.0148926,-0.0160522,-0.019989,-0.0249634,-0.0310059,-0.037262,-0.0440979,-0.0512085,-0.0586548,-0.065979,-0.0706787,-0.0731506,-0.0717468,-0.0681152,-0.0632935,-0.0576477,-0.050415,-0.0440369,-0.0374451,-0.0326843,-0.0317993,-0.0322266,-0.0347595,-0.0369873,-0.0386658,-0.0401306,-0.041626,-0.0418091,-0.0413513,-0.037323,-0.0319519,-0.0236816,-0.0148926,-0.00491333,0.00408936,0.0118713,0.0192566,0.0263672,0.0311279,0.0332947,0.03302,0.0293884,0.0253601,0.0235596,0.0238953,0.0255127,0.0291138,0.0346985,0.0424194,0.0526123,0.0634155,0.0729675,0.07724,0.0765686,0.0714722,0.0632324,0.053833,0.0446167,0.0343018,0.0245667,0.0187378,0.0163879,0.0184631,0.0238342,0.0308838,0.0356445,0.0405273,0.0422058,0.0418701,0.0397339,0.0341492,0.0287781,0.0202026,0.0123596,0.00531006,-0.000274658,-0.00256348,-0.00442505,-0.0050354,-0.00482178,-0.00402832,-0.00222778,-0.000274658,0.0020752,0.00274658,0.00289917,0.0017395,0.000610352,-0.00128174,-0.00308228,-0.00637817,-0.00924683,-0.0125427,-0.0158997,-0.0183105,-0.0191345,-0.0194702,-0.0185852,-0.0171814,-0.0157776,-0.0139465,-0.0147095,-0.0146179,-0.0179138,-0.0229492,-0.0306702,-0.0396118,-0.0499268,-0.0600586,-0.0693359,-0.077179,-0.0813293,-0.0826111,-0.0793152,-0.0730286,-0.0657043,-0.0566406,-0.0481262,-0.0397949,-0.033905,-0.0316162,-0.032074,-0.0344238,-0.0375061,-0.041626,-0.0440979,-0.0458984,-0.0463867,-0.0428772,-0.0367126,-0.02771,-0.0176392,-0.00537109,0.00531006,0.016571,0.024353,0.0302734,0.0344238,0.0359192,0.0350342,0.0322266,0.0275269,0.0228882,0.020752,0.020752,0.024231,0.0287781,0.0362549,0.0439453,0.0543518,0.0639648,0.0728149,0.0775146,0.077301,0.0740356,0.0677795,0.0598755,0.0519409,0.0437622,0.0340271,0.0272522,0.0238342,0.0232239,0.0267029,0.0312805,0.0363159,0.0400085,0.0419312,0.0421448,0.0400696,0.0355835,0.0294495,0.0202026,0.011261,0.00241089,-0.00524902,-0.00933838,-0.0118103,-0.0122681,-0.0124207,-0.0101929,-0.00732422,-0.00323486,0.000549316,0.00140381,0.00189209,-0.000793457,-0.00247192,-0.00531006,-0.00738525,-0.00979614,-0.012207,-0.0139465,-0.0160522,-0.0169678,-0.0173035,-0.0184021,-0.0187378,-0.019928,-0.020813,-0.0231018,-0.0241089,-0.0268555,-0.0287781,-0.0335693,-0.0386047,-0.0458374,-0.0542297,-0.0617981,-0.0706787,-0.0765076,-0.0802612,-0.0803223,-0.0784607,-0.0731506,-0.0661621,-0.0561829,-0.0472412,-0.0391235,-0.0340271,-0.0307312,-0.0323486,-0.0339661,-0.0384521,-0.0428162,-0.0463867,-0.0488586,-0.0487976,-0.0445557,-0.0369873,-0.0246887,-0.0101318,0.00363159,0.0169067,0.0264282,0.0351562,0.0418091,0.0447083,0.044281,0.0402832,0.0331421,0.0257568,0.0222168,0.0218201,0.0238953,0.0288696,0.0355835,0.0447693,0.0564575,0.0691833,0.0791321,0.0837708,0.0836792,0.0777893,0.0696106,0.0613403,0.0518799,0.0428162,0.0334778,0.0264282,0.0236816,0.0250244,0.0302124,0.037323,0.0426025,0.0464478,0.0474548,0.0475159,0.0438232,0.0414124,0.033905,0.0247803,0.013031,0.00341797,-0.00457764,-0.00906372,-0.0123596,-0.0145569,-0.0167236,-0.0158386,-0.0141602,-0.00933838,-0.00491333,-0.0015564,-0.000549316,-0.00241089,-0.00369263,-0.00631714,-0.00866699,-0.013031,-0.0177917,-0.0224304,-0.0273743,-0.0279846,-0.0279846,-0.0262451,-0.0232849,-0.0219421,-0.0201416,-0.019928,-0.0200806,-0.0220947,-0.02771,-0.0353088,-0.0457764,-0.0569763,-0.0677795,-0.0769653,-0.08255,-0.0860291,-0.0851746,-0.0822144,-0.0755615,-0.0675049,-0.0574646,-0.0478516,-0.0401917,-0.0354919,-0.0346375,-0.0357056,-0.0392761,-0.0426941,-0.045105,-0.0464478,-0.0473938,-0.0457153,-0.0424805,-0.03302,-0.0205383,-0.00549316,0.00665283,0.0172424,0.0247803,0.0324707,0.0379944,0.0426025,0.0422058,0.0376587,0.0316162,0.0255737,0.0236816,0.0249023,0.0280457,0.0317993,0.0377197,0.0457153,0.0555725,0.0679321,0.077301,0.0827637,0.0833435,0.0796509,0.0726318,0.065918,0.0586548,0.0506592,0.0420837,0.0346375,0.0300598,0.0296631,0.0333557,0.0392761,0.0439453,0.0465698,0.0468445,0.04422,0.0424194,0.0390015,0.0324707,0.0234375,0.0125427,0.00262451,-0.00497437,-0.0088501,-0.0108643,-0.0116882,-0.0126038,-0.0120239,-0.00918579,-0.00396729,0.000274658,0.00375366,0.003479,0.000274658,-0.00314331,-0.00738525,-0.0115356,-0.0154419,-0.0202026,-0.0256348,-0.0299377,-0.0315552,-0.0296631,-0.0276489,-0.0245056,-0.0232239,-0.0232849,-0.0238342,-0.0259705,-0.0299377,-0.0359802,-0.045166,-0.056366,-0.0673218,-0.0770569,-0.0812073,-0.0834351,-0.0818787,-0.0783997,-0.0726318,-0.0655823,-0.056366,-0.0470581,-0.0400085,-0.037262,-0.0367737,-0.0401306,-0.0440369,-0.0469055,-0.0489197,-0.0512695,-0.0522766,-0.0514221,-0.0445557,-0.0340881,-0.019928,-0.00482178,0.00765991,0.0183105,0.0269165,0.0349121,0.0414734,0.0434265,0.0420227,0.0369873,0.0306702,0.0266418,0.024353,0.0250244,0.0261841,0.0301208,0.0353088,0.0430298,0.053894,0.0643616,0.0718079,0.0761108,0.0758972,0.0733032,0.0683899,0.0632935,0.057312,0.0506592,0.0429382,0.0379333,0.0358276,0.0365906,0.040802,0.0443726,0.0477295,0.0489197,0.0514221,0.0512085,0.0512085,0.0471802,0.0397949,0.0306091,0.0196533,0.00991821,0.000610352,-0.00726318,-0.0148315,-0.0205383,-0.0240173,-0.0232239,-0.0203247,-0.0152893,-0.0105286,-0.00604248,-0.00195312,-0.000549316,0.00088501,-0.0015564,-0.00442505,-0.0106812,-0.016571,-0.0229492,-0.0284424,-0.0302734,-0.0316162,-0.0302124,-0.0296631,-0.0268555,-0.0253601,-0.0235596,-0.0247803,-0.0291138,-0.036438,-0.0467834,-0.0580444,-0.0689392,-0.078064,-0.0856934,-0.0901489,-0.0910645,-0.0885925,-0.0810852,-0.0724792,-0.0617981,-0.053009,-0.0462952,-0.0406799,-0.0386658,-0.037323,-0.0386047,-0.0413513,-0.0425415,-0.0444336,-0.0431519,-0.0394592,-0.0327454,-0.0229492,-0.0114746,0.000610352,0.0120239,0.0222168,0.032135,0.0399475,0.04422,0.0452881,0.0430908,0.038269,0.0334167,0.0292053,0.0262451,0.0250854,0.0257568,0.0297241,0.0354309,0.0443726,0.0551758,0.0628967,0.0701294,0.0726929,0.0733643,0.0701904,0.0658264,0.0594482,0.0516663,0.04422,0.0380554,0.0357666,0.0341492,0.0375061,0.0413513,0.0455017,0.0489197,0.0509338,0.0514221,0.0501404,0.0471802,0.0406189,0.032135,0.0212097,0.0119324,0.00247192,-0.00549316,-0.0110168,-0.015564,-0.0188599,-0.0177307,-0.0158386,-0.0117493,-0.00799561,-0.0038147,-0.00128174,-0.000335693,-0.000610352,-0.0020752,-0.00543213,-0.0103455,-0.0157776,-0.0214844,-0.0267639,-0.0314026,-0.0330811,-0.0341492,-0.03302,-0.0322266,-0.0306702,-0.0306702,-0.0310669,-0.0340271,-0.0393982,-0.0471802,-0.0561218,-0.065094,-0.0734253,-0.0795898,-0.0846863,-0.0870361,-0.0848999,-0.0791931,-0.0716248,-0.0626221,-0.0548401,-0.0483093,-0.0437012,-0.0384521,-0.0367126,-0.0353088,-0.0365906,-0.0383301,-0.0394592,-0.0374451,-0.0319519,-0.0240173,-0.0151062,-0.0050354,0.00408936,0.0146179,0.024292,0.0353699,0.040863,0.0444946,0.0439453,0.0414734,0.0383911,0.0369873,0.0354919,0.0334778,0.0305481,0.0303955,0.032074,0.0369873,0.0455017,0.0519409,0.0561218,0.0585938,0.0593262,0.0602722,0.0614014,0.0609436,0.0571899,0.0518799,0.0462952,0.0433655,0.0423584,0.0434875,0.0440979,0.0444946,0.0448914,0.0461731,0.0483093,0.0491333,0.048645,0.0440979,0.037384,0.027771,0.0185852,0.0103455,0.00189209,-0.00650024,-0.0147705,-0.0213318,-0.0241699,-0.0245056,-0.0209351,-0.0174561,-0.0142822,-0.0115967,-0.00918579,-0.00759888,-0.00582886,-0.00643921,-0.00765991,-0.0112,-0.0145569,-0.0184021,-0.0204773,-0.0231018,-0.0254211,-0.0278625,-0.0299988,-0.0333557,-0.0366516,-0.0400696,-0.0450439,-0.0518799,-0.0587769,-0.0644836,-0.0699463,-0.0734863,-0.0754395,-0.0775146,-0.0769653,-0.0755005,-0.0719604,-0.0683289,-0.0646362,-0.0618896,-0.0584412,-0.0552979,-0.0514221,-0.0471802,-0.0438843,-0.0393372,-0.0345764,-0.0287781,-0.0220947,-0.0140381,-0.0062561,0.00180054,0.00918579,0.0152283,0.0204163,0.0267029,0.0313416,0.0354309,0.0378418,0.0369873,0.0354309,0.0349121,0.0347595,0.0356445,0.0358276,0.0369263,0.0375061,0.0401306,0.0455017,0.0502014,0.0540161,0.0549011,0.0552979,0.0543518,0.0535583,0.0534973,0.0513306,0.0484619,0.0458374,0.0437012,0.0433655,0.04422,0.0459595,0.0465698,0.0469666,0.0463867,0.0464478,0.0447693,0.0438843,0.0418091,0.037262,0.0316162,0.024353,0.0175781,0.0109253,0.00448608,-0.00140381,-0.00778198,-0.0128784,-0.0159607,-0.0167236,-0.0160522,-0.0161133,-0.0152893,-0.0150452,-0.0146179,-0.0135498,-0.0139465,-0.0140381,-0.0167236,-0.0179138,-0.0212708,-0.0229492,-0.0249023,-0.0265198,-0.0294495,-0.0323486,-0.0361633,-0.0404053,-0.0435486,-0.0490723,-0.0541077,-0.0603943,-0.0639038,-0.0686035,-0.0698547,-0.0715332,-0.0720825,-0.0730896,-0.0715332,-0.070282,-0.0680542,-0.0658264,-0.065033,-0.0622864,-0.0600586,-0.0554504,-0.0504761,-0.0454407,-0.0394592,-0.0342407,-0.0268555,-0.0198059,-0.0116882,-0.00375366,0.00369263,0.0106812,0.0169678,0.0228882,0.0270386,0.0343628,0.0368347,0.0403442,0.0405273,0.0400696,0.0392761,0.0390015,0.0396729,0.0396729,0.0389404,0.0390015,0.0401917,0.0434875,0.0479736,0.0506592,0.0511475,0.0504761,0.0492554,0.0491943,0.0485229,0.0481262,0.0461731,0.0444336,0.0439453,0.0444946,0.0470581,0.049469,0.0514832,0.0520935,0.0516052,0.0505371,0.0484009,0.0453796,0.041687,0.0358276,0.0283813,0.0211487,0.0138855,0.00939941,0.00442505,0.000396729,-0.00396729,-0.00857544,-0.0107422,-0.0122681,-0.0124817,-0.0132751,-0.0152283,-0.0167236,-0.0182495,-0.0184631,-0.017395,-0.0177307,-0.0173035,-0.0172424,-0.0189209,-0.0187378,-0.0212097,-0.0222778,-0.0252991,-0.0299377,-0.0356445,-0.0427551,-0.0502014,-0.0567932,-0.0641479,-0.069519,-0.0753784,-0.0786438,-0.0812073,-0.0817566,-0.0812073,-0.0798645,-0.0776367,-0.0758362,-0.0724792,-0.070282,-0.0662537,-0.0631409,-0.0583801,-0.0528259,-0.0481262,-0.0410767,-0.0347595,-0.027771,-0.0205383,-0.0119324,-0.00390625,0.00509644,0.0128174,0.0203247,0.0270996,0.0335693,0.0387268,0.04422,0.0461731,0.0461731,0.0441589,0.0404053,0.0375977,0.0355835,0.0337524,0.0331421,0.0327454,0.0340271,0.0380554,0.0437622,0.0498657,0.0535583,0.0544434,0.0544434,0.0522766,0.0511475,0.048645,0.0467834,0.0425415,0.0401306,0.0383911,0.0389404,0.0409546,0.0434875,0.0462341,0.0461731,0.0465088,0.0449524,0.0428162,0.0406799,0.0362549,0.0303345,0.0241699,0.017395,0.0119324,0.00784302,0.00509644,0.00323486,-0.000396729,-0.00247192,-0.00363159,-0.00448608,-0.00280762,-0.00302124,-0.00323486,-0.00396729,-0.00598145,-0.00650024,-0.00717163,-0.00827026,-0.0107422,-0.0141602,-0.0193176,-0.0238953,-0.0283203,-0.032959,-0.0381775,-0.0432739,-0.0491333,-0.0546265,-0.0596619,-0.0632324,-0.0667725,-0.0690613,-0.0718079,-0.0757141,-0.0775757,-0.0799255,-0.0810852,-0.0818176,-0.0822144,-0.0818787,-0.0809937,-0.0775757,-0.0718079,-0.0656433,-0.057373,-0.0500793,-0.0420227,-0.0344849,-0.0267639,-0.0182495,-0.0116882,-0.00430298,0.00189209,0.00805664,0.0135498,0.019989,0.0268555,0.0335693,0.0399475,0.0443726,0.0471191,0.048645,0.0487976,0.0477295,0.0468445,0.0459595,0.0428772,0.0419312,0.0414124,0.0429382,0.0444946,0.0465088,0.0474548,0.0473022,0.0465698,0.0458984,0.045105,0.0448303,0.0430298,0.0419312,0.0409546,0.0414734,0.0420227,0.0447083,0.0467224,0.0475159,0.0471191,0.0455627,0.0431519,0.0397949,0.036438,0.0302734,0.0245667,0.0169067,0.0119324,0.00671387,0.00390625,0.00100708,-0.00140381,-0.00314331,-0.00531006,-0.00509644,-0.00570679,-0.00524902,-0.00631714,-0.00750732,-0.0083313,-0.00952148,-0.0088501,-0.00839233,-0.00784302,-0.00738525,-0.00805664,-0.00857544,-0.0108032,-0.0126953,-0.0167236,-0.0224304,-0.0290527,-0.0371094,-0.0457764,-0.0533447,-0.0610657,-0.0665894,-0.0723572,-0.0760498,-0.0795898,-0.0819397,-0.082489,-0.0833435,-0.0826111,-0.082489,-0.0820923,-0.0811462,-0.0787964,-0.0744324,-0.0687866,-0.0623474,-0.0558472,-0.0479126,-0.0396729,-0.0296021,-0.019989,-0.00991821,-0.00146484,0.00732422,0.0154419,0.0234375,0.0306702,0.036377,0.0414124,0.045166,0.0462341,0.0469055,0.0455017,0.0427551,0.0411377,0.0389404,0.0377197,0.0368347,0.0377197,0.0393982,0.0427551,0.0465698,0.0499878,0.0516663,0.0517578,0.0498047,0.0477905,0.0448303,0.0432739,0.0401917,0.037384,0.037323,0.0375977,0.0410767,0.0452271,0.048645,0.0511475,0.0507507,0.0499268,0.0461121,0.0420227,0.0343628,0.0258484,0.0154419,0.00576782,-0.00201416,-0.00717163,-0.00918579,-0.0110779,-0.0106812,-0.0109253,-0.00772095,-0.00537109,-0.0020752,0,0,-0.00128174,-0.00262451,-0.00430298,-0.0050354,-0.00576782,-0.00643921,-0.00817871,-0.0107422,-0.0125427,-0.0143738,-0.0176392,-0.0205994,-0.0273132,-0.0334778,-0.041748,-0.0485229,-0.0545654,-0.0600586,-0.065918,-0.0710144,-0.0769043,-0.0798035,-0.0820923,-0.0826721,-0.0835571,-0.0845642,-0.0840149,-0.0819397,-0.0777893,-0.0710144,-0.0637512,-0.0551147,-0.0480652,-0.0400085,-0.0318909,-0.0233459,-0.0161743,-0.00946045,-0.00268555,0.00308228,0.00958252,0.0168457,0.0245056,0.0327454,0.039856,0.0454407,0.0485229,0.0502014,0.0504761,0.0482483,0.0457153,0.0415344,0.0371704,0.0336304,0.0328064,0.0330811,0.0358276,0.0394592,0.041748,0.0452881,0.0466309,0.0484009,0.0482483,0.0469666,0.0441589,0.041687,0.0390625,0.0387268,0.0390625,0.0412903,0.0433655,0.0452881,0.0457153,0.0457153,0.04422,0.0414734,0.0354919,0.0281982,0.0198669,0.0106812,0.00323486,-0.00302124,-0.00845337,-0.0116882,-0.0142822,-0.0151672,-0.0144348,-0.0127563,-0.0103455,-0.00958252,-0.00827026,-0.0065918,-0.00650024,-0.00476074,-0.0032959,-0.00241089,-0.00201416,-0.0015564,-0.0015564,-0.00213623,-0.00448608,-0.00750732,-0.0122681,-0.0182495,-0.0256348,-0.0342407,-0.0418091,-0.0496521,-0.0561829,-0.0632324,-0.0696716,-0.0744324,-0.0787964,-0.0814819,-0.0842896,-0.0861816,-0.0881348,-0.0890503,-0.0891418,-0.0858459,-0.0819397,-0.0754395,-0.0677185,-0.0587769,-0.0481873,-0.0380554,-0.0267029,-0.0169067,-0.00744629,-0.000457764,0.00772095,0.0147705,0.0229492,0.0302124,0.037323,0.0432129,0.048584,0.0524292,0.0558472,0.0559082,0.0541077,0.0507507,0.0467224,0.0431519,0.0403442,0.0390625,0.0377808,0.0386658,0.0401917,0.0444946,0.0472412,0.0502014,0.0503235,0.0489197,0.0462341,0.0436096,0.040741,0.038269,0.0356445,0.0348206,0.0354309,0.0375061,0.0400696,0.0412903,0.0426025,0.0419312,0.0390625,0.0343018,0.0278625,0.0204163,0.0127563,0.003479,-0.00296021,-0.0102539,-0.0142212,-0.01651,-0.0184021,-0.0171814,-0.0171814,-0.0151672,-0.0134888,-0.0104065,-0.00866699,-0.00665283,-0.00476074,-0.003479,-0.00222778,-0.0012207,-0.000335693,-0.000793457,-0.000946045,-0.00424194,-0.0071106,-0.0118103,-0.017395,-0.0237732,-0.0297852,-0.0369873,-0.0433655,-0.04953,-0.0549622,-0.0603943,-0.065155,-0.0701904,-0.0755005,-0.0796509,-0.0836182,-0.0864563,-0.0898743,-0.0908813,-0.0895386,-0.0866394,-0.0804138,-0.0735474,-0.0647583,-0.0547791,-0.0431519,-0.032135,-0.0216064,-0.0139465,-0.00671387,0.00012207,0.00817871,0.0151062,0.0220947,0.0273132,0.0336914,0.0395203,0.0477295,0.052948,0.0564575,0.0563049,0.0549011,0.0535583,0.0522766,0.0509949,0.0491333,0.0462952,0.0456238,0.0458374,0.0489197,0.0520935,0.0542297,0.0548401,0.0546265,0.0545044,0.053894,0.053894,0.053009,0.0511475,0.0502625,0.0485229,0.0482483,0.0467224,0.0456238,0.0414124,0.036377,0.0298767,0.0218811,0.0148926,0.00726318,-0.000213623,-0.00671387,-0.0128174,-0.0171814,-0.0196533,-0.021759,-0.0216675,-0.0224915,-0.0224915,-0.021759,-0.0210876,-0.0196533,-0.0176392,-0.0157166,-0.0124207,-0.00933838,-0.00610352,-0.00256348,-0.00012207,0.00268555,0.00375366,0.00213623,-0.000671387,-0.00598145,-0.0122681,-0.020813,-0.0291138,-0.0390015,-0.0471191,-0.0559692,-0.0619507,-0.0693359,-0.0735474,-0.0775146,-0.0812073,-0.0830994,-0.0853577,-0.0873108,-0.0886536,-0.0889282,-0.0871277,-0.0838318,-0.0779114,-0.0712891,-0.0624695,-0.0533447,-0.0422058,-0.0310059,-0.0197449,-0.0110779,-0.00335693,0.003479,0.0103455,0.0181274,0.024292,0.0300598,0.0358276,0.0406189,0.045166,0.0495911,0.0523376,0.0523376,0.0511475,0.0484619,0.0464478,0.0440979,0.0436096,0.0436096,0.0448303,0.0471802,0.0505371,0.0547791,0.0589294,0.0620117,0.0637512,0.062561,0.0605469,0.0589294,0.0578613,0.0562439,0.0542908,0.0524902,0.0490723,0.0473938,0.0465698,0.0445557,0.0410767,0.0351562,0.027771,0.0195923,0.0119324,0.00570679,-0.00274658,-0.00979614,-0.0167236,-0.0212708,-0.0234985,-0.0237732,-0.0233459,-0.0234985,-0.024292,-0.0224915,-0.0205383,-0.0162354,-0.0128174,-0.0104065,-0.00759888,-0.00610352,-0.00415039,-0.0017395,-0.000213623,-0.000671387,-0.00241089,-0.00650024,-0.012207,-0.0186462,-0.0250854,-0.0333557,-0.0411987,-0.0488586,-0.0567932,-0.061615,-0.0664368,-0.0700684,-0.0736389,-0.0773926,-0.0808716,-0.0836792,-0.0860291,-0.0874634,-0.0889893,-0.0889282,-0.085907,-0.081665,-0.0752869,-0.0667114,-0.0559692,-0.0447693,-0.0328064,-0.0221558,-0.0122681,-0.00415039,0.00308228,0.0104065,0.01651,0.0226746,0.0273132,0.0324097,0.0374451,0.0427551,0.0477295,0.0505981,0.0523376,0.0533447,0.052002,0.0514221,0.0505371,0.0490723,0.0491943,0.0490723,0.0505371,0.0527649,0.0556335,0.0595398,0.0627441,0.0640869,0.065918,0.0654297,0.0646973,0.0639038,0.061676,0.0594482,0.0554504,0.0516663,0.0479126,0.0430908,0.0383911,0.032074,0.025238,0.0181885,0.0106812,0.00302124,-0.0032959,-0.00991821,-0.0149536,-0.0195312,-0.0216064,-0.0237732,-0.0234985,-0.0232849,-0.0220032,-0.019989,-0.0186462,-0.0162354,-0.0137634,-0.0101318,-0.00692749,-0.0032959,-0.000396729,0.00161743,0.00341797,0.00363159,0.0032959,0.000549316,-0.00363159,-0.00967407,-0.0170593,-0.0255737,-0.0339661,-0.0429382,-0.0511475,-0.0589294,-0.0644836,-0.0706787,-0.0748291,-0.0779724,-0.0805359,-0.0818787,-0.0842896,-0.0853577,-0.085968,-0.085907,-0.0839539,-0.0802002,-0.0756226,-0.0686035,-0.0614624,-0.0523376,-0.0423584,-0.0318909,-0.0222168,-0.0134888,-0.00637817,0.000549316,0.00671387,0.0132141,0.0191345,0.0240173,0.0288696,0.0324097,0.036377,0.0400085,0.0422668,0.0441589,0.04422,0.0440369,0.0434875,0.0441589,0.0455017,0.0475769,0.0498047,0.0531006,0.0578613,0.0624695,0.0668335,0.0706177,0.0732117,0.0732117,0.0728149,0.0699463,0.0677185,0.0636902,0.0599976,0.0556335,0.0512085,0.0458984,0.040802,0.0362549,0.0312805,0.0250854,0.0187988,0.0108032,0.00296021,-0.00457764,-0.011261,-0.0175171,-0.0224304,-0.0265198,-0.0278625,-0.0288696,-0.0255737,-0.0228271,-0.0194092,-0.0158386,-0.0116882,-0.00772095,-0.00390625,-0.000671387,0.00234985,0.00323486,0.00402832,0.00296021,0.00180054,-0.00088501,-0.00390625,-0.00924683,-0.0151672,-0.0229492,-0.0304565,-0.0393372,-0.0457764,-0.0531616,-0.0591125,-0.0646973,-0.069397,-0.0725403,-0.0758362,-0.0767212,-0.0787964,-0.0795898,-0.080658,-0.0804138,-0.0795898,-0.0761719,-0.0706787,-0.065155,-0.0585327,-0.0504761,-0.0418701,-0.0318909,-0.0226746,-0.0144348,-0.00778198,-0.00268555,0.00167847,0.00549316,0.0102539,0.0129395,0.0157166,0.0191956,0.0220947,0.0250244,0.0291138,0.0322876,0.0351562,0.0371094,0.0379333,0.0404663,0.0410767,0.0439453,0.0455017,0.0489197,0.0525513,0.056366,0.060791,0.0657654,0.069458,0.0727539,0.0743103,0.0734253,0.0716858,0.0680542,0.0639648,0.0583191,0.0516663,0.0456238,0.0383911,0.0328979,0.0266418,0.0214844,0.0151672,0.0104065,0.00457764,-0.000335693,-0.00543213,-0.0109253,-0.0150452,-0.0186462,-0.0205994,-0.0218811,-0.020752,-0.0188599,-0.015625,-0.0114136,-0.00665283,-0.00228882,0.00167847,0.0050354,0.00683594,0.00866699,0.00839233,0.00643921,0.00463867,0.000396729,-0.00369263,-0.00878906,-0.0147705,-0.0218201,-0.0279236,-0.0358276,-0.0432129,-0.0506592,-0.0575256,-0.0636292,-0.0691223,-0.0727539,-0.0755615,-0.0779724,-0.079071,-0.079071,-0.0789795,-0.078186,-0.0755615,-0.0725403,-0.0680542,-0.0630798,-0.0578003,-0.0512085,-0.0438843,-0.0351562,-0.0265808,-0.0186462,-0.0112,-0.00524902,0.00128174,0.00537109,0.00900269,0.0109253,0.0122681,0.0134888,0.0158386,0.0193176,0.0224304,0.0246887,0.0276489,0.0308838,0.0353088,0.0387268,0.0418091,0.0436096,0.0456238,0.0475159,0.0505981,0.0544434,0.0574646,0.060791,0.0647583,0.0680542,0.0710144,0.0726929,0.0718079,0.0682678,0.0631409,0.0575256,0.0498047,0.0426025,0.0349121,0.0279846,0.0210876,0.015625,0.0104675,0.00582886,0.00161743,-0.00167847,-0.00558472,-0.00918579,-0.0123596,-0.0152893,-0.0175171,-0.0181885,-0.0170593,-0.0151062,-0.0115967,-0.00738525,-0.00268555,0.00228882,0.00665283,0.0107422,0.0128174,0.0142212,0.0136108,0.0120239,0.00939941,0.00592041,0.00140381,-0.00448608,-0.00991821,-0.016449,-0.0216675,-0.027771,-0.0339661,-0.039856,-0.0469055,-0.0532227,-0.0585327,-0.0634155,-0.0675964,-0.0711975,-0.0734863,-0.0757751,-0.0758972,-0.0751038,-0.073822,-0.0701904,-0.0675049,-0.0632935,-0.0589294,-0.0541077,-0.0478516,-0.0422668,-0.0347595,-0.0283203,-0.0205383,-0.0136108,-0.00799561,-0.00195312,0.00140381,0.0050354,0.00717163,0.00778198,0.00772095,0.0083313,0.00939941,0.0104065,0.0137634,0.0182495,0.0234375,0.0299988,0.037262,0.0446167,0.0522766,0.0583191,0.0619507,0.0643005,0.0657043,0.0676575,0.0664368,0.0663757,0.065033,0.0639648,0.0620728,0.0603943,0.0579834,0.0546265,0.0504761,0.044281,0.0383911,0.0309448,0.0229492,0.0148926,0.00643921,0.000213623,-0.00592041,-0.0118103,-0.0151672,-0.0182495,-0.0185852,-0.0195923,-0.0189209,-0.017395,-0.0153809,-0.0112,-0.00759888,-0.00280762,0.00201416,0.00592041,0.00933838,0.0109253,0.0144958,0.0137634,0.0128174,0.0104065,0.00738525,0.00363159,-0.000946045,-0.00476074,-0.00939941,-0.0124817,-0.0171204,-0.020813,-0.025238,-0.0292664,-0.0350952,-0.0404663,-0.0461731,-0.0511475,-0.0565186,-0.0611267,-0.0643005,-0.0676575,-0.0673218,-0.0673828,-0.0652466,-0.0631409,-0.0596619,-0.0558472,-0.0510864,-0.0473938,-0.0438843,-0.0402832,-0.0368347,-0.0317383,-0.028595,-0.0237732,-0.0189209,-0.0140381,-0.00952148,-0.00592041,-0.000732422,0.00262451,0.00610352,0.00799561,0.0100098,0.0114746,0.0139465,0.0163879,0.0198059,0.0241089,0.0292664,0.0346985,0.040802,0.0467834,0.0509949,0.0546875,0.0571899,0.0593872,0.0603333,0.0599365,0.0590515,0.0585938,0.0576477,0.0568542,0.0553589,0.0534363,0.0508728,0.0470581,0.041687,0.0366516,0.0300598,0.0216064,0.0137024,0.00576782,-0.000274658,-0.00610352,-0.0100708,-0.0132141,-0.0143738,-0.0149536,-0.0137634,-0.0116882,-0.0100708,-0.00811768,-0.00665283,-0.00442505,-0.00222778,-0.000671387,0.00146484,0.00241089,0.00469971,0.00509644,0.00598145,0.0062561,0.0067749,0.00549316,0.00363159,0.000671387,-0.00100708,-0.00482178,-0.00799561,-0.0124207,-0.0162354,-0.0205383,-0.024292,-0.0299377,-0.0338135,-0.0379944,-0.0428772,-0.0467834,-0.0508118,-0.0528259,-0.0551758,-0.0560303,-0.056366,-0.0545044,-0.0531616,-0.0500793,-0.0473938,-0.0447693,-0.0420227,-0.0410156,-0.0386047,-0.0357666,-0.0324707,-0.0299988,-0.0268555,-0.021759,-0.0167236,-0.0117493,-0.00582886,-0.00088501,0.00396729,0.00631714,0.00891113,0.0110779,0.0116882,0.0125427,0.0119324,0.0118713,0.0137024,0.0167847,0.0211487,0.0259094,0.0317993,0.036377,0.0414734,0.0469666,0.0508118,0.0533447,0.0543518,0.0546875,0.0534363,0.0518188,0.0488586,0.0471802,0.0448914,0.0425415,0.0395203,0.0360413,0.0339661,0.0303345,0.0257568,0.0213318,0.0158386,0.0101929,0.00402832,-0.00106812,-0.00564575,-0.00939941,-0.0125427,-0.0148926,-0.0160522,-0.0162354,-0.015625,-0.0137024,-0.0113525,-0.00891113,-0.00576782,-0.00262451,-0.000549316,0.00314331,0.00531006,0.00704956,0.00827026,0.00726318,0.00683594,0.00396729,0.00234985,-0.000396729,-0.00369263,-0.00631714,-0.00991821,-0.012146,-0.0148315,-0.0166321,-0.0189209,-0.020813,-0.0236816,-0.0274353,-0.0310059,-0.0349121,-0.0387878,-0.0421448,-0.0458374,-0.0473938,-0.048645,-0.0484619,-0.0471802,-0.0441589,-0.0410767,-0.0386658,-0.0343628,-0.032135,-0.0296021,-0.0267639,-0.0257568,-0.0241699,-0.0227661,-0.0209961,-0.0187378,-0.0169067,-0.0136108,-0.0109253,-0.00604248,-0.00228882,0.00140381,0.00469971,0.00759888,0.00900269,0.0115356,0.0129395,0.0140991,0.0148926,0.0157166,0.0172424,0.0188599,0.0223389,0.0249023,0.0290527,0.0315552,0.0354309,0.0390625,0.0428772,0.045105,0.0456238,0.0455017,0.0441589,0.041687,0.0399475,0.0367126,0.03302,0.0284424,0.024292,0.0204773,0.0167847,0.0138245,0.0106812,0.00765991,0.0050354,0.00262451,0.000610352,-0.00088501,-0.00268555,-0.00497437,-0.00650024,-0.00817871,-0.00906372,-0.00900269,-0.0083313,-0.00811768,-0.00650024,-0.00537109,-0.00234985,-0.000732422,0.00274658,0.00497437,0.0065918,0.00765991,0.00726318,0.0071106,0.00537109,0.00274658,0.000274658,-0.00280762,-0.00531006,-0.00765991,-0.0105286,-0.0124207,-0.0153809,-0.0163879,-0.0183105,-0.0195923,-0.0226135,-0.0241089,-0.0263672,-0.0296631,-0.0310669,-0.0337524,-0.0353699,-0.036499,-0.036377,-0.036377,-0.0353088,-0.0334167,-0.0319519,-0.0301208,-0.0296631,-0.02771,-0.0263672,-0.0240173,-0.0234375,-0.0214233,-0.0211487,-0.0194702,-0.016571,-0.0132751,-0.00967407,-0.0067749,-0.00390625,-0.000732422,0.00161743,0.00549316,0.00811768,0.00857544,0.00891113,0.0104675,0.0117493,0.0138245,0.0151062,0.0167236,0.0176392,0.0183105,0.019989,0.0235596,0.0263062,0.0273132,0.0271912,0.0265198,0.0283203,0.0283203,0.0280457,0.0268555,0.0256958,0.024292,0.0228882,0.0215454,0.0215454,0.0206604,0.0174561,0.0158386,0.0140381,0.0132751,0.011261,0.0101929,0.00698853,0.00582886,0.00369263,0.00189209,0.00012207,-6.10352e-05,-0.00201416,-0.00357056,-0.00469971,-0.00515747,-0.00463867,-0.0050354,-0.00402832,-0.0015564,0.000793457,0.00106812,0.00369263,0.00442505,0.00726318,0.0067749,0.00698853,0.0067749,0.00643921,0.00408936,0.00314331,0.00140381,-0.000946045,-0.00234985,-0.00497437,-0.00643921,-0.00845337,-0.00979614,-0.0129395,-0.0145569,-0.0182495,-0.0194092,-0.0232239,-0.0239563,-0.0267029,-0.0281982,-0.0297241,-0.0310059,-0.0317383,-0.032135,-0.0324707,-0.0306702,-0.0293274,-0.0270386,-0.0260925,-0.0246887,-0.0231628,-0.0215454,-0.0193176,-0.0175781,-0.0155029,-0.0144958,-0.0124817,-0.0110779,-0.00891113,-0.00665283,-0.00482178,-0.00408936,-0.0017395,0.00100708,0.00247192,0.0050354,0.00643921,0.00744629,0.00811768,0.00866699,0.0100708,0.0108032,0.0114746,0.0107422,0.00979614,0.00933838,0.0102539,0.0105896,0.0115967,0.012146,0.0137634,0.0151672,0.0171204,0.0179138,0.0191345,0.0177917,0.0174561,0.016571,0.0167236,0.0157776,0.0151062,0.0124817,0.0110779,0.0104065,0.0108643,0.0111389,0.0108643,0.0105896,0.00891113,0.00845337,0.00784302,0.00665283,0.00558472,0.00357056,0.00280762,0.0012207,0.00201416,0.00241089,0.00357056,0.0032959,0.00448608,0.00430298,0.00604248,0.00811768,0.00845337,0.00952148,0.00839233,0.00845337,0.00784302,0.00726318,0.00637817,0.00537109,0.00335693,0.000549316,-0.0015564,-0.00402832,-0.00631714,-0.00817871,-0.0105896,-0.0132751,-0.0148315,-0.0154419,-0.0171204,-0.0175781,-0.0179749,-0.0194702,-0.020813,-0.0231018,-0.0234375,-0.0246277,-0.0260315,-0.0272522,-0.0275879,-0.02771,-0.0260315,-0.0236816,-0.0209351,-0.0180664,-0.0157776,-0.0143738,-0.012207,-0.0104675,-0.00952148,-0.0115356,-0.0108643,-0.0103455,-0.0104065,-0.0109253,-0.0102539,-0.00906372,-0.00592041,-0.0050354,-0.00296021,-0.00167847,6.10352e-05,0.00189209,0.00180054,0.00302124,0.00161743,0.0017395,0.000671387,0.00088501,0.00268555,0.00222778,0.00369263,0.00375366,0.00582886,0.00692749,0.00918579,0.0105896,0.0126953,0.0134277,0.0143738,0.0134888,0.0154419,0.0152283,0.0144348,0.0131531,0.012207,0.0106812,0.0101929,0.00973511,0.00979614,0.00900269,0.00918579,0.00839233,0.0107422,0.0113525,0.0134277,0.0132751,0.0125427,0.0126953,0.0124207,0.012207,0.0105286,0.00918579,0.00805664,0.0067749,0.00692749,0.0062561,0.00582886,0.0071106,0.00839233,0.00811768,0.00878906,0.0083313,0.00778198,0.0062561,0.00537109,0.00247192,0,-0.00189209,-0.00436401,-0.00564575,-0.00732422,-0.00811768,-0.00967407,-0.00946045,-0.00979614,-0.00946045,-0.0100708,-0.0101929,-0.0103455,-0.011261,-0.0117493,-0.013092,-0.0137634,-0.0142822,-0.0151672,-0.0160522,-0.01651,-0.0173035,-0.0179138,-0.0178528,-0.0185242,-0.017395,-0.0174561,-0.0171814,-0.0161743,-0.0149536,-0.0139465,-0.0128784,-0.0117493,-0.0108032,-0.00906372,-0.00973511,-0.00939941,-0.00985718,-0.00967407,-0.00958252,-0.00946045,-0.00906372,-0.00744629,-0.00604248,-0.00390625,-0.00195312,-0.000549316,0.00106812,0.00106812,0.0017395,0.0012207,0.000946045,-0.000793457,-0.00201416,-0.0038147,-0.0038147,-0.00363159,-0.00314331,-0.00161743,0,0.00213623,0.0038147,0.00515747,0.00698853,0.00744629,0.00827026,0.00759888,0.00784302,0.00811768,0.00952148,0.00973511,0.0106812,0.012207,0.0128784,0.0141602,0.0147705,0.0159607,0.0158997,0.0161133,0.0147705,0.0151062,0.0138855,0.0137024,0.013092,0.012146,0.012207,0.0110779,0.0102539,0.00952148,0.00805664,0.00732422,0.00592041,0.00457764,0.00296021,0.00222778,0.00189209,0.000396729,0.000671387,-0.00012207,-6.10352e-05,-0.00134277,-0.00112915,-0.00256348,-0.00228882,-0.00341797,-0.00369263,-0.00442505,-0.00549316,-0.00476074,-0.0050354,-0.00524902,-0.00515747,-0.00537109,-0.00524902,-0.00643921,-0.00631714,-0.00631714,-0.00772095,-0.00845337,-0.00985718,-0.0105286,-0.0105896,-0.0105286,-0.0114136,-0.00991821,-0.0101318,-0.0101929,-0.00906372,-0.00924683,-0.00891113,-0.0085144,-0.00918579,-0.00973511,-0.00973511,-0.00924683,-0.00973511,-0.00933838,-0.00939941,-0.00845337,-0.00857544,-0.0085144,-0.00784302,-0.00750732,-0.00778198,-0.00845337,-0.00866699,-0.00839233,-0.00817871,-0.00778198,-0.00784302,-0.00726318,-0.00671387,-0.00631714,-0.00558472,-0.00436401,-0.003479,-0.00234985,-0.00112915,-0.000793457,0.00112915,0.00189209,0.003479,0.00463867,0.00531006,0.00637817,0.0067749,0.00793457,0.00845337,0.00857544,0.00872803,0.00891113,0.00839233,0.00839233,0.00900269,0.00900269,0.00817871,0.00799561,0.00817871,0.00738525,0.00799561,0.00793457,0.00717163,0.00698853,0.00683594,0.00671387,0.00698853,0.0067749,0.00738525,0.00616455,0.00631714,0.00524902,0.00558472,0.00570679,0.00543213,0.00497437,0.00390625,0.00280762,0.00296021,0.00268555,0.00256348,0.00222778,0.0015564,0.000274658,0.000549316,-0.000396729,0.00012207,-0.0020752,-0.00280762,-0.00448608,-0.00582886,-0.00631714,-0.00704956,-0.00799561,-0.00778198,-0.00872803,-0.00765991,-0.00799561,-0.00631714,-0.00476074,-0.00408936,-0.00357056,-0.0038147,-0.00341797,-0.00357056,-0.0032959,-0.00369263,-0.00448608,-0.00482178,-0.00515747,-0.00482178,-0.00531006,-0.00497437,-0.00537109,-0.00592041,-0.00631714,-0.00726318,-0.00704956,-0.00772095,-0.00900269,-0.00967407,-0.0104675,-0.0108643,-0.0106812,-0.0113525,-0.0109253,-0.0100098,-0.00979614,-0.00900269,-0.0088501,-0.00726318,-0.0065918,-0.00576782,-0.00476074,-0.00308228,-0.00234985,-0.00128174,-0.000335693,6.10352e-05,0.00106812,0.0012207,0.00189209,0.00189209,0.00308228,0.00268555,0.003479,0.00323486,0.00363159,0.00375366,0.00375366,0.00415039,0.00436401,0.0050354,0.00543213,0.00558472,0.00564575,0.00564575,0.00497437,0.00515747,0.00531006,0.00491333,0.00448608,0.00436401,0.00415039,0.00335693,0.003479,0.0032959,0.00296021,0.00323486,0.00234985,0.00201416,0.00234985,0.0020752,0.00201416,0.0015564,0.0015564,0.000213623,-0.000610352,-0.000213623,0.00012207,-0.000549316,-0.0012207,-0.00167847,-0.00140381,-0.00167847,-0.00140381,-0.00134277,-0.000793457,-0.00088501,-0.000671387,-0.000946045,-6.10352e-05,-0.000671387,-0.00088501,-0.00146484,-0.00189209,-0.00213623,-0.00234985,-0.00280762,-0.00280762,-0.00274658,-0.00302124,-0.00357056,-0.00363159,-0.00314331,-0.00323486,-0.00323486,-0.0038147,-0.00396729,-0.00424194,-0.00396729,-0.00430298,-0.00457764,-0.00396729,-0.00457764,-0.00482178,-0.00424194,-0.00415039,-0.00448608,-0.00341797,-0.00408936,-0.00341797,-0.00375366,-0.00415039,-0.00424194,-0.00357056,-0.00424194,-0.00457764,-0.00476074,-0.0050354,-0.00524902,-0.00482178,-0.00524902,-0.00476074,-0.00463867,-0.00402832,-0.00280762,-0.00280762,-0.00140381,0,-6.10352e-05,0.00140381,0.00167847,0.00268555,0.00357056,0.00396729,0.00415039,0.0038147,0.00442505,0.00448608,0.00497437,0.00430298,0.00524902,0.00509644,0.00524902,0.00524902,0.00524902,0.00457764,0.00457764,0.00363159,0.00296021,0.0017395,0.00195312,0.000793457,0.000335693,-0.000793457,-0.00088501,-0.00180054,-0.00134277,-0.00140381,-0.00161743,-0.00128174,-0.00167847,-0.00213623,-0.00247192,-0.00241089,-0.00241089,-0.00247192,-0.00323486,-0.00222778,-0.00247192,-0.00234985,-0.00167847,-0.00161743,-0.00128174,-0.00088501,-0.00100708,-0.000396729,-0.000946045,-0.000610352,-0.00146484,-0.00201416,-0.0020752,-0.00274658,-0.00390625,-0.00408936,-0.0050354,-0.00531006,-0.00524902,-0.00592041,-0.00558472,-0.00531006,-0.00531006,-0.00448608,-0.00430298,-0.00335693,-0.00341797,-0.00241089,-0.00234985,-0.00268555,-0.00167847,-0.00268555,-0.00189209,-0.0020752,-0.0017395,-0.00222778,-0.0012207,-0.00128174,-0.000946045,-0.000396729,-0.000732422,-0.00106812,-0.00146484,-0.00167847,-0.00213623,-0.00241089,-0.00274658,-0.00262451,-0.00308228,-0.00289917,-0.00228882,-0.0017395,-0.000793457,-0.000335693,0.00112915,0.00128174,0.00228882,0.00241089,0.00323486,0.00335693,0.003479,0.0038147,0.00375366,0.00415039,0.00363159,0.00448608,0.00375366,0.00457764,0.00335693,0.00415039,0.00390625,0.00375366,0.0038147,0.00302124,0.00341797,0.00241089,0.00228882,0.00112915,0.00106812,0.000946045,0.000549316,-0.000732422,-0.00100708,-0.00167847,-0.00146484,-0.00256348,-0.0020752,-0.00241089,-0.00180054,-0.00234985,-0.0020752,-0.00195312,-0.00189209,-0.00195312,-0.00213623,-0.00302124,-0.00268555,-0.00375366,-0.0038147,-0.00497437,-0.00537109,-0.00576782,-0.00592041,-0.00558472,-0.00531006,-0.00537109,-0.00457764,-0.00430298,-0.0032959,-0.00308228,-0.00424194,-0.00515747,-0.00515747,-0.00491333,-0.00463867,-0.00616455,-0.00558472,-0.0050354,-0.00341797,-0.00128174,-0.000610352,0.00088501,0.000549316,0.00100708,0.00140381,0.000610352,0.000396729,-0.000335693,-0.00128174,-0.00146484,-0.00262451,-0.00140381,-0.00128174,-0.000946045,-0.0012207,-0.0012207,-0.00112915,-0.00106812,-0.0015564,-0.00146484,-0.00146484,-0.00112915,-0.0012207,-0.000793457,-0.00100708,0.00012207,-0.000213623,0.00241089,0.00241089,0.00323486,0.003479,0.00509644,0.00497437,0.00531006,0.00482178,0.00469971,0.00524902,0.00497437,0.00549316,0.00442505,0.0050354,0.00396729,0.00280762,0.00222778,0.0017395,0.00112915,0.000457764,0.000274658,-0.000610352,-0.00088501,6.10352e-05,-6.10352e-05,6.10352e-05,0.00134277,0.0017395,0.00140381,0.00106812,0.000549316,-0.000396729,-0.00106812,-0.00167847,-0.0020752,-0.00228882,-0.00213623,-0.00335693,-0.00289917,-0.00274658,-0.00256348,-0.00302124,-0.00341797,-0.00402832,-0.00436401,-0.00424194,-0.00537109,-0.00448608,-0.00610352,-0.00604248,-0.00576782,-0.00576782,-0.00531006,-0.00537109,-0.00543213,-0.00543213,-0.00616455,-0.00604248,-0.00637817,-0.0065918,-0.00616455,-0.0062561,-0.00616455,-0.00610352,-0.00558472,-0.00531006,-0.00531006,-0.00497437,-0.00524902,-0.00457764,-0.00415039,-0.00415039,-0.00402832,-0.0038147,-0.00228882,-0.00256348,-0.0015564,-0.000793457,-0.000610352,-0.000671387,-0.000671387,-0.000732422,-0.00134277,-0.00088501,-0.00112915,-0.000946045,-0.000457764,0.000274658,0.00100708,0.0017395,0.0020752,0.00302124,0.00302124,0.00274658,0.00296021,0.00262451,0.00289917,0.00241089,0.00241089,0.00256348,0.00274658,0.00424194,0.00442505,0.00509644,0.00524902,0.00592041,0.00491333,0.0062561,0.00482178,0.00509644,0.00357056,0.00228882,0.00161743,0.00161743,0.00106812,0.000457764,0.000732422,0.000549316,0.000732422,0.00106812,0.00100708,0.00134277,0.00134277,0.000213623,-0.00012207,6.10352e-05,-0.000793457,-0.00146484,-0.00222778,-0.00234985,-0.0032959,-0.00375366,-0.00415039,-0.00335693,-0.00424194,-0.00402832,-0.00415039,-0.00436401,-0.0038147,-0.00396729,-0.00375366,-0.00341797,-0.00491333,-0.003479,-0.00476074,-0.00415039,-0.00491333,-0.00442505,-0.00476074,-0.00482178,-0.00476074,-0.00430298,-0.00448608,-0.00396729,-0.00390625,-0.0032959,-0.00390625,-0.00296021,-0.00396729,-0.00341797,-0.00323486,-0.00357056,-0.0038147,-0.00442505,-0.00448608,-0.00476074,-0.00430298,-0.00415039,-0.00408936,-0.00369263,-0.00296021,-0.00289917,-0.00180054,-0.00161743,-0.00112915,-0.000610352,-0.000335693,-0.00106812,-0.000274658,-0.000396729,0.000457764,0.000549316,0.00100708,0.00213623,0.0017395,0.00308228,0.00323486,0.00357056,0.00408936,0.003479,0.003479,0.00302124,0.00314331,0.00262451,0.00222778,0.00134277,0.00146484,0.000671387,0.00112915,0.00106812,0.0012207,0.000946045,0.00100708,0.00106812,0.000610352,0.000610352,0.000396729,0.000549316,0.00012207,0.000274658,0.000335693,0.000457764,-6.10352e-05,0,-6.10352e-05,-0.000396729,-0.000549316,-0.00100708,-0.000671387,-0.00161743,-0.00180054,-0.00180054,-0.00323486,-0.003479,-0.0038147,-0.00463867,-0.00457764,-0.00509644,-0.00497437,-0.00469971,-0.00424194,-0.00448608,-0.00396729,-0.00375366,-0.0038147,-0.00341797,-0.00369263,-0.00335693,-0.0032959,-0.00289917,-0.0032959,-0.00268555,-0.00280762,-0.00247192,-0.00228882,-0.00228882,-0.00274658,-0.00228882,-0.00268555,-0.00308228,-0.00357056,-0.003479,-0.00402832,-0.00415039,-0.00396729,-0.00469971,-0.00402832,-0.00509644,-0.0032959,-0.00369263,-0.00280762,-0.0017395,-0.0012207,0,0.000213623,0.000549316,0.000396729,0.00088501,0.000732422,0.00128174,0.00100708,0.00161743,0.00201416,0.00280762,0.00375366,0.00436401,0.00415039,0.00509644,0.00390625,0.00469971,0.00408936,0.00357056,0.00228882,0.00112915,0.000610352,-0.000335693,-0.000213623,-0.000793457,-0.0017395,-0.000793457,-0.000793457,-0.00088501,-0.000335693,0.000549316,0.000274658,0.00100708,0.000946045,0.0017395,0.00161743,0.00195312,0.00222778,0.0017395,0.00268555,0.00274658,0.00213623,0.00296021,0.00213623,0.0020752,0.00146484,0.000610352,-6.10352e-05,-0.00088501,-0.00146484,-0.00268555,-0.00262451,-0.00363159,-0.00369263,-0.00402832,-0.00448608,-0.00524902,-0.00515747,-0.00610352,-0.00643921,-0.00598145,-0.00650024,-0.00631714,-0.00604248,-0.00549316,-0.00436401,-0.00424194,-0.00357056,-0.00396729,-0.00247192,-0.00256348,-0.0015564,-0.00195312,-0.0020752,-0.00201416,-0.00274658,-0.00268555,-0.0032959,-0.00323486,-0.00341797,-0.00375366,-0.00357056,-0.00341797,-0.00341797,-0.00241089,-0.00228882,-0.00161743,-0.00134277,6.10352e-05,-0.000396729,0.0012207,0.000732422,0.00195312,0.00128174,0.00256348,0.00241089,0.00357056,0.00302124,0.00335693,0.00375366,0.00296021,0.00341797,0.00296021,0.00262451,0.00268555,0.00167847,0.00140381,0.00088501,0.000610352,6.10352e-05,-0.000213623,-0.00088501,-0.00112915,-0.00140381,-0.00128174,-0.00106812,-0.00100708,-0.000610352,-0.000396729,0.000213623,0.00088501,0.00112915,0.0017395,0.00161743,0.00161743,0.00213623,0.00112915,0.00134277,0.000671387,0.0012207,0.00012207,0.000335693,-0.000610352,0.000213623,-0.000946045,-0.000610352,-0.00161743,-0.00201416,-0.00268555,-0.00268555,-0.00415039,-0.00463867,-0.00543213,-0.00616455,-0.00576782,-0.00631714,-0.00570679,-0.0062561,-0.00515747,-0.00549316,-0.00390625,-0.00357056,-0.00289917,-0.0020752,-0.00280762,-0.00161743,-0.00268555,-0.00234985,-0.00274658,-0.00323486,-0.00408936,-0.00408936,-0.00509644,-0.00509644,-0.00515747,-0.00564575,-0.00564575,-0.00549316,-0.00482178,-0.00491333,-0.00424194,-0.00335693,-0.00408936,-0.00363159,-0.00314331,-0.00268555,-0.00256348,-0.00213623,-0.000946045,-0.0012207,0.000457764,0.000396729,0.00140381,0.00241089,0.00308228,0.00375366,0.00509644,0.00564575,0.00570679,0.00582886,0.00582886,0.00549316,0.00515747,0.00497437,0.00402832,0.00442505,0.00296021,0.00335693,0.00262451,0.00268555,0.0020752,0.00195312,0.00106812,0.00106812,0.000213623,0.000335693,-6.10352e-05,0,-0.000396729,0,-0.000274658,0.000213623,0.000274658,0.000396729,6.10352e-05,0,0,-0.000396729,-0.00012207,-0.000396729,-0.000549316,-0.00100708,-0.00112915,-0.000793457,-0.0012207,-0.00146484,-0.0020752,-0.00228882,-0.00323486,-0.00357056,-0.00402832,-0.00469971,-0.00509644,-0.00543213,-0.00558472,-0.00558472,-0.00592041,-0.00497437,-0.0050354,-0.00442505,-0.00476074,-0.00357056,-0.00390625,-0.0032959,-0.00335693,-0.0032959,-0.00335693,-0.00302124,-0.00335693,-0.00280762,-0.0032959,-0.00280762,-0.00296021,-0.00308228,-0.00314331,-0.0032959,-0.003479,-0.00415039,-0.00463867,-0.00491333,-0.00497437,-0.00430298,-0.00491333,-0.00408936,-0.00402832,-0.00289917,-0.00268555,-0.00180054,-0.00112915,-0.00134277,-0.000213623,0.000213623,0.000274658,0.000946045,0.0015564,0.000793457,0.00146484,0.00161743,0.00195312,0.00228882,0.00234985,0.00302124,0.00289917,0.00341797,0.00408936,0.00415039,0.00436401,0.00396729,0.00424194,0.00396729,0.00308228,0.00357056,0.00241089,0.00234985,0.00222778,0.00161743,0.0017395,0.00161743,0.0017395,0.0020752,0.00146484,0.00195312,0.00195312,0.00189209,0.00180054,0.00128174,0.00134277,0.000732422,0.000396729,0.000457764,6.10352e-05,0.000610352,6.10352e-05,0.00088501,0.000610352,0.000274658,0.000793457,-6.10352e-05,-0.000549316,-0.000732422,-0.00213623,-0.00228882,-0.00341797,-0.00408936,-0.00457764,-0.0050354,-0.00509644,-0.00509644,-0.00491333,-0.00524902,-0.00430298,-0.00509644,-0.00430298,-0.00469971,-0.00424194,-0.0050354,-0.00424194,-0.0050354,-0.00424194,-0.00463867,-0.00448608,-0.00457764,-0.00463867,-0.00436401,-0.00442505,-0.00424194,-0.00469971,-0.00476074,-0.00515747,-0.00509644,-0.00531006,-0.00570679,-0.00576782,-0.00558472,-0.00558472,-0.00497437,-0.00515747,-0.00457764,-0.00390625,-0.0038147,-0.00323486,-0.00256348,-0.00180054,-0.0017395,-0.000946045,-0.000335693,-0.000213623,0.000457764,0.00106812,0.00106812,0.0020752,0.00201416,0.00222778,0.00262451,0.00289917,0.00369263,0.00268555,0.00375366,0.00314331,0.00357056,0.00341797,0.00415039,0.00323486,0.00335693,0.0032959,0.00274658,0.00274658,0.00201416,0.00262451,0.00241089,0.00234985,0.00228882,0.00201416,0.00274658,0.00234985,0.00262451,0.00280762,0.00213623,0.00256348,0.00180054,0.00180054,0.0015564,0.0015564,0.000732422,0.00128174,0.000335693,0.000671387,0.000335693,0.00012207,0.000335693,-0.000549316,-0.000213623,-0.00146484,-0.00128174,-0.00134277,-0.00228882,-0.00234985,-0.00308228,-0.00280762,-0.003479,-0.0032959,-0.0032959,-0.00375366,-0.00375366,-0.00436401,-0.00442505,-0.00476074,-0.00476074,-0.00482178,-0.00543213,-0.00549316,-0.00549316,-0.00592041,-0.00604248,-0.00631714,-0.00683594,-0.00698853,-0.00704956,-0.0067749,-0.0071106,-0.00650024,-0.00592041,-0.00537109,-0.00564575,-0.00369263,-0.00463867,-0.00302124,-0.00274658,-0.00268555,-0.00241089,-0.00167847,-0.00161743,-0.0015564,-0.000732422,-0.000457764,0.00012207,0.000396729,0.000793457,0.000732422,0.000793457,0.000396729,0.00100708,-6.10352e-05,-0.00012207,-0.000213623,-0.00106812,-0.00146484,-0.00106812,-0.00167847,-0.00140381,-0.000732422,-0.00140381,-0.000610352,-6.10352e-05,-6.10352e-05,0.000732422,0.0015564,0.00189209,0.00222778,0.00289917,0.00308228,0.00341797,0.00369263,0.00357056,0.0032959,0.00341797,0.00363159,0.00363159,0.003479,0.003479,0.003479,0.00314331,0.00302124,0.00256348,0.00222778,0.00146484,0.00100708,-0.000396729,-0.000335693,-0.000793457,-0.00195312,-0.00146484,-0.00213623,-0.00146484,-0.0020752,-0.00140381,-0.0012207,-0.00088501,-0.000610352,-0.000457764,-0.000549316,-0.000732422,-0.000946045,-0.000732422,-0.00140381,-0.00134277,-0.00228882,-0.00167847,-0.00335693,-0.00262451,-0.003479,-0.00302124,-0.00424194,-0.00402832,-0.00430298,-0.00531006,-0.00515747,-0.00592041,-0.00582886,-0.00604248,-0.0062561,-0.0062561,-0.00616455,-0.00616455,-0.00631714,-0.00598145,-0.00509644,-0.00509644,-0.00402832,-0.00415039,-0.00296021,-0.00262451,-0.0020752,-0.000671387,-0.000671387,-0.000457764,-0.000274658,0.00012207,-0.000213623,0.00012207,6.10352e-05,-0.000732422,0.000671387,-0.000457764,0.000335693,-0.00012207,0.000396729,0.000274658,0.000946045,0.00012207,0.000946045,0,0.000793457,0.000274658,0.000793457,6.10352e-05,0.000946045,0.000610352,0.00167847,0.00146484,0.00146484,0.00161743,0.00222778,0.00195312,0.00256348,0.00161743,0.00308228,0.0020752,0.00234985,0.00222778,0.00201416,0.00256348,0.00213623,0.00222778,0.00296021,0.00213623,0.00256348,0.00201416,0.00128174,0.00106812,-0.00012207,6.10352e-05,-0.0012207,-0.00088501,-0.0017395,-0.00201416,-0.00167847,-0.0017395,-0.00146484,-0.00128174,-0.000946045,-0.00100708,-0.000793457,-0.00146484,-0.000946045,-0.00167847,-0.0020752,-0.00228882,-0.00213623,-0.00296021,-0.00213623,-0.00262451,-0.00222778,-0.00228882,-0.00234985,-0.00256348,-0.00247192,-0.00308228,-0.00308228,-0.00375366,-0.00442505,-0.00408936,-0.00497437,-0.00469971,-0.00509644,-0.00469971,-0.00442505,-0.00369263,-0.0038147,-0.00274658,-0.00256348,-0.00201416,-0.0017395,-0.00106812,-0.000732422,-0.000457764,-0.000213623,6.10352e-05,-6.10352e-05,0.000213623,-6.10352e-05,-0.000610352,-0.000335693,-0.000671387,-0.00112915,-0.00106812,-0.00128174,-0.00161743,-0.00128174,-0.00161743,-0.00195312,-0.00140381,-0.00213623,-0.00161743,-0.00140381,-0.00128174,-0.00100708,-0.000396729,0.000396729,0.00112915,0.00161743,0.00201416,0.00308228,0.00369263,0.00396729,0.00482178,0.00457764,0.00482178,0.00390625,0.0050354,0.00335693,0.00357056,0.00262451,0.00134277,0.0012207,0.000396729,-0.000549316,-0.000335693,-0.00161743,-0.0017395,-0.00167847,-0.00146484,-0.0020752,-0.00134277,-0.00161743,-0.00146484,-0.00140381,-0.00128174,-0.0012207,-0.00106812,-0.00088501,-0.000396729,-0.00088501,-0.000549316,-0.000671387,-0.000213623,-0.000946045,-0.00012207,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.0015564,-0.00180054,-0.00256348,-0.00308228,-0.00390625,-0.00469971,-0.00582886,-0.00631714,-0.0071106,-0.00784302,-0.00784302,-0.00827026,-0.00750732,-0.0071106,-0.0067749,-0.00631714,-0.00509644,-0.00482178,-0.00448608,-0.00323486,-0.00314331,-0.00241089,-0.00213623,-0.00134277,-0.00100708,-0.000793457,0.00012207,0.000213623,0.00106812,0.000732422,0.00106812,0.000274658,0.000610352,0.000213623,-0.000549316,-0.000671387,-0.00134277,-0.00228882,-0.00189209,-0.0020752,-0.0017395,-0.00256348,-0.00161743,-0.00167847,-0.00140381,-0.0012207,-0.000457764,-0.00012207,0.00012207,0.00112915,0.00112915,0.00234985,0.00222778,0.00302124,0.00280762,0.0032959,0.00274658,0.00262451,0.00268555,0.00222778,0.00262451,0.00180054,0.00167847,0.00167847,0.000793457,0.0012207,0.00088501,0,0.000274658,-0.000396729,-0.000793457,-0.000213623,-0.000671387,-0.00128174,-0.000732422,-0.00100708,-0.000946045,-0.000732422,-0.000396729,-0.000457764,-0.000396729,-6.10352e-05,-0.000732422,-0.000549316,-0.00088501,-0.000793457,-0.00195312,-0.00167847,-0.00308228,-0.00302124,-0.00402832,-0.00375366,-0.0050354,-0.00524902,-0.00570679,-0.00604248,-0.00610352,-0.00665283,-0.00570679,-0.0065918,-0.00558472,-0.00482178,-0.00491333,-0.00369263,-0.00335693,-0.00308228,-0.00268555,-0.00268555,-0.00222778,-0.00228882,-0.00268555,-0.00234985,-0.00228882,-0.00247192,-0.00161743,-0.00234985,-0.00134277,-0.0015564,-0.00134277,-0.000946045,-0.00146484,-0.00146484,-0.00195312,-0.0017395,-0.00180054,-0.00213623,-0.00201416,-0.00180054,-0.00161743,-0.00201416,-0.00140381,-0.000946045,-0.000732422,-0.00012207,-0.000671387,0.000396729,0.000213623,0.000549316,0.00088501,0.000457764,0.00106812,0.000946045,0.00112915,0.00106812,0.00128174,0.000793457,0.000946045,0.00112915,0.000610352,0.000396729,0.000671387,0.00012207,0.00088501,-6.10352e-05,0.000732422,0.000732422,0.00106812,0.000274658,0.00134277,0.00106812,0.000946045,0.00140381,0.00140381,0.00195312,0.00112915,0.00140381,0.00134277,0.00146484,0.00146484,0.00189209,0.00106812,0.00180054,0.000396729,0.00106812,-0.00012207,-0.000213623,-0.00100708,-0.0015564,-0.00195312,-0.00256348,-0.00314331,-0.00323486,-0.0038147,-0.00396729,-0.00469971,-0.00442505,-0.00442505,-0.00469971,-0.00448608,-0.00436401,-0.00430298,-0.00448608,-0.00369263,-0.003479,-0.00308228,-0.00262451,-0.00213623,-0.00234985,-0.00146484,-0.00189209,-0.00167847,-0.00189209,-0.00201416,-0.00180054,-0.00268555,-0.00201416,-0.00241089,-0.00234985,-0.00247192,-0.00256348,-0.00289917,-0.00256348,-0.00280762,-0.00302124,-0.00280762,-0.00289917,-0.00268555,-0.00241089,-0.00234985,-0.0020752,-0.0015564,-0.0012207,-0.000793457,-0.00088501,-0.00012207,-6.10352e-05,-0.000335693,0.000274658,-0.000396729,-0.000335693,0.00012207,-0.000213623,0,0.000213623,-0.00012207,0.000396729,0.000335693,0.000793457,0.000793457,0.000793457,0.000671387,0.00106812,0.000457764,0.000946045,0.000610352,0.000946045,0.00146484,0.000946045,0.00201416,0.00106812,0.00213623,0.00161743,0.00201416,0.0017395,0.00228882,0.00201416,0.00146484,0.00195312,0.0015564,0.00128174,0.000946045,0.00088501,0.000396729,-0.00012207,6.10352e-05,-0.00100708,-0.00088501,-0.0015564,-0.00189209,-0.00201416,-0.00189209,-0.00241089,-0.00161743,-0.00228882,-0.00167847,-0.00140381,-0.0015564,-0.00140381,-0.00106812,-0.0015564,-0.00134277,-0.00134277,-0.0015564,-0.00189209,-0.00222778,-0.00228882,-0.00234985,-0.00241089,-0.00302124,-0.00195312,-0.00274658,-0.00262451,-0.00247192,-0.00274658,-0.00222778,-0.00268555,-0.00234985,-0.00247192,-0.00180054,-0.00262451,-0.0020752,-0.00241089,-0.00213623,-0.0017395,-0.00234985,-0.0015564,-0.0015564,-0.0012207,-0.00106812,-0.000457764,6.10352e-05,0,0.000396729,0.000610352,0.000610352,0,0.000213623,0.000396729,-0.000610352,-0.000396729,-0.00088501,-0.000610352,-0.00161743,-0.00106812,-0.00167847,-0.00128174,-0.00189209,-0.00112915,-0.0017395,-0.000946045,-0.00100708,-0.00088501,-0.000610352,-0.000946045,-0.000457764,-6.10352e-05,-0.000457764,0.000335693,0.000213623,0.0012207,0.00106812,0.0015564,0.00228882,0.00180054,0.00296021,0.00195312,0.00201416,0.00112915,0.000946045,0.000396729,0,-0.00106812,-0.00100708,-0.00167847,-0.00128174,-0.00189209,-0.00128174,-0.00213623,-0.00140381,-0.00195312,-0.00167847,-0.00146484,-0.00201416,-0.00134277,-0.00247192,-0.00167847,-0.00195312,-0.00167847,-0.00167847,-0.00167847,-0.00167847,-0.00180054,-0.00180054,-0.00134277,-0.00167847,-0.00222778,-0.00228882,-0.0020752,-0.00228882,-0.00296021,-0.00280762,-0.00262451,-0.00296021,-0.00234985,-0.00256348,-0.00234985,-0.0017395,-0.00195312,-0.00167847,-0.00161743,-0.00140381,-0.00167847,-0.0017395,-0.00140381,-0.00167847,-0.00180054,-0.00167847,-0.0017395,-0.00140381,-0.00134277,-0.00106812,-0.000946045,-0.00128174,-0.00088501,-0.00128174,-0.000610352,-0.00167847,-0.00161743,-0.00112915,-0.0015564,-0.0015564,-0.00106812,-0.00112915,-0.00112915,-0.000793457,-0.00100708,-0.000213623,-6.10352e-05,-0.00012207,0,0.000396729,-0.00012207,0,-0.000213623,-0.000396729,-0.000549316,-0.000549316,-0.00112915,-0.000671387,-0.00100708,-0.000732422,-0.00128174,-0.000610352,-0.000732422,-0.000610352,-0.000396729,-0.000610352,-0.00112915,-0.000610352,-0.000946045,-0.00100708,-0.000793457,-0.00140381,-0.00100708,-0.000793457,-0.000793457,-0.000793457,-0.000213623,-0.000793457,-0.000274658,-0.000457764,-0.00088501,-0.000671387,-0.000457764,-0.00146484,-0.000946045,-0.0015564,-0.0012207,-0.00140381,-0.0015564,-0.0015564,-0.00140381,-0.00167847,-0.00161743,-0.00180054,-0.00140381,-0.00189209,-0.00161743,-0.00167847,-0.0015564,-0.00140381,-0.00146484,-0.00146484,-0.000946045,-0.0012207,-0.00134277,-0.00012207,-0.0012207,0.00012207,-0.000335693,0.00012207,-0.000274658,0.00012207,0.000213623,0.000396729,0,0.000335693,-0.00012207,0,-0.00088501,-0.000732422,-0.00128174,-0.00140381,-0.00189209,-0.0017395,-0.00180054,-0.00201416,-0.00213623,-0.00247192,-0.00195312,-0.0020752,-0.00234985,-0.00256348,-0.00228882,-0.00268555,-0.00234985,-0.00228882,-0.00262451,-0.00161743,-0.00167847,-0.00146484,-0.000732422,-0.00100708,-0.000335693,6.10352e-05,-0.000457764,0.000335693,0.000213623,-0.000335693,0.000793457,-0.000610352,-6.10352e-05,-0.000274658,-0.000732422,-0.000396729,-0.0012207,-0.00100708,-0.0012207,-0.0017395,-0.00128174,-0.00189209,-0.00161743,-0.00180054,-0.00112915,-0.00167847,-0.00106812,-0.00088501,-0.00106812,-0.000793457,0.000274658,-0.00088501,-0.000213623,-0.000549316,-0.000335693,-0.000549316,-6.10352e-05,0.000335693,-0.000549316,0.000274658,-0.000396729,-6.10352e-05,-0.000274658,-0.0012207,-0.000610352,-0.00195312,-0.0012207,-0.00234985,-0.00222778,-0.00357056,-0.00268555,-0.003479,-0.00363159,-0.0032959,-0.00335693,-0.00289917,-0.0032959,-0.00262451,-0.00222778,-0.00241089,-0.00213623,-0.00189209,-0.00112915,-0.00128174,-0.000671387,-0.00088501,0,-0.00012207,0.000549316,0.000396729,0.000671387,0.000274658,0.000396729,0.000274658,0,0,-0.000793457,-6.10352e-05,-0.0012207,-0.00100708,-0.00106812,-0.00195312,-0.0012207,-0.00195312,-0.00213623,-0.00213623,-0.00222778,-0.00195312,-0.00201416,-0.00146484,-0.00161743};
freunde_soprano = (freunde_soprano_0):((!,_));
freunde_soprano_rtable_0(r) = (freunde_soprano_0,r):rdtable;
| https://raw.githubusercontent.com/grame-cncm/GeekBagatelles/d09ed1362a79707d1687ed92cf0482ced2509035/freunde_soprano_waveform.dsp | faust | freunde_soprano_0 = waveform{-0.0020752,-0.00100708,-0.00106812,-0.000213623,-0.00167847,-0.0015564,-0.000946045,-0.000549316,-0.000946045,-0.00146484,-0.00180054,-0.000610352,-6.10352e-05,-0.00128174,-0.00189209,-0.00100708,-0.000610352,-0.000610352,-0.0012207,-0.00195312,-0.00161743,-0.000793457,-0.000335693,-0.000610352,-0.000793457,-0.0012207,-0.00140381,-0.000610352,-0.000335693,-6.10352e-05,-0.00161743,-0.0017395,-0.00189209,-0.00088501,0.000213623,-0.00106812,-0.00180054,-0.0015564,-0.000549316,-0.000610352,-0.000793457,-0.00146484,-0.00140381,-0.000671387,-0.000610352,-0.00112915,-0.00100708,-0.000549316,-0.00167847,-0.00167847,-0.000671387,-0.000793457,-0.000671387,-0.00167847,-0.000732422,-0.00140381,-0.00100708,-0.000946045,-0.000549316,-0.00134277,-0.00228882,-0.00161743,-0.000732422,-0.000335693,-0.00128174,-0.00234985,-0.00140381,-0.00012207,-0.00128174,-0.00201416,-0.000457764,-0.000793457,-0.00195312,-0.00128174,-0.00100708,-0.000671387,-0.00140381,-0.0017395,-0.00222778,-0.000732422,-0.000213623,-0.00134277,-0.0015564,-0.0012207,-0.0017395,-0.00134277,-0.00106812,-0.00088501,-0.00106812,-0.000671387,-0.0015564,-0.0017395,-0.00140381,-0.000946045,-0.0017395,-0.00134277,-0.00189209,-0.00247192,-0.00100708,0.000213623,-0.00106812,-0.00302124,-0.00256348,-0.00167847,-0.000335693,-0.00134277,-0.00213623,-0.00228882,-0.00195312,-0.000549316,-0.000732422,-0.0015564,-0.00195312,-0.00106812,-0.000335693,-0.00088501,-0.00189209,-0.0017395,-0.00112915,-0.000732422,-0.00189209,-0.00241089,-0.00134277,-0.00088501,-0.000671387,-0.00146484,-0.00167847,-0.00234985,-0.00222778,-0.0012207,-0.00100708,-0.000335693,-0.000732422,-0.00189209,-0.0020752,0,0.000335693,-0.0015564,-0.00341797,-0.00228882,0.000335693,0.00112915,-0.000549316,-0.0020752,-0.00180054,0.000335693,0,-0.00128174,-0.00106812,-0.00088501,-0.000671387,-0.00140381,-0.0015564,-0.00134277,0.000335693,-6.10352e-05,-0.00140381,-0.00146484,-0.000549316,0.00012207,-0.000946045,-0.00088501,-0.0017395,-0.00161743,-0.000457764,0.000335693,-0.000610352,-0.000946045,-0.00100708,-0.000793457,-0.00106812,-0.0012207,-0.00167847,-0.0015564,-0.00180054,-0.0012207,-0.000671387,-0.000335693,-0.000610352,-0.00213623,-0.0012207,-6.10352e-05,-0.000335693,-0.00134277,-0.00140381,-0.00112915,-0.00106812,6.10352e-05,-0.00189209,-0.00222778,-0.0012207,-0.000396729,-0.000610352,-0.00161743,-0.00140381,-0.00201416,-0.000671387,0.000335693,-0.00189209,-0.0012207,-0.00088501,-0.000213623,-0.000671387,-0.00241089,-0.000335693,-0.00112915,6.10352e-05,-0.00189209,-0.00234985,-0.00106812,-0.000457764,-0.00012207,-0.000549316,-0.00180054,-0.00180054,-0.00241089,0.000335693,0.000732422,-0.00146484,-0.00302124,-0.00146484,0.000793457,-0.000396729,-0.00195312,-0.00189209,-0.00167847,0.00012207,-0.000457764,-0.000671387,-0.00146484,-0.00088501,-0.000671387,-0.000274658,-0.000335693,-0.00256348,-0.0017395,-0.000396729,0.000946045,-0.00088501,-0.00234985,-0.00140381,-0.000335693,-0.000335693,0,-0.00180054,-0.00146484,-0.00106812,-0.000396729,-0.00128174,-0.000946045,-0.00112915,-0.00112915,-0.000671387,-0.000457764,-0.00167847,-0.00128174,6.10352e-05,0,-0.0012207,-0.00341797,-0.00100708,0.000457764,0.00088501,-0.000396729,-0.00161743,-0.00161743,-0.00100708,-6.10352e-05,0.00012207,-0.00112915,-0.00201416,-0.00201416,-0.000457764,0.000610352,6.10352e-05,-0.00201416,-0.00234985,-0.000274658,0,-0.000335693,-0.00106812,-0.00189209,-0.00161743,-0.000457764,-0.000213623,-0.000946045,-0.000671387,-0.00128174,-0.00140381,-0.00112915,-0.00106812,-0.000549316,-0.00128174,-0.00274658,-0.00112915,-0.00012207,-0.000274658,-0.00234985,-0.00167847,-0.000793457,-6.10352e-05,-0.00180054,-0.00241089,-0.00161743,-0.000549316,-0.00128174,-0.000396729,-0.00180054,-0.00201416,-0.00189209,0.00140381,-0.000274658,-0.00335693,-0.0015564,-0.000549316,0.000457764,-0.000335693,-0.00180054,-0.00363159,-0.00100708,0.000671387,-0.0012207,-0.0020752,-0.00268555,-0.00234985,-0.000213623,0.000732422,-0.000610352,-0.00341797,-0.0012207,-0.000213623,0.000610352,-0.000732422,-0.00201416,-0.00314331,-0.000396729,0,-0.00167847,-0.00088501,-0.0020752,-0.000732422,-0.00100708,0,-0.00140381,-0.00201416,-0.000549316,0.000610352,-0.000213623,-0.00128174,-0.00146484,-0.000671387,-0.000335693,-0.000671387,-0.00195312,-0.000793457,-0.000549316,-0.0012207,-0.000946045,-0.00234985,-0.00106812,0,-0.000946045,-0.00100708,-0.000396729,-0.00112915,-0.000549316,0,-0.000793457,-0.00134277,-0.000610352,-0.0012207,-0.000732422,0.000610352,0,-0.00140381,-0.000457764,-0.000671387,-0.00161743,0.000274658,0.00012207,-0.00146484,-0.00195312,-0.00012207,-0.00012207,-0.000732422,-0.00161743,-0.0017395,-0.00012207,0.000610352,-0.00167847,-0.00180054,-0.000335693,0.000549316,-0.00112915,-0.00213623,-0.00296021,-0.00128174,0.000396729,0.000274658,-0.00234985,-0.00189209,-0.00134277,-0.00100708,0.000213623,0.000335693,-0.00201416,-0.00128174,-0.00106812,-0.000671387,-0.000946045,-0.000793457,-0.0015564,-0.00213623,0,-0.000457764,-0.000213623,-0.00106812,-0.00189209,-0.00146484,-0.00112915,-0.0012207,-0.00262451,-0.00146484,-0.000946045,-0.000457764,-0.00100708,-0.00201416,6.10352e-05,0.000732422,-0.00146484,-0.00363159,-0.000610352,-0.00012207,-0.0015564,-0.00140381,0.000213623,-0.00189209,-0.00128174,-0.000335693,-0.00134277,-0.00140381,-6.10352e-05,-0.0017395,-0.00296021,-0.000793457,-0.000274658,-0.00180054,-0.00222778,-0.00161743,0.000396729,0.000274658,-0.00241089,-0.00274658,-0.000396729,0.000396729,-0.00088501,-0.00296021,-0.00189209,-0.000213623,0.000457764,-0.000457764,-0.00341797,-0.00280762,-0.00012207,0.000335693,-0.00100708,-0.00228882,-0.00140381,6.10352e-05,-0.000549316,-0.00167847,-0.0017395,6.10352e-05,-0.000274658,-0.00140381,-0.00296021,-0.00134277,0.000457764,-0.000671387,-0.00268555,-0.0017395,-0.000213623,-0.00088501,-0.000793457,-0.0017395,-0.00195312,0.00012207,-0.00088501,-0.0017395,-0.00180054,0.000274658,-0.000274658,-0.0017395,-0.00247192,-0.00146484,-6.10352e-05,-0.000335693,-0.000213623,-0.00363159,-0.00234985,0.00012207,0.000396729,-0.000457764,-0.00256348,-0.00195312,-0.000274658,0.000335693,-0.0015564,-0.00161743,-0.000732422,-0.00112915,-0.00167847,-0.000549316,-0.000396729,-0.00161743,-0.00161743,-0.0015564,-0.00146484,-0.000732422,0.000213623,-0.00189209,-0.00247192,-0.00106812,-0.000671387,-0.00012207,-0.00268555,-0.00256348,-0.000396729,0.0015564,-0.00167847,-0.00274658,-0.000946045,0.00140381,-0.00012207,-0.0032959,-0.0032959,-6.10352e-05,0.00140381,-0.00112915,-0.0020752,-0.00195312,-0.00234985,-0.000213623,0.000610352,-0.00134277,-0.00262451,-0.00195312,-0.000610352,0.000213623,-0.00128174,-0.0017395,-0.00262451,-0.00234985,0,-0.000274658,-0.000274658,-0.00134277,-0.00195312,-0.00161743,-0.000396729,-0.000213623,-0.0012207,-0.00161743,-0.00128174,-0.000274658,-0.000793457,-0.00167847,-0.00100708,-0.000732422,-0.000335693,-0.00088501,-0.00106812,0.000335693,-0.000274658,-0.00241089,-0.00247192,-0.00201416,-6.10352e-05,-0.00012207,-0.00112915,-0.00134277,-0.000793457,0.000213623,-0.0017395,-0.000671387,0.000396729,-0.000274658,-0.00167847,-0.0020752,-0.000274658,0.000335693,0.000213623,-0.00222778,-0.00134277,0.000274658,-0.000335693,-0.00134277,-0.00106812,0.000610352,-6.10352e-05,-0.00195312,-0.00161743,-0.00088501,0.000671387,0.000274658,-0.00167847,-0.00335693,-0.00140381,0.00128174,0.000335693,-0.00274658,-0.00335693,-0.00256348,0.00195312,0.0032959,-0.00167847,-0.00457764,-0.00234985,0.0017395,0.000549316,-0.00100708,-0.00296021,-0.00314331,0.00128174,0.00140381,-0.000671387,-0.00256348,-0.00213623,-0.000335693,0.00012207,0.000274658,-0.00241089,-0.00241089,-0.000335693,0.000793457,0.000549316,-0.00247192,-0.00314331,-0.00180054,0.000732422,0.00088501,-0.00247192,-0.0032959,-0.00289917,-0.000457764,0.00161743,-0.00012207,-0.00189209,-0.00296021,-6.10352e-05,0.00201416,0.000274658,-0.00390625,-0.00341797,-0.00140381,0.00134277,-0.000549316,-0.00256348,-0.00415039,-0.00146484,0.00167847,0.000793457,-0.000793457,-0.00262451,-0.00280762,-0.00112915,0.000946045,0.00167847,-0.00241089,-0.00369263,-0.000335693,0.000671387,0.00100708,-0.00134277,-0.00128174,-0.00222778,-0.000274658,-0.000213623,-0.00195312,-0.00128174,-0.000793457,-0.00140381,-0.000549316,6.10352e-05,-0.000610352,-0.00274658,0.000671387,0.000793457,-0.00128174,-0.00268555,-0.00234985,-0.00106812,0.00012207,-0.000610352,-0.0017395,-0.00302124,-0.000946045,0.000457764,6.10352e-05,-0.000732422,-0.00222778,-0.00375366,-0.0012207,0.000274658,0.000213623,-0.00296021,-0.00424194,-0.00189209,0.000793457,0.00228882,-0.00195312,-0.00402832,-0.00161743,0.000457764,-0.00112915,-0.00357056,-0.00167847,-0.0017395,-0.0020752,0.000213623,-0.000549316,-0.00241089,-0.00375366,0.000549316,0.000457764,-0.00189209,-0.00457764,-0.00268555,-0.00128174,0.000671387,-0.000213623,-0.00314331,-0.00280762,-0.00106812,0.000335693,-0.000793457,-0.00314331,-0.00341797,-0.0012207,-0.00012207,-0.0015564,-0.00201416,-0.00274658,-0.00201416,0,0.000335693,-0.00213623,-0.00436401,-0.00195312,0.00161743,0.000457764,-0.00241089,-0.00424194,-0.0017395,0.00112915,0.00012207,-0.00201416,-0.00335693,-0.00134277,-6.10352e-05,-0.000213623,-0.0012207,-0.0015564,-0.00146484,-0.000671387,-0.00012207,-0.00128174,-0.00314331,-0.00134277,-0.00106812,-0.000213623,-0.00167847,-0.00167847,-0.00106812,0.000274658,0.00112915,-0.00256348,-0.00180054,-0.0017395,-0.00088501,-0.00268555,-0.00100708,0.0012207,-0.0012207,-0.00222778,-0.00128174,0.0015564,0.00106812,-0.00167847,-0.00369263,-0.00280762,0.00140381,0.00088501,-0.00167847,-0.00448608,-0.000396729,0.00106812,0.000946045,-0.00180054,-0.0012207,0.000213623,-0.000610352,-0.00146484,-0.00213623,-0.00106812,6.10352e-05,0.000213623,-0.0012207,-0.0020752,-0.000274658,0.000793457,-0.000549316,-0.00234985,-0.00201416,-0.000946045,-6.10352e-05,-0.00112915,-0.00128174,-0.00012207,0.00146484,0,-0.00314331,-0.00146484,0.0012207,-0.000732422,-0.00268555,-0.0020752,0.00012207,0.00106812,0.000213623,-0.00241089,-0.00128174,0.00012207,-0.000213623,-0.000549316,-0.0015564,0.00140381,-0.0017395,-0.00369263,-0.00128174,0.00201416,0.00012207,-0.00357056,-0.00262451,0.000213623,0.00180054,-6.10352e-05,-0.0020752,-0.00180054,-0.0012207,-0.00128174,0,0.00134277,-0.000610352,-0.00201416,-0.00167847,-0.000793457,0.000610352,0.00146484,-0.00268555,-0.00262451,-0.000549316,0.000732422,-0.00189209,-0.000335693,0.000213623,-0.00167847,-0.000610352,-0.000946045,-0.00106812,-0.00140381,0.00012207,0.0015564,-0.00201416,-0.00323486,-0.00247192,0.00189209,0.00146484,-0.00302124,-0.00408936,-0.000274658,0.00247192,0.000732422,-0.00341797,-0.00335693,0,0.0012207,-0.00146484,-0.00167847,-0.000396729,-0.00100708,-0.00241089,-0.00012207,0.00134277,-6.10352e-05,-0.00247192,-0.00308228,-0.000335693,0.00128174,-0.000274658,-0.00323486,-0.00323486,-0.00112915,0.000335693,-0.0020752,-0.00247192,-0.00161743,-0.00012207,0.00088501,-0.000549316,-0.00222778,-0.0020752,-0.00140381,0.000610352,-0.00140381,-0.00241089,0.000335693,-0.00140381,-0.00167847,-0.00012207,0.000671387,-0.0015564,-0.00134277,-0.000793457,-0.00228882,-0.00112915,0.000274658,-0.0017395,-0.00323486,-0.00128174,0.000732422,-0.00088501,-0.00213623,-0.00280762,-0.00140381,0.00201416,-0.000732422,-0.00314331,-0.00280762,0.00100708,-0.000335693,-0.00088501,-0.00189209,-0.00213623,-0.000549316,-0.00106812,-0.0017395,-0.0017395,-0.0012207,-0.00189209,-0.00128174,-0.00195312,-0.00323486,-0.00408936,-0.00146484,0.0017395,0.00088501,-0.00268555,-0.00531006,-0.000793457,0.00213623,-0.000457764,-0.00363159,-0.00509644,-0.00180054,0.000396729,0.00134277,-0.00128174,-0.00314331,-0.00201416,0.000213623,0.00228882,-0.000457764,-0.00335693,-0.000732422,0.00088501,-0.00222778,-0.00262451,0.000396729,0.00112915,-0.000457764,-0.00323486,-0.00296021,0.00106812,0.00128174,-0.0012207,-0.0038147,-0.00228882,-6.10352e-05,-0.000671387,-0.00100708,-0.00189209,6.10352e-05,-0.000213623,-0.00189209,-0.00128174,-0.000732422,0,-0.000274658,-0.00296021,-0.00341797,0.000549316,0.00161743,-0.0012207,-0.003479,-0.00180054,0.000457764,0.00140381,0.000610352,-0.00088501,-0.00201416,-0.000946045,0.0017395,-0.000457764,-0.00268555,-0.00308228,0.00128174,0.000793457,-0.00134277,-0.00189209,-0.00088501,-0.000671387,0.00140381,-6.10352e-05,-0.0032959,-0.00302124,0.00161743,-0.00088501,-0.0015564,-0.00140381,0.000213623,-0.0017395,-0.00140381,-0.00213623,-0.000732422,0.000610352,-0.000335693,-0.00335693,-0.000457764,-0.000335693,-0.0015564,-0.00228882,-0.000549316,-0.00106812,-0.00106812,-0.000610352,-0.00195312,-0.00134277,-0.00106812,0,-0.00140381,-0.00189209,-0.00128174,-0.000335693,0.000732422,-0.00140381,-0.00296021,-0.000457764,0.00012207,-0.000793457,-0.00134277,-0.00088501,-0.000946045,-0.00228882,-0.000946045,-0.00128174,-0.000946045,0.00012207,-0.000946045,-0.00128174,-0.00161743,-0.000549316,0.0012207,-0.00134277,-0.00363159,-0.000946045,0.00146484,-0.00189209,-0.00375366,-0.0015564,0.000335693,0.000274658,-0.00195312,-0.00241089,-0.00140381,0.0012207,-0.000457764,-0.00134277,0.000335693,-0.00100708,-0.00314331,0.000732422,0.00228882,0.000793457,-0.00296021,-0.00247192,-0.00012207,0.000396729,-0.00012207,-0.00357056,-0.00213623,0.000396729,-0.000335693,0.000274658,0.000549316,-0.00247192,-0.00268555,-0.00140381,0.000671387,0.000610352,-0.00167847,-0.00256348,-0.00228882,0.000732422,-0.00146484,-0.00396729,-0.00195312,0.000213623,0,-0.003479,-0.00341797,-0.000793457,0.000457764,-0.000610352,-0.00256348,-0.00189209,-0.000457764,6.10352e-05,0.0015564,-0.000793457,-0.00280762,-0.00180054,6.10352e-05,0.00247192,-0.00335693,-0.00369263,-0.00167847,0.0020752,-0.00128174,-0.00180054,-0.00180054,-0.0020752,-0.00241089,-0.00201416,-0.000396729,-0.00195312,-0.00201416,-0.000732422,-0.00268555,-0.000457764,-0.000274658,-0.00106812,-0.0032959,-0.00262451,-0.00106812,-0.00146484,0.00088501,-0.0012207,-0.00256348,-0.0017395,0.00189209,0.0017395,-0.00274658,-0.00234985,-0.0012207,-6.10352e-05,0.0015564,0.000335693,-0.00161743,-0.00314331,-0.000274658,0.0015564,-0.000732422,0.000671387,-0.00213623,-0.000732422,-0.00106812,-0.00012207,-0.00180054,-0.00128174,0.00100708,-0.00201416,-0.0012207,0,-6.10352e-05,0.00213623,-0.000274658,-0.00268555,-0.00189209,-6.10352e-05,0.00167847,-0.00012207,-0.000671387,-0.00274658,-0.00256348,-0.00012207,0.0020752,0.000457764,-0.00280762,-0.00228882,0.000396729,0.00341797,0.0017395,-0.00323486,-0.00402832,-0.00256348,0.000213623,0.00222778,-0.00262451,-0.00469971,-0.00247192,0.000793457,0.000549316,-0.00341797,-0.00280762,-0.00296021,0.00247192,0.00088501,-0.00112915,-0.00268555,-0.00341797,0.000610352,-0.000213623,-0.00268555,-0.00424194,-0.00247192,-0.000610352,-0.00106812,-0.00161743,-0.00357056,-0.00228882,-0.000335693,-0.000946045,-0.0020752,-0.00247192,-0.0012207,-0.00106812,-6.10352e-05,-0.000457764,-0.00195312,-0.003479,-0.0032959,0.0012207,0.00146484,-0.00195312,-0.00430298,-0.00335693,0.000274658,6.10352e-05,-0.00228882,-0.00234985,-0.000610352,-0.00180054,-0.00140381,0.000610352,-6.10352e-05,-0.00390625,-0.00234985,-0.0017395,0.00241089,0.00012207,-0.00408936,-0.00415039,0.00241089,0.00457764,-0.00442505,-0.00390625,-0.0017395,0.00195312,0.00180054,-0.000396729,-0.00189209,-0.00128174,0.000946045,-0.0012207,-0.00100708,-0.000396729,-0.00222778,-0.0015564,0.00088501,-0.000671387,-0.00195312,-0.00146484,-0.000457764,-0.000671387,-0.000274658,-0.000274658,-0.000213623,-0.00195312,-0.00296021,-0.00222778,0.00146484,-0.00088501,-0.00100708,-0.00262451,-0.00189209,0.00012207,0.000732422,-0.00430298,-0.0038147,-0.00140381,-0.000610352,0.000213623,-0.00357056,-0.00146484,-0.0012207,0.00222778,0.000671387,-0.0032959,-0.00341797,-0.00469971,0.000335693,-0.00195312,-0.0038147,-0.0050354,-0.00134277,0.00256348,-0.00262451,-0.0017395,-0.00308228,-0.00128174,-0.000335693,-0.00100708,-0.00262451,-0.00375366,0,0.000549316,-0.00289917,-0.000213623,-0.00128174,-0.000793457,-0.00296021,-0.00323486,-0.0015564,-0.00106812,-0.00106812,-0.00180054,-0.00335693,0.000671387,-0.000274658,0.000335693,-0.000793457,-0.000671387,-0.0020752,-0.00241089,0.000274658,-0.00167847,-0.00195312,-0.00106812,-0.00289917,0.000396729,0.00134277,0.000732422,-0.000793457,-0.000793457,0.00167847,0.00088501,-0.000793457,-0.000732422,-0.00201416,0.00213623,0.000457764,-0.00134277,-0.00195312,0.000396729,0.00167847,0.00167847,0.000549316,-0.00088501,-0.000335693,-0.00012207,-0.00128174,-0.00189209,-0.0017395,0.00140381,-0.00262451,-0.00335693,0,0.00161743,0.000335693,-0.00396729,-0.00402832,-0.00430298,0.000396729,0.00375366,-0.00128174,-0.00140381,-0.00241089,0.00012207,6.10352e-05,0.000335693,-0.000793457,-0.00543213,0.000274658,-0.000274658,-0.000732422,-0.00274658,-0.00357056,-0.000396729,0.00201416,-0.00012207,-0.00424194,-0.00497437,-0.00112915,-0.000671387,-0.000946045,-0.0020752,-0.00543213,-0.00524902,0.00180054,0.00335693,-0.00167847,-0.00738525,-0.00314331,-0.0017395,0.0017395,-0.000274658,-0.00390625,-0.00222778,-0.00088501,0.00195312,0.000671387,0.000549316,-0.00189209,-0.00564575,0.000610352,0.00140381,0.000457764,-0.00167847,-0.00436401,-6.10352e-05,0.00195312,0.00268555,-0.00213623,-0.00375366,0.00100708,0.00256348,0.00201416,-0.00369263,-0.00482178,-0.000213623,0.00289917,0.00140381,-0.00241089,-0.00256348,0.00012207,0.00161743,0.00314331,-0.0015564,-0.00357056,-0.00161743,0.00012207,0.00424194,-0.000549316,-0.00189209,-0.00201416,0.0017395,0.003479,-0.000732422,0.000274658,-0.000610352,-0.00280762,-0.0017395,-0.00189209,0.000946045,-0.00363159,-0.000457764,-6.10352e-05,0.000610352,0.00161743,-0.00262451,-0.000274658,-0.0015564,-0.000396729,-0.00335693,-0.00296021,-0.00415039,-0.00704956,-0.00222778,0.00100708,-0.000213623,-0.0065918,-0.00482178,0.0020752,0.00088501,-0.00100708,-0.00442505,-0.000946045,0.0020752,0.00195312,-0.00112915,-0.000549316,0.00134277,-0.00180054,-0.00430298,-0.00256348,-0.00195312,-0.00363159,-0.00112915,-0.00268555,-0.00469971,-6.10352e-05,0.0032959,6.10352e-05,-0.00363159,-0.00088501,0.00213623,0.0015564,-0.00201416,-0.00408936,-0.00012207,0.000671387,0.000946045,-0.00476074,-0.00390625,0.000457764,0.00106812,0.00262451,-0.00189209,-0.0038147,-0.00134277,0.00268555,0.00323486,0.000274658,-0.00100708,-0.00189209,0.00189209,0.00415039,0.00112915,-0.000610352,-0.00167847,0.000274658,0.000793457,-0.00012207,-0.00146484,-0.00262451,-0.00134277,0.00112915,-0.00128174,-0.00296021,-6.10352e-05,0.00161743,0.000793457,0.000396729,-0.00134277,-0.00195312,-0.000274658,-0.00161743,-0.00497437,-0.00289917,-0.00195312,-0.00189209,-0.00289917,-0.00289917,-0.000549316,-0.00268555,-0.0017395,-0.0038147,0.0012207,-0.00012207,-0.00375366,-0.00341797,0.00128174,0.000732422,-0.00161743,6.10352e-05,-0.00222778,0.000610352,-0.000946045,-0.00241089,-0.00408936,-0.00241089,0.00128174,-0.00262451,-0.00280762,0.000671387,-0.00222778,0.0020752,-0.0020752,-0.00180054,-0.00161743,-0.00100708,-0.0012207,-0.00598145,-0.00106812,0.000610352,-0.000732422,-0.00228882,-0.00195312,-0.00012207,-0.00134277,-0.00201416,-0.00341797,-0.00268555,-6.10352e-05,0.000671387,-0.000946045,-0.00189209,-0.000335693,-0.000946045,0.000671387,0.000946045,-0.00424194,-0.00134277,0.00012207,-0.000946045,-0.000335693,-0.00134277,-0.000549316,-0.00100708,-0.000335693,-0.00134277,-0.000457764,0.000213623,-0.00268555,-0.00256348,-0.000549316,0.0020752,0.000457764,-0.00396729,-0.00241089,0.00289917,0.00161743,-0.00341797,-0.00302124,-0.000335693,6.10352e-05,-0.00012207,-0.00012207,-0.00161743,-0.00180054,-0.00012207,-0.000274658,-6.10352e-05,-0.00280762,-0.00509644,-0.00476074,0.00213623,0.00375366,-0.00390625,-0.00274658,0.00128174,-0.000457764,0.00189209,0.000213623,-0.00222778,-0.00323486,0.00302124,0.00323486,-0.00424194,-0.00415039,-0.00280762,0.000457764,-0.00146484,-0.00234985,-0.00289917,-0.00213623,-0.00201416,-0.00402832,-0.000396729,-0.000274658,-0.00314331,-0.00256348,-0.00222778,0.00100708,-0.000793457,-0.00390625,-0.00357056,-0.00140381,0.00213623,-0.00363159,-0.00476074,-0.0017395,-0.000946045,-0.00161743,-0.00531006,-0.00402832,-0.00100708,0.0015564,-0.00274658,-0.00247192,-0.00161743,0.000457764,0.00012207,-0.00314331,-0.00167847,0.00134277,0,-0.00274658,-0.000671387,-0.00146484,0.000732422,0.00262451,-0.00262451,-0.00637817,-0.00241089,0.00726318,0.00228882,-0.00592041,-0.0038147,0.00195312,0.00457764,0.00140381,-0.00497437,-0.00180054,0.00335693,0.00515747,-0.000396729,-0.00012207,0.000671387,-0.000946045,-0.00128174,-0.0012207,0.000610352,-0.000274658,-0.00308228,-0.0032959,-0.000213623,0.00570679,0.00457764,-0.00195312,-0.00442505,-0.00128174,0.00308228,-0.00100708,-0.00482178,-0.00247192,-0.00201416,-0.00112915,-0.00161743,-0.00189209,-0.00228882,0.00106812,-0.0012207,-0.00476074,-0.000793457,0.000335693,-0.000671387,-0.00256348,-0.00268555,-0.00167847,-0.00106812,-0.000793457,-0.00436401,-0.00323486,0.00088501,-0.00189209,-0.00408936,-0.00408936,-0.000946045,0.0015564,0.000335693,-0.00491333,-0.00616455,0.000946045,-0.000549316,-0.00390625,-0.00262451,-0.00357056,-0.00308228,0.00167847,0.00296021,-0.000274658,-0.00247192,-0.00390625,-0.00222778,0.00228882,0.000213623,-0.00363159,-0.00241089,0.00088501,0.00134277,0.00189209,0.00408936,0.00100708,-0.00146484,0.0017395,-0.000793457,0.000549316,0.000946045,-6.10352e-05,-0.00228882,-0.00140381,0.00509644,0.00274658,0.000549316,-0.00363159,-0.000732422,0.00161743,0.00375366,0.00161743,-0.00112915,-0.00296021,6.10352e-05,0.000946045,-0.00146484,-0.00140381,-0.00268555,-0.0020752,-0.00112915,0.0012207,-0.00375366,-0.00247192,0.00314331,-0.000610352,-0.00570679,-0.00241089,-0.00140381,-0.00140381,0.000610352,-0.00128174,-0.00469971,-0.00430298,-0.0020752,-0.00189209,0.0020752,-0.00195312,-0.00543213,-0.00201416,0.00213623,-0.000610352,-0.00402832,-0.00256348,-0.00323486,-0.00088501,0.000671387,-0.00314331,-0.00280762,-0.000793457,-0.00140381,-0.00424194,-0.00314331,-0.000671387,-0.00314331,-0.000549316,0.00167847,-0.00222778,-0.00201416,-0.000335693,-6.10352e-05,-0.0012207,0.0012207,-0.00201416,-0.00314331,0.0012207,0.00524902,0.00256348,-0.000274658,0.000549316,-0.00228882,-0.000549316,0.00296021,0.000274658,-0.00323486,0.00228882,0.00457764,-0.00146484,-0.00088501,0.00228882,0.00161743,0,-0.00308228,0.0017395,0.00424194,0.0015564,-0.00228882,-0.000732422,0.00390625,-0.000946045,-0.00161743,-0.000335693,0.00213623,0.00146484,-0.00012207,-0.00167847,-0.003479,0.000213623,-0.00213623,-0.00241089,-0.00424194,-0.00308228,-6.10352e-05,0.00280762,0.000793457,-0.0067749,-0.00442505,0.00256348,0.00549316,-0.00195312,-0.00704956,-0.00268555,0.000793457,0.00396729,-0.00228882,-0.00732422,-0.00402832,0.00228882,0.00289917,-0.00491333,-0.00857544,-0.00228882,0.000213623,0.00189209,-0.00442505,-0.00665283,-0.000457764,0.00228882,0.000610352,-0.00524902,-0.00436401,-0.000610352,0.000946045,0.00088501,-0.00375366,-0.00363159,-0.000274658,0.00390625,-0.0012207,-0.00424194,-0.00280762,-0.00195312,0,0.00180054,0.00112915,-0.00491333,-0.0017395,0.00012207,0.00289917,0.00247192,-0.00161743,-0.00524902,-0.000610352,0.00524902,-0.000946045,-0.00241089,-0.00241089,-0.00296021,0.000793457,0.00402832,-0.000274658,-0.00604248,-0.000396729,0.00180054,-0.00112915,0.00012207,0.00128174,-0.003479,-0.000793457,0.00112915,0.000213623,0.000457764,0.000610352,-0.00128174,-0.00515747,-0.00140381,0.00088501,-0.00289917,-0.0020752,-0.00161743,0.00161743,0.00012207,-0.0015564,-0.000946045,-0.00390625,0.00100708,-0.00201416,-0.00457764,-0.0015564,0.000274658,-0.00140381,-0.00549316,-0.0038147,-0.0038147,-0.00280762,0.0017395,-0.00375366,-0.00772095,0.000396729,0.00537109,0.00436401,-0.000549316,-0.000671387,-0.0050354,-0.000610352,0.0032959,-0.00106812,-0.00424194,-0.00683594,-0.00180054,0.00222778,0.00357056,-0.00274658,-0.00878906,-0.000793457,0.00457764,0.00241089,-0.00314331,-0.00765991,-0.00167847,0.00457764,0.00396729,-0.00408936,-0.0105286,-0.00213623,0.00616455,0.00213623,-0.00671387,-0.00918579,-0.00335693,0.00268555,0.00448608,-0.00161743,-0.00912476,-0.00274658,0.00732422,0.00564575,-0.00012207,-0.00610352,-0.00866699,0.000549316,0.00784302,0.000457764,-0.00744629,-0.00424194,0.00430298,0.0067749,0.000732422,-0.00524902,-0.00933838,0.0012207,0.00979614,-0.00213623,-0.012146,-0.00811768,0.003479,0.00637817,0.000793457,-0.0050354,-0.0114746,-0.000335693,0.00323486,-0.000274658,-0.00268555,-0.00717163,-0.00448608,0.000732422,0.00610352,6.10352e-05,-0.00463867,-0.000793457,0.000549316,0.00415039,0.00106812,0.00106812,-0.00402832,-0.00436401,0.00323486,0.00402832,0.00308228,-0.00598145,-0.00650024,-6.10352e-05,0.00515747,0.00012207,-0.0085144,-0.00463867,-0.000549316,0.00357056,-0.00189209,-0.00631714,-0.00570679,-0.00497437,0.00671387,0.000274658,-0.00799561,-0.00857544,-0.00201416,0.00543213,0.00375366,-0.00289917,-0.00933838,-0.00088501,0.0032959,0.000396729,-0.00592041,-0.00570679,-0.00180054,0.000610352,0.00357056,0.000549316,-0.00436401,-0.00213623,0.00228882,0.003479,0,-0.00369263,-0.00415039,-0.00357056,0.00100708,0.0012207,-0.00643921,-0.00308228,0.00213623,0.0020752,0.00167847,-0.00201416,-0.00146484,-0.00167847,-0.00161743,-0.000671387,-0.00167847,-0.00274658,-0.00289917,-0.000793457,0.00088501,-0.00134277,0.00100708,-0.00167847,-0.000457764,0.00134277,0,0.00698853,0.00241089,-0.00341797,-0.00201416,0.00262451,0.00369263,-0.0020752,-0.00314331,-0.00549316,-0.00390625,-0.000213623,-0.00180054,-0.000671387,-0.00296021,-0.00146484,-0.000732422,0.00341797,-0.00088501,-0.00543213,-0.00201416,-0.000549316,0.00012207,-0.0032959,-0.00765991,-0.00524902,6.10352e-05,0.00375366,-0.00296021,-0.00704956,-0.00134277,0.00106812,0.000213623,-0.000457764,-0.00357056,-0.00213623,-0.00247192,0.000671387,0.00363159,0.00128174,0.00012207,-0.00558472,-0.00698853,0.000213623,0.00396729,-0.00262451,-0.0101318,-0.00582886,0.00128174,0.00650024,0.00408936,-0.00582886,-0.00759888,0.00128174,0.003479,-0.00112915,-0.00866699,-0.00213623,0.00592041,0.00543213,-0.00296021,-0.00643921,0.00128174,0.00772095,0.00692749,-0.00457764,-0.0104065,-0.000671387,0.00616455,0.0020752,-0.00222778,-0.00497437,-0.00262451,0.00442505,0.00631714,0.00201416,-0.00424194,-0.00012207,-0.00106812,-0.00335693,-0.00201416,6.10352e-05,0.0017395,-0.00262451,-0.00457764,-0.00289917,0.00643921,0.00476074,-0.00582886,-0.00866699,-0.00515747,0.0012207,0.000946045,-0.00247192,-0.00241089,-0.00247192,-0.000549316,0.00363159,-0.000274658,-0.00222778,-0.00463867,6.10352e-05,0.00161743,-0.00497437,-0.00469971,-0.00531006,-0.000274658,0.00228882,-0.00189209,-0.00112915,-0.00341797,0.00134277,-0.00247192,0.00161743,0.0032959,-0.0067749,-0.00497437,-6.10352e-05,0.00274658,-0.00180054,-0.00262451,-0.0062561,-0.00476074,0.00811768,0.00302124,-0.00537109,-0.0083313,-0.00112915,0.00543213,0.00515747,0.00140381,-0.00958252,-0.00482178,0.00845337,0.00704956,-0.00415039,-0.00564575,-0.00274658,0.00228882,0.00549316,-0.00012207,-0.0065918,-0.00402832,0.00582886,0.00222778,0.00112915,-0.00402832,-0.00924683,-0.00140381,0.00180054,0.00247192,-0.0032959,-0.0012207,-0.00222778,0.000671387,0.00497437,0.000457764,-0.00524902,-0.0038147,0.000457764,0.00430298,-0.00296021,-0.00665283,-0.00717163,0.00323486,0.00247192,-0.00604248,-0.00390625,-0.00610352,0.00308228,0.00140381,-0.000671387,-0.00274658,-0.00616455,0.000793457,0.0012207,0.00408936,-0.000274658,-0.00665283,-0.00582886,-0.00201416,0.0062561,0.00112915,-0.00784302,-0.00463867,-0.00375366,0.00509644,0.00558472,-0.0032959,-0.00469971,-0.00335693,0.000335693,-6.10352e-05,0.00088501,-0.00457764,-0.00408936,0.00256348,0.00234985,-0.000274658,0.00201416,-0.00161743,-0.00363159,0.00375366,0.00256348,-0.00375366,-0.00341797,0.00106812,0.000274658,0.00241089,0.000793457,-0.00637817,-0.00228882,0.00012207,0.0012207,0.00228882,-0.000732422,-0.00448608,-0.00314331,0.0020752,0.00469971,-0.000793457,-0.00811768,-0.0085144,-0.00268555,0.0050354,-0.00146484,-0.00827026,-0.00827026,-0.00256348,0.00637817,0.00582886,-0.00222778,-0.00631714,-0.00549316,0.00436401,0.0050354,-0.00314331,-0.0067749,-0.00531006,-0.00161743,0.00430298,-0.00167847,-0.00323486,-0.00341797,-0.00430298,0.00234985,-0.000396729,0.00396729,-0.00564575,-0.00323486,0.00106812,-0.00308228,0.00402832,-0.0032959,-0.00726318,-0.00671387,0.0050354,0.000396729,-0.00564575,-0.00827026,-0.00598145,0.00415039,0.000610352,-0.000213623,-0.00610352,-0.00402832,-6.10352e-05,0.00744629,6.10352e-05,-0.00537109,-0.00280762,0.00537109,0.00482178,-0.000335693,-0.000549316,-0.00390625,-6.10352e-05,0.00262451,0.00274658,0.00415039,-0.00436401,-0.00765991,0.000946045,0.00692749,0.00274658,-0.00570679,-0.00631714,-0.00247192,0.000732422,0.00839233,-0.00576782,-0.0071106,-0.00222778,-0.000610352,0.00280762,-0.00582886,-0.00732422,-0.00778198,0.00268555,0.00469971,-0.00241089,-0.00631714,-0.00357056,0.00222778,0.00369263,0.0012207,-0.00509644,-0.0015564,-0.00363159,0.00274658,0.00515747,-0.00100708,-0.00088501,-0.0050354,-0.00415039,0.00363159,0.00140381,-0.00738525,-0.00811768,-0.00717163,0.000946045,0.00201416,0.00491333,-0.00314331,-0.00692749,0.00146484,0.00161743,0.000946045,-0.0015564,-0.00793457,-0.00531006,0.00497437,0.00189209,-0.00692749,-0.000335693,0.00134277,0.00582886,0.00256348,-0.00744629,-0.00396729,0.00357056,0.00827026,-0.000213623,-0.00363159,-0.0083313,0.00189209,0.0131531,0.00268555,-0.00872803,-0.0038147,0.00469971,0.000946045,0.000946045,-0.000335693,-0.00247192,-0.00784302,-0.00140381,0.00134277,6.10352e-05,0.00088501,-0.0050354,-0.00570679,0.000732422,0.00167847,-0.00112915,-0.00308228,-0.00531006,-0.0038147,-0.00335693,0.00424194,-0.000335693,-0.00564575,0.00363159,0.00402832,0.0017395,-0.00247192,-0.00335693,0.000274658,-0.000732422,-0.00189209,-0.00906372,-0.00604248,0.00241089,-0.000549316,-0.00195312,-0.00402832,0.00161743,0,0.0012207,-0.00424194,-0.00717163,0.00442505,0.00012207,-0.000946045,-0.00784302,-0.00189209,0.00497437,0.00106812,-0.00012207,-0.00759888,0.000671387,0.00256348,0.00369263,-0.00616455,-0.00537109,0.00515747,0.003479,0.00128174,-0.00296021,0.00289917,0.00497437,0.00241089,-0.00180054,-0.00872803,-0.000213623,0.00112915,-0.00201416,-0.00482178,-0.000457764,0.00390625,0.00570679,0.000457764,-0.0067749,-0.00463867,0.00228882,0.00335693,-0.00357056,-0.00765991,-0.00717163,0.00335693,0.00308228,-0.000396729,-0.00088501,-0.00476074,0.0012207,0.00167847,0.00189209,-0.00744629,-0.0118713,-0.00396729,0.000549316,0.00524902,-0.00543213,-0.00698853,0.00161743,0.00369263,0.00088501,0.00302124,0.00088501,-0.00558472,-0.00698853,0.000946045,0.000549316,-0.00241089,-0.00201416,-0.00598145,-0.00274658,0.0038147,0.000457764,-0.0085144,-0.00592041,-0.000396729,-0.00140381,0.00296021,-0.00289917,-0.00604248,-0.000335693,0.00302124,0.00408936,0.000946045,-0.00296021,-0.00341797,0.00161743,0.00201416,-6.10352e-05,-0.00280762,0.00424194,0.00564575,0.000610352,-0.00128174,-0.00543213,0.0012207,0.00616455,-0.00106812,-0.00531006,-0.00515747,0.00161743,0.003479,-0.00112915,-0.00430298,-0.00180054,0.00268555,0.000274658,-0.00234985,-0.00592041,-0.00442505,0.00228882,0.003479,-0.0050354,-0.00784302,0.00274658,0.00369263,-0.000610352,-0.00112915,-0.00189209,-0.00558472,0.00161743,0.000671387,-0.000793457,0.00195312,-0.00262451,-0.00436401,-0.0032959,0.00491333,-0.00140381,-0.00491333,-0.00564575,-0.00357056,0.00482178,0.00430298,-0.003479,-0.00878906,0.000457764,0.00643921,-0.00189209,-0.00973511,-0.0109253,-0.000213623,0.00946045,-0.00314331,-0.011261,-0.00430298,0.00482178,0.00469971,-0.0065918,-0.00128174,-0.00357056,-0.00088501,0.00161743,0.00128174,0.00363159,0.000549316,-0.00289917,-0.00189209,0.00402832,0.00396729,-0.00247192,-0.000457764,-0.00537109,-0.00296021,0.00415039,-0.00106812,-0.00524902,-0.00491333,0.00759888,0.00213623,-0.00515747,-0.00637817,-0.00323486,0.0065918,0.00247192,-0.00878906,-0.00665283,-0.000274658,0.00436401,0.000671387,-0.00430298,-0.00933838,-0.00509644,0.00772095,0.00274658,-0.00537109,-0.00262451,0.00247192,-0.00012207,-0.000549316,-0.000549316,-0.00408936,-0.00012207,-0.0015564,-0.00323486,0.000213623,0.00558472,-0.0015564,-0.000274658,-0.00430298,-0.00637817,-0.00396729,-0.00274658,-0.00335693,-0.00463867,0.00671387,-0.00415039,-0.00430298,0.00357056,0.00247192,0.00140381,-0.00616455,-0.00012207,0.000213623,-0.000793457,-0.00289917,-0.00631714,-0.000732422,0.000549316,0.00241089,0.000671387,-0.000946045,0.00106812,0.00396729,0.00161743,-0.00308228,-0.00469971,-0.00100708,0.0015564,-0.00314331,-0.0038147,-0.00161743,0.00732422,-0.00180054,-0.00537109,-0.00341797,-0.00576782,0.000335693,-0.00308228,6.10352e-05,-0.00665283,0.000335693,0.00363159,0.00128174,0.00457764,-0.0101929,-0.000274658,0.00335693,-0.00146484,-0.00598145,-0.00341797,0.00341797,-0.00497437,-0.00335693,0.0038147,0.00247192,0.00167847,-0.000671387,-0.00415039,0.00390625,0.003479,-0.00308228,-0.00482178,-0.00302124,-0.000610352,-0.00323486,0.00161743,-0.00213623,-0.0071106,0.000793457,0.00692749,0.00112915,-0.00732422,-0.00241089,-0.00463867,-0.00112915,0.00448608,-0.00415039,-0.00424194,-0.00390625,0.00228882,0.00280762,-0.000396729,0.000946045,-0.00592041,0.00100708,0.00515747,0.00100708,-0.00241089,-0.0065918,0.0012207,0.00430298,0.00134277,-0.00402832,-0.00515747,0.0017395,-0.000946045,-6.10352e-05,-0.000793457,-0.00335693,-0.00912476,0.000549316,0.00482178,-0.00241089,-0.00442505,-0.00457764,0.00112915,0.00012207,0.00576782,-0.0012207,-0.0062561,-0.00497437,-0.00195312,0.00732422,0.00549316,-0.00424194,-0.012146,-0.00469971,0.00979614,0.00515747,-0.0032959,-0.00341797,-0.00363159,0.00369263,0.00469971,0.000274658,-0.00558472,-0.00195312,0.000335693,0.000335693,0.00213623,-0.0110779,-0.00717163,0.00463867,0.00692749,-0.000549316,-0.00759888,-0.00341797,0.00274658,0.0071106,0.000396729,-0.0109253,-0.0032959,0.00805664,0.0020752,6.10352e-05,-0.00323486,-0.00140381,0.00497437,0.000946045,-0.000793457,-0.00616455,-0.00222778,-0.00146484,-0.00543213,0.00274658,-0.00201416,-0.0020752,-0.00515747,-0.00146484,0.003479,-0.00189209,-0.00112915,-0.00509644,-0.00134277,-0.00100708,0.00112915,-0.00256348,-0.00692749,0.000793457,0.000549316,0.00106812,0.00180054,-0.0050354,-0.00424194,0.00448608,0.00268555,-0.00759888,-0.00335693,0.00631714,0.00476074,-0.00631714,-0.00564575,-0.00106812,-0.00012207,0.00817871,-0.00106812,-0.00537109,-0.00112915,-0.00402832,-0.00106812,0.000335693,0.000610352,-0.00537109,-0.00469971,0.000457764,-0.000946045,0.00268555,0.00543213,-0.00128174,-0.00274658,-0.00476074,-0.000671387,0.00363159,0,-0.00476074,-0.00738525,0.00939941,0.0105896,-0.00811768,-0.0109253,-0.00357056,0.00866699,0.00274658,-0.0050354,-0.0108032,-0.00604248,0.00128174,0.00604248,0.0065918,-0.0133667,-0.0158386,0.00241089,0.0186462,-0.000274658,-0.0174561,-0.00991821,-0.00262451,0.0141602,0.00363159,-0.0111389,-0.0144958,0,0.0114136,0.00665283,0.00247192,-0.0112,-0.0105286,0.000793457,0.0104675,-0.000549316,-0.0115967,-0.00448608,0.00308228,0.00631714,0.0129395,-0.00357056,-0.0195923,-0.00604248,0.00973511,0.00738525,-0.0123596,-0.0140991,-0.00891113,0.00247192,0.0140991,-0.00128174,-0.00878906,-0.00524902,-0.000396729,0.00598145,0.00665283,0.000457764,-0.0141602,-0.00134277,0.0118713,0.00592041,0.00128174,-0.00759888,-0.00341797,0.00222778,0.0109253,0.00140381,-0.0135498,-0.00900269,-0.000671387,0.0114136,0.00357056,-0.00704956,-0.0110779,-0.0038147,0.00967407,0.00958252,-0.00341797,-0.0181885,-0.00732422,0.00866699,0.00314331,-0.00872803,-0.00991821,-0.0067749,0.00839233,0.00732422,-0.00408936,-0.0114746,-0.00396729,0.00793457,0.00698853,0.00140381,-0.00799561,-0.00274658,0.00415039,0.0104675,0.00100708,-0.0115967,-0.00262451,-0.00296021,0.00482178,0.00543213,-0.00744629,-0.00582886,-0.00704956,0.00515747,0.00476074,-0.00549316,-0.00302124,-0.00524902,0.00357056,0.00302124,0.00161743,-0.000396729,-0.0050354,-0.00268555,-0.000549316,0.0032959,-0.00161743,0.000213623,-0.00228882,-0.00482178,-0.000671387,-0.00167847,-0.00280762,-0.00323486,0.000335693,0.00296021,0.00665283,0.0017395,-0.0105286,-0.00616455,-0.000274658,0.00280762,-0.00088501,-0.00704956,-0.0103455,-0.00268555,0.00772095,-0.00302124,-0.00991821,-0.00650024,-6.10352e-05,0.00314331,-0.00222778,-0.00369263,-0.00268555,0.00637817,0.00234985,-0.00765991,-0.00146484,0.0038147,0.00128174,-0.00302124,-0.00128174,0.00302124,0.0020752,0.000549316,-0.00582886,-0.0065918,0.00616455,0.00616455,-0.0020752,-0.00692749,-0.00106812,0.00268555,0.00256348,0.00683594,-0.00234985,-0.00683594,-0.00558472,0.00476074,0.00448608,-0.00241089,-0.00866699,-0.00408936,0.00369263,-0.00088501,0.000610352,-0.00106812,-0.00088501,0,0.00280762,-0.000793457,0.00195312,-0.00268555,-0.00558472,0.00201416,6.10352e-05,-0.00457764,-0.00213623,0.0038147,-0.00228882,-0.000793457,0.000335693,-0.00314331,-0.00717163,0.00448608,0.00241089,-0.003479,-0.000946045,-0.00891113,-0.00106812,0.00866699,0.0071106,-0.00799561,-0.00765991,-0.00262451,-0.00201416,0.00933838,0.000549316,-0.0123596,-0.00558472,0.00732422,0.00482178,-0.0032959,-0.00201416,-0.00772095,0.00256348,0.00750732,-0.003479,-0.00558472,-0.00469971,0.0015564,0.00106812,-0.00140381,0.0017395,-0.000610352,-0.0015564,-0.00228882,6.10352e-05,0.00134277,-0.00442505,-0.00195312,-0.00335693,-0.00610352,-0.00296021,0.000274658,0.00515747,-0.00247192,-0.00491333,-0.00637817,-0.00323486,0.00817871,-0.00717163,-0.00683594,-0.000549316,-0.00088501,-0.000457764,-0.00866699,0.00262451,0.00341797,-0.00146484,-0.0071106,-0.00671387,0.00448608,0.00491333,-0.00088501,-0.00665283,-0.00363159,0.0015564,0.0083313,0.00900269,-0.00604248,-0.00985718,-0.00323486,0.00497437,0.00262451,-0.00698853,-0.00189209,0.0012207,0.00189209,-0.000946045,-0.00582886,0.00415039,0.00772095,-0.00637817,-0.00778198,-0.00228882,0.00537109,0.00778198,-0.00128174,-0.00878906,-0.00256348,0.0065918,0.00189209,-0.00476074,-0.0050354,-0.00146484,0.00363159,0.00012207,-0.00918579,-0.00146484,0.00274658,0.00604248,-0.00228882,-0.00872803,0.000946045,0.00604248,0.00201416,-0.0115356,-0.0032959,0.00195312,0.00180054,-0.00469971,-0.0107422,-0.00509644,0.000732422,0.0120239,-0.00228882,-0.0132751,-0.00415039,0.000610352,0.0108032,0.000457764,-0.012085,-0.0085144,0.00463867,0.0128174,-0.00598145,-0.00991821,-0.00335693,-0.00106812,0.00549316,-0.00228882,-0.00396729,0.003479,0.0038147,-0.00515747,-0.00463867,0.0083313,0.00531006,-0.00564575,-0.00515747,0.00302124,0.0071106,0.00363159,-0.00268555,-0.00692749,-0.0032959,0.00732422,-0.00128174,-0.00726318,-0.0050354,-0.00262451,0.00778198,0.00476074,-0.00396729,-0.0105896,-0.00872803,0.00457764,0.00323486,0.00106812,-0.0136108,-0.00985718,0.00537109,0,-0.0050354,-0.0107422,0.0038147,0.00515747,0.00704956,-0.0015564,-0.00872803,0.00234985,0.00582886,-0.000946045,-0.00765991,-0.00726318,-0.00280762,0.00180054,0.00161743,-0.00424194,-0.0067749,-0.00100708,0.00531006,0.00213623,-0.00463867,-0.003479,0.00390625,-0.00314331,-0.00415039,0.00289917,-0.00415039,-0.00637817,-0.00180054,0.000946045,-0.0038147,0.000335693,0.00482178,-6.10352e-05,0.0012207,0.00112915,-0.00195312,-0.00436401,0.000335693,0.0067749,0.0108032,0.0017395,-0.00726318,-0.000793457,0.00671387,0.00280762,-0.00643921,-0.00912476,-0.00195312,0.00469971,-0.00650024,-0.0117493,-0.00274658,0.0113525,0.00665283,-0.0071106,-0.0132141,-0.0012207,0.0107422,0.00241089,-0.00857544,-0.00543213,-0.00228882,-0.000946045,0.0020752,-0.00363159,-0.00698853,0,0.00598145,-0.00369263,-0.00817871,-6.10352e-05,0.00390625,-0.000335693,-0.00900269,-0.00750732,0.00222778,0.0109253,0.00476074,-0.00811768,-0.0142822,0.0015564,0.0122681,0.000732422,-0.00912476,-0.0107422,-0.00463867,0.00778198,0.00390625,-0.0120239,-0.00357056,0.00933838,0.00375366,-0.00424194,0.00180054,0.00692749,0.00598145,0.000213623,-0.00390625,-0.00698853,-0.00112915,0.000396729,-0.00476074,-0.000946045,-0.00778198,-0.000457764,0.00704956,0.00167847,-0.00424194,-0.0126038,0.000457764,0.00592041,-0.00296021,-0.0145569,-0.00784302,0.0104065,0.00262451,-0.0067749,-0.00906372,0.00088501,0.0105286,0.00436401,-0.0105286,-0.0158386,0.00476074,0.0183105,-0.000213623,-0.0103455,-0.0111389,-0.000793457,0.00866699,0.00973511,-0.000213623,-0.00582886,-0.00302124,0.000549316,0.00537109,0.000946045,-0.00582886,-0.00991821,-0.00750732,0.00100708,0.00643921,0.00683594,-0.00335693,-0.0100098,-0.00570679,0.00918579,0.00476074,-0.00369263,-0.00128174,-0.00436401,-0.000610352,0.00491333,0.00341797,-0.00375366,-0.00390625,6.10352e-05,-0.00128174,0.000610352,0.000213623,-0.00201416,-0.00408936,0.00448608,0.000732422,-0.00946045,-0.00671387,0.00476074,0.0146179,-0.00201416,-0.00637817,-0.00698853,-0.00234985,0.00308228,-0.00180054,-0.00582886,-0.0105896,-0.0050354,0.00698853,0.00274658,-0.00112915,-0.00759888,-0.00631714,0.0012207,0.00341797,0.00402832,-0.00912476,-0.000610352,0.0012207,-0.00564575,-0.00161743,0.00424194,0.00363159,-0.00598145,-0.00213623,-0.0032959,-0.00146484,0.0102539,-0.00195312,-0.00952148,0.00247192,0.00463867,0.00180054,-0.000946045,-0.000274658,0.00335693,0.00323486,0.00189209,-0.00778198,-0.000610352,0.00558472,0.00436401,0.00631714,-0.00146484,-0.0124817,0.000274658,0.0124207,-0.000213623,-0.0125427,-0.00765991,0.000213623,0.00857544,0.000732422,-0.0114746,-0.00289917,0.00369263,-0.00375366,-0.00665283,-0.00134277,0.000610352,0.00463867,-0.00256348,-0.0123596,-0.00442505,0.013092,-0.00222778,-0.0153809,-0.00491333,0.000793457,0.00582886,0.00839233,-0.00228882,-0.0136108,0.00234985,0.00247192,0.000274658,0.00582886,-0.00280762,-0.0085144,-0.000671387,0.00738525,-0.00765991,-0.00643921,0.000732422,-0.00692749,-0.00570679,-0.000549316,0.00167847,-0.00140381,-0.00180054,-0.00302124,-0.00463867,0.00531006,0.00308228,-0.00482178,-0.000946045,-0.00369263,0.00106812,0.00463867,0.00247192,-0.00396729,-0.00637817,0.00088501,-0.00167847,0.00537109,0.00280762,-0.00570679,-0.00256348,0.000274658,-0.000274658,-0.00457764,0.000457764,0.00146484,0.00241089,0.00363159,-0.00671387,-0.00778198,0.00558472,-0.00161743,0.00167847,-0.00241089,-0.00891113,-0.00482178,0.0017395,0.00430298,-0.00604248,-0.00112915,-0.00112915,-0.00396729,0.00228882,0.00241089,-0.00778198,0.00213623,0.00396729,-0.00778198,-0.00335693,0.00558472,0.00222778,-0.00314331,-0.0012207,-0.00598145,-0.00357056,0.0071106,6.10352e-05,-0.0085144,0.00234985,0.00134277,-0.012085,-0.00274658,0.0083313,0.00924683,-0.0038147,-0.0113525,-0.0133667,0.00924683,0.016571,-0.00448608,-0.0108032,-0.00537109,0.00390625,0.0106812,-0.00012207,-0.0118713,-0.0106812,0.00189209,0.00732422,0.00112915,-0.00643921,-0.0113525,0.00323486,0.0153809,-0.00692749,-0.0104065,-0.000671387,-0.00363159,0.00289917,-0.00146484,-0.0085144,-0.00280762,0.00274658,-0.00274658,-0.00549316,0.00665283,0.00369263,-0.0101929,-0.00463867,-0.00469971,0.00408936,0.0088501,-0.0136108,-0.0184631,0.0050354,0.0178528,0.00415039,-0.00448608,-0.0114746,-0.00302124,0.0167847,0.00665283,-0.0104675,-0.0126038,0.00128174,0.0104065,0.0107422,0.00491333,-0.0133667,-0.00744629,0.0115967,0.00772095,-0.0083313,-0.0148926,0.000274658,0.00845337,0.00241089,-0.00524902,-0.0050354,-0.00213623,0.00146484,0.0012207,0.00262451,0.00396729,-0.00408936,-0.00985718,-0.00576782,0.00228882,-0.00549316,-0.00839233,-0.00543213,-0.00341797,-0.00100708,-0.00134277,0.00256348,0.0132141,0.00839233,-0.00845337,-0.00924683,0.00531006,0.00866699,-0.00750732,-0.00543213,-0.0050354,-0.00256348,0.00726318,0.00088501,-0.0012207,-0.00698853,-0.00616455,-0.00396729,0.00482178,0.00698853,-0.0088501,-0.0126038,-0.0050354,-0.00134277,0.00643921,0.00738525,-0.00247192,-0.0132141,-0.00811768,0.0102539,0.00549316,0.00335693,-0.00979614,-0.0118713,0.00979614,0.0116882,0.00241089,-0.00302124,0.00247192,0.00515747,0.00866699,-0.00543213,-0.0169678,-0.00262451,0.00891113,0.00765991,-0.00946045,-0.00900269,0.000732422,0.0147705,0.00280762,-0.0146179,-0.00958252,0.00106812,0.00549316,0.00643921,-0.0038147,-0.0127563,-0.0017395,0.0017395,-0.00531006,0.00289917,0.00268555,-0.00671387,0.00436401,0.00341797,-0.00289917,-0.000671387,-0.00106812,-0.000213623,-0.000671387,0.00430298,-0.00558472,-0.00778198,0.00650024,-0.00302124,-0.00482178,0.00268555,-0.0071106,-0.00357056,0.00704956,0.00912476,-0.000946045,-0.00448608,-0.00463867,-0.0032959,0.00616455,-0.00515747,-0.00616455,0.00213623,-0.00012207,-0.00302124,-0.00012207,0.00738525,-0.00268555,-0.00643921,-0.0115967,-0.000213623,0.0101929,0.00189209,-0.0100708,-0.00631714,-0.0032959,-0.0083313,-0.00390625,-0.00012207,-0.00280762,-0.00369263,-0.00369263,-0.00146484,0.00335693,0.00134277,0.000213623,0.00161743,-0.00515747,-0.00891113,-0.00106812,0.0100708,-0.00671387,-0.0181885,-0.00610352,0.0062561,0.00408936,-0.00817871,-0.0062561,0.00491333,0.00167847,0.00543213,0.00289917,-0.00482178,-0.00308228,0.00564575,0.00592041,-0.00515747,-0.00369263,-0.00134277,-0.00296021,0.00509644,-0.0012207,-0.00979614,-0.00314331,0.00222778,0.0071106,0.00128174,-0.00234985,-0.0128174,-0.000732422,0.0194702,0.00665283,-0.00189209,-0.0104065,-0.00213623,0.00415039,0.00363159,-0.00128174,-0.0159607,0.00241089,0.00375366,0.00146484,-0.00289917,-0.0067749,0.00167847,-0.000335693,0.0117493,-0.00302124,-0.0148926,-0.00390625,0.000213623,0.00415039,-0.00967407,-0.0122681,-0.0139465,0.00558472,0.0148315,-0.0104675,-0.0124207,-0.00222778,0.00811768,0.00683594,-0.000274658,-0.00650024,-0.0104065,0.00457764,0.00195312,0.0020752,0.000549316,-0.00692749,-0.00759888,-0.00088501,0.00650024,-0.00759888,-0.00280762,0.000671387,0.00482178,0.00482178,-0.00430298,-0.00939941,0.00222778,0.00598145,-0.00363159,0.00375366,-0.00448608,-0.00671387,-0.00100708,0.0050354,-0.0065918,-0.0085144,0.00717163,-0.00161743,-0.000610352,-0.00341797,-0.0107422,-0.00564575,0.0038147,0.00631714,-0.00469971,-0.00375366,-0.00692749,-0.000213623,0.0100708,-0.00704956,-0.00933838,0.00430298,0.0105896,-0.00247192,-0.00274658,0.00531006,-0.00726318,0.00189209,0.00106812,0.00726318,-0.00146484,-0.019989,-0.00189209,0.0127563,0.0146179,-0.00704956,-0.0101318,-0.000610352,-0.00256348,0.0114136,-0.000335693,-0.0153809,0.000793457,-0.00128174,-0.00140381,0.000335693,-0.00799561,-0.00717163,0.00463867,0.0100708,-0.00482178,-0.00213623,0.00616455,-6.10352e-05,0.00570679,-6.10352e-05,-0.00765991,-0.003479,0.00857544,-0.00363159,-0.0114136,0.00637817,-0.000549316,-0.00180054,-0.00335693,-0.0062561,0.00213623,0.0065918,0.00161743,-0.00738525,-0.0050354,0.00558472,0.00531006,-0.00357056,-0.0118103,-0.0065918,0.00469971,0.00415039,-0.00631714,-0.00967407,-0.00012207,0.00436401,0.00463867,-0.00918579,-0.00396729,-0.0015564,-0.00537109,0.00604248,-0.00195312,-0.00610352,-0.00201416,0.00772095,0.00363159,-0.0134888,0.00335693,0.00872803,0.0038147,-0.00408936,-0.0111389,0.00558472,0.00650024,-0.000274658,-0.012085,-0.00878906,0.00793457,0.00717163,-0.000396729,-0.0118713,-0.000610352,0.0126953,0.00167847,-0.00692749,0.00396729,0.000396729,-0.00375366,0.000946045,-0.00531006,-0.00274658,-0.00482178,0.00228882,-0.003479,-0.00222778,0.0015564,-0.012207,0.0105896,0.00912476,-0.00924683,-0.0115356,0.00463867,0.0148315,-0.00637817,-0.00469971,-0.00302124,-0.000549316,0.0071106,-0.00738525,-0.0102539,-0.00799561,0.0102539,-0.00448608,-0.0191956,0.00228882,-0.00369263,-0.00308228,0.0126953,0.000793457,-0.0194702,0.00213623,0.0232849,0.00845337,-0.0155029,-0.025177,0.00436401,0.0151672,0.0185242,-0.0157166,-0.0263672,0.00765991,0.00784302,0.00778198,0.00228882,-0.000732422,-0.00537109,0.00100708,0.00839233,0.00576782,0.00476074,-0.0107422,-0.0139465,0.00308228,0.0183105,0.00213623,-0.0178528,-0.0145569,-0.00296021,0.0104675,0.00189209,-0.0145569,-0.00604248,0.00314331,0.00442505,0.00228882,-0.00698853,-0.00463867,0.0017395,0.00469971,-0.00341797,-0.0106812,-0.00592041,0.00100708,0.00604248,-0.00323486,-0.0105896,-0.00247192,0.00469971,-0.00128174,-0.00497437,-0.00088501,0.00772095,0.00469971,-0.0105896,-0.00643921,0.0148926,0.00341797,-0.0146179,0.0020752,0.00598145,-0.00375366,-0.00390625,0.000213623,-0.00469971,-0.00180054,0.00396729,-0.0126953,-0.00793457,0.013031,0.000213623,-0.00576782,-0.00482178,-0.00396729,0.0065918,0.0186462,0.0015564,-0.0304565,-0.00531006,0.0137634,0.00296021,-0.00390625,-0.0108643,-0.00750732,0.0015564,0.00637817,0.00289917,-0.00161743,-0.00402832,-0.0083313,-0.00531006,0.00531006,-0.000671387,0.00314331,-0.012085,-0.0174561,0.0133667,0.0085144,-0.0062561,-0.00811768,-0.00448608,0.00476074,0.0109253,0.00140381,-0.0224915,-0.00650024,0.021759,0.00323486,-0.0114746,-0.00222778,-0.00772095,-0.000274658,0.0212708,-0.00363159,-0.0148926,0.0071106,0.0065918,-0.0106812,-0.00558472,0.0131531,0.00308228,-0.00515747,-0.00576782,-0.00256348,0.0141602,0.0113525,-0.0127563,-0.0101929,0.00958252,0.0140991,6.10352e-05,-0.00958252,-0.0128174,-0.00738525,0.0135498,0.000335693,-0.0145569,-0.00793457,0.00817871,0.0182495,-0.00424194,-0.0185852,-0.00509644,0.00857544,0.00784302,-0.00424194,-0.00817871,-0.0138245,0.00128174,0.0124817,-0.00335693,-0.00839233,-0.0105896,-0.00650024,0.0103455,0.000732422,-0.0071106,-0.00878906,0.0159607,0.00442505,-0.00671387,0.00967407,-0.00106812,-0.00335693,0.00509644,-0.0015564,-0.00430298,-0.0038147,-0.00100708,-0.00891113,-0.0038147,0.0116882,-0.016571,-0.00341797,0.0062561,0.00363159,-6.10352e-05,-0.0104065,0.00564575,0.00308228,0.00592041,0.00222778,-0.00778198,0,-0.00891113,-0.00778198,0.000274658,-0.00128174,-0.00531006,-0.00939941,0.00610352,0.000549316,-0.00146484,-0.00195312,-0.00314331,0.0012207,-0.00189209,-0.00396729,0.00436401,0.00991821,-0.0065918,-0.0123596,0.00396729,0.0038147,0.00531006,-0.00738525,-0.00704956,-0.0012207,0.00537109,0.00167847,-0.0133667,0,-0.0015564,0.00665283,0.00598145,0.00610352,0.000671387,-0.0126953,-0.000671387,-0.000732422,0.0071106,-0.00772095,-0.0246277,-0.00222778,0.00543213,0.0103455,-0.000213623,-0.011261,-0.0062561,0.00234985,0.0119324,-0.00308228,-0.00341797,0.00256348,0.00195312,0.0104065,0.00765991,-0.00524902,-0.00772095,0.00799561,-0.00167847,-0.00497437,-0.00543213,-0.00396729,-0.0038147,-0.00442505,0.0083313,-0.00631714,-0.00650024,-0.00363159,0.000732422,0.015564,0.00665283,-0.00979614,-0.0157166,-0.00726318,0.0116882,0.0114136,-0.0141602,-0.0155029,-0.00430298,0.00793457,0.00228882,-0.00692749,-0.00390625,-0.0126953,0.00717163,0.011261,-0.00524902,-0.00289917,0.00335693,0.000335693,-0.00134277,0.0108032,-0.00463867,-0.00637817,0.00408936,0.000732422,0.00180054,0.00482178,0.00222778,-0.0118103,0.011261,0.00878906,-0.0137024,-0.00180054,0.0104675,-0.00289917,-0.00134277,0.00549316,-0.0038147,-0.000732422,0.0020752,-0.0032959,-0.00924683,-0.000946045,-0.00549316,-0.0132141,-0.00234985,-0.000335693,-0.00650024,-0.000946045,-0.00268555,-0.00732422,0.00973511,0.00891113,-0.0131531,-0.017395,-0.00289917,0.00924683,0.0050354,-0.00341797,-0.0158386,-0.00256348,0.0124817,0.00924683,-0.00784302,-0.00189209,0.0108032,-0.000335693,-0.00509644,-0.013031,0.00549316,0.0067749,-0.00442505,-0.00222778,-0.0118713,0.00643921,-0.00106812,0.000732422,-0.00952148,-0.0155029,-0.000335693,0.0017395,0.00991821,0.00100708,-0.00576782,0.0020752,0.00213623,0.00772095,-0.00167847,0.00134277,-0.00610352,-0.00805664,0.0139465,-0.0017395,-0.0067749,-0.00476074,0.00515747,0.00222778,-0.00323486,-0.00274658,-0.00665283,0.00497437,0.00692749,-0.00448608,-0.0108032,0.00302124,0.00375366,0.00314331,0.00463867,-0.0134888,-0.0138855,0.00442505,0.0138245,0.00280762,-0.0123596,-0.0173035,0.0012207,0.0195312,0.0132751,-0.0141602,-0.00979614,0.0135498,-0.00665283,-0.00161743,0.00845337,0.00241089,-0.0116882,-0.0102539,0.0136108,6.10352e-05,-0.000549316,0.00100708,-0.0114746,-0.00476074,0.0100098,0.00146484,-0.0116882,-0.00341797,-0.00128174,-0.0104675,0.00924683,0.0103455,-0.00592041,-0.00222778,-0.00891113,-0.000671387,0.00665283,0.0110779,-0.00637817,-0.0114746,0.00918579,-0.0115967,-0.00256348,0.0109253,-0.00314331,-0.0112,-0.0015564,0.00289917,-0.00671387,-0.00146484,0.0020752,0.000610352,-0.00750732,-0.0146179,-0.00564575,0.0151672,0.00946045,-0.0188599,-0.0114746,0.0143738,0.00900269,-0.0126038,-0.017395,-0.00289917,0.0151062,0.013092,-0.00396729,-0.020874,-0.00717163,0.0228271,0.0119324,-0.00991821,-0.0260925,-0.00582886,0.0190735,0.00817871,-0.00598145,-0.0232849,-0.000335693,0.0249634,0.00323486,-0.00665283,-0.00759888,0.00247192,0.00805664,0.00793457,-0.00778198,-0.00671387,0.00213623,-0.00134277,-0.00323486,-0.00665283,0.00201416,0.00268555,0.00430298,-0.000610352,-0.00643921,0.00106812,0.00341797,-0.00308228,-0.00973511,-0.00134277,0.0107422,0.0017395,-0.00375366,-0.00604248,0.00112915,0.00335693,-0.00128174,-0.00784302,-0.00924683,0.0100708,-0.00543213,-0.011261,-0.00234985,0.0115356,0.00866699,-0.00497437,-0.00643921,-0.0122681,0.000732422,0.0203247,0.00369263,-0.0115967,-0.00891113,-0.00765991,0.00012207,0.0118103,0.00128174,-0.013092,0.0067749,0.00991821,-0.0126953,-0.00180054,0.0032959,-0.0065918,-0.00698853,0.00570679,-0.00717163,-0.00805664,0.00637817,-0.00256348,-0.00241089,0.00497437,0,-0.000457764,0.0017395,-0.00872803,-0.000732422,0.00973511,0.000671387,-0.01651,0.00106812,0.00973511,-0.00335693,-0.00213623,0.000274658,0.00256348,-0.0015564,-0.00924683,0.000732422,0.00543213,-0.00570679,-0.00717163,-0.003479,0.00112915,-0.00241089,0.000396729,0.00698853,-0.00665283,-0.00564575,-0.00314331,0.0012207,0.012207,-0.00772095,-0.00515747,-0.00201416,-0.000396729,0.000732422,0.00274658,0.00952148,-0.00531006,-0.00268555,-0.00289917,-0.00732422,0.00088501,0.00390625,0.00100708,-0.00543213,-0.0131531,-0.00308228,-0.0050354,0.00906372,0.00314331,-0.000274658,-0.000274658,-0.0124817,0.0140381,0.00933838,-0.000457764,-0.00933838,-0.00280762,0.00564575,-0.0154419,0.0017395,0.00704956,0.00302124,-0.00631714,-0.0157166,0.00280762,0.012085,0.00704956,-0.0178528,-0.0123596,0.0100708,0.0125427,-0.00323486,-0.0190735,-0.00274658,0.00497437,0.00100708,-0.00952148,-0.0135498,0.00891113,0.00491333,-0.0151672,-0.0185852,-0.0100708,0.00531006,0.00247192,-0.0111389,-0.00857544,-0.00189209,0.0100708,0.00671387,-0.00189209,-0.00296021,-0.00952148,0.00424194,0.00442505,-0.0115356,-0.00924683,0.00442505,0.0181274,-0.000549316,-0.00967407,0.00415039,0.00408936,0.0143738,-0.000457764,-0.0180664,-0.00396729,0.0110168,0.00201416,-0.0157776,0.00363159,0.00924683,0.0017395,-0.000793457,-0.00811768,0.00167847,0.00570679,0.00134277,-0.0179749,-0.0133667,0.0154419,0.00991821,0.000549316,-0.00296021,-0.0103455,-0.00442505,0.00363159,0.0141602,-0.000274658,-0.00973511,0.00289917,-0.00738525,0.00323486,0.00985718,0.00827026,-0.00918579,-0.0146179,0.00195312,0.000396729,0.00772095,-0.00564575,-0.0187378,-0.00189209,0.011261,0.00289917,-0.00576782,-0.00576782,-0.0015564,0.00765991,0.0088501,0.00476074,0.00692749,0.00979614,0.00952148,0.00296021,0.00457764,0.00665283,-0.00515747,-0.0106812,0.00491333,0.00357056,-0.00631714,-0.00543213,-0.00692749,-0.000274658,0.000671387,0.00509644,-0.003479,-0.0131531,-0.00146484,0.00106812,0.00631714,-0.00314331,-0.0158386,-0.00698853,0.00531006,0.00396729,-0.00958252,-0.0020752,0.00772095,0.00234985,-0.00918579,-0.0101929,-0.0017395,-0.00402832,0.00222778,0.00234985,-0.0119324,-0.00363159,0.00637817,0.00765991,-0.00228882,-0.0085144,-0.00201416,6.10352e-05,0.0015564,-0.00704956,-0.0015564,0.00390625,0.00784302,0.00912476,0.00256348,0.000732422,0.00274658,0.00912476,-0.00234985,-0.0144348,-0.00744629,-0.0012207,-0.00582886,-0.0205383,-0.0131531,0.00671387,0.00280762,-0.00866699,-0.0114746,-0.00241089,0.00222778,-0.00241089,-0.0137024,-0.0157166,-0.000610352,0.00549316,-0.00726318,-0.00726318,0.0071106,0.00759888,0.00497437,0.0120239,0.00335693,-0.00424194,0.00201416,0.00390625,-0.000335693,0.00576782,0.00448608,0.0083313,0.0343628,0.0361633,0.0101929,0.00497437,0.024353,0.0229492,0.00296021,-0.0137024,-0.0180664,-0.0197449,-0.0180664,-0.00967407,-0.0141602,-0.00732422,-0.0106812,-0.0177917,-0.00592041,-0.00570679,-0.0100098,-0.0200806,-0.0218811,-0.0128784,-0.0127563,0.000610352,0.00335693,-0.00396729,-0.00369263,-0.00228882,0.0171814,0.0138245,-0.00213623,-0.00958252,-0.00979614,0.0137024,0.00482178,-0.012146,-0.00543213,0.00415039,0.0119324,0.0083313,0,0.00308228,0.00241089,-0.00234985,-0.0110168,-0.00476074,-0.00631714,-0.0253601,-0.00979614,0.00280762,0.00128174,-0.0103455,-0.0140381,-0.00811768,-0.00341797,0.0153809,0.00390625,-0.00570679,-0.00222778,-0.00549316,0.0085144,0.000732422,-0.00891113,-0.0179138,0.00012207,0.00497437,-0.00946045,0.0115356,0.00692749,-0.00543213,-0.00650024,0.00128174,0.00683594,-0.00564575,-0.000396729,-0.00598145,-0.00799561,0.003479,0.0125427,0.00274658,-0.0110779,-0.00274658,0.00436401,0.00631714,-0.00201416,-0.0083313,-0.0117493,-0.0133667,0.00598145,0.00247192,-0.00402832,0.00750732,0.00582886,0.00891113,0.000274658,-0.00134277,-0.00509644,-0.00363159,0.00201416,0.00436401,0.00924683,0.00100708,0.003479,0.0062561,0.011261,0.00161743,-0.015564,-0.0101929,0.0050354,0.0144958,-0.000610352,-0.0020752,0.0194702,0.0338135,0.0241699,0.000274658,-0.00341797,0.00958252,0.0100708,-0.00268555,-0.0148926,-0.0198669,-0.00979614,-0.00952148,-0.00750732,-0.00683594,-0.0106812,-0.00314331,-0.00531006,-0.00537109,0.0015564,-0.0138855,-0.0250244,-0.0101929,-0.00643921,-0.012146,-0.0114136,-0.00375366,-0.00509644,-0.012146,0.00100708,-0.00692749,-0.0102539,0.0105896,0.0065918,-0.00463867,-0.0148315,0.0020752,0.00564575,0.000549316,0.000274658,-0.0205994,-0.00140381,0.00491333,0.003479,-0.00302124,-0.017395,0.000335693,0.00469971,0.00991821,-0.00857544,-0.025238,-0.0158997,-0.00167847,0.0173035,-0.0038147,-0.0232239,-0.0163879,0.00570679,0.0171814,-0.00323486,-0.0221558,-0.0220947,-0.00302124,0.0118713,-0.00457764,-0.0140381,-0.00140381,0.0129395,0.00683594,0.00280762,0.00491333,0.0169067,0.00759888,-0.00900269,-0.0115967,0.00576782,0.0196533,0.00784302,0.00415039,-0.00564575,0.00524902,0.0134888,0.0100098,0.0113525,-0.00637817,-0.00598145,0.00106812,-0.00012207,-0.00631714,-0.0166321,0.00906372,0.0231628,0,-0.0195923,-0.0012207,0.0159607,-0.000274658,-0.00939941,-0.000671387,0.000396729,0.000549316,0.00784302,0.00140381,-0.00274658,0.0071106,0.0108032,-0.00268555,-0.00537109,0.00448608,0.0065918,0.0115356,0.00799561,-0.00302124,-0.00549316,0.00900269,0.0101929,-0.00228882,-0.00918579,-0.00424194,-0.00189209,-0.0103455,0.000335693,0.0050354,-0.00524902,-0.0167847,-0.00457764,0.0100098,0.00604248,0.000610352,-0.0123596,-0.00375366,0.00106812,-0.00375366,-0.0100708,-0.00146484,0.00610352,-0.00341797,-0.0205383,-0.0132751,-0.00357056,0.000335693,0.00262451,-0.00726318,-0.00570679,0.00167847,0.00357056,0.0175781,0.013092,-0.00012207,-0.00744629,-0.00106812,0.00180054,-0.00189209,0.00134277,-0.00912476,6.10352e-05,0.0015564,-0.000549316,0.00497437,0.0124207,0.00323486,-0.0110168,-0.00369263,-0.0088501,-0.0015564,0.0117493,-0.00549316,-0.0224915,-0.0108643,0.000457764,-0.00549316,-0.00106812,0.0020752,0.00262451,0.000610352,-0.000274658,-0.00195312,0.00784302,0.0127563,-0.00543213,-0.0107422,-0.0032959,0.00765991,0.00891113,0.00811768,-0.0012207,-0.003479,0.000396729,-0.000396729,-0.00616455,-0.00268555,0.00442505,-0.000396729,-0.0032959,-0.00704956,0.00167847,0.0124817,-0.00195312,-0.0139465,-0.0085144,0,0.00448608,0.00610352,0.000457764,-0.00857544,0.00088501,0.0100098,-0.00524902,-0.003479,0.0050354,0.00430298,0.00509644,-0.00234985,-0.0038147,-0.00726318,0.00839233,0.0125427,-0.00637817,-0.0102539,-0.00341797,0.00323486,0.0150452,0.0212708,0.00643921,-0.013092,-0.0187988,-0.0085144,-0.00491333,-0.0157776,-0.0305481,-0.0283813,-0.00784302,-0.00280762,-0.00570679,0.00302124,0.0163879,0.0105896,-0.00161743,0.00509644,0.0132141,0.0137024,0.00222778,-0.0050354,-0.00424194,0.00811768,0.00979614,-0.00106812,-0.00134277,-0.000274658,0.00805664,0.0120239,0.00683594,-0.0111389,-0.0183105,-0.000549316,0.00341797,-0.0145569,-0.012085,-0.00704956,-0.0106812,-0.0106812,-0.00457764,-0.00918579,-0.0147705,-0.0083313,-0.0020752,-0.0105286,-0.0185242,-0.0132141,-0.0015564,-0.00289917,-0.0108643,0.000793457,0.0218811,0.0171204,-0.00128174,-0.00592041,0.00341797,0.00704956,-0.000213623,-0.00537109,-0.00469971,-0.0071106,-0.0129395,-0.00985718,0.00390625,0.0107422,-0.000732422,-0.00765991,-0.0103455,-0.00396729,0.00128174,-0.00991821,-0.0119324,-0.00967407,-0.00564575,-0.0020752,-0.00335693,0.00476074,0.00357056,-0.00314331,0.00140381,0.00979614,0.0126953,-0.00161743,-0.00732422,0.0115967,0.0137024,-6.10352e-05,-0.00201416,0.013092,0.0138855,0.00671387,0.00991821,0.00878906,0.00497437,-0.0017395,-0.00375366,-0.000457764,-0.00631714,-0.00692749,-0.00650024,-0.00268555,-0.000274658,0.00106812,0.003479,-0.00369263,0.00375366,0.00341797,-0.00146484,-0.0038147,-0.00906372,-0.00180054,0.00335693,-0.00134277,-0.0105896,-0.000335693,0.0126953,0.00845337,0.00442505,0.00491333,-0.000732422,-0.00100708,0.00570679,-0.00201416,-0.0100708,-0.00772095,0.00280762,0.00872803,0.0102539,0.00415039,-0.00234985,0.00598145,0.00180054,-0.0114746,-0.00241089,-0.00778198,-0.0067749,-0.012085,-0.013092,-0.000793457,-0.000671387,-0.00363159,-0.0071106,0.00549316,0.00765991,0.00491333,-0.000213623,0.00201416,0.00341797,0.0071106,0.00146484,-0.00195312,0.0102539,0.00442505,-0.00363159,0.00946045,0.0144958,-0.0020752,-0.00637817,-0.00524902,-0.00308228,-0.00543213,0.00369263,-0.00448608,-0.0184021,-0.0147095,-0.00991821,-0.00491333,-0.00549316,-0.0104675,-0.0119324,-0.00778198,0.0071106,0.00912476,-0.0147095,-0.0246887,-0.00643921,0.0114136,0.00543213,-0.0062561,-0.00598145,0.00537109,0.0160522,0.00738525,-0.00228882,-0.00262451,0.00524902,0.00256348,-0.00765991,-0.00598145,0.000213623,0.00631714,0.00357056,-0.00759888,-0.00827026,0.00430298,0.00750732,-0.0106812,-0.0141602,-0.00448608,0.00262451,0.00570679,-0.00112915,-0.00827026,-0.00692749,0.000732422,-0.00476074,-0.00866699,-0.00335693,-0.00457764,-0.00683594,-0.00604248,0.000671387,0.00180054,0.00692749,0.00650024,0.00088501,0.00228882,0.00704956,0.00991821,0.00531006,-0.00857544,-0.00683594,0.00088501,0.0067749,-0.00396729,-0.00827026,0.0062561,0.00650024,-0.00476074,-0.00448608,0.00390625,0.00146484,-0.00262451,0.00106812,0.00195312,-0.00637817,-0.00341797,0.0129395,0.00845337,0.000213623,-0.00274658,-0.000793457,0.00610352,-0.003479,0.000610352,0.0105286,-0.00537109,-0.00866699,-0.00140381,0.00610352,-0.00167847,-0.0202026,-0.0141602,-0.0038147,0.000335693,-0.0138245,-0.0170593,0.000274658,0.00241089,-0.000457764,-0.00195312,0.00289917,0,-0.00726318,-0.0032959,-0.00228882,-0.00262451,-0.00213623,-0.000946045,0.000335693,0.00289917,0.00357056,0.000396729,0.0017395,0.00827026,0.000549316,-0.0065918,-0.000396729,0.00598145,-0.003479,-0.00845337,0.000213623,-0.00482178,0.00195312,0.00302124,-0.00296021,0.00341797,-0.0020752,-0.000732422,-0.00268555,-0.0038147,-0.0088501,-0.0124207,-0.00274658,0.000671387,0.00140381,-0.00088501,0.00100708,-0.0020752,-0.00106812,0.000396729,-0.00415039,-0.00476074,-0.00732422,-0.0050354,0.00698853,0.00335693,-0.00704956,-0.0038147,-0.00012207,0.00845337,0.00424194,-0.00576782,-0.011261,-0.00671387,0.0113525,0.0100708,0.00717163,0.00335693,0.00012207,0.0118103,0.0132751,0.0105896,0.00280762,0.00665283,0.0181274,0.0175781,0.00839233,0.00140381,-0.00088501,-0.00497437,-0.00750732,-0.00872803,-0.00357056,-0.00549316,-0.0249023,-0.0256348,-0.0175781,-0.00375366,0.0088501,-0.00772095,-0.0256348,-0.00732422,0.0146179,0.00582886,-0.0143738,-0.0160522,-0.0020752,0.00744629,0.00784302,-0.003479,-0.00302124,0.0115967,0.0119324,0.0102539,0.003479,-0.00692749,-0.00946045,0.000671387,0.0103455,0.00241089,0.000946045,-0.00234985,-0.00302124,0.00457764,0.0148926,0.00469971,-0.0157166,-0.0138855,-0.00924683,-0.00140381,-0.00912476,-0.0202637,-0.015564,-0.00912476,-0.00811768,-0.00637817,-0.00234985,-0.00558472,-0.0148926,-0.0162354,-0.00839233,-0.00482178,-0.00180054,0.00228882,-0.00598145,-0.0109253,-0.00375366,0.00616455,0.0118713,0.00549316,-0.00363159,0.00604248,0.00991821,0.00167847,-0.00906372,-0.00323486,0.0139465,0.0106812,0.00390625,-0.00262451,-0.000793457,0.00616455,0.00402832,-0.00256348,-0.0171814,-0.0157776,-0.00476074,0.00134277,0.00732422,-0.0050354,-0.00845337,0.00582886,0.00906372,-0.0012207,-0.0107422,-0.00256348,0.00576782,0.0017395,-0.00396729,-0.00112915,0.0062561,0.00442505,-0.000671387,-0.000213623,0.00228882,0.00161743,0.00448608,0.00598145,-0.00112915,-0.00146484,0.0127563,0.0139465,0.0050354,0.00201416,0.00537109,0.0112,0.00457764,0.000396729,-0.00308228,0.000946045,0.00817871,-0.00604248,-0.0116882,-0.00134277,0.00228882,-0.00112915,-0.0134888,-0.0201416,-0.0110168,0.000732422,-0.00314331,-0.0124817,-0.0132141,0.00448608,0.013031,0.0100098,0.00140381,-0.00274658,0.00222778,0.00637817,0.0114746,0.00146484,-0.00341797,-0.00201416,0.0065918,0.00845337,0.0012207,-0.00140381,0.000671387,0.00296021,-0.00436401,-0.0134888,-0.0150452,-0.0103455,-0.00665283,-0.00323486,-0.00704956,-0.00570679,-0.00442505,-0.0015564,0.00738525,0.00146484,-0.00805664,-0.011261,0,0.0100098,0.0115967,0.00778198,0.00671387,0.00811768,0.00784302,0.00643921,-0.0071106,-0.0101929,-0.00222778,-0.00726318,-0.013031,-0.00524902,0.00827026,0.00247192,-0.00750732,-0.00631714,0.00543213,0.0101929,-0.00704956,-0.0171814,-0.00958252,0.00793457,0.00570679,-0.00698853,-0.00692749,0.00012207,0.00308228,0.00906372,0.00509644,0.00314331,-0.000732422,0.00482178,0.020874,0.0162354,-0.0062561,-0.0150452,0.0012207,0.0177307,0.0119324,-0.0118713,-0.0236206,-0.0129395,0.00357056,0.00778198,-0.00476074,-0.016449,-0.0159607,-0.00289917,0.000671387,-0.0015564,-0.00973511,-0.0194702,-0.00637817,0.00146484,-0.00570679,-0.0118103,-0.00744629,0.000396729,0.00262451,0.000610352,-0.00390625,-0.00726318,-0.000213623,-0.00106812,-0.00906372,-0.0114746,-0.00765991,0.0015564,0.00469971,0.00531006,0.00390625,0.00939941,0.0100098,0.00704956,0.0138245,0.0185852,0.0138245,0.00128174,-0.00448608,-0.00396729,0.00369263,0.0017395,-0.0157166,-0.0246887,-0.0167236,-0.00643921,-0.00436401,-0.0138855,-0.0220947,-0.0142822,-0.00610352,-0.00280762,-0.00784302,-0.0117493,-0.0067749,0.00335693,0.00933838,0.0015564,-0.00665283,-0.00134277,0.00924683,0.00610352,0.00436401,0.00463867,0.0142212,0.0140381,0.0100708,0.0125427,0.0119324,0.00564575,0.00012207,0.00442505,0.00430298,-0.00430298,-0.00650024,-0.000396729,-0.00213623,-0.00692749,-0.000335693,-0.00222778,-0.00891113,-0.00631714,-0.00476074,-0.00564575,-0.00582886,-0.013031,-0.0114136,-0.0015564,0.00482178,-0.00408936,-0.011261,-0.00463867,-0.00134277,0.00213623,0.00402832,-0.00180054,-0.00363159,0.00698853,0.0132751,0.0115356,0.00357056,0.00268555,0.00509644,0.00939941,0.00866699,-0.00357056,-0.00906372,-0.00390625,0.00369263,0.00537109,0.00088501,-0.00598145,-0.00323486,0.00274658,0.0062561,0.00482178,-0.00558472,-0.0114746,-0.000549316,0.00811768,0.00314331,-0.00262451,-0.00469971,0.000732422,0.00692749,0.00509644,0.00189209,-0.0015564,0.000457764,0.00128174,0.0050354,0.00012207,-0.00128174,0.00469971,0.00308228,0.00390625,0.00189209,0.000671387,-0.00531006,-0.00750732,-0.00222778,-0.000335693,-0.00463867,-0.00491333,-0.00537109,-0.00598145,-0.00738525,-0.00704956,0.00134277,-0.0020752,-0.00979614,-0.0116882,-0.00280762,0.00604248,0.00558472,0.0015564,-0.003479,-0.00134277,0.00289917,0.00683594,0.00262451,-0.00408936,-0.0015564,0.00128174,0.00375366,0.00335693,0.00274658,6.10352e-05,-0.00509644,-0.00213623,0.00112915,-0.00469971,-0.0143738,-0.0135498,-0.00765991,-0.00924683,-0.0101929,-0.0102539,-0.0151062,-0.0168457,-0.0144958,-0.00778198,-0.00570679,-0.0083313,-0.00845337,-0.000732422,0.00415039,0.00213623,-0.00323486,-0.000732422,0.00402832,0.00195312,-0.000335693,-0.000274658,0.00671387,0.00457764,-0.0020752,0.00112915,0.00598145,0.00234985,0.00088501,0.00308228,-0.00012207,0.00268555,0.00415039,0.000946045,0.000274658,0.00012207,0.00302124,6.10352e-05,-0.003479,-0.00363159,-0.00469971,0.00222778,-0.000610352,-0.00463867,-0.00335693,-0.00491333,-0.00857544,-0.0038147,-0.00100708,-0.00469971,-0.00878906,-0.00558472,-0.00515747,-0.00531006,0.000274658,0.000335693,-0.00195312,-0.00241089,-0.000549316,0.00576782,0.0115967,0.00436401,0.00408936,0.0085144,0.00558472,0.00341797,6.10352e-05,0.00241089,-0.000946045,-0.003479,0.000213623,-0.00100708,-0.00241089,-0.00180054,0.00357056,0.00448608,0.00268555,-0.000793457,-0.00256348,0.00442505,0.00576782,0.00228882,-0.00457764,-0.0062561,-0.003479,-0.00274658,-0.00375366,-0.00531006,-0.00857544,-0.0038147,0.0015564,0.0020752,0.00256348,-0.0032959,-0.00402832,0.00576782,0.00973511,0.00671387,0.00274658,0.000946045,-0.00100708,0.00323486,0.00213623,0.00088501,-0.000610352,-0.00314331,-0.00180054,-0.00296021,-0.000396729,0.00213623,-0.00308228,-0.00323486,0.000946045,0.00088501,-0.00543213,-0.00323486,0.00128174,0.00100708,-0.00390625,-0.0065918,-0.003479,-0.000610352,-0.00375366,-0.00631714,-0.00112915,0.00112915,-0.00201416,-0.0032959,-0.00247192,-0.00213623,-0.00482178,-0.0038147,-0.00704956,-0.00985718,-0.00408936,-0.00335693,-0.00878906,-0.0117493,-0.00839233,-0.00671387,-0.0114746,-0.0116882,-0.0118103,-0.015564,-0.0118103,-0.00811768,-0.00582886,-0.00692749,-0.0100098,-0.00738525,-0.000457764,0.00222778,-0.00543213,-0.00576782,0.000274658,0.00469971,0.00228882,0.00201416,0.00234985,-0.000732422,0.00100708,0.00973511,0.00616455,0.00268555,0.00430298,0.00134277,0.00308228,0.00698853,0.00335693,-0.000671387,-0.00308228,-0.00112915,0.00430298,0.00811768,0.00537109,0.00643921,0.0083313,0.0108032,0.011261,0.00827026,0.0103455,0.0152893,0.0174561,0.0153809,0.0114136,0.0133667,0.0127563,0.0114746,0.0126953,0.0114136,0.00759888,0.00341797,0.00357056,0.00778198,0.00631714,0.00012207,-0.000457764,0.00436401,0.00637817,0.00335693,-0.00314331,-0.0088501,-0.00772095,-0.00598145,-0.00872803,-0.0115356,-0.0102539,-0.00692749,-0.00698853,-0.0085144,-0.00726318,-0.0105896,-0.0114746,-0.0149536,-0.0178528,-0.0204773,-0.019928,-0.0187378,-0.020813,-0.0221558,-0.0206604,-0.0218201,-0.0212097,-0.0193176,-0.0245667,-0.0299377,-0.0288696,-0.0248413,-0.0267639,-0.0292053,-0.0323486,-0.0283813,-0.0265198,-0.0314636,-0.0343628,-0.0344849,-0.0316772,-0.0316162,-0.028595,-0.0231628,-0.0220032,-0.0229492,-0.0148315,-0.00717163,-0.00241089,0.00363159,0.00515747,0.0111389,0.01651,0.0212097,0.02771,0.033905,0.0393982,0.0455627,0.0493164,0.0564575,0.0655823,0.0648193,0.0609436,0.0621338,0.0679932,0.0704651,0.0672607,0.0640259,0.0621338,0.0587769,0.0541077,0.0524902,0.0495911,0.0404663,0.0310059,0.0282593,0.0273132,0.0231018,0.0108643,0.00112915,-0.00234985,-0.00799561,-0.0132141,-0.020813,-0.0223389,-0.0196533,-0.021759,-0.0203247,-0.0228882,-0.0234985,-0.0202637,-0.017395,-0.0197449,-0.0241089,-0.020874,-0.0176392,-0.0200806,-0.0195923,-0.0190735,-0.0224915,-0.0269775,-0.0312195,-0.0376587,-0.0436096,-0.0499878,-0.0599365,-0.0657654,-0.073761,-0.0835571,-0.0855103,-0.0875854,-0.0956421,-0.0971069,-0.0922241,-0.0912781,-0.090332,-0.0855713,-0.0808716,-0.0794678,-0.0744934,-0.0623474,-0.049469,-0.0410767,-0.0359802,-0.0224304,-0.00463867,0.0112,0.0210876,0.0301208,0.045105,0.0641479,0.0791931,0.0918884,0.108459,0.121399,0.131409,0.141876,0.150391,0.14859,0.144897,0.144562,0.141266,0.127045,0.108398,0.0926819,0.0807495,0.066925,0.0491943,0.0288696,0.0158997,0.0102539,0.00274658,-0.00570679,-0.00958252,-0.0146179,-0.0187988,-0.0193176,-0.0194702,-0.020874,-0.0224915,-0.024292,-0.0238953,-0.0171204,-0.0101318,-0.000946045,0.00726318,0.0114746,0.0194702,0.0271912,0.0292053,0.0263062,0.027771,0.0289917,0.0244446,0.0128174,0.00213623,-0.00857544,-0.0241089,-0.0393372,-0.0603943,-0.0853577,-0.105103,-0.121338,-0.129395,-0.138123,-0.147186,-0.154022,-0.15625,-0.148193,-0.137512,-0.131958,-0.131134,-0.135895,-0.13208,-0.119659,-0.103638,-0.0920715,-0.0844421,-0.074646,-0.0556946,-0.0305481,-0.00289917,0.0167847,0.0357666,0.0568542,0.0808716,0.105713,0.130859,0.152618,0.166321,0.1745,0.182739,0.186981,0.188385,0.182343,0.167908,0.14563,0.124908,0.103546,0.0845642,0.0673218,0.0476379,0.0248413,0.00323486,-0.0105896,-0.0177307,-0.0255737,-0.036499,-0.046051,-0.0504761,-0.0489807,-0.0431519,-0.0371094,-0.0387878,-0.037323,-0.025177,-0.00799561,0.0065918,0.0149536,0.0248413,0.0400696,0.0588684,0.0740967,0.0784607,0.081604,0.0855103,0.0833435,0.0757141,0.0653076,0.0527649,0.0303955,0.00314331,-0.0267639,-0.0570374,-0.0837708,-0.105499,-0.126648,-0.149872,-0.166565,-0.17691,-0.181488,-0.177368,-0.176178,-0.174896,-0.169861,-0.166718,-0.162628,-0.147247,-0.13028,-0.12323,-0.123291,-0.115356,-0.092804,-0.0634155,-0.0377197,-0.0182495,0.00430298,0.0328064,0.0678406,0.0969238,0.124756,0.147858,0.164307,0.180664,0.195831,0.204285,0.198914,0.187042,0.173096,0.158783,0.140076,0.116638,0.0915527,0.0707397,0.0496521,0.0278625,0.0104065,-0.00289917,-0.0168457,-0.0323486,-0.046051,-0.0559692,-0.0592651,-0.0630188,-0.0666504,-0.0686646,-0.0599365,-0.0455627,-0.0369873,-0.0300598,-0.0191956,-0.000274658,0.0224304,0.0420227,0.0578613,0.0700073,0.0837708,0.100342,0.11496,0.118469,0.111755,0.102081,0.092804,0.0747681,0.0438232,0.00704956,-0.0262451,-0.0565186,-0.081665,-0.108398,-0.138458,-0.162689,-0.17337,-0.175568,-0.176697,-0.177368,-0.18161,-0.184845,-0.181885,-0.170593,-0.155853,-0.148193,-0.148132,-0.144684,-0.129791,-0.10611,-0.0832214,-0.0640869,-0.0461731,-0.020874,0.0162354,0.0544434,0.0884705,0.119141,0.14679,0.17041,0.194153,0.214355,0.224487,0.221802,0.212219,0.200592,0.183563,0.161407,0.133972,0.106445,0.0758972,0.0453796,0.0212097,0.00222778,-0.0178528,-0.0374451,-0.0533447,-0.0669861,-0.0744324,-0.0773926,-0.080658,-0.085907,-0.0838318,-0.0736389,-0.0646973,-0.057312,-0.0481873,-0.0309448,-0.0106812,0.00765991,0.0220032,0.0390015,0.057251,0.0762329,0.0914001,0.105164,0.115295,0.119476,0.114227,0.104706,0.0874634,0.060791,0.0350342,0.00683594,-0.0233459,-0.0588684,-0.0928955,-0.120605,-0.143494,-0.158936,-0.170746,-0.178314,-0.185181,-0.192078,-0.194214,-0.184509,-0.170746,-0.162476,-0.159729,-0.153351,-0.139679,-0.118256,-0.0953064,-0.0768433,-0.0603333,-0.0383911,-0.0105896,0.024292,0.0603943,0.0914001,0.119202,0.146301,0.177704,0.20639,0.229126,0.240753,0.240936,0.233704,0.224243,0.209808,0.188263,0.159393,0.124847,0.0895996,0.0561218,0.028656,0.00396729,-0.0276489,-0.058136,-0.0809326,-0.0913391,-0.0985107,-0.106506,-0.110077,-0.109802,-0.105103,-0.0940247,-0.0784607,-0.0626221,-0.048645,-0.0350342,-0.0185242,0.00234985,0.0255737,0.0453796,0.0598755,0.0735474,0.0890503,0.0987854,0.102966,0.103973,0.101807,0.090332,0.0730896,0.0539551,0.0328064,0.00866699,-0.0191956,-0.0520935,-0.0875854,-0.114899,-0.133545,-0.147919,-0.164825,-0.183411,-0.199921,-0.209595,-0.205841,-0.193085,-0.18457,-0.184082,-0.181274,-0.162811,-0.131805,-0.101135,-0.0794678,-0.0618896,-0.0384521,-0.00515747,0.0318909,0.0673828,0.100006,0.126587,0.152893,0.181824,0.210602,0.233551,0.244507,0.246246,0.243164,0.239655,0.22934,0.210602,0.18576,0.155243,0.122742,0.0887146,0.0559082,0.0254211,-0.0100098,-0.0445557,-0.0720825,-0.0970459,-0.114563,-0.128113,-0.135986,-0.13623,-0.131409,-0.124573,-0.112274,-0.0922852,-0.0700073,-0.0500793,-0.0301208,-0.00878906,0.0142822,0.0387878,0.0589905,0.0783081,0.0906067,0.0977173,0.101624,0.103088,0.0985107,0.086853,0.0663757,0.0454407,0.0256348,0.00415039,-0.0216064,-0.0487366,-0.0730896,-0.0967102,-0.118042,-0.134705,-0.149994,-0.170197,-0.186768,-0.195709,-0.196777,-0.195648,-0.194305,-0.193085,-0.186981,-0.172485,-0.15155,-0.127991,-0.103149,-0.0787964,-0.0510864,-0.0170593,0.0210876,0.0600586,0.0969849,0.130615,0.161346,0.192413,0.221954,0.242676,0.2565,0.261078,0.261688,0.255493,0.242615,0.225037,0.203766,0.175629,0.142761,0.107666,0.0725403,0.0401917,0.00570679,-0.0261841,-0.0574646,-0.0856934,-0.108337,-0.123352,-0.131195,-0.13443,-0.136322,-0.137787,-0.129517,-0.112823,-0.0941467,-0.0752258,-0.0531616,-0.0297852,-0.00750732,0.0149536,0.040741,0.0632324,0.0789185,0.0883789,0.0963745,0.0986023,0.0958252,0.0874634,0.0704041,0.049469,0.028595,0.00564575,-0.0189209,-0.0471191,-0.0717468,-0.094696,-0.114563,-0.134155,-0.150665,-0.165833,-0.179932,-0.189453,-0.192474,-0.190887,-0.190399,-0.189453,-0.181885,-0.167053,-0.146973,-0.128601,-0.111603,-0.0875244,-0.0553589,-0.0200806,0.0151672,0.0516663,0.0877075,0.121613,0.155579,0.192017,0.224487,0.245758,0.255768,0.262207,0.268738,0.269257,0.260681,0.240326,0.214569,0.18576,0.154694,0.121338,0.0828247,0.0440979,0.00515747,-0.0325623,-0.0654907,-0.0925598,-0.115234,-0.131195,-0.142334,-0.148315,-0.147919,-0.14035,-0.125763,-0.108856,-0.0926819,-0.0740356,-0.0528259,-0.0275269,-0.000213623,0.0228882,0.0411987,0.0571899,0.0726929,0.0845032,0.0916138,0.0906677,0.085022,0.0744324,0.0603333,0.0437012,0.0256958,0.00390625,-0.0184631,-0.0457764,-0.0683899,-0.0877075,-0.107574,-0.127106,-0.145294,-0.160858,-0.1716,-0.178986,-0.183167,-0.186981,-0.187317,-0.183228,-0.173157,-0.160278,-0.145782,-0.128174,-0.105316,-0.0775146,-0.0499268,-0.0192566,0.0184631,0.0556335,0.0917969,0.126099,0.161133,0.190063,0.217194,0.240204,0.253693,0.258789,0.25946,0.256165,0.246429,0.225647,0.19986,0.168671,0.135315,0.100525,0.0636292,0.0253601,-0.0133667,-0.0492554,-0.0779114,-0.102692,-0.124298,-0.139587,-0.147369,-0.151001,-0.14798,-0.139526,-0.126312,-0.106445,-0.0838928,-0.0634155,-0.0391846,-0.0119324,0.016449,0.040741,0.0606689,0.0760498,0.0899353,0.103821,0.111267,0.109985,0.102631,0.0872498,0.0716858,0.0534363,0.0314026,0.00497437,-0.0232849,-0.0518799,-0.0785828,-0.100525,-0.12262,-0.145569,-0.165771,-0.179138,-0.185974,-0.189667,-0.191284,-0.188782,-0.181,-0.166901,-0.149139,-0.129059,-0.10733,-0.0854492,-0.061554,-0.0350952,-0.00772095,0.019989,0.0502625,0.0794678,0.106903,0.132812,0.158325,0.179657,0.197052,0.207458,0.213501,0.212616,0.209381,0.199402,0.184357,0.165649,0.141357,0.112091,0.081665,0.0522156,0.0200806,-0.0153809,-0.0493164,-0.0773926,-0.101868,-0.119202,-0.133636,-0.142151,-0.142334,-0.134491,-0.123962,-0.110596,-0.0909424,-0.0687256,-0.0420227,-0.015625,0.0112,0.0353088,0.0602722,0.0849609,0.10556,0.119995,0.12677,0.128448,0.128601,0.123016,0.107178,0.0869141,0.0641479,0.0414124,0.0158386,-0.0131531,-0.0422668,-0.0706177,-0.0915527,-0.111145,-0.130005,-0.148132,-0.159729,-0.167511,-0.168579,-0.167572,-0.163208,-0.15509,-0.142273,-0.123291,-0.102753,-0.0827637,-0.0619507,-0.0385132,-0.0153809,0.0085144,0.0285339,0.0480652,0.065918,0.0839539,0.0969849,0.108856,0.117645,0.122894,0.124573,0.124084,0.12149,0.116791,0.106171,0.0944824,0.0809326,0.0647583,0.0473022,0.028595,0.00933838,-0.0105286,-0.027771,-0.0424194,-0.0546875,-0.0671692,-0.0762939,-0.0786438,-0.0749817,-0.0704651,-0.0644226,-0.0553589,-0.041748,-0.025238,-0.00772095,0.00878906,0.0246277,0.0423584,0.057312,0.0682678,0.0771179,0.0838318,0.0885925,0.089325,0.0869141,0.0808716,0.0724182,0.0627441,0.0472412,0.0323486,0.0145569,-0.0038147,-0.0209961,-0.0367737,-0.0535583,-0.0681152,-0.0787354,-0.0877991,-0.094635,-0.0986633,-0.0999451,-0.0984497,-0.0962524,-0.0916748,-0.082489,-0.0711975,-0.0601196,-0.0490723,-0.038269,-0.0260315,-0.015625,-0.0038147,0.00610352,0.0150452,0.0233459,0.0285339,0.0333557,0.0369263,0.0385132,0.0397949,0.0403442,0.0400085,0.0367737,0.0326233,0.0289917,0.0273743,0.0238342,0.0187378,0.0133667,0.00946045,0.00817871,0.00515747,0.00396729,0.00302124,0.00128174,0.00247192,0.00302124,0.00402832,0.00558472,0.0071106,0.00793457,0.0100708,0.0111389,0.0136108,0.0151062,0.0140381,0.0129395,0.0139465,0.0136108,0.0133667,0.0115356,0.0107422,0.00772095,0.0062561,0.00430298,0.00189209,0.00134277,-0.000549316,-0.00262451,-0.00363159,-0.00616455,-0.00891113,-0.00906372,-0.0109253,-0.0152283,-0.0191956,-0.0198669,-0.0209351,-0.0224304,-0.0245667,-0.0265198,-0.0279846,-0.0298767,-0.0312805,-0.0313416,-0.03302,-0.0340881,-0.0365906,-0.0359802,-0.0357666,-0.0357056,-0.0360413,-0.0359192,-0.0351562,-0.0325623,-0.0275879,-0.0247803,-0.020752,-0.0181274,-0.011261,-0.00430298,0.00308228,0.00958252,0.0162964,0.0231628,0.0289917,0.0355835,0.0415344,0.046051,0.0501404,0.0523376,0.0531006,0.053009,0.0516663,0.0493164,0.0458984,0.0414734,0.0357666,0.0294495,0.0212708,0.0129395,0.00839233,0.00274658,-0.00424194,-0.0115967,-0.016571,-0.0191956,-0.0194702,-0.0205994,-0.0240173,-0.0226746,-0.0200806,-0.0178528,-0.0138855,-0.0104675,-0.00549316,-0.00296021,0.0017395,0.00537109,0.0104675,0.0126953,0.0140381,0.0128784,0.013092,0.0101929,0.00732422,0.00323486,-0.00195312,-0.00759888,-0.0142212,-0.0202026,-0.0250854,-0.029541,-0.0354919,-0.0400696,-0.0437622,-0.046051,-0.0467834,-0.0461731,-0.0461121,-0.0452271,-0.0431519,-0.0412903,-0.0377808,-0.0318909,-0.0279236,-0.0226135,-0.0160522,-0.011261,-0.00402832,0.00314331,0.0102539,0.0161133,0.0214233,0.0255737,0.0313416,0.0369873,0.0406799,0.0432739,0.0456238,0.0459595,0.0479126,0.0480652,0.0477905,0.0447083,0.0409546,0.0367126,0.0342407,0.0310059,0.0263062,0.0212097,0.0146179,0.00817871,0.003479,-0.00180054,-0.0062561,-0.00912476,-0.0131531,-0.0149536,-0.015625,-0.0162354,-0.0163879,-0.0148926,-0.0135498,-0.0134277,-0.0111389,-0.00891113,-0.00558472,-0.00012207,0.00390625,0.00424194,0.00515747,0.0065918,0.00805664,0.00866699,0.00671387,0.0050354,-6.10352e-05,-0.00180054,-0.00543213,-0.0101318,-0.015564,-0.0226135,-0.0282593,-0.0310059,-0.0349731,-0.0400696,-0.0439453,-0.0456238,-0.0447693,-0.0446167,-0.0436096,-0.0427551,-0.0402832,-0.0391846,-0.0344849,-0.028656,-0.0227661,-0.0175171,-0.0129395,-0.00637817,0.00289917,0.0110779,0.0189819,0.0254211,0.0314636,0.0378418,0.0447083,0.0506592,0.0549011,0.0569763,0.0579224,0.0578003,0.0561218,0.0541077,0.0498047,0.0457153,0.0396118,0.0303955,0.0235596,0.0181885,0.0138855,0.00524902,-0.00222778,-0.00906372,-0.013092,-0.0151672,-0.0162964,-0.0175781,-0.0224304,-0.0270996,-0.0279846,-0.0189209,-0.0085144,-0.00799561,-0.015564,-0.0127563,-0.000671387,0.00933838,0.0143738,0.0126953,0.00857544,0.00939941,0.0149536,0.0194092,0.0163879,0.00991821,-0.00140381,-0.00610352,-0.0101318,-0.0162964,-0.0249023,-0.0361633,-0.0473938,-0.0545654,-0.057312,-0.061676,-0.0634155,-0.0630798,-0.0606079,-0.0617371,-0.0587769,-0.0508728,-0.0397949,-0.0309448,-0.0263672,-0.0234375,-0.0171204,-0.00939941,-0.0017395,0.00671387,0.0129395,0.0146179,0.0187988,0.0270386,0.0367126,0.0475769,0.0555725,0.057312,0.0577087,0.0636902,0.072876,0.0785217,0.0767822,0.0710144,0.0644836,0.0578613,0.0522766,0.0443726,0.0347595,0.0241089,0.0141602,0.00750732,0.00195312,-0.00213623,-0.00180054,-0.00396729,-0.00683594,-0.00772095,-0.00726318,-0.00759888,-0.00704956,-0.00692749,-0.00592041,-0.0088501,-0.0144348,-0.0175171,-0.0182495,-0.0171204,-0.0173035,-0.0214844,-0.0222168,-0.0198059,-0.0140381,-0.00878906,-0.00531006,-0.00564575,-0.0050354,-0.00827026,-0.0157776,-0.0218811,-0.0296021,-0.0392761,-0.0559082,-0.0752869,-0.0917358,-0.103882,-0.110321,-0.115021,-0.11972,-0.121063,-0.116974,-0.105499,-0.0899353,-0.0725403,-0.0578003,-0.0427551,-0.0284424,-0.0135498,0.0020752,0.0161133,0.02771,0.0350952,0.0410156,0.0465698,0.0533447,0.0617981,0.0692749,0.078186,0.0875854,0.0940857,0.102203,0.113617,0.124084,0.128845,0.126984,0.120209,0.113434,0.105499,0.0955811,0.0789795,0.0594482,0.0401306,0.0202026,0.00476074,-0.00799561,-0.0163879,-0.0235596,-0.0285339,-0.0317383,-0.0301208,-0.0226746,-0.0138855,-0.00509644,-0.00106812,0.00222778,0.00778198,0.0146179,0.0194702,0.0214844,0.0200806,0.0192566,0.0177917,0.0151062,0.00991821,0.00213623,-0.00637817,-0.0191345,-0.0367126,-0.0545654,-0.0711365,-0.0913391,-0.11618,-0.140137,-0.157379,-0.166229,-0.168671,-0.170135,-0.169128,-0.159058,-0.142822,-0.126648,-0.112671,-0.0977783,-0.0812073,-0.0619507,-0.046051,-0.0332947,-0.0231628,-0.0119324,0.000335693,0.0106812,0.0192566,0.0302124,0.0447693,0.0606079,0.077301,0.0932312,0.110077,0.128845,0.145966,0.157532,0.162872,0.160858,0.154755,0.145782,0.133972,0.118256,0.0977783,0.0757751,0.0559692,0.0403442,0.0287781,0.020813,0.0161743,0.0150452,0.0141602,0.0188599,0.024292,0.0291138,0.0326843,0.0351562,0.0348206,0.0310669,0.0291138,0.0272522,0.024292,0.0157776,0.00952148,0.00436401,0.00375366,0.00469971,0.00262451,-0.00180054,-0.00296021,-0.0050354,-0.00958252,-0.0185852,-0.0343018,-0.0540161,-0.0777893,-0.100464,-0.12088,-0.138794,-0.156097,-0.171692,-0.181061,-0.181549,-0.175781,-0.164642,-0.152557,-0.14035,-0.126923,-0.109863,-0.0892639,-0.0706177,-0.0570374,-0.0454407,-0.0371704,-0.028717,-0.020813,-0.013092,-0.00161743,0.0103455,0.0223389,0.0354919,0.052948,0.0744324,0.0974426,0.11618,0.131134,0.144165,0.155914,0.165222,0.16806,0.165649,0.156036,0.143829,0.130188,0.113098,0.0948181,0.0756226,0.0583801,0.0401306,0.0232239,0.0103455,0.00448608,0.00247192,-0.000671387,-0.00497437,-0.0050354,0.0015564,0.00732422,0.0110168,0.013031,0.0140381,0.0152283,0.0181885,0.0202637,0.0190735,0.0175781,0.0162964,0.0155029,0.0105896,0.00335693,-0.00448608,-0.0143738,-0.0318909,-0.0518188,-0.0696106,-0.0795898,-0.0881348,-0.0990601,-0.111938,-0.123077,-0.126984,-0.124023,-0.120392,-0.121277,-0.127716,-0.129791,-0.125305,-0.117584,-0.111328,-0.108246,-0.103882,-0.0966492,-0.0885925,-0.0801392,-0.0661621,-0.0478516,-0.0265808,-0.00967407,0.00973511,0.0324707,0.060791,0.0887146,0.111938,0.12851,0.140015,0.151276,0.163208,0.171814,0.169128,0.161957,0.153168,0.143768,0.130066,0.113678,0.0991821,0.0829468,0.0632935,0.0402832,0.0228271,0.0123596,0.00195312,-0.0117493,-0.0241699,-0.0323486,-0.0340271,-0.0308838,-0.0282593,-0.0270996,-0.0247803,-0.0185242,-0.0110168,-0.00448608,0.00280762,0.0118713,0.0212708,0.0264282,0.024231,0.0214233,0.020813,0.0148926,-0.00180054,-0.0219421,-0.0386658,-0.0483093,-0.0576477,-0.0705261,-0.0838928,-0.0921326,-0.0948181,-0.094696,-0.0973816,-0.100281,-0.106842,-0.108002,-0.107513,-0.109131,-0.111816,-0.112152,-0.111328,-0.112274,-0.11261,-0.107513,-0.0956421,-0.0804138,-0.0634155,-0.0465698,-0.0235596,0.0067749,0.0392761,0.0714111,0.0991821,0.120483,0.141602,0.160461,0.176361,0.183014,0.181335,0.177521,0.16745,0.155426,0.143097,0.125702,0.107056,0.0855103,0.0614624,0.0401917,0.0240173,0.00967407,-0.00604248,-0.0202637,-0.0335693,-0.0405273,-0.0418701,-0.0410156,-0.0401306,-0.0395203,-0.0376587,-0.0328064,-0.0256348,-0.0158386,-0.00692749,0.00375366,0.0127563,0.0177307,0.0228271,0.029541,0.0294495,0.0210876,0.00759888,-0.00570679,-0.0161133,-0.0259094,-0.038269,-0.0532227,-0.0661011,-0.0751038,-0.0799255,-0.0841675,-0.089325,-0.0963135,-0.101074,-0.10437,-0.107117,-0.110199,-0.111267,-0.112091,-0.117584,-0.119812,-0.120148,-0.115112,-0.104889,-0.0924072,-0.0791931,-0.0643005,-0.0426025,-0.0135498,0.0187988,0.0499878,0.0795288,0.103302,0.12677,0.152008,0.171021,0.183624,0.185089,0.182495,0.176453,0.167511,0.154694,0.135834,0.115234,0.0903931,0.065033,0.0421448,0.0228271,0.00558472,-0.0115356,-0.0265198,-0.0374451,-0.0414734,-0.0410767,-0.0378418,-0.0355835,-0.0326233,-0.0263062,-0.0176392,-0.0100098,-0.000793457,0.0107422,0.0211487,0.0275269,0.028717,0.0310059,0.0332947,0.0338135,0.0252991,0.0100098,-0.00442505,-0.0152283,-0.0248413,-0.0344238,-0.0471802,-0.0595398,-0.0674438,-0.0726318,-0.0765686,-0.0820007,-0.0878601,-0.0939026,-0.0971069,-0.102692,-0.110535,-0.114502,-0.115906,-0.119598,-0.126587,-0.13147,-0.129181,-0.121399,-0.109192,-0.0962524,-0.081543,-0.061615,-0.0337524,-0.00140381,0.0336304,0.065033,0.0907288,0.113007,0.136566,0.158844,0.173767,0.179932,0.17746,0.169464,0.159454,0.14859,0.134033,0.111206,0.0861206,0.0622253,0.0430908,0.0266418,0.0100708,-0.0050354,-0.0147705,-0.0234375,-0.0283203,-0.0309448,-0.0284424,-0.024292,-0.019989,-0.0184021,-0.01651,-0.0114136,-0.00213623,0.00900269,0.0160522,0.0192566,0.0228882,0.0285339,0.0375977,0.0400696,0.0357056,0.0292664,0.0227661,0.0144348,0.00732422,-0.00180054,-0.0133667,-0.025238,-0.0347595,-0.0445557,-0.0548401,-0.0640259,-0.0735474,-0.0817566,-0.0933533,-0.105164,-0.114563,-0.121063,-0.126831,-0.134369,-0.141876,-0.144897,-0.14563,-0.14093,-0.132019,-0.119659,-0.104218,-0.0846252,-0.0603943,-0.0313416,0.00241089,0.0343018,0.0619507,0.0877991,0.112274,0.136993,0.156921,0.168671,0.172485,0.169922,0.165771,0.158661,0.146301,0.126831,0.10321,0.0783997,0.0579224,0.0371704,0.0140381,-0.0065918,-0.0231628,-0.0357056,-0.0465698,-0.0543518,-0.0574646,-0.0559082,-0.0498047,-0.0434265,-0.0358276,-0.0259705,-0.0103455,0.00744629,0.0236816,0.036377,0.0474548,0.0626221,0.0758362,0.0831604,0.0822754,0.0791321,0.0736389,0.0644226,0.0511475,0.0368347,0.0209961,0.00524902,-0.00918579,-0.0214233,-0.0344238,-0.0483093,-0.0631409,-0.0771179,-0.0881958,-0.101807,-0.115234,-0.126648,-0.134552,-0.141083,-0.147247,-0.152161,-0.152008,-0.148804,-0.137726,-0.124298,-0.109314,-0.0939636,-0.0748291,-0.0487366,-0.0198059,0.00811768,0.0341492,0.0565796,0.078186,0.0994568,0.11731,0.12912,0.133423,0.133545,0.124969,0.116241,0.102753,0.0864563,0.0614624,0.0339661,0.00698853,-0.0203247,-0.0477905,-0.0763855,-0.0983887,-0.113098,-0.120941,-0.126984,-0.123627,-0.106232,-0.0758362,-0.0423584,-0.0157166,0.0105286,0.0475159,0.0918884,0.126648,0.14563,0.162964,0.181732,0.196106,0.192749,0.17569,0.15979,0.144958,0.119934,0.0873108,0.057251,0.0359192,0.0185242,0.000457764,-0.0215454,-0.0397949,-0.0476379,-0.0491333,-0.0488586,-0.0505371,-0.053009,-0.053772,-0.0508728,-0.0476379,-0.0470581,-0.048584,-0.0516663,-0.0583191,-0.0640259,-0.0683899,-0.0690002,-0.0683289,-0.0717468,-0.0761108,-0.0769043,-0.072876,-0.0654297,-0.0555115,-0.0483093,-0.0411377,-0.0350952,-0.0305481,-0.0259094,-0.0226746,-0.020874,-0.0223389,-0.0245667,-0.0270386,-0.0285339,-0.0270386,-0.0257568,-0.0237732,-0.021759,-0.0195312,-0.0152283,-0.00698853,0.00692749,0.0215454,0.0320129,0.0409546,0.04953,0.06073,0.0704041,0.0771179,0.0821533,0.0861816,0.0879822,0.0879822,0.0869141,0.0867004,0.0846252,0.0794678,0.0719604,0.0658264,0.061615,0.0590515,0.0541687,0.0473938,0.040863,0.0355835,0.0303345,0.0240173,0.0187378,0.0148926,0.0101318,0.00469971,0.00134277,-0.00112915,-0.00241089,-0.00357056,-0.00531006,-0.00839233,-0.0108643,-0.0124817,-0.0152283,-0.0171814,-0.0226135,-0.0269775,-0.033905,-0.0396729,-0.0472412,-0.0532837,-0.0603333,-0.0674438,-0.0752258,-0.0830078,-0.0885925,-0.0919495,-0.094574,-0.0969849,-0.0977173,-0.094635,-0.0899353,-0.0839539,-0.0777893,-0.0706177,-0.0632935,-0.0556946,-0.0472412,-0.0389404,-0.029541,-0.0216675,-0.0132751,-0.00436401,0.0038147,0.0132141,0.0202637,0.0281067,0.0349731,0.0426025,0.0492554,0.053833,0.0588684,0.0639648,0.0667114,0.066925,0.0665894,0.0655823,0.0654907,0.0622864,0.0589905,0.0540161,0.0500793,0.0455627,0.041626,0.036377,0.0315552,0.0260925,0.0209351,0.0167847,0.0128174,0.00793457,0.00537109,0.00302124,0.00100708,-0.000671387,-0.00180054,-0.00289917,-0.00296021,-0.00296021,-0.00369263,-0.00442505,-0.00598145,-0.00698853,-0.00924683,-0.0115356,-0.0144348,-0.017395,-0.0210876,-0.0263062,-0.0306091,-0.0350342,-0.0411987,-0.0465088,-0.0518188,-0.056366,-0.0622253,-0.0657043,-0.0691833,-0.0701904,-0.0711365,-0.0716858,-0.0711975,-0.0690002,-0.0648193,-0.0613403,-0.0561218,-0.0497437,-0.0414734,-0.0311279,-0.0219421,-0.0113525,-0.000946045,0.0100098,0.0210876,0.0307922,0.0396729,0.0487366,0.0546265,0.0601196,0.0643616,0.0687256,0.0697937,0.0696716,0.0684509,0.0662537,0.0637512,0.0604553,0.057251,0.0535583,0.0509949,0.0469666,0.0433655,0.0404053,0.0383301,0.0349121,0.0331421,0.028717,0.0260315,0.0223389,0.0192566,0.0157166,0.0118103,0.00973511,0.00509644,0.000549316,-0.00308228,-0.00558472,-0.00918579,-0.0120239,-0.0155029,-0.0182495,-0.0204163,-0.0223389,-0.0257568,-0.0282593,-0.0311279,-0.0344238,-0.0384521,-0.0418091,-0.0448303,-0.0480652,-0.0518188,-0.0544434,-0.0579834,-0.0602112,-0.0622253,-0.0626221,-0.0632935,-0.0638123,-0.0630798,-0.0614014,-0.0580444,-0.0543518,-0.0505371,-0.0458984,-0.040802,-0.0334167,-0.0273132,-0.0195923,-0.0116882,-0.00314331,0.0065918,0.0150452,0.0237732,0.0311279,0.0401306,0.0467224,0.0539551,0.0598755,0.0655823,0.0696716,0.0724182,0.0733643,0.0726318,0.0718079,0.0706177,0.0679932,0.0644226,0.0610046,0.0554504,0.0514221,0.0463867,0.0415344,0.0354309,0.0299377,0.0238953,0.0195923,0.0149536,0.0102539,0.00482178,0.0012207,-0.00302124,-0.00698853,-0.00912476,-0.012085,-0.0140381,-0.0151672,-0.0167847,-0.0173035,-0.0175781,-0.0191345,-0.0198669,-0.021759,-0.0232239,-0.0257568,-0.0291138,-0.0322266,-0.036377,-0.0401917,-0.0450439,-0.0492554,-0.0542908,-0.058136,-0.0620728,-0.0647583,-0.0664368,-0.0678406,-0.0677795,-0.0677795,-0.0649719,-0.0622864,-0.0587158,-0.0541687,-0.0479126,-0.0404663,-0.0328979,-0.0260315,-0.0172424,-0.00845337,0.000335693,0.00866699,0.0182495,0.0260925,0.0350952,0.0419312,0.0478516,0.0551758,0.0606079,0.0634155,0.0661621,0.0684509,0.0691833,0.0684509,0.0654907,0.0631409,0.0597229,0.0566406,0.049469,0.0438232,0.038269,0.033905,0.0268555,0.0222168,0.0182495,0.0149536,0.0116882,0.00765991,0.00515747,0.0038147,0.00112915,-0.00201416,-0.00463867,-0.00463867,-0.00683594,-0.00738525,-0.00857544,-0.00817871,-0.00845337,-0.00692749,-0.00772095,-0.00744629,-0.00671387,-0.00570679,-0.00765991,-0.00967407,-0.0140991,-0.0179138,-0.0229492,-0.0278625,-0.0345764,-0.0390015,-0.0433655,-0.0484009,-0.0516052,-0.0539551,-0.0551147,-0.0568542,-0.0565796,-0.0557861,-0.053833,-0.0511475,-0.0473022,-0.0428162,-0.0378418,-0.03302,-0.0283813,-0.0234375,-0.0184631,-0.0118103,-0.00524902,0.00222778,0.0062561,0.0108643,0.0173035,0.024292,0.0293274,0.0333557,0.0378418,0.0410156,0.0434265,0.0477905,0.0509949,0.0540161,0.0545654,0.0521545,0.0522156,0.0526123,0.0515442,0.0498657,0.0474548,0.0438232,0.0401917,0.0370483,0.0365906,0.0336914,0.0292664,0.0213318,0.0157166,0.0120239,0.00765991,-0.000396729,-0.0062561,-0.00912476,-0.0157776,-0.0200806,-0.0202026,-0.0186462,-0.0171814,-0.0178528,-0.0170593,-0.0142212,-0.0120239,-0.0124207,-0.0137634,-0.015564,-0.0178528,-0.020813,-0.0248413,-0.0293274,-0.0339661,-0.0390015,-0.040802,-0.0440369,-0.0450439,-0.044281,-0.0437012,-0.041626,-0.0383301,-0.0339661,-0.0296021,-0.0270996,-0.0234985,-0.0225525,-0.0214844,-0.0214844,-0.0231018,-0.0228882,-0.0234375,-0.0230103,-0.0205383,-0.0170593,-0.0128784,-0.00793457,-0.00128174,0.0067749,0.0134277,0.0195923,0.0270386,0.0316772,0.0401306,0.0467224,0.0489197,0.0512085,0.0512085,0.0491333,0.0512085,0.0535583,0.0498657,0.0422058,0.0422058,0.041748,0.0393372,0.0355835,0.0315552,0.0262451,0.0177917,0.0124207,0.00811768,-0.00201416,-0.0109253,-0.0177917,-0.0236816,-0.0302124,-0.0376587,-0.0365906,-0.0306702,-0.0297852,-0.0258484,-0.0173035,-0.00918579,-0.00558472,-0.00375366,-0.00146484,-0.000335693,-0.00241089,-0.00531006,-0.00750732,-0.0115356,-0.0157166,-0.0196533,-0.0222168,-0.0260315,-0.0275269,-0.0281067,-0.0268555,-0.0278625,-0.025177,-0.0202026,-0.0167236,-0.0174561,-0.0177917,-0.0175781,-0.0204773,-0.0229492,-0.0226746,-0.0214844,-0.0128784,-0.00424194,-0.000396729,0.00463867,0.0100708,0.0198059,0.0300598,0.0303345,0.0309448,0.0351562,0.0401306,0.0509338,0.0541077,0.0418091,0.0246887,0.0177917,0.0258484,0.0330811,0.0278625,0.012085,0.00933838,0.0223389,0.0361633,0.0411987,0.0361633,0.0256958,0.0179138,0.0219421,0.021759,0.0152893,0.00106812,-0.0180664,-0.0388489,-0.0519409,-0.0592041,-0.065979,-0.0689392,-0.0654297,-0.0628967,-0.0543518,-0.0355835,-0.0195923,-0.00643921,0.00134277,0.00430298,0.00570679,0.00805664,0.00805664,0.00576782,-6.10352e-05,-0.0134277,-0.0270996,-0.036438,-0.0383301,-0.0363159,-0.0328064,-0.0274353,-0.019989,-0.00985718,0.00692749,0.024231,0.0357056,0.0414124,0.0405273,0.0369873,0.0336914,0.0323486,0.0262451,0.0186462,0.00827026,-0.00228882,-0.00637817,-0.00564575,-0.00088501,0.00637817,0.0135498,0.0191345,0.0256348,0.0314636,0.0388489,0.0411987,0.0377808,0.0293884,0.0157776,0.00262451,-0.00933838,-0.019928,-0.0240173,-0.0194092,-0.0173035,-0.0174561,-0.0169678,-0.00906372,0.00213623,0.00543213,-0.0065918,-0.0221558,-0.0328064,-0.0477905,-0.0711975,-0.0915527,-0.102875,-0.108734,-0.107513,-0.103424,-0.094696,-0.0748901,-0.0491943,-0.0299988,-0.0141602,-0.00408936,0.00262451,0.0114136,0.0184631,0.0173035,0.00878906,0.00189209,-0.00289917,-0.0123596,-0.0204773,-0.0205383,-0.0120239,-0.00180054,0.00396729,0.0115967,0.0340271,0.0646362,0.0865784,0.0958252,0.0979309,0.0976562,0.0939026,0.085968,0.0724182,0.0587769,0.0489197,0.0457153,0.0410767,0.0418091,0.0475769,0.0584412,0.0691223,0.0712891,0.0666504,0.0598755,0.0575867,0.0533447,0.041687,0.0231628,0.0050354,-0.0119324,-0.0288696,-0.0428772,-0.0527649,-0.0595398,-0.0606689,-0.0557861,-0.0512695,-0.0444336,-0.0357056,-0.025238,-0.0212708,-0.0260315,-0.0435486,-0.0640259,-0.0734253,-0.0779114,-0.0849609,-0.0913391,-0.0933533,-0.0883179,-0.0739746,-0.0567017,-0.0426025,-0.0303345,-0.019928,-0.01651,-0.0196533,-0.0250854,-0.0293274,-0.0361023,-0.0456238,-0.0584412,-0.0720215,-0.0775146,-0.0757141,-0.0677795,-0.0568542,-0.0434265,-0.028656,-0.0105896,0.0161133,0.0457764,0.0708618,0.0926208,0.108002,0.119537,0.127319,0.133087,0.131622,0.132416,0.133484,0.130798,0.122559,0.116119,0.115692,0.115021,0.106384,0.0852356,0.0587769,0.0386047,0.0238342,0.0065918,-0.0161743,-0.0359802,-0.0482483,-0.0546265,-0.0639038,-0.0712891,-0.0710144,-0.0583801,-0.0430298,-0.0365906,-0.0317993,-0.0204163,-0.00482178,0.00469971,0.00189209,-0.0147705,-0.0291138,-0.0330811,-0.0380554,-0.0446167,-0.0511475,-0.0461731,-0.0365906,-0.0269165,-0.0189209,-0.0138855,-0.0065918,-0.00256348,-0.00991821,-0.0279846,-0.0489197,-0.0656433,-0.0812683,-0.0977173,-0.116241,-0.133698,-0.140198,-0.137054,-0.128845,-0.11618,-0.0954285,-0.0701294,-0.0426941,-0.0111389,0.0238953,0.0597839,0.0924072,0.115173,0.132141,0.146698,0.161865,0.169861,0.171204,0.165314,0.160522,0.155579,0.149139,0.133881,0.114227,0.0976562,0.078186,0.0508118,0.0205383,-0.0071106,-0.0282593,-0.0457153,-0.065094,-0.0870361,-0.0987244,-0.0971069,-0.0942993,-0.0956421,-0.0922241,-0.0808716,-0.0583801,-0.0369263,-0.0239563,-0.0138855,0.00396729,0.0193176,0.024231,0.0172424,0.0088501,0.00946045,0.0163879,0.0163879,0.00598145,0.00476074,0.0146179,0.0241699,0.0224304,0.0139465,0.00323486,-0.00531006,-0.0185242,-0.0415344,-0.0711975,-0.0953674,-0.110535,-0.123291,-0.138794,-0.153168,-0.157654,-0.146637,-0.130676,-0.116699,-0.100128,-0.0716858,-0.0340881,0.00442505,0.040802,0.077179,0.11261,0.141754,0.159851,0.172607,0.186096,0.197998,0.200928,0.19397,0.179993,0.167664,0.158203,0.142548,0.113281,0.0769653,0.044281,0.01651,-0.0127563,-0.0438843,-0.0710144,-0.0892029,-0.10376,-0.11853,-0.129059,-0.127991,-0.119934,-0.110474,-0.100281,-0.0885925,-0.0740967,-0.0512085,-0.0270996,-0.0101318,0.00189209,0.00918579,0.0151672,0.0210876,0.0258484,0.0293884,0.0322266,0.0346985,0.0325623,0.0319519,0.0390015,0.0437622,0.0403442,0.0307922,0.0151062,-0.00314331,-0.0213318,-0.041626,-0.0700684,-0.0977783,-0.121552,-0.139191,-0.151947,-0.159332,-0.159393,-0.15155,-0.137726,-0.123077,-0.104645,-0.0753784,-0.0381775,-0.00180054,0.0354919,0.0686646,0.101288,0.131744,0.157104,0.176117,0.189209,0.200256,0.203278,0.202087,0.196716,0.187256,0.174225,0.155853,0.126099,0.0903931,0.0555115,0.0228271,-0.00891113,-0.041687,-0.0743103,-0.100189,-0.11731,-0.131287,-0.141479,-0.142273,-0.137115,-0.12793,-0.118195,-0.103546,-0.0832214,-0.0580444,-0.033905,-0.0134277,0.00167847,0.0137024,0.0245056,0.0351562,0.0434265,0.0467834,0.0487976,0.0503235,0.0508728,0.0533447,0.0571899,0.056366,0.0489197,0.037323,0.0236816,0.00732422,-0.0106812,-0.0337524,-0.0596008,-0.0839539,-0.108002,-0.128784,-0.147583,-0.161743,-0.169922,-0.169464,-0.162354,-0.149872,-0.132874,-0.107117,-0.0757751,-0.0422668,-0.00744629,0.0287781,0.0628052,0.0942993,0.12262,0.142822,0.162476,0.178986,0.188782,0.19046,0.187775,0.180603,0.17276,0.157776,0.131958,0.0985107,0.0635681,0.0291138,-0.00515747,-0.0404663,-0.0771179,-0.107452,-0.130188,-0.146454,-0.155518,-0.157867,-0.150146,-0.137451,-0.120941,-0.101624,-0.0755615,-0.0473022,-0.0179749,0.0088501,0.0322876,0.0513306,0.0672607,0.0791931,0.085907,0.085022,0.0843506,0.0873718,0.0841675,0.0732117,0.0643616,0.0630188,0.0587158,0.0481262,0.0326233,0.0203247,0.00939941,-0.00357056,-0.019989,-0.0383911,-0.053833,-0.0696716,-0.0845032,-0.0949097,-0.103424,-0.111755,-0.114105,-0.109467,-0.105042,-0.0970459,-0.0829468,-0.0673828,-0.0505371,-0.0333557,-0.0173035,-0.000946045,0.0142822,0.0270386,0.0422058,0.0576477,0.0690002,0.0745544,0.0765686,0.0738831,0.0670471,0.0540161,0.0323486,0.00476074,-0.0228882,-0.0454407,-0.0632324,-0.0769653,-0.0916138,-0.103363,-0.106323,-0.0922241,-0.0675049,-0.0458374,-0.0308838,-0.00704956,0.0279846,0.0634155,0.086853,0.0993958,0.106781,0.112488,0.110931,0.102631,0.0950317,0.0879822,0.0767822,0.0609436,0.0497437,0.0433655,0.0457153,0.0503235,0.0534973,0.0564575,0.0620117,0.0730896,0.0828247,0.0871277,0.0820923,0.0745544,0.0644836,0.0505981,0.0330811,0.0161743,-0.00201416,-0.0216064,-0.0426025,-0.0590515,-0.0720825,-0.0768433,-0.0776367,-0.0748901,-0.0697327,-0.061615,-0.0501404,-0.0375977,-0.0255127,-0.0181885,-0.0161133,-0.0147095,-0.0144958,-0.0150452,-0.0171204,-0.0232849,-0.0310059,-0.0414124,-0.0505981,-0.06073,-0.0693359,-0.0756226,-0.0809937,-0.0808716,-0.0778503,-0.0718079,-0.0634766,-0.0498047,-0.0360413,-0.0244446,-0.0138855,-0.00201416,0.00827026,0.0167847,0.0214844,0.0258484,0.0263672,0.0270996,0.025238,0.0228882,0.019989,0.019928,0.0200806,0.0198669,0.021759,0.0262451,0.0325623,0.0405273,0.0472412,0.0515442,0.0568542,0.058197,0.0569763,0.0547791,0.048584,0.0397339,0.0297852,0.0197449,0.00967407,-0.000610352,-0.00985718,-0.0183105,-0.0257568,-0.0294495,-0.0308838,-0.0289307,-0.0268555,-0.0222778,-0.0162354,-0.0120239,-0.0088501,-0.0067749,-0.00482178,-0.00616455,-0.0114136,-0.0172424,-0.0233459,-0.0273132,-0.0334167,-0.0377808,-0.041748,-0.0448303,-0.0446167,-0.0435486,-0.0433655,-0.0420837,-0.0403442,-0.0371094,-0.0349731,-0.0328064,-0.0303345,-0.0271912,-0.024292,-0.0220947,-0.0209351,-0.0179138,-0.0154419,-0.0140991,-0.0115356,-0.0083313,-0.00457764,0.000671387,0.00827026,0.0138855,0.019989,0.0271912,0.0351562,0.0414734,0.0475159,0.0521545,0.0575256,0.0617981,0.0644836,0.0664978,0.0664368,0.0635681,0.0601196,0.0536804,0.0465698,0.037323,0.0290527,0.0200806,0.012085,0.00482178,-0.00180054,-0.00582886,-0.00946045,-0.0113525,-0.0131531,-0.0134277,-0.0136108,-0.0125427,-0.0112,-0.0113525,-0.0102539,-0.0104065,-0.0116882,-0.0151672,-0.0198669,-0.0256958,-0.0307922,-0.0357056,-0.0385132,-0.0426025,-0.0433655,-0.0430298,-0.040802,-0.0393982,-0.0371094,-0.0354919,-0.0315552,-0.029541,-0.0282593,-0.0282593,-0.0273743,-0.0270386,-0.0275879,-0.0291138,-0.0292053,-0.0285339,-0.0272522,-0.0263062,-0.0232849,-0.0198669,-0.0144958,-0.0106812,-0.0050354,0.0017395,0.0100098,0.0172424,0.0238342,0.0305481,0.0352478,0.0404053,0.0448914,0.049408,0.053833,0.0585938,0.0620117,0.065979,0.069397,0.0684509,0.0674438,0.065155,0.0614624,0.0545654,0.0480652,0.0393982,0.0317383,0.0253601,0.0177917,0.0110168,0.00531006,-0.00088501,-0.00549316,-0.00772095,-0.00912476,-0.0105286,-0.0107422,-0.0118103,-0.0129395,-0.0138245,-0.0127563,-0.0157166,-0.0193176,-0.024231,-0.0281067,-0.0303345,-0.0325623,-0.0349121,-0.0371704,-0.038269,-0.0377197,-0.0380554,-0.0367126,-0.036377,-0.0353088,-0.0349731,-0.0356445,-0.0361633,-0.0383301,-0.0391846,-0.0403442,-0.0426941,-0.0462952,-0.0475769,-0.0496521,-0.0484009,-0.0458374,-0.0447083,-0.041687,-0.0358276,-0.0289307,-0.0209351,-0.012146,-0.00296021,0.00576782,0.0137634,0.0222168,0.0302734,0.0371094,0.0432129,0.0491943,0.0541077,0.0597839,0.0638123,0.0664978,0.0688477,0.0683289,0.0679321,0.0657654,0.0619507,0.0578003,0.0534973,0.0477905,0.0420837,0.0346375,0.028595,0.0221558,0.0167236,0.0104675,0.00549316,0.00180054,-0.00134277,-0.00289917,-0.00604248,-0.00759888,-0.00973511,-0.0113525,-0.0136108,-0.015564,-0.0191956,-0.0205994,-0.0229492,-0.0241699,-0.0259094,-0.0260925,-0.0259705,-0.0245056,-0.0249023,-0.0257568,-0.0273743,-0.0278625,-0.0293274,-0.0314636,-0.0337524,-0.0374451,-0.0391235,-0.040802,-0.0428162,-0.0445557,-0.0449524,-0.0453796,-0.0458374,-0.0437012,-0.0420227,-0.0383301,-0.0351562,-0.0312195,-0.0260925,-0.0224304,-0.0178528,-0.0126953,-0.00744629,-0.00268555,0.00256348,0.00817871,0.0153809,0.0224304,0.0287781,0.0358276,0.041626,0.0479126,0.0527649,0.0554504,0.0561218,0.0557861,0.053772,0.0508728,0.0473022,0.0444336,0.0404053,0.0361633,0.0310669,0.0275269,0.025238,0.0241089,0.0225525,0.0218201,0.0220947,0.0235596,0.0258484,0.0267029,0.0265808,0.0250244,0.0222778,0.0179749,0.013092,0.00872803,0.00375366,-0.00213623,-0.00616455,-0.0112,-0.015625,-0.0187988,-0.0209961,-0.0238342,-0.025238,-0.0279846,-0.0297241,-0.0322266,-0.0331421,-0.0345764,-0.036499,-0.0390625,-0.041748,-0.0433655,-0.0454407,-0.046051,-0.0479736,-0.0472412,-0.0462341,-0.0453796,-0.0422058,-0.0377808,-0.0326233,-0.0262451,-0.0166321,-0.00805664,0.00476074,0.0179749,0.0255127,0.02771,0.0302734,0.0314026,0.0297241,0.0218201,0.011261,0.000213623,-0.00448608,-0.00979614,-0.0146179,-0.0203247,-0.0210876,-0.0150452,-0.00247192,0.00958252,0.0202026,0.029541,0.040863,0.0551758,0.0627441,0.0622864,0.0574646,0.0541077,0.0475769,0.041626,0.0344238,0.0259705,0.0172424,0.0111389,0.00564575,0.00363159,0.00509644,0.00268555,0.000610352,0.00396729,0.00906372,0.00991821,0.0110168,0.00857544,0.00296021,-0.000274658,-0.00524902,-0.0129395,-0.020752,-0.0283203,-0.0357056,-0.0427551,-0.0479736,-0.0515442,-0.0523376,-0.0523376,-0.0527649,-0.0484619,-0.0434265,-0.0359192,-0.0302124,-0.025238,-0.0205994,-0.0147705,-0.0124207,-0.0124207,-0.0126953,-0.0137634,-0.0143738,-0.0157776,-0.0195312,-0.0237732,-0.0247803,-0.0262451,-0.0267639,-0.0202026,-0.0147095,-0.0135498,-0.00369263,0.00558472,0.00973511,0.0136108,0.0177917,0.0162964,0.0122681,0.0214844,0.024292,0.0191956,0.019928,0.0194702,0.0198059,0.0155029,0.0129395,0.0105286,0.0137634,0.0116882,0.00759888,0.0131531,0.0188599,0.0244446,0.0222168,0.0269775,0.0298767,0.0298767,0.0307922,0.0266418,0.0198059,0.0154419,0.0118103,0.00592041,-0.00241089,-0.00744629,-0.00549316,-0.00476074,-0.00180054,-0.000274658,0.00448608,0.0105286,0.0142212,0.0134888,0.00683594,0.00531006,0.00222778,-0.00363159,-0.0147705,-0.0280457,-0.0351562,-0.0394592,-0.0447083,-0.0527649,-0.057373,-0.0510864,-0.0457764,-0.0403442,-0.0322876,-0.0232239,-0.0124817,0.000610352,0.00738525,0.00576782,0.00811768,0.0155029,0.0180664,0.00939941,0.0050354,6.10352e-05,-0.00140381,-0.0101318,-0.0142822,-0.00933838,-0.00543213,0.000335693,0.00732422,0.0220947,0.0304565,0.0231018,0.0205383,0.0234375,0.0269775,0.0267029,0.0083313,-0.00967407,-0.019928,-0.0226746,-0.0264282,-0.0320129,-0.0311279,-0.0328979,-0.0238342,-0.0102539,0.00363159,0.0128174,0.0222168,0.0312805,0.0317383,0.0346375,0.0266418,0.0168457,0.0153809,0.0101318,0.0065918,0.000946045,-0.000793457,-0.00106812,0.000457764,0.00436401,0.00738525,0.0107422,0.0144348,0.0158386,0.0181885,0.0174561,0.0112,0.00247192,-0.00408936,-0.00946045,-0.0158997,-0.0195312,-0.0209961,-0.0202026,-0.0118103,-0.00592041,-0.00570679,-0.00698853,-0.0020752,0.00408936,0.00759888,0.00827026,0.0126038,0.0176392,0.0206604,0.0169678,0.00952148,0.00543213,0.00665283,0.00933838,0.00357056,-0.00375366,0.00314331,0.0180664,0.0228271,0.00912476,-0.00375366,-0.00778198,-0.00524902,-0.012146,-0.027771,-0.0455017,-0.0634766,-0.0724182,-0.078064,-0.0881958,-0.0910034,-0.085907,-0.0707397,-0.0473022,-0.0260315,-0.0017395,0.0238342,0.0404663,0.04422,0.0368347,0.0330811,0.0298767,0.0228882,0.0146179,0.00509644,-0.000274658,-0.00167847,0.00161743,0.00665283,0.0150452,0.0187378,0.024353,0.0379333,0.049469,0.0533447,0.0489807,0.044281,0.036499,0.0229492,0.00793457,-0.00134277,-0.000396729,0.00469971,0.00759888,0.0104065,0.0152893,0.0230103,0.0332947,0.0419312,0.0459595,0.0477295,0.0482483,0.052002,0.0488586,0.0369263,0.0190735,-6.10352e-05,-0.0120239,-0.0131531,-0.0171204,-0.0330811,-0.0500793,-0.0509949,-0.0360413,-0.0315552,-0.045166,-0.0602722,-0.0693359,-0.0704041,-0.082489,-0.115784,-0.148712,-0.151825,-0.128662,-0.106842,-0.0987854,-0.0848389,-0.0601196,-0.0226746,0.0119324,0.0368347,0.0490723,0.0469055,0.0429382,0.0388489,0.0334778,0.012207,-0.0067749,-0.0100098,-0.00912476,-0.016571,-0.0269775,-0.0250244,-0.013092,-0.00106812,0.00280762,0.00637817,0.0209961,0.0387268,0.0507507,0.0553589,0.0559692,0.053772,0.0554504,0.0606079,0.0619507,0.0649719,0.0776367,0.0933533,0.105164,0.113342,0.120056,0.130463,0.141357,0.137909,0.116028,0.0913391,0.0726318,0.0505981,0.0239563,-0.00323486,-0.0289917,-0.0514221,-0.0698547,-0.0817566,-0.091217,-0.0930176,-0.0915527,-0.0851135,-0.0786438,-0.0779724,-0.0830994,-0.0865173,-0.0908203,-0.104645,-0.119476,-0.127594,-0.126587,-0.115112,-0.0925598,-0.0700073,-0.0457764,-0.0137634,0.0194092,0.0428772,0.0561829,0.0593872,0.0531006,0.0405273,0.0181274,-0.0125427,-0.0437622,-0.0641479,-0.0770569,-0.0915527,-0.108185,-0.115448,-0.110931,-0.0968323,-0.0841064,-0.0724182,-0.0502625,-0.0167847,0.0126953,0.0332947,0.0516663,0.0716858,0.0913391,0.111481,0.127106,0.139862,0.153961,0.172485,0.188934,0.201538,0.209137,0.211609,0.207306,0.191223,0.165649,0.136658,0.103821,0.0671692,0.0231018,-0.0167847,-0.0518188,-0.0812073,-0.108337,-0.128113,-0.13858,-0.14563,-0.14328,-0.129944,-0.112488,-0.0961609,-0.081665,-0.0714722,-0.0641479,-0.0571289,-0.0522766,-0.0483093,-0.0411987,-0.0297241,-0.0175171,-0.00308228,0.0138245,0.0324097,0.0508118,0.065033,0.0696716,0.0624695,0.0495911,0.0296631,0.00213623,-0.036438,-0.0747681,-0.104828,-0.127838,-0.149933,-0.169403,-0.176636,-0.174622,-0.165375,-0.155579,-0.142426,-0.119812,-0.0855103,-0.0497437,-0.0149536,0.0204163,0.0525513,0.0843506,0.115631,0.145782,0.173553,0.205627,0.231476,0.24295,0.249115,0.257996,0.259247,0.244019,0.214844,0.175568,0.134766,0.0944824,0.0469055,-0.00457764,-0.0456238,-0.0753784,-0.107239,-0.139069,-0.15918,-0.166656,-0.162476,-0.156372,-0.156097,-0.147247,-0.117371,-0.085907,-0.0671692,-0.0532227,-0.0365906,-0.016449,0.00524902,0.017395,0.0241089,0.040863,0.0680542,0.0842896,0.091156,0.0949707,0.0965881,0.101959,0.0993958,0.0734863,0.0351562,0.00112915,-0.0292053,-0.0669861,-0.107788,-0.146454,-0.173706,-0.187592,-0.192291,-0.199921,-0.201935,-0.189453,-0.168518,-0.144287,-0.120667,-0.0930176,-0.0578613,-0.0106812,0.0315552,0.06604,0.093811,0.12851,0.165833,0.199066,0.224976,0.237915,0.245361,0.254364,0.255096,0.240417,0.215088,0.185425,0.149719,0.108246,0.0602722,0.00564575,-0.0390625,-0.0710144,-0.100403,-0.138336,-0.167114,-0.178314,-0.17691,-0.169586,-0.16449,-0.158386,-0.139252,-0.104553,-0.078186,-0.0567017,-0.0313416,-0.00531006,0.0167236,0.0362549,0.0478516,0.0557861,0.0739746,0.0905457,0.091217,0.0885315,0.09375,0.0975037,0.0940857,0.0833435,0.0630798,0.0375061,0.0100708,-0.0273743,-0.0696716,-0.101013,-0.128845,-0.157379,-0.177582,-0.188202,-0.193542,-0.189545,-0.172821,-0.159515,-0.144348,-0.121674,-0.0915527,-0.0595398,-0.0241089,0.0117493,0.0461121,0.078064,0.104034,0.126312,0.150269,0.176025,0.194977,0.20343,0.201263,0.200256,0.195892,0.18335,0.160461,0.126831,0.091156,0.058136,0.0206604,-0.0219421,-0.0612793,-0.093689,-0.127167,-0.155029,-0.175842,-0.186188,-0.181732,-0.162628,-0.138062,-0.115509,-0.086853,-0.0531006,-0.020813,0.0108032,0.0328064,0.0434265,0.0579834,0.0741577,0.0883789,0.0960388,0.0969238,0.0924683,0.0848389,0.0812073,0.0721436,0.0637512,0.057312,0.0496521,0.0396729,0.0292053,0.0141602,-0.00408936,-0.0169678,-0.0322266,-0.0513306,-0.0709534,-0.0838318,-0.0922852,-0.100342,-0.110077,-0.116913,-0.117126,-0.111084,-0.103638,-0.0920715,-0.0739746,-0.0518188,-0.0274353,-0.00558472,0.0148926,0.0323486,0.0508118,0.0679932,0.0798645,0.0856934,0.0842285,0.0830078,0.0814819,0.0734253,0.0563049,0.032135,0.00463867,-0.028656,-0.0618896,-0.086853,-0.0996094,-0.10202,-0.105377,-0.108185,-0.101868,-0.0802002,-0.0526733,-0.0331421,-0.0187378,0.0032959,0.037262,0.0686035,0.0856934,0.0955811,0.10202,0.103882,0.0951538,0.0813293,0.0697327,0.0632935,0.0548401,0.0418701,0.0317993,0.0299988,0.0341492,0.0466309,0.0617981,0.0724792,0.0823364,0.0919495,0.0973816,0.0983887,0.0908203,0.0760498,0.0551147,0.0328979,0.0100098,-0.0128784,-0.0343018,-0.0535583,-0.070282,-0.0803223,-0.0874634,-0.0888062,-0.0820007,-0.0737,-0.0633545,-0.0489807,-0.0332947,-0.0192566,-0.00704956,0.00088501,0.00201416,-0.00604248,-0.0172424,-0.0297241,-0.040741,-0.053894,-0.0661621,-0.073761,-0.078186,-0.0803223,-0.0809326,-0.0795288,-0.0700073,-0.0574646,-0.0432129,-0.0289307,-0.0141602,0.000793457,0.0118103,0.0202026,0.025177,0.0270996,0.0269775,0.0245056,0.0198059,0.0144348,0.011261,0.00918579,0.00906372,0.0100098,0.0118103,0.0152893,0.0218201,0.0288696,0.0356445,0.0434875,0.0499878,0.0577087,0.065094,0.0690002,0.0709534,0.070282,0.0657654,0.058136,0.0488586,0.0397949,0.0293274,0.0198059,0.012207,0.0062561,0.00106812,-0.000793457,-0.00268555,-0.00369263,-0.00268555,-0.0032959,-0.00363159,-0.00604248,-0.00891113,-0.0144958,-0.0197449,-0.027771,-0.0389404,-0.0498657,-0.0603333,-0.0704041,-0.0813293,-0.0885925,-0.0919495,-0.0905457,-0.0855713,-0.0786438,-0.0693359,-0.0575867,-0.0461121,-0.0343628,-0.025238,-0.0191345,-0.0158997,-0.0140991,-0.0137024,-0.016571,-0.0192566,-0.0223389,-0.024292,-0.0245667,-0.0238342,-0.0225525,-0.0172424,-0.0108643,-0.00314331,0.00476074,0.0142212,0.0236206,0.0346375,0.0440979,0.0519409,0.0560303,0.0585327,0.0596619,0.0597839,0.0592651,0.0590515,0.0583191,0.0576477,0.0567932,0.0571899,0.0556335,0.0534363,0.0513306,0.0498657,0.0498657,0.0467224,0.0420837,0.0380554,0.0340881,0.0281067,0.0209351,0.0105896,0.00146484,-0.00491333,-0.0136108,-0.0222778,-0.0308838,-0.0376587,-0.0432129,-0.0478516,-0.0523376,-0.0559082,-0.0592041,-0.061554,-0.0619507,-0.0623474,-0.0614624,-0.0582581,-0.0526123,-0.0472412,-0.040863,-0.0363159,-0.0308838,-0.0270996,-0.0256348,-0.0256348,-0.0269775,-0.0273743,-0.028595,-0.0284424,-0.0292664,-0.0302734,-0.0292664,-0.0258484,-0.0234375,-0.0191345,-0.0137024,-0.0083313,-0.00201416,0.00515747,0.0109253,0.0161133,0.0216064,0.0270386,0.0326843,0.0357056,0.0375061,0.0414734,0.0457764,0.04953,0.0547791,0.0589294,0.0640869,0.0686035,0.0726318,0.0749817,0.0753784,0.0745544,0.0714722,0.0686035,0.0630188,0.0556946,0.0471802,0.0397339,0.0302734,0.0184631,0.00839233,-0.000793457,-0.00946045,-0.0181274,-0.0245056,-0.0296021,-0.0326843,-0.0346375,-0.0346375,-0.0353699,-0.0353699,-0.0383301,-0.040741,-0.0440979,-0.0467224,-0.0507507,-0.0526733,-0.0532837,-0.0528259,-0.0511475,-0.0500793,-0.0475159,-0.045166,-0.0430298,-0.0402832,-0.0381165,-0.0377808,-0.0353088,-0.0317383,-0.0313416,-0.0312805,-0.032135,-0.0311279,-0.0299988,-0.0285339,-0.0283203,-0.0257568,-0.0238953,-0.0187988,-0.0151062,-0.00918579,-0.00222778,0.00598145,0.0139465,0.0218201,0.0302734,0.0369263,0.0428162,0.049408,0.0555725,0.0622864,0.0661621,0.0691223,0.0733643,0.0744324,0.0733032,0.0701294,0.066925,0.0634155,0.0579224,0.052948,0.0462952,0.039856,0.0334778,0.0267029,0.0189819,0.0116882,0.0050354,-0.000793457,-0.00564575,-0.00973511,-0.0124817,-0.0144958,-0.0163879,-0.0186462,-0.0215454,-0.0238342,-0.0274353,-0.0317993,-0.0355835,-0.0399475,-0.0435486,-0.0448303,-0.0471802,-0.0487976,-0.0487976,-0.0477905,-0.0467834,-0.0454407,-0.0426025,-0.0406799,-0.0384521,-0.0359802,-0.0340881,-0.0335693,-0.0324097,-0.0309448,-0.0301208,-0.0284424,-0.0269775,-0.0263672,-0.0234985,-0.0225525,-0.0197449,-0.0175171,-0.011261,-0.00683594,-0.000549316,0.00442505,0.0106812,0.0155029,0.0205994,0.025238,0.0306091,0.0346375,0.0392761,0.0428772,0.0472412,0.050415,0.0526733,0.0531616,0.0525513,0.0515442,0.0487976,0.0461121,0.0427551,0.0374451,0.0333557,0.0303345,0.0275269,0.0240173,0.0218811,0.0203247,0.0190735,0.0169067,0.0143738,0.012146,0.0115967,0.0114746,0.0107422,0.00918579,0.00692749,0.00167847,-0.00234985,-0.00912476,-0.0148926,-0.0204773,-0.0204163,-0.0125427,-0.00906372,-0.0139465,-0.0144348,-0.0142822,-0.0125427,-0.0178528,-0.0279846,-0.0387878,-0.046051,-0.0473938,-0.0555115,-0.0606079,-0.0605469,-0.0632935,-0.0567932,-0.0491943,-0.0426941,-0.0346985,-0.0227661,-0.0109253,-0.00241089,0.0067749,0.0146179,0.016449,0.0205994,0.0223389,0.0173035,0.0114136,0.00402832,0.000274658,-0.00234985,-0.00469971,-0.00857544,-0.00872803,-0.00463867,0.000671387,0.00827026,0.0226135,0.0362549,0.0434265,0.0413513,0.0409546,0.0438232,0.0434265,0.0355835,0.0222778,0.0107422,0.00845337,0.00979614,0.00637817,0.00509644,0.00531006,0.00637817,0.0117493,0.0162354,0.019989,0.0233459,0.0298767,0.0356445,0.036377,0.0328979,0.0317993,0.0317993,0.0270996,0.01651,0.00408936,-0.00598145,-0.0158997,-0.0259094,-0.0377808,-0.0475769,-0.0553589,-0.0606079,-0.065094,-0.0662537,-0.0655823,-0.0604553,-0.0542297,-0.0473938,-0.0426941,-0.0391846,-0.0328064,-0.0279236,-0.0250854,-0.0265198,-0.0252991,-0.0209351,-0.0144348,-0.0110168,-0.0127563,-0.00933838,-0.00424194,-0.000671387,0.000549316,-0.00201416,-0.00289917,0.0012207,0.00476074,0.0038147,-0.00088501,0.000213623,0.00946045,0.012207,0.00878906,0.00531006,0.00201416,0.00408936,0.00195312,-0.00784302,-0.0185852,-0.0238953,-0.020752,-0.0189209,-0.0113525,-0.000396729,0.00857544,0.0246887,0.0361633,0.0462952,0.0551758,0.0630798,0.0657654,0.0582581,0.0510864,0.0406799,0.0353088,0.0300598,0.0195312,0.00939941,0.00531006,0.00793457,0.00772095,0.00598145,0.00247192,0.00280762,0.00604248,0.00375366,-0.00167847,-0.00643921,-0.0113525,-0.0148926,-0.0186462,-0.0245056,-0.032135,-0.0392761,-0.040863,-0.0422668,-0.0439453,-0.0437622,-0.0422058,-0.0350342,-0.0274353,-0.0241089,-0.0168457,-0.00872803,-0.00296021,-0.00195312,-0.00515747,-0.00268555,0.00537109,0.0110168,0.00396729,0.0032959,0.0118713,0.0187988,0.0134888,0.00570679,0.0134277,0.0224304,0.0292053,0.0253601,0.0147705,0.0143738,0.00128174,-0.0168457,-0.0245056,-0.033905,-0.0458984,-0.0575256,-0.0532227,-0.0423584,-0.0310669,-0.0113525,0.00296021,0.0146179,0.0296021,0.0401306,0.0485229,0.0545044,0.0532227,0.0463867,0.0430298,0.0377197,0.0269775,0.020874,0.0183105,0.0171204,0.0148315,0.0115967,0.0106812,0.0145569,0.0259705,0.0327454,0.0314026,0.0259705,0.0148926,0.00335693,-0.0071106,-0.0175781,-0.0296021,-0.0441589,-0.0528259,-0.0554504,-0.0556335,-0.0542297,-0.0531616,-0.0466309,-0.0368347,-0.0283813,-0.0205994,-0.0108032,0.00314331,0.0133667,0.0149536,0.0167847,0.0264282,0.0266418,0.0178528,0.012146,0.0204163,0.0324097,0.0330811,0.0176392,0.0012207,-0.0017395,-0.00100708,-0.0114136,-0.028656,-0.0413513,-0.0519409,-0.0617371,-0.0724182,-0.0766296,-0.0745544,-0.0674438,-0.0617981,-0.0603943,-0.0456238,-0.0224915,0.00967407,0.0317993,0.0432739,0.0465698,0.0411987,0.0396118,0.0400696,0.0441589,0.0418091,0.036438,0.0346985,0.0392761,0.0551147,0.0649109,0.0638123,0.0602112,0.0577087,0.0539551,0.04953,0.0462341,0.0347595,0.0209961,0.00637817,-0.0153809,-0.0395203,-0.0469055,-0.04422,-0.0403442,-0.0326843,-0.0241089,-0.012085,0.0110168,0.0341492,0.0452271,0.0483093,0.0521545,0.0524902,0.0481262,0.0430298,0.036438,0.0260315,0.01651,0.000213623,-0.0226746,-0.0418091,-0.0449524,-0.0434875,-0.0394592,-0.0376587,-0.0470581,-0.0555115,-0.0527649,-0.0445557,-0.0586548,-0.0882568,-0.108917,-0.116364,-0.120667,-0.133545,-0.135437,-0.121002,-0.0976562,-0.0779724,-0.0602722,-0.0356445,-0.00564575,0.0256958,0.0448914,0.0522766,0.0518188,0.0466309,0.0391235,0.0331421,0.0287781,0.0192566,0.00839233,0.00491333,0.00469971,0.012085,0.0189819,0.0215454,0.0241089,0.0290527,0.0395203,0.0546875,0.0624695,0.0593872,0.0525513,0.0483093,0.0454407,0.0444336,0.0458374,0.0508728,0.069397,0.0900574,0.101624,0.11026,0.125244,0.138458,0.131958,0.114563,0.0957031,0.0793152,0.0622864,0.0432129,0.0179138,-0.00369263,-0.0196533,-0.0378418,-0.0570374,-0.0775757,-0.0877991,-0.0890503,-0.0832825,-0.0832825,-0.0932922,-0.100128,-0.0983887,-0.0969238,-0.108978,-0.12912,-0.138794,-0.135437,-0.125366,-0.116638,-0.101349,-0.0761719,-0.0424194,-0.00845337,0.0114746,0.020813,0.0265198,0.0322876,0.0328064,0.0222168,-0.00134277,-0.027771,-0.0422668,-0.052948,-0.0714722,-0.0906067,-0.100067,-0.0965881,-0.0876465,-0.082489,-0.0758972,-0.0614014,-0.0298767,0.0067749,0.032074,0.0440369,0.0561218,0.0752869,0.0964966,0.114685,0.127167,0.143677,0.168457,0.19281,0.207062,0.212494,0.220062,0.223358,0.207916,0.177643,0.141144,0.108978,0.0820923,0.052948,0.00979614,-0.0328979,-0.0623474,-0.0802002,-0.0940857,-0.104889,-0.115021,-0.119263,-0.110138,-0.097168,-0.0898132,-0.0843506,-0.0728149,-0.065033,-0.0726929,-0.0856934,-0.0907288,-0.0786438,-0.0542908,-0.0355835,-0.0236206,-0.00906372,0.017395,0.0478516,0.0649719,0.0662537,0.0536194,0.0388489,0.0253601,-0.000671387,-0.0387268,-0.077179,-0.101959,-0.12207,-0.145905,-0.168518,-0.176025,-0.169189,-0.154968,-0.146027,-0.140686,-0.126038,-0.0952454,-0.0582581,-0.0241699,0.00491333,0.0363159,0.0681763,0.0992737,0.122894,0.15033,0.186432,0.224091,0.244751,0.244415,0.240143,0.242554,0.24295,0.224976,0.188599,0.14209,0.101349,0.0664368,0.0304565,-0.00811768,-0.0438232,-0.0742188,-0.101807,-0.124512,-0.139191,-0.14328,-0.136047,-0.127258,-0.123901,-0.116302,-0.0964355,-0.0722961,-0.0543518,-0.0454407,-0.0424194,-0.0357056,-0.0203247,6.10352e-05,0.0205994,0.0369263,0.052887,0.0657654,0.0763855,0.0792542,0.0723572,0.0636902,0.0489807,0.0292664,0.00256348,-0.0307922,-0.0647583,-0.0953674,-0.119202,-0.138794,-0.158447,-0.176575,-0.182831,-0.174957,-0.162292,-0.155365,-0.146362,-0.123749,-0.0898743,-0.0568542,-0.0275879,0.00784302,0.0516663,0.0969238,0.129517,0.152893,0.184967,0.228577,0.261017,0.269592,0.256989,0.245178,0.240417,0.228455,0.195099,0.144562,0.0990601,0.0649109,0.0314026,-0.0124817,-0.0559082,-0.0814819,-0.0976562,-0.116241,-0.139923,-0.156189,-0.150818,-0.131287,-0.120728,-0.121277,-0.117188,-0.0963135,-0.0687866,-0.0458984,-0.040741,-0.0393372,-0.0246277,-0.00161743,0.0175781,0.0314636,0.0461731,0.0612183,0.0755005,0.0812683,0.0741577,0.0633545,0.0596619,0.053009,0.0332947,-0.000457764,-0.0379944,-0.069397,-0.0918884,-0.112427,-0.139252,-0.165314,-0.177368,-0.177368,-0.172363,-0.166565,-0.157715,-0.141876,-0.114441,-0.0844421,-0.0575867,-0.0265808,0.0161743,0.0639038,0.098999,0.121063,0.140015,0.170074,0.209259,0.237518,0.243835,0.235443,0.229401,0.225372,0.212677,0.186188,0.148651,0.108917,0.0738831,0.0401306,0.000213623,-0.0377197,-0.0661621,-0.0905457,-0.115448,-0.14035,-0.158112,-0.155579,-0.141083,-0.129944,-0.122681,-0.111481,-0.0917358,-0.0661011,-0.0420837,-0.0278625,-0.0215454,-0.0114746,0.00509644,0.0256348,0.0428162,0.0524292,0.0643616,0.0761108,0.0852966,0.0841675,0.0757141,0.0665894,0.0595398,0.0440369,0.0177307,-0.01651,-0.0502014,-0.0783997,-0.0993958,-0.123627,-0.148529,-0.165314,-0.167908,-0.161407,-0.15686,-0.151001,-0.141083,-0.121277,-0.0960388,-0.0743103,-0.0524902,-0.0224304,0.0140381,0.0503235,0.0774536,0.0993347,0.123077,0.156189,0.186249,0.19873,0.199005,0.198853,0.199341,0.193298,0.178192,0.151733,0.118469,0.0875854,0.0582581,0.0227661,-0.0142822,-0.0476379,-0.0777893,-0.101349,-0.123749,-0.143097,-0.153503,-0.151276,-0.14389,-0.135437,-0.121735,-0.102142,-0.0770569,-0.0459595,-0.0179138,-0.0038147,0.0050354,0.0192566,0.0412903,0.0610657,0.069397,0.0712891,0.0756226,0.0903931,0.102539,0.103882,0.098938,0.0917969,0.0804138,0.0663757,0.0445557,0.0152893,-0.0129395,-0.0357056,-0.0611267,-0.0889893,-0.107666,-0.115631,-0.115631,-0.113892,-0.116638,-0.119812,-0.115356,-0.101013,-0.0890503,-0.0835571,-0.0718079,-0.0548401,-0.0332336,-0.0116882,0.0088501,0.0293884,0.0522766,0.0761108,0.0951538,0.106567,0.114624,0.120605,0.122009,0.118317,0.106659,0.0882568,0.0640259,0.0379333,0.00946045,-0.0266418,-0.0655823,-0.101807,-0.130066,-0.149872,-0.158844,-0.158264,-0.145294,-0.124908,-0.102753,-0.0791321,-0.052948,-0.0259705,0.0012207,0.0299988,0.050415,0.0594482,0.0744934,0.0955811,0.10672,0.100677,0.0897217,0.0836792,0.081543,0.0833435,0.0810852,0.078064,0.0864563,0.0958252,0.098114,0.101288,0.101471,0.0993347,0.0926819,0.0844421,0.0709534,0.0516052,0.0344849,0.0126038,-0.0110779,-0.0343018,-0.0587158,-0.0814819,-0.0997314,-0.110535,-0.11496,-0.114014,-0.109314,-0.0997925,-0.0889893,-0.0737,-0.057373,-0.0415344,-0.0300598,-0.0214233,-0.0114136,-0.00247192,0.00128174,0.000274658,-0.00289917,-0.00900269,-0.0181885,-0.029541,-0.0399475,-0.0471191,-0.0522156,-0.0547791,-0.0532227,-0.0471191,-0.0405273,-0.0340271,-0.0232849,-0.00891113,0.00457764,0.016449,0.0220947,0.0281982,0.0302124,0.0298767,0.0256348,0.019928,0.0150452,0.0105896,0.00805664,0.0083313,0.0116882,0.0169067,0.024353,0.0345764,0.0467834,0.0619507,0.0787964,0.0943604,0.105774,0.110809,0.11142,0.107666,0.0977783,0.08255,0.0640259,0.0453796,0.028595,0.0122681,-0.00100708,-0.0149536,-0.024292,-0.0282593,-0.0288696,-0.0279846,-0.0267029,-0.0234375,-0.0189209,-0.015564,-0.0150452,-0.0167847,-0.0204163,-0.0244446,-0.0316772,-0.0433655,-0.0536194,-0.0632324,-0.0684509,-0.0745544,-0.0759583,-0.0757141,-0.0726318,-0.0669861,-0.0603943,-0.0544434,-0.0506592,-0.0453796,-0.0391846,-0.0340271,-0.0307922,-0.0293884,-0.028595,-0.0273132,-0.0278625,-0.0302734,-0.0308838,-0.0303955,-0.0268555,-0.0232239,-0.019928,-0.0158386,-0.00759888,0.000946045,0.00991821,0.0191956,0.0272522,0.0365906,0.0458374,0.0544434,0.058136,0.0629578,0.0681763,0.0699463,0.0691223,0.0664978,0.0631409,0.057312,0.0534363,0.0462952,0.0393372,0.0325623,0.0280457,0.0254211,0.0224915,0.0192566,0.0148315,0.0118713,0.0102539,0.00924683,0.00650024,0.0038147,-0.000213623,-0.00463867,-0.0114746,-0.0184631,-0.025177,-0.029541,-0.0343018,-0.0396118,-0.0429382,-0.0441589,-0.04422,-0.0421448,-0.0412903,-0.0395203,-0.037323,-0.0345764,-0.0320129,-0.0316162,-0.0332947,-0.0367737,-0.040741,-0.0456238,-0.0502014,-0.0536804,-0.0559082,-0.0547791,-0.0518188,-0.0484009,-0.0422668,-0.0342407,-0.0246277,-0.0149536,-0.00610352,0.00228882,0.0103455,0.0192566,0.0264282,0.0312805,0.0369263,0.0400696,0.0414124,0.0421448,0.0438232,0.0449524,0.0452881,0.0473938,0.0512085,0.053833,0.0549011,0.0553589,0.0554504,0.0556946,0.053772,0.0503235,0.0475159,0.0450439,0.0411987,0.0356445,0.0267639,0.0187988,0.0114746,0.00463867,-0.0015564,-0.00631714,-0.00891113,-0.0113525,-0.0129395,-0.0148926,-0.0172424,-0.0192566,-0.020813,-0.0235596,-0.0249634,-0.0270386,-0.0298767,-0.0317383,-0.0324097,-0.0344849,-0.0349731,-0.0374451,-0.0374451,-0.0363159,-0.037384,-0.0377197,-0.0383911,-0.0377808,-0.0386658,-0.0409546,-0.0418701,-0.0427551,-0.040802,-0.0391846,-0.0378418,-0.0365906,-0.03302,-0.0296021,-0.0248413,-0.0220947,-0.0185242,-0.0144348,-0.0085144,-0.00280762,0.00100708,0.00631714,0.0118103,0.0184631,0.0250854,0.0293274,0.0333557,0.0391235,0.0467834,0.0515442,0.0555115,0.0575256,0.0604553,0.0624084,0.0622253,0.0596008,0.0579224,0.0565186,0.0542297,0.0502625,0.0444946,0.0381775,0.0325623,0.0262451,0.0195923,0.0128174,0.00765991,0.00415039,0.000946045,-0.00296021,-0.00698853,-0.0114136,-0.0158386,-0.0190735,-0.0234985,-0.0273743,-0.0322876,-0.0351562,-0.0371094,-0.0385132,-0.0400085,-0.0394592,-0.0383301,-0.0359192,-0.0351562,-0.033905,-0.0328979,-0.0332947,-0.0324707,-0.0319519,-0.0328064,-0.0335693,-0.0336304,-0.0317993,-0.0278625,-0.0226135,-0.0222778,-0.0215454,-0.0204163,-0.0193176,-0.0177307,-0.0187988,-0.020752,-0.0225525,-0.0229492,-0.0209351,-0.0187988,-0.0126953,0.000457764,0.0102539,0.0175781,0.0237732,0.032074,0.0401306,0.0438843,0.041626,0.0368347,0.0338135,0.0327454,0.0323486,0.0278625,0.0269165,0.0285339,0.0324097,0.0363159,0.0385132,0.0396729,0.0413513,0.0425415,0.040863,0.0378418,0.0357056,0.0374451,0.037262,0.03302,0.0278625,0.0231628,0.0206604,0.016571,0.0100708,0.00228882,-0.00524902,-0.0100098,-0.0146179,-0.019928,-0.0268555,-0.032135,-0.0360413,-0.0367737,-0.0388489,-0.041626,-0.040741,-0.038269,-0.0366516,-0.0365906,-0.0343628,-0.0317383,-0.0288696,-0.025238,-0.0235596,-0.0228882,-0.0205994,-0.0173035,-0.0172424,-0.0179749,-0.0185852,-0.0205994,-0.021759,-0.0212708,-0.0206604,-0.0245056,-0.0249634,-0.0232849,-0.0211487,-0.0179138,-0.0167236,-0.0171204,-0.0136108,-0.0137024,-0.0108643,-0.0131531,-0.0146179,-0.0147705,-0.0175171,-0.0158997,-0.0187378,-0.0145569,-0.00900269,-0.00140381,0.00924683,0.0167236,0.0245667,0.033905,0.041687,0.0495911,0.0517578,0.0556335,0.0587158,0.0644836,0.0672607,0.0658264,0.0667114,0.069519,0.0716858,0.0688477,0.0605469,0.0499878,0.0420227,0.0353088,0.0238342,0.00732422,-0.00845337,-0.0222778,-0.0299988,-0.0387878,-0.0485229,-0.0585938,-0.0610046,-0.0587769,-0.056366,-0.0532837,-0.0453796,-0.0371704,-0.0255737,-0.0171814,-0.0100708,-0.00558472,0.000335693,0.00610352,0.00509644,0.000396729,-0.00369263,-0.00717163,-0.00750732,-0.0065918,-0.012085,-0.0167847,-0.0214844,-0.0189209,-0.0232849,-0.0303955,-0.0253601,-0.0222168,-0.0211487,-0.0297852,-0.0386658,-0.0446167,-0.0478516,-0.0440979,-0.0468445,-0.0466309,-0.0439453,-0.0402832,-0.0305481,-0.0128174,0.00341797,0.015625,0.0275879,0.040802,0.0520935,0.0627441,0.070282,0.0696106,0.069397,0.0681152,0.0627441,0.0606079,0.0608826,0.0623474,0.0634155,0.0614014,0.0545654,0.0483093,0.0461121,0.041748,0.0324707,0.0155029,-0.00228882,-0.0158386,-0.0254211,-0.0350342,-0.0474548,-0.0549011,-0.0558472,-0.0554504,-0.0519409,-0.0469666,-0.0380554,-0.0227661,-0.00979614,-0.000671387,0.0062561,0.0149536,0.024231,0.0335693,0.0443726,0.0445557,0.0324097,0.0144348,0.00247192,-0.00643921,-0.0175171,-0.0273743,-0.0308838,-0.0358276,-0.0401306,-0.0359192,-0.0231628,-0.0234985,-0.0409546,-0.058197,-0.0718689,-0.0814819,-0.085022,-0.0826721,-0.0812073,-0.0858459,-0.0837708,-0.0630798,-0.0345764,-0.0150452,-0.00476074,0.00732422,0.0265198,0.0469055,0.0649109,0.0740356,0.0779724,0.0802002,0.082489,0.081543,0.0761108,0.0690613,0.0704651,0.0787354,0.0755005,0.0602722,0.048645,0.0425415,0.0404053,0.0298767,0.00985718,-0.013092,-0.0312805,-0.0386047,-0.0446167,-0.0472412,-0.0457153,-0.037384,-0.0237732,-0.0105896,0.00302124,0.0219421,0.0438232,0.060791,0.0654907,0.0602722,0.0560303,0.0554504,0.0559082,0.0488586,0.02771,0.00497437,-0.0139465,-0.0304565,-0.0430298,-0.0570374,-0.0747681,-0.0863037,-0.0865173,-0.0858459,-0.0836792,-0.0799866,-0.0851135,-0.0986023,-0.11557,-0.129791,-0.145508,-0.146515,-0.12738,-0.102081,-0.0822754,-0.0727539,-0.0532837,-0.0122681,0.0225525,0.0410767,0.0410767,0.0390625,0.04422,0.0556946,0.068512,0.0683289,0.0665894,0.0706787,0.0730896,0.0706177,0.0654907,0.0612793,0.0610657,0.0599365,0.0509949,0.0310059,0.0250854,0.0293274,0.0310059,0.0220947,0.00195312,-0.0158997,-0.0190735,-0.00665283,0.00973511,0.0267639,0.048584,0.0729675,0.0977173,0.119202,0.137451,0.154236,0.160187,0.154907,0.13974,0.119995,0.0970459,0.0751038,0.0465698,0.00924683,-0.0306091,-0.065094,-0.0964355,-0.121063,-0.139862,-0.151215,-0.155029,-0.15451,-0.157593,-0.159668,-0.152161,-0.149323,-0.155914,-0.167908,-0.171265,-0.159729,-0.137238,-0.107574,-0.07724,-0.0488586,-0.013031,0.0282593,0.0584412,0.0682678,0.0661011,0.0617981,0.0519409,0.0376587,0.0204163,0.00442505,-0.00436401,-0.00900269,-0.0163879,-0.025238,-0.0294495,-0.0302124,-0.028595,-0.0307922,-0.0391846,-0.040741,-0.0263062,-0.00424194,0.0137634,0.0215454,0.0266418,0.0388489,0.0592651,0.0865784,0.121735,0.159393,0.196564,0.232697,0.263092,0.28067,0.285034,0.279327,0.255249,0.214905,0.165771,0.119995,0.0828857,0.0469055,0.0015564,-0.0434875,-0.082489,-0.11142,-0.135437,-0.158722,-0.178528,-0.190399,-0.186371,-0.175293,-0.165771,-0.15979,-0.154755,-0.149994,-0.153961,-0.169128,-0.175781,-0.158661,-0.116241,-0.0718079,-0.040802,-0.00537109,0.0383301,0.0779114,0.0958252,0.0875854,0.0592041,0.0358276,0.0213318,-0.00100708,-0.0387268,-0.0755615,-0.1008,-0.114899,-0.126434,-0.143951,-0.159058,-0.159943,-0.146637,-0.133209,-0.123901,-0.102539,-0.0657043,-0.020874,0.0191956,0.0528259,0.0789795,0.109314,0.14679,0.19101,0.238586,0.284698,0.319183,0.33786,0.34549,0.345154,0.331604,0.30719,0.263275,0.209045,0.155579,0.104309,0.0588684,0.0134888,-0.0378418,-0.0908203,-0.13504,-0.165771,-0.186646,-0.197845,-0.202759,-0.204895,-0.196777,-0.178802,-0.156433,-0.136444,-0.121216,-0.107727,-0.100464,-0.0924072,-0.0814819,-0.0592041,-0.0238342,0.0067749,0.0301208,0.0548401,0.0770569,0.0895386,0.0782471,0.053894,0.0249634,0.00430298,-0.0175171,-0.053833,-0.094635,-0.128937,-0.153076,-0.169861,-0.18866,-0.206177,-0.213501,-0.202759,-0.184631,-0.169403,-0.149323,-0.11496,-0.0635681,-0.00872803,0.0326233,0.0669861,0.108398,0.157318,0.199677,0.235107,0.265503,0.297852,0.330322,0.351074,0.353088,0.337372,0.308258,0.275085,0.241882,0.19986,0.144348,0.0851746,0.0354309,-0.00564575,-0.04953,-0.100067,-0.146576,-0.17804,-0.195038,-0.205719,-0.212006,-0.206451,-0.190552,-0.168243,-0.143494,-0.126831,-0.106171,-0.0843506,-0.0654907,-0.0520935,-0.0422668,-0.0261841,-0.00234985,0.0230103,0.0452881,0.0627441,0.0748291,0.0691223,0.0482483,0.0265198,0.00784302,-0.00857544,-0.0350952,-0.0737,-0.106659,-0.127167,-0.14209,-0.161682,-0.183502,-0.195374,-0.191681,-0.180328,-0.1698,-0.157593,-0.128174,-0.0842896,-0.0397949,-0.003479,0.0270386,0.0689392,0.122284,0.166382,0.19397,0.218445,0.253632,0.291473,0.321075,0.332764,0.325439,0.311462,0.293884,0.269135,0.234436,0.192535,0.142426,0.0913391,0.0429382,-0.00189209,-0.0457764,-0.089386,-0.132812,-0.171082,-0.189941,-0.197998,-0.20047,-0.198517,-0.187866,-0.165436,-0.140076,-0.119812,-0.102692,-0.0860291,-0.0785217,-0.0705261,-0.0583191,-0.0454407,-0.0297852,-0.0152283,0.00234985,0.0193176,0.0400085,0.0489807,0.0401917,0.019989,-0.000213623,-0.0157166,-0.0296021,-0.0492554,-0.0787964,-0.104645,-0.124969,-0.140198,-0.157654,-0.171692,-0.172821,-0.164093,-0.153076,-0.143768,-0.124237,-0.0870361,-0.0452271,-0.00497437,0.0301208,0.0632324,0.101532,0.144104,0.177368,0.202026,0.231598,0.263275,0.292358,0.316498,0.322296,0.313477,0.299744,0.278107,0.246979,0.210876,0.168396,0.11853,0.0691833,0.0229492,-0.0234375,-0.0605469,-0.0976562,-0.141937,-0.180328,-0.200409,-0.199799,-0.193481,-0.18576,-0.177795,-0.162079,-0.141083,-0.112335,-0.0914917,-0.085968,-0.09021,-0.0843506,-0.0644226,-0.0445557,-0.0312805,-0.024353,-0.00683594,0.0220947,0.0481873,0.0461121,0.0254211,0.00491333,-0.00924683,-0.0134277,-0.0255737,-0.0545654,-0.0867004,-0.102875,-0.110535,-0.124573,-0.146851,-0.162811,-0.162354,-0.146118,-0.134766,-0.128845,-0.110413,-0.0752258,-0.0312805,0.00784302,0.0362549,0.0617371,0.0964966,0.14267,0.17865,0.206512,0.230072,0.257935,0.293091,0.316711,0.318512,0.298737,0.281342,0.27066,0.247772,0.203613,0.144836,0.090271,0.0578613,0.0282593,-0.0229492,-0.089325,-0.139679,-0.161011,-0.166901,-0.186188,-0.21402,-0.226105,-0.200684,-0.160187,-0.139008,-0.136169,-0.128937,-0.100403,-0.0773926,-0.0756226,-0.0784607,-0.0680542,-0.041748,-0.0184631,-0.0104065,-0.00463867,0.0172424,0.0461121,0.0546265,0.0335693,0.00274658,-0.0101929,-0.0088501,-0.00805664,-0.0299988,-0.0602112,-0.0832825,-0.0979919,-0.111603,-0.129608,-0.138916,-0.141357,-0.141815,-0.140259,-0.129059,-0.103302,-0.0665894,-0.0303955,-0.00128174,0.0283813,0.0602722,0.0984497,0.139679,0.17804,0.213165,0.24115,0.269653,0.296783,0.311798,0.314362,0.301208,0.27771,0.244019,0.211273,0.176636,0.138733,0.0898132,0.0404663,-0.00524902,-0.044281,-0.0844421,-0.127991,-0.168854,-0.195038,-0.20343,-0.200867,-0.197052,-0.192749,-0.183289,-0.162201,-0.139465,-0.125824,-0.122681,-0.120483,-0.105774,-0.0846863,-0.0647583,-0.0518799,-0.0377808,-0.0140991,0.0142212,0.0383911,0.0462952,0.0444336,0.037262,0.0336304,0.0301208,0.0221558,0.00744629,-0.0120239,-0.032959,-0.0566406,-0.0819397,-0.107849,-0.126984,-0.134491,-0.136566,-0.134094,-0.130127,-0.114838,-0.0923462,-0.0596008,-0.0291138,-0.00228882,0.0279236,0.0621338,0.105377,0.147644,0.185089,0.213501,0.241547,0.273956,0.304169,0.315704,0.30423,0.286835,0.270081,0.254822,0.232269,0.189728,0.135651,0.0860291,0.0482483,0.00247192,-0.0484009,-0.102142,-0.146576,-0.177185,-0.196045,-0.213959,-0.227905,-0.224762,-0.209259,-0.194489,-0.185303,-0.179932,-0.169342,-0.150055,-0.127716,-0.115509,-0.10733,-0.0897217,-0.0621338,-0.0360413,-0.0112,0.013092,0.0361023,0.0525513,0.0597229,0.0563049,0.0481262,0.0469055,0.0466309,0.0297241,0.00213623,-0.0302734,-0.0583801,-0.078125,-0.0993347,-0.121399,-0.139679,-0.145966,-0.141357,-0.131866,-0.114502,-0.0909424,-0.061615,-0.0300598,-0.000610352,0.0322876,0.0758362,0.127106,0.170532,0.203217,0.226898,0.259399,0.297913,0.32785,0.334778,0.319183,0.303894,0.291077,0.275085,0.246521,0.200745,0.144012,0.0932922,0.0465698,-0.00457764,-0.0588684,-0.112213,-0.154968,-0.187988,-0.215698,-0.23999,-0.252899,-0.247528,-0.232086,-0.220734,-0.217529,-0.209473,-0.189728,-0.163879,-0.142822,-0.124908,-0.107178,-0.0819397,-0.0532837,-0.0288696,-0.0050354,0.0245667,0.0552368,0.0713501,0.0678406,0.056366,0.0491943,0.0517578,0.0454407,0.0184631,-0.016449,-0.048645,-0.0711365,-0.0922852,-0.113678,-0.133087,-0.144623,-0.145691,-0.146698,-0.141876,-0.121674,-0.09021,-0.0566406,-0.0297852,-0.00262451,0.0328064,0.0837708,0.139679,0.184906,0.214691,0.242737,0.276764,0.319061,0.353821,0.361206,0.343903,0.319061,0.301666,0.287109,0.259583,0.207733,0.141937,0.0842896,0.0399475,-0.0062561,-0.0610046,-0.12088,-0.165894,-0.194641,-0.218201,-0.240814,-0.251953,-0.241821,-0.226227,-0.222015,-0.222473,-0.209595,-0.17804,-0.147186,-0.133759,-0.130615,-0.117645,-0.0820923,-0.0437012,-0.0241699,-0.0116882,0.0114136,0.0444336,0.0626221,0.0598755,0.0476379,0.0448914,0.049469,0.0383911,0.00878906,-0.0244446,-0.0475159,-0.0647583,-0.0873718,-0.116791,-0.13913,-0.146698,-0.144775,-0.143829,-0.142426,-0.125824,-0.0993958,-0.0715332,-0.0440369,-0.0138245,0.0316162,0.0844421,0.133209,0.170746,0.203949,0.242554,0.283295,0.320343,0.347321,0.356506,0.346313,0.331604,0.318115,0.303955,0.273438,0.21698,0.152618,0.101074,0.0605469,0.0109253,-0.053009,-0.116577,-0.159943,-0.187256,-0.214569,-0.244568,-0.262024,-0.259918,-0.248779,-0.244751,-0.240997,-0.226562,-0.198334,-0.178589,-0.168671,-0.150879,-0.115112,-0.0722046,-0.0504761,-0.0391235,-0.0113525,0.0347595,0.0768433,0.0832214,0.0677185,0.0597229,0.069458,0.0762939,0.0547791,0.0173035,-0.0119324,-0.0267639,-0.0485229,-0.0866394,-0.125824,-0.141144,-0.139404,-0.14328,-0.162201,-0.171936,-0.152496,-0.113434,-0.0802612,-0.0603943,-0.0358276,0.00717163,0.0664978,0.123627,0.169739,0.208527,0.245422,0.283691,0.324707,0.359589,0.375488,0.367371,0.350616,0.335968,0.320068,0.29129,0.240417,0.181061,0.124695,0.0727539,0.0144958,-0.0506592,-0.114288,-0.164551,-0.20047,-0.233887,-0.268188,-0.292084,-0.296448,-0.28537,-0.273895,-0.265442,-0.25235,-0.229126,-0.201752,-0.176788,-0.148254,-0.114899,-0.0769653,-0.0489807,-0.0218811,0.00750732,0.0481262,0.086853,0.102203,0.0964355,0.0836792,0.0875854,0.0909424,0.0786438,0.0461731,0.00759888,-0.0205994,-0.0496521,-0.0848389,-0.123291,-0.147034,-0.158447,-0.166046,-0.178375,-0.188263,-0.173157,-0.139587,-0.100616,-0.073761,-0.0449524,0.0017395,0.0655823,0.132141,0.180054,0.219269,0.259857,0.305695,0.345703,0.374084,0.38678,0.385895,0.380005,0.362274,0.336914,0.300201,0.253815,0.199249,0.139191,0.0783081,0.0124207,-0.0518799,-0.112762,-0.166107,-0.213287,-0.256104,-0.288452,-0.308044,-0.315643,-0.314972,-0.305511,-0.292206,-0.273224,-0.248322,-0.218384,-0.187714,-0.154236,-0.112823,-0.0754395,-0.0399475,-0.00918579,0.0273132,0.0662537,0.0962524,0.111877,0.113281,0.111877,0.10498,0.0926208,0.0729675,0.0455627,0.0137634,-0.0221558,-0.061615,-0.0959167,-0.123352,-0.14267,-0.160614,-0.177032,-0.187531,-0.183167,-0.165375,-0.140472,-0.11322,-0.081604,-0.0405273,0.00946045,0.0620728,0.115784,0.170349,0.220215,0.262482,0.30188,0.336975,0.372009,0.392822,0.394684,0.382416,0.365509,0.344238,0.310669,0.262939,0.20343,0.142487,0.0804138,0.0169678,-0.0491333,-0.117188,-0.178314,-0.227509,-0.263763,-0.292267,-0.313141,-0.323761,-0.325043,-0.310608,-0.290619,-0.269409,-0.251007,-0.229004,-0.197449,-0.158936,-0.114899,-0.0760498,-0.0426941,-0.0110168,0.0249634,0.0632324,0.0967102,0.113892,0.114105,0.110199,0.105103,0.100952,0.0845032,0.0578613,0.0222168,-0.0116882,-0.0428162,-0.074707,-0.105438,-0.130341,-0.14209,-0.150208,-0.158783,-0.164307,-0.157104,-0.130341,-0.0996704,-0.073822,-0.0499268,-0.0148315,0.0367126,0.0950317,0.14563,0.182068,0.218933,0.26236,0.308258,0.340942,0.356323,0.361877,0.363281,0.359802,0.344238,0.31134,0.267578,0.215424,0.159729,0.1008,0.0392761,-0.0308838,-0.103424,-0.164032,-0.211151,-0.248993,-0.284698,-0.312683,-0.32431,-0.320526,-0.306366,-0.288727,-0.270538,-0.252472,-0.22699,-0.195496,-0.160736,-0.122162,-0.0869141,-0.0526123,-0.0255127,0.00134277,0.0305481,0.0624695,0.0887146,0.0975952,0.0975952,0.0956421,0.0986023,0.100677,0.0922852,0.0716248,0.040802,0.0131531,-0.00857544,-0.0297241,-0.0524902,-0.0751648,-0.0930176,-0.112091,-0.12912,-0.137726,-0.129944,-0.114349,-0.0993958,-0.0855103,-0.0619507,-0.0188599,0.0322266,0.0856323,0.129517,0.171539,0.216644,0.265106,0.309937,0.342804,0.359406,0.366699,0.363617,0.352631,0.326233,0.28598,0.23764,0.182068,0.120392,0.0516052,-0.0194702,-0.0821533,-0.140015,-0.196106,-0.246582,-0.28363,-0.303558,-0.315247,-0.323303,-0.322205,-0.309052,-0.285583,-0.268188,-0.252563,-0.230469,-0.198578,-0.160461,-0.128174,-0.0973816,-0.0661621,-0.0311279,0.00335693,0.0379333,0.0679321,0.0886536,0.104218,0.11377,0.119537,0.12442,0.123749,0.114502,0.0954895,0.0708008,0.0462341,0.0250244,0.00247192,-0.0228882,-0.0532227,-0.0779114,-0.0979919,-0.111267,-0.11972,-0.12207,-0.11496,-0.100616,-0.0797424,-0.0502625,-0.00979614,0.0421448,0.0950317,0.139862,0.184235,0.234894,0.293274,0.34256,0.366638,0.374756,0.379272,0.385559,0.373505,0.328583,0.268402,0.205902,0.153961,0.0965881,0.017395,-0.0671692,-0.13858,-0.190887,-0.238068,-0.292603,-0.337646,-0.357513,-0.359589,-0.354767,-0.355652,-0.345581,-0.32074,-0.292603,-0.271088,-0.253479,-0.220886,-0.175354,-0.128845,-0.0925598,-0.0626831,-0.0220032,0.0310059,0.078064,0.104828,0.117523,0.128723,0.141937,0.150269,0.145294,0.135895,0.124695,0.10791,0.0810852,0.0487976,0.0204773,-0.00180054,-0.0299377,-0.0687256,-0.105316,-0.125488,-0.127716,-0.126373,-0.125031,-0.115356,-0.0889893,-0.0469666,-0.00430298,0.0404663,0.0917358,0.151154,0.212738,0.266785,0.317719,0.368805,0.408722,0.429199,0.427979,0.415649,0.397461,0.36377,0.308197,0.236237,0.16745,0.105499,0.0334778,-0.0489807,-0.136658,-0.211731,-0.263824,-0.308594,-0.351959,-0.390869,-0.410522,-0.407715,-0.393951,-0.376587,-0.36026,-0.345978,-0.3237,-0.296234,-0.257172,-0.210663,-0.166443,-0.124298,-0.0796509,-0.024231,0.036499,0.0863037,0.116852,0.134491,0.15033,0.164642,0.168732,0.162476,0.148987,0.134491,0.114105,0.0828857,0.0459595,0.00872803,-0.0248413,-0.0593262,-0.0988464,-0.136719,-0.16214,-0.165161,-0.156372,-0.141022,-0.120331,-0.0898132,-0.0420227,0.0153809,0.0750427,0.13678,0.198242,0.261261,0.327728,0.391357,0.443695,0.471893,0.480347,0.478577,0.469788,0.445648,0.390747,0.316315,0.240479,0.174713,0.109131,0.0245667,-0.0757751,-0.168671,-0.23999,-0.293213,-0.347046,-0.401215,-0.440613,-0.453552,-0.445496,-0.432892,-0.418243,-0.398193,-0.371002,-0.34375,-0.319946,-0.288269,-0.236908,-0.17569,-0.117645,-0.0726929,-0.025238,0.0365906,0.10321,0.152283,0.170593,0.172028,0.176178,0.186188,0.191223,0.178314,0.149536,0.112427,0.072876,0.0315552,-0.0137024,-0.0606689,-0.107239,-0.153229,-0.191803,-0.215576,-0.220734,-0.204712,-0.175018,-0.138,-0.0924072,-0.0319519,0.040741,0.124298,0.207123,0.28302,0.354828,0.4245,0.489807,0.537994,0.56189,0.563568,0.550659,0.521423,0.473633,0.403412,0.321533,0.235962,0.151489,0.0640259,-0.0307922,-0.124634,-0.215363,-0.293701,-0.355896,-0.408112,-0.444824,-0.471008,-0.483948,-0.480743,-0.463013,-0.434021,-0.407867,-0.389923,-0.370209,-0.337921,-0.28952,-0.234772,-0.182159,-0.126495,-0.0708008,-0.00375366,0.0668335,0.127258,0.169861,0.188324,0.194305,0.196106,0.199066,0.19162,0.164551,0.123505,0.0757751,0.0330811,-0.00717163,-0.0570374,-0.114014,-0.168671,-0.207306,-0.229584,-0.240753,-0.236786,-0.214844,-0.169739,-0.113007,-0.0519409,0.0234375,0.110138,0.205444,0.293762,0.367584,0.43811,0.51059,0.575043,0.616699,0.626709,0.610138,0.581085,0.544037,0.49054,0.40744,0.3078,0.206055,0.110535,0.0211487,-0.0749817,-0.17337,-0.272614,-0.360596,-0.426788,-0.474579,-0.504639,-0.521332,-0.52597,-0.517731,-0.498657,-0.463959,-0.426971,-0.391418,-0.361267,-0.330078,-0.285583,-0.225372,-0.157867,-0.091156,-0.0322266,0.0290527,0.0917358,0.149597,0.185364,0.193146,0.185974,0.17746,0.168732,0.151215,0.117645,0.0770569,0.0332947,-0.00698853,-0.0489197,-0.0969238,-0.145355,-0.18631,-0.218994,-0.237518,-0.244171,-0.226715,-0.187775,-0.136322,-0.074646,-0.00335693,0.0869141,0.187775,0.286438,0.374908,0.449127,0.524963,0.600677,0.658844,0.685516,0.675568,0.645569,0.610413,0.570129,0.502014,0.395508,0.27121,0.15564,0.0591125,-0.032074,-0.14267,-0.264709,-0.375488,-0.451141,-0.500061,-0.535583,-0.565491,-0.578461,-0.56543,-0.532959,-0.496094,-0.459381,-0.417725,-0.372223,-0.331268,-0.29538,-0.253906,-0.197388,-0.133972,-0.0719604,-0.0169067,0.0355835,0.0880432,0.136505,0.167664,0.173615,0.165833,0.150726,0.137054,0.115173,0.0862427,0.0546265,0.0153809,-0.0273132,-0.0699463,-0.10907,-0.14209,-0.176239,-0.211731,-0.236176,-0.236176,-0.207733,-0.163696,-0.107727,-0.0395203,0.0496521,0.156921,0.269531,0.372681,0.461548,0.548187,0.629272,0.693695,0.733032,0.736725,0.711884,0.67511,0.625031,0.557465,0.46463,0.345093,0.214905,0.0933533,-0.0152893,-0.124756,-0.235779,-0.346436,-0.443756,-0.519989,-0.571198,-0.601685,-0.615631,-0.612762,-0.594025,-0.562683,-0.51947,-0.465179,-0.408997,-0.35907,-0.316986,-0.279999,-0.234375,-0.173828,-0.112213,-0.0589294,-0.00857544,0.0455627,0.102539,0.152832,0.181396,0.179047,0.165161,0.150482,0.130402,0.0975037,0.0571899,0.0151672,-0.0193176,-0.0457153,-0.0767822,-0.117645,-0.152008,-0.176453,-0.196106,-0.208069,-0.207733,-0.185699,-0.137848,-0.0630798,0.0269775,0.133484,0.25592,0.376038,0.483429,0.574219,0.656982,0.727173,0.770874,0.779266,0.755035,0.713501,0.667114,0.600677,0.509521,0.393616,0.266724,0.13208,-0.00558472,-0.13678,-0.25885,-0.365784,-0.469543,-0.565094,-0.634766,-0.663483,-0.658936,-0.644012,-0.624512,-0.593292,-0.54422,-0.482819,-0.422424,-0.367249,-0.316101,-0.271606,-0.238983,-0.211273,-0.172028,-0.119385,-0.0597839,-0.00415039,0.0463867,0.098114,0.146912,0.178589,0.186707,0.183075,0.171692,0.14859,0.103973,0.0505981,0.0103455,-0.0126953,-0.0312195,-0.0664978,-0.115448,-0.150879,-0.165771,-0.170013,-0.17395,-0.170135,-0.145111,-0.0885315,0.00195312,0.109802,0.234558,0.368805,0.489136,0.589386,0.673553,0.751221,0.813904,0.83725,0.809723,0.749664,0.685181,0.616364,0.526917,0.405029,0.261688,0.122681,-0.00793457,-0.130188,-0.252075,-0.373077,-0.485046,-0.57785,-0.645294,-0.690125,-0.708984,-0.713501,-0.698334,-0.661285,-0.603302,-0.53717,-0.467773,-0.401001,-0.341797,-0.291016,-0.255035,-0.231201,-0.196991,-0.149384,-0.0961609,-0.0440369,0.0151062,0.0836182,0.157593,0.212341,0.230682,0.227173,0.215302,0.191284,0.142487,0.0764465,0.00878906,-0.0322876,-0.0462952,-0.0585938,-0.0768433,-0.0917358,-0.0879211,-0.078186,-0.0748291,-0.0796509,-0.0778503,-0.0562439,-0.00112915,0.0809326,0.192474,0.327515,0.463562,0.579407,0.677185,0.770996,0.849609,0.881134,0.842224,0.746582,0.651154,0.579407,0.504425,0.396576,0.261139,0.128662,0.00979614,-0.100616,-0.220551,-0.351532,-0.481476,-0.601074,-0.706909,-0.784912,-0.812622,-0.796722,-0.760529,-0.715973,-0.664154,-0.589325,-0.495514,-0.400208,-0.333832,-0.299469,-0.281006,-0.263489,-0.231812,-0.185852,-0.134094,-0.0794678,-0.0161743,0.0610657,0.146362,0.227844,0.273102,0.278107,0.262482,0.237396,0.19986,0.141541,0.0748901,0.0189209,-0.00643921,-0.00671387,-0.0100098,-0.0220032,-0.0306091,-0.0272522,-0.0222168,-0.0239563,-0.038269,-0.0473022,-0.0178528,0.0591125,0.179321,0.3255,0.468994,0.592285,0.70047,0.807312,0.89444,0.926971,0.875305,0.752411,0.619385,0.520264,0.442017,0.345245,0.213837,0.0758972,-0.0425415,-0.133484,-0.222565,-0.337524,-0.478241,-0.629333,-0.758911,-0.840668,-0.865967,-0.852539,-0.82074,-0.777374,-0.717529,-0.635834,-0.54068,-0.452026,-0.388672,-0.351959,-0.333954,-0.3302,-0.314484,-0.262482,-0.181213,-0.0887146,-0.00106812,0.0869751,0.181061,0.283417,0.361267,0.390076,0.374573,0.329987,0.264221,0.189728,0.121002,0.0697937,0.0469666,0.0444946,0.0397339,0.0308838,0.0353088,0.053772,0.0634766,0.0496521,0.0162354,-0.00939941,0.0119324,0.0878601,0.203827,0.344025,0.49173,0.625092,0.740143,0.840057,0.913147,0.926117,0.854767,0.712006,0.551422,0.426971,0.333282,0.232483,0.109406,-0.013092,-0.112,-0.184082,-0.257782,-0.36792,-0.504822,-0.640686,-0.763428,-0.859314,-0.914978,-0.927032,-0.897919,-0.838318,-0.764374,-0.679535,-0.582947,-0.488251,-0.414368,-0.37262,-0.361938,-0.362335,-0.345306,-0.292023,-0.203033,-0.0954895,0.0215454,0.145508,0.269592,0.38678,0.472687,0.500885,0.47583,0.413757,0.326843,0.232697,0.144897,0.0798035,0.0512085,0.0606079,0.0794678,0.0931396,0.105225,0.119598,0.129456,0.119263,0.0855713,0.0520935,0.0613403,0.128601,0.240204,0.372833,0.506927,0.635223,0.762543,0.864441,0.909729,0.868927,0.75827,0.611664,0.467438,0.3396,0.219543,0.098053,-0.00933838,-0.0913391,-0.154236,-0.216919,-0.300995,-0.416901,-0.550201,-0.690277,-0.817841,-0.912537,-0.968262,-0.981689,-0.953094,-0.888397,-0.795288,-0.685852,-0.569061,-0.470734,-0.406372,-0.381012,-0.375031,-0.367706,-0.338989,-0.272491,-0.175964,-0.0544434,0.0847778,0.234039,0.378723,0.506714,0.580658,0.588318,0.53717,0.442688,0.334167,0.234222,0.155701,0.109406,0.103973,0.125244,0.155518,0.182495,0.202484,0.210266,0.19812,0.151947,0.0856934,0.0410156,0.0602722,0.147858,0.271271,0.399658,0.524353,0.656982,0.786713,0.871155,0.859924,0.746979,0.593353,0.453217,0.330078,0.200256,0.0671692,-0.0338135,-0.0924683,-0.13208,-0.180054,-0.250458,-0.346588,-0.464172,-0.596436,-0.733368,-0.858124,-0.953278,-1,-0.993347,-0.93988,-0.856171,-0.754761,-0.647522,-0.549591,-0.473816,-0.424286,-0.411011,-0.419678,-0.4133,-0.361084,-0.255981,-0.113342,0.0438843,0.205566,0.369049,0.524231,0.637512,0.678864,0.634216,0.534637,0.420807,0.313812,0.219208,0.155975,0.154175,0.199799,0.2565,0.29953,0.329742,0.344818,0.334106,0.282562,0.196777,0.109985,0.0682678,0.0930786,0.177979,0.292419,0.407043,0.515045,0.617188,0.695312,0.714966,0.649597,0.5159,0.361603,0.230927,0.137726,0.0555115,-0.0317993,-0.103882,-0.143677,-0.167236,-0.207306,-0.298737,-0.433746,-0.572418,-0.697571,-0.808777,-0.902679,-0.965698,-0.973572,-0.911743,-0.807526,-0.703278,-0.618042,-0.547455,-0.483704,-0.443146,-0.445496,-0.477051,-0.491821,-0.452423,-0.351807,-0.205231,-0.0410767,0.133545,0.312897,0.48941,0.629944,0.702484,0.687103,0.609741,0.499725,0.393097,0.311798,0.260468,0.246307,0.274445,0.335907,0.407715,0.46228,0.48349,0.46698,0.417511,0.338196,0.245758,0.17276,0.147919,0.17865,0.243896,0.320679,0.393677,0.459869,0.505585,0.515778,0.462677,0.356445,0.230743,0.12149,0.0319519,-0.0464478,-0.116302,-0.169586,-0.198181,-0.227234,-0.272614,-0.350067,-0.452545,-0.559052,-0.656708,-0.741943,-0.805511,-0.832153,-0.819397,-0.762878,-0.681152,-0.595154,-0.528198,-0.483093,-0.461823,-0.458862,-0.475433,-0.508331,-0.527191,-0.494507,-0.394226,-0.24115,-0.069397,0.0994568,0.267853,0.436096,0.578644,0.652679,0.631683,0.547058,0.448181,0.371063,0.323212,0.295105,0.292877,0.338715,0.429382,0.530792,0.608521,0.637665,0.618469,0.569733,0.495758,0.398865,0.301544,0.235443,0.217865,0.246918,0.294037,0.332275,0.357239,0.367523,0.360138,0.313232,0.219452,0.0925598,-0.029541,-0.124298,-0.190948,-0.248047,-0.298126,-0.337128,-0.363892,-0.38623,-0.426178,-0.493073,-0.574707,-0.644501,-0.688995,-0.706848,-0.702698,-0.672882,-0.612885,-0.529877,-0.44986,-0.401337,-0.382965,-0.389465,-0.412079,-0.45047,-0.492828,-0.506989,-0.46524,-0.360138,-0.213623,-0.0585327,0.102417,0.262085,0.417999,0.530121,0.562622,0.509247,0.4198,0.339661,0.286652,0.25766,0.249725,0.286102,0.378326,0.511536,0.638123,0.717102,0.743744,0.728516,0.688385,0.608246,0.491943,0.373077,0.297455,0.278717,0.300476,0.327911,0.34256,0.345917,0.341949,0.317993,0.247101,0.121155,-0.0318909,-0.173706,-0.28006,-0.358246,-0.42041,-0.471802,-0.5047,-0.512604,-0.505646,-0.515503,-0.555511,-0.605377,-0.64209,-0.653412,-0.646454,-0.627838,-0.590485,-0.528717,-0.446899,-0.368988,-0.321625,-0.302094,-0.304626,-0.3302,-0.373016,-0.412476,-0.409668,-0.348602,-0.240479,-0.112213,0.0151672,0.151337,0.299591,0.437042,0.512146,0.491211,0.396698,0.293884,0.224762,0.189209,0.176025,0.186188,0.250275,0.377716,0.53952,0.682831,0.768585,0.793488,0.777985,0.732025,0.644287,0.519196,0.394775,0.324158,0.31778,0.351196,0.376648,0.378845,0.366577,0.351196,0.317261,0.226776,0.0764465,-0.102631,-0.263489,-0.385376,-0.467102,-0.53537,-0.590729,-0.623169,-0.626099,-0.614166,-0.615021,-0.63028,-0.653015,-0.666107,-0.658203,-0.631866,-0.596588,-0.546509,-0.479584,-0.397797,-0.321686,-0.274109,-0.254028,-0.261139,-0.290192,-0.321808,-0.331207,-0.295441,-0.217255,-0.112885,0.00134277,0.121216,0.258118,0.398865,0.504578,0.520538,0.444427,0.321198,0.220337,0.1633,0.12973,0.107239,0.124298,0.219727,0.386566,0.565491,0.699463,0.76947,0.791138,0.777527,0.719543,0.605774,0.45813,0.34021,0.30188,0.325378,0.359131,0.373749,0.377594,0.387451,0.391815,0.351013,0.232269,0.0502014,-0.141418,-0.303345,-0.422485,-0.516235,-0.602203,-0.664093,-0.68927,-0.679871,-0.656311,-0.651611,-0.661407,-0.668182,-0.664368,-0.644226,-0.616302,-0.582214,-0.530731,-0.456726,-0.373749,-0.307648,-0.273438,-0.2612,-0.262482,-0.278107,-0.294708,-0.289856,-0.236786,-0.139191,-0.0222778,0.0959778,0.21759,0.345428,0.469543,0.545227,0.529449,0.423431,0.283417,0.180542,0.126373,0.103699,0.098053,0.13739,0.254028,0.431152,0.612488,0.747314,0.805023,0.800873,0.758331,0.675171,0.545715,0.394226,0.283813,0.253815,0.282562,0.320618,0.344421,0.362274,0.384705,0.395355,0.347778,0.21402,0.0204163,-0.179871,-0.34671,-0.475647,-0.583618,-0.683014,-0.747711,-0.757446,-0.721802,-0.669525,-0.640259,-0.630798,-0.624847,-0.607666,-0.579254,-0.55188,-0.531555,-0.50235,-0.445648,-0.372955,-0.311676,-0.279877,-0.264893,-0.259521,-0.258331,-0.244629,-0.217316,-0.157867,-0.0611267,0.0578613,0.179993,0.290802,0.382874,0.458252,0.498718,0.47348,0.375031,0.241486,0.136047,0.0809937,0.0809326,0.12323,0.201477,0.325958,0.482758,0.637115,0.759735,0.81189,0.788849,0.716766,0.606659,0.470459,0.339996,0.25,0.226044,0.260925,0.317719,0.370483,0.407196,0.423706,0.41095,0.3396,0.196655,-0.00765991,-0.233765,-0.432831,-0.581665,-0.680267,-0.747925,-0.77887,-0.763214,-0.714417,-0.650055,-0.595367,-0.574554,-0.576965,-0.581085,-0.576569,-0.56308,-0.548981,-0.526581,-0.475311,-0.401001,-0.325836,-0.268188,-0.230133,-0.21283,-0.203552,-0.180542,-0.139801,-0.072876,0.00973511,0.100525,0.198456,0.297638,0.387909,0.459045,0.485901,0.443756,0.339661,0.227386,0.149323,0.111603,0.109924,0.145508,0.231537,0.368195,0.527039,0.667328,0.757782,0.776581,0.732544,0.650879,0.531799,0.390015,0.265503,0.199005,0.211212,0.276367,0.351746,0.414886,0.454712,0.464355,0.424774,0.316162,0.138,-0.091217,-0.322479,-0.513153,-0.64444,-0.725769,-0.767059,-0.762543,-0.718597,-0.660126,-0.596985,-0.551941,-0.542419,-0.5578,-0.57959,-0.594421,-0.595032,-0.583954,-0.555511,-0.494354,-0.412018,-0.3255,-0.245422,-0.186646,-0.16153,-0.153961,-0.136902,-0.0971069,-0.0287781,0.0470581,0.124756,0.211945,0.29953,0.381134,0.448914,0.473694,0.42804,0.320679,0.214081,0.155853,0.14035,0.154236,0.198578,0.285583,0.414215,0.559662,0.682953,0.750061,0.73645,0.66095,0.567047,0.454498,0.323975,0.21524,0.170868,0.213165,0.304504,0.392944,0.456909,0.479858,0.46048,0.396637,0.269806,0.0750427,-0.165985,-0.401337,-0.578125,-0.686646,-0.735229,-0.7388,-0.710663,-0.660339,-0.6008,-0.541626,-0.5065,-0.515839,-0.559784,-0.603424,-0.629333,-0.630066,-0.60965,-0.566925,-0.48941,-0.388672,-0.288177,-0.203278,-0.145508,-0.125763,-0.130737,-0.124634,-0.0853577,-0.0180664,0.0506592,0.122284,0.205566,0.293823,0.376434,0.443756,0.467926,0.420471,0.309998,0.207733,0.160187,0.153961,0.174164,0.22757,0.321808,0.447113,0.575043,0.682678,0.739471,0.713348,0.620667,0.51001,0.396515,0.281616,0.199249,0.187653,0.248993,0.345093,0.429382,0.483093,0.490417,0.452148,0.365112,0.218109,0.00778198,-0.237244,-0.457123,-0.606781,-0.683838,-0.705231,-0.695221,-0.658783,-0.60556,-0.55719,-0.51886,-0.507324,-0.538849,-0.599609,-0.651398,-0.675964,-0.663086,-0.62616,-0.561066,-0.462067,-0.349792,-0.250671,-0.171143,-0.11731,-0.103638,-0.121399,-0.129333,-0.100342,-0.03302,0.0465088,0.12851,0.223022,0.314484,0.395294,0.462738,0.486176,0.432281,0.312897,0.202271,0.153839,0.150543,0.172546,0.229675,0.327576,0.450348,0.574768,0.673279,0.716766,0.681824,0.582214,0.470276,0.36322,0.259796,0.191803,0.196503,0.266113,0.362762,0.439056,0.482269,0.484497,0.432892,0.332886,0.179718,-0.0263062,-0.256439,-0.455963,-0.583221,-0.644897,-0.656982,-0.641998,-0.603973,-0.562897,-0.53537,-0.521423,-0.526093,-0.563477,-0.625427,-0.675964,-0.695099,-0.674286,-0.623566,-0.543549,-0.438446,-0.328918,-0.234558,-0.160278,-0.114166,-0.104645,-0.131073,-0.153839,-0.136841,-0.0672607,0.032135,0.131409,0.232422,0.322968,0.404968,0.471619,0.500671,0.457458,0.341217,0.211395,0.14328,0.141022,0.171478,0.227844,0.314087,0.434631,0.560944,0.66095,0.708801,0.680206,0.57489,0.450409,0.348602,0.25946,0.191071,0.178986,0.24585,0.354156,0.440002,0.480591,0.473907,0.420868,0.325836,0.185181,-0.00704956,-0.234833,-0.437531,-0.566315,-0.616852,-0.623688,-0.607391,-0.573364,-0.537048,-0.519653,-0.51416,-0.523224,-0.559937,-0.622955,-0.681335,-0.702484,-0.675507,-0.616302,-0.532349,-0.427582,-0.321014,-0.226654,-0.157257,-0.117523,-0.112488,-0.141876,-0.174286,-0.166382,-0.103363,-0.00845337,0.0925598,0.20517,0.319275,0.415039,0.479797,0.503235,0.466248,0.362885,0.238739,0.157104,0.129608,0.131073,0.16925,0.262695,0.40744,0.550659,0.651886,0.700195,0.685242,0.600677,0.479248,0.371338,0.269928,0.188324,0.168915,0.226776,0.326721,0.411469,0.470215,0.493164,0.460724,0.372162,0.236572,0.0491333,-0.171143,-0.375305,-0.516235,-0.592957,-0.62384,-0.616638,-0.579987,-0.536163,-0.512817,-0.508057,-0.525421,-0.560333,-0.613617,-0.663086,-0.691467,-0.688721,-0.645447,-0.567047,-0.464355,-0.354828,-0.2565,-0.179596,-0.128601,-0.109406,-0.126923,-0.169006,-0.190002,-0.151489,-0.0505981,0.0751648,0.197052,0.30719,0.392426,0.456238,0.493896,0.48999,0.421814,0.294037,0.174713,0.115845,0.116241,0.157867,0.237579,0.356445,0.491333,0.602814,0.672699,0.687714,0.629944,0.504822,0.374634,0.271881,0.193146,0.158325,0.190796,0.282013,0.387177,0.462402,0.49939,0.486725,0.420135,0.304962,0.141205,-0.0699463,-0.288055,-0.463074,-0.565918,-0.608307,-0.609802,-0.58316,-0.538116,-0.506256,-0.495911,-0.500671,-0.524231,-0.565582,-0.623962,-0.672943,-0.695435,-0.672424,-0.606903,-0.511536,-0.403961,-0.304779,-0.221069,-0.15744,-0.123566,-0.114899,-0.139526,-0.178314,-0.17865,-0.112091,0.00631714,0.131195,0.247589,0.349182,0.417389,0.454041,0.468048,0.446564,0.364014,0.244843,0.151947,0.117371,0.130402,0.180206,0.284698,0.427032,0.552429,0.62738,0.656311,0.640137,0.56308,0.442413,0.332001,0.238739,0.163361,0.155518,0.228851,0.346161,0.441223,0.490814,0.50531,0.475891,0.391357,0.255249,0.0675049,-0.158997,-0.367645,-0.512421,-0.580597,-0.602692,-0.597992,-0.564148,-0.51712,-0.48999,-0.485443,-0.498718,-0.534088,-0.586639,-0.648529,-0.689392,-0.696228,-0.662476,-0.590485,-0.485626,-0.369202,-0.267578,-0.191956,-0.144012,-0.110474,-0.0983276,-0.125366,-0.164642,-0.165161,-0.0924072,0.0377197,0.169189,0.280548,0.356323,0.393951,0.421875,0.44812,0.442963,0.36322,0.236572,0.133972,0.0968323,0.114624,0.182068,0.307037,0.454895,0.563141,0.614349,0.62851,0.609589,0.533234,0.413208,0.302551,0.208588,0.145905,0.159271,0.257324,0.390137,0.484039,0.523102,0.530212,0.490326,0.389191,0.235107,0.0311279,-0.197174,-0.408508,-0.545563,-0.593292,-0.593353,-0.569519,-0.524963,-0.479004,-0.461151,-0.474365,-0.502014,-0.539856,-0.60498,-0.682831,-0.731262,-0.728851,-0.678314,-0.593079,-0.480591,-0.357727,-0.252563,-0.17926,-0.12027,-0.0758972,-0.0641479,-0.100677,-0.153961,-0.167053,-0.106232,0.0200806,0.162415,0.281006,0.346252,0.378662,0.417236,0.465973,0.475647,0.397797,0.259399,0.136047,0.0751648,0.0838928,0.163208,0.296234,0.436981,0.536591,0.584442,0.60611,0.595642,0.533478,0.421356,0.297302,0.187042,0.127991,0.152557,0.260254,0.392334,0.484619,0.52832,0.538116,0.501892,0.405365,0.253357,0.0465088,-0.185699,-0.39624,-0.527924,-0.572876,-0.563019,-0.532074,-0.491547,-0.454895,-0.44101,-0.45462,-0.487732,-0.539673,-0.617584,-0.70343,-0.760132,-0.762817,-0.708923,-0.609192,-0.47934,-0.347931,-0.242493,-0.166107,-0.100281,-0.0467834,-0.02771,-0.0741577,-0.166656,-0.228577,-0.191467,-0.0461731,0.132538,0.262482,0.327301,0.353546,0.404572,0.486389,0.534149,0.465515,0.292145,0.116455,0.0250854,0.0326843,0.111877,0.235718,0.37677,0.494843,0.569397,0.61087,0.622742,0.586304,0.483032,0.343903,0.214355,0.134491,0.140533,0.239136,0.379852,0.478912,0.520874,0.537445,0.529449,0.463898,0.32254,0.119263,-0.116364,-0.344696,-0.50946,-0.571075,-0.555359,-0.515228,-0.480682,-0.458801,-0.448792,-0.456512,-0.481598,-0.527924,-0.614349,-0.721405,-0.804504,-0.814911,-0.752411,-0.639404,-0.500275,-0.364624,-0.255768,-0.174164,-0.0941467,-0.0166321,0.0167236,-0.0276489,-0.143005,-0.251678,-0.262421,-0.144012,0.0591125,0.232758,0.325043,0.352753,0.385651,0.468048,0.547791,0.538116,0.387177,0.169525,0.00491333,-0.0381165,0.0311279,0.155518,0.295837,0.418121,0.506317,0.565247,0.603485,0.610931,0.551331,0.424835,0.26825,0.140533,0.107727,0.188049,0.333954,0.460205,0.516846,0.53241,0.541412,0.524963,0.437653,0.271332,0.0413513,-0.213348,-0.423096,-0.531891,-0.530273,-0.481689,-0.449463,-0.447723,-0.460815,-0.467529,-0.476227,-0.503632,-0.581879,-0.701874,-0.810455,-0.84845,-0.799255,-0.695892,-0.563812,-0.42804,-0.31189,-0.225647,-0.145966,-0.0603333,-0.000946045,-0.0108643,-0.0983887,-0.21637,-0.29068,-0.256104,-0.101074,0.115173,0.28952,0.373962,0.397797,0.429596,0.505249,0.56543,0.518524,0.337311,0.104889,-0.0567017,-0.0732117,0.0335693,0.185181,0.324036,0.432007,0.526428,0.60498,0.650879,0.641479,0.551819,0.394226,0.216583,0.0906677,0.077301,0.1763,0.32019,0.433502,0.493561,0.529388,0.556854,0.546631,0.456848,0.274567,0.0212708,-0.237854,-0.433685,-0.52771,-0.527771,-0.48941,-0.457245,-0.455048,-0.469604,-0.471954,-0.466705,-0.489868,-0.578583,-0.707245,-0.808044,-0.833008,-0.776703,-0.667236,-0.533356,-0.406586,-0.306854,-0.228119,-0.15033,-0.0681763,-0.0158386,-0.0263062,-0.105316,-0.221222,-0.300323,-0.261017,-0.0930176,0.129517,0.297729,0.372955,0.396027,0.431,0.50296,0.554626,0.501617,0.31839,0.0914001,-0.0594482,-0.0681152,0.0396118,0.188324,0.328247,0.442291,0.538605,0.614227,0.655762,0.64035,0.544159,0.377838,0.193542,0.0632324,0.0440979,0.13739,0.288055,0.426849,0.507843,0.552155,0.580811,0.570404,0.48175,0.297638,0.0465088,-0.217194,-0.427856,-0.539459,-0.543427,-0.489319,-0.444885,-0.438782,-0.453827,-0.460205,-0.455902,-0.476715,-0.552338,-0.6745,-0.786652,-0.832092,-0.789398,-0.68161,-0.551208,-0.427704,-0.326233,-0.241333,-0.160675,-0.0809937,-0.0196533,-0.0102539,-0.0654907,-0.159454,-0.246246,-0.257721,-0.151733,0.04422,0.244629,0.364838,0.404022,0.4133,0.451935,0.508453,0.513885,0.399719,0.190948,-0.000946045,-0.0743103,-0.00933838,0.132141,0.276245,0.397461,0.498657,0.582764,0.62973,0.616364,0.533966,0.396027,0.229248,0.081604,0.0101929,0.0555115,0.193756,0.36731,0.506256,0.577637,0.596375,0.575897,0.513428,0.381348,0.168915,-0.0999451,-0.358398,-0.524841,-0.564819,-0.505432,-0.431274,-0.395905,-0.401337,-0.416656,-0.422424,-0.436432,-0.490265,-0.595703,-0.722961,-0.815033,-0.830261,-0.761475,-0.639862,-0.502228,-0.370544,-0.267517,-0.189392,-0.120667,-0.0467224,0.00436401,-0.0015564,-0.065979,-0.160126,-0.237854,-0.229675,-0.104156,0.0960388,0.280212,0.381531,0.414825,0.42981,0.469055,0.518982,0.51059,0.39035,0.181885,0,-0.0594482,0.0115356,0.153412,0.287048,0.396362,0.477783,0.535095,0.564758,0.548584,0.476654,0.343018,0.178253,0.0349731,-0.019989,0.0477295,0.206635,0.387909,0.512695,0.55899,0.557587,0.530609,0.468994,0.334686,0.111267,-0.16095,-0.401154,-0.530273,-0.530457,-0.449188,-0.365112,-0.328583,-0.339539,-0.368256,-0.392334,-0.421936,-0.482544,-0.595825,-0.730591,-0.827179,-0.837311,-0.75296,-0.60965,-0.453033,-0.320679,-0.228912,-0.16449,-0.103149,-0.0307922,0.0151672,0.00476074,-0.0609436,-0.152344,-0.223907,-0.228516,-0.125153,0.0618896,0.25531,0.382202,0.438049,0.461731,0.491882,0.532074,0.531677,0.426514,0.221222,0.0132751,-0.0836792,-0.0383301,0.0910034,0.221558,0.329193,0.419342,0.487915,0.529541,0.527313,0.467865,0.34671,0.184845,0.0310669,-0.0517578,-0.0167236,0.12793,0.314819,0.462219,0.526855,0.535706,0.519867,0.470947,0.35498,0.151276,-0.103485,-0.3349,-0.46759,-0.484619,-0.416718,-0.332214,-0.286102,-0.290344,-0.32605,-0.363434,-0.405762,-0.474365,-0.582947,-0.709808,-0.805359,-0.827637,-0.753357,-0.613159,-0.453705,-0.31778,-0.228058,-0.169342,-0.114685,-0.0516663,-0.000274658,0.0088501,-0.0307922,-0.101685,-0.168396,-0.20108,-0.152283,0.00241089,0.215698,0.400543,0.491547,0.510925,0.50827,0.523346,0.533966,0.478241,0.31778,0.0856323,-0.0972595,-0.131958,-0.0265198,0.124634,0.245422,0.335785,0.410187,0.46402,0.482483,0.454041,0.366119,0.210052,0.0265198,-0.112488,-0.14328,-0.0534363,0.125977,0.326569,0.470062,0.522491,0.512878,0.474426,0.406769,0.276978,0.0793152,-0.149658,-0.339996,-0.433685,-0.416779,-0.327637,-0.238922,-0.206787,-0.235107,-0.298523,-0.358917,-0.404297,-0.460052,-0.552765,-0.668396,-0.747192,-0.736725,-0.634033,-0.490204,-0.350861,-0.250732,-0.200745,-0.178467,-0.143433,-0.0739746,-0.00335693,0.016449,-0.024292,-0.0873108,-0.130127,-0.132965,-0.0618896,0.0873108,0.264099,0.390533,0.430481,0.429138,0.430603,0.449524,0.457977,0.396515,0.239319,0.0288696,-0.109802,-0.102875,0.0103455,0.13028,0.20871,0.276306,0.3461,0.395782,0.407318,0.374908,0.283234,0.13147,-0.0314026,-0.13382,-0.13147,-0.0236206,0.146637,0.324707,0.444641,0.484039,0.482422,0.462219,0.403503,0.274689,0.0810852,-0.128723,-0.295227,-0.375763,-0.359589,-0.277649,-0.209381,-0.203949,-0.243408,-0.288177,-0.320679,-0.353821,-0.408508,-0.493744,-0.595306,-0.667328,-0.666229,-0.584229,-0.468323,-0.366241,-0.290405,-0.235901,-0.179657,-0.100739,-0.00100708,0.0832825,0.106567,0.0733643,0.0176392,-0.0287781,-0.0624084,-0.0605469,0.0128784,0.141754,0.268066,0.343964,0.381622,0.411285,0.440948,0.451599,0.408112,0.279541,0.0812073,-0.100281,-0.176117,-0.136993,-0.0493164,0.0413513,0.136169,0.238983,0.31308,0.341003,0.328308,0.270203,0.153961,-0.00430298,-0.138062,-0.191345,-0.140747,-0.00234985,0.180206,0.351685,0.463287,0.512939,0.515503,0.474426,0.375153,0.212891,0.0151062,-0.172028,-0.296844,-0.331482,-0.280731,-0.191742,-0.131409,-0.128174,-0.160522,-0.194366,-0.215424,-0.252625,-0.33847,-0.467529,-0.588715,-0.645569,-0.619324,-0.536377,-0.431946,-0.324829,-0.217651,-0.121002,-0.0343628,0.0424194,0.108337,0.140411,0.114899,0.0359802,-0.0532837,-0.123901,-0.165497,-0.144684,-0.0484009,0.0972595,0.246918,0.355652,0.420532,0.445435,0.434631,0.392334,0.298981,0.140137,-0.0667114,-0.230011,-0.283356,-0.225494,-0.102692,0.0402832,0.177521,0.280945,0.32663,0.317444,0.27652,0.195312,0.065979,-0.0910645,-0.219788,-0.263489,-0.186249,-0.00296021,0.222412,0.422272,0.536591,0.56604,0.533356,0.454712,0.332886,0.170074,-0.0128784,-0.177917,-0.272766,-0.276428,-0.201874,-0.0925598,-0.0112,0.0142822,-0.0174561,-0.0767212,-0.151276,-0.239532,-0.346313,-0.462891,-0.554504,-0.592743,-0.553284,-0.448456,-0.309875,-0.172546,-0.0682678,-0.00784302,0.0171204,0.0306091,0.0476379,0.0500793,0.017395,-0.04953,-0.118927,-0.164429,-0.174896,-0.132629,-0.0279846,0.114502,0.242737,0.305634,0.313141,0.298737,0.27243,0.234283,0.162811,0.0421448,-0.124634,-0.2612,-0.290741,-0.212402,-0.0851135,0.0273743,0.115906,0.178802,0.212738,0.209137,0.178802,0.117859,0.00967407,-0.122345,-0.229858,-0.250122,-0.155243,0.0358276,0.254242,0.432831,0.529266,0.547119,0.525238,0.472961,0.379852,0.242218,0.0821533,-0.0577087,-0.13678,-0.132812,-0.0542297,0.0552368,0.129181,0.126312,0.0619507,-0.0181274,-0.0887146,-0.162201,-0.253479,-0.361481,-0.449921,-0.484497,-0.451599,-0.368134,-0.273285,-0.187927,-0.124176,-0.0906067,-0.0822754,-0.0789795,-0.0561829,-0.0310669,-0.0326233,-0.0606079,-0.0932922,-0.114105,-0.13147,-0.14389,-0.12262,-0.0620728,0.0162964,0.0919495,0.146973,0.180145,0.183838,0.174774,0.157715,0.110535,0.00598145,-0.143097,-0.250732,-0.28067,-0.237976,-0.147308,-0.041626,0.0549011,0.115509,0.14209,0.146118,0.133484,0.0819397,-0.0105286,-0.108337,-0.178802,-0.184509,-0.0907288,0.092804,0.291748,0.449341,0.537048,0.567108,0.561951,0.507996,0.415039,0.29187,0.161407,0.0508118,-0.00146484,0.0163879,0.0783997,0.155029,0.196045,0.188446,0.131805,0.053772,-0.0267639,-0.107666,-0.206909,-0.317047,-0.396118,-0.432281,-0.418182,-0.361664,-0.288177,-0.213684,-0.164215,-0.139801,-0.131073,-0.115295,-0.092804,-0.0764465,-0.077301,-0.0971069,-0.131409,-0.164886,-0.191803,-0.221008,-0.230927,-0.203705,-0.123016,-0.0119324,0.0747681,0.125977,0.151611,0.157104,0.144836,0.100067,0.0118103,-0.126495,-0.261536,-0.336243,-0.325165,-0.242828,-0.131073,-0.0170593,0.0734863,0.123566,0.132965,0.125305,0.107574,0.0636292,-0.013031,-0.104431,-0.159851,-0.123352,0.0216064,0.228241,0.429657,0.561279,0.601624,0.596497,0.572083,0.529327,0.458191,0.351288,0.227173,0.12851,0.0926208,0.123688,0.199799,0.262482,0.265106,0.203033,0.108734,0.024353,-0.0360413,-0.105438,-0.207397,-0.312073,-0.377655,-0.388184,-0.354492,-0.31073,-0.272491,-0.247528,-0.23764,-0.23584,-0.22699,-0.204163,-0.178253,-0.1604,-0.158325,-0.177856,-0.206238,-0.230072,-0.251953,-0.284485,-0.315826,-0.303223,-0.209869,-0.0691223,0.0455017,0.101959,0.120331,0.126984,0.122498,0.0900574,0.00195312,-0.148193,-0.305786,-0.388184,-0.353302,-0.229004,-0.0877991,0.0247803,0.11087,0.173096,0.205505,0.215424,0.199188,0.147308,0.0502014,-0.070343,-0.148712,-0.11731,0.0401306,0.256714,0.452759,0.573883,0.625977,0.649658,0.651276,0.619995,0.529541,0.390808,0.240753,0.126251,0.0796509,0.104034,0.175293,0.235046,0.241333,0.195648,0.140015,0.102081,0.0686646,0.00396729,-0.115906,-0.25235,-0.353363,-0.39267,-0.386505,-0.37851,-0.374237,-0.361816,-0.331482,-0.294098,-0.257263,-0.216095,-0.181549,-0.160065,-0.162964,-0.185364,-0.217255,-0.257263,-0.306976,-0.365906,-0.41214,-0.41153,-0.330536,-0.177704,-0.024231,0.078186,0.125641,0.138458,0.133698,0.100464,0.0216064,-0.116699,-0.281555,-0.399139,-0.403503,-0.295715,-0.133881,0.0184021,0.14389,0.242737,0.299072,0.309113,0.27597,0.202148,0.0920715,-0.0371094,-0.128723,-0.131744,-0.0168457,0.177032,0.389801,0.573303,0.686859,0.734894,0.731689,0.682007,0.583893,0.442963,0.287323,0.157104,0.0873718,0.0900574,0.15564,0.243011,0.299133,0.296722,0.250061,0.184296,0.108917,0.0148315,-0.112946,-0.256378,-0.37207,-0.443024,-0.467377,-0.467773,-0.448181,-0.410004,-0.35556,-0.306641,-0.269135,-0.240997,-0.221344,-0.209534,-0.211273,-0.22818,-0.257599,-0.295441,-0.334167,-0.369995,-0.391205,-0.394348,-0.341156,-0.220001,-0.0599976,0.074707,0.142883,0.157379,0.145233,0.119812,0.0706787,-0.0142822,-0.141815,-0.280334,-0.356323,-0.31839,-0.18161,-0.0241089,0.092804,0.161133,0.205383,0.233154,0.236969,0.211884,0.141754,0.0349121,-0.0828247,-0.153076,-0.131073,-0.0015564,0.199066,0.403351,0.57074,0.673615,0.718262,0.722748,0.682343,0.589264,0.442871,0.282745,0.155304,0.102692,0.125031,0.203949,0.299408,0.352966,0.344971,0.289001,0.215637,0.133423,0.0348206,-0.0912781,-0.247864,-0.389465,-0.470062,-0.474365,-0.444977,-0.427246,-0.427032,-0.421478,-0.392883,-0.347931,-0.297516,-0.261078,-0.249329,-0.25705,-0.272949,-0.287109,-0.294769,-0.304352,-0.331329,-0.36557,-0.386444,-0.364563,-0.270874,-0.112152,0.0592041,0.175171,0.220734,0.218536,0.192963,0.142487,0.049469,-0.0832214,-0.236847,-0.352203,-0.376312,-0.286316,-0.116577,0.053833,0.17981,0.252411,0.285309,0.280121,0.2341,0.149811,0.0387268,-0.0719604,-0.152161,-0.170868,-0.0917358,0.0878601,0.310059,0.504822,0.630798,0.689056,0.691864,0.654297,0.569794,0.445892,0.301331,0.183228,0.126495,0.137238,0.194489,0.278717,0.360138,0.397919,0.367584,0.280731,0.168396,0.0585938,-0.0459595,-0.156311,-0.278046,-0.390411,-0.460266,-0.470215,-0.446777,-0.425629,-0.404633,-0.364502,-0.312897,-0.26825,-0.244019,-0.233765,-0.238464,-0.258514,-0.287598,-0.322021,-0.346588,-0.355499,-0.345917,-0.319458,-0.279388,-0.229523,-0.154083,-0.0485229,0.0620117,0.130127,0.132019,0.089325,0.0317383,-0.0296631,-0.0906677,-0.154572,-0.215973,-0.262024,-0.259003,-0.185364,-0.0579224,0.0727539,0.159607,0.197784,0.211151,0.209381,0.187592,0.135162,0.0569153,-0.0302734,-0.0967712,-0.116455,-0.0597229,0.0826721,0.270416,0.45752,0.606445,0.690277,0.710876,0.681396,0.607574,0.500732,0.37088,0.246704,0.164429,0.144775,0.18161,0.258392,0.344574,0.398529,0.400482,0.360657,0.279114,0.168396,0.0340271,-0.121399,-0.282898,-0.431335,-0.535309,-0.564697,-0.536438,-0.489197,-0.43457,-0.364838,-0.291473,-0.229675,-0.204437,-0.21759,-0.261139,-0.32074,-0.381073,-0.428986,-0.45047,-0.449585,-0.427368,-0.374908,-0.298859,-0.220398,-0.137787,-0.0505371,0.0377197,0.101074,0.113281,0.0846252,0.0428772,0.00112915,-0.0380554,-0.068512,-0.100128,-0.142151,-0.160278,-0.128448,-0.0462341,0.0553589,0.140808,0.18811,0.200531,0.194641,0.173279,0.139343,0.0774536,-0.00891113,-0.0877991,-0.121887,-0.0881958,0.0147705,0.177032,0.351196,0.508057,0.619995,0.669525,0.660797,0.606049,0.515289,0.403015,0.290283,0.20697,0.179138,0.217102,0.290802,0.369934,0.419128,0.425354,0.388,0.308197,0.190216,0.0535583,-0.0843506,-0.230927,-0.366516,-0.452545,-0.467773,-0.434845,-0.395966,-0.372742,-0.353821,-0.328125,-0.304626,-0.297516,-0.320129,-0.36322,-0.402008,-0.423035,-0.428528,-0.419525,-0.387054,-0.335114,-0.286499,-0.249054,-0.222809,-0.194214,-0.149536,-0.0898132,-0.0279846,0.017395,0.0343628,0.0346985,0.0389404,0.0366516,0.0265808,0.00415039,-0.0436096,-0.114227,-0.169342,-0.167389,-0.115509,-0.0341492,0.0399475,0.0922241,0.127045,0.154968,0.170746,0.161621,0.112427,0.0280457,-0.0495911,-0.078186,-0.0462341,0.0516052,0.201752,0.381073,0.554626,0.681549,0.733612,0.719879,0.667999,0.578857,0.456238,0.329987,0.233429,0.198395,0.229675,0.305023,0.387177,0.441803,0.449188,0.399048,0.30368,0.175171,0.0249634,-0.131348,-0.285248,-0.425964,-0.523438,-0.556641,-0.536835,-0.491882,-0.446777,-0.412354,-0.384979,-0.368042,-0.370819,-0.389069,-0.414093,-0.437775,-0.448334,-0.440002,-0.415497,-0.371399,-0.308044,-0.242279,-0.182343,-0.13147,-0.0971069,-0.0663757,-0.028656,0.0189209,0.06604,0.101288,0.112885,0.103973,0.0838928,0.0624695,0.0405273,-0.00289917,-0.0704651,-0.133026,-0.150269,-0.115448,-0.0498047,0.0269775,0.0888062,0.135986,0.17981,0.199921,0.173492,0.0917969,-0.0176392,-0.104492,-0.144226,-0.13269,-0.0643005,0.0748901,0.270996,0.479126,0.645355,0.733826,0.742065,0.678925,0.566162,0.420135,0.277435,0.176117,0.145508,0.18811,0.27478,0.379608,0.468109,0.511871,0.487579,0.386169,0.228394,0.0476379,-0.12558,-0.285156,-0.418335,-0.503479,-0.532562,-0.505096,-0.448181,-0.395447,-0.36731,-0.362549,-0.361664,-0.357574,-0.367188,-0.398529,-0.420471,-0.414307,-0.387848,-0.353821,-0.318665,-0.275513,-0.236511,-0.213287,-0.198181,-0.186768,-0.166901,-0.132477,-0.0843506,-0.0158997,0.0552368,0.106384,0.130951,0.132202,0.102478,0.0557861,0.00012207,-0.069458,-0.142883,-0.195374,-0.193298,-0.13208,-0.0311279,0.0701904,0.149597,0.216644,0.249054,0.237915,0.178711,0.0899353,-0.00140381,-0.069458,-0.0871277,-0.045105,0.0657654,0.239532,0.435974,0.612427,0.71933,0.743347,0.69632,0.60733,0.488403,0.351135,0.232758,0.15686,0.155243,0.21524,0.296295,0.364899,0.399597,0.397919,0.343628,0.241425,0.091217,-0.081543,-0.242401,-0.378601,-0.479675,-0.542267,-0.563416,-0.544281,-0.497314,-0.444092,-0.403564,-0.371826,-0.347931,-0.332825,-0.335632,-0.364624,-0.401886,-0.421875,-0.413025,-0.384827,-0.350739,-0.313477,-0.264374,-0.189728,-0.0959778,-0.0169678,0.03302,0.0533447,0.057312,0.0646362,0.0822754,0.0919495,0.0808716,0.0515442,0.017395,-0.000335693,0.00643921,0.0158997,0.00744629,-0.00900269,-0.0189819,-0.00738525,0.036499,0.100739,0.155029,0.179596,0.170074,0.131409,0.0809937,0.0361633,-0.00396729,-0.0223389,-0.00537109,0.0396729,0.119659,0.240814,0.392273,0.531677,0.611877,0.608643,0.536438,0.444824,0.354828,0.278778,0.221741,0.181946,0.178131,0.214569,0.275757,0.334961,0.368256,0.353485,0.282349,0.161621,0.00778198,-0.147034,-0.273895,-0.360748,-0.420746,-0.469879,-0.495697,-0.490204,-0.450592,-0.402069,-0.370941,-0.362152,-0.368195,-0.370148,-0.371948,-0.375763,-0.370392,-0.354218,-0.328735,-0.306915,-0.278656,-0.232819,-0.170349,-0.105774,-0.0514832,-0.0113525,0.0159607,0.0323486,0.0516663,0.0764465,0.104767,0.118652,0.122498,0.115631,0.101196,0.094635,0.0909424,0.0822754,0.0567932,0.0235596,0.00308228,0.0038147,0.0280457,0.0585327,0.0830994,0.0909424,0.0865173,0.073822,0.0426025,0.00213623,-0.0444946,-0.0720215,-0.0677185,-0.040802,0.00952148,0.094635,0.220398,0.357849,0.465851,0.508453,0.484558,0.428986,0.353638,0.264954,0.187531,0.136322,0.134369,0.18457,0.262085,0.337921,0.390198,0.402161,0.360809,0.264709,0.12027,-0.0446167,-0.196045,-0.315247,-0.395844,-0.450134,-0.468872,-0.441071,-0.378113,-0.309784,-0.265564,-0.247101,-0.255432,-0.280792,-0.314301,-0.353088,-0.386505,-0.403625,-0.38739,-0.342896,-0.286316,-0.222626,-0.139343,-0.0418091,0.0312805,0.0646362,0.0662537,0.0526733,0.0346985,0.0270996,0.0404053,0.057312,0.077179,0.10202,0.121887,0.139801,0.152008,0.141418,0.10498,0.0440369,-0.0269165,-0.0873718,-0.11618,-0.105896,-0.062561,0.000213623,0.0522766,0.0846252,0.0897217,0.0657654,0.0158386,-0.0496521,-0.107788,-0.14859,-0.155304,-0.101807,0.0204163,0.190674,0.35907,0.480865,0.531128,0.519073,0.463287,0.37384,0.268799,0.172424,0.10791,0.101074,0.154572,0.238922,0.326447,0.393433,0.402008,0.351624,0.251801,0.11087,-0.0425415,-0.179382,-0.288055,-0.365295,-0.399994,-0.385498,-0.3367,-0.271759,-0.227386,-0.218384,-0.229462,-0.251343,-0.275238,-0.304565,-0.338593,-0.366699,-0.364899,-0.323303,-0.258392,-0.187378,-0.126709,-0.0758972,-0.0353088,-0.0116882,-0.0114136,-0.0299988,-0.049408,-0.0638123,-0.0646973,-0.0306702,0.020874,0.0752258,0.116974,0.138733,0.134827,0.117645,0.0841064,0.0307312,-0.0359192,-0.102081,-0.15033,-0.15155,-0.0977783,-0.0163879,0.0622864,0.113007,0.138733,0.130188,0.0861206,0.0228882,-0.0397949,-0.0861206,-0.111328,-0.100006,-0.0383911,0.0874634,0.255585,0.404419,0.48941,0.491821,0.432739,0.349182,0.263214,0.179138,0.109467,0.0759583,0.0935669,0.164703,0.255493,0.329987,0.370667,0.360199,0.296387,0.186035,0.0457153,-0.0997314,-0.218536,-0.292358,-0.326111,-0.328979,-0.30014,-0.251068,-0.197906,-0.163086,-0.15918,-0.183411,-0.217987,-0.249603,-0.283356,-0.31424,-0.331879,-0.315033,-0.259796,-0.184845,-0.115906,-0.061676,-0.0162964,0.0114136,0.0180664,0.0020752,-0.0310059,-0.0693359,-0.10321,-0.114777,-0.0871277,-0.0296631,0.0421448,0.105499,0.138062,0.135315,0.114777,0.0791931,0.0190735,-0.061554,-0.144684,-0.206512,-0.225891,-0.189209,-0.103973,0.00280762,0.0956421,0.141693,0.136444,0.0875244,0.0148315,-0.061554,-0.118591,-0.155518,-0.159454,-0.107391,0.016571,0.19342,0.369141,0.488739,0.525574,0.497864,0.430542,0.343414,0.247986,0.158203,0.104828,0.110077,0.170471,0.255493,0.340149,0.390869,0.385834,0.325897,0.22403,0.0969849,-0.0354309,-0.153839,-0.248779,-0.313019,-0.337585,-0.315979,-0.266968,-0.214081,-0.184235,-0.184753,-0.210266,-0.236176,-0.255096,-0.281342,-0.314575,-0.33255,-0.310944,-0.259674,-0.199341,-0.143555,-0.0997925,-0.0636902,-0.0371704,-0.0245667,-0.0263672,-0.0402832,-0.0567017,-0.0661011,-0.0524902,-0.00369263,0.0643616,0.128601,0.171539,0.182953,0.159729,0.118988,0.0640869,-0.00616455,-0.0894775,-0.166321,-0.200073,-0.185852,-0.131073,-0.0555725,0.0324707,0.0987854,0.116852,0.0819397,0.00570679,-0.0805359,-0.162628,-0.215179,-0.23053,-0.20578,-0.128448,0.00302124,0.174774,0.339325,0.449249,0.480804,0.446228,0.375977,0.284821,0.187988,0.111816,0.0762329,0.0963135,0.158722,0.238525,0.318054,0.379059,0.394165,0.348663,0.265045,0.153168,0.0366516,-0.0587158,-0.132812,-0.183685,-0.210999,-0.218719,-0.203156,-0.171143,-0.149048,-0.163422,-0.196564,-0.231476,-0.255249,-0.263824,-0.272949,-0.281616,-0.276581,-0.24765,-0.210815,-0.173889,-0.14328,-0.129852,-0.126648,-0.117188,-0.103149,-0.0875244,-0.0706787,-0.0557861,-0.0422058,-0.0101318,0.0469055,0.110138,0.165375,0.184357,0.153168,0.097168,0.0505371,0.0185852,-0.0167847,-0.0675049,-0.118317,-0.141205,-0.115509,-0.0449524,0.0507507,0.130402,0.16095,0.131073,0.0592041,-0.0232849,-0.107178,-0.17981,-0.228394,-0.24408,-0.212219,-0.119324,0.0369263,0.213562,0.348938,0.404968,0.381073,0.312225,0.216766,0.112946,0.0176392,-0.0395203,-0.0500793,-0.00958252,0.0869751,0.218201,0.350525,0.44101,0.451599,0.387177,0.279663,0.157593,0.0341492,-0.0727539,-0.1586,-0.215515,-0.228912,-0.190552,-0.117035,-0.046051,-0.0142822,-0.0290527,-0.0663147,-0.107452,-0.147308,-0.193756,-0.24115,-0.271942,-0.273773,-0.245178,-0.195709,-0.139587,-0.0883789,-0.0535583,-0.0308838,-0.0151062,-0.00564575,-0.0174561,-0.0444946,-0.0699463,-0.0792542,-0.0591125,-0.00650024,0.0577087,0.108246,0.124359,0.104095,0.0654907,0.0261841,-0.0194702,-0.085907,-0.156433,-0.20462,-0.208527,-0.167786,-0.0948181,-0.00924683,0.0553589,0.0759583,0.0387878,-0.0412903,-0.124908,-0.18866,-0.225159,-0.234283,-0.206635,-0.130615,-0.0140381,0.130341,0.265289,0.354553,0.373169,0.329468,0.261261,0.190338,0.129181,0.0873108,0.0774536,0.110535,0.184235,0.283966,0.380859,0.438934,0.438446,0.376923,0.281006,0.177795,0.0842285,-0.00717163,-0.0889893,-0.151886,-0.182007,-0.172882,-0.13974,-0.107178,-0.0996094,-0.122406,-0.155243,-0.182068,-0.197662,-0.207581,-0.220062,-0.229401,-0.225983,-0.206635,-0.178986,-0.144684,-0.105499,-0.0721436,-0.0515442,-0.0381775,-0.0248413,-0.00726318,0.0108643,0.0167236,0.0102539,0.00872803,0.0220032,0.049469,0.0814209,0.0960388,0.0761108,0.0283813,-0.0169067,-0.0435486,-0.065918,-0.103424,-0.1604,-0.201813,-0.207306,-0.175629,-0.115295,-0.0467224,-0.00576782,-0.0178528,-0.070282,-0.13208,-0.177856,-0.205383,-0.223816,-0.22757,-0.197723,-0.126312,-0.0178528,0.121552,0.261536,0.355103,0.375824,0.33905,0.286591,0.237457,0.191132,0.145233,0.114685,0.126251,0.190002,0.289612,0.387512,0.451599,0.46048,0.421417,0.350006,0.260468,0.163757,0.0636292,-0.0273743,-0.0995178,-0.144897,-0.15686,-0.137177,-0.101013,-0.0726929,-0.0761719,-0.113556,-0.16153,-0.19101,-0.200073,-0.207306,-0.224487,-0.241333,-0.241547,-0.226044,-0.202606,-0.177368,-0.156586,-0.141541,-0.126099,-0.113159,-0.104034,-0.104645,-0.109192,-0.104706,-0.0773926,-0.0296021,0.0179749,0.0476379,0.0557861,0.0421448,0.0184021,-0.00616455,-0.025177,-0.0475159,-0.0871277,-0.13028,-0.146179,-0.119263,-0.0562439,0.0183105,0.0767212,0.0968323,0.0677185,0.00222778,-0.0714111,-0.135101,-0.176575,-0.196991,-0.197784,-0.162201,-0.0758362,0.0493164,0.184631,0.291412,0.339142,0.330261,0.284027,0.221893,0.155762,0.0919495,0.0511475,0.0504761,0.101624,0.199005,0.308533,0.399139,0.445038,0.444214,0.39389,0.311218,0.221222,0.128448,0.0359802,-0.0461121,-0.105438,-0.126923,-0.106323,-0.0674438,-0.0428772,-0.044281,-0.0733643,-0.111145,-0.144958,-0.169189,-0.191803,-0.220123,-0.244293,-0.250214,-0.233276,-0.205841,-0.187317,-0.176849,-0.162537,-0.140198,-0.123016,-0.120544,-0.122681,-0.129608,-0.132294,-0.119324,-0.0858459,-0.0361023,0.0157776,0.050415,0.0522156,0.0237732,-0.0129395,-0.0397949,-0.0561218,-0.0855103,-0.134369,-0.175018,-0.177795,-0.133698,-0.0579834,0.0263062,0.0874634,0.0975952,0.0608826,-0.0113525,-0.0885925,-0.145905,-0.177246,-0.185974,-0.168518,-0.114777,-0.01651,0.123352,0.273895,0.382629,0.421265,0.392609,0.326385,0.252625,0.179199,0.112488,0.0691833,0.0739746,0.134491,0.237061,0.348602,0.431549,0.461273,0.436432,0.363495,0.262207,0.15329,0.0420227,-0.0704041,-0.170074,-0.227509,-0.228119,-0.183838,-0.12323,-0.0719604,-0.0516052,-0.0635681,-0.0847778,-0.109589,-0.135223,-0.171539,-0.214172,-0.251617,-0.269806,-0.259125,-0.227386,-0.182617,-0.133423,-0.0895386,-0.0583191,-0.0470581,-0.053772,-0.0725403,-0.0939636,-0.107239,-0.100006,-0.0699463,-0.0344849,-0.0017395,0.0245667,0.0297241,0.012207,-0.0171814,-0.048645,-0.089386,-0.147705,-0.204773,-0.229919,-0.202026,-0.130463,-0.0384521,0.04422,0.0869751,0.0742188,0.0137024,-0.0644226,-0.13208,-0.177917,-0.202087,-0.198669,-0.147858,-0.0412903,0.109406,0.270477,0.39624,0.451538,0.428986,0.356171,0.265442,0.17337,0.0933533,0.0426025,0.0452881,0.114624,0.233429,0.358124,0.447845,0.48114,0.457581,0.384491,0.275177,0.148987,0.0317993,-0.0646973,-0.14035,-0.184509,-0.184418,-0.141083,-0.0799866,-0.0304565,-0.0179138,-0.041748,-0.0863647,-0.13208,-0.171753,-0.207581,-0.235291,-0.246765,-0.23819,-0.216705,-0.190674,-0.164825,-0.132629,-0.0991211,-0.0789185,-0.0759583,-0.0890503,-0.113953,-0.136047,-0.141022,-0.12027,-0.0753784,-0.0216675,0.0198669,0.0357666,0.029541,0.00616455,-0.0259094,-0.0555725,-0.0899353,-0.144501,-0.204163,-0.238922,-0.217987,-0.145844,-0.0419312,0.0555725,0.108185,0.10376,0.0434875,-0.0425415,-0.12384,-0.186188,-0.226379,-0.237976,-0.202881,-0.110992,0.0317993,0.199738,0.34671,0.436523,0.446991,0.396454,0.313568,0.221802,0.129456,0.0583191,0.0377808,0.0770569,0.177856,0.307373,0.425293,0.49469,0.502472,0.452362,0.362946,0.252411,0.134308,0.012085,-0.102478,-0.190613,-0.223145,-0.194763,-0.128662,-0.0609436,-0.0196533,-0.0196533,-0.0476379,-0.085907,-0.126984,-0.172821,-0.224976,-0.273956,-0.304779,-0.309448,-0.282806,-0.230408,-0.164825,-0.106171,-0.0662537,-0.0473938,-0.0487366,-0.0687866,-0.102692,-0.12793,-0.128937,-0.103424,-0.0559692,-0.00128174,0.0457764,0.0646362,0.0510864,0.0163879,-0.0171204,-0.0527649,-0.105103,-0.175354,-0.225372,-0.225372,-0.172363,-0.0894775,0.00314331,0.0690613,0.0830994,0.0367737,-0.0454407,-0.130859,-0.200409,-0.246765,-0.264954,-0.228455,-0.136993,-0.00576782,0.147461,0.29483,0.402283,0.436096,0.393555,0.308441,0.212555,0.129791,0.0656433,0.0405273,0.0739746,0.164154,0.295563,0.427582,0.514954,0.530548,0.483154,0.394012,0.285583,0.166718,0.0491333,-0.0553589,-0.136658,-0.175964,-0.161469,-0.108734,-0.0479736,-0.0088501,-0.0071106,-0.0375061,-0.08255,-0.134827,-0.19101,-0.246979,-0.289124,-0.30954,-0.306641,-0.283966,-0.243164,-0.190796,-0.134308,-0.0926208,-0.0719604,-0.0672607,-0.0752869,-0.103149,-0.139069,-0.152344,-0.130066,-0.0747681,-0.00671387,0.053009,0.079071,0.0680542,0.0420227,0.0151672,-0.00866699,-0.0481262,-0.109741,-0.167664,-0.188385,-0.155701,-0.0842285,0.00738525,0.0848999,0.115784,0.0887146,0.0062561,-0.090332,-0.171356,-0.216766,-0.232697,-0.22757,-0.18866,-0.104095,0.0254211,0.173035,0.297638,0.360077,0.346771,0.277771,0.185364,0.0978394,0.0350342,0.00430298,0.0151062,0.0756226,0.185089,0.31543,0.43161,0.49826,0.503296,0.448181,0.351959,0.23819,0.131622,0.0424194,-0.036377,-0.0952454,-0.112274,-0.0761108,-0.00604248,0.0568542,0.0776367,0.0523376,-0.00357056,-0.070282,-0.131622,-0.187103,-0.240662,-0.285706,-0.306854,-0.301819,-0.269653,-0.220673,-0.171417,-0.138397,-0.127319,-0.133484,-0.150726,-0.180664,-0.212891,-0.228729,-0.215424,-0.172211,-0.103546,-0.0299988,0.0246277,0.0418701,0.0288696,0.00262451,-0.0152283,-0.0328064,-0.0676575,-0.117249,-0.148987,-0.138458,-0.0791931,0.0151062,0.112671,0.175842,0.177032,0.120544,0.0280457,-0.0599365,-0.115692,-0.145569,-0.163879,-0.157654,-0.10965,-0.0163879,0.113892,0.243011,0.334442,0.359589,0.316711,0.229584,0.138397,0.0668335,0.0108032,-0.0171814,0.00012207,0.0717468,0.182068,0.298309,0.389679,0.430817,0.421143,0.355774,0.259796,0.162201,0.074707,-0.00827026,-0.0883789,-0.140259,-0.139404,-0.0896606,-0.019989,0.0327454,0.049408,0.0267639,-0.0234375,-0.0818176,-0.122833,-0.147797,-0.179047,-0.22113,-0.254028,-0.261932,-0.24054,-0.201874,-0.164764,-0.139526,-0.137238,-0.144501,-0.161133,-0.180939,-0.191742,-0.185516,-0.160522,-0.118805,-0.0704041,-0.0289917,-0.00958252,-0.0133667,-0.037262,-0.0612793,-0.0745544,-0.0926819,-0.123169,-0.145355,-0.140015,-0.100677,-0.0266418,0.0649719,0.14209,0.174774,0.146515,0.0721436,-0.0143738,-0.0786438,-0.110077,-0.121063,-0.114624,-0.0736389,0.00765991,0.127167,0.258789,0.360199,0.404572,0.387726,0.32489,0.238312,0.151886,0.0718079,0.0109253,-0.00650024,0.0282593,0.119812,0.238403,0.343353,0.402893,0.405762,0.360748,0.276306,0.175842,0.0724182,-0.0310059,-0.130188,-0.209381,-0.231812,-0.189331,-0.108795,-0.0324097,0.00430298,-0.000671387,-0.0323486,-0.0751648,-0.119659,-0.162415,-0.206238,-0.250214,-0.275696,-0.280792,-0.259796,-0.210999,-0.156982,-0.120209,-0.109192,-0.115631,-0.132019,-0.150055,-0.162079,-0.162689,-0.13974,-0.0948181,-0.0414734,0.00891113,0.0343018,0.028656,-0.00515747,-0.0412903,-0.0604553,-0.085022,-0.127502,-0.161072,-0.160797,-0.110138,-0.0212097,0.0833435,0.169861,0.205109,0.174957,0.0908813,-0.00717163,-0.0885925,-0.143158,-0.168732,-0.163361,-0.112762,-0.0158997,0.124756,0.279602,0.407104,0.465302,0.437988,0.350006,0.238739,0.12912,0.0306091,-0.0419312,-0.0598755,-0.00979614,0.104431,0.249725,0.375092,0.444366,0.443085,0.375153,0.267853,0.148987,0.0260925,-0.0959167,-0.210938,-0.284485,-0.283905,-0.207733,-0.0997925,-0.00933838,0.0343628,0.0261841,-0.0124817,-0.0649719,-0.116241,-0.163422,-0.212006,-0.255432,-0.274109,-0.259064,-0.218048,-0.163147,-0.105225,-0.0655823,-0.0609436,-0.0820923,-0.113098,-0.133423,-0.138916,-0.126984,-0.0990601,-0.053009,-0.0017395,0.03302,0.0405273,0.019989,-0.0177917,-0.0587769,-0.0898743,-0.130005,-0.177246,-0.198059,-0.171753,-0.0935669,0.00939941,0.103363,0.156647,0.157776,0.103027,0.0105896,-0.0836792,-0.161469,-0.213837,-0.228729,-0.194885,-0.106567,0.0285339,0.193817,0.350281,0.452423,0.469788,0.410522,0.304779,0.185974,0.0821533,-0.0065918,-0.0545654,-0.0383911,0.0480652,0.190002,0.351074,0.473572,0.519928,0.481476,0.376495,0.243561,0.109253,-0.0212097,-0.145111,-0.245026,-0.29007,-0.260468,-0.165649,-0.0541077,0.027771,0.0536804,0.0230103,-0.0369873,-0.101288,-0.155579,-0.210724,-0.269531,-0.312561,-0.318512,-0.287109,-0.223572,-0.147369,-0.0869751,-0.061554,-0.0720215,-0.100342,-0.119263,-0.121552,-0.113281,-0.0949707,-0.060791,-0.0126038,0.0350342,0.0724182,0.0851135,0.0622864,0.0146179,-0.0400696,-0.0908813,-0.135223,-0.167053,-0.166107,-0.123352,-0.0369873,0.0646362,0.136841,0.161621,0.136383,0.0568542,-0.049469,-0.153564,-0.236389,-0.284637,-0.282074,-0.217926,-0.0996704,0.0624084,0.230072,0.364105,0.430267,0.414703,0.326447,0.199585,0.073761,-0.0238953,-0.078125,-0.0710754,-0.00369263,0.127838,0.301544,0.463898,0.559601,0.56308,0.476898,0.336365,0.182281,0.0303345,-0.106567,-0.208466,-0.2612,-0.242889,-0.154358,-0.0350342,0.0617371,0.114502,0.112213,0.0540161,-0.0380554,-0.134644,-0.214233,-0.275513,-0.316986,-0.332336,-0.313019,-0.253754,-0.170013,-0.0935669,-0.0522156,-0.0578613,-0.0913391,-0.12738,-0.152161,-0.163879,-0.158783,-0.12973,-0.0792542,-0.0171814,0.036438,0.0699463,0.0779724,0.0555115,0.0134277,-0.0434875,-0.109131,-0.1633,-0.179932,-0.151611,-0.0818176,0.0161133,0.106323,0.161011,0.168732,0.122009,0.0301208,-0.0753784,-0.171204,-0.2453,-0.283691,-0.263428,-0.174103,-0.0241699,0.155518,0.313629,0.413025,0.430481,0.367523,0.249939,0.11853,0.000671387,-0.0885315,-0.121063,-0.0834351,0.0246887,0.188599,0.363892,0.495087,0.542603,0.502747,0.390533,0.248779,0.101135,-0.0396118,-0.160126,-0.233887,-0.234772,-0.16275,-0.0454407,0.0662537,0.137787,0.15686,0.125916,0.0502014,-0.0450439,-0.137238,-0.221741,-0.289124,-0.325714,-0.318848,-0.268738,-0.192871,-0.116119,-0.0662537,-0.0593872,-0.0909424,-0.138245,-0.18161,-0.207123,-0.216309,-0.202606,-0.163147,-0.104218,-0.0444336,0.0071106,0.0463867,0.0507507,0.0246277,-0.0279846,-0.0972595,-0.165649,-0.204712,-0.194763,-0.132202,-0.0293884,0.0784607,0.155975,0.194366,0.186707,0.124298,0.0270996,-0.0714722,-0.158051,-0.21759,-0.22757,-0.176453,-0.0583801,0.111877,0.28537,0.406647,0.453217,0.423553,0.325043,0.190002,0.0533447,-0.0546265,-0.106781,-0.0963135,-0.0262451,0.106567,0.281342,0.435181,0.522217,0.5159,0.420593,0.279449,0.124298,-0.0230103,-0.144958,-0.229462,-0.256104,-0.206238,-0.0894775,0.039856,0.131958,0.161011,0.130402,0.0571899,-0.0353699,-0.133148,-0.229523,-0.304169,-0.342133,-0.339996,-0.29129,-0.212677,-0.129272,-0.0708008,-0.0588684,-0.098053,-0.167175,-0.227112,-0.262268,-0.263824,-0.23645,-0.194092,-0.137726,-0.0683289,0.0015564,0.0484009,0.0533447,0.0238953,-0.0265808,-0.0963135,-0.16745,-0.210999,-0.201752,-0.128387,-0.0144348,0.101746,0.189209,0.236847,0.233368,0.182953,0.0996094,-0.00396729,-0.114838,-0.195099,-0.213837,-0.158936,-0.0354919,0.132141,0.30484,0.444427,0.515381,0.500732,0.410339,0.271667,0.116974,-0.0229492,-0.108582,-0.12262,-0.049408,0.0964355,0.270081,0.415558,0.497772,0.496582,0.411346,0.270264,0.102417,-0.0726318,-0.227997,-0.333008,-0.353363,-0.282684,-0.154419,-0.0246277,0.0681763,0.111206,0.102203,0.0458374,-0.0424805,-0.143494,-0.240662,-0.320282,-0.370209,-0.370483,-0.312286,-0.218719,-0.122955,-0.0595398,-0.0522766,-0.0864563,-0.133087,-0.168243,-0.183624,-0.177368,-0.165497,-0.147583,-0.108917,-0.0512085,0.00610352,0.0381775,0.0363159,0.0088501,-0.0471191,-0.114349,-0.171539,-0.191803,-0.161621,-0.0882568,0.00201416,0.0854492,0.154755,0.191406,0.183075,0.137451,0.0575867,-0.0441589,-0.141418,-0.188934,-0.164978,-0.0699463,0.0777283,0.24295,0.399597,0.516235,0.563568,0.526764,0.414825,0.258667,0.0963135,-0.0328064,-0.103821,-0.0897217,0.0193176,0.187531,0.356995,0.475647,0.517639,0.477325,0.366638,0.197784,-0.00241089,-0.200928,-0.36322,-0.446442,-0.419342,-0.301086,-0.147125,-0.0151062,0.0686035,0.0971069,0.0750427,0.00463867,-0.0985107,-0.214294,-0.329193,-0.417572,-0.451813,-0.414703,-0.318726,-0.197784,-0.0920715,-0.036377,-0.0359192,-0.0612183,-0.0881958,-0.108582,-0.124023,-0.140198,-0.15094,-0.136169,-0.0991821,-0.0448914,0.00631714,0.0358276,0.0371094,0.00497437,-0.0467834,-0.0966492,-0.122162,-0.110321,-0.0678406,-0.0105896,0.045105,0.0975952,0.134552,0.14328,0.127106,0.081604,0.00296021,-0.0857849,-0.138672,-0.124634,-0.0444946,0.078186,0.21228,0.342133,0.44812,0.504089,0.49173,0.415222,0.290802,0.143097,0.0162354,-0.0583801,-0.04953,0.0384521,0.174377,0.317657,0.431274,0.483704,0.456055,0.359192,0.210541,0.0260925,-0.167511,-0.336578,-0.427582,-0.414032,-0.319,-0.189941,-0.0687866,0.0195312,0.0649109,0.062561,0.0102539,-0.0820007,-0.200195,-0.322815,-0.422485,-0.469452,-0.452545,-0.386658,-0.289398,-0.186768,-0.111938,-0.0726929,-0.0555115,-0.0457153,-0.0354919,-0.0420837,-0.078064,-0.120331,-0.140472,-0.129059,-0.0958252,-0.0545654,-0.0143738,0.0110168,0.015625,0.00985718,0.00302124,0.0115967,0.0354919,0.0563049,0.0671692,0.0675964,0.0624084,0.0567932,0.0567017,0.058136,0.0403442,-0.00765991,-0.0515442,-0.0545044,-0.0050354,0.0820007,0.178131,0.264709,0.334106,0.378052,0.389526,0.360596,0.292084,0.19516,0.0984497,0.0294495,0.00671387,0.0513306,0.148712,0.265625,0.363953,0.415771,0.41214,0.364624,0.269073,0.125153,-0.0458374,-0.214233,-0.336914,-0.375641,-0.330872,-0.238983,-0.143097,-0.0649109,-0.012085,0.0144958,0.00732422,-0.0397949,-0.131348,-0.250549,-0.370331,-0.45752,-0.48941,-0.463623,-0.395844,-0.312561,-0.243164,-0.186371,-0.125916,-0.0565796,0.0108032,0.0452881,0.0179138,-0.0502625,-0.113434,-0.145355,-0.146912,-0.124359,-0.0932922,-0.0571289,-0.0189209,0.0266418,0.0770569,0.131805,0.181488,0.204437,0.190552,0.140594,0.0777283,0.0370483,0.0224304,0.0152893,-0.00100708,-0.025238,-0.0357666,-0.00262451,0.0735474,0.167328,0.249664,0.300537,0.33075,0.344238,0.329803,0.275513,0.193024,0.108978,0.0401917,0.00314331,0.00967407,0.0748291,0.184631,0.299072,0.372894,0.387909,0.35498,0.285095,0.180145,0.0484009,-0.101013,-0.24054,-0.327972,-0.334106,-0.269653,-0.1745,-0.0932312,-0.0424194,-0.0161743,-0.012085,-0.0339661,-0.0826721,-0.152679,-0.242279,-0.330994,-0.396301,-0.421143,-0.399475,-0.345978,-0.293701,-0.262146,-0.234222,-0.185974,-0.106323,-0.0184021,0.0322266,0.0202026,-0.0287781,-0.0773926,-0.109863,-0.123749,-0.131531,-0.140808,-0.138245,-0.108459,-0.0514832,0.0297241,0.130188,0.217377,0.262604,0.252289,0.197571,0.130005,0.0742188,0.0357666,-0.00161743,-0.0488586,-0.08255,-0.0640869,0.0222778,0.152954,0.287323,0.384369,0.435242,0.444977,0.422272,0.358337,0.259918,0.144104,0.0356445,-0.0420837,-0.0617981,-0.0050354,0.116302,0.25885,0.367462,0.41745,0.40274,0.3367,0.221954,0.0632935,-0.116119,-0.285248,-0.406036,-0.437988,-0.381866,-0.267181,-0.144623,-0.053772,-0.00112915,0.0160522,-0.00866699,-0.0715332,-0.157654,-0.255157,-0.353363,-0.421753,-0.439392,-0.404358,-0.333435,-0.2612,-0.215027,-0.181396,-0.139465,-0.0862427,-0.0241699,0.0212708,0.0225525,-0.0106812,-0.0454407,-0.0682678,-0.0769043,-0.081604,-0.0957642,-0.111816,-0.105499,-0.0716248,-0.0147705,0.0657043,0.151001,0.216583,0.243835,0.218445,0.165039,0.11853,0.0794067,0.0275269,-0.0361633,-0.0884705,-0.0964966,-0.0432739,0.065094,0.202026,0.327057,0.419403,0.467865,0.475494,0.435089,0.336792,0.19812,0.0577087,-0.0433655,-0.0839539,-0.0588684,0.0367737,0.178467,0.320404,0.420593,0.454834,0.422211,0.324707,0.164551,-0.0363159,-0.239075,-0.398468,-0.472626,-0.457062,-0.36731,-0.241821,-0.123016,-0.0312195,0.0293274,0.0430298,0.00274658,-0.0879822,-0.214569,-0.345428,-0.446838,-0.502563,-0.50766,-0.456848,-0.376709,-0.294952,-0.208649,-0.110748,-0.00430298,0.0843506,0.111084,0.0697937,-0.00323486,-0.069519,-0.118988,-0.147522,-0.15625,-0.15564,-0.132477,-0.0833435,-0.00509644,0.0978394,0.205048,0.271484,0.283356,0.248657,0.178131,0.105774,0.0614014,0.0383911,0.0150452,-0.0187378,-0.0422668,-0.0268555,0.0564575,0.180206,0.283234,0.34491,0.376587,0.389191,0.38269,0.342224,0.2659,0.170532,0.0734863,-0.00448608,-0.0303955,0.00665283,0.0963135,0.208313,0.300812,0.353027,0.36142,0.328247,0.247864,0.124756,-0.0379944,-0.214233,-0.348846,-0.40274,-0.379669,-0.307983,-0.227112,-0.158051,-0.0972595,-0.0499268,-0.0322876,-0.0577087,-0.126251,-0.229736,-0.340607,-0.431549,-0.482422,-0.483948,-0.455505,-0.416779,-0.363098,-0.27243,-0.138397,0.00738525,0.115631,0.150055,0.112762,0.0345764,-0.0440369,-0.107574,-0.15799,-0.199799,-0.217651,-0.186646,-0.102539,0.0332336,0.194824,0.333008,0.404419,0.391876,0.299805,0.176575,0.0789795,0.0167236,-0.0355835,-0.0814209,-0.0991211,-0.0549011,0.0666504,0.230927,0.369537,0.446167,0.459198,0.424896,0.36261,0.280121,0.181549,0.0832825,0.00732422,-0.0345764,-0.0229492,0.0475159,0.162201,0.281403,0.35907,0.366852,0.320801,0.252411,0.168732,0.0556335,-0.0908813,-0.234711,-0.324554,-0.334351,-0.278534,-0.203552,-0.145233,-0.11377,-0.0923462,-0.0807495,-0.0907288,-0.132355,-0.205719,-0.292755,-0.37149,-0.435181,-0.468994,-0.463745,-0.432281,-0.397705,-0.353302,-0.278717,-0.171265,-0.0532227,0.0361023,0.0686646,0.0426941,-0.00952148,-0.0555115,-0.0952454,-0.133026,-0.175903,-0.205902,-0.185516,-0.0918884,0.0567017,0.209534,0.325836,0.377594,0.358337,0.289062,0.208466,0.138123,0.0737,0.00134277,-0.0638123,-0.0829468,-0.0149536,0.13147,0.302002,0.434509,0.50174,0.511414,0.475037,0.401886,0.294373,0.172089,0.0534363,-0.0412903,-0.077179,-0.0317383,0.0740967,0.208588,0.324646,0.378601,0.367798,0.31134,0.21463,0.0877991,-0.0631409,-0.223145,-0.349945,-0.395111,-0.353638,-0.263428,-0.168518,-0.0962524,-0.0563049,-0.0464478,-0.0624084,-0.105713,-0.181732,-0.281616,-0.38208,-0.461334,-0.504364,-0.504028,-0.475037,-0.430267,-0.365631,-0.274689,-0.162354,-0.049408,0.0360413,0.0662537,0.0409546,-0.0104065,-0.0566406,-0.104095,-0.154236,-0.200745,-0.228058,-0.204285,-0.108856,0.045105,0.212677,0.341278,0.392944,0.362762,0.288727,0.20697,0.141693,0.0758362,-0.00112915,-0.0700684,-0.0906677,-0.024353,0.124176,0.304962,0.444031,0.515778,0.533295,0.499542,0.421356,0.316772,0.20282,0.0863037,-0.0114746,-0.062561,-0.0420227,0.052948,0.188446,0.305969,0.369049,0.377441,0.337036,0.248718,0.125244,-0.032959,-0.20282,-0.337708,-0.391998,-0.365112,-0.288849,-0.202759,-0.128387,-0.0725403,-0.037262,-0.0322266,-0.0704651,-0.150146,-0.254761,-0.364685,-0.462738,-0.527863,-0.541687,-0.518921,-0.467773,-0.385223,-0.276306,-0.154633,-0.0409546,0.0299988,0.0434875,0.013031,-0.0354919,-0.0934143,-0.156982,-0.214355,-0.253082,-0.259125,-0.202362,-0.072876,0.0974426,0.247864,0.340332,0.363007,0.329803,0.270935,0.20752,0.143433,0.074646,0.00436401,-0.0400696,-0.0191956,0.0830078,0.23645,0.373688,0.463287,0.508179,0.50705,0.460938,0.385559,0.297852,0.202423,0.10141,0.0229492,-0.00241089,0.0367126,0.121002,0.207977,0.264771,0.289856,0.285645,0.244904,0.163635,0.0456238,-0.0954285,-0.223083,-0.3078,-0.330078,-0.306183,-0.261414,-0.204285,-0.145782,-0.0958252,-0.0710754,-0.0799866,-0.124023,-0.194763,-0.283569,-0.381287,-0.462952,-0.507111,-0.50235,-0.45343,-0.369659,-0.263275,-0.154572,-0.0569763,0.00323486,0.0114746,-0.0145569,-0.0619507,-0.11853,-0.18222,-0.238647,-0.270538,-0.260742,-0.183289,-0.0447083,0.108459,0.225372,0.275757,0.266449,0.23053,0.186432,0.137177,0.0858459,0.0359802,-0.00491333,-0.00698853,0.0533447,0.176971,0.316101,0.418518,0.466248,0.471619,0.440674,0.380127,0.30545,0.237305,0.172485,0.116302,0.0917358,0.118652,0.183563,0.253357,0.291626,0.291199,0.259857,0.203094,0.127441,0.0399475,-0.0597839,-0.152283,-0.21637,-0.234894,-0.210663,-0.176514,-0.150604,-0.134491,-0.127655,-0.127777,-0.141479,-0.167572,-0.208862,-0.263885,-0.32785,-0.394775,-0.444305,-0.452271,-0.415375,-0.346252,-0.262207,-0.180267,-0.0948181,-0.0212708,0.0148926,0.0062561,-0.0349121,-0.100464,-0.176697,-0.246857,-0.290466,-0.290527,-0.226379,-0.0913391,0.0758362,0.212158,0.273834,0.261932,0.21637,0.158508,0.0796509,-0.00698853,-0.0775757,-0.109802,-0.0819397,0.00946045,0.143829,0.287506,0.404694,0.478241,0.496643,0.452606,0.361542,0.258057,0.168915,0.107452,0.0667725,0.0669861,0.124756,0.212341,0.297791,0.348999,0.359131,0.332825,0.267792,0.171753,0.0542297,-0.073761,-0.17981,-0.2341,-0.234497,-0.197327,-0.149048,-0.106323,-0.0631409,-0.0381775,-0.0401306,-0.074707,-0.136383,-0.213898,-0.300751,-0.382538,-0.447052,-0.476379,-0.446442,-0.368713,-0.268402,-0.165649,-0.0794678,-0.00616455,0.037323,0.0357056,-0.00558472,-0.0730896,-0.152283,-0.224976,-0.275574,-0.295105,-0.259003,-0.151672,0.00845337,0.1633,0.25531,0.262207,0.217194,0.161957,0.0932312,-0.00424194,-0.10437,-0.169586,-0.174774,-0.112,0.00772095,0.159515,0.300812,0.403168,0.449524,0.436523,0.369263,0.272003,0.167114,0.0808716,0.0187988,-0.00924683,0.0249634,0.118378,0.228119,0.313019,0.34671,0.345306,0.316162,0.249878,0.142609,0.0126953,-0.108734,-0.186432,-0.21402,-0.196381,-0.154907,-0.10733,-0.0553589,-0.0119324,0.00918579,-0.00112915,-0.0426025,-0.109802,-0.201477,-0.308777,-0.401489,-0.451141,-0.435577,-0.359985,-0.261078,-0.157318,-0.0512085,0.0420227,0.10791,0.125641,0.0906677,0.0108032,-0.0947571,-0.202759,-0.279602,-0.304443,-0.263031,-0.154633,-0.00402832,0.148468,0.251282,0.2771,0.243683,0.181152,0.0987854,-0.0128174,-0.13382,-0.222137,-0.238861,-0.183289,-0.0750427,0.068512,0.218597,0.330658,0.384491,0.374237,0.312561,0.222229,0.119141,0.0206604,-0.0548401,-0.0851746,-0.0566406,0.0232239,0.132355,0.228119,0.282074,0.299072,0.279541,0.218658,0.118042,0.000274658,-0.115784,-0.194366,-0.225098,-0.207733,-0.151337,-0.0787354,-0.0108032,0.033905,0.0521545,0.0459595,0.0142212,-0.0472412,-0.141663,-0.255768,-0.346771,-0.379791,-0.345764,-0.259125,-0.151337,-0.040863,0.0552979,0.125488,0.165771,0.172607,0.13678,0.0549622,-0.0565186,-0.162811,-0.231079,-0.238739,-0.172821,-0.0509949,0.0856323,0.197784,0.261536,0.271667,0.231689,0.150055,0.0360413,-0.085907,-0.180542,-0.229675,-0.22403,-0.156586,-0.032959,0.108582,0.226105,0.29187,0.297974,0.259003,0.183899,0.0808105,-0.027771,-0.111542,-0.144165,-0.12149,-0.0516663,0.037323,0.125305,0.186707,0.209534,0.19046,0.129272,0.0370483,-0.0631409,-0.155243,-0.227448,-0.257843,-0.242401,-0.183563,-0.102356,-0.0287781,0.0137634,0.0232849,0.0114746,-0.0170593,-0.0673218,-0.138123,-0.218658,-0.276855,-0.283966,-0.229523,-0.132629,-0.0197449,0.0841064,0.169739,0.227448,0.249115,0.235443,0.185181,0.100952,0.00289917,-0.0799866,-0.127502,-0.108795,-0.0238342,0.0992737,0.216034,0.297241,0.326447,0.31012,0.246857,0.140015,0.0050354,-0.126434,-0.216187,-0.244354,-0.208374,-0.11261,0.0149536,0.145172,0.240326,0.273834,0.245911,0.169464,0.0661011,-0.0454407,-0.150665,-0.222137,-0.234833,-0.187103,-0.102295,-0.00576782,0.0787964,0.131866,0.14093,0.101746,0.0201416,-0.0837708,-0.182678,-0.260406,-0.30603,-0.314819,-0.291351,-0.233887,-0.155182,-0.0787354,-0.0284424,-0.012085,-0.0262451,-0.0608826,-0.115906,-0.188782,-0.257263,-0.284424,-0.262085,-0.198395,-0.101685,0.0144958,0.132629,0.238403,0.311615,0.339935,0.328583,0.276245,0.188995,0.0964355,0.0241089,-0.00912476,0.0135498,0.0932922,0.201538,0.304443,0.377106,0.407532,0.39563,0.329132,0.216248,0.0811462,-0.0386658,-0.117981,-0.15094,-0.139069,-0.0761108,0.0280457,0.140411,0.21994,0.245911,0.215759,0.14093,0.0403442,-0.0681763,-0.170746,-0.236847,-0.254761,-0.233551,-0.184845,-0.120209,-0.0525513,0.000396729,0.0132751,-0.0266418,-0.108063,-0.199188,-0.276245,-0.338135,-0.373749,-0.380188,-0.358002,-0.303101,-0.227051,-0.157043,-0.111877,-0.0923462,-0.098999,-0.13382,-0.189667,-0.24765,-0.278595,-0.272003,-0.226898,-0.143677,-0.0344849,0.0904846,0.21228,0.304352,0.352966,0.360657,0.325287,0.254822,0.175446,0.107391,0.069519,0.0832214,0.156525,0.265045,0.37262,0.452209,0.49173,0.486847,0.427643,0.319275,0.182007,0.0560303,-0.02771,-0.0661011,-0.0587769,-0.000396729,0.103821,0.21524,0.29068,0.309204,0.269257,0.184845,0.0721436,-0.0564575,-0.178131,-0.257782,-0.279724,-0.253418,-0.201691,-0.142609,-0.0819397,-0.037384,-0.0304565,-0.0769043,-0.172089,-0.283417,-0.376923,-0.446503,-0.489807,-0.498383,-0.463959,-0.389069,-0.299194,-0.22348,-0.177704,-0.160675,-0.165649,-0.206116,-0.275513,-0.342285,-0.368866,-0.347382,-0.279266,-0.172546,-0.0386658,0.106903,0.244843,0.344238,0.391022,0.383148,0.327515,0.244415,0.161011,0.0997925,0.0819397,0.125916,0.230469,0.357849,0.46463,0.530945,0.562683,0.547058,0.467926,0.335297,0.190613,0.0794678,0.0134888,-0.00604248,0.0212097,0.102478,0.220947,0.3284,0.378937,0.365906,0.305359,0.204285,0.0766296,-0.0575256,-0.172607,-0.248047,-0.270264,-0.2453,-0.193634,-0.126648,-0.0634766,-0.0312195,-0.0506592,-0.124969,-0.234772,-0.345764,-0.434357,-0.501007,-0.545563,-0.553101,-0.508179,-0.419678,-0.322693,-0.251556,-0.217865,-0.216766,-0.249786,-0.309601,-0.371735,-0.401886,-0.390411,-0.338135,-0.24939,-0.13208,0.00872803,0.152679,0.268799,0.32489,0.319794,0.272156,0.210938,0.158264,0.120605,0.110596,0.149384,0.234955,0.349945,0.457397,0.534027,0.569611,0.55719,0.483704,0.359802,0.222809,0.11972,0.0662537,0.0520935,0.0762939,0.151154,0.268188,0.385498,0.449402,0.436523,0.367035,0.263947,0.135223,-0.00357056,-0.126587,-0.201874,-0.221008,-0.191284,-0.137909,-0.0767212,-0.0224915,-0.0012207,-0.0354919,-0.128601,-0.254974,-0.375305,-0.46402,-0.524902,-0.559875,-0.559052,-0.5112,-0.423492,-0.34021,-0.286774,-0.266785,-0.275696,-0.31543,-0.37088,-0.419922,-0.440125,-0.421539,-0.366791,-0.274445,-0.15451,-0.0151062,0.12738,0.242218,0.304504,0.308136,0.26886,0.217987,0.172546,0.137512,0.122681,0.148193,0.224487,0.331146,0.435638,0.516907,0.558197,0.552155,0.493683,0.390869,0.271881,0.170807,0.103088,0.0712891,0.08255,0.141541,0.238525,0.335632,0.394623,0.397522,0.353546,0.268799,0.155365,0.0319519,-0.0766296,-0.149139,-0.182068,-0.182617,-0.156647,-0.118805,-0.0880432,-0.0748291,-0.0942993,-0.15329,-0.243286,-0.335907,-0.407379,-0.459595,-0.49585,-0.507843,-0.485168,-0.434082,-0.386505,-0.35733,-0.343689,-0.338715,-0.346039,-0.358978,-0.364899,-0.352295,-0.314301,-0.249939,-0.164764,-0.0697937,0.0302734,0.123627,0.197998,0.235962,0.234894,0.206787,0.176178,0.1539,0.15033,0.175903,0.236389,0.319519,0.403015,0.467926,0.512756,0.523834,0.489197,0.408325,0.30014,0.196899,0.124512,0.0918884,0.10141,0.152405,0.233368,0.328064,0.397797,0.412811,0.371155,0.288116,0.175171,0.0482483,-0.0743713,-0.16449,-0.208923,-0.204956,-0.168915,-0.118256,-0.0697327,-0.0453796,-0.0627441,-0.12558,-0.225891,-0.338043,-0.43222,-0.497589,-0.535156,-0.546112,-0.521881,-0.465363,-0.396637,-0.336517,-0.304901,-0.308136,-0.338654,-0.375366,-0.399139,-0.398193,-0.363434,-0.294373,-0.196381,-0.0848999,0.0311279,0.144501,0.240326,0.297516,0.297516,0.254089,0.205963,0.17215,0.162628,0.181274,0.234222,0.316986,0.406586,0.481598,0.531281,0.543213,0.508911,0.428986,0.323822,0.223022,0.143829,0.101807,0.110077,0.164978,0.250732,0.337646,0.397522,0.412354,0.375702,0.288269,0.167114,0.0380554,-0.0745544,-0.159515,-0.213745,-0.225372,-0.198853,-0.147919,-0.0991821,-0.078064,-0.100952,-0.164764,-0.257721,-0.361542,-0.453766,-0.520081,-0.557922,-0.567322,-0.539856,-0.488586,-0.424164,-0.367584,-0.334686,-0.333954,-0.351074,-0.369476,-0.37384,-0.364288,-0.336853,-0.278931,-0.19397,-0.0892029,0.0299988,0.14267,0.235168,0.286163,0.285309,0.255249,0.220459,0.202881,0.203217,0.220398,0.261261,0.324768,0.399658,0.474579,0.530334,0.550262,0.520325,0.447052,0.355438,0.268799,0.196838,0.158203,0.159729,0.199524,0.270752,0.344757,0.396027,0.411194,0.378387,0.298401,0.182617,0.0602112,-0.0553589,-0.146637,-0.199066,-0.214752,-0.20462,-0.171692,-0.138123,-0.127777,-0.154846,-0.221222,-0.311401,-0.399719,-0.477509,-0.538788,-0.579132,-0.586456,-0.560059,-0.510193,-0.450684,-0.401215,-0.379272,-0.383026,-0.397583,-0.400726,-0.38443,-0.350677,-0.296783,-0.223694,-0.132141,-0.0231628,0.0901489,0.187988,0.25531,0.275299,0.256165,0.223419,0.199799,0.196564,0.216522,0.254578,0.309326,0.370209,0.436432,0.49469,0.52832,0.520935,0.467987,0.381958,0.291473,0.21463,0.166779,0.159729,0.190613,0.257599,0.337708,0.403351,0.437531,0.428467,0.372955,0.278198,0.153961,0.0241699,-0.0899963,-0.167236,-0.205505,-0.213837,-0.187866,-0.143005,-0.107788,-0.107056,-0.151611,-0.229004,-0.322021,-0.419006,-0.503021,-0.567444,-0.603485,-0.606445,-0.578247,-0.524017,-0.469604,-0.433075,-0.41275,-0.39798,-0.380615,-0.361816,-0.343903,-0.307129,-0.248718,-0.172211,-0.0813293,0.0222168,0.123169,0.201874,0.2388,0.240662,0.23175,0.218872,0.214966,0.225372,0.252625,0.294159,0.34436,0.404419,0.467041,0.509125,0.512878,0.472229,0.399658,0.313293,0.232025,0.175629,0.162476,0.184753,0.238251,0.307709,0.371399,0.41275,0.413483,0.363495,0.276917,0.170929,0.056366,-0.0504761,-0.139252,-0.191406,-0.204041,-0.179871,-0.143677,-0.122833,-0.132477,-0.176117,-0.243408,-0.324707,-0.403839,-0.467773,-0.514099,-0.537781,-0.538788,-0.521088,-0.485962,-0.446838,-0.425171,-0.417114,-0.417786,-0.412537,-0.392883,-0.357178,-0.299805,-0.222961,-0.132355,-0.028595,0.0733643,0.16095,0.222351,0.243011,0.226044,0.194305,0.174164,0.179321,0.200073,0.236298,0.289062,0.355774,0.425842,0.483215,0.514282,0.504913,0.452881,0.366791,0.271271,0.189606,0.144958,0.139404,0.172821,0.243835,0.334686,0.40564,0.439331,0.423889,0.364838,0.268066,0.143555,0.0134888,-0.105652,-0.188324,-0.234039,-0.233032,-0.194641,-0.143951,-0.109467,-0.116699,-0.165771,-0.250275,-0.348938,-0.440674,-0.51651,-0.571289,-0.603638,-0.60202,-0.56424,-0.502228,-0.446777,-0.409332,-0.386169,-0.371735,-0.357788,-0.344818,-0.314636,-0.259857,-0.186035,-0.0960999,0.00497437,0.110657,0.198517,0.253235,0.272888,0.268982,0.255371,0.245514,0.24765,0.264832,0.298523,0.338715,0.388397,0.450195,0.501801,0.518463,0.493225,0.436096,0.360321,0.273499,0.1922,0.142212,0.138672,0.18335,0.253296,0.325104,0.383209,0.413208,0.393555,0.33075,0.227722,0.0983887,-0.0430908,-0.17691,-0.274841,-0.318665,-0.305573,-0.251617,-0.195221,-0.168671,-0.177368,-0.213959,-0.275238,-0.356567,-0.448792,-0.534698,-0.599792,-0.63208,-0.622223,-0.582611,-0.522217,-0.469788,-0.429871,-0.393555,-0.351074,-0.305969,-0.26236,-0.216095,-0.166443,-0.105499,-0.0268555,0.070282,0.160858,0.223907,0.252289,0.259674,0.264709,0.273956,0.289673,0.304291,0.319611,0.339874,0.369934,0.41684,0.468536,0.501617,0.502747,0.468872,0.404633,0.327576,0.251953,0.194214,0.163696,0.169861,0.219055,0.295837,0.368927,0.412354,0.413483,0.380188,0.308929,0.198456,0.0591125,-0.086792,-0.211609,-0.289185,-0.313354,-0.289398,-0.243683,-0.210327,-0.209259,-0.238739,-0.291931,-0.357849,-0.432159,-0.506042,-0.577515,-0.637451,-0.665558,-0.657867,-0.618134,-0.574432,-0.536438,-0.496765,-0.439728,-0.368469,-0.291473,-0.21106,-0.137573,-0.0666504,0.00167847,0.0766296,0.143097,0.18927,0.207794,0.209381,0.216248,0.242401,0.29187,0.352692,0.404175,0.435699,0.459198,0.491486,0.525635,0.538849,0.51001,0.450531,0.377594,0.30545,0.243744,0.206055,0.202606,0.229126,0.278046,0.335449,0.381348,0.40094,0.389862,0.343414,0.256836,0.135651,-0.00189209,-0.125092,-0.217102,-0.276642,-0.300476,-0.288666,-0.247101,-0.212952,-0.20813,-0.232086,-0.282898,-0.344757,-0.411133,-0.477234,-0.540344,-0.592285,-0.621948,-0.622833,-0.603699,-0.576721,-0.542358,-0.491608,-0.419739,-0.342133,-0.264496,-0.185913,-0.105835,-0.0290527,0.0346375,0.0869751,0.124512,0.145508,0.154297,0.159943,0.175232,0.209991,0.265442,0.328186,0.386322,0.425232,0.453033,0.477722,0.495361,0.49054,0.45343,0.396118,0.333557,0.269928,0.21698,0.193817,0.210205,0.258911,0.322876,0.382416,0.417786,0.425293,0.397034,0.333221,0.238739,0.114441,-0.0290527,-0.156189,-0.237793,-0.271271,-0.264038,-0.235168,-0.203491,-0.196991,-0.222412,-0.269928,-0.33551,-0.405975,-0.474701,-0.535492,-0.579803,-0.597107,-0.585358,-0.554016,-0.524445,-0.511536,-0.499878,-0.471344,-0.420471,-0.355713,-0.279388,-0.189453,-0.0885925,0.0124207,0.107239,0.190125,0.244293,0.260742,0.243683,0.21933,0.20932,0.221069,0.254822,0.301422,0.352966,0.399597,0.445709,0.49469,0.533691,0.533081,0.484161,0.4039,0.307251,0.217255,0.145905,0.109924,0.12027,0.171692,0.241669,0.313232,0.370667,0.394958,0.380859,0.31839,0.206299,0.0542297,-0.106445,-0.239258,-0.318665,-0.345581,-0.333679,-0.296112,-0.251678,-0.223633,-0.2229,-0.247925,-0.295166,-0.360992,-0.437653,-0.508179,-0.560791,-0.585449,-0.583679,-0.567047,-0.547913,-0.522614,-0.481689,-0.41684,-0.331604,-0.243408,-0.157043,-0.0708618,0.0182495,0.105103,0.178528,0.22348,0.238251,0.229858,0.21524,0.211731,0.231598,0.27417,0.324768,0.377991,0.423279,0.462616,0.5,0.528259,0.530334,0.490082,0.419739,0.335236,0.247864,0.167908,0.11557,0.109589,0.149536,0.22229,0.298309,0.353088,0.380005,0.371063,0.317596,0.219543,0.0841675,-0.0789185,-0.233704,-0.346161,-0.396515,-0.383698,-0.329742,-0.265503,-0.223083,-0.217926,-0.247986,-0.303619,-0.368195,-0.441467,-0.522095,-0.592896,-0.633881,-0.63974,-0.615906,-0.574768,-0.52597,-0.479004,-0.429138,-0.37027,-0.294952,-0.203827,-0.106445,-0.0101318,0.0773926,0.157043,0.221619,0.261139,0.270752,0.260864,0.253754,0.2612,0.292816,0.339325,0.393616,0.444092,0.486053,0.525299,0.556915,0.574158,0.558533,0.510406,0.430542,0.329865,0.236847,0.178986,0.164825,0.185577,0.229126,0.27536,0.322876,0.358643,0.366364,0.333618,0.255981,0.127655,-0.0381165,-0.205841,-0.340393,-0.414215,-0.434235,-0.412964,-0.371826,-0.329529,-0.299866,-0.291412,-0.316711,-0.372833,-0.443542,-0.522217,-0.595093,-0.646179,-0.669128,-0.66275,-0.638672,-0.600739,-0.538177,-0.455109,-0.363831,-0.277191,-0.193634,-0.106445,-0.0155029,0.070343,0.151398,0.208862,0.234619,0.238922,0.241425,0.259918,0.294037,0.338043,0.382538,0.426636,0.463562,0.49469,0.52832,0.55368,0.55838,0.529205,0.481934,0.425507,0.355896,0.283478,0.222626,0.194427,0.205048,0.2453,0.293945,0.330475,0.350861,0.357178,0.337372,0.278992,0.175171,0.0280457,-0.134033,-0.276184,-0.370056,-0.407928,-0.400818,-0.371338,-0.344757,-0.324554,-0.320282,-0.333344,-0.35791,-0.405182,-0.478058,-0.56308,-0.630951,-0.667389,-0.675903,-0.670929,-0.649933,-0.604706,-0.529602,-0.4263,-0.314972,-0.205566,-0.102203,-0.00704956,0.0776367,0.147369,0.197906,0.216766,0.211273,0.202759,0.210205,0.243073,0.300476,0.370392,0.433014,0.474915,0.499725,0.523621,0.549927,0.56012,0.537781,0.48584,0.421021,0.350281,0.285095,0.237732,0.214844,0.221558,0.248596,0.285095,0.321289,0.346039,0.355896,0.345978,0.298584,0.201263,0.0587158,-0.0930176,-0.227997,-0.326508,-0.378448,-0.391754,-0.380402,-0.357727,-0.334625,-0.32135,-0.326965,-0.350006,-0.389679,-0.449799,-0.519745,-0.586639,-0.630127,-0.650604,-0.663696,-0.66806,-0.641144,-0.569183,-0.46698,-0.35733,-0.240753,-0.123749,-0.0166321,0.081665,0.166229,0.223145,0.235962,0.213501,0.187988,0.182953,0.210205,0.266571,0.336304,0.410278,0.472015,0.516113,0.554108,0.586304,0.596436,0.57019,0.505981,0.420013,0.331665,0.255707,0.205505,0.189545,0.204559,0.243835,0.295502,0.336182,0.35611,0.354156,0.333832,0.276642,0.172028,0.0273743,-0.12738,-0.262421,-0.351196,-0.387238,-0.384888,-0.361755,-0.339874,-0.329132,-0.32959,-0.337585,-0.355835,-0.389465,-0.437439,-0.500122,-0.565643,-0.612671,-0.633484,-0.638123,-0.63208,-0.607574,-0.553009,-0.465698,-0.356842,-0.234039,-0.109802,0.00112915,0.0953064,0.169525,0.213226,0.223297,0.20932,0.190674,0.186249,0.20813,0.257385,0.328857,0.402161,0.465424,0.509583,0.547729,0.575623,0.581146,0.55603,0.506165,0.439117,0.362091,0.282623,0.228851,0.212158,0.228241,0.264771,0.307648,0.341553,0.358978,0.364838,0.342804,0.285095,0.179993,0.0340271,-0.12738,-0.269257,-0.363007,-0.405762,-0.409515,-0.395294,-0.378998,-0.367859,-0.36618,-0.369385,-0.386902,-0.416992,-0.466705,-0.531219,-0.589661,-0.62442,-0.642426,-0.65329,-0.651001,-0.624359,-0.563904,-0.475311,-0.363556,-0.233612,-0.106323,0.0120239,0.113342,0.198517,0.245575,0.250793,0.227448,0.204102,0.200531,0.220551,0.268066,0.33847,0.418335,0.481598,0.53006,0.572876,0.601807,0.605713,0.572144,0.514374,0.43866,0.35556,0.281738,0.2388,0.230347,0.249054,0.286987,0.329193,0.359406,0.371399,0.365784,0.33725,0.273499,0.162018,0.00616455,-0.149475,-0.277313,-0.356659,-0.387787,-0.389069,-0.379059,-0.375092,-0.374908,-0.379395,-0.387512,-0.408722,-0.446564,-0.502014,-0.565643,-0.617249,-0.643951,-0.655701,-0.664368,-0.667786,-0.64267,-0.574158,-0.474915,-0.358978,-0.232697,-0.107727,0.0071106,0.108459,0.187531,0.229523,0.227234,0.200531,0.178467,0.182831,0.216644,0.286041,0.368652,0.441803,0.494904,0.536713,0.579742,0.605774,0.593414,0.544708,0.482697,0.4151,0.345978,0.291931,0.267181,0.269867,0.295563,0.340546,0.379272,0.399872,0.402618,0.388794,0.350342,0.280792,0.168243,0.0219421,-0.125977,-0.246643,-0.322479,-0.355652,-0.35907,-0.357849,-0.368042,-0.384888,-0.403839,-0.419678,-0.436035,-0.462738,-0.51236,-0.572083,-0.623566,-0.651154,-0.664551,-0.675232,-0.680328,-0.66449,-0.610535,-0.521942,-0.405182,-0.269867,-0.129059,0.00296021,0.113678,0.196045,0.231689,0.227783,0.200348,0.171204,0.158386,0.181,0.245178,0.324768,0.400208,0.46698,0.534241,0.597321,0.635651,0.630188,0.581543,0.509857,0.427368,0.349182,0.290527,0.259735,0.256592,0.288055,0.342224,0.393097,0.42395,0.436646,0.425781,0.378052,0.295898,0.169189,0.0175781,-0.129181,-0.246246,-0.316162,-0.342896,-0.34314,-0.343079,-0.348602,-0.363831,-0.38739,-0.406982,-0.424957,-0.457397,-0.51712,-0.5849,-0.632477,-0.65625,-0.669006,-0.679596,-0.680664,-0.661011,-0.606903,-0.514709,-0.390747,-0.251221,-0.114685,0.0101318,0.119934,0.196716,0.224579,0.210663,0.18161,0.153839,0.138397,0.156647,0.213409,0.289337,0.361206,0.426788,0.496979,0.564758,0.610077,0.610657,0.574036,0.509857,0.427643,0.3414,0.281006,0.260071,0.270081,0.307312,0.364777,0.419525,0.455383,0.474701,0.470886,0.430145,0.336182,0.184906,0.011261,-0.143829,-0.254761,-0.313477,-0.338257,-0.347382,-0.353027,-0.354889,-0.360077,-0.375092,-0.401001,-0.436981,-0.489197,-0.55954,-0.627167,-0.6698,-0.688782,-0.701141,-0.711731,-0.702484,-0.65451,-0.568665,-0.457977,-0.330811,-0.202606,-0.0808716,0.0340881,0.13974,0.208923,0.227325,0.207245,0.17926,0.170868,0.186707,0.232025,0.292877,0.353363,0.405182,0.449524,0.497253,0.540009,0.562561,0.547729,0.50415,0.442627,0.367859,0.297638,0.258575,0.247589,0.259247,0.293945,0.339661,0.374512,0.397583,0.4104,0.402954,0.360992,0.274109,0.140411,-0.00778198,-0.138,-0.230591,-0.279785,-0.300415,-0.310333,-0.324371,-0.340393,-0.349945,-0.354889,-0.365631,-0.388794,-0.435028,-0.499603,-0.558044,-0.601074,-0.636047,-0.670349,-0.697174,-0.69516,-0.651276,-0.572479,-0.457642,-0.317596,-0.168243,-0.0303345,0.0855103,0.172211,0.217865,0.219666,0.184509,0.143829,0.123291,0.135895,0.188782,0.257263,0.32724,0.391541,0.457916,0.519318,0.561615,0.570068,0.535645,0.47934,0.407379,0.32663,0.257263,0.217773,0.213959,0.24469,0.299408,0.354706,0.396851,0.425568,0.433685,0.409515,0.345581,0.233948,0.0892029,-0.0620728,-0.18927,-0.272217,-0.311798,-0.316772,-0.310669,-0.312347,-0.325562,-0.340607,-0.351074,-0.367249,-0.396698,-0.453949,-0.517853,-0.570618,-0.610138,-0.638245,-0.664642,-0.678192,-0.666229,-0.617462,-0.526855,-0.397705,-0.249664,-0.104553,0.0255127,0.132019,0.206848,0.240997,0.231934,0.192474,0.149658,0.126251,0.149261,0.213074,0.295441,0.373077,0.437042,0.48999,0.53067,0.55484,0.548401,0.508911,0.442352,0.356506,0.27478,0.222229,0.208191,0.224091,0.2659,0.317932,0.356049,0.378448,0.388794,0.384216,0.351807,0.279663,0.156372,0.00845337,-0.126038,-0.225891,-0.284424,-0.310394,-0.319183,-0.326385,-0.338715,-0.348114,-0.356049,-0.363556,-0.376923,-0.405701,-0.454376,-0.506714,-0.546112,-0.57074,-0.596497,-0.62442,-0.644104,-0.633362,-0.580322,-0.48175,-0.352356,-0.20752,-0.0655823,0.062561,0.17276,0.249603,0.273499,0.24704,0.198669,0.151733,0.128845,0.149719,0.20993,0.284821,0.361938,0.429871,0.490875,0.537445,0.560211,0.543945,0.495575,0.423615,0.335297,0.250397,0.196655,0.182678,0.210602,0.274628,0.340942,0.379608,0.396637,0.406036,0.398712,0.358185,0.2659,0.122559,-0.0349731,-0.172424,-0.264496,-0.305786,-0.316589,-0.313232,-0.320953,-0.335846,-0.350403,-0.360535,-0.37384,-0.397644,-0.445709,-0.507782,-0.560211,-0.589935,-0.606232,-0.620209,-0.636322,-0.639465,-0.614502,-0.547729,-0.44101,-0.309204,-0.174286,-0.0418091,0.0845032,0.196564,0.274841,0.297455,0.273956,0.229675,0.188721,0.174164,0.199585,0.246521,0.298859,0.351868,0.409729,0.47583,0.526703,0.548401,0.53006,0.484436,0.415436,0.332001,0.253021,0.196442,0.172089,0.186707,0.242004,0.308594,0.355377,0.384094,0.399536,0.393829,0.355042,0.26712,0.129669,-0.0293884,-0.176575,-0.279663,-0.330322,-0.339996,-0.334625,-0.333771,-0.339142,-0.348267,-0.349731,-0.347321,-0.356567,-0.402161,-0.475159,-0.544891,-0.591614,-0.618042,-0.643677,-0.661285,-0.653351,-0.605988,-0.521606,-0.406311,-0.270325,-0.12616,0.00827026,0.124023,0.210144,0.258514,0.263885,0.235107,0.195892,0.164551,0.168671,0.21048,0.268188,0.324219,0.368713,0.414642,0.463959,0.504089,0.513153,0.47934,0.422272,0.356781,0.283142,0.217255,0.172272,0.159119,0.184509,0.247253,0.306915,0.346985,0.377991,0.396118,0.384216,0.338867,0.251404,0.128326,-0.00900269,-0.140747,-0.236725,-0.281006,-0.289398,-0.285828,-0.296173,-0.315918,-0.32663,-0.324829,-0.324158,-0.338867,-0.387177,-0.453705,-0.521271,-0.576721,-0.618713,-0.651947,-0.672485,-0.669403,-0.623627,-0.531952,-0.403015,-0.255981,-0.105774,0.0269165,0.132629,0.208588,0.242218,0.229919,0.188263,0.150269,0.131012,0.144348,0.1922,0.257507,0.326111,0.386169,0.439728,0.484375,0.512756,0.50885,0.467773,0.403015,0.328918,0.254974,0.198242,0.170746,0.171082,0.202026,0.261536,0.322754,0.368927,0.39035,0.392151,0.371155,0.324768,0.235962,0.101746,-0.0405273,-0.158386,-0.231201,-0.266052,-0.278992,-0.284241,-0.297241,-0.315643,-0.330811,-0.341492,-0.345032,-0.361603,-0.406372,-0.470337,-0.529663,-0.56665,-0.591339,-0.623016,-0.655914,-0.661133,-0.610077,-0.509125,-0.381866,-0.251465,-0.117584,0.01651,0.135101,0.234039,0.287994,0.28363,0.239807,0.193817,0.167175,0.179718,0.219208,0.265717,0.31308,0.358643,0.405853,0.455963,0.492157,0.495239,0.454773,0.385773,0.313141,0.245178,0.18692,0.146454,0.128448,0.149323,0.21048,0.283905,0.33725,0.366302,0.373688,0.354828,0.311066,0.236237,0.124298,-0.003479,-0.123505,-0.209656,-0.247864,-0.25296,-0.256165,-0.275238,-0.307037,-0.329651,-0.33905,-0.346252,-0.360596,-0.395782,-0.447845,-0.502228,-0.549988,-0.583557,-0.60965,-0.63858,-0.653229,-0.625092,-0.549133,-0.437317,-0.301147,-0.156097,-0.0140991,0.112946,0.216705,0.281616,0.292084,0.260803,0.225769,0.201355,0.193298,0.213898,0.257172,0.307648,0.355316,0.405365,0.46283,0.510803,0.520081,0.487122,0.429993,0.360992,0.287506,0.220062,0.168457,0.141266,0.14563,0.190399,0.262939,0.329803,0.363159,0.372742,0.35965,0.319946,0.25415,0.148865,0.0160522,-0.109253,-0.199677,-0.24939,-0.272766,-0.284149,-0.295288,-0.315094,-0.34021,-0.364166,-0.380188,-0.398376,-0.427307,-0.475159,-0.525177,-0.56012,-0.587921,-0.618988,-0.649323,-0.666656,-0.651825,-0.593079,-0.491608,-0.364899,-0.225433,-0.0814209,0.0612793,0.192627,0.289795,0.338135,0.333893,0.300598,0.269135,0.240662,0.236237,0.258331,0.29187,0.329651,0.379944,0.442078,0.502411,0.546387,0.553009,0.515106,0.447174,0.366699,0.282013,0.199921,0.13678,0.112946,0.142334,0.210205,0.284149,0.341217,0.378937,0.392426,0.370544,0.31543,0.219727,0.0794678,-0.074707,-0.20639,-0.289337,-0.326233,-0.339264,-0.345154,-0.360992,-0.377594,-0.384155,-0.381744,-0.381287,-0.403015,-0.449402,-0.507935,-0.558197,-0.589874,-0.615784,-0.641876,-0.666718,-0.669128,-0.628998,-0.533752,-0.399536,-0.254089,-0.114227,0.0178528,0.143005,0.257172,0.339142,0.36496,0.345093,0.302765,0.258179,0.234497,0.249603,0.280884,0.306458,0.333435,0.373962,0.433411,0.495697,0.539001,0.545166,0.503815,0.424713,0.335236,0.25415,0.19101,0.146118,0.136658,0.17337,0.241669,0.304688,0.355988,0.398193,0.404968,0.366302,0.289948,0.173553,0.0323486,-0.108643,-0.224762,-0.29953,-0.3367,-0.353363,-0.36792,-0.387787,-0.403015,-0.408661,-0.409454,-0.414368,-0.438873,-0.484711,-0.529785,-0.569794,-0.612274,-0.653229,-0.687592,-0.704559,-0.685364,-0.615692,-0.501129,-0.359802,-0.204956,-0.0561829,0.0883789,0.219452,0.326508,0.383148,0.385315,0.354034,0.309937,0.266968,0.247528,0.261353,0.28537,0.310272,0.347595,0.401947,0.470062,0.53006,0.555359,0.541473,0.487457,0.404694,0.308136,0.225037,0.166504,0.134216,0.141754,0.194824,0.272766,0.34201,0.396973,0.431061,0.420013,0.360138,0.248657,0.104553,-0.0455627,-0.184906,-0.295227,-0.37323,-0.41684,-0.437439,-0.438538,-0.428802,-0.418182,-0.413971,-0.41684,-0.427979,-0.45697,-0.499939,-0.536163,-0.574554,-0.618317,-0.666992,-0.692291,-0.675171,-0.616455,-0.516113,-0.389862,-0.246307,-0.0936279,0.0518188,0.188721,0.312225,0.400543,0.429382,0.401611,0.356995,0.304779,0.255249,0.226501,0.218933,0.225037,0.244965,0.28302,0.347168,0.427795,0.487122,0.506439,0.48349,0.418518,0.334625,0.24469,0.167664,0.118134,0.101288,0.130402,0.216583,0.325165,0.415375,0.479858,0.503815,0.480408,0.415649,0.30545,0.156097,-0.00845337,-0.165222,-0.292206,-0.367706,-0.402008,-0.413025,-0.418396,-0.4263,-0.437653,-0.44397,-0.444305,-0.453613,-0.496185,-0.564636,-0.627502,-0.677582,-0.713745,-0.735779,-0.740601,-0.713623,-0.645569,-0.536591,-0.392822,-0.227173,-0.0617981,0.0940857,0.230408,0.350189,0.443146,0.489868,0.481476,0.435028,0.369202,0.305908,0.271881,0.259796,0.259064,0.27478,0.310883,0.369263,0.44632,0.502075,0.515228,0.484833,0.408508,0.303497,0.197784,0.107391,0.0463867,0.0326233,0.0700073,0.157318,0.264099,0.363892,0.441864,0.485107,0.475494,0.417053,0.31369,0.161407,-0.0128784,-0.175293,-0.297302,-0.36618,-0.397369,-0.404846,-0.39859,-0.392212,-0.38382,-0.371277,-0.368256,-0.394501,-0.452271,-0.530945,-0.606506,-0.667114,-0.713165,-0.737579,-0.746033,-0.727783,-0.663483,-0.546783,-0.395447,-0.23645,-0.0846252,0.0565796,0.193298,0.316833,0.412476,0.464081,0.453888,0.400055,0.32724,0.2612,0.226105,0.218201,0.226654,0.254242,0.305634,0.379517,0.466187,0.538605,0.563904,0.536316,0.455566,0.345093,0.237579,0.149811,0.0898743,0.0716858,0.103027,0.187195,0.301605,0.41449,0.500061,0.540741,0.516052,0.437378,0.315308,0.148041,-0.0399475,-0.214569,-0.352966,-0.435242,-0.47113,-0.472015,-0.450012,-0.428986,-0.413696,-0.402283,-0.40329,-0.432495,-0.486389,-0.555237,-0.619476,-0.671875,-0.712067,-0.723572,-0.711151,-0.679932,-0.612549,-0.510071,-0.37851,-0.235779,-0.089325,0.0603333,0.204712,0.335236,0.436584,0.495636,0.496429,0.444489,0.366119,0.276703,0.208466,0.171478,0.163635,0.185364,0.235962,0.308136,0.404968,0.498444,0.546112,0.540802,0.478119,0.365448,0.246033,0.14563,0.0718079,0.0428162,0.065033,0.148529,0.284821,0.426575,0.533295,0.5961,0.592285,0.519928,0.395111,0.225647,0.0231628,-0.179382,-0.349335,-0.449921,-0.483704,-0.477997,-0.446167,-0.415497,-0.398132,-0.386993,-0.389587,-0.41806,-0.470123,-0.549591,-0.63623,-0.695221,-0.722961,-0.718201,-0.687439,-0.650726,-0.601532,-0.517975,-0.403168,-0.26355,-0.115234,0.0260315,0.153625,0.269989,0.373169,0.45932,0.497101,0.467987,0.396576,0.302002,0.207123,0.148041,0.127716,0.135834,0.169861,0.226044,0.312561,0.425446,0.515289,0.547241,0.519196,0.429535,0.307251,0.198517,0.113953,0.0653076,0.0670471,0.121002,0.237793,0.397797,0.543274,0.640472,0.667389,0.607239,0.485168,0.321289,0.119659,-0.103638,-0.307251,-0.455444,-0.523102,-0.523499,-0.488312,-0.437042,-0.409119,-0.404297,-0.408386,-0.42865,-0.47168,-0.53598,-0.623413,-0.694366,-0.722626,-0.717194,-0.679596,-0.627167,-0.578857,-0.512482,-0.416443,-0.292145,-0.1492,-0.0100098,0.112823,0.21759,0.313904,0.403015,0.47464,0.491089,0.444366,0.357849,0.250336,0.154358,0.0984497,0.0848389,0.100677,0.142883,0.206177,0.30127,0.412689,0.490997,0.518646,0.492157,0.406647,0.293762,0.189789,0.112213,0.0808105,0.110474,0.196899,0.335449,0.492065,0.621002,0.692413,0.68866,0.601196,0.452759,0.258331,0.0314636,-0.194305,-0.381531,-0.504822,-0.551666,-0.544556,-0.508789,-0.465424,-0.437378,-0.425018,-0.427521,-0.460999,-0.522888,-0.591278,-0.65564,-0.695648,-0.701477,-0.680878,-0.634979,-0.575165,-0.513367,-0.423096,-0.313751,-0.193207,-0.0696106,0.0479126,0.15451,0.249603,0.334778,0.410461,0.463684,0.467102,0.416382,0.329742,0.224976,0.129272,0.0681763,0.0429382,0.0461121,0.0802612,0.143433,0.23584,0.346375,0.433411,0.472748,0.458527,0.385223,0.281891,0.186859,0.123688,0.104095,0.145233,0.241608,0.381073,0.52887,0.65274,0.72522,0.722809,0.634552,0.481018,0.276764,0.0422668,-0.190552,-0.381683,-0.508911,-0.560333,-0.555298,-0.520081,-0.475891,-0.442139,-0.428192,-0.432739,-0.469666,-0.529449,-0.593292,-0.655029,-0.70047,-0.710205,-0.682831,-0.617035,-0.537506,-0.456512,-0.367645,-0.268311,-0.164368,-0.0584412,0.0404053,0.12616,0.208862,0.290619,0.366241,0.426575,0.444092,0.412018,0.337585,0.231689,0.121399,0.0441589,0.00222778,-0.00872803,0.0152893,0.0789795,0.179596,0.3078,0.4198,0.483368,0.483551,0.423431,0.334625,0.25296,0.192871,0.158264,0.1698,0.244293,0.369476,0.521149,0.660614,0.745911,0.743683,0.654419,0.501556,0.308044,0.0842285,-0.152344,-0.368134,-0.523895,-0.596497,-0.595581,-0.552612,-0.498047,-0.458466,-0.449463,-0.453949,-0.475098,-0.521759,-0.582947,-0.649323,-0.705444,-0.715759,-0.668732,-0.581329,-0.483276,-0.395569,-0.314087,-0.233154,-0.153229,-0.0679321,0.0182495,0.0949707,0.161346,0.225494,0.291199,0.363159,0.413757,0.413696,0.359253,0.260529,0.141205,0.0394592,-0.0260315,-0.0515442,-0.0411377,0.00866699,0.0977173,0.221344,0.35437,0.454437,0.501801,0.484619,0.414764,0.3237,0.251007,0.206787,0.199463,0.241943,0.342224,0.486237,0.634888,0.743408,0.778442,0.721558,0.582336,0.387451,0.160736,-0.0838928,-0.318176,-0.504486,-0.613617,-0.637909,-0.605499,-0.548401,-0.491089,-0.460602,-0.46228,-0.487244,-0.525177,-0.575958,-0.629333,-0.672089,-0.682556,-0.644836,-0.55838,-0.440613,-0.323425,-0.231598,-0.168243,-0.112946,-0.0622864,-0.0105896,0.0386658,0.0885315,0.144684,0.20697,0.274231,0.339874,0.385773,0.387238,0.332489,0.22522,0.0934753,-0.0218811,-0.0991821,-0.136993,-0.125153,-0.0610046,0.0483093,0.192139,0.338928,0.450409,0.500732,0.486298,0.417847,0.335114,0.265717,0.218048,0.208374,0.262817,0.379852,0.525513,0.669403,0.765564,0.776764,0.699585,0.548584,0.347046,0.113678,-0.131287,-0.351868,-0.517853,-0.605774,-0.615967,-0.57309,-0.508331,-0.458069,-0.444153,-0.453156,-0.467438,-0.502899,-0.560211,-0.613098,-0.64859,-0.644012,-0.583893,-0.484497,-0.364624,-0.249268,-0.161133,-0.100281,-0.061676,-0.0386658,-0.0204163,0.00201416,0.0340271,0.0775146,0.137665,0.212891,0.298584,0.362213,0.378174,0.339142,0.241943,0.110596,-0.0236206,-0.135498,-0.202698,-0.200531,-0.137115,-0.0240173,0.126312,0.287842,0.425629,0.507111,0.51651,0.461395,0.370667,0.27887,0.218262,0.199066,0.228577,0.317444,0.449402,0.596436,0.714417,0.762939,0.72403,0.596252,0.39679,0.163086,-0.0691223,-0.285095,-0.463684,-0.574036,-0.610992,-0.58786,-0.520538,-0.447906,-0.397247,-0.389343,-0.421539,-0.466644,-0.517059,-0.56778,-0.603424,-0.604889,-0.559875,-0.470459,-0.350616,-0.218445,-0.100006,-0.0322876,-0.0120239,-0.0227661,-0.0439453,-0.0569153,-0.0498657,-0.0167236,0.040741,0.116119,0.211212,0.308319,0.378174,0.391266,0.326843,0.191559,0.0261841,-0.123016,-0.224915,-0.26355,-0.234833,-0.14389,-0.00665283,0.156036,0.324432,0.465027,0.534424,0.516968,0.434906,0.323975,0.223297,0.165649,0.162872,0.222565,0.336243,0.484619,0.639587,0.756592,0.792755,0.729187,0.578644,0.364105,0.118927,-0.12384,-0.339142,-0.508575,-0.605652,-0.614563,-0.553955,-0.470734,-0.4039,-0.375916,-0.392548,-0.438934,-0.494171,-0.545441,-0.587799,-0.611328,-0.602356,-0.53598,-0.415161,-0.267059,-0.123077,-0.0194092,0.0220032,0.0180664,-0.0108032,-0.0475159,-0.0743713,-0.0756226,-0.0387878,0.0269775,0.112762,0.213501,0.316711,0.390686,0.399994,0.327393,0.188599,0.0186462,-0.143158,-0.261536,-0.304016,-0.272003,-0.166382,-0.000396729,0.195221,0.371674,0.492157,0.535706,0.498444,0.404419,0.282288,0.17337,0.10965,0.102478,0.163757,0.298187,0.483429,0.662354,0.782562,0.802155,0.715576,0.542755,0.315033,0.0698547,-0.155243,-0.348511,-0.492004,-0.559204,-0.550323,-0.48288,-0.389801,-0.317261,-0.298584,-0.338043,-0.412292,-0.492004,-0.561554,-0.610535,-0.626495,-0.602142,-0.527252,-0.402222,-0.247253,-0.0906067,0.0279236,0.0784607,0.065033,0.00375366,-0.0769043,-0.146973,-0.177917,-0.156921,-0.0875244,0.0188599,0.141876,0.267578,0.370056,0.419678,0.395111,0.289856,0.124847,-0.0551147,-0.210663,-0.298187,-0.294617,-0.20517,-0.0476379,0.134644,0.3078,0.448395,0.528931,0.534698,0.471283,0.356323,0.2341,0.144501,0.117249,0.159393,0.261475,0.406372,0.563232,0.68631,0.740143,0.69632,0.561554,0.361206,0.123352,-0.110992,-0.301331,-0.436432,-0.509735,-0.523438,-0.483948,-0.40979,-0.344971,-0.314026,-0.333496,-0.391815,-0.467865,-0.53833,-0.576172,-0.572968,-0.530945,-0.450531,-0.332764,-0.192352,-0.0541077,0.0509949,0.108002,0.112213,0.0596008,-0.0423584,-0.15509,-0.241608,-0.266632,-0.225891,-0.126923,0.00128174,0.126587,0.237732,0.32074,0.361267,0.335297,0.229675,0.0587158,-0.137451,-0.302429,-0.381195,-0.357513,-0.239319,-0.0565796,0.141754,0.329742,0.486969,0.585022,0.609863,0.559204,0.450867,0.327118,0.224152,0.182159,0.209656,0.288666,0.406647,0.537262,0.642487,0.689209,0.660278,0.548126,0.364014,0.137512,-0.0918884,-0.284912,-0.420929,-0.508911,-0.555969,-0.552765,-0.506042,-0.439392,-0.384155,-0.361755,-0.377716,-0.419067,-0.460541,-0.472565,-0.455383,-0.412964,-0.350006,-0.268463,-0.167786,-0.0571899,0.0455627,0.114288,0.129669,0.0877991,-0.00369263,-0.114105,-0.211731,-0.266968,-0.260254,-0.192413,-0.0912781,0.0145569,0.104218,0.180878,0.23349,0.242218,0.18396,0.0556946,-0.122223,-0.29422,-0.398041,-0.397797,-0.291412,-0.108521,0.104492,0.308136,0.485291,0.615112,0.680389,0.674377,0.595764,0.463013,0.321747,0.219055,0.192963,0.240479,0.343811,0.476105,0.59671,0.665497,0.671936,0.603485,0.45462,0.233276,-0.0270386,-0.277374,-0.472687,-0.598328,-0.653351,-0.638855,-0.573761,-0.481354,-0.383362,-0.307037,-0.271332,-0.279877,-0.319397,-0.363495,-0.38858,-0.388458,-0.355103,-0.284149,-0.185913,-0.0708618,0.0455017,0.143433,0.199463,0.199066,0.135712,0.011261,-0.148132,-0.293488,-0.387573,-0.399597,-0.336456,-0.235291,-0.127594,-0.0211487,0.0814209,0.162292,0.19986,0.165436,0.0424194,-0.143219,-0.320862,-0.415771,-0.386383,-0.240417,-0.0220947,0.214081,0.427124,0.599396,0.726837,0.785767,0.758514,0.650818,0.488068,0.320404,0.207855,0.18335,0.247437,0.368134,0.495972,0.583099,0.613007,0.588257,0.4953,0.32196,0.0847778,-0.177582,-0.413147,-0.580322,-0.653412,-0.642883,-0.577911,-0.486633,-0.382629,-0.281738,-0.207397,-0.187195,-0.218323,-0.278656,-0.338531,-0.36792,-0.352295,-0.284576,-0.178864,-0.0583801,0.0647583,0.180664,0.259583,0.277985,0.224304,0.092804,-0.106903,-0.331482,-0.516449,-0.610809,-0.592133,-0.476654,-0.318176,-0.162628,-0.0189819,0.107574,0.197571,0.234375,0.187988,0.0347595,-0.186646,-0.382538,-0.465302,-0.405304,-0.222229,0.0307922,0.296173,0.524231,0.696045,0.809875,0.848724,0.802216,0.671204,0.485718,0.299194,0.170532,0.134888,0.192352,0.31665,0.453888,0.548462,0.580658,0.557648,0.471954,0.313232,0.0888672,-0.164154,-0.3992,-0.564575,-0.625488,-0.598602,-0.525024,-0.431335,-0.337708,-0.246307,-0.175293,-0.146118,-0.168121,-0.222351,-0.279724,-0.313019,-0.297516,-0.226379,-0.12793,-0.0282593,0.0649109,0.145233,0.189056,0.185242,0.132477,0.0212708,-0.149933,-0.355164,-0.53067,-0.629272,-0.62027,-0.516296,-0.364685,-0.211731,-0.0777893,0.0420227,0.139862,0.205231,0.209045,0.111145,-0.0682678,-0.257935,-0.375031,-0.365448,-0.22757,-0.00918579,0.231079,0.441956,0.602692,0.716187,0.767975,0.751678,0.666168,0.512817,0.334778,0.190002,0.124969,0.153625,0.250732,0.375702,0.478516,0.529205,0.526581,0.475159,0.365509,0.187531,-0.041626,-0.274841,-0.452484,-0.533478,-0.524445,-0.459534,-0.37616,-0.297241,-0.223083,-0.154083,-0.111664,-0.123352,-0.177307,-0.254761,-0.318726,-0.333282,-0.290619,-0.202759,-0.098175,0.00509644,0.0941467,0.161804,0.192413,0.176971,0.105988,-0.0312805,-0.217438,-0.418518,-0.582214,-0.661346,-0.634888,-0.512024,-0.348511,-0.182007,-0.0342407,0.0956421,0.206512,0.274109,0.261414,0.134827,-0.0728149,-0.279663,-0.40686,-0.403687,-0.268982,-0.0522156,0.185303,0.390411,0.54361,0.662964,0.733032,0.735168,0.658844,0.512268,0.337128,0.182678,0.104706,0.120392,0.214172,0.337708,0.440674,0.495422,0.507935,0.478058,0.390076,0.240417,0.0358276,-0.189392,-0.376495,-0.475555,-0.490601,-0.455902,-0.402832,-0.341888,-0.270538,-0.203156,-0.159271,-0.1539,-0.180664,-0.23288,-0.27832,-0.280334,-0.234497,-0.159668,-0.0704651,0.0236206,0.109406,0.17395,0.205048,0.199677,0.146301,0.0379944,-0.115692,-0.291199,-0.455048,-0.567444,-0.595306,-0.524231,-0.388062,-0.239258,-0.105377,0.0161743,0.125702,0.201019,0.213745,0.132629,-0.0449524,-0.255829,-0.413361,-0.448578,-0.347321,-0.152069,0.073822,0.287659,0.45462,0.579193,0.667572,0.698578,0.661865,0.543488,0.365356,0.193146,0.0935669,0.0954895,0.177704,0.307526,0.434235,0.501801,0.511688,0.48288,0.413879,0.282562,0.0845032,-0.152618,-0.367188,-0.501343,-0.526642,-0.469452,-0.378662,-0.289673,-0.210205,-0.135651,-0.0752869,-0.0514221,-0.0851135,-0.159119,-0.239197,-0.291809,-0.277985,-0.205505,-0.0956421,0.0285339,0.142273,0.232941,0.297516,0.320007,0.285583,0.182159,0.0137024,-0.181488,-0.364685,-0.522827,-0.630402,-0.655975,-0.578918,-0.424561,-0.249329,-0.0898132,0.0232849,0.0958252,0.128937,0.112946,0.0353088,-0.110413,-0.274841,-0.392273,-0.405914,-0.299316,-0.10321,0.113434,0.30188,0.437042,0.520874,0.577637,0.6008,0.578583,0.494843,0.352875,0.208313,0.124084,0.12677,0.191406,0.28476,0.36377,0.391754,0.372284,0.33316,0.27887,0.194977,0.0620117,-0.107056,-0.262939,-0.357513,-0.363342,-0.304962,-0.229401,-0.167511,-0.135559,-0.114502,-0.0936279,-0.0834961,-0.098114,-0.137787,-0.180939,-0.191742,-0.15451,-0.0766296,0.0213318,0.113007,0.178802,0.213409,0.22757,0.216522,0.175903,0.094696,-0.021759,-0.152283,-0.274506,-0.390076,-0.498047,-0.577911,-0.59491,-0.528046,-0.404175,-0.271423,-0.16153,-0.0849609,-0.0275269,0.0157776,0.0458374,0.0380554,-0.0283203,-0.135162,-0.224091,-0.235291,-0.160461,-0.0231628,0.118195,0.226654,0.298248,0.359253,0.435699,0.506714,0.538391,0.486237,0.366241,0.245178,0.170807,0.153412,0.169525,0.194427,0.209137,0.204224,0.19632,0.20578,0.223236,0.20932,0.127441,-0.0114136,-0.143829,-0.212494,-0.204102,-0.161743,-0.127594,-0.120056,-0.12149,-0.108002,-0.0698547,-0.0317993,-0.0316772,-0.0653076,-0.105652,-0.118195,-0.0899963,-0.0340271,0.0342407,0.0962524,0.142273,0.169739,0.188385,0.189789,0.163361,0.0892029,-0.020752,-0.146912,-0.278381,-0.410065,-0.536926,-0.624512,-0.641602,-0.567108,-0.429871,-0.276978,-0.144684,-0.0539551,-0.00314331,0.0234375,0.0427551,0.0284424,-0.0474548,-0.168579,-0.280548,-0.308258,-0.227448,-0.0724182,0.0944824,0.221283,0.302338,0.367523,0.435974,0.489075,0.490204,0.414032,0.275085,0.140015,0.0602722,0.0517578,0.0889282,0.143005,0.196777,0.239868,0.277435,0.316589,0.346832,0.329803,0.229523,0.0676575,-0.0896606,-0.173431,-0.174957,-0.137512,-0.106842,-0.0940247,-0.0876465,-0.0597229,-0.0015564,0.0499268,0.0499268,-0.0038147,-0.0809326,-0.130524,-0.131012,-0.0952454,-0.0371704,0.0254211,0.0798645,0.128662,0.175018,0.20813,0.223022,0.188538,0.0951538,-0.0374451,-0.17804,-0.311127,-0.441284,-0.557526,-0.636841,-0.652679,-0.5914,-0.468445,-0.32431,-0.204773,-0.126099,-0.0759583,-0.0291138,0.0220032,0.041687,-0.00274658,-0.100281,-0.190277,-0.212616,-0.15451,-0.04953,0.0540161,0.133148,0.197388,0.264893,0.344238,0.40744,0.421875,0.372955,0.278107,0.189392,0.135315,0.12149,0.134705,0.171082,0.215973,0.248383,0.27536,0.298523,0.304504,0.263153,0.166718,0.0456238,-0.0565796,-0.1008,-0.0994568,-0.0714722,-0.0519409,-0.0426025,-0.0391235,-0.0259705,-0.00323486,0.00146484,-0.0202637,-0.0555725,-0.0808105,-0.078064,-0.0512085,0.00134277,0.0683899,0.130798,0.178711,0.206299,0.213745,0.204285,0.17395,0.112885,0.0184021,-0.0944824,-0.210144,-0.318054,-0.423553,-0.52121,-0.594238,-0.626312,-0.601349,-0.519745,-0.413544,-0.307251,-0.220001,-0.142883,-0.0662537,0.00799561,0.0592651,0.0512085,-0.0116882,-0.0935669,-0.148926,-0.15564,-0.121277,-0.0647583,-0.00665283,0.0456238,0.112213,0.211212,0.308716,0.370544,0.376923,0.331543,0.262939,0.206177,0.177917,0.171753,0.176636,0.184082,0.188721,0.20462,0.238068,0.270142,0.259064,0.19342,0.103546,0.0304565,-0.00357056,0.0065918,0.0387268,0.0510864,0.0390625,0.0263672,0.0318909,0.0533447,0.0640869,0.0501404,0.00497437,-0.0505371,-0.0828857,-0.0792542,-0.0350952,0.0356445,0.100006,0.146851,0.184082,0.219543,0.245697,0.251892,0.216248,0.125366,-0.0062561,-0.149139,-0.289337,-0.429199,-0.55838,-0.656647,-0.708466,-0.698853,-0.606506,-0.462158,-0.316437,-0.197571,-0.110931,-0.049408,-0.00973511,0.0152283,0.000274658,-0.0768433,-0.19455,-0.296173,-0.330658,-0.289185,-0.198059,-0.101532,-0.0145569,0.0728149,0.171936,0.272552,0.339203,0.363281,0.338989,0.267639,0.193695,0.148468,0.138916,0.152893,0.17981,0.217529,0.256653,0.292419,0.328583,0.351074,0.326782,0.256592,0.165222,0.0952454,0.0606079,0.0652466,0.0834351,0.0879211,0.0829468,0.0789795,0.0787354,0.085968,0.0827637,0.0577087,0.0134277,-0.0291138,-0.0396118,-0.0114136,0.0470581,0.113281,0.169922,0.213074,0.251221,0.281799,0.283081,0.247437,0.168396,0.0479736,-0.0973816,-0.245087,-0.38382,-0.509857,-0.621002,-0.703094,-0.743164,-0.720062,-0.624908,-0.489746,-0.357452,-0.253754,-0.186188,-0.14389,-0.115448,-0.092804,-0.106506,-0.181885,-0.28363,-0.362213,-0.380524,-0.343079,-0.264771,-0.15744,-0.0454407,0.0675964,0.187927,0.301666,0.37793,0.407654,0.390747,0.323761,0.241943,0.178192,0.147186,0.151215,0.187439,0.236572,0.286987,0.344818,0.409851,0.452271,0.438782,0.375092,0.294434,0.218781,0.16275,0.138245,0.129456,0.113892,0.101868,0.0922241,0.0955811,0.114502,0.125824,0.121399,0.102814,0.0836792,0.0775757,0.0905457,0.112762,0.135651,0.148132,0.149933,0.151398,0.147034,0.126312,0.0864563,0.0224304,-0.0656433,-0.159119,-0.251068,-0.348267,-0.447174,-0.551086,-0.658783,-0.743408,-0.777527,-0.743164,-0.65979,-0.564026,-0.471222,-0.394104,-0.309448,-0.217194,-0.134979,-0.0877075,-0.117981,-0.201263,-0.291931,-0.342957,-0.33075,-0.282349,-0.204163,-0.108063,-0.00817871,0.105225,0.226227,0.332275,0.402283,0.421021,0.384369,0.32431,0.28772,0.28476,0.308197,0.342285,0.375977,0.409515,0.448059,0.492004,0.519867,0.502563,0.433502,0.345154,0.270599,0.218719,0.202881,0.213013,0.207642,0.188324,0.171875,0.164215,0.167999,0.165314,0.138855,0.0758362,-0.000946045,-0.0555725,-0.0724182,-0.0516052,-0.013031,0.0253601,0.0579224,0.098999,0.144165,0.165375,0.149811,0.0972595,0.000671387,-0.127502,-0.258911,-0.391602,-0.523163,-0.640015,-0.741821,-0.821533,-0.858521,-0.837189,-0.751129,-0.636841,-0.524963,-0.438721,-0.374573,-0.307587,-0.240143,-0.179718,-0.164978,-0.209595,-0.273621,-0.326447,-0.32959,-0.284027,-0.206177,-0.101349,0.00509644,0.115784,0.2341,0.353882,0.460205,0.529999,0.553162,0.527649,0.484436,0.446564,0.426636,0.4245,0.428314,0.435364,0.443298,0.461884,0.487183,0.499054,0.474091,0.415375,0.350403,0.292084,0.246765,0.230743,0.22168,0.193542,0.154694,0.114166,0.0814209,0.0633545,0.0489807,0.0221558,-0.0182495,-0.0532227,-0.0653076,-0.0485229,-0.0157166,0.0212097,0.048645,0.0639648,0.0710144,0.0646973,0.0362549,-0.00906372,-0.0683899,-0.1492,-0.246429,-0.35321,-0.469666,-0.583221,-0.690552,-0.796295,-0.881744,-0.923492,-0.897705,-0.802216,-0.674713,-0.547058,-0.431549,-0.321686,-0.213409,-0.123291,-0.0657654,-0.0646973,-0.119659,-0.194977,-0.245911,-0.238312,-0.179047,-0.0858459,0.0322266,0.152069,0.27121,0.383759,0.48349,0.553619,0.579407,0.556702,0.492737,0.427032,0.388855,0.382965,0.39563,0.415039,0.433502,0.440125,0.450592,0.468109,0.474915,0.436523,0.362762,0.285309,0.228912,0.205841,0.216766,0.234833,0.216644,0.181885,0.142883,0.110474,0.0922241,0.0605469,0.00576782,-0.0680542,-0.137787,-0.178314,-0.182556,-0.157593,-0.117706,-0.0799255,-0.0464478,-0.0162354,0.00811768,0.0179138,0,-0.0523376,-0.146179,-0.261017,-0.377594,-0.490662,-0.5961,-0.690125,-0.776306,-0.837799,-0.846588,-0.787384,-0.668915,-0.529938,-0.405243,-0.304108,-0.220123,-0.138123,-0.068512,-0.0235596,-0.0265808,-0.0870361,-0.161621,-0.208649,-0.203705,-0.144165,-0.0559082,0.0522156,0.157196,0.256042,0.350739,0.435516,0.49765,0.524567,0.502625,0.437317,0.368713,0.328125,0.320862,0.34082,0.381531,0.423279,0.451874,0.472809,0.492676,0.499268,0.465179,0.393219,0.311462,0.24054,0.187317,0.168793,0.173615,0.162415,0.134766,0.0973816,0.0545044,0.0218201,-0.0181274,-0.070282,-0.131134,-0.191467,-0.229858,-0.231598,-0.195984,-0.138458,-0.0785828,-0.0337524,0.00491333,0.0379944,0.0564575,0.0540161,0.0292664,-0.0291138,-0.122894,-0.229126,-0.342743,-0.450073,-0.544769,-0.641998,-0.737122,-0.797852,-0.80014,-0.730133,-0.605042,-0.475037,-0.362823,-0.269653,-0.177795,-0.0820007,-0.00570679,0.0281982,-0.00933838,-0.0964355,-0.185913,-0.235107,-0.222229,-0.16684,-0.078186,0.0239563,0.119537,0.22757,0.344025,0.448242,0.511688,0.527863,0.493286,0.428314,0.372681,0.340668,0.331207,0.334015,0.350739,0.372345,0.38913,0.419403,0.444305,0.437439,0.385773,0.319855,0.263153,0.22699,0.22113,0.228333,0.204498,0.152832,0.101746,0.0565186,0.0214233,-0.00759888,-0.0525513,-0.116791,-0.179047,-0.205292,-0.188721,-0.140259,-0.0649109,0.0145569,0.078064,0.129333,0.164429,0.172089,0.146027,0.086792,-0.00247192,-0.124359,-0.246185,-0.357239,-0.459808,-0.547302,-0.628387,-0.707062,-0.765778,-0.781952,-0.741821,-0.655975,-0.556366,-0.465302,-0.384705,-0.300812,-0.199341,-0.0999451,-0.0279236,-0.0170593,-0.0779114,-0.165771,-0.233276,-0.247925,-0.218872,-0.158661,-0.0755615,0.0148315,0.120392,0.245026,0.373627,0.474243,0.524445,0.522003,0.471008,0.406036,0.348938,0.317444,0.30423,0.308197,0.330414,0.361084,0.409271,0.465515,0.505585,0.501343,0.459991,0.402283,0.340149,0.292023,0.269745,0.246643,0.19455,0.132019,0.0798645,0.0482483,0.0359802,0.027771,0.00012207,-0.0471802,-0.091217,-0.112823,-0.102142,-0.0613403,-0.012146,0.0287781,0.0549622,0.0748291,0.0792542,0.0674438,0.0358276,-0.0161743,-0.101074,-0.209808,-0.322754,-0.429474,-0.522949,-0.601471,-0.67746,-0.748779,-0.791809,-0.787262,-0.734436,-0.643341,-0.547058,-0.465515,-0.397125,-0.322205,-0.229736,-0.145233,-0.0910645,-0.0918884,-0.138123,-0.197388,-0.230927,-0.215698,-0.171082,-0.101349,-0.0110168,0.0786438,0.169922,0.277374,0.39093,0.479584,0.521881,0.519409,0.474426,0.42041,0.384552,0.377167,0.387848,0.409729,0.440552,0.472565,0.509399,0.546844,0.559875,0.527985,0.468384,0.406189,0.341339,0.292145,0.271606,0.249725,0.211151,0.166443,0.127258,0.098999,0.0760498,0.0396118,-0.0213318,-0.0973206,-0.168732,-0.209991,-0.207855,-0.170593,-0.112549,-0.0562439,-0.0105286,0.0252991,0.0478516,0.0464478,0.0114746,-0.0565186,-0.158844,-0.286926,-0.410522,-0.514557,-0.593414,-0.657043,-0.712616,-0.76001,-0.782562,-0.771545,-0.720001,-0.633698,-0.549866,-0.476776,-0.416382,-0.340057,-0.23819,-0.138458,-0.0635681,-0.0505981,-0.0873718,-0.133698,-0.153168,-0.130463,-0.092804,-0.0400085,0.0222168,0.089325,0.186646,0.304626,0.426971,0.520203,0.5755,0.587372,0.556122,0.519073,0.490997,0.479858,0.479736,0.483887,0.489471,0.497986,0.518463,0.541931,0.541687,0.500946,0.435303,0.368195,0.311951,0.281738,0.26886,0.240814,0.189545,0.128998,0.0679321,0.0187378,-0.0221558,-0.0735474,-0.146576,-0.225098,-0.289337,-0.310944,-0.277527,-0.209717,-0.139008,-0.0808716,-0.0367737,0.000274658,0.0238953,0.0238342,-0.00576782,-0.0670471,-0.160797,-0.270325,-0.378845,-0.478516,-0.558655,-0.630402,-0.700592,-0.762756,-0.793152,-0.78537,-0.728912,-0.638855,-0.54953,-0.467377,-0.386047,-0.281219,-0.159729,-0.0546875,0.012207,0.0114746,-0.037262,-0.100464,-0.138397,-0.136383,-0.108856,-0.0478516,0.0327454,0.128662,0.254425,0.398376,0.542755,0.651337,0.708069,0.705383,0.648651,0.572968,0.505829,0.456573,0.421356,0.40155,0.399048,0.410858,0.437592,0.471344,0.485718,0.458862,0.406036,0.348175,0.287933,0.238312,0.19577,0.136169,0.0679932,0.00515747,-0.0402832,-0.0632324,-0.0779724,-0.105377,-0.157532,-0.221893,-0.270538,-0.278717,-0.2453,-0.186768,-0.122406,-0.0639648,-0.0122681,0.0325623,0.0656433,0.0720215,0.038269,-0.0356445,-0.14563,-0.269653,-0.390686,-0.499054,-0.58847,-0.663757,-0.730072,-0.785034,-0.805237,-0.779785,-0.70343,-0.598602,-0.498871,-0.409332,-0.328186,-0.230927,-0.120667,-0.024231,0.0297241,0.0186462,-0.0350952,-0.0875244,-0.0991211,-0.0671692,-0.0146179,0.0556946,0.132416,0.216034,0.322144,0.443146,0.557648,0.632538,0.659607,0.626038,0.544891,0.462738,0.399994,0.359131,0.336914,0.331818,0.3414,0.36377,0.406311,0.454376,0.474976,0.450348,0.393158,0.330933,0.272156,0.229523,0.194824,0.141998,0.0747681,0.0101318,-0.0337524,-0.0540161,-0.0673218,-0.0957642,-0.144501,-0.198059,-0.232605,-0.226501,-0.188202,-0.137848,-0.0924072,-0.0578003,-0.0369873,-0.0224915,-0.013031,-0.0170593,-0.0397339,-0.0900574,-0.171204,-0.272217,-0.371155,-0.454041,-0.52066,-0.585968,-0.661346,-0.735382,-0.78537,-0.787781,-0.729187,-0.626312,-0.520081,-0.42041,-0.320465,-0.203827,-0.0698547,0.0517578,0.125824,0.121277,0.0504761,-0.0380554,-0.094635,-0.103302,-0.0758362,-0.021759,0.0473938,0.129456,0.245972,0.388184,0.527039,0.629791,0.673279,0.64328,0.560669,0.466248,0.395172,0.354431,0.338379,0.340393,0.34845,0.371155,0.4133,0.465759,0.492737,0.471344,0.408722,0.330475,0.258179,0.207733,0.177643,0.138336,0.0858459,0.0306702,-0.00537109,-0.0157166,-0.0245056,-0.0598755,-0.130188,-0.222565,-0.295959,-0.321014,-0.298126,-0.241089,-0.172821,-0.106171,-0.0424194,0.0213318,0.0733643,0.092804,0.0663757,-0.00933838,-0.128448,-0.271332,-0.415039,-0.532959,-0.619202,-0.686646,-0.744171,-0.789856,-0.800751,-0.768402,-0.6745,-0.55423,-0.448059,-0.360748,-0.285767,-0.18866,-0.0757141,0.0259094,0.0832214,0.0629578,0.00308228,-0.0542297,-0.0747681,-0.0579834,-0.0209351,0.0330811,0.0950317,0.17511,0.290192,0.41806,0.540192,0.627655,0.662537,0.636841,0.567169,0.493164,0.433289,0.393677,0.370209,0.35791,0.355652,0.366852,0.404022,0.44342,0.454041,0.420074,0.362091,0.306122,0.260193,0.231201,0.194885,0.137787,0.073761,0.012207,-0.0283203,-0.0571289,-0.0920105,-0.143005,-0.213898,-0.280731,-0.319855,-0.312958,-0.263428,-0.192871,-0.119995,-0.0595398,-0.0117493,0.028717,0.0575256,0.0546875,0.00912476,-0.0782471,-0.198059,-0.327515,-0.446991,-0.548401,-0.630951,-0.699585,-0.758789,-0.802155,-0.806366,-0.75885,-0.65329,-0.522888,-0.399536,-0.297913,-0.204834,-0.098175,0.0106812,0.102417,0.138245,0.0969849,0.015625,-0.0536194,-0.0774536,-0.0566406,-0.00744629,0.0588684,0.130127,0.220795,0.338318,0.469604,0.583435,0.65274,0.665161,0.612823,0.52832,0.448792,0.386169,0.345154,0.323425,0.319183,0.326172,0.354218,0.399384,0.438538,0.442627,0.406525,0.349274,0.291687,0.243561,0.20813,0.167847,0.107666,0.0357666,-0.0304565,-0.0721436,-0.0975952,-0.123291,-0.170074,-0.236389,-0.297729,-0.325897,-0.303162,-0.244751,-0.172211,-0.105896,-0.0532227,-0.0105896,0.0231018,0.0420227,0.0312805,-0.0161133,-0.0979919,-0.211273,-0.332825,-0.447784,-0.543152,-0.618713,-0.684967,-0.742554,-0.779938,-0.773285,-0.713165,-0.595825,-0.457062,-0.333618,-0.231934,-0.131531,-0.0226746,0.0805359,0.155975,0.163483,0.0961609,-0.000457764,-0.0748291,-0.0960999,-0.074707,-0.0249023,0.0390015,0.114288,0.216248,0.346436,0.479523,0.581604,0.634491,0.628174,0.565979,0.483612,0.411346,0.35907,0.328308,0.31308,0.308533,0.321136,0.355225,0.404236,0.436432,0.426361,0.374847,0.310211,0.256378,0.221954,0.195099,0.146027,0.0736389,-0.000213623,-0.0567017,-0.0870361,-0.103302,-0.126709,-0.176178,-0.236969,-0.28537,-0.295624,-0.25827,-0.19455,-0.126373,-0.0692749,-0.0195312,0.0232239,0.0583191,0.0755615,0.0548401,-0.00973511,-0.114014,-0.240082,-0.369995,-0.490204,-0.591675,-0.672211,-0.733154,-0.773346,-0.776978,-0.730927,-0.625488,-0.48349,-0.34906,-0.24295,-0.159515,-0.0792542,0.00228882,0.0751038,0.104156,0.0612183,-0.02771,-0.107452,-0.138062,-0.117371,-0.0658264,-0.00146484,0.0693359,0.155701,0.264221,0.386993,0.496246,0.567719,0.592621,0.565308,0.503815,0.438049,0.388733,0.360931,0.350616,0.35141,0.354095,0.364838,0.388245,0.421417,0.429199,0.398315,0.338379,0.276245,0.233948,0.207184,0.185577,0.14563,0.0860291,0.0179138,-0.0307312,-0.0587158,-0.0787964,-0.112823,-0.170685,-0.229004,-0.270081,-0.265625,-0.215973,-0.147186,-0.0774536,-0.0241699,0.0126038,0.0358276,0.0495911,0.0397339,-0.00576782,-0.086853,-0.201752,-0.333099,-0.458252,-0.555908,-0.628326,-0.684418,-0.732544,-0.761139,-0.753632,-0.694305,-0.582275,-0.452423,-0.333221,-0.243073,-0.16571,-0.0776367,0.00991821,0.0794067,0.0863037,0.0255737,-0.0628052,-0.133148,-0.150665,-0.120056,-0.0612183,0.00872803,0.085907,0.185974,0.313812,0.449127,0.560669,0.627258,0.639404,0.599609,0.523499,0.451874,0.401154,0.373901,0.361755,0.355225,0.355103,0.366241,0.399139,0.424835,0.422943,0.389008,0.334564,0.279938,0.237915,0.211151,0.177032,0.123962,0.0639038,0.0131531,-0.0228271,-0.0498047,-0.0797424,-0.127502,-0.190063,-0.246979,-0.273102,-0.255157,-0.205719,-0.146118,-0.0906067,-0.046051,-0.0128174,0.0122681,0.0184631,-0.00463867,-0.0663757,-0.166718,-0.296448,-0.432495,-0.552612,-0.643433,-0.705627,-0.749878,-0.778778,-0.783081,-0.740875,-0.635315,-0.488983,-0.344574,-0.234711,-0.162811,-0.098175,-0.0261841,0.0503235,0.0883789,0.0546875,-0.0306702,-0.113281,-0.143555,-0.113953,-0.0488586,0.020874,0.0913391,0.177521,0.285919,0.41153,0.524689,0.602539,0.632812,0.61377,0.55658,0.491486,0.44101,0.410004,0.396301,0.391541,0.386902,0.382294,0.393829,0.41684,0.422028,0.390137,0.33429,0.281219,0.245087,0.227325,0.20462,0.160004,0.0941467,0.0299988,-0.0184631,-0.052948,-0.0874634,-0.144501,-0.221893,-0.287598,-0.319,-0.30603,-0.256989,-0.188385,-0.124634,-0.0757141,-0.0389404,-0.0104675,0.0015564,-0.0180664,-0.0722046,-0.158508,-0.274902,-0.40564,-0.52417,-0.611481,-0.66571,-0.70108,-0.730743,-0.74704,-0.722748,-0.635162,-0.500885,-0.361145,-0.248199,-0.17511,-0.112335,-0.0328979,0.0569763,0.11618,0.0968323,0.0183105,-0.0675049,-0.112946,-0.100464,-0.0539551,0.00012207,0.0504761,0.120056,0.220398,0.345642,0.473633,0.573029,0.629944,0.635773,0.601959,0.546906,0.494843,0.460724,0.439331,0.415771,0.380127,0.345825,0.33786,0.355774,0.367859,0.350067,0.306183,0.263092,0.238983,0.23349,0.221344,0.176788,0.100525,0.016571,-0.0498047,-0.0992737,-0.142548,-0.189056,-0.247986,-0.298401,-0.318848,-0.294373,-0.231262,-0.149994,-0.0786438,-0.0308838,-0.00280762,0.0138855,0.0187988,-0.00189209,-0.0518188,-0.132751,-0.243958,-0.368805,-0.485382,-0.576508,-0.640472,-0.686859,-0.722626,-0.744965,-0.731598,-0.653229,-0.520599,-0.374512,-0.250397,-0.160675,-0.0867004,-0.00296021,0.0827637,0.132812,0.10672,0.0190735,-0.0749817,-0.131805,-0.132629,-0.0890503,-0.0328979,0.028656,0.10733,0.216034,0.347046,0.471741,0.571808,0.62262,0.618591,0.573212,0.510742,0.454773,0.416779,0.396851,0.375916,0.348938,0.32605,0.324432,0.34436,0.352417,0.336304,0.293701,0.248535,0.222076,0.214844,0.205902,0.171539,0.108582,0.041748,-0.0105286,-0.0463867,-0.0810852,-0.129944,-0.19162,-0.249329,-0.274628,-0.255493,-0.200073,-0.128113,-0.0603333,-0.0107422,0.0214233,0.0405273,0.0432739,0.0162964,-0.045166,-0.139252,-0.259674,-0.393433,-0.517242,-0.613098,-0.678131,-0.725494,-0.760193,-0.77301,-0.737915,-0.630859,-0.47583,-0.324371,-0.210724,-0.135101,-0.0606079,0.029541,0.116241,0.1492,0.0906067,-0.028595,-0.135315,-0.175507,-0.153687,-0.102142,-0.0526123,-0.00442505,0.0710144,0.184357,0.321289,0.443756,0.529205,0.56369,0.546844,0.498199,0.450134,0.416168,0.405365,0.408264,0.406189,0.389191,0.374695,0.385712,0.406311,0.403168,0.36026,0.296783,0.245911,0.230194,0.237976,0.232361,0.196106,0.132019,0.0727539,0.0313416,0.00268555,-0.0346985,-0.103149,-0.182831,-0.248444,-0.271545,-0.246643,-0.189117,-0.116638,-0.0553589,-0.012146,0.0190735,0.0365906,0.0360413,0.00463867,-0.0636902,-0.166901,-0.297791,-0.433624,-0.555359,-0.64624,-0.706909,-0.754028,-0.78894,-0.789795,-0.726379,-0.593811,-0.430389,-0.282806,-0.184021,-0.11618,-0.0384521,0.0552368,0.127838,0.11972,0.0265808,-0.103882,-0.200348,-0.220886,-0.186096,-0.13623,-0.0899963,-0.0307312,0.0635681,0.191559,0.331818,0.450256,0.532227,0.565582,0.552948,0.516052,0.477448,0.459656,0.463898,0.468445,0.457306,0.427979,0.410126,0.414551,0.421692,0.404083,0.351685,0.288452,0.256653,0.263611,0.27597,0.261932,0.204895,0.129181,0.0624695,0.0141602,-0.0238953,-0.0807495,-0.159332,-0.236176,-0.284241,-0.277527,-0.221802,-0.140808,-0.0634766,-0.00726318,0.0302124,0.0490723,0.0526733,0.0324097,-0.0212097,-0.114899,-0.241547,-0.385498,-0.523438,-0.635223,-0.71524,-0.772552,-0.818787,-0.843079,-0.811554,-0.697327,-0.528046,-0.352295,-0.219543,-0.13623,-0.0606079,0.0291138,0.115448,0.139069,0.0621338,-0.0766296,-0.201538,-0.254913,-0.234436,-0.17804,-0.120544,-0.057251,0.0362549,0.162811,0.303284,0.429596,0.519806,0.560333,0.552826,0.518585,0.479065,0.457397,0.464844,0.485565,0.488525,0.467438,0.446167,0.447571,0.455048,0.43866,0.383636,0.304779,0.252747,0.253082,0.273682,0.271881,0.225891,0.156036,0.0920715,0.0428772,0.00363159,-0.0513306,-0.12973,-0.212158,-0.27121,-0.283356,-0.244843,-0.173035,-0.0921326,-0.0262451,0.0189209,0.0434875,0.0491943,0.0367126,-0.00805664,-0.0940247,-0.216705,-0.361664,-0.506104,-0.629333,-0.720459,-0.787048,-0.834351,-0.853149,-0.819794,-0.708466,-0.543213,-0.367188,-0.226166,-0.134094,-0.0508118,0.0404053,0.119995,0.137115,0.0600586,-0.0736389,-0.194305,-0.245026,-0.229584,-0.183075,-0.138062,-0.0817566,0.00872803,0.134033,0.274963,0.395172,0.481873,0.524902,0.52356,0.496429,0.45993,0.444824,0.459259,0.484436,0.490814,0.471222,0.44577,0.446381,0.45813,0.449005,0.398193,0.318848,0.265839,0.263763,0.287323,0.28952,0.242889,0.166656,0.0959167,0.0452271,0.00430298,-0.0524902,-0.134369,-0.218048,-0.273956,-0.279724,-0.235901,-0.159515,-0.0782471,-0.0157166,0.027771,0.0528259,0.0638123,0.0561829,0.016571,-0.0649719,-0.186646,-0.331146,-0.47644,-0.601807,-0.703217,-0.788269,-0.852417,-0.878662,-0.837036,-0.713074,-0.540283,-0.362671,-0.222565,-0.119324,-0.0184021,0.0878601,0.163879,0.152069,0.0410156,-0.114441,-0.230682,-0.272156,-0.252808,-0.211334,-0.173431,-0.115173,-0.013031,0.127777,0.278717,0.397308,0.472015,0.499451,0.486572,0.456116,0.422699,0.417511,0.440338,0.469208,0.474091,0.45752,0.444214,0.448914,0.454773,0.431549,0.37149,0.29892,0.266052,0.28241,0.307312,0.302216,0.249329,0.17691,0.116119,0.0690002,0.0178528,-0.0583801,-0.156097,-0.242218,-0.283569,-0.266113,-0.199463,-0.105835,-0.0161133,0.052948,0.0972595,0.116974,0.117035,0.094696,0.0330811,-0.0714111,-0.213745,-0.372559,-0.52301,-0.643555,-0.739807,-0.819458,-0.871948,-0.873352,-0.794373,-0.645569,-0.475372,-0.320068,-0.207855,-0.100342,0.0195312,0.130341,0.173096,0.0998535,-0.0509338,-0.20108,-0.279114,-0.281555,-0.252228,-0.226044,-0.199738,-0.122742,0.00985718,0.171417,0.31543,0.412415,0.457733,0.45697,0.431061,0.396362,0.371399,0.380127,0.408447,0.429657,0.432556,0.42926,0.443878,0.469116,0.472565,0.429138,0.351013,0.296509,0.293488,0.32196,0.333557,0.294769,0.224487,0.15979,0.122559,0.0953674,0.0422058,-0.0470581,-0.151672,-0.225983,-0.240417,-0.201141,-0.124847,-0.0426025,0.0246277,0.07724,0.108246,0.123627,0.120483,0.0833435,0.00402832,-0.118652,-0.273956,-0.43631,-0.576782,-0.695038,-0.795044,-0.867859,-0.892609,-0.838593,-0.705292,-0.533813,-0.366119,-0.240997,-0.132416,-0.0125427,0.106567,0.168335,0.116028,-0.0310669,-0.203705,-0.313568,-0.338715,-0.312408,-0.279449,-0.256104,-0.193634,-0.0733643,0.0919495,0.256653,0.37442,0.429535,0.424835,0.398926,0.366455,0.351074,0.362091,0.39093,0.409729,0.410461,0.412354,0.431488,0.467102,0.483429,0.446716,0.369141,0.303162,0.297516,0.341217,0.374969,0.353302,0.284973,0.211609,0.171265,0.145447,0.0973816,0.00234985,-0.11972,-0.215912,-0.247528,-0.20993,-0.125763,-0.0314636,0.045166,0.0997925,0.132141,0.150726,0.154907,0.121735,0.0332947,-0.105499,-0.275635,-0.442291,-0.578186,-0.68396,-0.774963,-0.840271,-0.85498,-0.788177,-0.654236,-0.487183,-0.339203,-0.238129,-0.151154,-0.0514832,0.0501404,0.0971069,0.0418701,-0.0926208,-0.243225,-0.332153,-0.348602,-0.320953,-0.290619,-0.266449,-0.204773,-0.094574,0.052002,0.200684,0.319061,0.385986,0.398041,0.381287,0.349731,0.337799,0.360138,0.397186,0.422882,0.419739,0.41153,0.420807,0.44516,0.456116,0.425293,0.36026,0.310547,0.309326,0.345703,0.374512,0.351807,0.289459,0.228241,0.187653,0.156586,0.100128,0.00296021,-0.108582,-0.187866,-0.205566,-0.16684,-0.0899353,-0.00308228,0.0722046,0.127777,0.156311,0.164978,0.15329,0.11087,0.0233459,-0.113678,-0.289276,-0.466583,-0.610596,-0.715424,-0.784485,-0.817993,-0.79361,-0.701263,-0.558594,-0.401886,-0.275757,-0.181732,-0.0943604,-0.00631714,0.0536194,0.0326233,-0.069458,-0.213745,-0.330658,-0.375031,-0.367859,-0.341675,-0.317657,-0.273102,-0.178986,-0.0427551,0.102875,0.228058,0.312073,0.351471,0.36496,0.360992,0.351624,0.351624,0.37027,0.397858,0.410065,0.410797,0.410461,0.417236,0.415314,0.389404,0.337463,0.287445,0.2771,0.309998,0.353424,0.356903,0.30954,0.244293,0.200867,0.175171,0.142151,0.0721436,-0.0316162,-0.127594,-0.169189,-0.148193,-0.0752869,0.0110168,0.0853577,0.142487,0.1745,0.187714,0.180145,0.145111,0.074707,-0.0411987,-0.202148,-0.382812,-0.546051,-0.671204,-0.747589,-0.778046,-0.75531,-0.676697,-0.555298,-0.409607,-0.275574,-0.169128,-0.0832825,-0.0113525,0.0344849,0.0144958,-0.07724,-0.205841,-0.320068,-0.376648,-0.379181,-0.357117,-0.336792,-0.302277,-0.225769,-0.106567,0.0236816,0.139526,0.226166,0.274628,0.305115,0.323547,0.335968,0.353149,0.379669,0.410065,0.423218,0.414825,0.394348,0.377167,0.361084,0.335358,0.286499,0.231415,0.214294,0.251221,0.313965,0.345428,0.320465,0.265381,0.218109,0.186249,0.155426,0.090271,-0.0150452,-0.112091,-0.153351,-0.124634,-0.0465088,0.0455017,0.127594,0.19342,0.234772,0.246979,0.233154,0.191406,0.114899,-0.00759888,-0.173889,-0.362823,-0.535431,-0.666504,-0.739929,-0.755157,-0.712219,-0.624084,-0.501953,-0.358246,-0.228333,-0.120544,-0.0343628,0.0276489,0.0497437,0.00564575,-0.0963135,-0.224152,-0.325836,-0.374023,-0.374756,-0.355652,-0.340485,-0.314972,-0.249878,-0.138733,-0.0162964,0.0891418,0.153961,0.185913,0.215027,0.256317,0.30838,0.351471,0.384766,0.405518,0.4133,0.413422,0.40451,0.377167,0.32663,0.263885,0.200531,0.161011,0.168121,0.218109,0.274628,0.299316,0.280121,0.243683,0.213623,0.189728,0.15625,0.0794067,-0.0312805,-0.116516,-0.136383,-0.0848999,0.00827026,0.104309,0.177246,0.233551,0.27417,0.29483,0.282288,0.224091,0.121002,-0.0220032,-0.189056,-0.363281,-0.525299,-0.644012,-0.707977,-0.705231,-0.645355,-0.545563,-0.420074,-0.290619,-0.17337,-0.0717468,0.00698853,0.0534363,0.0428772,-0.0273132,-0.133698,-0.240753,-0.316772,-0.348602,-0.349274,-0.340546,-0.32605,-0.298309,-0.233093,-0.140411,-0.0437622,0.0394592,0.0882568,0.115784,0.147583,0.197571,0.263214,0.327911,0.379456,0.403961,0.40564,0.394104,0.378387,0.344818,0.29248,0.227509,0.164825,0.133972,0.154572,0.213226,0.263489,0.272949,0.241425,0.197052,0.162872,0.135376,0.0944824,0.0144348,-0.080658,-0.134369,-0.118927,-0.0355835,0.0778503,0.179657,0.251465,0.295898,0.318054,0.321533,0.294891,0.226654,0.108337,-0.0527649,-0.237061,-0.415771,-0.554169,-0.63208,-0.641663,-0.596436,-0.52182,-0.425293,-0.317169,-0.202423,-0.0889282,0.000549316,0.0452271,0.0324097,-0.032959,-0.128174,-0.216858,-0.282562,-0.321075,-0.337372,-0.335236,-0.317108,-0.281555,-0.22403,-0.150208,-0.0833435,-0.0230103,0.0235596,0.0550232,0.0875854,0.130951,0.186035,0.240143,0.290009,0.330872,0.357056,0.371216,0.367249,0.338928,0.281067,0.216522,0.165497,0.14502,0.157928,0.19397,0.227722,0.232941,0.214355,0.181885,0.147308,0.107788,0.0620117,-0.0071106,-0.085022,-0.127716,-0.113556,-0.0430298,0.0599976,0.161743,0.245636,0.306305,0.343353,0.353149,0.328583,0.262939,0.157043,0.0147095,-0.151886,-0.319733,-0.464417,-0.559784,-0.587036,-0.555176,-0.483826,-0.387177,-0.281738,-0.175354,-0.0725403,0.0117493,0.0584412,0.0415344,-0.0300598,-0.132416,-0.226379,-0.292084,-0.327454,-0.339539,-0.338867,-0.322144,-0.284912,-0.221466,-0.138458,-0.0643616,-0.00698853,0.025177,0.0455627,0.0667725,0.105835,0.16095,0.216248,0.261261,0.287781,0.297119,0.299072,0.294556,0.275696,0.230194,0.174774,0.124237,0.108246,0.134491,0.189728,0.236115,0.245026,0.22229,0.185577,0.14563,0.0963745,0.0314026,-0.053009,-0.132538,-0.1698,-0.146973,-0.0696106,0.0420837,0.157867,0.257172,0.329987,0.367706,0.376251,0.350128,0.280731,0.174042,0.0287781,-0.139343,-0.302277,-0.428925,-0.503235,-0.513489,-0.471802,-0.398254,-0.309937,-0.222687,-0.131348,-0.0440369,0.0265198,0.058136,0.0298767,-0.0484619,-0.148651,-0.233765,-0.286774,-0.307373,-0.310791,-0.307037,-0.29303,-0.262085,-0.208313,-0.140472,-0.0743713,-0.0231018,0.00900269,0.0315552,0.0595398,0.107452,0.177704,0.24585,0.294037,0.316589,0.316162,0.29892,0.267792,0.215179,0.141998,0.0630798,0.0126038,0.0151672,0.0610046,0.128937,0.191864,0.220123,0.223419,0.209656,0.178711,0.124237,0.0452881,-0.0531616,-0.144501,-0.192291,-0.174561,-0.0950317,0.0170593,0.130676,0.231354,0.306458,0.355774,0.37793,0.358856,0.290466,0.168335,0.00845337,-0.164093,-0.315918,-0.422089,-0.467987,-0.452148,-0.396027,-0.315369,-0.229004,-0.141663,-0.0561218,0.0151062,0.0558472,0.049469,-0.00549316,-0.0888062,-0.171814,-0.230927,-0.258667,-0.263367,-0.259674,-0.253021,-0.238922,-0.213959,-0.174103,-0.129395,-0.0861816,-0.0592041,-0.0414734,-0.0137024,0.0401917,0.121399,0.214172,0.292938,0.341675,0.356567,0.351013,0.321533,0.269745,0.187592,0.0881958,-0.00616455,-0.0628967,-0.06073,-0.0120239,0.0571289,0.11557,0.150604,0.161804,0.156769,0.138672,0.0979309,0.0283813,-0.0575867,-0.125702,-0.150543,-0.120331,-0.0452271,0.0519409,0.141876,0.218872,0.277771,0.314423,0.323029,0.292877,0.215515,0.0932312,-0.0596008,-0.207581,-0.323975,-0.388733,-0.395355,-0.360748,-0.300201,-0.225037,-0.141357,-0.0518799,0.0232239,0.0657654,0.0614014,0.0104675,-0.06604,-0.139679,-0.193756,-0.225433,-0.232941,-0.225433,-0.209808,-0.187531,-0.160187,-0.132629,-0.106659,-0.0881958,-0.0776367,-0.073761,-0.0627441,-0.0301208,0.0351562,0.124084,0.216034,0.296173,0.350616,0.377777,0.371399,0.328735,0.249664,0.147034,0.0463867,-0.0297241,-0.0622253,-0.0534363,-0.0174561,0.0187988,0.0465698,0.0649109,0.0730286,0.0704651,0.0480652,0.00396729,-0.0571899,-0.110199,-0.127594,-0.0964355,-0.0253601,0.0617371,0.141693,0.200256,0.23819,0.259247,0.261597,0.234955,0.174896,0.0776367,-0.0484009,-0.179535,-0.282562,-0.338654,-0.337311,-0.296234,-0.229187,-0.154419,-0.082428,-0.0142822,0.0414124,0.0721436,0.065979,0.0183105,-0.0564575,-0.133972,-0.190552,-0.21637,-0.214691,-0.195709,-0.167786,-0.137329,-0.108063,-0.0834351,-0.0628052,-0.0564575,-0.0628052,-0.0706177,-0.0667725,-0.040741,0.00991821,0.0834351,0.164825,0.2453,0.308929,0.346771,0.353821,0.325958,0.259338,0.166779,0.0730896,0.000213623,-0.0354919,-0.0343018,-0.00744629,0.0233459,0.0447693,0.0502625,0.0410156,0.0141602,-0.0314026,-0.0916748,-0.159943,-0.204224,-0.208527,-0.164307,-0.0761108,0.0350952,0.143829,0.232269,0.289124,0.314484,0.302826,0.254028,0.168121,0.0484009,-0.0897217,-0.219452,-0.317657,-0.359924,-0.341675,-0.274445,-0.183563,-0.0906677,-0.00671387,0.06604,0.118134,0.132355,0.0967102,0.0185242,-0.0791321,-0.163544,-0.212738,-0.226562,-0.211548,-0.17746,-0.134491,-0.0913391,-0.0509949,-0.0214233,-0.00872803,-0.0115356,-0.0296631,-0.0498047,-0.0522156,-0.0273743,0.0297241,0.105499,0.181396,0.244507,0.287506,0.310333,0.306366,0.271332,0.205841,0.120544,0.0334167,-0.0273132,-0.040741,-0.012207,0.037323,0.0748901,0.0842285,0.0704041,0.0411987,0.0050354,-0.0481262,-0.130463,-0.218781,-0.280792,-0.284973,-0.229584,-0.134644,-0.025177,0.0778503,0.168671,0.242065,0.28363,0.285919,0.248718,0.167053,0.0507507,-0.082489,-0.202148,-0.284302,-0.312897,-0.293945,-0.24408,-0.174957,-0.0900574,0.00598145,0.0972595,0.155518,0.158508,0.103302,0.0135498,-0.0808105,-0.153076,-0.197174,-0.217316,-0.212952,-0.183289,-0.132965,-0.0706787,-0.0119324,0.027771,0.0420837,0.0350952,0.0220032,0.00946045,0.0115356,0.0350952,0.0830078,0.144287,0.208466,0.264496,0.298981,0.306244,0.280884,0.222961,0.136108,0.0424194,-0.0367737,-0.0761719,-0.0700073,-0.0294495,0.0218201,0.0585327,0.0819397,0.085022,0.066925,0.0179749,-0.0603333,-0.158203,-0.248932,-0.299408,-0.293213,-0.233215,-0.137054,-0.0299988,0.0661011,0.14035,0.188263,0.207184,0.197235,0.149719,0.0648193,-0.0487976,-0.1604,-0.238129,-0.270264,-0.258453,-0.215576,-0.148529,-0.0684509,0.0181274,0.0973206,0.153503,0.170197,0.139404,0.0700073,-0.0214233,-0.110748,-0.179199,-0.218262,-0.22464,-0.202881,-0.159668,-0.100739,-0.0350342,0.024231,0.0645752,0.0783997,0.0719604,0.0602722,0.0590515,0.0811462,0.119385,0.168671,0.219116,0.264893,0.299805,0.319611,0.308929,0.258514,0.17276,0.0714111,-0.0228271,-0.0889282,-0.114441,-0.0988464,-0.0558472,-0.00531006,0.0361633,0.0547791,0.0556946,0.0369263,-0.0114136,-0.0896606,-0.184753,-0.267242,-0.302429,-0.272675,-0.189941,-0.0885925,0.00390625,0.0770569,0.133148,0.16806,0.169922,0.128387,0.0444946,-0.0721436,-0.191742,-0.28537,-0.329132,-0.315582,-0.257172,-0.169739,-0.0756226,0.0195312,0.112885,0.194763,0.24585,0.240875,0.171814,0.0592041,-0.0550232,-0.141418,-0.189606,-0.210541,-0.213226,-0.195984,-0.157379,-0.0964966,-0.0256348,0.0315552,0.0639038,0.0740356,0.0768433,0.0879822,0.11853,0.164154,0.2229,0.28363,0.337128,0.368713,0.371887,0.346375,0.292145,0.209869,0.103149,-0.00524902,-0.0961609,-0.138,-0.128723,-0.0864563,-0.0387878,-0.00482178,0.0153809,0.0231628,0.0172424,-0.0210876,-0.094635,-0.18631,-0.261597,-0.294891,-0.279785,-0.220123,-0.131683,-0.0330811,0.058197,0.128113,0.164215,0.165985,0.127594,0.049408,-0.0637512,-0.190948,-0.299408,-0.363892,-0.37149,-0.334564,-0.263763,-0.169006,-0.0567932,0.0654297,0.166718,0.228516,0.237305,0.201599,0.135101,0.0544434,-0.0232239,-0.0921326,-0.139343,-0.161743,-0.157104,-0.134033,-0.0990601,-0.0628052,-0.0304565,-0.00415039,0.0126038,0.0283203,0.0523376,0.101074,0.171478,0.254578,0.334778,0.402344,0.447327,0.45993,0.43576,0.371277,0.265961,0.141815,0.0185242,-0.082428,-0.141754,-0.155518,-0.127991,-0.0803223,-0.027771,0.00811768,0.0157776,0.0012207,-0.0410156,-0.109528,-0.193878,-0.272675,-0.315094,-0.308319,-0.249542,-0.158264,-0.0574646,0.0344238,0.106995,0.151154,0.159332,0.126251,0.0504761,-0.0614624,-0.181335,-0.283813,-0.347839,-0.365784,-0.338135,-0.272156,-0.187775,-0.0905457,0.0136108,0.103027,0.163208,0.175507,0.142151,0.0783081,0.0104065,-0.0448914,-0.0799866,-0.0944214,-0.0917969,-0.0757141,-0.0478516,-0.0146179,0.0134888,0.025238,0.0220032,0.00979614,0.00128174,0.0120239,0.0508728,0.121216,0.218048,0.322479,0.414825,0.479065,0.506653,0.490082,0.43335,0.336029,0.208069,0.0628967,-0.0643616,-0.143494,-0.164978,-0.141754,-0.0971069,-0.0512695,-0.0184631,0.00228882,-0.00140381,-0.0363159,-0.1008,-0.185181,-0.268066,-0.317993,-0.314026,-0.257324,-0.16571,-0.0644226,0.0228271,0.0881958,0.126648,0.131409,0.100067,0.0250244,-0.0869141,-0.207306,-0.30423,-0.353699,-0.351746,-0.306702,-0.234833,-0.149719,-0.0549622,0.0354309,0.105713,0.140076,0.127838,0.0734253,-0.00167847,-0.0726929,-0.123962,-0.14502,-0.136383,-0.105042,-0.057251,-0.00436401,0.0465698,0.0820923,0.0961609,0.0832825,0.0551147,0.0292664,0.0216064,0.0525513,0.119537,0.212341,0.313293,0.40329,0.472015,0.510345,0.508453,0.45639,0.355652,0.218536,0.0707397,-0.0495911,-0.121674,-0.141663,-0.126373,-0.100952,-0.0731506,-0.0390625,-0.0110779,-0.00726318,-0.0425415,-0.116516,-0.207184,-0.274689,-0.296051,-0.274109,-0.220276,-0.14502,-0.0602112,0.0218201,0.0898132,0.123566,0.110931,0.0575867,-0.0309448,-0.139191,-0.243347,-0.319733,-0.349518,-0.336517,-0.287933,-0.216309,-0.122284,-0.0189819,0.0764465,0.139252,0.152008,0.114624,0.045105,-0.0342407,-0.104492,-0.157257,-0.183014,-0.183838,-0.15155,-0.0914001,-0.0205383,0.0405273,0.0832825,0.101349,0.098114,0.0861816,0.074646,0.0764465,0.106445,0.163879,0.244568,0.333099,0.406372,0.457184,0.482025,0.477051,0.428864,0.328918,0.195099,0.0649109,-0.0313416,-0.0840149,-0.101288,-0.107727,-0.10672,-0.0862427,-0.0519409,-0.0255127,-0.029541,-0.0779724,-0.157104,-0.229675,-0.266449,-0.266052,-0.231415,-0.169922,-0.0934143,-0.0159607,0.0564575,0.107666,0.12323,0.0930786,0.0132141,-0.100281,-0.214417,-0.298737,-0.339325,-0.339478,-0.310669,-0.258575,-0.18161,-0.0767822,0.0328979,0.118927,0.154297,0.134094,0.079071,0.0104065,-0.0567932,-0.11618,-0.160187,-0.186249,-0.180878,-0.140411,-0.0801392,-0.0157776,0.0339661,0.0599976,0.0640259,0.0578003,0.0553589,0.0666504,0.10376,0.164154,0.235291,0.310883,0.378662,0.437103,0.473236,0.472961,0.42395,0.331268,0.214417,0.103821,0.0205994,-0.0306091,-0.0593872,-0.0762939,-0.081543,-0.0691223,-0.0443726,-0.0263672,-0.0325623,-0.0708618,-0.132477,-0.200928,-0.247864,-0.261871,-0.240997,-0.190216,-0.121887,-0.0461731,0.0267029,0.0848389,0.115112,0.105713,0.0501404,-0.0446167,-0.154968,-0.249664,-0.311218,-0.33429,-0.322296,-0.279053,-0.206909,-0.109741,-0.0071106,0.0785217,0.128448,0.132141,0.100616,0.0470581,-0.0175781,-0.0830994,-0.133698,-0.161194,-0.161133,-0.134369,-0.0926819,-0.0462952,-0.00402832,0.0267639,0.0379333,0.0303345,0.0200806,0.0241699,0.0550232,0.115509,0.19751,0.283905,0.367645,0.441467,0.493347,0.504242,0.462402,0.370667,0.247925,0.121399,0.0157776,-0.0593872,-0.104645,-0.119537,-0.112762,-0.0856323,-0.0496521,-0.0215454,-0.0151062,-0.0414124,-0.089325,-0.150208,-0.202271,-0.229126,-0.227112,-0.196381,-0.141602,-0.0726929,-0.00128174,0.0589294,0.093811,0.0932922,0.0506592,-0.027771,-0.119873,-0.206116,-0.270752,-0.304169,-0.310608,-0.280121,-0.214233,-0.118317,-0.0167847,0.0637512,0.109253,0.118134,0.0940247,0.049469,-0.00698853,-0.0653076,-0.110077,-0.131073,-0.12616,-0.100739,-0.0584412,-0.0148315,0.0228882,0.0406189,0.0327454,0.00778198,-0.0158386,-0.0212097,0.00296021,0.0569153,0.135559,0.229248,0.32724,0.417572,0.483612,0.509003,0.483887,0.411194,0.303284,0.176788,0.0586548,-0.0355835,-0.0950928,-0.120544,-0.126648,-0.121826,-0.108917,-0.0867004,-0.0707397,-0.077179,-0.11557,-0.171692,-0.213287,-0.220398,-0.188934,-0.137787,-0.0839539,-0.0324097,0.0172424,0.0604553,0.0808716,0.06604,0.0123596,-0.0664368,-0.151489,-0.224304,-0.271332,-0.282074,-0.260406,-0.207977,-0.141144,-0.0679932,0.00228882,0.0640259,0.103363,0.105042,0.0690002,0.00759888,-0.057251,-0.107239,-0.131744,-0.130859,-0.11322,-0.0752258,-0.020874,0.0371094,0.0836792,0.103088,0.0906067,0.0571289,0.019989,-0.00280762,-0.000335693,0.032074,0.0933533,0.176697,0.264709,0.349121,0.417725,0.455048,0.454102,0.406586,0.315094,0.204102,0.0943604,0.0100708,-0.0463867,-0.0838928,-0.109924,-0.123169,-0.119659,-0.107513,-0.103821,-0.122498,-0.166443,-0.214905,-0.244568,-0.246307,-0.218445,-0.165894,-0.0988464,-0.0237732,0.0452271,0.0959167,0.110077,0.0876465,0.024353,-0.0697327,-0.17276,-0.261597,-0.313354,-0.324158,-0.295441,-0.236176,-0.15155,-0.0453796,0.0624084,0.148376,0.186646,0.171692,0.117584,0.0454407,-0.0326233,-0.106903,-0.166107,-0.194824,-0.187531,-0.140533,-0.0667114,0.0124817,0.0822754,0.128265,0.142273,0.126312,0.0975037,0.0751038,0.0711975,0.091156,0.133484,0.187927,0.253296,0.3237,0.385986,0.420074,0.410675,0.35376,0.261871,0.164368,0.0797424,0.0143738,-0.0305481,-0.0636902,-0.085907,-0.0944824,-0.0920105,-0.0935669,-0.108795,-0.142548,-0.19516,-0.247986,-0.278442,-0.277863,-0.241669,-0.177521,-0.102203,-0.0281067,0.038269,0.090332,0.110077,0.0867004,0.0151062,-0.0865173,-0.193756,-0.280731,-0.333221,-0.345428,-0.32074,-0.25885,-0.167572,-0.0563049,0.0540161,0.144287,0.19397,0.196106,0.161407,0.0966492,0.0191956,-0.0578613,-0.11618,-0.148132,-0.155914,-0.133881,-0.0891418,-0.0316772,0.0280457,0.0765686,0.102539,0.106049,0.1008,0.0983887,0.113159,0.146179,0.193756,0.252563,0.313232,0.368256,0.405853,0.416565,0.394775,0.338806,0.250458,0.150543,0.0569763,-0.0105286,-0.0507507,-0.0745544,-0.0921326,-0.101624,-0.0996704,-0.0955811,-0.10437,-0.142944,-0.203888,-0.26059,-0.289276,-0.284363,-0.246918,-0.187653,-0.114502,-0.0308838,0.0474548,0.101196,0.116028,0.0869751,0.0168457,-0.0855103,-0.199249,-0.303894,-0.371399,-0.392487,-0.365295,-0.304108,-0.214569,-0.0979919,0.0288696,0.136047,0.201477,0.213348,0.18396,0.125916,0.0575867,-0.0144958,-0.0784607,-0.123688,-0.141754,-0.123169,-0.0775146,-0.0223389,0.0279846,0.065918,0.0879211,0.0951538,0.0956421,0.101471,0.126587,0.173035,0.23053,0.291809,0.346985,0.393158,0.423889,0.430878,0.401001,0.331207,0.23114,0.130951,0.0462341,-0.012085,-0.0484619,-0.0722046,-0.0836792,-0.0836182,-0.0791931,-0.0869751,-0.108917,-0.151001,-0.210815,-0.26825,-0.30603,-0.313019,-0.278442,-0.208801,-0.119202,-0.032074,0.0440979,0.0965881,0.114105,0.093811,0.0232849,-0.0835571,-0.201477,-0.301147,-0.363281,-0.386169,-0.367035,-0.316437,-0.234039,-0.129517,-0.0212708,0.0708008,0.125244,0.145966,0.137329,0.10437,0.0593872,0.0071106,-0.0338135,-0.057373,-0.0596008,-0.0429382,-0.0198059,0.00643921,0.028595,0.0430908,0.0463867,0.041626,0.0456238,0.0667114,0.115692,0.186646,0.266113,0.346039,0.417114,0.468445,0.487854,0.468719,0.410461,0.314484,0.201202,0.094696,0.0106812,-0.0447693,-0.0744934,-0.0876465,-0.0918884,-0.0827637,-0.0681152,-0.0630798,-0.0819397,-0.134033,-0.202362,-0.257324,-0.279724,-0.272827,-0.24295,-0.199127,-0.136841,-0.0605469,0.0200806,0.0719604,0.0821533,0.0447693,-0.0306091,-0.122681,-0.21048,-0.282471,-0.329742,-0.344574,-0.326385,-0.27832,-0.202484,-0.109253,-0.0205994,0.0441589,0.0708008,0.0637512,0.0406189,0.0171814,-0.00631714,-0.0287781,-0.0474548,-0.0535583,-0.0345764,0.0050354,0.0479126,0.0779724,0.0857849,0.0750427,0.0545044,0.0403442,0.0393982,0.0583801,0.103973,0.17041,0.253357,0.336975,0.40979,0.465851,0.492737,0.480347,0.421143,0.323883,0.215759,0.116974,0.0445557,-0.00564575,-0.0437622,-0.0752258,-0.0943604,-0.0964966,-0.0949707,-0.102875,-0.135437,-0.18866,-0.240753,-0.269745,-0.266174,-0.235901,-0.183289,-0.120605,-0.0532227,0.0126038,0.065094,0.0854492,0.0635681,0.000457764,-0.094574,-0.198456,-0.286438,-0.343018,-0.364899,-0.352966,-0.310272,-0.240601,-0.145782,-0.0438843,0.0393372,0.0821533,0.0830994,0.0551147,0.0148315,-0.028717,-0.0687866,-0.1008,-0.115112,-0.0997314,-0.0597229,-0.00476074,0.0475769,0.0881958,0.10611,0.103149,0.0848999,0.0646362,0.0595398,0.0817566,0.129791,0.195984,0.272339,0.349609,0.415771,0.463409,0.47522,0.443024,0.372406,0.273834,0.174164,0.091156,0.0369263,0.00482178,-0.01651,-0.03302,-0.0406189,-0.0426941,-0.0495911,-0.0769043,-0.133026,-0.210541,-0.275574,-0.304504,-0.296631,-0.257843,-0.19986,-0.127106,-0.0455627,0.0351562,0.0910645,0.108124,0.082489,0.0137634,-0.081604,-0.184692,-0.274841,-0.333618,-0.355713,-0.339813,-0.30188,-0.238525,-0.155243,-0.0644836,0.0151062,0.060791,0.0673218,0.0437012,0.00878906,-0.0263062,-0.0578613,-0.0785217,-0.0903931,-0.0808105,-0.0524902,-0.00933838,0.0317993,0.0578003,0.0675964,0.0619507,0.0503235,0.0420227,0.0504761,0.0898743,0.155304,0.236725,0.319519,0.388336,0.440613,0.472626,0.473633,0.431488,0.344086,0.234283,0.128448,0.0515442,0.00497437,-0.0221558,-0.0429382,-0.0559692,-0.0495911,-0.0400085,-0.0391235,-0.062561,-0.118256,-0.185425,-0.240417,-0.265045,-0.255829,-0.215912,-0.161072,-0.101135,-0.0351562,0.0278625,0.0711365,0.0767212,0.037262,-0.039856,-0.135712,-0.219543,-0.279938,-0.313019,-0.317505,-0.295898,-0.249542,-0.177521,-0.0929565,-0.0181885,0.0312805,0.0495911,0.0361633,0.00759888,-0.0278625,-0.0595398,-0.0842896,-0.101868,-0.100739,-0.0762329,-0.0354919,0.0127563,0.052002,0.074646,0.0760498,0.0622864,0.0434875,0.0374451,0.0565796,0.0990601,0.161133,0.233032,0.309662,0.380951,0.433289,0.46167,0.451874,0.399811,0.312347,0.210724,0.119049,0.0531616,0.0132751,-0.0153809,-0.0420837,-0.0608826,-0.0700073,-0.0726929,-0.0800781,-0.110809,-0.164642,-0.224487,-0.251343,-0.244843,-0.206573,-0.150055,-0.0908203,-0.0273743,0.032959,0.0796509,0.092804,0.0657043,-0.00228882,-0.0991821,-0.196655,-0.274628,-0.322418,-0.336243,-0.316376,-0.271545,-0.207642,-0.127502,-0.0450439,0.0265198,0.0683289,0.072876,0.0470581,0.00491333,-0.0350342,-0.0686035,-0.0916748,-0.101532,-0.0969238,-0.0728149,-0.036438,0.003479,0.0349121,0.0499878,0.0505371,0.0448914,0.0411377,0.0500793,0.0826721,0.137177,0.210144,0.290009,0.35672,0.404694,0.432068,0.433075,0.398926,0.327576,0.233826,0.139191,0.0657043,0.0260315,0.00799561,-0.00772095,-0.0237732,-0.0376587,-0.046051,-0.0531616,-0.0775757,-0.132751,-0.20639,-0.263763,-0.28302,-0.262939,-0.210602,-0.13913,-0.0632324,0.012207,0.077301,0.116974,0.116516,0.0743713,-0.0085144,-0.116241,-0.220062,-0.298981,-0.3396,-0.340393,-0.312408,-0.265717,-0.198792,-0.111938,-0.0236206,0.0406189,0.0704651,0.0646973,0.0388489,0.00765991,-0.0198669,-0.0444946,-0.060791,-0.0679321,-0.0599976,-0.0383301,-0.00778198,0.0184021,0.0287781,0.0246887,0.012085,-0.00289917,-0.00671387,0.0159607,0.0732117,0.156433,0.253082,0.340546,0.40799,0.451813,0.471405,0.458069,0.400543,0.303436,0.184906,0.0782471,0.00939941,-0.0209351,-0.0328064,-0.0422058,-0.0461731,-0.0425415,-0.0406189,-0.0497437,-0.0798035,-0.139069,-0.212402,-0.271332,-0.293091,-0.267639,-0.203766,-0.124176,-0.0436096,0.0317993,0.0932312,0.128052,0.122345,0.0705261,-0.0284424,-0.146118,-0.249939,-0.317108,-0.344757,-0.337799,-0.304504,-0.248383,-0.166992,-0.0749817,0.00497437,0.0579834,0.0716858,0.0541077,0.020813,-0.0126038,-0.0415344,-0.0599976,-0.0648193,-0.0520935,-0.024353,0.0110779,0.0463867,0.0674438,0.0689392,0.0477905,0.0135498,-0.0198669,-0.0312195,-0.00698853,0.0502014,0.136108,0.236389,0.335571,0.417389,0.472565,0.493286,0.470612,0.402283,0.302277,0.185516,0.0803223,0.0104675,-0.0271912,-0.0488586,-0.0646973,-0.0735474,-0.0711365,-0.0594482,-0.0611267,-0.103699,-0.179932,-0.251892,-0.285248,-0.275757,-0.239075,-0.190552,-0.128723,-0.0471191,0.0427551,0.111481,0.132812,0.105988,0.0402832,-0.0535583,-0.155518,-0.248047,-0.314148,-0.337585,-0.324219,-0.290741,-0.236786,-0.160126,-0.0698547,0.0114136,0.0602112,0.0679932,0.0459595,0.0177307,-0.00442505,-0.0250854,-0.0465088,-0.0590515,-0.0524902,-0.021759,0.0224304,0.060791,0.078064,0.0710144,0.0524292,0.0299988,0.0085144,0.00100708,0.0215454,0.0755615,0.157104,0.249207,0.333008,0.402008,0.452881,0.477325,0.456635,0.381958,0.2771,0.167389,0.07724,0.0177917,-0.0234985,-0.0583801,-0.0801392,-0.0852966,-0.0807495,-0.0803223,-0.0957642,-0.132965,-0.185089,-0.235565,-0.263763,-0.256927,-0.213501,-0.146362,-0.0763855,-0.0137634,0.0418701,0.0841064,0.0982666,0.0729675,-0.0012207,-0.108063,-0.213165,-0.286926,-0.321625,-0.326233,-0.311676,-0.275696,-0.209137,-0.119324,-0.0335693,0.0275879,0.0569153,0.0560303,0.0352478,0.00750732,-0.0206604,-0.0426941,-0.0532227,-0.0515442,-0.0308838,-0.00241089,0.0296631,0.0582581,0.0763855,0.0737,0.0512085,0.020752,0.00222778,0.013092,0.0541077,0.115631,0.191223,0.277527,0.359131,0.423492,0.460815,0.463684,0.421265,0.344147,0.246033,0.148926,0.0680542,0.0126038,-0.0255127,-0.0522156,-0.0710144,-0.0845642,-0.0881348,-0.0906067,-0.108582,-0.155243,-0.21698,-0.261017,-0.269745,-0.241486,-0.193298,-0.133881,-0.0709534,-0.00524902,0.0559082,0.0950928,0.098053,0.052948,-0.0306091,-0.132416,-0.221954,-0.288269,-0.325165,-0.331421,-0.313629,-0.271881,-0.202087,-0.111938,-0.0258484,0.0343018,0.0585327,0.052887,0.0344849,0.0115967,-0.0128174,-0.0369873,-0.0502014,-0.0508118,-0.0316162,-0.000671387,0.0370483,0.0669861,0.078125,0.0708618,0.0518799,0.0294495,0.0184021,0.0302124,0.0708618,0.135437,0.216095,0.298126,0.369995,0.424561,0.457397,0.454285,0.408661,0.327515,0.226227,0.125244,0.048584,-0.00100708,-0.0350342,-0.0593872,-0.0755005,-0.0820007,-0.0834961,-0.089325,-0.116119,-0.165833,-0.221069,-0.25766,-0.262085,-0.233032,-0.179199,-0.116364,-0.04953,0.0135498,0.065918,0.0900574,0.0774536,0.0245667,-0.0624084,-0.160126,-0.248718,-0.308929,-0.334015,-0.326965,-0.297577,-0.248383,-0.174377,-0.0851135,-0.00424194,0.0484009,0.0654907,0.053009,0.0278625,0.000396729,-0.0281067,-0.0487976,-0.0598755,-0.057251,-0.0344238,-0.00195312,0.0342407,0.0584412,0.0647583,0.0568542,0.0403442,0.0223389,0.0173035,0.0394592,0.0914917,0.164551,0.249603,0.331665,0.395966,0.43866,0.458069,0.446564,0.393494,0.306122,0.204163,0.115112,0.0536194,0.0128784,-0.025177,-0.0593262,-0.0819397,-0.0886536,-0.0898132,-0.104156,-0.145111,-0.202606,-0.249329,-0.261932,-0.242401,-0.203705,-0.149323,-0.0832214,-0.0122681,0.050415,0.085968,0.091217,0.0645752,0.00436401,-0.0865784,-0.188934,-0.276031,-0.329315,-0.347992,-0.340393,-0.314301,-0.263824,-0.185303,-0.0908813,-0.00817871,0.0471802,0.0683899,0.0691833,0.0612183,0.0426941,0.0126038,-0.0200806,-0.041748,-0.0428162,-0.0303345,-0.0100708,0.00991821,0.0221558,0.0260315,0.0231628,0.0155029,0.0101929,0.0146179,0.0448303,0.102478,0.17981,0.267639,0.348328,0.41153,0.454376,0.469543,0.448669,0.39267,0.311218,0.213348,0.121277,0.0487976,0.00296021,-0.0314636,-0.0593872,-0.0827637,-0.0986633,-0.106232,-0.117706,-0.150482,-0.204102,-0.251953,-0.267975,-0.243896,-0.19455,-0.137054,-0.0770569,-0.0105286,0.0578003,0.106781,0.112274,0.0767212,0.0065918,-0.081604,-0.177185,-0.265167,-0.332428,-0.363281,-0.362152,-0.334503,-0.282013,-0.206116,-0.114899,-0.0297241,0.03302,0.0661011,0.0749817,0.0700073,0.0552368,0.0330811,0.00369263,-0.019928,-0.0314636,-0.0236206,-0.00476074,0.0140381,0.0226135,0.0210876,0.0152893,0.00683594,0.000274658,0.00610352,0.0324097,0.0874634,0.1651,0.253632,0.337982,0.403229,0.447174,0.469666,0.462952,0.415771,0.332001,0.227905,0.132141,0.0633545,0.0128784,-0.0280457,-0.0658264,-0.0954285,-0.112213,-0.116364,-0.127777,-0.157715,-0.206726,-0.247314,-0.256927,-0.23114,-0.181152,-0.123962,-0.0636902,-0.00189209,0.0578613,0.0993958,0.110748,0.0847778,0.019989,-0.0715332,-0.168854,-0.255432,-0.318176,-0.352417,-0.357513,-0.338806,-0.293549,-0.225433,-0.141205,-0.058197,0.00683594,0.0438232,0.0596619,0.0627441,0.0564575,0.0414734,0.0202026,0.000732422,-0.00952148,-0.00900269,-0.000946045,0.00772095,0.0132751,0.0118713,0.00363159,-0.00476074,-0.0116882,-0.00509644,0.0232849,0.0801392,0.15979,0.249603,0.332611,0.397125,0.44342,0.471954,0.468658,0.422272,0.340057,0.237457,0.14679,0.0788574,0.0282593,-0.0173035,-0.0646973,-0.0982666,-0.111816,-0.113678,-0.125763,-0.163757,-0.215302,-0.253815,-0.257843,-0.22934,-0.180145,-0.123505,-0.0656433,-0.000457764,0.0640259,0.113495,0.12442,0.0923462,0.0238953,-0.0605469,-0.147125,-0.232758,-0.303345,-0.349335,-0.364014,-0.346924,-0.302429,-0.236176,-0.157104,-0.0801392,-0.0160522,0.0269775,0.0506592,0.0583191,0.0540161,0.0438232,0.0271912,0.00616455,-0.00967407,-0.0110779,-0.00234985,0.0065918,0.00549316,-0.00112915,-0.00726318,-0.0116882,-0.0126038,-0.00683594,0.0148926,0.0637512,0.136719,0.225555,0.313751,0.382019,0.430664,0.465179,0.47757,0.452423,0.381195,0.279449,0.17981,0.101868,0.0436096,-0.0104675,-0.0662537,-0.110199,-0.131073,-0.134644,-0.143433,-0.1745,-0.217865,-0.245636,-0.24469,-0.215912,-0.169739,-0.116119,-0.0531616,0.0114746,0.069519,0.109253,0.124023,0.105835,0.0510864,-0.0324097,-0.130005,-0.223694,-0.293427,-0.339722,-0.36087,-0.357788,-0.323883,-0.263275,-0.183746,-0.10437,-0.0358276,0.0160522,0.0523376,0.0717468,0.0737,0.0606079,0.040863,0.0212097,0.00564575,-0.00524902,-0.0133667,-0.019928,-0.0256348,-0.0270386,-0.0311279,-0.0357666,-0.0363159,-0.0269775,0.00012207,0.0487976,0.119324,0.203888,0.292816,0.367523,0.421936,0.45752,0.472137,0.456635,0.398376,0.31012,0.213287,0.132019,0.0760498,0.0274353,-0.0292664,-0.0865173,-0.122742,-0.134766,-0.142487,-0.170868,-0.21759,-0.255035,-0.260925,-0.234619,-0.187927,-0.134369,-0.0704041,-0.00201416,0.0634766,0.115234,0.140594,0.13147,0.0861206,0.0126038,-0.0740356,-0.166229,-0.245514,-0.309875,-0.353546,-0.371887,-0.354645,-0.305298,-0.234955,-0.157379,-0.0870361,-0.0221558,0.0336914,0.0728149,0.0891418,0.0876465,0.0734863,0.0520935,0.0287781,0.00704956,-0.00973511,-0.0216675,-0.0314026,-0.0377197,-0.0420227,-0.0487366,-0.0508118,-0.0467834,-0.0315552,0.00106812,0.0570374,0.137573,0.229065,0.316437,0.383759,0.437042,0.478058,0.49295,0.460388,0.377838,0.274231,0.175507,0.0997925,0.036377,-0.0297852,-0.0923462,-0.131744,-0.140076,-0.140198,-0.155518,-0.189667,-0.223572,-0.234955,-0.220551,-0.188873,-0.14624,-0.0899353,-0.025177,0.0414734,0.0982666,0.13678,0.145782,0.121216,0.0623474,-0.0224304,-0.121399,-0.216034,-0.292145,-0.345093,-0.371735,-0.367188,-0.333099,-0.272766,-0.19516,-0.110992,-0.0359802,0.0239563,0.0656433,0.0861816,0.0933533,0.0846252,0.0637512,0.0341492,0.0065918,-0.0109253,-0.0218811,-0.0311279,-0.0397949,-0.0461731,-0.0504761,-0.0539551,-0.053772,-0.0475159,-0.028595,0.0108643,0.0745544,0.154236,0.243225,0.326508,0.393158,0.44397,0.474304,0.47229,0.425293,0.343567,0.246307,0.159393,0.0884705,0.0209961,-0.0491333,-0.106049,-0.137329,-0.148193,-0.159454,-0.186432,-0.222015,-0.246704,-0.243958,-0.215027,-0.17041,-0.11322,-0.0481262,0.0249023,0.0949097,0.145844,0.171417,0.1651,0.124176,0.0507507,-0.0440979,-0.148804,-0.246368,-0.323303,-0.375366,-0.39624,-0.379791,-0.331421,-0.257721,-0.17041,-0.0822144,-0.00262451,0.0612183,0.107239,0.126099,0.121063,0.0971069,0.0632935,0.0265198,-0.00939941,-0.0361023,-0.0546875,-0.0644836,-0.0654907,-0.0630188,-0.0594482,-0.0569763,-0.0527649,-0.0437622,-0.0205994,0.0224304,0.0873718,0.169739,0.260345,0.345093,0.414551,0.467712,0.494751,0.478577,0.415314,0.317169,0.212067,0.119049,0.0381775,-0.0351562,-0.101624,-0.147797,-0.166718,-0.168335,-0.172546,-0.19397,-0.219879,-0.233429,-0.22113,-0.18811,-0.145172,-0.0919495,-0.0245056,0.0520935,0.12027,0.169128,0.189941,0.179718,0.133301,0.0582581,-0.0461731,-0.160126,-0.263611,-0.341675,-0.387787,-0.401398,-0.383362,-0.334015,-0.254974,-0.156708,-0.0587158,0.0256348,0.09021,0.130402,0.147247,0.139252,0.113617,0.0687256,0.0191345,-0.0234985,-0.0526123,-0.0691833,-0.0782471,-0.0797424,-0.0736389,-0.0632935,-0.0569153,-0.0532227,-0.0456238,-0.0244446,0.0166321,0.0814819,0.164764,0.258789,0.345703,0.417511,0.467529,0.4935,0.477722,0.417572,0.321014,0.212402,0.10907,0.0209351,-0.052948,-0.118652,-0.167389,-0.193634,-0.199524,-0.200867,-0.211395,-0.228058,-0.236908,-0.219116,-0.17804,-0.124573,-0.0588684,0.0111389,0.0826721,0.144623,0.189941,0.208984,0.191864,0.138672,0.0562439,-0.0461121,-0.156586,-0.261414,-0.343903,-0.392212,-0.402954,-0.383026,-0.334351,-0.256378,-0.155243,-0.0508728,0.0393372,0.106567,0.148041,0.164642,0.158447,0.125702,0.0740356,0.0149536,-0.0355835,-0.0677795,-0.0876465,-0.0996704,-0.101135,-0.0898743,-0.0718689,-0.0566406,-0.0505981,-0.0465698,-0.0296021,0.00744629,0.0716858,0.152893,0.240265,0.325775,0.401611,0.461548,0.494354,0.483032,0.422546,0.328186,0.220398,0.118652,0.0270386,-0.0536194,-0.125763,-0.178986,-0.205292,-0.208466,-0.209259,-0.22168,-0.240265,-0.246582,-0.225037,-0.180603,-0.12323,-0.0606689,0.0119324,0.0880432,0.160797,0.212494,0.231812,0.213409,0.163818,0.0874634,-0.012207,-0.127441,-0.240417,-0.330322,-0.388794,-0.410339,-0.395844,-0.348663,-0.270325,-0.172272,-0.0688477,0.028656,0.108459,0.161682,0.183167,0.175964,0.143677,0.0909424,0.0281067,-0.0275269,-0.0735474,-0.105438,-0.120331,-0.117859,-0.102692,-0.0808716,-0.0677185,-0.0585327,-0.0536194,-0.0410767,-0.0122681,0.0409546,0.116241,0.207458,0.297577,0.379395,0.445831,0.487396,0.490753,0.449249,0.364441,0.253754,0.142761,0.0428162,-0.044281,-0.121887,-0.182281,-0.215179,-0.223022,-0.216644,-0.218536,-0.23114,-0.239655,-0.226654,-0.187866,-0.134491,-0.0716248,-0.00289917,0.0742188,0.150391,0.211334,0.243347,0.236572,0.197723,0.133087,0.0452881,-0.0654297,-0.184753,-0.290741,-0.368256,-0.403412,-0.40274,-0.368988,-0.305359,-0.217865,-0.115967,-0.0108032,0.0818176,0.147858,0.179474,0.182953,0.158783,0.115295,0.0550232,-0.00732422,-0.0611267,-0.0987244,-0.118317,-0.121613,-0.113953,-0.0991821,-0.0856323,-0.0748901,-0.0700073,-0.0638123,-0.0469666,-0.00604248,0.0648193,0.156311,0.255981,0.351135,0.430328,0.485107,0.50946,0.490997,0.420013,0.309937,0.183502,0.065094,-0.036377,-0.119995,-0.187714,-0.229736,-0.240417,-0.230408,-0.219879,-0.220062,-0.221283,-0.212677,-0.18457,-0.143158,-0.091156,-0.0249634,0.052887,0.130188,0.197327,0.238464,0.248932,0.230255,0.184967,0.11026,0.0113525,-0.102142,-0.216522,-0.31073,-0.373169,-0.399261,-0.387573,-0.343414,-0.275299,-0.186249,-0.0833435,0.0157776,0.0973206,0.149536,0.171417,0.166443,0.138062,0.0909424,0.0316772,-0.0279846,-0.0760498,-0.108582,-0.121277,-0.120544,-0.111755,-0.0976562,-0.0845032,-0.0776367,-0.0812683,-0.0787964,-0.0593872,-0.0117493,0.0667114,0.165894,0.270416,0.366302,0.446503,0.504578,0.526306,0.494751,0.402069,0.272552,0.137573,0.0202637,-0.0792542,-0.164032,-0.226654,-0.258392,-0.253235,-0.227661,-0.208801,-0.206512,-0.208069,-0.19455,-0.157593,-0.109467,-0.0580444,0.00759888,0.0906067,0.176514,0.240875,0.27536,0.279602,0.255371,0.200134,0.113892,0.00491333,-0.108643,-0.216187,-0.306976,-0.369934,-0.397522,-0.384491,-0.337799,-0.266846,-0.184845,-0.0950317,-0.00100708,0.0841675,0.13858,0.154572,0.145111,0.121887,0.0855103,0.0302734,-0.032135,-0.0814209,-0.110321,-0.121735,-0.123749,-0.118134,-0.109528,-0.0997314,-0.0907288,-0.0857849,-0.0843506,-0.0730286,-0.0362549,0.0390015,0.137238,0.242554,0.339203,0.425049,0.49115,0.515381,0.487518,0.404694,0.284576,0.150208,0.0308838,-0.0714722,-0.155304,-0.215515,-0.243622,-0.239136,-0.220276,-0.207733,-0.205231,-0.198181,-0.178192,-0.153351,-0.115173,-0.0585938,0.0179138,0.103973,0.187439,0.254425,0.298737,0.313141,0.290619,0.231812,0.145447,0.0444336,-0.0632935,-0.167999,-0.263947,-0.343689,-0.390686,-0.391876,-0.355652,-0.298737,-0.230133,-0.145508,-0.048645,0.0367737,0.0977173,0.126495,0.13678,0.129944,0.101532,0.0516663,-0.0114746,-0.0683899,-0.110748,-0.133972,-0.14093,-0.13974,-0.132874,-0.11853,-0.101074,-0.0909424,-0.0901489,-0.0887146,-0.0636292,-0.00201416,0.0860291,0.186432,0.285706,0.371674,0.441681,0.481262,0.476776,0.419525,0.319733,0.193146,0.070343,-0.0299988,-0.11026,-0.167175,-0.198181,-0.206299,-0.200684,-0.191223,-0.185425,-0.180725,-0.172821,-0.15686,-0.127655,-0.0761108,-0.00268555,0.0809326,0.165985,0.244415,0.302338,0.329529,0.322968,0.28067,0.212494,0.123505,0.0255737,-0.0708618,-0.166168,-0.253967,-0.32785,-0.371948,-0.381531,-0.361755,-0.318176,-0.25174,-0.165497,-0.0722961,0.0115356,0.0752869,0.117981,0.137238,0.130951,0.098938,0.0435486,-0.0250854,-0.0895386,-0.136658,-0.160278,-0.164551,-0.156586,-0.140472,-0.115295,-0.0929565,-0.0849609,-0.0887146,-0.0885315,-0.0683289,-0.0229492,0.0513306,0.141266,0.239746,0.329987,0.406036,0.452209,0.460663,0.421265,0.335114,0.220673,0.101349,-0.00296021,-0.0880432,-0.145691,-0.179596,-0.19516,-0.197174,-0.192474,-0.186188,-0.179474,-0.163361,-0.139191,-0.0956421,-0.037384,0.0344238,0.117859,0.204956,0.281067,0.332428,0.35498,0.34671,0.308777,0.241333,0.152222,0.0532837,-0.0452881,-0.140533,-0.233368,-0.31543,-0.376495,-0.40625,-0.395172,-0.351135,-0.284363,-0.205231,-0.116974,-0.0296631,0.0479126,0.101868,0.126251,0.120728,0.0892639,0.037262,-0.0302124,-0.0959167,-0.143555,-0.166321,-0.170074,-0.157928,-0.138733,-0.112152,-0.0879822,-0.0777893,-0.0886536,-0.108978,-0.119995,-0.10611,-0.0567017,0.0252991,0.123413,0.225494,0.321472,0.40451,0.45932,0.470398,0.424042,0.328979,0.21463,0.108246,0.0144958,-0.0639648,-0.126923,-0.176025,-0.200684,-0.202362,-0.196838,-0.187653,-0.169922,-0.143433,-0.104218,-0.0505981,0.0184631,0.105042,0.200928,0.289398,0.353638,0.393158,0.405579,0.385712,0.331268,0.246582,0.139679,0.0296021,-0.0740967,-0.174622,-0.273773,-0.363617,-0.426971,-0.44812,-0.425629,-0.370331,-0.292023,-0.201202,-0.107452,-0.025177,0.0394592,0.0834961,0.103546,0.0975037,0.0630188,0.00799561,-0.0558472,-0.10965,-0.141541,-0.152557,-0.148651,-0.136902,-0.121735,-0.107178,-0.0994568,-0.114838,-0.149384,-0.187531,-0.209991,-0.199188,-0.143677,-0.0473022,0.0751038,0.207581,0.326569,0.424896,0.491089,0.513489,0.481598,0.396454,0.280212,0.159668,0.0562439,-0.0247803,-0.089386,-0.14328,-0.182281,-0.201691,-0.205444,-0.197174,-0.177704,-0.149139,-0.107178,-0.049408,0.0301208,0.132416,0.246857,0.352631,0.42746,0.467041,0.472229,0.440125,0.376251,0.278656,0.158661,0.0355835,-0.0771179,-0.177032,-0.266724,-0.350677,-0.418915,-0.457306,-0.458191,-0.42569,-0.36792,-0.293427,-0.208374,-0.121552,-0.0438232,0.0245667,0.0769653,0.109985,0.115295,0.0867004,0.0333557,-0.0336304,-0.0912781,-0.134827,-0.162476,-0.179535,-0.186523,-0.186249,-0.183502,-0.188721,-0.209137,-0.237854,-0.260925,-0.260925,-0.228119,-0.15155,-0.0353088,0.106171,0.257324,0.397858,0.511932,0.58316,0.60141,0.557373,0.45639,0.320129,0.180878,0.0569153,-0.0465698,-0.129944,-0.195892,-0.231689,-0.240814,-0.228455,-0.200348,-0.158264,-0.107513,-0.0454407,0.0320129,0.127319,0.233276,0.341339,0.435089,0.500397,0.525513,0.509338,0.454773,0.369598,0.256378,0.125031,-0.00247192,-0.110992,-0.203827,-0.289276,-0.372345,-0.44812,-0.501007,-0.518402,-0.495087,-0.440277,-0.362762,-0.276093,-0.176117,-0.06604,0.0381775,0.124298,0.179932,0.192352,0.156189,0.0788574,-0.0202026,-0.112,-0.182404,-0.235107,-0.268311,-0.280457,-0.274506,-0.259583,-0.249939,-0.259186,-0.282562,-0.306305,-0.308868,-0.272766,-0.188599,-0.0606689,0.102081,0.284302,0.45639,0.593903,0.680878,0.70697,0.660187,0.540619,0.374512,0.202545,0.0578003,-0.0545654,-0.137787,-0.198242,-0.229065,-0.227112,-0.202423,-0.1633,-0.124359,-0.0831604,-0.0334778,0.0354309,0.126038,0.235168,0.352966,0.463409,0.541931,0.570343,0.555023,0.501343,0.414429,0.295563,0.15094,0.00543213,-0.115356,-0.208374,-0.279877,-0.345581,-0.413483,-0.479675,-0.526917,-0.539001,-0.510925,-0.454102,-0.37738,-0.286591,-0.177032,-0.0542297,0.0626831,0.159393,0.212219,0.20813,0.150604,0.0565186,-0.0563049,-0.166565,-0.25885,-0.329926,-0.371277,-0.382965,-0.369385,-0.337189,-0.303101,-0.282471,-0.283295,-0.283813,-0.262085,-0.205841,-0.110657,0.0181885,0.171692,0.337585,0.494965,0.619202,0.696442,0.713226,0.661072,0.550537,0.398651,0.240875,0.103424,-0.0134277,-0.107666,-0.182068,-0.229065,-0.238647,-0.214844,-0.171204,-0.120819,-0.0632324,0.00564575,0.0905457,0.196106,0.31369,0.428253,0.52243,0.581665,0.591217,0.562408,0.496582,0.396851,0.267975,0.120941,-0.0231628,-0.141815,-0.229004,-0.293488,-0.3461,-0.395172,-0.446899,-0.498718,-0.530212,-0.534363,-0.504578,-0.444489,-0.360199,-0.254486,-0.129669,0.00012207,0.110931,0.187866,0.208588,0.166992,0.0757751,-0.0425415,-0.174225,-0.296906,-0.39093,-0.442963,-0.446045,-0.411194,-0.351959,-0.285095,-0.226776,-0.197845,-0.201935,-0.217651,-0.214355,-0.178925,-0.101196,0.0162354,0.169006,0.34726,0.52597,0.67746,0.770599,0.785645,0.721283,0.594635,0.425903,0.241425,0.0696106,-0.0715332,-0.171265,-0.23175,-0.254242,-0.235046,-0.179932,-0.107727,-0.0378418,0.0283813,0.0993958,0.181335,0.278442,0.379669,0.4729,0.544281,0.585968,0.586243,0.545563,0.459991,0.333893,0.185028,0.0317383,-0.109192,-0.216034,-0.284485,-0.316772,-0.332275,-0.341675,-0.36087,-0.393677,-0.437714,-0.480408,-0.506439,-0.498657,-0.451691,-0.366119,-0.256836,-0.135559,-0.0163879,0.0818176,0.144012,0.157654,0.111664,0.0180664,-0.1008,-0.227509,-0.339142,-0.413086,-0.445221,-0.437195,-0.395508,-0.333771,-0.26886,-0.215027,-0.18811,-0.183899,-0.182953,-0.163696,-0.111877,-0.0250244,0.0962524,0.243225,0.405853,0.564911,0.69162,0.757721,0.748108,0.667175,0.535095,0.376099,0.206848,0.0551758,-0.065155,-0.146027,-0.189728,-0.19281,-0.157776,-0.0973816,-0.0260925,0.0435486,0.110596,0.178711,0.250458,0.325714,0.398254,0.457794,0.495697,0.506836,0.486115,0.433563,0.346375,0.23175,0.11142,-0.00924683,-0.112946,-0.19101,-0.239807,-0.266052,-0.278778,-0.286377,-0.296387,-0.32074,-0.364502,-0.429138,-0.488922,-0.524231,-0.516968,-0.464905,-0.373688,-0.262482,-0.145844,-0.0296021,0.0669861,0.126923,0.133881,0.0835571,-0.0113525,-0.133881,-0.262024,-0.37323,-0.440674,-0.459137,-0.435242,-0.378113,-0.301331,-0.220398,-0.149597,-0.106049,-0.0973206,-0.103363,-0.100952,-0.0760498,-0.0175171,0.0743713,0.191864,0.335571,0.489197,0.624969,0.714417,0.734833,0.688782,0.588318,0.451599,0.295227,0.143005,0.0137634,-0.0755615,-0.129456,-0.149933,-0.13443,-0.0862427,-0.0161743,0.0552368,0.116699,0.17276,0.229523,0.293365,0.352692,0.396851,0.423492,0.433014,0.422028,0.383301,0.310608,0.215515,0.109802,0.00738525,-0.0862427,-0.158844,-0.202423,-0.218933,-0.217773,-0.214966,-0.219543,-0.238403,-0.274963,-0.338593,-0.428986,-0.526184,-0.595245,-0.606567,-0.556519,-0.454498,-0.3255,-0.182678,-0.0320129,0.0969238,0.182831,0.202606,0.152008,0.0391846,-0.106995,-0.259399,-0.389526,-0.468109,-0.487061,-0.451416,-0.378387,-0.284088,-0.18866,-0.112274,-0.0718079,-0.0810852,-0.118256,-0.14859,-0.143005,-0.0839539,0.0281982,0.176514,0.354034,0.541626,0.70639,0.815826,0.840546,0.775848,0.640259,0.469208,0.284149,0.109314,-0.0291138,-0.117126,-0.156311,-0.155304,-0.123505,-0.0711365,-0.00564575,0.0534363,0.0953674,0.128784,0.169739,0.226837,0.296051,0.364227,0.421356,0.458252,0.470123,0.449127,0.383484,0.279602,0.15509,0.0283203,-0.0861816,-0.176025,-0.230347,-0.24765,-0.233704,-0.210876,-0.197906,-0.203827,-0.233948,-0.286499,-0.367126,-0.46994,-0.571472,-0.635895,-0.632965,-0.5578,-0.423889,-0.258453,-0.0848389,0.081543,0.209991,0.273346,0.259064,0.16449,0.00946045,-0.176239,-0.356506,-0.501892,-0.580536,-0.584503,-0.521942,-0.42041,-0.299591,-0.182068,-0.0851135,-0.0231018,-0.00918579,-0.0318909,-0.0586548,-0.0575867,-0.0104675,0.0861816,0.219116,0.375244,0.536987,0.67569,0.762207,0.77066,0.699402,0.561218,0.389069,0.20932,0.0463867,-0.0798645,-0.149261,-0.166504,-0.142944,-0.0943604,-0.0305481,0.0424194,0.116364,0.175232,0.215851,0.25061,0.292358,0.344635,0.394287,0.428864,0.440338,0.42511,0.380127,0.300995,0.191864,0.0733643,-0.036377,-0.127716,-0.193024,-0.231873,-0.238403,-0.213013,-0.172485,-0.137054,-0.12384,-0.133026,-0.164703,-0.213684,-0.281464,-0.366241,-0.454773,-0.516907,-0.536377,-0.499329,-0.410858,-0.281281,-0.138397,-0.00759888,0.0901489,0.136719,0.127716,0.0617371,-0.0546875,-0.20639,-0.359589,-0.482758,-0.553955,-0.553345,-0.491547,-0.388519,-0.265442,-0.137054,-0.0225525,0.0635681,0.106781,0.102692,0.0686646,0.0296021,0.0134888,0.0355835,0.100525,0.196503,0.306244,0.411957,0.50061,0.553894,0.555695,0.502228,0.403168,0.281555,0.164093,0.0716858,0.0144348,-0.00973511,-0.0136108,-0.00363159,0.0196533,0.0548401,0.0975037,0.139465,0.177124,0.209808,0.245178,0.288269,0.335785,0.372681,0.383759,0.36496,0.315643,0.241272,0.152405,0.0561218,-0.0282593,-0.0926819,-0.134766,-0.15033,-0.140198,-0.10791,-0.0654297,-0.0300598,-0.0110168,-0.0177307,-0.0452271,-0.089386,-0.147369,-0.214691,-0.28717,-0.358185,-0.421417,-0.466034,-0.480072,-0.454041,-0.381622,-0.275299,-0.163208,-0.0705261,-0.00463867,0.0256348,0.0201416,-0.0266418,-0.112946,-0.22818,-0.343414,-0.42926,-0.467255,-0.452606,-0.387115,-0.286987,-0.169342,-0.0534363,0.0463867,0.115784,0.14328,0.127991,0.0748291,0.00564575,-0.0450439,-0.0502014,-0.00784302,0.065033,0.150818,0.238129,0.32074,0.391602,0.432953,0.424103,0.362946,0.270142,0.177246,0.110809,0.0682678,0.0401306,0.0226135,0.0189209,0.0356445,0.0693359,0.114777,0.17276,0.227661,0.271484,0.305847,0.333893,0.358398,0.365784,0.340729,0.280457,0.194489,0.10672,0.0345764,-0.0180664,-0.0534973,-0.0734253,-0.072876,-0.0487366,-0.00738525,0.0360413,0.0724792,0.0959778,0.101746,0.0885315,0.0585327,0.0224304,-0.020752,-0.0706177,-0.128998,-0.189667,-0.246185,-0.296448,-0.348785,-0.399048,-0.43866,-0.451141,-0.421814,-0.355774,-0.272552,-0.197662,-0.134033,-0.0837708,-0.0514221,-0.0465698,-0.0794678,-0.14267,-0.214355,-0.268646,-0.300537,-0.297577,-0.259857,-0.193298,-0.112885,-0.0365906,0.0184631,0.0367737,0.0170593,-0.040802,-0.123016,-0.204559,-0.256592,-0.257172,-0.207458,-0.119385,-0.0126038,0.101959,0.215759,0.319611,0.390747,0.412872,0.381073,0.323212,0.263702,0.222076,0.196991,0.174377,0.157043,0.149323,0.152679,0.162964,0.175354,0.186096,0.190002,0.185516,0.17746,0.175507,0.181061,0.188049,0.181488,0.16095,0.138794,0.12738,0.134552,0.149933,0.161285,0.166168,0.173828,0.195831,0.2229,0.238739,0.238739,0.223816,0.200531,0.167389,0.125977,0.0769043,0.0189209,-0.0470581,-0.118317,-0.188049,-0.24408,-0.28598,-0.31839,-0.354095,-0.394958,-0.428864,-0.434357,-0.40274,-0.337921,-0.261871,-0.188995,-0.117523,-0.0504761,-0.0032959,0.0038147,-0.0350342,-0.113342,-0.219727,-0.326569,-0.419006,-0.476501,-0.486176,-0.446381,-0.374847,-0.29007,-0.20752,-0.142944,-0.107788,-0.110748,-0.151947,-0.213562,-0.264496,-0.277252,-0.238922,-0.156036,-0.041626,0.0861816,0.21048,0.316772,0.389404,0.415222,0.396637,0.342682,0.270142,0.198242,0.143616,0.115784,0.106903,0.107056,0.104431,0.108734,0.12384,0.151001,0.184845,0.215576,0.243744,0.272675,0.313293,0.359192,0.394958,0.410614,0.404755,0.384766,0.360413,0.332886,0.307587,0.288605,0.273834,0.260406,0.246521,0.233612,0.218872,0.198669,0.168243,0.129181,0.0834961,0.0434875,0.0147095,-0.00918579,-0.0310059,-0.0546875,-0.0756226,-0.0917969,-0.11026,-0.136993,-0.180725,-0.245178,-0.324158,-0.403412,-0.46637,-0.493286,-0.482086,-0.439392,-0.379517,-0.312408,-0.249939,-0.201263,-0.181549,-0.203888,-0.268738,-0.361755,-0.456787,-0.526764,-0.561676,-0.550415,-0.495697,-0.403351,-0.299194,-0.200409,-0.127319,-0.0920105,-0.0971069,-0.137909,-0.196716,-0.251953,-0.276367,-0.258514,-0.201538,-0.114288,-0.0162354,0.0764465,0.153687,0.211334,0.243835,0.253632,0.247101,0.240143,0.24234,0.262482,0.297729,0.3396,0.368988,0.377777,0.368652,0.351868,0.337921,0.334015,0.338715,0.353485,0.380676,0.419067,0.461884,0.491608,0.493073,0.460815,0.405762,0.343567,0.287842,0.245972,0.222809,0.215088,0.219543,0.230469,0.245178,0.255707,0.2565,0.241425,0.212006,0.175507,0.14035,0.114502,0.0931396,0.0712891,0.0430908,0.00564575,-0.0378418,-0.0887146,-0.147797,-0.216309,-0.29422,-0.378601,-0.469543,-0.553894,-0.618591,-0.651489,-0.650208,-0.621002,-0.564636,-0.49704,-0.421539,-0.350861,-0.299408,-0.282806,-0.299469,-0.33725,-0.389679,-0.434631,-0.461884,-0.465759,-0.436249,-0.37973,-0.308136,-0.24408,-0.19342,-0.167908,-0.171265,-0.200867,-0.249268,-0.297394,-0.325165,-0.315308,-0.268127,-0.188721,-0.0926819,0.011261,0.110992,0.194214,0.255432,0.295837,0.324707,0.357727,0.396637,0.439117,0.4841,0.524963,0.554565,0.558197,0.532074,0.477905,0.413879,0.358459,0.320679,0.302155,0.301544,0.321472,0.356049,0.397522,0.423706,0.42691,0.405701,0.372009,0.337036,0.309204,0.29657,0.304291,0.327118,0.353973,0.374359,0.381012,0.373016,0.341064,0.286377,0.212616,0.127502,0.0505371,-0.0132751,-0.0676575,-0.114899,-0.158264,-0.195984,-0.223633,-0.246033,-0.271881,-0.300415,-0.328979,-0.355499,-0.379517,-0.411072,-0.450348,-0.49295,-0.531281,-0.555298,-0.55719,-0.535767,-0.493011,-0.438324,-0.379944,-0.334564,-0.311462,-0.309601,-0.333099,-0.376038,-0.433624,-0.485382,-0.514832,-0.512085,-0.471802,-0.40686,-0.327179,-0.246857,-0.169739,-0.112427,-0.0838928,-0.0836792,-0.105225,-0.130066,-0.146851,-0.137848,-0.103302,-0.0434875,0.0361023,0.118805,0.19577,0.256378,0.29422,0.31073,0.3078,0.299072,0.299255,0.313568,0.346497,0.388123,0.430939,0.463562,0.486725,0.494354,0.489655,0.472565,0.44873,0.427582,0.41571,0.413147,0.418121,0.420868,0.413818,0.392548,0.357574,0.312683,0.267456,0.230804,0.206238,0.195099,0.196503,0.20639,0.221405,0.228394,0.223633,0.206512,0.179047,0.140259,0.0975037,0.0549622,0.0161743,-0.0193176,-0.0536194,-0.085968,-0.119049,-0.151398,-0.180939,-0.210327,-0.236572,-0.264282,-0.289795,-0.320526,-0.356506,-0.399384,-0.445374,-0.490204,-0.519653,-0.533691,-0.528534,-0.504639,-0.461823,-0.403687,-0.337799,-0.276184,-0.232086,-0.211487,-0.208801,-0.226501,-0.258667,-0.299988,-0.333099,-0.354095,-0.358734,-0.346924,-0.323425,-0.290741,-0.255646,-0.217987,-0.185425,-0.157379,-0.132751,-0.108734,-0.081543,-0.0508118,-0.0110779,0.0330811,0.0774536,0.118713,0.154572,0.181274,0.196564,0.202362,0.205109,0.205841,0.207916,0.217438,0.236115,0.263824,0.296631,0.328857,0.352478,0.363098,0.365906,0.362427,0.357117,0.354706,0.358063,0.365112,0.375366,0.388458,0.400665,0.400543,0.385834,0.357117,0.319,0.281128,0.242218,0.208466,0.17569,0.146301,0.121063,0.0991211,0.0793152,0.0603333,0.0391846,0.0186462,0.00314331,-0.00704956,-0.00543213,0.000213623,0.00448608,0.00933838,0.0115356,0.0100098,0.00967407,-0.00296021,-0.0293274,-0.0525513,-0.0687256,-0.0905457,-0.139252,-0.204498,-0.261353,-0.302887,-0.331879,-0.361938,-0.388,-0.411194,-0.411682,-0.378662,-0.345764,-0.323883,-0.303558,-0.270325,-0.229584,-0.195312,-0.167236,-0.147308,-0.134033,-0.125763,-0.125031,-0.135986,-0.154236,-0.172363,-0.194366,-0.213165,-0.228912,-0.241089,-0.245026,-0.243408,-0.231476,-0.212006,-0.190887,-0.160675,-0.119385,-0.0716858,-0.020752,0.0322876,0.081543,0.126587,0.162415,0.187195,0.197723,0.194824,0.181885,0.165497,0.151154,0.141876,0.139679,0.143768,0.150391,0.156647,0.165985,0.176025,0.185852,0.196777,0.209045,0.22403,0.240143,0.255035,0.27301,0.29129,0.307587,0.314026,0.310791,0.29303,0.269135,0.234283,0.193085,0.145905,0.0993958,0.0569763,0.0221558,-0.00375366,-0.0210876,-0.0342407,-0.037262,-0.0333557,-0.0255737,-0.0176392,-0.0161743,-0.00900269,-0.00195312,-0.00247192,-0.00106812,0.0102539,0.0290527,0.0449524,0.048584,0.0403442,0.025177,0.00839233,-0.0159607,-0.0512695,-0.0935669,-0.13147,-0.15979,-0.181396,-0.197906,-0.212006,-0.216766,-0.211884,-0.203491,-0.193817,-0.183014,-0.168335,-0.146027,-0.119934,-0.0934143,-0.0677185,-0.0458984,-0.0297241,-0.021759,-0.0260315,-0.0405273,-0.0639038,-0.0869141,-0.107239,-0.123962,-0.13443,-0.138733,-0.130066,-0.114899,-0.0967102,-0.0779724,-0.0622253,-0.0457764,-0.0333557,-0.0221558,-0.0115967,0.00274658,0.0190735,0.0375977,0.0542908,0.0683899,0.0812073,0.089386,0.0917969,0.0894775,0.0826721,0.072876,0.0645752,0.0565186,0.0477295,0.0412903,0.0339661,0.0272522,0.0188599,0.0118713,0.0065918,0.00671387,0.0105286,0.0212097,0.0363159,0.0553589,0.0758972,0.0935669,0.103699,0.103027,0.0916748,0.0714722,0.0458374,0.0151062,-0.0146179,-0.0410156,-0.0576477,-0.0649109,-0.061676,-0.0527649,-0.040863,-0.0296021,-0.0195312,-0.0126038,-0.00665283,-0.00415039,-0.00408936,-0.00201416,0.00289917,0.0103455,0.0195923,0.0306702,0.041748,0.0508728,0.0549011,0.053772,0.0484619,0.0383911,0.025177,0.0100098,-0.00463867,-0.0160522,-0.0224915,-0.0236206,-0.020752,-0.0151062,-0.00582886,0.0050354,0.0138855,0.0225525,0.0314636,0.0406189,0.052002,0.0644226,0.0771179,0.0910034,0.104645,0.114349,0.116241,0.110413,0.098053,0.0808716,0.0595398,0.0351562,0.0110168,-0.00973511,-0.0265808,-0.0379944,-0.0433655,-0.0436096,-0.0388489,-0.0302734,-0.019928,-0.00469971,0.00549316,0.0111389,0.0110779,0.00698853,-0.00112915,-0.0147095,-0.0275269,-0.0391235,-0.0484009,-0.0567932,-0.0640869,-0.0716858,-0.0768433,-0.0835571,-0.0906067,-0.0976562,-0.105225,-0.112488,-0.116638,-0.120331,-0.12149,-0.121338,-0.119141,-0.11496,-0.110535,-0.107666,-0.104156,-0.101471,-0.0994568,-0.0979309,-0.0957031,-0.0927429,-0.0894775,-0.0851135,-0.0810852,-0.0763855,-0.0713501,-0.0640869,-0.0562439,-0.0480652,-0.0392761,-0.0304565,-0.0205383,-0.0102539,0.000396729,0.0108032,0.020874,0.0310059,0.0422668,0.0534973,0.0643616,0.0761108,0.0871887,0.094696,0.0977783,0.0974426,0.0953674,0.0932922,0.089386,0.0877075,0.0898132,0.0963135,0.108398,0.124359,0.141541,0.156189,0.166565,0.169067,0.166321,0.159668,0.15033,0.144775,0.141479,0.137787,0.133148,0.134979,0.139526,0.141754,0.135895,0.125366,0.109802,0.0896606,0.0681763,0.0467834,0.0281982,0.0126038,0.00497437,0.00582886,0.00958252,0.0104675,0.0085144,0.00457764,-0.00390625,-0.0162354,-0.0297852,-0.041687,-0.0535583,-0.065155,-0.0743103,-0.0834351,-0.0923462,-0.103546,-0.116852,-0.130615,-0.144836,-0.151611,-0.153687,-0.149139,-0.143951,-0.138672,-0.13678,-0.137512,-0.139679,-0.143341,-0.146362,-0.147186,-0.145569,-0.144775,-0.14328,-0.14267,-0.141602,-0.141022,-0.142609,-0.144501,-0.143768,-0.138794,-0.12738,-0.108978,-0.0863647,-0.0590515,-0.0312805,-0.00650024,0.0140381,0.0238953,0.0256348,0.0202637,0.0118103,0.00408936,-0.00213623,-0.003479,0.000671387,0.0124207,0.0281067,0.046051,0.06604,0.0840149,0.0984497,0.108795,0.114166,0.114288,0.112213,0.112,0.114288,0.118713,0.126709,0.137909,0.147186,0.155304,0.159332,0.161011,0.1586,0.151886,0.141876,0.130524,0.116028,0.102203,0.0865784,0.0712891,0.058197,0.0465698,0.0375977,0.0293884,0.0241089,0.0191956,0.0175171,0.0169678,0.0189209,0.0226135,0.0273132,0.0307922,0.0312805,0.0285339,0.0218811,0.0134277,0.00308228,-0.00912476,-0.0214233,-0.0323486,-0.0420227,-0.0489807,-0.0518799,-0.0522766,-0.0489807,-0.0471191,-0.0463867,-0.049408,-0.0542908,-0.0598755,-0.0653076,-0.068512,-0.0687256,-0.0675049,-0.0639038,-0.0589905,-0.0541077,-0.0504761,-0.0504761,-0.0541077,-0.0589294,-0.0619507,-0.061676,-0.0583801,-0.0546265,-0.0490723,-0.0441589,-0.0379333,-0.033905,-0.0299988,-0.0322266,-0.0357666,-0.0401917,-0.0419312,-0.0422668,-0.0386658,-0.0322266,-0.0216064,-0.0114746,-0.00201416,0.00424194,0.0062561,0.00228882,-0.00759888,-0.0209961,-0.0338135,-0.0424805,-0.0453796,-0.040741,-0.0306091,-0.0145569,0.00436401,0.0230103,0.0379944,0.0464478,0.0480652,0.0414124,0.0299988,0.0171204,0.00482178,-0.00424194,-0.00878906,-0.00918579,-0.00531006,0.000213623,0.00524902,0.0103455,0.0102539,0.0062561,-0.00308228,-0.0138245,-0.0232849,-0.0278625,-0.028656,-0.0230103,-0.0133667,-0.00289917,0.00805664,0.0171814,0.0245667,0.0275879,0.0257568,0.0203247,0.0141602,0.00793457,0.00415039,0.00241089,0.00509644,0.0085144,0.0128784,0.0168457,0.0211487,0.025238,0.0274353,0.0268555,0.0254211,0.0226746,0.0232239,0.0247803,0.0274353,0.0317383,0.0359802,0.0393372,0.0418091,0.0426941,0.0425415,0.0410156,0.0404663,0.0387268,0.0393372,0.0404663,0.0415344,0.0437622,0.0447083,0.0452271,0.04422,0.0429382,0.0422668,0.040741,0.0389404,0.0385132,0.0375977,0.0367126,0.0338135,0.0299988,0.0244446,0.0179138,0.00946045,0.00112915,-0.00592041,-0.0131531,-0.0193176,-0.0230103,-0.0235596,-0.0209351,-0.0147705,-0.00799561,-0.00180054,0.00549316,0.00891113,0.0088501,0.003479,-0.00671387,-0.0212097,-0.0378418,-0.0544434,-0.0665894,-0.0754395,-0.0791931,-0.0791321,-0.0752869,-0.0714111,-0.0677185,-0.0669861,-0.0675964,-0.0696106,-0.0704651,-0.0715332,-0.0688477,-0.0648193,-0.0579224,-0.0509949,-0.0447083,-0.0405273,-0.0390625,-0.0400696,-0.0441589,-0.0504761,-0.0565186,-0.0628052,-0.0646973,-0.0644836,-0.0603943,-0.0561829,-0.0516052,-0.0483093,-0.0467224,-0.0440979,-0.0425415,-0.0385132,-0.032959,-0.0239563,-0.0132751,-0.000335693,0.0119324,0.0213318,0.028595,0.0293274,0.0282593,0.0259094,0.024353,0.0229492,0.0241089,0.0257568,0.0297852,0.0339661,0.0389404,0.0418091,0.041626,0.0377197,0.0312805,0.0263062,0.0241089,0.0260315,0.0326233,0.0424805,0.0547791,0.0677795,0.0777283,0.0839539,0.0864563,0.0837708,0.0775146,0.0668335,0.0551758,0.0424805,0.0326843,0.0241699,0.0198669,0.015564,0.0169678,0.020752,0.02771,0.0339661,0.0403442,0.045166,0.0491943,0.0527649,0.0553589,0.0562439,0.0554504,0.0535583,0.04953,0.0467224,0.0426941,0.039856,0.0383911,0.0346985,0.0279236,0.020752,0.0102539,0.00146484,-0.00793457,-0.0143738,-0.0201416,-0.0234985,-0.0260315,-0.0254211,-0.0214233,-0.0155029,-0.00891113,-0.00531006,-0.00442505,-0.00683594,-0.0100708,-0.013092,-0.0157166,-0.0205994,-0.0249634,-0.0305481,-0.0317993,-0.0334778,-0.0356445,-0.0385132,-0.0447693,-0.0505371,-0.0591125,-0.0657043,-0.0708618,-0.0733032,-0.0730896,-0.0724792,-0.0698547,-0.0664978,-0.0632324,-0.0586548,-0.0565796,-0.0558472,-0.0563049,-0.0566406,-0.0550232,-0.0528259,-0.0491943,-0.0452881,-0.041626,-0.0383301,-0.0354309,-0.0328064,-0.0315552,-0.0308838,-0.0311279,-0.0315552,-0.0309448,-0.0303345,-0.028595,-0.0279236,-0.0278625,-0.0283813,-0.0296021,-0.0292664,-0.0280457,-0.0265808,-0.0224304,-0.0183105,-0.0104065,-0.00234985,0.00491333,0.011261,0.0153809,0.0167236,0.0172424,0.0173035,0.0177307,0.0190735,0.0209351,0.0226135,0.0265808,0.0294495,0.0316772,0.0353699,0.0390015,0.0418701,0.0445557,0.045105,0.0461121,0.0455627,0.0434875,0.0399475,0.0346375,0.0302734,0.0265808,0.0239563,0.0255127,0.028717,0.0357056,0.0447693,0.0551758,0.0649719,0.073761,0.0794678,0.0812683,0.0798645,0.0743103,0.066925,0.0593872,0.0516663,0.0434875,0.0367126,0.0305481,0.0269775,0.0254211,0.0281067,0.0319519,0.0365906,0.0400696,0.0404053,0.0414124,0.0384521,0.0343628,0.0276489,0.019928,0.0108032,0.00335693,-0.00140381,-0.00274658,-0.00106812,0.000732422,0.00323486,0.00430298,0.00390625,0.000274658,-0.0067749,-0.0171814,-0.0303955,-0.0428162,-0.0523376,-0.057312,-0.0578003,-0.0542297,-0.0492554,-0.0429382,-0.0369263,-0.032074,-0.0279236,-0.0260315,-0.0272522,-0.0326233,-0.0369873,-0.0431519,-0.0475769,-0.0515442,-0.0542297,-0.0558472,-0.0564575,-0.0556335,-0.0552368,-0.0558472,-0.0574646,-0.0598755,-0.0643005,-0.0700684,-0.0755615,-0.077301,-0.0758972,-0.0704041,-0.0622253,-0.0513306,-0.0386047,-0.0240173,-0.0116882,-0.00146484,0.0038147,0.00524902,0.00247192,-0.00222778,-0.0101929,-0.0160522,-0.0220947,-0.0222168,-0.0200806,-0.0159607,-0.0104065,-0.00442505,0.00100708,0.00576782,0.0085144,0.00872803,0.00906372,0.00845337,0.00918579,0.0104065,0.0126038,0.016571,0.0209961,0.0238342,0.0282593,0.0314636,0.0344849,0.037262,0.0391235,0.0400696,0.0390625,0.0368347,0.0338135,0.0304565,0.0266418,0.0232239,0.0192566,0.017395,0.0153809,0.0155029,0.01651,0.0176392,0.0189209,0.0188599,0.0184631,0.0182495,0.0177307,0.0172424,0.0163879,0.0181274,0.0195312,0.0218811,0.0232239,0.0233459,0.020813,0.0183105,0.0138245,0.0104065,0.00726318,0.00598145,0.00750732,0.011261,0.0185242,0.0256958,0.0344849,0.0380554,0.0383911,0.0350342,0.0289917,0.0211487,0.012207,0.00308228,-0.00408936,-0.00732422,-0.00582886,0.000793457,0.0100098,0.0186462,0.0271912,0.0314636,0.0320129,0.0283813,0.0218201,0.0141602,0.00482178,-0.00201416,-0.00665283,-0.00750732,-0.00616455,-0.00140381,0.00357056,0.00891113,0.0126038,0.0136108,0.0134277,0.0105286,0.00582886,-0.00146484,-0.0083313,-0.0170593,-0.0236206,-0.0284424,-0.0331421,-0.0358276,-0.0383911,-0.0393372,-0.0386047,-0.0368347,-0.0317383,-0.027771,-0.0236816,-0.0209961,-0.0188599,-0.0191345,-0.0185242,-0.0202637,-0.0232239,-0.0273743,-0.0335693,-0.0409546,-0.0488586,-0.0559082,-0.0595398,-0.0610046,-0.061615,-0.0585938,-0.052887,-0.0459595,-0.0379944,-0.0316162,-0.0259705,-0.0228882,-0.0201416,-0.0189819,-0.0184021,-0.0191345,-0.0204773,-0.0232239,-0.0248413,-0.0276489,-0.0289917,-0.028656,-0.0273743,-0.0252991,-0.0204163,-0.0161133,-0.00918579,-0.00296021,0.00296021,0.0065918,0.00784302,0.00784302,0.00631714,0.00509644,0.00335693,0.00280762,0.00363159,0.00491333,0.00817871,0.0108032,0.0144348,0.0184631,0.0223389,0.0261841,0.0294495,0.0316162,0.0335693,0.0327454,0.0310669,0.02771,0.0222778,0.0181274,0.0146179,0.0146179,0.0152893,0.0195923,0.0258484,0.033905,0.041748,0.0484009,0.0514221,0.0509949,0.0470581,0.0390015,0.0304565,0.0220947,0.0166321,0.0142822,0.0146179,0.0182495,0.0216064,0.024353,0.0256958,0.0246277,0.0220947,0.0190735,0.0142212,0.0107422,0.00765991,0.00631714,0.00616455,0.00839233,0.0132751,0.0190735,0.0246887,0.0296631,0.0317993,0.0316162,0.028656,0.024353,0.0172424,0.0106812,0.0038147,-0.000946045,-0.00750732,-0.0124207,-0.0174561,-0.0212708,-0.0240173,-0.0261841,-0.0280457,-0.0278625,-0.0255127,-0.020752,-0.015564,-0.0105896,-0.00610352,-0.00228882,0.000335693,0.000793457,-0.000396729,-0.00213623,-0.00543213,-0.00805664,-0.0104065,-0.0118713,-0.0132751,-0.0144348,-0.0175171,-0.0215454,-0.0281982,-0.0360413,-0.0445557,-0.0518799,-0.0575256,-0.0597839,-0.0593262,-0.0545654,-0.0471802,-0.0371094,-0.0265808,-0.0159607,-0.00704956,0.000671387,0.00616455,0.0088501,0.00918579,0.00765991,0.00598145,0.00363159,0.000671387,-0.00262451,-0.00845337,-0.0149536,-0.0228271,-0.0303955,-0.0387878,-0.0447083,-0.0495911,-0.0509338,-0.0491333,-0.0448914,-0.0360413,-0.0249634,-0.0128174,-0.000396729,0.0115356,0.0216675,0.0285339,0.0324097,0.032959,0.0314026,0.0265808,0.020874,0.0142212,0.0062561,-0.00100708,-0.00979614,-0.0161743,-0.020752,-0.0247803,-0.0270386,-0.0283203,-0.0275269,-0.0257568,-0.0224304,-0.0172424,-0.0115967,-0.00570679,0,0.00665283,0.0118713,0.016571,0.0205383,0.0231628,0.0269775,0.0279846,0.028717,0.0273743,0.0236206,0.0169067,0.00878906,0,-0.00967407,-0.0166321,-0.0224304,-0.025177,-0.0241089,-0.0212097,-0.015625,-0.00759888,0.0012207,0.00985718,0.0182495,0.0263672,0.0324707,0.0392761,0.0447083,0.0491943,0.053009,0.0553589,0.0558472,0.0541077,0.0496521,0.0437622,0.036499,0.0300598,0.0250244,0.0214844,0.0213318,0.0224304,0.0260315,0.0303955,0.0343628,0.0369873,0.0392761,0.0377197,0.037384,0.0347595,0.0337524,0.0331421,0.0336914,0.0358276,0.0378418,0.0401917,0.040863,0.0406799,0.0384521,0.0334778,0.0269165,0.0195923,0.0104675,0.00195312,-0.00665283,-0.0137634,-0.0195312,-0.0229492,-0.0250854,-0.0252991,-0.0249023,-0.0235596,-0.0227661,-0.0228882,-0.0257568,-0.0296631,-0.0359802,-0.0437622,-0.0517578,-0.0580444,-0.0636902,-0.065979,-0.0666504,-0.0646362,-0.06073,-0.0554504,-0.0508728,-0.0489197,-0.0491333,-0.0524902,-0.0569153,-0.0629578,-0.0679932,-0.0720825,-0.0734253,-0.0722961,-0.0688477,-0.0654907,-0.0617981,-0.058136,-0.0578613,-0.0592041,-0.0622864,-0.0636902,-0.0646973,-0.061676,-0.0555725,-0.0473938,-0.0358276,-0.0253601,-0.0138245,-0.00604248,-0.000213623,0.00280762,0.00323486,0.00308228,0.00335693,0.00430298,0.00765991,0.0120239,0.0191345,0.0263672,0.0336914,0.0387878,0.0430908,0.0447693,0.0457764,0.0465088,0.0471802,0.0505371,0.0532837,0.058136,0.0620728,0.0653076,0.0676575,0.0672607,0.065155,0.0609436,0.0541077,0.0474548,0.0410767,0.0356445,0.0334167,0.0325623,0.0345764,0.037262,0.0404663,0.0426025,0.0448303,0.0456238,0.0452271,0.0437012,0.041748,0.0400696,0.0370483,0.033905,0.0283813,0.0234375,0.0179138,0.0118103,0.00604248,-0.00167847,-0.00671387,-0.012085,-0.016571,-0.0198669,-0.0232239,-0.0263062,-0.0278625,-0.0299377,-0.0298767,-0.0289917,-0.0260315,-0.0223389,-0.016449,-0.0115967,-0.00524902,0.000213623,0.00363159,0.00448608,0.00369263,-0.000396729,-0.00717163,-0.0144958,-0.0227661,-0.0307922,-0.0363159,-0.0383301,-0.0362549,-0.0308838,-0.0231018,-0.0140991,-0.00436401,0.00335693,0.0101318,0.0143738,0.0160522,0.0172424,0.0158386,0.0150452,0.0151672,0.0161743,0.0181885,0.0204773,0.0222168,0.0222168,0.0213318,0.0173035,0.0137024,0.00778198,0.0020752,-0.00357056,-0.00717163,-0.00979614,-0.0103455,-0.00912476,-0.00891113,-0.00784302,-0.00683594,-0.00671387,-0.00549316,-0.00576782,-0.00744629,-0.00793457,-0.0101318,-0.0112,-0.0142212,-0.0183105,-0.0237732,-0.0301208,-0.0377808,-0.0446167,-0.0516663,-0.0578003,-0.0632324,-0.0662537,-0.0696716,-0.0701904,-0.0701904,-0.0677185,-0.0645752,-0.0603943,-0.0564575,-0.0508728,-0.046051,-0.040741,-0.0353088,-0.0328064,-0.0307922,-0.0307922,-0.0323486,-0.0336304,-0.0370483,-0.0399475,-0.0438843,-0.0466309,-0.0484009,-0.0475159,-0.0431519,-0.0361023,-0.0262451,-0.0147705,-0.00289917,0.00891113,0.0195923,0.0279846,0.0349121,0.0404053,0.0436096,0.0473938,0.0491333,0.0509949,0.0518799,0.0533447,0.0541077,0.0558472,0.0561218,0.0571899,0.0576477,0.0568542,0.057312,0.058197,0.0596008,0.0628967,0.0672607,0.0728149,0.0785217,0.0842285,0.0894775,0.0939636,0.0973816,0.0996704,0.0993347,0.0972595,0.0928955,0.086792,0.0787964,0.0684509,0.0578003,0.0468445,0.0370483,0.028656,0.0209961,0.0169678,0.0128174,0.011261,0.00991821,0.00891113,0.00698853,0.0038147,0.00088501,-0.00469971,-0.00839233,-0.0124817,-0.016571,-0.0193176,-0.0212097,-0.0228271,-0.0239563,-0.0247803,-0.0268555,-0.0298767,-0.03302,-0.0389404,-0.0452271,-0.0532227,-0.0617981,-0.0724792,-0.0814209,-0.0906677,-0.0975952,-0.10321,-0.105225,-0.105042,-0.100403,-0.0942993,-0.0852356,-0.0744934,-0.0634155,-0.0526123,-0.04422,-0.0377197,-0.0367737,-0.0375977,-0.0411377,-0.0470581,-0.0524292,-0.0559692,-0.0575867,-0.0559692,-0.0522156,-0.046051,-0.0391846,-0.0322266,-0.0263672,-0.0204773,-0.0167236,-0.0142822,-0.0127563,-0.0110168,-0.00683594,-0.00128174,0.00650024,0.0146179,0.0232239,0.0314026,0.0377197,0.0414734,0.0436096,0.0433655,0.0412903,0.0386047,0.0353088,0.0328979,0.0302734,0.0305481,0.0306091,0.0315552,0.0326233,0.0333557,0.0350342,0.0359802,0.0383301,0.0394592,0.0406189,0.0428772,0.0428772,0.0435486,0.0420227,0.0401917,0.0377197,0.0335693,0.0304565,0.0276489,0.0249023,0.0222778,0.019989,0.0169067,0.0148926,0.0104065,0.00643921,0.00167847,-0.00314331,-0.00750732,-0.0111389,-0.0132751,-0.0144348,-0.0149536,-0.0117493,-0.00991821,-0.00598145,-0.00323486,-0.000213623,0.00195312,0.00234985,0.00213623,0.00100708,-0.00241089,-0.00598145,-0.0105896,-0.0140991,-0.0170593,-0.0184021,-0.0186462,-0.0181274,-0.016571,-0.0147095,-0.0137634,-0.0118713,-0.0110168,-0.0108643,-0.00979614,-0.00985718,-0.00765991,-0.00424194,0.000671387,0.0065918,0.0128784,0.0180664,0.0224304,0.0250244,0.0244446,0.0231628,0.0201416,0.0178528,0.0154419,0.0146179,0.0158997,0.0175781,0.0193176,0.0218201,0.0215454,0.0209961,0.0184021,0.0153809,0.0103455,0.00576782,0.00167847,-6.10352e-05,-0.000732422,0.00140381,0.00436401,0.0071106,0.0103455,0.0100708,0.0101318,0.00732422,0.00375366,-0.0012207,-0.00610352,-0.0110779,-0.0145569,-0.0181885,-0.019928,-0.0222168,-0.0227661,-0.0250854,-0.025177,-0.0279236,-0.0293884,-0.0324097,-0.0343018,-0.0367126,-0.0387268,-0.0386047,-0.0399475,-0.0378418,-0.0391846,-0.0384521,-0.0390015,-0.0391235,-0.0383911,-0.0389404,-0.0390015,-0.0395203,-0.0399475,-0.0406189,-0.0414734,-0.0397949,-0.0378418,-0.0351562,-0.0320129,-0.028717,-0.0256958,-0.0226135,-0.0198669,-0.0169067,-0.0129395,-0.0101318,-0.00616455,-0.00146484,0.00308228,0.00744629,0.0108032,0.0132751,0.0134888,0.0124817,0.00958252,0.00576782,0.00228882,6.10352e-05,0.000946045,0.0020752,0.00805664,0.0147705,0.0224304,0.0298767,0.0357056,0.0406189,0.0438232,0.0462952,0.0459595,0.0455627,0.0428162,0.0403442,0.0386658,0.0376587,0.037384,0.037323,0.037262,0.0351562,0.0343018,0.0308838,0.0291138,0.0263672,0.0232849,0.0216064,0.0200806,0.0194092,0.0189209,0.0191956,0.0200806,0.0201416,0.0206604,0.020813,0.0218201,0.0222778,0.0229492,0.0228882,0.0216675,0.0191956,0.0169067,0.0135498,0.00973511,0.00476074,-0.00012207,-0.00543213,-0.00933838,-0.0139465,-0.0152893,-0.0169678,-0.015625,-0.0151062,-0.0118103,-0.00946045,-0.00704956,-0.00463867,-0.00415039,-0.00274658,-0.00363159,-0.00469971,-0.00604248,-0.00967407,-0.0125427,-0.0169067,-0.0209961,-0.0247803,-0.0284424,-0.0316162,-0.0332947,-0.0341492,-0.03302,-0.032074,-0.0299377,-0.0273132,-0.025238,-0.0227661,-0.0209961,-0.0194702,-0.0173035,-0.0159607,-0.0143738,-0.0134277,-0.0128174,-0.0140991,-0.0153809,-0.0177307,-0.020874,-0.0244446,-0.0275269,-0.0289307,-0.0306702,-0.0303955,-0.0299988,-0.0281982,-0.0263062,-0.0236206,-0.0209351,-0.0194092,-0.0184021,-0.016449,-0.0162964,-0.0146179,-0.0127563,-0.0104675,-0.00878906,-0.00717163,-0.00643921,-0.00598145,-0.00592041,-0.0062561,-0.00671387,-0.00738525,-0.00726318,-0.00698853,-0.00524902,-0.00189209,0.000793457,0.00531006,0.00857544,0.0124817,0.0145569,0.0163879,0.0166321,0.016571,0.0170593,0.01651,0.017395,0.0184021,0.0186462,0.020874,0.0209961,0.0218201,0.0218201,0.0205383,0.0203247,0.0187988,0.0181274,0.0177307,0.0178528,0.0182495,0.0185242,0.0195923,0.0196533,0.0202026,0.0200806,0.0203247,0.0202026,0.0198669,0.0195312,0.0189819,0.0169678,0.0161743,0.0140381,0.0119324,0.0102539,0.00900269,0.00738525,0.0071106,0.00750732,0.0071106,0.00900269,0.00985718,0.0105896,0.0124207,0.0118713,0.0123596,0.0119324,0.0101929,0.00918579,0.00650024,0.00408936,0.000732422,-0.00274658,-0.00491333,-0.00744629,-0.00924683,-0.00991821,-0.0108032,-0.0106812,-0.0105896,-0.0085144,-0.00692749,-0.00469971,-0.00280762,0,0.00128174,0.00247192,0.00302124,0.00222778,0.00100708,-0.00180054,-0.00491333,-0.00872803,-0.0119324,-0.0151062,-0.0169067,-0.0181885,-0.0174561,-0.0177307,-0.0172424,-0.0186462,-0.0192566,-0.0212097,-0.0228271,-0.024292,-0.0250854,-0.0255737,-0.0238342,-0.0212708,-0.0181885,-0.0140991,-0.0110779,-0.00839233,-0.00671387,-0.00704956,-0.00704956,-0.00872803,-0.0114136,-0.0137634,-0.0171204,-0.0202637,-0.0228882,-0.0246277,-0.0264282,-0.0264282,-0.0262451,-0.0247803,-0.0229492,-0.0210876,-0.0192566,-0.0181274,-0.016571,-0.0157776,-0.0148315,-0.0133667,-0.0110168,-0.00924683,-0.00671387,-0.00375366,-0.00100708,0.0015564,0.00436401,0.00570679,0.00744629,0.00857544,0.00912476,0.0106812,0.0109253,0.0116882,0.0111389,0.0113525,0.0101318,0.00918579,0.00878906,0.00799561,0.00939941,0.0114746,0.0131531,0.0152893,0.0177307,0.0194092,0.020813,0.0220947,0.0221558,0.0230103,0.0234985,0.0238342,0.0248413,0.0262451,0.0265198,0.0260925,0.0255127,0.0233459,0.020813,0.0179138,0.0139465,0.0111389,0.00811768,0.00717163,0.00704956,0.00704956,0.00744629,0.00784302,0.00692749,0.00665283,0.00558472,0.00369263,0.00302124,0.000335693,-0.000213623,-0.00112915,-0.0017395,-0.00161743,-0.00140381,-0.0012207,-0.0015564,-0.00180054,-0.00341797,-0.00549316,-0.00772095,-0.0102539,-0.012146,-0.0139465,-0.0147095,-0.0153809,-0.0157166,-0.0146179,-0.0144958,-0.0139465,-0.0134277,-0.0118103,-0.0109253,-0.0103455,-0.00793457,-0.00765991,-0.00592041,-0.00482178,-0.00369263,-0.00274658,-0.00201416,-0.00134277,-0.00112915,-0.00140381,-0.0020752,-0.00308228,-0.00482178,-0.00637817,-0.00817871,-0.00811768,-0.00872803,-0.00683594,-0.00515747,-0.00134277,0.00146484,0.00564575,0.00637817,0.00726318,0.00637817,0.00424194,0.00256348,-0.00012207,-0.00189209,-0.00302124,-0.00335693,-0.00213623,-0.0015564,-0.000335693,-0.00146484,-0.00189209,-0.00408936,-0.00637817,-0.0083313,-0.0115356,-0.013092,-0.0143738,-0.0146179,-0.0140381,-0.0126953,-0.0114746,-0.0108643,-0.00991821,-0.00979614,-0.00967407,-0.00946045,-0.00946045,-0.00906372,-0.00906372,-0.00979614,-0.0108643,-0.0122681,-0.0142822,-0.0152893,-0.0169678,-0.0174561,-0.0172424,-0.0157776,-0.0131531,-0.0105896,-0.00805664,-0.00549316,-0.00476074,-0.00442505,-0.00442505,-0.00598145,-0.00698853,-0.00704956,-0.00799561,-0.00683594,-0.00448608,-0.00268555,-0.000274658,0.00308228,0.00558472,0.0088501,0.0109253,0.0146179,0.01651,0.0185242,0.019989,0.0209961,0.0215454,0.0221558,0.0222778,0.0222778,0.0218201,0.0223389,0.0211487,0.0223389,0.0211487,0.020874,0.0200806,0.0191345,0.0179138,0.0172424,0.016571,0.0161133,0.0158386,0.0175781,0.0177307,0.020752,0.0231018,0.025238,0.0260925,0.0259094,0.0255127,0.0228271,0.0195923,0.0154419,0.0115356,0.00671387,0.00335693,6.10352e-05,-0.00262451,-0.00369263,-0.00469971,-0.00576782,-0.00537109,-0.00610352,-0.00637817,-0.00631714,-0.0067749,-0.00784302,-0.00839233,-0.0100708,-0.0116882,-0.013031,-0.0150452,-0.015564,-0.0169678,-0.0166321,-0.0161743,-0.0152283,-0.0144348,-0.0139465,-0.0144348,-0.0160522,-0.0187378,-0.0221558,-0.0252991,-0.0284424,-0.0314026,-0.0326233,-0.0322266,-0.0313416,-0.0288696,-0.0252991,-0.0215454,-0.0181885,-0.015564,-0.0142212,-0.0132141,-0.0131531,-0.0126953,-0.0129395,-0.0120239,-0.012146,-0.0109253,-0.0110779,-0.0100098,-0.00973511,-0.00973511,-0.0105286,-0.0110779,-0.012207,-0.012207,-0.0132751,-0.0131531,-0.013031,-0.0117493,-0.0102539,-0.0085144,-0.00448608,-0.00241089,0.000610352,0.00262451,0.00415039,0.00564575,0.00671387,0.00827026,0.00845337,0.00912476,0.00912476,0.00973511,0.0106812,0.0114746,0.0115356,0.0114136,0.0103455,0.00958252,0.00750732,0.00744629,0.00671387,0.00631714,0.00726318,0.00784302,0.0104675,0.0135498,0.0160522,0.0190735,0.020752,0.0228271,0.0233459,0.024231,0.0226135,0.0216675,0.0185852,0.0148926,0.012207,0.0085144,0.00692749,0.00509644,0.00531006,0.00564575,0.00616455,0.0083313,0.00958252,0.0111389,0.0120239,0.0118713,0.0113525,0.00979614,0.00799561,0.00732422,0.00570679,0.00543213,0.00643921,0.00650024,0.00891113,0.00967407,0.00979614,0.00857544,0.00558472,0.0015564,-0.00457764,-0.0102539,-0.0167236,-0.0221558,-0.0256958,-0.0283813,-0.0275269,-0.0249634,-0.0204773,-0.0152893,-0.0104675,-0.00537109,-0.00167847,0.00088501,0.00167847,0.00161743,0.000793457,-6.10352e-05,-0.00189209,-0.00396729,-0.0050354,-0.00717163,-0.0083313,-0.0103455,-0.0122681,-0.0141602,-0.0169067,-0.0179749,-0.019989,-0.0209351,-0.0209351,-0.0206604,-0.0178528,-0.0158997,-0.0122681,-0.00784302,-0.00497437,-0.00100708,0.0015564,0.00491333,0.00683594,0.00811768,0.00891113,0.0085144,0.00717163,0.00564575,0.00314331,0.000793457,-0.00274658,-0.00509644,-0.00805664,-0.00933838,-0.0112,-0.0102539,-0.00759888,-0.0017395,0.00750732,0.00933838,0.00469971,-0.00408936,-0.00738525,-0.00256348,0.00430298,0.00906372,0.0131531,0.01651,0.0174561,0.0119324,0.00463867,-0.00100708,-0.00408936,-0.00558472,-0.00811768,-0.0175781,-0.0250244,-0.0247803,-0.0193176,-0.0120239,-0.00558472,0.00341797,0.0100098,0.00918579,0.00778198,0.00549316,0.00750732,0.00537109,0.00476074,0.00341797,0.00088501,0.00289917,0.00765991,0.00793457,0.00604248,0.00457764,0.00430298,0.00213623,0.000671387,0.000335693,0.00213623,0.00491333,0.00872803,0.00799561,0.000793457,-0.000793457,0.00592041,0.0114136,0.0139465,0.0126038,0.0249023,0.0377808,0.0403442,0.0381775,0.0307312,0.0228882,0.019928,0.0225525,0.0166321,0.0144348,0.0140991,0.0110168,0.00274658,-0.00442505,-0.00531006,0.000793457,0.0083313,0.00924683,0.00415039,-0.000671387,-0.00436401,-0.0133667,-0.0201416,-0.0147095,-0.0065918,-0.0050354,-0.0132751,-0.0250244,-0.025177,-0.0176392,-0.0140991,-0.0194092,-0.0237732,-0.015625,-0.0088501,-0.0151062,-0.0249634,-0.0330811,-0.0296021,-0.0229492,-0.020752,-0.0285339,-0.0405273,-0.0437012,-0.0381165,-0.0267029,-0.020813,-0.0213318,-0.024231,-0.0249023,-0.0302734,-0.0325623,-0.0263062,-0.0162964,-0.0161133,-0.0249634,-0.027771,-0.0260315,-0.0250244,-0.020874,-0.0202026,-0.0212097,-0.0162354,-0.0067749,-0.00704956,-0.0148926,-0.0124817,-0.0071106,-0.00357056,-0.00262451,-0.000335693,-0.000946045,-0.00222778,0.00515747,0.0175171,0.0250854,0.0194092,0.0146179,0.0256348,0.03302,0.0394592,0.041687,0.0499878,0.053894,0.0495911,0.0414124,0.0303345,0.0299377,0.025238,0.0168457,0.0138855,0.0283203,0.0420227,0.0366516,0.0239563,0.0157166,0.0177307,0.0171204,0.0238342,0.0332336,0.0309448,0.0189209,0.0123596,0.0167236,0.0120239,0.00616455,0.0134277,0.0205383,0.0185852,0.0145569,0.0151672,0.0195923,0.0221558,0.0138245,-0.0111389,-0.036377,-0.0399475,-0.0222778,-0.0085144,-0.0139465,-0.0311279,-0.0359802,-0.0263672,-0.0150452,-0.0138855,-0.0248413,-0.0387268,-0.040863,-0.0325623,-0.0303345,-0.0395203,-0.0431519,-0.0379333,-0.0313416,-0.0379944,-0.0469055,-0.0463867,-0.0346375,-0.0262451,-0.0294495,-0.0391235,-0.0502014,-0.0466309,-0.037262,-0.0326843,-0.0369263,-0.0370483,-0.0323486,-0.0256348,-0.0172424,-0.012146,-0.0135498,-0.019989,-0.0227661,-0.0212708,-0.0195312,-0.0126953,-0.00704956,-0.00692749,-0.0151062,-0.0184631,-0.0124207,-0.00650024,0.000549316,0.00732422,0.0132751,0.0178528,0.0234375,0.0311279,0.0391235,0.0477295,0.0552368,0.0596619,0.0591125,0.0542297,0.0532837,0.0517578,0.0488586,0.0469666,0.0455017,0.0429382,0.0434875,0.0463867,0.0454407,0.040802,0.0397949,0.0404663,0.0391235,0.0434875,0.0479126,0.0487976,0.0418091,0.0319519,0.0339661,0.0414734,0.0477905,0.0421448,0.0315552,0.024292,0.0276489,0.0340881,0.0301208,0.0138245,-0.00308228,-0.00759888,-0.00985718,-0.0174561,-0.0293884,-0.0346985,-0.0349121,-0.0326843,-0.0381165,-0.0452271,-0.0482483,-0.0475769,-0.0448303,-0.0489197,-0.0532837,-0.0590515,-0.065979,-0.0677795,-0.0684509,-0.0661011,-0.0611267,-0.0461121,-0.0259705,-0.0138245,-0.0185242,-0.02771,-0.0336914,-0.0367126,-0.040863,-0.0524902,-0.0661011,-0.0770569,-0.0763855,-0.0708618,-0.0634766,-0.0570374,-0.0569153,-0.0585938,-0.0587769,-0.0554504,-0.0532227,-0.049469,-0.0467224,-0.0473938,-0.0418701,-0.0312195,-0.0191345,-0.0104675,-0.00985718,-0.0140381,-0.0132751,-0.00213623,0.0124207,0.0284424,0.0396118,0.0491943,0.0604553,0.0731506,0.0829468,0.0875244,0.0885315,0.0846863,0.0793152,0.0783081,0.0800781,0.0839539,0.0894775,0.0930786,0.093811,0.09375,0.0966492,0.101532,0.105103,0.103882,0.098999,0.0954285,0.094574,0.0948181,0.0904846,0.0839539,0.0751038,0.0709534,0.0701294,0.0720215,0.0758972,0.0768433,0.0688477,0.0564575,0.0459595,0.0377197,0.0250854,0.00952148,-0.00537109,-0.0198059,-0.0328064,-0.0437012,-0.0502625,-0.0583801,-0.0687866,-0.0808716,-0.0913391,-0.102478,-0.116119,-0.124847,-0.128113,-0.128998,-0.137573,-0.155304,-0.168732,-0.166321,-0.148651,-0.123566,-0.0960388,-0.0718689,-0.0561829,-0.0519409,-0.0503235,-0.0481873,-0.0456238,-0.0503235,-0.0681152,-0.089386,-0.104095,-0.0991211,-0.085907,-0.0783997,-0.0777283,-0.0827637,-0.0799255,-0.0748291,-0.0710144,-0.0727539,-0.0787354,-0.0827637,-0.0804749,-0.0648193,-0.0375061,-0.0139465,0.00012207,0.00698853,0.0136108,0.0285339,0.0534363,0.0779114,0.0958252,0.105377,0.114838,0.132812,0.15799,0.17691,0.184235,0.173492,0.15155,0.133026,0.128387,0.130737,0.133972,0.134308,0.128601,0.120148,0.12207,0.132751,0.141937,0.142822,0.137238,0.130737,0.129059,0.133087,0.13623,0.133484,0.126587,0.118469,0.112274,0.106567,0.102631,0.098999,0.0933533,0.0852966,0.0706177,0.0552368,0.0379944,0.0185852,-0.00610352,-0.0393372,-0.0680542,-0.0856934,-0.0953674,-0.104156,-0.116638,-0.133698,-0.152496,-0.170349,-0.185852,-0.202484,-0.220398,-0.238129,-0.254303,-0.271484,-0.279205,-0.266968,-0.237793,-0.194885,-0.154297,-0.124237,-0.108185,-0.100525,-0.0939026,-0.0892639,-0.0916748,-0.106049,-0.127838,-0.146698,-0.153015,-0.142822,-0.122498,-0.105499,-0.0992737,-0.100281,-0.0999451,-0.101135,-0.0995178,-0.0988464,-0.100525,-0.0976562,-0.0820007,-0.0516663,-0.0160522,0.0169678,0.0406799,0.0555725,0.0677185,0.0892029,0.118317,0.149261,0.179047,0.204712,0.231476,0.261261,0.288391,0.301147,0.291138,0.257935,0.220001,0.189117,0.171478,0.167847,0.168518,0.168457,0.169006,0.173615,0.178802,0.180603,0.17981,0.174713,0.165771,0.156311,0.155304,0.158844,0.166992,0.17041,0.167511,0.155182,0.139679,0.124908,0.116241,0.109406,0.100281,0.086792,0.070343,0.0473022,0.0204773,-0.0124817,-0.0509949,-0.0922852,-0.128845,-0.156433,-0.178192,-0.195709,-0.216644,-0.237976,-0.262817,-0.287781,-0.313477,-0.341156,-0.365356,-0.386047,-0.392487,-0.374237,-0.323364,-0.250885,-0.182953,-0.136322,-0.120056,-0.120941,-0.12912,-0.133026,-0.141144,-0.163422,-0.191132,-0.207581,-0.200745,-0.175354,-0.140533,-0.11792,-0.110992,-0.114563,-0.121155,-0.129333,-0.133148,-0.132202,-0.124023,-0.106659,-0.0753784,-0.0254211,0.0301208,0.0804138,0.114899,0.132629,0.148132,0.172607,0.210602,0.250214,0.284973,0.312134,0.336639,0.358124,0.377502,0.378601,0.349945,0.298737,0.244965,0.209595,0.198578,0.204163,0.209198,0.205292,0.198914,0.198914,0.200012,0.202942,0.202423,0.190552,0.177368,0.172028,0.173553,0.182007,0.189453,0.193817,0.182678,0.160522,0.136658,0.116913,0.103363,0.0901489,0.0725403,0.0498657,0.0241089,-0.00509644,-0.0381775,-0.0777283,-0.125031,-0.171417,-0.213959,-0.250061,-0.278046,-0.305969,-0.33725,-0.369324,-0.400543,-0.431061,-0.463623,-0.487061,-0.494171,-0.471283,-0.412079,-0.328796,-0.246582,-0.18335,-0.147644,-0.134888,-0.131531,-0.137451,-0.156769,-0.192291,-0.226501,-0.238739,-0.218445,-0.173157,-0.12088,-0.0830078,-0.0655823,-0.0639038,-0.0762329,-0.0949707,-0.114685,-0.126587,-0.129944,-0.118378,-0.0784607,-0.00631714,0.0750427,0.145447,0.195496,0.225159,0.245514,0.274567,0.311615,0.351471,0.382416,0.406189,0.423615,0.437531,0.44342,0.423279,0.373566,0.311066,0.253693,0.217926,0.21048,0.221619,0.231476,0.230865,0.223572,0.211884,0.201477,0.189453,0.169922,0.147247,0.129181,0.12384,0.133484,0.154694,0.175018,0.181946,0.172272,0.150604,0.124969,0.101807,0.0811462,0.0610046,0.0324097,-0.00234985,-0.040863,-0.0778503,-0.117859,-0.163025,-0.214233,-0.267456,-0.319611,-0.363617,-0.402557,-0.439941,-0.476105,-0.508728,-0.538666,-0.55603,-0.551666,-0.515625,-0.446564,-0.364899,-0.287781,-0.228333,-0.185181,-0.149719,-0.11972,-0.104034,-0.116699,-0.15686,-0.201263,-0.22113,-0.20639,-0.165497,-0.116302,-0.0797424,-0.0554504,-0.0444946,-0.0477905,-0.0592041,-0.077179,-0.0983276,-0.117249,-0.114166,-0.0725403,0.00375366,0.0969849,0.180817,0.245972,0.29007,0.326233,0.365295,0.405029,0.441345,0.462402,0.470276,0.472626,0.474365,0.46283,0.425446,0.364685,0.291077,0.22522,0.190735,0.186432,0.196045,0.203369,0.200195,0.189789,0.177368,0.171478,0.163879,0.148041,0.12793,0.107513,0.0992737,0.109802,0.136383,0.163147,0.175232,0.165894,0.136169,0.104889,0.0798035,0.0579224,0.0273132,-0.015564,-0.0669861,-0.116364,-0.161011,-0.202881,-0.251556,-0.309601,-0.375153,-0.438385,-0.490417,-0.532898,-0.568054,-0.598053,-0.613953,-0.602142,-0.549133,-0.456787,-0.346649,-0.25296,-0.192017,-0.160461,-0.141022,-0.115784,-0.0873108,-0.0785217,-0.1008,-0.138672,-0.16214,-0.148926,-0.101959,-0.0465698,-0.0148315,-0.00738525,-0.0167236,-0.0350952,-0.0565186,-0.0795288,-0.10611,-0.132965,-0.138916,-0.106445,-0.0307312,0.0697937,0.167786,0.246521,0.303833,0.350525,0.396851,0.441071,0.477844,0.497375,0.497589,0.491547,0.487793,0.475433,0.437653,0.369659,0.282745,0.200745,0.151337,0.140259,0.149811,0.160675,0.155518,0.137573,0.122559,0.118317,0.112823,0.098999,0.079071,0.0579224,0.0509949,0.0706787,0.11261,0.158325,0.190216,0.19162,0.167328,0.129944,0.0942993,0.0571899,0.0134277,-0.0430298,-0.104706,-0.163208,-0.211212,-0.2547,-0.306458,-0.376312,-0.45752,-0.538452,-0.60556,-0.658051,-0.697662,-0.708374,-0.675293,-0.587372,-0.457855,-0.323975,-0.215363,-0.1492,-0.114014,-0.093689,-0.0683899,-0.044281,-0.0386658,-0.0568542,-0.0782471,-0.0773926,-0.0447693,0.00491333,0.0496521,0.0723572,0.070282,0.0454407,0.00482178,-0.0399475,-0.0855103,-0.128937,-0.165314,-0.174286,-0.135895,-0.0535583,0.0483093,0.144623,0.226105,0.292877,0.36087,0.425507,0.483154,0.51825,0.526367,0.517914,0.50885,0.499329,0.47348,0.418671,0.334686,0.244568,0.174835,0.141876,0.134552,0.13678,0.133301,0.11792,0.098999,0.0914917,0.0906067,0.0838318,0.0649719,0.0376587,0.016571,0.0181274,0.0476379,0.0942383,0.141418,0.17276,0.181885,0.172424,0.153961,0.126099,0.0810852,0.0170593,-0.0592041,-0.135834,-0.20282,-0.260925,-0.319672,-0.386505,-0.468994,-0.552765,-0.632538,-0.700012,-0.747864,-0.756256,-0.707855,-0.60141,-0.46463,-0.329803,-0.224762,-0.154358,-0.105042,-0.0657654,-0.0343018,-0.0249634,-0.0376587,-0.0579834,-0.0534363,-0.0142212,0.0479126,0.106781,0.141357,0.151398,0.135773,0.0954285,0.0393982,-0.0274353,-0.102692,-0.169678,-0.205719,-0.19162,-0.130524,-0.0425415,0.0477295,0.12616,0.195831,0.267792,0.338928,0.40625,0.455292,0.480743,0.489075,0.496521,0.504486,0.494019,0.446503,0.361328,0.262268,0.181061,0.137177,0.122498,0.118256,0.108978,0.0933533,0.0805969,0.0809326,0.0865784,0.0832825,0.0639648,0.036377,0.0128784,0.012207,0.0353088,0.0721436,0.111542,0.140472,0.155426,0.161194,0.161407,0.146454,0.105225,0.038269,-0.0396118,-0.111145,-0.171204,-0.223145,-0.281006,-0.353149,-0.43866,-0.527588,-0.612549,-0.683228,-0.717651,-0.705048,-0.632477,-0.519257,-0.392944,-0.281128,-0.19455,-0.129852,-0.0767212,-0.041748,-0.0341492,-0.053009,-0.074646,-0.0713501,-0.024231,0.0534363,0.134766,0.192963,0.221466,0.217529,0.183411,0.12616,0.0479736,-0.0463867,-0.136108,-0.194214,-0.204956,-0.167725,-0.101288,-0.0284424,0.0379944,0.0976562,0.160522,0.231934,0.306122,0.368134,0.406982,0.427368,0.447113,0.46228,0.459595,0.41925,0.337982,0.240814,0.160675,0.117706,0.108978,0.110321,0.104553,0.091217,0.0788574,0.0766296,0.079071,0.0731506,0.0543518,0.0250854,-0.000946045,-0.00268555,0.0252991,0.068512,0.107727,0.13028,0.138123,0.136719,0.13443,0.12384,0.0922852,0.0348206,-0.0384521,-0.110474,-0.166718,-0.215302,-0.27182,-0.350403,-0.44397,-0.538452,-0.613556,-0.652618,-0.641083,-0.580078,-0.485168,-0.379059,-0.282562,-0.202606,-0.138519,-0.0861816,-0.0555725,-0.058197,-0.0821533,-0.103088,-0.0940857,-0.033905,0.0622864,0.160858,0.234161,0.27597,0.285156,0.264374,0.216034,0.13269,0.0259705,-0.0777893,-0.147522,-0.175232,-0.15625,-0.112335,-0.0679321,-0.0327454,0.000213623,0.0419312,0.098999,0.163086,0.223419,0.272003,0.314423,0.365448,0.413147,0.43631,0.410522,0.330536,0.225037,0.13147,0.0744324,0.052948,0.0482483,0.0487976,0.0522766,0.0644226,0.0837708,0.0966492,0.0923462,0.0626221,0.0179138,-0.0191956,-0.0324707,-0.0162354,0.0249634,0.0653687,0.100952,0.126831,0.142334,0.148254,0.13858,0.102539,0.0418091,-0.0289307,-0.0939636,-0.145508,-0.190735,-0.247925,-0.328735,-0.424164,-0.511536,-0.565308,-0.569122,-0.522156,-0.443146,-0.351349,-0.261536,-0.17804,-0.101624,-0.0369263,0.00302124,-0.00515747,-0.0540161,-0.107391,-0.131134,-0.0949707,0.00012207,0.115967,0.219269,0.293488,0.333954,0.339935,0.306854,0.234161,0.124023,0.00933838,-0.0682678,-0.0988464,-0.0855713,-0.053772,-0.0301208,-0.024231,-0.024231,-0.0211487,-0.00369263,0.0221558,0.0512695,0.0847778,0.133698,0.208984,0.292938,0.352814,0.35611,0.291626,0.190125,0.0944824,0.032074,0.00195312,-0.0136108,-0.0252991,-0.0264282,-0.00323486,0.0406189,0.0838928,0.10437,0.0875244,0.041748,-0.00482178,-0.0306091,-0.0280457,-0.00491333,0.020752,0.0404053,0.0576477,0.0733032,0.0792542,0.0684509,0.0288696,-0.0357666,-0.103088,-0.156097,-0.188263,-0.216644,-0.260681,-0.329651,-0.403625,-0.449127,-0.442017,-0.385162,-0.306641,-0.225098,-0.152008,-0.090271,-0.0297241,0.0325623,0.0722961,0.0609436,0.00799561,-0.062561,-0.112427,-0.0996704,-0.0264282,0.0791321,0.17981,0.260406,0.312408,0.334442,0.325714,0.274902,0.181732,0.0736389,-0.00256348,-0.0279236,-0.0085144,0.0336304,0.0622864,0.0626221,0.0475159,0.0344238,0.0297241,0.0291138,0.0234985,0.0184631,0.0310669,0.0812073,0.155579,0.222015,0.24173,0.19516,0.106323,0.0151062,-0.0489197,-0.0749817,-0.0828247,-0.0909424,-0.0896606,-0.0680542,-0.0260315,0.0269775,0.0630798,0.0618896,0.0279236,-0.0131531,-0.0386047,-0.0370483,-0.0126953,0.0131531,0.0322266,0.0512085,0.0666504,0.0757751,0.0609436,0.0103455,-0.0698547,-0.156372,-0.230591,-0.282349,-0.322021,-0.365509,-0.418732,-0.461884,-0.459717,-0.394684,-0.289673,-0.177521,-0.0794678,-0.0149536,0.0349121,0.0971069,0.157318,0.176025,0.146973,0.0833435,0.0110168,-0.0140381,0.0276489,0.108795,0.199341,0.276978,0.327301,0.347778,0.34436,0.308258,0.227173,0.120331,0.0250854,-0.0270386,-0.025177,0.0140991,0.06073,0.0851746,0.0801392,0.0663757,0.0558472,0.0447693,0.0239563,-0.003479,-0.0219421,-0.00296021,0.0551147,0.127594,0.176117,0.167999,0.108795,0.0291138,-0.0401306,-0.0808716,-0.105499,-0.130005,-0.147369,-0.144623,-0.11261,-0.057251,-0.000213623,0.0341492,0.0268555,-0.00537109,-0.0456238,-0.0716248,-0.0795898,-0.0796509,-0.0786438,-0.0691223,-0.0477295,-0.0201416,-0.00396729,-0.0198669,-0.0704041,-0.143616,-0.220886,-0.287842,-0.34726,-0.403625,-0.44873,-0.452759,-0.393829,-0.281342,-0.152069,-0.0400696,0.0338135,0.0692749,0.09375,0.127777,0.144958,0.13147,0.102295,0.0673828,0.0534973,0.0909424,0.16745,0.249878,0.3237,0.373077,0.388458,0.382294,0.355499,0.298065,0.216309,0.138733,0.0829468,0.0671082,0.0838318,0.110413,0.126587,0.11731,0.0922852,0.070343,0.0522766,0.032135,0.00558472,-0.0224915,-0.0302734,-0.0115967,0.0200806,0.0468445,0.0433655,0.00732422,-0.041626,-0.0848389,-0.10791,-0.113098,-0.112213,-0.113556,-0.110596,-0.090271,-0.0582581,-0.0256348,-0.00274658,-0.00256348,-0.0198059,-0.0415344,-0.057312,-0.0628052,-0.0736389,-0.0874634,-0.102081,-0.109192,-0.111755,-0.114014,-0.137115,-0.185516,-0.248779,-0.315491,-0.377319,-0.428253,-0.46637,-0.484497,-0.452881,-0.361877,-0.232544,-0.0906677,0.0368347,0.128601,0.182831,0.218384,0.23175,0.213074,0.161957,0.10437,0.0606689,0.0600586,0.11142,0.195374,0.284485,0.361664,0.408203,0.416565,0.392944,0.34375,0.262695,0.175629,0.109528,0.085907,0.102081,0.13678,0.167511,0.177032,0.161469,0.132538,0.105438,0.0778503,0.0467834,0.0118103,-0.00918579,-0.000457764,0.0289307,0.0545044,0.0556946,0.0228882,-0.0379333,-0.108459,-0.164886,-0.201202,-0.214355,-0.209869,-0.19281,-0.155975,-0.0958252,-0.0332336,0.0120239,0.0350342,0.0311279,0.00610352,-0.0220947,-0.0379944,-0.0455627,-0.0576477,-0.0734253,-0.0939636,-0.116577,-0.144348,-0.186035,-0.250122,-0.328308,-0.404236,-0.470734,-0.518646,-0.54248,-0.529114,-0.468109,-0.360657,-0.22464,-0.0832214,0.0367126,0.12323,0.180389,0.22348,0.242828,0.235291,0.210266,0.175018,0.152405,0.164978,0.211334,0.277527,0.348267,0.399872,0.415771,0.402161,0.363892,0.298645,0.213013,0.127594,0.0590515,0.0346985,0.0542297,0.100464,0.145966,0.1763,0.186523,0.177185,0.159851,0.137909,0.108124,0.0697937,0.0443726,0.0475159,0.0638123,0.0802002,0.0755615,0.0393982,-0.0245667,-0.0970459,-0.156647,-0.199585,-0.222076,-0.231598,-0.231018,-0.208588,-0.158997,-0.0961609,-0.0430298,-0.0171204,-0.0175171,-0.0355835,-0.0571899,-0.065033,-0.0613403,-0.060791,-0.0602722,-0.0670471,-0.0794067,-0.0998535,-0.143097,-0.220673,-0.322876,-0.432617,-0.528931,-0.597107,-0.621338,-0.583008,-0.484558,-0.347382,-0.195892,-0.0505981,0.0640869,0.141022,0.190063,0.21167,0.204773,0.182007,0.152557,0.137054,0.158844,0.218323,0.303101,0.392944,0.471283,0.510132,0.50061,0.453217,0.378052,0.280273,0.182281,0.100342,0.0487976,0.041687,0.0675964,0.100616,0.121277,0.125153,0.112488,0.093689,0.0710754,0.0499268,0.0236206,0.0126953,0.0306702,0.0690002,0.105652,0.124176,0.110748,0.0610657,-0.00268555,-0.0631409,-0.115845,-0.15451,-0.175171,-0.188721,-0.189606,-0.168243,-0.130951,-0.0953064,-0.0704041,-0.0637512,-0.0784607,-0.100006,-0.108337,-0.104431,-0.0975037,-0.0896606,-0.0857849,-0.0903931,-0.107788,-0.145508,-0.21463,-0.308533,-0.410736,-0.506989,-0.582947,-0.611145,-0.568665,-0.464081,-0.319122,-0.157379,-0.0134888,0.0922241,0.157379,0.193817,0.19577,0.167175,0.125427,0.0865784,0.0767212,0.114014,0.19046,0.290802,0.399994,0.494751,0.545837,0.548737,0.512085,0.435516,0.325958,0.217773,0.129608,0.0799866,0.0748291,0.101074,0.128845,0.139801,0.127045,0.0964966,0.0553589,0.0179749,-0.0187988,-0.0520935,-0.0613403,-0.0281982,0.028656,0.0852356,0.121338,0.118927,0.0701904,0.00280762,-0.0638123,-0.123016,-0.16275,-0.178467,-0.182343,-0.163086,-0.115448,-0.0579834,-0.0162354,0.00314331,-0.00765991,-0.050415,-0.103638,-0.144897,-0.17569,-0.192078,-0.19281,-0.182556,-0.167908,-0.159454,-0.175568,-0.232819,-0.323425,-0.424622,-0.523682,-0.590546,-0.593567,-0.517181,-0.388123,-0.227051,-0.0663147,0.0667725,0.15744,0.216309,0.234222,0.204102,0.145966,0.0792542,0.0293884,0.0317383,0.0941467,0.196838,0.321198,0.444763,0.537384,0.576904,0.56012,0.493622,0.386993,0.268982,0.16806,0.105103,0.0873108,0.115845,0.162476,0.19101,0.190887,0.162079,0.109314,0.0459595,-0.0189209,-0.08255,-0.123169,-0.113678,-0.0594482,0.0118713,0.0767212,0.105499,0.0848389,0.0303955,-0.0328064,-0.0987854,-0.157867,-0.194214,-0.203278,-0.181396,-0.128052,-0.0540161,0.0151062,0.0597839,0.0662537,0.028717,-0.0403442,-0.113495,-0.176514,-0.222229,-0.2453,-0.243073,-0.227661,-0.210144,-0.209991,-0.246429,-0.3255,-0.426849,-0.52536,-0.588531,-0.579926,-0.499725,-0.365234,-0.200928,-0.0340271,0.10672,0.202423,0.260193,0.268188,0.223297,0.148468,0.0708008,0.0216064,0.0283203,0.0979919,0.205841,0.330872,0.447235,0.522491,0.544952,0.522156,0.452148,0.351685,0.249542,0.171356,0.126587,0.123016,0.153564,0.192078,0.210205,0.199066,0.160126,0.0979919,0.0282593,-0.0411987,-0.100525,-0.129669,-0.110199,-0.0567017,0.0101929,0.0681152,0.0922241,0.0677185,0.0168457,-0.0450439,-0.109406,-0.162964,-0.197327,-0.21283,-0.195831,-0.147125,-0.0769043,-0.00631714,0.0478516,0.065094,0.0368347,-0.0220947,-0.0927429,-0.161621,-0.220947,-0.262878,-0.286591,-0.294708,-0.292694,-0.29892,-0.32663,-0.382751,-0.458466,-0.528656,-0.549866,-0.500671,-0.387054,-0.243286,-0.0942383,0.0376587,0.146118,0.235382,0.279663,0.259125,0.184906,0.0932312,0.0252991,0.0136108,0.0671082,0.159607,0.27832,0.409454,0.514771,0.568512,0.565918,0.506165,0.390411,0.262604,0.150391,0.0766296,0.0587769,0.102356,0.172699,0.234955,0.270081,0.264954,0.216034,0.134033,0.0301208,-0.0856323,-0.1716,-0.192413,-0.153564,-0.0840149,-0.00683594,0.0513306,0.0700073,0.0587769,0.0241089,-0.0315552,-0.0954285,-0.14859,-0.183075,-0.189606,-0.151733,-0.0836792,-0.0122681,0.0473022,0.0784607,0.0618896,0.00845337,-0.0617371,-0.144501,-0.226044,-0.289795,-0.332336,-0.352142,-0.356049,-0.355774,-0.375366,-0.419739,-0.482086,-0.537262,-0.547455,-0.496521,-0.393829,-0.259735,-0.109406,0.0443726,0.179138,0.287262,0.341888,0.322296,0.24469,0.145569,0.0648193,0.0325623,0.0568542,0.127594,0.236298,0.364227,0.477509,0.544952,0.558533,0.506775,0.396851,0.258392,0.131348,0.0434875,0.0140991,0.0426025,0.109253,0.187317,0.249786,0.278931,0.261261,0.199249,0.101685,-0.0182495,-0.116791,-0.162201,-0.153625,-0.108521,-0.0459595,0.00857544,0.0390625,0.0459595,0.025238,-0.0232239,-0.0856934,-0.147919,-0.197113,-0.209808,-0.176453,-0.109314,-0.0322266,0.0411987,0.0863647,0.0878601,0.0470581,-0.0226135,-0.112671,-0.207855,-0.289398,-0.348175,-0.384094,-0.397034,-0.406525,-0.430817,-0.473969,-0.521545,-0.545715,-0.526031,-0.457458,-0.358643,-0.240662,-0.104645,0.0406799,0.186707,0.302673,0.354553,0.331268,0.258331,0.175781,0.114227,0.0901489,0.109863,0.175232,0.286041,0.413544,0.517517,0.570679,0.564301,0.495422,0.379791,0.248779,0.133636,0.0521545,0.0167236,0.0272522,0.0714111,0.133209,0.191132,0.220215,0.205566,0.149658,0.0602722,-0.0343018,-0.0922241,-0.10498,-0.0882568,-0.0502625,-0.00180054,0.0366516,0.0580444,0.0583191,0.0303345,-0.025238,-0.091156,-0.157593,-0.20517,-0.211548,-0.175018,-0.112152,-0.0367737,0.0305481,0.0673828,0.0617981,0.0177917,-0.061615,-0.164764,-0.271484,-0.359863,-0.424438,-0.463623,-0.482147,-0.493073,-0.506592,-0.522003,-0.52066,-0.493225,-0.435303,-0.355774,-0.260345,-0.154694,-0.0410156,0.0838928,0.202698,0.282684,0.302948,0.268463,0.208252,0.153412,0.12912,0.136841,0.17569,0.255585,0.370483,0.484894,0.566772,0.596924,0.555359,0.454376,0.327301,0.204285,0.105164,0.0437012,0.02771,0.0498657,0.0996704,0.164551,0.212555,0.225891,0.199005,0.129272,0.0327454,-0.049469,-0.0913391,-0.0971069,-0.073761,-0.0317993,0.015564,0.0584412,0.09021,0.0942383,0.0611267,0.00222778,-0.0718689,-0.138916,-0.172424,-0.162476,-0.118866,-0.0575867,0.00524902,0.0469666,0.0514221,0.016571,-0.0588684,-0.169006,-0.289948,-0.398376,-0.483368,-0.534698,-0.557861,-0.571289,-0.589996,-0.604431,-0.594482,-0.544098,-0.463745,-0.371277,-0.278656,-0.177795,-0.0602112,0.0782471,0.206787,0.286774,0.297729,0.25592,0.196655,0.150665,0.130127,0.131348,0.162476,0.23764,0.348785,0.457642,0.532623,0.553772,0.512939,0.417511,0.300598,0.188385,0.101471,0.0504761,0.0376587,0.0552368,0.098999,0.156708,0.204559,0.219666,0.195709,0.133759,0.0577087,0.0101929,-0.00106812,0.0104675,0.0345764,0.0663757,0.0965881,0.12384,0.140686,0.129333,0.0885315,0.027771,-0.0396118,-0.0975952,-0.119995,-0.104706,-0.0675964,-0.0187988,0.0290527,0.0609436,0.0654907,0.0409546,-0.0212708,-0.123688,-0.241821,-0.353485,-0.449677,-0.524567,-0.576508,-0.621277,-0.661621,-0.674835,-0.643219,-0.568176,-0.467651,-0.364777,-0.272827,-0.181885,-0.0787354,0.0320129,0.119141,0.159119,0.150482,0.113007,0.0853577,0.090332,0.118042,0.157867,0.216431,0.298462,0.397858,0.484894,0.529602,0.520081,0.453766,0.351807,0.245026,0.15509,0.090332,0.0503235,0.032959,0.0353088,0.0602722,0.0926208,0.113831,0.11087,0.0783997,0.0212097,-0.0265198,-0.0376587,-0.0170593,0.0179749,0.0569153,0.0956421,0.137115,0.179199,0.210876,0.218048,0.197327,0.152954,0.098938,0.056366,0.0467834,0.0614624,0.0853577,0.108063,0.121063,0.11261,0.0804138,0.0218811,-0.068512,-0.188263,-0.314758,-0.428192,-0.516632,-0.578247,-0.623413,-0.664154,-0.688538,-0.675507,-0.609253,-0.505096,-0.385895,-0.274109,-0.179382,-0.0865173,0.0169678,0.114502,0.169922,0.17276,0.136108,0.0926208,0.0730896,0.085968,0.111816,0.148376,0.206512,0.287445,0.372406,0.432678,0.444763,0.399139,0.305298,0.19455,0.0973816,0.0307312,-0.00234985,-0.00592041,0.00991821,0.044281,0.091217,0.133087,0.148804,0.128448,0.069519,-0.00744629,-0.0592651,-0.0711975,-0.0552979,-0.0236816,0.0125427,0.0547791,0.103485,0.14679,0.170013,0.166382,0.13858,0.0969849,0.0597229,0.0467224,0.0653687,0.102478,0.139191,0.17276,0.196564,0.197327,0.173096,0.111755,0.00543213,-0.129456,-0.267395,-0.384308,-0.476227,-0.547302,-0.610413,-0.665161,-0.693085,-0.664307,-0.582825,-0.46933,-0.351807,-0.247192,-0.15564,-0.0574646,0.050415,0.135895,0.16925,0.150879,0.108002,0.080658,0.0940247,0.13208,0.17691,0.229919,0.308044,0.401947,0.479736,0.508728,0.467102,0.365509,0.237854,0.11731,0.0205383,-0.0429382,-0.0723572,-0.0763855,-0.0584412,-0.0172424,0.0309448,0.0643005,0.0678406,0.0325623,-0.0342407,-0.0910034,-0.108917,-0.092804,-0.0569763,-0.0125427,0.0337524,0.0836792,0.13739,0.175781,0.180664,0.15686,0.119141,0.0848389,0.0732117,0.0886536,0.119537,0.147797,0.169739,0.182739,0.175446,0.149719,0.100281,0.015564,-0.0969238,-0.219879,-0.330078,-0.418579,-0.488739,-0.553497,-0.622345,-0.673889,-0.67691,-0.620331,-0.518402,-0.398041,-0.281342,-0.175232,-0.0645752,0.0567017,0.154175,0.197052,0.184631,0.14328,0.110321,0.108185,0.132141,0.166565,0.217102,0.294952,0.393219,0.479675,0.521332,0.499542,0.410522,0.281464,0.153748,0.0458374,-0.0292664,-0.0674438,-0.0785828,-0.0693359,-0.0409546,-0.000793457,0.0273132,0.0307312,0.0012207,-0.053833,-0.104156,-0.117859,-0.0966492,-0.0558472,-0.00793457,0.0430908,0.0964355,0.14798,0.177979,0.173828,0.141418,0.0973816,0.0586548,0.0376587,0.0482483,0.0864563,0.135712,0.182739,0.217194,0.227325,0.206726,0.153229,0.0633545,-0.0585938,-0.192535,-0.316254,-0.413635,-0.484436,-0.539001,-0.594025,-0.640076,-0.650055,-0.611938,-0.534637,-0.44281,-0.352814,-0.263947,-0.165314,-0.0499878,0.0593872,0.127441,0.144562,0.130188,0.114899,0.116699,0.136383,0.165497,0.208801,0.280548,0.38382,0.488647,0.559448,0.572205,0.518188,0.40744,0.27121,0.137848,0.0249023,-0.0561218,-0.0988464,-0.112,-0.0982666,-0.0621338,-0.0224304,-0.00106812,-0.0133667,-0.0608826,-0.125153,-0.170685,-0.174042,-0.143677,-0.0913391,-0.0245667,0.0542908,0.136169,0.204498,0.238403,0.234619,0.199585,0.151825,0.109253,0.0860291,0.0983887,0.137451,0.185699,0.230408,0.257385,0.252563,0.21283,0.13028,0.00476074,-0.149384,-0.305634,-0.433167,-0.523346,-0.582611,-0.625305,-0.657867,-0.663422,-0.624512,-0.545105,-0.448669,-0.358246,-0.279449,-0.199677,-0.102142,0.00247192,0.0836792,0.118591,0.115448,0.103424,0.111877,0.140686,0.177643,0.215088,0.26825,0.351532,0.452942,0.531555,0.554962,0.509125,0.405853,0.277191,0.153351,0.0468445,-0.0320129,-0.0788574,-0.0988464,-0.0936279,-0.0670471,-0.0308838,-0.00274658,-0.0050354,-0.0469055,-0.114349,-0.172424,-0.191742,-0.169678,-0.124969,-0.0681763,-0.000457764,0.0809326,0.161072,0.222351,0.242737,0.222626,0.179718,0.139862,0.121338,0.12793,0.155975,0.189209,0.226379,0.256165,0.266113,0.247314,0.194977,0.0964355,-0.0429382,-0.201538,-0.347595,-0.460327,-0.541351,-0.606445,-0.65744,-0.680481,-0.654907,-0.578186,-0.472229,-0.368988,-0.284149,-0.211884,-0.128845,-0.0353699,0.0443726,0.0833435,0.0802002,0.0664368,0.069519,0.103088,0.154022,0.205109,0.258392,0.334503,0.42981,0.515167,0.555573,0.529877,0.440796,0.315643,0.190552,0.0820923,-0.0012207,-0.0567932,-0.0877991,-0.0972595,-0.0830078,-0.0557861,-0.032959,-0.0336304,-0.0720215,-0.140137,-0.207581,-0.240601,-0.231476,-0.196655,-0.147125,-0.0827637,-0.00012207,0.0929565,0.17746,0.227234,0.237518,0.219391,0.194366,0.179321,0.188263,0.220001,0.258331,0.289185,0.307861,0.306702,0.284363,0.232147,0.142426,0.013092,-0.140472,-0.290619,-0.413544,-0.509125,-0.585907,-0.652679,-0.698669,-0.697906,-0.641815,-0.544159,-0.436523,-0.334106,-0.239929,-0.138916,-0.0310059,0.0630798,0.110138,0.112946,0.100616,0.101532,0.128998,0.173553,0.224701,0.277435,0.350006,0.442139,0.523346,0.560333,0.535309,0.447327,0.316162,0.17926,0.0562439,-0.037384,-0.0943604,-0.120148,-0.123962,-0.105652,-0.0724182,-0.0445557,-0.0388489,-0.0711975,-0.137177,-0.205719,-0.243896,-0.241425,-0.211731,-0.171692,-0.122559,-0.0542908,0.02771,0.108185,0.163879,0.184631,0.176636,0.157318,0.146851,0.162201,0.204163,0.255768,0.301331,0.331146,0.340149,0.324982,0.282959,0.204376,0.0830078,-0.0673218,-0.218536,-0.34549,-0.441864,-0.519409,-0.591278,-0.64563,-0.660004,-0.628387,-0.560272,-0.480011,-0.402954,-0.324371,-0.231812,-0.119812,-0.0117493,0.0639648,0.0978394,0.108795,0.122833,0.155182,0.203033,0.257324,0.316498,0.389465,0.474976,0.555908,0.606903,0.604431,0.539062,0.419922,0.27652,0.138336,0.0228271,-0.0605469,-0.116974,-0.148804,-0.15274,-0.133148,-0.107452,-0.0969238,-0.119324,-0.176361,-0.24115,-0.28537,-0.291016,-0.262878,-0.214966,-0.154572,-0.0791931,0.0100708,0.0954285,0.156372,0.182739,0.176636,0.152008,0.12912,0.132141,0.168121,0.224823,0.278717,0.318848,0.336121,0.332092,0.299469,0.226837,0.11087,-0.038269,-0.199585,-0.344574,-0.454163,-0.536255,-0.600616,-0.647919,-0.664886,-0.638397,-0.571411,-0.485962,-0.402893,-0.32489,-0.245178,-0.147583,-0.0396729,0.0522156,0.104645,0.124695,0.133026,0.153961,0.196167,0.248047,0.301147,0.361267,0.440399,0.533478,0.610992,0.641998,0.607239,0.509521,0.377655,0.2388,0.114288,0.0155029,-0.0587769,-0.108734,-0.131683,-0.125366,-0.101746,-0.0808716,-0.0861206,-0.128326,-0.198334,-0.262939,-0.296295,-0.292023,-0.261353,-0.214508,-0.153839,-0.0721436,0.0200806,0.106323,0.160461,0.171021,0.148987,0.120056,0.109924,0.130859,0.176453,0.22757,0.275757,0.312073,0.331665,0.325775,0.283569,0.194305,0.0610046,-0.0954895,-0.250458,-0.384216,-0.494507,-0.586243,-0.662476,-0.713745,-0.720062,-0.678375,-0.600342,-0.512482,-0.432404,-0.358063,-0.268799,-0.155304,-0.0400085,0.0428162,0.0881958,0.115173,0.149872,0.208069,0.274902,0.33316,0.382355,0.442139,0.526306,0.613007,0.667786,0.663361,0.596313,0.484436,0.357239,0.229248,0.115906,0.0275269,-0.0409546,-0.0895996,-0.114349,-0.116028,-0.103363,-0.0963745,-0.115173,-0.165985,-0.228577,-0.271667,-0.276703,-0.254639,-0.216705,-0.170258,-0.106995,-0.0220947,0.0700684,0.146576,0.188446,0.192139,0.171143,0.146179,0.140869,0.158722,0.192871,0.229248,0.258331,0.27652,0.281219,0.27066,0.227448,0.141357,0.0142212,-0.133881,-0.276031,-0.399323,-0.503143,-0.596039,-0.675507,-0.726227,-0.732086,-0.68927,-0.616638,-0.534973,-0.457062,-0.376831,-0.282288,-0.174164,-0.0748291,-0.00396729,0.0418091,0.0778503,0.125641,0.191406,0.262756,0.32663,0.391541,0.467865,0.555847,0.630798,0.6698,0.653748,0.585358,0.481201,0.363434,0.250336,0.152679,0.0743103,0.0107422,-0.0377808,-0.0671692,-0.0801392,-0.0894775,-0.110077,-0.152679,-0.213348,-0.268463,-0.294556,-0.285492,-0.250275,-0.201538,-0.144897,-0.0758972,0.00866699,0.0915527,0.157257,0.192535,0.199677,0.191956,0.185425,0.194153,0.222626,0.259186,0.292023,0.310211,0.311737,0.298126,0.263489,0.195557,0.0926819,-0.0358276,-0.173218,-0.302948,-0.416107,-0.512024,-0.601135,-0.684174,-0.740662,-0.749725,-0.710388,-0.643677,-0.572296,-0.498657,-0.409607,-0.292816,-0.157532,-0.0448303,0.0214844,0.0525513,0.0799866,0.126709,0.188934,0.242889,0.285095,0.337524,0.422424,0.525116,0.608643,0.649658,0.638062,0.578583,0.480469,0.363892,0.245758,0.147308,0.0691833,0.00610352,-0.0387268,-0.0632935,-0.0668335,-0.0665894,-0.0836182,-0.128845,-0.196106,-0.254913,-0.284027,-0.278717,-0.248199,-0.201691,-0.142944,-0.0708008,0.0102539,0.0831604,0.135773,0.163422,0.173218,0.172546,0.172089,0.188599,0.229523,0.287262,0.34021,0.369995,0.373016,0.358337,0.316101,0.235168,0.114838,-0.0301208,-0.177795,-0.310394,-0.421143,-0.508789,-0.58429,-0.658661,-0.717926,-0.738983,-0.717712,-0.664429,-0.603149,-0.533966,-0.454559,-0.344696,-0.212219,-0.0842285,0.00772095,0.0588684,0.0926208,0.13623,0.197784,0.257935,0.304626,0.348999,0.415039,0.503021,0.583435,0.631409,0.626709,0.573029,0.481873,0.371887,0.25592,0.152496,0.069519,0.00582886,-0.041687,-0.0704651,-0.081543,-0.0858459,-0.0978394,-0.13443,-0.195648,-0.254974,-0.28772,-0.287933,-0.255493,-0.204102,-0.14093,-0.070343,0.00616455,0.0782471,0.134094,0.167511,0.180206,0.178375,0.174103,0.184509,0.215851,0.266846,0.317719,0.351868,0.361664,0.353546,0.320862,0.255585,0.150818,0.0163879,-0.12973,-0.265228,-0.376923,-0.468719,-0.549591,-0.62384,-0.685181,-0.715637,-0.707733,-0.670471,-0.615906,-0.54953,-0.470123,-0.369812,-0.247864,-0.125031,-0.0278625,0.032135,0.0724792,0.109192,0.154633,0.206573,0.259125,0.318451,0.392426,0.483826,0.575043,0.644287,0.671936,0.644958,0.564148,0.45108,0.323975,0.203552,0.103882,0.0250854,-0.0322266,-0.0686035,-0.0856934,-0.0906067,-0.102692,-0.136505,-0.192413,-0.25531,-0.303223,-0.320862,-0.304779,-0.258179,-0.194977,-0.125092,-0.0487976,0.0278625,0.0967712,0.149536,0.180603,0.193634,0.19455,0.202423,0.231415,0.276367,0.324097,0.357727,0.373291,0.370056,0.340149,0.276306,0.178986,0.0534363,-0.0871887,-0.22583,-0.347168,-0.446167,-0.52887,-0.605103,-0.673767,-0.723633,-0.735291,-0.706726,-0.647522,-0.572632,-0.489868,-0.396576,-0.277252,-0.142151,-0.0245667,0.048584,0.0828247,0.100342,0.127045,0.171204,0.219666,0.266235,0.324097,0.406433,0.507111,0.602203,0.664551,0.676636,0.628845,0.535095,0.414032,0.285309,0.170532,0.0799866,0.0108643,-0.0400696,-0.0718689,-0.0856934,-0.0917969,-0.106995,-0.144501,-0.203766,-0.262543,-0.298126,-0.300598,-0.27066,-0.223358,-0.171265,-0.11496,-0.0491333,0.0210876,0.0856323,0.135712,0.164368,0.175568,0.182068,0.202423,0.243286,0.296844,0.345245,0.371216,0.373413,0.354828,0.312134,0.238129,0.132202,0.000335693,-0.140594,-0.273773,-0.38504,-0.47644,-0.559204,-0.641266,-0.713165,-0.75235,-0.74469,-0.69812,-0.629272,-0.550476,-0.461823,-0.352692,-0.223358,-0.0940247,0.00302124,0.0531616,0.0738831,0.0925598,0.129517,0.182007,0.237854,0.297058,0.373688,0.474365,0.583282,0.676636,0.723419,0.706451,0.630188,0.512085,0.37851,0.248535,0.140808,0.0542908,-0.0111389,-0.0569763,-0.0808105,-0.0855713,-0.0917358,-0.118134,-0.172272,-0.239532,-0.291809,-0.310608,-0.298065,-0.262604,-0.218262,-0.166443,-0.100189,-0.0222168,0.053894,0.115845,0.153687,0.168854,0.172546,0.179596,0.204834,0.249268,0.298645,0.337189,0.357391,0.356842,0.336639,0.288513,0.20697,0.0933533,-0.0434265,-0.182556,-0.306366,-0.408447,-0.498322,-0.585175,-0.6698,-0.734222,-0.7565,-0.732544,-0.673096,-0.593964,-0.507599,-0.417236,-0.308258,-0.181946,-0.065094,0.0109253,0.0412903,0.0478516,0.0594482,0.0958252,0.150269,0.212158,0.285156,0.378326,0.496094,0.618713,0.716309,0.759003,0.730804,0.644684,0.524902,0.388916,0.263763,0.158722,0.0756226,0.0126953,-0.0319519,-0.0578003,-0.0748291,-0.0932922,-0.130127,-0.187927,-0.253967,-0.306183,-0.328522,-0.319336,-0.284149,-0.238861,-0.182068,-0.111206,-0.0307922,0.0475159,0.108734,0.149139,0.167389,0.177521,0.19455,0.229065,0.275757,0.324982,0.357513,0.371613,0.365784,0.337311,0.284088,0.202271,0.0855103,-0.052887,-0.19397,-0.324036,-0.437195,-0.537933,-0.636383,-0.725372,-0.783295,-0.790741,-0.752563,-0.679535,-0.593811,-0.504761,-0.407532,-0.289734,-0.161133,-0.0548401,0.00946045,0.0357056,0.0495911,0.0717468,0.115692,0.168732,0.230469,0.3078,0.409271,0.529266,0.644287,0.728912,0.76001,0.727783,0.638916,0.516571,0.380524,0.257111,0.154633,0.0690002,0.00146484,-0.0440369,-0.0700073,-0.0812073,-0.0944214,-0.12616,-0.172943,-0.227234,-0.268585,-0.290527,-0.289001,-0.268066,-0.231689,-0.180603,-0.114502,-0.0428772,0.0280457,0.0917969,0.135223,0.158722,0.167175,0.177032,0.202545,0.24115,0.287323,0.320801,0.340607,0.34436,0.330139,0.288452,0.215027,0.108734,-0.0226746,-0.163879,-0.300201,-0.422272,-0.526855,-0.61792,-0.6922,-0.745087,-0.7565,-0.725098,-0.661804,-0.583496,-0.505768,-0.428131,-0.339935,-0.232697,-0.129517,-0.0558472,-0.0205994,-0.00247192,0.0263062,0.0805969,0.153229,0.225037,0.30545,0.405762,0.526031,0.648193,0.742157,0.785645,0.76886,0.692749,0.577515,0.440552,0.303894,0.186188,0.0908813,0.01651,-0.0324707,-0.0596619,-0.0697937,-0.0717468,-0.0915527,-0.134308,-0.19455,-0.253296,-0.290466,-0.302277,-0.289337,-0.25705,-0.211212,-0.149994,-0.077301,-0.00112915,0.0700073,0.121338,0.149384,0.160675,0.167847,0.187195,0.223236,0.269409,0.309662,0.333832,0.340546,0.332001,0.296967,0.227509,0.120667,-0.0148926,-0.15744,-0.288788,-0.399384,-0.485962,-0.559113,-0.626312,-0.683838,-0.716705,-0.709808,-0.667664,-0.605164,-0.538727,-0.475372,-0.405914,-0.310669,-0.196838,-0.091217,-0.0254211,-0.000549316,0.0119324,0.0496521,0.12207,0.205383,0.283417,0.365112,0.466766,0.59201,0.715302,0.797638,0.815247,0.761078,0.651825,0.511414,0.35611,0.212677,0.0983276,0.0188599,-0.0273743,-0.0458984,-0.045166,-0.028595,-0.0218811,-0.0479736,-0.110138,-0.192963,-0.265442,-0.311218,-0.322021,-0.305176,-0.271332,-0.218201,-0.141266,-0.049408,0.0400696,0.110138,0.151215,0.166229,0.162201,0.157654,0.171814,0.207642,0.256592,0.297913,0.322144,0.3302,0.315582,0.265778,0.17865,0.0571899,-0.0835571,-0.220337,-0.332825,-0.414551,-0.474365,-0.529877,-0.585449,-0.63974,-0.678925,-0.690613,-0.674438,-0.634979,-0.585571,-0.531342,-0.458191,-0.350006,-0.211823,-0.0822144,0.00610352,0.0479126,0.073761,0.110321,0.170746,0.237305,0.303558,0.380798,0.481018,0.606445,0.732147,0.816101,0.833893,0.774628,0.655365,0.501404,0.336853,0.192871,0.085968,0.0184021,-0.0105896,-0.0159607,-0.00369263,0.0111389,0.0105896,-0.0254211,-0.0997314,-0.196045,-0.282288,-0.335846,-0.351288,-0.331482,-0.284241,-0.212006,-0.120941,-0.024292,0.0632324,0.128387,0.159943,0.164307,0.150665,0.136566,0.140198,0.169586,0.216919,0.263702,0.294495,0.299255,0.276306,0.221558,0.138,0.0265808,-0.0972595,-0.215637,-0.314026,-0.386658,-0.438934,-0.48764,-0.545105,-0.610077,-0.666718,-0.697906,-0.701141,-0.67395,-0.628723,-0.570526,-0.493958,-0.380402,-0.231689,-0.0862427,0.0192566,0.0712891,0.0940857,0.119202,0.169861,0.231201,0.297913,0.372681,0.467316,0.588715,0.713501,0.806702,0.829651,0.770752,0.653839,0.508728,0.35733,0.227997,0.133087,0.0765686,0.0484009,0.0428772,0.049469,0.0549011,0.0378418,-0.0147705,-0.103699,-0.208252,-0.299469,-0.352539,-0.359985,-0.3284,-0.269073,-0.190613,-0.0957031,0.000457764,0.0787354,0.130524,0.151398,0.143768,0.118378,0.0975037,0.0992737,0.129791,0.176849,0.222626,0.252747,0.262817,0.247925,0.207184,0.141022,0.0523376,-0.0548401,-0.163025,-0.249603,-0.314087,-0.365967,-0.420593,-0.485443,-0.56424,-0.64798,-0.716522,-0.745514,-0.732941,-0.685516,-0.618927,-0.534637,-0.419342,-0.267181,-0.108978,0.0191345,0.0858459,0.0995178,0.0940857,0.108917,0.155243,0.213226,0.278107,0.35965,0.473816,0.608002,0.728912,0.797852,0.794495,0.723969,0.609741,0.478455,0.350525,0.24826,0.174561,0.129517,0.106049,0.0924072,0.0809937,0.061554,0.0188599,-0.0578003,-0.158936,-0.258789,-0.322754,-0.343231,-0.324036,-0.277924,-0.215027,-0.13913,-0.0610046,0.0088501,0.0585938,0.0852966,0.0853577,0.0686035,0.0469055,0.0394592,0.0608826,0.10965,0.17276,0.227997,0.264038,0.276367,0.265717,0.22818,0.162628,0.0700073,-0.0384521,-0.141663,-0.227661,-0.296844,-0.358246,-0.424896,-0.504089,-0.594971,-0.683624,-0.741669,-0.755585,-0.722626,-0.660461,-0.584564,-0.491943,-0.37262,-0.229004,-0.0885925,0.0113525,0.0536194,0.0545044,0.0512695,0.0744934,0.127106,0.190338,0.261597,0.356903,0.479523,0.618866,0.737305,0.80423,0.806366,0.746429,0.640137,0.510803,0.384369,0.28067,0.203705,0.145905,0.105835,0.0804749,0.0610046,0.0389404,0.000396729,-0.0677185,-0.153503,-0.234283,-0.284149,-0.300995,-0.290283,-0.258392,-0.212555,-0.156921,-0.101807,-0.0536194,-0.0176392,0.00946045,0.0191956,0.0157166,0.0105286,0.0194092,0.0547791,0.116577,0.186768,0.244507,0.276031,0.286255,0.2771,0.244965,0.183838,0.098999,-0.0017395,-0.101959,-0.189941,-0.263489,-0.330536,-0.397186,-0.472076,-0.556244,-0.642609,-0.707581,-0.733368,-0.712067,-0.657043,-0.588379,-0.516724,-0.430603,-0.315308,-0.17981,-0.0585938,0.012085,0.0256958,0.0187988,0.0335693,0.0892639,0.168182,0.247528,0.329468,0.43396,0.568329,0.70697,0.812134,0.849274,0.814362,0.725098,0.606567,0.479736,0.355225,0.250122,0.165314,0.104431,0.0664368,0.04422,0.0326233,0.0149536,-0.0225525,-0.0867004,-0.1651,-0.231476,-0.273102,-0.290955,-0.290283,-0.2771,-0.25174,-0.211609,-0.161346,-0.109192,-0.0623474,-0.0265808,-0.00469971,0.00952148,0.0245667,0.0524902,0.10141,0.164551,0.226227,0.269806,0.293762,0.29892,0.283142,0.238983,0.170471,0.0786438,-0.0256958,-0.121735,-0.202271,-0.266113,-0.322815,-0.382355,-0.449677,-0.527039,-0.609253,-0.680542,-0.718933,-0.716919,-0.678131,-0.622345,-0.553772,-0.46167,-0.341736,-0.201752,-0.0710754,0.0213318,0.061554,0.0728149,0.0877075,0.13382,0.203094,0.279205,0.365448,0.467529,0.594574,0.726044,0.831604,0.878845,0.852478,0.757111,0.620667,0.471619,0.333435,0.220734,0.133026,0.0731506,0.036499,0.0194092,0.0189819,0.0168457,-0.00958252,-0.0749817,-0.166229,-0.253418,-0.317444,-0.353424,-0.360199,-0.344086,-0.309387,-0.257935,-0.192352,-0.118256,-0.0501404,-0.00012207,0.025177,0.0334778,0.0385132,0.0575867,0.100281,0.163483,0.224579,0.269806,0.294159,0.302094,0.291534,0.254303,0.188995,0.100281,0.00201416,-0.0912781,-0.169189,-0.230804,-0.285095,-0.3414,-0.411011,-0.492889,-0.587372,-0.679382,-0.742889,-0.763275,-0.740997,-0.69046,-0.615509,-0.514221,-0.382019,-0.227112,-0.0752258,0.0397339,0.101959,0.122894,0.131958,0.158783,0.21048,0.275299,0.353821,0.45047,0.573486,0.709137,0.827393,0.898529,0.894562,0.814087,0.680939,0.526642,0.373413,0.240326,0.135101,0.0606079,0.015625,-0.00531006,-0.00967407,-0.0140991,-0.0383911,-0.0967712,-0.185425,-0.275909,-0.347992,-0.392883,-0.403748,-0.384705,-0.34256,-0.28241,-0.207581,-0.126373,-0.0526123,0.00323486,0.0392761,0.0550232,0.0585938,0.0679321,0.0955811,0.148132,0.207245,0.259735,0.29657,0.318939,0.321686,0.294373,0.236572,0.153076,0.0526733,-0.0499268,-0.141876,-0.216309,-0.278931,-0.338196,-0.400726,-0.471893,-0.553955,-0.640198,-0.712402,-0.751221,-0.753021,-0.721802,-0.65979,-0.562958,-0.43576,-0.289185,-0.135162,0.000213623,0.0986633,0.15155,0.173706,0.185303,0.20462,0.243835,0.305511,0.393829,0.504913,0.630341,0.748383,0.843475,0.891998,0.867035,0.77121,0.630402,0.470947,0.316101,0.182617,0.0786438,0.00234985,-0.0480652,-0.0734863,-0.0799255,-0.0851746,-0.109863,-0.162537,-0.235168,-0.303497,-0.356445,-0.384216,-0.38147,-0.354309,-0.310547,-0.253418,-0.177582,-0.0984497,-0.0297852,0.0184021,0.0480652,0.0632324,0.0775146,0.102295,0.144562,0.199402,0.253021,0.295898,0.32605,0.337799,0.323547,0.276642,0.205048,0.114899,0.012146,-0.0852966,-0.167175,-0.231018,-0.287506,-0.343689,-0.400726,-0.465027,-0.538513,-0.622833,-0.701416,-0.754303,-0.766449,-0.73175,-0.651215,-0.536652,-0.40625,-0.267731,-0.116974,0.0292664,0.142426,0.200012,0.206635,0.197449,0.207642,0.256836,0.328644,0.413696,0.508789,0.621735,0.745239,0.849182,0.900391,0.865906,0.757324,0.602142,0.42865,0.255646,0.104095,-0.0143738,-0.0954285,-0.133698,-0.136505,-0.121002,-0.104309,-0.105652,-0.132538,-0.188599,-0.25827,-0.322693,-0.365967,-0.376038,-0.359589,-0.324646,-0.267792,-0.18988,-0.10321,-0.0200806,0.0490723,0.098175,0.125488,0.134491,0.142212,0.160278,0.193146,0.232819,0.26355,0.283691,0.29187,0.281403,0.249725,0.198792,0.126648,0.0378418,-0.0516663,-0.129395,-0.193024,-0.245911,-0.297119,-0.355164,-0.422363,-0.493164,-0.564148,-0.640076,-0.706635,-0.741547,-0.730743,-0.667725,-0.566254,-0.444763,-0.315247,-0.179199,-0.0350342,0.0973206,0.19516,0.240417,0.240875,0.232544,0.253632,0.311218,0.381958,0.46167,0.546234,0.640015,0.732697,0.796967,0.805908,0.737854,0.610809,0.449066,0.282349,0.131866,0.0117493,-0.074646,-0.12442,-0.138245,-0.12793,-0.108063,-0.0940247,-0.101471,-0.144684,-0.217529,-0.298065,-0.357849,-0.385773,-0.374084,-0.336029,-0.272003,-0.19046,-0.0929565,0.00228882,0.0807495,0.129456,0.147125,0.143097,0.126038,0.115845,0.122742,0.154297,0.201019,0.24585,0.277649,0.296173,0.296295,0.273956,0.220337,0.138672,0.0358276,-0.0691833,-0.161682,-0.231934,-0.283295,-0.327393,-0.373627,-0.420868,-0.467712,-0.520416,-0.579926,-0.638,-0.673615,-0.677032,-0.638245,-0.555359,-0.440948,-0.30545,-0.16214,-0.0167847,0.117523,0.2229,0.284912,0.301208,0.296906,0.29422,0.308868,0.338135,0.385223,0.447113,0.519073,0.595764,0.656433,0.685974,0.6586,0.575226,0.45108,0.307922,0.166718,0.0448914,-0.0512085,-0.118134,-0.154236,-0.167786,-0.162354,-0.148254,-0.140869,-0.153687,-0.191681,-0.242218,-0.283569,-0.30127,-0.286926,-0.253693,-0.209473,-0.159729,-0.0990601,-0.0331421,0.0265198,0.0715332,0.0950317,0.104095,0.103973,0.115784,0.146362,0.192627,0.241486,0.278442,0.302429,0.311951,0.302551,0.268738,0.207581,0.120544,0.0140991,-0.0927429,-0.177917,-0.229248,-0.258057,-0.279449,-0.303772,-0.3302,-0.360657,-0.401398,-0.455048,-0.516632,-0.583893,-0.634705,-0.649261,-0.605438,-0.506317,-0.374084,-0.231476,-0.0967712,0.0353088,0.162201,0.26712,0.324432,0.321533,0.280884,0.236969,0.225708,0.250732,0.302887,0.364777,0.437653,0.524628,0.609863,0.664429,0.65329,0.568726,0.432281,0.274567,0.119934,-0.020752,-0.130341,-0.196777,-0.217377,-0.204041,-0.170929,-0.133972,-0.107178,-0.10141,-0.126373,-0.176971,-0.233215,-0.27771,-0.292206,-0.276245,-0.237732,-0.17926,-0.103302,-0.0157166,0.0688477,0.136108,0.178925,0.192139,0.18866,0.179657,0.178375,0.191345,0.215179,0.242737,0.260925,0.265839,0.248596,0.209808,0.151672,0.0768433,-0.0106812,-0.0995178,-0.169739,-0.209534,-0.225555,-0.226166,-0.224701,-0.232544,-0.258453,-0.305359,-0.37088,-0.448059,-0.533295,-0.613007,-0.658264,-0.639343,-0.550262,-0.4104,-0.249725,-0.0904846,0.0498657,0.172089,0.264832,0.313812,0.302612,0.242218,0.172028,0.134033,0.150879,0.203613,0.280609,0.368317,0.464172,0.552155,0.610138,0.617249,0.555511,0.432831,0.280731,0.128387,-0.00430298,-0.108398,-0.172882,-0.19577,-0.18631,-0.161469,-0.134766,-0.113678,-0.108978,-0.129944,-0.173828,-0.218445,-0.245239,-0.248718,-0.222229,-0.171692,-0.107666,-0.0436096,0.0194702,0.078186,0.124298,0.147247,0.149811,0.144104,0.142761,0.152832,0.174286,0.207458,0.242737,0.264832,0.266632,0.24765,0.20871,0.14859,0.0761719,0.0020752,-0.0629578,-0.113281,-0.138184,-0.140015,-0.128448,-0.123627,-0.139801,-0.180664,-0.2435,-0.324036,-0.411743,-0.497314,-0.567383,-0.614349,-0.621948,-0.567932,-0.45462,-0.302338,-0.147247,-0.0179138,0.0808716,0.151947,0.203552,0.229462,0.217529,0.16684,0.102875,0.0679321,0.0889282,0.156097,0.24173,0.322205,0.396454,0.465851,0.519592,0.541077,0.502808,0.402283,0.259247,0.114105,-0.0116882,-0.108795,-0.177246,-0.214355,-0.213745,-0.185638,-0.138458,-0.0926819,-0.0568542,-0.0447693,-0.0639038,-0.101288,-0.142273,-0.169861,-0.174286,-0.153961,-0.116364,-0.0736389,-0.0258484,0.0304565,0.0900574,0.13913,0.166565,0.178314,0.178802,0.181549,0.18692,0.196228,0.21048,0.220123,0.22168,0.208923,0.179718,0.138916,0.0912781,0.0414734,-0.0100708,-0.0575256,-0.0951538,-0.111206,-0.108978,-0.103882,-0.106384,-0.129395,-0.172607,-0.232361,-0.302429,-0.372681,-0.437988,-0.494568,-0.533295,-0.533417,-0.478577,-0.376709,-0.250549,-0.130737,-0.0357056,0.0296631,0.078186,0.118866,0.137787,0.124359,0.0758972,0.0233459,0.00497437,0.0414734,0.116241,0.198914,0.273773,0.340881,0.404236,0.456299,0.479187,0.445038,0.352966,0.227661,0.106659,0.00289917,-0.0755615,-0.132965,-0.166656,-0.171692,-0.151611,-0.115356,-0.0770569,-0.0481262,-0.036438,-0.048584,-0.0765076,-0.109406,-0.133362,-0.139252,-0.124969,-0.0986633,-0.065155,-0.020874,0.0366516,0.101074,0.156433,0.19812,0.224304,0.233612,0.229523,0.216248,0.203888,0.1922,0.176788,0.157318,0.132355,0.10965,0.0927429,0.0829468,0.0727539,0.0549622,0.0281067,0.0020752,-0.0137024,-0.0228271,-0.036377,-0.0634155,-0.10498,-0.153503,-0.20462,-0.253693,-0.301544,-0.351807,-0.404175,-0.455109,-0.487976,-0.486176,-0.446442,-0.37442,-0.290192,-0.207397,-0.129944,-0.0589294,0.00799561,0.0593262,0.0785828,0.06073,0.0234375,-0.00616455,-0.00234985,0.0390015,0.106384,0.184509,0.264282,0.346832,0.422211,0.472473,0.479584,0.428986,0.32724,0.200928,0.0719604,-0.0391846,-0.124023,-0.175903,-0.191132,-0.17926,-0.143616,-0.0998535,-0.0582581,-0.0322876,-0.028595,-0.0496521,-0.0822754,-0.108856,-0.119202,-0.101746,-0.0593872,-0.00665283,0.0475159,0.0990601,0.148468,0.187103,0.206787,0.204041,0.184753,0.159943,0.143768,0.14389,0.161407,0.188263,0.210602,0.220001,0.217377,0.202026,0.174225,0.133087,0.0828247,0.0308838,-0.015625,-0.0411377,-0.0410156,-0.0250244,-0.00415039,0.00228882,-0.00805664,-0.040802,-0.100189,-0.186096,-0.29068,-0.399384,-0.499451,-0.575287,-0.619598,-0.614685,-0.558258,-0.45578,-0.32959,-0.203156,-0.0991821,-0.0303345,0.0104065,0.0269775,0.024353,-0.00476074,-0.0543518,-0.0954285,-0.0987854,-0.0475159,0.0479736,0.162811,0.270477,0.361206,0.433563,0.481476,0.486633,0.43335,0.321136,0.178528,0.0393982,-0.0733643,-0.15509,-0.202484,-0.210266,-0.181488,-0.125244,-0.0606689,0.000457764,0.0440979,0.0657654,0.0623474,0.0381775,0.000457764,-0.0337524,-0.0461731,-0.0353088,-0.0108032,0.0148926,0.0426941,0.0789185,0.125641,0.173096,0.209595,0.23053,0.23584,0.233826,0.232697,0.235962,0.236908,0.227722,0.206848,0.182739,0.156708,0.129852,0.103821,0.08255,0.0671082,0.0549011,0.0485229,0.0510864,0.058197,0.0576477,0.0401917,0.0015564,-0.0618896,-0.145233,-0.239532,-0.333893,-0.41806,-0.48819,-0.541199,-0.570007,-0.574036,-0.545715,-0.4888,-0.408264,-0.316986,-0.237305,-0.173157,-0.133545,-0.108185,-0.0883789,-0.0733032,-0.0673828,-0.0739746,-0.0819397,-0.0689392,-0.0196533,0.0622864,0.154846,0.237579,0.301086,0.355438,0.39502,0.409271,0.386719,0.315979,0.21167,0.101196,0.0116882,-0.0515442,-0.0934753,-0.113007,-0.105713,-0.0707397,-0.020752,0.0305481,0.0664978,0.0848389,0.0840149,0.0627441,0.0292664,-0.00515747,-0.0279236,-0.0301208,-0.0117493,0.0205994,0.0579224,0.0987854,0.14624,0.199341,0.244019,0.272339,0.278656,0.271271,0.257843,0.245514,0.231079,0.215576,0.195374,0.171936,0.150604,0.133301,0.124237,0.117981,0.110474,0.0932922,0.073822,0.0546265,0.0357666,0.0151062,-0.0175781,-0.0626831,-0.12262,-0.191406,-0.262146,-0.328644,-0.391602,-0.44632,-0.489929,-0.52301,-0.543945,-0.549927,-0.532349,-0.488464,-0.42569,-0.359802,-0.306793,-0.263489,-0.22818,-0.190125,-0.147369,-0.113342,-0.0920715,-0.0833435,-0.06604,-0.0221558,0.0515442,0.140198,0.222626,0.292816,0.3508,0.400604,0.431274,0.431274,0.391083,0.308655,0.205048,0.104706,0.0260925,-0.029541,-0.0646973,-0.0761719,-0.0647583,-0.0299988,0.016449,0.0577087,0.0869141,0.0941467,0.0785828,0.045166,0.0111389,-0.0140381,-0.0244446,-0.0119324,0.016571,0.0594482,0.105988,0.159851,0.216522,0.267456,0.302216,0.313477,0.303223,0.279999,0.253754,0.234619,0.220062,0.205505,0.182159,0.157593,0.138794,0.126373,0.112762,0.0930176,0.065155,0.0331421,0.00335693,-0.0185242,-0.0360413,-0.0548401,-0.081665,-0.114899,-0.159454,-0.210388,-0.268463,-0.332947,-0.395294,-0.452881,-0.504761,-0.546509,-0.569122,-0.570007,-0.554688,-0.521606,-0.471466,-0.402222,-0.32724,-0.252625,-0.189728,-0.144226,-0.106659,-0.0774536,-0.050415,-0.02771,-0.0128174,0.00335693,0.0369873,0.0995178,0.180817,0.262024,0.327454,0.373413,0.404633,0.418396,0.410065,0.365448,0.283691,0.182159,0.0826111,0.0071106,-0.0426025,-0.0668335,-0.0701904,-0.0540161,-0.0186462,0.0263672,0.0706787,0.101288,0.112488,0.100006,0.0734863,0.0422058,0.0185852,0.017395,0.0362549,0.0696106,0.108521,0.149475,0.196503,0.247437,0.292267,0.31604,0.316376,0.299591,0.271881,0.24234,0.213745,0.187866,0.159058,0.125916,0.0942383,0.0664978,0.0463867,0.0311279,0.0142212,-0.00744629,-0.0323486,-0.0551758,-0.0740356,-0.090332,-0.109131,-0.137573,-0.173279,-0.212891,-0.251221,-0.291687,-0.330536,-0.368256,-0.399048,-0.427307,-0.450592,-0.464569,-0.469269,-0.464752,-0.452087,-0.427185,-0.38623,-0.332489,-0.268311,-0.204834,-0.152496,-0.10791,-0.0686646,-0.0276489,0.00750732,0.0304565,0.0414734,0.053833,0.0856323,0.139008,0.203888,0.262085,0.306183,0.342957,0.371338,0.386658,0.368713,0.310333,0.22168,0.127991,0.0512695,-0.00476074,-0.0419312,-0.0564575,-0.0479126,-0.0182495,0.0220032,0.0665894,0.0987244,0.115692,0.112488,0.0930786,0.0666504,0.0457764,0.0401306,0.0578003,0.09021,0.132202,0.174164,0.216919,0.259338,0.290192,0.298126,0.282623,0.247314,0.206451,0.168457,0.133484,0.10556,0.0870361,0.0751038,0.0647583,0.0531616,0.0386658,0.0216675,0,-0.0252991,-0.0540161,-0.0818176,-0.102142,-0.108398,-0.104889,-0.0990601,-0.101013,-0.112488,-0.133636,-0.160004,-0.195709,-0.243561,-0.297913,-0.351746,-0.397644,-0.432678,-0.451813,-0.457642,-0.44873,-0.42691,-0.392761,-0.348511,-0.297241,-0.240875,-0.193542,-0.156525,-0.12738,-0.0991821,-0.0697327,-0.0448914,-0.0220947,-0.00280762,0.0269165,0.0715332,0.131134,0.203156,0.266785,0.319733,0.356049,0.380188,0.388855,0.36853,0.313354,0.23175,0.141205,0.0623474,0.00341797,-0.032135,-0.0501404,-0.0474548,-0.028656,0.00302124,0.0411377,0.0767212,0.101013,0.106781,0.0969238,0.077301,0.0614624,0.0580444,0.0677185,0.09021,0.115692,0.143677,0.17276,0.201874,0.227112,0.238525,0.233154,0.212219,0.188324,0.165985,0.148987,0.133148,0.115356,0.0979309,0.0798035,0.0626221,0.0471802,0.0308838,0.0146179,-0.00234985,-0.0192566,-0.0284424,-0.0305481,-0.028717,-0.0260925,-0.0300598,-0.0440979,-0.0697937,-0.104645,-0.143555,-0.189606,-0.242004,-0.294952,-0.345703,-0.386383,-0.416229,-0.437042,-0.449738,-0.456238,-0.458374,-0.449799,-0.423553,-0.379852,-0.326233,-0.272339,-0.225769,-0.17981,-0.131531,-0.0812073,-0.0322876,0.00167847,0.0245056,0.0469055,0.0857849,0.141266,0.203156,0.260132,0.303223,0.33847,0.365692,0.37616,0.360535,0.309723,0.228394,0.136505,0.052887,-0.00958252,-0.0548401,-0.0785828,-0.0789185,-0.0542908,-0.012085,0.0336304,0.0739746,0.100677,0.108063,0.0983887,0.0779114,0.0535583,0.0386047,0.0404663,0.0606079,0.0961609,0.136108,0.182068,0.231354,0.27887,0.312134,0.321808,0.306854,0.27356,0.235962,0.19812,0.16449,0.135101,0.108734,0.0852966,0.0678406,0.0575867,0.0511475,0.0422668,0.0302124,0.00967407,-0.00958252,-0.0266418,-0.0401306,-0.0534363,-0.0686646,-0.0875854,-0.108582,-0.130524,-0.154022,-0.181885,-0.217255,-0.255829,-0.294769,-0.333496,-0.370667,-0.399933,-0.423492,-0.44046,-0.453827,-0.457916,-0.448334,-0.418793,-0.372345,-0.316589,-0.264832,-0.220551,-0.177368,-0.133148,-0.0885315,-0.0515442,-0.0262451,-0.00952148,0.0111389,0.0491333,0.104309,0.168121,0.228668,0.278778,0.315704,0.336914,0.342346,0.3237,0.275635,0.204163,0.121948,0.0481262,-0.00866699,-0.0413513,-0.0532227,-0.0452881,-0.0189819,0.016449,0.0526123,0.085022,0.110535,0.124695,0.124298,0.116241,0.107117,0.107056,0.122559,0.15155,0.184509,0.216187,0.24469,0.270203,0.291412,0.303497,0.300476,0.280792,0.247375,0.211273,0.17746,0.147369,0.123749,0.0972595,0.0683899,0.040741,0.0205383,0.0088501,-0.00146484,-0.0151672,-0.0314636,-0.0424805,-0.0456238,-0.0440369,-0.0409546,-0.0406799,-0.0482483,-0.0631409,-0.0836792,-0.107391,-0.138519,-0.17691,-0.224365,-0.271942,-0.319611,-0.362823,-0.40155,-0.43222,-0.457062,-0.475098,-0.485107,-0.484772,-0.470337,-0.442474,-0.399994,-0.345032,-0.285156,-0.229462,-0.175964,-0.125763,-0.0771179,-0.036499,-0.00598145,0.0179138,0.0404663,0.0741577,0.117188,0.171692,0.228851,0.279999,0.320007,0.345306,0.355164,0.342072,0.302338,0.237305,0.15799,0.0826111,0.0209351,-0.0187378,-0.0375977,-0.0349731,-0.0153809,0.0202026,0.0626221,0.105896,0.137573,0.152344,0.156097,0.152222,0.14267,0.136658,0.137054,0.151276,0.173157,0.198059,0.222961,0.246185,0.268646,0.284363,0.287384,0.273773,0.2453,0.211487,0.177032,0.149811,0.124908,0.101471,0.0762329,0.052002,0.0320129,0.0149536,0.000213623,-0.016571,-0.0353699,-0.0517578,-0.0636292,-0.066925,-0.0675049,-0.0699463,-0.0813293,-0.0979919,-0.118378,-0.144012,-0.176575,-0.219208,-0.266113,-0.312958,-0.356232,-0.390411,-0.418579,-0.440948,-0.459259,-0.470276,-0.474243,-0.46759,-0.447906,-0.412354,-0.363892,-0.306702,-0.250214,-0.19751,-0.14679,-0.0970459,-0.0471802,-0.00732422,0.0177917,0.0296021,0.0429382,0.0724792,0.121216,0.178314,0.229187,0.268799,0.300812,0.3284,0.343964,0.330078,0.278992,0.201538,0.114838,0.0428772,-0.00872803,-0.0350952,-0.0422058,-0.0269775,0.00900269,0.0593262,0.113281,0.157715,0.186859,0.194305,0.184906,0.163483,0.140198,0.127167,0.130402,0.149048,0.179382,0.214417,0.250732,0.281006,0.307129,0.318604,0.3078,0.276245,0.230408,0.180817,0.134033,0.0954895,0.0680542,0.0479736,0.032959,0.0212708,0.0125427,0.00793457,0.00296021,-0.00698853,-0.0234375,-0.0437622,-0.062561,-0.0762939,-0.0856934,-0.0936279,-0.103363,-0.116913,-0.130615,-0.147705,-0.167328,-0.196167,-0.23114,-0.268311,-0.304565,-0.3414,-0.375977,-0.405701,-0.426239,-0.439941,-0.446381,-0.447723,-0.442474,-0.426971,-0.398651,-0.355042,-0.304443,-0.255432,-0.209717,-0.162415,-0.11087,-0.0555725,-0.00665283,0.0315552,0.0578613,0.082489,0.11142,0.150208,0.193298,0.230255,0.257843,0.279999,0.301941,0.317322,0.311737,0.284363,0.236572,0.18161,0.126251,0.0809326,0.0475159,0.0232849,0.0110168,0.0153809,0.0350342,0.065979,0.0975037,0.124359,0.146301,0.161346,0.168518,0.170746,0.172424,0.177795,0.185425,0.19516,0.209259,0.225769,0.243164,0.255707,0.26416,0.263702,0.253693,0.23288,0.206909,0.176514,0.144287,0.111603,0.080658,0.053833,0.0282593,0.00491333,-0.0124817,-0.0253601,-0.0363159,-0.0501404,-0.065033,-0.078186,-0.0908203,-0.104706,-0.118988,-0.135559,-0.153748,-0.175018,-0.196991,-0.219116,-0.242279,-0.269409,-0.297394,-0.325775,-0.353638,-0.384094,-0.411682,-0.433899,-0.448059,-0.457855,-0.459259,-0.453766,-0.432556,-0.394104,-0.338135,-0.272614,-0.210266,-0.15625,-0.106659,-0.0526123,0.00415039,0.052887,0.0814819,0.0965881,0.111755,0.142212,0.184753,0.228577,0.262878,0.281128,0.293213,0.302765,0.308594,0.295898,0.258789,0.20108,0.136444,0.0833435,0.045105,0.0209961,0.00924683,0.00616455,0.0169678,0.0374451,0.0653687,0.0942383,0.120941,0.140411,0.154694,0.164307,0.173096,0.188446,0.211212,0.237122,0.261871,0.281128,0.29483,0.303497,0.306854,0.303223,0.287598,0.261749,0.22583,0.184509,0.146301,0.112671,0.0838928,0.0527649,0.0196533,-0.0159607,-0.0465698,-0.0715332,-0.0897217,-0.108582,-0.128937,-0.148804,-0.161469,-0.165649,-0.164978,-0.167908,-0.174774,-0.185242,-0.196564,-0.208191,-0.222687,-0.239136,-0.259918,-0.278656,-0.296173,-0.313568,-0.331604,-0.350525,-0.36496,-0.37558,-0.38504,-0.391083,-0.390137,-0.377045,-0.345703,-0.29718,-0.236237,-0.172943,-0.115845,-0.0683289,-0.0234985,0.0221558,0.0599976,0.0779114,0.0798035,0.0767212,0.0860291,0.113892,0.152832,0.191803,0.223969,0.249786,0.273499,0.291931,0.293884,0.26947,0.217316,0.150879,0.0922241,0.0505371,0.0273132,0.0210876,0.0283203,0.0497437,0.081665,0.119659,0.158661,0.188599,0.20813,0.217194,0.217102,0.212677,0.212494,0.21759,0.230133,0.24295,0.25174,0.253357,0.252472,0.245697,0.233704,0.213165,0.184906,0.146851,0.106842,0.0740356,0.0508728,0.0351562,0.0175171,-0.00524902,-0.0334167,-0.06073,-0.0843506,-0.105164,-0.127594,-0.152893,-0.178314,-0.19281,-0.191956,-0.176514,-0.158844,-0.144775,-0.134216,-0.130341,-0.130463,-0.141083,-0.156433,-0.180725,-0.211151,-0.246704,-0.282074,-0.310608,-0.331482,-0.347595,-0.357849,-0.361664,-0.360535,-0.35202,-0.339478,-0.315308,-0.27771,-0.232483,-0.183746,-0.144501,-0.112885,-0.0799255,-0.0439453,-0.0071106,0.0175781,0.0316772,0.0400696,0.0571289,0.0918884,0.142822,0.194977,0.23941,0.272491,0.301544,0.325378,0.337036,0.321869,0.276581,0.208862,0.140259,0.0855713,0.0502014,0.0312195,0.0259705,0.0369873,0.0619507,0.0986023,0.136169,0.167572,0.191803,0.200867,0.199127,0.186768,0.171936,0.163757,0.162964,0.17041,0.177795,0.187042,0.195038,0.202942,0.208527,0.207306,0.196442,0.172821,0.14093,0.107239,0.0751648,0.0479736,0.0202026,-0.00839233,-0.0415344,-0.0748291,-0.102966,-0.123016,-0.137177,-0.149719,-0.160004,-0.163025,-0.156372,-0.139801,-0.122498,-0.108337,-0.104309,-0.10672,-0.115356,-0.128784,-0.148926,-0.173157,-0.199066,-0.22403,-0.248444,-0.272156,-0.292938,-0.307129,-0.316498,-0.321686,-0.327393,-0.333618,-0.336121,-0.327393,-0.299927,-0.256592,-0.209595,-0.172546,-0.144836,-0.114563,-0.0761719,-0.0333557,-0.000457764,0.0144348,0.0218811,0.0400085,0.0803223,0.139404,0.199524,0.245697,0.277191,0.30249,0.324432,0.332489,0.315979,0.267242,0.199249,0.131287,0.0783997,0.0470581,0.037384,0.0402832,0.0547791,0.0786438,0.105713,0.131805,0.150665,0.15918,0.15744,0.145447,0.12851,0.115356,0.116364,0.130615,0.15451,0.178467,0.199402,0.214691,0.225494,0.231018,0.224823,0.208069,0.175903,0.135712,0.092804,0.0571289,0.0298767,0.00946045,-0.0104675,-0.0312195,-0.0550232,-0.0763855,-0.0887146,-0.094635,-0.101013,-0.112427,-0.125977,-0.13028,-0.125366,-0.112274,-0.102203,-0.0993347,-0.103363,-0.111145,-0.121002,-0.131409,-0.146851,-0.168121,-0.192139,-0.218048,-0.241211,-0.262817,-0.283081,-0.303558,-0.323761,-0.342285,-0.359863,-0.37088,-0.368591,-0.348328,-0.307465,-0.256439,-0.204163,-0.158386,-0.115784,-0.0681152,-0.0171814,0.0232849,0.0414734,0.0428772,0.0469666,0.0661621,0.105225,0.154022,0.200592,0.239532,0.274841,0.310608,0.340057,0.348389,0.321136,0.261688,0.183838,0.112549,0.0548401,0.0137024,-0.00878906,-0.0159607,-0.00408936,0.0231628,0.0624695,0.107178,0.143341,0.165314,0.171478,0.167175,0.158112,0.153412,0.153015,0.157776,0.166382,0.177643,0.189728,0.203552,0.217865,0.222809,0.218994,0.204285,0.179321,0.148193,0.115784,0.0867004,0.0594482,0.0303345,-0.000274658,-0.0320129,-0.0639038,-0.089325,-0.111145,-0.126373,-0.140259,-0.149139,-0.150604,-0.139404,-0.119873,-0.100342,-0.0878601,-0.0832825,-0.0842285,-0.0928955,-0.109863,-0.134552,-0.167236,-0.202881,-0.23645,-0.265228,-0.287506,-0.305115,-0.317322,-0.324036,-0.326294,-0.330261,-0.336578,-0.338379,-0.324493,-0.292084,-0.249603,-0.207458,-0.170746,-0.136841,-0.0956421,-0.0444946,0.00604248,0.0390015,0.04953,0.0532227,0.0663757,0.0987854,0.142334,0.181396,0.20697,0.226715,0.251221,0.278717,0.293427,0.281464,0.236176,0.171356,0.109253,0.0614014,0.0293274,0.00918579,0.00289917,0.0114746,0.0348206,0.0688477,0.112274,0.15033,0.177246,0.188721,0.187775,0.179382,0.175171,0.17926,0.186249,0.195709,0.203888,0.212677,0.223145,0.2341,0.237061,0.227112,0.206635,0.177307,0.141479,0.103699,0.070343,0.0412903,0.0124817,-0.0159607,-0.0448914,-0.0704041,-0.0922241,-0.107574,-0.121063,-0.13504,-0.147247,-0.154846,-0.150543,-0.138184,-0.12149,-0.10907,-0.101288,-0.0961609,-0.0932312,-0.0972595,-0.110199,-0.131531,-0.156982,-0.184174,-0.209473,-0.2341,-0.258179,-0.282288,-0.303009,-0.317505,-0.329407,-0.340149,-0.347595,-0.345154,-0.324554,-0.289398,-0.246857,-0.204285,-0.169189,-0.134705,-0.0940857,-0.0481262,-0.0104675,0.0118713,0.0205994,0.0319519,0.0571899,0.0987854,0.14679,0.191345,0.227234,0.261536,0.291687,0.314575,0.320618,0.296387,0.246094,0.181335,0.122406,0.077179,0.0459595,0.028595,0.027771,0.039856,0.0637512,0.0964966,0.130859,0.160126,0.180603,0.188721,0.185913,0.178864,0.174164,0.175964,0.182617,0.19046,0.193146,0.192078,0.19397,0.199066,0.200531,0.190399,0.169403,0.14389,0.116241,0.089386,0.0639038,0.0367737,0.00750732,-0.0240173,-0.0536804,-0.0814819,-0.104156,-0.119934,-0.131683,-0.138336,-0.140594,-0.135498,-0.124084,-0.107391,-0.0924683,-0.0838318,-0.0838928,-0.0921326,-0.106567,-0.127319,-0.154022,-0.183014,-0.210663,-0.235626,-0.255768,-0.273224,-0.285828,-0.298737,-0.309998,-0.320343,-0.332336,-0.34375,-0.347778,-0.335907,-0.301666,-0.258179,-0.208862,-0.165039,-0.123413,-0.0769043,-0.0296021,0.0137024,0.0377197,0.0422668,0.0404053,0.0519409,0.0841064,0.12973,0.174042,0.212006,0.247192,0.286255,0.317322,0.332001,0.316772,0.269135,0.200745,0.130463,0.0734863,0.0357666,0.0170593,0.0158386,0.0315552,0.0628052,0.103363,0.144775,0.178253,0.197174,0.198059,0.183563,0.161285,0.14679,0.141693,0.14328,0.149536,0.158447,0.171265,0.186371,0.202942,0.213745,0.20813,0.186188,0.152161,0.117706,0.0818787,0.0481262,0.0157776,-0.0137634,-0.0411377,-0.0630188,-0.0828247,-0.0997925,-0.110992,-0.119263,-0.126923,-0.135437,-0.14035,-0.138062,-0.128052,-0.116028,-0.10556,-0.100861,-0.101532,-0.104553,-0.110413,-0.12262,-0.142548,-0.166901,-0.19101,-0.213348,-0.233765,-0.255249,-0.2771,-0.297638,-0.312469,-0.325897,-0.335571,-0.336517,-0.325226,-0.296448,-0.25415,-0.206116,-0.161407,-0.12442,-0.0887146,-0.0491943,-0.0111389,0.0144958,0.0218811,0.0227661,0.0339661,0.0654907,0.11496,0.16745,0.211609,0.249329,0.289062,0.324036,0.344635,0.335297,0.292694,0.226776,0.154968,0.0933533,0.045166,0.0126038,-0.000549316,0.00509644,0.028656,0.0644836,0.10611,0.141876,0.166656,0.176453,0.172272,0.155701,0.138062,0.127106,0.12262,0.124237,0.12912,0.135559,0.147797,0.166718,0.184357,0.192749,0.185638,0.168579,0.141541,0.112671,0.081665,0.0514832,0.0192566,-0.0148315,-0.045166,-0.0706177,-0.0913391,-0.10437,-0.112762,-0.121063,-0.126709,-0.128784,-0.12323,-0.110992,-0.0970459,-0.0871277,-0.082489,-0.0814209,-0.0846863,-0.0926819,-0.107117,-0.128784,-0.156036,-0.181549,-0.205627,-0.226898,-0.245178,-0.260864,-0.276581,-0.288788,-0.299988,-0.309662,-0.312225,-0.303619,-0.280273,-0.245087,-0.20813,-0.170471,-0.137177,-0.103027,-0.0634766,-0.0269775,-0.00100708,0.00845337,0.0107422,0.0218811,0.0508728,0.0944824,0.13974,0.179993,0.217041,0.2565,0.291412,0.311279,0.306976,0.271149,0.211731,0.143097,0.0827637,0.0356445,0.00289917,-0.0133667,-0.0103455,0.00985718,0.0448914,0.0820007,0.116028,0.141541,0.155365,0.155762,0.147797,0.139465,0.136993,0.138794,0.145569,0.15509,0.163635,0.173096,0.182343,0.192139,0.195038,0.186646,0.168243,0.142548,0.117188,0.0927429,0.0654297,0.0369263,0.00817871,-0.0203247,-0.0488586,-0.0742188,-0.094696,-0.108978,-0.118134,-0.120209,-0.115448,-0.102478,-0.0840149,-0.0632324,-0.045166,-0.0343628,-0.0326843,-0.0404663,-0.0584412,-0.0855713,-0.118134,-0.154083,-0.186096,-0.214508,-0.239075,-0.259674,-0.274902,-0.284973,-0.291809,-0.303955,-0.317596,-0.327789,-0.326782,-0.305695,-0.273773,-0.239532,-0.209381,-0.182892,-0.147644,-0.102539,-0.0532837,-0.0186462,-0.00128174,0.00570679,0.0213318,0.0557861,0.103485,0.150269,0.184845,0.213287,0.245758,0.276764,0.297302,0.292358,0.252228,0.191071,0.12323,0.0667114,0.025177,-0.000396729,-0.0142822,-0.00839233,0.0149536,0.0520935,0.0950928,0.134827,0.164978,0.178314,0.175354,0.159454,0.143951,0.134033,0.131409,0.133972,0.138458,0.145966,0.15979,0.181885,0.205231,0.220947,0.221466,0.205383,0.182159,0.156769,0.12912,0.0969849,0.0601196,0.024231,-0.00912476,-0.0348206,-0.052002,-0.061554,-0.0693359,-0.0769653,-0.0807495,-0.0822144,-0.0774536,-0.0693359,-0.0621338,-0.0613403,-0.065979,-0.0756226,-0.0907288,-0.109802,-0.134766,-0.165985,-0.199066,-0.230927,-0.257507,-0.281464,-0.299744,-0.311951,-0.319,-0.324707,-0.331085,-0.334167,-0.327393,-0.307648,-0.276367,-0.241669,-0.208801,-0.181549,-0.154755,-0.119995,-0.0774536,-0.0386047,-0.0132141,-0.00128174,0.0105286,0.0365906,0.0788574,0.126831,0.163757,0.186859,0.207184,0.22757,0.248871,0.256989,0.237122,0.190552,0.132477,0.0821533,0.0479126,0.0289307,0.0194092,0.0186462,0.0297852,0.0524902,0.0863037,0.121063,0.149323,0.167847,0.172943,0.167999,0.1633,0.163879,0.17215,0.183289,0.192291,0.196503,0.202606,0.212158,0.226318,0.233612,0.22879,0.211395,0.186249,0.160339,0.13504,0.108917,0.07724,0.0418091,0.00967407,-0.0202026,-0.0437622,-0.0614624,-0.0754395,-0.0878601,-0.0996094,-0.104828,-0.105835,-0.101288,-0.098053,-0.0979919,-0.102692,-0.110138,-0.118317,-0.128937,-0.143829,-0.163757,-0.18866,-0.21402,-0.236053,-0.254364,-0.274017,-0.291748,-0.309875,-0.325043,-0.338135,-0.345245,-0.340942,-0.319946,-0.283905,-0.241821,-0.200806,-0.168121,-0.140015,-0.109528,-0.0776367,-0.0532837,-0.0436096,-0.0463867,-0.041687,-0.0181274,0.028656,0.0849609,0.135559,0.177185,0.215088,0.251282,0.279449,0.291016,0.269409,0.219208,0.156433,0.102753,0.0632935,0.0403442,0.0314026,0.0336914,0.0458984,0.0687256,0.100067,0.130615,0.156586,0.170349,0.169739,0.160278,0.153748,0.157379,0.169525,0.184021,0.193878,0.196167,0.196503,0.204437,0.216248,0.222626,0.215759,0.20108,0.181824,0.165894,0.15329,0.134094,0.107178,0.0723572,0.0352478,-0.000213623,-0.0335693,-0.0610046,-0.0841675,-0.102356,-0.112946,-0.118317,-0.117371,-0.110321,-0.101471,-0.0963135,-0.100677,-0.11261,-0.127319,-0.143951,-0.162354,-0.185242,-0.212891,-0.240143,-0.2612,-0.277252,-0.290009,-0.302002,-0.314819,-0.326508,-0.33725,-0.339478,-0.327515,-0.298309,-0.258331,-0.216766,-0.180603,-0.151611,-0.123749,-0.0928955,-0.0654907,-0.0493164,-0.0493164,-0.0533447,-0.0450439,-0.0137634,0.0386047,0.0978394,0.146912,0.186371,0.223236,0.256378,0.277771,0.27478,0.237976,0.175568,0.109741,0.0579224,0.0289307,0.017395,0.0203247,0.0342407,0.0585938,0.0920105,0.130188,0.160797,0.180328,0.182953,0.171478,0.155518,0.146698,0.153503,0.170258,0.189728,0.205383,0.213623,0.223083,0.238647,0.249786,0.248779,0.229248,0.200867,0.172607,0.151825,0.135223,0.114105,0.0861816,0.0545654,0.0255127,-0.00363159,-0.0304565,-0.0578003,-0.0841675,-0.107391,-0.123688,-0.131683,-0.13382,-0.12738,-0.119263,-0.112152,-0.109863,-0.114441,-0.123901,-0.138062,-0.157654,-0.184418,-0.214417,-0.241089,-0.264221,-0.281342,-0.295288,-0.307129,-0.319794,-0.329865,-0.336365,-0.33075,-0.31189,-0.281464,-0.24295,-0.206238,-0.173218,-0.14502,-0.11618,-0.0869751,-0.0646362,-0.0551758,-0.0584412,-0.0603333,-0.0463867,-0.00891113,0.0469055,0.100739,0.147125,0.187988,0.227173,0.259918,0.275024,0.259674,0.208588,0.144104,0.0855713,0.0452271,0.0248413,0.019989,0.0306091,0.0545654,0.0875244,0.126831,0.160797,0.183411,0.192627,0.187195,0.169922,0.153748,0.150208,0.160065,0.180054,0.20343,0.221008,0.23288,0.243683,0.253571,0.255646,0.242065,0.21463,0.180054,0.15033,0.130615,0.115234,0.0971069,0.072876,0.0476379,0.0211487,-0.00140381,-0.0238342,-0.0477295,-0.0762939,-0.103882,-0.12262,-0.131287,-0.132751,-0.129852,-0.126587,-0.125641,-0.126984,-0.130951,-0.140411,-0.156097,-0.179199,-0.207123,-0.233948,-0.25705,-0.276581,-0.293945,-0.31134,-0.329865,-0.344482,-0.352142,-0.347168,-0.325287,-0.289612,-0.247253,-0.206116,-0.168732,-0.135895,-0.103973,-0.0770569,-0.0628967,-0.0637512,-0.0766296,-0.0836182,-0.0722961,-0.0369263,0.0142212,0.0697937,0.122284,0.175446,0.226837,0.26712,0.281677,0.264618,0.21283,0.148041,0.0862427,0.0436096,0.0221558,0.0159607,0.0283813,0.0553589,0.0948181,0.141541,0.181824,0.204895,0.207855,0.194489,0.170349,0.150269,0.144348,0.151886,0.168396,0.190796,0.213898,0.23645,0.257111,0.269653,0.268066,0.249603,0.219208,0.184021,0.153503,0.130951,0.113678,0.093811,0.0709534,0.0489197,0.0296021,0.0106812,-0.0107422,-0.0371094,-0.0661011,-0.09375,-0.114685,-0.127594,-0.133759,-0.135498,-0.135437,-0.136383,-0.138397,-0.14267,-0.149811,-0.162872,-0.182678,-0.209595,-0.238403,-0.261353,-0.278656,-0.295227,-0.313751,-0.334106,-0.351959,-0.356842,-0.347107,-0.319946,-0.278992,-0.234772,-0.191956,-0.15274,-0.120331,-0.0910034,-0.0691223,-0.0608826,-0.0688477,-0.0853577,-0.093811,-0.0798645,-0.0390625,0.0203247,0.0807495,0.136658,0.189392,0.23941,0.276581,0.286713,0.258514,0.196381,0.121338,0.0571899,0.0196533,0.00335693,0.00811768,0.0258484,0.0596008,0.106506,0.158722,0.201752,0.220673,0.215851,0.192963,0.163544,0.140808,0.133484,0.140411,0.158051,0.182556,0.210815,0.23819,0.264832,0.281891,0.282898,0.263885,0.228912,0.189728,0.153839,0.128387,0.105713,0.0845642,0.0602112,0.0379333,0.01651,-0.00323486,-0.0236206,-0.0462952,-0.0698547,-0.0925598,-0.110931,-0.122223,-0.128326,-0.132141,-0.135101,-0.139252,-0.143341,-0.15155,-0.163361,-0.178711,-0.197998,-0.221893,-0.246643,-0.271149,-0.295044,-0.315582,-0.333435,-0.346436,-0.35202,-0.343292,-0.31778,-0.276306,-0.226105,-0.181,-0.14624,-0.120148,-0.0960999,-0.0787354,-0.0735474,-0.0841675,-0.103546,-0.113159,-0.0993958,-0.0557861,0.00592041,0.0726318,0.134644,0.193481,0.244965,0.276978,0.281006,0.245178,0.178131,0.0994568,0.0316772,-0.0116882,-0.02771,-0.0171204,0.0118713,0.0550232,0.108643,0.163879,0.208374,0.233276,0.233093,0.210999,0.174896,0.143494,0.127106,0.127991,0.143005,0.162811,0.188385,0.217987,0.249451,0.274628,0.283478,0.272766,0.245758,0.210815,0.17395,0.140259,0.105896,0.0744934,0.0447693,0.020752,0.00012207,-0.0191956,-0.0328979,-0.0441589,-0.0535583,-0.0636902,-0.0714722,-0.0777893,-0.079071,-0.081665,-0.0904846,-0.106995,-0.126923,-0.148529,-0.170471,-0.192474,-0.214355,-0.238647,-0.261261,-0.282135,-0.300995,-0.320007,-0.338654,-0.356384,-0.360077,-0.34256,-0.304962,-0.259186,-0.21759,-0.182953,-0.154083,-0.125702,-0.100189,-0.0862427,-0.0917358,-0.10907,-0.120605,-0.109131,-0.0710144,-0.0146179,0.0472412,0.106842,0.167999,0.226562,0.270142,0.284149,0.259857,0.198669,0.118805,0.0420837,-0.0147705,-0.0428772,-0.0465698,-0.0260925,0.0114746,0.0622253,0.11972,0.17215,0.208252,0.220612,0.207245,0.175781,0.145844,0.129456,0.129852,0.141022,0.154968,0.174164,0.199524,0.231476,0.261139,0.27832,0.276184,0.256836,0.22644,0.197571,0.172211,0.14563,0.114777,0.0800781,0.0475159,0.0205994,-0.00256348,-0.0205994,-0.0366516,-0.053009,-0.0671082,-0.074707,-0.0730896,-0.0634155,-0.053894,-0.053772,-0.0601196,-0.0741577,-0.0942993,-0.12207,-0.154846,-0.192749,-0.230743,-0.267242,-0.297394,-0.322479,-0.34201,-0.359528,-0.372009,-0.368652,-0.343964,-0.30368,-0.257843,-0.215759,-0.181152,-0.15564,-0.135162,-0.12027,-0.116577,-0.127167,-0.144226,-0.153687,-0.136993,-0.0906677,-0.0223389,0.0555115,0.130188,0.199127,0.256042,0.292938,0.301605,0.273438,0.205109,0.115295,0.0291138,-0.0347595,-0.0663757,-0.0662537,-0.0424805,-0.00222778,0.048645,0.103973,0.15564,0.188721,0.199402,0.17981,0.144836,0.112823,0.100464,0.107727,0.126434,0.151886,0.179321,0.207977,0.238129,0.264496,0.275848,0.267242,0.244354,0.213287,0.188049,0.170593,0.1539,0.134705,0.111664,0.0910034,0.0686646,0.0468445,0.0232239,-0.00314331,-0.0332947,-0.0591125,-0.0758972,-0.0805359,-0.0779114,-0.0718079,-0.0681763,-0.0657043,-0.0675049,-0.0777893,-0.0997925,-0.130188,-0.170746,-0.216309,-0.265564,-0.311798,-0.353027,-0.386047,-0.409729,-0.411407,-0.387573,-0.338593,-0.278717,-0.220123,-0.169922,-0.132202,-0.108124,-0.0927429,-0.0944824,-0.112427,-0.146454,-0.176849,-0.183167,-0.153839,-0.0919495,-0.0105286,0.0745544,0.1586,0.236053,0.295502,0.32431,0.309448,0.245758,0.149475,0.0508118,-0.028717,-0.0759583,-0.0897217,-0.0751648,-0.0378418,0.0143738,0.0776367,0.137573,0.181152,0.197784,0.185699,0.149811,0.108063,0.0798645,0.0720825,0.0826111,0.107788,0.139404,0.173615,0.212738,0.252808,0.281555,0.287598,0.269592,0.236176,0.202942,0.177582,0.1586,0.138916,0.115906,0.0940247,0.0742188,0.0569763,0.0424194,0.0265808,0.00509644,-0.0171814,-0.036499,-0.0477905,-0.0524902,-0.0558472,-0.0579834,-0.065918,-0.0779114,-0.0953674,-0.116852,-0.140472,-0.164642,-0.194489,-0.229797,-0.268799,-0.30603,-0.341278,-0.369995,-0.383362,-0.374695,-0.342224,-0.294708,-0.242065,-0.190277,-0.146973,-0.113831,-0.0928955,-0.0895386,-0.105316,-0.134155,-0.163818,-0.172028,-0.151001,-0.101868,-0.03302,0.0448914,0.130127,0.211731,0.276367,0.308777,0.300995,0.245239,0.158386,0.0624695,-0.0197449,-0.0709534,-0.0910645,-0.0778503,-0.0397949,0.0152893,0.0802002,0.14093,0.183411,0.198059,0.179871,0.137787,0.089386,0.0574646,0.0461121,0.053894,0.0749817,0.105774,0.144226,0.187378,0.231018,0.260406,0.267395,0.252014,0.2229,0.192871,0.169067,0.149536,0.131195,0.113281,0.0958252,0.0791321,0.0658264,0.0524902,0.0374451,0.0182495,-0.00280762,-0.019928,-0.0299377,-0.0314636,-0.0282593,-0.0296021,-0.0350342,-0.050415,-0.0749817,-0.105164,-0.140076,-0.178986,-0.220276,-0.265106,-0.306793,-0.340485,-0.361542,-0.365784,-0.349945,-0.318939,-0.272888,-0.226501,-0.183502,-0.147186,-0.121338,-0.106842,-0.106995,-0.124969,-0.153503,-0.179321,-0.184631,-0.160522,-0.108582,-0.0377808,0.0422058,0.123352,0.201935,0.264282,0.295288,0.28598,0.235504,0.153625,0.0630798,-0.0157166,-0.0698547,-0.0949097,-0.0875854,-0.052948,0.00167847,0.0656433,0.12558,0.168335,0.185425,0.173157,0.136047,0.0878601,0.0475159,0.0273743,0.0275879,0.0434875,0.0740967,0.113281,0.158051,0.202362,0.235962,0.246521,0.236053,0.21106,0.180389,0.155914,0.136841,0.121002,0.106903,0.0971069,0.0885925,0.0809937,0.0700684,0.0578003,0.040741,0.0196533,-0.00161743,-0.0170593,-0.0257568,-0.0259094,-0.0263062,-0.028656,-0.0381165,-0.0555115,-0.0820923,-0.116516,-0.153839,-0.198669,-0.248383,-0.296967,-0.335571,-0.361328,-0.364288,-0.344757,-0.306641,-0.253296,-0.197113,-0.147247,-0.110931,-0.0873718,-0.0791931,-0.086853,-0.109467,-0.14035,-0.170746,-0.182617,-0.161621,-0.107056,-0.0324097,0.0502625,0.131073,0.204163,0.260681,0.287445,0.275757,0.220612,0.134644,0.0393982,-0.0414734,-0.0922852,-0.109924,-0.0974426,-0.0599365,-0.00402832,0.0604553,0.123077,0.168396,0.187927,0.175842,0.137512,0.086792,0.0428772,0.0147095,0.00906372,0.0203247,0.0491943,0.0894775,0.138336,0.185852,0.224091,0.241882,0.236389,0.211273,0.175171,0.141357,0.113098,0.0899353,0.069458,0.0561829,0.0496521,0.0499268,0.0555725,0.0610657,0.0585327,0.0482483,0.0316162,0.0144958,0.00161743,-0.00958252,-0.0240173,-0.0434265,-0.0663757,-0.0930176,-0.119476,-0.150208,-0.182739,-0.222015,-0.26416,-0.302673,-0.329742,-0.337128,-0.319,-0.282562,-0.233948,-0.18457,-0.14035,-0.106506,-0.081665,-0.0672607,-0.0701294,-0.0930786,-0.126587,-0.156372,-0.163879,-0.138916,-0.0867004,-0.0175781,0.0536804,0.125916,0.193298,0.246185,0.269531,0.254822,0.197174,0.114838,0.028717,-0.040741,-0.0855713,-0.10376,-0.0954285,-0.0645752,-0.0128784,0.0487366,0.108917,0.152222,0.170074,0.159515,0.125702,0.082428,0.0420837,0.0129395,-0.00167847,-0.000457764,0.0192566,0.0546265,0.101959,0.151154,0.191864,0.214966,0.220276,0.209259,0.191345,0.166443,0.134888,0.103088,0.072876,0.0514832,0.0379333,0.0326843,0.0344238,0.0357056,0.0365906,0.0339661,0.0288696,0.0214233,0.0131531,6.10352e-05,-0.0184021,-0.0414734,-0.0687256,-0.0992737,-0.133759,-0.169189,-0.20813,-0.250275,-0.289948,-0.319794,-0.333008,-0.325287,-0.295441,-0.247711,-0.190613,-0.131287,-0.0794678,-0.0426025,-0.0196533,-0.0178528,-0.0381165,-0.0755005,-0.119537,-0.150604,-0.153839,-0.124237,-0.0658264,0.0083313,0.0873718,0.163757,0.229187,0.269745,0.276917,0.239929,0.167236,0.0804138,-0.00509644,-0.0704041,-0.109985,-0.120056,-0.102875,-0.0634155,-0.00549316,0.0561829,0.109528,0.142883,0.151276,0.135651,0.104767,0.0698547,0.0379944,0.0144958,0.00637817,0.0114746,0.0278625,0.0561218,0.0927429,0.128174,0.158783,0.178925,0.187714,0.187042,0.178925,0.164032,0.140472,0.112152,0.0833435,0.0577087,0.0371094,0.0245667,0.0175171,0.0128784,0.00979614,0.0083313,0.00839233,0.00448608,-0.00363159,-0.0203247,-0.0459595,-0.0786438,-0.115112,-0.152496,-0.188934,-0.22403,-0.257721,-0.286255,-0.305115,-0.30899,-0.293488,-0.259796,-0.21228,-0.162628,-0.116364,-0.0740356,-0.0388489,-0.0118713,-0.000946045,-0.0111389,-0.0393372,-0.0721436,-0.0926208,-0.0924072,-0.0672607,-0.0248413,0.0292053,0.0884705,0.151733,0.208313,0.240753,0.238983,0.195374,0.126373,0.0479126,-0.0219421,-0.0723572,-0.101013,-0.103485,-0.0820007,-0.0363159,0.0245667,0.0864563,0.131805,0.15451,0.146576,0.117035,0.0762329,0.0368347,0.00631714,-0.0109253,-0.0108032,0.00390625,0.0352478,0.0759583,0.119141,0.155029,0.172211,0.172699,0.157928,0.135223,0.111481,0.0892639,0.0670471,0.0516663,0.0394592,0.0358276,0.0378418,0.0432129,0.0461731,0.0434265,0.0359192,0.0266418,0.0170593,0.00610352,-0.00805664,-0.0284424,-0.0553589,-0.0897217,-0.128784,-0.170349,-0.212952,-0.254974,-0.293549,-0.322876,-0.333282,-0.318115,-0.278442,-0.220215,-0.159851,-0.106995,-0.0643005,-0.0317383,-0.00784302,0.000549316,-0.0151672,-0.0497437,-0.0870361,-0.10321,-0.0882568,-0.0439453,0.0128174,0.0744324,0.137787,0.200195,0.25415,0.279999,0.266907,0.21228,0.132629,0.0475769,-0.0247803,-0.0787354,-0.10965,-0.114899,-0.0942993,-0.0533447,0.00241089,0.0579224,0.103027,0.12973,0.132751,0.112946,0.0794678,0.0439453,0.0150452,-0.00369263,-0.0126953,-0.00924683,0.00604248,0.0379944,0.0778503,0.116638,0.143219,0.155975,0.157104,0.152893,0.143951,0.128113,0.104156,0.0758972,0.0480652,0.0270996,0.0134888,0.00631714,0.0017395,0.000396729,-0.00112915,-0.000213623,-0.000671387,-0.00180054,-0.00900269,-0.0260925,-0.0517578,-0.0856934,-0.124023,-0.164429,-0.206726,-0.250275,-0.290741,-0.321869,-0.32959,-0.310211,-0.265045,-0.209473,-0.155243,-0.104034,-0.0574646,-0.0128174,0.0176392,0.0238953,0.00390625,-0.0334778,-0.0647583,-0.0753784,-0.0606079,-0.0265808,0.0194092,0.0765076,0.143494,0.212219,0.265961,0.288727,0.271149,0.217102,0.14267,0.0641479,-0.003479,-0.0554504,-0.0873108,-0.0987244,-0.086853,-0.053894,-0.00598145,0.0444946,0.0832825,0.101135,0.0951538,0.0711975,0.0426941,0.0183105,-0.00012207,-0.0133667,-0.0183105,-0.0115356,0.0105896,0.04422,0.0803223,0.108459,0.124573,0.131348,0.132355,0.130188,0.124695,0.113892,0.0991211,0.080658,0.0637512,0.0499878,0.0394592,0.0294495,0.019989,0.00878906,-0.00189209,-0.0124817,-0.0241699,-0.0378418,-0.0556946,-0.0798645,-0.107056,-0.140259,-0.175354,-0.21228,-0.249878,-0.283813,-0.305634,-0.308929,-0.288605,-0.246704,-0.193298,-0.14035,-0.0910034,-0.0461121,-0.00650024,0.0194092,0.0256348,0.00939941,-0.0179749,-0.0388489,-0.0410767,-0.0237732,0.0108643,0.0534973,0.105713,0.163361,0.218658,0.257446,0.266388,0.23941,0.184082,0.115631,0.0469055,-0.0103455,-0.0510864,-0.0718689,-0.0724182,-0.0526733,-0.0200806,0.0191956,0.0532227,0.0755615,0.0788574,0.0618896,0.033905,0.00476074,-0.016571,-0.0275879,-0.0285339,-0.020752,-0.00408936,0.0224915,0.0546265,0.0845642,0.104034,0.108734,0.101624,0.0927429,0.0852966,0.0799255,0.0742188,0.0681152,0.0643616,0.065979,0.0700684,0.073822,0.0697327,0.0569763,0.0371094,0.0154419,-0.0083313,-0.0336304,-0.0601196,-0.0865784,-0.112091,-0.136047,-0.161011,-0.188995,-0.217865,-0.247711,-0.272614,-0.287506,-0.286163,-0.266235,-0.231079,-0.187439,-0.138916,-0.0906677,-0.0420227,-0.00222778,0.0240173,0.0316162,0.0216675,0.00784302,0.000213623,0.00939941,0.0328979,0.0670471,0.108398,0.156433,0.206299,0.249664,0.270996,0.260254,0.217926,0.15686,0.0892639,0.0281982,-0.0210876,-0.0556946,-0.0714111,-0.0675964,-0.045166,-0.0126038,0.0218811,0.046051,0.0569763,0.0508118,0.0314636,0.00692749,-0.0196533,-0.0397339,-0.0517578,-0.0508118,-0.0406799,-0.0188599,0.0139465,0.0496521,0.0834351,0.107788,0.119049,0.117706,0.111206,0.0973816,0.080658,0.0587769,0.0375977,0.0196533,0.012146,0.0126953,0.0203247,0.0264282,0.0316162,0.028717,0.021759,0.00592041,-0.0184631,-0.0531616,-0.0948181,-0.140594,-0.18161,-0.220001,-0.250397,-0.272339,-0.280792,-0.272766,-0.246246,-0.205444,-0.160522,-0.118134,-0.0810852,-0.0509949,-0.0234375,-0.00537109,0.00134277,-0.00537109,-0.0157166,-0.0195312,-0.00616455,0.0236206,0.0644226,0.108337,0.153503,0.199677,0.24234,0.268982,0.269806,0.239197,0.187866,0.127655,0.0696106,0.0224915,-0.00939941,-0.0265198,-0.028656,-0.0175171,0.00228882,0.0266418,0.0456238,0.0524902,0.0420227,0.0161133,-0.0170593,-0.0446167,-0.0617981,-0.0676575,-0.065918,-0.0583191,-0.0431519,-0.0179138,0.0129395,0.041626,0.0591125,0.0653687,0.0644836,0.0652466,0.0673218,0.0697327,0.0686035,0.0626221,0.0563049,0.0505981,0.0443726,0.0366516,0.0236206,0.0067749,-0.0123596,-0.0315552,-0.0498657,-0.0669861,-0.0820007,-0.0997925,-0.121277,-0.147919,-0.176971,-0.208374,-0.236786,-0.260742,-0.270477,-0.261688,-0.23288,-0.188538,-0.137451,-0.0846863,-0.0361633,0.00778198,0.0415344,0.0585938,0.0546265,0.0354309,0.0175171,0.0119324,0.0255127,0.0539551,0.0930176,0.138245,0.188782,0.238647,0.27356,0.282013,0.257507,0.206116,0.141937,0.0779724,0.024292,-0.0119324,-0.028717,-0.0269165,-0.00991821,0.0177917,0.0469055,0.0696106,0.078064,0.0671692,0.0386658,-0.000396729,-0.0377197,-0.0629578,-0.0755005,-0.0762329,-0.070343,-0.0561218,-0.0341492,-0.00665283,0.0188599,0.0367126,0.0436096,0.0411987,0.0361023,0.0331421,0.0346985,0.0354919,0.0349121,0.0338135,0.0317383,0.0305481,0.0256348,0.0177917,0.00442505,-0.0143738,-0.0368347,-0.06073,-0.0832214,-0.102753,-0.123352,-0.14563,-0.172363,-0.201141,-0.230194,-0.255493,-0.267578,-0.265625,-0.247192,-0.215088,-0.175629,-0.128662,-0.0802612,-0.0324707,0.0136108,0.0458374,0.0600586,0.056366,0.0467834,0.0423584,0.0532227,0.0763855,0.107117,0.143829,0.185364,0.232605,0.274506,0.299469,0.295441,0.262695,0.208984,0.14798,0.0926208,0.0477905,0.0151672,-0.0032959,-0.00891113,-0.0015564,0.0151672,0.0342407,0.0490723,0.0498657,0.0350342,0.00375366,-0.028656,-0.0520935,-0.0624084,-0.065155,-0.0639648,-0.0593262,-0.0473938,-0.0260315,0.00195312,0.0230103,0.0345764,0.0336914,0.0310669,0.0335693,0.0396118,0.045105,0.0441589,0.0409546,0.036377,0.0314026,0.0268555,0.0181885,6.10352e-05,-0.0265198,-0.0566406,-0.0895996,-0.119141,-0.145447,-0.170685,-0.195099,-0.218933,-0.242828,-0.2612,-0.276428,-0.280731,-0.272675,-0.250671,-0.215179,-0.171143,-0.124298,-0.0775757,-0.0327454,0.00933838,0.0438843,0.062561,0.0635681,0.0541687,0.0483093,0.0571899,0.0782471,0.110413,0.147583,0.190125,0.240265,0.287384,0.318329,0.321075,0.29187,0.237457,0.170929,0.108063,0.0551758,0.0183105,-0.00128174,-0.00234985,0.0132141,0.0377197,0.0679932,0.0914917,0.101959,0.0889893,0.0549011,0.00924683,-0.0330811,-0.0656433,-0.086792,-0.0976562,-0.0996094,-0.0888672,-0.0630188,-0.0263062,0.0110779,0.0377808,0.0498657,0.0497437,0.0461731,0.0422668,0.037262,0.0267029,0.015564,0.00772095,0.00469971,0.00799561,0.0123596,0.0109253,-0.000671387,-0.0222168,-0.0523376,-0.0879211,-0.127502,-0.169464,-0.212158,-0.251282,-0.284973,-0.309723,-0.3255,-0.3255,-0.307465,-0.276245,-0.232605,-0.190063,-0.147461,-0.108246,-0.0686035,-0.028595,0.00650024,0.0317993,0.0453796,0.0552979,0.0721436,0.101074,0.137665,0.173706,0.206635,0.237793,0.269257,0.297119,0.31189,0.30603,0.275696,0.229523,0.177307,0.131744,0.0957642,0.0706177,0.0532227,0.0425415,0.0397949,0.0412903,0.0487366,0.0534973,0.0495911,0.0293274,-0.00146484,-0.0301208,-0.0477905,-0.0527649,-0.0493164,-0.0452271,-0.0393372,-0.0293274,-0.0118713,0.00939941,0.0275879,0.0348206,0.0313416,0.0259094,0.024231,0.028717,0.0349121,0.0366516,0.0353699,0.0303955,0.0272522,0.0259705,0.0214844,0.00631714,-0.021759,-0.0597229,-0.100952,-0.142822,-0.181671,-0.22113,-0.259064,-0.294891,-0.321014,-0.336639,-0.334778,-0.315765,-0.281891,-0.239136,-0.19397,-0.150391,-0.112335,-0.0794067,-0.0502625,-0.028656,-0.0148926,-0.00726318,-0.000213623,0.0185242,0.0549622,0.104767,0.15979,0.208984,0.251007,0.287842,0.313477,0.321198,0.305786,0.266388,0.214233,0.161743,0.118988,0.0908203,0.0807495,0.0813293,0.0907288,0.100067,0.105042,0.105438,0.0979919,0.0819397,0.0526123,0.0119324,-0.0299377,-0.0602722,-0.070282,-0.0645752,-0.0556946,-0.0479736,-0.0411987,-0.0291138,-0.0104065,0.0071106,0.0155029,0.0143738,0.012146,0.0148926,0.0274353,0.0436096,0.0560303,0.0605469,0.0585327,0.0536804,0.0483093,0.0391235,0.0235596,-0.000335693,-0.0310669,-0.0666504,-0.103699,-0.142273,-0.182831,-0.226318,-0.275635,-0.324371,-0.366974,-0.388519,-0.382538,-0.35141,-0.30188,-0.245026,-0.186768,-0.132751,-0.0808105,-0.0350342,-0.00390625,0.00665283,0.00180054,-0.00726318,-0.00100708,0.0264282,0.0754395,0.134888,0.198395,0.261139,0.318115,0.360992,0.378662,0.362,0.31073,0.236511,0.158844,0.0898743,0.0432739,0.0200806,0.0181885,0.0314636,0.0531616,0.0777893,0.100464,0.109741,0.10202,0.0739746,0.0313416,-0.012207,-0.0463867,-0.0637512,-0.0654907,-0.0578613,-0.0448303,-0.0283203,-0.00582886,0.0171814,0.0349731,0.0418091,0.0391846,0.0313416,0.0249023,0.0218201,0.020752,0.0201416,0.0209351,0.0209351,0.0211487,0.021759,0.0198059,0.0112,-0.00430298,-0.0299377,-0.062561,-0.100464,-0.141418,-0.183563,-0.226654,-0.270142,-0.311462,-0.343231,-0.354767,-0.340393,-0.302094,-0.24939,-0.194977,-0.146973,-0.104828,-0.0680542,-0.0344238,-0.0148926,-0.0155029,-0.0285339,-0.0400696,-0.0279236,0.0125427,0.0733032,0.138,0.201202,0.263092,0.320465,0.364166,0.379456,0.359741,0.302277,0.227997,0.15564,0.0967102,0.0568542,0.0371704,0.0354919,0.0479126,0.065918,0.0861816,0.100067,0.101288,0.0840149,0.0455627,-0.00476074,-0.0499878,-0.0789185,-0.0881348,-0.0832825,-0.0714111,-0.0574646,-0.0387268,-0.0125427,0.0142212,0.0324707,0.0359192,0.0296631,0.0226135,0.0220032,0.0268555,0.0322876,0.0366516,0.0392761,0.0391235,0.0366516,0.0332336,0.0235596,0.00537109,-0.0264282,-0.0643616,-0.105377,-0.146362,-0.184967,-0.221283,-0.259064,-0.295227,-0.330078,-0.346252,-0.337921,-0.30484,-0.259521,-0.211609,-0.168793,-0.126434,-0.0810852,-0.0359802,-0.000946045,0.0118103,0.00509644,-0.003479,0.0038147,0.0359192,0.0838928,0.133362,0.183685,0.234711,0.289948,0.338531,0.368378,0.363342,0.321136,0.256439,0.189941,0.132294,0.089386,0.057251,0.0380554,0.0318909,0.0381165,0.0519409,0.0678406,0.0776367,0.0714722,0.0477905,0.0114136,-0.0212708,-0.0435486,-0.0534973,-0.0558472,-0.0567017,-0.0586548,-0.053772,-0.0386047,-0.0169678,0.000549316,0.00524902,0.00308228,0.00314331,0.0108032,0.0256348,0.0344849,0.0369263,0.0311279,0.0200806,0.00698853,-0.00524902,-0.0194702,-0.040741,-0.0677795,-0.0995178,-0.12912,-0.157104,-0.185181,-0.213226,-0.245697,-0.282745,-0.316498,-0.332214,-0.318176,-0.278595,-0.230133,-0.184296,-0.145447,-0.105164,-0.0597229,-0.0135498,0.0144958,0.0148315,-0.00558472,-0.019928,-0.00738525,0.0361023,0.0926208,0.148315,0.199402,0.254486,0.311462,0.36026,0.383087,0.365784,0.312134,0.242615,0.179871,0.131012,0.1008,0.082489,0.0757751,0.0787964,0.0881958,0.101288,0.112091,0.109741,0.0861206,0.0388489,-0.016449,-0.0608826,-0.0843506,-0.0879822,-0.081604,-0.073822,-0.0681763,-0.0545044,-0.0298767,-0.00201416,0.0148315,0.0112,-0.00296021,-0.012207,-0.0100708,0.00106812,0.0104065,0.0134888,0.0123596,0.00799561,0.00509644,0.00201416,-0.00811768,-0.0314026,-0.069458,-0.11377,-0.158051,-0.198456,-0.237244,-0.274506,-0.31369,-0.352142,-0.375092,-0.36792,-0.326447,-0.264893,-0.205902,-0.159729,-0.122894,-0.0842896,-0.0404663,-0.00515747,0.00448608,-0.0123596,-0.0334778,-0.029541,0.0110168,0.0763855,0.146454,0.210205,0.271881,0.333557,0.388062,0.419067,0.411346,0.361938,0.287384,0.213226,0.154907,0.118469,0.102753,0.0999451,0.105713,0.116119,0.126587,0.132202,0.12738,0.104553,0.058197,-0.00256348,-0.0564575,-0.0864563,-0.0898132,-0.0745544,-0.0552368,-0.0405273,-0.0292664,-0.0124207,0.00793457,0.017395,0.0100708,-0.0110779,-0.0297241,-0.0344849,-0.0228271,-0.00637817,0.0067749,0.0152893,0.0171204,0.012146,0.00369263,-0.0138855,-0.0418091,-0.081543,-0.129517,-0.177521,-0.221802,-0.258179,-0.290802,-0.325226,-0.361755,-0.390594,-0.392487,-0.360596,-0.302155,-0.238464,-0.182617,-0.133545,-0.0879211,-0.0405273,-0.00268555,0.00805664,-0.00979614,-0.0404053,-0.0570374,-0.0404053,0.00839233,0.0745544,0.146698,0.223297,0.301331,0.372742,0.420532,0.432159,0.397919,0.328735,0.247864,0.177032,0.127502,0.102539,0.100067,0.11142,0.133759,0.159851,0.184418,0.195557,0.184509,0.143616,0.0785828,0.013031,-0.0359192,-0.061676,-0.0671692,-0.0610046,-0.0516663,-0.039856,-0.0202637,0.00576782,0.0245667,0.0272522,0.012085,-0.00637817,-0.0167847,-0.0147705,-0.00643921,-0.00112915,-0.000335693,-0.00631714,-0.0147095,-0.0239563,-0.0349731,-0.058136,-0.0942993,-0.137787,-0.183075,-0.224487,-0.26236,-0.296387,-0.334564,-0.373016,-0.400482,-0.401215,-0.368378,-0.312012,-0.253021,-0.200531,-0.15329,-0.104767,-0.0554504,-0.0184021,-0.00985718,-0.0312805,-0.0614624,-0.0709534,-0.0443726,0.0114746,0.0796509,0.149811,0.223358,0.300751,0.367859,0.407532,0.406189,0.358337,0.281281,0.201019,0.138,0.0993347,0.0848999,0.0916748,0.113678,0.144012,0.175781,0.19986,0.209991,0.193207,0.146179,0.0779114,0.0136108,-0.0283813,-0.0406799,-0.03302,-0.0179138,-0.000732422,0.0167236,0.0422668,0.0711975,0.0883179,0.0822144,0.0575867,0.0304565,0.0140991,0.0128174,0.0185242,0.0184631,0.0128784,0.00222778,-0.0104065,-0.0234375,-0.0411987,-0.0710144,-0.115356,-0.168579,-0.221069,-0.267975,-0.309601,-0.348053,-0.391144,-0.433167,-0.457245,-0.44577,-0.395569,-0.324158,-0.251892,-0.186523,-0.125916,-0.0656433,-0.00979614,0.0228271,0.0187988,-0.0141602,-0.0503235,-0.0639648,-0.0385132,0.0128784,0.0789795,0.152496,0.231018,0.310608,0.377045,0.410797,0.400543,0.341217,0.253235,0.163147,0.0933533,0.0474548,0.0292664,0.0328979,0.0561829,0.0930176,0.135376,0.172028,0.190887,0.180542,0.140686,0.0854492,0.0335693,0.00167847,-0.00939941,-0.00570679,0.00436401,0.0152893,0.0305481,0.053894,0.0805969,0.0964355,0.094635,0.0787354,0.0649109,0.0585327,0.0628967,0.0662537,0.0628052,0.0506592,0.0293884,0.00564575,-0.0169678,-0.0434875,-0.0795288,-0.125641,-0.175171,-0.223083,-0.266907,-0.3078,-0.349854,-0.39624,-0.43811,-0.45578,-0.436188,-0.383972,-0.319122,-0.256927,-0.199524,-0.13974,-0.0779724,-0.0272522,-0.00524902,-0.0191956,-0.0523376,-0.0762329,-0.0658264,-0.0216064,0.0432129,0.113556,0.191681,0.275574,0.357727,0.415894,0.431,0.393494,0.312683,0.215973,0.128662,0.0673218,0.0326233,0.0200806,0.0292664,0.0579224,0.0996704,0.144897,0.174438,0.1763,0.145966,0.0890503,0.0293274,-0.0152283,-0.0361023,-0.038269,-0.028717,-0.0123596,0.0109253,0.0434265,0.0789185,0.108917,0.119049,0.108337,0.0881958,0.0740356,0.0708008,0.0729675,0.0719604,0.0631409,0.0499878,0.0317993,0.012085,-0.0108643,-0.0425415,-0.0879211,-0.144836,-0.202271,-0.254242,-0.297302,-0.339661,-0.384644,-0.426849,-0.451935,-0.440125,-0.391541,-0.323425,-0.256592,-0.201874,-0.147919,-0.0885315,-0.0299377,0.00222778,-0.00592041,-0.0390015,-0.0697327,-0.0705261,-0.037262,0.0192566,0.0853577,0.157257,0.239258,0.324646,0.393341,0.421936,0.399658,0.333496,0.242676,0.151825,0.0770569,0.0283813,0.00408936,0.00100708,0.0178528,0.0532837,0.100006,0.141754,0.161682,0.151001,0.111603,0.0606079,0.0142822,-0.0115967,-0.0184021,-0.012085,-0.00302124,0.0111389,0.0342407,0.065918,0.098938,0.117981,0.118256,0.105713,0.0941467,0.0920105,0.0969238,0.0984497,0.0879211,0.065155,0.0367737,0.00665283,-0.0256958,-0.0644226,-0.110992,-0.164703,-0.220062,-0.268066,-0.307465,-0.340393,-0.375488,-0.411133,-0.434509,-0.429199,-0.392487,-0.333221,-0.271484,-0.215027,-0.160614,-0.104095,-0.0456238,-0.00558472,-0.000335693,-0.0230103,-0.0505981,-0.0545654,-0.0269165,0.0214844,0.0830078,0.151062,0.22818,0.308319,0.376373,0.409332,0.396027,0.338196,0.253021,0.165436,0.0914917,0.0397949,0.0105896,0.00341797,0.0174561,0.0511475,0.0977783,0.14328,0.165314,0.157379,0.117859,0.066925,0.020874,-0.00924683,-0.0234985,-0.0232849,-0.0142212,0.00570679,0.0357666,0.0740356,0.11026,0.131744,0.133209,0.120941,0.106384,0.0965881,0.091156,0.0841064,0.0704651,0.0516663,0.0283813,0.00497437,-0.0215454,-0.0540161,-0.0969849,-0.148132,-0.202545,-0.256317,-0.304504,-0.348053,-0.389862,-0.427704,-0.44986,-0.442871,-0.402344,-0.339539,-0.273499,-0.213287,-0.15686,-0.0979309,-0.0424805,-0.00610352,-0.00576782,-0.0312195,-0.0606689,-0.0657043,-0.0419312,0.00280762,0.0618896,0.129852,0.208862,0.291931,0.363617,0.401886,0.393768,0.340942,0.26001,0.17215,0.0958252,0.0391235,0.00665283,-0.00436401,0.0062561,0.0356445,0.0788574,0.126099,0.153564,0.151337,0.119812,0.0730286,0.0310669,0.00396729,-0.00631714,-0.00408936,0.00671387,0.0256348,0.0565186,0.0963745,0.135986,0.160004,0.163971,0.154694,0.141815,0.131409,0.126251,0.118134,0.106506,0.085907,0.0606689,0.0309448,-0.00357056,-0.0478516,-0.103882,-0.171143,-0.24295,-0.310333,-0.365967,-0.409393,-0.443146,-0.469116,-0.474701,-0.45108,-0.392426,-0.316254,-0.244171,-0.185699,-0.137512,-0.093811,-0.0514832,-0.0271912,-0.0299377,-0.0547791,-0.0764465,-0.0715332,-0.0326233,0.025238,0.0934143,0.163757,0.237061,0.307648,0.359253,0.375092,0.348114,0.282074,0.196838,0.111816,0.0431519,-0.00256348,-0.0245056,-0.0231628,0.00100708,0.0406189,0.0914001,0.138,0.165497,0.164093,0.133362,0.0890503,0.0464478,0.016571,0.000396729,-0.00247192,0.003479,0.0225525,0.0545654,0.0966492,0.14093,0.171265,0.183167,0.178589,0.167847,0.158112,0.146301,0.128937,0.104645,0.0775757,0.0496521,0.0238953,-0.00436401,-0.0406189,-0.0871277,-0.144958,-0.206787,-0.268921,-0.327301,-0.379456,-0.428864,-0.462555,-0.472015,-0.446442,-0.386993,-0.311554,-0.239136,-0.178314,-0.127716,-0.077301,-0.0367126,-0.020752,-0.0355835,-0.0673218,-0.0880432,-0.0765686,-0.0346985,0.024231,0.0898743,0.159851,0.231689,0.299927,0.343903,0.34906,0.309113,0.236908,0.153687,0.0777283,0.0198059,-0.0178528,-0.0353699,-0.0353088,-0.0150452,0.0191345,0.0646362,0.10321,0.122284,0.115906,0.0908203,0.0613403,0.0400696,0.0282593,0.0259705,0.0281067,0.0346985,0.0508728,0.0786438,0.11496,0.15033,0.173218,0.181488,0.185699,0.185699,0.187927,0.18161,0.164429,0.135376,0.0996704,0.0635681,0.0279846,-0.00872803,-0.0508118,-0.101959,-0.158112,-0.216187,-0.273895,-0.328308,-0.380402,-0.42926,-0.466644,-0.478119,-0.449738,-0.384369,-0.301208,-0.220337,-0.147919,-0.0836792,-0.0241089,0.0167236,0.0248413,-0.0032959,-0.0489197,-0.0782471,-0.0733643,-0.0337524,0.0244446,0.0950928,0.17276,0.255707,0.331482,0.372742,0.368591,0.314423,0.22644,0.126587,0.0356445,-0.0340881,-0.0783081,-0.098053,-0.091217,-0.0595398,-0.0118713,0.0440979,0.0885925,0.109802,0.103546,0.0784607,0.0462341,0.0204163,0.00643921,0.00375366,0.00717163,0.0184021,0.0393982,0.0709534,0.109528,0.145508,0.170074,0.180481,0.184174,0.188599,0.190674,0.187256,0.170807,0.142883,0.106445,0.0668335,0.0255127,-0.0179749,-0.0661011,-0.118866,-0.174774,-0.229248,-0.281006,-0.327576,-0.37262,-0.412872,-0.437531,-0.434906,-0.398132,-0.335449,-0.263428,-0.194489,-0.131073,-0.0707397,-0.0154419,0.0200806,0.0198059,-0.00900269,-0.0448914,-0.0589905,-0.040802,0.000732422,0.0553589,0.120819,0.195435,0.27536,0.342682,0.372284,0.355377,0.292938,0.206238,0.114014,0.0332336,-0.0306091,-0.0720825,-0.0908203,-0.0834961,-0.0552979,-0.0085144,0.0406799,0.0755615,0.0851135,0.0729675,0.0463867,0.0231628,0.00543213,-0.00268555,-0.0065918,-0.00430298,0.00616455,0.028595,0.0620117,0.0988464,0.129608,0.147583,0.159119,0.169678,0.180603,0.187195,0.181335,0.163208,0.133759,0.100403,0.0638123,0.0209351,-0.0266418,-0.0801392,-0.136841,-0.193634,-0.246429,-0.296112,-0.339874,-0.381531,-0.4151,-0.432159,-0.417999,-0.371552,-0.305573,-0.236176,-0.171143,-0.110321,-0.0505981,-0.000457764,0.0255127,0.0194702,-0.00650024,-0.0309448,-0.0308838,-0.0038147,0.0413513,0.0977173,0.162964,0.234619,0.302826,0.352081,0.364685,0.333954,0.265167,0.176239,0.0885925,0.0150452,-0.0366516,-0.0692749,-0.0814819,-0.0726929,-0.0447083,-0.0012207,0.0406189,0.0649719,0.0646362,0.0466309,0.0234985,0.00778198,0.000396729,-0.000671387,0.00189209,0.00979614,0.0271912,0.0551147,0.0916748,0.126587,0.151886,0.163757,0.168335,0.17041,0.172089,0.168396,0.151672,0.124634,0.0873108,0.0481262,0.00958252,-0.0306091,-0.0724792,-0.121399,-0.173279,-0.226898,-0.277435,-0.323212,-0.365448,-0.405518,-0.434082,-0.437317,-0.408844,-0.347717,-0.272278,-0.198181,-0.127319,-0.061554,0.0012207,0.0459595,0.0579834,0.0386658,0.00280762,-0.0183105,-0.0122681,0.0177307,0.0610046,0.115845,0.180542,0.253967,0.321289,0.359192,0.353882,0.303833,0.225494,0.140869,0.0638123,0.00134277,-0.0426025,-0.0671692,-0.0687256,-0.048645,-0.0128784,0.0288696,0.061554,0.069519,0.0560303,0.0296021,0.00491333,-0.00817871,-0.0132141,-0.0125427,-0.0085144,0.0012207,0.0223389,0.0561829,0.0950928,0.128845,0.146637,0.156647,0.165375,0.178925,0.188446,0.188263,0.171143,0.142609,0.107117,0.0676575,0.0263062,-0.0228882,-0.079071,-0.138397,-0.197998,-0.253418,-0.30545,-0.353302,-0.397034,-0.433289,-0.454712,-0.448242,-0.406372,-0.338196,-0.260803,-0.187042,-0.119202,-0.0556335,0.000793457,0.0343628,0.0389404,0.0149536,-0.0158386,-0.0289917,-0.013031,0.0299377,0.0890503,0.156647,0.228851,0.302551,0.359741,0.383881,0.363556,0.300598,0.208466,0.110931,0.0279236,-0.0304565,-0.0647583,-0.0759583,-0.0639038,-0.032135,0.0131531,0.0608826,0.0909424,0.0968323,0.0770569,0.0422668,0.0083313,-0.0153809,-0.0269775,-0.0293884,-0.0235596,-0.0100708,0.0147705,0.0506592,0.0920105,0.129272,0.153229,0.165649,0.173431,0.179718,0.183289,0.177979,0.159668,0.129608,0.0910034,0.0490723,0.00543213,-0.0401917,-0.089386,-0.144287,-0.200012,-0.253906,-0.304291,-0.352142,-0.397522,-0.437103,-0.456512,-0.447571,-0.404419,-0.33725,-0.261353,-0.18576,-0.112549,-0.0434875,0.0138245,0.0437622,0.0406189,0.0153809,-0.0123596,-0.0194702,-0.00161743,0.0359802,0.0908813,0.159332,0.239746,0.318268,0.377777,0.395508,0.365906,0.294617,0.200531,0.10321,0.0175171,-0.0459595,-0.0840149,-0.0940857,-0.0791931,-0.0423584,0.00952148,0.0605469,0.0914001,0.094696,0.0723572,0.0392761,0.00805664,-0.0105896,-0.0198669,-0.0211487,-0.0167847,-0.00112915,0.0269775,0.0672607,0.108063,0.139404,0.156433,0.166168,0.174774,0.183411,0.187988,0.182739,0.162628,0.131073,0.0913391,0.0477295,0.000549316,-0.0515442,-0.109863,-0.171082,-0.229523,-0.282349,-0.327118,-0.366577,-0.403564,-0.434418,-0.449127,-0.43692,-0.39209,-0.325958,-0.255707,-0.186707,-0.11972,-0.0536804,0.00228882,0.0381775,0.0425415,0.0238953,0.00106812,-0.00543213,0.0134277,0.049469,0.0993347,0.161469,0.231598,0.304169,0.358917,0.379272,0.356781,0.292084,0.203705,0.112152,0.0319519,-0.0297241,-0.0673828,-0.0805969,-0.0677185,-0.0335693,0.0147705,0.0631409,0.0947571,0.101746,0.0840149,0.0536194,0.0236206,0.000732422,-0.0123596,-0.0184021,-0.0181274,-0.00765991,0.0169067,0.052948,0.0914917,0.122223,0.14035,0.151489,0.160736,0.168579,0.172607,0.165985,0.148376,0.12027,0.0865784,0.0487976,0.00604248,-0.0411987,-0.0953064,-0.153503,-0.211945,-0.267975,-0.318939,-0.363892,-0.405029,-0.439209,-0.454224,-0.440125,-0.393158,-0.3237,-0.249054,-0.179047,-0.112823,-0.0490723,0.0050354,0.0385132,0.0381775,0.012085,-0.0189819,-0.028717,-0.00778198,0.0336914,0.0889893,0.152222,0.22522,0.301483,0.362488,0.387726,0.365509,0.299744,0.209259,0.116852,0.0353699,-0.0279846,-0.0663757,-0.0771179,-0.0610657,-0.0228882,0.0264282,0.0767212,0.110657,0.116577,0.0969849,0.0624084,0.0267639,0.00140381,-0.0132751,-0.0176392,-0.0149536,-0.00262451,0.0218811,0.0580444,0.0983276,0.129181,0.145905,0.151611,0.154358,0.158112,0.160278,0.157196,0.143219,0.119324,0.0876465,0.052887,0.0149536,-0.0292664,-0.0836182,-0.144958,-0.207794,-0.267517,-0.320068,-0.365112,-0.406097,-0.439606,-0.456299,-0.444305,-0.399597,-0.332001,-0.259247,-0.189606,-0.124237,-0.0618896,-0.00811768,0.0261841,0.0299377,0.0102539,-0.0170593,-0.0299988,-0.0167236,0.0186462,0.068512,0.131287,0.202484,0.279114,0.34201,0.375244,0.366638,0.316437,0.237579,0.149048,0.0637512,-0.00369263,-0.0485229,-0.0676575,-0.0609436,-0.0302124,0.0142212,0.0648193,0.101532,0.117188,0.106903,0.0777893,0.0435486,0.0167236,-0.00201416,-0.013031,-0.0167236,-0.0115356,0.00857544,0.0421448,0.0820007,0.116119,0.137238,0.147369,0.153015,0.160797,0.166443,0.163818,0.151672,0.129517,0.103485,0.0724792,0.0381775,-0.00274658,-0.0534363,-0.110199,-0.172485,-0.232544,-0.289276,-0.34021,-0.386566,-0.429596,-0.459717,-0.465576,-0.438538,-0.380188,-0.307251,-0.232697,-0.163086,-0.0971069,-0.0367126,0.0118713,0.0347595,0.0264282,-0.0017395,-0.0281982,-0.0306091,-0.00509644,0.0391846,0.0961609,0.16214,0.235565,0.308655,0.36322,0.380005,0.351074,0.284821,0.197571,0.109924,0.0330811,-0.0249634,-0.0598755,-0.0667725,-0.049469,-0.0123596,0.0365906,0.0822144,0.112762,0.118134,0.0988464,0.0673218,0.0344238,0.0104675,-0.00643921,-0.0139465,-0.0144348,-0.00268555,0.0229492,0.0575867,0.0949097,0.123016,0.140198,0.146301,0.150208,0.154175,0.155914,0.149536,0.133423,0.109314,0.0809326,0.049469,0.0161743,-0.0238342,-0.0732117,-0.131409,-0.192352,-0.250397,-0.302338,-0.34906,-0.393494,-0.431213,-0.453705,-0.44632,-0.407715,-0.341949,-0.269073,-0.200256,-0.13678,-0.0744934,-0.0186462,0.0203247,0.0267639,0.0083313,-0.021759,-0.0393982,-0.0287781,0.00643921,0.056366,0.117584,0.186371,0.260925,0.327301,0.368805,0.369385,0.327454,0.253906,0.165222,0.0821533,0.0133667,-0.0334778,-0.0583801,-0.0588684,-0.0361023,0.00524902,0.0558472,0.0961609,0.114838,0.108185,0.0810852,0.0485229,0.0198059,-0.0012207,-0.013092,-0.0182495,-0.0146179,0.00570679,0.037384,0.0762329,0.11087,0.133362,0.143677,0.14859,0.151947,0.157318,0.154846,0.14502,0.125824,0.10202,0.0748291,0.0444336,0.0083313,-0.0339661,-0.0865784,-0.144623,-0.201874,-0.253693,-0.300323,-0.342072,-0.383545,-0.420685,-0.44281,-0.437775,-0.40274,-0.345978,-0.283356,-0.222015,-0.159058,-0.094635,-0.0346375,0.00839233,0.024292,0.0143738,-0.00335693,-0.0135498,-0.00296021,0.0290527,0.0720825,0.129059,0.191956,0.259399,0.322205,0.365509,0.373749,0.340546,0.274017,0.188385,0.104889,0.0338135,-0.0181274,-0.0475769,-0.053833,-0.0378418,-0.00408936,0.0415344,0.081604,0.105042,0.103149,0.0794067,0.0452271,0.012207,-0.0105896,-0.0216675,-0.025177,-0.0214233,-0.00592041,0.0230103,0.0609436,0.098999,0.123352,0.135315,0.136841,0.137329,0.138733,0.140137,0.136658,0.124847,0.102539,0.0757141,0.0473022,0.0161743,-0.0231018,-0.0743713,-0.134155,-0.194824,-0.249786,-0.293549,-0.330414,-0.365112,-0.397308,-0.42041,-0.419067,-0.391083,-0.341675,-0.284363,-0.226776,-0.171021,-0.117249,-0.0669861,-0.0247803,0.000549316,0.0015564,-0.0115967,-0.0205383,-0.0122681,0.0234985,0.0722046,0.132202,0.193878,0.25531,0.314148,0.358795,0.375031,0.35141,0.289001,0.204224,0.119873,0.0479736,-0.00201416,-0.0302734,-0.0344238,-0.0204773,0.0107422,0.0516663,0.0934143,0.119049,0.119598,0.0923462,0.0501404,0.00933838,-0.0189209,-0.0313416,-0.0326233,-0.0275879,-0.0128784,0.0147705,0.0526123,0.0918884,0.119812,0.129669,0.127655,0.121826,0.119202,0.118652,0.116364,0.106506,0.0880432,0.0646973,0.040802,0.0167847,-0.0159607,-0.0579834,-0.110931,-0.164764,-0.213501,-0.254364,-0.286316,-0.319794,-0.354828,-0.388184,-0.40564,-0.400482,-0.372284,-0.326843,-0.276855,-0.227112,-0.173492,-0.118713,-0.061554,-0.0148315,0.00793457,0.00616455,-0.00323486,-0.00146484,0.0198669,0.0592651,0.103821,0.153839,0.207977,0.268799,0.329742,0.371002,0.374847,0.338928,0.272888,0.194214,0.119598,0.0583191,0.0153809,-0.0071106,-0.0110168,0.00112915,0.0256958,0.0593872,0.0907288,0.100861,0.0869141,0.0503235,0.0111389,-0.0160522,-0.025177,-0.0203247,-0.0151062,-0.00799561,0.0071106,0.0367737,0.0718079,0.100006,0.108795,0.102081,0.0930176,0.0917969,0.100342,0.109589,0.110321,0.0995178,0.0822144,0.0619507,0.0397339,0.0112,-0.0270996,-0.0757751,-0.128845,-0.17746,-0.217712,-0.24826,-0.277435,-0.308868,-0.343292,-0.376709,-0.398651,-0.399139,-0.377716,-0.338989,-0.29483,-0.246704,-0.193695,-0.13504,-0.0711365,-0.0177307,0.0134888,0.0209351,0.0172424,0.0189209,0.0381165,0.0729675,0.113007,0.161011,0.210815,0.269745,0.325958,0.36731,0.377106,0.349335,0.290192,0.216705,0.142761,0.0812073,0.0343018,0.00698853,-0.00357056,0.00228882,0.0194092,0.0467834,0.0706787,0.0821533,0.0740967,0.0465698,0.0157166,-0.0104675,-0.020752,-0.0180664,-0.0104065,-0.00274658,0.00973511,0.0299377,0.0570374,0.0819397,0.0970459,0.100128,0.0985107,0.0975952,0.101135,0.10437,0.10202,0.0905457,0.0683899,0.0428162,0.0155029,-0.0104675,-0.0369263,-0.0672607,-0.10202,-0.140533,-0.176697,-0.210724,-0.240936,-0.275574,-0.317108,-0.361938,-0.401672,-0.421417,-0.41571,-0.387177,-0.339264,-0.285034,-0.224091,-0.160065,-0.0932312,-0.0293884,0.0197449,0.0428162,0.0452271,0.0410156,0.0449524,0.0666504,0.100952,0.142822,0.187866,0.233826,0.282745,0.329315,0.359589,0.36087,0.328125,0.27121,0.204102,0.140533,0.0858459,0.0485229,0.0222168,0.00537109,0,0.0085144,0.0304565,0.0534363,0.065918,0.0620117,0.04422,0.0238953,0.0117493,0.0105896,0.0126038,0.0101318,0.00180054,0.000793457,0.0116882,0.03302,0.0547791,0.0649109,0.0697327,0.0723572,0.0786438,0.0879211,0.0913391,0.0835571,0.0646362,0.0411987,0.0194092,0.000610352,-0.0177307,-0.0383301,-0.0636902,-0.0934753,-0.125763,-0.160461,-0.195831,-0.233826,-0.278259,-0.327301,-0.374908,-0.414215,-0.430145,-0.418121,-0.381866,-0.330078,-0.273834,-0.213745,-0.14798,-0.0795288,-0.0174561,0.024292,0.0397949,0.0393982,0.0401306,0.0526123,0.0820923,0.114349,0.148041,0.189117,0.238403,0.296906,0.346649,0.374969,0.371552,0.34021,0.290955,0.230804,0.16745,0.106323,0.053894,0.0141602,-0.00811768,-0.0125427,-0.00323486,0.0194092,0.0434265,0.0592041,0.0632324,0.0526123,0.036499,0.0216064,0.00912476,-0.00088501,-0.0126953,-0.024292,-0.0257568,-0.0149536,0.00671387,0.0297852,0.0473938,0.058136,0.0657654,0.0737,0.0822754,0.085022,0.0799866,0.069458,0.0540161,0.0376587,0.0231628,0.0104065,-0.00543213,-0.0297241,-0.065155,-0.106232,-0.151672,-0.197235,-0.242828,-0.290619,-0.337524,-0.38028,-0.414307,-0.429535,-0.419861,-0.387848,-0.338806,-0.286316,-0.232941,-0.180481,-0.122894,-0.0603943,-0.00448608,0.029541,0.040863,0.045166,0.0587769,0.0922852,0.136169,0.173615,0.207794,0.245636,0.292877,0.346771,0.387177,0.39798,0.373016,0.322357,0.259338,0.191864,0.12558,0.0657043,0.017395,-0.0148926,-0.0269165,-0.020874,0.00308228,0.0343628,0.057312,0.065094,0.052002,0.0296021,0.00872803,-0.00671387,-0.0179749,-0.0297852,-0.0429382,-0.0487366,-0.0374451,-0.0100708,0.0220947,0.0440979,0.0524292,0.0567017,0.0649109,0.0785217,0.0910645,0.094574,0.0864563,0.0747681,0.0629578,0.0525513,0.0400085,0.019989,-0.0118103,-0.0536804,-0.100739,-0.148315,-0.193298,-0.234222,-0.272888,-0.309387,-0.342682,-0.368134,-0.385376,-0.391998,-0.383209,-0.363281,-0.330872,-0.291809,-0.248047,-0.197662,-0.139404,-0.073761,-0.0137634,0.0353088,0.0677185,0.0919495,0.118591,0.150391,0.185089,0.21167,0.235504,0.263702,0.298462,0.336121,0.363098,0.369324,0.346375,0.304291,0.247437,0.186249,0.125244,0.0691223,0.0245667,-0.00476074,-0.0182495,-0.0171204,-0.00262451,0.020813,0.0397339,0.0456238,0.0340881,0.012146,-0.00991821,-0.0269165,-0.036377,-0.0426941,-0.0505981,-0.0556946,-0.0468445,-0.0223389,0.0110168,0.0402832,0.0583801,0.0690613,0.0808105,0.0932312,0.106781,0.111664,0.10376,0.0852966,0.0624695,0.0404663,0.0218201,-0.000213623,-0.0291138,-0.0634766,-0.100677,-0.13858,-0.173889,-0.206848,-0.236725,-0.271484,-0.309113,-0.345154,-0.377045,-0.400391,-0.408051,-0.399261,-0.37088,-0.3284,-0.279663,-0.221619,-0.15155,-0.0718079,0.00436401,0.0677795,0.106567,0.127655,0.142487,0.161682,0.187195,0.206238,0.220734,0.236511,0.264893,0.307037,0.347931,0.372833,0.367584,0.335785,0.283813,0.222748,0.159454,0.0963135,0.0368347,-0.0144958,-0.0447083,-0.0554504,-0.0458984,-0.0246887,-0.00323486,0.0100708,0.00979614,-0.0012207,-0.0167236,-0.0297241,-0.0380554,-0.0434265,-0.0473022,-0.0491333,-0.040863,-0.0187378,0.0147095,0.048645,0.0733032,0.0869141,0.0950928,0.104218,0.114441,0.11792,0.109253,0.0899963,0.0673828,0.0465088,0.0306702,0.0142822,-0.0067749,-0.0339661,-0.0667114,-0.102142,-0.139862,-0.176117,-0.213959,-0.255585,-0.297638,-0.338379,-0.372284,-0.39798,-0.411957,-0.409332,-0.390808,-0.353882,-0.30368,-0.245758,-0.181061,-0.110535,-0.0391846,0.0297852,0.0863037,0.122406,0.142151,0.155853,0.170868,0.191864,0.210815,0.227783,0.247589,0.277191,0.314575,0.349396,0.367188,0.358398,0.3237,0.269653,0.207062,0.141083,0.0714722,0.00576782,-0.0493164,-0.0827637,-0.0949707,-0.0853577,-0.0624084,-0.0340881,-0.0120239,-6.10352e-05,0.0032959,0.00134277,-0.00369263,-0.0115356,-0.0176392,-0.0246277,-0.0282593,-0.0253601,-0.00878906,0.0188599,0.0483093,0.0716248,0.0857849,0.0975952,0.109192,0.116577,0.11853,0.111877,0.0942383,0.0699463,0.0462341,0.0263062,0.00857544,-0.0142822,-0.0426025,-0.0747681,-0.109467,-0.147461,-0.182495,-0.217377,-0.252075,-0.288605,-0.321075,-0.3414,-0.351685,-0.357849,-0.358917,-0.349274,-0.325714,-0.28717,-0.244293,-0.194305,-0.140869,-0.0841675,-0.0211487,0.0433655,0.100281,0.140137,0.166656,0.189117,0.213165,0.233612,0.242554,0.249786,0.258667,0.274902,0.295166,0.312469,0.316254,0.297119,0.258911,0.206299,0.148254,0.0854492,0.0171814,-0.0411987,-0.0844421,-0.106506,-0.106171,-0.0863647,-0.052002,-0.017395,0.00744629,0.019928,0.0245667,0.0194702,0.00772095,-0.00738525,-0.0225525,-0.0347595,-0.0377808,-0.0268555,0.00189209,0.036377,0.0697327,0.0956421,0.117035,0.132294,0.138397,0.132965,0.117981,0.0950928,0.0665894,0.0359192,0.0100098,-0.0100708,-0.0262451,-0.0428772,-0.0598755,-0.0795898,-0.103027,-0.130859,-0.160797,-0.191345,-0.226898,-0.262085,-0.292877,-0.316315,-0.331085,-0.343292,-0.348785,-0.342346,-0.32196,-0.288849,-0.243622,-0.189606,-0.131409,-0.0697937,-0.00146484,0.0682678,0.131805,0.174286,0.197784,0.211273,0.220337,0.22818,0.228455,0.225891,0.224243,0.227325,0.239471,0.255249,0.264496,0.253906,0.222687,0.178314,0.126312,0.0708618,0.0134277,-0.0393982,-0.0795898,-0.10321,-0.108459,-0.0914917,-0.0603333,-0.0279846,-0.00463867,0.00827026,0.0132141,0.0137024,0.00991821,0.0050354,0.00280762,0.0012207,0.00558472,0.0191956,0.0435486,0.0722046,0.0954895,0.109589,0.114777,0.112549,0.104095,0.09375,0.0794067,0.0630798,0.0434875,0.0231018,0.0101318,0.00598145,0.00436401,-0.00335693,-0.0198059,-0.0430298,-0.0728149,-0.105988,-0.141541,-0.178192,-0.218384,-0.256317,-0.28302,-0.293884,-0.293427,-0.290009,-0.289124,-0.287506,-0.280457,-0.264771,-0.238312,-0.202362,-0.160614,-0.115356,-0.0622253,0.00408936,0.0752869,0.141205,0.185638,0.209198,0.21524,0.210205,0.201019,0.186859,0.170929,0.158264,0.156036,0.1698,0.197174,0.224976,0.234161,0.224304,0.194153,0.147369,0.0877991,0.0211487,-0.0420837,-0.0971069,-0.135437,-0.148376,-0.132477,-0.0934753,-0.0434265,0.0032959,0.0404053,0.0614624,0.0713501,0.0675049,0.0567017,0.0387878,0.0168457,-0.00222778,-0.00924683,0.000335693,0.0220032,0.048645,0.0727539,0.0941467,0.110748,0.122498,0.127594,0.122833,0.106567,0.0809326,0.0526733,0.0269165,0.00558472,-0.0136108,-0.0353088,-0.0564575,-0.0768433,-0.0917969,-0.108398,-0.12442,-0.144287,-0.168182,-0.189941,-0.209045,-0.222137,-0.234894,-0.247437,-0.262939,-0.275909,-0.282562,-0.275909,-0.256317,-0.222015,-0.17746,-0.127655,-0.0718689,-0.00784302,0.056366,0.113281,0.148987,0.1633,0.163879,0.156036,0.149811,0.142761,0.137726,0.138458,0.148926,0.170135,0.198059,0.223755,0.232025,0.218384,0.184357,0.133209,0.0737,0.012085,-0.0437012,-0.0888062,-0.11853,-0.127594,-0.111206,-0.0750427,-0.0293274,0.00845337,0.0333557,0.0430298,0.0426941,0.036438,0.0257568,0.0124207,-0.000793457,-0.00967407,-0.00335693,0.0211487,0.0555725,0.0900574,0.114624,0.129456,0.137054,0.140198,0.134491,0.12088,0.0967102,0.0668335,0.038269,0.0168457,0.00241089,-0.0067749,-0.0161743,-0.0271912,-0.037262,-0.0472412,-0.0586548,-0.0738831,-0.0910034,-0.114349,-0.141937,-0.170135,-0.193817,-0.212555,-0.227844,-0.240875,-0.253479,-0.264038,-0.268738,-0.262939,-0.243347,-0.212677,-0.17276,-0.129669,-0.08255,-0.0315552,0.0239563,0.0752258,0.115845,0.140137,0.147369,0.145233,0.139465,0.13382,0.128174,0.123413,0.121155,0.129669,0.147247,0.169922,0.187775,0.188782,0.17276,0.139008,0.0916138,0.037323,-0.019928,-0.072876,-0.115631,-0.14209,-0.147919,-0.12738,-0.0870361,-0.038269,0.00604248,0.0415344,0.065979,0.081604,0.086853,0.0828857,0.070282,0.053833,0.041626,0.0414124,0.0544434,0.0721436,0.0895386,0.106445,0.121002,0.133636,0.136505,0.127655,0.107178,0.0811462,0.0508118,0.0228271,0.000610352,-0.0132751,-0.0214233,-0.0265198,-0.0283203,-0.0273743,-0.0292053,-0.0368347,-0.0516052,-0.0740356,-0.102814,-0.135437,-0.163208,-0.185913,-0.201935,-0.215851,-0.224426,-0.224426,-0.221954,-0.217529,-0.211487,-0.200348,-0.182068,-0.160065,-0.13269,-0.100342,-0.061615,-0.0200806,0.0231018,0.0622864,0.0898132,0.103973,0.107239,0.10733,0.105713,0.104034,0.101135,0.104706,0.11496,0.130188,0.147705,0.159454,0.157196,0.139069,0.10321,0.0560303,0.00509644,-0.0432739,-0.0832825,-0.109467,-0.120392,-0.11377,-0.0856323,-0.0437012,0.00497437,0.0453796,0.0700073,0.0823364,0.0870361,0.0841675,0.0766296,0.0658264,0.0533447,0.046051,0.0518799,0.069458,0.093811,0.116028,0.131409,0.140259,0.143097,0.137238,0.12262,0.101349,0.0749817,0.0469666,0.0212708,0.00302124,-0.00643921,-0.00933838,-0.0107422,-0.0106812,-0.00900269,-0.0101929,-0.0151062,-0.024292,-0.0383911,-0.057251,-0.0819397,-0.106506,-0.126923,-0.144104,-0.160736,-0.177124,-0.190674,-0.203094,-0.218994,-0.235626,-0.245514,-0.24704,-0.236572,-0.213226,-0.175842,-0.130188,-0.0812073,-0.0310059,0.0209961,0.0653076,0.0912781,0.0941467,0.0811462,0.0640259,0.0489807,0.0401306,0.0424805,0.0562439,0.0762939,0.104095,0.13974,0.170532,0.181549,0.165558,0.123352,0.0658264,0.00161743,-0.0599365,-0.107391,-0.136566,-0.146637,-0.13382,-0.0944214,-0.0340881,0.0310669,0.0821533,0.113831,0.126251,0.124847,0.11496,0.102539,0.0900574,0.0753784,0.0661011,0.0706177,0.0912781,0.116516,0.134491,0.141754,0.138184,0.129059,0.113892,0.0954895,0.0767212,0.0571289,0.0400696,0.0303345,0.0312195,0.0386658,0.0446167,0.045105,0.0429382,0.0357666,0.024353,0.00939941,-0.00497437,-0.019989,-0.0399475,-0.0623474,-0.0823364,-0.0993347,-0.118866,-0.144958,-0.1763,-0.207855,-0.240417,-0.268799,-0.291016,-0.301544,-0.300537,-0.285583,-0.253357,-0.20639,-0.154297,-0.108582,-0.0630798,-0.020813,0.0153809,0.0366516,0.0411987,0.0356445,0.0292053,0.0267639,0.0316772,0.0461121,0.0656433,0.0871277,0.109985,0.136658,0.157928,0.159271,0.13974,0.10202,0.0525513,-0.00146484,-0.0527649,-0.0918884,-0.114227,-0.119385,-0.10733,-0.0719604,-0.0185242,0.0410156,0.09375,0.130066,0.148651,0.151733,0.142609,0.127838,0.109131,0.0875244,0.0663147,0.0555725,0.0627441,0.0838928,0.108856,0.132294,0.15033,0.163696,0.170746,0.169861,0.161194,0.142944,0.116241,0.0879822,0.0640869,0.048645,0.0380554,0.0326233,0.0293884,0.0324097,0.0347595,0.0368347,0.0344238,0.0258484,0.00509644,-0.0265808,-0.0647583,-0.105042,-0.144958,-0.185364,-0.222809,-0.254303,-0.276093,-0.290131,-0.296112,-0.29718,-0.29303,-0.283691,-0.267517,-0.242493,-0.21228,-0.180145,-0.147919,-0.110657,-0.0731506,-0.0380554,-0.013092,0.00335693,0.0120239,0.0172424,0.0206604,0.0259094,0.0348206,0.0491333,0.0663757,0.0885925,0.112671,0.133423,0.141418,0.132629,0.111938,0.0782471,0.0379333,-0.0038147,-0.0395203,-0.0640869,-0.0763855,-0.0728149,-0.0503235,-0.00933838,0.0388489,0.0838318,0.117462,0.139343,0.148041,0.147125,0.140411,0.129395,0.115784,0.101959,0.0963745,0.106903,0.128265,0.151825,0.170135,0.184753,0.194641,0.200409,0.196167,0.184631,0.164368,0.135315,0.102539,0.0742188,0.0534973,0.0386047,0.0262451,0.0176392,0.0157166,0.01651,0.0174561,0.0147095,0.00958252,-0.00570679,-0.0317993,-0.0679932,-0.106506,-0.144897,-0.182343,-0.219788,-0.251221,-0.275696,-0.293884,-0.306458,-0.312347,-0.314301,-0.313477,-0.310883,-0.300873,-0.278198,-0.249451,-0.218536,-0.184906,-0.14624,-0.107452,-0.069397,-0.0354309,-0.00845337,0.00991821,0.0182495,0.0270996,0.0410767,0.0620117,0.0844421,0.107574,0.130798,0.15274,0.171478,0.175171,0.162354,0.130798,0.0829468,0.028717,-0.0195923,-0.057251,-0.0808716,-0.0873108,-0.0722046,-0.0371094,0.0129395,0.0688477,0.120209,0.156708,0.176575,0.178375,0.170258,0.155701,0.142334,0.130127,0.124573,0.129852,0.148865,0.174835,0.205048,0.229065,0.239594,0.235229,0.21994,0.197723,0.171539,0.14035,0.106171,0.0723572,0.0458984,0.0307922,0.0255737,0.0221558,0.015625,0.00592041,-0.00531006,-0.0153809,-0.0254211,-0.037323,-0.0541077,-0.077301,-0.103424,-0.128601,-0.1539,-0.179382,-0.20993,-0.243347,-0.277649,-0.308441,-0.333954,-0.352295,-0.361938,-0.363007,-0.354034,-0.334106,-0.301147,-0.261017,-0.216766,-0.170807,-0.125427,-0.0851746,-0.0539551,-0.0307922,-0.0108032,0.00424194,0.0173035,0.0265198,0.0385132,0.0545044,0.0755005,0.103363,0.131012,0.155182,0.169464,0.170258,0.159851,0.138672,0.106171,0.0632324,0.0197449,-0.0198669,-0.0458374,-0.0562439,-0.0455627,-0.0184021,0.0189819,0.0643616,0.110535,0.152161,0.181061,0.195831,0.197388,0.189789,0.179932,0.170258,0.165558,0.164886,0.173431,0.186646,0.202148,0.216583,0.224243,0.223755,0.213898,0.194092,0.166168,0.133545,0.0968323,0.0620728,0.0310669,0.00643921,-0.00973511,-0.0214844,-0.0289917,-0.032959,-0.0361633,-0.0386047,-0.0437012,-0.0512695,-0.0620117,-0.0770569,-0.098114,-0.121338,-0.146118,-0.171936,-0.198578,-0.224426,-0.248199,-0.270416,-0.289062,-0.304291,-0.31369,-0.319611,-0.320068,-0.315308,-0.302612,-0.28067,-0.255096,-0.226227,-0.192627,-0.155365,-0.118256,-0.0834961,-0.0524292,-0.0256958,-0.00280762,0.0161133,0.0361023,0.0561829,0.0757141,0.0966492,0.119049,0.143097,0.16449,0.17746,0.179657,0.168518,0.145905,0.114105,0.0751648,0.0380554,0.00537109,-0.0193176,-0.0293884,-0.0234375,-0.00134277,0.0328979,0.074707,0.116913,0.152679,0.17926,0.192688,0.198334,0.195435,0.187439,0.178925,0.171143,0.168335,0.173218,0.183502,0.195496,0.203369,0.205231,0.198395,0.185181,0.165222,0.138794,0.106781,0.0716858,0.0362549,0.00491333,-0.019989,-0.037323,-0.0482483,-0.0555115,-0.057251,-0.0544434,-0.0489197,-0.0419312,-0.0360413,-0.0312195,-0.0336914,-0.0443726,-0.0628052,-0.0855713,-0.114899,-0.14859,-0.185303,-0.221344,-0.254425,-0.282288,-0.302277,-0.314697,-0.320129,-0.323883,-0.321533,-0.311127,-0.290405,-0.265289,-0.239258,-0.212158,-0.180725,-0.14859,-0.11322,-0.0805969,-0.0516663,-0.0284424,-0.00827026,0.0139465,0.040802,0.0670471,0.0930176,0.118927,0.145569,0.169861,0.187988,0.195557,0.191742,0.170593,0.138855,0.0986023,0.0552368,0.0169678,-0.0139465,-0.0337524,-0.0358276,-0.0222168,0.00531006,0.0418701,0.0852356,0.127716,0.16153,0.184631,0.194824,0.195984,0.189209,0.177582,0.167328,0.158264,0.152283,0.152496,0.159607,0.17041,0.179199,0.183502,0.178467,0.169861,0.155365,0.134827,0.109985,0.0798035,0.0483093,0.0185242,-0.00665283,-0.0238953,-0.0344238,-0.039856,-0.0387268,-0.0344238,-0.0265198,-0.0201416,-0.0143738,-0.0123596,-0.0179749,-0.0317383,-0.053894,-0.0807495,-0.110809,-0.144104,-0.176788,-0.209259,-0.238861,-0.264038,-0.283966,-0.298187,-0.309387,-0.317993,-0.323883,-0.322021,-0.311676,-0.294708,-0.27301,-0.244568,-0.211273,-0.173157,-0.134155,-0.0953064,-0.0596619,-0.0273132,-0.00100708,0.0225525,0.0450439,0.065155,0.0856934,0.106445,0.129333,0.151886,0.166504,0.173767,0.172943,0.160278,0.134308,0.101349,0.061554,0.0224915,-0.0111389,-0.036499,-0.0432129,-0.0340271,-0.012146,0.0187378,0.0565796,0.0991211,0.136505,0.166718,0.184753,0.19162,0.189056,0.179993,0.17276,0.169403,0.16925,0.170074,0.176849,0.189056,0.203949,0.215576,0.219208,0.212891,0.198395,0.172882,0.141602,0.108917,0.0737,0.038269,0.00598145,-0.0177917,-0.0301208,-0.0340881,-0.0325623,-0.0259705,-0.0171814,-0.0110168,-0.00857544,-0.00839233,-0.0128784,-0.0262451,-0.0484619,-0.0756226,-0.105499,-0.136169,-0.168243,-0.199066,-0.225159,-0.250122,-0.272217,-0.290131,-0.301422,-0.310791,-0.320618,-0.329315,-0.327118,-0.317596,-0.299988,-0.276978,-0.248718,-0.21637,-0.181671,-0.142944,-0.102417,-0.0658264,-0.0362549,-0.0135498,0.00967407,0.0334778,0.0580444,0.0763855,0.0954285,0.114441,0.132874,0.14563,0.152405,0.151398,0.138062,0.113159,0.0834961,0.050415,0.0196533,-0.00799561,-0.0252991,-0.0283203,-0.0182495,0.00408936,0.0353088,0.0753784,0.118652,0.158264,0.18988,0.210388,0.223297,0.22583,0.222687,0.219269,0.216919,0.214233,0.212402,0.214905,0.223022,0.229797,0.231689,0.224915,0.211212,0.189117,0.160675,0.126923,0.0910034,0.0536194,0.0179138,-0.0124207,-0.032135,-0.040741,-0.0411377,-0.0375061,-0.0301208,-0.0213318,-0.0150452,-0.012085,-0.0128784,-0.0180664,-0.0316162,-0.0524902,-0.0765076,-0.102814,-0.129517,-0.159058,-0.187256,-0.215912,-0.243896,-0.271423,-0.29657,-0.317047,-0.333099,-0.349731,-0.364227,-0.369049,-0.36322,-0.347046,-0.320862,-0.287994,-0.249786,-0.208801,-0.164429,-0.116302,-0.0698547,-0.0322876,-0.00543213,0.0151062,0.0338135,0.053009,0.069519,0.085968,0.0997314,0.113159,0.125427,0.138733,0.149994,0.152222,0.141357,0.120056,0.0932922,0.0657043,0.0405273,0.0195312,0.00610352,0.0065918,0.0189819,0.0440979,0.081665,0.124023,0.16684,0.202606,0.230469,0.247437,0.254364,0.252411,0.244751,0.2341,0.223236,0.211395,0.205627,0.205383,0.208191,0.210144,0.207123,0.198669,0.184509,0.163422,0.136658,0.107513,0.0764465,0.0434265,0.0134277,-0.0100098,-0.0249634,-0.0320129,-0.0353699,-0.0344238,-0.0325623,-0.0326233,-0.0343628,-0.0380554,-0.0437012,-0.0559692,-0.0753784,-0.097168,-0.123016,-0.150543,-0.179535,-0.208649,-0.234955,-0.260468,-0.284698,-0.305237,-0.321747,-0.333893,-0.342285,-0.349274,-0.351624,-0.349945,-0.342346,-0.327057,-0.298065,-0.262421,-0.22403,-0.185364,-0.143616,-0.0992737,-0.0542908,-0.0132751,0.016571,0.036377,0.049408,0.0632324,0.08255,0.102692,0.122009,0.134491,0.145172,0.158508,0.168518,0.170349,0.158051,0.134644,0.101349,0.0684509,0.041626,0.0234985,0.0183105,0.0247803,0.041687,0.0718079,0.108856,0.151001,0.1922,0.224915,0.244354,0.249115,0.2435,0.234497,0.227905,0.225891,0.221466,0.215637,0.212067,0.216705,0.223816,0.229126,0.223022,0.203094,0.174286,0.141876,0.108398,0.0758362,0.040802,0.00549316,-0.0254211,-0.0458984,-0.0545044,-0.0545044,-0.0514832,-0.0489807,-0.0469666,-0.0473938,-0.0506592,-0.053772,-0.0614624,-0.0752258,-0.0960388,-0.12027,-0.146637,-0.171143,-0.19455,-0.216858,-0.239075,-0.262939,-0.283691,-0.302155,-0.314636,-0.323486,-0.331543,-0.337921,-0.341492,-0.33905,-0.327972,-0.308197,-0.278778,-0.244751,-0.207581,-0.169342,-0.127655,-0.0860291,-0.0461121,-0.00973511,0.0184631,0.0410767,0.0559082,0.0718079,0.0897217,0.109192,0.126587,0.139069,0.147369,0.155762,0.162292,0.163818,0.155426,0.139526,0.114227,0.0867004,0.0656433,0.0526123,0.0499878,0.0551147,0.0672607,0.0883179,0.116302,0.149933,0.184418,0.214905,0.235046,0.242065,0.240265,0.233612,0.230347,0.225891,0.219116,0.210205,0.201538,0.197662,0.197052,0.201202,0.199677,0.186432,0.16275,0.13382,0.106384,0.0788574,0.0471802,0.0116882,-0.0232849,-0.0504761,-0.0671082,-0.0728149,-0.0704651,-0.0663147,-0.0641479,-0.0644226,-0.065094,-0.0647583,-0.0699463,-0.0802002,-0.0983887,-0.121948,-0.148529,-0.174103,-0.195099,-0.213348,-0.231018,-0.252563,-0.272675,-0.289398,-0.302887,-0.312347,-0.321075,-0.331604,-0.340607,-0.344299,-0.33725,-0.316315,-0.286041,-0.250946,-0.215851,-0.177032,-0.134552,-0.0879211,-0.0424194,-0.00308228,0.0255127,0.0457764,0.0646362,0.0871887,0.110321,0.132629,0.149384,0.161469,0.170349,0.177643,0.183014,0.177704,0.161133,0.134644,0.104095,0.0761719,0.0570374,0.0452271,0.0430908,0.0489197,0.0630798,0.0857849,0.115356,0.148254,0.178253,0.200684,0.214417,0.22168,0.223236,0.224091,0.224762,0.227234,0.225708,0.222473,0.220459,0.220795,0.222473,0.220276,0.208588,0.18927,0.165314,0.136993,0.107117,0.0768433,0.0431519,0.00738525,-0.0241699,-0.0483093,-0.0647583,-0.0744934,-0.0822754,-0.0864563,-0.0880432,-0.0891418,-0.0908203,-0.0913391,-0.0940857,-0.101624,-0.116516,-0.135162,-0.155426,-0.1763,-0.198792,-0.221802,-0.2435,-0.264496,-0.282745,-0.298065,-0.306519,-0.312408,-0.314636,-0.316498,-0.314972,-0.310333,-0.300323,-0.281281,-0.253418,-0.220947,-0.18866,-0.156586,-0.120148,-0.0809937,-0.0414124,-0.00476074,0.0234985,0.0441589,0.061615,0.0808105,0.101746,0.122009,0.137573,0.146027,0.152008,0.158264,0.164215,0.163025,0.152954,0.133636,0.107452,0.0814209,0.0624695,0.0507507,0.049408,0.0548401,0.0687256,0.0905457,0.121399,0.157318,0.192627,0.224243,0.244171,0.253815,0.254639,0.251617,0.248871,0.243622,0.234619,0.221558,0.209717,0.202087,0.198181,0.196167,0.18811,0.171478,0.147797,0.119598,0.0909424,0.0608826,0.0275269,-0.00985718,-0.0444946,-0.0730286,-0.0915527,-0.100128,-0.100861,-0.0993347,-0.0969238,-0.0955811,-0.0949097,-0.093811,-0.0964355,-0.10498,-0.118378,-0.137115,-0.157043,-0.175568,-0.194031,-0.208374,-0.22229,-0.236725,-0.25235,-0.265289,-0.278534,-0.286652,-0.295502,-0.30368,-0.309937,-0.311462,-0.305176,-0.287384,-0.257324,-0.220062,-0.180817,-0.145111,-0.107513,-0.0721436,-0.037384,-0.0065918,0.0157776,0.0310669,0.0414124,0.0539551,0.0741577,0.0977173,0.122681,0.141205,0.154419,0.166443,0.174622,0.178802,0.171814,0.15564,0.129272,0.101074,0.0789795,0.0681763,0.068512,0.0761108,0.0901489,0.109467,0.13269,0.160065,0.187866,0.211884,0.22644,0.23053,0.226044,0.220673,0.220001,0.221008,0.219604,0.214294,0.204376,0.19632,0.18866,0.184235,0.174622,0.155975,0.128174,0.0975952,0.0697327,0.0457764,0.0206604,-0.00570679,-0.0340271,-0.0600586,-0.0793152,-0.0908813,-0.0954285,-0.0992737,-0.103546,-0.110931,-0.115234,-0.116119,-0.113098,-0.112213,-0.116364,-0.124756,-0.138062,-0.152283,-0.165314,-0.180054,-0.196503,-0.219879,-0.242554,-0.26355,-0.279053,-0.287659,-0.292694,-0.295837,-0.299469,-0.298462,-0.289459,-0.271088,-0.242676,-0.21048,-0.178375,-0.149139,-0.117035,-0.0822144,-0.0447693,-0.0101318,0.015625,0.0325623,0.0452881,0.0597229,0.0791321,0.101868,0.123749,0.140472,0.152954,0.166565,0.179871,0.188782,0.186646,0.171814,0.144012,0.113098,0.0860291,0.0669861,0.0585327,0.0569763,0.0628967,0.0787964,0.105835,0.141357,0.177704,0.211548,0.232269,0.242218,0.239746,0.230804,0.222076,0.212219,0.199921,0.184692,0.170013,0.1604,0.159271,0.16275,0.164642,0.156586,0.139587,0.116577,0.0920105,0.0663757,0.0361023,0.000671387,-0.0369873,-0.0708008,-0.0950928,-0.107117,-0.111938,-0.110992,-0.108063,-0.10672,-0.10321,-0.0972595,-0.0908813,-0.090271,-0.0970459,-0.110138,-0.128662,-0.148712,-0.167328,-0.184357,-0.201813,-0.220612,-0.239746,-0.255981,-0.267792,-0.273346,-0.276428,-0.280396,-0.284973,-0.286591,-0.282227,-0.265228,-0.236237,-0.206787,-0.176575,-0.149048,-0.117523,-0.0845642,-0.0503235,-0.019989,0.00308228,0.0192566,0.0336304,0.0532227,0.078186,0.106995,0.134766,0.155701,0.172943,0.184906,0.193298,0.192688,0.182831,0.160187,0.126984,0.0933533,0.0667114,0.0527649,0.0485229,0.0545654,0.0689392,0.0892639,0.116699,0.145966,0.176239,0.199921,0.210938,0.212006,0.20578,0.197845,0.194489,0.192291,0.189728,0.185425,0.180603,0.178528,0.180145,0.18222,0.17691,0.162079,0.138458,0.110077,0.0814209,0.0531616,0.0228882,-0.00891113,-0.0403442,-0.0664978,-0.0842285,-0.0914001,-0.0924683,-0.0908813,-0.0908813,-0.0917358,-0.0906677,-0.0899963,-0.0900574,-0.0942383,-0.104431,-0.117859,-0.136719,-0.154083,-0.170197,-0.185242,-0.202087,-0.219391,-0.237183,-0.252289,-0.265961,-0.274628,-0.281677,-0.287933,-0.292694,-0.292694,-0.283966,-0.261749,-0.231934,-0.197327,-0.164307,-0.132629,-0.0995178,-0.066925,-0.0334778,-0.00531006,0.0136108,0.0259094,0.0396729,0.0595398,0.0851746,0.113342,0.138733,0.157867,0.173492,0.184418,0.190735,0.184845,0.167908,0.136322,0.098999,0.0653076,0.040802,0.0279846,0.0281982,0.0385132,0.0589905,0.0856934,0.120056,0.154083,0.186432,0.210388,0.218719,0.218262,0.208984,0.200745,0.196228,0.192688,0.189056,0.183289,0.17926,0.181488,0.187531,0.193024,0.186584,0.168243,0.143494,0.114563,0.0861816,0.0559692,0.0201416,-0.0161133,-0.0498047,-0.0751038,-0.0881348,-0.0922241,-0.0921326,-0.0910034,-0.0907288,-0.0900574,-0.0885315,-0.0858459,-0.086792,-0.0939636,-0.105988,-0.125488,-0.144501,-0.164215,-0.181274,-0.200195,-0.220886,-0.241943,-0.259674,-0.272552,-0.280945,-0.283966,-0.285706,-0.286835,-0.284698,-0.275024,-0.255157,-0.227234,-0.196777,-0.166779,-0.138,-0.109863,-0.0809937,-0.0507507,-0.0235596,-0.00247192,0.0128784,0.0260925,0.0436096,0.065155,0.089386,0.111481,0.130188,0.145111,0.154419,0.159271,0.158051,0.148041,0.127777,0.100128,0.0708618,0.0483093,0.0360413,0.0348206,0.0445557,0.062561,0.0881958,0.118927,0.153351,0.186707,0.21463,0.231476,0.235779,0.230927,0.221954,0.213013,0.206238,0.198517,0.18988,0.181732,0.177246,0.179474,0.184296,0.182953,0.172821,0.15274,0.128113,0.101013,0.0706177,0.0376587,0.00100708,-0.0350952,-0.0646362,-0.0848999,-0.0943604,-0.0944824,-0.0939636,-0.091217,-0.090271,-0.0884705,-0.085968,-0.086853,-0.0928955,-0.104706,-0.121674,-0.141998,-0.162537,-0.180054,-0.197174,-0.214905,-0.232208,-0.249115,-0.262207,-0.271088,-0.276184,-0.279724,-0.284241,-0.286499,-0.283905,-0.269592,-0.245361,-0.215088,-0.184082,-0.156311,-0.128998,-0.0988464,-0.0663757,-0.036377,-0.0128174,0.00180054,0.0140381,0.0293274,0.0522766,0.081543,0.10907,0.129456,0.145844,0.159454,0.1698,0.173553,0.165558,0.143768,0.111145,0.0782471,0.0514832,0.0367126,0.0345764,0.0425415,0.0593872,0.0835571,0.116364,0.153625,0.189606,0.218384,0.233276,0.233826,0.22403,0.213501,0.206512,0.202545,0.199066,0.192413,0.187988,0.188934,0.196106,0.203888,0.202362,0.186432,0.159119,0.127258,0.0957031,0.0643616,0.0296631,-0.00878906,-0.044281,-0.0724182,-0.0861816,-0.0888062,-0.0847778,-0.0811462,-0.0811462,-0.0812683,-0.0838318,-0.0848999,-0.0882568,-0.098053,-0.114227,-0.136108,-0.158783,-0.178131,-0.192627,-0.206848,-0.223572,-0.243225,-0.262756,-0.277435,-0.285492,-0.286438,-0.288849,-0.29129,-0.291199,-0.283691,-0.261749,-0.228333,-0.192017,-0.160004,-0.133698,-0.108582,-0.0798035,-0.0478516,-0.0219421,-0.0050354,0.0050354,0.0140381,0.0338135,0.0608826,0.0923462,0.118927,0.137177,0.150055,0.160278,0.167053,0.164764,0.150269,0.12207,0.0879822,0.0585938,0.0387878,0.0320129,0.0397339,0.0552368,0.0763855,0.104889,0.139679,0.177979,0.213287,0.237579,0.245636,0.239594,0.22699,0.214966,0.207977,0.203094,0.193085,0.182281,0.173889,0.175629,0.185303,0.191071,0.184418,0.165497,0.138184,0.109863,0.0821533,0.052002,0.0158997,-0.0238342,-0.0597839,-0.0855713,-0.0973816,-0.0985107,-0.0949097,-0.0921326,-0.0889893,-0.0879822,-0.0835571,-0.0804138,-0.082489,-0.0922241,-0.11322,-0.138672,-0.164307,-0.185974,-0.203552,-0.220612,-0.240753,-0.260529,-0.277435,-0.286591,-0.287109,-0.284973,-0.283966,-0.283752,-0.278107,-0.260071,-0.227509,-0.189117,-0.155579,-0.128723,-0.10733,-0.081604,-0.0518799,-0.0239563,-0.00564575,0.00314331,0.00991821,0.0256958,0.0515442,0.0848389,0.114777,0.137238,0.152344,0.16275,0.169128,0.168793,0.154358,0.127441,0.0906677,0.0583801,0.0336304,0.0256348,0.0307312,0.0469055,0.0683289,0.0957031,0.129608,0.167328,0.205719,0.231934,0.239929,0.2341,0.218933,0.206055,0.196655,0.189606,0.179535,0.165833,0.154175,0.155365,0.163879,0.173431,0.169922,0.153961,0.129669,0.104645,0.081604,0.0568542,0.0260925,-0.00985718,-0.0439453,-0.0696106,-0.0811462,-0.0809937,-0.0782471,-0.0767822,-0.0777283,-0.07724,-0.0752869,-0.0726318,-0.0738831,-0.0857849,-0.107178,-0.135101,-0.162964,-0.185699,-0.204834,-0.224243,-0.246918,-0.270325,-0.288727,-0.297394,-0.296173,-0.29068,-0.285583,-0.278717,-0.262878,-0.23349,-0.192474,-0.149994,-0.11557,-0.0926208,-0.0730896,-0.0525513,-0.0312805,-0.0142822,-0.0065918,-0.00357056,0.00369263,0.0222168,0.052948,0.0892029,0.120544,0.14444,0.161011,0.1698,0.1698,0.158264,0.130951,0.0920105,0.049408,0.0138855,-0.00759888,-0.00811768,0.00665283,0.0314636,0.0633545,0.100739,0.14267,0.184357,0.218384,0.234894,0.23175,0.216034,0.19812,0.185242,0.176025,0.166504,0.15564,0.146454,0.146851,0.155762,0.167511,0.172028,0.163422,0.144104,0.121277,0.0999451,0.0778503,0.050415,0.0185852,-0.0140381,-0.0404663,-0.0562439,-0.0629578,-0.0634766,-0.0648193,-0.0675049,-0.0710144,-0.0722046,-0.0700073,-0.0679321,-0.0742188,-0.0884705,-0.111603,-0.137115,-0.15979,-0.180664,-0.201263,-0.226776,-0.252411,-0.276367,-0.289673,-0.292938,-0.290619,-0.286255,-0.278198,-0.260406,-0.22879,-0.187256,-0.144287,-0.108856,-0.0855713,-0.0668335,-0.0477905,-0.0296631,-0.017395,-0.0140991,-0.0151062,-0.0102539,0.00827026,0.0369263,0.0709534,0.100067,0.124023,0.141357,0.152283,0.155701,0.144897,0.116302,0.0767212,0.0346985,-0.000335693,-0.0193176,-0.0231628,-0.0115356,0.0107422,0.0411377,0.0788574,0.123352,0.166992,0.20282,0.219391,0.218536,0.205505,0.192078,0.183075,0.175446,0.165497,0.152893,0.143555,0.144501,0.157104,0.17041,0.175507,0.167389,0.150055,0.13269,0.114685,0.0941467,0.06604,0.0316772,-0.0017395,-0.0302124,-0.0458984,-0.0518188,-0.0536804,-0.0550232,-0.0580444,-0.0597229,-0.0578003,-0.0536194,-0.0532227,-0.0606079,-0.0779724,-0.103302,-0.128662,-0.152283,-0.172272,-0.195221,-0.222015,-0.25061,-0.272766,-0.285645,-0.28894,-0.287933,-0.284088,-0.272339,-0.248383,-0.210663,-0.166718,-0.127106,-0.0991211,-0.0769043,-0.0592651,-0.0422058,-0.0322876,-0.0316162,-0.0362549,-0.0368347,-0.0234985,0.00308228,0.0367737,0.0712891,0.101746,0.129395,0.150146,0.160736,0.154022,0.128052,0.0875244,0.0421448,0.000213623,-0.0293274,-0.0424805,-0.0391235,-0.0212097,0.00839233,0.0483093,0.0964966,0.145782,0.188599,0.212616,0.216705,0.205383,0.19046,0.178986,0.168121,0.157043,0.142151,0.132751,0.135376,0.151825,0.170258,0.18161,0.179535,0.168396,0.154236,0.139526,0.119812,0.0918884,0.057251,0.0195923,-0.00985718,-0.0283203,-0.0347595,-0.0357666,-0.0392761,-0.0409546,-0.0440979,-0.0424805,-0.0411987,-0.0418701,-0.0514832,-0.0705261,-0.097168,-0.123352,-0.147247,-0.168243,-0.191467,-0.218109,-0.246246,-0.269196,-0.283752,-0.29187,-0.294434,-0.290283,-0.2771,-0.248444,-0.209595,-0.166656,-0.128387,-0.0991211,-0.0748901,-0.0548401,-0.0410767,-0.0369873,-0.0406189,-0.0470581,-0.0439453,-0.0265198,0.00195312,0.0360413,0.0693359,0.102356,0.131622,0.153564,0.161469,0.149139,0.115967,0.0709534,0.0232849,-0.016449,-0.041687,-0.0493164,-0.0437622,-0.024292,0.00717163,0.0490723,0.0977783,0.145172,0.179993,0.195038,0.192688,0.183167,0.174225,0.168182,0.160187,0.149323,0.138672,0.135651,0.145355,0.163422,0.178802,0.183685,0.178528,0.167389,0.155914,0.142609,0.124756,0.0969849,0.0639038,0.0294495,0.00140381,-0.0161743,-0.0257568,-0.0344238,-0.0414124,-0.049408,-0.0516052,-0.049469,-0.0465698,-0.0462341,-0.0561218,-0.0745544,-0.0990601,-0.12558,-0.1492,-0.172882,-0.200073,-0.230072,-0.257599,-0.277588,-0.287506,-0.289734,-0.284302,-0.270142,-0.246368,-0.210999,-0.171814,-0.133484,-0.102875,-0.0777893,-0.0577087,-0.0430298,-0.037323,-0.0418091,-0.049408,-0.0501404,-0.0366516,-0.012207,0.017395,0.0479126,0.0808105,0.112823,0.141541,0.157928,0.153229,0.127655,0.0877075,0.0437622,0.00408936,-0.0260315,-0.0436096,-0.0482483,-0.0380554,-0.0123596,0.0266418,0.0737,0.12323,0.161621,0.180389,0.183167,0.1763,0.169189,0.163147,0.154694,0.142548,0.129608,0.124084,0.132202,0.149323,0.165314,0.171417,0.165894,0.155182,0.14624,0.137054,0.122406,0.098938,0.0691833,0.0393372,0.0163879,0.00195312,-0.00482178,-0.013031,-0.0239563,-0.0379333,-0.0489807,-0.0536804,-0.0558472,-0.0594482,-0.0704041,-0.0873108,-0.108459,-0.125305,-0.141022,-0.155853,-0.178314,-0.205963,-0.234711,-0.258575,-0.274963,-0.281006,-0.278442,-0.265503,-0.240326,-0.206512,-0.166656,-0.127441,-0.0904846,-0.0590515,-0.0370483,-0.0269775,-0.0273132,-0.0359192,-0.0422058,-0.0390015,-0.0263672,-0.00726318,0.0175171,0.0475769,0.0828857,0.118927,0.145844,0.155762,0.144012,0.114624,0.0767212,0.0381165,0.00280762,-0.0228271,-0.0370483,-0.0387878,-0.0256958,0.00274658,0.0406799,0.0830994,0.119537,0.141022,0.147369,0.14389,0.139465,0.134888,0.129517,0.122345,0.115112,0.112488,0.120667,0.136993,0.153748,0.163086,0.161621,0.154236,0.144836,0.135834,0.122894,0.104095,0.0817566,0.0554504,0.0353088,0.020874,0.0137634,0.00726318,-0.00308228,-0.0161133,-0.032074,-0.0433655,-0.0531006,-0.0634766,-0.0765686,-0.094635,-0.116455,-0.134216,-0.147919,-0.15918,-0.174377,-0.193878,-0.216583,-0.23645,-0.251404,-0.258179,-0.254303,-0.240601,-0.217194,-0.187378,-0.154755,-0.12088,-0.0865784,-0.0546265,-0.0316772,-0.0232239,-0.0236816,-0.0326843,-0.0391846,-0.0333557,-0.0192566,-0.000732422,0.0221558,0.0499878,0.0840149,0.117584,0.143829,0.151672,0.136108,0.105103,0.0658264,0.0263062,-0.00524902,-0.0278625,-0.0388489,-0.0369263,-0.0209961,0.0111389,0.0496521,0.0898743,0.121277,0.136322,0.134369,0.123749,0.112823,0.10202,0.094635,0.0856323,0.0795288,0.0822754,0.0986023,0.123413,0.147247,0.160736,0.161285,0.1539,0.14502,0.134369,0.117859,0.097168,0.0717468,0.0477905,0.0327454,0.0254211,0.0228271,0.0187378,0.00985718,-0.00482178,-0.0204163,-0.0349121,-0.0500793,-0.0671692,-0.0886536,-0.111328,-0.132751,-0.148651,-0.15744,-0.166443,-0.178467,-0.196564,-0.21637,-0.236511,-0.248932,-0.248535,-0.235718,-0.212006,-0.183228,-0.150055,-0.116577,-0.0764465,-0.0354919,-0.00698853,0.00543213,-0.0012207,-0.0170593,-0.0303345,-0.0324097,-0.0248413,-0.0140381,-0.000549316,0.0222168,0.0557861,0.0968323,0.130341,0.147858,0.137787,0.111145,0.074646,0.037262,0.00543213,-0.0198669,-0.037323,-0.0435486,-0.0347595,-0.00958252,0.0275269,0.066925,0.101288,0.119202,0.124023,0.119812,0.113953,0.11026,0.10437,0.0932312,0.0803223,0.0720215,0.0767212,0.0930176,0.112488,0.124023,0.125427,0.120392,0.118378,0.119049,0.118378,0.109467,0.0899963,0.066925,0.0480652,0.0391846,0.0339661,0.0285339,0.0137634,-0.00531006,-0.0250854,-0.0390625,-0.0511475,-0.0653687,-0.0842285,-0.108246,-0.131744,-0.149658,-0.159332,-0.165375,-0.174225,-0.189941,-0.212341,-0.231537,-0.239746,-0.230804,-0.210724,-0.18631,-0.164886,-0.141937,-0.109924,-0.0657043,-0.0204773,0.00912476,0.0163879,0.00643921,-0.00491333,-0.00704956,-0.000335693,0.00549316,0.0071106,0.0104065,0.0267029,0.0575256,0.0949707,0.120667,0.122833,0.103973,0.0720215,0.0404663,0.0132141,-0.0065918,-0.0235596,-0.0336304,-0.0332336,-0.0152283,0.019928,0.0617371,0.0979309,0.115967,0.115234,0.10672,0.0976562,0.091217,0.0844421,0.0740356,0.061615,0.0557861,0.0638123,0.0852356,0.110657,0.127716,0.13028,0.124298,0.115509,0.107849,0.0985107,0.0853577,0.0667725,0.0464478,0.0324097,0.0287781,0.0336914,0.0393372,0.0381165,0.0270996,0.0117493,-0.00610352,-0.0232849,-0.0423584,-0.0681152,-0.0969238,-0.125916,-0.150604,-0.165375,-0.174957,-0.18396,-0.197784,-0.216034,-0.231415,-0.236633,-0.22583,-0.203094,-0.175018,-0.149536,-0.125366,-0.0958252,-0.0574646,-0.0167847,0.0088501,0.0139465,0.00424194,-0.00610352,-0.00637817,0.00323486,0.0141602,0.0239563,0.0349731,0.0555115,0.0852966,0.117523,0.13739,0.131805,0.105042,0.0657654,0.0245667,-0.0106812,-0.0360413,-0.0539551,-0.0609436,-0.0561829,-0.0336914,0.00463867,0.050415,0.0883789,0.110474,0.112427,0.105774,0.0963135,0.0890503,0.0808105,0.0701294,0.0567017,0.050415,0.058197,0.079071,0.105988,0.12442,0.129669,0.12793,0.12262,0.118805,0.11261,0.100403,0.0802612,0.0554504,0.0347595,0.0245667,0.0223389,0.0214233,0.0144958,-0.000671387,-0.0179749,-0.0328064,-0.0450439,-0.0596619,-0.0787964,-0.102295,-0.126251,-0.145294,-0.157196,-0.165161,-0.175568,-0.193878,-0.21463,-0.230347,-0.228851,-0.211823,-0.182892,-0.1539,-0.127838,-0.0998535,-0.0634766,-0.0194702,0.0193176,0.0383911,0.0361023,0.0222778,0.0109253,0.00967407,0.0142212,0.0171814,0.0209961,0.0289307,0.0507507,0.0822144,0.113617,0.127319,0.117859,0.0880432,0.0516663,0.015625,-0.0129395,-0.0359802,-0.0518799,-0.0610046,-0.0545044,-0.0307922,0.00610352,0.0455017,0.0761108,0.0891418,0.0892639,0.0848999,0.0820007,0.0807495,0.0769653,0.068512,0.0590515,0.0575256,0.0681152,0.0892029,0.107788,0.116791,0.114166,0.107239,0.100525,0.0969849,0.0917969,0.0814819,0.06604,0.0502625,0.0412903,0.0396729,0.0397339,0.036377,0.0226135,-6.10352e-05,-0.0254211,-0.0502625,-0.0731506,-0.0949707,-0.116699,-0.138519,-0.15625,-0.166656,-0.169922,-0.171692,-0.180145,-0.193817,-0.208069,-0.210327,-0.196228,-0.169525,-0.141479,-0.116364,-0.0924072,-0.0605469,-0.0209351,0.0188599,0.0412903,0.0452271,0.0345764,0.0259705,0.0270996,0.0341492,0.0413513,0.0466309,0.0547791,0.0720825,0.0960999,0.118988,0.125824,0.108978,0.074646,0.0330811,-0.00543213,-0.0339661,-0.0509949,-0.0611267,-0.0638123,-0.0557861,-0.0317993,0.00247192,0.0430298,0.0724792,0.081604,0.074646,0.0619507,0.0555725,0.0548401,0.0545654,0.0484619,0.0388489,0.0385132,0.0534363,0.0809937,0.106445,0.116302,0.111664,0.100128,0.0920715,0.0879822,0.082489,0.0706787,0.0517578,0.0343628,0.0279236,0.0298767,0.0383911,0.0401917,0.0307922,0.0109253,-0.0148315,-0.0380554,-0.0606079,-0.0836792,-0.10907,-0.13623,-0.161072,-0.17511,-0.179871,-0.181152,-0.186859,-0.196777,-0.202484,-0.194427,-0.172485,-0.142944,-0.116516,-0.0926208,-0.0693359,-0.0375977,-0.00088501,0.0297852,0.0473938,0.0495911,0.0465088,0.0475159,0.0550232,0.0646973,0.0708618,0.07724,0.0878601,0.102295,0.120056,0.128662,0.122681,0.0967712,0.0604553,0.0221558,-0.0105896,-0.0332947,-0.0487366,-0.058197,-0.0602112,-0.0499878,-0.0269775,0.00100708,0.0283813,0.0423584,0.0435486,0.0386047,0.0353088,0.0369263,0.0377808,0.0354309,0.0301208,0.0269775,0.032074,0.0490723,0.0693359,0.0865173,0.0926208,0.0906677,0.0869751,0.0836182,0.0809937,0.0719604,0.0546875,0.03302,0.0157776,0.00759888,0.00918579,0.0108032,0.00817871,-0.00268555,-0.016571,-0.0298767,-0.0432739,-0.0598755,-0.0820923,-0.110138,-0.138519,-0.164093,-0.179657,-0.189545,-0.195709,-0.200073,-0.195221,-0.176971,-0.144836,-0.106659,-0.0718079,-0.0452881,-0.0253601,-0.0050354,0.0153809,0.0322266,0.0389404,0.0371094,0.0339661,0.0400696,0.056366,0.0756226,0.092804,0.106659,0.120392,0.135834,0.147369,0.148468,0.131958,0.0990601,0.0579834,0.0202026,-0.0103455,-0.0303345,-0.040741,-0.0448303,-0.0423584,-0.0316162,-0.0142212,0.00750732,0.0245667,0.0309448,0.0249634,0.0137024,0.00570679,0.00436401,0.00643921,0.00692749,0.00515747,0.00357056,0.0108032,0.0247803,0.045105,0.0594482,0.0653076,0.0646973,0.0628052,0.0636292,0.0647583,0.061615,0.0510864,0.0352478,0.0194702,0.00952148,0.00424194,0.000335693,-0.0107422,-0.0259705,-0.0462952,-0.0642395,-0.0798645,-0.0944824,-0.110474,-0.129333,-0.150543,-0.170258,-0.183167,-0.190277,-0.191467,-0.187439,-0.176453,-0.151825,-0.118591,-0.0792542,-0.0425415,-0.011261,0.0158386,0.0410767,0.062561,0.0751038,0.0788574,0.0767212,0.0775757,0.0876465,0.101532,0.116699,0.126373,0.136658,0.14624,0.155243,0.156525,0.14209,0.113342,0.0729675,0.0333557,0.000213623,-0.0221558,-0.0343018,-0.0396729,-0.0388489,-0.0328064,-0.019989,-0.00314331,0.0126953,0.0209961,0.0193176,0.00717163,-0.00201416,-0.00610352,-0.00167847,0.00280762,0.00537109,0.00363159,0.00564575,0.0151672,0.0302734,0.0445557,0.0523376,0.0487976,0.0422668,0.0371094,0.0378418,0.039856,0.0363159,0.0249023,0.00857544,-0.00683594,-0.0171204,-0.025177,-0.0367737,-0.0562439,-0.0802002,-0.104553,-0.122162,-0.133545,-0.141357,-0.152496,-0.165894,-0.182007,-0.193298,-0.198181,-0.194977,-0.185913,-0.168121,-0.143097,-0.108459,-0.0683899,-0.0267029,0.0138855,0.0509338,0.0786438,0.0975952,0.105774,0.10733,0.106903,0.110321,0.118805,0.129456,0.141541,0.155579,0.170258,0.184082,0.192078,0.185638,0.163544,0.128326,0.0856323,0.0437622,0.00878906,-0.0153809,-0.0302734,-0.0381165,-0.0384521,-0.0316162,-0.0172424,0,0.012085,0.0134888,0.00408936,-0.00778198,-0.015564,-0.0177917,-0.0145569,-0.0127563,-0.0100708,-0.0050354,0.0065918,0.0205994,0.0349121,0.044281,0.0476379,0.0458984,0.04422,0.0418701,0.0409546,0.0379333,0.0305481,0.0181274,0.00430298,-0.0101318,-0.0248413,-0.0428772,-0.066925,-0.0968323,-0.127319,-0.155182,-0.177368,-0.193817,-0.208862,-0.221283,-0.230682,-0.235229,-0.233948,-0.224976,-0.210541,-0.187103,-0.154968,-0.115234,-0.0737,-0.03302,0.0065918,0.0444336,0.0798645,0.109741,0.127167,0.133209,0.135559,0.139862,0.149323,0.160797,0.173431,0.184082,0.195099,0.207458,0.215363,0.211945,0.1922,0.157928,0.113953,0.0698547,0.0310669,0.00247192,-0.0162354,-0.0270996,-0.0313416,-0.0284424,-0.0183105,0.00088501,0.0198059,0.0306702,0.0297241,0.0189819,0.0067749,0.000610352,-0.00247192,-0.00665283,-0.015564,-0.0222168,-0.0215454,-0.0085144,0.0111389,0.0304565,0.0412903,0.0429382,0.0429382,0.0448303,0.0471191,0.0458374,0.0369263,0.0193176,-0.00146484,-0.019928,-0.0350342,-0.0503235,-0.0737,-0.104492,-0.140747,-0.172272,-0.196777,-0.215637,-0.232697,-0.24939,-0.264435,-0.272675,-0.270203,-0.2565,-0.231476,-0.200806,-0.1651,-0.127167,-0.0895386,-0.0508118,-0.0111389,0.0290527,0.0646362,0.0928955,0.113281,0.128998,0.148865,0.17041,0.189392,0.202606,0.210541,0.215851,0.223755,0.230804,0.230255,0.216522,0.18927,0.15155,0.113556,0.078064,0.0490723,0.0259705,0.00750732,-0.00759888,-0.0171204,-0.0189819,-0.0118103,0.000457764,0.00900269,0.0100098,0.00415039,-0.000671387,-0.000213623,0.00671387,0.0118713,0.0115356,0.00878906,0.00750732,0.0147705,0.0289917,0.0443726,0.0542297,0.0565796,0.0553589,0.0546875,0.0550232,0.0545044,0.0478516,0.0323486,0.0114136,-0.0100098,-0.0280457,-0.0454407,-0.0668335,-0.0975037,-0.13623,-0.175232,-0.209595,-0.237854,-0.262268,-0.284637,-0.303101,-0.313904,-0.312744,-0.295166,-0.262817,-0.222137,-0.175842,-0.130005,-0.0855103,-0.0455017,-0.00872803,0.0250244,0.0520935,0.0727539,0.0869141,0.101074,0.120941,0.147797,0.176849,0.202484,0.221893,0.234283,0.24295,0.245361,0.238739,0.218384,0.185242,0.144684,0.104218,0.0711365,0.0461121,0.0279846,0.0142822,0.00296021,-0.00436401,-0.0062561,-0.000671387,0.00778198,0.0128174,0.0124207,0.00772095,0.00442505,0.0062561,0.013031,0.016449,0.0158386,0.012207,0.0100708,0.0140381,0.0252991,0.0367126,0.0448914,0.0522766,0.0591125,0.0684509,0.0782471,0.0857849,0.0845642,0.0714111,0.0500793,0.0238953,-0.00436401,-0.0332947,-0.0673828,-0.106323,-0.148651,-0.185974,-0.218109,-0.243622,-0.266724,-0.290283,-0.311951,-0.32724,-0.330994,-0.31839,-0.290863,-0.251465,-0.204285,-0.155182,-0.106171,-0.0592651,-0.0100708,0.0334167,0.070282,0.0928955,0.106781,0.118469,0.137573,0.1633,0.18927,0.212555,0.231354,0.247437,0.261749,0.269135,0.261017,0.233093,0.188934,0.136383,0.0848999,0.0381775,0.00274658,-0.024231,-0.039856,-0.0466309,-0.0448914,-0.0341492,-0.0185852,-0.00167847,0.0110168,0.0157166,0.0158386,0.013031,0.0129395,0.0125427,0.0139465,0.0134888,0.0117493,0.0145569,0.0229492,0.038269,0.0546875,0.0693359,0.0802612,0.0869141,0.0900574,0.0917358,0.0910645,0.0812073,0.0653687,0.041626,0.013092,-0.0159607,-0.0462952,-0.0813293,-0.118591,-0.157532,-0.194427,-0.22583,-0.252563,-0.273773,-0.292542,-0.308319,-0.318329,-0.316162,-0.300079,-0.266968,-0.222626,-0.171356,-0.122345,-0.0774536,-0.0317383,0.0102539,0.0484619,0.0788574,0.0977173,0.108978,0.123688,0.147522,0.177368,0.209534,0.236633,0.255981,0.27066,0.279938,0.279266,0.261932,0.224701,0.173431,0.115692,0.0613403,0.0167847,-0.0193176,-0.0444946,-0.0605469,-0.0643616,-0.0567017,-0.0436096,-0.0260925,-0.0140381,-0.00958252,-0.00906372,-0.0114746,-0.0134888,-0.0137634,-0.0137634,-0.012085,-0.00845337,-0.000610352,0.0122681,0.0280457,0.0461121,0.0624695,0.0755615,0.0842896,0.0903931,0.0910645,0.0884705,0.0794678,0.0630798,0.0440369,0.0205994,-0.00750732,-0.0393982,-0.0761108,-0.11618,-0.155701,-0.194214,-0.22699,-0.257324,-0.281799,-0.299133,-0.308716,-0.30719,-0.294891,-0.270203,-0.235901,-0.193542,-0.147247,-0.104156,-0.0636292,-0.0234985,0.0147705,0.0491333,0.0789185,0.101746,0.12207,0.145844,0.174957,0.203705,0.229523,0.251953,0.268524,0.279602,0.284485,0.275696,0.252136,0.215424,0.169922,0.123291,0.0767212,0.0350952,-0.0038147,-0.0367126,-0.0603943,-0.0720825,-0.0740356,-0.0668335,-0.0562439,-0.0446167,-0.0357666,-0.0257568,-0.0171204,-0.00973511,-0.00341797,-0.00146484,-0.00201416,-0.0032959,-0.0020752,0.00390625,0.0145569,0.0278625,0.0419312,0.0555725,0.0686035,0.0809326,0.0890503,0.0908203,0.0818787,0.0621338,0.0322266,-0.00268555,-0.0428772,-0.0856934,-0.12912,-0.172089,-0.211151,-0.2453,-0.271423,-0.291473,-0.304565,-0.311615,-0.312286,-0.304108,-0.282227,-0.248322,-0.202698,-0.152283,-0.105896,-0.0630798,-0.0221558,0.019928,0.0597229,0.09375,0.118042,0.135162,0.153076,0.179871,0.211395,0.243225,0.269196,0.287384,0.300476,0.307983,0.305847,0.287323,0.251556,0.202209,0.146179,0.0899353,0.0401917,-0.00140381,-0.0350342,-0.0585327,-0.0700073,-0.0730286,-0.065918,-0.0518799,-0.0358276,-0.0235596,-0.016449,-0.0158386,-0.0148315,-0.0151062,-0.0128174,-0.0119324,-0.0108643,-0.0103455,-0.00280762,0.0126038,0.0336914,0.053833,0.0719604,0.0818787,0.086853,0.0871277,0.081543,0.0678406,0.0434875,0.0103455,-0.0302734,-0.0732117,-0.116119,-0.155579,-0.195221,-0.232208,-0.266235,-0.295837,-0.317322,-0.332092,-0.338867,-0.338806,-0.328064,-0.302765,-0.262024,-0.208252,-0.15094,-0.0992737,-0.0518799,-0.00726318,0.0341492,0.0704041,0.0977783,0.116791,0.132202,0.152954,0.181824,0.214172,0.247589,0.277863,0.304016,0.322357,0.332001,0.325897,0.299652,0.2565,0.202698,0.14389,0.089386,0.0422668,0.00650024,-0.0195312,-0.0359802,-0.0422668,-0.0404053,-0.0314026,-0.0185242,-0.0085144,-0.00424194,-0.00604248,-0.00637817,-0.00537109,-0.00088501,0.0020752,0.00463867,0.00598145,0.00952148,0.0201416,0.0340881,0.0492554,0.0605469,0.0669861,0.0697937,0.0712891,0.070282,0.065033,0.0511475,0.0249023,-0.00906372,-0.0482483,-0.091156,-0.133972,-0.179474,-0.225555,-0.26825,-0.305786,-0.333771,-0.352478,-0.363007,-0.364899,-0.355988,-0.335571,-0.30249,-0.256256,-0.202362,-0.146027,-0.091156,-0.040741,0.00308228,0.0421448,0.0762939,0.104767,0.127655,0.145844,0.166504,0.188263,0.215637,0.244629,0.270264,0.292419,0.305237,0.307983,0.294708,0.266296,0.22644,0.176788,0.122955,0.070343,0.0261841,-0.00817871,-0.0280457,-0.0367126,-0.0358276,-0.0288696,-0.0140381,0.00476074,0.0235596,0.0363159,0.0444946,0.0465088,0.0481262,0.0472412,0.0477905,0.0452271,0.0441589,0.0459595,0.0527649,0.0627441,0.073822,0.0822144,0.0877991,0.0881958,0.0835571,0.0731506,0.0559082,0.0290527,-0.00558472,-0.0491943,-0.0979919,-0.150269,-0.197845,-0.243561,-0.282349,-0.317596,-0.344635,-0.365356,-0.377106,-0.378723,-0.37149,-0.352692,-0.318604,-0.270996,-0.214355,-0.154694,-0.0976562,-0.045166,0.00289917,0.0446167,0.0765076,0.098938,0.112823,0.126099,0.14328,0.165771,0.191345,0.218323,0.245026,0.267517,0.284698,0.290192,0.28006,0.251221,0.204773,0.147308,0.0851746,0.0293274,-0.0138855,-0.0420837,-0.0592651,-0.0632935,-0.0544434,-0.0332947,-0.00228882,0.0293274,0.0541077,0.0656433,0.0724182,0.0776367,0.081665,0.085022,0.0834961,0.078125,0.0751038,0.0785828,0.089325,0.10437,0.11731,0.125916,0.127594,0.125092,0.117462,0.103821,0.0836792,0.0507507,0.00631714,-0.0448914,-0.0983276,-0.148041,-0.196045,-0.24115,-0.285767,-0.325623,-0.356171,-0.375916,-0.384827,-0.386383,-0.382629,-0.367462,-0.338654,-0.292084,-0.232605,-0.169739,-0.111145,-0.0570374,-0.00778198,0.0378418,0.0789795,0.109528,0.128662,0.141144,0.154968,0.175171,0.200256,0.226044,0.247986,0.262268,0.268524,0.267181,0.253418,0.222961,0.177185,0.118256,0.0567932,0.00296021,-0.0358276,-0.0612183,-0.0774536,-0.0841064,-0.0810852,-0.0654297,-0.0395203,-0.00918579,0.016449,0.0347595,0.048645,0.0635681,0.0807495,0.0970459,0.110138,0.115845,0.11792,0.121277,0.127441,0.135223,0.140808,0.141998,0.136169,0.128662,0.119324,0.109314,0.092804,0.0652466,0.0256348,-0.0236206,-0.077179,-0.132141,-0.185364,-0.237244,-0.286591,-0.329529,-0.362213,-0.378937,-0.385834,-0.383301,-0.372833,-0.354706,-0.321747,-0.273956,-0.214081,-0.152679,-0.0961609,-0.0462341,0.000213623,0.0450439,0.0845642,0.115845,0.134033,0.14502,0.158112,0.176453,0.198181,0.220398,0.237061,0.246857,0.251465,0.250458,0.238403,0.208801,0.163544,0.104156,0.0421448,-0.0125427,-0.053772,-0.0838318,-0.102539,-0.112091,-0.108398,-0.0906677,-0.0586548,-0.0232239,0.00891113,0.0326233,0.0513306,0.0673218,0.0845642,0.0988464,0.108795,0.112335,0.11322,0.118195,0.128387,0.143219,0.154633,0.15799,0.154358,0.145508,0.133484,0.117981,0.094635,0.0588684,0.0102539,-0.0429382,-0.098053,-0.149048,-0.197388,-0.243225,-0.285919,-0.323761,-0.351349,-0.368927,-0.375153,-0.373627,-0.365906,-0.347992,-0.315643,-0.264099,-0.200348,-0.134216,-0.0745544,-0.021759,0.0263062,0.0722961,0.110748,0.138458,0.152161,0.158112,0.167999,0.183014,0.200256,0.217194,0.230347,0.237915,0.240753,0.235718,0.219788,0.188446,0.146851,0.094696,0.0397339,-0.0105286,-0.0506592,-0.0785828,-0.0957642,-0.104553,-0.101807,-0.0889282,-0.0639648,-0.0319519,-0.00128174,0.0241699,0.0467224,0.0678406,0.0875244,0.105164,0.117859,0.123566,0.125702,0.126038,0.129181,0.133148,0.138,0.138733,0.135376,0.127716,0.117188,0.103302,0.0826721,0.0517578,0.00866699,-0.0418701,-0.0964966,-0.150604,-0.201416,-0.250336,-0.295227,-0.333221,-0.363342,-0.380463,-0.387177,-0.383026,-0.368042,-0.34082,-0.299988,-0.24408,-0.17981,-0.113495,-0.0536194,-0.00140381,0.0452881,0.0845032,0.117035,0.139191,0.149323,0.154419,0.162079,0.174377,0.190277,0.20752,0.222809,0.233765,0.24054,0.239594,0.223694,0.187988,0.137573,0.0782471,0.0186462,-0.0320129,-0.0706787,-0.0986023,-0.114624,-0.117371,-0.104095,-0.0785217,-0.0420837,-0.00576782,0.0265198,0.0515442,0.0737,0.0920105,0.107849,0.118378,0.123077,0.124634,0.127258,0.133209,0.142273,0.152496,0.156647,0.155975,0.147247,0.136383,0.119385,0.0987854,0.0697327,0.0283813,-0.0202637,-0.0714722,-0.125153,-0.176361,-0.22464,-0.271271,-0.314758,-0.350067,-0.372894,-0.384308,-0.381805,-0.372223,-0.354889,-0.326721,-0.281342,-0.219543,-0.149261,-0.0838928,-0.0314636,0.0106812,0.0509949,0.0886536,0.120209,0.137909,0.141479,0.141693,0.149872,0.165558,0.184357,0.199127,0.207581,0.210999,0.210144,0.204163,0.18396,0.149994,0.104492,0.0522766,0.00280762,-0.040741,-0.0715332,-0.0924683,-0.102295,-0.101959,-0.0896606,-0.0677185,-0.0334167,0.00436401,0.0396118,0.0679321,0.0892029,0.10498,0.119385,0.130188,0.136566,0.136658,0.13269,0.130676,0.133545,0.141418,0.150604,0.155365,0.154846,0.146454,0.133698,0.114441,0.0865173,0.0469666,-0.00463867,-0.0617371,-0.121155,-0.175018,-0.222473,-0.264038,-0.301758,-0.334503,-0.358459,-0.368988,-0.370148,-0.363434,-0.350067,-0.326172,-0.285431,-0.227051,-0.159119,-0.0948181,-0.0384521,0.0115356,0.0587769,0.0998535,0.130402,0.144226,0.144562,0.143341,0.14859,0.15918,0.171539,0.183014,0.189941,0.196381,0.200073,0.196045,0.176361,0.139923,0.0895996,0.0331421,-0.0201416,-0.065094,-0.0983276,-0.122955,-0.134644,-0.133301,-0.116455,-0.0846252,-0.0420837,0.000610352,0.0400696,0.070343,0.0948181,0.115509,0.13208,0.141266,0.143494,0.139679,0.134491,0.134705,0.140686,0.149597,0.157043,0.159393,0.157043,0.150543,0.138733,0.121002,0.0910645,0.0473938,-0.00524902,-0.0629578,-0.119812,-0.169678,-0.215424,-0.257263,-0.292267,-0.32074,-0.338715,-0.344818,-0.341553,-0.333344,-0.320343,-0.296448,-0.257111,-0.201752,-0.137665,-0.0760498,-0.0233459,0.0236816,0.0657043,0.102417,0.128387,0.142334,0.14389,0.14209,0.143951,0.151733,0.160736,0.171143,0.179657,0.184967,0.183899,0.174622,0.15155,0.115173,0.0686646,0.0146179,-0.0420227,-0.0885315,-0.119934,-0.137451,-0.141418,-0.134979,-0.117371,-0.0871277,-0.0472412,-0.00415039,0.0325623,0.0612183,0.0856934,0.103485,0.118256,0.129059,0.133636,0.134094,0.132812,0.133087,0.133362,0.138916,0.143768,0.146027,0.143158,0.134888,0.120544,0.102692,0.0787964,0.0458374,0.00262451,-0.0481262,-0.100525,-0.150269,-0.194153,-0.233368,-0.267456,-0.29538,-0.312286,-0.31839,-0.315369,-0.304688,-0.289795,-0.267303,-0.231201,-0.182556,-0.128174,-0.0743713,-0.0267029,0.0152893,0.0552979,0.0914917,0.121216,0.138794,0.145691,0.147644,0.15155,0.160065,0.170349,0.176849,0.183289,0.185089,0.18457,0.178375,0.161133,0.129608,0.0873718,0.0334167,-0.0194702,-0.0646362,-0.0996704,-0.123413,-0.140594,-0.146362,-0.138519,-0.114838,-0.0792542,-0.0400085,-0.00570679,0.0220032,0.0457764,0.0701294,0.091217,0.105438,0.11322,0.11557,0.114899,0.11972,0.125031,0.134827,0.142609,0.14502,0.140137,0.130127,0.117706,0.101288,0.0792542,0.0446167,0.00180054,-0.0470581,-0.0940857,-0.136566,-0.176117,-0.213959,-0.251007,-0.280792,-0.300659,-0.307312,-0.30368,-0.295044,-0.284821,-0.266296,-0.233704,-0.185089,-0.127106,-0.0697327,-0.0205383,0.0216675,0.0591125,0.0964966,0.128662,0.149811,0.158783,0.160126,0.160339,0.166107,0.175629,0.184082,0.18631,0.18396,0.178375,0.169128,0.156097,0.132477,0.0960999,0.0489807,0.000457764,-0.0447693,-0.0759583,-0.0997925,-0.113342,-0.123566,-0.122681,-0.109406,-0.0841064,-0.0514221,-0.0167847,0.00973511,0.0306091,0.049469,0.0678406,0.0848999,0.0973206,0.102692,0.101959,0.100616,0.103882,0.109741,0.116577,0.119202,0.113953,0.103149,0.0903931,0.0765076,0.0583191,0.0332336,-0.00195312,-0.0448303,-0.0890503,-0.128448,-0.163971,-0.194977,-0.224091,-0.250336,-0.269135,-0.275085,-0.270752,-0.262268,-0.25174,-0.240204,-0.221222,-0.18927,-0.148987,-0.105377,-0.0634155,-0.024231,0.0138245,0.0545044,0.0906067,0.120819,0.143219,0.159393,0.169006,0.177521,0.185364,0.190216,0.192688,0.193634,0.188385,0.180817,0.169678,0.151825,0.124908,0.0881958,0.0477905,0.00759888,-0.0287781,-0.0578613,-0.0820923,-0.101196,-0.10907,-0.105225,-0.0929565,-0.0744324,-0.0525513,-0.0312195,-0.0106812,0.0105286,0.0281067,0.0465698,0.0620117,0.0744324,0.0856323,0.0964355,0.108124,0.119476,0.130859,0.138184,0.138733,0.131287,0.119598,0.102081,0.07724,0.0479736,0.0100708,-0.0333557,-0.0765686,-0.117462,-0.155853,-0.189941,-0.218445,-0.246033,-0.268188,-0.281219,-0.28537,-0.28067,-0.273102,-0.262146,-0.250061,-0.23288,-0.200012,-0.15564,-0.105774,-0.0584412,-0.0147095,0.0249023,0.0671692,0.11322,0.150726,0.176453,0.187927,0.192139,0.196228,0.205292,0.212891,0.212067,0.202087,0.188324,0.173157,0.160278,0.144836,0.119202,0.0826111,0.0392761,-0.00274658,-0.0345764,-0.0569153,-0.0739746,-0.086792,-0.0965881,-0.098999,-0.0888672,-0.0683899,-0.0425415,-0.0196533,-0.00213623,0.0133667,0.0300598,0.0477295,0.0673218,0.082489,0.0932922,0.101685,0.107391,0.114624,0.123352,0.128113,0.125916,0.114899,0.0974426,0.0779724,0.0560303,0.0319519,0.0012207,-0.0366516,-0.0794067,-0.11853,-0.1539,-0.182953,-0.20932,-0.234558,-0.257111,-0.269745,-0.273621,-0.267242,-0.256104,-0.242004,-0.225708,-0.205505,-0.180542,-0.149261,-0.112091,-0.0729675,-0.0325623,0.00576782,0.0387268,0.0720825,0.103882,0.133972,0.157867,0.172607,0.179382,0.184692,0.193542,0.200409,0.201355,0.195435,0.180939,0.164703,0.149658,0.132202,0.108002,0.0757141,0.0394592,0.00213623,-0.0269775,-0.0459595,-0.0578003,-0.0662537,-0.0686035,-0.0692749,-0.0587769,-0.0424194,-0.0222168,-0.00543213,0.00558472,0.015564,0.0246887,0.0357666,0.0497437,0.061676,0.0700684,0.0784607,0.0873108,0.0957642,0.105042,0.110748,0.108459,0.100067,0.0854492,0.0647583,0.0421448,0.015564,-0.0140991,-0.0491333,-0.0856934,-0.120056,-0.149994,-0.174957,-0.194489,-0.213501,-0.228455,-0.236237,-0.237457,-0.231018,-0.219116,-0.207123,-0.19342,-0.173492,-0.150726,-0.126434,-0.100464,-0.0710754,-0.0390015,-0.00558472,0.0275269,0.058136,0.0886536,0.117798,0.145569,0.164642,0.176697,0.186859,0.192078,0.195374,0.192963,0.181335,0.163971,0.14563,0.124237,0.0998535,0.0744934,0.0479736,0.021759,-0.00112915,-0.0216675,-0.0368347,-0.0452881,-0.0493164,-0.0481873,-0.0445557,-0.0385132,-0.0291138,-0.0179749,-0.00839233,0.0015564,0.0102539,0.0204773,0.032959,0.0459595,0.0587769,0.0721436,0.0826721,0.0915527,0.0967712,0.0963745,0.0913391,0.0840149,0.0708618,0.0514221,0.0283203,0.00222778,-0.0233459,-0.0482483,-0.0734253,-0.0973206,-0.118927,-0.139526,-0.154022,-0.166168,-0.174042,-0.180206,-0.184296,-0.184906,-0.182678,-0.179871,-0.174103,-0.168518,-0.159515,-0.148712,-0.135895,-0.119995,-0.0993958,-0.073761,-0.045105,-0.0105896,0.0220032,0.0513306,0.0803223,0.107056,0.130066,0.147461,0.156647,0.16214,0.16449,0.165985,0.164764,0.159607,0.151215,0.140259,0.128601,0.116913,0.102081,0.0861206,0.0663757,0.0452271,0.0239563,0.00582886,-0.0106812,-0.0233459,-0.0328064,-0.0393982,-0.0440369,-0.0436096,-0.0387878,-0.032135,-0.0226746,-0.013031,-0.000610352,0.0120239,0.0253601,0.037384,0.0461121,0.0533447,0.0556946,0.0551147,0.0532837,0.0480652,0.0401306,0.0306091,0.0196533,0.00610352,-0.00732422,-0.0192566,-0.03302,-0.0455017,-0.0601196,-0.0725403,-0.0858459,-0.0974426,-0.10965,-0.121338,-0.132751,-0.143097,-0.153564,-0.161072,-0.165039,-0.165985,-0.163635,-0.15686,-0.144897,-0.12912,-0.11026,-0.0914917,-0.0730286,-0.0543518,-0.0314636,-0.00564575,0.0204773,0.0452271,0.066925,0.0894775,0.110596,0.131287,0.148041,0.1604,0.167053,0.170074,0.167786,0.163544,0.156586,0.145905,0.131958,0.117523,0.10141,0.0877991,0.073822,0.0578003,0.0381775,0.0167236,-0.00469971,-0.0194702,-0.0302734,-0.0371704,-0.0409546,-0.0432739,-0.0413513,-0.0352478,-0.0258484,-0.0143738,-0.00524902,0.0020752,0.0067749,0.0110168,0.0143738,0.0166321,0.016571,0.0160522,0.0141602,0.0119324,0.0106812,0.0100708,0.0071106,0.00357056,-0.0012207,-0.00616455,-0.0113525,-0.016571,-0.0232239,-0.03302,-0.0467224,-0.0602722,-0.0751038,-0.0899353,-0.104156,-0.120483,-0.136322,-0.147461,-0.154907,-0.158997,-0.156525,-0.150818,-0.140076,-0.126709,-0.111145,-0.0953674,-0.0782471,-0.0598755,-0.0420227,-0.0244446,-0.00558472,0.0140991,0.0362549,0.0623474,0.0876465,0.110321,0.131012,0.149994,0.168335,0.180939,0.187378,0.184845,0.176514,0.164978,0.151001,0.134033,0.114777,0.093689,0.0733032,0.0521545,0.0336304,0.0162354,0.00134277,-0.0125427,-0.0233459,-0.0334167,-0.039856,-0.0434875,-0.0436096,-0.0430298,-0.0414124,-0.0396729,-0.0360413,-0.0307312,-0.0241089,-0.0195312,-0.0155029,-0.0111389,-0.00805664,-0.00476074,0.00134277,0.00692749,0.0129395,0.0185242,0.0211487,0.0226135,0.0219421,0.0195923,0.0160522,0.0103455,0.000793457,-0.012207,-0.0259094,-0.040741,-0.0560303,-0.0740967,-0.0899963,-0.102692,-0.113007,-0.120728,-0.125153,-0.129456,-0.129517,-0.126984,-0.122559,-0.11731,-0.109131,-0.100189,-0.0876465,-0.0721436,-0.0559692,-0.0393982,-0.0221558,-0.003479,0.016571,0.0386658,0.0605469,0.0810852,0.0993958,0.115448,0.12973,0.142548,0.150604,0.154175,0.151733,0.145569,0.135773,0.12442,0.113342,0.0991211,0.0838928,0.0674438,0.0528259,0.0420837,0.0340881,0.0260925,0.0167236,0.00415039,-0.00704956,-0.017395,-0.0260925,-0.0353699,-0.0440979,-0.0522766,-0.0576477,-0.0579834,-0.0543518,-0.0489807,-0.0446167,-0.0396118,-0.0316772,-0.0222168,-0.00967407,0.000396729,0.00698853,0.0126038,0.0162964,0.0206604,0.0227661,0.0238953,0.0216675,0.0187378,0.0116882,0.00598145,-0.000671387,-0.00643921,-0.0132751,-0.0222168,-0.032959,-0.0428162,-0.0526123,-0.0600586,-0.0696106,-0.0797424,-0.0913391,-0.0997925,-0.105896,-0.110077,-0.111328,-0.112091,-0.10791,-0.098053,-0.0837708,-0.065979,-0.0457764,-0.0273132,-0.00750732,0.0100098,0.0275269,0.0428772,0.0576477,0.0672607,0.0750427,0.0803223,0.0858459,0.0924072,0.098114,0.102692,0.104645,0.106323,0.10556,0.103973,0.0960388,0.0866394,0.0721436,0.0584412,0.0449524,0.0326233,0.0222168,0.0109253,0,-0.0120239,-0.0221558,-0.0294495,-0.0358276,-0.0410156,-0.0459595,-0.0475159,-0.0462341,-0.0411377,-0.0349121,-0.0287781,-0.0223389,-0.0147095,-0.0065918,-0.00088501,0.00323486,0.00598145,0.00759888,0.0085144,0.00637817,0.00582886,0.00598145,0.00784302,0.0104065,0.0115356,0.0123596,0.0105286,0.00772095,0.00402832,-0.00140381,-0.00698853,-0.0155029,-0.0226135,-0.0294495,-0.0362549,-0.0434875,-0.0497437,-0.0550232,-0.0589294,-0.0589905,-0.0604553,-0.0612793,-0.0598755,-0.0567932,-0.0524902,-0.0479736,-0.0430298,-0.0393982,-0.0322266,-0.0245667,-0.016571,-0.00967407,-0.00289917,0.00228882,0.00991821,0.0175171,0.0269775,0.033905,0.040863,0.0462341,0.0517578,0.0566406,0.0617371,0.0649109,0.0633545,0.0609436,0.057312,0.0520935,0.0455627,0.0375061,0.0273132,0.0161743,0.00631714,-0.00189209,-0.00839233,-0.0115967,-0.0147095,-0.0174561,-0.0188599,-0.0174561,-0.0151062,-0.0126953,-0.00991821,-0.00744629,-0.00576782,-0.0032959,-0.00195312,-0.00100708,0.00088501,0.00100708,0.00088501,0.00134277,0.0038147,0.00491333,0.00704956,0.00845337,0.00952148,0.00891113,0.00738525,0.0038147,0.000671387,-0.00424194,-0.00952148,-0.017395,-0.0244446,-0.0292053,-0.032074,-0.0323486,-0.028656,-0.0235596,-0.0169067,-0.00958252,-0.000793457,0.00650024,0.00952148,0.0100098,0.0088501,0.0071106,0.00357056,-0.000793457,-0.00665283,-0.011261,-0.0126953,-0.0136108,-0.0146179,-0.0162964,-0.016449,-0.0151062,-0.0142822,-0.0133667,-0.0141602,-0.0138855,-0.0134888,-0.0138855,-0.0140991,-0.0142212,-0.0136108,-0.0148926,-0.0158386,-0.015625,-0.0139465,-0.0108643,-0.00772095,-0.00363159,0.00146484,0.00698853,0.0126953,0.0176392,0.0216675,0.0240173,0.0241089,0.0238342,0.020874,0.0180664,0.0149536,0.012085,0.00827026,0.00524902,0.00335693,0.00497437,0.00643921,0.00878906,0.00924683,0.00939941,0.00891113,0.00979614,0.00912476,0.00704956,0.00363159,-0.00140381,-0.0085144,-0.013092,-0.0161133,-0.0178528,-0.0192566,-0.0179749,-0.0137024,-0.00750732,-0.000671387,0.00524902,0.00912476,0.0110779,0.0102539,0.00900269,0.00811768,0.00650024,0.00390625,0.00180054,0.00189209,0.00424194,0.00878906,0.0138855,0.0187988,0.0228271,0.0267639,0.029541,0.0307922,0.0273743,0.0227661,0.0182495,0.0154419,0.0104675,0.0038147,-0.00482178,-0.013092,-0.0203247,-0.028595,-0.0344238,-0.0409546,-0.0475159,-0.0522156,-0.0536194,-0.052887,-0.04953,-0.0454407,-0.0422668,-0.0380554,-0.0353699,-0.0320129,-0.0281982,-0.0241089,-0.0224915,-0.0202026,-0.016449,-0.0111389,-0.00323486,0.00436401,0.0140381,0.020874,0.0248413,0.0273743,0.0309448,0.0320129,0.0322876,0.0264282,0.0188599,0.0101318,0.00363159,-0.00106812,-0.00491333,-0.0085144,-0.012085,-0.0148315,-0.0118713,-0.00759888,-0.0032959,0.00128174,0.00323486,0.0062561,0.00637817,0.00845337,0.0100708,0.0126953,0.0114746,0.0110779,0.00906372,0.0110168,0.0143738,0.0185242,0.0220032,0.0249023,0.0256348,0.0281067,0.0313416,0.0334778,0.0333557,0.0319519,0.0273743,0.0240173,0.0230103,0.0231628,0.0214844,0.0173035,0.0109253,0.00598145,0.000457764,-0.0017395,-0.00408936,-0.00604248,-0.0085144,-0.0103455,-0.0102539,-0.0108643,-0.00839233,-0.00717163,-0.00891113,-0.0127563,-0.0184021,-0.0211487,-0.0254211,-0.0287781,-0.0342407,-0.0379333,-0.0392761,-0.0394592,-0.0375061,-0.0340271,-0.0282593,-0.0244446,-0.0226746,-0.0205383,-0.0179138,-0.0149536,-0.0150452,-0.0195312,-0.0245667,-0.0284424,-0.0313416,-0.0323486,-0.0323486,-0.0293884,-0.0260315,-0.0202637,-0.0114746,-0.00256348,0.00967407,0.0189209,0.0258484,0.0271912,0.0272522,0.025177,0.0218811,0.0171814,0.0110779,0.00637817,0.00408936,0.00424194,0.00765991,0.0106812,0.0137024,0.0175171,0.0196533,0.0198059,0.0202026,0.0184021,0.0147705,0.0110168,0.00698853,0.00448608,0.00442505,0.00704956,0.00872803,0.0101929,0.0134277,0.0167847,0.020752,0.0239563,0.0283813,0.0322266,0.0338135,0.0347595,0.0340271,0.0340271,0.0333557,0.0311279,0.0250854,0.0191345,0.0116882,0.00537109,0,-0.00698853,-0.0115967,-0.0132141,-0.0118713,-0.0106812,-0.00939941,-0.00952148,-0.0114746,-0.015564,-0.0212097,-0.0247803,-0.0283813,-0.0334778,-0.0385132,-0.0434265,-0.0465088,-0.0475769,-0.0470581,-0.0467834,-0.0423584,-0.0381775,-0.0338135,-0.0278625,-0.020813,-0.015625,-0.013031,-0.0118713,-0.0100098,-0.00811768,-0.00631714,-0.00497437,-0.00598145,-0.00811768,-0.0065918,-0.0038147,-0.0020752,0.000671387,0.000793457,0.00161743,0.00296021,0.00234985,0.00234985,0.000610352,-0.0017395,-0.00436401,-0.00592041,-0.0067749,-0.00665283,-0.00616455,-0.00604248,-0.00482178,-0.00268555,0.00262451,0.00744629,0.0135498,0.0169067,0.0195923,0.0221558,0.0263672,0.0308838,0.0324097,0.033905,0.0348206,0.0347595,0.0354309,0.0356445,0.0377197,0.0369263,0.0342407,0.0328979,0.0314026,0.0302124,0.0265198,0.0231628,0.0185852,0.0141602,0.00857544,0.0050354,0.00314331,0.000671387,-0.00402832,-0.00958252,-0.0154419,-0.0213318,-0.0261841,-0.0299377,-0.0344238,-0.0383301,-0.0387878,-0.0351562,-0.0309448,-0.0238953,-0.0162964,-0.0105286,-0.00738525,-0.00491333,-0.00448608,-0.00296021,-0.00436401,-0.00827026,-0.0120239,-0.0138855,-0.0143738,-0.0142822,-0.0128784,-0.0110779,-0.0118713,-0.0115356,-0.0106812,-0.00827026,-0.00979614,-0.0119324,-0.016449,-0.0200806,-0.0234375,-0.0241699,-0.0267029,-0.02771,-0.0288696,-0.0284424,-0.0256958,-0.0224304,-0.0190735,-0.0141602,-0.00906372,-0.0020752,0.00222778,0.00817871,0.0137634,0.0179138,0.0202637,0.0230103,0.0246887,0.0268555,0.0272522,0.0268555,0.0250244,0.0231018,0.0232239,0.0238342,0.0261841,0.0269165,0.0265198,0.025177,0.0233459,0.0218201,0.0211487,0.0184021,0.0140991,0.00906372,0.00357056,-0.000396729,-0.00442505,-0.00827026,-0.0118103,-0.0148926,-0.0152283,-0.0128784,-0.00750732,-0.00308228,0.000671387,0.00262451,0.00289917,0.00430298,0.00537109,0.00549316,0.00402832,0.00134277,-0.00128174,-0.00262451,-0.00314331,-0.00161743,0.000457764,-0.000457764,-0.0017395,-0.00180054,-0.000671387,-0.0017395,-0.0050354,-0.00958252,-0.0152893,-0.0205383,-0.0225525,-0.0240173,-0.0240173,-0.0265808,-0.0292664,-0.0303345,-0.0294495,-0.02771,-0.0250244,-0.0234985,-0.020874,-0.016449,-0.011261,-0.00430298,0.00222778,0.0062561,0.00827026,0.0100098,0.0115356,0.0114136,0.0126953,0.0129395,0.0128784,0.012146,0.013092,0.0151062,0.0169678,0.0187378,0.0181885,0.0152283,0.0108643,0.00750732,0.00375366,-0.000335693,-0.00424194,-0.00939941,-0.0139465,-0.016571,-0.0173035,-0.0167236,-0.016571,-0.016571,-0.0152283,-0.0126953,-0.00979614,-0.00665283,-0.00241089,-0.000335693,0.00241089,0.00241089,0.00430298,0.00604248,0.0085144,0.00979614,0.0100098,0.0112,0.013031,0.0160522,0.016571,0.0181274,0.0185852,0.0174561,0.0152283,0.0124207,0.00912476,0.00549316,0.00228882,-0.00228882,-0.00448608,-0.00637817,-0.00759888,-0.00900269,-0.0114136,-0.0144958,-0.0173035,-0.0202637,-0.0248413,-0.0272522,-0.0260315,-0.0237732,-0.0205383,-0.0158997,-0.0103455,-0.00482178,0.00128174,0.00524902,0.00906372,0.012207,0.0144348,0.0140381,0.0139465,0.0151062,0.0152893,0.0159607,0.0163879,0.0195923,0.0223389,0.0228271,0.0219421,0.0183105,0.0155029,0.0126038,0.00564575,-0.00189209,-0.00866699,-0.0128174,-0.0151062,-0.0184021,-0.0204163,-0.0221558,-0.0205383,-0.0192566,-0.0184021,-0.0170593,-0.0157776,-0.0157166,-0.0155029,-0.0155029,-0.0126038,-0.0100708,-0.00570679,-0.00280762,0.000335693,0.00213623,0.00402832,0.00491333,0.00408936,0.00396729,0.00335693,0.000457764,0.000549316,-0.0015564,-0.0017395,-0.00106812,0.000335693,0.000396729,-6.10352e-05,-0.000732422,0.000610352,-0.00195312,-0.00543213,-0.00891113,-0.0128784,-0.0138245,-0.016449,-0.0162964,-0.0155029,-0.0100098,-0.00704956,-0.00088501,0.00408936,0.0105286,0.0132141,0.0154419,0.0162964,0.017395,0.0172424,0.017395,0.0162964,0.0150452,0.0154419,0.0152283,0.0146179,0.0129395,0.0115356,0.00979614,0.00985718,0.00750732,0.00604248,0.00302124,0.000732422,-0.00088501,-0.00262451,-0.00598145,-0.00799561,-0.00973511,-0.0118713,-0.0140991,-0.0152893,-0.0135498,-0.00912476,-0.00280762,0.00268555,0.00906372,0.0145569,0.0170593,0.0179749,0.0147095,0.012207,0.00610352,-0.000335693,-0.00784302,-0.0122681,-0.0161743,-0.0187988,-0.0205383,-0.0216675,-0.0220032,-0.0198059,-0.0184021,-0.0170593,-0.0157166,-0.0166321,-0.0182495,-0.0179138,-0.0150452,-0.013092,-0.0110779,-0.0115967,-0.00985718,-0.00772095,-0.00390625,0.000213623,0.0032959,0.00592041,0.00805664,0.0115967,0.0134888,0.0159607,0.0157776,0.0137634,0.0106812,0.00683594,0.00369263,0.000213623,-0.00180054,-0.00436401,-0.00509644,-0.00442505,-0.000946045,0.00201416,0.00497437,0.00750732,0.00793457,0.00878906,0.00817871,0.00784302,0.0067749,0.00436401,0.0015564,-0.0012207,-0.00134277,-0.000396729,0.00140381,0.00323486,0.00509644,0.00717163,0.00872803,0.0088501,0.00692749,0.00302124,-6.10352e-05,-0.000457764,-0.00161743,-0.00140381,-0.00363159,-0.00415039,-0.00549316,-0.00778198,-0.00906372,-0.0085144,-0.00900269,-0.00924683,-0.00967407,-0.0105896,-0.0110168,-0.0114746,-0.0110779,-0.0104065,-0.00906372,-0.00759888,-0.0065918,-0.00616455,-0.00531006,-0.00448608,-0.00442505,-0.00396729,-0.00531006,-0.00476074,-0.0032959,-0.0012207,-0.0017395,-0.00189209,-0.00167847,0.000396729,0.0032959,0.00637817,0.00759888,0.00857544,0.00683594,0.00280762,0.00012207,-0.000213623,-0.000213623,-0.00106812,-0.00228882,-0.00256348,0.00012207,0.0050354,0.00924683,0.012207,0.0146179,0.0175781,0.0192566,0.0202026,0.0185852,0.0160522,0.0110779,0.00610352,0.00146484,-0.00289917,-0.00665283,-0.00906372,-0.0108032,-0.0138855,-0.0141602,-0.0125427,-0.00744629,-0.00241089,0.000671387,0.00323486,0.00643921,0.00906372,0.0115967,0.0108032,0.00979614,0.00604248,0.00228882,-0.003479,-0.0105896,-0.013092,-0.0146179,-0.0147705,-0.0148926,-0.0146179,-0.0133667,-0.0137024,-0.013092,-0.0147095,-0.0158386,-0.0184631,-0.0230103,-0.0256958,-0.0265808,-0.0255737,-0.025177,-0.0228882,-0.0193176,-0.0129395,-0.00558472,0.00201416,0.00811768,0.0108643,0.0117493,0.0111389,0.0105286,0.00811768,0.00524902,0.00357056,0.00213623,0.00134277,0.00088501,0.00100708,0.00415039,0.00784302,0.0101929,0.0109253,0.0114136,0.0124207,0.013092,0.0128784,0.0113525,0.00744629,0.00448608,0.00140381,0.000732422,0.0020752,0.00436401,0.00558472,0.00631714,0.0065918,0.00839233,0.012085,0.0145569,0.0144958,0.0134277,0.0128174,0.0138855,0.0152283,0.0140991,0.0123596,0.00900269,0.00524902,0.00100708,-0.00140381,-0.00180054,-0.00268555,-0.00262451,-0.00457764,-0.00491333,-0.00408936,-0.00457764,-0.00683594,-0.0104675,-0.0148926,-0.0175171,-0.0203247,-0.0246277,-0.0273743,-0.0291138,-0.0279846,-0.0268555,-0.0245667,-0.0206604,-0.0169678,-0.0158997,-0.0149536,-0.0151672,-0.0150452,-0.0149536,-0.0154419,-0.0137024,-0.0108032,-0.0065918,-0.00289917,0.00012207,0.00280762,0.00491333,0.00531006,0.00598145,0.00515747,0.0038147,0.00363159,0.00415039,0.00491333,0.00744629,0.00973511,0.0116882,0.0140381,0.0148315,0.0143738,0.013092,0.0110779,0.00738525,0.00369263,0.00088501,-0.000793457,-0.00189209,-0.0020752,-0.0015564,0.00106812,0.00341797,0.00543213,0.0062561,0.0071106,0.00793457,0.0083313,0.00759888,0.00732422,0.00717163,0.00805664,0.00991821,0.012146,0.0147095,0.0161743,0.0153809,0.0134888,0.0111389,0.00878906,0.00482178,0.000549316,-0.00341797,-0.00726318,-0.00991821,-0.0124817,-0.0140991,-0.0151062,-0.0167236,-0.0178528,-0.0205994,-0.0222778,-0.0226746,-0.0233459,-0.0232239,-0.0211487,-0.0180664,-0.0138245,-0.00872803,-0.00430298,6.10352e-05,0.00308228,0.00509644,0.0160522,0.01651,0.0152893,0.012085,0.0102539,0.0108643,0.00772095,0.00570679,0.00515747,0.00402832,0.00424194,0.00357056,0.00314331,0.00537109,0.00759888,0.00732422,0.00738525,0.00933838,0.0109253,0.0111389,0.0104675,0.00778198,0.00582886,0.00415039,0.00189209,0.00161743,0.00201416,0.000671387,-0.00088501,-0.000335693,-0.00128174,-0.00222778,-0.00463867,-0.00665283,-0.00784302,-0.00738525,-0.00750732,-0.00811768,-0.0104065,-0.0113525,-0.00933838,-0.00933838,-0.0136108,-0.0174561,-0.0186462,-0.0191345,-0.0212708,-0.020874,-0.0222168,-0.0225525,-0.0233459,-0.0238953,-0.0240173,-0.0215454,-0.0181885,-0.021759,-0.0224915,-0.0196533,-0.0169678,-0.0161133,-0.015625,-0.0137634,-0.0155029,-0.0152893,-0.0187378,-0.0209961,-0.0212708,-0.0213318,-0.0241089,-0.02771,-0.0303955,-0.0302124,-0.028717,-0.0299377,-0.0346985,-0.0376587,-0.0386047,-0.0370483,-0.0359192,-0.0361023,-0.0393372,-0.0397339,-0.0369263,-0.0349731,-0.0326843,-0.0317993,-0.0324097,-0.029541,-0.0241089,-0.0219421,-0.0214844,-0.0183105,-0.0128784,-0.00683594,-0.00256348,-0.000732422,-0.000396729,0.00424194,0.00891113,0.0118103,0.0115967,0.0123596,0.0131531,0.0124207,0.0146179,0.0151062,0.0181885,0.0184021,0.0177917,0.0157776,0.0148926,0.01651,0.0192566,0.0203247,0.0181274,0.0195312,0.0221558,0.0266418,0.0283203,0.0290527,0.0328064,0.0353699,0.0379944,0.039856,0.0406189,0.0402832,0.0434875,0.0465698,0.0446167,0.0445557,0.0437622,0.0420837,0.0406799,0.039856,0.0360413,0.0349121,0.0350952,0.0334778,0.0306702,0.0280457,0.0267029,0.0241699,0.0205994,0.0177917,0.0159607,0.0138245,0.0117493,0.0119324,0.012085,0.00985718,0.00262451,0.000610352,0.00463867,0.00671387,0.00531006,0.00463867,0.00564575,0.00732422,0.00912476,0.0117493,0.0103455,0.00738525,0.00442505,0.00558472,0.0083313,0.00491333,0.00195312,-0.00088501,-0.00195312,-0.00424194,-0.0124207,-0.020752,-0.0240173,-0.0257568,-0.0310059,-0.0334167,-0.0318909,-0.0318909,-0.0379333,-0.04422,-0.0428162,-0.0397339,-0.0424194,-0.0444946,-0.0440979,-0.0438843,-0.0484009,-0.0488586,-0.0462341,-0.0424805,-0.0415344,-0.0472412,-0.0478516,-0.0422058,-0.0337524,-0.0344849,-0.0429382,-0.0466309,-0.0400696,-0.0322266,-0.0334778,-0.0350342,-0.0346375,-0.0343628,-0.0343628,-0.0360413,-0.0428772,-0.0513306,-0.0593262,-0.0620728,-0.0619507,-0.0632935,-0.065094,-0.0631409,-0.0556946,-0.0518188,-0.0541077,-0.0518799,-0.0457764,-0.0337524,-0.0254211,-0.020752,-0.0178528,-0.0118103,-0.00402832,0.00616455,0.0149536,0.0162354,0.015625,0.020874,0.0281982,0.0347595,0.0352478,0.0340881,0.0350952,0.040802,0.0471802,0.0493164,0.0491333,0.052002,0.0587158,0.0624084,0.0620117,0.0620117,0.0623474,0.0633545,0.0624084,0.0619507,0.0639648,0.0653076,0.0633545,0.0590515,0.0588684,0.0621338,0.0610046,0.0592041,0.0617371,0.0643005,0.0645752,0.0634766,0.06073,0.06073,0.061676,0.0635681,0.0637512,0.0586548,0.0504761,0.0485229,0.0511475,0.048645,0.0437622,0.0397949,0.0381775,0.0397339,0.0387268,0.0383301,0.0355835,0.0336914,0.0320129,0.0328064,0.027771,0.0236816,0.0212097,0.019928,0.0166321,0.0115356,0.00906372,0.00515747,-0.0020752,-0.00979614,-0.01651,-0.0194092,-0.0213318,-0.0227661,-0.0281067,-0.0350952,-0.0380554,-0.037384,-0.0379944,-0.0424194,-0.0512695,-0.0547791,-0.0561829,-0.0563049,-0.0602722,-0.0677185,-0.069458,-0.065094,-0.0656433,-0.0682678,-0.0705261,-0.0691833,-0.0700684,-0.0720215,-0.0704041,-0.0677185,-0.0672607,-0.0677185,-0.069519,-0.0701294,-0.0733032,-0.0769043,-0.0771179,-0.0759583,-0.0747681,-0.0760498,-0.0758972,-0.0740356,-0.0734253,-0.0741577,-0.074646,-0.0743103,-0.0752869,-0.0763855,-0.0718079,-0.0661621,-0.0627441,-0.0603333,-0.0582581,-0.0510864,-0.0386047,-0.0278625,-0.0202637,-0.0155029,-0.0106812,-0.000793457,0.00967407,0.0161743,0.0204773,0.0214233,0.0204163,0.0228882,0.0283203,0.0337524,0.0366516,0.0360413,0.0334167,0.0344849,0.0401917,0.0448303,0.049408,0.0532227,0.0599365,0.0638123,0.0692749,0.0757751,0.0828247,0.0883179,0.0903931,0.0907288,0.0922241,0.0959778,0.101074,0.103882,0.10202,0.0973206,0.0925598,0.0899353,0.0900574,0.0887146,0.0869141,0.080658,0.0730286,0.0679321,0.065979,0.0632935,0.0541687,0.0458984,0.0395203,0.0339661,0.0291138,0.0228882,0.0198669,0.0186462,0.0124207,0.00524902,0.00482178,0.0100708,0.0146179,0.0185242,0.0214844,0.0244446,0.0271912,0.0290527,0.0322876,0.033905,0.0354919,0.0316162,0.0279846,0.0237732,0.0215454,0.0181885,0.0132141,0.00515747,-0.00408936,-0.0124817,-0.0209961,-0.0281067,-0.0374451,-0.0465698,-0.0547791,-0.0624084,-0.0707397,-0.0782471,-0.0848999,-0.090271,-0.0967102,-0.101868,-0.107727,-0.110474,-0.110199,-0.11142,-0.113098,-0.110992,-0.105896,-0.100403,-0.0963745,-0.0904846,-0.0808716,-0.0690613,-0.0639648,-0.0608826,-0.0560303,-0.0479126,-0.041687,-0.0383911,-0.0390625,-0.0399475,-0.0389404,-0.0401917,-0.0432129,-0.0500793,-0.0587769,-0.0636292,-0.0647583,-0.0632324,-0.0631409,-0.0663757,-0.0675049,-0.0624084,-0.053894,-0.0448914,-0.0414734,-0.0374451,-0.0311279,-0.0205383,-0.00958252,-0.00140381,0.00772095,0.0162964,0.021759,0.0283203,0.0349731,0.0437012,0.0517578,0.0576477,0.0614624,0.0647583,0.0682678,0.0749817,0.0807495,0.0867004,0.0903931,0.0924683,0.0924683,0.0916138,0.0940247,0.0962524,0.0949097,0.0905457,0.0848999,0.0814819,0.0799255,0.0771179,0.0730896,0.0681763,0.061676,0.0561829,0.053009,0.0510864,0.049408,0.0469666,0.0447083,0.041626,0.0397949,0.0400696,0.0390625,0.036499,0.0335693,0.0284424,0.024353,0.0193176,0.0194702,0.0193176,0.0174561,0.0122681,0.0109253,0.0119324,0.0148315,0.0174561,0.0174561,0.0184631,0.020874,0.021759,0.0211487,0.0209961,0.0193176,0.0161133,0.0108032,0.00805664,0.00375366,-0.00189209,-0.00845337,-0.0127563,-0.0171814,-0.0238342,-0.0334778,-0.0404663,-0.0441589,-0.0467834,-0.0536194,-0.0606079,-0.0631409,-0.0653076,-0.0687866,-0.0752869,-0.0801392,-0.0842896,-0.0863647,-0.0883179,-0.0895996,-0.0871277,-0.0842896,-0.0849609,-0.0828247,-0.0785217,-0.0743103,-0.0706787,-0.0700684,-0.065155,-0.0557861,-0.0479736,-0.041687,-0.0358276,-0.0284424,-0.0261841,-0.0220947,-0.0200806,-0.0181274,-0.0178528,-0.0159607,-0.0131531,-0.0176392,-0.0234985,-0.0268555,-0.0237732,-0.021759,-0.0247803,-0.0314026,-0.0358276,-0.0334778,-0.0281067,-0.0231018,-0.0219421,-0.020874,-0.0171814,-0.0125427,-0.00827026,-0.00424194,0.00335693,0.00637817,0.00598145,0.00683594,0.0107422,0.0172424,0.0250854,0.0303955,0.0332336,0.0349731,0.0397339,0.0463867,0.0522766,0.0582581,0.0606079,0.0630188,0.0658264,0.0673218,0.0675964,0.0682678,0.0691223,0.0633545,0.0551147,0.0483093,0.0469666,0.0484009,0.0456238,0.0394592,0.0348206,0.032135,0.0292053,0.0263062,0.0272522,0.0247803,0.0214844,0.0181274,0.0154419,0.0138245,0.011261,0.00772095,0.00341797,0.000946045,-0.00201416,-0.00296021,-0.00112915,0.0012207,0.00112915,0.00201416,0.00234985,0.00491333,0.00811768,0.0114746,0.0134277,0.0149536,0.0183105,0.0195312,0.0190735,0.0166321,0.0157776,0.0196533,0.0248413,0.0245056,0.0222778,0.0193176,0.0191956,0.0218811,0.019989,0.0151062,0.0088501,0.00671387,0.00463867,0.00128174,-0.000671387,-0.00308228,-0.00665283,-0.0122681,-0.0190735,-0.0253601,-0.0283813,-0.0282593,-0.027771,-0.0273743,-0.0256348,-0.0237732,-0.0231018,-0.0220032,-0.0204163,-0.0187378,-0.0152893,-0.0161743,-0.0137024,-0.0137634,-0.0114746,-0.00784302,-0.00750732,-0.0115356,-0.0158997,-0.0171204,-0.0166321,-0.0169678,-0.0209351,-0.0224915,-0.0222168,-0.0244446,-0.0265808,-0.0299988,-0.0319519,-0.0314026,-0.0318909,-0.0353088,-0.0387878,-0.0381165,-0.0371704,-0.0388489,-0.041626,-0.0430298,-0.0441589,-0.0449524,-0.0443726,-0.040741,-0.0365906,-0.0361023,-0.0349121,-0.032135,-0.0265198,-0.0209351,-0.0181885,-0.0143738,-0.00939941,-0.00650024,-0.00592041,-0.00463867,-0.00296021,-0.000610352,-0.00424194,-0.00732422,-0.00778198,-0.00845337,-0.00946045,-0.013031,-0.0138855,-0.0113525,-0.0109253,-0.0102539,-0.00845337,-0.003479,0.00167847,0.00543213,0.00811768,0.0134888,0.0181885,0.0204163,0.0232849,0.0279236,0.032959,0.0346985,0.0371704,0.0404663,0.045105,0.0483093,0.0498657,0.0522156,0.0559082,0.0566406,0.0571289,0.057373,0.0601196,0.0592041,0.0578613,0.0553589,0.0526123,0.0467224,0.0431519,0.0379333,0.0318909,0.0270996,0.0205383,0.0152893,0.0125427,0.0113525,0.0110168,0.00939941,0.00616455,0.00759888,0.00900269,0.0110779,0.0128784,0.0155029,0.0183105,0.0202026,0.0224915,0.0237732,0.0260315,0.0271912,0.0267639,0.0249634,0.0241089,0.0237732,0.0214233,0.0180664,0.0161743,0.0140381,0.0105896,0.00436401,0.000946045,-0.0012207,-0.00430298,-0.0109253,-0.0185242,-0.0255127,-0.0288696,-0.0323486,-0.037323,-0.0467834,-0.0532837,-0.0562439,-0.0576477,-0.0602722,-0.0637512,-0.0656433,-0.0643616,-0.0619507,-0.060791,-0.0595398,-0.0579834,-0.057373,-0.056366,-0.0531616,-0.049408,-0.0479126,-0.0479736,-0.0472412,-0.0444336,-0.0410767,-0.0399475,-0.0418091,-0.0418091,-0.040802,-0.0375061,-0.0348206,-0.0363159,-0.0401917,-0.0420227,-0.040863,-0.0394592,-0.0406799,-0.0425415,-0.0435486,-0.0423584,-0.0390015,-0.0362549,-0.0357056,-0.0357056,-0.0341492,-0.0311279,-0.0287781,-0.0255737,-0.0205994,-0.0135498,-0.00845337,-0.00604248,-0.00296021,0.000335693,0.00524902,0.00765991,0.00839233,0.00906372,0.0100098,0.00958252,0.0103455,0.0118103,0.0152893,0.0181885,0.0177307,0.0162964,0.0181885,0.0222778,0.0249023,0.0258484,0.0263062,0.0262451,0.0262451,0.0285339,0.0314636,0.0338135,0.0346375,0.0353088,0.0371704,0.0386047,0.0397949,0.040802,0.0419312,0.0402832,0.0396729,0.0387878,0.0381165,0.0380554,0.0379944,0.0340271,0.0318909,0.0299988,0.0293884,0.0280457,0.0237732,0.0220947,0.0194092,0.0174561,0.0166321,0.0189209,0.024353,0.0316772,0.0358276,0.0383301,0.0441589,0.0553589,0.0635681,0.0646973,0.061615,0.062561,0.0681152,0.0690613,0.0640869,0.057373,0.0489807,0.0391235,0.0314026,0.0229492,0.0161133,0.00799561,0.000549316,-0.00845337,-0.0141602,-0.015625,-0.0159607,-0.0158997,-0.0158997,-0.0148315,-0.00872803,-0.00308228,0.00302124,0.00891113,0.012146,0.0157776,0.0189209,0.0201416,0.0184021,0.017395,0.0152283,0.0135498,0.00805664,-0.00256348,-0.0115356,-0.0167236,-0.020874,-0.0269165,-0.0353699,-0.0418091,-0.0452271,-0.046051,-0.0453796,-0.0462341,-0.0480652,-0.0478516,-0.0459595,-0.0419312,-0.0363159,-0.0326843,-0.0312195,-0.0292053,-0.0275269,-0.0249634,-0.0241089,-0.024231,-0.0236816,-0.024292,-0.0256958,-0.0281067,-0.0306702,-0.0332336,-0.0354919,-0.0379944,-0.0405273,-0.0418701,-0.0437012,-0.0428772,-0.0410156,-0.0397339,-0.0385132,-0.0374451,-0.0355835,-0.0334167,-0.0301208,-0.0283203,-0.0256348,-0.0248413,-0.0234985,-0.0237732,-0.0255737,-0.0262451,-0.0264282,-0.0255127,-0.0263672,-0.028595,-0.0301208,-0.0300598,-0.0299377,-0.029541,-0.0274353,-0.0257568,-0.0219421,-0.0185242,-0.0145569,-0.0100708,-0.00650024,-0.000549316,0.00408936,0.00866699,0.0106812,0.0150452,0.0183105,0.0201416,0.0221558,0.0237732,0.0250244,0.0256958,0.0249023,0.0240173,0.0255737,0.0263062,0.0258484,0.024292,0.025177,0.0272522,0.0285339,0.0296631,0.0312805,0.0344849,0.0361023,0.0378418,0.0403442,0.0429382,0.045105,0.0477905,0.0478516,0.0487976,0.0489197,0.048645,0.0479736,0.0469666,0.0474548,0.0454407,0.0434875,0.0418701,0.0409546,0.038269,0.0355835,0.0343018,0.0339661,0.0332947,0.032135,0.0316162,0.0310669,0.0301208,0.0296631,0.0296631,0.0293274,0.028656,0.0274353,0.0258484,0.0252991,0.0241699,0.0220032,0.0179749,0.0142822,0.0114746,0.0083313,0.00268555,-0.00234985,-0.00558472,-0.00918579,-0.0142822,-0.0170593,-0.0195923,-0.0232849,-0.0236816,-0.0265808,-0.028595,-0.0304565,-0.0305481,-0.0314636,-0.0326843,-0.03302,-0.0350342,-0.0348206,-0.0356445,-0.036377,-0.0371094,-0.0377197,-0.0393982,-0.0414734,-0.0413513,-0.0424194,-0.0432129,-0.0429382,-0.04422,-0.0440979,-0.0448303,-0.0438232,-0.0436096,-0.0401306,-0.0391235,-0.037262,-0.0361633,-0.0336914,-0.0312195,-0.0302734,-0.0310669,-0.0316772,-0.0315552,-0.0320129,-0.0316772,-0.0328979,-0.0318909,-0.032135,-0.0316162,-0.0305481,-0.0293884,-0.0284424,-0.0281067,-0.0267639,-0.0234375,-0.0195312,-0.0184631,-0.0162964,-0.0134888,-0.0117493,-0.0083313,-0.00637817,-0.00598145,-0.00509644,-0.00448608,-0.00424194,-0.00402832,-0.00430298,-0.0050354,-0.00576782,-0.00576782,-0.00564575,-0.00524902,-0.00442505,-0.00274658,-0.00146484,6.10352e-05,0.00195312,0.00476074,0.00692749,0.00933838,0.012146,0.0141602,0.0159607,0.0177307,0.0182495,0.0195923,0.0202026,0.0201416,0.0186462,0.0192566,0.0192566,0.0191345,0.0185242,0.0178528,0.0185242,0.0188599,0.0181885,0.0177307,0.0191956,0.0209961,0.0228271,0.0231018,0.0240173,0.0258484,0.0256958,0.0278625,0.0297852,0.0309448,0.0317383,0.032135,0.0328979,0.0328979,0.0331421,0.0328979,0.0324707,0.0316772,0.0296631,0.0289917,0.0274353,0.02771,0.0265198,0.0255127,0.0270386,0.0268555,0.0249634,0.0235596,0.0274353,0.0293274,0.0270386,0.0221558,0.0195923,0.0185852,0.0168457,0.0124817,0.00765991,0.00564575,0.00604248,0.0020752,-0.00289917,-0.00537109,-0.00457764,-0.00537109,-0.00891113,-0.0124207,-0.012207,-0.0120239,-0.0129395,-0.0148315,-0.0157166,-0.0154419,-0.0141602,-0.0154419,-0.015564,-0.0147095,-0.0134888,-0.0134277,-0.0161743,-0.0171204,-0.0195312,-0.0192566,-0.020813,-0.0233459,-0.0267029,-0.027771,-0.025238,-0.0265808,-0.028656,-0.0303955,-0.0297241,-0.0285339,-0.0287781,-0.0304565,-0.0306091,-0.0289307,-0.028717,-0.0275269,-0.0284424,-0.0271912,-0.027771,-0.0270996,-0.0272522,-0.0267029,-0.0250854,-0.0247803,-0.0236816,-0.024353,-0.0236206,-0.0234985,-0.0227661,-0.0214844,-0.020813,-0.0214233,-0.0192566,-0.0163879,-0.0129395,-0.013092,-0.0132141,-0.0108643,-0.00872803,-0.00717163,-0.00692749,-0.00396729,-0.00228882,-0.00289917,-0.00280762,-0.00323486,-0.00396729,-0.0032959,-0.00296021,-0.00408936,-0.00415039,-0.00375366,-0.00363159,-0.00424194,-0.00268555,-0.000274658,0.000610352,0.0015564,0.00390625,0.00549316,0.00811768,0.00991821,0.0114746,0.0128174,0.0128784,0.0138855,0.0144348,0.0161743,0.016449,0.0167236,0.0168457,0.0175781,0.0173035,0.0189209,0.0194702,0.0185852,0.0188599,0.0196533,0.0188599,0.0194092,0.0210876,0.0257568,0.0285339,0.0323486,0.0419312,0.0596008,0.077179,0.0812073,0.0711365,0.0654907,0.0690613,0.0693359,0.0549622,0.0391235,0.0294495,0.0276489,0.0205383,0.00784302,-0.00665283,-0.0162964,-0.0236206,-0.032074,-0.036377,-0.0344238,-0.0230103,-0.00817871,0.0101929,0.0297241,0.0453796,0.0561829,0.0627441,0.0675964,0.0679321,0.0597839,0.0473938,0.0381775,0.0361633,0.0324707,0.020752,0.00793457,-0.0050354,-0.015564,-0.0269775,-0.0309448,-0.0353088,-0.0375061,-0.0397339,-0.0378418,-0.0259094,-0.0105286,-0.00402832,-0.00436401,-0.00302124,0.00195312,-0.00222778,-0.0126038,-0.0276489,-0.0376587,-0.049469,-0.0576477,-0.060791,-0.0577087,-0.0551147,-0.0563049,-0.0556335,-0.0499878,-0.0461731,-0.0429382,-0.0375977,-0.0264282,-0.0190735,-0.0227661,-0.0313416,-0.0346985,-0.0324707,-0.0353699,-0.0489807,-0.0630798,-0.0741577,-0.0822754,-0.0916748,-0.0983276,-0.101074,-0.101624,-0.100952,-0.0967102,-0.0889282,-0.0783997,-0.0673828,-0.058197,-0.0468445,-0.0383301,-0.0332947,-0.0296021,-0.0239563,-0.0221558,-0.0224304,-0.0221558,-0.0228271,-0.0239563,-0.0238953,-0.0245056,-0.0214233,-0.0190735,-0.0181885,-0.0142212,-0.0020752,0.0088501,0.0185852,0.024353,0.0296631,0.036377,0.0447693,0.0481262,0.0458374,0.0438843,0.0431519,0.041748,0.0378418,0.0353088,0.0392761,0.0422058,0.0418701,0.0440979,0.0555115,0.0696106,0.0809326,0.0922241,0.104889,0.115021,0.120331,0.124176,0.128937,0.132416,0.130127,0.121399,0.112152,0.102142,0.092804,0.0821533,0.0708618,0.0589905,0.0518799,0.0464478,0.0428162,0.0377197,0.0334167,0.032074,0.0339661,0.0334167,0.032074,0.0314636,0.0314026,0.0273743,0.0210876,0.0172424,0.0178528,0.0185242,0.0178528,0.0171204,0.0153809,0.0134888,0.012146,0.0122681,0.0125427,0.0109253,0.0107422,0.013092,0.0123596,0.00515747,-0.00497437,-0.0150452,-0.0236816,-0.0327454,-0.0479126,-0.0667725,-0.0812683,-0.09021,-0.0963745,-0.105835,-0.11792,-0.126373,-0.125031,-0.121613,-0.123901,-0.126709,-0.129059,-0.126495,-0.121277,-0.118866,-0.118713,-0.119202,-0.115631,-0.111084,-0.111938,-0.114563,-0.113159,-0.108063,-0.105499,-0.106567,-0.109467,-0.112,-0.114563,-0.115906,-0.110931,-0.101807,-0.0910645,-0.0838928,-0.0783997,-0.0716248,-0.0589905,-0.0434265,-0.0290527,-0.0187378,-0.0111389,-0.00845337,-0.00402832,0.00357056,0.0144958,0.0205383,0.0226135,0.024353,0.029541,0.0378418,0.0492554,0.0604553,0.0679321,0.0706177,0.0710754,0.0745544,0.0851135,0.0991211,0.10791,0.108063,0.106049,0.109863,0.118866,0.128601,0.13678,0.139923,0.138733,0.136993,0.140259,0.145905,0.153076,0.157257,0.155762,0.148804,0.142609,0.137451,0.135437,0.131805,0.12262,0.106506,0.0886536,0.0757141,0.0698547,0.0643005,0.0546875,0.0426025,0.0293884,0.0196533,0.0149536,0.0171204,0.0200806,0.0185852,0.013092,0.00912476,0.0114136,0.0187988,0.0265198,0.0322266,0.0339661,0.0340881,0.0311279,0.0297241,0.0310669,0.0341492,0.0315552,0.0215454,0.0112,0.00256348,-0.00228882,-0.00973511,-0.0168457,-0.0270996,-0.0393372,-0.0551147,-0.0718079,-0.0819397,-0.0903931,-0.0996094,-0.115692,-0.131012,-0.143829,-0.151398,-0.15625,-0.1586,-0.160797,-0.162811,-0.163025,-0.160522,-0.153625,-0.145172,-0.137848,-0.131195,-0.126495,-0.120667,-0.114624,-0.111664,-0.107666,-0.102814,-0.100342,-0.104706,-0.112762,-0.116302,-0.109741,-0.100067,-0.0940857,-0.0941467,-0.0906067,-0.0798035,-0.0649719,-0.049408,-0.0376587,-0.0280457,-0.019928,-0.0145569,-0.00973511,-0.00296021,0.00637817,0.0108643,0.0113525,0.00817871,0.0113525,0.0203247,0.0324097,0.0403442,0.0434875,0.0471802,0.0548401,0.0674438,0.0808716,0.0922241,0.10376,0.112091,0.118469,0.12384,0.130798,0.139252,0.146118,0.151825,0.149384,0.147705,0.1492,0.154907,0.160065,0.160187,0.156708,0.148987,0.142273,0.136993,0.132751,0.126312,0.115173,0.100616,0.0842896,0.0705261,0.0596619,0.049408,0.036438,0.0227661,0.0112,0.00296021,-0.00213623,-0.00302124,-0.00256348,-0.00457764,-0.0101929,-0.0104675,-0.00564575,0.00128174,0.0085144,0.0151672,0.0216675,0.0256348,0.0279846,0.0292664,0.0322266,0.0376587,0.0381165,0.032135,0.024231,0.0169678,0.0117493,0.00543213,-0.00335693,-0.0147705,-0.028717,-0.0445557,-0.0603943,-0.0747681,-0.0871887,-0.102875,-0.118042,-0.133148,-0.145782,-0.154633,-0.160339,-0.163086,-0.166321,-0.169403,-0.169861,-0.166107,-0.158325,-0.149048,-0.137787,-0.127777,-0.117249,-0.106903,-0.0975952,-0.091156,-0.0835571,-0.0758362,-0.0714111,-0.0714111,-0.0734253,-0.0708618,-0.0654907,-0.06073,-0.058136,-0.0579834,-0.0564575,-0.0510864,-0.0421448,-0.0322266,-0.0238342,-0.0170593,-0.0101929,-0.00906372,-0.00958252,-0.00610352,-0.00140381,0.000732422,-0.00543213,-0.0110168,-0.0110779,-0.00357056,0.00558472,0.011261,0.0139465,0.0193176,0.0273743,0.0381165,0.0506592,0.0676575,0.0860291,0.0999451,0.106567,0.113495,0.121826,0.13147,0.136841,0.137451,0.136719,0.134979,0.135559,0.139252,0.142334,0.143829,0.139923,0.134491,0.127655,0.122406,0.117188,0.111084,0.101288,0.0877075,0.0732117,0.0588684,0.0469666,0.0341492,0.0204163,0.00759888,-0.00598145,-0.0175171,-0.0241089,-0.0224915,-0.0220032,-0.0218201,-0.0229492,-0.0220032,-0.0180664,-0.0135498,-0.00698853,-0.000610352,0.00576782,0.0105286,0.0111389,0.0127563,0.0151672,0.0196533,0.0204163,0.0177917,0.0115967,0.00564575,0.000549316,-0.00424194,-0.00866699,-0.015625,-0.0238953,-0.0296631,-0.0337524,-0.0406799,-0.0481873,-0.0544434,-0.0559082,-0.0602112,-0.069458,-0.0764465,-0.0803223,-0.0836182,-0.0887146,-0.091156,-0.0914001,-0.0931396,-0.094635,-0.0920105,-0.089386,-0.0874634,-0.0862427,-0.0797424,-0.0740967,-0.0683899,-0.0635681,-0.0551147,-0.0457764,-0.0381775,-0.0340271,-0.03302,-0.0336304,-0.0307312,-0.0249023,-0.0235596,-0.0250854,-0.0238342,-0.0195312,-0.0175781,-0.0172424,-0.0159607,-0.0104065,-0.00692749,-0.00692749,-0.00726318,-0.00549316,-0.00341797,-0.00234985,-0.000671387,-0.00262451,-0.00570679,-0.0108032,-0.0140991,-0.0159607,-0.016449,-0.0169678,-0.0175781,-0.016571,-0.0132141,-0.0085144,-0.00201416,0.00631714,0.0153809,0.0222778,0.0274353,0.03302,0.0399475,0.0471191,0.0510864,0.0526733,0.0549011,0.056366,0.057251,0.0587158,0.062561,0.0672607,0.0704651,0.0729675,0.0759583,0.0792542,0.0817566,0.0856323,0.0884705,0.0876465,0.0851135,0.0798035,0.074646,0.0672607,0.0599976,0.0521545,0.0419312,0.0308838,0.0189819,0.0105896,0.00268555,-0.00357056,-0.0085144,-0.0133667,-0.0152893,-0.0171204,-0.0163879,-0.0137024,-0.0104675,-0.00726318,-0.0050354,-0.00296021,-0.00012207,0.0050354,0.0104675,0.0145569,0.0149536,0.0153809,0.0137024,0.0144348,0.0132751,0.0132751,0.0110779,0.0101318,0.00827026,0.00692749,0.00698853,0.00616455,0.00531006,0.0038147,0.00274658,-0.00180054,-0.00683594,-0.0113525,-0.0148315,-0.0169067,-0.0205994,-0.0281067,-0.0340881,-0.0374451,-0.0383911,-0.0418701,-0.0446167,-0.0466309,-0.0459595,-0.0461121,-0.0476379,-0.0512085,-0.052887,-0.0523376,-0.0508728,-0.0505981,-0.0517578,-0.0513306,-0.0513306,-0.0477905,-0.0437012,-0.0400085,-0.0403442,-0.0410767,-0.0420837,-0.0401917,-0.0383301,-0.0390625,-0.0400085,-0.0406189,-0.0406189,-0.0401306,-0.0390625,-0.037384,-0.0381775,-0.0404053,-0.041687,-0.0414734,-0.0405273,-0.0404053,-0.0422058,-0.0414124,-0.0418091,-0.0406189,-0.0404663,-0.036499,-0.0326233,-0.0288696,-0.0263672,-0.024231,-0.0198059,-0.0148315,-0.0085144,-0.0020752,0.00222778,0.00784302,0.0112,0.016449,0.020813,0.0256958,0.0290527,0.0298767,0.0312805,0.0331421,0.0354919,0.0371094,0.0377808,0.0399475,0.0413513,0.041626,0.0411987,0.041626,0.0441589,0.0456238,0.0436096,0.0430908,0.0401306,0.0386658,0.0354309,0.0308838,0.0279846,0.0260315,0.0250244,0.0238953,0.024353,0.0263672,0.0281982,0.0304565,0.0334778,0.039856,0.045166,0.0522766,0.0597839,0.0664978,0.0717468,0.0764465,0.0791931,0.0804749,0.0757751,0.0701294,0.0619507,0.0592041,0.0542908,0.0462952,0.0368347,0.0282593,0.0235596,0.0195312,0.0151062,0.00939941,0.00683594,0.00784302,0.00985718,0.0119324,0.0138245,0.0162964,0.0185852,0.0206604,0.0201416,0.0206604,0.0204773,0.0180664,0.0146179,0.012207,0.00765991,0.00161743,-0.00457764,-0.0108032,-0.0150452,-0.020752,-0.0238953,-0.0265808,-0.0292664,-0.0315552,-0.0322876,-0.0323486,-0.0330811,-0.0344849,-0.0357056,-0.0361633,-0.0345764,-0.0346985,-0.0349731,-0.0361023,-0.0381165,-0.0411377,-0.0458374,-0.0505981,-0.0546265,-0.0579834,-0.0621338,-0.0658264,-0.0688477,-0.0711975,-0.0728149,-0.0739746,-0.072876,-0.0723572,-0.0712891,-0.0691223,-0.0668335,-0.0630798,-0.058197,-0.0549622,-0.0523376,-0.0498047,-0.0469055,-0.0440979,-0.0422668,-0.0411377,-0.0406799,-0.0397339,-0.0390625,-0.0369873,-0.0356445,-0.0337524,-0.0305481,-0.0289917,-0.0257568,-0.0226746,-0.0195923,-0.0158386,-0.0145569,-0.011261,-0.0083313,-0.00543213,-0.00415039,-0.00314331,-0.00106812,-0.000457764,0.000610352,0.000274658,-0.000335693,0.000213623,0.000457764,-0.000274658,0.00012207,0.000732422,0.00280762,0.00436401,0.00592041,0.00778198,0.0103455,0.0137024,0.0161743,0.0190735,0.0236206,0.02771,0.0320129,0.0354309,0.0385132,0.0429382,0.0468445,0.0507507,0.0525513,0.0559082,0.0578613,0.0594482,0.0605469,0.0609436,0.0624695,0.0626221,0.0636292,0.0643005,0.0648193,0.0662537,0.0661621,0.0661621,0.06604,0.0666504,0.0673218,0.0668335,0.0664368,0.0649719,0.0635681,0.0619507,0.0610657,0.0596008,0.0567932,0.0549011,0.0526733,0.0495911,0.0470581,0.0435486,0.0422058,0.0380554,0.0347595,0.0319519,0.0292053,0.0257568,0.0227661,0.0202026,0.0167236,0.0135498,0.00985718,0.00793457,0.00531006,0.000946045,-0.00241089,-0.00582886,-0.0106812,-0.016449,-0.0206604,-0.0248413,-0.0305481,-0.0353088,-0.0409546,-0.0457153,-0.0491943,-0.0532227,-0.0569153,-0.0609436,-0.0637512,-0.0654297,-0.0683899,-0.0710144,-0.0724182,-0.0720825,-0.0716248,-0.0725403,-0.0718689,-0.0711975,-0.0712891,-0.0696106,-0.0687866,-0.0670471,-0.0653687,-0.0632324,-0.0614624,-0.0585327,-0.0559082,-0.0548401,-0.0515442,-0.0508728,-0.0491943,-0.0490723,-0.0481262,-0.0467834,-0.0462952,-0.0463867,-0.0464478,-0.0467224,-0.0463867,-0.0462341,-0.045105,-0.0440979,-0.0412903,-0.039856,-0.0374451,-0.0352478,-0.032074,-0.028717,-0.0263672,-0.0239563,-0.0203247,-0.0177307,-0.0145569,-0.0125427,-0.00946045,-0.00759888,-0.00683594,-0.0050354,-0.00408936,-0.00335693,-0.00189209,-0.000793457,0.00280762,0.00430298,0.00732422,0.00900269,0.0113525,0.0147705,0.0169678,0.0205383,0.0238953,0.0282593,0.0318909,0.0366516,0.0411377,0.0457764,0.0501404,0.0543518,0.0587769,0.0619507,0.0641479,0.0666504,0.0687866,0.0701904,0.0705261,0.070343,0.0715332,0.0720825,0.0711365,0.070343,0.0700073,0.0693359,0.0687866,0.0676575,0.066925,0.0671692,0.0658264,0.0654907,0.0636902,0.0628967,0.0611267,0.0591125,0.0578613,0.0569153,0.0551147,0.0534973,0.050415,0.0483093,0.0467834,0.0443726,0.0429382,0.0406189,0.0380554,0.0356445,0.0319519,0.0283813,0.0240173,0.0212097,0.0167236,0.012085,0.0085144,0.00436401,-0.000946045,-0.00616455,-0.0108032,-0.0157166,-0.0190735,-0.0234375,-0.0270996,-0.0298767,-0.0346375,-0.0377808,-0.040802,-0.0436096,-0.0457764,-0.0485229,-0.0503235,-0.0524902,-0.0540161,-0.0550232,-0.0551758,-0.0561218,-0.056366,-0.0564575,-0.0565186,-0.0568542,-0.057251,-0.0579224,-0.058136,-0.0585938,-0.0598755,-0.0602112,-0.0614014,-0.0622253,-0.0634766,-0.0645752,-0.0663147,-0.0664978,-0.0671082,-0.0675049,-0.0671692,-0.0665894,-0.0656433,-0.0644226,-0.0628052,-0.0609436,-0.0590515,-0.0556946,-0.0541077,-0.0518188,-0.048645,-0.0462952,-0.0423584,-0.0396118,-0.0369263,-0.0347595,-0.0331421,-0.0310669,-0.0294495,-0.028717,-0.0270386,-0.0259094,-0.025238,-0.0248413,-0.0235596,-0.0212708,-0.0194092,-0.0172424,-0.0142212,-0.00946045,-0.00408936,0.000671387,0.00738525,0.0122681,0.0195923,0.0240173,0.0281982,0.032959,0.0379333,0.0412903,0.0434265,0.0461731,0.0498047,0.0512085,0.0534363,0.0542297,0.0558472,0.057251,0.0589294,0.0596008,0.0610046,0.0634155,0.0643616,0.0652466,0.0667114,0.0675964,0.0691833,0.069458,0.0699463,0.0691223,0.0693359,0.068512,0.0675964,0.0673218,0.0667114,0.0665894,0.0644836,0.0634766,0.0619507,0.0612183,0.0600586,0.0576477,0.0562439,0.0548401,0.0536804,0.0512695,0.0502014,0.0482483,0.0467224,0.0452271,0.0430908,0.0410767,0.0383911,0.036377,0.0335693,0.0309448,0.0285339,0.0256958,0.0227661,0.0194702,0.015564,0.0122681,0.00793457,0.0038147,-0.00100708,-0.00415039,-0.0083313,-0.0118713,-0.0157166,-0.0188599,-0.0222778,-0.0261841,-0.0297852,-0.0334167,-0.0371704,-0.0418091,-0.0459595,-0.0504761,-0.0547791,-0.0587769,-0.0626221,-0.0657043,-0.0697937,-0.0730896,-0.0762329,-0.0787964,-0.080658,-0.0822754,-0.08255,-0.0823364,-0.081665,-0.0812683,-0.0803223,-0.0787964,-0.077179,-0.0753784,-0.073761,-0.0712891,-0.0688477,-0.0658264,-0.0636902,-0.0614624,-0.0584412,-0.056366,-0.0552368,-0.0541077,-0.0523376,-0.0514221,-0.049469,-0.0495911,-0.0476379,-0.0470581,-0.0452881,-0.0432129,-0.0412903,-0.0401917,-0.0368347,-0.0345764,-0.0322266,-0.0297852,-0.0255737,-0.0227661,-0.0195312,-0.0161133,-0.0125427,-0.00906372,-0.00717163,-0.00491333,-0.00112915,0.00140381,0.00442505,0.00744629,0.0102539,0.0134277,0.0166321,0.019928,0.0224304,0.0261841,0.0282593,0.0307922,0.0340271,0.0370483,0.0415344,0.04422,0.0481873,0.0505371,0.0549011,0.057312,0.06073,0.0619507,0.0645752,0.0671692,0.0696106,0.0724182,0.0805359,0.0931396,0.0914917,0.0769043,0.0730896,0.0849609,0.103424,0.104034,0.082428,0.0533447,0.0610046,0.0993958,0.0922241,0.0383301,0.0369263,0.0988464,0.123505,0.0856323,0.0420837,0.0344849,0.0439453,0.0420837,0.0261841,0.0126953,0.0131531,0.0136108,0.0158997,0.0320129,0.0445557,0.052002,0.057312,0.0583801,0.0687866,0.0899353,0.0992737,0.0736389,0.0569763,0.0643616,0.0622864,0.0468445,0.0190735,-0.00442505,-0.0246887,-0.0344849,-0.0387268,-0.0379333,-0.0403442,-0.0632935,-0.0822144,-0.0776367,-0.0681763,-0.0737,-0.0713501,-0.0512695,-0.0447083,-0.062561,-0.0817566,-0.0903931,-0.101685,-0.11377,-0.127991,-0.153625,-0.17569,-0.184692,-0.188721,-0.183685,-0.177368,-0.186035,-0.194824,-0.181549,-0.154083,-0.128448,-0.103088,-0.0837708,-0.0666504,-0.0491333,-0.0424194,-0.046051,-0.0492554,-0.0377808,-0.0340881,-0.0515442,-0.0738831,-0.0872498,-0.0907288,-0.0894775,-0.0879822,-0.0920715,-0.0964966,-0.0879822,-0.0646362,-0.0312805,-0.00726318,0.00201416,0.0100098,0.013031,0.00469971,0.00509644,0.0190735,0.0223389,0.0157166,0.0128174,0.0126953,0.0160522,0.0238342,0.038269,0.0591125,0.0793152,0.0903931,0.100006,0.127655,0.168732,0.203766,0.222473,0.226562,0.222809,0.218933,0.222137,0.224976,0.222412,0.213898,0.194427,0.164551,0.138184,0.129333,0.132355,0.12973,0.112823,0.0875244,0.0734863,0.078125,0.0872498,0.0926819,0.0897217,0.081665,0.0730896,0.0626221,0.0549622,0.0543518,0.0595398,0.0586548,0.0430908,0.0234985,0.013031,0.015564,0.0209961,0.0205994,0.0123596,0.00274658,-0.00088501,0.00146484,0.00408936,0.00415039,-0.00268555,-0.0193176,-0.0401917,-0.0559082,-0.0635681,-0.069397,-0.078125,-0.09021,-0.107788,-0.125366,-0.13913,-0.145233,-0.146301,-0.147522,-0.157654,-0.168793,-0.177368,-0.179657,-0.175171,-0.172485,-0.17865,-0.193207,-0.206177,-0.213348,-0.218201,-0.218384,-0.219727,-0.220947,-0.229919,-0.239929,-0.2453,-0.244965,-0.24295,-0.234375,-0.221008,-0.202698,-0.180389,-0.152222,-0.122559,-0.0918884,-0.0587769,-0.0319519,-0.0185242,-0.0128784,0.00088501,0.0198669,0.0307312,0.0340881,0.0400696,0.0504761,0.0526733,0.0527649,0.0596619,0.0729675,0.082428,0.0838318,0.078064,0.0743713,0.0787354,0.091156,0.103302,0.111603,0.118591,0.12793,0.139191,0.151825,0.165222,0.178528,0.192871,0.204041,0.210663,0.222137,0.24115,0.262482,0.276306,0.279877,0.276978,0.273621,0.267853,0.258667,0.245972,0.227325,0.203491,0.177582,0.154755,0.13382,0.111877,0.0840149,0.0569153,0.0335693,0.0131531,-0.00442505,-0.0139465,-0.0133667,-0.00866699,-0.00537109,-0.00631714,-0.00274658,0.00726318,0.0189819,0.028595,0.0379944,0.0437012,0.0462341,0.0443726,0.0431519,0.0403442,0.0350952,0.0259705,0.0137634,0.000610352,-0.00967407,-0.0215454,-0.0361633,-0.0508728,-0.0675049,-0.0874634,-0.113892,-0.139526,-0.15918,-0.177124,-0.199249,-0.221954,-0.238129,-0.247711,-0.25592,-0.259857,-0.260803,-0.262024,-0.269653,-0.274292,-0.269531,-0.256317,-0.246307,-0.240662,-0.234436,-0.225769,-0.223633,-0.221466,-0.20343,-0.172485,-0.144226,-0.127106,-0.113342,-0.0908813,-0.0620117,-0.0363159,-0.0209351,-0.0101318,0.00100708,6.10352e-05,-0.00967407,-0.0147095,-0.00228882,0.0162354,0.0191956,0.011261,0.00811768,0.0185242,0.0326233,0.0426025,0.048584,0.0522766,0.0518799,0.0547791,0.0710754,0.0993958,0.129059,0.147034,0.153503,0.162415,0.183289,0.205566,0.221222,0.235046,0.244751,0.247864,0.246979,0.249725,0.26355,0.272888,0.27066,0.255585,0.236176,0.220734,0.208313,0.195435,0.17865,0.1586,0.133759,0.106323,0.0787354,0.0559082,0.0350952,0.0155029,-0.00497437,-0.0233459,-0.0361633,-0.0384521,-0.0298767,-0.0145569,-0.00424194,-0.000610352,0.00323486,0.0144958,0.0281982,0.0405273,0.0515442,0.0566406,0.0556335,0.0473022,0.0388489,0.0336304,0.0304565,0.0230103,0.011261,-0.00375366,-0.0169067,-0.0275879,-0.0430298,-0.0580444,-0.0683289,-0.0793152,-0.105103,-0.131683,-0.146851,-0.157593,-0.177795,-0.198792,-0.208527,-0.215637,-0.228241,-0.238464,-0.240814,-0.239594,-0.24054,-0.242828,-0.241882,-0.235107,-0.225098,-0.217529,-0.212067,-0.210266,-0.207916,-0.198395,-0.181274,-0.158264,-0.12851,-0.101196,-0.0810852,-0.0653687,-0.0413513,-0.0183105,-0.00531006,0.00189209,0.00616455,0.00369263,0.00128174,0.00146484,0.0126953,0.0245667,0.0313416,0.0283813,0.0222778,0.0250854,0.0326233,0.0395203,0.0405273,0.0369873,0.0405273,0.0545654,0.0733643,0.0910034,0.111084,0.131744,0.146362,0.158386,0.169403,0.182892,0.204163,0.221466,0.231079,0.233154,0.23941,0.251678,0.25885,0.260193,0.254639,0.241669,0.220459,0.197052,0.184021,0.169403,0.146698,0.119324,0.0932312,0.070343,0.0422668,0.0138245,-0.00991821,-0.0256958,-0.0423584,-0.0612793,-0.0704041,-0.061554,-0.0477905,-0.0397949,-0.0336304,-0.0218811,-0.00744629,0.00549316,0.0178528,0.0328064,0.0481873,0.0560303,0.0525513,0.0444946,0.0400696,0.0363159,0.0296631,0.0191345,0.00973511,-0.00195312,-0.0167236,-0.0312195,-0.045166,-0.0565186,-0.0717468,-0.094635,-0.116638,-0.13382,-0.148193,-0.164307,-0.181335,-0.197571,-0.208527,-0.222229,-0.237061,-0.247986,-0.250122,-0.251801,-0.257935,-0.259521,-0.256256,-0.251007,-0.248779,-0.244965,-0.237305,-0.224823,-0.20813,-0.182617,-0.149597,-0.115021,-0.0895996,-0.0656433,-0.0348206,-0.00524902,0.0133667,0.0281067,0.0377808,0.039856,0.0363159,0.0331421,0.0355835,0.0396729,0.0395203,0.0303955,0.0185242,0.0211487,0.0279236,0.0323486,0.0332947,0.0361633,0.04422,0.0549011,0.0716248,0.0968323,0.123505,0.147125,0.160797,0.172485,0.181946,0.19455,0.208923,0.220612,0.229401,0.234039,0.237976,0.247253,0.261017,0.268311,0.262695,0.249542,0.233276,0.21759,0.201691,0.186768,0.170471,0.144562,0.113953,0.0826721,0.0569153,0.0307922,0.00247192,-0.0260315,-0.0489807,-0.0643005,-0.0749817,-0.0752258,-0.0653687,-0.0518188,-0.0401917,-0.0345764,-0.0230103,-0.00390625,0.0151672,0.0298767,0.0396729,0.0480652,0.052948,0.0465698,0.0369263,0.0280457,0.0216675,0.0083313,-0.0115967,-0.0299377,-0.0424194,-0.0559692,-0.070282,-0.0820923,-0.0919495,-0.107849,-0.128387,-0.141144,-0.149658,-0.158051,-0.171478,-0.18457,-0.196716,-0.20871,-0.220612,-0.232697,-0.238983,-0.241272,-0.245178,-0.253754,-0.259674,-0.253235,-0.241669,-0.234497,-0.232697,-0.229065,-0.214752,-0.190216,-0.163818,-0.143616,-0.119812,-0.0855713,-0.0536194,-0.0346375,-0.0236816,-0.00308228,0.0232239,0.036377,0.0322876,0.028656,0.0354919,0.0469055,0.0501404,0.0440369,0.0420227,0.0473022,0.0534363,0.0536804,0.0561829,0.0642395,0.0775146,0.0854492,0.0891418,0.101685,0.119202,0.134094,0.144562,0.157104,0.163971,0.167786,0.169922,0.178192,0.190735,0.202209,0.204498,0.210327,0.22644,0.244507,0.251404,0.249878,0.248718,0.247528,0.239532,0.227112,0.214508,0.202606,0.186432,0.164032,0.134766,0.103363,0.0740967,0.0470581,0.0202637,-0.00793457,-0.0342407,-0.0522156,-0.0622253,-0.0646362,-0.0643005,-0.0623474,-0.0574646,-0.0475159,-0.0390625,-0.0306702,-0.0224304,-0.0088501,0.00112915,0.0012207,6.10352e-05,-0.00134277,-0.00180054,-0.00491333,-0.0124207,-0.0182495,-0.0266418,-0.0358276,-0.0436096,-0.0479736,-0.0491333,-0.0567932,-0.0678406,-0.0800781,-0.0877075,-0.0966492,-0.110596,-0.123169,-0.134369,-0.147644,-0.163208,-0.181671,-0.197052,-0.208252,-0.220612,-0.233215,-0.240479,-0.24295,-0.245636,-0.249054,-0.247437,-0.240417,-0.234161,-0.228455,-0.216583,-0.195648,-0.170349,-0.14563,-0.122742,-0.0979309,-0.0714722,-0.0448303,-0.0260315,-0.0109253,0.00631714,0.0209351,0.0267639,0.0289917,0.0331421,0.0391846,0.04422,0.0440979,0.0420837,0.0437622,0.0448914,0.0438232,0.0449524,0.0487366,0.0552979,0.0614014,0.0691223,0.0771179,0.0858459,0.0925598,0.0974426,0.101959,0.106567,0.111877,0.114349,0.115845,0.117798,0.12207,0.130737,0.14267,0.157196,0.171539,0.185516,0.197327,0.206299,0.214569,0.222565,0.226776,0.226379,0.220276,0.212067,0.203217,0.187775,0.166901,0.139923,0.111755,0.081543,0.0526733,0.0246887,0.003479,-0.0110779,-0.0244446,-0.0367126,-0.0467834,-0.0511475,-0.0516663,-0.0480652,-0.0463867,-0.0437622,-0.038269,-0.032135,-0.0246277,-0.0158386,-0.00637817,-0.000549316,0.00106812,-0.000274658,-0.000946045,0.00106812,0.00222778,0.000457764,-0.00570679,-0.0088501,-0.00872803,-0.0083313,-0.0133667,-0.0206604,-0.024231,-0.0310059,-0.036438,-0.0410156,-0.0428162,-0.0525513,-0.0708618,-0.0932312,-0.118134,-0.134888,-0.149323,-0.16806,-0.185913,-0.193695,-0.193298,-0.194824,-0.197174,-0.193756,-0.188202,-0.175964,-0.163086,-0.150726,-0.136047,-0.123077,-0.109314,-0.0942993,-0.0764465,-0.0632935,-0.0578613,-0.0528259,-0.0484619,-0.0410767,-0.0359802,-0.0339661,-0.0345764,-0.0310059,-0.0219421,-0.0137024,-0.00415039,0.00357056,0.0108032,0.0163879,0.0240173,0.032074,0.0378418,0.0386047,0.0369873,0.0357056,0.0353088,0.0345764,0.0304565,0.0248413,0.0224915,0.0187378,0.0115356,0.00222778,-0.00195312,-0.00302124,-0.0012207,-0.000335693,0.00582886,0.0154419,0.0256958,0.0371094,0.0512085,0.0649109,0.0779724,0.0883179,0.0961609,0.10141,0.108337,0.11496,0.115509,0.108856,0.101807,0.0918884,0.0775146,0.0643005,0.0565186,0.0512085,0.046051,0.0391846,0.0333557,0.0287781,0.0294495,0.0348206,0.0422058,0.0487976,0.0545044,0.0629578,0.0748291,0.0891418,0.0968323,0.0959778,0.0928955,0.0927429,0.0926819,0.0883179,0.0771179,0.0683899,0.0630798,0.0571899,0.0497437,0.0428772,0.0360413,0.032135,0.0284424,0.0270996,0.0284424,0.0324097,0.0365906,0.0397339,0.0436096,0.0456238,0.0429382,0.0349731,0.0255127,0.0197449,0.0114136,-0.0012207,-0.0152893,-0.0281982,-0.0419312,-0.053833,-0.0661011,-0.077179,-0.0828247,-0.0863037,-0.0896606,-0.0899963,-0.0842896,-0.078125,-0.0730286,-0.0701294,-0.0637512,-0.0583191,-0.0559082,-0.0565796,-0.0561829,-0.0556335,-0.058197,-0.0644226,-0.0724182,-0.079071,-0.0856323,-0.0932312,-0.098114,-0.103088,-0.105652,-0.106171,-0.102966,-0.0996094,-0.094696,-0.0880432,-0.0830078,-0.0792542,-0.0754395,-0.0704651,-0.0664368,-0.0638123,-0.0636902,-0.0644836,-0.0654907,-0.0676575,-0.0706787,-0.0733032,-0.0726929,-0.0712891,-0.0718079,-0.0706787,-0.0656433,-0.0577087,-0.04953,-0.0427551,-0.0353699,-0.0258484,-0.0146179,-0.00570679,0.00268555,0.0118103,0.0191956,0.0234985,0.0245056,0.0267029,0.0272522,0.0284424,0.0261841,0.0227661,0.0191345,0.0177307,0.0159607,0.0152283,0.0169678,0.0214844,0.0254211,0.0318909,0.0395203,0.0514832,0.0628967,0.0741577,0.0869141,0.104706,0.123077,0.133423,0.134369,0.134155,0.134766,0.133209,0.126495,0.117981,0.108521,0.100616,0.0967102,0.102356,0.105042,0.0957642,0.0814209,0.0811462,0.0882568,0.0888062,0.0818787,0.0773926,0.0783997,0.0808716,0.0857849,0.0832214,0.0751038,0.0679321,0.0649719,0.0596008,0.0502014,0.0389404,0.0292053,0.0187378,0.0136108,0.00509644,-0.00604248,-0.0142212,-0.0215454,-0.0210876,-0.0185852,-0.0179749,-0.0173035,-0.0152283,-0.00985718,-0.0115967,-0.0137024,-0.0145569,-0.01651,-0.0224915,-0.0324097,-0.041687,-0.049408,-0.0577087,-0.0720215,-0.0858459,-0.0979919,-0.108795,-0.123413,-0.132538,-0.135223,-0.137665,-0.140533,-0.143341,-0.141022,-0.138672,-0.139343,-0.133759,-0.130859,-0.126099,-0.12262,-0.117188,-0.110931,-0.104706,-0.0993347,-0.0947571,-0.0923462,-0.0852966,-0.0776367,-0.0690002,-0.0620728,-0.0541077,-0.0388489,-0.0253601,-0.015625,-0.00805664,0.000457764,0.00772095,0.00827026,0.00604248,0.00128174,-0.00314331,-0.0126953,-0.0232849,-0.032135,-0.0401917,-0.0508728,-0.0606689,-0.0644226,-0.0628967,-0.058136,-0.0521545,-0.0426025,-0.027771,-0.0114746,0.00778198,0.0263672,0.0435486,0.0599976,0.0774536,0.0957642,0.112335,0.128052,0.143158,0.156036,0.168182,0.171875,0.178314,0.18457,0.188599,0.186035,0.180725,0.173035,0.162537,0.152008,0.142761,0.128662,0.106171,0.077179,0.0515442,0.0332336,0.0185242,0.00222778,-0.0162354,-0.0310059,-0.0334167,-0.0266418,-0.016571,-0.00878906,0.00268555,0.0191345,0.0388489,0.0532227,0.0617371,0.069458,0.077301,0.0749817,0.0720825,0.0649109,0.0552368,0.0444336,0.0340271,0.0232239,0.0105896,-0.00146484,-0.00744629,-0.0128174,-0.0160522,-0.0191956,-0.0126038,-0.00213623,0.00448608,0.00717163,0.00772095,0.0101318,0.00946045,0.00167847,-0.00891113,-0.0215454,-0.0361633,-0.0585327,-0.0822144,-0.103149,-0.114838,-0.12384,-0.137726,-0.146362,-0.144501,-0.133636,-0.121552,-0.113434,-0.10672,-0.101349,-0.0926208,-0.0812073,-0.0761108,-0.0756226,-0.0800781,-0.0851135,-0.0864563,-0.0889893,-0.0958252,-0.103363,-0.107849,-0.111267,-0.111938,-0.107849,-0.100189,-0.0879822,-0.0733643,-0.0567932,-0.0404663,-0.0246887,-0.012085,-0.00012207,0.00967407,0.0189209,0.0250244,0.025238,0.0209961,0.0153809,0.0118713,0.00436401,-0.00671387,-0.0206604,-0.0318909,-0.0410156,-0.0438843,-0.0444946,-0.0436096,-0.0412903,-0.0335693,-0.0218811,-0.00598145,0.0124817,0.0307922,0.0481262,0.0672607,0.0814209,0.0940247,0.105164,0.118256,0.127716,0.134644,0.14093,0.150055,0.162018,0.172424,0.180542,0.189453,0.194489,0.194824,0.190399,0.183563,0.174286,0.160004,0.14093,0.120331,0.103821,0.0941467,0.0886536,0.0767822,0.0531616,0.0250244,0.00106812,-0.00918579,-0.012146,-0.0155029,-0.0260925,-0.0339661,-0.0318909,-0.0206604,-0.0065918,-0.000335693,-0.00463867,-0.0106812,-0.00784302,0.00845337,0.0268555,0.0381775,0.0386658,0.0322266,0.0330811,0.0411377,0.036499,0.017395,-0.00100708,-0.00765991,-0.00817871,-0.00924683,-0.0138245,-0.0259094,-0.0297852,-0.0427551,-0.0668335,-0.0969238,-0.121399,-0.134369,-0.139465,-0.145905,-0.163483,-0.175842,-0.182831,-0.182281,-0.184296,-0.18631,-0.182159,-0.179535,-0.177124,-0.182343,-0.18576,-0.183685,-0.181732,-0.184174,-0.189331,-0.184753,-0.175171,-0.15625,-0.132294,-0.111145,-0.0904846,-0.070343,-0.0531006,-0.0454407,-0.0389404,-0.0231628,-0.0071106,0.0088501,0.0166321,0.0247803,0.0322876,0.0369873,0.0361633,0.0269165,0.0177307,0.0114746,0.00918579,0.00985718,0.0140991,0.0209351,0.0313416,0.040741,0.045105,0.0504761,0.0592651,0.0733032,0.0841675,0.0952454,0.104492,0.11731,0.132965,0.147705,0.164551,0.185852,0.20578,0.219879,0.229736,0.242218,0.257263,0.266724,0.265167,0.258667,0.249329,0.237854,0.225311,0.210663,0.193298,0.171814,0.146179,0.119995,0.0903931,0.0592041,0.0331421,0.0155029,-0.00106812,-0.0152893,-0.0249634,-0.02771,-0.0236816,-0.0158997,-0.0111389,-0.0117493,-0.0146179,-0.013031,-0.0101929,-0.00717163,-0.00616455,-0.00167847,-0.00112915,-0.00631714,-0.0134277,-0.0182495,-0.0214233,-0.0283813,-0.0381165,-0.0462952,-0.0548401,-0.0653687,-0.078064,-0.0906067,-0.10437,-0.120331,-0.140594,-0.164825,-0.188934,-0.20639,-0.221619,-0.236786,-0.253082,-0.269073,-0.281952,-0.290009,-0.297516,-0.300537,-0.300873,-0.297577,-0.295441,-0.295624,-0.298523,-0.296448,-0.283234,-0.262085,-0.235718,-0.204224,-0.167786,-0.125305,-0.0774536,-0.0281067,0.011261,0.0370483,0.0499878,0.0603333,0.0654297,0.0683899,0.0741577,0.0822754,0.0883179,0.0907288,0.0932922,0.0997925,0.102753,0.10376,0.0968323,0.0877991,0.0837708,0.0888062,0.101624,0.123016,0.151154,0.181335,0.207916,0.2341,0.261932,0.290619,0.315704,0.329315,0.328979,0.323212,0.319458,0.319275,0.317444,0.312012,0.298309,0.280609,0.258789,0.23941,0.219543,0.19342,0.160278,0.126251,0.090332,0.053894,0.0204773,-0.00857544,-0.0326843,-0.0578613,-0.0777283,-0.09375,-0.102356,-0.103821,-0.093689,-0.0792542,-0.0644226,-0.0509949,-0.0325623,-0.00817871,0.0202026,0.0383911,0.0441589,0.0453796,0.0446167,0.0387268,0.0282593,0.0167847,0.00524902,-0.0109253,-0.0304565,-0.053833,-0.0829468,-0.113892,-0.14267,-0.172699,-0.207397,-0.245361,-0.279449,-0.306702,-0.324554,-0.338135,-0.354767,-0.375977,-0.391602,-0.394226,-0.386322,-0.377167,-0.370483,-0.366028,-0.358185,-0.345245,-0.335632,-0.325378,-0.300079,-0.250397,-0.187439,-0.129272,-0.0799255,-0.0236816,0.0391846,0.0973816,0.131622,0.140198,0.136108,0.127594,0.120605,0.110321,0.101959,0.0986633,0.0977173,0.0973816,0.102295,0.11142,0.118134,0.115173,0.106232,0.0993958,0.104492,0.122009,0.147125,0.179871,0.224976,0.273163,0.312012,0.341217,0.36026,0.378387,0.390808,0.391876,0.380066,0.36142,0.342224,0.331268,0.3237,0.310394,0.281128,0.243561,0.207458,0.176788,0.144897,0.0999451,0.0524902,0.0159607,-0.00973511,-0.0377808,-0.0712891,-0.0962524,-0.110077,-0.118866,-0.127106,-0.133972,-0.129791,-0.113434,-0.0864563,-0.0549622,-0.0265198,-0.00296021,0.0145569,0.0369873,0.0622864,0.0807495,0.0812073,0.0684509,0.0542297,0.0393982,0.0150452,-0.0195312,-0.0551758,-0.0845642,-0.111481,-0.144226,-0.182404,-0.21637,-0.245361,-0.273773,-0.303497,-0.332672,-0.359589,-0.38028,-0.390869,-0.389801,-0.387451,-0.387909,-0.391144,-0.382416,-0.357117,-0.333557,-0.327789,-0.334961,-0.335693,-0.315369,-0.27301,-0.221802,-0.164978,-0.0994568,-0.0310669,0.0352478,0.0875854,0.133484,0.164368,0.170746,0.158386,0.136169,0.116699,0.102142,0.0881958,0.0809937,0.0789185,0.0832214,0.0836792,0.0810852,0.081665,0.0860291,0.0883789,0.0855103,0.086853,0.106506,0.14679,0.202423,0.262543,0.315979,0.360138,0.388519,0.404846,0.410461,0.40564,0.387512,0.357574,0.326843,0.305237,0.28833,0.271484,0.251617,0.229126,0.200256,0.160614,0.120392,0.0807495,0.0434875,0.00704956,-0.0288696,-0.0565796,-0.0792542,-0.0983887,-0.113678,-0.122498,-0.122681,-0.122833,-0.120605,-0.106903,-0.0807495,-0.0448303,-0.00933838,0.0227661,0.0500793,0.0719604,0.0890503,0.101196,0.107513,0.106506,0.0948181,0.0756226,0.0490723,0.015564,-0.0202026,-0.0596619,-0.097168,-0.133209,-0.170685,-0.208862,-0.244507,-0.276184,-0.305695,-0.335846,-0.366699,-0.389343,-0.399994,-0.40155,-0.398804,-0.397644,-0.388794,-0.37149,-0.348724,-0.334106,-0.330139,-0.323761,-0.309387,-0.279602,-0.238068,-0.184631,-0.117798,-0.0481873,0.0256348,0.0934753,0.150482,0.188446,0.19812,0.189545,0.168243,0.144165,0.116455,0.0851746,0.0654297,0.0575867,0.0605469,0.0606689,0.0516663,0.0455627,0.0430298,0.0390625,0.0297852,0.0223389,0.0317993,0.0598755,0.107452,0.168457,0.236053,0.29953,0.346161,0.381073,0.404846,0.411194,0.39389,0.359528,0.329803,0.306915,0.287445,0.263885,0.241547,0.223419,0.202423,0.169006,0.128387,0.089325,0.0496521,0.00643921,-0.0316162,-0.0605469,-0.0852356,-0.109192,-0.128052,-0.134033,-0.133759,-0.135712,-0.136902,-0.125092,-0.0949097,-0.0628967,-0.0312805,0.00262451,0.0445557,0.0814819,0.105316,0.122833,0.136719,0.14624,0.138794,0.122894,0.100128,0.0729675,0.0362549,-0.00576782,-0.0447083,-0.0823364,-0.125702,-0.175232,-0.219116,-0.25827,-0.296783,-0.335632,-0.372681,-0.3992,-0.410126,-0.411346,-0.405518,-0.395966,-0.383026,-0.364227,-0.337982,-0.312225,-0.297058,-0.294556,-0.292145,-0.272552,-0.223572,-0.16214,-0.101074,-0.0404053,0.025238,0.0968323,0.165649,0.218781,0.244507,0.243347,0.224426,0.200409,0.178253,0.152618,0.120728,0.0914001,0.077179,0.0739746,0.0733032,0.0617371,0.0446167,0.0270996,0.0123596,0.000732422,-0.00302124,0.00793457,0.0397949,0.0954285,0.164551,0.233551,0.286163,0.32135,0.349792,0.370941,0.371002,0.345032,0.303497,0.264709,0.245361,0.233765,0.216187,0.188202,0.152679,0.121277,0.0942993,0.0624084,0.0193176,-0.0292053,-0.0691223,-0.0950928,-0.112091,-0.126251,-0.137573,-0.139587,-0.135315,-0.127167,-0.120209,-0.110596,-0.0906677,-0.0586548,-0.0227661,0.0116882,0.0434265,0.0736389,0.108643,0.136169,0.148376,0.144897,0.129791,0.111938,0.093811,0.0678406,0.028595,-0.0149536,-0.0592651,-0.0957642,-0.129333,-0.168243,-0.214081,-0.262604,-0.309052,-0.351288,-0.390076,-0.420471,-0.43811,-0.438385,-0.427185,-0.41153,-0.38974,-0.359741,-0.323486,-0.299255,-0.288513,-0.276184,-0.255157,-0.222748,-0.175171,-0.110992,-0.0366516,0.0316162,0.0875244,0.143951,0.208862,0.260864,0.279266,0.267456,0.245087,0.223572,0.201599,0.174774,0.150604,0.134094,0.12027,0.105164,0.100616,0.098114,0.0826111,0.0512085,0.0169067,0.000274658,0.00228882,0.0167236,0.0524292,0.107452,0.173218,0.239594,0.296387,0.343811,0.378448,0.390411,0.380798,0.35907,0.327179,0.291138,0.2612,0.241821,0.226501,0.201141,0.160278,0.115906,0.0761108,0.0369263,-0.0110779,-0.0686035,-0.122894,-0.162964,-0.181732,-0.187988,-0.185913,-0.184082,-0.181396,-0.168396,-0.146851,-0.118988,-0.0933533,-0.0670471,-0.0370483,0.000274658,0.0370483,0.0732117,0.105042,0.132416,0.150055,0.155243,0.142426,0.116638,0.0833435,0.049469,0.0104065,-0.0326843,-0.0799255,-0.124176,-0.160614,-0.198059,-0.244843,-0.301544,-0.363953,-0.420868,-0.464417,-0.491425,-0.505035,-0.512085,-0.51181,-0.490753,-0.448914,-0.401825,-0.364899,-0.342133,-0.323029,-0.296234,-0.263885,-0.214233,-0.138458,-0.0463867,0.0387268,0.100403,0.162201,0.240936,0.318329,0.354218,0.341003,0.303619,0.27301,0.25,0.233368,0.215759,0.195038,0.169342,0.148376,0.148193,0.1586,0.145355,0.0969238,0.036499,-0.000457764,-0.00650024,0.00515747,0.0296021,0.0719604,0.137054,0.209808,0.278931,0.336639,0.376709,0.398193,0.399475,0.380402,0.347839,0.305176,0.272614,0.264435,0.265625,0.25,0.209045,0.161957,0.130188,0.105042,0.0605469,-0.0124207,-0.0914001,-0.149872,-0.178589,-0.190216,-0.200012,-0.207733,-0.20813,-0.194885,-0.171265,-0.139404,-0.110321,-0.0845642,-0.0584412,-0.0249634,0.0115967,0.048584,0.0832214,0.118866,0.147522,0.160797,0.155762,0.137787,0.116028,0.0892029,0.0487976,-0.00650024,-0.0643005,-0.110077,-0.147125,-0.185638,-0.236847,-0.298798,-0.367371,-0.435303,-0.497253,-0.545166,-0.578247,-0.597443,-0.601685,-0.582275,-0.54187,-0.49115,-0.445038,-0.402161,-0.357513,-0.320618,-0.284027,-0.235962,-0.156769,-0.0516663,0.053009,0.129517,0.19516,0.27536,0.36026,0.419067,0.418457,0.372162,0.313904,0.274506,0.24939,0.22644,0.198914,0.169739,0.1492,0.150604,0.157715,0.147919,0.0991211,0.0256348,-0.0336304,-0.0556335,-0.0510864,-0.0327454,0.000549316,0.0661621,0.161285,0.253235,0.315979,0.355896,0.384552,0.399994,0.38739,0.347504,0.297455,0.263214,0.256775,0.269531,0.27832,0.260864,0.219543,0.182678,0.157867,0.11972,0.0391235,-0.065033,-0.146698,-0.185974,-0.201141,-0.214417,-0.223083,-0.214569,-0.190125,-0.16153,-0.132629,-0.100281,-0.0715332,-0.0461121,-0.0181885,0.0168457,0.0570374,0.0959778,0.134216,0.173828,0.201935,0.203033,0.182068,0.156097,0.127716,0.0832825,0.0220947,-0.0428162,-0.0955811,-0.137238,-0.178864,-0.229919,-0.290405,-0.357391,-0.430878,-0.503967,-0.565155,-0.61026,-0.63974,-0.647797,-0.629669,-0.592804,-0.544159,-0.485962,-0.424713,-0.374237,-0.341797,-0.30484,-0.230133,-0.119049,-0.00939941,0.0677185,0.13382,0.23114,0.352539,0.441956,0.469452,0.447327,0.403503,0.360535,0.325836,0.292755,0.253357,0.202881,0.166504,0.171875,0.198456,0.189941,0.122162,0.0333557,-0.0292664,-0.0657654,-0.103699,-0.139069,-0.132874,-0.0699463,0.0259705,0.123413,0.204834,0.269653,0.318939,0.353638,0.363617,0.336365,0.274689,0.221619,0.216858,0.246185,0.263763,0.249115,0.232941,0.238251,0.241547,0.201477,0.11261,0.0105896,-0.0751038,-0.13623,-0.185699,-0.223297,-0.240204,-0.237518,-0.217194,-0.185364,-0.157928,-0.139526,-0.117462,-0.0854492,-0.048645,-0.0201416,0.00442505,0.0453796,0.110931,0.174225,0.213348,0.226898,0.234711,0.238312,0.223022,0.177643,0.113617,0.0509949,0.000213623,-0.0457153,-0.094574,-0.147797,-0.209473,-0.278931,-0.356842,-0.443085,-0.531006,-0.609131,-0.664215,-0.689056,-0.692749,-0.679718,-0.646851,-0.58725,-0.506165,-0.43335,-0.387115,-0.345764,-0.277435,-0.168579,-0.0462341,0.0536804,0.130402,0.216858,0.335785,0.45752,0.537506,0.544891,0.501801,0.452484,0.424957,0.406586,0.368317,0.306854,0.250549,0.23053,0.237854,0.230255,0.172272,0.0736389,-0.0225525,-0.09021,-0.140472,-0.185181,-0.215698,-0.200256,-0.127838,-0.0245667,0.0653076,0.127655,0.180481,0.230927,0.266724,0.261078,0.213959,0.16275,0.152222,0.190674,0.240143,0.266846,0.269806,0.274109,0.290863,0.289673,0.23645,0.131744,0.0218201,-0.0644836,-0.123749,-0.169861,-0.208862,-0.230255,-0.22879,-0.210602,-0.190002,-0.177246,-0.166504,-0.151947,-0.129944,-0.10611,-0.0791321,-0.0410767,0.0169067,0.0895996,0.15094,0.190338,0.213684,0.229675,0.238739,0.22818,0.190216,0.138245,0.0889893,0.0491333,0.0118713,-0.0317993,-0.0906677,-0.15918,-0.237183,-0.323639,-0.417511,-0.509186,-0.589935,-0.649475,-0.684509,-0.695099,-0.681732,-0.644958,-0.585968,-0.522949,-0.473297,-0.427979,-0.369995,-0.280121,-0.162354,-0.0453796,0.0485229,0.141602,0.261536,0.400055,0.516571,0.577789,0.579651,0.55484,0.535034,0.521271,0.499268,0.455566,0.398468,0.353821,0.337585,0.330261,0.288269,0.193024,0.07724,-0.0259705,-0.111267,-0.186371,-0.248199,-0.272217,-0.244904,-0.179138,-0.103699,-0.0386047,0.0230103,0.0799866,0.125824,0.143158,0.124084,0.0867004,0.0717468,0.102753,0.160736,0.208801,0.23999,0.269653,0.31012,0.343231,0.331879,0.259583,0.158844,0.0666504,-0.00811768,-0.0728149,-0.130524,-0.174042,-0.19281,-0.190338,-0.184296,-0.183685,-0.184296,-0.185181,-0.185516,-0.180603,-0.171936,-0.153168,-0.109863,-0.0426941,0.0293884,0.0876465,0.129852,0.167114,0.201599,0.220123,0.208984,0.1763,0.141205,0.109192,0.0808716,0.0467834,0.00195312,-0.0523376,-0.117126,-0.192535,-0.283569,-0.379791,-0.47464,-0.555023,-0.615234,-0.658722,-0.678925,-0.669403,-0.632538,-0.585114,-0.550537,-0.522217,-0.478729,-0.398376,-0.288177,-0.180939,-0.0929565,-6.10352e-05,0.129669,0.286255,0.430206,0.522766,0.56308,0.578979,0.59967,0.618591,0.618256,0.583618,0.530396,0.492828,0.486176,0.485291,0.44632,0.357849,0.250336,0.148254,0.0458374,-0.0664368,-0.17865,-0.259857,-0.286987,-0.267792,-0.230072,-0.188263,-0.136841,-0.0753784,-0.017395,0.0127563,0.000213623,-0.0322876,-0.0465698,-0.0212708,0.0271912,0.0729675,0.116638,0.173157,0.250946,0.329987,0.367859,0.349731,0.292084,0.222809,0.156525,0.0845642,0.0145569,-0.045105,-0.080658,-0.0944214,-0.100525,-0.105316,-0.111267,-0.118469,-0.13147,-0.156372,-0.183289,-0.202362,-0.193695,-0.162964,-0.123962,-0.0861206,-0.0432739,0.0118713,0.0652466,0.105042,0.11853,0.112335,0.0987244,0.0855713,0.0697327,0.0522766,0.0293274,0.00631714,-0.0222778,-0.0627441,-0.125763,-0.205292,-0.290192,-0.372498,-0.454285,-0.53067,-0.585968,-0.611755,-0.607391,-0.59021,-0.569275,-0.547577,-0.511017,-0.459595,-0.392609,-0.313568,-0.233765,-0.152893,-0.0596619,0.0630798,0.20047,0.327728,0.418518,0.481415,0.53302,0.580414,0.610657,0.619476,0.613281,0.602478,0.590332,0.580536,0.565094,0.529877,0.460724,0.361267,0.251129,0.142609,0.0340881,-0.0722046,-0.160187,-0.213226,-0.231079,-0.228241,-0.21283,-0.188995,-0.154083,-0.128265,-0.123962,-0.14035,-0.156921,-0.157593,-0.135223,-0.0960999,-0.0425415,0.0177917,0.0888672,0.171692,0.251221,0.306366,0.317383,0.293884,0.253632,0.215912,0.175629,0.125092,0.0762939,0.0462341,0.0340271,0.0285339,0.0190735,0.00430298,-0.0138855,-0.0387268,-0.072876,-0.114227,-0.148041,-0.16745,-0.171417,-0.166321,-0.150879,-0.126373,-0.0960388,-0.0619507,-0.0322266,-0.0162964,-0.0152283,-0.0249634,-0.0333557,-0.0353699,-0.039856,-0.0491333,-0.061554,-0.0745544,-0.0897217,-0.118591,-0.165222,-0.222229,-0.281128,-0.341156,-0.396515,-0.4422,-0.468933,-0.481262,-0.482544,-0.47464,-0.456177,-0.430054,-0.393677,-0.348663,-0.295166,-0.240204,-0.181396,-0.107391,-0.00604248,0.109589,0.217438,0.298981,0.367645,0.432831,0.489746,0.524628,0.533966,0.534027,0.539612,0.547974,0.550323,0.538391,0.513611,0.470459,0.408661,0.335571,0.255371,0.1698,0.0804138,-0.00112915,-0.061615,-0.10202,-0.127716,-0.147247,-0.156433,-0.157257,-0.16153,-0.178314,-0.204102,-0.224304,-0.22583,-0.209137,-0.175842,-0.129791,-0.0681763,0.00402832,0.0769653,0.143951,0.195099,0.223419,0.225494,0.213684,0.197327,0.179932,0.158508,0.137054,0.124298,0.123627,0.122833,0.117584,0.109924,0.0999451,0.0791321,0.0410767,-0.00369263,-0.0418701,-0.0696106,-0.0957031,-0.119476,-0.134094,-0.13504,-0.12677,-0.118195,-0.112823,-0.108521,-0.108734,-0.114624,-0.121552,-0.128601,-0.136841,-0.146301,-0.153168,-0.153412,-0.158844,-0.173889,-0.19632,-0.223297,-0.251892,-0.285645,-0.318726,-0.3461,-0.364014,-0.378326,-0.389862,-0.396973,-0.38913,-0.368591,-0.343018,-0.312897,-0.278442,-0.232147,-0.16806,-0.0856323,0.00268555,0.0820923,0.149933,0.212677,0.272491,0.327972,0.371887,0.394562,0.402557,0.406769,0.420868,0.447723,0.476715,0.491333,0.486725,0.471893,0.446045,0.40329,0.342743,0.26651,0.180817,0.0934753,0.0205383,-0.0313416,-0.0634766,-0.0838318,-0.100067,-0.11731,-0.132477,-0.146973,-0.166107,-0.182343,-0.189728,-0.190338,-0.182495,-0.161957,-0.120941,-0.0599365,0.00201416,0.0520935,0.0870361,0.112671,0.132629,0.143555,0.145355,0.141083,0.13739,0.135162,0.140411,0.153229,0.165985,0.17395,0.174225,0.167175,0.15094,0.121216,0.0841064,0.0467834,0.0155029,-0.0157776,-0.0481873,-0.0754395,-0.0891418,-0.0923462,-0.0974426,-0.108124,-0.124695,-0.13858,-0.146698,-0.153015,-0.161682,-0.172028,-0.177856,-0.180206,-0.180725,-0.185577,-0.195038,-0.209595,-0.232941,-0.259857,-0.285583,-0.311401,-0.330811,-0.339203,-0.339478,-0.338593,-0.336243,-0.333435,-0.326233,-0.30658,-0.279449,-0.248535,-0.21698,-0.184021,-0.138519,-0.0736389,0.00750732,0.0887146,0.153687,0.204285,0.244904,0.283752,0.321411,0.344299,0.350952,0.344147,0.3508,0.375763,0.412811,0.44455,0.453094,0.441559,0.412964,0.37616,0.326172,0.25946,0.177124,0.0885315,0.0202637,-0.0231628,-0.049469,-0.0719604,-0.0856323,-0.0888672,-0.0942993,-0.112213,-0.136566,-0.159393,-0.16925,-0.167908,-0.161194,-0.1492,-0.124634,-0.0791321,-0.0180664,0.0418091,0.0787354,0.0904846,0.0959778,0.110657,0.131134,0.140472,0.13623,0.134766,0.149384,0.177124,0.202209,0.209717,0.201599,0.184509,0.16275,0.133148,0.0924683,0.0443726,0.00088501,-0.0274353,-0.0435486,-0.0578613,-0.0747681,-0.0895386,-0.0940247,-0.0995178,-0.115509,-0.142548,-0.165558,-0.176178,-0.17691,-0.176239,-0.177521,-0.176697,-0.174225,-0.169403,-0.170532,-0.182281,-0.202759,-0.224304,-0.243011,-0.258179,-0.276855,-0.292206,-0.290741,-0.277588,-0.266449,-0.271088,-0.282562,-0.283295,-0.270203,-0.247772,-0.231354,-0.215027,-0.183228,-0.128662,-0.0532837,0.0306091,0.105377,0.152496,0.182404,0.211609,0.242279,0.265289,0.27066,0.268066,0.27597,0.306458,0.350189,0.389404,0.421539,0.436523,0.428192,0.394348,0.343231,0.282227,0.210815,0.13974,0.0758972,0.0310059,0.00543213,-0.00759888,-0.00933838,-0.00772095,-0.0112,-0.0353088,-0.0760498,-0.11618,-0.146118,-0.161285,-0.165314,-0.16214,-0.148315,-0.115967,-0.0678406,-0.0149536,0.0283813,0.0484619,0.0502625,0.046051,0.0526123,0.0652466,0.0798035,0.0914917,0.108795,0.13443,0.165039,0.187775,0.194427,0.185577,0.165558,0.131805,0.0922852,0.0544434,0.0238342,0.00509644,-0.00402832,-0.00845337,-0.0140991,-0.0221558,-0.0350342,-0.0508728,-0.0704041,-0.098175,-0.130402,-0.159668,-0.173096,-0.174377,-0.169861,-0.163147,-0.158203,-0.154419,-0.157928,-0.172821,-0.195038,-0.218597,-0.241821,-0.266724,-0.289673,-0.30014,-0.296295,-0.284027,-0.267853,-0.256256,-0.255096,-0.263763,-0.268402,-0.262543,-0.243225,-0.218109,-0.187317,-0.143829,-0.0834961,-0.00985718,0.0673218,0.136047,0.185852,0.210663,0.217712,0.223633,0.235107,0.250122,0.261871,0.275757,0.299744,0.337372,0.381744,0.415649,0.422363,0.401154,0.353088,0.294373,0.228668,0.167999,0.110474,0.0646973,0.0368347,0.0232239,0.0205383,0.0168457,0.00811768,-0.00878906,-0.0380554,-0.0770569,-0.120148,-0.151062,-0.157532,-0.144165,-0.117859,-0.091217,-0.060791,-0.0256958,0.0127563,0.0420227,0.0509338,0.0405273,0.0262451,0.0249634,0.0429382,0.070282,0.0944214,0.115692,0.137329,0.159668,0.172607,0.167511,0.143768,0.10907,0.0729675,0.0422058,0.0175781,-0.00112915,-0.0112,-0.0116882,-0.00900269,-0.0132141,-0.0296021,-0.0540161,-0.0777893,-0.10202,-0.126099,-0.148254,-0.163757,-0.1651,-0.151733,-0.133545,-0.11731,-0.109802,-0.111816,-0.123688,-0.143097,-0.16745,-0.192963,-0.214752,-0.23114,-0.238647,-0.239319,-0.230927,-0.219116,-0.208374,-0.202606,-0.210724,-0.228668,-0.247864,-0.257263,-0.251556,-0.235718,-0.211212,-0.180725,-0.133545,-0.0744934,-0.0149536,0.0406799,0.0852356,0.120148,0.135895,0.14563,0.161682,0.186859,0.220551,0.248047,0.276306,0.306976,0.342224,0.374695,0.392822,0.39328,0.368866,0.326111,0.281128,0.241089,0.211548,0.17804,0.143555,0.111542,0.0908813,0.0762329,0.0551147,0.0265198,-0.00692749,-0.0437622,-0.080658,-0.107117,-0.118317,-0.113678,-0.0976562,-0.077301,-0.0593872,-0.0425415,-0.0289307,-0.0187378,-0.00891113,-0.00323486,-0.00515747,-0.00973511,-0.00201416,0.0227661,0.0578613,0.0865784,0.103363,0.109924,0.112,0.110077,0.101135,0.0860291,0.0657654,0.0400696,0.0177917,0.00631714,0.0032959,-0.000335693,-0.00744629,-0.0175171,-0.0296631,-0.0437622,-0.061615,-0.0769043,-0.0885925,-0.0957642,-0.102142,-0.105042,-0.101349,-0.0908203,-0.0828247,-0.077301,-0.0842896,-0.0994568,-0.120728,-0.142609,-0.160675,-0.17511,-0.185974,-0.191956,-0.194031,-0.194977,-0.197906,-0.198456,-0.197571,-0.205505,-0.220795,-0.237732,-0.253357,-0.264954,-0.264038,-0.25,-0.225708,-0.197998,-0.169342,-0.13269,-0.0831604,-0.0275879,0.0241699,0.0663757,0.100342,0.12793,0.153229,0.185181,0.221558,0.247711,0.259857,0.26947,0.287598,0.316315,0.343079,0.352814,0.348785,0.336578,0.316589,0.290527,0.261078,0.226166,0.181885,0.136505,0.098999,0.0706177,0.048584,0.0281067,0.00637817,-0.0100708,-0.0276489,-0.0452271,-0.0598755,-0.0640259,-0.0569153,-0.0496521,-0.0455627,-0.0410156,-0.0315552,-0.0180664,-0.00424194,0.00396729,0.00738525,0.00750732,0.0065918,0.0122681,0.0258484,0.0396118,0.0457764,0.0459595,0.0465698,0.0475159,0.0477295,0.0422668,0.032959,0.0201416,0.00469971,-0.0114136,-0.0228882,-0.0283203,-0.0314636,-0.036499,-0.0430298,-0.0480652,-0.0501404,-0.0469666,-0.0437012,-0.0397339,-0.0374451,-0.0369263,-0.037384,-0.0375977,-0.0377197,-0.0403442,-0.0457153,-0.0556335,-0.069519,-0.0838318,-0.0963745,-0.108124,-0.119476,-0.130127,-0.143677,-0.161194,-0.178528,-0.191345,-0.203491,-0.217194,-0.237457,-0.257172,-0.272614,-0.282562,-0.289337,-0.289734,-0.283234,-0.271332,-0.252136,-0.221741,-0.178986,-0.13208,-0.0795898,-0.0226746,0.0374451,0.0929565,0.134094,0.162964,0.186981,0.213074,0.2341,0.246429,0.258118,0.274902,0.303894,0.3349,0.361145,0.372742,0.367462,0.347168,0.317596,0.281891,0.240204,0.187775,0.134766,0.0942383,0.0687256,0.052002,0.0383911,0.0241089,0.0101929,-0.00524902,-0.0236206,-0.0415344,-0.0536804,-0.0606079,-0.0618896,-0.0559692,-0.0443726,-0.0324707,-0.019989,-0.00692749,0.00402832,0.00726318,0.0032959,-0.00537109,-0.00692749,-0.00161743,0.00524902,0.00839233,0.0119324,0.0147705,0.0196533,0.0238342,0.0263672,0.0233459,0.0155029,0.00262451,-0.0103455,-0.0230103,-0.0320129,-0.0400085,-0.0438843,-0.0439453,-0.040741,-0.0345764,-0.0241699,-0.012085,-0.000274658,0.00698853,0.00952148,0.00375366,0.00012207,-0.00100708,-0.00195312,-0.00827026,-0.016449,-0.0241089,-0.0291138,-0.0359802,-0.0471802,-0.0634766,-0.0813293,-0.103027,-0.12851,-0.157532,-0.185028,-0.210266,-0.227844,-0.24173,-0.255432,-0.264496,-0.274506,-0.283234,-0.290009,-0.293884,-0.293365,-0.289062,-0.274628,-0.247528,-0.206787,-0.156311,-0.100281,-0.0371094,0.0275879,0.085968,0.127167,0.155426,0.176636,0.192627,0.205231,0.213837,0.22229,0.237061,0.260132,0.291931,0.319794,0.337036,0.338989,0.32431,0.302155,0.270477,0.233276,0.192413,0.15509,0.122681,0.101807,0.0909424,0.0847778,0.0797424,0.0706787,0.0568542,0.036499,0.0138245,-0.00280762,-0.0144958,-0.0223389,-0.0266418,-0.0275879,-0.0219421,-0.0145569,-0.00738525,-0.00375366,-0.00991821,-0.0254211,-0.0445557,-0.0603943,-0.0678406,-0.0709534,-0.0711975,-0.0671692,-0.0589294,-0.0471802,-0.0333557,-0.0203247,-0.0145569,-0.0159607,-0.0239563,-0.0323486,-0.0371704,-0.0390625,-0.0377197,-0.0307922,-0.0198669,-0.00112915,0.0209351,0.0444336,0.0666504,0.0821533,0.0895386,0.0892639,0.0841675,0.07724,0.0679321,0.0574646,0.0470581,0.0361633,0.0232849,0.00738525,-0.0116882,-0.0322266,-0.0587769,-0.0908813,-0.124969,-0.160461,-0.192963,-0.226562,-0.253632,-0.272552,-0.288055,-0.302155,-0.312225,-0.318451,-0.324493,-0.330139,-0.331146,-0.325836,-0.309326,-0.286316,-0.253479,-0.210205,-0.156036,-0.100464,-0.0410156,0.0198669,0.0761108,0.118713,0.14502,0.164307,0.18161,0.195099,0.206512,0.215363,0.231201,0.251221,0.276245,0.301086,0.324158,0.335907,0.330933,0.314575,0.291077,0.263275,0.229584,0.193298,0.160675,0.136383,0.118805,0.10202,0.0899353,0.07724,0.0627441,0.0420837,0.0188599,-0.0012207,-0.0171204,-0.0281067,-0.0370483,-0.0411987,-0.0458374,-0.0509338,-0.0549011,-0.057312,-0.0596008,-0.0684509,-0.0807495,-0.090271,-0.0949707,-0.0914001,-0.0848999,-0.07724,-0.0654297,-0.0518188,-0.0380554,-0.0250244,-0.0123596,-0.00415039,0.00134277,0.00241089,0.00375366,0.00744629,0.0151672,0.0281067,0.0434875,0.0599365,0.0760498,0.0917358,0.105988,0.118927,0.123749,0.119659,0.106049,0.0898132,0.0725403,0.0559082,0.0399475,0.0226746,0.0062561,-0.00906372,-0.0245667,-0.0430298,-0.0674438,-0.0966492,-0.129669,-0.163422,-0.197235,-0.226837,-0.250122,-0.268982,-0.281555,-0.288513,-0.28952,-0.289337,-0.289276,-0.28717,-0.285034,-0.283081,-0.279388,-0.267731,-0.245361,-0.218781,-0.187866,-0.152496,-0.108917,-0.0592651,-0.00939941,0.0356445,0.0706177,0.0966492,0.113953,0.130951,0.146179,0.160126,0.172943,0.186981,0.207733,0.235443,0.266785,0.294952,0.31308,0.319672,0.315704,0.304688,0.283905,0.258118,0.228394,0.197723,0.168335,0.14679,0.134216,0.125427,0.116577,0.101471,0.0798645,0.0560303,0.0282593,0.00128174,-0.024231,-0.0477905,-0.0683289,-0.0826721,-0.0898132,-0.0920715,-0.0934143,-0.0971069,-0.102295,-0.111481,-0.120941,-0.129944,-0.132355,-0.129272,-0.119995,-0.105835,-0.0871277,-0.065918,-0.0401306,-0.0128784,0.00958252,0.0250854,0.0349731,0.0438843,0.053894,0.0656433,0.0783081,0.0949707,0.11261,0.129181,0.144897,0.15918,0.167175,0.166656,0.155426,0.13913,0.118469,0.0954895,0.0714722,0.0505371,0.0331421,0.0158997,-0.00274658,-0.0215454,-0.0421448,-0.0673828,-0.0967102,-0.128326,-0.163879,-0.196045,-0.228577,-0.256714,-0.276978,-0.288605,-0.294891,-0.297974,-0.296295,-0.292694,-0.290192,-0.288269,-0.28717,-0.282349,-0.278107,-0.271088,-0.257172,-0.231598,-0.198456,-0.159729,-0.118469,-0.0715332,-0.0227661,0.0246277,0.0670471,0.102081,0.126831,0.146637,0.16449,0.182404,0.200928,0.219788,0.241943,0.265717,0.292816,0.315826,0.330933,0.334503,0.328918,0.313751,0.290009,0.2565,0.219666,0.186646,0.157318,0.131409,0.109863,0.0920105,0.0743713,0.0552979,0.0353088,0.0127563,-0.0137024,-0.0448914,-0.0733032,-0.0949097,-0.108582,-0.117981,-0.124573,-0.126495,-0.12207,-0.117462,-0.11261,-0.108337,-0.105835,-0.104889,-0.102081,-0.0930786,-0.0775757,-0.0596008,-0.0394592,-0.0153809,0.0101318,0.0318909,0.0518188,0.0677795,0.081604,0.0898743,0.0942383,0.100952,0.108795,0.119934,0.131073,0.140533,0.14679,0.148712,0.146118,0.138062,0.127502,0.111755,0.0929565,0.0724182,0.0551758,0.041748,0.0290527,0.0163879,0.000610352,-0.0157776,-0.0381165,-0.0656433,-0.0954285,-0.127441,-0.160614,-0.194153,-0.223969,-0.246033,-0.263489,-0.273834,-0.279999,-0.281464,-0.282898,-0.282684,-0.285767,-0.288513,-0.290527,-0.292755,-0.295288,-0.293091,-0.280212,-0.25946,-0.229797,-0.193146,-0.148041,-0.0963135,-0.0450439,0.00476074,0.053894,0.0977173,0.129791,0.153687,0.170258,0.186432,0.203552,0.221893,0.242065,0.263489,0.283234,0.30368,0.319183,0.3284,0.326111,0.310883,0.284302,0.249542,0.215424,0.182159,0.151733,0.123352,0.101074,0.0822144,0.0662537,0.0495911,0.0310059,0.00765991,-0.0211487,-0.0514832,-0.0800781,-0.101074,-0.115295,-0.122223,-0.12323,-0.119202,-0.111877,-0.102142,-0.0904846,-0.0817566,-0.0776367,-0.0811462,-0.0843506,-0.082489,-0.0748291,-0.0626221,-0.0432129,-0.0209961,0.00396729,0.0308838,0.0587158,0.08255,0.0996704,0.108337,0.112885,0.114685,0.118469,0.120941,0.127991,0.134308,0.141357,0.147797,0.153564,0.157104,0.155579,0.148041,0.131531,0.110992,0.0883179,0.0665894,0.0458984,0.0247803,0.00576782,-0.0168457,-0.0404663,-0.0656433,-0.094696,-0.125366,-0.160614,-0.197723,-0.231537,-0.261078,-0.281677,-0.296295,-0.305176,-0.309723,-0.31073,-0.31073,-0.309937,-0.312134,-0.315155,-0.316711,-0.315308,-0.310394,-0.295776,-0.270081,-0.234222,-0.19101,-0.143341,-0.0910645,-0.0399475,0.0124207,0.0602722,0.102539,0.13382,0.157928,0.173553,0.184906,0.195709,0.207581,0.222626,0.238464,0.256714,0.277313,0.297974,0.312225,0.317261,0.310669,0.290802,0.260468,0.220947,0.179321,0.139923,0.103485,0.0742188,0.053833,0.0392761,0.0324097,0.0252991,0.0175781,0.00213623,-0.0184631,-0.0427551,-0.0644836,-0.082489,-0.094574,-0.101135,-0.0995178,-0.0916138,-0.0802002,-0.0681763,-0.0579224,-0.0507507,-0.049408,-0.0532227,-0.057312,-0.0556335,-0.048584,-0.0334778,-0.0115967,0.0129395,0.0386047,0.0626221,0.0829468,0.0979309,0.105103,0.106171,0.1008,0.0974426,0.098114,0.105164,0.115631,0.126495,0.138794,0.149384,0.154755,0.154419,0.148041,0.134094,0.112,0.0832825,0.0561829,0.0312805,0.00912476,-0.0108032,-0.0282593,-0.0464478,-0.0675049,-0.0923462,-0.116577,-0.143005,-0.173553,-0.207916,-0.239258,-0.264221,-0.282959,-0.294434,-0.300751,-0.301819,-0.300476,-0.297729,-0.29303,-0.287048,-0.283142,-0.279327,-0.274628,-0.264771,-0.250671,-0.232208,-0.206451,-0.174377,-0.135376,-0.0914917,-0.04953,-0.00765991,0.0334778,0.0736389,0.106445,0.133026,0.151825,0.164551,0.172028,0.180267,0.192474,0.207794,0.221222,0.235168,0.249054,0.263611,0.27182,0.270203,0.261017,0.240479,0.212341,0.178711,0.147247,0.122406,0.101196,0.085907,0.0752258,0.0677795,0.0634155,0.0543518,0.0427551,0.0255737,0.00314331,-0.0218201,-0.0465088,-0.0628967,-0.0708618,-0.0697937,-0.0665894,-0.0603333,-0.0517578,-0.0425415,-0.0346985,-0.032074,-0.0327454,-0.0397339,-0.0462341,-0.048584,-0.0401306,-0.0234375,-0.00604248,0.0137634,0.0361023,0.0603943,0.0811462,0.0954895,0.103302,0.105713,0.104309,0.101685,0.102814,0.106567,0.112274,0.119995,0.126648,0.132538,0.131622,0.125641,0.113007,0.093811,0.069519,0.0422668,0.0146179,-0.00839233,-0.0260315,-0.0406189,-0.0539551,-0.0706787,-0.0875854,-0.108185,-0.132141,-0.159332,-0.189209,-0.216919,-0.240082,-0.258453,-0.268921,-0.274567,-0.274231,-0.273102,-0.270477,-0.268585,-0.266785,-0.265106,-0.260803,-0.253693,-0.243744,-0.230865,-0.215912,-0.198059,-0.174103,-0.146576,-0.118378,-0.0881348,-0.0595398,-0.0280457,0.00415039,0.0391235,0.0754395,0.108917,0.134888,0.152954,0.163208,0.16925,0.177246,0.185089,0.189453,0.194641,0.201202,0.214294,0.227386,0.239319,0.243958,0.240601,0.224579,0.202209,0.178467,0.153564,0.128662,0.104828,0.0862427,0.0734863,0.0663757,0.0624084,0.0608826,0.0547791,0.040741,0.0212708,0.000335693,-0.0157166,-0.0278625,-0.0353088,-0.0377808,-0.0375977,-0.0340271,-0.028656,-0.0184631,-0.00979614,-0.00576782,-0.0115967,-0.0189209,-0.0245667,-0.0228271,-0.0160522,-0.00457764,0.00866699,0.0249023,0.0404663,0.056366,0.0690002,0.0775757,0.0776367,0.069458,0.0589294,0.0518799,0.0491943,0.0519409,0.0565796,0.0626221,0.0679321,0.0700073,0.0712891,0.0683899,0.0613403,0.0446167,0.0232849,0.00134277,-0.0157166,-0.0290527,-0.0381775,-0.045166,-0.0514221,-0.0589905,-0.0717468,-0.0871887,-0.10733,-0.128326,-0.152008,-0.17511,-0.194305,-0.208649,-0.218719,-0.222961,-0.222748,-0.220459,-0.220886,-0.224579,-0.228455,-0.230408,-0.233429,-0.233032,-0.228912,-0.221222,-0.215851,-0.208649,-0.194305,-0.170532,-0.146912,-0.122009,-0.0926819,-0.062561,-0.0309448,0.00430298,0.041626,0.0769043,0.103638,0.119995,0.132141,0.142151,0.154419,0.169067,0.183289,0.196503,0.208313,0.224976,0.241608,0.257263,0.266113,0.263824,0.249603,0.22583,0.200867,0.178253,0.158661,0.139069,0.120209,0.104492,0.0948181,0.089325,0.0857849,0.0785828,0.0643616,0.0436096,0.0197449,0.0032959,-0.00631714,-0.0114746,-0.0152283,-0.0182495,-0.0205994,-0.0216064,-0.0206604,-0.0203247,-0.0246887,-0.0335693,-0.0452271,-0.052887,-0.0522766,-0.0453796,-0.032959,-0.0210876,-0.00991821,-0.00256348,0.00396729,0.00598145,0.00616455,0.00335693,0.00128174,-0.00268555,-0.0020752,0.0050354,0.0220032,0.0403442,0.0566406,0.0690002,0.0754395,0.0789795,0.0755005,0.0675964,0.0585938,0.0466309,0.0337524,0.0240173,0.0193176,0.0198669,0.0179138,0.0152893,0.00549316,-0.0083313,-0.0291138,-0.0546875,-0.081665,-0.110535,-0.137909,-0.164886,-0.186432,-0.203033,-0.216766,-0.225494,-0.235107,-0.244019,-0.252228,-0.259338,-0.26712,-0.272766,-0.272949,-0.268799,-0.261536,-0.253906,-0.240875,-0.224487,-0.203369,-0.17746,-0.144897,-0.108337,-0.0727539,-0.0374451,0.00268555,0.0468445,0.089386,0.122345,0.144775,0.1604,0.168457,0.17337,0.180939,0.191803,0.202606,0.213959,0.227997,0.247314,0.267456,0.28067,0.283234,0.273224,0.249603,0.220001,0.189056,0.160614,0.136993,0.118591,0.104553,0.0977173,0.0959167,0.098175,0.0960999,0.0858459,0.0657043,0.0397339,0.0117493,-0.0109253,-0.0275269,-0.0367126,-0.0426025,-0.0471191,-0.0501404,-0.0489807,-0.0473022,-0.0489807,-0.0567932,-0.0666504,-0.0793152,-0.086792,-0.0885315,-0.0810852,-0.0704041,-0.0595398,-0.0507507,-0.0401917,-0.0299988,-0.0195923,-0.013092,-0.00744629,-0.00280762,0.00296021,0.0143738,0.0314636,0.0532227,0.0748291,0.0916138,0.104492,0.113281,0.115906,0.114441,0.108002,0.0991821,0.0856934,0.0714111,0.06073,0.053894,0.0480652,0.0411377,0.0296021,0.0136108,-0.0100098,-0.0375061,-0.0689392,-0.103363,-0.138397,-0.172089,-0.201935,-0.223236,-0.23764,-0.245972,-0.250885,-0.253021,-0.254425,-0.255981,-0.256714,-0.256836,-0.253632,-0.248932,-0.242004,-0.231262,-0.217377,-0.204102,-0.19046,-0.171417,-0.147308,-0.120148,-0.0906067,-0.0580444,-0.0224915,0.0167847,0.0549622,0.0935669,0.127045,0.149658,0.160461,0.163086,0.164215,0.169006,0.17395,0.179657,0.190674,0.206055,0.226562,0.248718,0.266907,0.276184,0.271332,0.254028,0.225494,0.19986,0.171936,0.146515,0.125366,0.108978,0.100128,0.0934143,0.090271,0.0848389,0.0748901,0.0543518,0.025177,-0.00637817,-0.0332947,-0.0534363,-0.0679321,-0.0785217,-0.0828857,-0.0856934,-0.0865173,-0.0851746,-0.081665,-0.0826111,-0.0918884,-0.103027,-0.107513,-0.103485,-0.093689,-0.081604,-0.0667114,-0.0493164,-0.0304565,-0.0117493,0.00857544,0.0263672,0.040802,0.0502014,0.058197,0.0684509,0.0810852,0.0939026,0.105042,0.114502,0.119934,0.120667,0.116455,0.112427,0.105499,0.0960388,0.0812073,0.0664368,0.0555115,0.0458984,0.037384,0.0266418,0.0118713,-0.00643921,-0.0299377,-0.0541077,-0.0809326,-0.108124,-0.135773,-0.161072,-0.181274,-0.194763,-0.202484,-0.207733,-0.211487,-0.212891,-0.215759,-0.220673,-0.22522,-0.228058,-0.227448,-0.22818,-0.225494,-0.218323,-0.207916,-0.196167,-0.187714,-0.177032,-0.162872,-0.142883,-0.119049,-0.0892639,-0.0561829,-0.0181885,0.0189819,0.0587769,0.0974426,0.129791,0.149597,0.157532,0.160065,0.159271,0.160858,0.1633,0.170929,0.184692,0.203491,0.226715,0.250122,0.269867,0.276855,0.268799,0.24704,0.215515,0.177521,0.138336,0.10202,0.0740967,0.0541077,0.0410156,0.0344849,0.0346375,0.0360413,0.0324707,0.0168457,-0.00408936,-0.0283203,-0.0514221,-0.0716248,-0.0858459,-0.0916748,-0.0904846,-0.085968,-0.0767212,-0.0644836,-0.0508728,-0.0432129,-0.0413513,-0.041687,-0.039856,-0.0359802,-0.0307922,-0.0214844,-0.0104675,0.00180054,0.0137634,0.0246887,0.0350952,0.0426941,0.0444946,0.0422058,0.0403442,0.0387878,0.0412903,0.0462341,0.0545654,0.0658264,0.0761719,0.0845642,0.0887146,0.0909424,0.0901489,0.0828857,0.0714111,0.057373,0.0461121,0.0377197,0.0305481,0.0246887,0.0186462,0.0106812,0.000732422,-0.0122681,-0.0287781,-0.0493164,-0.0743103,-0.0999451,-0.122681,-0.143005,-0.159668,-0.175903,-0.189453,-0.201019,-0.209137,-0.21759,-0.224365,-0.229523,-0.232819,-0.232361,-0.227173,-0.215179,-0.202271,-0.188782,-0.176697,-0.165771,-0.155365,-0.145569,-0.130951,-0.109314,-0.0870361,-0.0579834,-0.025177,0.0135498,0.0541077,0.0930786,0.126709,0.148987,0.158325,0.159271,0.155426,0.152069,0.1492,0.146637,0.148651,0.155762,0.171204,0.190125,0.206055,0.213074,0.208069,0.190216,0.164032,0.132965,0.102203,0.0721436,0.049408,0.0349121,0.0316772,0.0359192,0.0455017,0.0558472,0.060791,0.0559082,0.0424194,0.0231018,0.00274658,-0.0148926,-0.0287781,-0.036499,-0.0393372,-0.0346985,-0.0266418,-0.0168457,-0.0100098,-0.0088501,-0.0140991,-0.0259705,-0.0386047,-0.0475159,-0.0527649,-0.0544434,-0.0533447,-0.0455017,-0.0358276,-0.0227661,-0.0112,0.000274658,0.00698853,0.00933838,0.012207,0.0158997,0.0249634,0.036377,0.0514221,0.0691223,0.0871277,0.101959,0.112762,0.118652,0.118317,0.113098,0.102692,0.0908203,0.0801392,0.0720215,0.0670471,0.0632935,0.0592651,0.0527649,0.0411377,0.0235596,0.000274658,-0.0293274,-0.0632935,-0.0967102,-0.12912,-0.155304,-0.176575,-0.192139,-0.201935,-0.209045,-0.213684,-0.217529,-0.222473,-0.228455,-0.234039,-0.23819,-0.238068,-0.235168,-0.227112,-0.216522,-0.203552,-0.191406,-0.181061,-0.169342,-0.153748,-0.133759,-0.111145,-0.0839539,-0.0524292,-0.0172424,0.019928,0.0585327,0.0940247,0.119812,0.132141,0.134308,0.129608,0.124634,0.122284,0.122345,0.129608,0.142944,0.165497,0.193481,0.221466,0.241821,0.248657,0.238983,0.213959,0.181213,0.144226,0.108795,0.0788574,0.0593262,0.0506592,0.0524902,0.0612793,0.0700073,0.0745544,0.0684509,0.0515442,0.0255737,-0.00268555,-0.0311279,-0.053772,-0.0668335,-0.0708008,-0.0677795,-0.0610046,-0.0498657,-0.0381165,-0.0310059,-0.0326233,-0.0392761,-0.0489807,-0.0555725,-0.0578613,-0.0539551,-0.0447083,-0.0310669,-0.0152893,0.00180054,0.0195923,0.0349121,0.0426025,0.0459595,0.0468445,0.0499878,0.0541687,0.061554,0.0732117,0.0883179,0.103027,0.114227,0.121155,0.125092,0.123352,0.116516,0.105225,0.0928955,0.0808716,0.0697327,0.0629578,0.0578613,0.0536194,0.0447693,0.032959,0.0163879,-0.00424194,-0.0310669,-0.0611267,-0.0920715,-0.120483,-0.145355,-0.165161,-0.180389,-0.191345,-0.201263,-0.210266,-0.217377,-0.226562,-0.2388,-0.24939,-0.25592,-0.257263,-0.255646,-0.249054,-0.236847,-0.223145,-0.20752,-0.191864,-0.179657,-0.170258,-0.159119,-0.142761,-0.120056,-0.0913391,-0.0552979,-0.0119324,0.0315552,0.0744324,0.114777,0.145508,0.161346,0.160004,0.150818,0.140686,0.133545,0.130341,0.137238,0.155029,0.180664,0.207794,0.233154,0.249878,0.250397,0.231354,0.194489,0.149933,0.103882,0.0618896,0.0304565,0.0157776,0.0173035,0.0292053,0.0462341,0.0618896,0.0730896,0.0709534,0.0536194,0.0245667,-0.0085144,-0.0392761,-0.0626831,-0.0729675,-0.0689392,-0.0544434,-0.0362549,-0.0158386,0.00256348,0.0161743,0.0183105,0.00946045,-0.00683594,-0.0219421,-0.0307312,-0.0358276,-0.0334778,-0.0241089,-0.00857544,0.00778198,0.0224304,0.0344849,0.0423584,0.0434875,0.0413513,0.0390625,0.040741,0.0489197,0.0605469,0.0787354,0.0987244,0.11731,0.128174,0.132477,0.130524,0.121948,0.109406,0.093689,0.0791931,0.0689392,0.0634155,0.0599365,0.0590515,0.0548401,0.0459595,0.0283813,0.00241089,-0.0310669,-0.0697327,-0.109467,-0.146301,-0.176361,-0.199463,-0.21463,-0.223572,-0.22757,-0.229523,-0.232422,-0.238861,-0.249268,-0.259918,-0.270264,-0.27243,-0.269867,-0.258392,-0.242737,-0.222015,-0.198181,-0.174377,-0.156372,-0.144165,-0.130737,-0.11557,-0.0975952,-0.0741577,-0.0413513,-0.003479,0.0384521,0.0786438,0.118378,0.150482,0.165497,0.163635,0.149384,0.133759,0.121399,0.114014,0.115845,0.128326,0.151398,0.179535,0.207184,0.227722,0.232605,0.217102,0.182404,0.138336,0.0934753,0.0543518,0.0247803,0.0101929,0.0134277,0.0306702,0.0525513,0.0733643,0.0882568,0.0888672,0.0743713,0.0452881,0.00991821,-0.0246277,-0.0505981,-0.0636292,-0.0626221,-0.0485229,-0.0275879,-0.00576782,0.0157166,0.0309448,0.0350342,0.024353,0.00564575,-0.0140381,-0.0255127,-0.0315552,-0.0307922,-0.020752,-0.00482178,0.0162964,0.0366516,0.0534973,0.0648193,0.0689392,0.0673828,0.0642395,0.0634155,0.0652466,0.0720825,0.0829468,0.0969849,0.108521,0.115509,0.116028,0.111816,0.102692,0.0883179,0.0710754,0.0547791,0.0428772,0.0359192,0.0333557,0.0293274,0.0232239,0.0136108,-0.000793457,-0.0216064,-0.0492554,-0.0818787,-0.114166,-0.144836,-0.167725,-0.185638,-0.197784,-0.204041,-0.206848,-0.207977,-0.20871,-0.21167,-0.217438,-0.225494,-0.232819,-0.236053,-0.235504,-0.230255,-0.220947,-0.205963,-0.187927,-0.171143,-0.157196,-0.144836,-0.13504,-0.125153,-0.11261,-0.0957642,-0.0706177,-0.0394592,-0.00430298,0.0311279,0.065979,0.0984497,0.123016,0.132751,0.129517,0.118591,0.10556,0.0956421,0.0941467,0.10321,0.121155,0.142944,0.168396,0.193817,0.212952,0.217651,0.202942,0.173767,0.135834,0.0959167,0.0590515,0.0322266,0.0185852,0.0210876,0.0328064,0.0508728,0.069397,0.0820007,0.0858459,0.0733643,0.0512695,0.0219421,-0.00799561,-0.0310669,-0.041687,-0.0390015,-0.0260925,-0.00704956,0.0142822,0.0361023,0.052948,0.0587158,0.0527649,0.0379944,0.0220947,0.00912476,0.000549316,-0.000457764,0.00476074,0.0171204,0.0313416,0.0452271,0.0574646,0.0628967,0.0628052,0.0579834,0.0498047,0.0414734,0.0367126,0.0367126,0.0429382,0.052948,0.0638123,0.0733032,0.0785828,0.0802002,0.0769043,0.0681152,0.0569763,0.0431519,0.0324097,0.0249634,0.0215454,0.0198059,0.0185852,0.0157776,0.00946045,-0.00524902,-0.0261841,-0.0522156,-0.0808716,-0.110809,-0.13739,-0.159668,-0.175507,-0.185425,-0.190063,-0.192078,-0.193878,-0.199005,-0.20697,-0.217712,-0.228729,-0.239807,-0.246643,-0.249603,-0.240662,-0.225891,-0.20639,-0.18692,-0.165436,-0.145447,-0.130951,-0.119934,-0.109314,-0.0964966,-0.079071,-0.0566406,-0.0246887,0.012207,0.0484619,0.0810852,0.109192,0.13028,0.13739,0.132477,0.119659,0.107239,0.0994568,0.0997925,0.108398,0.12323,0.144623,0.167053,0.184174,0.191956,0.186523,0.166046,0.132477,0.0940247,0.0586548,0.0318909,0.016449,0.0167236,0.0299988,0.0525513,0.0750427,0.0916138,0.0996094,0.0948181,0.0774536,0.0503235,0.0189209,-0.00576782,-0.0196533,-0.0197449,-0.00692749,0.016449,0.0418701,0.065918,0.0819397,0.0885315,0.0842896,0.0667725,0.0418701,0.0177307,6.10352e-05,-0.00933838,-0.0100708,-0.000213623,0.0144348,0.0300598,0.0431519,0.0510864,0.0531616,0.0479126,0.0386658,0.0270996,0.0177307,0.0143738,0.0179138,0.0282593,0.0425415,0.0555725,0.0670471,0.0730286,0.0732117,0.0678406,0.0582581,0.0456238,0.0333557,0.0236206,0.0174561,0.0161743,0.016571,0.0152283,0.0104675,6.10352e-05,-0.0159607,-0.0390015,-0.0661011,-0.0960999,-0.124176,-0.150726,-0.171875,-0.187042,-0.193024,-0.195374,-0.196442,-0.198914,-0.202271,-0.207123,-0.214844,-0.223022,-0.228851,-0.230682,-0.227173,-0.218597,-0.203094,-0.182159,-0.162476,-0.145233,-0.130066,-0.12088,-0.115509,-0.110992,-0.100525,-0.081604,-0.0545044,-0.0249023,0.00671387,0.0412903,0.0760498,0.104828,0.121002,0.122833,0.110474,0.0920715,0.0751648,0.0686646,0.0729675,0.0853577,0.104553,0.129944,0.158783,0.183899,0.196564,0.192871,0.173096,0.139465,0.0977173,0.0596008,0.0336304,0.0245056,0.0302734,0.0498657,0.0749817,0.102356,0.122345,0.133026,0.129608,0.109741,0.0748901,0.0366516,0.00497437,-0.0112,-0.0106812,0.00448608,0.0271912,0.0521545,0.0758972,0.093689,0.1008,0.0931396,0.0706787,0.0404663,0.0108032,-0.0107422,-0.0201416,-0.016449,-0.00402832,0.0141602,0.032074,0.0462952,0.0553589,0.0566406,0.048645,0.033905,0.0145569,-0.000213623,-0.0071106,-0.00274658,0.0104065,0.0287781,0.0447693,0.0565186,0.0613403,0.0597229,0.0510864,0.0353088,0.015564,-0.00241089,-0.0142212,-0.0175171,-0.0134888,-0.00442505,0.00598145,0.0118103,0.00845337,-0.00491333,-0.0272522,-0.0558472,-0.0881348,-0.119537,-0.145966,-0.165222,-0.173218,-0.171021,-0.162079,-0.152679,-0.1492,-0.152161,-0.16214,-0.177368,-0.194885,-0.214294,-0.229797,-0.237457,-0.231201,-0.214355,-0.190399,-0.166046,-0.141998,-0.122742,-0.110992,-0.108917,-0.112885,-0.115448,-0.112274,-0.100067,-0.0782471,-0.0463867,-0.0106812,0.0280457,0.0646973,0.0964966,0.11557,0.115967,0.104492,0.0879822,0.0751038,0.0714722,0.078125,0.0919495,0.116455,0.144836,0.175568,0.198334,0.208313,0.203217,0.181,0.144958,0.105042,0.0716248,0.0522766,0.046051,0.0546875,0.0740356,0.0986633,0.120544,0.135223,0.137512,0.127777,0.102203,0.0654297,0.0293884,0.00582886,-0.00167847,0.00558472,0.0234375,0.0465698,0.0693359,0.0870361,0.0957031,0.0924072,0.0767822,0.0492554,0.0177307,-0.00732422,-0.0211487,-0.0215454,-0.0138245,0.000213623,0.015625,0.0282593,0.0350952,0.0356445,0.0281982,0.0148926,-0.00402832,-0.0210876,-0.0303955,-0.0271912,-0.0138855,0.00592041,0.0261841,0.0430908,0.0541687,0.0575256,0.0541077,0.0430298,0.0283813,0.0118713,0.000274658,-0.00375366,0.00189209,0.012146,0.0241089,0.0320129,0.032074,0.0213318,0.00112915,-0.0288696,-0.0621338,-0.0957031,-0.125244,-0.147583,-0.159729,-0.162292,-0.156036,-0.1492,-0.146637,-0.153229,-0.166443,-0.18811,-0.211548,-0.237061,-0.256317,-0.265961,-0.261414,-0.241669,-0.214905,-0.18457,-0.155914,-0.131012,-0.112488,-0.103973,-0.107056,-0.116791,-0.123169,-0.11792,-0.0953064,-0.0626831,-0.0222778,0.0181885,0.0583801,0.0956421,0.124512,0.138458,0.134552,0.117188,0.0949707,0.0773926,0.0730896,0.0823364,0.103088,0.127777,0.154419,0.178802,0.195038,0.20047,0.192871,0.168182,0.133301,0.0926819,0.0610657,0.0458374,0.0489807,0.0663147,0.0898743,0.111481,0.129456,0.139923,0.14093,0.127258,0.0987854,0.0599365,0.0240173,-0.00146484,-0.00549316,0.00878906,0.0326843,0.0571899,0.0766296,0.0892029,0.0943604,0.0867004,0.0664978,0.0366516,0.00357056,-0.0255127,-0.0377197,-0.036499,-0.0206604,-0.00134277,0.0167236,0.0287781,0.0343018,0.0343628,0.0271912,0.0141602,-0.00515747,-0.0220947,-0.0322876,-0.0273743,-0.0113525,0.0118713,0.0342407,0.0508728,0.0605469,0.0620728,0.0532227,0.0390015,0.0202637,0.00274658,-0.0101929,-0.0144348,-0.00933838,0.00335693,0.0178528,0.0269165,0.0268555,0.0142822,-0.00872803,-0.0393982,-0.074646,-0.108398,-0.13623,-0.155762,-0.164429,-0.161743,-0.152069,-0.141663,-0.138,-0.144012,-0.159119,-0.178528,-0.202759,-0.224915,-0.239807,-0.245758,-0.240753,-0.223816,-0.196167,-0.164215,-0.135895,-0.11618,-0.106445,-0.105896,-0.115112,-0.128387,-0.135559,-0.128265,-0.106445,-0.0736389,-0.0298767,0.0181274,0.0675049,0.107849,0.136841,0.148865,0.14267,0.121948,0.0963745,0.0779114,0.0718079,0.0818787,0.103424,0.131958,0.162872,0.193207,0.216034,0.226166,0.215759,0.18692,0.141693,0.0934143,0.0531616,0.0314636,0.0279236,0.041626,0.0638123,0.0905457,0.113495,0.127167,0.128601,0.112671,0.0808105,0.0401917,0.00201416,-0.0209351,-0.0245667,-0.00866699,0.0190735,0.0488586,0.073822,0.0924683,0.100464,0.0973206,0.0789795,0.0504761,0.0167847,-0.00765991,-0.017395,-0.0118103,0.00357056,0.0246887,0.0414124,0.0520935,0.0551147,0.0508728,0.0397949,0.020813,-0.00268555,-0.0234375,-0.0353088,-0.0326233,-0.0192566,0.00241089,0.0216675,0.0360413,0.0401306,0.0385132,0.0296631,0.0162964,-0.00140381,-0.0177307,-0.0289307,-0.0291138,-0.0201416,-0.00335693,0.0135498,0.0236206,0.0234985,0.0108643,-0.0110168,-0.0395203,-0.0712891,-0.100342,-0.125488,-0.141663,-0.149323,-0.148315,-0.139404,-0.132202,-0.12973,-0.138123,-0.154297,-0.175018,-0.199402,-0.220612,-0.234772,-0.240479,-0.2341,-0.216858,-0.187653,-0.154358,-0.123627,-0.101532,-0.0895996,-0.0885925,-0.0965881,-0.108917,-0.116699,-0.113098,-0.0944214,-0.0636292,-0.0244446,0.0194092,0.0630798,0.102814,0.129517,0.139923,0.132416,0.110321,0.0848999,0.0627441,0.0526123,0.0564575,0.0714722,0.0956421,0.124237,0.154297,0.180542,0.193298,0.188446,0.165161,0.127991,0.0852356,0.0479126,0.0253601,0.0212708,0.0316162,0.0525513,0.0785828,0.106384,0.127594,0.137726,0.130005,0.107849,0.0736389,0.0381165,0.0139465,0.00491333,0.0134888,0.0312805,0.0539551,0.0773926,0.0942383,0.107452,0.106842,0.0936279,0.0673828,0.037384,0.0126038,-0.00128174,-0.00402832,0.00390625,0.0159607,0.0283203,0.0375061,0.0426941,0.0430298,0.0361633,0.0226746,0.0017395,-0.0173035,-0.0303345,-0.0317383,-0.0233459,-0.00839233,0.00738525,0.0202637,0.0276489,0.0294495,0.0234985,0.0104675,-0.0083313,-0.0262451,-0.0386047,-0.0432739,-0.0381775,-0.0262451,-0.00958252,0.00262451,0.00564575,-0.00088501,-0.0151672,-0.037262,-0.0634766,-0.0904846,-0.113342,-0.128662,-0.134705,-0.131744,-0.120544,-0.109467,-0.102692,-0.105652,-0.118256,-0.137573,-0.1604,-0.184692,-0.203217,-0.215302,-0.216034,-0.202423,-0.181549,-0.1539,-0.127716,-0.10791,-0.0974426,-0.0990601,-0.107666,-0.121826,-0.133148,-0.136658,-0.126984,-0.101807,-0.0669861,-0.0249634,0.0166321,0.0561218,0.0883789,0.10611,0.108917,0.098053,0.0805969,0.0652466,0.0564575,0.0617371,0.0782471,0.102203,0.130066,0.157776,0.181,0.194305,0.193542,0.174377,0.143433,0.104492,0.0696106,0.0453796,0.0366516,0.0419312,0.0588684,0.0798645,0.101959,0.117126,0.124176,0.117645,0.0977783,0.0678406,0.0383911,0.0169067,0.0108032,0.020752,0.0420227,0.0677185,0.0921326,0.109924,0.120483,0.12088,0.108643,0.0869141,0.0600586,0.036438,0.0222778,0.020752,0.0258484,0.0368347,0.0455017,0.0489807,0.0466309,0.037323,0.0224304,0.00146484,-0.0228271,-0.045105,-0.0599365,-0.0632324,-0.0542297,-0.0386047,-0.0202026,-0.0050354,0.00390625,0.00643921,0.000396729,-0.0104675,-0.0250854,-0.0390625,-0.0482483,-0.0468445,-0.0360413,-0.0169678,0.00436401,0.0236816,0.0349121,0.0353088,0.0222778,0.00180054,-0.0250244,-0.0533447,-0.0787354,-0.0987244,-0.108337,-0.108856,-0.105042,-0.098053,-0.0956421,-0.100861,-0.116974,-0.139404,-0.165771,-0.19101,-0.214508,-0.229858,-0.234375,-0.225647,-0.204163,-0.176178,-0.150818,-0.132629,-0.122406,-0.118378,-0.121216,-0.131531,-0.14267,-0.14798,-0.140411,-0.116577,-0.0779114,-0.0313416,0.0157776,0.0552368,0.0843506,0.104828,0.111938,0.109192,0.0932922,0.0734863,0.0569763,0.0524292,0.0649719,0.0908813,0.12207,0.15155,0.175018,0.187775,0.192139,0.182617,0.16153,0.12851,0.0906067,0.057251,0.0379944,0.0411377,0.0578003,0.0834961,0.105316,0.121735,0.129517,0.129059,0.119995,0.0996704,0.0705261,0.0391846,0.0179138,0.016449,0.0302124,0.0531616,0.0742188,0.0900574,0.100342,0.100861,0.0968323,0.0838318,0.0647583,0.040802,0.0204773,0.00958252,0.0109253,0.0218201,0.032959,0.0386658,0.0381165,0.032074,0.0249634,0.0144348,0.00146484,-0.015625,-0.0302734,-0.0365906,-0.0328979,-0.0209351,-0.00570679,0.0065918,0.0134888,0.0133667,0.00631714,-0.0050354,-0.0193176,-0.0327454,-0.0437622,-0.0482483,-0.0440979,-0.0309448,-0.0134277,0.00375366,0.0144958,0.0162964,0.00805664,-0.00857544,-0.032135,-0.057373,-0.0814819,-0.100464,-0.111755,-0.114288,-0.108795,-0.102356,-0.0987244,-0.101196,-0.110077,-0.124756,-0.145294,-0.168335,-0.191284,-0.208984,-0.218201,-0.217041,-0.204712,-0.183228,-0.159729,-0.143768,-0.136383,-0.134491,-0.134491,-0.139191,-0.147369,-0.155853,-0.153076,-0.136841,-0.105225,-0.0597229,-0.00784302,0.0377197,0.0714722,0.0926208,0.105713,0.111755,0.108124,0.0942993,0.078186,0.0682678,0.073761,0.0955811,0.127777,0.159607,0.186188,0.202362,0.207306,0.200684,0.182495,0.152344,0.111542,0.0686035,0.0347595,0.0211487,0.0283203,0.0492554,0.0748291,0.0960999,0.108582,0.110474,0.105377,0.0916138,0.0696716,0.0388489,0.0116882,-0.000274658,0.00845337,0.0322876,0.0612793,0.0881348,0.107849,0.120605,0.123901,0.118805,0.105042,0.0853577,0.0614624,0.0420227,0.0306702,0.0323486,0.0410767,0.0499268,0.0535583,0.0513306,0.044281,0.0341492,0.0197449,0.00161743,-0.0192566,-0.0360413,-0.0465088,-0.046051,-0.0391235,-0.0273743,-0.0193176,-0.0144958,-0.0155029,-0.0213318,-0.0289917,-0.0404053,-0.0481873,-0.053772,-0.0524292,-0.0428162,-0.0259705,-0.00750732,0.00665283,0.0128784,0.0114746,-0.000335693,-0.0198669,-0.0444336,-0.069458,-0.0892029,-0.104218,-0.11142,-0.111145,-0.105774,-0.100067,-0.0996094,-0.107391,-0.121155,-0.139679,-0.163879,-0.189453,-0.212616,-0.226898,-0.229462,-0.220215,-0.198914,-0.172424,-0.147797,-0.132355,-0.122833,-0.117798,-0.116852,-0.12207,-0.131805,-0.138519,-0.130127,-0.104767,-0.0648193,-0.0186462,0.025177,0.0593872,0.0861206,0.103302,0.114838,0.115234,0.104218,0.0845642,0.0646973,0.0577087,0.0699463,0.0953064,0.123352,0.147247,0.162354,0.172607,0.176361,0.173279,0.156708,0.12677,0.0863647,0.0500793,0.0299988,0.0315552,0.0498657,0.0723572,0.0909424,0.10437,0.112213,0.116974,0.114288,0.100006,0.074707,0.0459595,0.0265198,0.028656,0.0481873,0.0742188,0.0951538,0.108398,0.116638,0.122009,0.121674,0.112488,0.0918884,0.0656433,0.0419312,0.028656,0.0282593,0.0368347,0.0454407,0.0477295,0.0452271,0.0399475,0.0359802,0.0263062,0.00933838,-0.0137634,-0.0363159,-0.049408,-0.0523376,-0.0456238,-0.0359192,-0.0262451,-0.0204773,-0.0194702,-0.0211487,-0.0264282,-0.0353699,-0.0467224,-0.0559082,-0.0609436,-0.0577087,-0.0476379,-0.0318909,-0.0169678,-0.00665283,-0.00363159,-0.0065918,-0.0170593,-0.0335693,-0.0552368,-0.0761719,-0.0928955,-0.102478,-0.104156,-0.102203,-0.0968323,-0.0949097,-0.0985107,-0.107788,-0.121948,-0.140259,-0.162964,-0.186981,-0.208069,-0.217987,-0.212952,-0.196716,-0.174957,-0.155029,-0.139343,-0.128662,-0.122559,-0.121277,-0.127045,-0.138397,-0.150055,-0.150055,-0.128448,-0.09021,-0.0439453,0.00262451,0.0397949,0.0696716,0.0923462,0.108521,0.115295,0.106232,0.085907,0.0633545,0.0539551,0.0613403,0.0869141,0.116577,0.14328,0.16095,0.174713,0.184357,0.186768,0.171753,0.141144,0.0979919,0.0556946,0.0291138,0.0241699,0.0399475,0.0608826,0.0795898,0.09375,0.105896,0.115692,0.117706,0.108337,0.0846863,0.0567932,0.0353088,0.0325623,0.0489197,0.0737,0.0972595,0.113281,0.125244,0.132751,0.135223,0.130798,0.115021,0.091156,0.0652466,0.0475159,0.0437012,0.0509338,0.0576477,0.0579224,0.0513306,0.0414124,0.0306702,0.0177917,0.000396729,-0.0236816,-0.0488586,-0.0664368,-0.0726318,-0.0671082,-0.0560303,-0.0447083,-0.0377197,-0.0349731,-0.0371094,-0.040741,-0.0484009,-0.0580444,-0.0662537,-0.0691833,-0.0640869,-0.0499878,-0.0311279,-0.0100098,0.00564575,0.0124207,0.0105286,-6.10352e-05,-0.0169067,-0.0375061,-0.0592651,-0.0777283,-0.0900574,-0.094574,-0.0944214,-0.0906067,-0.0892029,-0.0914001,-0.0997314,-0.115631,-0.136658,-0.163422,-0.191803,-0.214355,-0.226654,-0.224243,-0.211884,-0.192017,-0.171204,-0.152557,-0.138458,-0.129181,-0.126312,-0.130676,-0.142761,-0.154846,-0.157043,-0.141357,-0.10611,-0.0595398,-0.0127563,0.0284424,0.0605469,0.0887146,0.109985,0.121063,0.117462,0.0969849,0.0716248,0.0517578,0.0536804,0.0743713,0.105225,0.133759,0.1539,0.171478,0.184418,0.19101,0.182404,0.156036,0.112213,0.065979,0.0309448,0.0186462,0.0283203,0.0500793,0.0730286,0.0939636,0.110657,0.125092,0.134094,0.131805,0.112549,0.0805359,0.0489807,0.0361633,0.0444946,0.0677185,0.0917358,0.110413,0.123627,0.134888,0.143433,0.144562,0.134369,0.11026,0.0795288,0.0542297,0.0428772,0.0435486,0.0498657,0.0507507,0.046051,0.0376587,0.0275269,0.0182495,0.0050354,-0.0152283,-0.0396729,-0.0622253,-0.072876,-0.0730896,-0.0632935,-0.0523376,-0.0425415,-0.0388489,-0.0394592,-0.0440369,-0.0508728,-0.0596008,-0.066925,-0.0715332,-0.069397,-0.0580444,-0.040802,-0.0186462,-0.000274658,0.0122681,0.0163879,0.00958252,-0.00592041,-0.027771,-0.0499878,-0.0718689,-0.0881348,-0.0979919,-0.0996094,-0.0963135,-0.0907288,-0.0898743,-0.0947571,-0.108246,-0.128662,-0.155029,-0.184357,-0.212402,-0.230408,-0.237183,-0.230804,-0.213562,-0.193085,-0.174835,-0.161011,-0.149323,-0.140076,-0.140747,-0.150726,-0.165314,-0.168396,-0.153076,-0.117035,-0.0711975,-0.0220947,0.0205994,0.0578613,0.0890503,0.114105,0.130676,0.130066,0.112274,0.0863647,0.0706787,0.0771179,0.102631,0.13443,0.16214,0.183014,0.197388,0.207184,0.210876,0.199249,0.169678,0.121063,0.0700073,0.0332947,0.0212097,0.0316162,0.053833,0.0755005,0.0949097,0.107727,0.121216,0.126434,0.12207,0.0986023,0.0647583,0.0347595,0.0254211,0.0368347,0.0609436,0.0864563,0.107117,0.124695,0.138672,0.147858,0.150391,0.140594,0.116791,0.0853577,0.0598755,0.0479736,0.0497437,0.0534363,0.053894,0.0483093,0.0394592,0.0303345,0.0193176,0.00323486,-0.0184021,-0.0434875,-0.0638123,-0.0749817,-0.0738831,-0.066925,-0.057373,-0.0506592,-0.0488586,-0.0512695,-0.0568542,-0.0637512,-0.0704651,-0.0748291,-0.0761108,-0.070282,-0.0568542,-0.0371704,-0.0158386,0.00195312,0.0123596,0.013031,0.00296021,-0.0157776,-0.0383301,-0.061554,-0.0819397,-0.0953064,-0.101959,-0.101685,-0.097168,-0.09375,-0.0956421,-0.104553,-0.122223,-0.148468,-0.180664,-0.215912,-0.243561,-0.256836,-0.255432,-0.245697,-0.228241,-0.208191,-0.187042,-0.164307,-0.148865,-0.146362,-0.158722,-0.175232,-0.180878,-0.1651,-0.128784,-0.0811462,-0.0340271,0.0104065,0.0544434,0.0983887,0.137726,0.158722,0.155762,0.130676,0.101532,0.0883789,0.0977783,0.123413,0.151398,0.176575,0.196228,0.216309,0.233429,0.240082,0.22464,0.182404,0.122406,0.0658264,0.0293884,0.0205994,0.0303345,0.0479736,0.0653687,0.0808716,0.0979919,0.113953,0.118988,0.105103,0.0710754,0.032959,0.00448608,-0.000549316,0.0153809,0.0436096,0.0751038,0.10437,0.128784,0.148529,0.162201,0.164642,0.149323,0.120483,0.085907,0.0599365,0.0517578,0.0599365,0.0719604,0.0823364,0.0838318,0.078064,0.0686035,0.0562439,0.0355835,0.00631714,-0.0293274,-0.0599365,-0.0775146,-0.0796509,-0.0689392,-0.0560303,-0.0445557,-0.0401917,-0.0434875,-0.0510864,-0.061554,-0.0752258,-0.0871887,-0.0963135,-0.0967712,-0.0869751,-0.0683289,-0.0422058,-0.0187378,-0.0012207,0.00195312,-0.00717163,-0.0249634,-0.0468445,-0.0725403,-0.0943604,-0.110138,-0.115631,-0.115112,-0.109314,-0.101807,-0.0949707,-0.0964966,-0.11026,-0.136658,-0.170197,-0.206055,-0.237183,-0.256256,-0.256989,-0.24765,-0.229584,-0.20932,-0.183075,-0.157654,-0.137787,-0.132355,-0.143768,-0.165222,-0.180939,-0.177032,-0.147583,-0.102295,-0.0488586,-0.000274658,0.0452881,0.0898743,0.133759,0.167114,0.175568,0.15451,0.119049,0.0882568,0.0834961,0.102814,0.136719,0.168243,0.191406,0.211487,0.229187,0.24469,0.241211,0.211823,0.15686,0.0900574,0.0379944,0.0126953,0.0175171,0.0370483,0.0583801,0.0765686,0.0931396,0.110413,0.121552,0.120056,0.0985107,0.0611267,0.0227661,0.00140381,0.00549316,0.0327454,0.0667114,0.0975952,0.119934,0.14035,0.157776,0.16571,0.16095,0.13739,0.102753,0.069458,0.0518188,0.0536804,0.0671692,0.078064,0.0814819,0.0771179,0.0691223,0.057251,0.0383911,0.0113525,-0.0224304,-0.056366,-0.081665,-0.0903931,-0.082489,-0.0645752,-0.0481262,-0.0389404,-0.0383301,-0.0441589,-0.0559082,-0.0715332,-0.0864563,-0.098114,-0.102631,-0.0973206,-0.0796509,-0.0518188,-0.0214844,0.00289917,0.0134277,0.0110779,-0.00357056,-0.0296631,-0.0593872,-0.0888672,-0.113617,-0.128845,-0.136047,-0.13382,-0.125427,-0.116852,-0.113495,-0.119995,-0.138733,-0.171082,-0.211609,-0.247375,-0.270416,-0.27771,-0.275848,-0.266907,-0.247589,-0.217926,-0.182678,-0.156097,-0.145966,-0.153503,-0.167236,-0.172211,-0.156311,-0.121155,-0.0765076,-0.03302,0.00952148,0.0589294,0.114502,0.165558,0.195496,0.192352,0.167725,0.141357,0.126038,0.132477,0.150055,0.170532,0.189453,0.209198,0.230927,0.249878,0.256165,0.237854,0.19162,0.127838,0.0666504,0.0264282,0.0115356,0.0155029,0.0248413,0.0391846,0.0593262,0.0820923,0.105652,0.114563,0.104095,0.0743103,0.0391846,0.0134277,0.00598145,0.0201416,0.0455627,0.0738831,0.0991821,0.12616,0.15451,0.175171,0.182739,0.168579,0.138184,0.103699,0.0784607,0.0671692,0.0677795,0.0700073,0.069397,0.0671692,0.0653687,0.0599976,0.0498657,0.0282593,-0.0020752,-0.0375977,-0.0681763,-0.0858459,-0.0889893,-0.0798035,-0.0677185,-0.0568542,-0.0493164,-0.0469666,-0.0521545,-0.061615,-0.0737,-0.0861206,-0.0947571,-0.0944824,-0.0830078,-0.0612183,-0.0353088,-0.0105896,0.00704956,0.0128174,0.00476074,-0.0161743,-0.0431519,-0.0736389,-0.103821,-0.130005,-0.148468,-0.157318,-0.156311,-0.149994,-0.143768,-0.143097,-0.155426,-0.180389,-0.211395,-0.242615,-0.266632,-0.284149,-0.293427,-0.293152,-0.278931,-0.253418,-0.220673,-0.189941,-0.170685,-0.163818,-0.163025,-0.155029,-0.130676,-0.093811,-0.053772,-0.0148926,0.025177,0.0727539,0.124969,0.172699,0.200531,0.203094,0.187531,0.166656,0.158508,0.167999,0.18692,0.202271,0.21402,0.227783,0.245697,0.261261,0.259399,0.232025,0.181549,0.119934,0.0634155,0.0244446,0.0102539,0.0100708,0.0158997,0.027771,0.0471191,0.069458,0.0880432,0.0923462,0.0789795,0.0489807,0.0183105,-0.00448608,-0.00778198,0.00933838,0.037384,0.0665894,0.0991821,0.131134,0.159851,0.181213,0.189789,0.178986,0.152496,0.120728,0.0940247,0.0811462,0.081665,0.0854492,0.0848389,0.0831604,0.0794678,0.0726929,0.0630798,0.0432739,0.0115967,-0.0259705,-0.0598755,-0.0838928,-0.0899963,-0.0832825,-0.0740967,-0.0662537,-0.0623474,-0.060791,-0.0648193,-0.0713501,-0.0805359,-0.0917969,-0.0996094,-0.100861,-0.0921326,-0.0711365,-0.0436096,-0.0182495,-0.00228882,0.00515747,-0.000213623,-0.0169067,-0.0411377,-0.068512,-0.0967102,-0.124023,-0.144684,-0.1586,-0.161194,-0.156769,-0.153625,-0.157318,-0.171692,-0.197235,-0.228394,-0.255646,-0.276978,-0.292023,-0.305115,-0.31134,-0.30484,-0.282135,-0.248871,-0.220673,-0.203705,-0.19455,-0.177704,-0.147034,-0.105225,-0.0622253,-0.0249023,0.0103455,0.0518188,0.102692,0.156311,0.195984,0.211487,0.206116,0.19751,0.203491,0.220123,0.238251,0.246429,0.249878,0.256042,0.271088,0.284485,0.280548,0.253021,0.204437,0.148529,0.094635,0.0548401,0.0310059,0.0172424,0.00839233,0.00692749,0.0124817,0.0287781,0.0455017,0.0553589,0.0497437,0.0301208,0.00952148,-0.00402832,-0.00448608,0.00650024,0.0249023,0.0456238,0.0683289,0.0954895,0.125244,0.154846,0.174164,0.175293,0.162689,0.145172,0.131805,0.124176,0.118713,0.110474,0.0965881,0.0843506,0.0747681,0.0675049,0.0591125,0.041626,0.0151062,-0.0144958,-0.0388489,-0.0557861,-0.0640259,-0.0696716,-0.072876,-0.0754395,-0.0769653,-0.0770569,-0.0794067,-0.0826111,-0.0857849,-0.0891418,-0.0886536,-0.0844421,-0.0742188,-0.0593872,-0.0410156,-0.024353,-0.0110168,-0.00576782,-0.00979614,-0.0221558,-0.0399475,-0.060791,-0.0851135,-0.111145,-0.13678,-0.158203,-0.174286,-0.183624,-0.189606,-0.19812,-0.213287,-0.233154,-0.253143,-0.268524,-0.279388,-0.289612,-0.302155,-0.311401,-0.311218,-0.297455,-0.276581,-0.25946,-0.246094,-0.225891,-0.188049,-0.133484,-0.0727539,-0.0180664,0.0260925,0.0647583,0.10498,0.146515,0.183014,0.201874,0.199188,0.188202,0.193024,0.21698,0.248657,0.27121,0.283356,0.291138,0.298523,0.30014,0.290741,0.264893,0.219788,0.161011,0.102692,0.0579224,0.0336304,0.0232849,0.0185852,0.016449,0.015625,0.0188599,0.0224304,0.0285339,0.0267029,0.0140991,-0.00564575,-0.0166321,-0.0122681,0.00692749,0.0369263,0.0635681,0.0842896,0.101135,0.117584,0.138794,0.156586,0.165039,0.157043,0.143219,0.137177,0.13974,0.148315,0.150391,0.140198,0.118591,0.0932922,0.0687256,0.0479736,0.0255737,-0.00195312,-0.0310059,-0.053894,-0.0636292,-0.0612793,-0.0555725,-0.0512695,-0.0522156,-0.0612793,-0.0739746,-0.0876465,-0.0986633,-0.104553,-0.108398,-0.105042,-0.0936279,-0.0725403,-0.0459595,-0.0181885,0.00375366,0.0162964,0.0160522,0.00448608,-0.0137024,-0.0347595,-0.0558472,-0.0785217,-0.102631,-0.123352,-0.141357,-0.15509,-0.1651,-0.177032,-0.197327,-0.226501,-0.256165,-0.281799,-0.296448,-0.306244,-0.316711,-0.330811,-0.338654,-0.334167,-0.312073,-0.292267,-0.285706,-0.28476,-0.268799,-0.22348,-0.1604,-0.0929565,-0.0351562,0.0128174,0.0636902,0.118042,0.175507,0.218872,0.229065,0.209656,0.192139,0.204437,0.239868,0.276367,0.294952,0.303284,0.318115,0.334564,0.340668,0.326904,0.291199,0.231354,0.157715,0.0948181,0.0508728,0.0299377,0.0200806,0.0173035,0.0152893,0.0128784,0.0135498,0.0160522,0.0179749,0.0115967,-0.00750732,-0.028595,-0.0385132,-0.0283813,6.10352e-05,0.0360413,0.0719604,0.094696,0.10965,0.123901,0.14389,0.159851,0.15918,0.144775,0.130341,0.12851,0.139008,0.153503,0.160797,0.154175,0.132141,0.103821,0.0740967,0.0449524,0.0111389,-0.0265198,-0.0595398,-0.0820007,-0.086792,-0.078186,-0.0644836,-0.0518799,-0.0458984,-0.0499878,-0.065979,-0.0845642,-0.102081,-0.110809,-0.11557,-0.111877,-0.0986023,-0.0733643,-0.0397949,-0.00335693,0.0283813,0.0467834,0.0469666,0.0314026,0.00592041,-0.0214233,-0.04953,-0.0810852,-0.111481,-0.137665,-0.158051,-0.173035,-0.185638,-0.198395,-0.215851,-0.23819,-0.267242,-0.295166,-0.319336,-0.336853,-0.348328,-0.353699,-0.356659,-0.357117,-0.351746,-0.338257,-0.312744,-0.276184,-0.228577,-0.174561,-0.119324,-0.0610046,0.00302124,0.0714111,0.132294,0.174774,0.196442,0.203552,0.20752,0.221466,0.246979,0.276703,0.297638,0.30954,0.324493,0.344147,0.359528,0.356995,0.329987,0.279938,0.217041,0.158203,0.110596,0.0794067,0.0531616,0.0313416,0.0145569,0.00912476,0.0101318,0.0113525,0.00952148,0.000213623,-0.0189819,-0.0383301,-0.045105,-0.0320129,-0.00717163,0.0209961,0.0473938,0.0725403,0.0969849,0.119476,0.138855,0.152008,0.151611,0.135559,0.122406,0.123413,0.135712,0.151001,0.157043,0.153168,0.142609,0.124298,0.101135,0.0710144,0.0335693,-0.0126953,-0.0597839,-0.0922241,-0.105225,-0.102753,-0.0933533,-0.0812073,-0.0704041,-0.0639648,-0.0654297,-0.0728149,-0.0820923,-0.0917969,-0.102417,-0.108185,-0.101135,-0.0802612,-0.0505981,-0.0155029,0.0174561,0.0415344,0.0528259,0.0508118,0.0419312,0.0249634,-0.00100708,-0.0365906,-0.0744934,-0.108398,-0.135101,-0.154633,-0.170807,-0.191803,-0.219543,-0.251953,-0.279388,-0.296173,-0.309875,-0.330658,-0.359253,-0.381744,-0.389069,-0.381958,-0.366791,-0.347321,-0.324554,-0.293488,-0.251007,-0.194489,-0.129517,-0.0626831,-0.00314331,0.0474548,0.0943604,0.138123,0.1763,0.20047,0.218719,0.238861,0.267731,0.300323,0.325378,0.343567,0.36026,0.371063,0.363434,0.33551,0.294891,0.24765,0.202271,0.158447,0.12027,0.0896606,0.069458,0.057251,0.048584,0.0422058,0.0293884,0.00793457,-0.01651,-0.0371094,-0.049408,-0.0532227,-0.0473938,-0.0337524,-0.00985718,0.0269775,0.0687256,0.10672,0.133545,0.145905,0.148712,0.146118,0.138397,0.127502,0.118805,0.118652,0.125092,0.136047,0.144562,0.147125,0.139923,0.121674,0.093689,0.0559692,0.0118103,-0.0339661,-0.0761108,-0.104492,-0.118469,-0.11972,-0.114563,-0.107239,-0.0969238,-0.0889893,-0.0852966,-0.0894775,-0.0951538,-0.0996704,-0.100281,-0.0934143,-0.0784607,-0.0549622,-0.0266418,0.00308228,0.0283813,0.0467224,0.0547791,0.0514221,0.0392761,0.0202026,-0.00549316,-0.036438,-0.068512,-0.0963135,-0.117706,-0.136993,-0.161682,-0.191406,-0.222076,-0.248657,-0.270538,-0.294495,-0.326569,-0.360657,-0.385101,-0.391754,-0.391876,-0.384644,-0.367706,-0.338531,-0.296051,-0.24469,-0.186859,-0.126587,-0.0709534,-0.025177,0.0175171,0.0630188,0.10376,0.128662,0.143768,0.168793,0.212158,0.263031,0.303162,0.332825,0.358521,0.380524,0.387665,0.37088,0.335114,0.286438,0.233368,0.183899,0.141266,0.113892,0.0973816,0.0879822,0.0813293,0.0777283,0.0704041,0.0533447,0.0268555,-0.00195312,-0.0249634,-0.0380554,-0.0438232,-0.038269,-0.0213318,0.00839233,0.0440369,0.0797424,0.107391,0.127045,0.136383,0.137573,0.132477,0.123291,0.11496,0.110809,0.114563,0.120667,0.127777,0.13147,0.129456,0.115356,0.0906677,0.0547791,0.0147705,-0.0260925,-0.065094,-0.0943604,-0.109924,-0.113617,-0.109863,-0.103363,-0.0967102,-0.0909424,-0.0917358,-0.0986633,-0.109863,-0.113342,-0.110657,-0.102081,-0.0863037,-0.0631409,-0.0335693,-0.00396729,0.0209961,0.037384,0.0461731,0.0458374,0.0361633,0.0179138,-0.00415039,-0.0299988,-0.0578613,-0.0841675,-0.105896,-0.126312,-0.146973,-0.173218,-0.200256,-0.224487,-0.245178,-0.265961,-0.291626,-0.318451,-0.339813,-0.353027,-0.360321,-0.358582,-0.341736,-0.31189,-0.273956,-0.232605,-0.184235,-0.128174,-0.0624084,-0.00537109,0.0387878,0.0733032,0.098938,0.113831,0.12558,0.148468,0.182678,0.216431,0.247192,0.278107,0.313965,0.348053,0.36142,0.345367,0.306854,0.255035,0.200928,0.149475,0.112427,0.0869141,0.0752258,0.0725403,0.0769653,0.0853577,0.0906677,0.0839539,0.0655823,0.0387268,0.0110168,-0.0106812,-0.0180664,-0.0119324,0.00671387,0.0375977,0.0747681,0.110748,0.139923,0.161682,0.171082,0.164154,0.143829,0.116974,0.0952454,0.0835571,0.0795898,0.081543,0.0903931,0.0972595,0.0968323,0.0857849,0.0643616,0.0301208,-0.0131531,-0.060791,-0.104553,-0.135162,-0.147858,-0.147247,-0.135498,-0.116913,-0.0979919,-0.0866394,-0.0829468,-0.0842285,-0.0885925,-0.0933533,-0.0939636,-0.0883179,-0.0733032,-0.048584,-0.0193176,0.00839233,0.033905,0.0487366,0.0522766,0.0445557,0.0267639,-0.000671387,-0.0323486,-0.0658264,-0.0968323,-0.123016,-0.143494,-0.161743,-0.177704,-0.196381,-0.220398,-0.240417,-0.259735,-0.284576,-0.314026,-0.33847,-0.352203,-0.354034,-0.341492,-0.310059,-0.260803,-0.205231,-0.15799,-0.120331,-0.0767822,-0.0195312,0.032959,0.0683289,0.0910034,0.107788,0.117462,0.134369,0.167572,0.212158,0.246094,0.263275,0.274445,0.291809,0.31308,0.32135,0.297729,0.246521,0.185303,0.130951,0.09021,0.065979,0.0531616,0.0447693,0.0418701,0.0464478,0.0549622,0.0617371,0.0629578,0.0569153,0.039856,0.0173035,0.00598145,0.0126953,0.0324707,0.0602722,0.0904846,0.121399,0.148712,0.17276,0.19281,0.204163,0.200409,0.173706,0.139343,0.111481,0.0962524,0.0873108,0.0782471,0.0715332,0.0624084,0.0498657,0.0355835,0.0143738,-0.0182495,-0.0600586,-0.103699,-0.145447,-0.170746,-0.178711,-0.172363,-0.157318,-0.135834,-0.115173,-0.102142,-0.0954895,-0.0912781,-0.0870361,-0.0803223,-0.0732117,-0.0614624,-0.045105,-0.0196533,0.0110168,0.0396118,0.057373,0.0612793,0.0516663,0.0301208,-0.00100708,-0.036377,-0.0760498,-0.115967,-0.151215,-0.177582,-0.195892,-0.208527,-0.218781,-0.228333,-0.238647,-0.2547,-0.279114,-0.308655,-0.338379,-0.358521,-0.360077,-0.337372,-0.300659,-0.247437,-0.180389,-0.106842,-0.0404053,0.0192566,0.0711975,0.111145,0.136169,0.147522,0.1492,0.152496,0.166168,0.190338,0.219452,0.25296,0.284698,0.301819,0.310547,0.314148,0.303223,0.263489,0.202606,0.133759,0.0749817,0.0312195,0.0067749,-0.00564575,-0.0067749,0.00112915,0.0139465,0.0276489,0.0403442,0.04422,0.037384,0.0231628,0.0174561,0.0252991,0.0445557,0.0714722,0.10556,0.139404,0.168121,0.188934,0.206848,0.214081,0.211609,0.19577,0.173553,0.146973,0.125916,0.107849,0.0956421,0.0818176,0.0639648,0.0390015,0.012085,-0.015564,-0.0478516,-0.0871887,-0.126984,-0.163422,-0.189941,-0.201416,-0.197449,-0.180725,-0.156586,-0.131348,-0.111877,-0.0965881,-0.0862427,-0.0818176,-0.0783997,-0.0707397,-0.0561829,-0.0379333,-0.0152893,0.0102539,0.0377197,0.0603943,0.0701294,0.0637512,0.0448303,0.0150452,-0.0267029,-0.0765686,-0.12558,-0.166321,-0.201813,-0.232819,-0.25705,-0.270538,-0.2771,-0.282684,-0.288269,-0.299194,-0.31839,-0.343567,-0.361755,-0.36026,-0.33429,-0.288788,-0.227997,-0.159729,-0.0879211,-0.0145569,0.0592651,0.127502,0.176697,0.199188,0.201752,0.198853,0.201935,0.215576,0.241272,0.270203,0.294434,0.306976,0.313812,0.32489,0.328979,0.304504,0.247253,0.172699,0.0998535,0.0387268,-0.00335693,-0.0250244,-0.0317383,-0.0307312,-0.0256348,-0.0128174,0.0100708,0.0335693,0.0426025,0.0344238,0.0192566,0.0135498,0.0250244,0.0534973,0.0949097,0.136993,0.172272,0.198669,0.222687,0.243073,0.251221,0.239655,0.208801,0.169739,0.134552,0.109253,0.0920105,0.0726318,0.0524902,0.0279846,0.00341797,-0.0228882,-0.0520935,-0.0857849,-0.125305,-0.166443,-0.203094,-0.226562,-0.231598,-0.219788,-0.196777,-0.167389,-0.137329,-0.110199,-0.0897217,-0.0713501,-0.0592651,-0.0488586,-0.0370483,-0.0246277,-0.00765991,0.0138245,0.0390015,0.0582581,0.0690002,0.0693359,0.0579224,0.0301208,-0.0114746,-0.0634155,-0.119659,-0.169006,-0.212952,-0.250671,-0.281891,-0.304443,-0.318054,-0.322815,-0.321075,-0.32196,-0.336517,-0.362,-0.386169,-0.386658,-0.355835,-0.302094,-0.241089,-0.170593,-0.0934143,-0.00924683,0.0769653,0.160126,0.223083,0.250122,0.247314,0.232941,0.230865,0.245972,0.268738,0.285309,0.299194,0.315033,0.328918,0.33725,0.336639,0.313812,0.259338,0.179718,0.0932312,0.0268555,-0.0135498,-0.0353088,-0.0475769,-0.0498657,-0.0429382,-0.0249634,0.00256348,0.0313416,0.0549011,0.0603943,0.0525513,0.0489807,0.0657043,0.101624,0.142883,0.179932,0.208252,0.232208,0.251617,0.263824,0.26355,0.247314,0.214294,0.1716,0.13208,0.100952,0.0762939,0.052002,0.0267639,-0.00396729,-0.0388489,-0.077179,-0.113007,-0.147034,-0.184235,-0.219879,-0.251068,-0.266907,-0.262085,-0.237457,-0.202759,-0.164825,-0.130859,-0.104553,-0.082428,-0.0596619,-0.0400696,-0.028717,-0.0173035,-6.10352e-05,0.0233459,0.0484619,0.0691833,0.085022,0.0917358,0.0839539,0.0571899,0.0147095,-0.0391846,-0.0986633,-0.159851,-0.212738,-0.256989,-0.294159,-0.325378,-0.345917,-0.351135,-0.34906,-0.351471,-0.364899,-0.381287,-0.395569,-0.399872,-0.380402,-0.332214,-0.262421,-0.183746,-0.100861,-0.0142822,0.0740967,0.15918,0.227509,0.266449,0.273834,0.261353,0.245026,0.242218,0.263153,0.290131,0.306793,0.314148,0.319122,0.327789,0.328583,0.308594,0.255707,0.175568,0.0892639,0.0171814,-0.0299377,-0.0520935,-0.0570374,-0.0517578,-0.041626,-0.0202637,0.0117493,0.0479736,0.0783081,0.0955811,0.0991211,0.100128,0.110931,0.140259,0.183563,0.229523,0.266571,0.285706,0.292419,0.292542,0.286499,0.268585,0.230072,0.17926,0.124634,0.0818787,0.0528259,0.0312195,0.0100098,-0.0220947,-0.0603943,-0.104034,-0.145905,-0.184357,-0.222076,-0.258789,-0.290283,-0.304962,-0.297302,-0.264893,-0.216309,-0.165497,-0.118042,-0.0818176,-0.0548401,-0.0375061,-0.0228271,-0.0107422,-0.000610352,0.00759888,0.0191345,0.0361023,0.0561829,0.0734253,0.0786438,0.0645752,0.0306091,-0.0190735,-0.0807495,-0.145172,-0.208649,-0.266907,-0.317505,-0.355316,-0.379181,-0.387726,-0.386505,-0.383148,-0.380737,-0.385498,-0.393158,-0.393219,-0.370544,-0.319519,-0.249664,-0.170197,-0.0909424,-0.0103455,0.0779724,0.167664,0.239929,0.280273,0.287384,0.272675,0.25705,0.257996,0.274353,0.288666,0.297241,0.297058,0.295898,0.299927,0.298981,0.269531,0.210144,0.131012,0.0520935,-0.0171204,-0.0617371,-0.0794067,-0.0751038,-0.0575867,-0.0381775,-0.0142212,0.0187378,0.0586548,0.0920715,0.107239,0.111664,0.116638,0.135498,0.172699,0.230682,0.29187,0.333679,0.353088,0.358246,0.360199,0.347107,0.31189,0.25415,0.185699,0.125031,0.078064,0.0450439,0.0234985,0.00558472,-0.0223389,-0.060791,-0.102692,-0.142944,-0.185913,-0.231415,-0.273956,-0.308716,-0.325714,-0.315247,-0.278198,-0.22113,-0.158386,-0.105042,-0.0665894,-0.0367126,-0.0116882,0.00341797,0.0104065,0.0104675,0.0100098,0.0129395,0.0238342,0.0422058,0.0543518,0.0525513,0.0336914,-0.0038147,-0.0554504,-0.118195,-0.187531,-0.253815,-0.313232,-0.362762,-0.402008,-0.425293,-0.428864,-0.416107,-0.404907,-0.400818,-0.404175,-0.404755,-0.389252,-0.344635,-0.276093,-0.197723,-0.122406,-0.0410156,0.0501404,0.151733,0.242065,0.298645,0.314575,0.30188,0.279266,0.264038,0.26416,0.270416,0.271606,0.268524,0.270416,0.276703,0.281006,0.264709,0.2229,0.155518,0.0708008,-0.016449,-0.0808105,-0.107574,-0.106171,-0.0899353,-0.066925,-0.0331421,0.0102539,0.0634766,0.110474,0.141418,0.151154,0.146118,0.147369,0.170532,0.220673,0.27478,0.319275,0.352478,0.377655,0.389526,0.383545,0.351959,0.298859,0.227325,0.149597,0.0782471,0.0261841,-0.00857544,-0.0314636,-0.0479126,-0.066925,-0.0886536,-0.114563,-0.143768,-0.172699,-0.207733,-0.243835,-0.277313,-0.286499,-0.266724,-0.224915,-0.168243,-0.110931,-0.0582581,-0.0147095,0.0181885,0.0377197,0.0464478,0.0453796,0.0367126,0.0289307,0.0226746,0.0216064,0.0169067,0.0088501,-0.0065918,-0.0369873,-0.0848999,-0.147034,-0.214233,-0.277863,-0.334961,-0.388519,-0.431488,-0.457916,-0.462738,-0.449066,-0.427582,-0.406036,-0.393951,-0.385895,-0.364288,-0.321533,-0.258514,-0.191132,-0.125366,-0.0503235,0.037384,0.135834,0.227722,0.292084,0.322418,0.317719,0.296906,0.275421,0.262604,0.254242,0.237793,0.219788,0.208923,0.207794,0.212067,0.207062,0.184418,0.13739,0.0717468,0.00402832,-0.0481262,-0.0712891,-0.0725403,-0.0609436,-0.0410767,-0.0128174,0.0350952,0.093689,0.154022,0.197784,0.21759,0.220551,0.224976,0.242065,0.269409,0.299591,0.323364,0.336792,0.343567,0.34436,0.334106,0.303436,0.250885,0.179321,0.10376,0.0327454,-0.0259094,-0.0675049,-0.0924683,-0.10733,-0.120544,-0.135162,-0.146179,-0.15033,-0.1586,-0.174835,-0.197327,-0.214294,-0.217926,-0.19986,-0.16214,-0.112152,-0.0585938,-0.00900269,0.0346985,0.0688477,0.0940857,0.102478,0.0920715,0.0696106,0.0418091,0.013031,-0.0147095,-0.0395203,-0.0622253,-0.0882568,-0.121887,-0.166901,-0.220398,-0.27536,-0.328125,-0.379608,-0.427704,-0.464752,-0.48349,-0.481812,-0.463745,-0.437195,-0.409851,-0.384644,-0.345642,-0.287781,-0.213409,-0.137451,-0.0716858,-0.0124207,0.0487366,0.120941,0.194031,0.249329,0.275909,0.271881,0.255707,0.242279,0.237518,0.236298,0.223297,0.20047,0.174896,0.154968,0.146362,0.136902,0.117859,0.0821533,0.0323486,-0.0149536,-0.0457764,-0.0498657,-0.0330811,-0.00448608,0.0206604,0.0443726,0.0741577,0.122162,0.177185,0.223358,0.248932,0.255646,0.264557,0.285767,0.32309,0.35907,0.378784,0.374695,0.354218,0.329407,0.303955,0.265717,0.21048,0.141205,0.0711975,0.0118103,-0.0318909,-0.0622864,-0.0834351,-0.104553,-0.130402,-0.156525,-0.174561,-0.182892,-0.185699,-0.187988,-0.192139,-0.192017,-0.177795,-0.146454,-0.102356,-0.0550232,-0.0189209,0.00402832,0.0198059,0.0336914,0.0454407,0.0495911,0.0439453,0.0298767,0.0147705,0.00213623,-0.0120239,-0.0303345,-0.0596008,-0.0994568,-0.150543,-0.206055,-0.261017,-0.311279,-0.354431,-0.39093,-0.417328,-0.431946,-0.431274,-0.418854,-0.400269,-0.382965,-0.370209,-0.354828,-0.318451,-0.254639,-0.174042,-0.0959167,-0.0292664,0.0303345,0.0935669,0.161469,0.214569,0.239075,0.224365,0.188721,0.156708,0.148041,0.1586,0.168335,0.165314,0.156036,0.152496,0.157867,0.15744,0.14035,0.102631,0.04953,-0.00469971,-0.0471191,-0.0602722,-0.0438843,-0.00592041,0.0389404,0.0802612,0.119476,0.160675,0.205109,0.244568,0.267395,0.266571,0.255981,0.25592,0.279114,0.316162,0.346588,0.357178,0.347656,0.32724,0.300323,0.267059,0.218323,0.153625,0.0826111,0.0198669,-0.0236206,-0.0519409,-0.065094,-0.0704651,-0.0785217,-0.0895996,-0.105835,-0.116638,-0.121826,-0.125916,-0.133759,-0.142609,-0.142151,-0.124359,-0.0932312,-0.0518188,-0.0137634,0.0101929,0.0189209,0.0152893,0.00784302,-0.00308228,-0.0220032,-0.046051,-0.0673218,-0.0822754,-0.0939636,-0.105316,-0.11853,-0.139008,-0.168793,-0.211334,-0.260468,-0.307373,-0.345428,-0.375031,-0.39563,-0.403687,-0.398651,-0.377655,-0.345825,-0.31308,-0.29187,-0.278534,-0.257507,-0.215759,-0.150543,-0.0810852,-0.0232849,0.0191956,0.0628967,0.118134,0.173431,0.206055,0.199188,0.155579,0.104156,0.0755615,0.0755005,0.0873718,0.0941467,0.0936279,0.0940247,0.107056,0.125092,0.134979,0.125153,0.0926208,0.0455017,0.00128174,-0.0198059,-0.00744629,0.0342407,0.0899963,0.13858,0.173828,0.203888,0.24234,0.286255,0.314087,0.308533,0.276642,0.244293,0.237976,0.26001,0.293427,0.313354,0.306793,0.281555,0.250122,0.222076,0.188538,0.138794,0.0732117,0.00280762,-0.0511475,-0.0803223,-0.0782471,-0.0553589,-0.0328064,-0.0260925,-0.0340881,-0.0422058,-0.0395203,-0.033905,-0.0377197,-0.0559692,-0.0785828,-0.0863647,-0.0680542,-0.0314636,0.00738525,0.0289307,0.0306702,0.0148315,-0.00738525,-0.0340881,-0.0657654,-0.102142,-0.140594,-0.176636,-0.200409,-0.210541,-0.209717,-0.208801,-0.216766,-0.23819,-0.272339,-0.307983,-0.336517,-0.357513,-0.37027,-0.375641,-0.370483,-0.351532,-0.318939,-0.282227,-0.252472,-0.225372,-0.194702,-0.151398,-0.0991211,-0.0496521,-0.0100098,0.0206604,0.0540161,0.0922241,0.122894,0.133484,0.116364,0.080658,0.0457764,0.0261841,0.0241699,0.0290527,0.0340881,0.0401306,0.0567932,0.0842896,0.113892,0.133301,0.132751,0.113953,0.0906067,0.0684509,0.0630798,0.0779114,0.110748,0.15155,0.183411,0.211548,0.243011,0.278992,0.308044,0.315704,0.300476,0.276184,0.254089,0.246368,0.249451,0.256256,0.254761,0.238251,0.213898,0.186371,0.160065,0.12738,0.0875244,0.045105,0.00442505,-0.0262451,-0.0400085,-0.0312805,-0.00650024,0.0151672,0.0247803,0.0235596,0.0241089,0.029541,0.0285339,0.0173035,-0.00268555,-0.0198669,-0.0268555,-0.0216064,-0.00933838,0.0020752,0.00543213,-0.00692749,-0.0308838,-0.0618896,-0.0954285,-0.132538,-0.168243,-0.201202,-0.228912,-0.248718,-0.2612,-0.262939,-0.262421,-0.266571,-0.282471,-0.303009,-0.318665,-0.327789,-0.330872,-0.329193,-0.318604,-0.298462,-0.272888,-0.251068,-0.235779,-0.223907,-0.205292,-0.172546,-0.126495,-0.0819397,-0.0436096,-0.0109253,0.0220947,0.0622864,0.0963135,0.108185,0.089386,0.0437012,-0.00268555,-0.0313416,-0.0396729,-0.0334167,-0.0246887,-0.00924683,0.0137634,0.0526123,0.0971069,0.133881,0.151947,0.145966,0.121948,0.0964966,0.0900574,0.108063,0.142761,0.17865,0.210205,0.235962,0.26181,0.288788,0.310394,0.312744,0.29129,0.252075,0.217529,0.206787,0.217316,0.232422,0.236389,0.22879,0.210724,0.187592,0.159393,0.130676,0.0971069,0.0570374,0.0134888,-0.0184021,-0.0232849,-0.00222778,0.0310669,0.0628967,0.0831604,0.0918884,0.0920105,0.0917969,0.0881958,0.0726929,0.044281,0.012146,-0.00805664,-0.00811768,0.00469971,0.0162964,0.0171204,0.00469971,-0.0210876,-0.0592651,-0.101685,-0.146576,-0.189728,-0.229584,-0.263489,-0.285156,-0.289948,-0.282227,-0.272278,-0.270203,-0.278381,-0.294891,-0.313354,-0.326385,-0.335175,-0.335693,-0.329529,-0.313354,-0.287445,-0.254028,-0.226227,-0.210052,-0.196106,-0.170471,-0.13208,-0.0912781,-0.0596008,-0.0371094,-0.0110779,0.0252991,0.061676,0.0826111,0.0769043,0.046051,0.00241089,-0.0328979,-0.0465698,-0.0414124,-0.0336304,-0.0232849,-0.00341797,0.0355835,0.0844421,0.126099,0.150604,0.154083,0.142487,0.12088,0.103149,0.107574,0.135315,0.173157,0.202148,0.221405,0.242615,0.271271,0.297913,0.305573,0.288269,0.249207,0.208191,0.188263,0.193878,0.210938,0.22113,0.214752,0.198914,0.181946,0.167328,0.145905,0.113831,0.0745544,0.033905,-0.00106812,-0.0168457,-0.00463867,0.02771,0.0638123,0.0845032,0.0913391,0.0941467,0.0999451,0.102203,0.0905457,0.0653687,0.0348206,0.013031,0.00857544,0.0189819,0.0328979,0.0387268,0.0278625,0.00463867,-0.0280457,-0.0664368,-0.110931,-0.156708,-0.200073,-0.237457,-0.264771,-0.277435,-0.274017,-0.264771,-0.259247,-0.266388,-0.283569,-0.304108,-0.317993,-0.328064,-0.337189,-0.340668,-0.336853,-0.320862,-0.297974,-0.272766,-0.253296,-0.231934,-0.203552,-0.164032,-0.119995,-0.0773926,-0.0400696,-0.00891113,0.0234375,0.0522156,0.0701294,0.0691833,0.0461121,0.0107422,-0.0222168,-0.0415344,-0.0457153,-0.039856,-0.021759,0.00408936,0.0376587,0.07724,0.111877,0.137451,0.14502,0.136383,0.116852,0.101074,0.101074,0.117706,0.14798,0.181732,0.210205,0.234558,0.258331,0.280121,0.29422,0.290192,0.267731,0.23819,0.218597,0.213074,0.218872,0.227173,0.225098,0.210602,0.185577,0.159851,0.135498,0.110657,0.081543,0.0454407,0.013092,-0.00469971,0.0012207,0.0256958,0.0557861,0.0757751,0.0812683,0.0791931,0.0758972,0.0708618,0.0587769,0.0401917,0.0166321,-0.00247192,-0.0071106,0.00369263,0.0191345,0.0332947,0.0315552,0.0129395,-0.0183105,-0.0550232,-0.091217,-0.126312,-0.158447,-0.192627,-0.222412,-0.239258,-0.241608,-0.237061,-0.23584,-0.242889,-0.261017,-0.282288,-0.299194,-0.31073,-0.31604,-0.316162,-0.315582,-0.3078,-0.294617,-0.279053,-0.269073,-0.258331,-0.236847,-0.203613,-0.161804,-0.116852,-0.0731506,-0.0302124,0.0162354,0.0556335,0.0821533,0.085907,0.0664368,0.0292664,-0.00900269,-0.0320129,-0.0393982,-0.0375061,-0.0272522,-0.0065918,0.0317993,0.0767212,0.115112,0.138245,0.145966,0.139465,0.120941,0.102478,0.0977783,0.109406,0.133423,0.159454,0.18161,0.202423,0.225037,0.247437,0.260254,0.256317,0.235626,0.208923,0.197449,0.207184,0.227844,0.242401,0.243561,0.235046,0.218658,0.198792,0.170685,0.135895,0.0950317,0.0535583,0.019989,0.00408936,0.0118103,0.0391846,0.0722046,0.0973816,0.103485,0.0990601,0.0924683,0.0826721,0.0629578,0.0311279,-0.00408936,-0.0303345,-0.0371094,-0.0270386,-0.00958252,0.00363159,0.00524902,-0.0109253,-0.0368347,-0.0690613,-0.10437,-0.140747,-0.17569,-0.204285,-0.226654,-0.236847,-0.233276,-0.222076,-0.213623,-0.217377,-0.234772,-0.257996,-0.27771,-0.290863,-0.301331,-0.310547,-0.313416,-0.307312,-0.294434,-0.278778,-0.266785,-0.252625,-0.232025,-0.201019,-0.164703,-0.126923,-0.0858459,-0.0445557,-0.00213623,0.0399475,0.0679932,0.0753784,0.0593872,0.0299988,0.00247192,-0.0168457,-0.0250244,-0.0271912,-0.0175781,0.0085144,0.0452881,0.0888062,0.123688,0.147583,0.15564,0.150208,0.136047,0.121674,0.119476,0.129059,0.147583,0.17041,0.190399,0.210663,0.229797,0.247925,0.250671,0.235962,0.20871,0.182892,0.174225,0.182159,0.196716,0.208588,0.211487,0.20752,0.197327,0.18222,0.158722,0.126099,0.0887146,0.0524902,0.0264282,0.0177307,0.029541,0.0577087,0.0867004,0.104218,0.109253,0.108246,0.104706,0.0941467,0.0716858,0.0422058,0.0129395,-0.00564575,-0.00845337,0.00146484,0.012146,0.0155029,0.00631714,-0.0166321,-0.0469055,-0.0842896,-0.122009,-0.158661,-0.188599,-0.213745,-0.229858,-0.232941,-0.226318,-0.218933,-0.218262,-0.228516,-0.247986,-0.270996,-0.289948,-0.302551,-0.309784,-0.311676,-0.310455,-0.303772,-0.289185,-0.276581,-0.268982,-0.265717,-0.2565,-0.233093,-0.194763,-0.147919,-0.100677,-0.052948,-0.00442505,0.0424805,0.078064,0.0941467,0.0819397,0.0458984,0.00140381,-0.0308838,-0.0413513,-0.0361023,-0.0224304,-0.000396729,0.0369263,0.089386,0.136108,0.166168,0.178467,0.17215,0.153015,0.129944,0.121002,0.127655,0.151672,0.179138,0.199799,0.219879,0.240204,0.258789,0.266632,0.259338,0.236511,0.205292,0.184296,0.186035,0.207397,0.23175,0.240662,0.233612,0.215759,0.194366,0.166229,0.128784,0.0855103,0.0394592,0.0017395,-0.0205994,-0.0137024,0.0189209,0.0614014,0.0936279,0.103973,0.102478,0.0971069,0.0888672,0.0699463,0.0415344,0.00946045,-0.0184021,-0.0291138,-0.0206604,0.00012207,0.0167236,0.0170593,-0.00189209,-0.0326843,-0.0679932,-0.103973,-0.138794,-0.169861,-0.197052,-0.219391,-0.230133,-0.228729,-0.217712,-0.210876,-0.218994,-0.240875,-0.268463,-0.290619,-0.306183,-0.315643,-0.318329,-0.320282,-0.314911,-0.304901,-0.290283,-0.282806,-0.277588,-0.26947,-0.251007,-0.218323,-0.175354,-0.129181,-0.0799255,-0.0264282,0.0283813,0.0707397,0.0935669,0.0875244,0.0583801,0.0196533,-0.00991821,-0.0271912,-0.0327454,-0.0300598,-0.0152893,0.0185242,0.0681152,0.116974,0.152069,0.165649,0.16275,0.149139,0.134827,0.131134,0.138458,0.159668,0.184357,0.206177,0.227112,0.248535,0.271332,0.284698,0.279877,0.253357,0.21463,0.192017,0.194641,0.215363,0.237732,0.242554,0.233704,0.220337,0.210144,0.197174,0.170349,0.12851,0.0761108,0.02771,0.00537109,0.00918579,0.0338135,0.0620728,0.081543,0.0898743,0.0882568,0.0904846,0.0913391,0.0798035,0.0514832,0.0105286,-0.0233459,-0.0358276,-0.0238342,-0.00704956,0.00274658,-0.00357056,-0.0239563,-0.0514832,-0.0804749,-0.106903,-0.137726,-0.170685,-0.202545,-0.22522,-0.231598,-0.224091,-0.211334,-0.207397,-0.214844,-0.235718,-0.261353,-0.282562,-0.295441,-0.304779,-0.312744,-0.32074,-0.32135,-0.309204,-0.293762,-0.28476,-0.286835,-0.28894,-0.283569,-0.258789,-0.220398,-0.170593,-0.117645,-0.0595398,0.00012207,0.053009,0.0903931,0.102295,0.0838928,0.0481262,0.00973511,-0.0173035,-0.0319519,-0.0332947,-0.0198669,0.0110779,0.0558472,0.103699,0.138519,0.159058,0.16153,0.150818,0.133972,0.119537,0.123627,0.143341,0.173157,0.202942,0.229797,0.254578,0.277252,0.289459,0.281464,0.253235,0.216431,0.189331,0.186707,0.20639,0.236633,0.262024,0.273499,0.272278,0.262268,0.241272,0.204834,0.152161,0.0924072,0.0353088,-0.00296021,-0.0124207,0.00598145,0.041626,0.0736389,0.0940247,0.101685,0.108795,0.108398,0.0964966,0.0675049,0.0304565,-0.00289917,-0.0209961,-0.0187378,-0.00335693,0.00857544,0.0116882,-0.00228882,-0.0275269,-0.0587769,-0.0913391,-0.127167,-0.166443,-0.200348,-0.225769,-0.23645,-0.228241,-0.213013,-0.201477,-0.20639,-0.225433,-0.253693,-0.281891,-0.30484,-0.325287,-0.340271,-0.350525,-0.351074,-0.342468,-0.327301,-0.313354,-0.308136,-0.308655,-0.306122,-0.291412,-0.258667,-0.212891,-0.157715,-0.0967712,-0.0339661,0.0280457,0.0759583,0.102295,0.100281,0.0716248,0.0323486,-0.0050354,-0.0300598,-0.0397339,-0.0343018,-0.0112,0.0312195,0.0834351,0.131012,0.16153,0.173431,0.166901,0.151215,0.131866,0.123962,0.132294,0.157379,0.189331,0.224762,0.257324,0.285645,0.306305,0.310944,0.293213,0.256317,0.217651,0.195374,0.197906,0.217041,0.240143,0.255432,0.259735,0.256653,0.24826,0.227509,0.189728,0.137329,0.0785217,0.0325623,0.011261,0.0176392,0.0394592,0.0653687,0.0876465,0.0975952,0.101288,0.102356,0.0959167,0.0743103,0.0383911,0.00323486,-0.0192566,-0.0212708,-0.0071106,0.00979614,0.0188599,0.0137634,-0.00442505,-0.0298767,-0.0593262,-0.0923462,-0.131958,-0.17041,-0.200531,-0.219116,-0.219269,-0.207916,-0.197113,-0.196045,-0.206512,-0.228119,-0.254425,-0.279266,-0.303162,-0.326294,-0.344238,-0.352356,-0.352081,-0.346985,-0.338318,-0.336182,-0.341797,-0.347595,-0.342804,-0.319122,-0.277588,-0.224579,-0.163208,-0.0939026,-0.0193176,0.0470581,0.0884705,0.102692,0.0877075,0.0541687,0.0117493,-0.0253601,-0.0463867,-0.0526733,-0.0430908,-0.0114746,0.0376587,0.0923462,0.136444,0.158661,0.164825,0.160065,0.150604,0.136841,0.135559,0.151337,0.182404,0.215912,0.248383,0.282959,0.308929,0.318329,0.305908,0.274445,0.23584,0.211884,0.210205,0.22818,0.255707,0.279114,0.29187,0.298065,0.294952,0.270935,0.223022,0.158051,0.0919495,0.0375061,0.00616455,0.000671387,0.0175781,0.0448914,0.0779114,0.105438,0.120605,0.124695,0.117584,0.0966492,0.0627441,0.0256958,-0.0050354,-0.0180664,-0.0134277,-0.00128174,0.00704956,0.00717163,-0.00222778,-0.0231628,-0.0522156,-0.0897217,-0.13028,-0.168793,-0.197998,-0.211151,-0.210388,-0.199585,-0.184296,-0.176117,-0.181,-0.201019,-0.228912,-0.259857,-0.290283,-0.314819,-0.332886,-0.339996,-0.337585,-0.324371,-0.311066,-0.305969,-0.313141,-0.332153,-0.34491,-0.347931,-0.330658,-0.297455,-0.247925,-0.177917,-0.100616,-0.0221558,0.0452881,0.0873718,0.097168,0.0766296,0.0381165,-0.0104675,-0.0518799,-0.0764465,-0.0827637,-0.0675049,-0.0269165,0.0303955,0.0861206,0.12973,0.156189,0.161285,0.151398,0.134308,0.121216,0.125305,0.148865,0.187988,0.231018,0.277527,0.319275,0.343811,0.346924,0.327118,0.291016,0.247437,0.213562,0.200012,0.210815,0.240662,0.27066,0.29361,0.304962,0.30127,0.277039,0.23349,0.173431,0.106903,0.0465698,0.00759888,-0.00146484,0.017395,0.0499878,0.0844421,0.111755,0.132477,0.145233,0.140259,0.11792,0.0808105,0.0424805,0.0100708,-0.00671387,-0.00799561,0.000274658,0.0085144,0.00744629,-0.00576782,-0.0306091,-0.0623474,-0.0988464,-0.138519,-0.177795,-0.208527,-0.224579,-0.223816,-0.209198,-0.190338,-0.180603,-0.185089,-0.204376,-0.230408,-0.26001,-0.289673,-0.315369,-0.331879,-0.340668,-0.336639,-0.323364,-0.308533,-0.302155,-0.306305,-0.325287,-0.345581,-0.356171,-0.343475,-0.309052,-0.254913,-0.185699,-0.111084,-0.0343628,0.0383911,0.0903931,0.111542,0.0933533,0.0488586,-0.00811768,-0.0599976,-0.0915527,-0.100739,-0.0881958,-0.0542908,-0.00570679,0.0477905,0.0987854,0.138062,0.154633,0.146851,0.132874,0.120331,0.123016,0.146454,0.187317,0.235229,0.281799,0.319122,0.342804,0.350067,0.338531,0.30719,0.25946,0.218109,0.202942,0.21283,0.241669,0.273834,0.298737,0.30838,0.30484,0.284912,0.244843,0.188599,0.122345,0.0610046,0.0194092,0.00793457,0.0214844,0.0487366,0.0826111,0.116119,0.139801,0.150818,0.145844,0.127777,0.098114,0.0626221,0.0310669,0.0108643,0.00610352,0.00946045,0.0134888,0.0104675,-0.00341797,-0.0266418,-0.0594482,-0.0987244,-0.141357,-0.17926,-0.208313,-0.22113,-0.216522,-0.198914,-0.179932,-0.167664,-0.168793,-0.187256,-0.216919,-0.252411,-0.286652,-0.316437,-0.335571,-0.344574,-0.34314,-0.333099,-0.319122,-0.309662,-0.31134,-0.3237,-0.343964,-0.360931,-0.361816,-0.338318,-0.291626,-0.223297,-0.141754,-0.0599365,0.0195923,0.0791321,0.109406,0.105988,0.0748291,0.0215454,-0.0390015,-0.0865784,-0.108582,-0.107452,-0.0818176,-0.037323,0.0160522,0.0654907,0.106842,0.130798,0.13269,0.124023,0.114441,0.112152,0.126251,0.167847,0.22348,0.277039,0.322693,0.35141,0.359741,0.348938,0.322144,0.280945,0.237183,0.206177,0.197235,0.213623,0.248322,0.287842,0.314026,0.318115,0.301544,0.266785,0.215912,0.155853,0.0934753,0.0445557,0.0182495,0.0178528,0.0412903,0.0768433,0.116791,0.147522,0.163422,0.162628,0.143616,0.117371,0.0828247,0.0501404,0.0245667,0.012146,0.00793457,0.0088501,0.00900269,-0.000549316,-0.0209961,-0.0542297,-0.0920715,-0.132812,-0.169006,-0.196838,-0.211609,-0.209656,-0.192963,-0.171539,-0.153687,-0.147247,-0.157715,-0.185303,-0.224091,-0.268799,-0.307587,-0.332214,-0.343018,-0.343231,-0.336304,-0.324707,-0.314819,-0.312683,-0.32254,-0.345245,-0.371826,-0.384705,-0.376434,-0.339874,-0.279449,-0.19873,-0.109741,-0.0212097,0.0582581,0.110199,0.124695,0.100006,0.0485229,-0.013092,-0.0704651,-0.108185,-0.125153,-0.11618,-0.0812073,-0.0266418,0.0308838,0.0787354,0.113281,0.128601,0.122681,0.108459,0.100403,0.107239,0.136993,0.185852,0.243622,0.296631,0.341675,0.365784,0.367523,0.346497,0.305573,0.252472,0.20578,0.184418,0.191467,0.220795,0.261688,0.299255,0.325165,0.328979,0.311737,0.271149,0.214081,0.147705,0.0847778,0.0388489,0.0220032,0.0346375,0.0669861,0.106049,0.142761,0.168396,0.177856,0.170258,0.14679,0.112274,0.0691223,0.0349731,0.0115356,0.00296021,0.00442505,0.00827026,0.00543213,-0.00650024,-0.0301208,-0.0665894,-0.108002,-0.150208,-0.185699,-0.20932,-0.214508,-0.200684,-0.173218,-0.143616,-0.123566,-0.120667,-0.139404,-0.175171,-0.224579,-0.272491,-0.314758,-0.341614,-0.35376,-0.349121,-0.338593,-0.324432,-0.313629,-0.313568,-0.325836,-0.350464,-0.380341,-0.396912,-0.389679,-0.351959,-0.288055,-0.199921,-0.101135,-0.00878906,0.068512,0.115234,0.126709,0.0997314,0.0458984,-0.0204773,-0.0828857,-0.125092,-0.142212,-0.133423,-0.0920715,-0.0323486,0.0289307,0.0747681,0.10672,0.119873,0.113342,0.103363,0.0972595,0.107239,0.139191,0.190125,0.250458,0.309448,0.358002,0.379517,0.374084,0.346497,0.300323,0.243011,0.195312,0.172089,0.17865,0.208466,0.251129,0.293884,0.326965,0.337189,0.315704,0.27066,0.213348,0.148712,0.0884705,0.0484619,0.0353699,0.0473938,0.0829468,0.126587,0.168671,0.196503,0.20462,0.187775,0.156921,0.116241,0.0674438,0.0263062,-6.10352e-05,-0.00967407,-0.00979614,-0.0067749,-0.00717163,-0.0169067,-0.0379944,-0.0711975,-0.113953,-0.152496,-0.18335,-0.20108,-0.201141,-0.182831,-0.152618,-0.123413,-0.101288,-0.0997925,-0.123016,-0.165894,-0.219604,-0.273621,-0.318176,-0.346588,-0.358307,-0.353973,-0.342468,-0.326782,-0.315369,-0.314911,-0.326447,-0.351807,-0.385223,-0.40625,-0.402618,-0.365173,-0.300659,-0.213409,-0.113892,-0.020813,0.0580444,0.111755,0.129395,0.103699,0.0474548,-0.020813,-0.0872498,-0.133209,-0.151489,-0.141815,-0.106567,-0.0502014,0.0127563,0.0611267,0.0935669,0.110657,0.109406,0.0991211,0.0935669,0.103699,0.135376,0.188599,0.252686,0.312744,0.361145,0.38382,0.379395,0.353638,0.305695,0.242676,0.183685,0.153015,0.154633,0.182739,0.227325,0.275635,0.312225,0.329865,0.320465,0.287598,0.236115,0.177795,0.119812,0.0763855,0.0603333,0.0723572,0.101288,0.141937,0.181549,0.206055,0.209869,0.194305,0.161469,0.116699,0.0646362,0.0201416,-0.00592041,-0.0145569,-0.0146179,-0.0107422,-0.00918579,-0.0189819,-0.0387268,-0.0688477,-0.106903,-0.145447,-0.175568,-0.192688,-0.192078,-0.1716,-0.135773,-0.100342,-0.0777283,-0.0757141,-0.0990601,-0.142487,-0.197998,-0.254822,-0.307251,-0.344238,-0.363098,-0.362213,-0.345245,-0.324554,-0.309875,-0.306915,-0.319397,-0.345642,-0.382477,-0.410187,-0.411957,-0.384308,-0.327789,-0.249329,-0.154572,-0.0549011,0.0346985,0.0987854,0.122681,0.104828,0.0532837,-0.0140381,-0.0812683,-0.130402,-0.158203,-0.159119,-0.133759,-0.0786438,-0.0118103,0.0467834,0.0848999,0.101013,0.10498,0.0975037,0.0922852,0.0977173,0.124512,0.173828,0.238647,0.302429,0.355713,0.387512,0.391754,0.367371,0.314819,0.247864,0.181671,0.137665,0.12738,0.150543,0.196777,0.248932,0.296722,0.326233,0.329193,0.30545,0.264038,0.208527,0.149811,0.102081,0.0783997,0.0805359,0.107849,0.147858,0.184845,0.209381,0.214569,0.200409,0.168121,0.121216,0.0693359,0.0222778,-0.00643921,-0.0181885,-0.0148315,-0.00900269,-0.00262451,-0.00570679,-0.0211487,-0.0489807,-0.0891418,-0.128113,-0.161621,-0.18335,-0.186768,-0.168579,-0.135773,-0.0974426,-0.0679321,-0.0583191,-0.074646,-0.115784,-0.1698,-0.231079,-0.286987,-0.330658,-0.353699,-0.357239,-0.342621,-0.319946,-0.302948,-0.297241,-0.304688,-0.327301,-0.361328,-0.398651,-0.420197,-0.412689,-0.372833,-0.303101,-0.213623,-0.110321,-0.0128784,0.0632324,0.106995,0.110657,0.0789185,0.020874,-0.0481262,-0.111206,-0.152832,-0.168243,-0.157318,-0.121399,-0.0636902,-0.00289917,0.0461121,0.0736389,0.0830078,0.0844421,0.0819397,0.0887146,0.108643,0.148987,0.207581,0.273895,0.334351,0.377777,0.397369,0.385834,0.344025,0.280945,0.210541,0.151001,0.118378,0.119049,0.149811,0.203217,0.257935,0.307312,0.336456,0.339203,0.315826,0.267578,0.211548,0.157928,0.116302,0.0974426,0.102417,0.12616,0.157654,0.185089,0.200592,0.196045,0.173218,0.133698,0.0849609,0.0355835,-0.00112915,-0.0209961,-0.0254211,-0.0169678,-0.00692749,0,-0.00363159,-0.0185242,-0.0458374,-0.0843506,-0.120148,-0.149933,-0.166046,-0.164642,-0.143951,-0.110809,-0.077301,-0.0558472,-0.0546875,-0.0776367,-0.123413,-0.181549,-0.243622,-0.298981,-0.337646,-0.360199,-0.361603,-0.3461,-0.324646,-0.30719,-0.301758,-0.303833,-0.321014,-0.348602,-0.380127,-0.400665,-0.391754,-0.350464,-0.280457,-0.195312,-0.103638,-0.0181274,0.0459595,0.0845642,0.0932922,0.0683289,0.0152283,-0.0505981,-0.11087,-0.148651,-0.162872,-0.152344,-0.121613,-0.073761,-0.0186462,0.0287781,0.0579224,0.0740967,0.0827637,0.0889282,0.100006,0.118866,0.156372,0.20932,0.267578,0.319946,0.357727,0.373169,0.35907,0.323486,0.271332,0.208527,0.150726,0.117706,0.117706,0.150391,0.206238,0.26712,0.317108,0.347321,0.352081,0.330261,0.292267,0.244019,0.192627,0.14093,0.110138,0.106659,0.121948,0.147644,0.172485,0.182617,0.174896,0.154236,0.119934,0.0759583,0.0348206,-0.000946045,-0.0220032,-0.0226135,-0.0144348,-0.00726318,-0.00134277,-0.00222778,-0.0161743,-0.0411987,-0.0748291,-0.110809,-0.141083,-0.156647,-0.15799,-0.141418,-0.111145,-0.0782471,-0.0562439,-0.0539551,-0.0758972,-0.120209,-0.175903,-0.233429,-0.286255,-0.325226,-0.350739,-0.355896,-0.343964,-0.321136,-0.301422,-0.293152,-0.295959,-0.307465,-0.327728,-0.355316,-0.381287,-0.389069,-0.364105,-0.30603,-0.226715,-0.136444,-0.0498047,0.019989,0.0653076,0.0856323,0.0775146,0.0411987,-0.0138855,-0.0755005,-0.12738,-0.156311,-0.161346,-0.143768,-0.105103,-0.0527649,0.00012207,0.0386658,0.0602722,0.0724182,0.0843506,0.102814,0.123505,0.148254,0.187988,0.23941,0.293091,0.333771,0.354218,0.348999,0.325104,0.281067,0.223694,0.164368,0.122284,0.106506,0.124176,0.172882,0.236053,0.297852,0.34314,0.361542,0.354706,0.32489,0.280884,0.228516,0.176697,0.134888,0.111084,0.109985,0.128601,0.153503,0.169189,0.169403,0.153412,0.124176,0.0885925,0.0503235,0.0152893,-0.00537109,-0.0110779,-0.00637817,-0.000946045,0.00415039,0.00341797,-0.00772095,-0.0274353,-0.0597229,-0.093811,-0.124969,-0.146912,-0.15564,-0.147919,-0.124237,-0.0953064,-0.0692749,-0.0589905,-0.069458,-0.10611,-0.15979,-0.216431,-0.269318,-0.309601,-0.336578,-0.346985,-0.341003,-0.321472,-0.301941,-0.286774,-0.282013,-0.286987,-0.303772,-0.329651,-0.359924,-0.379059,-0.373413,-0.339203,-0.272095,-0.185364,-0.0927429,-0.0148315,0.0420227,0.0802612,0.0921326,0.0724792,0.0257568,-0.0349731,-0.0979309,-0.149261,-0.174377,-0.171417,-0.145966,-0.100525,-0.0434875,0.0112,0.052002,0.0793152,0.0963135,0.107574,0.120728,0.142426,0.169006,0.201691,0.242279,0.287994,0.321533,0.334442,0.324219,0.295837,0.254761,0.199921,0.146912,0.109467,0.102692,0.132416,0.192749,0.259186,0.318115,0.354431,0.364105,0.349396,0.317596,0.272339,0.214417,0.15799,0.115021,0.0977173,0.101471,0.12149,0.148193,0.162872,0.161865,0.146973,0.121735,0.0892639,0.0555115,0.0259094,0.00592041,0.000671387,0.00134277,0.00302124,0.00408936,-0.000457764,-0.0124207,-0.0316772,-0.0593872,-0.0898743,-0.118378,-0.137787,-0.147369,-0.141205,-0.120331,-0.0960388,-0.0761108,-0.0714722,-0.0885315,-0.127167,-0.177643,-0.229858,-0.275574,-0.310608,-0.333435,-0.34201,-0.337463,-0.320343,-0.299316,-0.283691,-0.279663,-0.285645,-0.297577,-0.318115,-0.341888,-0.358643,-0.350677,-0.313904,-0.251617,-0.171692,-0.0908203,-0.0209351,0.0331421,0.0664978,0.0745544,0.0574646,0.0179749,-0.0415344,-0.102692,-0.150208,-0.173035,-0.170013,-0.142761,-0.0953064,-0.0394592,0.0132751,0.0527649,0.0751648,0.0926208,0.109131,0.127106,0.142212,0.161621,0.192963,0.232758,0.276855,0.307861,0.321533,0.316101,0.294769,0.254578,0.206238,0.158936,0.127655,0.120331,0.145111,0.193542,0.250946,0.302338,0.3349,0.345703,0.334503,0.306458,0.263489,0.212158,0.159515,0.117523,0.0953064,0.0954895,0.114349,0.137451,0.152161,0.155029,0.145966,0.12793,0.100067,0.0690613,0.0386658,0.0184631,0.00750732,0.00268555,-0.000274658,-0.00140381,-0.00497437,-0.0106812,-0.0253601,-0.0481262,-0.0751648,-0.101959,-0.12558,-0.137238,-0.134308,-0.122009,-0.102814,-0.0855103,-0.078186,-0.0889282,-0.117584,-0.158112,-0.202698,-0.242401,-0.277527,-0.307526,-0.324646,-0.327515,-0.318268,-0.301758,-0.284424,-0.273895,-0.277313,-0.289124,-0.305023,-0.321472,-0.33551,-0.337311,-0.319611,-0.276184,-0.210938,-0.132751,-0.0578003,0.00491333,0.052002,0.0737,0.0679321,0.0352478,-0.0129395,-0.0699463,-0.125427,-0.162476,-0.175964,-0.164703,-0.131744,-0.0828247,-0.0287781,0.0210876,0.0582581,0.0819397,0.0992737,0.11557,0.133972,0.15329,0.176239,0.206726,0.247101,0.290466,0.322479,0.332092,0.320679,0.290466,0.2435,0.188324,0.138,0.109528,0.109924,0.14093,0.191742,0.248199,0.300934,0.336243,0.349854,0.335358,0.298645,0.246368,0.189392,0.135986,0.101685,0.0870361,0.094635,0.117126,0.142548,0.160522,0.163086,0.15094,0.123749,0.0888062,0.0484009,0.0150452,-0.00738525,-0.020752,-0.0209961,-0.0172424,-0.0118713,-0.00665283,-0.00799561,-0.0201416,-0.0438843,-0.078186,-0.111603,-0.136047,-0.145569,-0.139191,-0.11853,-0.0913391,-0.0682678,-0.0579834,-0.0681763,-0.0972595,-0.143768,-0.194824,-0.2453,-0.28717,-0.318115,-0.333496,-0.329468,-0.314575,-0.289337,-0.267456,-0.256439,-0.256775,-0.268738,-0.288055,-0.312134,-0.33075,-0.334106,-0.313904,-0.269196,-0.198669,-0.118866,-0.0422058,0.0212097,0.0641479,0.0783081,0.062561,0.0241699,-0.0322876,-0.0968323,-0.154694,-0.189789,-0.197571,-0.178253,-0.135376,-0.0801392,-0.0246887,0.0235596,0.0562439,0.0755615,0.0898132,0.104156,0.124023,0.147369,0.176575,0.218872,0.269989,0.318115,0.347443,0.351746,0.328583,0.281677,0.21698,0.148529,0.093811,0.065918,0.0726929,0.115692,0.18222,0.254486,0.319397,0.360535,0.371887,0.353821,0.311554,0.252686,0.190338,0.136993,0.106781,0.0963745,0.109314,0.135437,0.161194,0.1716,0.165161,0.141083,0.10141,0.0561218,0.0116882,-0.0193176,-0.0349121,-0.0361023,-0.028595,-0.0157776,-0.000793457,0.00991821,0.00973511,-0.00692749,-0.0360413,-0.0726929,-0.108643,-0.133209,-0.137512,-0.120483,-0.0914917,-0.0608826,-0.0395203,-0.0336914,-0.0524292,-0.0910034,-0.144775,-0.201752,-0.256439,-0.300476,-0.32724,-0.335632,-0.324432,-0.299408,-0.268402,-0.24234,-0.228333,-0.228912,-0.245178,-0.269135,-0.295624,-0.316772,-0.32254,-0.310211,-0.270203,-0.203949,-0.125702,-0.0499878,0.0135498,0.0563049,0.0681152,0.048645,0.00857544,-0.0499268,-0.114685,-0.171692,-0.20578,-0.211151,-0.187866,-0.142212,-0.0863647,-0.0347595,0.00979614,0.0381775,0.057312,0.0733032,0.0909424,0.114166,0.139526,0.1763,0.221283,0.273285,0.321411,0.347321,0.345825,0.313629,0.258575,0.187103,0.117371,0.0617981,0.0349731,0.0435486,0.0934143,0.16925,0.256378,0.335907,0.387329,0.40329,0.386902,0.345093,0.284485,0.21759,0.157867,0.116638,0.0992737,0.106445,0.128174,0.148987,0.159058,0.151062,0.125916,0.0861816,0.0440979,0.00598145,-0.0223389,-0.033905,-0.0332336,-0.0191956,0.000274658,0.0236206,0.0371094,0.0409546,0.0228882,-0.00979614,-0.0514221,-0.0917358,-0.120331,-0.129272,-0.117859,-0.0916138,-0.056366,-0.0301208,-0.0174561,-0.0315552,-0.0672607,-0.123016,-0.187714,-0.24939,-0.299927,-0.330322,-0.340881,-0.329071,-0.300415,-0.259796,-0.217773,-0.18988,-0.182159,-0.197906,-0.22818,-0.263367,-0.29483,-0.321014,-0.32724,-0.3078,-0.260254,-0.187195,-0.101868,-0.0245056,0.0271912,0.0482483,0.0379333,0.0032959,-0.0489197,-0.106049,-0.162201,-0.20108,-0.216187,-0.201416,-0.163086,-0.110931,-0.0563049,-0.00946045,0.0249023,0.0440369,0.0542908,0.0669861,0.0861206,0.112335,0.145447,0.184692,0.23175,0.283356,0.325226,0.340332,0.320465,0.27182,0.203033,0.128937,0.0628052,0.0197449,0.0104065,0.0425415,0.112274,0.206238,0.308197,0.392151,0.437592,0.437439,0.398468,0.335114,0.265381,0.199524,0.145905,0.110321,0.0954895,0.101074,0.118927,0.139526,0.144287,0.124695,0.0885925,0.0459595,0.00793457,-0.0228882,-0.0332336,-0.0252991,-0.00402832,0.0245056,0.0548401,0.0788574,0.0899353,0.0817566,0.0484009,-0.00296021,-0.0606079,-0.106232,-0.130798,-0.13028,-0.107513,-0.0726318,-0.0397339,-0.0176392,-0.0129395,-0.0363159,-0.0863037,-0.153168,-0.22403,-0.281952,-0.317444,-0.326843,-0.312683,-0.278656,-0.236633,-0.193146,-0.159058,-0.143433,-0.151001,-0.185516,-0.234772,-0.286438,-0.324036,-0.343689,-0.339722,-0.313629,-0.266052,-0.202698,-0.13269,-0.0687866,-0.0209961,6.10352e-05,-0.00692749,-0.0383911,-0.0792542,-0.118195,-0.148468,-0.164642,-0.166656,-0.152832,-0.128784,-0.0974426,-0.0643616,-0.0365906,-0.0114746,0.00827026,0.0202637,0.0343018,0.0578613,0.0953674,0.14093,0.190125,0.235565,0.276245,0.303436,0.31012,0.28772,0.239746,0.176697,0.111816,0.0588684,0.0314636,0.036499,0.0760498,0.147125,0.234161,0.321747,0.390015,0.424957,0.420258,0.384094,0.327118,0.260193,0.199066,0.149811,0.11792,0.102417,0.103882,0.112091,0.119049,0.118378,0.103027,0.0763855,0.0452271,0.0176392,-0.00241089,-0.0071106,0.00509644,0.0322266,0.065033,0.0943604,0.111816,0.113434,0.0957642,0.0597229,0.012085,-0.0367126,-0.0787354,-0.105164,-0.11142,-0.101135,-0.0801392,-0.0569153,-0.040863,-0.0415344,-0.0617981,-0.100861,-0.151215,-0.202423,-0.240479,-0.259857,-0.25885,-0.242828,-0.218384,-0.189728,-0.165375,-0.146179,-0.141663,-0.155182,-0.188873,-0.236633,-0.283417,-0.32309,-0.350464,-0.36496,-0.357117,-0.327637,-0.276642,-0.21167,-0.147644,-0.091217,-0.0505371,-0.0297241,-0.0275879,-0.0380554,-0.0575867,-0.0822144,-0.11026,-0.130463,-0.141602,-0.139587,-0.131134,-0.114502,-0.0912781,-0.0697327,-0.0457153,-0.024292,0.0020752,0.0383301,0.0818176,0.126251,0.164093,0.201599,0.235046,0.263153,0.27771,0.269135,0.242676,0.202606,0.156647,0.111542,0.0802612,0.0697327,0.0845032,0.123413,0.183502,0.253754,0.32196,0.373962,0.395447,0.384216,0.347839,0.298798,0.246033,0.19986,0.158936,0.126923,0.106995,0.0999451,0.102814,0.104431,0.101013,0.0849609,0.0646973,0.0448303,0.0322876,0.0324097,0.0434265,0.0664978,0.0908203,0.110321,0.123901,0.126373,0.117584,0.0939636,0.0526733,-0.000335693,-0.0528259,-0.0949707,-0.119263,-0.12558,-0.114838,-0.0965881,-0.0751038,-0.0578613,-0.0492554,-0.0552979,-0.0794678,-0.113007,-0.148987,-0.177582,-0.194885,-0.200134,-0.194702,-0.184845,-0.17511,-0.170197,-0.171753,-0.183167,-0.204498,-0.240417,-0.285919,-0.327576,-0.354889,-0.361755,-0.351135,-0.334564,-0.306793,-0.273102,-0.227448,-0.17276,-0.117035,-0.0748901,-0.0555725,-0.0542908,-0.0598755,-0.0684509,-0.0722046,-0.0760498,-0.0888062,-0.109253,-0.128601,-0.138336,-0.138336,-0.124969,-0.10437,-0.0789795,-0.0492554,-0.0154419,0.0245667,0.0712891,0.118195,0.159271,0.186646,0.202026,0.215088,0.229248,0.243835,0.244904,0.232025,0.206451,0.178467,0.15451,0.134155,0.122833,0.12149,0.136658,0.169525,0.219391,0.274963,0.32135,0.346588,0.345642,0.327179,0.30188,0.272614,0.238983,0.200134,0.156708,0.117645,0.0906677,0.0795898,0.0795288,0.079071,0.0741577,0.0669861,0.061676,0.0645752,0.0751038,0.0907288,0.108002,0.118927,0.121613,0.118652,0.11142,0.0993347,0.0752258,0.0354919,-0.0134888,-0.065094,-0.10498,-0.128387,-0.133301,-0.122406,-0.104156,-0.0814209,-0.0590515,-0.0438232,-0.0411987,-0.052887,-0.079071,-0.110474,-0.138672,-0.160614,-0.178375,-0.195374,-0.210724,-0.226898,-0.23819,-0.245422,-0.248657,-0.254486,-0.266571,-0.285034,-0.303894,-0.314972,-0.315582,-0.309937,-0.302887,-0.293945,-0.281952,-0.256714,-0.214905,-0.160614,-0.105164,-0.0671692,-0.0477295,-0.0450439,-0.0489197,-0.0556946,-0.0639038,-0.0788574,-0.102631,-0.128601,-0.146179,-0.1492,-0.13443,-0.108185,-0.0755005,-0.040802,-0.00979614,0.0211487,0.0543518,0.0920715,0.129333,0.161865,0.188049,0.213409,0.244293,0.274628,0.291534,0.285492,0.253967,0.207977,0.156525,0.109528,0.0770569,0.0649719,0.0769653,0.11261,0.173553,0.248871,0.322815,0.375488,0.396179,0.383148,0.349335,0.305969,0.259735,0.211334,0.159058,0.111084,0.0755615,0.0602722,0.0640259,0.0750427,0.0846863,0.0877075,0.0885925,0.090271,0.0940247,0.104034,0.118317,0.12973,0.131409,0.123291,0.111542,0.0941467,0.0673828,0.0303955,-0.0183105,-0.0711365,-0.113678,-0.13858,-0.142334,-0.125427,-0.0966492,-0.0638123,-0.0339661,-0.0126953,-0.00811768,-0.0234985,-0.0597229,-0.105896,-0.152832,-0.192017,-0.221008,-0.242554,-0.256317,-0.266113,-0.268188,-0.261749,-0.247711,-0.23584,-0.231354,-0.237915,-0.256256,-0.278259,-0.298309,-0.311066,-0.318329,-0.317993,-0.307037,-0.284088,-0.247986,-0.200867,-0.147919,-0.0992737,-0.0613403,-0.0377197,-0.0303955,-0.0331421,-0.0414734,-0.0562439,-0.0785217,-0.102814,-0.122894,-0.136383,-0.142487,-0.135437,-0.113159,-0.0804138,-0.0426025,-0.00515747,0.0326843,0.0697327,0.108459,0.146973,0.181061,0.215302,0.251465,0.280792,0.29483,0.288727,0.263611,0.222015,0.166565,0.107452,0.058136,0.0338135,0.0420837,0.0810852,0.14563,0.226044,0.30954,0.378784,0.420135,0.429718,0.404694,0.358124,0.295441,0.228119,0.162537,0.108337,0.0719604,0.0561218,0.0593872,0.0724792,0.091217,0.106323,0.114624,0.116913,0.113953,0.107849,0.106384,0.110535,0.116852,0.122009,0.124023,0.116852,0.0978394,0.0645752,0.0194702,-0.0346375,-0.0865784,-0.12558,-0.145782,-0.145508,-0.125977,-0.0914001,-0.0546875,-0.0259094,-0.0114136,-0.0200806,-0.0488586,-0.0908813,-0.138794,-0.183075,-0.218719,-0.241425,-0.252747,-0.255249,-0.249603,-0.241089,-0.232208,-0.22464,-0.224701,-0.230743,-0.245514,-0.269928,-0.296783,-0.311951,-0.312408,-0.304443,-0.295288,-0.28302,-0.265106,-0.241608,-0.207794,-0.165985,-0.121552,-0.0852356,-0.061676,-0.0466309,-0.0333557,-0.0210876,-0.0189819,-0.0314636,-0.0592041,-0.0957642,-0.131134,-0.155365,-0.163422,-0.150482,-0.119598,-0.074707,-0.0297241,0.0181885,0.0716858,0.128723,0.178925,0.21228,0.233704,0.251129,0.267517,0.278778,0.274292,0.253418,0.217773,0.175964,0.132416,0.0943604,0.0705261,0.0657654,0.0822754,0.11853,0.179382,0.254761,0.330414,0.38623,0.407867,0.398529,0.366852,0.32605,0.2771,0.221466,0.160736,0.103882,0.0647583,0.0514832,0.0624695,0.0822144,0.0999451,0.107056,0.108734,0.108124,0.105896,0.108643,0.115356,0.121735,0.121399,0.114014,0.104095,0.0924683,0.0729675,0.0400085,-0.00732422,-0.0610657,-0.107117,-0.139069,-0.151672,-0.150208,-0.133545,-0.107666,-0.0782471,-0.0522156,-0.0391235,-0.0465698,-0.0730896,-0.112274,-0.152161,-0.18576,-0.212402,-0.229736,-0.240814,-0.2453,-0.244507,-0.236176,-0.223755,-0.211334,-0.207184,-0.21524,-0.235626,-0.261871,-0.286377,-0.303497,-0.310455,-0.306793,-0.303009,-0.295624,-0.280884,-0.254303,-0.217102,-0.171814,-0.123016,-0.0793152,-0.0448303,-0.0185852,-0.000213623,0.00912476,0.0062561,-0.0137634,-0.0481873,-0.0899353,-0.132477,-0.164825,-0.175018,-0.161133,-0.12558,-0.0745544,-0.0162964,0.0422058,0.102875,0.157928,0.203705,0.235718,0.2547,0.267517,0.274231,0.273773,0.26236,0.236908,0.200928,0.158447,0.114349,0.0749817,0.0509338,0.0475769,0.0657043,0.107178,0.171356,0.251617,0.335114,0.402161,0.436249,0.435638,0.407715,0.361267,0.301544,0.23288,0.161346,0.0932312,0.0429382,0.0172424,0.0197449,0.0424805,0.0692749,0.0932312,0.109406,0.11972,0.126251,0.130005,0.132477,0.131073,0.121002,0.104156,0.0832214,0.0601196,0.0371704,0.00469971,-0.0355835,-0.08255,-0.12207,-0.148651,-0.160614,-0.155975,-0.141205,-0.116241,-0.0878601,-0.0580444,-0.0395203,-0.0378418,-0.0508118,-0.0789185,-0.114288,-0.148041,-0.176025,-0.19873,-0.215088,-0.225311,-0.231598,-0.233765,-0.230682,-0.226227,-0.2229,-0.225433,-0.238647,-0.258575,-0.278259,-0.29538,-0.304108,-0.303009,-0.298065,-0.295044,-0.289948,-0.270752,-0.238983,-0.19281,-0.137177,-0.0787354,-0.0290527,0.00671387,0.0291138,0.0426025,0.0421448,0.025238,-0.0150452,-0.0673828,-0.12384,-0.168732,-0.188263,-0.183746,-0.153687,-0.105164,-0.0440979,0.0175171,0.0750427,0.132751,0.181824,0.219788,0.241943,0.253967,0.263367,0.273773,0.27832,0.267517,0.239746,0.199677,0.152557,0.103973,0.0582581,0.0281067,0.020813,0.0410767,0.0899963,0.169006,0.267303,0.362335,0.433899,0.46167,0.452362,0.413696,0.356384,0.28717,0.206909,0.126831,0.0585327,0.0142822,0.00140381,0.0158997,0.045166,0.0677795,0.0765686,0.0747681,0.0691223,0.0653076,0.0676575,0.0760498,0.0851746,0.0919495,0.0974426,0.100677,0.0988464,0.0845032,0.0495911,-0.00637817,-0.0734863,-0.132874,-0.174896,-0.194885,-0.188263,-0.161072,-0.119873,-0.0724182,-0.0284424,-0.00195312,-0.000274658,-0.0241699,-0.065979,-0.117798,-0.162872,-0.198059,-0.220795,-0.232544,-0.234039,-0.229736,-0.222137,-0.212341,-0.208252,-0.210815,-0.22229,-0.237244,-0.254028,-0.266174,-0.272888,-0.271606,-0.262207,-0.250214,-0.245422,-0.24765,-0.245026,-0.233612,-0.207977,-0.165375,-0.111267,-0.0551147,-0.00817871,0.0313416,0.0595398,0.0725403,0.0644226,0.0257568,-0.0388489,-0.111664,-0.174561,-0.214172,-0.219055,-0.192688,-0.13858,-0.0706787,0.00515747,0.0748291,0.142883,0.201599,0.24295,0.262878,0.265839,0.263214,0.264771,0.267395,0.256989,0.231873,0.192078,0.148041,0.101868,0.0594482,0.0274353,0.0144348,0.024231,0.0595398,0.124695,0.216766,0.321075,0.412292,0.465179,0.471741,0.438446,0.377319,0.300598,0.212158,0.123566,0.0390625,-0.0250854,-0.0543518,-0.0471802,-0.0127563,0.0274353,0.057251,0.0723572,0.0794678,0.0842896,0.0915527,0.102356,0.112762,0.118866,0.117188,0.110931,0.101349,0.0861206,0.0578613,0.00958252,-0.052002,-0.113556,-0.160797,-0.184418,-0.187439,-0.171753,-0.144287,-0.107178,-0.0669861,-0.0304565,-0.0123596,-0.0158997,-0.0425415,-0.0836182,-0.124634,-0.156372,-0.175354,-0.18576,-0.188385,-0.189056,-0.188385,-0.187256,-0.185242,-0.188873,-0.20047,-0.219391,-0.237976,-0.254425,-0.262024,-0.260406,-0.253143,-0.244843,-0.235565,-0.231354,-0.23114,-0.224243,-0.208313,-0.181152,-0.143829,-0.0978394,-0.0496521,-0.00946045,0.0216675,0.0402832,0.0435486,0.0269775,-0.0120239,-0.0657654,-0.121948,-0.166107,-0.188995,-0.183624,-0.149323,-0.0954895,-0.0279236,0.0426025,0.10611,0.158112,0.198578,0.222412,0.231598,0.230072,0.228119,0.229523,0.233032,0.230469,0.214233,0.186646,0.151672,0.111481,0.0710144,0.0341492,0.00991821,0.00872803,0.0356445,0.091217,0.176361,0.273956,0.362335,0.416046,0.429382,0.406097,0.359131,0.297913,0.227325,0.147034,0.0690002,0.00570679,-0.0283813,-0.0303955,-0.00732422,0.0232239,0.045105,0.0522766,0.0546265,0.0610657,0.0726929,0.0906067,0.107849,0.119324,0.121552,0.121887,0.115356,0.100403,0.0691833,0.0158386,-0.0531006,-0.121674,-0.173492,-0.200806,-0.205231,-0.189453,-0.158386,-0.111755,-0.0591125,-0.00872803,0.024353,0.0304565,0.0101318,-0.028656,-0.0690002,-0.103699,-0.128448,-0.148926,-0.166168,-0.183838,-0.196655,-0.202698,-0.20462,-0.208862,-0.218719,-0.231537,-0.241547,-0.24234,-0.229065,-0.210999,-0.192535,-0.183289,-0.183899,-0.196228,-0.214172,-0.234039,-0.243225,-0.240417,-0.217773,-0.175171,-0.11557,-0.0536804,0.00604248,0.0577087,0.0900574,0.0963135,0.0715332,0.0166321,-0.0583191,-0.132141,-0.186035,-0.210663,-0.20047,-0.158997,-0.0957031,-0.0232849,0.0512085,0.119598,0.175018,0.212494,0.229919,0.232544,0.227051,0.221466,0.220612,0.217926,0.205841,0.180145,0.143555,0.0975952,0.0471191,-0.00088501,-0.0397949,-0.0536804,-0.0360413,0.0203247,0.109863,0.221466,0.336029,0.430939,0.486969,0.498322,0.46524,0.394165,0.295715,0.182739,0.0722046,-0.0212708,-0.0836182,-0.107513,-0.0957031,-0.058197,-0.0106812,0.0298767,0.0610046,0.0842896,0.101685,0.117035,0.131805,0.141022,0.144501,0.142761,0.133636,0.118195,0.0906677,0.0471802,-0.0111389,-0.0791321,-0.141022,-0.185181,-0.203613,-0.195099,-0.163818,-0.117371,-0.0653687,-0.012207,0.0332336,0.0588684,0.0584412,0.0310669,-0.0147095,-0.0667114,-0.114563,-0.1492,-0.17215,-0.184509,-0.187103,-0.183685,-0.178864,-0.174225,-0.174225,-0.182159,-0.194153,-0.205231,-0.211823,-0.211731,-0.204041,-0.196991,-0.194641,-0.200073,-0.209534,-0.224365,-0.24054,-0.24469,-0.232941,-0.202698,-0.154907,-0.0950317,-0.0333557,0.0204773,0.0631409,0.0866394,0.0833435,0.0526123,-0.00357056,-0.077179,-0.15155,-0.199799,-0.215637,-0.201141,-0.160187,-0.0993347,-0.0308838,0.0390625,0.103149,0.154846,0.18692,0.199677,0.197052,0.185425,0.177307,0.179047,0.183563,0.180145,0.164825,0.136383,0.0997314,0.0603943,0.0209351,-0.0109253,-0.0265198,-0.0163879,0.0267639,0.100464,0.198914,0.303223,0.391998,0.44342,0.450195,0.415375,0.349121,0.264038,0.169678,0.0758362,-0.00408936,-0.0578613,-0.0779724,-0.0631409,-0.0232849,0.0236206,0.0589905,0.0808716,0.0924683,0.101288,0.110199,0.119202,0.124176,0.124908,0.125488,0.125916,0.123901,0.112762,0.0837708,0.0346375,-0.0317383,-0.0988464,-0.150604,-0.177979,-0.183228,-0.16684,-0.135834,-0.0917358,-0.0371704,0.0177307,0.057312,0.0711365,0.0570374,0.0190735,-0.0262451,-0.0678406,-0.0982666,-0.120148,-0.134827,-0.145447,-0.152496,-0.155579,-0.158051,-0.168182,-0.183838,-0.206635,-0.226318,-0.236969,-0.233887,-0.220398,-0.200806,-0.182007,-0.169739,-0.166504,-0.170135,-0.184631,-0.210266,-0.231476,-0.235291,-0.214691,-0.172607,-0.11792,-0.0623474,-0.0132141,0.0287781,0.0568542,0.0657043,0.0474548,-0.00274658,-0.0767212,-0.151154,-0.202209,-0.217102,-0.199463,-0.157196,-0.0995178,-0.0357666,0.03302,0.0972595,0.148987,0.178864,0.185638,0.175842,0.158325,0.147034,0.14859,0.158508,0.160522,0.150208,0.128662,0.0992737,0.0686646,0.0331421,-0.00476074,-0.0350342,-0.039856,-0.00817871,0.0610046,0.161621,0.27356,0.375153,0.442291,0.466431,0.448853,0.397461,0.318848,0.219055,0.10907,0.00643921,-0.0681152,-0.102203,-0.098114,-0.0621338,-0.0128784,0.0292664,0.0608826,0.0849609,0.106842,0.127045,0.145172,0.153839,0.156769,0.15625,0.158997,0.156647,0.142487,0.109131,0.0520935,-0.0245056,-0.101288,-0.161743,-0.19577,-0.203278,-0.185089,-0.147522,-0.0907288,-0.0184021,0.0577087,0.114014,0.13739,0.126099,0.0830078,0.0236816,-0.03302,-0.0818787,-0.121552,-0.152893,-0.173889,-0.184509,-0.185303,-0.181,-0.180878,-0.19101,-0.208527,-0.223755,-0.23114,-0.22229,-0.200409,-0.172821,-0.150726,-0.139404,-0.140594,-0.152496,-0.174561,-0.206055,-0.243683,-0.271545,-0.278534,-0.254578,-0.200256,-0.126709,-0.0505371,0.0126038,0.0569153,0.0773926,0.0734863,0.0404663,-0.020813,-0.101624,-0.179474,-0.229065,-0.240265,-0.213165,-0.157043,-0.0860291,-0.00991821,0.0602112,0.116852,0.154846,0.172363,0.170593,0.154694,0.13504,0.121887,0.121063,0.129669,0.13623,0.132751,0.117035,0.0914001,0.0586548,0.0221558,-0.00817871,-0.0214844,-0.0085144,0.0383301,0.116302,0.216095,0.321625,0.409851,0.460541,0.463562,0.420349,0.340942,0.239655,0.131134,0.0300598,-0.0503235,-0.100006,-0.111816,-0.0838928,-0.0267029,0.0400696,0.0951538,0.130798,0.146851,0.153076,0.156708,0.158722,0.156982,0.153168,0.146179,0.139191,0.130066,0.114899,0.0862427,0.0370483,-0.0265808,-0.0927429,-0.143829,-0.168335,-0.163208,-0.134155,-0.0871887,-0.0298767,0.0333557,0.0905457,0.129517,0.136993,0.110748,0.0564575,-0.0111389,-0.0740967,-0.122223,-0.154083,-0.17337,-0.181213,-0.180542,-0.173035,-0.164154,-0.161804,-0.170074,-0.188202,-0.20932,-0.22464,-0.226105,-0.213409,-0.1922,-0.17511,-0.167847,-0.166229,-0.171143,-0.185852,-0.210876,-0.244629,-0.273163,-0.283905,-0.265778,-0.212158,-0.138916,-0.0630188,-0.0015564,0.0430908,0.0641479,0.060791,0.0327454,-0.0241699,-0.102081,-0.179535,-0.228241,-0.241669,-0.217316,-0.163483,-0.0904846,-0.015564,0.0524902,0.107513,0.146912,0.164307,0.160278,0.140015,0.11557,0.101685,0.10437,0.116913,0.126648,0.12851,0.122406,0.105713,0.0785217,0.0471191,0.0173035,-0.00201416,6.10352e-05,0.0307922,0.0914917,0.179871,0.278534,0.365173,0.42215,0.440216,0.418732,0.35791,0.270416,0.169586,0.0720825,-0.00650024,-0.0549622,-0.070343,-0.0551758,-0.0173035,0.032135,0.079071,0.115234,0.141144,0.153503,0.156647,0.158508,0.161957,0.165314,0.171204,0.176025,0.171539,0.154846,0.12262,0.0714722,0.00704956,-0.0592651,-0.11792,-0.158508,-0.170685,-0.151825,-0.109406,-0.0528259,0.0085144,0.0636902,0.104828,0.122009,0.111084,0.0738831,0.0201416,-0.0353088,-0.0852966,-0.123077,-0.147644,-0.160187,-0.166901,-0.174042,-0.184021,-0.197723,-0.216095,-0.232941,-0.247375,-0.254425,-0.247375,-0.228455,-0.197906,-0.165558,-0.140198,-0.128937,-0.134888,-0.161011,-0.201477,-0.249054,-0.288513,-0.306519,-0.298981,-0.259796,-0.194763,-0.114899,-0.0410156,0.016571,0.0536804,0.0632324,0.0444336,-0.00128174,-0.06604,-0.135895,-0.192352,-0.21994,-0.215759,-0.182617,-0.122894,-0.0552979,0.00985718,0.0593262,0.0952454,0.117462,0.12558,0.122742,0.117188,0.115173,0.120728,0.134766,0.148651,0.15509,0.152557,0.133484,0.0976562,0.0517578,0.00906372,-0.0193176,-0.0221558,0.00161743,0.053894,0.135376,0.236053,0.336914,0.416046,0.456848,0.450531,0.398712,0.317261,0.221283,0.130951,0.0525513,-0.0110168,-0.0503235,-0.0592651,-0.0343018,0.0174561,0.0732117,0.118134,0.14389,0.157654,0.164551,0.174225,0.187592,0.197449,0.198669,0.191223,0.1763,0.155518,0.125488,0.0793152,0.0161133,-0.0578003,-0.121155,-0.162628,-0.171875,-0.150879,-0.107513,-0.052002,0.00582886,0.0649109,0.113098,0.138916,0.134369,0.0976562,0.0365906,-0.0299377,-0.0892639,-0.132751,-0.163879,-0.183502,-0.196655,-0.204559,-0.207184,-0.208649,-0.209534,-0.214905,-0.223633,-0.232605,-0.233612,-0.222137,-0.200928,-0.175354,-0.154846,-0.149261,-0.156372,-0.176025,-0.203156,-0.235718,-0.272003,-0.302612,-0.313477,-0.296051,-0.246643,-0.17041,-0.0881348,-0.0194092,0.0264282,0.0481873,0.0469666,0.0270386,-0.0132141,-0.0767822,-0.147461,-0.201813,-0.226562,-0.216644,-0.174561,-0.110748,-0.0435486,0.0206604,0.0719604,0.112091,0.141144,0.151062,0.146301,0.126373,0.107513,0.0964966,0.0973816,0.104645,0.10907,0.110748,0.104034,0.0903931,0.0734863,0.0575256,0.0485229,0.0502625,0.0696106,0.109131,0.1716,0.250061,0.329742,0.393951,0.424896,0.416046,0.373169,0.30127,0.217529,0.135712,0.0622864,0.00598145,-0.0289307,-0.0343628,-0.00866699,0.0404663,0.0947571,0.137451,0.162354,0.172363,0.173157,0.172699,0.172272,0.168915,0.159058,0.145966,0.131866,0.11972,0.106445,0.082428,0.0428772,-0.00967407,-0.0634155,-0.102081,-0.119263,-0.112885,-0.089386,-0.0564575,-0.019928,0.020752,0.0599365,0.0869141,0.0898132,0.065918,0.0166321,-0.041748,-0.0924072,-0.131866,-0.1586,-0.174622,-0.185699,-0.194305,-0.199402,-0.205505,-0.212341,-0.224579,-0.240814,-0.255432,-0.260864,-0.250549,-0.22583,-0.194153,-0.163757,-0.14093,-0.13269,-0.140076,-0.161957,-0.19397,-0.235168,-0.278931,-0.307373,-0.311462,-0.284424,-0.228394,-0.156311,-0.0841064,-0.0250244,0.0171814,0.0403442,0.0410156,0.0188599,-0.0256958,-0.0886536,-0.144836,-0.177795,-0.179871,-0.154297,-0.111267,-0.0582581,-0.0071106,0.0377197,0.0713501,0.0923462,0.102356,0.100067,0.0917969,0.0852356,0.0910645,0.108643,0.137787,0.162537,0.176239,0.176575,0.162201,0.137451,0.104034,0.0706787,0.0481262,0.0457153,0.0666504,0.113098,0.180603,0.260925,0.338135,0.392426,0.410339,0.389679,0.334351,0.262024,0.181671,0.108185,0.048645,0.00778198,-0.0126953,-0.00732422,0.0270996,0.0761108,0.121887,0.151062,0.163696,0.164642,0.162415,0.1633,0.165771,0.165558,0.161621,0.153961,0.142548,0.126373,0.103882,0.0641479,0.00765991,-0.0551147,-0.104645,-0.134766,-0.138123,-0.122223,-0.0926208,-0.0552368,-0.0111389,0.0358276,0.0736389,0.0917969,0.0805359,0.040741,-0.016571,-0.0752869,-0.122559,-0.156311,-0.183167,-0.202423,-0.216705,-0.222473,-0.223816,-0.221222,-0.219727,-0.222809,-0.230133,-0.232758,-0.226898,-0.208374,-0.182739,-0.158722,-0.144501,-0.141815,-0.149933,-0.169403,-0.198792,-0.238861,-0.282562,-0.319519,-0.3367,-0.320679,-0.270203,-0.19455,-0.11261,-0.0393982,0.0175781,0.0575256,0.0762329,0.0701294,0.0357056,-0.0234985,-0.0951538,-0.1539,-0.185577,-0.18692,-0.160522,-0.11792,-0.0666504,-0.0138245,0.036438,0.0775757,0.107391,0.125031,0.126923,0.122559,0.120819,0.126373,0.140808,0.160278,0.17215,0.173767,0.164551,0.144775,0.115356,0.0828857,0.0532837,0.0341492,0.0367126,0.0657654,0.123566,0.201538,0.286102,0.360077,0.405518,0.414215,0.390869,0.338379,0.265961,0.184753,0.105835,0.0400085,-0.0012207,-0.0139465,0.00341797,0.0409546,0.0860291,0.125031,0.147644,0.15979,0.163757,0.163544,0.159515,0.152222,0.143433,0.134888,0.128601,0.120819,0.107849,0.0832825,0.0440369,-0.00793457,-0.0612793,-0.103485,-0.128174,-0.132477,-0.117798,-0.0888672,-0.0487976,-0.00128174,0.0434875,0.0739746,0.0787964,0.0560303,0.00991821,-0.049408,-0.107727,-0.154633,-0.18988,-0.212555,-0.221283,-0.217865,-0.207581,-0.194366,-0.186523,-0.187103,-0.197845,-0.208923,-0.218781,-0.220459,-0.214508,-0.204163,-0.192688,-0.184692,-0.180664,-0.178986,-0.181946,-0.193634,-0.216522,-0.251068,-0.28717,-0.30545,-0.289673,-0.239594,-0.165436,-0.0877991,-0.0223389,0.0198669,0.0489197,0.0661621,0.0658264,0.036499,-0.0248413,-0.105164,-0.172699,-0.207642,-0.203369,-0.168854,-0.117371,-0.0584412,0.000396729,0.0555115,0.104156,0.142822,0.161285,0.155426,0.134094,0.113678,0.106171,0.115692,0.132294,0.145966,0.154907,0.158112,0.156311,0.14563,0.127502,0.101959,0.07724,0.0626831,0.0745544,0.117249,0.187653,0.267578,0.334839,0.373688,0.383301,0.370056,0.332336,0.274109,0.199738,0.120331,0.048645,0.00140381,-0.0102539,0.0102539,0.0504761,0.0926208,0.120667,0.134888,0.14328,0.148865,0.145355,0.137909,0.123413,0.10611,0.0966492,0.098053,0.106384,0.111084,0.101532,0.0719604,0.0246887,-0.0245667,-0.0687866,-0.101196,-0.119934,-0.123016,-0.111542,-0.0871277,-0.04953,-0.00732422,0.0260315,0.0385132,0.0255737,-0.00924683,-0.0524292,-0.094574,-0.128265,-0.156433,-0.174957,-0.182343,-0.180054,-0.173615,-0.167572,-0.171356,-0.186249,-0.208801,-0.234833,-0.25235,-0.25827,-0.250671,-0.236053,-0.216522,-0.192352,-0.165771,-0.144226,-0.137054,-0.14502,-0.172699,-0.211487,-0.25415,-0.282135,-0.28067,-0.248322,-0.193024,-0.12677,-0.0623474,-0.0116882,0.0259094,0.0449524,0.0447693,0.0209351,-0.0249634,-0.0862427,-0.139679,-0.167328,-0.1604,-0.124084,-0.0733643,-0.0187988,0.032135,0.0749817,0.10611,0.123352,0.125641,0.112762,0.093811,0.079071,0.0769653,0.0939026,0.126709,0.162018,0.188202,0.20047,0.197784,0.180664,0.152161,0.115631,0.0809326,0.0618896,0.0648193,0.0965881,0.157043,0.233612,0.309448,0.359924,0.377991,0.363281,0.322205,0.264557,0.195557,0.12323,0.0590515,0.0145569,-0.0017395,0.00939941,0.0465088,0.0907288,0.122681,0.135834,0.135223,0.126923,0.119202,0.113098,0.106445,0.098114,0.0942383,0.0994568,0.109406,0.120209,0.117371,0.0909424,0.0404053,-0.0220947,-0.0799866,-0.123627,-0.147247,-0.152344,-0.138062,-0.106445,-0.0587769,-0.00396729,0.0440979,0.0710754,0.0677795,0.0336914,-0.0189819,-0.0747681,-0.121735,-0.157715,-0.183167,-0.197906,-0.202759,-0.197449,-0.190735,-0.188324,-0.195557,-0.213623,-0.236786,-0.256256,-0.262482,-0.251404,-0.22583,-0.194885,-0.163544,-0.134491,-0.115173,-0.108795,-0.121887,-0.155182,-0.207184,-0.265717,-0.309448,-0.321808,-0.295715,-0.232208,-0.151337,-0.0710754,-0.00308228,0.0476379,0.0799255,0.0906677,0.0731506,0.0226135,-0.0490723,-0.119812,-0.165833,-0.174286,-0.149261,-0.10321,-0.0489197,0.00222778,0.0471191,0.0835571,0.10907,0.12088,0.116516,0.102692,0.0906067,0.0934143,0.113831,0.148376,0.183685,0.208923,0.21698,0.206909,0.183411,0.145905,0.103088,0.0614014,0.0343018,0.0318909,0.0623474,0.125031,0.207733,0.289124,0.349609,0.375702,0.368378,0.334167,0.279785,0.213013,0.138245,0.0708618,0.0198059,-0.00509644,0.00302124,0.0354309,0.0785828,0.11026,0.124176,0.124298,0.119263,0.113342,0.110992,0.107056,0.102356,0.100677,0.107513,0.119659,0.128784,0.125305,0.0974426,0.046051,-0.0184021,-0.0774536,-0.121338,-0.146027,-0.148529,-0.132141,-0.0994568,-0.053772,-0.00167847,0.0424805,0.0653076,0.058197,0.0237732,-0.0292664,-0.0855713,-0.131134,-0.164154,-0.186523,-0.197174,-0.196716,-0.189117,-0.17804,-0.172485,-0.177795,-0.195435,-0.220337,-0.24173,-0.251404,-0.241089,-0.218658,-0.189728,-0.163696,-0.140869,-0.128387,-0.121399,-0.129791,-0.157928,-0.204376,-0.261536,-0.310333,-0.325958,-0.29718,-0.228455,-0.141266,-0.0585327,0.00576782,0.052948,0.0844421,0.097168,0.082428,0.03302,-0.0467834,-0.129333,-0.18576,-0.202271,-0.176361,-0.124847,-0.065979,-0.0105286,0.0422668,0.0877991,0.127441,0.151154,0.151733,0.133636,0.112091,0.100861,0.109741,0.135223,0.16275,0.181824,0.185638,0.176025,0.155518,0.127258,0.0922852,0.0534363,0.0235596,0.0179138,0.0459595,0.111084,0.196503,0.283478,0.349792,0.385376,0.388916,0.364349,0.316315,0.247528,0.163696,0.0785828,0.0114136,-0.0227661,-0.020813,0.00811768,0.0503235,0.0877991,0.109863,0.123627,0.130859,0.133759,0.133209,0.127716,0.116364,0.107513,0.106903,0.115295,0.123505,0.121735,0.098175,0.0526123,-0.00744629,-0.0649109,-0.109924,-0.134491,-0.140137,-0.128723,-0.101959,-0.0634766,-0.016571,0.029541,0.0576477,0.0596619,0.0343018,-0.0129395,-0.0682678,-0.116974,-0.156921,-0.181885,-0.19577,-0.193878,-0.184021,-0.168121,-0.157257,-0.158447,-0.173218,-0.197662,-0.222473,-0.23819,-0.239807,-0.227661,-0.207794,-0.185913,-0.162537,-0.143097,-0.130066,-0.128845,-0.141998,-0.176117,-0.222961,-0.272217,-0.301483,-0.29361,-0.245087,-0.172363,-0.0914917,-0.024231,0.0238342,0.0520935,0.0673218,0.065918,0.0399475,-0.0151672,-0.0864563,-0.148804,-0.180603,-0.170532,-0.128387,-0.0726318,-0.0162354,0.0322266,0.0722961,0.104645,0.125916,0.133972,0.118591,0.0951538,0.0748901,0.0724182,0.0926208,0.125092,0.158051,0.17804,0.184418,0.178864,0.164429,0.140808,0.109131,0.0752869,0.0527649,0.0524902,0.0858459,0.148712,0.225433,0.293762,0.337189,0.348785,0.333832,0.296844,0.243164,0.180054,0.11261,0.0526123,0.0114746,-0.00274658,0.0145569,0.0561218,0.104095,0.137512,0.149719,0.14502,0.131287,0.118378,0.107574,0.0961609,0.082428,0.0724182,0.0735474,0.0877991,0.106323,0.113831,0.0969849,0.0546875,-0.00222778,-0.0536194,-0.0915527,-0.111542,-0.117188,-0.110748,-0.0923462,-0.0620117,-0.0200806,0.0204163,0.0410767,0.0339661,-0.000671387,-0.0495911,-0.0975952,-0.133301,-0.157593,-0.170929,-0.17511,-0.171692,-0.161804,-0.148651,-0.142487,-0.15033,-0.17569,-0.21283,-0.246765,-0.264282,-0.26181,-0.243561,-0.216766,-0.188599,-0.161407,-0.136505,-0.115509,-0.105652,-0.117859,-0.152832,-0.206238,-0.258392,-0.28476,-0.273956,-0.229401,-0.166504,-0.100616,-0.0424194,0.00357056,0.0367737,0.0541077,0.0455627,0.0113525,-0.0427551,-0.0978394,-0.135834,-0.143951,-0.124908,-0.086792,-0.0386047,0.0120239,0.0571899,0.0930176,0.112335,0.116516,0.104309,0.082489,0.0635681,0.0569763,0.0711975,0.101471,0.138855,0.173218,0.197235,0.207794,0.202087,0.180603,0.146515,0.104034,0.0645752,0.0419312,0.0469666,0.0846252,0.148193,0.219269,0.280792,0.319855,0.331604,0.31839,0.283478,0.234497,0.176117,0.117584,0.0671692,0.0371094,0.032959,0.0524902,0.0848389,0.113342,0.124695,0.121552,0.10965,0.0942383,0.0820923,0.074646,0.069519,0.0708618,0.0805969,0.102081,0.124756,0.139679,0.133301,0.101349,0.048584,-0.0103455,-0.0642395,-0.106506,-0.132751,-0.141022,-0.131287,-0.105652,-0.0658264,-0.0221558,0.00979614,0.021759,0.00939941,-0.0195923,-0.0559692,-0.0883179,-0.115173,-0.135101,-0.14624,-0.148865,-0.147644,-0.144897,-0.146637,-0.160797,-0.186768,-0.221558,-0.254913,-0.274963,-0.276428,-0.260132,-0.230927,-0.196442,-0.160797,-0.129456,-0.106903,-0.0997314,-0.113556,-0.149384,-0.200745,-0.255096,-0.290863,-0.292419,-0.258118,-0.200256,-0.129944,-0.0604553,-0.00228882,0.0400696,0.0644836,0.0646362,0.0400085,-0.00891113,-0.0689392,-0.11972,-0.145111,-0.140594,-0.110138,-0.0655823,-0.0171814,0.027771,0.0640869,0.0892639,0.102478,0.103088,0.091217,0.0760498,0.0681152,0.0784607,0.107452,0.147186,0.183838,0.207306,0.214081,0.202484,0.176178,0.137177,0.0919495,0.0512695,0.0256958,0.0273743,0.0602722,0.12207,0.199005,0.272888,0.327118,0.353821,0.352814,0.32254,0.269196,0.203094,0.134979,0.07724,0.037323,0.0226746,0.0303345,0.0561218,0.0863647,0.10907,0.118378,0.116119,0.106049,0.0919495,0.08255,0.0796509,0.0828857,0.0924072,0.107178,0.125977,0.137787,0.135315,0.108917,0.0612183,0.00106812,-0.0587158,-0.106903,-0.136841,-0.146118,-0.136719,-0.112,-0.0742188,-0.0292053,0.0129395,0.0385132,0.0390015,0.0150452,-0.0264282,-0.0720215,-0.11087,-0.140472,-0.15686,-0.1633,-0.165314,-0.16449,-0.166779,-0.174561,-0.189117,-0.213165,-0.239746,-0.262482,-0.269745,-0.260468,-0.237396,-0.20517,-0.170349,-0.138,-0.11322,-0.102753,-0.108917,-0.136566,-0.183228,-0.239594,-0.284912,-0.297577,-0.272217,-0.216766,-0.147369,-0.0791931,-0.0213318,0.0238342,0.0561829,0.0690613,0.057373,0.0140991,-0.0514832,-0.11557,-0.152405,-0.152008,-0.121826,-0.078064,-0.0298767,0.0157776,0.0575867,0.0913391,0.112885,0.118195,0.105774,0.085022,0.0669861,0.0662537,0.0899353,0.126312,0.163086,0.191071,0.203827,0.203491,0.188446,0.156311,0.112946,0.0669861,0.0349121,0.0281982,0.0536194,0.110199,0.184509,0.257324,0.310394,0.337921,0.341797,0.32196,0.279388,0.218872,0.151489,0.0888062,0.0458984,0.0262451,0.0342407,0.0603943,0.093689,0.115295,0.120819,0.11557,0.106171,0.0942383,0.0856323,0.0791321,0.0761719,0.0820007,0.0983276,0.121613,0.143158,0.150818,0.131012,0.0838928,0.0219421,-0.0400085,-0.0923462,-0.127655,-0.146301,-0.145447,-0.125977,-0.0901489,-0.0441589,0.00140381,0.0313416,0.037323,0.0166321,-0.0204773,-0.0612183,-0.0965881,-0.125427,-0.147034,-0.159454,-0.165161,-0.163208,-0.162964,-0.169189,-0.185699,-0.211548,-0.24295,-0.267059,-0.275757,-0.266632,-0.244293,-0.215302,-0.182831,-0.149597,-0.120819,-0.102142,-0.103973,-0.129791,-0.176025,-0.232605,-0.278992,-0.297455,-0.279602,-0.230255,-0.16275,-0.0909424,-0.0268555,0.0270996,0.0621338,0.0743103,0.0611267,0.020752,-0.0375977,-0.0970459,-0.139679,-0.155701,-0.141998,-0.105103,-0.0536194,-0.00088501,0.0462341,0.0812073,0.102875,0.111084,0.105835,0.0940247,0.0835571,0.0808716,0.0954285,0.123505,0.157257,0.187927,0.205292,0.205231,0.185425,0.150818,0.105316,0.0600586,0.0268555,0.0166321,0.0393372,0.0932922,0.168121,0.247528,0.314423,0.357117,0.371399,0.355896,0.311951,0.247925,0.173889,0.101959,0.0473938,0.0153809,0.0102539,0.0272522,0.0561218,0.0844421,0.105225,0.11557,0.115631,0.111145,0.105164,0.103973,0.10498,0.111664,0.122681,0.136383,0.147461,0.147461,0.12616,0.08255,0.0228271,-0.0426941,-0.101807,-0.143158,-0.161407,-0.156708,-0.133545,-0.0948181,-0.0470581,0.00189209,0.0396729,0.0550232,0.046051,0.0135498,-0.0323486,-0.0797424,-0.124084,-0.156311,-0.175903,-0.186859,-0.191071,-0.193298,-0.197052,-0.205566,-0.220398,-0.238922,-0.255768,-0.263428,-0.256927,-0.237732,-0.209991,-0.179535,-0.149261,-0.126312,-0.114777,-0.118469,-0.140533,-0.181732,-0.233948,-0.275696,-0.292267,-0.272675,-0.220551,-0.15033,-0.0803223,-0.020752,0.0264282,0.0575256,0.0687866,0.0552368,0.00991821,-0.0585938,-0.127045,-0.173553,-0.183563,-0.159454,-0.111084,-0.052002,0.00717163,0.0624695,0.104645,0.133301,0.141815,0.131287,0.10907,0.0863647,0.0758362,0.0866394,0.113617,0.14563,0.173767,0.189789,0.190338,0.172211,0.141144,0.0986633,0.0570374,0.0282593,0.025238,0.0556335,0.118195,0.202271,0.285706,0.3508,0.386444,0.389526,0.359802,0.303833,0.230194,0.147583,0.0723572,0.0147095,-0.0134888,-0.00933838,0.0233459,0.0684509,0.107727,0.133148,0.143494,0.141815,0.135559,0.127991,0.119995,0.111938,0.110535,0.115448,0.128113,0.140533,0.139526,0.115295,0.0654297,0.00167847,-0.0634155,-0.116241,-0.151215,-0.163361,-0.154968,-0.128052,-0.0841064,-0.028656,0.024353,0.0611267,0.0706177,0.0491333,0.00576782,-0.0470581,-0.0997314,-0.144836,-0.17804,-0.199188,-0.20752,-0.208374,-0.201874,-0.199005,-0.201752,-0.215088,-0.2341,-0.250336,-0.259521,-0.255585,-0.240753,-0.21759,-0.190338,-0.161621,-0.138733,-0.125702,-0.13147,-0.1604,-0.20871,-0.258179,-0.285492,-0.280396,-0.241486,-0.181488,-0.118805,-0.0646973,-0.0157776,0.0304565,0.0632935,0.0687256,0.0332947,-0.0377197,-0.116638,-0.173553,-0.193542,-0.177124,-0.137329,-0.0846863,-0.024353,0.0385132,0.0977783,0.144623,0.166656,0.159943,0.131348,0.0977173,0.0739746,0.0713501,0.0871887,0.110931,0.137329,0.16214,0.178528,0.181,0.166504,0.134827,0.0934753,0.0562439,0.0402832,0.057251,0.109741,0.184082,0.262604,0.327057,0.369659,0.390594,0.382355,0.342682,0.273499,0.184845,0.0929565,0.020752,-0.015625,-0.0160522,0.0128784,0.0558472,0.0952454,0.125488,0.150818,0.165314,0.168396,0.158844,0.139191,0.117462,0.103638,0.103821,0.116577,0.130463,0.134216,0.116516,0.0786438,0.0234985,-0.0334167,-0.0869141,-0.128448,-0.152893,-0.157776,-0.141479,-0.105103,-0.0527649,0.00280762,0.0447083,0.0655823,0.0574646,0.0266418,-0.0182495,-0.0701294,-0.124359,-0.169678,-0.20282,-0.218445,-0.218719,-0.212891,-0.208466,-0.209808,-0.221466,-0.236237,-0.248718,-0.256653,-0.258575,-0.252686,-0.24115,-0.222229,-0.192688,-0.16153,-0.138794,-0.13739,-0.161285,-0.207733,-0.252625,-0.275085,-0.264435,-0.224579,-0.172546,-0.126099,-0.0838928,-0.0396729,0.00793457,0.0461121,0.0550232,0.0196533,-0.0506592,-0.125092,-0.17865,-0.194305,-0.178375,-0.141541,-0.0912781,-0.0301208,0.0388489,0.106171,0.159454,0.181885,0.172821,0.142212,0.108246,0.0843506,0.0784607,0.0861206,0.101685,0.122345,0.143555,0.162964,0.172028,0.165649,0.139801,0.0997314,0.0639038,0.0493164,0.0738831,0.131409,0.207123,0.28476,0.347168,0.385834,0.401825,0.390198,0.347107,0.273499,0.181732,0.086853,0.0127563,-0.0236816,-0.0232849,0.00549316,0.0510864,0.0959778,0.133698,0.161682,0.177917,0.180939,0.172882,0.153961,0.130188,0.114349,0.109253,0.116699,0.128448,0.130341,0.112427,0.072876,0.0179749,-0.0411987,-0.0920715,-0.130676,-0.153564,-0.158447,-0.144348,-0.107727,-0.0532227,0.00289917,0.0467834,0.0661621,0.0562439,0.0246277,-0.0194092,-0.0715332,-0.123016,-0.168121,-0.203491,-0.224304,-0.23053,-0.227661,-0.223907,-0.2229,-0.232086,-0.243744,-0.256927,-0.264618,-0.266113,-0.25885,-0.245178,-0.224152,-0.200592,-0.179138,-0.166229,-0.16745,-0.187103,-0.217987,-0.243073,-0.253021,-0.237915,-0.200134,-0.151886,-0.105225,-0.0634155,-0.0246887,0.0032959,0.0177307,0.00924683,-0.0284424,-0.0851746,-0.141754,-0.17981,-0.187653,-0.166992,-0.12262,-0.0634155,0.00241089,0.0663147,0.121399,0.158447,0.17276,0.167786,0.148651,0.122833,0.104156,0.0970459,0.101074,0.114441,0.130737,0.144348,0.149872,0.146851,0.13269,0.109863,0.0892639,0.0783081,0.0866394,0.122498,0.179993,0.249603,0.315582,0.369324,0.401611,0.405426,0.377441,0.319183,0.239319,0.149658,0.0704651,0.0151672,-0.0134888,-0.0153809,0.00778198,0.0448914,0.0877075,0.130859,0.163208,0.17746,0.181213,0.176025,0.165558,0.155914,0.146973,0.138519,0.129517,0.120056,0.103821,0.0750427,0.0314636,-0.0220032,-0.0770569,-0.122742,-0.149872,-0.155914,-0.143829,-0.117981,-0.0791321,-0.0342407,0.00924683,0.0448914,0.0592651,0.0485229,0.0151062,-0.0325623,-0.0874634,-0.135895,-0.176239,-0.205963,-0.226776,-0.239807,-0.248108,-0.252289,-0.251556,-0.253479,-0.256592,-0.260071,-0.262146,-0.259583,-0.249329,-0.233215,-0.213348,-0.196899,-0.190002,-0.194489,-0.210541,-0.232422,-0.245178,-0.241333,-0.219208,-0.181274,-0.137848,-0.0976562,-0.0622253,-0.0289307,-0.00314331,0.00692749,-0.00549316,-0.0467224,-0.104553,-0.158325,-0.190002,-0.193207,-0.170746,-0.128998,-0.0757141,-0.0126038,0.0555725,0.118805,0.166565,0.187866,0.182739,0.164764,0.142426,0.127991,0.123352,0.123291,0.123749,0.124908,0.125244,0.121826,0.116119,0.102875,0.0823364,0.0637512,0.061676,0.0849609,0.136993,0.209259,0.28476,0.350342,0.398712,0.425049,0.426453,0.398926,0.336517,0.246765,0.147308,0.0588684,0.00100708,-0.0230103,-0.0216675,-0.00274658,0.0296631,0.0675964,0.109192,0.150146,0.176971,0.188446,0.187531,0.178802,0.17041,0.167664,0.166504,0.15799,0.140747,0.109741,0.0655823,0.0133667,-0.0424805,-0.0954895,-0.137909,-0.163696,-0.168335,-0.151062,-0.11557,-0.0683289,-0.017395,0.025238,0.0527649,0.0636902,0.0502625,0.0168457,-0.0294495,-0.0838928,-0.135986,-0.176788,-0.205841,-0.22522,-0.235626,-0.243408,-0.252686,-0.25885,-0.263092,-0.265778,-0.266846,-0.265106,-0.261688,-0.252686,-0.238983,-0.223572,-0.207123,-0.197449,-0.199799,-0.218597,-0.242218,-0.25592,-0.248871,-0.215363,-0.164429,-0.112,-0.0724792,-0.0447693,-0.0214233,-0.0015564,0.00866699,-0.00738525,-0.0575256,-0.128265,-0.188934,-0.219269,-0.212158,-0.177856,-0.129059,-0.0722046,-0.0103455,0.0580444,0.123169,0.174896,0.19986,0.198792,0.178864,0.156036,0.144012,0.140533,0.142944,0.14093,0.131134,0.118317,0.100189,0.0834961,0.0663147,0.0516052,0.0428772,0.0495911,0.0828247,0.146637,0.236969,0.330078,0.405853,0.448517,0.459045,0.438721,0.392944,0.323212,0.231079,0.129608,0.0370483,-0.0275879,-0.0533447,-0.041748,-0.00973511,0.0296631,0.0665894,0.102631,0.135986,0.166229,0.188873,0.199005,0.198242,0.191284,0.185028,0.181213,0.173767,0.154572,0.116455,0.0583191,-0.0113525,-0.0794067,-0.134705,-0.168732,-0.181824,-0.174561,-0.15094,-0.111084,-0.0586548,-0.00195312,0.044281,0.0697327,0.0682678,0.0444336,0.00463867,-0.0422668,-0.0914917,-0.138062,-0.17569,-0.203766,-0.222473,-0.234711,-0.2435,-0.252289,-0.261017,-0.269928,-0.275238,-0.278259,-0.276764,-0.269531,-0.255646,-0.237457,-0.221741,-0.212402,-0.214844,-0.227173,-0.244354,-0.252808,-0.245697,-0.217438,-0.170471,-0.116364,-0.066925,-0.0301208,-0.00598145,0.00671387,0.00616455,-0.0150452,-0.0631409,-0.130615,-0.197571,-0.241608,-0.246643,-0.216583,-0.162292,-0.0956421,-0.024292,0.0476379,0.115234,0.170593,0.199921,0.207245,0.195648,0.175964,0.161743,0.155579,0.153839,0.152618,0.146362,0.132294,0.11026,0.0818176,0.0488586,0.0189209,0.00256348,0.00912476,0.0446167,0.112335,0.205627,0.310455,0.405975,0.476562,0.507263,0.495758,0.443756,0.360199,0.255981,0.147461,0.0508118,-0.020874,-0.06073,-0.065918,-0.041626,0.00167847,0.0492554,0.0927429,0.12616,0.147522,0.165161,0.181274,0.194366,0.202942,0.207062,0.205566,0.196899,0.181335,0.149597,0.0962524,0.0224915,-0.0612183,-0.138,-0.191803,-0.214844,-0.207977,-0.179138,-0.133423,-0.0756226,-0.0118103,0.0437622,0.0823364,0.0910034,0.0700073,0.0294495,-0.0228882,-0.0748901,-0.120148,-0.15744,-0.186249,-0.210205,-0.225983,-0.240997,-0.253693,-0.266968,-0.280121,-0.291473,-0.298309,-0.295898,-0.287109,-0.268738,-0.243225,-0.21759,-0.202484,-0.204376,-0.221466,-0.243835,-0.253479,-0.24173,-0.20752,-0.159668,-0.110657,-0.0717468,-0.0379944,-0.00436401,0.0161743,0.0158386,-0.0182495,-0.0826721,-0.158508,-0.22168,-0.25415,-0.250671,-0.216583,-0.16275,-0.0943604,-0.0162354,0.0630188,0.134369,0.184174,0.200806,0.193878,0.176575,0.16153,0.157776,0.161407,0.1651,0.164093,0.158661,0.145294,0.122345,0.0892639,0.0452271,0.0020752,-0.0267639,-0.0248413,0.0204163,0.104156,0.210541,0.322296,0.417664,0.485229,0.517914,0.511017,0.46283,0.377045,0.265381,0.144226,0.0387268,-0.0304565,-0.0613403,-0.0575867,-0.0332336,-0.000396729,0.0353088,0.0709534,0.101807,0.126709,0.145691,0.158661,0.170746,0.187531,0.207916,0.225494,0.231873,0.216583,0.176971,0.11261,0.0302124,-0.058197,-0.138794,-0.199921,-0.234955,-0.237122,-0.209381,-0.15509,-0.0842285,-0.0147095,0.041626,0.0753784,0.0834351,0.0674438,0.0333557,-0.0127563,-0.0636902,-0.11026,-0.147461,-0.17337,-0.190063,-0.204285,-0.223572,-0.246368,-0.273163,-0.297516,-0.315765,-0.326782,-0.329132,-0.317261,-0.292938,-0.260925,-0.229584,-0.208984,-0.206635,-0.213287,-0.215424,-0.208313,-0.18335,-0.152283,-0.121552,-0.0914917,-0.0593872,-0.0229492,0.00314331,0.00793457,-0.0206604,-0.081604,-0.151276,-0.21048,-0.244843,-0.251892,-0.234497,-0.193817,-0.131958,-0.049469,0.0385132,0.117859,0.174225,0.199677,0.199738,0.18576,0.16806,0.158203,0.15564,0.15625,0.158264,0.158661,0.154083,0.136902,0.108246,0.0639038,0.0147095,-0.0229492,-0.0343018,-0.00665283,0.0602112,0.157715,0.266449,0.369934,0.45517,0.509857,0.524689,0.493225,0.419067,0.313141,0.196564,0.0894775,0.0107422,-0.0383301,-0.0549011,-0.0444946,-0.0213318,0.0104065,0.0471802,0.0785828,0.101685,0.120331,0.134552,0.147858,0.169525,0.196167,0.222473,0.23999,0.238647,0.211212,0.15509,0.0767822,-0.0108032,-0.0990601,-0.172943,-0.22522,-0.247375,-0.237579,-0.196716,-0.130737,-0.0597229,0.00375366,0.0508118,0.0739746,0.0716248,0.0509338,0.0129395,-0.033905,-0.0812073,-0.120483,-0.149536,-0.169403,-0.185181,-0.203156,-0.225555,-0.253571,-0.283752,-0.312805,-0.338318,-0.351868,-0.351135,-0.336304,-0.308716,-0.273285,-0.241943,-0.218536,-0.198334,-0.179138,-0.156769,-0.125031,-0.0920105,-0.0654297,-0.0475769,-0.0386658,-0.0346375,-0.0345764,-0.0423584,-0.0708618,-0.121338,-0.180664,-0.232544,-0.257996,-0.252289,-0.219604,-0.165771,-0.102966,-0.0299377,0.0447693,0.114685,0.168457,0.199585,0.210663,0.202148,0.188934,0.177307,0.16925,0.165161,0.158783,0.148193,0.128174,0.0977783,0.0632935,0.0237732,-0.00839233,-0.0259705,-0.0195923,0.017395,0.0889282,0.187653,0.298126,0.400543,0.47522,0.511139,0.503571,0.458191,0.382629,0.287323,0.185242,0.089386,0.013031,-0.0339661,-0.0495911,-0.0359192,-0.0105896,0.0174561,0.0422058,0.062561,0.0826721,0.106384,0.131958,0.156372,0.178864,0.199738,0.217865,0.229523,0.22644,0.198242,0.138458,0.0578613,-0.0332947,-0.114502,-0.175507,-0.211273,-0.22168,-0.210327,-0.176178,-0.123352,-0.0626831,-0.00604248,0.0342407,0.048645,0.0411377,0.0171204,-0.0148315,-0.0492554,-0.0818787,-0.108734,-0.133972,-0.154846,-0.174622,-0.197113,-0.221741,-0.249115,-0.280548,-0.311615,-0.340149,-0.359131,-0.362823,-0.351196,-0.329132,-0.303223,-0.278931,-0.246521,-0.203033,-0.150269,-0.0943604,-0.0447083,-0.0127563,0.00201416,0.00939941,0.0114746,0.00112915,-0.0297241,-0.0860291,-0.160065,-0.225098,-0.268463,-0.281891,-0.268646,-0.233948,-0.183411,-0.117859,-0.0397949,0.0399475,0.113007,0.165558,0.19046,0.198914,0.198334,0.198914,0.202423,0.205902,0.200684,0.187653,0.162964,0.12851,0.0867004,0.0401306,-0.00811768,-0.0479736,-0.0653076,-0.0516663,0.00146484,0.0888062,0.19577,0.308777,0.407043,0.480347,0.514099,0.508118,0.461395,0.383026,0.284821,0.183014,0.0932922,0.0268555,-0.0137024,-0.0276489,-0.0227661,-0.00967407,0.00732422,0.0247803,0.041687,0.0613403,0.0846252,0.110077,0.137787,0.169067,0.201752,0.230743,0.246429,0.238403,0.201355,0.135651,0.0532227,-0.0308838,-0.107239,-0.167328,-0.207062,-0.222229,-0.209808,-0.173035,-0.118591,-0.0622253,-0.016449,0.0120239,0.0197449,0.0115356,-0.00665283,-0.0310669,-0.0577087,-0.0817566,-0.102417,-0.12027,-0.136047,-0.15329,-0.175354,-0.199677,-0.231537,-0.266724,-0.301147,-0.333771,-0.356659,-0.366699,-0.363342,-0.349731,-0.329926,-0.301422,-0.262604,-0.209717,-0.146301,-0.0782471,-0.0184021,0.0240173,0.0467834,0.0551758,0.0479126,0.0226746,-0.0245667,-0.0960388,-0.176575,-0.246979,-0.289673,-0.300812,-0.279999,-0.231476,-0.169067,-0.097168,-0.0212097,0.0525513,0.116699,0.160126,0.183563,0.191223,0.196716,0.208649,0.223297,0.236176,0.238922,0.225647,0.193146,0.142548,0.0831604,0.0178528,-0.0404663,-0.085022,-0.0996094,-0.0749817,-0.00704956,0.0950928,0.214752,0.332428,0.427856,0.48999,0.510864,0.49173,0.438599,0.358063,0.261932,0.166656,0.0888062,0.0355835,0.00665283,-0.00396729,-0.00524902,-0.00650024,-0.00491333,-0.00146484,0.0067749,0.0238342,0.0499878,0.0830078,0.124237,0.171356,0.218109,0.25174,0.264099,0.246185,0.195099,0.116699,0.0275269,-0.0603943,-0.135101,-0.190674,-0.219452,-0.222687,-0.200409,-0.158264,-0.108063,-0.0635681,-0.0297241,-0.0124817,-0.0100708,-0.0188599,-0.0314636,-0.0481262,-0.0667725,-0.0801392,-0.094574,-0.108002,-0.124298,-0.146027,-0.176514,-0.213165,-0.253906,-0.295776,-0.332825,-0.36026,-0.375641,-0.376831,-0.363831,-0.337646,-0.30249,-0.256714,-0.202606,-0.142822,-0.0801392,-0.019928,0.0269165,0.0561829,0.0658264,0.0512695,0.0188599,-0.0315552,-0.0953064,-0.163422,-0.222809,-0.263947,-0.277588,-0.25946,-0.212738,-0.150482,-0.0787964,-0.0110779,0.0492554,0.0950928,0.126831,0.148926,0.161072,0.172546,0.18988,0.21167,0.234894,0.25235,0.253143,0.229248,0.18222,0.118591,0.0475769,-0.0168457,-0.0611267,-0.0793152,-0.061554,-0.0085144,0.0799866,0.19046,0.305695,0.401001,0.456451,0.465637,0.433685,0.380859,0.315643,0.247589,0.181,0.118713,0.0697327,0.0456238,0.0437622,0.0491943,0.0488586,0.0325623,0.00515747,-0.0157166,-0.0140381,0.00564575,0.0406799,0.0826721,0.125916,0.169861,0.209656,0.236237,0.232483,0.191345,0.118042,0.0310059,-0.0517578,-0.115692,-0.156708,-0.179932,-0.185577,-0.172943,-0.144348,-0.108459,-0.0730286,-0.0526123,-0.0531006,-0.0669861,-0.0862427,-0.0978394,-0.0987854,-0.0914001,-0.0844421,-0.0821533,-0.0866394,-0.0992737,-0.118469,-0.14679,-0.189209,-0.241333,-0.30014,-0.351746,-0.385162,-0.399323,-0.392426,-0.372833,-0.340881,-0.293488,-0.233612,-0.15918,-0.0838928,-0.0170593,0.0299377,0.0534363,0.0594482,0.0484619,0.0249634,-0.0146179,-0.0722961,-0.139587,-0.20343,-0.250946,-0.266571,-0.249268,-0.204224,-0.145966,-0.0848389,-0.0236816,0.0336304,0.0867004,0.126587,0.150391,0.161621,0.162872,0.171082,0.187439,0.210663,0.231476,0.238647,0.223297,0.185699,0.134827,0.0777283,0.0224915,-0.0222168,-0.040863,-0.0293884,0.0187378,0.0987244,0.194885,0.288727,0.362091,0.403229,0.410614,0.389008,0.346985,0.287262,0.219666,0.154968,0.105438,0.0807495,0.0789795,0.0880432,0.0939636,0.0861206,0.0643005,0.0390015,0.0184631,0.00698853,0.00772095,0.0195923,0.0438232,0.0834961,0.130127,0.171692,0.198914,0.19632,0.160522,0.0996704,0.0267639,-0.045166,-0.102753,-0.141266,-0.159332,-0.152618,-0.132416,-0.101135,-0.0720825,-0.0542297,-0.0512695,-0.0649109,-0.0912781,-0.120605,-0.141205,-0.154419,-0.153748,-0.141144,-0.12207,-0.105042,-0.0932922,-0.0953674,-0.114563,-0.151489,-0.201874,-0.262695,-0.322815,-0.369537,-0.39679,-0.401611,-0.384827,-0.346375,-0.292358,-0.224365,-0.144562,-0.0688477,-0.00582886,0.0324707,0.0489197,0.0457153,0.0315552,0.0104065,-0.0275879,-0.0826111,-0.145447,-0.203369,-0.237579,-0.240936,-0.213745,-0.170868,-0.119873,-0.066925,-0.0148926,0.0383911,0.0871277,0.125427,0.150146,0.161072,0.171875,0.188385,0.211487,0.236969,0.251678,0.244629,0.213501,0.164764,0.106445,0.0514221,0.00671387,-0.0219421,-0.0314026,-0.00918579,0.0472412,0.134308,0.237396,0.332001,0.399475,0.427185,0.418182,0.379456,0.322754,0.255707,0.18576,0.120819,0.0711975,0.0444946,0.0424805,0.0553589,0.0692749,0.0738831,0.0627441,0.0444336,0.0287781,0.0248413,0.0350952,0.0525513,0.0791931,0.110077,0.142944,0.170349,0.183075,0.167664,0.120331,0.0510864,-0.0275269,-0.0968323,-0.146698,-0.173492,-0.179047,-0.167053,-0.138794,-0.0992737,-0.0617371,-0.0339661,-0.0259094,-0.0388489,-0.068512,-0.102539,-0.13269,-0.15329,-0.162292,-0.161346,-0.158203,-0.153503,-0.151276,-0.154083,-0.167175,-0.193695,-0.234955,-0.287994,-0.337036,-0.371674,-0.382874,-0.371613,-0.337799,-0.286926,-0.223907,-0.15033,-0.0733643,-0.00759888,0.0353088,0.0554504,0.0492554,0.0247803,-0.00946045,-0.0551758,-0.109802,-0.163361,-0.207184,-0.230927,-0.228729,-0.199005,-0.150604,-0.0939026,-0.0386047,0.0088501,0.0502014,0.0836792,0.109863,0.132477,0.146118,0.159729,0.177917,0.202606,0.229858,0.254089,0.260681,0.2388,0.191956,0.130737,0.0689392,0.0188599,-0.0102539,-0.0155029,0.00717163,0.0595398,0.139801,0.233368,0.324219,0.391083,0.419525,0.410278,0.36972,0.313751,0.248199,0.184174,0.128052,0.0856934,0.0635681,0.0634155,0.0740967,0.0828247,0.0794067,0.0597229,0.0332947,0.00900269,-0.00106812,0.00665283,0.0259094,0.058136,0.0973206,0.136658,0.171692,0.189789,0.179382,0.133026,0.0631409,-0.0185852,-0.0943604,-0.150482,-0.184235,-0.193481,-0.181824,-0.153503,-0.114899,-0.0761108,-0.0487366,-0.0393982,-0.0522156,-0.0818787,-0.115906,-0.145233,-0.162689,-0.165833,-0.158783,-0.148315,-0.13739,-0.131683,-0.135773,-0.154633,-0.191406,-0.247864,-0.314148,-0.376831,-0.420471,-0.435577,-0.417175,-0.366974,-0.291931,-0.201355,-0.102814,-0.0114746,0.0597229,0.0967102,0.103149,0.0769653,0.0310059,-0.0246277,-0.0892639,-0.155029,-0.210327,-0.247253,-0.25592,-0.235504,-0.189331,-0.132416,-0.0732117,-0.0200806,0.024353,0.0629578,0.0957031,0.123505,0.148529,0.169586,0.191803,0.21698,0.245026,0.265625,0.273773,0.258057,0.215759,0.152557,0.0842285,0.0226746,-0.0188599,-0.0296021,-0.00799561,0.0434265,0.12262,0.216522,0.309937,0.385376,0.428802,0.431946,0.400208,0.344635,0.277435,0.209595,0.15033,0.104156,0.0732117,0.0612183,0.0646973,0.0742188,0.0802612,0.0719604,0.0520935,0.0256348,0.00765991,0.00750732,0.0231018,0.0503235,0.0841064,0.117706,0.145782,0.164825,0.16571,0.137329,0.0822144,0.00912476,-0.0673828,-0.128845,-0.167664,-0.181335,-0.176117,-0.155975,-0.127502,-0.0977783,-0.0743103,-0.0606689,-0.065918,-0.0861816,-0.115234,-0.144684,-0.166168,-0.175293,-0.171082,-0.15979,-0.148041,-0.139404,-0.140015,-0.152222,-0.178467,-0.223145,-0.281616,-0.342896,-0.39093,-0.417847,-0.417572,-0.388,-0.332214,-0.255829,-0.161621,-0.0655823,0.0160522,0.0670471,0.0855713,0.0776367,0.0498047,0.0120239,-0.040863,-0.105103,-0.166901,-0.214233,-0.233429,-0.224243,-0.1922,-0.1492,-0.101532,-0.0553589,-0.0128784,0.0272522,0.061615,0.0921326,0.11972,0.145782,0.177643,0.21637,0.256989,0.292542,0.312134,0.30719,0.270416,0.208588,0.131287,0.0549622,-0.00604248,-0.0389404,-0.0390015,-0.00308228,0.0661621,0.163879,0.269745,0.364441,0.429474,0.452484,0.435638,0.392273,0.329926,0.256378,0.18631,0.124512,0.0798645,0.0608826,0.0629578,0.0740967,0.0791931,0.0701294,0.0474548,0.0224304,0.00396729,-0.000549316,0.0104065,0.032074,0.062561,0.101959,0.139923,0.1698,0.180481,0.159058,0.104706,0.0310669,-0.0471802,-0.116852,-0.167572,-0.196899,-0.206177,-0.193756,-0.164368,-0.125031,-0.0885315,-0.0663147,-0.06073,-0.074646,-0.10202,-0.131531,-0.158783,-0.178467,-0.18576,-0.182343,-0.176361,-0.168915,-0.163544,-0.170197,-0.191406,-0.231598,-0.284821,-0.342407,-0.390259,-0.418732,-0.422607,-0.391937,-0.329803,-0.238251,-0.130341,-0.0263062,0.0526733,0.0910034,0.0953674,0.0707397,0.0297241,-0.0245056,-0.0949707,-0.168732,-0.230927,-0.25946,-0.248596,-0.205231,-0.143829,-0.0834351,-0.0306091,0.00967407,0.0404663,0.0644836,0.0792542,0.0871887,0.0920715,0.104095,0.13208,0.17691,0.234436,0.284698,0.314484,0.312897,0.276978,0.216583,0.145294,0.0748901,0.0184021,-0.0141602,-0.0115356,0.0323486,0.114349,0.218445,0.315491,0.385773,0.417175,0.412415,0.38623,0.344299,0.288177,0.220947,0.156525,0.109314,0.0903931,0.100128,0.119537,0.128723,0.118134,0.0910645,0.0561218,0.0259705,0.00616455,-0.00357056,0.000274658,0.0175171,0.0496521,0.0930176,0.134888,0.163025,0.163818,0.130463,0.0751648,0.00744629,-0.0593872,-0.115234,-0.155701,-0.179596,-0.183685,-0.168671,-0.142487,-0.117462,-0.100739,-0.098175,-0.110596,-0.128784,-0.149933,-0.169067,-0.182831,-0.187531,-0.183167,-0.172699,-0.158997,-0.148926,-0.15155,-0.171936,-0.212494,-0.271881,-0.336914,-0.393158,-0.433075,-0.447235,-0.426971,-0.37262,-0.285431,-0.174774,-0.0591125,0.0371094,0.098114,0.119141,0.102539,0.061554,0.00234985,-0.0715332,-0.150482,-0.221954,-0.264496,-0.269745,-0.240143,-0.18396,-0.120056,-0.0579224,-0.00604248,0.033905,0.0620117,0.0808716,0.0949097,0.108246,0.124634,0.151489,0.189453,0.235107,0.275574,0.300476,0.296051,0.262695,0.202148,0.129852,0.0609436,0.0088501,-0.0124207,-0.000396729,0.0484009,0.131958,0.236847,0.338989,0.416656,0.451477,0.438782,0.396179,0.337311,0.273224,0.210327,0.15094,0.101196,0.0721436,0.0708618,0.0882568,0.110748,0.117523,0.103149,0.0754395,0.0487976,0.0340881,0.037323,0.0507507,0.070282,0.0934143,0.119873,0.143097,0.155243,0.142212,0.0963135,0.0264282,-0.0469055,-0.109314,-0.148468,-0.164978,-0.163696,-0.148529,-0.124084,-0.093811,-0.0683289,-0.0597229,-0.0726929,-0.103638,-0.145111,-0.183502,-0.209656,-0.222351,-0.220947,-0.210205,-0.193634,-0.177917,-0.1651,-0.162201,-0.176788,-0.213898,-0.269196,-0.332214,-0.386108,-0.421021,-0.424896,-0.399261,-0.345642,-0.264709,-0.167114,-0.06604,0.0209351,0.0740356,0.0863647,0.0653687,0.0229492,-0.0324707,-0.0933533,-0.154755,-0.208466,-0.238647,-0.238586,-0.204773,-0.147186,-0.0832214,-0.0279236,0.0102539,0.0334778,0.0470581,0.0549011,0.0646973,0.0779114,0.0997314,0.132355,0.179321,0.236237,0.290283,0.325623,0.323151,0.284821,0.215088,0.134888,0.0614014,0.00759888,-0.0181274,-0.0100708,0.0369263,0.121613,0.233368,0.342285,0.423828,0.457184,0.445312,0.40451,0.350616,0.291138,0.226166,0.164642,0.11261,0.0840149,0.080658,0.0921326,0.0991821,0.0882568,0.0602112,0.027771,0.00531006,6.10352e-05,0.0137634,0.0405273,0.0769043,0.11972,0.163208,0.197235,0.209381,0.186432,0.126984,0.0420227,-0.0488586,-0.128662,-0.184021,-0.210815,-0.211212,-0.190216,-0.151947,-0.110992,-0.0750427,-0.0585938,-0.065094,-0.0923462,-0.129395,-0.16684,-0.196777,-0.213623,-0.216431,-0.206573,-0.191223,-0.176575,-0.170074,-0.177795,-0.205383,-0.252136,-0.313141,-0.377594,-0.431824,-0.459869,-0.450348,-0.397919,-0.309204,-0.19812,-0.0835571,0.0158386,0.0847778,0.116852,0.11087,0.0667725,-0.00241089,-0.0875244,-0.172485,-0.239655,-0.277191,-0.277252,-0.247589,-0.190216,-0.118042,-0.0426025,0.0225525,0.0667725,0.0885925,0.090332,0.085907,0.0844421,0.0917969,0.114441,0.149597,0.196045,0.24234,0.278595,0.292419,0.275238,0.229248,0.162415,0.0925598,0.0336914,0.00234985,0.00463867,0.0459595,0.123077,0.223236,0.3255,0.403748,0.438782,0.430817,0.392883,0.339203,0.282806,0.227386,0.173431,0.128784,0.104492,0.104431,0.121338,0.134369,0.126831,0.0936279,0.0482483,0.00924683,-0.0120239,-0.0116882,0.00524902,0.036377,0.0783997,0.128723,0.176178,0.205627,0.199524,0.152283,0.0777893,-0.00811768,-0.0855103,-0.144623,-0.18161,-0.195374,-0.186432,-0.156921,-0.116791,-0.0795898,-0.0619507,-0.0712891,-0.102478,-0.145294,-0.186523,-0.214508,-0.227905,-0.22522,-0.211548,-0.19101,-0.169525,-0.155914,-0.154755,-0.176849,-0.220795,-0.285645,-0.358246,-0.424957,-0.467529,-0.472229,-0.43222,-0.349945,-0.237793,-0.117462,-0.00750732,0.072876,0.117371,0.12088,0.0895996,0.0281067,-0.0522766,-0.139252,-0.215973,-0.265564,-0.281067,-0.258179,-0.20282,-0.13028,-0.0555115,0.00424194,0.0447083,0.0675964,0.0785828,0.0836792,0.0872498,0.0979919,0.12088,0.158264,0.209534,0.263153,0.304626,0.316498,0.292267,0.234772,0.159058,0.0809937,0.0181885,-0.0185852,-0.016449,0.0278625,0.111877,0.223572,0.335175,0.418121,0.45517,0.444092,0.399048,0.338928,0.275635,0.213348,0.158997,0.118134,0.101288,0.109528,0.132812,0.15094,0.144836,0.111664,0.06073,0.0126038,-0.0191956,-0.0281982,-0.0163879,0.0136108,0.0583191,0.112946,0.16684,0.201935,0.203217,0.1633,0.0896606,0.000793457,-0.0840149,-0.151062,-0.191681,-0.20578,-0.190552,-0.156525,-0.112152,-0.0730896,-0.0531006,-0.0588684,-0.0909424,-0.137787,-0.188049,-0.227722,-0.250275,-0.254425,-0.241821,-0.217316,-0.190063,-0.167236,-0.159058,-0.173218,-0.213226,-0.272949,-0.341064,-0.405853,-0.447327,-0.450531,-0.411957,-0.329132,-0.220551,-0.103363,-0.00415039,0.0637512,0.0941467,0.0877991,0.0524292,-0.00576782,-0.0791321,-0.153839,-0.216858,-0.251892,-0.251892,-0.216705,-0.154846,-0.0842896,-0.0195312,0.02771,0.0549622,0.0701294,0.0757141,0.0798035,0.0852966,0.0974426,0.12384,0.163879,0.215363,0.264099,0.295959,0.299591,0.269592,0.217438,0.152222,0.0894775,0.040802,0.0155029,0.0221558,0.068512,0.152954,0.257385,0.354431,0.416107,0.428802,0.402832,0.356903,0.307373,0.257599,0.206848,0.154755,0.112946,0.0949707,0.103485,0.125916,0.137848,0.124023,0.0863037,0.0428162,0.0124817,0.00402832,0.0107422,0.0264282,0.0497437,0.0819397,0.121674,0.158264,0.173218,0.152679,0.0985107,0.0273743,-0.0468445,-0.109253,-0.154572,-0.184235,-0.193542,-0.180145,-0.149811,-0.110992,-0.0789185,-0.0688477,-0.0811462,-0.112274,-0.148468,-0.181,-0.203705,-0.216919,-0.224152,-0.22522,-0.223358,-0.219055,-0.217529,-0.226044,-0.247864,-0.286926,-0.334564,-0.38147,-0.415497,-0.420349,-0.391815,-0.327911,-0.234619,-0.127441,-0.0250244,0.0517578,0.0913391,0.0910645,0.0549622,-0.00134277,-0.0716858,-0.145111,-0.211548,-0.26001,-0.27652,-0.255096,-0.195557,-0.115967,-0.0340881,0.0307922,0.0729675,0.0961609,0.10611,0.110748,0.113281,0.118927,0.131958,0.159729,0.199463,0.243225,0.279602,0.292206,0.270935,0.22113,0.156647,0.0916748,0.041626,0.0184021,0.0238953,0.0667114,0.144562,0.246643,0.348785,0.424957,0.453278,0.431,0.377106,0.310791,0.251282,0.200806,0.15799,0.124908,0.106659,0.108582,0.127991,0.146118,0.142273,0.108185,0.0526733,-0.00146484,-0.0331421,-0.0358276,-0.0141602,0.0226746,0.069397,0.118713,0.163818,0.190735,0.186707,0.145569,0.0745544,-0.00827026,-0.0886536,-0.149475,-0.187317,-0.199921,-0.192078,-0.168243,-0.135986,-0.108398,-0.0949707,-0.103638,-0.130463,-0.166656,-0.199677,-0.217773,-0.221802,-0.213745,-0.200256,-0.187927,-0.181549,-0.182495,-0.19812,-0.232147,-0.283478,-0.344757,-0.407043,-0.453705,-0.469727,-0.445557,-0.379059,-0.276703,-0.155975,-0.037384,0.0557861,0.108856,0.120819,0.093689,0.0391846,-0.0351562,-0.119812,-0.200867,-0.258118,-0.280884,-0.263763,-0.211151,-0.139862,-0.0644226,0,0.0483093,0.0767212,0.0922852,0.100464,0.107391,0.122681,0.147308,0.188385,0.239655,0.289062,0.323822,0.33075,0.303284,0.245178,0.170135,0.0908203,0.0249634,-0.0110168,-0.0109253,0.036499,0.128052,0.247711,0.365906,0.447784,0.475311,0.446228,0.386993,0.319183,0.258575,0.204285,0.15451,0.118042,0.105103,0.121002,0.154907,0.17981,0.171265,0.125427,0.0567932,-0.00772095,-0.0501404,-0.0629578,-0.0513306,-0.0177307,0.0343018,0.0966492,0.159271,0.197723,0.198517,0.15509,0.0802002,-0.0065918,-0.0843506,-0.143341,-0.178802,-0.190338,-0.178589,-0.150208,-0.114014,-0.0867004,-0.0830994,-0.109314,-0.157928,-0.212555,-0.256989,-0.279114,-0.276703,-0.255157,-0.222076,-0.188385,-0.161469,-0.149384,-0.157867,-0.191345,-0.251129,-0.326508,-0.403564,-0.46524,-0.492676,-0.475311,-0.409851,-0.302155,-0.171936,-0.0452881,0.0524292,0.103699,0.107727,0.0742188,0.0202637,-0.048645,-0.124512,-0.19873,-0.253479,-0.271545,-0.244904,-0.180267,-0.10141,-0.028656,0.0237732,0.0534973,0.0684509,0.0719604,0.0751648,0.0804749,0.0944824,0.122498,0.171082,0.233765,0.299805,0.348511,0.36322,0.337189,0.277313,0.197784,0.116028,0.0455627,0.00308228,-0.00161743,0.0418091,0.13382,0.254303,0.375641,0.458649,0.484619,0.452606,0.385986,0.313629,0.248596,0.192688,0.14267,0.108063,0.0975952,0.121002,0.164825,0.198059,0.198242,0.155701,0.0883789,0.019989,-0.0284424,-0.0526123,-0.0514832,-0.028595,0.0132751,0.0688477,0.124756,0.163208,0.168518,0.135834,0.0690613,-0.0115967,-0.0870361,-0.145447,-0.177521,-0.183685,-0.166168,-0.132629,-0.0960999,-0.0699463,-0.0690613,-0.0991211,-0.153839,-0.216858,-0.271271,-0.304108,-0.312012,-0.297577,-0.266968,-0.229919,-0.195496,-0.173553,-0.171082,-0.193756,-0.242218,-0.310059,-0.383209,-0.442017,-0.465912,-0.444366,-0.377777,-0.275696,-0.1604,-0.0518799,0.0333557,0.0807495,0.0898132,0.057251,-0.00671387,-0.0897217,-0.17395,-0.23645,-0.266296,-0.259399,-0.220398,-0.158508,-0.0856934,-0.013031,0.0457764,0.0810852,0.092804,0.086792,0.0774536,0.0779724,0.0968323,0.134155,0.186371,0.245697,0.300873,0.338654,0.348999,0.324493,0.267181,0.189728,0.105316,0.0387878,0.00610352,0.0210876,0.0856934,0.187256,0.304016,0.403412,0.46463,0.474579,0.442749,0.384979,0.315247,0.245422,0.182007,0.133301,0.110474,0.119049,0.149719,0.182892,0.193756,0.172943,0.124084,0.0640869,0.0114136,-0.0263672,-0.0445557,-0.0387878,-0.00772095,0.0431519,0.104492,0.153412,0.174835,0.158844,0.108002,0.036499,-0.040802,-0.110321,-0.165314,-0.195557,-0.198578,-0.174561,-0.132141,-0.0917358,-0.0700073,-0.077179,-0.113159,-0.167725,-0.225494,-0.273621,-0.301666,-0.30838,-0.293762,-0.267181,-0.236237,-0.209808,-0.197113,-0.202606,-0.233551,-0.283691,-0.344971,-0.403412,-0.44455,-0.455566,-0.426239,-0.354218,-0.245575,-0.119812,-0.00424194,0.0732117,0.0996704,0.0771179,0.0209961,-0.0490723,-0.125244,-0.200409,-0.259338,-0.29187,-0.281464,-0.228668,-0.14624,-0.0555115,0.0214233,0.0728149,0.094696,0.0977783,0.0914001,0.0882568,0.0900574,0.103821,0.13443,0.18692,0.253693,0.318848,0.359131,0.358063,0.317169,0.247253,0.165894,0.0908813,0.0351562,0.0118103,0.0301208,0.098175,0.208069,0.3367,0.445984,0.500671,0.489929,0.42981,0.353699,0.286377,0.229126,0.177368,0.132019,0.108917,0.121399,0.165314,0.209869,0.223022,0.192627,0.127441,0.056366,-0.00189209,-0.0381775,-0.0536804,-0.0440979,-0.0104065,0.045166,0.110077,0.162964,0.184235,0.164307,0.107239,0.0310059,-0.048584,-0.119659,-0.1716,-0.200409,-0.202545,-0.176514,-0.133301,-0.0940247,-0.0750427,-0.090332,-0.135162,-0.196167,-0.254089,-0.295715,-0.315247,-0.309998,-0.287384,-0.255707,-0.225708,-0.203613,-0.196167,-0.21228,-0.252686,-0.313019,-0.381012,-0.439056,-0.470001,-0.461212,-0.407776,-0.311127,-0.187653,-0.0592651,0.0425415,0.098175,0.101959,0.0589294,-0.0117493,-0.0973206,-0.185425,-0.260742,-0.306641,-0.31012,-0.265625,-0.185974,-0.0916748,-0.00610352,0.0597229,0.0959778,0.104431,0.0944214,0.0775146,0.0691223,0.0784607,0.108582,0.159058,0.2229,0.291351,0.343903,0.363831,0.342468,0.285492,0.206177,0.122162,0.0534363,0.0146179,0.024353,0.0855713,0.18866,0.3078,0.410339,0.469788,0.478241,0.441681,0.379608,0.307861,0.237396,0.173553,0.129852,0.115906,0.138397,0.185181,0.228394,0.243622,0.222351,0.170135,0.10672,0.0436096,-0.00900269,-0.0446167,-0.0532227,-0.0307922,0.0181885,0.0769653,0.128723,0.157104,0.15686,0.125824,0.0720825,0.00515747,-0.0646362,-0.122742,-0.158936,-0.169067,-0.153748,-0.12442,-0.0995178,-0.0912781,-0.106842,-0.145569,-0.196991,-0.249451,-0.289124,-0.310669,-0.310791,-0.29361,-0.264771,-0.233276,-0.206726,-0.195496,-0.204437,-0.236725,-0.287323,-0.349335,-0.41214,-0.459198,-0.471741,-0.441742,-0.365906,-0.25766,-0.134979,-0.0234375,0.0561218,0.0944214,0.0892639,0.0430298,-0.0306091,-0.121735,-0.212402,-0.281006,-0.316254,-0.306122,-0.257935,-0.179535,-0.0881348,-0.00189209,0.0643005,0.101135,0.113678,0.108063,0.098999,0.0926819,0.100342,0.127777,0.175629,0.23819,0.301331,0.34314,0.351868,0.322296,0.25885,0.177704,0.0985107,0.0387268,0.0138855,0.0354919,0.108063,0.218719,0.34549,0.44873,0.500885,0.493011,0.440002,0.366699,0.291138,0.220001,0.155975,0.110474,0.0943604,0.116119,0.165771,0.211395,0.231598,0.210602,0.159851,0.0986633,0.044281,0.00430298,-0.0196533,-0.0238953,-0.00509644,0.0348206,0.0883789,0.132874,0.154358,0.141022,0.0986633,0.0400085,-0.0250854,-0.0832214,-0.129669,-0.154419,-0.15744,-0.13739,-0.107178,-0.0848389,-0.0835571,-0.108795,-0.155701,-0.210876,-0.265167,-0.303833,-0.321198,-0.315765,-0.292816,-0.260803,-0.231415,-0.209534,-0.203156,-0.217377,-0.253815,-0.306458,-0.366516,-0.420471,-0.45462,-0.452423,-0.406433,-0.319397,-0.204163,-0.0876465,0.00604248,0.0610657,0.0740356,0.0522156,-0.000274658,-0.0758362,-0.163086,-0.241882,-0.292816,-0.30188,-0.270325,-0.206635,-0.130524,-0.050415,0.0182495,0.0675964,0.0909424,0.0949097,0.0891418,0.0861206,0.0909424,0.111755,0.150269,0.203888,0.264221,0.312958,0.333344,0.320465,0.275757,0.209869,0.137238,0.0750427,0.0384521,0.0441589,0.0956421,0.186707,0.301208,0.404572,0.468994,0.478729,0.441132,0.378601,0.310944,0.245026,0.181946,0.129333,0.105225,0.117523,0.161072,0.206909,0.229736,0.217041,0.174103,0.119598,0.0671082,0.0245667,-0.00396729,-0.0137634,-0.00088501,0.0290527,0.0733032,0.114502,0.139862,0.137512,0.106323,0.0567017,-0.00100708,-0.0553589,-0.101013,-0.131012,-0.139404,-0.12793,-0.102356,-0.0798645,-0.0744324,-0.0950928,-0.13678,-0.190613,-0.242676,-0.282806,-0.305359,-0.306702,-0.292603,-0.264771,-0.237854,-0.214233,-0.203033,-0.210327,-0.237976,-0.286591,-0.344482,-0.400818,-0.441284,-0.451202,-0.424774,-0.360596,-0.264221,-0.150269,-0.0440369,0.0324097,0.0710754,0.0683899,0.0324707,-0.0284424,-0.108521,-0.19281,-0.263885,-0.301147,-0.295837,-0.251556,-0.180939,-0.104218,-0.0336914,0.0234985,0.0610657,0.081604,0.0881348,0.0887146,0.090332,0.100861,0.128784,0.176849,0.236298,0.29422,0.330933,0.334167,0.301483,0.240875,0.163971,0.0888672,0.0326843,0.0112,0.0370483,0.11087,0.220001,0.339661,0.440125,0.495178,0.494354,0.447571,0.374847,0.29483,0.218719,0.154297,0.109589,0.0972595,0.117859,0.162689,0.203827,0.220001,0.201752,0.15564,0.100006,0.0484009,0.0102539,-0.0110779,-0.0114136,0.00946045,0.0473938,0.0910034,0.12851,0.146362,0.13739,0.102814,0.0493164,-0.0114136,-0.0680542,-0.109406,-0.131073,-0.131012,-0.114563,-0.0917969,-0.0787354,-0.0855713,-0.116241,-0.16275,-0.215637,-0.263092,-0.295959,-0.307922,-0.298248,-0.270203,-0.234436,-0.202881,-0.182831,-0.182892,-0.202362,-0.244171,-0.300201,-0.364227,-0.422272,-0.459656,-0.461884,-0.423553,-0.343414,-0.233368,-0.115356,-0.0151672,0.048584,0.073822,0.0617371,0.0222778,-0.041626,-0.123413,-0.205719,-0.268127,-0.291626,-0.272552,-0.220001,-0.151886,-0.08255,-0.0216675,0.0250244,0.0541077,0.0670471,0.0699463,0.070343,0.0761719,0.0973816,0.138245,0.196381,0.262543,0.318665,0.347321,0.338928,0.294769,0.224579,0.14267,0.0677185,0.0167236,0.00442505,0.0414734,0.12323,0.235291,0.349731,0.438538,0.47934,0.467102,0.420807,0.356171,0.286041,0.218384,0.15918,0.121887,0.117371,0.144104,0.182068,0.207916,0.204102,0.171417,0.121948,0.0692749,0.0234375,-0.00900269,-0.0203247,-0.00979614,0.0215454,0.0643005,0.107391,0.138336,0.147369,0.130463,0.0918884,0.0376587,-0.0205383,-0.0717468,-0.105652,-0.119537,-0.112762,-0.0936279,-0.0778503,-0.0732117,-0.0933533,-0.132538,-0.185028,-0.238403,-0.282562,-0.308716,-0.312744,-0.296906,-0.265839,-0.228577,-0.195648,-0.174622,-0.1716,-0.193024,-0.2388,-0.299652,-0.362274,-0.412872,-0.440887,-0.435638,-0.39389,-0.316772,-0.214752,-0.108521,-0.0197449,0.0348206,0.0528259,0.0346985,-0.00958252,-0.0722961,-0.144562,-0.211395,-0.256042,-0.265106,-0.239868,-0.186707,-0.121826,-0.057312,-0.00140381,0.0387268,0.057312,0.061676,0.0584412,0.0599976,0.069397,0.0915527,0.133087,0.190002,0.255493,0.308533,0.333679,0.323151,0.279266,0.213165,0.137512,0.0724792,0.0344849,0.0340271,0.074646,0.15033,0.250946,0.352081,0.429718,0.459198,0.436584,0.378174,0.307587,0.244751,0.194214,0.15744,0.135651,0.137665,0.161072,0.195648,0.218597,0.21463,0.176636,0.116791,0.0552368,0.00671387,-0.0205994,-0.0256958,-0.012085,0.0175171,0.056366,0.0996704,0.133087,0.144684,0.127777,0.0846252,0.0283813,-0.024292,-0.0640869,-0.0876465,-0.0964966,-0.0926208,-0.0822144,-0.0738831,-0.0774536,-0.0997314,-0.142822,-0.196106,-0.249207,-0.289948,-0.31073,-0.307251,-0.284485,-0.248779,-0.212555,-0.183899,-0.168793,-0.1716,-0.196503,-0.243073,-0.304443,-0.365906,-0.415771,-0.439209,-0.427185,-0.379517,-0.298798,-0.19873,-0.0956421,-0.012146,0.0389404,0.0543518,0.0332336,-0.0144958,-0.0805359,-0.154846,-0.217194,-0.254913,-0.259338,-0.235107,-0.186188,-0.123169,-0.058136,0.00088501,0.040741,0.0602112,0.0627441,0.0601196,0.0610657,0.0725403,0.0973816,0.140472,0.196503,0.257111,0.305695,0.325775,0.31189,0.264832,0.19577,0.121216,0.0594482,0.0248413,0.0302124,0.0789795,0.164093,0.270416,0.368469,0.434357,0.450592,0.421478,0.365173,0.299255,0.234497,0.176117,0.135162,0.119812,0.136047,0.172211,0.207397,0.22113,0.206726,0.166504,0.113495,0.0594482,0.0120239,-0.0185852,-0.0299988,-0.0148315,0.0202026,0.0644226,0.107513,0.133759,0.137054,0.115509,0.0744934,0.0245056,-0.0227661,-0.0603333,-0.0834961,-0.089325,-0.0809326,-0.0657654,-0.0588684,-0.0681763,-0.0985107,-0.146027,-0.201141,-0.252075,-0.289734,-0.304108,-0.297058,-0.272095,-0.235718,-0.200592,-0.171692,-0.157196,-0.162292,-0.191864,-0.242828,-0.305237,-0.36496,-0.414978,-0.441345,-0.433075,-0.387848,-0.307373,-0.20639,-0.106232,-0.0226746,0.029541,0.0510864,0.0395203,-0.00112915,-0.0636902,-0.138245,-0.202026,-0.242493,-0.250885,-0.230743,-0.191803,-0.137787,-0.0762939,-0.0158997,0.028595,0.0516663,0.0576477,0.0569763,0.0579834,0.065033,0.0865173,0.126251,0.183411,0.244415,0.29361,0.317841,0.311798,0.275513,0.213409,0.140869,0.0767822,0.0363159,0.0330811,0.0690002,0.141418,0.238983,0.336029,0.407318,0.433228,0.413635,0.364502,0.304169,0.24173,0.185638,0.147186,0.133423,0.147797,0.179474,0.210388,0.22522,0.21283,0.175232,0.117981,0.0564575,0.00408936,-0.0318909,-0.0426941,-0.029541,0.00415039,0.0518799,0.101532,0.138245,0.150055,0.132538,0.0929565,0.0426941,-0.00631714,-0.0467834,-0.0724792,-0.0821533,-0.0771179,-0.06604,-0.0586548,-0.0643616,-0.0888062,-0.130951,-0.182404,-0.234894,-0.27536,-0.297729,-0.294556,-0.272003,-0.235291,-0.196503,-0.163208,-0.143829,-0.14444,-0.167236,-0.216705,-0.282745,-0.352814,-0.40918,-0.443695,-0.44812,-0.415039,-0.346039,-0.244293,-0.132751,-0.0344849,0.0284424,0.0509338,0.040741,0.00457764,-0.0434875,-0.104767,-0.174561,-0.232941,-0.264832,-0.253082,-0.205048,-0.14035,-0.077179,-0.0272522,0.0104065,0.037262,0.0518188,0.0545044,0.0523376,0.0536804,0.0671082,0.0995178,0.152161,0.216705,0.277039,0.311737,0.309784,0.27417,0.220001,0.156647,0.0988464,0.0541687,0.0380554,0.0592041,0.12149,0.213287,0.314972,0.394562,0.428864,0.411682,0.355438,0.290863,0.232208,0.189667,0.156586,0.136169,0.138916,0.165558,0.206177,0.238525,0.240265,0.204437,0.140533,0.0688477,0.00958252,-0.0296021,-0.0426025,-0.0343018,-0.00610352,0.0354919,0.0865173,0.130188,0.154846,0.149323,0.112213,0.057251,0.00280762,-0.038269,-0.0638123,-0.0742188,-0.0755005,-0.0675049,-0.0605469,-0.0600586,-0.0743103,-0.108459,-0.156311,-0.207733,-0.251801,-0.278656,-0.281799,-0.265381,-0.231354,-0.192871,-0.158997,-0.137238,-0.134369,-0.150604,-0.190002,-0.247864,-0.315094,-0.379517,-0.428589,-0.453156,-0.443359,-0.396851,-0.314758,-0.210144,-0.105377,-0.0195923,0.0292664,0.0461731,0.0361633,0.00558472,-0.0409546,-0.105316,-0.170929,-0.22522,-0.249786,-0.238312,-0.198395,-0.141266,-0.0841675,-0.0336914,0.00683594,0.0328064,0.0518799,0.0582581,0.061676,0.0643616,0.0801392,0.114288,0.166168,0.225708,0.272614,0.296967,0.291626,0.259857,0.21228,0.155975,0.101349,0.061615,0.048645,0.0755615,0.140076,0.22818,0.315155,0.374084,0.389587,0.364288,0.319733,0.271332,0.227783,0.190796,0.161072,0.150879,0.162811,0.196381,0.231476,0.245087,0.225555,0.176117,0.109589,0.0437622,-0.00857544,-0.0435486,-0.0542908,-0.0406799,-0.00390625,0.0472412,0.100677,0.141876,0.158325,0.144958,0.108978,0.0596619,0.0113525,-0.0306091,-0.0597839,-0.0753784,-0.0784607,-0.0712891,-0.0661621,-0.0698547,-0.0888062,-0.124359,-0.167786,-0.211151,-0.244751,-0.261261,-0.258179,-0.237915,-0.20813,-0.176117,-0.149994,-0.134766,-0.133636,-0.152496,-0.191742,-0.251465,-0.318329,-0.378723,-0.417572,-0.430817,-0.418915,-0.379395,-0.314636,-0.223419,-0.12323,-0.0344849,0.0183105,0.0289917,0.0101318,-0.0220947,-0.0564575,-0.093811,-0.140259,-0.189453,-0.224365,-0.22348,-0.187195,-0.128601,-0.0706177,-0.0273743,0.0017395,0.0212708,0.0377197,0.0479736,0.0558472,0.0646973,0.0761108,0.101471,0.138794,0.18988,0.241272,0.275085,0.280945,0.257324,0.216858,0.172211,0.131073,0.103363,0.0932312,0.109131,0.150818,0.214569,0.286316,0.341888,0.362335,0.339325,0.286987,0.230469,0.192413,0.173615,0.167725,0.168121,0.177124,0.197113,0.226562,0.247101,0.238983,0.195221,0.127594,0.0549622,-0.0038147,-0.0387878,-0.0466309,-0.0311279,0.00228882,0.0455017,0.0870361,0.121216,0.139191,0.135162,0.106567,0.061615,0.012207,-0.0280457,-0.0541077,-0.0653076,-0.0679932,-0.0634766,-0.0600586,-0.0634155,-0.0776367,-0.106506,-0.146454,-0.187256,-0.221283,-0.239746,-0.243286,-0.228119,-0.204163,-0.177368,-0.156982,-0.14798,-0.152496,-0.168396,-0.198395,-0.243286,-0.29657,-0.346497,-0.381683,-0.395691,-0.391266,-0.364227,-0.318665,-0.251465,-0.171143,-0.0920105,-0.0310669,-0.00012207,0.00564575,-0.00985718,-0.0327454,-0.0642395,-0.101868,-0.147034,-0.191345,-0.212555,-0.20517,-0.167389,-0.115112,-0.0630798,-0.0171814,0.0145569,0.0415344,0.0627441,0.078125,0.0863647,0.086792,0.0890503,0.102875,0.135376,0.181152,0.223297,0.249939,0.251556,0.23584,0.208588,0.179199,0.15094,0.129181,0.119049,0.129059,0.165497,0.220795,0.279602,0.318115,0.324036,0.299133,0.261017,0.229523,0.20697,0.193146,0.182404,0.178253,0.184418,0.201752,0.218048,0.216705,0.189667,0.140076,0.0792542,0.0225525,-0.0150452,-0.0319519,-0.0233459,0.0017395,0.0371704,0.0765686,0.111267,0.135498,0.138794,0.120148,0.0817566,0.0334167,-0.0133667,-0.0491333,-0.0704041,-0.0786438,-0.0778503,-0.0724792,-0.0686035,-0.0707397,-0.0838928,-0.109314,-0.142487,-0.176514,-0.203278,-0.217194,-0.215515,-0.201874,-0.182159,-0.164886,-0.155426,-0.154419,-0.164429,-0.184021,-0.215759,-0.257996,-0.304626,-0.346375,-0.373688,-0.380951,-0.371063,-0.342682,-0.300812,-0.242889,-0.175354,-0.106659,-0.04422,-0.00772095,0.0065918,-0.000396729,-0.0232849,-0.0531006,-0.0917969,-0.136169,-0.177704,-0.202606,-0.198517,-0.170471,-0.122345,-0.0677185,-0.0163879,0.0267029,0.0600586,0.082489,0.0910034,0.0913391,0.0847778,0.0820923,0.0887146,0.111938,0.150482,0.194214,0.234222,0.256378,0.256927,0.240875,0.212158,0.179596,0.15094,0.13208,0.129333,0.147644,0.185577,0.232819,0.271606,0.291199,0.287109,0.265839,0.241547,0.221008,0.204712,0.193481,0.185638,0.186188,0.192017,0.196838,0.190948,0.166321,0.124847,0.0757751,0.0314026,0.00222778,-0.00991821,-0.00430298,0.016449,0.0464478,0.081543,0.108978,0.125153,0.122223,0.100403,0.0646362,0.0210876,-0.020752,-0.0544434,-0.0762329,-0.0855713,-0.0841675,-0.0748901,-0.0661011,-0.0635681,-0.0710754,-0.0906677,-0.120148,-0.149933,-0.177307,-0.194427,-0.202209,-0.200348,-0.191864,-0.181152,-0.172607,-0.170807,-0.177795,-0.190613,-0.213562,-0.243286,-0.278046,-0.310883,-0.33551,-0.349396,-0.353973,-0.349121,-0.326569,-0.284576,-0.220795,-0.144348,-0.0704651,-0.0162964,0.0101929,0.0187378,0.0101929,-0.0112,-0.0512085,-0.106781,-0.166504,-0.210876,-0.223022,-0.202423,-0.152893,-0.09021,-0.0252991,0.0314636,0.0762939,0.10498,0.111877,0.102478,0.0810852,0.0580444,0.0513306,0.0673828,0.109528,0.167114,0.224976,0.267853,0.287048,0.28363,0.259674,0.218719,0.168243,0.118195,0.0864563,0.0849609,0.117188,0.171936,0.23114,0.272614,0.29129,0.291016,0.280548,0.265717,0.244843,0.21933,0.194427,0.177917,0.172089,0.171082,0.168121,0.153168,0.126251,0.0905457,0.0542908,0.0238953,0.00704956,0.00408936,0.0159607,0.0367737,0.0624084,0.0864563,0.104645,0.111542,0.103546,0.0784607,0.0401917,-0.00268555,-0.0422058,-0.0720825,-0.0891418,-0.09375,-0.0872498,-0.0752258,-0.0642395,-0.060791,-0.0671082,-0.0841675,-0.109863,-0.139587,-0.168457,-0.191559,-0.205109,-0.207855,-0.202759,-0.196503,-0.189941,-0.186523,-0.187653,-0.190948,-0.200531,-0.222137,-0.250122,-0.281006,-0.307373,-0.323425,-0.334351,-0.335785,-0.323486,-0.29129,-0.233154,-0.158936,-0.0833435,-0.0265808,0.003479,0.0157776,0.00979614,-0.00604248,-0.0400696,-0.0930176,-0.151154,-0.196899,-0.207642,-0.184967,-0.134644,-0.0698547,-0.00759888,0.0469666,0.0862427,0.108124,0.108185,0.0948181,0.0716858,0.0484619,0.0385132,0.0511475,0.0959167,0.160522,0.229248,0.279449,0.297974,0.289856,0.258453,0.214844,0.163208,0.112946,0.0800781,0.077301,0.111755,0.173889,0.243561,0.297394,0.319855,0.312958,0.288513,0.254364,0.217529,0.179932,0.14444,0.119873,0.113159,0.124084,0.141693,0.155579,0.155701,0.140747,0.112335,0.080658,0.052887,0.0341492,0.0298767,0.0346985,0.0440979,0.0567017,0.0681152,0.0762329,0.0733032,0.053833,0.019989,-0.0241089,-0.0626221,-0.0895996,-0.100861,-0.0969849,-0.0820007,-0.0617371,-0.0432129,-0.0324707,-0.0319519,-0.0464478,-0.0755005,-0.114685,-0.156097,-0.194366,-0.217529,-0.226837,-0.223694,-0.216034,-0.206055,-0.196655,-0.187378,-0.180389,-0.182281,-0.198578,-0.226837,-0.259796,-0.292938,-0.314484,-0.327789,-0.334442,-0.327057,-0.302216,-0.252014,-0.181946,-0.103027,-0.0350952,0.00857544,0.0279236,0.0282593,0.0100708,-0.0215454,-0.0723572,-0.128845,-0.178711,-0.202148,-0.191132,-0.152405,-0.0917969,-0.0246277,0.0367126,0.0843506,0.108643,0.111938,0.0975037,0.0756226,0.0499268,0.0337524,0.0377808,0.0729675,0.133148,0.202484,0.258789,0.289459,0.291809,0.272095,0.233368,0.183075,0.131195,0.0899963,0.0743103,0.0957642,0.149384,0.21994,0.281128,0.312683,0.309448,0.282013,0.244843,0.205841,0.168457,0.133362,0.109314,0.104645,0.123688,0.157532,0.185089,0.193359,0.178711,0.142883,0.102081,0.0640869,0.0338135,0.0167236,0.0100098,0.013092,0.0274353,0.0432129,0.0592651,0.0620117,0.0476379,0.0179138,-0.0191345,-0.0513306,-0.0729675,-0.0827637,-0.081665,-0.0705261,-0.0524292,-0.0333557,-0.0214233,-0.0198669,-0.0357056,-0.0653076,-0.10556,-0.150543,-0.19101,-0.220795,-0.233093,-0.230804,-0.217102,-0.197845,-0.180267,-0.165771,-0.159058,-0.16153,-0.176025,-0.200531,-0.230347,-0.261353,-0.286926,-0.304016,-0.31369,-0.319336,-0.315918,-0.294098,-0.247864,-0.179199,-0.103699,-0.0374451,0.00189209,0.0222168,0.0281067,0.0212708,0.000671387,-0.04422,-0.105896,-0.165771,-0.19812,-0.191559,-0.153748,-0.0916748,-0.024353,0.0380554,0.0879211,0.121887,0.133545,0.123749,0.098999,0.0634766,0.0306091,0.0188599,0.0400696,0.0926208,0.159393,0.220734,0.259674,0.276764,0.27356,0.252228,0.215027,0.168518,0.12262,0.0991211,0.107239,0.147797,0.207062,0.258789,0.283691,0.275696,0.246429,0.21106,0.178925,0.15033,0.125763,0.108337,0.110535,0.134155,0.169464,0.198792,0.209198,0.194305,0.156372,0.107666,0.0597229,0.0214233,-0.000335693,-0.00558472,-0.0012207,0.0100708,0.0232849,0.0375977,0.0465088,0.040741,0.0232849,-0.00643921,-0.0360413,-0.0586548,-0.0714111,-0.0726318,-0.06604,-0.0526123,-0.0396118,-0.0324707,-0.033905,-0.0463867,-0.0690613,-0.101196,-0.138,-0.174438,-0.200256,-0.210205,-0.204956,-0.190796,-0.175354,-0.163544,-0.157257,-0.155579,-0.160126,-0.173706,-0.195221,-0.225647,-0.253571,-0.27652,-0.289185,-0.291138,-0.288116,-0.281555,-0.269257,-0.243896,-0.202423,-0.148315,-0.0889282,-0.0357056,0.00134277,0.0245667,0.0324707,0.0216675,-0.0038147,-0.0484009,-0.0998535,-0.146515,-0.172363,-0.167999,-0.134705,-0.0756226,-0.0088501,0.0526123,0.100861,0.12677,0.130188,0.113098,0.0838928,0.0462952,0.0181274,0.0150452,0.0409546,0.0940857,0.1604,0.22348,0.264832,0.283752,0.277527,0.251068,0.210266,0.163147,0.118652,0.0930786,0.0935669,0.120331,0.165314,0.208466,0.238251,0.245239,0.235168,0.213287,0.190216,0.16745,0.149994,0.138,0.136322,0.14328,0.156525,0.165833,0.16214,0.143097,0.111206,0.0743103,0.0428772,0.0201416,0.00912476,0.00738525,0.0111389,0.0192566,0.0293884,0.0357056,0.0383911,0.0302734,0.0134277,-0.0118103,-0.0367737,-0.0552368,-0.0679321,-0.0708618,-0.0699463,-0.0646362,-0.0609436,-0.0557861,-0.0526733,-0.0536804,-0.0620117,-0.0799866,-0.106323,-0.135315,-0.157257,-0.170135,-0.171875,-0.168793,-0.165649,-0.166382,-0.168793,-0.171875,-0.175446,-0.180389,-0.18988,-0.203827,-0.217529,-0.226715,-0.227448,-0.22348,-0.218201,-0.220215,-0.227509,-0.23175,-0.225037,-0.20108,-0.160675,-0.109528,-0.0585938,-0.0134888,0.0265808,0.0517578,0.0567017,0.0393982,-0.00390625,-0.0606079,-0.115509,-0.149536,-0.156372,-0.132355,-0.0822754,-0.0220032,0.040741,0.0926819,0.126648,0.137177,0.123566,0.0924072,0.0522766,0.0224304,0.0158386,0.0393372,0.0884705,0.147369,0.201752,0.238647,0.254242,0.246765,0.218781,0.177979,0.132202,0.0923462,0.0713501,0.0779114,0.110077,0.158722,0.207184,0.238129,0.246429,0.233551,0.208069,0.173218,0.137451,0.104309,0.0823364,0.0763855,0.0894775,0.113892,0.138855,0.153168,0.152161,0.131531,0.101074,0.0644226,0.0317993,0.00469971,-0.0109253,-0.0159607,-0.0101318,0.00549316,0.0240173,0.0367126,0.0381775,0.0259094,-0.000457764,-0.032959,-0.0647583,-0.0874634,-0.0986633,-0.0954285,-0.0823364,-0.0629578,-0.0412903,-0.0231018,-0.012146,-0.0151672,-0.0344849,-0.0668335,-0.105713,-0.140411,-0.164307,-0.17395,-0.172821,-0.165039,-0.15451,-0.143829,-0.135437,-0.129333,-0.130524,-0.137054,-0.147186,-0.157043,-0.164032,-0.169586,-0.172028,-0.176117,-0.184357,-0.19577,-0.208527,-0.21228,-0.205383,-0.181,-0.141998,-0.0912781,-0.038269,0.00946045,0.04953,0.0715332,0.0706177,0.045105,-0.00323486,-0.0599365,-0.108185,-0.133698,-0.134552,-0.108521,-0.0635681,-0.00683594,0.0491333,0.0965881,0.124237,0.12793,0.109985,0.0768433,0.0396729,0.0105896,0.00146484,0.0128174,0.0455627,0.0861816,0.128387,0.159729,0.179596,0.184021,0.174896,0.155853,0.133545,0.113953,0.10498,0.107574,0.121735,0.138733,0.151337,0.153748,0.141815,0.12262,0.100525,0.0848389,0.0779724,0.0814209,0.0952454,0.11377,0.135498,0.15274,0.159607,0.149323,0.122406,0.0848999,0.0438843,0.0107422,-0.0101929,-0.0169067,-0.0103455,0.0038147,0.0213318,0.0358276,0.0450439,0.041687,0.0262451,0.00088501,-0.0287781,-0.0549011,-0.0711365,-0.0744934,-0.0676575,-0.0556335,-0.0402832,-0.0279236,-0.0193176,-0.016571,-0.0191956,-0.0285339,-0.0437622,-0.0602722,-0.0757141,-0.0845642,-0.0861206,-0.0849609,-0.0849609,-0.0877991,-0.0929565,-0.0976562,-0.102142,-0.104218,-0.100464,-0.0952454,-0.098053,-0.107574,-0.111877,-0.101349,-0.0892029,-0.0894775,-0.105652,-0.126831,-0.135223,-0.132812,-0.12738,-0.126434,-0.12323,-0.110931,-0.0858459,-0.053833,-0.0265808,-0.00683594,0.00195312,0.00772095,0.00732422,0.0032959,-0.00750732,-0.024231,-0.0397339,-0.0498047,-0.0478516,-0.0404663,-0.0268555,-0.0101929,0.00906372,0.0291138,0.0437012,0.04953,0.0464478,0.0380554,0.0279846,0.0206604,0.0193176,0.0205383,0.0270386,0.0403442,0.057312,0.0758972,0.0883179,0.0920715,0.0871887,0.0769043,0.0663147,0.0558472,0.0491333,0.0436096,0.0452881,0.0514832,0.0644836,0.0798035,0.0919495,0.101807,0.104767,0.103699,0.0964355,0.0869141,0.0766296,0.0691223,0.0622253,0.0540161,0.0456238,0.0405273,0.0379333,0.0385132,0.040741,0.0424194,0.0429382,0.0425415,0.0402832,0.036438,0.0302734,0.0216675,0.0100708,-0.00543213,-0.0200806,-0.0317993,-0.037384,-0.0366516,-0.0296631,-0.0228882,-0.0148926,-0.00744629,0.00308228,0.0124207,0.0182495,0.0151672,0.0083313,-0.0015564,-0.00726318,-0.0108032,-0.0132141,-0.0197449,-0.0272522,-0.0324097,-0.0302734,-0.0250244,-0.025177,-0.0330811,-0.0393982,-0.0361023,-0.0246277,-0.0155029,-0.0161133,-0.0235596,-0.0270996,-0.0220032,-0.0114746,-0.0118713,-0.0259094,-0.041687,-0.0501404,-0.0519409,-0.0557861,-0.0657043,-0.0789185,-0.0879211,-0.0838318,-0.0734863,-0.0636292,-0.0597839,-0.0543518,-0.0428772,-0.028595,-0.0174561,-0.0131531,-0.0142822,-0.0162354,-0.0125427,-0.00738525,-0.0062561,-0.00872803,-0.0132751,-0.013031,-0.00991821,-0.00576782,-0.0071106,-0.0124207,-0.0179749,-0.0218811,-0.0234375,-0.0269775,-0.0322266,-0.0377808,-0.0400696,-0.0376587,-0.032074,-0.0250854,-0.0197449,-0.0166321,-0.011261,-0.00558472,0.000457764,0.00531006,0.00900269,0.012085,0.0154419,0.0178528,0.0194092,0.0194702,0.01651,0.0126953,0.00717163,0.000610352,-0.00463867,-0.00726318,-0.00482178,0.00256348,0.0148926,0.0298767,0.0444336,0.0567017,0.0640869,0.0655823,0.0596008,0.0481873,0.032959,0.015625,-0.00106812,-0.0135498,-0.0192566,-0.0177307,-0.00906372,0.00323486,0.0151062,0.0269775,0.0375977,0.0469666,0.052002,0.0542297,0.0518799,0.0441589,0.0369263,0.0307922,0.0266418,0.0241089,0.0215454,0.0200806,0.0244446,0.0334167,0.0420837,0.0518188,0.0599365,0.0667114,0.0673218,0.0654907,0.0632935,0.0583801,0.0528259,0.0421448,0.0298767,0.0214233,0.0183105,0.0200806,0.0178528,0.0175171,0.0182495,0.0191956,0.0228882,0.0205383,0.0160522,0.00726318,-0.0017395,-0.0111389,-0.0220032,-0.0309448,-0.0383301,-0.0422058,-0.0414734,-0.0357056,-0.0271912,-0.0162964,-0.00643921,0.000732422,0.00442505,0.00256348,-0.00491333,-0.0180664,-0.032959,-0.0469055,-0.0585938,-0.0655823,-0.068512,-0.0671692,-0.0619507,-0.053833,-0.0458984,-0.0396729,-0.0380554,-0.0418701,-0.0479736,-0.053833,-0.0592041,-0.0612793,-0.061615,-0.0599365,-0.0566406,-0.0532837,-0.0503235,-0.0523376,-0.0576477,-0.0656433,-0.0726929,-0.078064,-0.0801392,-0.0767822,-0.0691223,-0.0570374,-0.0447083,-0.0322266,-0.021759,-0.0151062,-0.0129395,-0.0161743,-0.0223389,-0.028595,-0.0325623,-0.033905,-0.0331421,-0.0314026,-0.0285339,-0.0247803,-0.0189209,-0.0132141,-0.00692749,-0.000396729,0.0062561,0.0122681,0.0191956,0.0253601,0.032135,0.0360413,0.036499,0.0343018,0.0307922,0.0272522,0.0262451,0.0256958,0.0273132,0.0314026,0.0387268,0.0477295,0.057251,0.0654297,0.0716248,0.0752869,0.0773926,0.078186,0.0762939,0.0730286,0.0690002,0.0663147,0.0646362,0.0644226,0.0649109,0.0658264,0.0679321,0.0696716,0.0706177,0.0700073,0.0677185,0.0638123,0.0602112,0.0558472,0.052887,0.0490723,0.0462341,0.041626,0.0377808,0.0350342,0.0330811,0.0326843,0.0322876,0.0312805,0.032135,0.0336304,0.0353699,0.0353088,0.0335693,0.0260315,0.0179138,0.00698853,-0.00396729,-0.0135498,-0.021759,-0.0274353,-0.0293884,-0.0269775,-0.021759,-0.0154419,-0.0108032,-0.00857544,-0.0111389,-0.0167236,-0.025238,-0.0346985,-0.0440369,-0.0522766,-0.0583191,-0.061554,-0.0628967,-0.0622864,-0.0621338,-0.060791,-0.0618896,-0.0631409,-0.0649109,-0.0662537,-0.0657043,-0.0635681,-0.0602112,-0.0576477,-0.0545654,-0.0533447,-0.052002,-0.0547791,-0.0569763,-0.0628052,-0.0682678,-0.072876,-0.0755005,-0.0758972,-0.0752869,-0.0718689,-0.0675964,-0.061554,-0.0533447,-0.0454407,-0.0392761,-0.0344238,-0.0325623,-0.0316772,-0.0322266,-0.033905,-0.0359192,-0.0371704,-0.0381775,-0.0360413,-0.0323486,-0.0265198,-0.0190735,-0.0105286,-0.0012207,0.0071106,0.0168457,0.0232849,0.0294495,0.0317383,0.032074,0.0306091,0.028656,0.0275269,0.0259705,0.0270386,0.0281067,0.0323486,0.0369263,0.040863,0.045166,0.0466309,0.0479736,0.0467834,0.045166,0.0440979,0.0426941,0.04422,0.0463867,0.0493164,0.0508118,0.0532227,0.0514832,0.050415,0.0469055,0.0447693,0.041687,0.0392761,0.0388489,0.0391235,0.0404053,0.0422058,0.0426941,0.0422668,0.0395203,0.036438,0.0299988,0.0263672,0.0218201,0.019928,0.0192566,0.0220032,0.0263672,0.0320129,0.0370483,0.0391235,0.0385132,0.0355835,0.0317993,0.0266418,0.0198059,0.0137634,0.00683594,0.00161743,-0.0020752,-0.00482178,-0.00515747,-0.00375366,-0.000732422,0.00134277,0.00390625,0.00549316,0.00637817,0.0062561,0.00582886,0.00289917,-0.0017395,-0.00726318,-0.0132751,-0.0194092,-0.0236816,-0.0270386,-0.0292053,-0.029541,-0.0308838,-0.0312805,-0.0326233,-0.032135,-0.0336304,-0.0333557,-0.0344849,-0.0336304,-0.0344238,-0.0334167,-0.0323486,-0.0324097,-0.0311279,-0.0324097,-0.0340881,-0.0354309,-0.0374451,-0.0388489,-0.0381775,-0.0379333,-0.0356445,-0.0317993,-0.0260315,-0.019928,-0.0151672,-0.0128174,-0.0126038,-0.0151672,-0.0187988,-0.0232239,-0.02771,-0.0299377,-0.0318909,-0.0297852,-0.0265198,-0.020874,-0.0149536,-0.0103455,-0.0083313,-0.00839233,-0.0110779,-0.0141602,-0.0161133,-0.0178528,-0.0160522,-0.0124207,-0.00665283,-0.000549316,0.00396729,0.00692749,0.0062561,0.0032959,-0.00195312,-0.0085144,-0.0157776,-0.0187378,-0.0200806,-0.0181274,-0.0131531,-0.00765991,-0.0020752,0.00323486,0.00469971,0.00415039,-0.000732422,-0.0065918,-0.0128174,-0.016449,-0.0179749,-0.0153809,-0.0105286,-0.00509644,0.00134277,0.0062561,0.00912476,0.0115356,0.0109253,0.00939941,0.00717163,0.00564575,0.00549316,0.00631714,0.00759888,0.00979614,0.0114136,0.0126038,0.0115356,0.00891113,0.00765991,0.00616455,0.00717163,0.00939941,0.0132751,0.0177307,0.0232849,0.028656,0.0324707,0.0340271,0.0343628,0.0322876,0.0293884,0.0260315,0.0228882,0.0212097,0.0224304,0.024292,0.0279236,0.0311279,0.0339661,0.0340271,0.0339661,0.0328064,0.0316162,0.0313416,0.0316162,0.0324097,0.0345764,0.0360413,0.0393982,0.040802,0.0418701,0.0409546,0.0386658,0.0352478,0.0324707,0.0302124,0.0299988,0.0299988,0.0320129,0.0318909,0.0313416,0.0289917,0.0250244,0.0198059,0.0148926,0.00912476,0.00402832,0.000793457,-0.00134277,-0.000946045,-0.000335693,0.00140381,0.00268555,0.0020752,0.00228882,-0.000213623,-0.00128174,-0.00375366,-0.00671387,-0.00924683,-0.013092,-0.0157166,-0.0183105,-0.0223389,-0.0266418,-0.032074,-0.037262,-0.0409546,-0.0434875,-0.0448914,-0.0446167,-0.0433655,-0.041626,-0.0395203,-0.0374451,-0.037323,-0.039856,-0.0445557,-0.0517578,-0.0576477,-0.0632324,-0.066925,-0.0675964,-0.06604,-0.0636902,-0.0587158,-0.0546265,-0.050415,-0.0479736,-0.0480652,-0.0512085,-0.0542908,-0.0583801,-0.06073,-0.0620117,-0.0602112,-0.0585938,-0.053894,-0.0498047,-0.04422,-0.0414124,-0.0384521,-0.0383301,-0.0383911,-0.0378418,-0.0375977,-0.0346375,-0.0310669,-0.0256348,-0.0202637,-0.0138855,-0.00891113,-0.00576782,-0.00491333,-0.00765991,-0.00985718,-0.013092,-0.013092,-0.0115967,-0.00811768,-0.00314331,0.00448608,0.0115967,0.0184021,0.0249634,0.0282593,0.0303345,0.0302124,0.0310059,0.0324707,0.0343018,0.0387268,0.0430298,0.0479126,0.0524292,0.0551147,0.0575867,0.0593262,0.0608826,0.0630798,0.0647583,0.0662537,0.0671082,0.0675964,0.0668335,0.0655823,0.0630798,0.0603943,0.0567932,0.0549011,0.0535583,0.0555115,0.0580444,0.061554,0.0652466,0.0674438,0.0690002,0.0690002,0.0673218,0.0648193,0.0613403,0.0588684,0.0557861,0.0536804,0.0519409,0.0506592,0.048645,0.0448914,0.0402832,0.0341492,0.0278625,0.0214233,0.0161743,0.0125427,0.0118103,0.0126038,0.015625,0.0173035,0.0182495,0.0142212,0.00772095,-0.00234985,-0.0140991,-0.024292,-0.0337524,-0.0392761,-0.040863,-0.0403442,-0.0353699,-0.0301208,-0.0247803,-0.020874,-0.020874,-0.0263672,-0.0348206,-0.0461731,-0.0564575,-0.0654297,-0.0709534,-0.0730896,-0.0740967,-0.0714722,-0.0690613,-0.0658264,-0.0637512,-0.0632935,-0.0649109,-0.0666504,-0.0681152,-0.0680542,-0.065918,-0.0614624,-0.0574646,-0.0526123,-0.0505371,-0.0499268,-0.0518188,-0.0565186,-0.0635681,-0.0691833,-0.0745544,-0.074646,-0.0700073,-0.0623474,-0.0516663,-0.0406189,-0.0338135,-0.0281067,-0.0269775,-0.027771,-0.0312805,-0.0367126,-0.0418091,-0.0447693,-0.0432129,-0.037323,-0.0276489,-0.0163879,-0.00549316,0.003479,0.00939941,0.0128174,0.0145569,0.013031,0.0119324,0.0100098,0.00878906,0.00845337,0.00900269,0.0108032,0.012146,0.0152893,0.0181274,0.0218811,0.0241089,0.028595,0.0313416,0.0346375,0.0369263,0.0399475,0.0411377,0.0437012,0.0445557,0.0449524,0.044281,0.045105,0.0448303,0.0463867,0.0473022,0.0476379,0.046051,0.0445557,0.0421448,0.0406189,0.0393372,0.0395203,0.0406189,0.041626,0.0431519,0.045105,0.0465698,0.0477905,0.0464478,0.0448303,0.0424194,0.0399475,0.0367737,0.0331421,0.0287781,0.0256958,0.0249023,0.0256348,0.0275269,0.0292053,0.0301208,0.0310669,0.0315552,0.0306702,0.0292053,0.0264282,0.0235596,0.0196533,0.015625,0.0106812,0.00592041,0.00302124,0.00012207,-0.000457764,-0.000396729,0,0.0020752,0.00302124,0.0038147,0.00296021,0.00241089,0,-0.00363159,-0.00933838,-0.0155029,-0.0219421,-0.0256348,-0.0288696,-0.028717,-0.0281982,-0.0268555,-0.0246277,-0.0224304,-0.0200806,-0.0181885,-0.0172424,-0.0194092,-0.021759,-0.0270386,-0.0322876,-0.0379333,-0.0432129,-0.0457153,-0.0462952,-0.0422668,-0.0369873,-0.0305481,-0.0249634,-0.0202026,-0.0181885,-0.0173035,-0.0200806,-0.0245667,-0.0289307,-0.0343018,-0.0367737,-0.0379944,-0.0358276,-0.0326233,-0.027771,-0.0245056,-0.0216675,-0.0214233,-0.0212708,-0.0231018,-0.0233459,-0.0229492,-0.0219421,-0.019928,-0.0172424,-0.0146179,-0.0111389,-0.0104675,-0.00985718,-0.0124817,-0.0132751,-0.0151672,-0.0162964,-0.0158386,-0.0154419,-0.0127563,-0.0101318,-0.0071106,-0.00582886,-0.00726318,-0.0106812,-0.0152283,-0.0175781,-0.0194092,-0.0173035,-0.013092,-0.00878906,-0.00213623,0.00390625,0.0085144,0.00872803,0.00726318,0.00189209,-0.00335693,-0.00778198,-0.0100708,-0.00946045,-0.00643921,-0.00222778,0.00390625,0.00985718,0.0134888,0.0167847,0.0153809,0.0136108,0.0110779,0.00805664,0.00726318,0.0067749,0.00726318,0.00799561,0.00866699,0.00952148,0.0110168,0.0120239,0.0138245,0.0134277,0.0149536,0.0154419,0.0173035,0.0187378,0.0205383,0.0213318,0.0213318,0.020813,0.0191956,0.0178528,0.0177917,0.0167847,0.0177917,0.0177307,0.0184021,0.0189819,0.0194092,0.0196533,0.0204773,0.0204773,0.0216675,0.0223389,0.0229492,0.0240173,0.0249023,0.0261841,0.0258484,0.0260925,0.0267029,0.0260315,0.0259705,0.0249634,0.0241089,0.0229492,0.0220032,0.0209961,0.0211487,0.0202637,0.020874,0.0204773,0.0205994,0.0198669,0.0202026,0.0194702,0.0184021,0.0166321,0.0142212,0.012146,0.00939941,0.00866699,0.00738525,0.0065918,0.00598145,0.00531006,0.0038147,0.00280762,0.00201416,0.00128174,0.00012207,-0.00100708,-0.00201416,-0.00424194,-0.00564575,-0.00866699,-0.0122681,-0.0157166,-0.0200806,-0.0236816,-0.0265198,-0.0281067,-0.0283813,-0.0279236,-0.0260315,-0.0238953,-0.0220032,-0.0212097,-0.0215454,-0.0232849,-0.0255737,-0.0283813,-0.0317993,-0.0339661,-0.0357666,-0.0355835,-0.0353088,-0.0341492,-0.0327454,-0.0312805,-0.028656,-0.0263062,-0.0245056,-0.0231628,-0.0230103,-0.0224304,-0.0226135,-0.0225525,-0.0234985,-0.0265198,-0.0293274,-0.0342407,-0.0361633,-0.0385132,-0.0375977,-0.0348206,-0.0293884,-0.0240173,-0.0182495,-0.0145569,-0.0119324,-0.0115967,-0.0137634,-0.0172424,-0.0228882,-0.0264282,-0.028656,-0.0281067,-0.0261841,-0.0216064,-0.0177917,-0.0126038,-0.00906372,-0.00582886,-0.00598145,-0.00637817,-0.00817871,-0.00900269,-0.00845337,-0.00570679,-0.00234985,0.00134277,0.00436401,0.00692749,0.00750732,0.00698853,0.00424194,0.00161743,-0.00100708,-0.00296021,-0.00180054,0.00134277,0.00631714,0.0123596,0.0171814,0.020752,0.0221558,0.0224304,0.0216064,0.0198669,0.0197449,0.0191345,0.0195923,0.0212708,0.0226746,0.0256958,0.0267639,0.0291138,0.0288696,0.0296021,0.0283813,0.0289307,0.0296631,0.0303955,0.0314636,0.0331421,0.0331421,0.0323486,0.0311279,0.0293274,0.0271912,0.024353,0.0228882,0.020874,0.0200806,0.0206604,0.0209351,0.0222168,0.0225525,0.0226746,0.0222168,0.0226135,0.0226746,0.0233459,0.0247803,0.0257568,0.0268555,0.0274353,0.0270996,0.0250854,0.0209961,0.0157166,0.00979614,0.00476074,0.00201416,0.000732422,0.00222778,0.00576782,0.00973511,0.0134888,0.016449,0.0167236,0.0145569,0.0104675,0.00598145,-0.000549316,-0.00369263,-0.00671387,-0.00604248,-0.00491333,-0.00296021,-0.00234985,-0.00195312,-0.00491333,-0.00778198,-0.0126038,-0.0169678,-0.0213318,-0.0226746,-0.0228271,-0.019928,-0.0166321,-0.013031,-0.0115356,-0.011261,-0.0146179,-0.0187988,-0.024231,-0.0297241,-0.0337524,-0.0356445,-0.0343628,-0.0306091,-0.0246277,-0.0191345,-0.0147705,-0.0126038,-0.0142212,-0.0171814,-0.0222168,-0.0282593,-0.03302,-0.0366516,-0.037384,-0.0361633,-0.032959,-0.029541,-0.0267029,-0.0245056,-0.0230103,-0.0239563,-0.0246277,-0.0265198,-0.0275269,-0.0275879,-0.0267639,-0.0255127,-0.0244446,-0.0233459,-0.0229492,-0.0231628,-0.0233459,-0.0237732,-0.0236206,-0.0224304,-0.0210876,-0.0182495,-0.015564,-0.0134277,-0.0122681,-0.0129395,-0.0152893,-0.0189209,-0.0232849,-0.0267029,-0.0284424,-0.0289307,-0.0259094,-0.0206604,-0.0140381,-0.00799561,-0.00274658,0.000946045,0.00189209,0.00189209,0.000396729,-0.00256348,-0.00363159,-0.00448608,-0.00390625,-0.00247192,0.000274658,0.00213623,0.00415039,0.00463867,0.00482178,0.00363159,0.00247192,0.00302124,0.00448608,0.00793457,0.0126038,0.0179138,0.0226746,0.0265198,0.028595,0.0310669,0.0302734,0.0302124,0.0288696,0.0292664,0.0301208,0.0317993,0.03302,0.0344849,0.0335693,0.0327454,0.0300598,0.0279236,0.0252991,0.024292,0.0236816,0.0268555,0.0316772,0.0360413,0.0411987,0.0450439,0.0455017,0.045166,0.0428162,0.0397949,0.0360413,0.0334778,0.0314636,0.0310059,0.0322266,0.0332947,0.0348206,0.0352478,0.0336304,0.0320129,0.0281982,0.0259705,0.0218811,0.0201416,0.0182495,0.0191956,0.0197449,0.0212708,0.0218201,0.0203247,0.0178528,0.0136108,0.00958252,0.00631714,0.00289917,0.00140381,0.000274658,0.000457764,0.00088501,0.0015564,0.00274658,0.0017395,-0.00012207,-0.0032959,-0.00750732,-0.0110168,-0.0137024,-0.0154419,-0.0180664,-0.0187378,-0.0212708,-0.0222778,-0.0241699,-0.0270386,-0.0296021,-0.0336304,-0.0369263,-0.0386658,-0.0391846,-0.038269,-0.0362549,-0.0343628,-0.0313416,-0.0297852,-0.0274353,-0.0270386,-0.0281067,-0.0306091,-0.0346985,-0.0383301,-0.0422668,-0.0445557,-0.0465088,-0.0479126,-0.0475769,-0.0476379,-0.045105,-0.0444336,-0.0419312,-0.0404053,-0.0384521,-0.0358276,-0.0343628,-0.0316772,-0.0298767,-0.0299988,-0.0294495,-0.0317993,-0.0328064,-0.0350342,-0.0361023,-0.0358276,-0.0336304,-0.0315552,-0.0276489,-0.0237732,-0.0200806,-0.017395,-0.015564,-0.016571,-0.0179138,-0.0200806,-0.0215454,-0.0226746,-0.020752,-0.0193176,-0.0144958,-0.00958252,-0.00424194,-0.000274658,0.00296021,0.00531006,0.00469971,0.00515747,0.00424194,0.00457764,0.00549316,0.0071106,0.00979614,0.0114746,0.0140991,0.0148926,0.0163879,0.0173035,0.0179138,0.0189209,0.019928,0.0215454,0.0232849,0.0257568,0.0289307,0.0296631,0.0311279,0.0309448,0.0299988,0.0289307,0.0279236,0.0274353,0.027771,0.029541,0.0311279,0.0346375,0.0371704,0.0406799,0.0429382,0.044281,0.0431519,0.0415344,0.0389404,0.0352478,0.032959,0.0296631,0.0280457,0.0278625,0.0271912,0.0285339,0.0289917,0.0296631,0.0292053,0.0283813,0.0283203,0.02771,0.02771,0.0285339,0.0283203,0.0289917,0.0292664,0.0289307,0.028656,0.0270386,0.0250854,0.0215454,0.0182495,0.0140991,0.0114136,0.00939941,0.00772095,0.0062561,0.0050354,0.00357056,0.00341797,0.00180054,0.0015564,0.00128174,-0.000213623,0.000213623,-0.000335693,-0.000457764,-0.00128174,-0.0017395,-0.00396729,-0.00738525,-0.0102539,-0.0131531,-0.0161743,-0.0176392,-0.0188599,-0.0196533,-0.0195312,-0.0184021,-0.0178528,-0.0171204,-0.0185852,-0.0197449,-0.0234375,-0.0259705,-0.028717,-0.0297852,-0.0297241,-0.0283203,-0.027771,-0.0257568,-0.0246887,-0.0241699,-0.0249634,-0.0264282,-0.0290527,-0.0312195,-0.0331421,-0.0344849,-0.0340271,-0.0336304,-0.0310059,-0.0285339,-0.025238,-0.0221558,-0.0206604,-0.0201416,-0.0214844,-0.0231018,-0.0250854,-0.0275269,-0.0283203,-0.0290527,-0.0291138,-0.0283203,-0.0259705,-0.024231,-0.0211487,-0.0204773,-0.0179749,-0.0192566,-0.0185852,-0.0202637,-0.0204163,-0.020813,-0.0214233,-0.0214844,-0.0216675,-0.020752,-0.0197449,-0.0180664,-0.0162354,-0.0149536,-0.0128784,-0.0112,-0.0101929,-0.00872803,-0.00839233,-0.00738525,-0.00744629,-0.00671387,-0.00604248,-0.00524902,-0.00369263,-0.00390625,-0.00274658,-0.00241089,-0.00189209,-0.000274658,0.000396729,0.00134277,0.00280762,0.00415039,0.00610352,0.00650024,0.00744629,0.00784302,0.00805664,0.00793457,0.00827026,0.00750732,0.0085144,0.00900269,0.0118103,0.0129395,0.0162354,0.0185242,0.020813,0.0218811,0.0229492,0.0224915,0.0222778,0.0211487,0.0201416,0.0189209,0.0184631,0.0187378,0.0188599,0.020874,0.0224915,0.0248413,0.0272522,0.0293884,0.0300598,0.0320129,0.0317383,0.032074,0.0303345,0.0289307,0.027771,0.0261841,0.0250854,0.0254211,0.0260315,0.027771,0.0294495,0.0310669,0.0318909,0.0322876,0.0312195,0.0292664,0.0264282,0.0249634,0.0218811,0.021759,0.020752,0.0216064,0.0230103,0.024292,0.0256958,0.0257568,0.0256348,0.0227661,0.0204163,0.0163879,0.0148315,0.0118713,0.0105896,0.0105896,0.0102539,0.0102539,0.0108643,0.00933838,0.00817871,0.00570679,0.00241089,-0.000793457,-0.00408936,-0.0067749,-0.00933838,-0.0101318,-0.0116882,-0.0116882,-0.0126038,-0.011261,-0.0120239,-0.0124207,-0.0136108,-0.0149536,-0.0169067,-0.0181885,-0.0190735,-0.0212708,-0.0230103,-0.0246887,-0.0273132,-0.0296631,-0.0311279,-0.0332336,-0.0341492,-0.0346375,-0.0334778,-0.0327454,-0.0311279,-0.0296021,-0.0292053,-0.0293274,-0.0296631,-0.0316772,-0.0344238,-0.0367126,-0.0396729,-0.0404053,-0.0410156,-0.0403442,-0.0376587,-0.0356445,-0.0325623,-0.0306091,-0.0306091,-0.0312805,-0.032959,-0.0349731,-0.0369873,-0.0379333,-0.038269,-0.0379333,-0.0360413,-0.0338135,-0.0306702,-0.0289917,-0.0271912,-0.0263062,-0.0253601,-0.0259705,-0.0246887,-0.024292,-0.0220947,-0.0200806,-0.0177307,-0.0162354,-0.0146179,-0.0139465,-0.0128174,-0.0124207,-0.0114136,-0.0105286,-0.00918579,-0.00643921,-0.00369263,-0.000457764,0.00241089,0.00424194,0.0050354,0.00531006,0.00436401,0.00463867,0.00396729,0.00369263,0.00543213,0.00772095,0.012146,0.0158997,0.0213318,0.024353,0.0269775,0.0275269,0.0274353,0.0269165,0.0255737,0.0244446,0.0234985,0.0231018,0.0231628,0.0255127,0.0278625,0.0309448,0.0334778,0.0350342,0.0358276,0.0360413,0.0350342,0.0344238,0.0324097,0.0312805,0.0301208,0.0299988,0.0307922,0.0322876,0.0340881,0.0351562,0.0367126,0.0370483,0.037323,0.0361023,0.0349121,0.0334778,0.0316772,0.0297852,0.028656,0.0281067,0.0271912,0.0267029,0.0267639,0.0267029,0.0274353,0.0283813,0.0284424,0.0288696,0.0281067,0.0259094,0.0246887,0.0209351,0.0181885,0.0139465,0.011261,0.00793457,0.00665283,0.00576782,0.00537109,0.00558472,0.00537109,0.00430298,0.00369263,0.00167847,-0.000274658,-0.00314331,-0.00558472,-0.00827026,-0.0101318,-0.0115356,-0.0119324,-0.0132751,-0.0131531,-0.0144958,-0.0149536,-0.0162354,-0.0183105,-0.0205383,-0.0218201,-0.0246887,-0.0259094,-0.0273743,-0.028717,-0.0292053,-0.0293274,-0.0290527,-0.0284424,-0.0278625,-0.028717,-0.0292664,-0.0294495,-0.0310059,-0.0317993,-0.0332947,-0.0344849,-0.0350342,-0.0357056,-0.0351562,-0.0346985,-0.0336914,-0.0324097,-0.0318909,-0.0306091,-0.0293274,-0.0281982,-0.0264282,-0.0256958,-0.0253601,-0.0253601,-0.0250854,-0.0256958,-0.0268555,-0.027771,-0.0282593,-0.0288696,-0.0284424,-0.0273132,-0.0249634,-0.0224304,-0.0191956,-0.0167236,-0.0141602,-0.0131531,-0.0138855,-0.0137634,-0.01651,-0.0177917,-0.0192566,-0.0198059,-0.0184631,-0.016571,-0.012146,-0.00973511,-0.00643921,-0.00482178,-0.00296021,-0.00335693,-0.00280762,-0.00448608,-0.00482178,-0.00570679,-0.00549316,-0.00323486,-0.00088501,0.00222778,0.00424194,0.00692749,0.00778198,0.00872803,0.00872803,0.00839233,0.00845337,0.00799561,0.0088501,0.00857544,0.0103455,0.0112,0.0122681,0.0132751,0.0137634,0.0140381,0.0140381,0.0140381,0.0141602,0.0138855,0.0138855,0.0142822,0.0151672,0.0162354,0.0170593,0.0179749,0.0188599,0.0193176,0.0193176,0.0195312,0.0200806,0.0198669,0.0201416,0.0205383,0.0204163,0.021759,0.0222168,0.0224915,0.0228882,0.0228271,0.0222168,0.0222168,0.0218811,0.0214844,0.0212097,0.020752,0.0201416,0.020752,0.0206604,0.0212708,0.0221558,0.0224304,0.0227661,0.0224915,0.0222168,0.0218811,0.0212097,0.0214844,0.0212708,0.0215454,0.0222778,0.0230103,0.0223389,0.0228882,0.0211487,0.0198669,0.0175171,0.0154419,0.0124207,0.0105896,0.00866699,0.00759888,0.00738525,0.00704956,0.00845337,0.0085144,0.00900269,0.00878906,0.00878906,0.00637817,0.00482178,0.00189209,-0.00106812,-0.00369263,-0.00665283,-0.00912476,-0.0104675,-0.011261,-0.0111389,-0.0110168,-0.0114136,-0.0102539,-0.0114746,-0.0113525,-0.013031,-0.0134888,-0.0159607,-0.0172424,-0.0180664,-0.0198059,-0.0206604,-0.0220032,-0.0228882,-0.0249634,-0.0257568,-0.0272522,-0.0274353,-0.0288696,-0.0274353,-0.0283203,-0.0269775,-0.0267029,-0.0265198,-0.0260925,-0.0265198,-0.0268555,-0.0279236,-0.0282593,-0.0299988,-0.0305481,-0.0312805,-0.0316162,-0.0324707,-0.0324097,-0.0327454,-0.0318909,-0.0314636,-0.0302734,-0.0297241,-0.0292053,-0.0291138,-0.028656,-0.028717,-0.028656,-0.0284424,-0.027771,-0.0272522,-0.0264282,-0.0256348,-0.0245056,-0.0223389,-0.0212708,-0.0193176,-0.0181274,-0.0167847,-0.0171204,-0.0159607,-0.0172424,-0.017395,-0.016571,-0.0162354,-0.0142212,-0.0122681,-0.0102539,-0.00784302,-0.00610352,-0.00308228,-0.00201416,0.00012207,0.000610352,0.00140381,0.00180054,0.00234985,0.00424194,0.0050354,0.00778198,0.00933838,0.0114136,0.0128174,0.0141602,0.0146179,0.0160522,0.0162964,0.0171204,0.0187378,0.0196533,0.0214233,0.0233459,0.0247803,0.0260315,0.0263062,0.0274353,0.0271912,0.0267639,0.0270996,0.0262451,0.0257568,0.0267029,0.0267029,0.0283813,0.0292053,0.0306702,0.0305481,0.0312195,0.0308838,0.0316162,0.032074,0.0324707,0.0326233,0.0328979,0.0327454,0.0332947,0.0324707,0.0323486,0.0306091,0.0285339,0.0265198,0.0249023,0.024353,0.0244446,0.0245056,0.0250854,0.0261841,0.0267639,0.0268555,0.0259094,0.0246887,0.0222778,0.0194702,0.0167236,0.0133667,0.0118713,0.00985718,0.00827026,0.00726318,0.00631714,0.00509644,0.00448608,0.0038147,0.00222778,0.000457764,-0.00146484,-0.00335693,-0.00491333,-0.00671387,-0.00717163,-0.00839233,-0.00952148,-0.0107422,-0.0124207,-0.0133667,-0.0151062,-0.016449,-0.0171814,-0.0187988,-0.0190735,-0.0205994,-0.0210876,-0.0216675,-0.0222168,-0.0229492,-0.0235596,-0.0255737,-0.0267029,-0.0279846,-0.0285339,-0.0285339,-0.0279846,-0.0270996,-0.0267639,-0.0256958,-0.0256958,-0.0267639,-0.0270996,-0.0281982,-0.0292664,-0.0298767,-0.0296631,-0.0297852,-0.0275269,-0.0263062,-0.024353,-0.0224915,-0.020874,-0.0201416,-0.0196533,-0.0196533,-0.020874,-0.0214844,-0.0224304,-0.0221558,-0.0226746,-0.020874,-0.020813,-0.0190735,-0.0187378,-0.0174561,-0.0171204,-0.0157776,-0.0144348,-0.0133667,-0.0128174,-0.0112,-0.0101929,-0.00857544,-0.00744629,-0.00604248,-0.00549316,-0.00549316,-0.00576782,-0.00671387,-0.00704956,-0.00692749,-0.00738525,-0.00616455,-0.00537109,-0.00408936,-0.00195312,-0.00161743,-0.000213623,0.000610352,0.00201416,0.00213623,0.00390625,0.00335693,0.00363159,0.00369263,0.0038147,0.00408936,0.0050354,0.00509644,0.00604248,0.00671387,0.00650024,0.00765991,0.00784302,0.00857544,0.0083313,0.00793457,0.00692749,0.00692749,0.00616455,0.0071106,0.00759888,0.00933838,0.00991821,0.0122681,0.0124817,0.0136108,0.0140991,0.0133667,0.0129395,0.0126038,0.0115356,0.0118103,0.0115356,0.0128174,0.0128784,0.0138855,0.0144958,0.0151672,0.0158997,0.0152283,0.0154419,0.0151062,0.0151062,0.0153809,0.0162354,0.0172424,0.0182495,0.0194092,0.0191956,0.0189209,0.0185242,0.0174561,0.0162354,0.015564,0.0145569,0.0142822,0.0141602,0.0154419,0.0161743,0.0177917,0.0184631,0.0190735,0.0195923,0.0185852,0.017395,0.0157776,0.0134277,0.0118713,0.0101318,0.00866699,0.00793457,0.00726318,0.00750732,0.00759888,0.00778198,0.00759888,0.00778198,0.00704956,0.00616455,0.00509644,0.00457764,0.00369263,0.00357056,0.00369263,0.00357056,0.00363159,0.00289917,0.00106812,-0.000549316,-0.00296021,-0.00442505,-0.00698853,-0.00784302,-0.0100098,-0.0106812,-0.0108032,-0.0115967,-0.0111389,-0.0123596,-0.012085,-0.0129395,-0.0140381,-0.0145569,-0.0152283,-0.0159607,-0.0162964,-0.0170593,-0.0170593,-0.0173035,-0.0179749,-0.0176392,-0.0192566,-0.0195312,-0.0209961,-0.0212097,-0.0224304,-0.0224304,-0.0228882,-0.0238342,-0.0238342,-0.0249023,-0.0241089,-0.024292,-0.0236816,-0.0234375,-0.0228271,-0.0231018,-0.0231018,-0.0224915,-0.0229492,-0.0219421,-0.0224915,-0.0216064,-0.0216675,-0.0213318,-0.0204773,-0.0196533,-0.0191956,-0.0191956,-0.0187988,-0.0188599,-0.0189209,-0.0189819,-0.0195923,-0.0188599,-0.0188599,-0.0184021,-0.016449,-0.0149536,-0.0136108,-0.0122681,-0.0105896,-0.00973511,-0.00811768,-0.00732422,-0.0065918,-0.00531006,-0.00476074,-0.00424194,-0.00201416,-0.0020752,-0.000213623,0.000274658,0.000274658,-6.10352e-05,-0.000610352,-0.00112915,-0.0012207,-0.00112915,0.000213623,0.00112915,0.00314331,0.00549316,0.00726318,0.00906372,0.0114746,0.012085,0.013031,0.0129395,0.0133667,0.0128174,0.0134277,0.0132751,0.0139465,0.0152283,0.0161743,0.0171204,0.0184021,0.0186462,0.0194702,0.0197449,0.0195312,0.0192566,0.0189209,0.0180664,0.0179749,0.017395,0.0184021,0.0188599,0.019989,0.0202026,0.020752,0.0216675,0.020813,0.0213318,0.0201416,0.0197449,0.0191956,0.0191956,0.0194092,0.0195312,0.0203247,0.0194092,0.0204773,0.0192566,0.0189209,0.017395,0.0166321,0.0149536,0.0149536,0.0134277,0.0146179,0.0147095,0.0143738,0.0151062,0.0142212,0.0144958,0.0148926,0.0170593,0.0216064,0.0241699,0.0205383,0.0117493,0.000549316,-0.00732422,-0.0108032,-0.0102539,-0.00924683,-0.00698853,-0.00222778,0.0050354,0.0105286,0.0104675,0.00497437,-0.00256348,-0.0104065,-0.0134277,-0.0160522,-0.0161133,-0.0153809,-0.0119324,-0.00683594,-0.00369263,-0.0012207,-0.00314331,-0.00592041,-0.00918579,-0.0118713,-0.0144348,-0.0157166,-0.0167236,-0.0158386,-0.0147095,-0.0129395,-0.0118713,-0.0114746,-0.012146,-0.0122681,-0.0133667,-0.0147705,-0.0167236,-0.0173035,-0.0184021,-0.0179749,-0.0162964,-0.0153809,-0.0140381,-0.0133667,-0.0143738,-0.0168457,-0.0191956,-0.0218811,-0.0250244,-0.0267639,-0.0275269,-0.0260315,-0.0244446,-0.020874,-0.0181885,-0.0173035,-0.016449,-0.0173035,-0.0186462,-0.019928,-0.0215454,-0.0227661,-0.0241699,-0.0240173,-0.0226746,-0.019989,-0.0177307,-0.0158997,-0.0142822,-0.0126953,-0.0117493,-0.012207,-0.0132751,-0.0152893,-0.0149536,-0.0142212,-0.0114136,-0.0085144,-0.00564575,-0.00402832,-0.00369263,-0.00402832,-0.00476074,-0.00631714,-0.00784302,-0.0088501,-0.00939941,-0.00744629,-0.0050354,-0.00375366,-0.003479,-0.00268555,-0.00280762,-0.0020752,-0.00268555,-0.0032959,-0.00161743,0.000457764,0.00408936,0.0083313,0.0118713,0.0152283,0.0153809,0.0155029,0.0137024,0.0140381,0.0174561,0.0203247,0.0260925,0.032135,0.0334778,0.0344238,0.0334167,0.0310059,0.0265198,0.0155029,0.00704956,0.00341797,0.0136108,0.0297852,0.0366516,0.0309448,0.0246887,0.0306702,0.0381775,0.0340271,0.0143738,-0.00845337,-0.0139465,0.0118713,0.0393982,0.0440979,0.0289307,0.0143738,0.0139465,0.0236206,0.0205994,-0.00268555,-0.0257568,-0.0237732,0.00396729,0.0214844,0.0290527,0.0320129,0.0238953,0.0244446,0.0336914,0.0322266,0.025238,0.0180664,0.0071106,-0.00134277,-0.000213623,0.0126038,0.0239563,0.0144958,-0.00308228,-0.00582886,0.00408936,0.00973511,-0.00268555,-0.0237732,-0.0353699,-0.0261841,-0.0137634,-0.015625,-0.0255127,-0.0285339,-0.0162354,-0.00247192,-0.00616455,-0.0260925,-0.0420837,-0.0418701,-0.0285339,-0.0240173,-0.0353699,-0.0463867,-0.0431519,-0.0310669,-0.0274353,-0.037323,-0.048645,-0.0533447,-0.0491943,-0.0446167,-0.049469,-0.0484619,-0.040741,-0.0307312,-0.0234375,-0.0232849,-0.024231,-0.0198669,-0.0167236,-0.0184021,-0.0219421,-0.0279236,-0.0281982,-0.0261841,-0.0218201,-0.0213318,-0.0205994,-0.01651,-0.0107422,-0.00817871,-0.00906372,-0.0118713,-0.0162964,-0.0205994,-0.024353,-0.0259705,-0.0237732,-0.0172424,-0.013092,-0.0113525,-0.0125427,-0.0100708,-0.00469971,-0.00100708,-0.000610352,0.00296021,0.00772095,0.0132751,0.0172424,0.0214844,0.0278625,0.0333557,0.0381775,0.0394592,0.0368347,0.0315552,0.0310669,0.0336304,0.0336304,0.0330811,0.0328064,0.0359802,0.0411377,0.0444336,0.0443726,0.0428772,0.0394592,0.0368347,0.0342407,0.0332336,0.0333557,0.0357666,0.041626,0.0458374,0.0485229,0.0481262,0.0481873,0.0458374,0.0424805,0.038269,0.0334778,0.0307312,0.0306702,0.0306702,0.0317993,0.036499,0.0393372,0.0369263,0.0255737,0.0148926,0.0104675,0.0112,0.0101929,0.00491333,-0.00128174,-0.00296021,-0.00088501,0.000732422,0.00140381,0.000335693,-0.00296021,-0.00576782,-0.00582886,-0.00778198,-0.0142212,-0.0210876,-0.020752,-0.0169678,-0.0168457,-0.0201416,-0.0241089,-0.0258484,-0.0245056,-0.0231628,-0.0316772,-0.0447083,-0.0519409,-0.0472412,-0.0420227,-0.0432129,-0.0528259,-0.0606079,-0.061615,-0.052002,-0.0415344,-0.0401306,-0.0503235,-0.0589294,-0.0613403,-0.0593872,-0.0587769,-0.0632324,-0.0671082,-0.065979,-0.065033,-0.0692749,-0.0823364,-0.0953674,-0.10672,-0.112946,-0.11142,-0.102417,-0.0845032,-0.0601196,-0.0357056,-0.0131531,0.0065918,0.0147705,0.0137024,0.00946045,-0.00146484,-0.0147095,-0.0267029,-0.0316772,-0.0300598,-0.0174561,0.00247192,0.0232849,0.0347595,0.0400085,0.039856,0.0327454,0.0247803,0.0160522,0.00558472,-0.00213623,0.000213623,0.0125427,0.0276489,0.0390625,0.045105,0.0493164,0.0523376,0.057251,0.0591125,0.0599365,0.0611267,0.0664368,0.0769043,0.0909424,0.103149,0.111938,0.114441,0.107178,0.0940247,0.0817566,0.0724792,0.0704041,0.0740356,0.0799255,0.0844421,0.085968,0.0880432,0.0896606,0.0853577,0.0749817,0.0588684,0.0462952,0.0396729,0.0380554,0.0400696,0.0418091,0.0459595,0.0475159,0.0492554,0.0512085,0.0512085,0.0492554,0.0430298,0.0332947,0.0237732,0.017395,0.0123596,0.00704956,0.000335693,-0.00817871,-0.016571,-0.0239563,-0.0288696,-0.0332336,-0.0350952,-0.0341492,-0.0342407,-0.0375061,-0.0400696,-0.0447693,-0.0480652,-0.0514832,-0.058136,-0.0654297,-0.0722961,-0.0747681,-0.0744324,-0.0704651,-0.069519,-0.0701904,-0.0741577,-0.0775146,-0.082489,-0.086792,-0.0944824,-0.10376,-0.114166,-0.122559,-0.128723,-0.129517,-0.128662,-0.128113,-0.129791,-0.130127,-0.126648,-0.119873,-0.114349,-0.113281,-0.117126,-0.123962,-0.132202,-0.13974,-0.140137,-0.131744,-0.11322,-0.0820923,-0.0466309,-0.0119324,0.0178528,0.041748,0.0574646,0.0637512,0.0579224,0.0423584,0.0189819,0.00296021,-0.000396729,0.0083313,0.0233459,0.0421448,0.0602112,0.0757141,0.0852966,0.0860291,0.0783081,0.0663757,0.0536194,0.0452271,0.0455017,0.0591125,0.0809326,0.10437,0.119995,0.130951,0.138458,0.14502,0.146912,0.147247,0.148193,0.150665,0.157318,0.165771,0.172699,0.173492,0.164764,0.144104,0.114563,0.0840149,0.0575867,0.0420837,0.0355835,0.0377808,0.0413513,0.0454407,0.0471191,0.0469055,0.0425415,0.0340271,0.0195312,0.00515747,-0.00274658,-0.00424194,0.000946045,0.0108032,0.0190735,0.0241089,0.0255737,0.0224915,0.0209961,0.0194092,0.0154419,0.00665283,-0.00598145,-0.0175781,-0.0282593,-0.0345764,-0.040802,-0.0532227,-0.0645752,-0.0744324,-0.0774536,-0.0787354,-0.0735474,-0.068512,-0.0675049,-0.0698547,-0.0729675,-0.0784607,-0.0842285,-0.0912781,-0.0990601,-0.108917,-0.120148,-0.129517,-0.137115,-0.144775,-0.154419,-0.164764,-0.17215,-0.174225,-0.169586,-0.161194,-0.153229,-0.147858,-0.143219,-0.14444,-0.148926,-0.158386,-0.170929,-0.182831,-0.184418,-0.167725,-0.129456,-0.0767212,-0.0174561,0.0359192,0.0767212,0.105042,0.116791,0.115509,0.0991211,0.0717468,0.0405273,0.0174561,0.013092,0.0276489,0.0576477,0.085907,0.106995,0.119812,0.123291,0.117371,0.100006,0.0752869,0.0521545,0.0384521,0.0406189,0.0575867,0.0875854,0.12088,0.148193,0.162628,0.168854,0.172882,0.179321,0.185852,0.187775,0.184906,0.18222,0.184082,0.185303,0.179535,0.159119,0.122894,0.0762939,0.0344238,0.00375366,-0.012207,-0.0149536,-0.0106812,-0.0032959,0.00088501,0.0050354,0.00616455,0.00558472,-0.00128174,-0.0174561,-0.0343628,-0.0440369,-0.0381775,-0.0231628,-0.00805664,0.00302124,0.0101929,0.0151062,0.0189819,0.0182495,0.012085,0.000396729,-0.0150452,-0.0343018,-0.0520935,-0.065979,-0.0743713,-0.0797424,-0.086853,-0.0967102,-0.104309,-0.106506,-0.102692,-0.0969849,-0.0939636,-0.0953674,-0.0991211,-0.103546,-0.105438,-0.109406,-0.119598,-0.133636,-0.15033,-0.165833,-0.17804,-0.184906,-0.186249,-0.180054,-0.168335,-0.156769,-0.144836,-0.133026,-0.124573,-0.124023,-0.136047,-0.152954,-0.168457,-0.165771,-0.141602,-0.0997314,-0.0473022,0.00671387,0.0552979,0.0993347,0.132202,0.149261,0.147247,0.123749,0.0885315,0.0593872,0.049469,0.0611267,0.0889282,0.124237,0.152832,0.169464,0.17276,0.162872,0.14328,0.114227,0.0803223,0.0506592,0.0365906,0.0454407,0.0722961,0.108734,0.139587,0.155243,0.1586,0.155762,0.15451,0.151825,0.15094,0.147705,0.148468,0.156647,0.173218,0.188049,0.188721,0.165558,0.121613,0.0708008,0.0279236,-0.00128174,-0.0184631,-0.0287781,-0.0351562,-0.0376587,-0.0312805,-0.0234985,-0.0178528,-0.0193176,-0.0303955,-0.0467224,-0.0598755,-0.0638123,-0.0565796,-0.0406189,-0.0241699,-0.0126038,-0.0067749,-0.000946045,0.00509644,0.0088501,0.00482178,-0.0105896,-0.0327454,-0.0518799,-0.0638123,-0.0699463,-0.0752258,-0.0832825,-0.092804,-0.101746,-0.106781,-0.109192,-0.110748,-0.114349,-0.12262,-0.131012,-0.138794,-0.143005,-0.144165,-0.145111,-0.148651,-0.156433,-0.168579,-0.17926,-0.186768,-0.18576,-0.181213,-0.172485,-0.161804,-0.148468,-0.132874,-0.117523,-0.106781,-0.107178,-0.116364,-0.123077,-0.117249,-0.0908813,-0.0512695,-0.00924683,0.028717,0.0626831,0.098053,0.124512,0.135498,0.125977,0.0978394,0.0675964,0.0474548,0.0461731,0.0639648,0.0971069,0.136719,0.1698,0.191345,0.194214,0.184509,0.162628,0.131195,0.0973816,0.0658264,0.0514832,0.0603943,0.0922852,0.13147,0.161407,0.176636,0.177917,0.175293,0.167664,0.15564,0.139191,0.124023,0.117706,0.122681,0.134827,0.143219,0.137573,0.111816,0.0733032,0.0346375,0.00140381,-0.0228882,-0.0377197,-0.0458374,-0.0468445,-0.0424194,-0.03302,-0.0249634,-0.0191345,-0.0195923,-0.0299988,-0.0449524,-0.0582581,-0.0618896,-0.0536804,-0.0371704,-0.0195923,-0.00778198,0.00213623,0.00939941,0.0163879,0.0159607,0.00570679,-0.0176392,-0.0421448,-0.0605469,-0.0727539,-0.078186,-0.0823364,-0.0846252,-0.085907,-0.0849609,-0.0851135,-0.0863037,-0.0908203,-0.0977783,-0.108734,-0.119202,-0.131134,-0.140259,-0.14563,-0.148132,-0.152618,-0.160187,-0.170746,-0.177704,-0.181335,-0.176575,-0.168793,-0.157776,-0.146118,-0.137573,-0.129517,-0.126038,-0.124512,-0.118805,-0.105774,-0.0802002,-0.0492554,-0.0136108,0.0239563,0.0633545,0.0996704,0.124298,0.130402,0.121002,0.0961609,0.0704041,0.0499268,0.0418701,0.0502014,0.0697937,0.0976562,0.129669,0.157379,0.177124,0.177185,0.156708,0.124573,0.0917969,0.0690613,0.0576477,0.0610657,0.0791321,0.109406,0.143219,0.172363,0.191742,0.198517,0.194489,0.177643,0.152405,0.12793,0.112091,0.108978,0.112,0.112762,0.104431,0.0854492,0.0600586,0.0357056,0.0109253,-0.0160522,-0.0421448,-0.0592651,-0.0675964,-0.0654297,-0.0598755,-0.0545654,-0.0497437,-0.045166,-0.0426025,-0.0449524,-0.0432739,-0.0406189,-0.0361633,-0.0282593,-0.020752,-0.00924683,0.000457764,0.0102539,0.0138855,0.0128174,0.00396729,-0.0100708,-0.028717,-0.0462952,-0.061554,-0.0742188,-0.0864563,-0.094696,-0.0967712,-0.0960999,-0.09375,-0.0933533,-0.094696,-0.100342,-0.107239,-0.11496,-0.125763,-0.139008,-0.150879,-0.159515,-0.163544,-0.164215,-0.165497,-0.167053,-0.16684,-0.159851,-0.147186,-0.135559,-0.128723,-0.129272,-0.133972,-0.141602,-0.143951,-0.131958,-0.103363,-0.0637512,-0.0205994,0.0182495,0.0579224,0.0951538,0.128937,0.145844,0.139679,0.111816,0.0748291,0.0468445,0.0381775,0.0443726,0.0626831,0.0877991,0.122742,0.160614,0.187195,0.194031,0.175568,0.143341,0.103149,0.0678406,0.0450439,0.0438232,0.0593262,0.0894775,0.125641,0.163361,0.19577,0.214172,0.215515,0.198914,0.169678,0.135559,0.110413,0.105896,0.115295,0.126984,0.125366,0.111145,0.0865173,0.0575256,0.0249634,-0.00827026,-0.0411377,-0.0678406,-0.0820923,-0.0802002,-0.0641479,-0.0469666,-0.0379333,-0.038269,-0.0405273,-0.0432739,-0.0479126,-0.0522156,-0.0493164,-0.0397949,-0.0214844,-0.0012207,0.0202637,0.0387268,0.0477905,0.0453796,0.028595,0.00262451,-0.0245056,-0.048645,-0.0637512,-0.0739746,-0.0830994,-0.0912781,-0.0944214,-0.09021,-0.0876465,-0.0934753,-0.106567,-0.120941,-0.130737,-0.138245,-0.145172,-0.154572,-0.164093,-0.171021,-0.173218,-0.174957,-0.176849,-0.179321,-0.179718,-0.171417,-0.155365,-0.141144,-0.129608,-0.122223,-0.116577,-0.117981,-0.122498,-0.11618,-0.0924072,-0.0528259,-0.00952148,0.0293884,0.0620728,0.0890503,0.108978,0.123566,0.124573,0.102814,0.0634766,0.0293884,0.0235596,0.0418091,0.0688477,0.0875854,0.109741,0.141998,0.171814,0.177582,0.154175,0.121002,0.089386,0.0663147,0.052002,0.0536804,0.0712891,0.094696,0.120667,0.14563,0.166901,0.177521,0.174438,0.161743,0.143951,0.121948,0.0993958,0.0907288,0.101013,0.116364,0.115692,0.0964355,0.0680542,0.040741,0.0155029,-0.00991821,-0.0340881,-0.0534363,-0.069458,-0.0710754,-0.0551758,-0.0355835,-0.0275269,-0.0336304,-0.0397949,-0.0387878,-0.033905,-0.0350952,-0.0419312,-0.039856,-0.0245667,-0.00228882,0.0183105,0.0354309,0.0477295,0.0516052,0.0420837,0.0224304,-0.00234985,-0.0252991,-0.0425415,-0.0561218,-0.0691223,-0.0818176,-0.0863037,-0.0804138,-0.0707397,-0.0699463,-0.0822754,-0.100677,-0.117584,-0.129517,-0.142426,-0.154633,-0.166321,-0.172272,-0.172485,-0.170013,-0.167175,-0.164215,-0.160004,-0.149658,-0.137329,-0.12616,-0.120605,-0.116119,-0.112091,-0.10733,-0.0935669,-0.069519,-0.0320129,0.00967407,0.0479126,0.0791321,0.102692,0.121002,0.132538,0.133148,0.117188,0.0829468,0.0469666,0.0270386,0.0328979,0.0551758,0.0792542,0.102631,0.126373,0.149261,0.159119,0.145508,0.118042,0.0840149,0.0555115,0.0413513,0.0439453,0.0622253,0.0842896,0.108856,0.133026,0.152344,0.161743,0.153839,0.135162,0.110657,0.0887146,0.0691223,0.0631409,0.0717468,0.0880432,0.093689,0.080658,0.0533447,0.019928,-0.0105286,-0.0376587,-0.0630188,-0.0863037,-0.101807,-0.101471,-0.0826721,-0.0568542,-0.0428772,-0.0397949,-0.0425415,-0.0400085,-0.0361023,-0.0371704,-0.0420837,-0.0437622,-0.0367126,-0.0218811,-0.00274658,0.0171814,0.032074,0.0381165,0.0357666,0.0241089,0.00491333,-0.0161743,-0.0350952,-0.0508728,-0.0654907,-0.0811462,-0.0909424,-0.0909424,-0.0842285,-0.0795898,-0.0845032,-0.0969849,-0.110657,-0.123505,-0.135101,-0.146973,-0.158447,-0.167328,-0.171021,-0.168396,-0.162476,-0.157318,-0.152008,-0.143341,-0.131531,-0.121063,-0.112671,-0.107727,-0.103546,-0.0908813,-0.0655823,-0.0246887,0.0244446,0.0713501,0.105438,0.129333,0.146454,0.157104,0.157196,0.143158,0.111816,0.0751648,0.0471802,0.0400696,0.0546875,0.0818787,0.10907,0.134705,0.158508,0.173889,0.169678,0.146118,0.108795,0.0722961,0.0444336,0.037262,0.0544434,0.0839539,0.114105,0.138336,0.155579,0.166504,0.168579,0.158051,0.131958,0.0993958,0.0686646,0.0487366,0.0483093,0.0643005,0.0785217,0.0738831,0.0502014,0.0171814,-0.0128174,-0.0369263,-0.0597839,-0.0843506,-0.105225,-0.11142,-0.1008,-0.0744934,-0.0498657,-0.0394592,-0.0397949,-0.0414734,-0.0423584,-0.0404663,-0.040863,-0.0426941,-0.0440369,-0.0386047,-0.0189209,0.0105286,0.0328064,0.0383911,0.0303345,0.0133667,-0.00717163,-0.0259094,-0.0426025,-0.0534363,-0.0617371,-0.0748901,-0.0921326,-0.101074,-0.0976562,-0.0918884,-0.0928955,-0.108124,-0.128998,-0.147644,-0.157532,-0.165894,-0.172882,-0.185364,-0.195099,-0.200409,-0.193085,-0.179871,-0.166443,-0.154968,-0.143951,-0.132019,-0.127106,-0.127655,-0.12088,-0.0908813,-0.0375977,0.0218201,0.0720825,0.112946,0.150269,0.18631,0.207733,0.202362,0.168121,0.118805,0.074707,0.0488586,0.0378418,0.0365906,0.0487366,0.0798645,0.123566,0.163147,0.184357,0.180725,0.156433,0.118927,0.0776367,0.0434265,0.02771,0.0357056,0.0597229,0.0924072,0.126709,0.15799,0.181,0.19342,0.191132,0.165314,0.122894,0.078125,0.0541687,0.0531616,0.0653687,0.0709534,0.0627441,0.0444336,0.0234375,0.000335693,-0.0256348,-0.058136,-0.0914917,-0.118469,-0.12677,-0.113007,-0.0889282,-0.0643616,-0.0447693,-0.0287781,-0.0195923,-0.0157776,-0.0151062,-0.0148315,-0.01651,-0.020874,-0.0232239,-0.0174561,0.00140381,0.0258484,0.0397949,0.0386658,0.024353,0.00524902,-0.0146179,-0.0330811,-0.0532837,-0.0767822,-0.0996704,-0.111664,-0.112885,-0.108002,-0.106842,-0.110321,-0.119812,-0.134644,-0.148804,-0.161743,-0.170746,-0.175446,-0.181335,-0.186768,-0.18692,-0.180481,-0.167175,-0.15451,-0.145172,-0.139343,-0.13382,-0.127991,-0.119476,-0.105225,-0.0805969,-0.0430908,0.00726318,0.0629578,0.11377,0.150543,0.176025,0.19162,0.196899,0.183685,0.147919,0.101471,0.0652466,0.0484009,0.0508118,0.0646362,0.08255,0.107666,0.138733,0.165039,0.173157,0.158661,0.128448,0.0928955,0.0642395,0.0487366,0.0464478,0.0549622,0.0771179,0.103149,0.128845,0.149139,0.162872,0.166992,0.158661,0.135376,0.103363,0.0745544,0.0620117,0.0654907,0.0697937,0.0630188,0.0404053,0.0110168,-0.0137024,-0.0325623,-0.0502014,-0.0750427,-0.103973,-0.12088,-0.117523,-0.0967102,-0.0725403,-0.0548401,-0.0440369,-0.0343628,-0.0235596,-0.0143738,-0.00839233,-0.00637817,-0.0071106,-0.0103455,-0.0106812,-0.00274658,0.0108643,0.0218811,0.0254211,0.0177917,0.0012207,-0.0171814,-0.0303955,-0.0426941,-0.0613403,-0.0855713,-0.110931,-0.124359,-0.125153,-0.121552,-0.125305,-0.138672,-0.156189,-0.169006,-0.177185,-0.18222,-0.187439,-0.197174,-0.206787,-0.204102,-0.190887,-0.170471,-0.149597,-0.135376,-0.131683,-0.134155,-0.135437,-0.128723,-0.108185,-0.0726929,-0.0260925,0.0237732,0.0744324,0.12442,0.173096,0.208466,0.221283,0.205841,0.170471,0.129272,0.093811,0.066925,0.0500793,0.0497437,0.0687866,0.0987854,0.131744,0.158203,0.166779,0.15625,0.130615,0.0977173,0.0683289,0.0500793,0.0462341,0.0505371,0.065918,0.091217,0.119598,0.146454,0.163879,0.168671,0.161682,0.141876,0.11972,0.101624,0.0941467,0.0913391,0.0900574,0.0813293,0.0636292,0.0396729,0.0105896,-0.020874,-0.0518188,-0.0788574,-0.101532,-0.112335,-0.109131,-0.0952454,-0.0758362,-0.056366,-0.0426025,-0.0316162,-0.0246887,-0.0194702,-0.0148315,-0.0138245,-0.0113525,-0.0032959,0.00778198,0.0269775,0.0446167,0.0536194,0.0517578,0.037262,0.0159607,-0.00772095,-0.0297852,-0.0508728,-0.070282,-0.0875244,-0.0977173,-0.105103,-0.107727,-0.111145,-0.120544,-0.138062,-0.160736,-0.182495,-0.19986,-0.211151,-0.218445,-0.220551,-0.21759,-0.20697,-0.189667,-0.172424,-0.158997,-0.150269,-0.145111,-0.144226,-0.144012,-0.135651,-0.111542,-0.0676575,-0.0100708,0.0511475,0.103302,0.145508,0.176361,0.194366,0.198669,0.185577,0.155365,0.117462,0.0872498,0.0708618,0.0673218,0.0750427,0.0889893,0.10556,0.123688,0.136322,0.134644,0.116638,0.0907288,0.0670471,0.0469666,0.032959,0.0308838,0.0415344,0.0641479,0.0908203,0.114105,0.127777,0.137848,0.145447,0.14798,0.141754,0.125244,0.108795,0.102875,0.108582,0.11142,0.0971069,0.0679932,0.0341492,0.00323486,-0.0264282,-0.0536194,-0.0814209,-0.103821,-0.113831,-0.108795,-0.0922852,-0.0735474,-0.0558472,-0.0415344,-0.0312805,-0.0222778,-0.0158997,-0.0107422,-0.00402832,0.00448608,0.0127563,0.0197449,0.0318909,0.0485229,0.0610657,0.0633545,0.0515442,0.0265198,-0.0017395,-0.0265808,-0.0465698,-0.0681152,-0.0892029,-0.104767,-0.113159,-0.11496,-0.11792,-0.130676,-0.152954,-0.177521,-0.194885,-0.20813,-0.217194,-0.221283,-0.221283,-0.212158,-0.193634,-0.171875,-0.153625,-0.140686,-0.131683,-0.123566,-0.121552,-0.121735,-0.117371,-0.0984497,-0.0513306,0.0172424,0.0847778,0.137848,0.171478,0.196381,0.206909,0.205566,0.184906,0.141022,0.0963135,0.0627441,0.0526733,0.0597229,0.078064,0.100342,0.121948,0.14093,0.143951,0.126099,0.0986023,0.0697937,0.044281,0.0231018,0.0112,0.0151672,0.0368347,0.0683289,0.0950928,0.109741,0.115448,0.11792,0.119873,0.120209,0.110992,0.094574,0.0832825,0.0869751,0.103149,0.116119,0.108795,0.081665,0.0427551,0.00363159,-0.0296021,-0.0593262,-0.0863037,-0.10733,-0.11377,-0.10611,-0.0852356,-0.0599365,-0.0353088,-0.0152893,-0.00839233,-0.00946045,-0.0148315,-0.0168457,-0.00793457,0.00289917,0.011261,0.0191956,0.0341492,0.0536194,0.0671082,0.0674438,0.0487366,0.0182495,-0.012085,-0.0370483,-0.0596008,-0.081604,-0.10321,-0.117798,-0.122559,-0.123962,-0.129181,-0.145782,-0.165985,-0.187439,-0.20639,-0.222961,-0.231262,-0.227997,-0.221802,-0.213074,-0.202026,-0.18222,-0.157532,-0.136993,-0.124359,-0.119476,-0.116516,-0.108398,-0.0875854,-0.0490723,0.00692749,0.065033,0.114441,0.153625,0.183746,0.206451,0.215027,0.204834,0.175629,0.136108,0.0972595,0.0711365,0.0640869,0.0714722,0.0871887,0.105988,0.124847,0.140411,0.141022,0.123169,0.0942993,0.0637512,0.0319519,0.00778198,-0.00357056,0.00189209,0.020813,0.0454407,0.070282,0.0933533,0.110413,0.122406,0.124969,0.117188,0.0987244,0.0807495,0.0710754,0.0761719,0.0876465,0.0888672,0.0764465,0.0539551,0.0266418,-0.000671387,-0.0245056,-0.0512085,-0.0786438,-0.0973206,-0.0983276,-0.0812073,-0.0583801,-0.0356445,-0.0135498,0.000274658,0.00463867,0.00213623,-0.00323486,-0.00537109,-0.00167847,0.00247192,0.00891113,0.021759,0.0409546,0.0614624,0.0734863,0.0687256,0.0468445,0.0161743,-0.0134277,-0.0396729,-0.068512,-0.0966492,-0.121552,-0.137451,-0.143158,-0.14444,-0.151276,-0.167236,-0.189728,-0.211212,-0.226044,-0.234711,-0.239655,-0.240875,-0.233154,-0.215851,-0.190552,-0.164978,-0.140259,-0.123169,-0.116241,-0.115784,-0.115356,-0.101196,-0.065094,-0.00726318,0.0575256,0.115356,0.15979,0.196655,0.227112,0.246246,0.240997,0.207458,0.15451,0.10376,0.0714111,0.0587769,0.0605469,0.0750427,0.0978394,0.127045,0.150543,0.15625,0.141998,0.114014,0.0797424,0.0432129,0.00738525,-0.0134888,-0.0161133,0.000457764,0.0244446,0.0479736,0.0679932,0.0852356,0.103363,0.114685,0.112274,0.0950317,0.0747681,0.0635681,0.0679932,0.0804749,0.0844421,0.0708618,0.0480652,0.0234375,0.00274658,-0.0182495,-0.0438843,-0.0711365,-0.091156,-0.0969849,-0.0884705,-0.0686035,-0.0420227,-0.0134277,0.00878906,0.0187988,0.0194092,0.0175781,0.017395,0.0189209,0.0168457,0.0138245,0.0174561,0.0343018,0.058197,0.0751648,0.0752869,0.0561829,0.0298767,0.00268555,-0.0259094,-0.0587769,-0.0948181,-0.12677,-0.14624,-0.153564,-0.154236,-0.161865,-0.175507,-0.192627,-0.210266,-0.226837,-0.238922,-0.24704,-0.247528,-0.236176,-0.216919,-0.194366,-0.16806,-0.141022,-0.115967,-0.101135,-0.0992737,-0.104706,-0.100739,-0.0709534,-0.0142822,0.0518799,0.107574,0.148468,0.184082,0.216919,0.23764,0.236237,0.204224,0.155853,0.108124,0.0733643,0.0559692,0.0560303,0.0743713,0.101532,0.129852,0.146973,0.149323,0.136322,0.117981,0.0922241,0.0583191,0.0204773,-0.00637817,-0.00811768,0.0115356,0.037262,0.0541077,0.0612793,0.0653076,0.0789795,0.0895996,0.0883789,0.0717468,0.049469,0.0405273,0.0492554,0.0673218,0.0743713,0.0635681,0.0421448,0.0191956,-0.000549316,-0.020813,-0.0423584,-0.0626831,-0.0763855,-0.081543,-0.0756226,-0.0575256,-0.0296021,0.0012207,0.017395,0.020813,0.0154419,0.0158386,0.0238342,0.0341492,0.0363159,0.0316772,0.0324707,0.0475769,0.0699463,0.0854492,0.079071,0.0545654,0.025177,-0.000396729,-0.0234375,-0.0508118,-0.0841675,-0.11496,-0.137054,-0.148376,-0.153412,-0.163971,-0.181732,-0.202087,-0.225372,-0.243561,-0.255096,-0.25946,-0.259338,-0.253632,-0.238647,-0.213409,-0.17804,-0.138794,-0.104645,-0.0889282,-0.0852966,-0.0826111,-0.0679932,-0.0377808,0.00799561,0.0587158,0.102692,0.142548,0.181213,0.216644,0.241272,0.244293,0.221008,0.176025,0.127502,0.0883179,0.0673828,0.0649719,0.073761,0.0888672,0.104767,0.121826,0.133484,0.128998,0.109192,0.0777893,0.0421448,0.0114746,-0.00598145,-0.00604248,0.00778198,0.0293274,0.053009,0.0712891,0.0873718,0.0993347,0.101013,0.089386,0.0676575,0.0448914,0.0327454,0.0344238,0.0461731,0.0522156,0.0461121,0.0307922,0.012207,-0.0032959,-0.0211487,-0.0427551,-0.0687866,-0.0914917,-0.100128,-0.090271,-0.0675964,-0.0391846,-0.0150452,0.00289917,0.0161133,0.0269775,0.0358276,0.040802,0.0424194,0.0400085,0.0391846,0.0445557,0.0590515,0.0764465,0.0877991,0.0844421,0.0671692,0.0432129,0.0195923,-0.00543213,-0.0387268,-0.0783081,-0.114777,-0.144165,-0.159332,-0.168854,-0.177795,-0.195709,-0.217529,-0.237793,-0.253632,-0.263947,-0.273285,-0.277863,-0.272278,-0.25415,-0.224365,-0.189941,-0.154846,-0.125641,-0.102814,-0.0855103,-0.0692749,-0.0449524,-0.0112,0.0351562,0.0861816,0.134033,0.17569,0.212402,0.242279,0.259857,0.251617,0.217255,0.16806,0.120148,0.0851746,0.0647583,0.0614014,0.0710144,0.0908813,0.114227,0.131866,0.13623,0.124084,0.0987244,0.065033,0.0292664,-0.00369263,-0.0228271,-0.0204773,-6.10352e-05,0.0289917,0.0575256,0.0802612,0.098938,0.111938,0.112,0.0968323,0.0715332,0.0461731,0.0296021,0.0288696,0.0339661,0.0369263,0.0316772,0.0209961,0.0100708,-0.00436401,-0.0229492,-0.0475769,-0.0714722,-0.0890503,-0.0924683,-0.0827637,-0.0628052,-0.0351562,-0.00772095,0.0124817,0.0269775,0.0347595,0.0390015,0.0429382,0.0449524,0.0437622,0.0447693,0.0542297,0.070343,0.0881348,0.09375,0.0875244,0.069397,0.0461121,0.0204773,-0.0109253,-0.0480652,-0.0856934,-0.119049,-0.142822,-0.156525,-0.167908,-0.182404,-0.201691,-0.225037,-0.246979,-0.267517,-0.286255,-0.299927,-0.304108,-0.29361,-0.268066,-0.233948,-0.195557,-0.15799,-0.127441,-0.105713,-0.0877075,-0.0666504,-0.0367737,0.00576782,0.0560303,0.109314,0.158508,0.201935,0.241272,0.272339,0.288666,0.276245,0.2388,0.187317,0.135986,0.0969238,0.0718689,0.0675049,0.0753784,0.0923462,0.110077,0.121613,0.120209,0.10202,0.0725403,0.0351562,-0.00228882,-0.0334778,-0.0506592,-0.0477905,-0.0271912,0.00335693,0.0357056,0.0666504,0.0935669,0.112549,0.116028,0.102142,0.0784607,0.0553589,0.0397949,0.0366516,0.0361023,0.0324707,0.0246277,0.0162354,0.00738525,-0.00448608,-0.0231018,-0.0457764,-0.0699463,-0.0887146,-0.0950317,-0.0890503,-0.0713501,-0.0477295,-0.0206604,0.00280762,0.0241089,0.0390015,0.0493164,0.0552368,0.0574646,0.058136,0.06073,0.0724182,0.0892639,0.105316,0.110321,0.103088,0.085968,0.0643616,0.036499,-0.000457764,-0.0438843,-0.0895386,-0.129517,-0.15918,-0.180145,-0.194305,-0.209473,-0.225769,-0.244415,-0.26355,-0.281891,-0.297577,-0.308594,-0.308319,-0.294617,-0.270477,-0.238739,-0.199249,-0.155701,-0.114014,-0.0841675,-0.0614624,-0.0418701,-0.0162964,0.0248413,0.0765076,0.130463,0.178528,0.219879,0.253906,0.280212,0.293365,0.280609,0.243896,0.18988,0.135712,0.0932312,0.0678406,0.0635681,0.0733643,0.0925598,0.111938,0.122345,0.119995,0.10437,0.0787964,0.0414124,-0.00213623,-0.0375061,-0.0569153,-0.0508728,-0.0269775,0.00491333,0.036438,0.0643005,0.0925598,0.110413,0.117126,0.103699,0.0754395,0.0480652,0.0282593,0.0239563,0.0226135,0.0194092,0.0126038,0.00280762,-0.00610352,-0.0190735,-0.0350342,-0.0544434,-0.073822,-0.0872498,-0.0913391,-0.0832214,-0.0655823,-0.039856,-0.0129395,0.00726318,0.0234375,0.0336304,0.0425415,0.048584,0.0525513,0.0542297,0.058197,0.0704651,0.0909424,0.108917,0.117706,0.11026,0.0939026,0.0692749,0.0380554,-0.000610352,-0.0474548,-0.0950317,-0.136322,-0.166656,-0.188324,-0.204895,-0.220276,-0.237396,-0.253967,-0.271667,-0.288391,-0.303101,-0.31543,-0.318604,-0.309326,-0.284821,-0.246704,-0.203827,-0.160614,-0.122009,-0.0917969,-0.0671692,-0.0396118,-0.00448608,0.0402832,0.091217,0.140198,0.187378,0.230682,0.272095,0.302277,0.315826,0.302765,0.263092,0.207123,0.149719,0.105499,0.0779114,0.0696106,0.0753784,0.0913391,0.111328,0.126373,0.127655,0.112213,0.0828857,0.0425415,-0.0017395,-0.0389404,-0.0603333,-0.0602112,-0.0413513,-0.00866699,0.028595,0.0638123,0.0953064,0.114105,0.118317,0.103363,0.0763855,0.0481262,0.0280457,0.0215454,0.0189819,0.0162964,0.00857544,0.000274658,-0.00671387,-0.0157776,-0.0292664,-0.0477295,-0.0686646,-0.0835571,-0.0892639,-0.0830078,-0.0654297,-0.0409546,-0.0168457,0.00564575,0.0233459,0.036499,0.045166,0.050415,0.0523376,0.0552979,0.0602722,0.0716248,0.0885315,0.104034,0.110474,0.105164,0.0888672,0.0646362,0.0344849,-0.00335693,-0.0487366,-0.0959778,-0.139587,-0.171936,-0.194702,-0.211395,-0.226227,-0.24173,-0.257843,-0.272614,-0.287781,-0.302887,-0.314636,-0.319855,-0.31012,-0.285919,-0.250549,-0.211548,-0.173279,-0.14035,-0.112152,-0.0855103,-0.0556946,-0.0162354,0.0311279,0.0826721,0.135101,0.185303,0.235046,0.281891,0.318329,0.334564,0.321136,0.278656,0.220276,0.162872,0.11792,0.086792,0.0712891,0.0717468,0.0872498,0.111206,0.129608,0.135437,0.123749,0.0979309,0.0593262,0.0147095,-0.0273132,-0.0541077,-0.0620728,-0.049469,-0.0200806,0.0144958,0.0517578,0.0863037,0.112274,0.122559,0.113678,0.0890503,0.0602722,0.0385132,0.0246277,0.0163879,0.00827026,0.000671387,-0.00296021,-0.00772095,-0.0175781,-0.0332947,-0.0512085,-0.0686646,-0.0791321,-0.081665,-0.0752258,-0.0599365,-0.0354309,-0.00817871,0.0172424,0.0362549,0.0479126,0.052948,0.053833,0.0516663,0.0498657,0.0505981,0.058197,0.0714722,0.0856934,0.0940247,0.0942383,0.0855713,0.0706177,0.0455017,0.00759888,-0.0393372,-0.0889282,-0.134552,-0.170746,-0.199463,-0.221283,-0.23819,-0.252747,-0.267059,-0.279785,-0.292938,-0.307465,-0.318451,-0.323151,-0.314911,-0.291077,-0.260132,-0.225159,-0.191406,-0.159058,-0.129456,-0.0970459,-0.0636292,-0.0267029,0.0147095,0.0636292,0.11496,0.169464,0.222961,0.274567,0.318268,0.341614,0.337708,0.303345,0.250061,0.195099,0.147644,0.112762,0.0926208,0.0895386,0.0996094,0.121002,0.139862,0.145905,0.133087,0.103699,0.0646973,0.0183105,-0.0276489,-0.0632935,-0.0785217,-0.0708008,-0.0431519,-0.00726318,0.0311279,0.0675049,0.0943604,0.107727,0.102478,0.082489,0.0579834,0.0371704,0.0258484,0.0225525,0.0212708,0.0193176,0.0191956,0.0183105,0.0103455,-0.0050354,-0.0292664,-0.0517578,-0.0676575,-0.0733032,-0.0687256,-0.0551758,-0.0306702,-0.0038147,0.0226135,0.0404053,0.050415,0.0531006,0.0517578,0.0468445,0.0420837,0.040802,0.046051,0.0563049,0.0696106,0.0796509,0.0821533,0.0757751,0.0614014,0.0379944,0.00289917,-0.0384521,-0.0849609,-0.126709,-0.161133,-0.187592,-0.208649,-0.227325,-0.244629,-0.260193,-0.276245,-0.292084,-0.305634,-0.315918,-0.317841,-0.309204,-0.289856,-0.261871,-0.228241,-0.192749,-0.158997,-0.12851,-0.103302,-0.0793152,-0.0502014,-0.0124817,0.0340271,0.0852356,0.13739,0.189453,0.242065,0.288269,0.320953,0.328522,0.308868,0.270599,0.222626,0.176971,0.138123,0.112427,0.101135,0.106232,0.122009,0.138519,0.145782,0.141541,0.121552,0.0904846,0.0478516,0.00335693,-0.0361633,-0.0599976,-0.0652466,-0.052887,-0.0279846,0.00296021,0.0383301,0.0701904,0.0895386,0.0927429,0.0779724,0.0560303,0.0359192,0.0236816,0.0177307,0.0146179,0.0158386,0.0185852,0.0233459,0.0229492,0.0157776,0.00088501,-0.0187378,-0.0356445,-0.0477905,-0.0534363,-0.048584,-0.0347595,-0.013031,0.0101929,0.0315552,0.0471191,0.0560303,0.0578613,0.0532837,0.0429382,0.0346375,0.0314026,0.0350342,0.0422058,0.0532227,0.0586548,0.0610046,0.0543518,0.0406799,0.0169067,-0.016571,-0.0579224,-0.098999,-0.136322,-0.167847,-0.194092,-0.214844,-0.231415,-0.245972,-0.260254,-0.275757,-0.290466,-0.302429,-0.308533,-0.307709,-0.297241,-0.278259,-0.252228,-0.221741,-0.189209,-0.156769,-0.130676,-0.107056,-0.0820007,-0.0477905,-0.00323486,0.0466309,0.0990601,0.152344,0.207397,0.261017,0.306244,0.332275,0.328186,0.301331,0.255981,0.210144,0.167053,0.135437,0.116852,0.114563,0.127502,0.145294,0.157715,0.158722,0.144226,0.116028,0.0754395,0.025177,-0.0234985,-0.0612793,-0.0783081,-0.0739746,-0.0555725,-0.025177,0.0106812,0.0479736,0.0767822,0.0882568,0.0803223,0.0602112,0.0406189,0.0279236,0.0219421,0.0188599,0.0188599,0.0234375,0.0315552,0.0404663,0.0411987,0.0311279,0.0118713,-0.0083313,-0.0246277,-0.0336914,-0.0346375,-0.0279236,-0.0135498,0.00592041,0.0241089,0.0379944,0.0457764,0.0479736,0.0427551,0.0315552,0.0195312,0.0135498,0.0152283,0.0250244,0.0353699,0.0444336,0.0493164,0.0511475,0.0457153,0.0310059,0.00280762,-0.0346985,-0.0761719,-0.112335,-0.141144,-0.164642,-0.184906,-0.204285,-0.222961,-0.241333,-0.258575,-0.275757,-0.291534,-0.30484,-0.311554,-0.31012,-0.295166,-0.26947,-0.237579,-0.20578,-0.179718,-0.159668,-0.140808,-0.117584,-0.0881348,-0.0500793,-0.00610352,0.0444336,0.0998535,0.162872,0.227386,0.283417,0.321136,0.330658,0.316315,0.283569,0.240662,0.198395,0.161072,0.134491,0.124176,0.129059,0.14502,0.161194,0.164978,0.154175,0.12738,0.0892029,0.0426941,-0.00592041,-0.0477295,-0.0752258,-0.0840149,-0.0755615,-0.0505981,-0.0148315,0.0238342,0.0556946,0.0738831,0.0767212,0.0656433,0.0534363,0.0423584,0.0375977,0.0343628,0.0343628,0.0386047,0.0475769,0.0569153,0.0603943,0.0495911,0.0322876,0.00967407,-0.00946045,-0.0222778,-0.0288696,-0.0276489,-0.0195312,-0.00509644,0.0120239,0.0292053,0.0384521,0.041748,0.0361023,0.024292,0.0122681,0.00509644,0.00558472,0.0123596,0.0220947,0.0314026,0.0401917,0.0467224,0.0479126,0.040802,0.0223389,-0.00616455,-0.040802,-0.0755005,-0.105896,-0.13028,-0.152832,-0.172272,-0.193024,-0.212067,-0.232208,-0.25235,-0.273346,-0.29068,-0.303497,-0.309784,-0.303223,-0.284821,-0.25827,-0.229126,-0.202606,-0.177795,-0.156708,-0.137054,-0.117371,-0.0919495,-0.0574646,-0.0134277,0.0380554,0.0971069,0.159393,0.220795,0.274017,0.311798,0.324982,0.313019,0.280457,0.238312,0.197784,0.161194,0.13739,0.125488,0.130859,0.144012,0.157043,0.16095,0.14859,0.12262,0.0834351,0.0388489,-0.00878906,-0.0505981,-0.0786438,-0.0867004,-0.0750427,-0.0509949,-0.0186462,0.0171204,0.0477295,0.069397,0.074707,0.0696106,0.058136,0.0500793,0.0461731,0.0471802,0.0482483,0.0513306,0.0569763,0.0652466,0.0673828,0.0593262,0.0386047,0.0148315,-0.00604248,-0.0189209,-0.0248413,-0.0256958,-0.0198669,-0.0102539,0.0032959,0.0157166,0.0240173,0.0261841,0.0212708,0.0118713,0.00213623,-0.00442505,-0.00491333,0.00256348,0.0147095,0.0280457,0.0381775,0.0455017,0.0479126,0.0448303,0.0306702,0.00469971,-0.0290527,-0.0637512,-0.0933533,-0.118317,-0.14035,-0.163544,-0.187103,-0.210724,-0.231689,-0.251465,-0.269196,-0.286987,-0.300476,-0.306122,-0.299072,-0.281616,-0.256104,-0.229065,-0.204163,-0.181488,-0.160858,-0.140869,-0.120605,-0.0975952,-0.066925,-0.0260315,0.0280457,0.0914001,0.156769,0.217316,0.267303,0.302887,0.316498,0.309265,0.280396,0.241211,0.198792,0.161682,0.137177,0.124695,0.129333,0.141144,0.154297,0.157928,0.145844,0.119141,0.0804749,0.0383301,-0.00610352,-0.0462341,-0.0731506,-0.0823364,-0.0704041,-0.0443726,-0.011261,0.0228882,0.0524902,0.0747681,0.0834351,0.0809937,0.069519,0.0578003,0.0525513,0.0522766,0.0550232,0.0589294,0.0633545,0.069397,0.0709534,0.0617981,0.041626,0.0155029,-0.00827026,-0.024353,-0.0343018,-0.0369263,-0.0335693,-0.0255127,-0.0112,0.00390625,0.0152283,0.0189819,0.0158386,0.00866699,-0.000732422,-0.00784302,-0.00866699,-0.000946045,0.0153809,0.033905,0.0468445,0.0546875,0.0564575,0.052948,0.0401306,0.0166321,-0.0152893,-0.0524292,-0.0840149,-0.110413,-0.132629,-0.154175,-0.177643,-0.200256,-0.221405,-0.243347,-0.267059,-0.290192,-0.307648,-0.315765,-0.310608,-0.294373,-0.269592,-0.240479,-0.213501,-0.18866,-0.167908,-0.150818,-0.133026,-0.109985,-0.0802002,-0.0400696,0.00991821,0.0683899,0.132812,0.198059,0.255249,0.296448,0.31543,0.309998,0.285492,0.248047,0.208191,0.171143,0.143616,0.128937,0.130127,0.141266,0.15509,0.161804,0.155426,0.131348,0.0944214,0.0471802,-0.000549316,-0.0423584,-0.0722961,-0.0845642,-0.0801392,-0.0589294,-0.0263672,0.00924683,0.0428162,0.0669861,0.0795288,0.0820007,0.0779114,0.0706787,0.0646973,0.0641479,0.0677185,0.0752869,0.0834961,0.0880432,0.085968,0.0752258,0.0562439,0.0310669,0.00570679,-0.0167847,-0.0310669,-0.0361633,-0.0354919,-0.0278625,-0.0187378,-0.00918579,-0.000396729,0.00256348,-0.00012207,-0.00906372,-0.019989,-0.0263672,-0.0238342,-0.0133667,0.00195312,0.0191956,0.0357666,0.0489807,0.057251,0.0571289,0.0488586,0.0315552,0.0062561,-0.0226135,-0.0516663,-0.0766296,-0.0992737,-0.120148,-0.139465,-0.162354,-0.186981,-0.214355,-0.240936,-0.264496,-0.284637,-0.295502,-0.298065,-0.28717,-0.267853,-0.244904,-0.221283,-0.200592,-0.182007,-0.164307,-0.152161,-0.14035,-0.124695,-0.0977173,-0.0555115,0.00140381,0.0643616,0.128326,0.186371,0.236053,0.273621,0.292816,0.288513,0.264038,0.22464,0.186981,0.154083,0.134766,0.126312,0.12912,0.139801,0.151947,0.158386,0.151337,0.130524,0.0950928,0.0525513,0.00744629,-0.0311279,-0.0579834,-0.0686035,-0.0600586,-0.0393372,-0.0103455,0.0211487,0.0519409,0.077179,0.0921326,0.094635,0.0881348,0.0777283,0.0728149,0.0755005,0.0829468,0.0881348,0.0881348,0.0844421,0.0783081,0.0661621,0.0458374,0.0189819,-0.0104065,-0.0349731,-0.0504761,-0.0547791,-0.0504761,-0.0400696,-0.0316772,-0.0228271,-0.0178528,-0.0147095,-0.0161133,-0.0204163,-0.0249634,-0.0280457,-0.0237732,-0.012207,0.00973511,0.0340271,0.0551758,0.0683289,0.0726929,0.0706787,0.0641479,0.049408,0.0271912,-0.000610352,-0.0300598,-0.0576477,-0.080658,-0.101288,-0.122955,-0.15033,-0.181946,-0.212341,-0.24234,-0.266724,-0.287933,-0.300934,-0.305695,-0.298309,-0.280792,-0.256714,-0.231018,-0.210205,-0.191345,-0.174835,-0.160675,-0.146454,-0.128662,-0.103546,-0.065918,-0.0176392,0.0400696,0.101196,0.163361,0.218323,0.263153,0.289001,0.291809,0.273773,0.242493,0.206451,0.172882,0.141357,0.120544,0.111877,0.115021,0.124756,0.132812,0.133759,0.122345,0.100281,0.0672607,0.0270386,-0.0122681,-0.0444946,-0.0612183,-0.06073,-0.0448303,-0.0205994,0.00872803,0.0428162,0.0734863,0.0961609,0.107788,0.108978,0.106842,0.102966,0.102753,0.102295,0.103088,0.100677,0.0950317,0.0869141,0.070282,0.0469055,0.0184631,-0.0126038,-0.0383301,-0.0593872,-0.0697937,-0.0704041,-0.0628967,-0.0543518,-0.0471191,-0.0411377,-0.0380554,-0.0340881,-0.0332336,-0.0342407,-0.0357666,-0.0330811,-0.0215454,-0.000610352,0.0244446,0.0481873,0.0671082,0.0789185,0.0856323,0.0852966,0.077179,0.0612793,0.0397949,0.0132141,-0.0139465,-0.0420227,-0.0700684,-0.0960999,-0.124695,-0.155365,-0.187531,-0.219269,-0.24704,-0.268524,-0.282562,-0.291077,-0.292145,-0.286041,-0.269409,-0.247101,-0.225555,-0.20932,-0.197174,-0.184296,-0.166992,-0.148651,-0.12677,-0.101868,-0.0677185,-0.0181274,0.0428162,0.108459,0.167389,0.21524,0.250336,0.273773,0.281006,0.267914,0.238068,0.197388,0.1604,0.128845,0.107239,0.0973816,0.0975037,0.106781,0.117126,0.121399,0.112823,0.0940857,0.0646973,0.0309448,-0.00341797,-0.0336304,-0.0504761,-0.0504761,-0.0336304,-0.00524902,0.0256348,0.058197,0.0909424,0.119598,0.140198,0.146118,0.139923,0.128387,0.120819,0.114166,0.110748,0.0997925,0.0832214,0.0653687,0.0445557,0.0215454,-0.00463867,-0.0325623,-0.0603333,-0.0799255,-0.0924072,-0.0963135,-0.0917969,-0.0834351,-0.0735474,-0.0654297,-0.0584412,-0.0532837,-0.0473022,-0.0406799,-0.0331421,-0.0236816,-0.0104065,0.00900269,0.0357666,0.0632324,0.0866394,0.10321,0.110748,0.114166,0.109406,0.0964966,0.0741577,0.0446167,0.0112,-0.0226746,-0.0552368,-0.0877991,-0.12088,-0.154175,-0.187714,-0.21698,-0.242828,-0.264496,-0.281738,-0.296295,-0.303619,-0.302673,-0.291748,-0.273682,-0.253296,-0.233704,-0.212891,-0.192627,-0.168518,-0.145233,-0.121735,-0.0964355,-0.0613403,-0.0159607,0.0401306,0.0990601,0.153748,0.203766,0.245087,0.277039,0.291412,0.282135,0.251556,0.207977,0.163147,0.124512,0.0933533,0.0748291,0.0671082,0.0726929,0.0838928,0.0949707,0.098053,0.0896606,0.0716858,0.0428162,0.00912476,-0.0232239,-0.0433655,-0.0464478,-0.0325623,-0.00442505,0.0312805,0.0728149,0.116638,0.156036,0.181274,0.189453,0.180542,0.163757,0.145905,0.128265,0.108582,0.0873718,0.0682678,0.0505371,0.0346375,0.0142212,-0.00967407,-0.0390625,-0.0684509,-0.0951538,-0.116638,-0.127655,-0.129456,-0.121552,-0.109802,-0.0965881,-0.0833435,-0.0691833,-0.0528259,-0.0381165,-0.0283813,-0.0204773,-0.00985718,0.00973511,0.0375061,0.0689392,0.0977783,0.121063,0.137054,0.146576,0.144897,0.132202,0.107056,0.0738831,0.0358276,-0.00430298,-0.0422668,-0.0776367,-0.108185,-0.136383,-0.164429,-0.193634,-0.221619,-0.247528,-0.270264,-0.289673,-0.306244,-0.315369,-0.313293,-0.298401,-0.274902,-0.25061,-0.22757,-0.203613,-0.177307,-0.149994,-0.127045,-0.106659,-0.0833435,-0.0471802,0.00497437,0.0644836,0.121613,0.170532,0.213837,0.251282,0.276184,0.279541,0.253571,0.210541,0.163818,0.123901,0.0921326,0.0665894,0.0526733,0.0516663,0.0656433,0.0847778,0.0957642,0.0943604,0.0798035,0.057373,0.0296021,-0.00012207,-0.0238342,-0.0311279,-0.0189209,0.00967407,0.0470581,0.0852966,0.125916,0.167053,0.196167,0.207916,0.197571,0.173096,0.150482,0.131744,0.114441,0.0949097,0.0742188,0.0545654,0.039856,0.0209961,-0.00570679,-0.0390625,-0.0763855,-0.109985,-0.136047,-0.155579,-0.1633,-0.158325,-0.142212,-0.12088,-0.0999451,-0.0822754,-0.0653687,-0.0484009,-0.0324707,-0.020874,-0.0101929,0.00726318,0.0353088,0.0696106,0.102631,0.129333,0.147797,0.16095,0.167725,0.162079,0.143616,0.113159,0.0774536,0.0402832,0.00482178,-0.0314636,-0.0657654,-0.0983887,-0.129517,-0.162079,-0.194031,-0.228394,-0.256775,-0.281738,-0.301544,-0.317444,-0.323364,-0.317383,-0.300262,-0.273895,-0.247772,-0.220947,-0.194641,-0.165222,-0.133209,-0.107727,-0.0880432,-0.0696106,-0.0428772,-0.00128174,0.0498657,0.101196,0.145172,0.184418,0.216522,0.240204,0.248871,0.234375,0.201019,0.155365,0.10907,0.0714722,0.0424805,0.0266418,0.0232239,0.032074,0.0487976,0.0679932,0.0823364,0.0879822,0.0834351,0.0654297,0.0420837,0.0226135,0.0152283,0.024292,0.0468445,0.0777283,0.11087,0.14563,0.177704,0.203033,0.213684,0.207916,0.187042,0.15918,0.13208,0.107788,0.085968,0.0679932,0.0478516,0.0272522,0.00308228,-0.0263672,-0.0600586,-0.097168,-0.133026,-0.164764,-0.186188,-0.194366,-0.187531,-0.166901,-0.14093,-0.112335,-0.0871887,-0.0642395,-0.0426941,-0.0249634,-0.0106812,0.00189209,0.0179749,0.0405273,0.0728149,0.107727,0.142944,0.170258,0.187592,0.194366,0.190948,0.174377,0.147705,0.112549,0.0710144,0.0306702,-0.00872803,-0.0455017,-0.0789795,-0.111328,-0.145844,-0.179993,-0.214844,-0.249451,-0.280548,-0.306854,-0.325226,-0.333832,-0.331543,-0.316254,-0.289612,-0.254822,-0.218719,-0.18576,-0.159119,-0.133362,-0.110474,-0.0900574,-0.0744324,-0.0612793,-0.0401917,-0.00515747,0.0432739,0.0955811,0.139191,0.171692,0.195557,0.212555,0.217377,0.20108,0.160858,0.109985,0.0633545,0.0311279,0.0118103,0.00476074,0.0083313,0.0231628,0.0495911,0.0779724,0.0997925,0.109528,0.107727,0.098053,0.0833435,0.0687256,0.0610657,0.0662537,0.085907,0.114014,0.142883,0.167847,0.189453,0.207306,0.214691,0.205444,0.183075,0.152008,0.123077,0.0987244,0.0755615,0.0499268,0.0202026,-0.0104675,-0.0404663,-0.0719604,-0.105835,-0.142609,-0.174774,-0.198792,-0.209259,-0.20697,-0.191406,-0.166718,-0.135223,-0.104218,-0.077179,-0.0558472,-0.0377197,-0.020752,-0.00289917,0.0158386,0.0390015,0.0680542,0.105103,0.145691,0.183411,0.210876,0.226379,0.228668,0.220276,0.198669,0.165833,0.124695,0.0797424,0.0369263,-0.00302124,-0.0399475,-0.0755615,-0.113159,-0.148926,-0.185974,-0.222809,-0.261414,-0.295715,-0.321289,-0.336365,-0.339539,-0.331085,-0.313812,-0.286163,-0.253143,-0.218384,-0.186859,-0.160675,-0.139923,-0.116974,-0.0928955,-0.0721436,-0.0561829,-0.0406799,-0.0153809,0.0227661,0.0671692,0.105713,0.131195,0.14624,0.155426,0.161407,0.155914,0.135376,0.100189,0.0634155,0.0375061,0.024292,0.0190735,0.0177307,0.024292,0.0420227,0.0664368,0.0918884,0.109589,0.118378,0.120544,0.117188,0.112885,0.107788,0.107574,0.117584,0.135712,0.157867,0.175507,0.188721,0.198578,0.205963,0.205048,0.189789,0.162476,0.13028,0.100128,0.0718079,0.0404053,0.00732422,-0.0275879,-0.0611267,-0.0920715,-0.122742,-0.154022,-0.180542,-0.198853,-0.207062,-0.205505,-0.199249,-0.183838,-0.160278,-0.130798,-0.101349,-0.0762939,-0.0547791,-0.0305481,-0.00234985,0.0299377,0.0628967,0.0954285,0.131195,0.168121,0.204437,0.234222,0.249268,0.253357,0.242737,0.223755,0.194763,0.159332,0.119049,0.0778503,0.0374451,-0.00308228,-0.0444336,-0.0841675,-0.12384,-0.162415,-0.199585,-0.236908,-0.270477,-0.299469,-0.317841,-0.327637,-0.329865,-0.325623,-0.312958,-0.292023,-0.263947,-0.232819,-0.201752,-0.171539,-0.142883,-0.112488,-0.0836182,-0.057373,-0.0396118,-0.02771,-0.0176392,-0.00650024,0.00912476,0.0281982,0.0482483,0.0679932,0.0853577,0.100739,0.114349,0.122833,0.122894,0.111481,0.0904846,0.066925,0.0453796,0.0293884,0.0230103,0.0260925,0.0386658,0.0621338,0.0924683,0.126648,0.156525,0.174835,0.182404,0.180389,0.172363,0.164093,0.156647,0.153748,0.156708,0.162201,0.168457,0.1745,0.177032,0.174561,0.161469,0.136902,0.100677,0.0596619,0.0180664,-0.0204773,-0.0552368,-0.0892639,-0.118195,-0.142883,-0.161682,-0.175842,-0.187103,-0.196106,-0.19986,-0.199249,-0.190674,-0.174561,-0.150482,-0.120148,-0.0852356,-0.0478516,-0.0100708,0.0276489,0.065918,0.103638,0.139587,0.170746,0.198517,0.223022,0.244965,0.257599,0.2612,0.252289,0.233612,0.208649,0.176849,0.141602,0.103363,0.0617981,0.0194702,-0.0228271,-0.0639648,-0.105896,-0.147461,-0.190002,-0.229797,-0.2659,-0.298401,-0.324768,-0.345306,-0.35672,-0.355988,-0.344635,-0.322205,-0.295044,-0.264374,-0.230682,-0.19577,-0.159607,-0.124695,-0.0960388,-0.0716248,-0.0542908,-0.0422058,-0.0367126,-0.0332336,-0.0282593,-0.0149536,0.00704956,0.0347595,0.0639038,0.0907288,0.115356,0.136719,0.150208,0.147919,0.130951,0.101135,0.069519,0.0421448,0.0236816,0.0147705,0.0191956,0.0380554,0.0718079,0.114105,0.156036,0.186371,0.201599,0.200928,0.188049,0.169189,0.148193,0.132965,0.124634,0.126648,0.134155,0.144958,0.156525,0.162964,0.161072,0.144897,0.116913,0.0787354,0.0366516,-0.00448608,-0.041748,-0.0719604,-0.097168,-0.115112,-0.127258,-0.138458,-0.14859,-0.160126,-0.172211,-0.180603,-0.185425,-0.182678,-0.169189,-0.142609,-0.105988,-0.0603943,-0.0137024,0.0303955,0.0714722,0.11026,0.142822,0.169922,0.188873,0.202606,0.215363,0.227509,0.237579,0.242615,0.240601,0.23053,0.213837,0.188446,0.156525,0.117584,0.0721436,0.0231018,-0.0265198,-0.0751038,-0.120331,-0.162292,-0.201599,-0.238739,-0.270752,-0.301605,-0.3255,-0.344238,-0.356323,-0.358795,-0.35202,-0.333008,-0.30484,-0.272156,-0.236237,-0.198669,-0.160065,-0.122498,-0.0939636,-0.0744324,-0.0610657,-0.0490723,-0.0368347,-0.0265198,-0.0214233,-0.0161133,-0.00476074,0.0212708,0.0549622,0.085907,0.104645,0.113434,0.11972,0.125977,0.12677,0.111145,0.0836182,0.0531006,0.0304565,0.0220947,0.0220032,0.0294495,0.0440979,0.0718689,0.105774,0.14035,0.166443,0.17865,0.181732,0.17511,0.161072,0.143341,0.125031,0.117798,0.119385,0.125366,0.131958,0.133209,0.135773,0.133698,0.124847,0.104156,0.0724792,0.0383301,0.00643921,-0.0204773,-0.046051,-0.0696716,-0.09021,-0.105225,-0.118042,-0.131805,-0.147705,-0.160797,-0.166656,-0.162018,-0.151215,-0.13208,-0.105438,-0.0679321,-0.0225525,0.0222168,0.0610046,0.0908203,0.115448,0.137665,0.158112,0.174561,0.186249,0.199738,0.213226,0.227509,0.23584,0.234833,0.22583,0.205841,0.177307,0.141144,0.0960388,0.0465698,-0.00335693,-0.0511475,-0.0973206,-0.139069,-0.180664,-0.215698,-0.246704,-0.275848,-0.302002,-0.325226,-0.340668,-0.348053,-0.348175,-0.339142,-0.32196,-0.295776,-0.265717,-0.232941,-0.200745,-0.167999,-0.13382,-0.100739,-0.0701294,-0.0450439,-0.0241699,-0.003479,0.0171204,0.0326233,0.0386658,0.0361023,0.0343018,0.0400085,0.0522766,0.0630798,0.0710754,0.074646,0.0794678,0.0882568,0.0944214,0.0927429,0.0794678,0.0563049,0.0338135,0.0157166,0.00482178,0.00241089,0.00967407,0.0270996,0.0541687,0.086792,0.122009,0.152283,0.171936,0.176178,0.168396,0.153748,0.140472,0.13269,0.130127,0.131012,0.132629,0.135437,0.138794,0.140472,0.13504,0.118469,0.0925598,0.0608826,0.028717,-0.0012207,-0.0269775,-0.0499268,-0.0693359,-0.0860291,-0.0987244,-0.111603,-0.121613,-0.131531,-0.136444,-0.135712,-0.127777,-0.11377,-0.0889893,-0.0555115,-0.0162354,0.0236816,0.0586548,0.0879211,0.110321,0.128265,0.142944,0.154572,0.16275,0.170868,0.179596,0.189117,0.194977,0.194366,0.18396,0.165894,0.138458,0.101624,0.0587769,0.0142212,-0.0304565,-0.0718079,-0.111267,-0.147125,-0.177917,-0.20462,-0.22934,-0.251801,-0.271881,-0.290344,-0.302277,-0.308655,-0.306183,-0.298737,-0.284576,-0.264557,-0.237061,-0.204773,-0.170593,-0.135315,-0.101532,-0.0684509,-0.0394592,-0.013031,0.0104065,0.0289307,0.0424805,0.0488586,0.0457764,0.0358276,0.0205994,0.00765991,-0.00128174,-0.00296021,0,0.00817871,0.0198059,0.0318909,0.0455017,0.0533447,0.0536194,0.0418701,0.0198669,-0.00543213,-0.0265198,-0.0369873,-0.037384,-0.0271912,-0.00335693,0.0326843,0.0792542,0.131409,0.174713,0.205109,0.215302,0.212219,0.200409,0.185303,0.167999,0.153748,0.145569,0.145844,0.149933,0.155579,0.157318,0.153412,0.140259,0.117584,0.0867004,0.0528259,0.0194702,-0.00912476,-0.0351562,-0.0577087,-0.0775757,-0.094574,-0.107056,-0.115692,-0.124756,-0.13147,-0.133484,-0.129333,-0.115448,-0.0941467,-0.0654907,-0.0323486,0.00241089,0.0359192,0.0617981,0.0823364,0.0954895,0.105164,0.112,0.119537,0.128448,0.138397,0.149536,0.159851,0.16571,0.164032,0.152069,0.130859,0.100739,0.0653687,0.0259094,-0.0135498,-0.0516052,-0.0870361,-0.118134,-0.145569,-0.167908,-0.187927,-0.205902,-0.223694,-0.239594,-0.251221,-0.258514,-0.257782,-0.253082,-0.24408,-0.231079,-0.213226,-0.189941,-0.165039,-0.138123,-0.112946,-0.0877991,-0.0621338,-0.0344238,-0.00637817,0.016449,0.032074,0.0385132,0.037323,0.0331421,0.0220032,0.00509644,-0.0198669,-0.0448914,-0.0593262,-0.0584412,-0.0434875,-0.0237732,-0.00878906,0.00289917,0.0137024,0.0259705,0.0310059,0.0205994,-0.00256348,-0.0287781,-0.0415344,-0.038269,-0.0190735,0.00946045,0.0432129,0.0874634,0.138245,0.18866,0.227722,0.248383,0.251617,0.240936,0.222809,0.202759,0.184174,0.173431,0.169525,0.169525,0.168121,0.164642,0.157715,0.14679,0.127167,0.0968323,0.0589294,0.0189209,-0.0144958,-0.0418091,-0.06604,-0.0890503,-0.113098,-0.129608,-0.140808,-0.147919,-0.153687,-0.156372,-0.151611,-0.138794,-0.118591,-0.0940247,-0.0673828,-0.0380554,-0.00750732,0.0197449,0.0435486,0.061615,0.0779724,0.0956421,0.115784,0.136047,0.153564,0.168243,0.178192,0.183624,0.180267,0.16745,0.143768,0.115112,0.0819397,0.0487366,0.0159607,-0.0147095,-0.0410767,-0.0654907,-0.0895996,-0.113434,-0.140686,-0.168335,-0.195374,-0.221344,-0.243958,-0.261536,-0.271271,-0.269989,-0.260529,-0.243347,-0.220795,-0.196442,-0.170013,-0.142761,-0.116852,-0.0928955,-0.0724792,-0.0526733,-0.0314636,-0.0110779,0.00778198,0.0202026,0.0264282,0.0276489,0.0236816,0.0140381,-0.00335693,-0.02771,-0.0500793,-0.0654907,-0.0664978,-0.0556335,-0.0424194,-0.0276489,-0.0145569,0.0017395,0.0168457,0.0236816,0.0179749,0.000610352,-0.0161133,-0.0249634,-0.0184021,-0.000335693,0.0293274,0.0681763,0.11496,0.16684,0.216034,0.253632,0.271667,0.273346,0.257996,0.233276,0.205841,0.182556,0.166992,0.159271,0.155701,0.152618,0.148804,0.140747,0.125702,0.100342,0.0626221,0.0168457,-0.0281067,-0.065155,-0.093689,-0.115112,-0.131012,-0.139252,-0.142151,-0.140869,-0.140747,-0.141754,-0.143555,-0.141357,-0.133698,-0.119812,-0.0992737,-0.0716248,-0.0369263,0.00491333,0.0455627,0.0819397,0.109131,0.13028,0.146454,0.158661,0.166168,0.168335,0.168396,0.167664,0.167572,0.165771,0.158661,0.142822,0.121002,0.0926819,0.0620117,0.0267029,-0.00952148,-0.0458984,-0.0798035,-0.111267,-0.139679,-0.164551,-0.186646,-0.204773,-0.220673,-0.234375,-0.243347,-0.247437,-0.246307,-0.23941,-0.22699,-0.210815,-0.191803,-0.169128,-0.144226,-0.11731,-0.0916138,-0.069458,-0.0484619,-0.0283203,-0.00717163,0.0135498,0.0289917,0.0366516,0.0381775,0.0327454,0.0214233,0.00402832,-0.0210876,-0.0484009,-0.0709534,-0.0845642,-0.0846252,-0.0730896,-0.0536804,-0.0307922,-0.00631714,0.0170593,0.0366516,0.045166,0.039856,0.0244446,0.00576782,-0.00717163,-0.00839233,0.00442505,0.0298767,0.0677185,0.113556,0.165436,0.216095,0.256165,0.275513,0.272949,0.251129,0.219208,0.184357,0.149658,0.122894,0.101868,0.0900574,0.085907,0.0856323,0.085022,0.0771179,0.0585938,0.0326843,0.00167847,-0.0290527,-0.0575256,-0.0805359,-0.0986633,-0.110413,-0.118134,-0.121002,-0.120209,-0.118988,-0.116791,-0.113953,-0.108124,-0.0954285,-0.077301,-0.0516663,-0.0222168,0.0122681,0.0476379,0.0798035,0.104767,0.120941,0.127655,0.12738,0.126038,0.123413,0.124084,0.123566,0.125763,0.131622,0.135712,0.137573,0.130188,0.114502,0.0895386,0.0584412,0.0228882,-0.0149536,-0.0524902,-0.0883789,-0.119873,-0.14502,-0.164703,-0.17865,-0.188934,-0.197845,-0.204163,-0.209595,-0.213013,-0.212402,-0.20697,-0.197113,-0.185028,-0.171936,-0.155426,-0.135834,-0.11261,-0.0889282,-0.0669861,-0.0455627,-0.0239563,-0.00012207,0.0222778,0.0414124,0.052948,0.0583801,0.0564575,0.050415,0.0371094,0.0148926,-0.0145569,-0.0488586,-0.0799866,-0.0993958,-0.10498,-0.0961609,-0.0789185,-0.0556946,-0.0328979,-0.0109253,0.00878906,0.0226135,0.024353,0.0113525,-0.0104065,-0.0303955,-0.0350952,-0.0230103,0.00302124,0.0377808,0.0792542,0.129333,0.183075,0.233093,0.264893,0.270599,0.251282,0.217773,0.182007,0.149658,0.124512,0.10611,0.0948181,0.094635,0.0970459,0.100006,0.097168,0.0832214,0.0610657,0.0299988,-0.00570679,-0.0414124,-0.0697937,-0.090271,-0.102539,-0.110413,-0.115112,-0.116455,-0.113007,-0.106903,-0.1008,-0.0967102,-0.0930786,-0.0838928,-0.0673828,-0.0420227,-0.0131531,0.0187988,0.0491333,0.0775757,0.100677,0.116974,0.126434,0.131622,0.135437,0.138855,0.142273,0.142883,0.141998,0.140259,0.134827,0.124847,0.106903,0.0808105,0.052002,0.0203247,-0.011261,-0.0422668,-0.0719604,-0.0991211,-0.122223,-0.142548,-0.156921,-0.171204,-0.182404,-0.193085,-0.202484,-0.207733,-0.210052,-0.205292,-0.195099,-0.178802,-0.157196,-0.134705,-0.109528,-0.0834961,-0.0574646,-0.032959,-0.0138245,6.10352e-05,0.0119324,0.0224915,0.0312195,0.0367126,0.0344238,0.0276489,0.0172424,0.0038147,-0.0124817,-0.0377808,-0.0667725,-0.0969849,-0.118988,-0.127655,-0.123505,-0.111542,-0.0948181,-0.074646,-0.052948,-0.032074,-0.0152283,-0.0109253,-0.0140991,-0.0246277,-0.0328064,-0.0317383,-0.0175171,0.0134277,0.0543518,0.103363,0.155853,0.208466,0.254822,0.285706,0.294891,0.279999,0.246765,0.205505,0.166565,0.137238,0.11618,0.103638,0.0960388,0.0949707,0.0957642,0.0919495,0.077301,0.0531616,0.0171814,-0.0215454,-0.0597229,-0.0910645,-0.114838,-0.130127,-0.137451,-0.138519,-0.133087,-0.124084,-0.113556,-0.103424,-0.0925598,-0.0804749,-0.0654907,-0.045166,-0.0206604,0.0085144,0.0397949,0.0693359,0.0955811,0.117249,0.130615,0.139404,0.142944,0.145447,0.146637,0.149597,0.150482,0.150482,0.148468,0.142151,0.131531,0.114838,0.091156,0.060791,0.0269775,-0.0065918,-0.0391235,-0.0691223,-0.0967102,-0.120667,-0.139008,-0.152405,-0.161285,-0.168243,-0.173828,-0.177643,-0.181488,-0.182007,-0.180145,-0.173889,-0.164429,-0.152679,-0.138,-0.121735,-0.10321,-0.0838318,-0.0645752,-0.0461121,-0.0314026,-0.0175781,-0.00537109,0.0071106,0.0163879,0.0190735,0.0159607,0.00759888,-0.00543213,-0.0213318,-0.0437012,-0.0699463,-0.0983887,-0.124023,-0.141205,-0.146515,-0.139465,-0.122223,-0.0983276,-0.0698547,-0.0404663,-0.0144348,0.00750732,0.0204773,0.0255127,0.0212708,0.0137024,0.0110168,0.0202026,0.0423584,0.0752258,0.11261,0.153351,0.19516,0.236511,0.265961,0.277527,0.266113,0.235443,0.195709,0.155762,0.118469,0.0877991,0.0643616,0.0485229,0.0415344,0.0404663,0.0386658,0.0332947,0.0198669,-0.00140381,-0.0283203,-0.0555725,-0.0812073,-0.098114,-0.109924,-0.113342,-0.111664,-0.104767,-0.0915527,-0.0759583,-0.0591125,-0.0441589,-0.0302124,-0.0158386,0.000335693,0.0206604,0.0432739,0.0667114,0.0900574,0.111664,0.130066,0.143829,0.151215,0.153229,0.152344,0.149719,0.145172,0.140869,0.132751,0.125702,0.115631,0.105103,0.0890503,0.0679321,0.0410767,0.0114136,-0.0187378,-0.0478516,-0.0763855,-0.102203,-0.125702,-0.14444,-0.15744,-0.16806,-0.172546,-0.17691,-0.179718,-0.182831,-0.183228,-0.180328,-0.172821,-0.161346,-0.150055,-0.136658,-0.122345,-0.104431,-0.0836792,-0.0628052,-0.0444336,-0.0309448,-0.0211487,-0.013031,-0.00402832,0.00448608,0.0100098,0.00906372,0.00167847,-0.00805664,-0.0171814,-0.0248413,-0.0376587,-0.0575867,-0.0881348,-0.116913,-0.135498,-0.137177,-0.124634,-0.107666,-0.0895996,-0.0684509,-0.040863,-0.00750732,0.0234375,0.0402832,0.0393982,0.0255127,0.011261,0.0071106,0.0148315,0.0333557,0.058197,0.0891418,0.128662,0.175781,0.222137,0.255585,0.265961,0.248322,0.209991,0.161407,0.115021,0.0764465,0.0481873,0.0289307,0.0188599,0.0204773,0.0297241,0.0424194,0.0493164,0.0436096,0.0232239,-0.00448608,-0.0343628,-0.0570374,-0.0739746,-0.0814209,-0.0841675,-0.0777893,-0.0636292,-0.0438232,-0.0225525,-0.00442505,0.00900269,0.019928,0.0289917,0.0395203,0.0506592,0.0663147,0.0847778,0.103882,0.121948,0.132751,0.136444,0.134094,0.128387,0.120667,0.112885,0.104218,0.09375,0.086853,0.0804138,0.0759583,0.0684509,0.0546875,0.0349121,0.00839233,-0.0203247,-0.0505371,-0.0789795,-0.103546,-0.126251,-0.142487,-0.154755,-0.159332,-0.159515,-0.155518,-0.153168,-0.152283,-0.153961,-0.157257,-0.157196,-0.152954,-0.144501,-0.134216,-0.121826,-0.108185,-0.0899963,-0.0691833,-0.0479126,-0.0312805,-0.0212708,-0.0162964,-0.0147705,-0.0108032,-0.00744629,-0.00167847,-0.000793457,-0.0015564,-0.00524902,-0.0115356,-0.0186462,-0.029541,-0.0488586,-0.0752869,-0.107513,-0.134979,-0.148926,-0.145569,-0.12912,-0.105988,-0.0794067,-0.0517578,-0.020752,0.0104675,0.0324707,0.0395203,0.0289917,0.0118103,-0.00180054,-0.00100708,0.0137024,0.0380554,0.0706787,0.107788,0.151001,0.19397,0.228851,0.2453,0.238647,0.209656,0.169678,0.125977,0.090332,0.0649109,0.0506592,0.0465698,0.0498657,0.057373,0.06604,0.0706177,0.0671692,0.0505371,0.0256958,-0.00457764,-0.0271912,-0.0426941,-0.0470581,-0.0448914,-0.0368347,-0.0245667,-0.00979614,0.00396729,0.0147705,0.0194092,0.0195923,0.0187988,0.0190735,0.0220032,0.0317383,0.0469666,0.0677795,0.0889282,0.10556,0.113159,0.112427,0.10672,0.0977173,0.086853,0.074646,0.0617371,0.0526733,0.0478516,0.0465698,0.0452881,0.0393372,0.0281067,0.0103455,-0.0125427,-0.0383911,-0.0652466,-0.0906677,-0.112091,-0.130615,-0.140869,-0.147125,-0.145172,-0.140808,-0.135101,-0.131805,-0.132629,-0.136108,-0.138062,-0.138458,-0.134094,-0.126831,-0.11557,-0.102356,-0.0836182,-0.0642395,-0.0426025,-0.0248413,-0.012207,-0.0067749,-0.0065918,-0.00967407,-0.0120239,-0.0131531,-0.013092,-0.0143738,-0.0187378,-0.0250244,-0.0322876,-0.0400085,-0.0516052,-0.069458,-0.094635,-0.121277,-0.143158,-0.150604,-0.14502,-0.128845,-0.108398,-0.0849609,-0.0579224,-0.0273132,0.00234985,0.0228271,0.0291138,0.0256958,0.0181274,0.0171814,0.0264282,0.0452881,0.0723572,0.10437,0.140015,0.177307,0.210724,0.234283,0.241882,0.231812,0.204773,0.169464,0.132202,0.100281,0.0767822,0.0632324,0.0579834,0.0575256,0.0597229,0.0624084,0.0606689,0.052002,0.0348206,0.0115967,-0.0120239,-0.0316772,-0.0405273,-0.0434875,-0.0386047,-0.0300598,-0.0173035,-0.00457764,0.00665283,0.0131531,0.0157776,0.016449,0.017395,0.0205383,0.0269165,0.0375061,0.0525513,0.0707397,0.0873718,0.100861,0.104828,0.101074,0.0923462,0.0797424,0.0656433,0.0528259,0.040741,0.0322876,0.0263062,0.0216064,0.0175171,0.0108643,0.000396729,-0.0140381,-0.033905,-0.0542297,-0.0745544,-0.0931396,-0.106171,-0.117371,-0.123291,-0.126923,-0.126434,-0.12384,-0.120331,-0.118713,-0.119324,-0.119812,-0.119598,-0.115112,-0.10611,-0.0941467,-0.0792542,-0.0661011,-0.0531616,-0.041626,-0.0322266,-0.0275879,-0.0284424,-0.0324707,-0.040863,-0.0469666,-0.0506592,-0.0498047,-0.0456238,-0.0421448,-0.0409546,-0.0432739,-0.0468445,-0.0534973,-0.065979,-0.0845642,-0.109314,-0.134552,-0.15155,-0.155762,-0.142822,-0.11853,-0.0877075,-0.0540161,-0.0191345,0.0160522,0.0476379,0.0698547,0.0782471,0.0726318,0.061554,0.0516663,0.0532227,0.0643005,0.0848389,0.108917,0.135895,0.16571,0.194489,0.21759,0.224426,0.213013,0.183075,0.145111,0.106171,0.0754395,0.0526733,0.0420227,0.0365906,0.0375977,0.041687,0.0453796,0.0490723,0.0441589,0.0317993,0.0140381,-0.00509644,-0.0189209,-0.0238953,-0.0205994,-0.0113525,0.000457764,0.0107422,0.0184631,0.0255127,0.0281067,0.0273132,0.0224304,0.0183105,0.0167236,0.0213318,0.0326233,0.0482483,0.0645752,0.0785828,0.0848389,0.0830994,0.0735474,0.0594482,0.0437012,0.0294495,0.0181885,0.00946045,0.00564575,0.00592041,0.00985718,0.0137024,0.0124207,0.00442505,-0.0112,-0.0293884,-0.0484009,-0.0657654,-0.0813293,-0.0934143,-0.101471,-0.103424,-0.102081,-0.098938,-0.0967712,-0.0959167,-0.0972595,-0.100861,-0.105225,-0.108124,-0.10907,-0.105316,-0.100403,-0.0932312,-0.086853,-0.0789795,-0.0719604,-0.065918,-0.0603943,-0.0583191,-0.058197,-0.0603333,-0.0580444,-0.052887,-0.0432739,-0.0334778,-0.0273132,-0.025238,-0.0265198,-0.0281067,-0.0330811,-0.0420227,-0.0601196,-0.0844421,-0.107788,-0.120605,-0.119873,-0.104095,-0.0847778,-0.061676,-0.0370483,-0.00827026,0.0230103,0.0495911,0.0642395,0.0626831,0.0504761,0.0369263,0.0283203,0.0313416,0.0418701,0.0594482,0.0808716,0.108917,0.140747,0.174377,0.199127,0.208527,0.198395,0.173096,0.139526,0.107391,0.081604,0.0632935,0.0531006,0.0487366,0.0491333,0.0547791,0.0622864,0.0657043,0.0622253,0.048645,0.0306091,0.0105286,-0.00314331,-0.00946045,-0.00878906,-0.00509644,0.000793457,0.00564575,0.0101318,0.0138245,0.0144348,0.0132141,0.00817871,0.00402832,0.0020752,0.00491333,0.0157166,0.0294495,0.0452271,0.0571289,0.0620728,0.06073,0.0562439,0.0487976,0.0404053,0.0313416,0.0236206,0.0179749,0.0167236,0.0186462,0.0197449,0.0195312,0.0148315,0.00509644,-0.00906372,-0.0258484,-0.0426025,-0.0591125,-0.0720825,-0.0838928,-0.0919495,-0.0977783,-0.0992737,-0.0991821,-0.0993347,-0.101013,-0.105835,-0.11142,-0.114899,-0.116852,-0.114227,-0.109528,-0.100464,-0.0910645,-0.0803223,-0.0697937,-0.0610046,-0.0542908,-0.0498047,-0.0468445,-0.0465088,-0.0469666,-0.0469055,-0.0410156,-0.0324097,-0.0218811,-0.0149536,-0.0139465,-0.0168457,-0.0226135,-0.0293274,-0.0400085,-0.0558472,-0.0769653,-0.0996704,-0.115021,-0.118469,-0.108734,-0.0920715,-0.0697937,-0.0471802,-0.0216675,0.00341797,0.0270386,0.0452271,0.0547791,0.0543518,0.0490723,0.0418091,0.0419312,0.0518188,0.0681152,0.0890503,0.110321,0.131744,0.156097,0.17865,0.19812,0.200745,0.186646,0.15744,0.122345,0.0920715,0.0677185,0.0510864,0.0379944,0.0289917,0.0272522,0.0288696,0.036438,0.0404053,0.0396729,0.0299377,0.0152893,0.00106812,-0.00924683,-0.0137024,-0.0125427,-0.00973511,-0.00610352,-0.00189209,0.00424194,0.0134277,0.0222168,0.028717,0.0307312,0.0292664,0.0289917,0.0324707,0.0397949,0.0501404,0.057312,0.0610046,0.0588684,0.0543518,0.0471802,0.0391235,0.0299377,0.0195312,0.0100708,0.00228882,-0.00234985,-0.00415039,-0.00509644,-0.00604248,-0.00967407,-0.0174561,-0.0269775,-0.0391235,-0.0514221,-0.0627441,-0.0732117,-0.0822754,-0.089325,-0.0939026,-0.0953674,-0.0930176,-0.0900574,-0.0878601,-0.0869141,-0.0881958,-0.0882568,-0.0890503,-0.0857849,-0.0812683,-0.077179,-0.0743713,-0.0726318,-0.0715332,-0.0688477,-0.0661011,-0.0622864,-0.0617371,-0.0618896,-0.0632324,-0.0614014,-0.0549011,-0.0465088,-0.0375977,-0.032074,-0.0281067,-0.0253601,-0.0223389,-0.0216675,-0.0275269,-0.0386047,-0.0546265,-0.0704651,-0.081665,-0.0856323,-0.0804749,-0.0670471,-0.0473022,-0.0229492,0.00161743,0.0264282,0.0501404,0.0698547,0.0808716,0.0794678,0.0673828,0.0502014,0.0403442,0.0378418,0.0435486,0.0531616,0.0658264,0.0844421,0.110535,0.13739,0.158936,0.164307,0.153412,0.129181,0.100189,0.072876,0.0479126,0.0289307,0.0163879,0.0114746,0.0139465,0.0245056,0.0353699,0.0481262,0.0548401,0.0536804,0.0448914,0.0334778,0.0236206,0.0181885,0.0179749,0.0189209,0.0193176,0.0203247,0.024292,0.0306091,0.0386047,0.0422668,0.0395203,0.0347595,0.0310059,0.0305481,0.0323486,0.0350342,0.0350952,0.0344849,0.0309448,0.0261841,0.0210876,0.0148315,0.00952148,0.00424194,-0.000671387,-0.00442505,-0.00750732,-0.00683594,-0.00430298,-0.00280762,-0.00704956,-0.0158997,-0.0263672,-0.0370483,-0.0467834,-0.0567932,-0.0669861,-0.0767212,-0.0833435,-0.0866394,-0.0863037,-0.0848389,-0.0834961,-0.0828247,-0.0834351,-0.0846863,-0.0863037,-0.0883179,-0.0898743,-0.0878601,-0.0853577,-0.0832214,-0.0811462,-0.0779724,-0.0708618,-0.0620117,-0.0517578,-0.0428772,-0.0383301,-0.0349121,-0.0297241,-0.0216675,-0.0114746,-0.0032959,-0.00134277,-0.00335693,-0.00704956,-0.00946045,-0.0108032,-0.0148315,-0.0245056,-0.0396729,-0.0576477,-0.0720215,-0.0774536,-0.0762329,-0.069458,-0.0601196,-0.0503235,-0.0343018,-0.0145569,0.00906372,0.0313416,0.0425415,0.0440369,0.0350952,0.0259705,0.0202637,0.0204773,0.0249634,0.0311279,0.0420837,0.0587158,0.0834961,0.113281,0.139862,0.154083,0.152557,0.135162,0.111328,0.0863647,0.0645752,0.0476379,0.0354919,0.0302124,0.0328064,0.0437622,0.0608826,0.0761108,0.0830078,0.0798035,0.0680542,0.0522156,0.0393372,0.0293884,0.0226135,0.019989,0.0178528,0.0209961,0.0270996,0.0357056,0.0444946,0.0466309,0.0413513,0.0312805,0.0184631,0.00839233,0.00128174,-0.000213623,0.00106812,0.00415039,0.00891113,0.0124817,0.01651,0.0184631,0.0168457,0.0127563,0.00457764,-0.00537109,-0.0143738,-0.0205383,-0.0245056,-0.0252991,-0.0278625,-0.0307312,-0.0333557,-0.0357666,-0.0359802,-0.0379944,-0.041748,-0.0480652,-0.0555115,-0.0636292,-0.0679932,-0.0713501,-0.0726929,-0.0743713,-0.0777283,-0.0787354,-0.0801392,-0.0793152,-0.0768433,-0.0739746,-0.0712891,-0.069458,-0.0677185,-0.0646973,-0.0594482,-0.0534973,-0.0465698,-0.0410156,-0.0384521,-0.0361633,-0.0341492,-0.0296631,-0.0257568,-0.0221558,-0.0221558,-0.0232239,-0.0214233,-0.0176392,-0.0144348,-0.0152283,-0.0212708,-0.0340881,-0.0473022,-0.0626221,-0.0739746,-0.0852966,-0.0922241,-0.0907288,-0.0800781,-0.0599365,-0.0358276,-0.0109253,0.0142822,0.0346375,0.0479736,0.0497437,0.0415344,0.0257568,0.0139465,0.00793457,0.0107422,0.0228271,0.0422058,0.069397,0.104034,0.139008,0.165894,0.177307,0.171539,0.151062,0.123688,0.094635,0.0700073,0.052002,0.0424194,0.0418701,0.049469,0.0621338,0.0760498,0.0861206,0.0875854,0.0794067,0.0621338,0.041626,0.0226135,0.0101318,0.00415039,0.00247192,0.00268555,0.00363159,0.00750732,0.0124207,0.0157166,0.0125427,0.00482178,-0.00491333,-0.0112,-0.0109253,-0.0050354,0.00390625,0.0153809,0.0239563,0.0309448,0.0349731,0.0330811,0.0269775,0.0179138,0.00738525,-0.00314331,-0.0120239,-0.0170593,-0.01651,-0.0104065,-0.00476074,-0.00112915,-0.00128174,-0.00576782,-0.0118103,-0.0216675,-0.0340271,-0.049408,-0.0649719,-0.0767212,-0.0855103,-0.0887146,-0.0885925,-0.0861206,-0.081604,-0.0787354,-0.0741577,-0.0718689,-0.070343,-0.0691833,-0.069519,-0.0691223,-0.0710754,-0.0701294,-0.0679932,-0.0623474,-0.0539551,-0.0468445,-0.0401917,-0.0351562,-0.0302124,-0.024231,-0.0188599,-0.0154419,-0.0146179,-0.0136108,-0.0151672,-0.0159607,-0.0177307,-0.0205383,-0.0248413,-0.0324097,-0.0447693,-0.0606689,-0.078064,-0.0904846,-0.0956421,-0.0928955,-0.0862427,-0.072876,-0.0542297,-0.0266418,0.0050354,0.0314636,0.0477905,0.0507507,0.0471191,0.0386047,0.0301208,0.0245667,0.0218811,0.0269165,0.040863,0.065918,0.098175,0.131622,0.1604,0.176697,0.176849,0.161682,0.13443,0.103088,0.0711365,0.0465088,0.0280457,0.0202026,0.0226746,0.0338135,0.0497437,0.0636902,0.0717468,0.0686035,0.0566406,0.0406799,0.0253601,0.0122681,0.00302124,-0.00195312,-0.0020752,0.003479,0.0128174,0.0235596,0.0316772,0.0357056,0.0346375,0.0302124,0.0234985,0.0178528,0.0162354,0.0188599,0.0245667,0.0312805,0.0337524,0.0326843,0.0297852,0.0226135,0.0139465,0.00167847,-0.0107422,-0.0215454,-0.0275879,-0.0279236,-0.0256348,-0.0202637,-0.0161133,-0.0145569,-0.016571,-0.0226746,-0.0322876,-0.0440979,-0.0568542,-0.0706177,-0.0827637,-0.0913391,-0.0933533,-0.09021,-0.0829468,-0.0742188,-0.0671692,-0.0618896,-0.0590515,-0.057312,-0.0569153,-0.0595398,-0.0645752,-0.0713501,-0.0757141,-0.0757751,-0.0699463,-0.0602722,-0.048584,-0.0383911,-0.028656,-0.0188599,-0.00939941,-0.00228882,-0.00289917,-0.00878906,-0.017395,-0.0240173,-0.0255737,-0.0259094,-0.0267029,-0.029541,-0.032959,-0.036499,-0.0410156,-0.0487366,-0.0594482,-0.070343,-0.0767822,-0.0762939,-0.0681763,-0.0552368,-0.0389404,-0.0183105,0.00448608,0.0245056,0.0360413,0.0383911,0.0333557,0.025177,0.0200806,0.0179138,0.0212708,0.0307922,0.0504761,0.0766296,0.109467,0.136322,0.152557,0.156769,0.147034,0.12912,0.105316,0.0794678,0.057373,0.0421448,0.037384,0.0421448,0.0531616,0.0663147,0.077179,0.0837708,0.0805969,0.0689392,0.0515442,0.0337524,0.0183105,0.00946045,0.00531006,0.00726318,0.0128784,0.0236206,0.0348206,0.0428162,0.0456238,0.0406189,0.0306702,0.0206604,0.0116882,0.00564575,0.00280762,0.00448608,0.00827026,0.0147705,0.0179138,0.0189209,0.015564,0.0104065,0.00112915,-0.00979614,-0.0209961,-0.0306702,-0.0354919,-0.0360413,-0.0340271,-0.0308838,-0.0292053,-0.0284424,-0.0292664,-0.0334167,-0.0402832,-0.0512085,-0.0617981,-0.0714722,-0.0795898,-0.0826721,-0.0833435,-0.0794678,-0.0731506,-0.0664368,-0.0604553,-0.0566406,-0.0542297,-0.0524902,-0.053009,-0.0555725,-0.0599365,-0.0632935,-0.0622864,-0.056366,-0.0468445,-0.0393982,-0.0317383,-0.0248413,-0.0168457,-0.00958252,-0.00643921,-0.0101318,-0.0175781,-0.025177,-0.028717,-0.0296021,-0.0306702,-0.0353088,-0.0406189,-0.0465698,-0.050415,-0.0583191,-0.0690002,-0.0822144,-0.0908813,-0.0908203,-0.0812073,-0.0668335,-0.048645,-0.0281067,-0.00476074,0.0184631,0.0381165,0.0462341,0.0453796,0.0376587,0.0293274,0.0257568,0.0274353,0.0354919,0.0508118,0.0730286,0.101349,0.129059,0.15155,0.162476,0.157776,0.142487,0.115631,0.0899963,0.0653076,0.048645,0.0412903,0.0412903,0.0488586,0.0603333,0.0720215,0.0823364,0.0847778,0.0769043,0.0617371,0.0423584,0.0264282,0.0148926,0.0109253,0.0105896,0.0150452,0.0220032,0.0313416,0.0404053,0.0439453,0.0401306,0.0306091,0.0176392,0.00637817,-0.00247192,-0.00637817,-0.00637817,-0.00289917,0.00302124,0.00683594,0.00857544,0.00564575,0.0015564,-0.00650024,-0.0147705,-0.0255127,-0.0340881,-0.0387878,-0.038269,-0.0336304,-0.028595,-0.024292,-0.0226135,-0.0214844,-0.024353,-0.0280457,-0.0361633,-0.045105,-0.053894,-0.0613403,-0.0644226,-0.0648193,-0.0627441,-0.0594482,-0.0548401,-0.0521545,-0.0500793,-0.0504761,-0.0522156,-0.0554504,-0.0603333,-0.0657654,-0.0708008,-0.0741577,-0.072876,-0.0693359,-0.0620117,-0.0544434,-0.0461121,-0.0378418,-0.0296631,-0.0239563,-0.0205994,-0.020752,-0.0246277,-0.0292664,-0.0336914,-0.0368347,-0.0387268,-0.0403442,-0.0437012,-0.0481873,-0.0534973,-0.0576477,-0.0597229,-0.0592041,-0.0568542,-0.053009,-0.0452271,-0.0334167,-0.0169067,0.00140381,0.0173035,0.0279236,0.0330811,0.0334778,0.0315552,0.0294495,0.0296021,0.0306702,0.0378418,0.04953,0.0692749,0.092804,0.116455,0.13443,0.142609,0.140259,0.127991,0.109467,0.0899353,0.0715332,0.0578613,0.0491333,0.0487976,0.0551758,0.065918,0.0764465,0.0829468,0.0830078,0.0752258,0.060791,0.0447083,0.0309448,0.0196533,0.013092,0.0108032,0.0132141,0.0185852,0.0253601,0.0303345,0.0313416,0.0285339,0.0194702,0.00973511,-0.00088501,-0.00732422,-0.00958252,-0.00839233,-0.00396729,0.00106812,0.00576782,0.00866699,0.0106812,0.00799561,0.00357056,-0.00424194,-0.0111389,-0.0174561,-0.0209961,-0.021759,-0.019928,-0.0163879,-0.013092,-0.0118103,-0.0127563,-0.0162354,-0.021759,-0.0291138,-0.0396729,-0.0490723,-0.0593262,-0.0663147,-0.0710144,-0.0737,-0.073761,-0.0744934,-0.0729675,-0.0711975,-0.0693359,-0.068512,-0.0706177,-0.0726318,-0.074707,-0.0765076,-0.0770569,-0.0762939,-0.074707,-0.0689392,-0.0618896,-0.052002,-0.0405273,-0.0317383,-0.0248413,-0.0203247,-0.0169067,-0.0168457,-0.0190735,-0.0224304,-0.0269775,-0.0310059,-0.0356445,-0.0404663,-0.0457153,-0.0514832,-0.0555115,-0.0580444,-0.057312,-0.0536804,-0.0477905,-0.0369263,-0.0239563,-0.00817871,0.00564575,0.016449,0.024231,0.0291138,0.0296631,0.0292664,0.0258484,0.0268555,0.0306702,0.0418091,0.0586548,0.0804749,0.10321,0.123169,0.137054,0.14267,0.138458,0.125153,0.104492,0.0836182,0.0644836,0.0508728,0.0458984,0.0484619,0.0570374,0.0671692,0.0752869,0.0789185,0.0765686,0.0675049,0.052887,0.0376587,0.020813,0.00991821,0.00402832,0.0038147,0.00979614,0.0181885,0.0256958,0.0320129,0.0340881,0.032074,0.0249023,0.0155029,0.00726318,0.0017395,-0.000335693,0.00100708,0.00457764,0.0112,0.0157776,0.0189819,0.0198059,0.0166321,0.0101318,0.00201416,-0.00537109,-0.0110779,-0.015564,-0.0177917,-0.0191956,-0.0185242,-0.0187378,-0.0209351,-0.0241699,-0.0302734,-0.0374451,-0.0468445,-0.0558472,-0.0635681,-0.0691223,-0.0730896,-0.0759583,-0.0760498,-0.0761719,-0.0762329,-0.0748901,-0.0749817,-0.0742188,-0.0752258,-0.0757141,-0.0767212,-0.078064,-0.0761719,-0.0753784,-0.0722961,-0.0692749,-0.0644226,-0.0592651,-0.0521545,-0.0445557,-0.0387268,-0.0348206,-0.0313416,-0.0289307,-0.0255737,-0.0234985,-0.0245056,-0.0273743,-0.0333557,-0.0394592,-0.045105,-0.049469,-0.0536804,-0.0571899,-0.0556946,-0.0498657,-0.0362549,-0.0194092,-0.00100708,0.0138245,0.0245667,0.0322266,0.0363159,0.0377808,0.0342407,0.0263062,0.0201416,0.0188599,0.0272522,0.0422668,0.0634766,0.0857849,0.106445,0.122833,0.133362,0.134888,0.126831,0.11087,0.0889282,0.0681152,0.0510864,0.0424805,0.0413513,0.0489807,0.0584412,0.0687866,0.0751648,0.0766296,0.0736389,0.0633545,0.0498047,0.0343628,0.0202026,0.0118103,0.00918579,0.0138245,0.0206604,0.028656,0.0344238,0.0379333,0.0375061,0.0340881,0.0260925,0.0181885,0.0105896,0.00683594,0.00717163,0.00991821,0.0155029,0.0200806,0.0236816,0.0241089,0.0218811,0.0161743,0.00805664,-0.000396729,-0.00717163,-0.0126953,-0.0167236,-0.0195923,-0.0204163,-0.0206604,-0.0209351,-0.0249023,-0.0297241,-0.0368347,-0.0447083,-0.0536194,-0.0603333,-0.0668335,-0.0725403,-0.0761719,-0.0784607,-0.0798035,-0.0814819,-0.0818787,-0.0830994,-0.0845642,-0.0857849,-0.0875854,-0.0879211,-0.0870361,-0.0841064,-0.0809326,-0.0765076,-0.073822,-0.0699463,-0.0653687,-0.06073,-0.0556946,-0.0514221,-0.0483093,-0.0439453,-0.0390625,-0.0341492,-0.0267029,-0.0223389,-0.0185852,-0.0191345,-0.0230103,-0.0305481,-0.0383301,-0.0467834,-0.0516663,-0.0525513,-0.048584,-0.0368347,-0.0185852,0.00436401,0.0266418,0.0453796,0.0562439,0.0578003,0.0536194,0.0441589,0.0310059,0.0194702,0.0128174,0.0148315,0.0273132,0.049408,0.0759583,0.103424,0.125702,0.138458,0.139465,0.128448,0.107574,0.0813293,0.0556946,0.0359192,0.0252991,0.0250854,0.0339661,0.0482483,0.0645752,0.0759583,0.0827637,0.0803223,0.0697937,0.0546265,0.0371704,0.0228882,0.0137024,0.0123596,0.01651,0.0257568,0.0354919,0.0445557,0.0488586,0.0491943,0.0435486,0.0331421,0.0218201,0.0108643,0.00637817,0.00531006,0.0088501,0.0147705,0.0209351,0.025177,0.0270386,0.0257568,0.0203247,0.0108032,0.00146484,-0.00845337,-0.0147095,-0.0194702,-0.0210876,-0.0218201,-0.0218811,-0.0216064,-0.0245056,-0.0278625,-0.0354919,-0.0438232,-0.0532837,-0.0626831,-0.070343,-0.0762939,-0.0801392,-0.0821533,-0.0833435,-0.0836182,-0.0842896,-0.0858459,-0.0889282,-0.0923462,-0.098053,-0.100464,-0.101746,-0.0994568,-0.0952454,-0.0890503,-0.081665,-0.0726318,-0.0643616,-0.056366,-0.0512695,-0.0508728,-0.0507507,-0.0515442,-0.0493164,-0.046051,-0.040741,-0.036499,-0.0313416,-0.0275269,-0.0236816,-0.0218201,-0.0226135,-0.0262451,-0.0297852,-0.0292053,-0.0226135,-0.0110779,0.00430298,0.021759,0.0381165,0.0514221,0.0596619,0.0624695,0.0585938,0.0477905,0.0355835,0.0250244,0.0224304,0.028595,0.0426941,0.0631409,0.085022,0.105774,0.120209,0.124634,0.119049,0.103973,0.0817566,0.0579224,0.0376587,0.0265808,0.0241089,0.0319519,0.0448303,0.0599976,0.0734863,0.0807495,0.0812073,0.0733643,0.0609436,0.0458374,0.0302734,0.020752,0.0161133,0.0179138,0.0232239,0.0317383,0.0405273,0.0462341,0.0472412,0.0428162,0.0340271,0.0239563,0.0150452,0.0083313,0.00537109,0.00698853,0.00985718,0.0149536,0.0206604,0.0236206,0.0245056,0.0216675,0.0161133,0.00918579,0.00161743,-0.00357056,-0.00811768,-0.0101318,-0.0115967,-0.0122681,-0.0147705,-0.0175781,-0.0222778,-0.0290527,-0.0376587,-0.0473938,-0.0589294,-0.068512,-0.0769043,-0.08255,-0.0865173,-0.0892029,-0.090271,-0.0907288,-0.0921326,-0.0964355,-0.100281,-0.106232,-0.111084,-0.116516,-0.117706,-0.11792,-0.113678,-0.10498,-0.0924072,-0.0777893,-0.065155,-0.0553589,-0.0484009,-0.0424805,-0.0392761,-0.0383301,-0.0421448,-0.0461731,-0.0495911,-0.0509338,-0.0489807,-0.0448303,-0.0396118,-0.0298767,-0.0182495,-0.00280762,0.0147095,0.0297241,0.0414124,0.050415,0.0554504,0.0563049,0.0531616,0.0461121,0.0381165,0.0306702,0.0289307,0.0308838,0.0412903,0.0557861,0.074646,0.0932922,0.110077,0.120148,0.122162,0.114349,0.0994568,0.0787964,0.057312,0.0387268,0.0270386,0.0257568,0.0307312,0.0415344,0.0542297,0.0671082,0.0749817,0.0777283,0.0724792,0.0612793,0.0467834,0.0320129,0.0205994,0.0151672,0.0134277,0.0154419,0.020752,0.0273743,0.0337524,0.036499,0.0354309,0.0314026,0.0257568,0.0206604,0.0158997,0.0137634,0.0133667,0.0157166,0.017395,0.0196533,0.0214233,0.0222168,0.0224915,0.0205994,0.0194702,0.01651,0.0136108,0.0112,0.011261,0.0085144,0.00564575,0.00106812,-0.00436401,-0.0106812,-0.0176392,-0.0263062,-0.0355835,-0.045105,-0.0546875,-0.0633545,-0.0711365,-0.0779114,-0.0852356,-0.0908203,-0.0964966,-0.100952,-0.10611,-0.109863,-0.114014,-0.11618,-0.118317,-0.119202,-0.119385,-0.117188,-0.114014,-0.107666,-0.100281,-0.0916748,-0.0817566,-0.0717468,-0.0603333,-0.0502014,-0.0418091,-0.0381775,-0.036377,-0.0376587,-0.0386047,-0.0412903,-0.0441589,-0.0448914,-0.0433655,-0.0340881,-0.0195312,-6.10352e-05,0.0194092,0.0379944,0.0533447,0.0640259,0.0697937,0.0687866,0.0602722,0.0473022,0.0332947,0.0258484,0.0250854,0.0341492,0.0499878,0.0691833,0.0899353,0.108856,0.122955,0.128265,0.123077,0.108246,0.085968,0.0626221,0.041748,0.0302734,0.0258484,0.0280457,0.0354919,0.0445557,0.0540161,0.0602722,0.061676,0.0575256,0.0476379,0.0346985,0.0224915,0.0149536,0.012146,0.0135498,0.0161743,0.0201416,0.024231,0.0265808,0.0270996,0.0247803,0.0212708,0.0167236,0.0138855,0.0134888,0.0173035,0.0214844,0.02771,0.0326233,0.0355835,0.0356445,0.0326233,0.0285339,0.0238953,0.019928,0.017395,0.0158997,0.0175171,0.0192566,0.0213318,0.0214233,0.0185852,0.013031,0.00402832,-0.00744629,-0.0191956,-0.0303955,-0.0406189,-0.0496521,-0.0569763,-0.0624084,-0.0677185,-0.0725403,-0.0785828,-0.0856934,-0.0949097,-0.106903,-0.11792,-0.126984,-0.13382,-0.137665,-0.138458,-0.136841,-0.13147,-0.12323,-0.112488,-0.101807,-0.0920715,-0.0854492,-0.0795898,-0.0742188,-0.0691223,-0.0645752,-0.0612183,-0.0608826,-0.0579224,-0.0542908,-0.0475769,-0.0387878,-0.0293884,-0.0169678,-0.00280762,0.0154419,0.0327454,0.0479736,0.0583801,0.0633545,0.065094,0.0623474,0.0549622,0.0453796,0.0354919,0.0324097,0.0352478,0.0473938,0.061676,0.0783081,0.094696,0.108795,0.116974,0.118042,0.108521,0.091217,0.0708008,0.0518188,0.0386047,0.0310059,0.0313416,0.0368347,0.0470581,0.0587769,0.0680542,0.0719604,0.0691833,0.0594482,0.0468445,0.0307312,0.0179749,0.00912476,0.00610352,0.00765991,0.0116882,0.0166321,0.0210876,0.0245667,0.0238342,0.0203247,0.0127563,0.00582886,-0.000732422,-0.0015564,0.000213623,0.00491333,0.0107422,0.0169678,0.0238342,0.0284424,0.0306091,0.0289307,0.025238,0.0228882,0.0201416,0.0202026,0.0200806,0.0223389,0.0249023,0.0279236,0.0282593,0.0246887,0.0188599,0.00958252,-0.00106812,-0.0124207,-0.0250244,-0.036499,-0.0468445,-0.0546265,-0.0605469,-0.0654297,-0.070343,-0.0765686,-0.0842285,-0.0916748,-0.101746,-0.111603,-0.122223,-0.128998,-0.134155,-0.134766,-0.132202,-0.127167,-0.118591,-0.107513,-0.094574,-0.0829468,-0.073822,-0.066925,-0.0622253,-0.0597229,-0.0576477,-0.0569763,-0.057251,-0.0562439,-0.0542297,-0.0476379,-0.0357056,-0.0189209,0.00012207,0.0181885,0.033905,0.0458374,0.0557861,0.0610046,0.0620117,0.0555725,0.0437012,0.0306702,0.0222168,0.0209961,0.0280457,0.0391846,0.0524902,0.0667725,0.0820923,0.0960388,0.105835,0.105988,0.0965881,0.0795288,0.061615,0.0467834,0.0377197,0.0343018,0.0360413,0.0412903,0.049469,0.058136,0.0672607,0.0718689,0.0708008,0.0636292,0.0518799,0.0394592,0.0292053,0.0225525,0.0176392,0.0159607,0.0145569,0.013092,0.0124817,0.012085,0.0105896,0.00784302,0.00308228,-0.000213623,-0.00280762,-0.00222778,0.000549316,0.00509644,0.00845337,0.0110168,0.0123596,0.0144958,0.015625,0.0181885,0.020813,0.0223389,0.0261841,0.028595,0.0331421,0.0353088,0.0371094,0.0353699,0.0315552,0.0245667,0.0167847,0.00817871,6.10352e-05,-0.00784302,-0.0153809,-0.0226135,-0.029541,-0.037384,-0.046051,-0.0561218,-0.0688477,-0.0841675,-0.0997925,-0.113495,-0.124695,-0.133087,-0.136383,-0.137329,-0.134216,-0.128998,-0.121063,-0.112885,-0.104431,-0.0987244,-0.0940247,-0.0917969,-0.0888062,-0.0866394,-0.0840149,-0.0804138,-0.0754395,-0.0686035,-0.0570374,-0.0410156,-0.0194092,0.00222778,0.0232849,0.0397949,0.0521545,0.0614624,0.0662537,0.0649719,0.0565186,0.0428772,0.0278625,0.0187988,0.017395,0.0233459,0.0336304,0.0466309,0.0614014,0.0775757,0.0909424,0.0983887,0.0954285,0.0823364,0.0638123,0.0444336,0.0305481,0.0231018,0.0230103,0.0289307,0.0392761,0.0525513,0.0681763,0.0813293,0.0898132,0.090332,0.0818787,0.0693359,0.0557861,0.045166,0.0371704,0.032135,0.0279846,0.0244446,0.0231628,0.0219421,0.0209961,0.0171204,0.00866699,-0.00112915,-0.0105286,-0.0157776,-0.0171814,-0.0171204,-0.0149536,-0.0128784,-0.00979614,-0.00732422,-0.0050354,-0.00268555,-0.000793457,0.00140381,0.00442505,0.00918579,0.0152893,0.0226746,0.0306702,0.0365906,0.0399475,0.0391846,0.0350952,0.0283203,0.0201416,0.0104675,-0.00012207,-0.00805664,-0.0168457,-0.0223389,-0.0279846,-0.0334778,-0.0409546,-0.0502625,-0.0624084,-0.074707,-0.0892029,-0.102966,-0.115295,-0.125031,-0.13028,-0.131073,-0.128387,-0.12384,-0.11557,-0.105713,-0.0953674,-0.0856934,-0.0791931,-0.074707,-0.0727539,-0.0707397,-0.0674438,-0.0653076,-0.0595398,-0.0531616,-0.0402832,-0.0227661,-0.0015564,0.0184021,0.0366516,0.0505981,0.0617371,0.06604,0.0658264,0.0569763,0.0435486,0.028717,0.0173035,0.0124207,0.0135498,0.0212708,0.0340881,0.0480652,0.0637512,0.0760498,0.0812073,0.078064,0.0663147,0.0509949,0.0343018,0.0219421,0.0155029,0.0167847,0.0244446,0.0377197,0.0541687,0.069458,0.0822144,0.0873718,0.0852966,0.0769043,0.0649719,0.052887,0.041626,0.0350952,0.0305481,0.0297241,0.0303955,0.032074,0.0315552,0.028717,0.0205383,0.0100708,-0.000274658,-0.0101929,-0.0166321,-0.0204773,-0.021759,-0.0201416,-0.0169067,-0.0126953,-0.0105286,-0.00912476,-0.00924683,-0.0083313,-0.00784302,-0.0062561,-0.00146484,0.00408936,0.0117493,0.0184631,0.0232239,0.0256958,0.025238,0.0219421,0.0171204,0.00958252,0.00228882,-0.00463867,-0.0117493,-0.0159607,-0.0211487,-0.024292,-0.0303345,-0.0381775,-0.0475769,-0.0595398,-0.0714722,-0.0832825,-0.094574,-0.101685,-0.108002,-0.110931,-0.110138,-0.107178,-0.101288,-0.0948181,-0.0880432,-0.0832825,-0.0783081,-0.0744324,-0.0709534,-0.06604,-0.0632324,-0.0603333,-0.0576477,-0.0506592,-0.0371704,-0.0198669,-0.000274658,0.0169067,0.0316162,0.0458374,0.0590515,0.0678406,0.0696716,0.0606079,0.0473938,0.0320129,0.0235596,0.0202026,0.0194702,0.0227661,0.0288696,0.0426025,0.0587769,0.0736389,0.0801392,0.077301,0.065918,0.0499268,0.03302,0.0186462,0.00933838,0.00537109,0.00900269,0.0189819,0.033905,0.0508118,0.0663147,0.0768433,0.0785828,0.0738831,0.0631409,0.052002,0.0421448,0.0352478,0.0283813,0.0246887,0.0233459,0.0256958,0.0279846,0.0274353,0.0233459,0.0143738,0.00457764,-0.00482178,-0.012146,-0.01651,-0.0191956,-0.0192566,-0.0157776,-0.0123596,-0.00827026,-0.0067749,-0.00582886,-0.00610352,-0.00570679,-0.00671387,-0.00631714,-0.00491333,0.00134277,0.00704956,0.0129395,0.016571,0.0171814,0.0170593,0.0128784,0.00692749,-0.00189209,-0.0115967,-0.019928,-0.0274353,-0.0344238,-0.0410156,-0.0481873,-0.0550232,-0.0622864,-0.0704041,-0.0800781,-0.0903931,-0.0992737,-0.107117,-0.111755,-0.114441,-0.114563,-0.109131,-0.102692,-0.0920715,-0.0829468,-0.0747681,-0.0671692,-0.0599365,-0.053833,-0.0507507,-0.0479126,-0.0445557,-0.0350342,-0.0193176,-0.000946045,0.0177917,0.0345764,0.0515442,0.0684509,0.0823364,0.0877991,0.0832214,0.0706787,0.0571289,0.0447083,0.0360413,0.0297241,0.0265198,0.0293884,0.0385132,0.052002,0.0638123,0.0712891,0.070343,0.0624084,0.0488586,0.0335693,0.0186462,0.0067749,0.00201416,0.00296021,0.0110779,0.0241089,0.0383911,0.0540161,0.0649719,0.0701904,0.0681152,0.0603943,0.0522766,0.0437012,0.0371094,0.0316772,0.0280457,0.0255737,0.0267639,0.0274353,0.0250854,0.0187988,0.00900269,-0.00262451,-0.012146,-0.021759,-0.0273743,-0.0293274,-0.0273132,-0.0222778,-0.0163879,-0.0114136,-0.00817871,-0.00650024,-0.00637817,-0.00784302,-0.0112,-0.0132751,-0.0135498,-0.00827026,-0.000549316,0.00906372,0.0176392,0.0247803,0.0296021,0.0303955,0.0261841,0.0162964,0.00408936,-0.0110168,-0.0254211,-0.0386047,-0.0506592,-0.0604553,-0.0673218,-0.0733643,-0.078186,-0.0822144,-0.0877991,-0.0944214,-0.102631,-0.110748,-0.119049,-0.124023,-0.124573,-0.121002,-0.116241,-0.108643,-0.0987854,-0.0843506,-0.0699463,-0.0575256,-0.0498047,-0.0435486,-0.0357666,-0.0227661,-0.00469971,0.0124207,0.0285339,0.0430298,0.0597229,0.0789185,0.093811,0.100189,0.0950317,0.0842896,0.0721436,0.0624084,0.0551758,0.049469,0.0457153,0.0483093,0.0539551,0.0636292,0.0729675,0.07724,0.0742188,0.062561,0.0462341,0.0293274,0.0143738,0.00604248,0.00234985,0.00531006,0.0124207,0.024292,0.0400085,0.0562439,0.0678406,0.0725403,0.0689392,0.061615,0.0522156,0.0440979,0.0363159,0.0297241,0.0256958,0.0235596,0.0245056,0.0244446,0.0231628,0.0183105,0.0110168,0.000946045,-0.0105896,-0.0210876,-0.0307922,-0.0361023,-0.0375061,-0.037262,-0.0360413,-0.033905,-0.0306091,-0.0253601,-0.0197449,-0.0153809,-0.0126953,-0.00952148,-0.00631714,-0.00140381,0.00335693,0.00799561,0.0105896,0.012207,0.0126953,0.0117493,0.0100708,0.00631714,0.00146484,-0.00558472,-0.015625,-0.0264282,-0.0394592,-0.0526733,-0.0658264,-0.0798645,-0.0919495,-0.102692,-0.109924,-0.114777,-0.118713,-0.12207,-0.125305,-0.125031,-0.122833,-0.117371,-0.113342,-0.108459,-0.103088,-0.0954285,-0.0841064,-0.0727539,-0.0614624,-0.0473022,-0.0327454,-0.0133667,0.00799561,0.0309448,0.0516663,0.0705261,0.0861816,0.0973816,0.102631,0.102356,0.0966492,0.0885925,0.0774536,0.0675049,0.0611267,0.0612793,0.0667725,0.0753784,0.0831604,0.0887146,0.0905457,0.0869141,0.0768433,0.061554,0.0424805,0.0247803,0.0117493,0.00671387,0.00952148,0.019928,0.0333557,0.0490723,0.0637512,0.073822,0.0798035,0.0785217,0.0724182,0.0626831,0.0502625,0.0394592,0.0307922,0.0252991,0.0226135,0.0200806,0.0175781,0.013031,0.0071106,-0.000793457,-0.00891113,-0.0181274,-0.0283813,-0.036499,-0.0430298,-0.0455017,-0.0458984,-0.0457764,-0.0462341,-0.0447083,-0.0428772,-0.0405273,-0.0362549,-0.0310059,-0.0231628,-0.0140991,-0.0038147,0.00515747,0.0138855,0.0188599,0.0216064,0.0203247,0.0138855,0.00616455,-0.00262451,-0.0105896,-0.0178528,-0.0237732,-0.0307312,-0.0375977,-0.0447083,-0.052948,-0.0620728,-0.0742188,-0.0878601,-0.102356,-0.115906,-0.129608,-0.138062,-0.142822,-0.142761,-0.137451,-0.128662,-0.117523,-0.103821,-0.0904846,-0.0785217,-0.0681152,-0.0614624,-0.0542297,-0.046051,-0.0334778,-0.0175171,0.00161743,0.0224915,0.044281,0.0653076,0.0863647,0.101532,0.108582,0.108124,0.098999,0.0883179,0.0757141,0.0664368,0.0586548,0.0556946,0.0575867,0.0632324,0.0708618,0.0789185,0.0802612,0.0775146,0.0679321,0.0546875,0.0406189,0.0292053,0.0232849,0.021759,0.0266418,0.036499,0.0487976,0.0631409,0.0758972,0.0834961,0.0861816,0.0836792,0.0775757,0.0714722,0.0654297,0.0602722,0.0549622,0.049469,0.045105,0.0390015,0.0314026,0.0213318,0.00772095,-0.00738525,-0.0205994,-0.0316162,-0.0405273,-0.0457153,-0.048584,-0.0484009,-0.0490723,-0.0484009,-0.0491943,-0.0498657,-0.0508728,-0.0500793,-0.0481262,-0.0419312,-0.0345764,-0.024231,-0.0115356,0.000610352,0.011261,0.0175781,0.020813,0.0184631,0.0144958,0.00765991,-0.00146484,-0.00952148,-0.0186462,-0.0275879,-0.036377,-0.0458984,-0.0563049,-0.0667114,-0.0785828,-0.0914917,-0.104645,-0.118805,-0.130951,-0.14035,-0.145691,-0.146362,-0.143158,-0.137665,-0.129181,-0.120209,-0.108643,-0.098053,-0.0858459,-0.0740356,-0.061554,-0.0465088,-0.0285339,-0.00598145,0.0195923,0.04422,0.065918,0.082489,0.094635,0.101288,0.103882,0.100128,0.0914917,0.0796509,0.0691833,0.065094,0.0654297,0.0707397,0.0758362,0.079071,0.0798645,0.077301,0.070343,0.0583801,0.0436096,0.0266418,0.0135498,0.00665283,0.00839233,0.0184631,0.0332336,0.0502625,0.0657654,0.0773926,0.0851135,0.0871277,0.0857849,0.0817566,0.077179,0.0726318,0.0707397,0.0713501,0.0721436,0.0738831,0.0706787,0.0641479,0.0511475,0.0342407,0.0149536,-0.00323486,-0.0187988,-0.0303345,-0.0390015,-0.041687,-0.0429382,-0.0393372,-0.0371704,-0.0348206,-0.0375977,-0.0432129,-0.0508118,-0.0557861,-0.057312,-0.0539551,-0.0473938,-0.0386047,-0.0257568,-0.0124817,0.00167847,0.012146,0.0180664,0.0161743,0.0108643,0.00213623,-0.00765991,-0.0169067,-0.0275879,-0.0381775,-0.0501404,-0.06073,-0.0704041,-0.0812073,-0.0896606,-0.101013,-0.112152,-0.123749,-0.133423,-0.138245,-0.138794,-0.135712,-0.130188,-0.125092,-0.118317,-0.110535,-0.100464,-0.0899963,-0.0820923,-0.0731506,-0.0628052,-0.0457153,-0.0223389,0.0062561,0.0353088,0.0610657,0.0830994,0.1008,0.112823,0.117126,0.11261,0.0996094,0.0834961,0.0684509,0.0587769,0.0560303,0.0578613,0.0648193,0.0707397,0.0767822,0.0807495,0.078125,0.0697327,0.0533447,0.0336914,0.013031,-0.0012207,-0.00799561,-0.00558472,0.00610352,0.0231628,0.0434265,0.0633545,0.0802002,0.0913391,0.0942383,0.0914001,0.0826721,0.0739746,0.0657654,0.0610046,0.0582581,0.0583191,0.0592651,0.0587769,0.0559082,0.0489197,0.0366516,0.0223389,0.00637817,-0.00900269,-0.0229492,-0.0330811,-0.0400085,-0.041748,-0.0411987,-0.0397339,-0.0390015,-0.0393982,-0.0413513,-0.0420227,-0.0424805,-0.0405273,-0.0366516,-0.0297852,-0.0209351,-0.0085144,0.00280762,0.0118713,0.0177917,0.0173035,0.0128784,0.00476074,-0.00564575,-0.0190735,-0.0328064,-0.0458374,-0.0576477,-0.0692749,-0.0768433,-0.0845642,-0.0926208,-0.103088,-0.115112,-0.127838,-0.137909,-0.144623,-0.148804,-0.15033,-0.148712,-0.144897,-0.135315,-0.12088,-0.106049,-0.0933533,-0.0827637,-0.0706177,-0.0540161,-0.0306091,-0.00592041,0.0205994,0.0449524,0.0673828,0.0888672,0.107452,0.120331,0.121399,0.11322,0.0987854,0.0843506,0.0741577,0.0677795,0.0683289,0.070282,0.074646,0.0791321,0.0832214,0.0842285,0.0794678,0.065918,0.0455017,0.0220947,0.00598145,-0.00537109,-0.0050354,0.00268555,0.0153809,0.0316772,0.0506592,0.0689392,0.0834961,0.0899353,0.0890503,0.081665,0.0718079,0.0626831,0.0554504,0.0518188,0.052002,0.0516663,0.0514832,0.0487976,0.0435486,0.0363159,0.025177,0.0116882,-0.00442505,-0.0200806,-0.0336914,-0.0409546,-0.0444946,-0.0444946,-0.0432129,-0.041748,-0.040802,-0.0371094,-0.0337524,-0.0302124,-0.0273132,-0.025177,-0.0215454,-0.0177307,-0.0110168,-0.00442505,0.00134277,0.00576782,0.00631714,0.00482178,0.0012207,-0.00262451,-0.00900269,-0.0182495,-0.0308838,-0.0458984,-0.0598755,-0.0727539,-0.0851135,-0.0979309,-0.112274,-0.126251,-0.137451,-0.143829,-0.143677,-0.14035,-0.138519,-0.135986,-0.132019,-0.122681,-0.110596,-0.0996704,-0.0917358,-0.085907,-0.0751648,-0.0563049,-0.028656,0.00112915,0.0269165,0.0488586,0.0677795,0.0888672,0.105316,0.113098,0.108978,0.0973816,0.0836792,0.0734253,0.0688477,0.0686035,0.0712891,0.0735474,0.0766296,0.078064,0.0798035,0.0767212,0.0674438,0.0501404,0.0307312,0.0118713,0.00201416,0.00180054,0.00933838,0.0223389,0.0368347,0.0525513,0.068512,0.0828247,0.0917358,0.0932312,0.0889893,0.0805359,0.0733032,0.0668335,0.0635681,0.0618896,0.0609436,0.0589294,0.053772,0.0463867,0.0343628,0.0225525,0.00857544,-0.0062561,-0.0214844,-0.0350342,-0.0444946,-0.048584,-0.0474548,-0.0465698,-0.0465088,-0.0480652,-0.0484619,-0.0466309,-0.0448914,-0.0418701,-0.0387268,-0.0350952,-0.0284424,-0.0201416,-0.0112,-0.0017395,0.00476074,0.00738525,0.00665283,0.00234985,-0.00357056,-0.00979614,-0.0186462,-0.0293274,-0.0443726,-0.0580444,-0.0711365,-0.0810852,-0.0908813,-0.102356,-0.114441,-0.124756,-0.130798,-0.130615,-0.127838,-0.124756,-0.124084,-0.122498,-0.11731,-0.107239,-0.0951538,-0.0882568,-0.0830078,-0.0767212,-0.0601196,-0.0324097,0.00106812,0.0318909,0.0546265,0.0730896,0.092804,0.111206,0.123352,0.118713,0.101685,0.0804749,0.0655823,0.0612183,0.0620728,0.0644836,0.0658264,0.0674438,0.0728149,0.07724,0.0771179,0.0679321,0.048584,0.0256348,0.00436401,-0.00939941,-0.0118103,-0.00396729,0.00939941,0.0276489,0.0444336,0.062561,0.0794678,0.0915527,0.0963135,0.0914001,0.0821533,0.0738831,0.0690613,0.069458,0.0714111,0.0724182,0.0716248,0.0682678,0.0610657,0.0498657,0.0344238,0.0167847,-0.000610352,-0.0167847,-0.03302,-0.0419312,-0.0466309,-0.0444946,-0.0401917,-0.0387878,-0.0422668,-0.0473022,-0.0496521,-0.0489807,-0.0469055,-0.0457764,-0.0443726,-0.0391235,-0.0293274,-0.01651,-0.00436401,0.0017395,0.00323486,0,-0.00592041,-0.0137634,-0.0224304,-0.0326233,-0.0441589,-0.0567017,-0.0697937,-0.0794067,-0.0874634,-0.0957642,-0.104553,-0.115967,-0.127655,-0.134033,-0.135895,-0.133881,-0.130798,-0.126587,-0.122009,-0.112946,-0.101074,-0.0895996,-0.0796509,-0.0734253,-0.0630188,-0.0473022,-0.0214844,0.00704956,0.0361023,0.0610657,0.0827637,0.102295,0.118317,0.125763,0.120331,0.105042,0.0853577,0.0696716,0.060791,0.0582581,0.0599365,0.0637512,0.0686035,0.0744934,0.0805969,0.0789795,0.0686035,0.0496521,0.0255737,0.00308228,-0.012207,-0.0175781,-0.0105896,0.00415039,0.024231,0.0463867,0.0679321,0.0867004,0.0992737,0.102692,0.098053,0.0874634,0.0751648,0.0673828,0.0630188,0.065033,0.0657654,0.0674438,0.065094,0.060791,0.0520935,0.0406189,0.0249023,0.00631714,-0.012085,-0.028595,-0.0391235,-0.0440979,-0.0422668,-0.0402832,-0.0393982,-0.0410767,-0.0426941,-0.0429382,-0.041626,-0.0397949,-0.0400085,-0.0381775,-0.0337524,-0.0241699,-0.0134277,-0.00357056,0.00134277,0.000457764,-0.00457764,-0.0119324,-0.0219421,-0.0346375,-0.0483093,-0.0641479,-0.0791321,-0.0917969,-0.101074,-0.108734,-0.114349,-0.121887,-0.129395,-0.136658,-0.138397,-0.137573,-0.135498,-0.133698,-0.132629,-0.12851,-0.118988,-0.106506,-0.0941467,-0.0838928,-0.0714111,-0.0524902,-0.0249023,0.00671387,0.0377197,0.0630188,0.0851135,0.104218,0.120667,0.128784,0.124359,0.108917,0.0898132,0.0751038,0.0666504,0.0632935,0.0643616,0.0667725,0.072876,0.0796509,0.0857849,0.0842896,0.0741577,0.0550232,0.0316162,0.00805664,-0.0107422,-0.0191345,-0.0170593,-0.00469971,0.0139465,0.0358276,0.0577087,0.0793152,0.0953674,0.103485,0.101624,0.0933533,0.0830078,0.0743103,0.0689392,0.0671692,0.0664368,0.0672607,0.0664978,0.0641479,0.0583801,0.0492554,0.0369873,0.0221558,0.00604248,-0.0114746,-0.024292,-0.0328064,-0.0351562,-0.0344849,-0.0358276,-0.0377808,-0.0400696,-0.0397339,-0.0370483,-0.0345764,-0.0332336,-0.0330811,-0.0296631,-0.0241089,-0.0161133,-0.00891113,-0.00558472,-0.00592041,-0.0103455,-0.0169678,-0.0259705,-0.036499,-0.0490723,-0.0629578,-0.0775146,-0.0924683,-0.104309,-0.11377,-0.121674,-0.129669,-0.137177,-0.144623,-0.147247,-0.145691,-0.140259,-0.136902,-0.132812,-0.128052,-0.11792,-0.105835,-0.0928955,-0.0832825,-0.0723572,-0.0551758,-0.0300598,0.00213623,0.0323486,0.057373,0.0792542,0.0997314,0.11853,0.128662,0.125153,0.11026,0.0901489,0.0749817,0.0663147,0.061676,0.0593262,0.0584412,0.0628967,0.069397,0.0761108,0.074646,0.065155,0.0478516,0.0276489,0.00637817,-0.0103455,-0.0171814,-0.0138855,-0.00167847,0.0161743,0.0362549,0.0559692,0.0752258,0.0903931,0.0973816,0.0953064,0.0871277,0.0783081,0.0716248,0.0690002,0.0689392,0.0684509,0.0688477,0.0675049,0.0630798,0.0558472,0.045166,0.0328979,0.0189819,0.00442505,-0.00952148,-0.0198669,-0.0249023,-0.0238342,-0.0214844,-0.020813,-0.0228882,-0.025238,-0.0246277,-0.0209961,-0.0170593,-0.015564,-0.0144348,-0.0117493,-0.00543213,0.00256348,0.00717163,0.00704956,0.00189209,-0.00610352,-0.0167847,-0.0285339,-0.041748,-0.0562439,-0.0705261,-0.085907,-0.100189,-0.113434,-0.123413,-0.132355,-0.140869,-0.150879,-0.158936,-0.161957,-0.158264,-0.152008,-0.145691,-0.139465,-0.131744,-0.118713,-0.10376,-0.0912781,-0.0819397,-0.0713501,-0.0549011,-0.0282593,0.00189209,0.0310669,0.0560303,0.0793152,0.103027,0.123352,0.133972,0.129333,0.112488,0.0920105,0.074646,0.0632324,0.0552979,0.0502014,0.0505981,0.0564575,0.0666504,0.0744324,0.0773926,0.0700073,0.0544434,0.0322876,0.00991821,-0.00912476,-0.0177917,-0.0161133,-0.00537109,0.0108643,0.0320129,0.0541077,0.0764465,0.0921326,0.0975952,0.094696,0.0848389,0.0744324,0.0669861,0.0604553,0.0587769,0.0579224,0.0599365,0.0602112,0.0578613,0.0505371,0.0397339,0.0261841,0.0110168,-0.00463867,-0.0185852,-0.0282593,-0.0306091,-0.0262451,-0.0194702,-0.0154419,-0.0140991,-0.0134888,-0.0118103,-0.00924683,-0.00784302,-0.00805664,-0.00900269,-0.0065918,-0.000213623,0.00872803,0.0160522,0.0193176,0.0179138,0.0110168,0.00134277,-0.0126953,-0.0288696,-0.0475159,-0.0673828,-0.0877991,-0.10672,-0.118927,-0.128113,-0.133484,-0.139343,-0.146912,-0.152954,-0.154297,-0.151215,-0.146973,-0.144165,-0.144012,-0.140686,-0.131134,-0.115692,-0.101196,-0.0891418,-0.0753784,-0.0548401,-0.0241089,0.0110168,0.0430298,0.0668335,0.0873718,0.107178,0.124756,0.132538,0.125641,0.106995,0.0861816,0.0706787,0.0622253,0.0557861,0.0514832,0.0523376,0.0590515,0.0700684,0.078125,0.0775146,0.0668335,0.0497437,0.0283203,0.00616455,-0.0125427,-0.0220032,-0.020752,-0.00906372,0.00991821,0.0326843,0.0564575,0.0778503,0.0940857,0.100464,0.0963135,0.0872498,0.0754395,0.0666504,0.0585938,0.0535583,0.0506592,0.0508728,0.0521545,0.0501404,0.0439453,0.0326843,0.0204163,0.00683594,-0.00698853,-0.0213318,-0.0317383,-0.0367126,-0.0352478,-0.0297241,-0.0263672,-0.0239563,-0.0231018,-0.0179138,-0.012207,-0.00759888,-0.00531006,-0.00308228,0.00140381,0.00891113,0.016449,0.0202026,0.0194092,0.0148315,0.00805664,-0.00268555,-0.0161743,-0.0314026,-0.0476379,-0.0644226,-0.0809326,-0.0973816,-0.111938,-0.123016,-0.132202,-0.141266,-0.15033,-0.157532,-0.158722,-0.156097,-0.149475,-0.142548,-0.13678,-0.127258,-0.114227,-0.0978394,-0.0834351,-0.074646,-0.062561,-0.0452881,-0.0179749,0.0153809,0.0448914,0.0701294,0.0915527,0.114105,0.133209,0.142761,0.135895,0.114899,0.0906067,0.0709534,0.0587769,0.0498657,0.0430908,0.0421448,0.0463867,0.0565186,0.065094,0.0674438,0.0587769,0.0424805,0.0200806,-0.00222778,-0.0191345,-0.0269165,-0.0241089,-0.013092,0.00524902,0.0264282,0.0511475,0.074646,0.0923462,0.0991821,0.0971069,0.0881958,0.0809937,0.0734253,0.0690613,0.0633545,0.0593262,0.0565796,0.0534363,0.048645,0.0397339,0.02771,0.0143738,0.000396729,-0.0119324,-0.0236206,-0.0314636,-0.0345764,-0.0317993,-0.0290527,-0.0267639,-0.0287781,-0.0296021,-0.0263672,-0.0214844,-0.0157776,-0.0120239,-0.00799561,-0.000732422,0.0102539,0.0202637,0.0246277,0.0238953,0.0179138,0.0088501,-0.00363159,-0.0178528,-0.0353699,-0.0539551,-0.0730896,-0.0917358,-0.108795,-0.121552,-0.131409,-0.139465,-0.147034,-0.155182,-0.160126,-0.159332,-0.1539,-0.148132,-0.142944,-0.139252,-0.131866,-0.121155,-0.106995,-0.0936279,-0.080658,-0.0630188,-0.037262,-0.00482178,0.0312195,0.0631409,0.0915527,0.117035,0.137909,0.150543,0.150604,0.137726,0.117584,0.0973816,0.0804749,0.0686646,0.0588684,0.0561218,0.0598755,0.0690002,0.0783081,0.0829468,0.0773926,0.0631409,0.0432739,0.0189819,-0.00369263,-0.0224915,-0.0303955,-0.0289307,-0.0161133,0.00323486,0.0265808,0.0505981,0.0713501,0.0841064,0.0888672,0.0839539,0.0761719,0.0666504,0.0583191,0.0513306,0.0468445,0.0448303,0.0445557,0.0440369,0.0418091,0.0343628,0.0255127,0.0138855,0.00241089,-0.0101929,-0.0186462,-0.0249634,-0.0253601,-0.0236206,-0.0201416,-0.0194702,-0.0182495,-0.0171814,-0.0138855,-0.0105896,-0.00817871,-0.00671387,-0.00268555,0.00402832,0.0107422,0.0177307,0.0185852,0.0162354,0.00772095,-0.00262451,-0.016571,-0.0326843,-0.0514832,-0.0699463,-0.0883179,-0.105438,-0.119324,-0.129669,-0.137512,-0.143555,-0.15094,-0.155365,-0.157654,-0.15451,-0.150055,-0.144348,-0.140472,-0.134827,-0.125763,-0.112823,-0.0996094,-0.0876465,-0.0751038,-0.0571899,-0.0296021,0.00308228,0.0362549,0.0638123,0.0885925,0.111877,0.132538,0.144501,0.141754,0.127167,0.106445,0.0888672,0.0769043,0.0672607,0.0602112,0.0579834,0.0641479,0.0751038,0.085022,0.0891418,0.0834351,0.0701904,0.0505371,0.0288696,0.00811768,-0.00765991,-0.0131531,-0.00985718,0.00146484,0.0200806,0.0404053,0.061615,0.0788574,0.0881958,0.0887146,0.0827637,0.0744324,0.0653076,0.0576477,0.048645,0.0427551,0.0390625,0.0378418,0.0354919,0.0291138,0.020752,0.0105896,0.000671387,-0.00900269,-0.0184021,-0.0260315,-0.0292053,-0.027771,-0.0231018,-0.0203247,-0.0196533,-0.020752,-0.0183105,-0.0138245,-0.00952148,-0.00592041,-0.00363159,0.00222778,0.0112,0.0197449,0.025238,0.0239563,0.0191956,0.00912476,-0.0038147,-0.0197449,-0.0379333,-0.057251,-0.0761719,-0.0956421,-0.113159,-0.126831,-0.136658,-0.144104,-0.150482,-0.157196,-0.161865,-0.163422,-0.160004,-0.153839,-0.14859,-0.142273,-0.134369,-0.124512,-0.110474,-0.0977173,-0.0843506,-0.0690002,-0.049408,-0.0222778,0.0088501,0.0411377,0.070282,0.0964355,0.119049,0.137238,0.145172,0.142151,0.127167,0.106903,0.0880432,0.0736389,0.0633545,0.0561218,0.0552368,0.0599976,0.070282,0.0808716,0.0849609,0.0800781,0.065979,0.0462341,0.0238953,0.00476074,-0.00839233,-0.0115356,-0.00698853,0.0062561,0.0257568,0.0481262,0.0700684,0.0861816,0.0928955,0.0901489,0.0818787,0.0707397,0.0602722,0.0513306,0.0449524,0.0405273,0.0388489,0.0389404,0.0383911,0.0350342,0.0272522,0.0163879,0.00296021,-0.00973511,-0.0205383,-0.0265198,-0.02771,-0.0256958,-0.0195923,-0.0142822,-0.00857544,-0.00497437,-0.00128174,0.00201416,0.00369263,0.00463867,0.00537109,0.00732422,0.0125427,0.0184631,0.0216675,0.0206604,0.0149536,0.00497437,-0.00866699,-0.025238,-0.0444946,-0.0647583,-0.085968,-0.106567,-0.123627,-0.137787,-0.146576,-0.151733,-0.15686,-0.16095,-0.164093,-0.163696,-0.159515,-0.152954,-0.14624,-0.141602,-0.13382,-0.123352,-0.108795,-0.0943604,-0.082489,-0.0708008,-0.0545654,-0.0306702,-0.000213623,0.0302124,0.0565796,0.0794067,0.101074,0.121826,0.136566,0.137054,0.124695,0.103424,0.0845032,0.0704651,0.0610657,0.0539551,0.0505371,0.0546265,0.0667114,0.082428,0.094635,0.0962524,0.0873108,0.0697327,0.048584,0.0274353,0.0102539,0.000213623,-0.000396729,0.0065918,0.0231018,0.0440369,0.0674438,0.0866394,0.0973816,0.097168,0.0888062,0.0765076,0.0639648,0.0508118,0.0393982,0.0294495,0.0246887,0.0232849,0.0245667,0.0228882,0.0182495,0.0108032,0.0012207,-0.00698853,-0.0166321,-0.0245056,-0.0285339,-0.0265808,-0.0205994,-0.0138245,-0.0103455,-0.0067749,-0.00323486,0.00308228,0.00799561,0.0109253,0.0115967,0.0134888,0.0188599,0.0268555,0.0320129,0.0319519,0.0259094,0.015625,0.00228882,-0.0140991,-0.0332947,-0.0560303,-0.078064,-0.100677,-0.119659,-0.136169,-0.147247,-0.155701,-0.160736,-0.164551,-0.167664,-0.167572,-0.164978,-0.159515,-0.153961,-0.148712,-0.142548,-0.13504,-0.123077,-0.109406,-0.0950317,-0.0827637,-0.06604,-0.0434265,-0.0131531,0.0195312,0.0507507,0.0758972,0.0975037,0.116302,0.130341,0.133972,0.125427,0.106232,0.0858459,0.069458,0.0603943,0.0561218,0.0549011,0.0570374,0.0675964,0.0802002,0.0916748,0.0959778,0.0891418,0.0726929,0.0527649,0.0314026,0.0155029,0.00576782,0.00558472,0.0136108,0.027771,0.0492554,0.0699463,0.0895386,0.100525,0.102478,0.0957031,0.082428,0.0691833,0.0559692,0.0445557,0.0365906,0.029541,0.0267639,0.0255127,0.0249023,0.020752,0.0132141,0.00256348,-0.00839233,-0.0181274,-0.0257568,-0.0310059,-0.0314636,-0.0281982,-0.0212097,-0.0152283,-0.0101929,-0.00665283,-0.0012207,0.00497437,0.0103455,0.0131531,0.0159607,0.0194702,0.0249634,0.0297241,0.0316772,0.0267639,0.0180664,0.00469971,-0.0112,-0.0288696,-0.0492554,-0.0687256,-0.0887146,-0.105652,-0.121674,-0.13382,-0.141876,-0.147797,-0.152405,-0.157715,-0.160675,-0.161407,-0.158112,-0.153015,-0.147461,-0.141205,-0.130859,-0.118134,-0.102081,-0.0879211,-0.0773926,-0.0671692,-0.053009,-0.0322876,-0.00692749,0.0175171,0.0380554,0.0588684,0.0797424,0.101196,0.116364,0.11972,0.10907,0.0927429,0.0748291,0.0624695,0.0531006,0.0455017,0.0406189,0.0428772,0.0525513,0.069458,0.0830078,0.0904846,0.0864563,0.0748291,0.0583801,0.0428772,0.0292664,0.0218201,0.0202026,0.0259094,0.0383911,0.056366,0.0768433,0.0940247,0.103699,0.104218,0.0971069,0.0863647,0.0739746,0.0617981,0.0508118,0.0430908,0.036377,0.0335693,0.0294495,0.025177,0.0180664,0.00918579,-0.00234985,-0.0152283,-0.0280457,-0.0380554,-0.0397339,-0.0362549,-0.0279846,-0.0204773,-0.0147095,-0.00817871,-0.00189209,0.00616455,0.0101929,0.0118103,0.0100708,0.00918579,0.0119324,0.0179749,0.0241699,0.0274353,0.0241699,0.0182495,0.00799561,-0.00482178,-0.020874,-0.0414124,-0.0642395,-0.0897217,-0.111603,-0.132477,-0.146454,-0.155029,-0.161133,-0.164825,-0.166046,-0.16449,-0.15918,-0.15155,-0.144226,-0.13913,-0.133362,-0.125916,-0.114288,-0.100006,-0.0863647,-0.0748901,-0.0634155,-0.0475769,-0.0263672,0.000946045,0.0281067,0.052002,0.0709534,0.0874634,0.103088,0.116028,0.118988,0.110138,0.0909424,0.0701294,0.0556335,0.0479736,0.0418091,0.0375977,0.0366516,0.0438232,0.0569153,0.0716858,0.0809326,0.0796509,0.0718079,0.0583191,0.0439453,0.0332336,0.0267639,0.0263672,0.0318909,0.0422058,0.0569763,0.0743103,0.0910034,0.103546,0.107788,0.103302,0.0922241,0.0799255,0.0679321,0.0571899,0.0473022,0.0375977,0.0293884,0.0234985,0.0177917,0.0132141,0.00598145,-0.00234985,-0.0127563,-0.0230103,-0.0310059,-0.0333557,-0.0317383,-0.0256958,-0.0191956,-0.0147095,-0.00967407,-0.00491333,0.00463867,0.0132141,0.0179749,0.0173035,0.0159607,0.015564,0.0205383,0.0252991,0.025238,0.0191345,0.00967407,-0.00161743,-0.0140991,-0.0285339,-0.0467834,-0.0681763,-0.0900574,-0.111328,-0.130524,-0.14563,-0.155304,-0.161743,-0.164703,-0.166107,-0.164368,-0.158508,-0.15033,-0.139923,-0.132538,-0.124634,-0.117126,-0.105835,-0.093689,-0.0812683,-0.0714722,-0.061676,-0.0495911,-0.0314636,-0.00845337,0.0174561,0.0401306,0.0600586,0.0769653,0.0914917,0.104492,0.109802,0.104492,0.0877991,0.0677185,0.0514221,0.0411377,0.0365906,0.0336304,0.0326233,0.0381165,0.0491943,0.0657043,0.0800781,0.0852356,0.0791931,0.0664368,0.0542297,0.0450439,0.0410767,0.0396729,0.0414124,0.0473022,0.0585938,0.0743103,0.0900574,0.101959,0.105042,0.100861,0.0916748,0.0797424,0.0680542,0.0575256,0.0470581,0.037384,0.0270996,0.0205994,0.0151672,0.0113525,0.00610352,-0.00274658,-0.0138855,-0.0236206,-0.0297852,-0.0316772,-0.029541,-0.0254211,-0.0202026,-0.0141602,-0.00750732,0,0.00845337,0.0160522,0.0211487,0.0223389,0.0205994,0.0204163,0.0216064,0.0245667,0.0245056,0.0202026,0.0110168,0.000274658,-0.0117493,-0.024292,-0.0397949,-0.0592651,-0.0805359,-0.102295,-0.121338,-0.137177,-0.148987,-0.157654,-0.163879,-0.165375,-0.163422,-0.157928,-0.149719,-0.140137,-0.130005,-0.120148,-0.109314,-0.0973206,-0.0877075,-0.0758972,-0.0671082,-0.0568542,-0.0488586,-0.0386658,-0.0267639,-0.00866699,0.0131531,0.0353699,0.0542908,0.0687256,0.0812683,0.0917969,0.0967712,0.092804,0.0763855,0.0577087,0.0389404,0.028595,0.0227661,0.0191345,0.0195923,0.0263062,0.041748,0.0604553,0.07724,0.0848389,0.0844421,0.0785217,0.0707397,0.061676,0.0558472,0.0516663,0.0522156,0.0567017,0.065155,0.0769043,0.0892029,0.0987854,0.104034,0.1008,0.0939636,0.0837708,0.0733032,0.0620728,0.0510864,0.0385132,0.0274353,0.0181274,0.0103455,0.0032959,-0.00637817,-0.016449,-0.025177,-0.0322876,-0.0344849,-0.0353699,-0.0312805,-0.0256958,-0.0159607,-0.00778198,0.000610352,0.00643921,0.0112,0.0158386,0.0183105,0.0173035,0.0158386,0.0136108,0.01651,0.0192566,0.0212097,0.0187988,0.013092,0.00482178,-0.00582886,-0.0211487,-0.0402832,-0.061554,-0.0842896,-0.105103,-0.124634,-0.141602,-0.153229,-0.160126,-0.163544,-0.163635,-0.160522,-0.155304,-0.146515,-0.137177,-0.127045,-0.116913,-0.105652,-0.0934143,-0.0819397,-0.070282,-0.0608826,-0.052002,-0.0455017,-0.038269,-0.0281067,-0.0125427,0.00717163,0.0287781,0.0476379,0.0632324,0.0770569,0.090271,0.0994568,0.0973816,0.0819397,0.058136,0.037384,0.0234375,0.0160522,0.0124207,0.00991821,0.0163879,0.0326233,0.0558472,0.0773926,0.0904846,0.0923462,0.0865173,0.0765076,0.0687866,0.0596619,0.0533447,0.0512085,0.053009,0.061676,0.0739746,0.0889282,0.101074,0.107849,0.107117,0.0991821,0.0867004,0.0731506,0.06073,0.0491943,0.0381165,0.0279236,0.0196533,0.0131531,0.00738525,-0.000335693,-0.0101318,-0.0211487,-0.0311279,-0.0366516,-0.0396118,-0.0370483,-0.0303345,-0.0185852,-0.00637817,0.00308228,0.00946045,0.0140381,0.0187988,0.0209961,0.0188599,0.0123596,0.0062561,0.00592041,0.0107422,0.016571,0.0184021,0.0154419,0.00906372,0.000732422,-0.0115967,-0.0290527,-0.0514221,-0.0757141,-0.0983276,-0.119202,-0.136658,-0.147858,-0.155243,-0.155762,-0.154755,-0.150604,-0.14624,-0.139252,-0.131287,-0.122894,-0.114227,-0.105774,-0.0959167,-0.0852966,-0.0738831,-0.0631409,-0.0536804,-0.0455627,-0.0400085,-0.0335693,-0.0236816,-0.00958252,0.0105896,0.0289307,0.0445557,0.0578613,0.069397,0.0812073,0.0877991,0.0841064,0.0673218,0.0444946,0.024231,0.0129395,0.00900269,0.0088501,0.0127563,0.0226746,0.0418701,0.066925,0.0899963,0.102966,0.103821,0.0957642,0.0845032,0.0743103,0.0649109,0.0587158,0.0562439,0.0578613,0.0663147,0.0788574,0.0922852,0.105835,0.111145,0.110077,0.100342,0.0881958,0.0743103,0.0601196,0.0467224,0.0314636,0.0182495,0.0065918,-0.00128174,-0.00878906,-0.0169678,-0.0255127,-0.032959,-0.0379333,-0.0389404,-0.036438,-0.0319519,-0.0241089,-0.0139465,-0.00476074,0.0015564,0.00598145,0.00738525,0.0115967,0.0126038,0.0134888,0.0112,0.0111389,0.0152283,0.0211487,0.0254211,0.0265808,0.0214233,0.0120239,-0.000396729,-0.0154419,-0.0346375,-0.0555725,-0.077301,-0.098938,-0.118042,-0.132629,-0.14444,-0.149811,-0.152832,-0.15155,-0.148712,-0.144012,-0.137238,-0.127655,-0.117859,-0.108246,-0.0988464,-0.0891418,-0.0796509,-0.0683289,-0.0579834,-0.0484619,-0.0432739,-0.0387878,-0.0351562,-0.0258484,-0.011261,0.00744629,0.024231,0.0369873,0.0477295,0.0585327,0.0707397,0.0769653,0.0739746,0.0574646,0.0353699,0.0169678,0.00900269,0.00631714,0.00717163,0.0108643,0.019928,0.0391235,0.0637512,0.0881348,0.105377,0.109253,0.103973,0.0931396,0.0820923,0.0755005,0.0699463,0.0664368,0.065155,0.0682678,0.0779114,0.0917358,0.105164,0.112091,0.109131,0.098999,0.0842896,0.0719604,0.0580444,0.04422,0.0279846,0.0125427,6.10352e-05,-0.00750732,-0.0116882,-0.0174561,-0.0232849,-0.0296021,-0.0336914,-0.0349121,-0.0340271,-0.029541,-0.0229492,-0.0144958,-0.00717163,-0.00302124,0.0012207,0.00543213,0.0118103,0.0152283,0.0159607,0.0126038,0.0120239,0.0129395,0.0188599,0.0216064,0.0209351,0.0152283,0.00683594,-0.00314331,-0.0148926,-0.0312195,-0.0493164,-0.0676575,-0.0866394,-0.103821,-0.118134,-0.128845,-0.135651,-0.139343,-0.140198,-0.13913,-0.133972,-0.127594,-0.118927,-0.111481,-0.103363,-0.0955811,-0.0865784,-0.0764465,-0.06604,-0.0578003,-0.0491943,-0.0418701,-0.0361633,-0.0330811,-0.0314026,-0.0270386,-0.0191345,-0.00592041,0.00549316,0.0148315,0.0219421,0.0314636,0.0428162,0.0528259,0.0559692,0.0465088,0.0326843,0.0198669,0.0138245,0.0146179,0.0160522,0.0183105,0.0258484,0.0426025,0.066925,0.0913391,0.109406,0.116699,0.115509,0.10965,0.100861,0.091217,0.0834961,0.0765686,0.0729675,0.0721436,0.0762329,0.085022,0.0954285,0.101074,0.0996094,0.0897217,0.0758362,0.0608826,0.0461121,0.0325623,0.0189209,0.00543213,-0.00396729,-0.0108032,-0.0141602,-0.0163879,-0.0190735,-0.0238342,-0.0294495,-0.0335693,-0.0356445,-0.033905,-0.0278625,-0.0202637,-0.0124207,-0.00537109,0.00189209,0.00912476,0.0161743,0.0206604,0.0204163,0.0157776,0.0100708,0.00692749,0.00772095,0.0110168,0.0113525,0.00793457,0.00341797,-0.00247192,-0.00946045,-0.0212708,-0.0363159,-0.0542908,-0.072876,-0.0898743,-0.10556,-0.117859,-0.126312,-0.130951,-0.132019,-0.12973,-0.125305,-0.118713,-0.112091,-0.105103,-0.0999451,-0.0934753,-0.0855713,-0.0761108,-0.0681763,-0.0595398,-0.0523376,-0.0436096,-0.0338135,-0.0284424,-0.027771,-0.0318909,-0.0348206,-0.0297852,-0.0193176,-0.00732422,0.000457764,0.00570679,0.0148926,0.0301208,0.0473938,0.0562439,0.0499268,0.0359192,0.0215454,0.0170593,0.0175171,0.0193176,0.0210876,0.0263672,0.041626,0.0675964,0.093811,0.116028,0.127106,0.12973,0.122345,0.111755,0.0993347,0.0905457,0.0822754,0.0755005,0.0708008,0.0714111,0.0769653,0.0879822,0.0954285,0.0954895,0.0876465,0.0729675,0.0586548,0.044281,0.0317383,0.0174561,0.00289917,-0.0100098,-0.0198059,-0.0244446,-0.0268555,-0.0292664,-0.0317383,-0.0361023,-0.0385132,-0.040802,-0.0366516,-0.0299377,-0.0186462,-0.00827026,-0.00106812,0.0038147,0.0071106,0.0126953,0.0169067,0.0159607,0.0103455,0.00341797,6.10352e-05,0.00430298,0.00991821,0.0138855,0.0132141,0.00979614,0.00610352,-0.00222778,-0.0133667,-0.0311279,-0.0487976,-0.0683289,-0.0874634,-0.104492,-0.116852,-0.123901,-0.124969,-0.12442,-0.121887,-0.118591,-0.112274,-0.104889,-0.0983276,-0.0930786,-0.0889893,-0.082489,-0.0745544,-0.0644226,-0.0564575,-0.0508118,-0.0441589,-0.0381165,-0.0313416,-0.029541,-0.03302,-0.037323,-0.0375977,-0.0282593,-0.0158386,-0.00363159,0.00289917,0.00946045,0.0198669,0.0334778,0.0452881,0.0440369,0.0334167,0.0194702,0.00985718,0.0101318,0.0151672,0.0218201,0.0296631,0.0420837,0.0632324,0.0882568,0.113342,0.129517,0.134308,0.128326,0.116364,0.104706,0.0960388,0.0908203,0.0852356,0.0787964,0.0763855,0.0793152,0.0880432,0.0962524,0.0976562,0.0885925,0.0736389,0.0565796,0.0405273,0.0259705,0.0124207,-0.00128174,-0.0138245,-0.0226746,-0.0267639,-0.0283813,-0.028595,-0.0297852,-0.0317993,-0.0360413,-0.0371704,-0.0371704,-0.0312805,-0.0218811,-0.0124207,-0.00396729,0.000396729,0.00363159,0.00738525,0.0120239,0.0144958,0.0127563,0.00772095,0.00302124,0.00335693,0.00765991,0.0138855,0.0168457,0.0150452,0.00991821,0.00134277,-0.00872803,-0.0216675,-0.0375977,-0.0546875,-0.0724792,-0.0891418,-0.100616,-0.107574,-0.109985,-0.109802,-0.110596,-0.10965,-0.106659,-0.101013,-0.0954895,-0.0913391,-0.0907288,-0.0888062,-0.0837708,-0.0748291,-0.0637512,-0.0553589,-0.0480652,-0.0420227,-0.0334778,-0.0265198,-0.0228882,-0.0270996,-0.033905,-0.038269,-0.0344238,-0.025238,-0.0169678,-0.0124207,-0.00744629,0.00302124,0.0202026,0.0379333,0.0445557,0.0400696,0.028717,0.0204163,0.0192566,0.0215454,0.0238953,0.0268555,0.0341492,0.0511475,0.0769043,0.104034,0.126434,0.136993,0.13678,0.130066,0.12088,0.112671,0.104645,0.0940247,0.0827637,0.0741577,0.0720825,0.0752869,0.0804749,0.0828247,0.0777893,0.0675049,0.0531616,0.0380554,0.0257568,0.0119324,-0.000946045,-0.0145569,-0.0264282,-0.0336914,-0.037262,-0.0377808,-0.0375061,-0.0383911,-0.0396118,-0.0400085,-0.036499,-0.0297241,-0.0198059,-0.0100098,-0.00213623,0.0020752,0.00491333,0.00793457,0.0122681,0.0157776,0.0146179,0.0102539,0.00698853,0.00726318,0.0125427,0.0185242,0.0210876,0.0179749,0.0133667,0.00537109,-0.00402832,-0.0159607,-0.0306091,-0.0471802,-0.0643616,-0.0787964,-0.0898743,-0.0959167,-0.0993347,-0.102203,-0.104156,-0.105103,-0.103546,-0.098938,-0.0954895,-0.0917358,-0.0882568,-0.0851746,-0.077301,-0.0673218,-0.0565186,-0.0475769,-0.0421448,-0.0375977,-0.0331421,-0.0287781,-0.0261841,-0.0284424,-0.0354919,-0.0418091,-0.0448303,-0.0388489,-0.0303955,-0.0226135,-0.0181885,-0.0141602,-0.00515747,0.00946045,0.0232849,0.0291138,0.0255127,0.0179749,0.013031,0.015564,0.0220947,0.0304565,0.038269,0.0473022,0.0628967,0.0867004,0.113007,0.135651,0.14679,0.146851,0.139069,0.129456,0.120209,0.109985,0.0969238,0.0817566,0.066925,0.0594482,0.0583801,0.0636292,0.0665894,0.0634766,0.0531616,0.0397949,0.0270386,0.0167847,0.00726318,-0.00457764,-0.0198669,-0.0337524,-0.0418091,-0.041687,-0.0365906,-0.0324707,-0.0317383,-0.0315552,-0.0307312,-0.025177,-0.0168457,-0.0085144,-0.00308228,-0.000610352,-0.000274658,0.0012207,0.00549316,0.0114746,0.0152893,0.0155029,0.0117493,0.00872803,0.00958252,0.0131531,0.0167847,0.0172424,0.0140991,0.0085144,0.00469971,0.000335693,-0.00592041,-0.0169678,-0.0307922,-0.0462952,-0.0601196,-0.0718689,-0.0812683,-0.0885925,-0.0948181,-0.100067,-0.101685,-0.0993958,-0.0939026,-0.0874634,-0.0830078,-0.0795898,-0.0783081,-0.0740967,-0.0713501,-0.0675049,-0.0642395,-0.0613403,-0.0564575,-0.0488586,-0.0412903,-0.0341492,-0.029541,-0.0296021,-0.0317383,-0.0370483,-0.0419312,-0.0444336,-0.0430908,-0.0379944,-0.0319519,-0.0227661,-0.0107422,0.0067749,0.0250244,0.0386047,0.0433655,0.039856,0.0335693,0.0312805,0.0336914,0.0385132,0.04422,0.0518799,0.0682678,0.091156,0.119934,0.142609,0.154175,0.153351,0.141602,0.126434,0.110321,0.0928955,0.0747681,0.0564575,0.0436096,0.0399475,0.0435486,0.0504761,0.056366,0.0539551,0.0458984,0.0324097,0.0190735,0.00778198,-0.00335693,-0.0151672,-0.0283203,-0.0368347,-0.0391235,-0.0335693,-0.0256958,-0.0202026,-0.019989,-0.020874,-0.0216675,-0.0179138,-0.0140991,-0.0109253,-0.0088501,-0.0050354,-0.00012207,0.00598145,0.0118713,0.0179138,0.0218201,0.0222168,0.0202026,0.0171204,0.0154419,0.0162964,0.0175781,0.0184631,0.01651,0.0137024,0.0103455,0.00616455,0.000274658,-0.0103455,-0.0241089,-0.0392761,-0.0508118,-0.0627441,-0.0710754,-0.0791321,-0.0849609,-0.0895996,-0.0921326,-0.0926819,-0.0917358,-0.0906067,-0.0901489,-0.0895996,-0.0900574,-0.0888672,-0.085907,-0.0809326,-0.0731506,-0.065033,-0.0575256,-0.0502014,-0.0434265,-0.0369263,-0.032959,-0.0349731,-0.0414734,-0.0514221,-0.0589294,-0.0593872,-0.0546875,-0.0455017,-0.0368347,-0.0249023,-0.00939941,0.012085,0.0340271,0.0499878,0.0550232,0.0501404,0.0424194,0.0367737,0.0375977,0.0409546,0.0438843,0.0513306,0.0635681,0.0867004,0.112,0.136169,0.147919,0.148315,0.137329,0.121277,0.102814,0.0842285,0.0657654,0.0490723,0.0357056,0.0300598,0.0307922,0.0381775,0.0447693,0.0473938,0.0411987,0.0301208,0.0166321,0.00509644,-0.00457764,-0.012207,-0.0212097,-0.0259094,-0.028595,-0.0250854,-0.0187988,-0.012085,-0.0104065,-0.0127563,-0.0168457,-0.0193176,-0.0181274,-0.0135498,-0.0071106,0.000396729,0.00738525,0.0147705,0.0233459,0.0319519,0.0371094,0.0385132,0.0326843,0.0249023,0.0175781,0.0144348,0.0149536,0.0167847,0.0186462,0.0184021,0.0192566,0.019989,0.0185242,0.0125427,0.000793457,-0.0158386,-0.0334167,-0.0505371,-0.0646973,-0.0761108,-0.0852356,-0.0926208,-0.098175,-0.100189,-0.100281,-0.098938,-0.098175,-0.097168,-0.0983276,-0.0978394,-0.0960999,-0.0923462,-0.0871277,-0.079071,-0.0717468,-0.0638123,-0.0549011,-0.0484619,-0.0434265,-0.0403442,-0.0397949,-0.0414734,-0.0458374,-0.0505981,-0.0512695,-0.0495911,-0.0402832,-0.0281067,-0.0151062,-0.00289917,0.00967407,0.0238953,0.0390015,0.0508728,0.0526733,0.0471191,0.0394592,0.0369263,0.0401917,0.0465698,0.0541077,0.062561,0.0749817,0.0926819,0.112488,0.128448,0.133423,0.129181,0.114502,0.0977783,0.0805359,0.0648193,0.0505981,0.0390015,0.0297852,0.0265808,0.0284424,0.0334167,0.0386047,0.0381775,0.0322266,0.0223389,0.0120239,0.00430298,-0.00128174,-0.0062561,-0.0112,-0.0140991,-0.015625,-0.0124207,-0.0088501,-0.00665283,-0.00704956,-0.0112,-0.0120239,-0.0100708,-0.00482178,0.0032959,0.0102539,0.0189819,0.0272522,0.0328979,0.0377808,0.0387878,0.0375977,0.0328979,0.0265808,0.019928,0.0152283,0.0144348,0.0176392,0.0224915,0.0272522,0.0289307,0.0281067,0.0246277,0.0161133,0.00341797,-0.0150452,-0.0347595,-0.0526123,-0.0700684,-0.0826111,-0.0932312,-0.0996704,-0.103821,-0.106506,-0.108185,-0.10907,-0.108643,-0.107666,-0.106232,-0.105164,-0.104767,-0.101685,-0.0960999,-0.0865173,-0.0760498,-0.0655823,-0.0554504,-0.0469666,-0.037384,-0.0306702,-0.024231,-0.0215454,-0.0226746,-0.027771,-0.033905,-0.037384,-0.0362549,-0.0313416,-0.0239563,-0.0182495,-0.0108032,-0.0012207,0.0142212,0.0307312,0.0435486,0.0479736,0.0435486,0.037384,0.0371704,0.0393372,0.0433655,0.0443726,0.0471191,0.0545044,0.0710144,0.0922241,0.111084,0.121002,0.120148,0.111664,0.0999451,0.0872498,0.0753784,0.0597229,0.0455017,0.0306091,0.0229492,0.0222168,0.02771,0.0346375,0.0369263,0.0332947,0.0270386,0.0206604,0.0184021,0.0161743,0.0124817,0.00570679,-0.00195312,-0.00564575,-0.00390625,0.00140381,0.00610352,0.0062561,0.00436401,0.00289917,0.00463867,0.0106812,0.0181885,0.0226746,0.0264282,0.0283813,0.0307312,0.0319519,0.0341492,0.0322266,0.0270996,0.0193176,0.0118103,0.00772095,0.00759888,0.0112,0.0138245,0.0147705,0.0144958,0.012146,0.00891113,0.00274658,-0.00805664,-0.0229492,-0.0404053,-0.0571899,-0.0711975,-0.0821533,-0.0900574,-0.0957031,-0.100128,-0.103088,-0.10376,-0.103699,-0.101349,-0.100189,-0.0995178,-0.0993347,-0.0986633,-0.0955811,-0.0905457,-0.0832825,-0.0743103,-0.0654907,-0.0562439,-0.046051,-0.0367126,-0.0280457,-0.0211487,-0.0177917,-0.0171204,-0.0187378,-0.0228882,-0.0293274,-0.0365906,-0.0402832,-0.0384521,-0.0309448,-0.0230103,-0.0142822,-0.00476074,0.0101929,0.028656,0.0429382,0.0485229,0.0439453,0.0338135,0.0283203,0.0261841,0.0268555,0.0283203,0.0314026,0.0403442,0.057312,0.0796509,0.102203,0.116913,0.120605,0.115356,0.103363,0.0904846,0.0764465,0.0634766,0.049469,0.0363159,0.0299377,0.0298767,0.036499,0.0455627,0.0519409,0.0539551,0.0490723,0.0431519,0.0357056,0.0316162,0.0275269,0.0214844,0.0128784,0.00564575,0.00256348,0.00463867,0.00900269,0.00912476,0.00549316,0.00222778,0.00112915,0.00582886,0.0112,0.0161743,0.0183105,0.0192566,0.0189819,0.0184631,0.0184631,0.0177917,0.0140381,0.00778198,0.000549316,-0.0050354,-0.00491333,-0.0015564,0.00213623,0.00463867,0.00375366,0.00314331,0.0020752,-0.00128174,-0.00839233,-0.019928,-0.0349731,-0.0484619,-0.0623474,-0.0718689,-0.0804749,-0.0857849,-0.0908203,-0.0943604,-0.0960388,-0.0971069,-0.0957642,-0.0957031,-0.0939636,-0.0934143,-0.0918884,-0.0897217,-0.0853577,-0.0782471,-0.0701294,-0.061676,-0.0516663,-0.0422058,-0.0338135,-0.0254211,-0.0198059,-0.0155029,-0.0129395,-0.0143738,-0.0178528,-0.0256348,-0.0336914,-0.0401306,-0.0422668,-0.0395203,-0.0344849,-0.028656,-0.0228882,-0.0132751,0.00134277,0.0166321,0.0273132,0.0282593,0.0233459,0.0178528,0.017395,0.0205383,0.0246277,0.0296631,0.037262,0.0499878,0.0708008,0.0944824,0.115021,0.127991,0.129333,0.123627,0.113678,0.102753,0.0907288,0.0776367,0.0634155,0.0520935,0.0448914,0.0454407,0.0491943,0.0549622,0.0556335,0.0520935,0.0448914,0.0367737,0.0300598,0.0231628,0.0158997,0.00784302,-0.000213623,-0.00564575,-0.00704956,-0.003479,0.000610352,0.0012207,-6.10352e-05,-0.00189209,-0.000732422,0.00167847,0.00549316,0.00592041,0.00692749,0.00570679,0.00497437,0.00631714,0.00772095,0.00924683,0.00878906,0.00637817,0.00515747,0.00247192,0.003479,0.00369263,0.00430298,0.0032959,0.000610352,-0.00262451,-0.00549316,-0.0088501,-0.0147095,-0.0218201,-0.0313416,-0.0396118,-0.0491333,-0.0565186,-0.0646362,-0.0708618,-0.0783081,-0.0840149,-0.0908203,-0.0944824,-0.0966492,-0.0967712,-0.0944214,-0.0916748,-0.0874634,-0.0813293,-0.0743103,-0.0661621,-0.0596008,-0.053772,-0.0477905,-0.0419312,-0.0359192,-0.0317993,-0.0301208,-0.0291138,-0.0279236,-0.0263672,-0.0245056,-0.0269165,-0.0324707,-0.0414734,-0.0483093,-0.0492554,-0.0453796,-0.0402832,-0.0350952,-0.0309448,-0.0215454,-0.0050354,0.0144958,0.0293274,0.036377,0.0344238,0.0316162,0.0343628,0.0415344,0.0490723,0.0545044,0.0597839,0.0692749,0.0871277,0.108124,0.128601,0.139587,0.13858,0.127716,0.112946,0.0983276,0.0860291,0.0712891,0.0559692,0.0390625,0.0289307,0.0272522,0.0328064,0.0410156,0.0438843,0.0397949,0.0308838,0.0222168,0.017395,0.0139465,0.0100708,0.00134277,-0.00799561,-0.0129395,-0.0114136,-0.00424194,0.00335693,0.00582886,0.0017395,-0.00302124,-0.00476074,-0.0015564,0.00296021,0.00482178,0.00375366,0.00256348,0.00402832,0.00759888,0.0134888,0.0163879,0.0144348,0.00924683,0.00314331,-0.00112915,-0.00189209,0.00012207,0.00112915,0.00167847,0.00134277,0.00189209,0.00491333,0.00604248,0.00390625,-0.0050354,-0.0183105,-0.0318909,-0.0458374,-0.0564575,-0.0679321,-0.07724,-0.0866394,-0.0926819,-0.0959167,-0.0960388,-0.0944824,-0.0939026,-0.0929565,-0.0932922,-0.091156,-0.0887146,-0.0841064,-0.0779114,-0.0710754,-0.0630798,-0.0544434,-0.04422,-0.0346985,-0.0257568,-0.0191345,-0.0147095,-0.0129395,-0.0118713,-0.013031,-0.0140991,-0.0181885,-0.0261841,-0.0334167,-0.0389404,-0.0366516,-0.0308838,-0.0246277,-0.0183105,-0.0110779,0.000793457,0.0163879,0.0308838,0.0380554,0.0378418,0.0338135,0.032074,0.0347595,0.0391235,0.0438232,0.0496521,0.0584412,0.0724182,0.0921326,0.110931,0.125427,0.130005,0.123688,0.112091,0.0960999,0.0808716,0.0653076,0.0487366,0.0336304,0.0220032,0.0177307,0.0176392,0.0237732,0.0279236,0.0271912,0.0245056,0.0174561,0.0123596,0.00866699,0.00650024,0.00396729,-0.0017395,-0.00643921,-0.00744629,-0.00341797,0.0015564,0.00543213,0.00402832,0.000671387,-0.000671387,0.00222778,0.0085144,0.0140991,0.0187988,0.0205383,0.0228271,0.0232849,0.024292,0.0231628,0.0185242,0.0106812,0.0012207,-0.00610352,-0.0105896,-0.00973511,-0.0065918,-0.00302124,0.000793457,0.0038147,0.00698853,0.00827026,0.00509644,-0.00363159,-0.0172424,-0.0328979,-0.0475159,-0.0608826,-0.0708618,-0.0788574,-0.0845032,-0.0865784,-0.0867004,-0.0848389,-0.0822754,-0.0812683,-0.0799866,-0.0800781,-0.0797424,-0.0793152,-0.0779724,-0.0736389,-0.0675049,-0.0589294,-0.0498047,-0.0400085,-0.0297241,-0.0203247,-0.0128784,-0.00650024,-0.00308228,-0.00268555,-0.00247192,-0.0050354,-0.00738525,-0.0127563,-0.0206604,-0.0301208,-0.0376587,-0.041687,-0.040741,-0.0371704,-0.0322876,-0.0245056,-0.0144348,0.000549316,0.016571,0.0289307,0.0343628,0.0326233,0.0308838,0.029541,0.0306091,0.0317383,0.0336914,0.0397339,0.050415,0.0674438,0.0874634,0.106171,0.117371,0.11792,0.111206,0.0967102,0.0820923,0.0661621,0.049408,0.032074,0.0173035,0.0085144,0.00906372,0.0140381,0.024353,0.0302734,0.0317383,0.0308838,0.0287781,0.0260315,0.0244446,0.0191956,0.0124817,0.00463867,6.10352e-05,-0.000671387,0.00363159,0.0083313,0.00939941,0.00784302,0.00524902,0.00704956,0.0103455,0.0148926,0.0153809,0.0139465,0.0101318,0.00900269,0.00793457,0.00900269,0.00683594,0.00448608,-0.000610352,-0.00476074,-0.00650024,-0.00430298,-0.00128174,0.00256348,0.00430298,0.00524902,0.00570679,0.00738525,0.0062561,0.0020752,-0.00805664,-0.0202637,-0.03302,-0.0444336,-0.053894,-0.0619507,-0.0687256,-0.074646,-0.0775757,-0.0801392,-0.0793152,-0.0776367,-0.0778503,-0.0768433,-0.0770569,-0.0763855,-0.0741577,-0.0698547,-0.0635681,-0.0567017,-0.0467224,-0.0380554,-0.0264282,-0.0168457,-0.00839233,-0.00222778,0.0015564,0.0017395,-0.000274658,-0.00509644,-0.0101929,-0.0173035,-0.0255127,-0.0375977,-0.0485229,-0.0561829,-0.0585327,-0.0550232,-0.0498657,-0.0432129,-0.0355835,-0.0228882,-0.00738525,0.00683594,0.0161133,0.0174561,0.0152893,0.0149536,0.0170593,0.0224304,0.028656,0.0363159,0.0477905,0.0646973,0.0861816,0.108246,0.124634,0.131073,0.127167,0.114624,0.0996094,0.0820007,0.0649719,0.0469055,0.0297241,0.017395,0.0126038,0.0144958,0.0222168,0.0292664,0.0326843,0.0311279,0.0270996,0.0218201,0.0161743,0.0110168,0.00448608,-0.00436401,-0.0101318,-0.0122681,-0.00811768,-0.000732422,0.00637817,0.00857544,0.00857544,0.00985718,0.0138245,0.0186462,0.0220032,0.0218811,0.0195923,0.017395,0.0161743,0.0169678,0.0180664,0.0162354,0.0119324,0.00759888,0.00448608,0.00357056,0.00610352,0.00793457,0.00946045,0.00958252,0.0104675,0.0114746,0.0127563,0.0114746,0.00375366,-0.00631714,-0.0190735,-0.0313416,-0.0414734,-0.0518799,-0.0614014,-0.0693359,-0.0748291,-0.0767822,-0.0767212,-0.0744324,-0.073761,-0.0725403,-0.0714111,-0.0706177,-0.069397,-0.0673828,-0.065033,-0.0619507,-0.0584412,-0.0532837,-0.0482483,-0.0400085,-0.032074,-0.0250854,-0.019928,-0.0174561,-0.0162354,-0.0167236,-0.0171814,-0.0194092,-0.0264282,-0.0366516,-0.0488586,-0.0584412,-0.065155,-0.0675964,-0.0649109,-0.0598755,-0.0512085,-0.0397949,-0.0238342,-0.00558472,0.0134277,0.0260315,0.0317993,0.0323486,0.0325623,0.0346375,0.0393372,0.0432739,0.0489197,0.0559082,0.0687866,0.0860291,0.104828,0.120148,0.12558,0.120392,0.108063,0.0919495,0.0749817,0.057312,0.0396729,0.0226135,0.00872803,0.00180054,0.00195312,0.0085144,0.0159607,0.0193176,0.0194092,0.016449,0.0149536,0.0127563,0.0124207,0.00933838,0.00576782,0.00256348,0.00201416,0.0062561,0.0131531,0.0198669,0.0220032,0.0209961,0.0212097,0.0221558,0.0260315,0.0294495,0.0293884,0.0269165,0.0246277,0.0231018,0.0238342,0.0238342,0.0212097,0.0178528,0.0124207,0.00967407,0.00726318,0.00744629,0.00933838,0.0101318,0.0105286,0.0115356,0.0112,0.0114136,0.00845337,0.00335693,-0.00665283,-0.017395,-0.0307922,-0.0423584,-0.0520935,-0.0624695,-0.0713501,-0.0785217,-0.0841675,-0.0856934,-0.0869141,-0.0855713,-0.0856934,-0.0846252,-0.0832214,-0.0826111,-0.0794067,-0.0763855,-0.0715332,-0.0663147,-0.0602722,-0.053772,-0.0458984,-0.0368347,-0.0282593,-0.0204773,-0.0151062,-0.0129395,-0.0125427,-0.0122681,-0.0134277,-0.0177307,-0.0252991,-0.036438,-0.0473022,-0.0549622,-0.0579834,-0.0578613,-0.0539551,-0.0481873,-0.0384521,-0.0252991,-0.00793457,0.00933838,0.0228271,0.0307312,0.0319519,0.0326233,0.0320129,0.0332947,0.0344849,0.0360413,0.0410767,0.0490723,0.0641479,0.0810852,0.0976562,0.109192,0.113098,0.108124,0.098114,0.0826111,0.0671082,0.0487976,0.0310059,0.0149536,0.00335693,-0.00134277,0.00088501,0.0085144,0.0154419,0.0215454,0.0249634,0.0269165,0.0274353,0.0283813,0.0275879,0.0246887,0.0194702,0.015564,0.0148315,0.0171204,0.0224915,0.0255127,0.0273132,0.0262451,0.0275269,0.0291138,0.0326233,0.0346375,0.0342407,0.0319519,0.028595,0.027771,0.0270386,0.0264282,0.0233459,0.0178528,0.0115356,0.00610352,0.0020752,0.00167847,0.00088501,0.000549316,0.000213623,0.000610352,0.00161743,0.00222778,0.000732422,-0.00497437,-0.0150452,-0.0283203,-0.0428162,-0.0565186,-0.0687256,-0.0787354,-0.0875244,-0.0929565,-0.0949707,-0.0933533,-0.089325,-0.0842896,-0.0808105,-0.0774536,-0.0769043,-0.0760498,-0.0752258,-0.072876,-0.0689392,-0.0632324,-0.0569763,-0.0478516,-0.037384,-0.025238,-0.0148315,-0.0067749,-0.0032959,-0.00442505,-0.00717163,-0.0115967,-0.016449,-0.0236206,-0.0328979,-0.0433655,-0.052948,-0.057373,-0.0584412,-0.0546875,-0.0504761,-0.0452271,-0.0396729,-0.029541,-0.0158997,-0.000457764,0.012146,0.0183105,0.0215454,0.0248413,0.0297241,0.0360413,0.0420837,0.0459595,0.0512695,0.0594482,0.0726929,0.0892029,0.103638,0.111206,0.112823,0.105377,0.094574,0.0830078,0.0680542,0.0526733,0.0356445,0.0191956,0.00817871,0.00476074,0.0088501,0.0158386,0.0228271,0.0265198,0.0279846,0.0291138,0.0300598,0.0306702,0.0281982,0.0234375,0.0175171,0.0142822,0.016449,0.0223389,0.0294495,0.0345764,0.0348206,0.0358276,0.0374451,0.0406799,0.0424194,0.0409546,0.0349121,0.0280457,0.0226135,0.0202637,0.0189819,0.0178528,0.0129395,0.00793457,0.00262451,-0.000671387,-0.00274658,-0.00289917,-0.00549316,-0.00698853,-0.0103455,-0.0102539,-0.00958252,-0.00924683,-0.0104675,-0.0167847,-0.0263062,-0.0366516,-0.0459595,-0.0552368,-0.0624695,-0.0723572,-0.0788574,-0.0844421,-0.0856323,-0.0822754,-0.0787354,-0.0759583,-0.0735474,-0.0725403,-0.0717468,-0.0700073,-0.0682678,-0.0674438,-0.0654297,-0.0624084,-0.0567932,-0.0498657,-0.0399475,-0.0312805,-0.0226135,-0.0168457,-0.0126953,-0.00939941,-0.0105896,-0.0110779,-0.0158386,-0.0233459,-0.0315552,-0.0414124,-0.0510864,-0.0580444,-0.0617981,-0.0610657,-0.0559692,-0.0475769,-0.0367737,-0.0241089,-0.00891113,0.00726318,0.0205994,0.0289917,0.0312195,0.0316162,0.0302734,0.0316162,0.0343018,0.037262,0.0445557,0.0541077,0.0686035,0.0845642,0.0999451,0.110535,0.112885,0.107452,0.0967712,0.0812073,0.0645752,0.048645,0.0335693,0.0189209,0.0104675,0.00778198,0.0107422,0.0176392,0.0256348,0.0307922,0.0328064,0.033905,0.0325623,0.0325623,0.0306702,0.0292053,0.0255127,0.0239563,0.0232239,0.0262451,0.0309448,0.032959,0.033905,0.0310669,0.0303955,0.0309448,0.032135,0.0320129,0.0292664,0.0260315,0.0226746,0.0209351,0.0189209,0.016571,0.0124207,0.00778198,0.00189209,-0.00280762,-0.00531006,-0.00765991,-0.00772095,-0.00805664,-0.00704956,-0.0062561,-0.00631714,-0.00650024,-0.0100708,-0.0161133,-0.0258484,-0.0370483,-0.0483093,-0.0594482,-0.0688477,-0.0769043,-0.0832214,-0.0861816,-0.0869141,-0.0842896,-0.0808105,-0.0777893,-0.0760498,-0.0751038,-0.0744324,-0.0735474,-0.0722046,-0.0701904,-0.0669861,-0.0612183,-0.0546875,-0.0439453,-0.0339661,-0.0230103,-0.0132751,-0.00726318,-0.00335693,-0.00314331,-0.00531006,-0.0100708,-0.0157166,-0.0249023,-0.0340881,-0.0443726,-0.0533447,-0.0602722,-0.0623474,-0.061554,-0.0567932,-0.0484009,-0.0387878,-0.0263062,-0.0126953,0.00234985,0.0144348,0.0240173,0.0279236,0.028595,0.0288696,0.0317383,0.0355835,0.0430908,0.0505371,0.0604553,0.0737,0.0895386,0.105103,0.11618,0.119476,0.113495,0.100616,0.0849609,0.0680542,0.0508728,0.0353699,0.0197449,0.00872803,0.00509644,0.00698853,0.0146179,0.0231018,0.0294495,0.032074,0.0330811,0.0334778,0.0332336,0.0333557,0.0299988,0.0260315,0.0215454,0.0214233,0.0232849,0.0281067,0.0343018,0.0361023,0.0361633,0.036438,0.0367737,0.038269,0.0383301,0.0350952,0.0293884,0.0231628,0.0173035,0.0142822,0.0110779,0.00717163,0.0015564,-0.00430298,-0.00924683,-0.0128784,-0.0133667,-0.0140381,-0.0152893,-0.0157166,-0.0181274,-0.0184631,-0.0189209,-0.0196533,-0.0226135,-0.0290527,-0.0376587,-0.0468445,-0.0551147,-0.0613403,-0.0676575,-0.0730896,-0.0776367,-0.0797424,-0.0786438,-0.0763855,-0.0716858,-0.0701294,-0.0673218,-0.0664978,-0.0657654,-0.0646973,-0.0624695,-0.0600586,-0.056366,-0.0512695,-0.0452881,-0.0379333,-0.0307312,-0.0232849,-0.0185852,-0.0148926,-0.0152283,-0.0177917,-0.0209351,-0.0253601,-0.0302734,-0.0374451,-0.0447693,-0.052002,-0.0569763,-0.0575256,-0.0541077,-0.0474548,-0.0388489,-0.0302734,-0.0188599,-0.00476074,0.00878906,0.0221558,0.0306702,0.0334778,0.0353088,0.036377,0.0404663,0.0444336,0.0487366,0.0532837,0.0602722,0.0704651,0.0845642,0.0971069,0.105835,0.107056,0.100739,0.0914001,0.0775757,0.0645752,0.0492554,0.0353088,0.0224915,0.0137634,0.0116882,0.0138245,0.0212708,0.0289917,0.0343018,0.0381775,0.039856,0.0401306,0.0400696,0.0381165,0.0343018,0.0293274,0.0241699,0.0226746,0.0232849,0.02771,0.0296631,0.029541,0.028717,0.0267029,0.0263672,0.0269165,0.0257568,0.0211487,0.0161743,0.0108643,0.00759888,0.0067749,0.00537109,0.00256348,-0.000793457,-0.00543213,-0.00845337,-0.0113525,-0.012085,-0.013031,-0.0134888,-0.0148315,-0.0145569,-0.0134888,-0.0127563,-0.0132751,-0.016571,-0.0233459,-0.0315552,-0.041626,-0.0509338,-0.0592041,-0.0681152,-0.0750427,-0.0804138,-0.082428,-0.0823364,-0.0805359,-0.0771179,-0.0758972,-0.0730896,-0.0723572,-0.0713501,-0.0691833,-0.066925,-0.0644836,-0.0598755,-0.0546265,-0.0481873,-0.0394592,-0.0314026,-0.0240173,-0.0187378,-0.0159607,-0.0157166,-0.0155029,-0.0175781,-0.0214844,-0.0270996,-0.0344238,-0.0414124,-0.0475769,-0.0496521,-0.0492554,-0.0448303,-0.0387878,-0.0301208,-0.0202026,-0.00872803,0.00469971,0.0159607,0.0249023,0.0289917,0.0304565,0.0310059,0.0333557,0.0369873,0.0422668,0.0481873,0.0568542,0.0678406,0.0822144,0.0960388,0.107178,0.110992,0.108917,0.0995178,0.0873718,0.0730896,0.0585327,0.0448914,0.0319519,0.0225525,0.0170593,0.0172424,0.0224304,0.0274353,0.0323486,0.0332947,0.0340271,0.0315552,0.0294495,0.0259705,0.0224304,0.0177917,0.0137634,0.0128174,0.0141602,0.0185852,0.0231018,0.0267639,0.0272522,0.0275879,0.0269775,0.0264282,0.0266418,0.024353,0.0202026,0.015564,0.012207,0.0109253,0.0100708,0.00906372,0.00604248,0.00140381,-0.00222778,-0.00698853,-0.00912476,-0.0115356,-0.0137024,-0.0157776,-0.0178528,-0.0180664,-0.0181274,-0.0184021,-0.0202637,-0.0255737,-0.0331421,-0.0424805,-0.0522156,-0.0603333,-0.0677795,-0.074646,-0.0794678,-0.0827637,-0.0828247,-0.0802002,-0.0761719,-0.0722961,-0.0700684,-0.0682678,-0.0675049,-0.0663147,-0.0644226,-0.0621338,-0.0595398,-0.0552368,-0.0498047,-0.0426025,-0.0341492,-0.0269775,-0.0206604,-0.0171204,-0.0162354,-0.0167236,-0.0185852,-0.0226746,-0.0275879,-0.0356445,-0.0430298,-0.0493164,-0.0510864,-0.0489197,-0.0431519,-0.0354919,-0.0263672,-0.01651,-0.00357056,0.0101929,0.0231628,0.0318909,0.0350952,0.0349731,0.0359192,0.0386047,0.0418091,0.0462341,0.050415,0.057312,0.0673218,0.0817566,0.0956421,0.105835,0.108734,0.105652,0.0967102,0.0856323,0.0728149,0.0579834,0.0428162,0.0293884,0.0184631,0.013031,0.0138855,0.0185852,0.0238953,0.0281067,0.0316162,0.0317993,0.0319519,0.0310059,0.028717,0.0250244,0.0195923,0.0157166,0.0134888,0.0140991,0.0175781,0.0214844,0.0234985,0.0230103,0.0228271,0.0235596,0.024353,0.024292,0.0225525,0.0179749,0.0136108,0.0105286,0.0100708,0.00839233,0.0065918,0.003479,-0.00112915,-0.00558472,-0.00857544,-0.0101318,-0.0114746,-0.0124817,-0.0138245,-0.0149536,-0.0140991,-0.0138855,-0.0141602,-0.0162354,-0.0227661,-0.0309448,-0.040741,-0.0491333,-0.0575867,-0.065033,-0.0724792,-0.078064,-0.0818176,-0.082428,-0.0802612,-0.0776367,-0.0748901,-0.0730896,-0.0726318,-0.0711975,-0.0700684,-0.0672607,-0.0644226,-0.0611267,-0.0568542,-0.0509949,-0.0432739,-0.0343628,-0.0263672,-0.0201416,-0.017395,-0.0158997,-0.017395,-0.0193176,-0.0239563,-0.0317383,-0.039856,-0.0466309,-0.0487366,-0.0462341,-0.0393982,-0.0302124,-0.0202637,-0.00872803,0.00463867,0.0185242,0.0289307,0.0357056,0.0357056,0.0331421,0.0311279,0.032074,0.0359802,0.0391846,0.0461121,0.0540161,0.0683899,0.0842285,0.0993958,0.108459,0.11026,0.105042,0.0967102,0.0845642,0.0710144,0.0567932,0.0409546,0.0279236,0.0200806,0.016449,0.017395,0.0221558,0.0265808,0.0290527,0.0303345,0.0304565,0.0293884,0.0279236,0.0246887,0.0196533,0.0134277,0.00878906,0.0062561,0.00778198,0.0100098,0.0124207,0.0124817,0.0142212,0.0160522,0.019928,0.0240173,0.0259094,0.0246277,0.0223389,0.0197449,0.0174561,0.0170593,0.0142822,0.0100708,0.0050354,0.000274658,-0.00289917,-0.00430298,-0.00509644,-0.00570679,-0.00811768,-0.00817871,-0.00839233,-0.00778198,-0.00778198,-0.0101318,-0.0155029,-0.0238953,-0.0335693,-0.0430908,-0.0528259,-0.061554,-0.0711975,-0.0779724,-0.0838928,-0.0858459,-0.0838318,-0.0820923,-0.0779724,-0.0754395,-0.0734253,-0.0707397,-0.0701904,-0.0686035,-0.0671692,-0.0663147,-0.0634766,-0.0594482,-0.053772,-0.0453796,-0.0354919,-0.0264282,-0.0198059,-0.0154419,-0.0149536,-0.0158386,-0.0191956,-0.0249634,-0.0349731,-0.0428162,-0.0477905,-0.0473938,-0.0396118,-0.0312805,-0.0194092,-0.00744629,0.0071106,0.021759,0.0340881,0.0404663,0.040741,0.036499,0.0332336,0.0299377,0.0302124,0.0325623,0.0377808,0.0462952,0.0587769,0.0744324,0.0904846,0.100861,0.105316,0.102631,0.0942993,0.0830994,0.0692749,0.0550232,0.0411987,0.0285339,0.0206604,0.0159607,0.0160522,0.0198059,0.0249023,0.0284424,0.0297852,0.029541,0.0280457,0.0254211,0.0237732,0.0195312,0.0141602,0.00878906,0.0050354,0.00558472,0.00683594,0.00839233,0.00900269,0.00906372,0.0108643,0.0141602,0.0184021,0.0226746,0.024292,0.0248413,0.024231,0.0226135,0.0214233,0.0188599,0.0151672,0.00967407,0.00402832,-0.00106812,-0.00448608,-0.00537109,-0.00598145,-0.00558472,-0.00497437,-0.00476074,-0.00482178,-0.00515747,-0.00772095,-0.0126038,-0.020874,-0.0320129,-0.0434875,-0.0541687,-0.0639648,-0.0725403,-0.0791931,-0.0842285,-0.0869751,-0.0862427,-0.0836182,-0.0792542,-0.0761719,-0.0724182,-0.0704651,-0.0684509,-0.0672607,-0.0655823,-0.0637512,-0.061554,-0.0578003,-0.0534363,-0.0465088,-0.0390015,-0.0298767,-0.0221558,-0.0163879,-0.0135498,-0.0148926,-0.0169678,-0.0223389,-0.0279846,-0.0331421,-0.0360413,-0.0359192,-0.0312805,-0.0235596,-0.0133667,6.10352e-05,0.0126953,0.0250244,0.0325623,0.0360413,0.0343018,0.0317383,0.0279846,0.0257568,0.0256348,0.0276489,0.0331421,0.0440369,0.0579834,0.0741577,0.0869751,0.0943604,0.0960388,0.0916748,0.0842285,0.0730286,0.0614014,0.0477905,0.0361023,0.0271912,0.0237732,0.0252991,0.0281067,0.0326843,0.0346985,0.0357666,0.0345764,0.0322876,0.0287781,0.0246887,0.0191345,0.0128784,0.00906372,0.00683594,0.00726318,0.00952148,0.0116882,0.0115356,0.0110168,0.0108032,0.0108032,0.0134277,0.0137634,0.0142822,0.0138855,0.0149536,0.017395,0.019928,0.0209351,0.0204163,0.015625,0.0108032,0.00549316,0.000274658,-0.0038147,-0.00805664,-0.0119324,-0.0131531,-0.013092,-0.0104065,-0.00857544,-0.00765991,-0.0100098,-0.0149536,-0.0223389,-0.0311279,-0.0406799,-0.0524902,-0.0640869,-0.0738831,-0.0827637,-0.0867004,-0.0879211,-0.0865784,-0.0830078,-0.0787964,-0.0738831,-0.0679321,-0.0632324,-0.0583191,-0.0562439,-0.0532837,-0.0509949,-0.0489807,-0.0461121,-0.0430298,-0.0395203,-0.0349731,-0.0306702,-0.0268555,-0.0246887,-0.0235596,-0.0241699,-0.0254211,-0.0265808,-0.0269165,-0.025177,-0.0220947,-0.0179749,-0.0127563,-0.00576782,0.00289917,0.0115356,0.0180664,0.0209961,0.019989,0.0175781,0.0167847,0.0163879,0.0194702,0.0225525,0.0269775,0.0371094,0.0487366,0.0644836,0.0786438,0.0879211,0.0897217,0.086792,0.0803223,0.0728149,0.0634766,0.0536194,0.0428772,0.0339661,0.0294495,0.0303345,0.0342407,0.040741,0.0436096,0.0438843,0.0421448,0.0387878,0.0347595,0.0297852,0.0226135,0.0151062,0.00759888,0.00296021,0.00222778,0.00430298,0.00738525,0.00967407,0.00918579,0.0101929,0.0100098,0.012207,0.0128174,0.0126038,0.0103455,0.00784302,0.00698853,0.00866699,0.0101318,0.012207,0.0106812,0.00939941,0.00570679,0.003479,0.000732422,-0.00289917,-0.00576782,-0.00991821,-0.012207,-0.0136108,-0.0134888,-0.012146,-0.0132141,-0.0138855,-0.0183105,-0.0228271,-0.0293274,-0.0358276,-0.044281,-0.0536804,-0.0632935,-0.0719604,-0.0775146,-0.0803223,-0.0803223,-0.0779724,-0.0740967,-0.0697937,-0.0636292,-0.058197,-0.052948,-0.0481873,-0.045105,-0.0433655,-0.0426025,-0.041687,-0.040741,-0.0388489,-0.0377197,-0.0369873,-0.0377808,-0.0379944,-0.0379944,-0.036499,-0.0330811,-0.0298767,-0.0245056,-0.0185242,-0.0114746,-0.00289917,0.00476074,0.0125427,0.0175171,0.019928,0.0192566,0.0161133,0.0133667,0.0114746,0.0111389,0.0125427,0.0171814,0.025177,0.037323,0.0515442,0.0663147,0.077179,0.0828857,0.0830078,0.0795898,0.0726318,0.0643005,0.0542297,0.0433655,0.0352478,0.0298767,0.0303955,0.0340271,0.0396118,0.0454407,0.0487976,0.049469,0.0498047,0.0467834,0.0426025,0.0358276,0.0270996,0.0192566,0.0118713,0.00857544,0.00637817,0.00537109,0.00564575,0.00469971,0.00448608,0.00457764,0.00497437,0.00476074,0.00415039,0.00222778,0.00088501,0,-0.000213623,0.0015564,0.00213623,0.0020752,0.00180054,0.00012207,-0.000335693,-0.00195312,-0.003479,-0.00396729,-0.00616455,-0.00570679,-0.00637817,-0.00491333,-0.00457764,-0.0038147,-0.00531006,-0.00857544,-0.0134277,-0.0201416,-0.0279236,-0.0361633,-0.0446167,-0.0548401,-0.0629578,-0.0696106,-0.073822,-0.0749817,-0.0743713,-0.0726318,-0.069397,-0.0661011,-0.0627441,-0.058136,-0.0542297,-0.0500793,-0.0479126,-0.0457764,-0.0430908,-0.0399475,-0.0361023,-0.0330811,-0.0314636,-0.0319519,-0.0324097,-0.0336914,-0.0334778,-0.0326233,-0.0297241,-0.0250244,-0.0187378,-0.0104675,-0.00140381,0.00817871,0.0178528,0.024353,0.0273743,0.0259094,0.0216064,0.01651,0.0128174,0.00952148,0.0101318,0.0124207,0.0197449,0.0311279,0.0455627,0.0602112,0.0724792,0.0797424,0.0814209,0.0791321,0.0724792,0.0644226,0.0552979,0.0444946,0.037323,0.0309448,0.0299988,0.0327454,0.0369873,0.0424194,0.0459595,0.0483093,0.0483093,0.0455017,0.0415344,0.0354919,0.027771,0.0195923,0.012085,0.0065918,0.00308228,0.0017395,0.00134277,0.000793457,0.000549316,0.00134277,0.00213623,0.00396729,0.00390625,0.00390625,0.00140381,0.00112915,0,0.000793457,0.000396729,0.00012207,-0.000335693,-0.00134277,-0.00268555,-0.00369263,-0.00610352,-0.00793457,-0.00967407,-0.0109253,-0.0113525,-0.0112,-0.0104065,-0.0101318,-0.0112,-0.0126038,-0.0169678,-0.0220947,-0.0288696,-0.038269,-0.0475769,-0.0570374,-0.0657654,-0.0722961,-0.074646,-0.0729675,-0.0701294,-0.0653076,-0.0591125,-0.0534363,-0.0473938,-0.0434875,-0.0414124,-0.0414734,-0.0436096,-0.045166,-0.0464478,-0.0455627,-0.0434875,-0.0418091,-0.0410156,-0.0383301,-0.0351562,-0.0300598,-0.024231,-0.0181274,-0.0132141,-0.00750732,-0.00180054,0.0050354,0.0119324,0.0186462,0.0233459,0.0246277,0.0237732,0.0205383,0.0174561,0.015625,0.015625,0.0162964,0.020813,0.0266418,0.0379944,0.0500793,0.0624084,0.0705261,0.0752258,0.0734253,0.0693359,0.0623474,0.0540161,0.0448303,0.0359192,0.0281982,0.0241699,0.0260315,0.0307922,0.0381775,0.0434875,0.0469666,0.0475769,0.0465088,0.0428772,0.0377197,0.0299377,0.0216064,0.0127563,0.00491333,0.00128174,-0.00100708,0,0.00106812,0.00234985,0.00296021,0.00415039,0.00643921,0.00772095,0.00817871,0.00570679,0.0032959,0.000457764,-0.00106812,-0.0012207,-0.0020752,-0.00268555,-0.00515747,-0.0071106,-0.00827026,-0.00857544,-0.00857544,-0.00933838,-0.0108032,-0.0128784,-0.0142212,-0.015564,-0.01651,-0.0179749,-0.0211487,-0.0260925,-0.0302734,-0.0357666,-0.0414124,-0.0464478,-0.0539551,-0.0606079,-0.0653687,-0.0677795,-0.0675049,-0.0653076,-0.0617981,-0.0580444,-0.0534363,-0.0473022,-0.0418701,-0.0371704,-0.0354919,-0.0356445,-0.0367126,-0.0370483,-0.0378418,-0.0391846,-0.0410767,-0.0428162,-0.044281,-0.0420227,-0.0379944,-0.0314026,-0.0228271,-0.0149536,-0.00482178,0.00476074,0.0141602,0.024353,0.0304565,0.0338135,0.0328979,0.0288696,0.0252991,0.0213318,0.0202026,0.0196533,0.0203247,0.0241699,0.0323486,0.0434265,0.0560303,0.066925,0.0732117,0.0743713,0.0714111,0.0665894,0.0580444,0.0496521,0.0384521,0.0282593,0.0205994,0.0171204,0.0185852,0.0226746,0.0293274,0.0342407,0.0379333,0.0406799,0.0419312,0.0411377,0.0381165,0.0317383,0.0232849,0.0141602,0.0065918,0.000610352,-0.0017395,-0.0038147,-0.00497437,-0.00457764,-0.00302124,0.000274658,0.00524902,0.00827026,0.00967407,0.0088501,0.00732422,0.00497437,0.00268555,-6.10352e-05,-0.00323486,-0.00805664,-0.0108643,-0.0139465,-0.0146179,-0.0144958,-0.0140381,-0.0141602,-0.0138245,-0.0142822,-0.0140381,-0.0148926,-0.0160522,-0.019989,-0.0249634,-0.0310059,-0.037262,-0.0440979,-0.0512085,-0.0586548,-0.065979,-0.0706787,-0.0731506,-0.0717468,-0.0681152,-0.0632935,-0.0576477,-0.050415,-0.0440369,-0.0374451,-0.0326843,-0.0317993,-0.0322266,-0.0347595,-0.0369873,-0.0386658,-0.0401306,-0.041626,-0.0418091,-0.0413513,-0.037323,-0.0319519,-0.0236816,-0.0148926,-0.00491333,0.00408936,0.0118713,0.0192566,0.0263672,0.0311279,0.0332947,0.03302,0.0293884,0.0253601,0.0235596,0.0238953,0.0255127,0.0291138,0.0346985,0.0424194,0.0526123,0.0634155,0.0729675,0.07724,0.0765686,0.0714722,0.0632324,0.053833,0.0446167,0.0343018,0.0245667,0.0187378,0.0163879,0.0184631,0.0238342,0.0308838,0.0356445,0.0405273,0.0422058,0.0418701,0.0397339,0.0341492,0.0287781,0.0202026,0.0123596,0.00531006,-0.000274658,-0.00256348,-0.00442505,-0.0050354,-0.00482178,-0.00402832,-0.00222778,-0.000274658,0.0020752,0.00274658,0.00289917,0.0017395,0.000610352,-0.00128174,-0.00308228,-0.00637817,-0.00924683,-0.0125427,-0.0158997,-0.0183105,-0.0191345,-0.0194702,-0.0185852,-0.0171814,-0.0157776,-0.0139465,-0.0147095,-0.0146179,-0.0179138,-0.0229492,-0.0306702,-0.0396118,-0.0499268,-0.0600586,-0.0693359,-0.077179,-0.0813293,-0.0826111,-0.0793152,-0.0730286,-0.0657043,-0.0566406,-0.0481262,-0.0397949,-0.033905,-0.0316162,-0.032074,-0.0344238,-0.0375061,-0.041626,-0.0440979,-0.0458984,-0.0463867,-0.0428772,-0.0367126,-0.02771,-0.0176392,-0.00537109,0.00531006,0.016571,0.024353,0.0302734,0.0344238,0.0359192,0.0350342,0.0322266,0.0275269,0.0228882,0.020752,0.020752,0.024231,0.0287781,0.0362549,0.0439453,0.0543518,0.0639648,0.0728149,0.0775146,0.077301,0.0740356,0.0677795,0.0598755,0.0519409,0.0437622,0.0340271,0.0272522,0.0238342,0.0232239,0.0267029,0.0312805,0.0363159,0.0400085,0.0419312,0.0421448,0.0400696,0.0355835,0.0294495,0.0202026,0.011261,0.00241089,-0.00524902,-0.00933838,-0.0118103,-0.0122681,-0.0124207,-0.0101929,-0.00732422,-0.00323486,0.000549316,0.00140381,0.00189209,-0.000793457,-0.00247192,-0.00531006,-0.00738525,-0.00979614,-0.012207,-0.0139465,-0.0160522,-0.0169678,-0.0173035,-0.0184021,-0.0187378,-0.019928,-0.020813,-0.0231018,-0.0241089,-0.0268555,-0.0287781,-0.0335693,-0.0386047,-0.0458374,-0.0542297,-0.0617981,-0.0706787,-0.0765076,-0.0802612,-0.0803223,-0.0784607,-0.0731506,-0.0661621,-0.0561829,-0.0472412,-0.0391235,-0.0340271,-0.0307312,-0.0323486,-0.0339661,-0.0384521,-0.0428162,-0.0463867,-0.0488586,-0.0487976,-0.0445557,-0.0369873,-0.0246887,-0.0101318,0.00363159,0.0169067,0.0264282,0.0351562,0.0418091,0.0447083,0.044281,0.0402832,0.0331421,0.0257568,0.0222168,0.0218201,0.0238953,0.0288696,0.0355835,0.0447693,0.0564575,0.0691833,0.0791321,0.0837708,0.0836792,0.0777893,0.0696106,0.0613403,0.0518799,0.0428162,0.0334778,0.0264282,0.0236816,0.0250244,0.0302124,0.037323,0.0426025,0.0464478,0.0474548,0.0475159,0.0438232,0.0414124,0.033905,0.0247803,0.013031,0.00341797,-0.00457764,-0.00906372,-0.0123596,-0.0145569,-0.0167236,-0.0158386,-0.0141602,-0.00933838,-0.00491333,-0.0015564,-0.000549316,-0.00241089,-0.00369263,-0.00631714,-0.00866699,-0.013031,-0.0177917,-0.0224304,-0.0273743,-0.0279846,-0.0279846,-0.0262451,-0.0232849,-0.0219421,-0.0201416,-0.019928,-0.0200806,-0.0220947,-0.02771,-0.0353088,-0.0457764,-0.0569763,-0.0677795,-0.0769653,-0.08255,-0.0860291,-0.0851746,-0.0822144,-0.0755615,-0.0675049,-0.0574646,-0.0478516,-0.0401917,-0.0354919,-0.0346375,-0.0357056,-0.0392761,-0.0426941,-0.045105,-0.0464478,-0.0473938,-0.0457153,-0.0424805,-0.03302,-0.0205383,-0.00549316,0.00665283,0.0172424,0.0247803,0.0324707,0.0379944,0.0426025,0.0422058,0.0376587,0.0316162,0.0255737,0.0236816,0.0249023,0.0280457,0.0317993,0.0377197,0.0457153,0.0555725,0.0679321,0.077301,0.0827637,0.0833435,0.0796509,0.0726318,0.065918,0.0586548,0.0506592,0.0420837,0.0346375,0.0300598,0.0296631,0.0333557,0.0392761,0.0439453,0.0465698,0.0468445,0.04422,0.0424194,0.0390015,0.0324707,0.0234375,0.0125427,0.00262451,-0.00497437,-0.0088501,-0.0108643,-0.0116882,-0.0126038,-0.0120239,-0.00918579,-0.00396729,0.000274658,0.00375366,0.003479,0.000274658,-0.00314331,-0.00738525,-0.0115356,-0.0154419,-0.0202026,-0.0256348,-0.0299377,-0.0315552,-0.0296631,-0.0276489,-0.0245056,-0.0232239,-0.0232849,-0.0238342,-0.0259705,-0.0299377,-0.0359802,-0.045166,-0.056366,-0.0673218,-0.0770569,-0.0812073,-0.0834351,-0.0818787,-0.0783997,-0.0726318,-0.0655823,-0.056366,-0.0470581,-0.0400085,-0.037262,-0.0367737,-0.0401306,-0.0440369,-0.0469055,-0.0489197,-0.0512695,-0.0522766,-0.0514221,-0.0445557,-0.0340881,-0.019928,-0.00482178,0.00765991,0.0183105,0.0269165,0.0349121,0.0414734,0.0434265,0.0420227,0.0369873,0.0306702,0.0266418,0.024353,0.0250244,0.0261841,0.0301208,0.0353088,0.0430298,0.053894,0.0643616,0.0718079,0.0761108,0.0758972,0.0733032,0.0683899,0.0632935,0.057312,0.0506592,0.0429382,0.0379333,0.0358276,0.0365906,0.040802,0.0443726,0.0477295,0.0489197,0.0514221,0.0512085,0.0512085,0.0471802,0.0397949,0.0306091,0.0196533,0.00991821,0.000610352,-0.00726318,-0.0148315,-0.0205383,-0.0240173,-0.0232239,-0.0203247,-0.0152893,-0.0105286,-0.00604248,-0.00195312,-0.000549316,0.00088501,-0.0015564,-0.00442505,-0.0106812,-0.016571,-0.0229492,-0.0284424,-0.0302734,-0.0316162,-0.0302124,-0.0296631,-0.0268555,-0.0253601,-0.0235596,-0.0247803,-0.0291138,-0.036438,-0.0467834,-0.0580444,-0.0689392,-0.078064,-0.0856934,-0.0901489,-0.0910645,-0.0885925,-0.0810852,-0.0724792,-0.0617981,-0.053009,-0.0462952,-0.0406799,-0.0386658,-0.037323,-0.0386047,-0.0413513,-0.0425415,-0.0444336,-0.0431519,-0.0394592,-0.0327454,-0.0229492,-0.0114746,0.000610352,0.0120239,0.0222168,0.032135,0.0399475,0.04422,0.0452881,0.0430908,0.038269,0.0334167,0.0292053,0.0262451,0.0250854,0.0257568,0.0297241,0.0354309,0.0443726,0.0551758,0.0628967,0.0701294,0.0726929,0.0733643,0.0701904,0.0658264,0.0594482,0.0516663,0.04422,0.0380554,0.0357666,0.0341492,0.0375061,0.0413513,0.0455017,0.0489197,0.0509338,0.0514221,0.0501404,0.0471802,0.0406189,0.032135,0.0212097,0.0119324,0.00247192,-0.00549316,-0.0110168,-0.015564,-0.0188599,-0.0177307,-0.0158386,-0.0117493,-0.00799561,-0.0038147,-0.00128174,-0.000335693,-0.000610352,-0.0020752,-0.00543213,-0.0103455,-0.0157776,-0.0214844,-0.0267639,-0.0314026,-0.0330811,-0.0341492,-0.03302,-0.0322266,-0.0306702,-0.0306702,-0.0310669,-0.0340271,-0.0393982,-0.0471802,-0.0561218,-0.065094,-0.0734253,-0.0795898,-0.0846863,-0.0870361,-0.0848999,-0.0791931,-0.0716248,-0.0626221,-0.0548401,-0.0483093,-0.0437012,-0.0384521,-0.0367126,-0.0353088,-0.0365906,-0.0383301,-0.0394592,-0.0374451,-0.0319519,-0.0240173,-0.0151062,-0.0050354,0.00408936,0.0146179,0.024292,0.0353699,0.040863,0.0444946,0.0439453,0.0414734,0.0383911,0.0369873,0.0354919,0.0334778,0.0305481,0.0303955,0.032074,0.0369873,0.0455017,0.0519409,0.0561218,0.0585938,0.0593262,0.0602722,0.0614014,0.0609436,0.0571899,0.0518799,0.0462952,0.0433655,0.0423584,0.0434875,0.0440979,0.0444946,0.0448914,0.0461731,0.0483093,0.0491333,0.048645,0.0440979,0.037384,0.027771,0.0185852,0.0103455,0.00189209,-0.00650024,-0.0147705,-0.0213318,-0.0241699,-0.0245056,-0.0209351,-0.0174561,-0.0142822,-0.0115967,-0.00918579,-0.00759888,-0.00582886,-0.00643921,-0.00765991,-0.0112,-0.0145569,-0.0184021,-0.0204773,-0.0231018,-0.0254211,-0.0278625,-0.0299988,-0.0333557,-0.0366516,-0.0400696,-0.0450439,-0.0518799,-0.0587769,-0.0644836,-0.0699463,-0.0734863,-0.0754395,-0.0775146,-0.0769653,-0.0755005,-0.0719604,-0.0683289,-0.0646362,-0.0618896,-0.0584412,-0.0552979,-0.0514221,-0.0471802,-0.0438843,-0.0393372,-0.0345764,-0.0287781,-0.0220947,-0.0140381,-0.0062561,0.00180054,0.00918579,0.0152283,0.0204163,0.0267029,0.0313416,0.0354309,0.0378418,0.0369873,0.0354309,0.0349121,0.0347595,0.0356445,0.0358276,0.0369263,0.0375061,0.0401306,0.0455017,0.0502014,0.0540161,0.0549011,0.0552979,0.0543518,0.0535583,0.0534973,0.0513306,0.0484619,0.0458374,0.0437012,0.0433655,0.04422,0.0459595,0.0465698,0.0469666,0.0463867,0.0464478,0.0447693,0.0438843,0.0418091,0.037262,0.0316162,0.024353,0.0175781,0.0109253,0.00448608,-0.00140381,-0.00778198,-0.0128784,-0.0159607,-0.0167236,-0.0160522,-0.0161133,-0.0152893,-0.0150452,-0.0146179,-0.0135498,-0.0139465,-0.0140381,-0.0167236,-0.0179138,-0.0212708,-0.0229492,-0.0249023,-0.0265198,-0.0294495,-0.0323486,-0.0361633,-0.0404053,-0.0435486,-0.0490723,-0.0541077,-0.0603943,-0.0639038,-0.0686035,-0.0698547,-0.0715332,-0.0720825,-0.0730896,-0.0715332,-0.070282,-0.0680542,-0.0658264,-0.065033,-0.0622864,-0.0600586,-0.0554504,-0.0504761,-0.0454407,-0.0394592,-0.0342407,-0.0268555,-0.0198059,-0.0116882,-0.00375366,0.00369263,0.0106812,0.0169678,0.0228882,0.0270386,0.0343628,0.0368347,0.0403442,0.0405273,0.0400696,0.0392761,0.0390015,0.0396729,0.0396729,0.0389404,0.0390015,0.0401917,0.0434875,0.0479736,0.0506592,0.0511475,0.0504761,0.0492554,0.0491943,0.0485229,0.0481262,0.0461731,0.0444336,0.0439453,0.0444946,0.0470581,0.049469,0.0514832,0.0520935,0.0516052,0.0505371,0.0484009,0.0453796,0.041687,0.0358276,0.0283813,0.0211487,0.0138855,0.00939941,0.00442505,0.000396729,-0.00396729,-0.00857544,-0.0107422,-0.0122681,-0.0124817,-0.0132751,-0.0152283,-0.0167236,-0.0182495,-0.0184631,-0.017395,-0.0177307,-0.0173035,-0.0172424,-0.0189209,-0.0187378,-0.0212097,-0.0222778,-0.0252991,-0.0299377,-0.0356445,-0.0427551,-0.0502014,-0.0567932,-0.0641479,-0.069519,-0.0753784,-0.0786438,-0.0812073,-0.0817566,-0.0812073,-0.0798645,-0.0776367,-0.0758362,-0.0724792,-0.070282,-0.0662537,-0.0631409,-0.0583801,-0.0528259,-0.0481262,-0.0410767,-0.0347595,-0.027771,-0.0205383,-0.0119324,-0.00390625,0.00509644,0.0128174,0.0203247,0.0270996,0.0335693,0.0387268,0.04422,0.0461731,0.0461731,0.0441589,0.0404053,0.0375977,0.0355835,0.0337524,0.0331421,0.0327454,0.0340271,0.0380554,0.0437622,0.0498657,0.0535583,0.0544434,0.0544434,0.0522766,0.0511475,0.048645,0.0467834,0.0425415,0.0401306,0.0383911,0.0389404,0.0409546,0.0434875,0.0462341,0.0461731,0.0465088,0.0449524,0.0428162,0.0406799,0.0362549,0.0303345,0.0241699,0.017395,0.0119324,0.00784302,0.00509644,0.00323486,-0.000396729,-0.00247192,-0.00363159,-0.00448608,-0.00280762,-0.00302124,-0.00323486,-0.00396729,-0.00598145,-0.00650024,-0.00717163,-0.00827026,-0.0107422,-0.0141602,-0.0193176,-0.0238953,-0.0283203,-0.032959,-0.0381775,-0.0432739,-0.0491333,-0.0546265,-0.0596619,-0.0632324,-0.0667725,-0.0690613,-0.0718079,-0.0757141,-0.0775757,-0.0799255,-0.0810852,-0.0818176,-0.0822144,-0.0818787,-0.0809937,-0.0775757,-0.0718079,-0.0656433,-0.057373,-0.0500793,-0.0420227,-0.0344849,-0.0267639,-0.0182495,-0.0116882,-0.00430298,0.00189209,0.00805664,0.0135498,0.019989,0.0268555,0.0335693,0.0399475,0.0443726,0.0471191,0.048645,0.0487976,0.0477295,0.0468445,0.0459595,0.0428772,0.0419312,0.0414124,0.0429382,0.0444946,0.0465088,0.0474548,0.0473022,0.0465698,0.0458984,0.045105,0.0448303,0.0430298,0.0419312,0.0409546,0.0414734,0.0420227,0.0447083,0.0467224,0.0475159,0.0471191,0.0455627,0.0431519,0.0397949,0.036438,0.0302734,0.0245667,0.0169067,0.0119324,0.00671387,0.00390625,0.00100708,-0.00140381,-0.00314331,-0.00531006,-0.00509644,-0.00570679,-0.00524902,-0.00631714,-0.00750732,-0.0083313,-0.00952148,-0.0088501,-0.00839233,-0.00784302,-0.00738525,-0.00805664,-0.00857544,-0.0108032,-0.0126953,-0.0167236,-0.0224304,-0.0290527,-0.0371094,-0.0457764,-0.0533447,-0.0610657,-0.0665894,-0.0723572,-0.0760498,-0.0795898,-0.0819397,-0.082489,-0.0833435,-0.0826111,-0.082489,-0.0820923,-0.0811462,-0.0787964,-0.0744324,-0.0687866,-0.0623474,-0.0558472,-0.0479126,-0.0396729,-0.0296021,-0.019989,-0.00991821,-0.00146484,0.00732422,0.0154419,0.0234375,0.0306702,0.036377,0.0414124,0.045166,0.0462341,0.0469055,0.0455017,0.0427551,0.0411377,0.0389404,0.0377197,0.0368347,0.0377197,0.0393982,0.0427551,0.0465698,0.0499878,0.0516663,0.0517578,0.0498047,0.0477905,0.0448303,0.0432739,0.0401917,0.037384,0.037323,0.0375977,0.0410767,0.0452271,0.048645,0.0511475,0.0507507,0.0499268,0.0461121,0.0420227,0.0343628,0.0258484,0.0154419,0.00576782,-0.00201416,-0.00717163,-0.00918579,-0.0110779,-0.0106812,-0.0109253,-0.00772095,-0.00537109,-0.0020752,0,0,-0.00128174,-0.00262451,-0.00430298,-0.0050354,-0.00576782,-0.00643921,-0.00817871,-0.0107422,-0.0125427,-0.0143738,-0.0176392,-0.0205994,-0.0273132,-0.0334778,-0.041748,-0.0485229,-0.0545654,-0.0600586,-0.065918,-0.0710144,-0.0769043,-0.0798035,-0.0820923,-0.0826721,-0.0835571,-0.0845642,-0.0840149,-0.0819397,-0.0777893,-0.0710144,-0.0637512,-0.0551147,-0.0480652,-0.0400085,-0.0318909,-0.0233459,-0.0161743,-0.00946045,-0.00268555,0.00308228,0.00958252,0.0168457,0.0245056,0.0327454,0.039856,0.0454407,0.0485229,0.0502014,0.0504761,0.0482483,0.0457153,0.0415344,0.0371704,0.0336304,0.0328064,0.0330811,0.0358276,0.0394592,0.041748,0.0452881,0.0466309,0.0484009,0.0482483,0.0469666,0.0441589,0.041687,0.0390625,0.0387268,0.0390625,0.0412903,0.0433655,0.0452881,0.0457153,0.0457153,0.04422,0.0414734,0.0354919,0.0281982,0.0198669,0.0106812,0.00323486,-0.00302124,-0.00845337,-0.0116882,-0.0142822,-0.0151672,-0.0144348,-0.0127563,-0.0103455,-0.00958252,-0.00827026,-0.0065918,-0.00650024,-0.00476074,-0.0032959,-0.00241089,-0.00201416,-0.0015564,-0.0015564,-0.00213623,-0.00448608,-0.00750732,-0.0122681,-0.0182495,-0.0256348,-0.0342407,-0.0418091,-0.0496521,-0.0561829,-0.0632324,-0.0696716,-0.0744324,-0.0787964,-0.0814819,-0.0842896,-0.0861816,-0.0881348,-0.0890503,-0.0891418,-0.0858459,-0.0819397,-0.0754395,-0.0677185,-0.0587769,-0.0481873,-0.0380554,-0.0267029,-0.0169067,-0.00744629,-0.000457764,0.00772095,0.0147705,0.0229492,0.0302124,0.037323,0.0432129,0.048584,0.0524292,0.0558472,0.0559082,0.0541077,0.0507507,0.0467224,0.0431519,0.0403442,0.0390625,0.0377808,0.0386658,0.0401917,0.0444946,0.0472412,0.0502014,0.0503235,0.0489197,0.0462341,0.0436096,0.040741,0.038269,0.0356445,0.0348206,0.0354309,0.0375061,0.0400696,0.0412903,0.0426025,0.0419312,0.0390625,0.0343018,0.0278625,0.0204163,0.0127563,0.003479,-0.00296021,-0.0102539,-0.0142212,-0.01651,-0.0184021,-0.0171814,-0.0171814,-0.0151672,-0.0134888,-0.0104065,-0.00866699,-0.00665283,-0.00476074,-0.003479,-0.00222778,-0.0012207,-0.000335693,-0.000793457,-0.000946045,-0.00424194,-0.0071106,-0.0118103,-0.017395,-0.0237732,-0.0297852,-0.0369873,-0.0433655,-0.04953,-0.0549622,-0.0603943,-0.065155,-0.0701904,-0.0755005,-0.0796509,-0.0836182,-0.0864563,-0.0898743,-0.0908813,-0.0895386,-0.0866394,-0.0804138,-0.0735474,-0.0647583,-0.0547791,-0.0431519,-0.032135,-0.0216064,-0.0139465,-0.00671387,0.00012207,0.00817871,0.0151062,0.0220947,0.0273132,0.0336914,0.0395203,0.0477295,0.052948,0.0564575,0.0563049,0.0549011,0.0535583,0.0522766,0.0509949,0.0491333,0.0462952,0.0456238,0.0458374,0.0489197,0.0520935,0.0542297,0.0548401,0.0546265,0.0545044,0.053894,0.053894,0.053009,0.0511475,0.0502625,0.0485229,0.0482483,0.0467224,0.0456238,0.0414124,0.036377,0.0298767,0.0218811,0.0148926,0.00726318,-0.000213623,-0.00671387,-0.0128174,-0.0171814,-0.0196533,-0.021759,-0.0216675,-0.0224915,-0.0224915,-0.021759,-0.0210876,-0.0196533,-0.0176392,-0.0157166,-0.0124207,-0.00933838,-0.00610352,-0.00256348,-0.00012207,0.00268555,0.00375366,0.00213623,-0.000671387,-0.00598145,-0.0122681,-0.020813,-0.0291138,-0.0390015,-0.0471191,-0.0559692,-0.0619507,-0.0693359,-0.0735474,-0.0775146,-0.0812073,-0.0830994,-0.0853577,-0.0873108,-0.0886536,-0.0889282,-0.0871277,-0.0838318,-0.0779114,-0.0712891,-0.0624695,-0.0533447,-0.0422058,-0.0310059,-0.0197449,-0.0110779,-0.00335693,0.003479,0.0103455,0.0181274,0.024292,0.0300598,0.0358276,0.0406189,0.045166,0.0495911,0.0523376,0.0523376,0.0511475,0.0484619,0.0464478,0.0440979,0.0436096,0.0436096,0.0448303,0.0471802,0.0505371,0.0547791,0.0589294,0.0620117,0.0637512,0.062561,0.0605469,0.0589294,0.0578613,0.0562439,0.0542908,0.0524902,0.0490723,0.0473938,0.0465698,0.0445557,0.0410767,0.0351562,0.027771,0.0195923,0.0119324,0.00570679,-0.00274658,-0.00979614,-0.0167236,-0.0212708,-0.0234985,-0.0237732,-0.0233459,-0.0234985,-0.024292,-0.0224915,-0.0205383,-0.0162354,-0.0128174,-0.0104065,-0.00759888,-0.00610352,-0.00415039,-0.0017395,-0.000213623,-0.000671387,-0.00241089,-0.00650024,-0.012207,-0.0186462,-0.0250854,-0.0333557,-0.0411987,-0.0488586,-0.0567932,-0.061615,-0.0664368,-0.0700684,-0.0736389,-0.0773926,-0.0808716,-0.0836792,-0.0860291,-0.0874634,-0.0889893,-0.0889282,-0.085907,-0.081665,-0.0752869,-0.0667114,-0.0559692,-0.0447693,-0.0328064,-0.0221558,-0.0122681,-0.00415039,0.00308228,0.0104065,0.01651,0.0226746,0.0273132,0.0324097,0.0374451,0.0427551,0.0477295,0.0505981,0.0523376,0.0533447,0.052002,0.0514221,0.0505371,0.0490723,0.0491943,0.0490723,0.0505371,0.0527649,0.0556335,0.0595398,0.0627441,0.0640869,0.065918,0.0654297,0.0646973,0.0639038,0.061676,0.0594482,0.0554504,0.0516663,0.0479126,0.0430908,0.0383911,0.032074,0.025238,0.0181885,0.0106812,0.00302124,-0.0032959,-0.00991821,-0.0149536,-0.0195312,-0.0216064,-0.0237732,-0.0234985,-0.0232849,-0.0220032,-0.019989,-0.0186462,-0.0162354,-0.0137634,-0.0101318,-0.00692749,-0.0032959,-0.000396729,0.00161743,0.00341797,0.00363159,0.0032959,0.000549316,-0.00363159,-0.00967407,-0.0170593,-0.0255737,-0.0339661,-0.0429382,-0.0511475,-0.0589294,-0.0644836,-0.0706787,-0.0748291,-0.0779724,-0.0805359,-0.0818787,-0.0842896,-0.0853577,-0.085968,-0.085907,-0.0839539,-0.0802002,-0.0756226,-0.0686035,-0.0614624,-0.0523376,-0.0423584,-0.0318909,-0.0222168,-0.0134888,-0.00637817,0.000549316,0.00671387,0.0132141,0.0191345,0.0240173,0.0288696,0.0324097,0.036377,0.0400085,0.0422668,0.0441589,0.04422,0.0440369,0.0434875,0.0441589,0.0455017,0.0475769,0.0498047,0.0531006,0.0578613,0.0624695,0.0668335,0.0706177,0.0732117,0.0732117,0.0728149,0.0699463,0.0677185,0.0636902,0.0599976,0.0556335,0.0512085,0.0458984,0.040802,0.0362549,0.0312805,0.0250854,0.0187988,0.0108032,0.00296021,-0.00457764,-0.011261,-0.0175171,-0.0224304,-0.0265198,-0.0278625,-0.0288696,-0.0255737,-0.0228271,-0.0194092,-0.0158386,-0.0116882,-0.00772095,-0.00390625,-0.000671387,0.00234985,0.00323486,0.00402832,0.00296021,0.00180054,-0.00088501,-0.00390625,-0.00924683,-0.0151672,-0.0229492,-0.0304565,-0.0393372,-0.0457764,-0.0531616,-0.0591125,-0.0646973,-0.069397,-0.0725403,-0.0758362,-0.0767212,-0.0787964,-0.0795898,-0.080658,-0.0804138,-0.0795898,-0.0761719,-0.0706787,-0.065155,-0.0585327,-0.0504761,-0.0418701,-0.0318909,-0.0226746,-0.0144348,-0.00778198,-0.00268555,0.00167847,0.00549316,0.0102539,0.0129395,0.0157166,0.0191956,0.0220947,0.0250244,0.0291138,0.0322876,0.0351562,0.0371094,0.0379333,0.0404663,0.0410767,0.0439453,0.0455017,0.0489197,0.0525513,0.056366,0.060791,0.0657654,0.069458,0.0727539,0.0743103,0.0734253,0.0716858,0.0680542,0.0639648,0.0583191,0.0516663,0.0456238,0.0383911,0.0328979,0.0266418,0.0214844,0.0151672,0.0104065,0.00457764,-0.000335693,-0.00543213,-0.0109253,-0.0150452,-0.0186462,-0.0205994,-0.0218811,-0.020752,-0.0188599,-0.015625,-0.0114136,-0.00665283,-0.00228882,0.00167847,0.0050354,0.00683594,0.00866699,0.00839233,0.00643921,0.00463867,0.000396729,-0.00369263,-0.00878906,-0.0147705,-0.0218201,-0.0279236,-0.0358276,-0.0432129,-0.0506592,-0.0575256,-0.0636292,-0.0691223,-0.0727539,-0.0755615,-0.0779724,-0.079071,-0.079071,-0.0789795,-0.078186,-0.0755615,-0.0725403,-0.0680542,-0.0630798,-0.0578003,-0.0512085,-0.0438843,-0.0351562,-0.0265808,-0.0186462,-0.0112,-0.00524902,0.00128174,0.00537109,0.00900269,0.0109253,0.0122681,0.0134888,0.0158386,0.0193176,0.0224304,0.0246887,0.0276489,0.0308838,0.0353088,0.0387268,0.0418091,0.0436096,0.0456238,0.0475159,0.0505981,0.0544434,0.0574646,0.060791,0.0647583,0.0680542,0.0710144,0.0726929,0.0718079,0.0682678,0.0631409,0.0575256,0.0498047,0.0426025,0.0349121,0.0279846,0.0210876,0.015625,0.0104675,0.00582886,0.00161743,-0.00167847,-0.00558472,-0.00918579,-0.0123596,-0.0152893,-0.0175171,-0.0181885,-0.0170593,-0.0151062,-0.0115967,-0.00738525,-0.00268555,0.00228882,0.00665283,0.0107422,0.0128174,0.0142212,0.0136108,0.0120239,0.00939941,0.00592041,0.00140381,-0.00448608,-0.00991821,-0.016449,-0.0216675,-0.027771,-0.0339661,-0.039856,-0.0469055,-0.0532227,-0.0585327,-0.0634155,-0.0675964,-0.0711975,-0.0734863,-0.0757751,-0.0758972,-0.0751038,-0.073822,-0.0701904,-0.0675049,-0.0632935,-0.0589294,-0.0541077,-0.0478516,-0.0422668,-0.0347595,-0.0283203,-0.0205383,-0.0136108,-0.00799561,-0.00195312,0.00140381,0.0050354,0.00717163,0.00778198,0.00772095,0.0083313,0.00939941,0.0104065,0.0137634,0.0182495,0.0234375,0.0299988,0.037262,0.0446167,0.0522766,0.0583191,0.0619507,0.0643005,0.0657043,0.0676575,0.0664368,0.0663757,0.065033,0.0639648,0.0620728,0.0603943,0.0579834,0.0546265,0.0504761,0.044281,0.0383911,0.0309448,0.0229492,0.0148926,0.00643921,0.000213623,-0.00592041,-0.0118103,-0.0151672,-0.0182495,-0.0185852,-0.0195923,-0.0189209,-0.017395,-0.0153809,-0.0112,-0.00759888,-0.00280762,0.00201416,0.00592041,0.00933838,0.0109253,0.0144958,0.0137634,0.0128174,0.0104065,0.00738525,0.00363159,-0.000946045,-0.00476074,-0.00939941,-0.0124817,-0.0171204,-0.020813,-0.025238,-0.0292664,-0.0350952,-0.0404663,-0.0461731,-0.0511475,-0.0565186,-0.0611267,-0.0643005,-0.0676575,-0.0673218,-0.0673828,-0.0652466,-0.0631409,-0.0596619,-0.0558472,-0.0510864,-0.0473938,-0.0438843,-0.0402832,-0.0368347,-0.0317383,-0.028595,-0.0237732,-0.0189209,-0.0140381,-0.00952148,-0.00592041,-0.000732422,0.00262451,0.00610352,0.00799561,0.0100098,0.0114746,0.0139465,0.0163879,0.0198059,0.0241089,0.0292664,0.0346985,0.040802,0.0467834,0.0509949,0.0546875,0.0571899,0.0593872,0.0603333,0.0599365,0.0590515,0.0585938,0.0576477,0.0568542,0.0553589,0.0534363,0.0508728,0.0470581,0.041687,0.0366516,0.0300598,0.0216064,0.0137024,0.00576782,-0.000274658,-0.00610352,-0.0100708,-0.0132141,-0.0143738,-0.0149536,-0.0137634,-0.0116882,-0.0100708,-0.00811768,-0.00665283,-0.00442505,-0.00222778,-0.000671387,0.00146484,0.00241089,0.00469971,0.00509644,0.00598145,0.0062561,0.0067749,0.00549316,0.00363159,0.000671387,-0.00100708,-0.00482178,-0.00799561,-0.0124207,-0.0162354,-0.0205383,-0.024292,-0.0299377,-0.0338135,-0.0379944,-0.0428772,-0.0467834,-0.0508118,-0.0528259,-0.0551758,-0.0560303,-0.056366,-0.0545044,-0.0531616,-0.0500793,-0.0473938,-0.0447693,-0.0420227,-0.0410156,-0.0386047,-0.0357666,-0.0324707,-0.0299988,-0.0268555,-0.021759,-0.0167236,-0.0117493,-0.00582886,-0.00088501,0.00396729,0.00631714,0.00891113,0.0110779,0.0116882,0.0125427,0.0119324,0.0118713,0.0137024,0.0167847,0.0211487,0.0259094,0.0317993,0.036377,0.0414734,0.0469666,0.0508118,0.0533447,0.0543518,0.0546875,0.0534363,0.0518188,0.0488586,0.0471802,0.0448914,0.0425415,0.0395203,0.0360413,0.0339661,0.0303345,0.0257568,0.0213318,0.0158386,0.0101929,0.00402832,-0.00106812,-0.00564575,-0.00939941,-0.0125427,-0.0148926,-0.0160522,-0.0162354,-0.015625,-0.0137024,-0.0113525,-0.00891113,-0.00576782,-0.00262451,-0.000549316,0.00314331,0.00531006,0.00704956,0.00827026,0.00726318,0.00683594,0.00396729,0.00234985,-0.000396729,-0.00369263,-0.00631714,-0.00991821,-0.012146,-0.0148315,-0.0166321,-0.0189209,-0.020813,-0.0236816,-0.0274353,-0.0310059,-0.0349121,-0.0387878,-0.0421448,-0.0458374,-0.0473938,-0.048645,-0.0484619,-0.0471802,-0.0441589,-0.0410767,-0.0386658,-0.0343628,-0.032135,-0.0296021,-0.0267639,-0.0257568,-0.0241699,-0.0227661,-0.0209961,-0.0187378,-0.0169067,-0.0136108,-0.0109253,-0.00604248,-0.00228882,0.00140381,0.00469971,0.00759888,0.00900269,0.0115356,0.0129395,0.0140991,0.0148926,0.0157166,0.0172424,0.0188599,0.0223389,0.0249023,0.0290527,0.0315552,0.0354309,0.0390625,0.0428772,0.045105,0.0456238,0.0455017,0.0441589,0.041687,0.0399475,0.0367126,0.03302,0.0284424,0.024292,0.0204773,0.0167847,0.0138245,0.0106812,0.00765991,0.0050354,0.00262451,0.000610352,-0.00088501,-0.00268555,-0.00497437,-0.00650024,-0.00817871,-0.00906372,-0.00900269,-0.0083313,-0.00811768,-0.00650024,-0.00537109,-0.00234985,-0.000732422,0.00274658,0.00497437,0.0065918,0.00765991,0.00726318,0.0071106,0.00537109,0.00274658,0.000274658,-0.00280762,-0.00531006,-0.00765991,-0.0105286,-0.0124207,-0.0153809,-0.0163879,-0.0183105,-0.0195923,-0.0226135,-0.0241089,-0.0263672,-0.0296631,-0.0310669,-0.0337524,-0.0353699,-0.036499,-0.036377,-0.036377,-0.0353088,-0.0334167,-0.0319519,-0.0301208,-0.0296631,-0.02771,-0.0263672,-0.0240173,-0.0234375,-0.0214233,-0.0211487,-0.0194702,-0.016571,-0.0132751,-0.00967407,-0.0067749,-0.00390625,-0.000732422,0.00161743,0.00549316,0.00811768,0.00857544,0.00891113,0.0104675,0.0117493,0.0138245,0.0151062,0.0167236,0.0176392,0.0183105,0.019989,0.0235596,0.0263062,0.0273132,0.0271912,0.0265198,0.0283203,0.0283203,0.0280457,0.0268555,0.0256958,0.024292,0.0228882,0.0215454,0.0215454,0.0206604,0.0174561,0.0158386,0.0140381,0.0132751,0.011261,0.0101929,0.00698853,0.00582886,0.00369263,0.00189209,0.00012207,-6.10352e-05,-0.00201416,-0.00357056,-0.00469971,-0.00515747,-0.00463867,-0.0050354,-0.00402832,-0.0015564,0.000793457,0.00106812,0.00369263,0.00442505,0.00726318,0.0067749,0.00698853,0.0067749,0.00643921,0.00408936,0.00314331,0.00140381,-0.000946045,-0.00234985,-0.00497437,-0.00643921,-0.00845337,-0.00979614,-0.0129395,-0.0145569,-0.0182495,-0.0194092,-0.0232239,-0.0239563,-0.0267029,-0.0281982,-0.0297241,-0.0310059,-0.0317383,-0.032135,-0.0324707,-0.0306702,-0.0293274,-0.0270386,-0.0260925,-0.0246887,-0.0231628,-0.0215454,-0.0193176,-0.0175781,-0.0155029,-0.0144958,-0.0124817,-0.0110779,-0.00891113,-0.00665283,-0.00482178,-0.00408936,-0.0017395,0.00100708,0.00247192,0.0050354,0.00643921,0.00744629,0.00811768,0.00866699,0.0100708,0.0108032,0.0114746,0.0107422,0.00979614,0.00933838,0.0102539,0.0105896,0.0115967,0.012146,0.0137634,0.0151672,0.0171204,0.0179138,0.0191345,0.0177917,0.0174561,0.016571,0.0167236,0.0157776,0.0151062,0.0124817,0.0110779,0.0104065,0.0108643,0.0111389,0.0108643,0.0105896,0.00891113,0.00845337,0.00784302,0.00665283,0.00558472,0.00357056,0.00280762,0.0012207,0.00201416,0.00241089,0.00357056,0.0032959,0.00448608,0.00430298,0.00604248,0.00811768,0.00845337,0.00952148,0.00839233,0.00845337,0.00784302,0.00726318,0.00637817,0.00537109,0.00335693,0.000549316,-0.0015564,-0.00402832,-0.00631714,-0.00817871,-0.0105896,-0.0132751,-0.0148315,-0.0154419,-0.0171204,-0.0175781,-0.0179749,-0.0194702,-0.020813,-0.0231018,-0.0234375,-0.0246277,-0.0260315,-0.0272522,-0.0275879,-0.02771,-0.0260315,-0.0236816,-0.0209351,-0.0180664,-0.0157776,-0.0143738,-0.012207,-0.0104675,-0.00952148,-0.0115356,-0.0108643,-0.0103455,-0.0104065,-0.0109253,-0.0102539,-0.00906372,-0.00592041,-0.0050354,-0.00296021,-0.00167847,6.10352e-05,0.00189209,0.00180054,0.00302124,0.00161743,0.0017395,0.000671387,0.00088501,0.00268555,0.00222778,0.00369263,0.00375366,0.00582886,0.00692749,0.00918579,0.0105896,0.0126953,0.0134277,0.0143738,0.0134888,0.0154419,0.0152283,0.0144348,0.0131531,0.012207,0.0106812,0.0101929,0.00973511,0.00979614,0.00900269,0.00918579,0.00839233,0.0107422,0.0113525,0.0134277,0.0132751,0.0125427,0.0126953,0.0124207,0.012207,0.0105286,0.00918579,0.00805664,0.0067749,0.00692749,0.0062561,0.00582886,0.0071106,0.00839233,0.00811768,0.00878906,0.0083313,0.00778198,0.0062561,0.00537109,0.00247192,0,-0.00189209,-0.00436401,-0.00564575,-0.00732422,-0.00811768,-0.00967407,-0.00946045,-0.00979614,-0.00946045,-0.0100708,-0.0101929,-0.0103455,-0.011261,-0.0117493,-0.013092,-0.0137634,-0.0142822,-0.0151672,-0.0160522,-0.01651,-0.0173035,-0.0179138,-0.0178528,-0.0185242,-0.017395,-0.0174561,-0.0171814,-0.0161743,-0.0149536,-0.0139465,-0.0128784,-0.0117493,-0.0108032,-0.00906372,-0.00973511,-0.00939941,-0.00985718,-0.00967407,-0.00958252,-0.00946045,-0.00906372,-0.00744629,-0.00604248,-0.00390625,-0.00195312,-0.000549316,0.00106812,0.00106812,0.0017395,0.0012207,0.000946045,-0.000793457,-0.00201416,-0.0038147,-0.0038147,-0.00363159,-0.00314331,-0.00161743,0,0.00213623,0.0038147,0.00515747,0.00698853,0.00744629,0.00827026,0.00759888,0.00784302,0.00811768,0.00952148,0.00973511,0.0106812,0.012207,0.0128784,0.0141602,0.0147705,0.0159607,0.0158997,0.0161133,0.0147705,0.0151062,0.0138855,0.0137024,0.013092,0.012146,0.012207,0.0110779,0.0102539,0.00952148,0.00805664,0.00732422,0.00592041,0.00457764,0.00296021,0.00222778,0.00189209,0.000396729,0.000671387,-0.00012207,-6.10352e-05,-0.00134277,-0.00112915,-0.00256348,-0.00228882,-0.00341797,-0.00369263,-0.00442505,-0.00549316,-0.00476074,-0.0050354,-0.00524902,-0.00515747,-0.00537109,-0.00524902,-0.00643921,-0.00631714,-0.00631714,-0.00772095,-0.00845337,-0.00985718,-0.0105286,-0.0105896,-0.0105286,-0.0114136,-0.00991821,-0.0101318,-0.0101929,-0.00906372,-0.00924683,-0.00891113,-0.0085144,-0.00918579,-0.00973511,-0.00973511,-0.00924683,-0.00973511,-0.00933838,-0.00939941,-0.00845337,-0.00857544,-0.0085144,-0.00784302,-0.00750732,-0.00778198,-0.00845337,-0.00866699,-0.00839233,-0.00817871,-0.00778198,-0.00784302,-0.00726318,-0.00671387,-0.00631714,-0.00558472,-0.00436401,-0.003479,-0.00234985,-0.00112915,-0.000793457,0.00112915,0.00189209,0.003479,0.00463867,0.00531006,0.00637817,0.0067749,0.00793457,0.00845337,0.00857544,0.00872803,0.00891113,0.00839233,0.00839233,0.00900269,0.00900269,0.00817871,0.00799561,0.00817871,0.00738525,0.00799561,0.00793457,0.00717163,0.00698853,0.00683594,0.00671387,0.00698853,0.0067749,0.00738525,0.00616455,0.00631714,0.00524902,0.00558472,0.00570679,0.00543213,0.00497437,0.00390625,0.00280762,0.00296021,0.00268555,0.00256348,0.00222778,0.0015564,0.000274658,0.000549316,-0.000396729,0.00012207,-0.0020752,-0.00280762,-0.00448608,-0.00582886,-0.00631714,-0.00704956,-0.00799561,-0.00778198,-0.00872803,-0.00765991,-0.00799561,-0.00631714,-0.00476074,-0.00408936,-0.00357056,-0.0038147,-0.00341797,-0.00357056,-0.0032959,-0.00369263,-0.00448608,-0.00482178,-0.00515747,-0.00482178,-0.00531006,-0.00497437,-0.00537109,-0.00592041,-0.00631714,-0.00726318,-0.00704956,-0.00772095,-0.00900269,-0.00967407,-0.0104675,-0.0108643,-0.0106812,-0.0113525,-0.0109253,-0.0100098,-0.00979614,-0.00900269,-0.0088501,-0.00726318,-0.0065918,-0.00576782,-0.00476074,-0.00308228,-0.00234985,-0.00128174,-0.000335693,6.10352e-05,0.00106812,0.0012207,0.00189209,0.00189209,0.00308228,0.00268555,0.003479,0.00323486,0.00363159,0.00375366,0.00375366,0.00415039,0.00436401,0.0050354,0.00543213,0.00558472,0.00564575,0.00564575,0.00497437,0.00515747,0.00531006,0.00491333,0.00448608,0.00436401,0.00415039,0.00335693,0.003479,0.0032959,0.00296021,0.00323486,0.00234985,0.00201416,0.00234985,0.0020752,0.00201416,0.0015564,0.0015564,0.000213623,-0.000610352,-0.000213623,0.00012207,-0.000549316,-0.0012207,-0.00167847,-0.00140381,-0.00167847,-0.00140381,-0.00134277,-0.000793457,-0.00088501,-0.000671387,-0.000946045,-6.10352e-05,-0.000671387,-0.00088501,-0.00146484,-0.00189209,-0.00213623,-0.00234985,-0.00280762,-0.00280762,-0.00274658,-0.00302124,-0.00357056,-0.00363159,-0.00314331,-0.00323486,-0.00323486,-0.0038147,-0.00396729,-0.00424194,-0.00396729,-0.00430298,-0.00457764,-0.00396729,-0.00457764,-0.00482178,-0.00424194,-0.00415039,-0.00448608,-0.00341797,-0.00408936,-0.00341797,-0.00375366,-0.00415039,-0.00424194,-0.00357056,-0.00424194,-0.00457764,-0.00476074,-0.0050354,-0.00524902,-0.00482178,-0.00524902,-0.00476074,-0.00463867,-0.00402832,-0.00280762,-0.00280762,-0.00140381,0,-6.10352e-05,0.00140381,0.00167847,0.00268555,0.00357056,0.00396729,0.00415039,0.0038147,0.00442505,0.00448608,0.00497437,0.00430298,0.00524902,0.00509644,0.00524902,0.00524902,0.00524902,0.00457764,0.00457764,0.00363159,0.00296021,0.0017395,0.00195312,0.000793457,0.000335693,-0.000793457,-0.00088501,-0.00180054,-0.00134277,-0.00140381,-0.00161743,-0.00128174,-0.00167847,-0.00213623,-0.00247192,-0.00241089,-0.00241089,-0.00247192,-0.00323486,-0.00222778,-0.00247192,-0.00234985,-0.00167847,-0.00161743,-0.00128174,-0.00088501,-0.00100708,-0.000396729,-0.000946045,-0.000610352,-0.00146484,-0.00201416,-0.0020752,-0.00274658,-0.00390625,-0.00408936,-0.0050354,-0.00531006,-0.00524902,-0.00592041,-0.00558472,-0.00531006,-0.00531006,-0.00448608,-0.00430298,-0.00335693,-0.00341797,-0.00241089,-0.00234985,-0.00268555,-0.00167847,-0.00268555,-0.00189209,-0.0020752,-0.0017395,-0.00222778,-0.0012207,-0.00128174,-0.000946045,-0.000396729,-0.000732422,-0.00106812,-0.00146484,-0.00167847,-0.00213623,-0.00241089,-0.00274658,-0.00262451,-0.00308228,-0.00289917,-0.00228882,-0.0017395,-0.000793457,-0.000335693,0.00112915,0.00128174,0.00228882,0.00241089,0.00323486,0.00335693,0.003479,0.0038147,0.00375366,0.00415039,0.00363159,0.00448608,0.00375366,0.00457764,0.00335693,0.00415039,0.00390625,0.00375366,0.0038147,0.00302124,0.00341797,0.00241089,0.00228882,0.00112915,0.00106812,0.000946045,0.000549316,-0.000732422,-0.00100708,-0.00167847,-0.00146484,-0.00256348,-0.0020752,-0.00241089,-0.00180054,-0.00234985,-0.0020752,-0.00195312,-0.00189209,-0.00195312,-0.00213623,-0.00302124,-0.00268555,-0.00375366,-0.0038147,-0.00497437,-0.00537109,-0.00576782,-0.00592041,-0.00558472,-0.00531006,-0.00537109,-0.00457764,-0.00430298,-0.0032959,-0.00308228,-0.00424194,-0.00515747,-0.00515747,-0.00491333,-0.00463867,-0.00616455,-0.00558472,-0.0050354,-0.00341797,-0.00128174,-0.000610352,0.00088501,0.000549316,0.00100708,0.00140381,0.000610352,0.000396729,-0.000335693,-0.00128174,-0.00146484,-0.00262451,-0.00140381,-0.00128174,-0.000946045,-0.0012207,-0.0012207,-0.00112915,-0.00106812,-0.0015564,-0.00146484,-0.00146484,-0.00112915,-0.0012207,-0.000793457,-0.00100708,0.00012207,-0.000213623,0.00241089,0.00241089,0.00323486,0.003479,0.00509644,0.00497437,0.00531006,0.00482178,0.00469971,0.00524902,0.00497437,0.00549316,0.00442505,0.0050354,0.00396729,0.00280762,0.00222778,0.0017395,0.00112915,0.000457764,0.000274658,-0.000610352,-0.00088501,6.10352e-05,-6.10352e-05,6.10352e-05,0.00134277,0.0017395,0.00140381,0.00106812,0.000549316,-0.000396729,-0.00106812,-0.00167847,-0.0020752,-0.00228882,-0.00213623,-0.00335693,-0.00289917,-0.00274658,-0.00256348,-0.00302124,-0.00341797,-0.00402832,-0.00436401,-0.00424194,-0.00537109,-0.00448608,-0.00610352,-0.00604248,-0.00576782,-0.00576782,-0.00531006,-0.00537109,-0.00543213,-0.00543213,-0.00616455,-0.00604248,-0.00637817,-0.0065918,-0.00616455,-0.0062561,-0.00616455,-0.00610352,-0.00558472,-0.00531006,-0.00531006,-0.00497437,-0.00524902,-0.00457764,-0.00415039,-0.00415039,-0.00402832,-0.0038147,-0.00228882,-0.00256348,-0.0015564,-0.000793457,-0.000610352,-0.000671387,-0.000671387,-0.000732422,-0.00134277,-0.00088501,-0.00112915,-0.000946045,-0.000457764,0.000274658,0.00100708,0.0017395,0.0020752,0.00302124,0.00302124,0.00274658,0.00296021,0.00262451,0.00289917,0.00241089,0.00241089,0.00256348,0.00274658,0.00424194,0.00442505,0.00509644,0.00524902,0.00592041,0.00491333,0.0062561,0.00482178,0.00509644,0.00357056,0.00228882,0.00161743,0.00161743,0.00106812,0.000457764,0.000732422,0.000549316,0.000732422,0.00106812,0.00100708,0.00134277,0.00134277,0.000213623,-0.00012207,6.10352e-05,-0.000793457,-0.00146484,-0.00222778,-0.00234985,-0.0032959,-0.00375366,-0.00415039,-0.00335693,-0.00424194,-0.00402832,-0.00415039,-0.00436401,-0.0038147,-0.00396729,-0.00375366,-0.00341797,-0.00491333,-0.003479,-0.00476074,-0.00415039,-0.00491333,-0.00442505,-0.00476074,-0.00482178,-0.00476074,-0.00430298,-0.00448608,-0.00396729,-0.00390625,-0.0032959,-0.00390625,-0.00296021,-0.00396729,-0.00341797,-0.00323486,-0.00357056,-0.0038147,-0.00442505,-0.00448608,-0.00476074,-0.00430298,-0.00415039,-0.00408936,-0.00369263,-0.00296021,-0.00289917,-0.00180054,-0.00161743,-0.00112915,-0.000610352,-0.000335693,-0.00106812,-0.000274658,-0.000396729,0.000457764,0.000549316,0.00100708,0.00213623,0.0017395,0.00308228,0.00323486,0.00357056,0.00408936,0.003479,0.003479,0.00302124,0.00314331,0.00262451,0.00222778,0.00134277,0.00146484,0.000671387,0.00112915,0.00106812,0.0012207,0.000946045,0.00100708,0.00106812,0.000610352,0.000610352,0.000396729,0.000549316,0.00012207,0.000274658,0.000335693,0.000457764,-6.10352e-05,0,-6.10352e-05,-0.000396729,-0.000549316,-0.00100708,-0.000671387,-0.00161743,-0.00180054,-0.00180054,-0.00323486,-0.003479,-0.0038147,-0.00463867,-0.00457764,-0.00509644,-0.00497437,-0.00469971,-0.00424194,-0.00448608,-0.00396729,-0.00375366,-0.0038147,-0.00341797,-0.00369263,-0.00335693,-0.0032959,-0.00289917,-0.0032959,-0.00268555,-0.00280762,-0.00247192,-0.00228882,-0.00228882,-0.00274658,-0.00228882,-0.00268555,-0.00308228,-0.00357056,-0.003479,-0.00402832,-0.00415039,-0.00396729,-0.00469971,-0.00402832,-0.00509644,-0.0032959,-0.00369263,-0.00280762,-0.0017395,-0.0012207,0,0.000213623,0.000549316,0.000396729,0.00088501,0.000732422,0.00128174,0.00100708,0.00161743,0.00201416,0.00280762,0.00375366,0.00436401,0.00415039,0.00509644,0.00390625,0.00469971,0.00408936,0.00357056,0.00228882,0.00112915,0.000610352,-0.000335693,-0.000213623,-0.000793457,-0.0017395,-0.000793457,-0.000793457,-0.00088501,-0.000335693,0.000549316,0.000274658,0.00100708,0.000946045,0.0017395,0.00161743,0.00195312,0.00222778,0.0017395,0.00268555,0.00274658,0.00213623,0.00296021,0.00213623,0.0020752,0.00146484,0.000610352,-6.10352e-05,-0.00088501,-0.00146484,-0.00268555,-0.00262451,-0.00363159,-0.00369263,-0.00402832,-0.00448608,-0.00524902,-0.00515747,-0.00610352,-0.00643921,-0.00598145,-0.00650024,-0.00631714,-0.00604248,-0.00549316,-0.00436401,-0.00424194,-0.00357056,-0.00396729,-0.00247192,-0.00256348,-0.0015564,-0.00195312,-0.0020752,-0.00201416,-0.00274658,-0.00268555,-0.0032959,-0.00323486,-0.00341797,-0.00375366,-0.00357056,-0.00341797,-0.00341797,-0.00241089,-0.00228882,-0.00161743,-0.00134277,6.10352e-05,-0.000396729,0.0012207,0.000732422,0.00195312,0.00128174,0.00256348,0.00241089,0.00357056,0.00302124,0.00335693,0.00375366,0.00296021,0.00341797,0.00296021,0.00262451,0.00268555,0.00167847,0.00140381,0.00088501,0.000610352,6.10352e-05,-0.000213623,-0.00088501,-0.00112915,-0.00140381,-0.00128174,-0.00106812,-0.00100708,-0.000610352,-0.000396729,0.000213623,0.00088501,0.00112915,0.0017395,0.00161743,0.00161743,0.00213623,0.00112915,0.00134277,0.000671387,0.0012207,0.00012207,0.000335693,-0.000610352,0.000213623,-0.000946045,-0.000610352,-0.00161743,-0.00201416,-0.00268555,-0.00268555,-0.00415039,-0.00463867,-0.00543213,-0.00616455,-0.00576782,-0.00631714,-0.00570679,-0.0062561,-0.00515747,-0.00549316,-0.00390625,-0.00357056,-0.00289917,-0.0020752,-0.00280762,-0.00161743,-0.00268555,-0.00234985,-0.00274658,-0.00323486,-0.00408936,-0.00408936,-0.00509644,-0.00509644,-0.00515747,-0.00564575,-0.00564575,-0.00549316,-0.00482178,-0.00491333,-0.00424194,-0.00335693,-0.00408936,-0.00363159,-0.00314331,-0.00268555,-0.00256348,-0.00213623,-0.000946045,-0.0012207,0.000457764,0.000396729,0.00140381,0.00241089,0.00308228,0.00375366,0.00509644,0.00564575,0.00570679,0.00582886,0.00582886,0.00549316,0.00515747,0.00497437,0.00402832,0.00442505,0.00296021,0.00335693,0.00262451,0.00268555,0.0020752,0.00195312,0.00106812,0.00106812,0.000213623,0.000335693,-6.10352e-05,0,-0.000396729,0,-0.000274658,0.000213623,0.000274658,0.000396729,6.10352e-05,0,0,-0.000396729,-0.00012207,-0.000396729,-0.000549316,-0.00100708,-0.00112915,-0.000793457,-0.0012207,-0.00146484,-0.0020752,-0.00228882,-0.00323486,-0.00357056,-0.00402832,-0.00469971,-0.00509644,-0.00543213,-0.00558472,-0.00558472,-0.00592041,-0.00497437,-0.0050354,-0.00442505,-0.00476074,-0.00357056,-0.00390625,-0.0032959,-0.00335693,-0.0032959,-0.00335693,-0.00302124,-0.00335693,-0.00280762,-0.0032959,-0.00280762,-0.00296021,-0.00308228,-0.00314331,-0.0032959,-0.003479,-0.00415039,-0.00463867,-0.00491333,-0.00497437,-0.00430298,-0.00491333,-0.00408936,-0.00402832,-0.00289917,-0.00268555,-0.00180054,-0.00112915,-0.00134277,-0.000213623,0.000213623,0.000274658,0.000946045,0.0015564,0.000793457,0.00146484,0.00161743,0.00195312,0.00228882,0.00234985,0.00302124,0.00289917,0.00341797,0.00408936,0.00415039,0.00436401,0.00396729,0.00424194,0.00396729,0.00308228,0.00357056,0.00241089,0.00234985,0.00222778,0.00161743,0.0017395,0.00161743,0.0017395,0.0020752,0.00146484,0.00195312,0.00195312,0.00189209,0.00180054,0.00128174,0.00134277,0.000732422,0.000396729,0.000457764,6.10352e-05,0.000610352,6.10352e-05,0.00088501,0.000610352,0.000274658,0.000793457,-6.10352e-05,-0.000549316,-0.000732422,-0.00213623,-0.00228882,-0.00341797,-0.00408936,-0.00457764,-0.0050354,-0.00509644,-0.00509644,-0.00491333,-0.00524902,-0.00430298,-0.00509644,-0.00430298,-0.00469971,-0.00424194,-0.0050354,-0.00424194,-0.0050354,-0.00424194,-0.00463867,-0.00448608,-0.00457764,-0.00463867,-0.00436401,-0.00442505,-0.00424194,-0.00469971,-0.00476074,-0.00515747,-0.00509644,-0.00531006,-0.00570679,-0.00576782,-0.00558472,-0.00558472,-0.00497437,-0.00515747,-0.00457764,-0.00390625,-0.0038147,-0.00323486,-0.00256348,-0.00180054,-0.0017395,-0.000946045,-0.000335693,-0.000213623,0.000457764,0.00106812,0.00106812,0.0020752,0.00201416,0.00222778,0.00262451,0.00289917,0.00369263,0.00268555,0.00375366,0.00314331,0.00357056,0.00341797,0.00415039,0.00323486,0.00335693,0.0032959,0.00274658,0.00274658,0.00201416,0.00262451,0.00241089,0.00234985,0.00228882,0.00201416,0.00274658,0.00234985,0.00262451,0.00280762,0.00213623,0.00256348,0.00180054,0.00180054,0.0015564,0.0015564,0.000732422,0.00128174,0.000335693,0.000671387,0.000335693,0.00012207,0.000335693,-0.000549316,-0.000213623,-0.00146484,-0.00128174,-0.00134277,-0.00228882,-0.00234985,-0.00308228,-0.00280762,-0.003479,-0.0032959,-0.0032959,-0.00375366,-0.00375366,-0.00436401,-0.00442505,-0.00476074,-0.00476074,-0.00482178,-0.00543213,-0.00549316,-0.00549316,-0.00592041,-0.00604248,-0.00631714,-0.00683594,-0.00698853,-0.00704956,-0.0067749,-0.0071106,-0.00650024,-0.00592041,-0.00537109,-0.00564575,-0.00369263,-0.00463867,-0.00302124,-0.00274658,-0.00268555,-0.00241089,-0.00167847,-0.00161743,-0.0015564,-0.000732422,-0.000457764,0.00012207,0.000396729,0.000793457,0.000732422,0.000793457,0.000396729,0.00100708,-6.10352e-05,-0.00012207,-0.000213623,-0.00106812,-0.00146484,-0.00106812,-0.00167847,-0.00140381,-0.000732422,-0.00140381,-0.000610352,-6.10352e-05,-6.10352e-05,0.000732422,0.0015564,0.00189209,0.00222778,0.00289917,0.00308228,0.00341797,0.00369263,0.00357056,0.0032959,0.00341797,0.00363159,0.00363159,0.003479,0.003479,0.003479,0.00314331,0.00302124,0.00256348,0.00222778,0.00146484,0.00100708,-0.000396729,-0.000335693,-0.000793457,-0.00195312,-0.00146484,-0.00213623,-0.00146484,-0.0020752,-0.00140381,-0.0012207,-0.00088501,-0.000610352,-0.000457764,-0.000549316,-0.000732422,-0.000946045,-0.000732422,-0.00140381,-0.00134277,-0.00228882,-0.00167847,-0.00335693,-0.00262451,-0.003479,-0.00302124,-0.00424194,-0.00402832,-0.00430298,-0.00531006,-0.00515747,-0.00592041,-0.00582886,-0.00604248,-0.0062561,-0.0062561,-0.00616455,-0.00616455,-0.00631714,-0.00598145,-0.00509644,-0.00509644,-0.00402832,-0.00415039,-0.00296021,-0.00262451,-0.0020752,-0.000671387,-0.000671387,-0.000457764,-0.000274658,0.00012207,-0.000213623,0.00012207,6.10352e-05,-0.000732422,0.000671387,-0.000457764,0.000335693,-0.00012207,0.000396729,0.000274658,0.000946045,0.00012207,0.000946045,0,0.000793457,0.000274658,0.000793457,6.10352e-05,0.000946045,0.000610352,0.00167847,0.00146484,0.00146484,0.00161743,0.00222778,0.00195312,0.00256348,0.00161743,0.00308228,0.0020752,0.00234985,0.00222778,0.00201416,0.00256348,0.00213623,0.00222778,0.00296021,0.00213623,0.00256348,0.00201416,0.00128174,0.00106812,-0.00012207,6.10352e-05,-0.0012207,-0.00088501,-0.0017395,-0.00201416,-0.00167847,-0.0017395,-0.00146484,-0.00128174,-0.000946045,-0.00100708,-0.000793457,-0.00146484,-0.000946045,-0.00167847,-0.0020752,-0.00228882,-0.00213623,-0.00296021,-0.00213623,-0.00262451,-0.00222778,-0.00228882,-0.00234985,-0.00256348,-0.00247192,-0.00308228,-0.00308228,-0.00375366,-0.00442505,-0.00408936,-0.00497437,-0.00469971,-0.00509644,-0.00469971,-0.00442505,-0.00369263,-0.0038147,-0.00274658,-0.00256348,-0.00201416,-0.0017395,-0.00106812,-0.000732422,-0.000457764,-0.000213623,6.10352e-05,-6.10352e-05,0.000213623,-6.10352e-05,-0.000610352,-0.000335693,-0.000671387,-0.00112915,-0.00106812,-0.00128174,-0.00161743,-0.00128174,-0.00161743,-0.00195312,-0.00140381,-0.00213623,-0.00161743,-0.00140381,-0.00128174,-0.00100708,-0.000396729,0.000396729,0.00112915,0.00161743,0.00201416,0.00308228,0.00369263,0.00396729,0.00482178,0.00457764,0.00482178,0.00390625,0.0050354,0.00335693,0.00357056,0.00262451,0.00134277,0.0012207,0.000396729,-0.000549316,-0.000335693,-0.00161743,-0.0017395,-0.00167847,-0.00146484,-0.0020752,-0.00134277,-0.00161743,-0.00146484,-0.00140381,-0.00128174,-0.0012207,-0.00106812,-0.00088501,-0.000396729,-0.00088501,-0.000549316,-0.000671387,-0.000213623,-0.000946045,-0.00012207,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.0015564,-0.00180054,-0.00256348,-0.00308228,-0.00390625,-0.00469971,-0.00582886,-0.00631714,-0.0071106,-0.00784302,-0.00784302,-0.00827026,-0.00750732,-0.0071106,-0.0067749,-0.00631714,-0.00509644,-0.00482178,-0.00448608,-0.00323486,-0.00314331,-0.00241089,-0.00213623,-0.00134277,-0.00100708,-0.000793457,0.00012207,0.000213623,0.00106812,0.000732422,0.00106812,0.000274658,0.000610352,0.000213623,-0.000549316,-0.000671387,-0.00134277,-0.00228882,-0.00189209,-0.0020752,-0.0017395,-0.00256348,-0.00161743,-0.00167847,-0.00140381,-0.0012207,-0.000457764,-0.00012207,0.00012207,0.00112915,0.00112915,0.00234985,0.00222778,0.00302124,0.00280762,0.0032959,0.00274658,0.00262451,0.00268555,0.00222778,0.00262451,0.00180054,0.00167847,0.00167847,0.000793457,0.0012207,0.00088501,0,0.000274658,-0.000396729,-0.000793457,-0.000213623,-0.000671387,-0.00128174,-0.000732422,-0.00100708,-0.000946045,-0.000732422,-0.000396729,-0.000457764,-0.000396729,-6.10352e-05,-0.000732422,-0.000549316,-0.00088501,-0.000793457,-0.00195312,-0.00167847,-0.00308228,-0.00302124,-0.00402832,-0.00375366,-0.0050354,-0.00524902,-0.00570679,-0.00604248,-0.00610352,-0.00665283,-0.00570679,-0.0065918,-0.00558472,-0.00482178,-0.00491333,-0.00369263,-0.00335693,-0.00308228,-0.00268555,-0.00268555,-0.00222778,-0.00228882,-0.00268555,-0.00234985,-0.00228882,-0.00247192,-0.00161743,-0.00234985,-0.00134277,-0.0015564,-0.00134277,-0.000946045,-0.00146484,-0.00146484,-0.00195312,-0.0017395,-0.00180054,-0.00213623,-0.00201416,-0.00180054,-0.00161743,-0.00201416,-0.00140381,-0.000946045,-0.000732422,-0.00012207,-0.000671387,0.000396729,0.000213623,0.000549316,0.00088501,0.000457764,0.00106812,0.000946045,0.00112915,0.00106812,0.00128174,0.000793457,0.000946045,0.00112915,0.000610352,0.000396729,0.000671387,0.00012207,0.00088501,-6.10352e-05,0.000732422,0.000732422,0.00106812,0.000274658,0.00134277,0.00106812,0.000946045,0.00140381,0.00140381,0.00195312,0.00112915,0.00140381,0.00134277,0.00146484,0.00146484,0.00189209,0.00106812,0.00180054,0.000396729,0.00106812,-0.00012207,-0.000213623,-0.00100708,-0.0015564,-0.00195312,-0.00256348,-0.00314331,-0.00323486,-0.0038147,-0.00396729,-0.00469971,-0.00442505,-0.00442505,-0.00469971,-0.00448608,-0.00436401,-0.00430298,-0.00448608,-0.00369263,-0.003479,-0.00308228,-0.00262451,-0.00213623,-0.00234985,-0.00146484,-0.00189209,-0.00167847,-0.00189209,-0.00201416,-0.00180054,-0.00268555,-0.00201416,-0.00241089,-0.00234985,-0.00247192,-0.00256348,-0.00289917,-0.00256348,-0.00280762,-0.00302124,-0.00280762,-0.00289917,-0.00268555,-0.00241089,-0.00234985,-0.0020752,-0.0015564,-0.0012207,-0.000793457,-0.00088501,-0.00012207,-6.10352e-05,-0.000335693,0.000274658,-0.000396729,-0.000335693,0.00012207,-0.000213623,0,0.000213623,-0.00012207,0.000396729,0.000335693,0.000793457,0.000793457,0.000793457,0.000671387,0.00106812,0.000457764,0.000946045,0.000610352,0.000946045,0.00146484,0.000946045,0.00201416,0.00106812,0.00213623,0.00161743,0.00201416,0.0017395,0.00228882,0.00201416,0.00146484,0.00195312,0.0015564,0.00128174,0.000946045,0.00088501,0.000396729,-0.00012207,6.10352e-05,-0.00100708,-0.00088501,-0.0015564,-0.00189209,-0.00201416,-0.00189209,-0.00241089,-0.00161743,-0.00228882,-0.00167847,-0.00140381,-0.0015564,-0.00140381,-0.00106812,-0.0015564,-0.00134277,-0.00134277,-0.0015564,-0.00189209,-0.00222778,-0.00228882,-0.00234985,-0.00241089,-0.00302124,-0.00195312,-0.00274658,-0.00262451,-0.00247192,-0.00274658,-0.00222778,-0.00268555,-0.00234985,-0.00247192,-0.00180054,-0.00262451,-0.0020752,-0.00241089,-0.00213623,-0.0017395,-0.00234985,-0.0015564,-0.0015564,-0.0012207,-0.00106812,-0.000457764,6.10352e-05,0,0.000396729,0.000610352,0.000610352,0,0.000213623,0.000396729,-0.000610352,-0.000396729,-0.00088501,-0.000610352,-0.00161743,-0.00106812,-0.00167847,-0.00128174,-0.00189209,-0.00112915,-0.0017395,-0.000946045,-0.00100708,-0.00088501,-0.000610352,-0.000946045,-0.000457764,-6.10352e-05,-0.000457764,0.000335693,0.000213623,0.0012207,0.00106812,0.0015564,0.00228882,0.00180054,0.00296021,0.00195312,0.00201416,0.00112915,0.000946045,0.000396729,0,-0.00106812,-0.00100708,-0.00167847,-0.00128174,-0.00189209,-0.00128174,-0.00213623,-0.00140381,-0.00195312,-0.00167847,-0.00146484,-0.00201416,-0.00134277,-0.00247192,-0.00167847,-0.00195312,-0.00167847,-0.00167847,-0.00167847,-0.00167847,-0.00180054,-0.00180054,-0.00134277,-0.00167847,-0.00222778,-0.00228882,-0.0020752,-0.00228882,-0.00296021,-0.00280762,-0.00262451,-0.00296021,-0.00234985,-0.00256348,-0.00234985,-0.0017395,-0.00195312,-0.00167847,-0.00161743,-0.00140381,-0.00167847,-0.0017395,-0.00140381,-0.00167847,-0.00180054,-0.00167847,-0.0017395,-0.00140381,-0.00134277,-0.00106812,-0.000946045,-0.00128174,-0.00088501,-0.00128174,-0.000610352,-0.00167847,-0.00161743,-0.00112915,-0.0015564,-0.0015564,-0.00106812,-0.00112915,-0.00112915,-0.000793457,-0.00100708,-0.000213623,-6.10352e-05,-0.00012207,0,0.000396729,-0.00012207,0,-0.000213623,-0.000396729,-0.000549316,-0.000549316,-0.00112915,-0.000671387,-0.00100708,-0.000732422,-0.00128174,-0.000610352,-0.000732422,-0.000610352,-0.000396729,-0.000610352,-0.00112915,-0.000610352,-0.000946045,-0.00100708,-0.000793457,-0.00140381,-0.00100708,-0.000793457,-0.000793457,-0.000793457,-0.000213623,-0.000793457,-0.000274658,-0.000457764,-0.00088501,-0.000671387,-0.000457764,-0.00146484,-0.000946045,-0.0015564,-0.0012207,-0.00140381,-0.0015564,-0.0015564,-0.00140381,-0.00167847,-0.00161743,-0.00180054,-0.00140381,-0.00189209,-0.00161743,-0.00167847,-0.0015564,-0.00140381,-0.00146484,-0.00146484,-0.000946045,-0.0012207,-0.00134277,-0.00012207,-0.0012207,0.00012207,-0.000335693,0.00012207,-0.000274658,0.00012207,0.000213623,0.000396729,0,0.000335693,-0.00012207,0,-0.00088501,-0.000732422,-0.00128174,-0.00140381,-0.00189209,-0.0017395,-0.00180054,-0.00201416,-0.00213623,-0.00247192,-0.00195312,-0.0020752,-0.00234985,-0.00256348,-0.00228882,-0.00268555,-0.00234985,-0.00228882,-0.00262451,-0.00161743,-0.00167847,-0.00146484,-0.000732422,-0.00100708,-0.000335693,6.10352e-05,-0.000457764,0.000335693,0.000213623,-0.000335693,0.000793457,-0.000610352,-6.10352e-05,-0.000274658,-0.000732422,-0.000396729,-0.0012207,-0.00100708,-0.0012207,-0.0017395,-0.00128174,-0.00189209,-0.00161743,-0.00180054,-0.00112915,-0.00167847,-0.00106812,-0.00088501,-0.00106812,-0.000793457,0.000274658,-0.00088501,-0.000213623,-0.000549316,-0.000335693,-0.000549316,-6.10352e-05,0.000335693,-0.000549316,0.000274658,-0.000396729,-6.10352e-05,-0.000274658,-0.0012207,-0.000610352,-0.00195312,-0.0012207,-0.00234985,-0.00222778,-0.00357056,-0.00268555,-0.003479,-0.00363159,-0.0032959,-0.00335693,-0.00289917,-0.0032959,-0.00262451,-0.00222778,-0.00241089,-0.00213623,-0.00189209,-0.00112915,-0.00128174,-0.000671387,-0.00088501,0,-0.00012207,0.000549316,0.000396729,0.000671387,0.000274658,0.000396729,0.000274658,0,0,-0.000793457,-6.10352e-05,-0.0012207,-0.00100708,-0.00106812,-0.00195312,-0.0012207,-0.00195312,-0.00213623,-0.00213623,-0.00222778,-0.00195312,-0.00201416,-0.00146484,-0.00161743};
freunde_soprano = (freunde_soprano_0):((!,_));
freunde_soprano_rtable_0(r) = (freunde_soprano_0,r):rdtable;
|
|
2a075230a3b89543f325c70e755d2a594fc636b45e535bf2df07335b699b66d8 | grame-cncm/GeekBagatelles | freunde_1_fois_baryton_waveform.dsp | freunde_1_fois_baryton_0 = waveform{-0.000793457,-0.00253296,-0.0032959,-0.00238037,-0.0015564,-0.00128174,-0.000762939,-0.00146484,-0.00216675,-0.00210571,-0.00241089,-0.0032959,-0.00189209,-0.000152588,0.000213623,0.000701904,0.000488281,0.00125122,0.00219727,0.00247192,0.00335693,0.00448608,0.00427246,0.00463867,0.00521851,0.00469971,0.00265503,0.00149536,0.00134277,0.00134277,0.000854492,-0.000976562,-0.0010376,-0.0022583,-0.00265503,-0.0032959,-0.00473022,-0.00500488,-0.0038147,-0.00259399,-0.00198364,-0.0017395,-0.00149536,-0.00112915,0.000640869,0.00241089,0.0022583,0.0010376,0.00195312,0.00219727,0.00286865,0.0022583,0.00247192,0.00302124,0.00357056,0.00183105,0.00106812,-0.000274658,-0.000976562,-0.00119019,-0.0010376,-0.000579834,6.10352e-05,0.000854492,0.00253296,0.00265503,0.00274658,0.00183105,0.00296021,0.00479126,0.00415039,0.00241089,6.10352e-05,-0.00012207,-0.000854492,-0.000793457,-0.00146484,-0.00360107,-0.00436401,-0.00427246,-0.00448608,-0.00436401,-0.00415039,-0.00231934,-0.0010376,-0.000427246,-0.000579834,-0.00189209,-0.00140381,-0.000488281,-0.00112915,-0.00198364,-0.00195312,-0.00106812,-0.000549316,-0.00140381,-0.00149536,-0.00125122,-0.000549316,0.000915527,0.00112915,0.00112915,0.000915527,0.00128174,0.000366211,-0.00119019,-0.00238037,-0.00134277,-0.00167847,-0.00134277,-0.000976562,-0.000335693,-0.0015564,-0.00195312,-0.00195312,-0.000213623,-0.000488281,-0.000640869,0.000152588,0.00112915,0.00161743,0.00146484,0.00189209,0.00231934,0.00308228,0.00448608,0.00387573,0.00360107,0.00402832,0.00421143,0.00646973,0.00668335,0.00570679,0.00512695,0.00427246,0.00274658,0.00238037,0.0017395,0.00216675,0.00421143,0.00592041,0.00506592,0.00372314,0.00280762,0.00280762,0.00323486,0.0032959,0.00241089,0.00296021,0.00344849,0.00372314,0.00360107,0.00479126,0.00518799,0.00350952,0.00210571,0.00241089,0.00149536,-0.000579834,-0.0015564,-0.000640869,-0.00146484,-0.00308228,-0.00372314,-0.00408936,-0.00408936,-0.00479126,-0.00421143,-0.00506592,-0.00393677,-0.00491333,-0.00366211,-0.0032959,-0.00265503,-0.00317383,-0.00189209,-0.00128174,-0.000427246,-0.000366211,-0.000274658,0.000640869,0.000152588,-0.00167847,-0.0017395,-0.000549316,0.00134277,0.00149536,0.00231934,0.00219727,0.00189209,0.00128174,0.000427246,-0.000579834,-0.00167847,-0.00289917,-0.00308228,-0.00280762,-0.00268555,-0.00146484,0.000549316,0.0010376,0.00204468,0.00280762,0.00323486,0.00268555,0.00360107,0.00231934,0.00146484,0.000579834,0.00125122,0.0010376,0.000579834,0.00112915,0.000793457,0.00106812,0.00219727,0.00268555,0.00302124,0.00259399,0.00128174,0.000427246,0.000213623,0.000427246,0.000579834,-0.000213623,-0.000366211,-0.0015564,-0.00134277,-0.0032959,-0.00402832,-0.00357056,-0.00286865,-0.00366211,-0.00286865,-0.00198364,-0.000640869,-0.000549316,-0.00106812,-0.00274658,-0.00335693,-0.00253296,-0.00393677,-0.0045166,-0.00442505,-0.00534058,-0.00613403,-0.00683594,-0.00726318,-0.00723267,-0.0062561,-0.00473022,-0.00640869,-0.00772095,-0.00646973,-0.00634766,-0.00619507,-0.00534058,-0.00366211,-0.00479126,-0.00479126,-0.00570679,-0.00570679,-0.00683594,-0.00662231,-0.00668335,-0.00695801,-0.00662231,-0.00744629,-0.00747681,-0.00738525,-0.00738525,-0.00656128,-0.00506592,-0.00366211,-0.00219727,-0.00149536,-0.00238037,-0.00128174,-0.00125122,-0.0010376,-0.000152588,0.000762939,0.00149536,6.10352e-05,-0.00268555,-0.00393677,-0.0039978,-0.00402832,-0.00518799,-0.00582886,-0.00588989,-0.00518799,-0.0038147,-0.00430298,-0.00241089,-0.00119019,-0.000274658,0.000335693,0.00012207,-0.000640869,-0.000488281,-0.000488281,-0.000579834,-0.00195312,-0.00198364,-0.0032959,-0.00357056,-0.00231934,-0.000488281,-0.00128174,-0.00195312,-0.00210571,-0.00140381,-0.000274658,0.00195312,0.00308228,0.00247192,0.000701904,-0.000701904,-0.000701904,-0.000854492,-0.0010376,-0.00146484,-0.000488281,-0.00161743,-0.00204468,-0.00289917,-0.00360107,-0.00268555,-0.00189209,-0.00149536,-0.00210571,-0.00112915,-0.00189209,-0.00189209,-0.00195312,-0.000701904,0,-0.000854492,-0.000549316,0.00012207,-0.000976562,-0.000762939,0.000213623,0.00128174,0.00128174,0.000640869,0.000274658,-0.0017395,-0.00286865,-0.00311279,-0.0015564,-0.0017395,-0.0015564,-0.0017395,-0.00216675,-0.0010376,-0.000762939,-0.00106812,-0.000152588,-0.000427246,-0.000701904,-0.00195312,-0.00296021,-0.00125122,-0.000335693,-0.00112915,-0.00204468,-0.00259399,-0.00274658,-0.00408936,-0.00360107,-0.00335693,-0.00177002,-0.00289917,-0.00393677,-0.00500488,-0.00457764,-0.00408936,-0.00357056,-0.00265503,-0.000976562,-0.000549316,-0.000213623,-0.00146484,-0.00106812,-0.000701904,-0.00106812,-0.00128174,-0.00128174,-0.0017395,-0.000915527,-0.000152588,-0.000579834,-0.00216675,-0.000152588,0.000854492,0.00268555,0.00219727,0.00265503,0.00317383,0.0045166,0.00640869,0.00772095,0.00701904,0.0062561,0.00582886,0.00506592,0.00421143,0.00463867,0.00469971,0.00408936,0.00360107,0.00308228,0.00311279,0.00302124,0.00448608,0.00610352,0.00793457,0.00927734,0.00900269,0.00732422,0.00695801,0.00732422,0.0062561,0.00473022,0.00357056,0.00238037,0.00106812,0.0010376,0.000701904,0,-0.0010376,-0.000152588,0.000427246,0.00106812,0.00183105,0.0017395,0.00183105,0.00366211,0.00680542,0.00793457,0.00759888,0.00570679,0.00576782,0.0071106,0.00674438,0.00646973,0.0062561,0.00674438,0.00598145,0.0062561,0.00442505,0.00268555,0.00442505,0.00619507,0.00610352,0.00549316,0.00634766,0.00656128,0.00717163,0.00802612,0.0104065,0.0113831,0.0112,0.0107117,0.0103455,0.0106201,0.010498,0.00997925,0.0110474,0.0110474,0.0111084,0.00909424,0.00817871,0.00662231,0.00747681,0.00802612,0.00866699,0.00878906,0.00747681,0.00775146,0.0085144,0.00863647,0.00857544,0.00878906,0.00976562,0.00830078,0.00747681,0.00646973,0.00570679,0.00393677,0.00360107,0.00430298,0.00463867,0.00473022,0.00506592,0.00469971,0.00561523,0.0078125,0.00933838,0.011261,0.012085,0.0109558,0.00997925,0.00964355,0.0100403,0.00921631,0.0093689,0.00866699,0.00775146,0.00723267,0.00631714,0.00753784,0.00753784,0.00888062,0.00888062,0.00753784,0.00570679,0.00387573,0.00393677,0.00442505,0.00479126,0.00506592,0.00564575,0.00540161,0.0039978,0.00357056,0.00134277,-0.000854492,-0.000915527,-0.000762939,-0.00183105,-0.00296021,-0.0039978,-0.00549316,-0.0062561,-0.00613403,-0.00689697,-0.00726318,-0.00680542,-0.00619507,-0.00640869,-0.00674438,-0.00759888,-0.00726318,-0.00683594,-0.00738525,-0.00695801,-0.00866699,-0.00949097,-0.00979614,-0.0088501,-0.00921631,-0.00857544,-0.00808716,-0.00704956,-0.00631714,-0.00653076,-0.00695801,-0.00787354,-0.00695801,-0.00680542,-0.00759888,-0.00906372,-0.0108948,-0.0120239,-0.0119629,-0.0119019,-0.0128174,-0.0143433,-0.0141296,-0.0128174,-0.0128784,-0.0136414,-0.0132446,-0.0118103,-0.0104065,-0.0093689,-0.00927734,-0.009552,-0.00842285,-0.00808716,-0.00796509,-0.00796509,-0.00619507,-0.00598145,-0.00726318,-0.00863647,-0.00927734,-0.0101318,-0.0114136,-0.012085,-0.0109863,-0.0110474,-0.0111694,-0.0126038,-0.0115967,-0.0128784,-0.0124512,-0.0116882,-0.0103455,-0.0100708,-0.0105591,-0.0112,-0.0119629,-0.0118103,-0.0119019,-0.0129395,-0.0126648,-0.0120239,-0.0124512,-0.0120239,-0.0124512,-0.0129395,-0.0135193,-0.0120239,-0.0108948,-0.0108337,-0.0114746,-0.0108337,-0.0104065,-0.011261,-0.0110474,-0.0116272,-0.0122375,-0.0114136,-0.0093689,-0.0100403,-0.00979614,-0.00909424,-0.00915527,-0.009552,-0.00921631,-0.0078125,-0.00772095,-0.00787354,-0.00732422,-0.00631714,-0.00543213,-0.00500488,-0.00442505,-0.0039978,-0.00427246,-0.00485229,-0.00610352,-0.00668335,-0.00604248,-0.00717163,-0.00845337,-0.00793457,-0.0078125,-0.00772095,-0.00747681,-0.00588989,-0.00521851,-0.00436401,-0.0039978,-0.00527954,-0.00469971,-0.00360107,-0.00241089,-0.00323486,-0.00280762,-0.0015564,-0.00149536,-0.00286865,-0.00302124,-0.00167847,-0.000762939,0.000701904,0.00106812,0.000335693,0.0022583,0.00265503,0.00259399,0.00387573,0.00549316,0.00534058,0.00561523,0.00506592,0.00469971,0.00430298,0.0039978,0.00274658,0.00134277,-0.000549316,-0.00241089,-0.00198364,-0.00335693,-0.00457764,-0.00344849,-0.00286865,-0.00317383,-0.00408936,-0.00311279,-0.0032959,-0.00247192,-0.000274658,0.00106812,0.00161743,0.00204468,0.0022583,0.00289917,0.00280762,0.00195312,0.000793457,0.00112915,0.00204468,0.0017395,0.000915527,-0.000274658,-0.00012207,6.10352e-05,0.00112915,0.0010376,0.000793457,6.10352e-05,0.0010376,0.00167847,0.0017395,0.00378418,0.00521851,0.00613403,0.00378418,0.00183105,0.00106812,-0.000335693,-0.00210571,-0.00378418,-0.00387573,-0.00311279,-0.00308228,-0.0017395,-0.000793457,0.000488281,0.000701904,0.000854492,0.000427246,0.00195312,0.00140381,0.00134277,0.0017395,0.0032959,0.00231934,0.000640869,-0.00149536,-0.00167847,-0.000335693,-0.000427246,-0.00247192,-0.00183105,-0.000549316,0.000762939,0.000579834,-0.000152588,-0.000427246,-0.00167847,-0.00119019,0.000335693,0.00106812,0.00106812,0.00189209,0.00372314,0.00448608,0.00448608,0.00463867,0.00588989,0.00744629,0.00744629,0.00723267,0.00802612,0.00836182,0.00970459,0.0101929,0.0123291,0.0128174,0.0151978,0.0167542,0.0198364,0.0224304,0.0246887,0.0260925,0.0279236,0.0292664,0.0282288,0.0253906,0.0243225,0.0242004,0.0239258,0.0239868,0.0230103,0.0231323,0.0244751,0.0253906,0.0279846,0.0308228,0.0319214,0.0316467,0.0322876,0.0323486,0.0317383,0.0296936,0.0280151,0.0296936,0.0299072,0.0288391,0.0273132,0.0260925,0.02771,0.0301208,0.0310059,0.0307617,0.0308838,0.0317078,0.0321655,0.030304,0.0296021,0.0294189,0.0278625,0.0261536,0.0238342,0.0217896,0.0196228,0.0183716,0.0180969,0.0184326,0.0194092,0.0189819,0.0174561,0.0158386,0.0144348,0.0110474,0.00933838,0.00808716,0.00814819,0.00738525,0.00613403,0.0039978,0.0032959,0.00491333,0.00619507,0.0062561,0.00457764,0.00338745,0.00274658,0.00167847,-0.000335693,-0.00302124,-0.0055542,-0.00582886,-0.00732422,-0.0102844,-0.013031,-0.0126648,-0.0118713,-0.0116882,-0.00942993,-0.00787354,-0.00817871,-0.00909424,-0.009552,-0.0101318,-0.0114136,-0.013031,-0.0141907,-0.0148621,-0.0149231,-0.0163879,-0.0168152,-0.0185547,-0.0185852,-0.0192566,-0.0195618,-0.0193481,-0.0187073,-0.0183716,-0.0171814,-0.0180054,-0.0178528,-0.01828,-0.018219,-0.0180664,-0.0186462,-0.0197144,-0.0206299,-0.0202026,-0.0178833,-0.0173035,-0.0171814,-0.01828,-0.0187988,-0.0192566,-0.0196838,-0.0212402,-0.0221558,-0.022522,-0.0220032,-0.0217285,-0.0217896,-0.0223083,-0.0220032,-0.0203247,-0.0185852,-0.0171814,-0.0161743,-0.0163879,-0.0169678,-0.0187988,-0.0188599,-0.0198975,-0.0203857,-0.0217896,-0.0223083,-0.022522,-0.0220947,-0.022644,-0.0210266,-0.0194702,-0.0162659,-0.0132446,-0.0121155,-0.0122375,-0.011261,-0.0119019,-0.0123901,-0.0123291,-0.0137939,-0.0137329,-0.0137329,-0.0141296,-0.0147095,-0.0145569,-0.0136414,-0.0141296,-0.0146179,-0.0154724,-0.0154114,-0.0160217,-0.0157471,-0.0159607,-0.0153503,-0.0148621,-0.0146179,-0.0144043,-0.0144958,-0.0140686,-0.0141296,-0.0137024,-0.0130005,-0.0141907,-0.0148621,-0.0163879,-0.0168152,-0.0175171,-0.0185852,-0.0204163,-0.0203247,-0.02005,-0.018158,-0.0168762,-0.013916,-0.0123291,-0.0111694,-0.0108948,-0.00817871,-0.00613403,-0.00457764,-0.00289917,-0.00265503,-0.00280762,-0.00448608,-0.00634766,-0.00814819,-0.0078125,-0.00726318,-0.00802612,-0.00878906,-0.009552,-0.00732422,-0.00604248,-0.00393677,-0.00308228,-0.00253296,-0.00247192,-0.00231934,-0.00280762,-0.00268555,-0.00219727,-0.00119019,-0.00183105,-0.00238037,-0.00360107,-0.00241089,-0.00247192,-0.00149536,-0.000854492,0.000640869,0.00140381,0.00241089,0.00296021,0.00350952,0.00296021,0.0010376,0.000427246,0.00125122,0.00210571,0.00167847,0.000579834,0.00253296,0.00598145,0.00662231,0.00494385,0.00479126,0.00512695,0.00512695,0.00408936,0.00216675,0.0017395,0.0022583,0.00268555,0.00183105,0.000915527,-0.000549316,-0.000335693,0.00167847,0.00402832,0.0038147,0.00280762,0.00311279,0.00350952,0.00378418,0.0022583,-0.000213623,-0.00140381,-0.000366211,0.000488281,-0.000427246,-0.000640869,-0.000427246,0.00204468,0.00366211,0.00344849,0.0022583,0.00238037,0.00366211,0.00473022,0.00357056,0.00238037,-0.000274658,-0.000701904,-0.000579834,-0.00140381,-0.00274658,-0.00198364,0.00106812,0.00302124,0.00491333,0.00415039,0.00485229,0.00442505,0.00372314,0.00350952,0.00189209,-6.10352e-05,-0.00128174,-0.00204468,-0.00128174,-0.00210571,-0.00247192,-0.000335693,0.00183105,0.00485229,0.00561523,0.00604248,0.00668335,0.0101929,0.0118713,0.0127258,0.0110474,0.0101318,0.00964355,0.00894165,0.0103455,0.0121765,0.0142822,0.0158997,0.0175171,0.0190735,0.0203247,0.0213318,0.0222473,0.025116,0.0263672,0.0260315,0.0245361,0.0227051,0.0232239,0.0236206,0.0230713,0.0235596,0.0260925,0.0294189,0.0330505,0.0335693,0.0343323,0.0343933,0.0345459,0.0366516,0.0362244,0.0334167,0.0310364,0.0303345,0.0310974,0.0307312,0.0333557,0.035675,0.0383301,0.0395508,0.0396729,0.0395508,0.0409546,0.0440369,0.047821,0.049469,0.0478516,0.0444031,0.0417786,0.0409546,0.0396118,0.0376892,0.0354004,0.0353088,0.0354614,0.0350952,0.0350952,0.0350952,0.0339966,0.0332642,0.0317078,0.0282898,0.0246887,0.0212402,0.0179443,0.0147705,0.0126648,0.0109863,0.00949097,0.00906372,0.00857544,0.00817871,0.00674438,0.00564575,0.00549316,0.00610352,0.00610352,0.00463867,0.00289917,0.000854492,0.00112915,6.10352e-05,-0.000488281,-0.0022583,-0.00350952,-0.00442505,-0.0045166,-0.00430298,-0.00296021,-0.00231934,-0.00265503,-0.00280762,-0.00485229,-0.00695801,-0.0101318,-0.0121155,-0.0130005,-0.0144958,-0.0161743,-0.018219,-0.0178833,-0.0169373,-0.018158,-0.0185547,-0.0179443,-0.0180054,-0.0196838,-0.0221558,-0.0247498,-0.0285645,-0.0316467,-0.0334778,-0.0343933,-0.0359497,-0.0370178,-0.0353088,-0.0341187,-0.0323792,-0.0316467,-0.0303955,-0.027771,-0.0264587,-0.0272827,-0.0282898,-0.0289001,-0.0283508,-0.02771,-0.0278015,-0.0270081,-0.0258179,-0.0263062,-0.0273132,-0.026886,-0.025116,-0.025177,-0.0256653,-0.0256958,-0.0257568,-0.0258789,-0.026886,-0.0265808,-0.0273132,-0.0268555,-0.0279846,-0.0290527,-0.0300293,-0.0289001,-0.0285034,-0.0279846,-0.0266113,-0.0259399,-0.025238,-0.0246277,-0.0242615,-0.0238342,-0.0231628,-0.0227356,-0.022522,-0.020874,-0.0202026,-0.0198364,-0.0190735,-0.0171814,-0.0137329,-0.0123901,-0.0122375,-0.0114746,-0.0114746,-0.0116272,-0.0123901,-0.011322,-0.0109558,-0.0106201,-0.0123291,-0.0137939,-0.0146484,-0.0147095,-0.0161743,-0.0170288,-0.015625,-0.0153198,-0.0154724,-0.0142822,-0.0142212,-0.0142822,-0.013092,-0.0142212,-0.0149841,-0.0170898,-0.0176392,-0.0189209,-0.0187988,-0.0197754,-0.0205994,-0.0211792,-0.0205383,-0.018158,-0.0178833,-0.0171509,-0.016449,-0.0152588,-0.0142212,-0.0132446,-0.0123291,-0.0120239,-0.0119629,-0.0106201,-0.00985718,-0.00796509,-0.00717163,-0.00582886,-0.00521851,-0.00350952,-0.00415039,-0.00357056,-0.00219727,-0.00119019,-0.000366211,-0.00204468,-0.00265503,-0.00427246,-0.00387573,-0.00286865,-0.00204468,-0.00253296,-0.00189209,-0.0022583,-0.00338745,-0.00161743,-0.000274658,0.000427246,0.000366211,-0.00119019,-0.00241089,-0.0038147,-0.00387573,-0.00491333,-0.00534058,-0.00485229,-0.00216675,-0.00112915,-0.00149536,-0.00198364,-0.00204468,-0.00274658,-0.0022583,-0.00198364,-0.00134277,-0.000427246,0.000701904,0.00195312,0.00259399,0.00274658,0.00274658,0.00289917,0.00344849,0.00473022,0.00549316,0.00668335,0.00485229,0.0039978,0.00378418,0.0045166,0.00265503,0.00134277,0.000366211,0.000915527,0.00302124,0.0039978,0.00469971,0.00631714,0.00717163,0.0085144,0.00613403,0.00323486,0.000762939,-0.00247192,-0.00372314,-0.00576782,-0.00662231,-0.00863647,-0.00787354,-0.00775146,-0.0071106,-0.00970459,-0.00872803,-0.00674438,-0.00360107,-0.000152588,0.00195312,0.00366211,0.00668335,0.0093689,0.0106201,0.00997925,0.0103455,0.0120239,0.0141907,0.0168152,0.0202026,0.0246277,0.0270996,0.0293274,0.030304,0.0299072,0.0291138,0.0283508,0.0281372,0.0286255,0.0306091,0.0323792,0.0328674,0.0327148,0.0322876,0.0335693,0.0326538,0.0301208,0.0298462,0.0322876,0.033905,0.0332031,0.0328369,0.0323486,0.0323792,0.0335693,0.0332031,0.0319214,0.0317383,0.0339661,0.0375671,0.0391235,0.0411377,0.0422668,0.0431213,0.043335,0.0424194,0.042572,0.0418396,0.0434875,0.0446167,0.045929,0.0458069,0.04776,0.0484619,0.0485229,0.0490417,0.0481262,0.0476074,0.0487671,0.0510864,0.0519714,0.0514221,0.0489807,0.0462036,0.0446167,0.0420837,0.0393066,0.035614,0.0318604,0.0280762,0.0259705,0.0244141,0.0241394,0.0238647,0.022522,0.0206909,0.01828,0.016449,0.0144348,0.0118713,0.00976562,0.0078125,0.0071106,0.00646973,0.00613403,0.00564575,0.0045166,0.00311279,0.00189209,0.00119019,0.000427246,6.10352e-05,-0.000701904,-0.00338745,-0.00427246,-0.00631714,-0.00796509,-0.0088501,-0.0093689,-0.0102539,-0.0118713,-0.0132141,-0.0121765,-0.0111694,-0.0115967,-0.013092,-0.0140686,-0.0165405,-0.0187073,-0.0211792,-0.0220947,-0.0239868,-0.0250549,-0.0256958,-0.0260925,-0.0258789,-0.0254822,-0.0256958,-0.0257568,-0.0271606,-0.0285645,-0.02948,-0.02948,-0.0300903,-0.0310974,-0.0317078,-0.0324402,-0.0327148,-0.0323486,-0.032074,-0.0310974,-0.0312195,-0.0301208,-0.0284729,-0.0267944,-0.0254517,-0.0245361,-0.025116,-0.0237122,-0.0239258,-0.0242004,-0.0234985,-0.0227051,-0.0223083,-0.0216064,-0.0215149,-0.0220337,-0.0231323,-0.0235596,-0.0237732,-0.025177,-0.0271606,-0.0294189,-0.0308228,-0.0320129,-0.0310364,-0.0315857,-0.0306091,-0.0310974,-0.0302429,-0.0301819,-0.0273132,-0.0270081,-0.0258179,-0.0254822,-0.0237732,-0.022583,-0.0227966,-0.0232239,-0.0236206,-0.0243225,-0.0256653,-0.0250244,-0.0243225,-0.022644,-0.0220947,-0.0218201,-0.0224609,-0.0229187,-0.0232239,-0.0220032,-0.0212402,-0.0214539,-0.0222168,-0.0221558,-0.0223083,-0.0231628,-0.0236206,-0.022583,-0.0233459,-0.0223694,-0.0217896,-0.0209656,-0.0210266,-0.0210266,-0.0213318,-0.0211182,-0.0210876,-0.019928,-0.0192566,-0.0191956,-0.0192871,-0.0205994,-0.0203857,-0.0190125,-0.017395,-0.0183411,-0.0195618,-0.020752,-0.0196228,-0.0180664,-0.01828,-0.0159607,-0.0153198,-0.0148315,-0.0154724,-0.0147705,-0.0145569,-0.0130005,-0.0116272,-0.0100403,-0.00900269,-0.00726318,-0.00473022,-0.00259399,-0.0010376,-0.000976562,-0.00140381,-0.00289917,-0.00512695,-0.00570679,-0.00592041,-0.00592041,-0.00772095,-0.00949097,-0.011322,-0.012085,-0.0130005,-0.0129395,-0.0118713,-0.0111694,-0.00909424,-0.00842285,-0.00802612,-0.00765991,-0.0071106,-0.00717163,-0.00543213,-0.00588989,-0.00662231,-0.00598145,-0.00469971,-0.0032959,-0.00140381,-0.000640869,0.000152588,0.00210571,0.00195312,0.00128174,0.0010376,-0.000152588,-0.00125122,-0.00259399,-0.00289917,-0.00415039,-0.00549316,-0.00564575,-0.00427246,-0.00335693,-0.000793457,0.00140381,0.00231934,0.00469971,0.00598145,0.00732422,0.00759888,0.00613403,0.00372314,0.00268555,0.00302124,0.00302124,0.00274658,0.0022583,0.00265503,0.00231934,0.00415039,0.0088501,0.0127869,0.0160217,0.018219,0.0191345,0.0198975,0.0220032,0.0245361,0.0261536,0.0294189,0.0306091,0.0323792,0.0344543,0.0381165,0.0412903,0.0444031,0.0461426,0.0458679,0.0454407,0.0443115,0.0454407,0.0476379,0.0486755,0.0485535,0.047699,0.0455933,0.0450134,0.0476074,0.050293,0.0505981,0.04953,0.0485229,0.0483093,0.0469055,0.0438843,0.0406799,0.0376282,0.0348816,0.032074,0.030304,0.0317078,0.0334167,0.0354004,0.0361633,0.0383301,0.040741,0.043396,0.0445251,0.0436707,0.0443726,0.0439758,0.045105,0.0458069,0.0456543,0.0447998,0.0429993,0.0400391,0.0384216,0.0384216,0.0388184,0.0368652,0.0344543,0.0341797,0.0348206,0.0354614,0.0355835,0.035614,0.0353699,0.0335693,0.032074,0.0317078,0.0322266,0.0317993,0.0303955,0.0276489,0.0249634,0.0220337,0.0192871,0.0188599,0.0185547,0.0171814,0.0142212,0.0116882,0.00842285,0.00823975,0.0085144,0.00775146,0.00610352,0.00442505,0.00421143,0.00469971,0.00576782,0.00543213,0.00534058,0.00253296,0.000701904,-0.00195312,-0.00393677,-0.0062561,-0.00823975,-0.0123901,-0.0142822,-0.0155334,-0.0163879,-0.0170898,-0.0167542,-0.015564,-0.0151367,-0.0168762,-0.0192566,-0.0193481,-0.0215454,-0.0241394,-0.0253906,-0.0266113,-0.0273132,-0.0281982,-0.0308228,-0.0323486,-0.0334167,-0.0330811,-0.0313721,-0.0305481,-0.0301208,-0.0309448,-0.0310059,-0.029541,-0.0288391,-0.0268555,-0.0254822,-0.0250549,-0.0245667,-0.0245667,-0.0242004,-0.0231628,-0.0232239,-0.0227966,-0.0234375,-0.0242004,-0.025116,-0.025177,-0.0266113,-0.0270996,-0.0280762,-0.0291138,-0.0300293,-0.0308228,-0.0308838,-0.0292664,-0.02948,-0.0291748,-0.0290527,-0.0289001,-0.0270691,-0.0272217,-0.0263977,-0.0254517,-0.0260315,-0.0260925,-0.0278015,-0.0272827,-0.0281982,-0.0293884,-0.0303955,-0.0321655,-0.0327759,-0.0336304,-0.0335388,-0.0335693,-0.033844,-0.0339661,-0.0341187,-0.0330505,-0.0330505,-0.032074,-0.032074,-0.0308838,-0.0305176,-0.0294189,-0.0273132,-0.0263062,-0.025177,-0.024353,-0.0236511,-0.0223083,-0.0218811,-0.022644,-0.0231628,-0.0240479,-0.0237732,-0.0243225,-0.0237732,-0.0231628,-0.0233459,-0.0232849,-0.0230103,-0.0231628,-0.0219421,-0.0210266,-0.0193481,-0.01828,-0.0189819,-0.0198364,-0.0209045,-0.0205994,-0.0201111,-0.0185852,-0.0203247,-0.0198975,-0.0202026,-0.0192566,-0.0190125,-0.0175171,-0.0167542,-0.0151978,-0.0158997,-0.0167236,-0.0178528,-0.0158386,-0.0134888,-0.0126648,-0.0142212,-0.0158386,-0.0151367,-0.0149841,-0.015625,-0.015564,-0.0163879,-0.0171509,-0.0194702,-0.020813,-0.0232239,-0.0229492,-0.0219421,-0.0216675,-0.0222168,-0.0209656,-0.0184326,-0.0162354,-0.0145569,-0.0121155,-0.00888062,-0.00738525,-0.00619507,-0.00598145,-0.00610352,-0.00753784,-0.0108337,-0.0146484,-0.0187683,-0.0197144,-0.0211182,-0.0206299,-0.018219,-0.0135193,-0.0107727,-0.00796509,-0.00350952,0.00317383,0.00915527,0.0139465,0.0166626,0.0175171,0.013855,0.0108337,0.00793457,0.00674438,0.00683594,0.0062561,0.00540161,0.00570679,0.0078125,0.0118713,0.0179443,0.0259705,0.0322266,0.0369873,0.0400085,0.0413818,0.0437012,0.0462952,0.0465088,0.0458069,0.0437012,0.0450134,0.0469971,0.0491638,0.0502319,0.050293,0.0515137,0.0526123,0.0543823,0.0549316,0.0547485,0.0540466,0.0530396,0.050354,0.0487366,0.0492554,0.0498657,0.0492249,0.049469,0.0509949,0.0513611,0.0505981,0.0505676,0.052124,0.0537415,0.0510559,0.0462952,0.0443726,0.0441589,0.0437622,0.0421448,0.0406799,0.0412292,0.0414429,0.0404358,0.0402527,0.0410767,0.0431824,0.0435486,0.043457,0.0422974,0.0387573,0.0345459,0.0314636,0.0291138,0.0278625,0.0256958,0.0232849,0.0203857,0.0183716,0.0175171,0.0185547,0.0196838,0.0209656,0.0233459,0.0254822,0.0240784,0.0231323,0.0232849,0.022644,0.0216064,0.0206909,0.0204163,0.0189819,0.0163269,0.0163269,0.0169373,0.01828,0.0183716,0.0180054,0.0193481,0.0210266,0.020752,0.0189819,0.0175171,0.0150452,0.0123291,0.00933838,0.00863647,0.00817871,0.00738525,0.00631714,0.00473022,0.0045166,0.00491333,0.00448608,0.0039978,0.00274658,0.00146484,-0.000976562,-0.0038147,-0.00598145,-0.00909424,-0.0115356,-0.0143433,-0.0151062,-0.0161133,-0.0151367,-0.0149231,-0.0147705,-0.0142212,-0.013916,-0.0135193,-0.0149231,-0.0157776,-0.016449,-0.0170898,-0.0178833,-0.0183411,-0.0192871,-0.019928,-0.019928,-0.0184937,-0.0175171,-0.0167236,-0.0154114,-0.0147095,-0.0136414,-0.0149841,-0.0163879,-0.0170288,-0.0168152,-0.0190125,-0.0203857,-0.0234375,-0.0255432,-0.0270691,-0.0289917,-0.0298462,-0.0306091,-0.0324402,-0.033905,-0.0341797,-0.0337524,-0.0337524,-0.0350342,-0.0351868,-0.0353699,-0.0352478,-0.035675,-0.0355225,-0.0343933,-0.0343323,-0.033783,-0.0339966,-0.0333252,-0.0328674,-0.0319214,-0.0312195,-0.0300903,-0.0287781,-0.0293274,-0.0296936,-0.0300293,-0.0299072,-0.0299683,-0.0306091,-0.0308228,-0.03125,-0.0313721,-0.0323792,-0.0331421,-0.0326538,-0.0319519,-0.0310974,-0.0303955,-0.0296936,-0.0298157,-0.0298157,-0.0300903,-0.0303955,-0.030304,-0.0303345,-0.0315247,-0.0317383,-0.0326233,-0.0326233,-0.032135,-0.031311,-0.0307312,-0.0300903,-0.0293884,-0.0279846,-0.0273743,-0.0258179,-0.0232849,-0.020813,-0.0203857,-0.0206299,-0.0192566,-0.0176392,-0.0159607,-0.0160217,-0.0154114,-0.0159607,-0.0169373,-0.0178528,-0.0174561,-0.0160217,-0.0141296,-0.0143433,-0.0150452,-0.0157471,-0.0154724,-0.0158997,-0.0174561,-0.0154114,-0.0141907,-0.0137939,-0.0157471,-0.0177307,-0.0227051,-0.0260315,-0.0286865,-0.0296936,-0.0293884,-0.0288391,-0.0296326,-0.0315857,-0.0333557,-0.032135,-0.0290527,-0.025116,-0.0228577,-0.0206909,-0.019928,-0.0177917,-0.0154114,-0.0133057,-0.0118713,-0.0123291,-0.0130005,-0.0119629,-0.00970459,-0.00796509,-0.00717163,-0.0062561,-0.00296021,-0.00106812,0.000640869,0.00204468,0.00421143,0.00473022,0.0045166,0.00512695,0.00878906,0.0133667,0.0158386,0.0167236,0.0194702,0.0219421,0.0246277,0.0278625,0.03125,0.0344849,0.0350952,0.0344543,0.0344543,0.0350342,0.0377808,0.0372925,0.0370789,0.0374451,0.0393372,0.0409241,0.0417786,0.0441895,0.0491638,0.0534058,0.0558472,0.0547485,0.0537415,0.0550842,0.0572815,0.0569153,0.056427,0.0579834,0.0585938,0.0576172,0.0541687,0.0514221,0.0505066,0.049469,0.0484009,0.0489502,0.0522766,0.053894,0.0521851,0.0485229,0.0455933,0.0431213,0.0423584,0.0426941,0.0428467,0.0416565,0.0377197,0.0328674,0.0304565,0.02948,0.0303955,0.0292664,0.0272827,0.0254822,0.0247803,0.0259705,0.0275879,0.026947,0.0255432,0.0240479,0.0228577,0.0236511,0.0245361,0.0246277,0.0230103,0.0229187,0.0234375,0.0227356,0.0238342,0.024353,0.0240479,0.0201111,0.0173035,0.0150452,0.0160522,0.0157776,0.015564,0.0142822,0.013092,0.0104065,0.00888062,0.00909424,0.0104675,0.0108337,0.00976562,0.00909424,0.0100403,0.011261,0.0110474,0.00927734,0.00668335,0.00527954,0.00506592,0.0062561,0.00723267,0.00534058,0.00421143,0.00140381,-0.000427246,-0.00216675,-0.00280762,-0.00357056,-0.00491333,-0.00723267,-0.00842285,-0.00814819,-0.00704956,-0.00775146,-0.00744629,-0.00759888,-0.00802612,-0.00863647,-0.00765991,-0.00521851,-0.00415039,-0.00549316,-0.00723267,-0.00933838,-0.00906372,-0.00845337,-0.00830078,-0.00933838,-0.00964355,-0.00985718,-0.00915527,-0.00970459,-0.0113831,-0.0126648,-0.0133057,-0.0129395,-0.0132446,-0.013031,-0.0141907,-0.0146179,-0.0165405,-0.0187073,-0.0211792,-0.0230103,-0.0231628,-0.0238647,-0.0249634,-0.025238,-0.0244751,-0.0235596,-0.0245361,-0.0237732,-0.022583,-0.0224609,-0.0243225,-0.025238,-0.0250549,-0.025177,-0.0270081,-0.0280151,-0.0278015,-0.0281982,-0.0296936,-0.0303345,-0.0305176,-0.0310059,-0.0315247,-0.0333557,-0.0335693,-0.0350342,-0.0368042,-0.0372009,-0.0358887,-0.0357971,-0.0355835,-0.0336914,-0.0318604,-0.0310059,-0.0319214,-0.0352478,-0.0357361,-0.0327759,-0.0293274,-0.0303955,-0.0332642,-0.0354614,-0.0358887,-0.0335388,-0.0320129,-0.0306702,-0.0298157,-0.0280151,-0.0276489,-0.0282898,-0.0299683,-0.03125,-0.0289917,-0.0281982,-0.0292053,-0.0298157,-0.026947,-0.0236206,-0.0224304,-0.0216675,-0.022522,-0.0236206,-0.0229187,-0.0189819,-0.0141907,-0.012085,-0.0136414,-0.0147705,-0.0149231,-0.0157776,-0.0177917,-0.0172424,-0.0152588,-0.0121155,-0.0115967,-0.0113831,-0.0144043,-0.015686,-0.0123291,-0.00878906,-0.00796509,-0.00775146,-0.00738525,-0.00866699,-0.00845337,-0.00866699,-0.0102844,-0.0123291,-0.0137939,-0.0137939,-0.0118103,-0.0125732,-0.0141907,-0.0159607,-0.0123291,-0.00958252,-0.00830078,-0.0055542,-0.00189209,6.10352e-05,0.000335693,0.000549316,0.00149536,0.000274658,-0.00289917,-0.00311279,-0.00259399,-0.00350952,-0.00350952,-0.00183105,-6.10352e-05,-0.00167847,-0.0017395,0.000579834,0.00296021,0.00436401,0.00787354,0.0102539,0.010498,0.0114136,0.0158997,0.0204773,0.0243225,0.0260925,0.0283508,0.0290527,0.0296936,0.0296936,0.0280151,0.0247803,0.0222168,0.0198364,0.0171814,0.0171814,0.0204773,0.0234375,0.025116,0.0265198,0.0294189,0.0311584,0.0322876,0.0337524,0.0344543,0.0344543,0.0326233,0.0306091,0.0296021,0.0296021,0.0286255,0.0261536,0.0244141,0.0249023,0.0256958,0.0274353,0.0270081,0.027771,0.0302429,0.0325012,0.0308228,0.0282288,0.0257568,0.0231628,0.0231628,0.024353,0.0238647,0.0216675,0.0222168,0.0263062,0.0282288,0.0279846,0.028717,0.0298157,0.0301819,0.0270996,0.0230103,0.0173035,0.0128174,0.00906372,0.00802612,0.00872803,0.00726318,0.00402832,0.00506592,0.0071106,0.00921631,0.012085,0.0153503,0.0175171,0.0190735,0.0193481,0.0190125,0.0190125,0.0180054,0.0151978,0.013855,0.0123291,0.0116882,0.0121155,0.0123901,0.0102844,0.00753784,0.00753784,0.00732422,0.00598145,0.00448608,0.00366211,0.000976562,-0.000793457,-0.0017395,-0.00350952,-0.00534058,-0.00112915,0.00302124,0.00335693,0.00366211,0.00619507,0.00808716,0.0118713,0.0143433,0.0157471,0.011322,0.000854492,-0.00772095,-0.0103455,-0.0133667,-0.0170898,-0.015625,-0.0147705,-0.0168762,-0.0177307,-0.0153198,-0.0133057,-0.00863647,-0.00415039,0.00119019,0.00366211,0.00506592,0.00335693,0.00640869,0.0127258,0.0154724,0.0134888,0.0112,0.0106812,0.0071106,0.00604248,0.00561523,0.00366211,0.000640869,0.000152588,-0.00640869,-0.0155334,-0.0162354,-0.0078125,-0.00140381,-0.00479126,-0.0133667,-0.0158997,-0.0121765,-0.00744629,-0.00366211,-0.00378418,-0.00512695,-0.0032959,0.00012207,-0.00149536,-0.00350952,-0.00335693,-0.00598145,-0.00817871,-0.00872803,-0.00592041,-0.00485229,-0.00527954,-0.00360107,-0.000152588,0.00689697,0.0123291,0.0148315,0.013916,0.00747681,0.00296021,0.00195312,-0.0015564,-0.00836182,-0.010498,-0.0161743,-0.0175781,-0.0177917,-0.0144043,-0.0161743,-0.0187683,-0.0190735,-0.0189819,-0.0118103,-0.00442505,-0.00183105,-0.00491333,-6.10352e-05,0.0100403,0.0144043,0.0133057,0.0162659,0.0203247,0.0222473,0.0264587,0.0237732,0.0149231,0.0114746,0.0125732,0.0153503,0.0146179,0.0120239,0.00668335,0.00231934,0.00372314,-0.0010376,-0.0102844,-0.0129395,-0.013031,-0.018158,-0.0271606,-0.0293884,-0.0229492,-0.0164795,-0.0126648,-0.0117493,-0.00894165,-0.00527954,-0.000427246,0.00704956,0.0122986,0.0132141,0.0140686,0.0116882,0.0134277,0.0158997,0.0151062,0.0108948,0.00598145,0.000427246,-0.00802612,-0.0137024,-0.0128784,-0.0115967,-0.0173645,-0.0266724,-0.032074,-0.0341797,-0.0344543,-0.0339966,-0.0310974,-0.0289307,-0.0301819,-0.0310974,-0.0262451,-0.0221558,-0.0163269,-0.00942993,-0.00534058,-0.00210571,-0.0010376,-0.00231934,-0.00125122,0.000976562,0.00378418,0.00576782,0.00265503,-0.00308228,-0.00512695,-0.00872803,-0.0111084,-0.0123901,-0.0146484,-0.0230103,-0.0308838,-0.0332642,-0.033783,-0.0352478,-0.0335388,-0.0298462,-0.0280762,-0.0264587,-0.025238,-0.0209656,-0.0153503,-0.00958252,-0.00680542,-0.00506592,-0.00469971,-0.00195312,0.00238037,0.00259399,0.00259399,0.00543213,0.00765991,0.00323486,-0.00140381,-0.00350952,-0.00268555,-0.00198364,-0.0039978,-0.00894165,-0.0161133,-0.018219,-0.0151062,-0.0124512,-0.0133057,-0.013855,-0.0125732,-0.0130005,-0.013916,-0.0110474,-0.00717163,-0.0032959,-0.000640869,-0.00012207,-0.00134277,0.000366211,0.00549316,0.00958252,0.00964355,0.00900269,0.0071106,0.0078125,0.00772095,0.00689697,0.0062561,0.00888062,0.00582886,0.00296021,0.00195312,0.000366211,-0.00119019,-0.000488281,-0.000976562,-0.00119019,-0.00119019,-0.000915527,-0.00241089,-0.00167847,-0.000274658,0.00161743,0.00253296,0.00317383,0.00372314,0.00448608,0.00619507,0.00878906,0.00900269,0.00506592,0.00656128,0.0103455,0.0122375,0.0117493,0.0108337,0.00836182,0.0055542,0.00543213,0.00842285,0.00909424,0.00927734,0.00683594,0.00473022,0.00436401,0.00436401,0.00604248,0.00549316,0.00427246,0.00619507,0.00900269,0.00915527,0.00738525,0.00549316,0.00662231,0.00662231,0.00915527,0.00894165,0.00653076,0.00543213,0.00744629,0.00814819,0.00765991,0.00857544,0.00958252,0.00997925,0.0106201,0.0105591,0.00900269,0.010498,0.0122375,0.0117493,0.00744629,0.00378418,0.00140381,0.000579834,0.000366211,0.000366211,-0.000793457,-0.00238037,-0.00372314,-0.00402832,-0.00265503,-0.00012207,0.00140381,0.00140381,0.00247192,0.00436401,0.00372314,0.00732422,0.00915527,0.00723267,0.00302124,0.00265503,0.00344849,0.00421143,0.00146484,-0.00265503,-0.00582886,-0.00646973,-0.00927734,-0.0128784,-0.0114746,-0.0104065,-0.0107117,-0.0102539,-0.00576782,-0.000549316,0.00259399,0.00140381,0.00302124,0.0093689,0.0132446,0.0160217,0.0177917,0.0176392,0.0166016,0.0168152,0.0203247,0.0189819,0.0135803,0.00991821,0.00631714,0.00189209,-0.00604248,-0.0121155,-0.0155334,-0.0163269,-0.0187988,-0.0230713,-0.0210266,-0.0153503,-0.0114136,-0.00933838,-0.00540161,0.00012207,0.00280762,0.00540161,0.00845337,0.00949097,0.00921631,0.0100403,0.00836182,0.0071106,0.00592041,0.00393677,0.00177002,0.00238037,0.00296021,0.00216675,0.000366211,0.00149536,0.00259399,0.00308228,0.00167847,-0.00012207,-0.0017395,-0.000976562,0.000335693,-0.00125122,-0.00335693,-0.00259399,-0.000152588,0.0010376,0.0022583,0.00167847,-0.00106812,-0.00695801,-0.0106201,-0.0123901,-0.0113831,-0.0123291,-0.0166016,-0.0168762,-0.0126648,-0.00753784,-0.00527954,-0.00866699,-0.00927734,-0.00436401,-0.00125122,0.000488281,0.000579834,-0.000488281,-0.000701904,-0.000762939,-0.00198364,-0.00427246,-0.00592041,-0.00814819,-0.00857544,-0.0071106,-0.00588989,-0.00744629,-0.00970459,-0.00915527,-0.0101929,-0.010498,-0.0104675,-0.0108948,-0.0118713,-0.0149841,-0.0169373,-0.0158386,-0.0160522,-0.0153503,-0.00991821,-0.00759888,-0.0105591,-0.0134277,-0.013092,-0.0121765,-0.00921631,-0.00378418,-0.00344849,-0.00683594,-0.00964355,-0.00836182,-0.00674438,-0.00540161,-0.00338745,-0.00302124,-0.00308228,-0.00311279,-0.00265503,-0.00494385,-0.00631714,-0.00588989,-0.00592041,-0.00958252,-0.0122375,-0.0102844,-0.00576782,-0.00592041,-0.00933838,-0.00802612,-0.00408936,-0.00442505,-0.00976562,-0.0136414,-0.00915527,-0.00317383,0.000152588,-0.000762939,-0.00189209,0.00195312,0.00619507,0.011322,0.0127258,0.0126648,0.0109558,0.00744629,0.00704956,0.00549316,0.00286865,-0.00134277,-0.00543213,-0.00726318,-0.00701904,-0.00726318,-0.00866699,-0.0108948,-0.00485229,-0.00012207,-0.00421143,-0.00949097,-0.00653076,0.000549316,0.000762939,-0.00289917,-0.00402832,-0.000640869,0.0038147,0.000366211,-0.00387573,-0.00338745,-0.000854492,-0.000549316,-0.000366211,-0.00216675,-0.00308228,-0.00210571,-0.00259399,-0.00241089,-0.00265503,-0.00372314,-0.00323486,-0.00408936,-0.00604248,-0.00598145,-0.0062561,-0.00738525,-0.00534058,-0.000366211,0.00134277,-0.000549316,-0.00512695,-0.00793457,-0.00997925,-0.0136414,-0.0172424,-0.0154724,-0.0100708,-0.00976562,-0.0144348,-0.0144958,-0.0093689,-0.00631714,-0.00564575,-0.00350952,0.000854492,0.00457764,0.00296021,-0.00146484,-0.0062561,-0.00689697,-0.0071106,-0.00958252,-0.0114746,-0.0117493,-0.0119629,-0.0115356,-0.0107117,-0.00704956,-0.0032959,-0.00231934,-0.00521851,-0.00747681,-0.00695801,-0.0062561,-0.00421143,-0.000579834,0.0015564,0.000549316,-0.00259399,-0.000915527,0.00216675,0.00350952,0.00549316,0.00527954,0.00668335,0.00985718,0.0106201,0.0104675,0.0109863,0.012085,0.0129395,0.0134277,0.0135193,0.0149841,0.018158,0.0209656,0.0220337,0.0231323,0.0257568,0.0265198,0.0279236,0.028717,0.0300903,0.0307617,0.0310364,0.0329285,0.0358582,0.0380554,0.0377197,0.0368042,0.0379028,0.0380554,0.0360107,0.0344543,0.0350952,0.036377,0.0375061,0.0391235,0.0418396,0.0440369,0.0452881,0.0437012,0.0439758,0.0442505,0.0429993,0.0398254,0.0360718,0.0330811,0.0296936,0.027771,0.0248413,0.0240784,0.0227966,0.0216675,0.0201721,0.0206909,0.0227356,0.0256042,0.0273132,0.0272217,0.0271606,0.0263062,0.0261536,0.0264587,0.0258179,0.0231323,0.0201111,0.0168152,0.0126038,0.0093689,0.0062561,0.00521851,0.00518799,0.00265503,0,-0.00308228,-0.00479126,-0.00485229,-0.0039978,-0.00357056,-0.00308228,-0.00302124,-0.0038147,-0.00436401,-0.00527954,-0.00683594,-0.00793457,-0.00991821,-0.0121765,-0.0149841,-0.0164795,-0.0183411,-0.0183411,-0.0185547,-0.0196228,-0.0198364,-0.0213928,-0.022583,-0.0241394,-0.0246277,-0.0270691,-0.0301819,-0.0321655,-0.0326538,-0.0322876,-0.0310059,-0.0291138,-0.0263672,-0.0236206,-0.0235596,-0.0243225,-0.0247803,-0.0237732,-0.0238342,-0.0237122,-0.0248413,-0.0271606,-0.0281982,-0.0292664,-0.0292664,-0.0285034,-0.0281372,-0.0286255,-0.0300903,-0.0306091,-0.0287781,-0.0272827,-0.026947,-0.025177,-0.022644,-0.0206909,-0.0198364,-0.0191956,-0.0176697,-0.0174561,-0.0171814,-0.0191345,-0.0193481,-0.0205383,-0.0202026,-0.0201111,-0.0194702,-0.0179443,-0.0180664,-0.0189209,-0.0174561,-0.0168152,-0.0146484,-0.0133667,-0.012085,-0.0132141,-0.0145569,-0.0150452,-0.0154724,-0.0150452,-0.015686,-0.0177917,-0.0194092,-0.0209045,-0.0213318,-0.0223083,-0.0220032,-0.0223083,-0.0220947,-0.0222168,-0.0216064,-0.0216675,-0.0217285,-0.0203247,-0.0185547,-0.0195618,-0.0206299,-0.020813,-0.020813,-0.0216675,-0.0211182,-0.0211182,-0.02005,-0.0203857,-0.0216064,-0.0216675,-0.0227966,-0.0239868,-0.026947,-0.0288391,-0.02948,-0.0307617,-0.0315247,-0.0315247,-0.0309448,-0.0315857,-0.0303955,-0.0286255,-0.0262451,-0.0240784,-0.0213928,-0.0189209,-0.0160522,-0.011322,-0.00457764,0.000335693,0.00387573,0.0078125,0.0110474,0.0154724,0.0231323,0.0292664,0.0326233,0.0342712,0.0347595,0.0334778,0.0324402,0.0335693,0.0347595,0.0340576,0.0315247,0.0293884,0.0289307,0.0322266,0.036377,0.0391235,0.0410767,0.043457,0.0455933,0.0482483,0.0524902,0.0559998,0.056488,0.0556641,0.0541687,0.0534668,0.052124,0.0509338,0.0512085,0.0490417,0.0466309,0.0448914,0.0453796,0.0473328,0.0500793,0.0533142,0.0541687,0.0548706,0.0557251,0.0563354,0.0579529,0.0588074,0.0578308,0.0563354,0.0542297,0.052063,0.0492249,0.046936,0.0447998,0.0413818,0.0377197,0.0352478,0.0331421,0.0296326,0.0279846,0.0273743,0.0265808,0.0253906,0.0229492,0.0216064,0.0205994,0.0210876,0.0215454,0.0205383,0.0183716,0.0166626,0.0141296,0.0131531,0.0139465,0.0140686,0.0125732,0.0103455,0.00842285,0.00796509,0.00704956,0.00817871,0.00906372,0.00793457,0.00543213,0.00280762,0.00128174,0.0022583,0.0038147,0.00415039,0.00311279,-0.000335693,-0.00311279,-0.00491333,-0.00427246,-0.00518799,-0.00744629,-0.0115967,-0.0154724,-0.0183716,-0.0203857,-0.0217896,-0.0237122,-0.0267334,-0.0297546,-0.0324402,-0.0343323,-0.0347595,-0.0331421,-0.032135,-0.0312195,-0.0316467,-0.0305481,-0.0288391,-0.0266113,-0.0246277,-0.0234375,-0.0240784,-0.0244751,-0.0245361,-0.0241394,-0.0233459,-0.0237732,-0.0240784,-0.0261841,-0.0273743,-0.0286865,-0.0286865,-0.0279236,-0.0266113,-0.0258179,-0.0239258,-0.0240784,-0.0228577,-0.0213013,-0.0198975,-0.0192566,-0.0188599,-0.0201111,-0.0223083,-0.0250549,-0.026947,-0.0293274,-0.0304565,-0.0323792,-0.0340576,-0.0359497,-0.0369873,-0.0370789,-0.0351868,-0.0341187,-0.0330505,-0.0321655,-0.0303345,-0.0300903,-0.0292053,-0.0286255,-0.02771,-0.0286865,-0.0303345,-0.0315247,-0.0332642,-0.0344849,-0.0348816,-0.0362244,-0.0376282,-0.0397644,-0.0404358,-0.0411682,-0.0412903,-0.0423584,-0.0437012,-0.0446777,-0.0460815,-0.0484619,-0.0496826,-0.0509338,-0.0524902,-0.0538025,-0.054718,-0.0552368,-0.0548706,-0.0543213,-0.0542908,-0.0550842,-0.0543823,-0.0533142,-0.050293,-0.04953,-0.04776,-0.0458679,-0.0439758,-0.0413513,-0.038147,-0.0357971,-0.0332031,-0.0315857,-0.0293884,-0.0278015,-0.0253296,-0.0222473,-0.0191956,-0.0140686,-0.0102539,-0.00689697,-0.00195312,0.00701904,0.0168152,0.0254822,0.0328674,0.0401001,0.0454407,0.0505066,0.0575256,0.0628052,0.0638733,0.0624084,0.061615,0.0585327,0.0555725,0.054657,0.0540466,0.0526123,0.0519714,0.0515747,0.0507812,0.0523376,0.0568542,0.0620422,0.0654907,0.0696411,0.0722351,0.074646,0.076416,0.0787964,0.0801086,0.0821533,0.0823059,0.0803223,0.0779419,0.077301,0.0757141,0.0743713,0.0718384,0.0699768,0.0667725,0.0646362,0.0624695,0.0610657,0.059021,0.0568542,0.0552063,0.0523987,0.0489807,0.0455017,0.0438232,0.0439758,0.0404663,0.034668,0.0284729,0.0245667,0.0220947,0.0185547,0.0149231,0.0111084,0.00549316,0.00119019,-0.00204468,-0.00415039,-0.00646973,-0.00704956,-0.00674438,-0.00817871,-0.0108948,-0.0122986,-0.0104065,-0.00598145,-0.00280762,-0.00167847,-0.000854492,-0.000427246,0.00195312,0.00540161,0.00970459,0.0131531,0.0149841,0.0161133,0.0158997,0.0149231,0.0151367,0.0169373,0.0186462,0.0173645,0.0135193,0.0085144,0.00543213,0.00274658,0.00247192,0.00125122,-0.000976562,-0.00500488,-0.00933838,-0.013031,-0.0137329,-0.0145569,-0.0146179,-0.0154114,-0.0183411,-0.020813,-0.0220337,-0.0216064,-0.02005,-0.0184937,-0.0174561,-0.0178833,-0.017395,-0.0164795,-0.0144043,-0.0121155,-0.0093689,-0.00726318,-0.00640869,-0.00704956,-0.00726318,-0.00717163,-0.00674438,-0.00689697,-0.00787354,-0.0102539,-0.013855,-0.0176392,-0.0203857,-0.0219421,-0.0223083,-0.0237732,-0.0268555,-0.0305176,-0.0334778,-0.0340576,-0.0336304,-0.0328674,-0.0319519,-0.0325623,-0.033844,-0.0357971,-0.0360107,-0.0357971,-0.0354004,-0.0351868,-0.036438,-0.0380554,-0.0398254,-0.0404358,-0.0409546,-0.0418396,-0.0422668,-0.0436096,-0.045105,-0.0450134,-0.0447388,-0.0441895,-0.0428467,-0.0410156,-0.0393982,-0.0392456,-0.0393372,-0.0384827,-0.038208,-0.0380554,-0.0375061,-0.0379944,-0.0405273,-0.0446167,-0.0493774,-0.0530396,-0.0553589,-0.0557251,-0.0577698,-0.0618286,-0.0682373,-0.0722656,-0.0735168,-0.0722656,-0.0694275,-0.0701294,-0.072113,-0.0742798,-0.0748596,-0.0725098,-0.0682373,-0.0655823,-0.0640869,-0.0637207,-0.0614929,-0.058197,-0.0519714,-0.0453186,-0.0410156,-0.0379333,-0.0371399,-0.0339661,-0.0261841,-0.0183411,-0.0152588,-0.0155334,-0.0154724,-0.0134277,-0.0106812,-0.00543213,0.000701904,0.00527954,0.00817871,0.0116272,0.0174561,0.0258789,0.0355225,0.045166,0.0535889,0.0603027,0.0647888,0.0709229,0.0776672,0.0826416,0.0823669,0.0809021,0.0786438,0.0778809,0.0761108,0.0731812,0.0699768,0.0676575,0.0670471,0.0681763,0.0681152,0.0708313,0.0752869,0.0797729,0.0834961,0.0868835,0.091156,0.093689,0.0953369,0.0976562,0.0989685,0.0981445,0.0953064,0.0904541,0.085968,0.0811157,0.0762634,0.0723267,0.0682983,0.0632629,0.0575256,0.0527039,0.0492554,0.0462341,0.0446167,0.0430603,0.0406494,0.0368042,0.0341797,0.0328369,0.0313721,0.0296326,0.0256042,0.020874,0.0168762,0.0147095,0.0119019,0.00814819,0.00402832,-0.000427246,-0.00427246,-0.00726318,-0.00909424,-0.0101929,-0.0104065,-0.0117493,-0.0136414,-0.0157471,-0.0160217,-0.0149841,-0.013855,-0.0129395,-0.0124512,-0.0119019,-0.0113831,-0.00970459,-0.00759888,-0.00689697,-0.00576782,-0.00415039,-0.00134277,0.000793457,0.00280762,0.00534058,0.00817871,0.011261,0.0128174,0.0157471,0.0180664,0.019989,0.0218811,0.0231628,0.0238342,0.0227966,0.020752,0.0178528,0.0142822,0.00979614,0.00619507,0.00308228,-0.00189209,-0.00765991,-0.0129395,-0.0154114,-0.0167236,-0.0166016,-0.0163879,-0.0163269,-0.0163879,-0.0150452,-0.0128174,-0.0088501,-0.00430298,-0.000701904,0.00195312,0.00216675,0.00296021,0.00280762,0.00311279,0.00344849,0.00140381,-0.00140381,-0.00588989,-0.00894165,-0.0127869,-0.0160522,-0.0184326,-0.0211182,-0.0244141,-0.0264587,-0.0282898,-0.030304,-0.0322876,-0.0336304,-0.0347595,-0.0360718,-0.0367126,-0.0370789,-0.0373535,-0.036438,-0.036499,-0.0368042,-0.0383911,-0.0392456,-0.0396118,-0.040863,-0.0421448,-0.0421448,-0.0438232,-0.0448303,-0.0470581,-0.0493164,-0.0516357,-0.0537415,-0.0555725,-0.0555115,-0.0557251,-0.0552979,-0.0554199,-0.0556335,-0.0550232,-0.0524292,-0.0489502,-0.0452271,-0.0422058,-0.0401001,-0.0372314,-0.0350342,-0.0323792,-0.031311,-0.0323486,-0.0346985,-0.0365906,-0.0385437,-0.040802,-0.0439148,-0.0486145,-0.0547485,-0.061615,-0.0667725,-0.0686035,-0.0693665,-0.0704956,-0.0719604,-0.0728149,-0.0730896,-0.0714111,-0.0681152,-0.0635071,-0.0575256,-0.0523376,-0.0480347,-0.0457153,-0.0409546,-0.0342712,-0.0284729,-0.0227966,-0.0170288,-0.0122986,-0.00921631,-0.00701904,-0.00592041,-0.00323486,-0.00146484,0.00338745,0.00759888,0.011261,0.0144043,0.017395,0.0223694,0.0283508,0.0351562,0.0420837,0.04776,0.0537415,0.058197,0.0627441,0.0666809,0.0698547,0.0704956,0.0678101,0.0650635,0.0625305,0.0587463,0.0568237,0.0537415,0.04953,0.0450134,0.0422974,0.0417786,0.0426941,0.0454407,0.0482483,0.0495911,0.0516968,0.0561523,0.063385,0.069519,0.0724487,0.0751343,0.0764771,0.0765991,0.0760498,0.0761108,0.0747986,0.0712585,0.0667725,0.0609131,0.0538025,0.0478516,0.0440369,0.0414429,0.0375671,0.0343323,0.0294189,0.0270081,0.0249634,0.0257568,0.0263977,0.0268555,0.0266113,0.0234985,0.0215454,0.0189209,0.0180969,0.0169678,0.015564,0.011261,0.00592041,0.00119019,-0.0017395,-0.00372314,-0.00506592,-0.0062561,-0.00732422,-0.00793457,-0.00747681,-0.00592041,-0.00265503,0.000579834,0.00238037,0.00378418,0.00366211,0.00543213,0.00701904,0.00872803,0.00921631,0.00970459,0.0107117,0.0122375,0.0117493,0.0118103,0.011261,0.0117493,0.012085,0.0120239,0.0109558,0.00900269,0.00747681,0.00588989,0.00442505,0.00408936,0.00683594,0.00949097,0.00970459,0.00830078,0.00942993,0.0118713,0.0108948,0.00900269,0.00717163,0.0062561,0.00469971,0.00393677,0.00253296,0.000762939,-0.0010376,-0.00195312,-0.00393677,-0.00506592,-0.00695801,-0.0078125,-0.00976562,-0.0114746,-0.0144348,-0.0171509,-0.0189209,-0.02005,-0.0191956,-0.0206909,-0.0222473,-0.0204773,-0.0163269,-0.0127258,-0.0104065,-0.00900269,-0.00878906,-0.00991821,-0.0108337,-0.00991821,-0.00991821,-0.0119019,-0.0133057,-0.0151978,-0.0152588,-0.0169373,-0.0220947,-0.0276489,-0.0323486,-0.0332031,-0.0329285,-0.0344849,-0.0379944,-0.0412903,-0.0387573,-0.0361023,-0.0339661,-0.030304,-0.0258179,-0.022522,-0.0179443,-0.0154114,-0.0126038,-0.0101929,-0.00793457,-0.00689697,-0.0105591,-0.0162659,-0.0220337,-0.0248413,-0.0245667,-0.0256042,-0.0262451,-0.0297546,-0.0292053,-0.0243225,-0.0187073,-0.0151062,-0.0134888,-0.0118103,-0.0088501,-0.00506592,-0.00167847,-0.000579834,-0.00265503,-0.00604248,-0.00744629,-0.00949097,-0.0117493,-0.0143433,-0.0124512,-0.0107117,-0.011322,-0.0115356,-0.00878906,-0.00814819,-0.0107727,-0.0135803,-0.0154114,-0.0143433,-0.0148621,-0.0178528,-0.0230713,-0.0258789,-0.0238342,-0.0219421,-0.0204163,-0.0175781,-0.0129395,-0.00985718,-0.00726318,-0.00323486,0.00119019,0.00366211,0.00311279,0.00408936,0.00723267,0.00985718,0.0114136,0.00970459,0.00927734,0.00726318,0.00872803,0.00927734,0.00576782,0.00335693,0.00241089,0.000488281,-0.00259399,-0.00357056,-0.00265503,-0.000579834,0.00177002,0.00198364,0.00408936,0.00613403,0.0078125,0.0120239,0.0146179,0.0169373,0.0197144,0.0206909,0.0215454,0.0218811,0.0210266,0.020813,0.0218201,0.0228577,0.0219421,0.0178528,0.0143433,0.0130005,0.0122375,0.011322,0.00933838,0.00765991,0.00613403,0.00570679,0.0062561,0.00598145,0.00723267,0.0100708,0.0114136,0.0124512,0.0142822,0.0167236,0.0184326,0.0188599,0.0206909,0.0204163,0.0187073,0.0166626,0.0143433,0.0137329,0.0114136,0.009552,0.00653076,0.0032959,0.000976562,0.000579834,-0.00125122,-0.00274658,-0.00421143,-0.00219727,0.000854492,0.00238037,0.00289917,0.00436401,0.00704956,0.00942993,0.0120239,0.0123901,0.0101318,0.00909424,0.00970459,0.00921631,0.00796509,0.00534058,0.00344849,0.00265503,0.00231934,0.00219727,0.000274658,-0.000549316,-0.000640869,6.10352e-05,-0.00012207,-0.000915527,-0.000488281,-0.00012207,0.000793457,0.00204468,0.00408936,0.00512695,0.00534058,0.00518799,0.00604248,0.00701904,0.00683594,0.00527954,0.00280762,0.00125122,0.000793457,0.000488281,-0.00149536,-0.00198364,-0.00259399,-0.00238037,-0.00338745,-0.00421143,-0.0032959,-0.000976562,0,-0.00106812,-0.000976562,0.000274658,0.000366211,-0.000213623,-6.10352e-05,-0.000793457,-0.0010376,-0.0022583,-0.00253296,-0.00335693,-0.00280762,-0.00149536,-0.00247192,-0.00430298,-0.00613403,-0.00631714,-0.00680542,-0.00634766,-0.00662231,-0.0062561,-0.00695801,-0.00888062,-0.00759888,-0.0055542,-0.00427246,-0.00415039,-0.00494385,-0.00512695,-0.00366211,-0.00204468,-0.00219727,-0.00323486,-0.00286865,-0.00183105,-0.00247192,-0.00253296,-0.00302124,-0.00286865,-0.00149536,-0.000366211,-0.000976562,-0.00161743,-0.000915527,-0.000549316,-0.00189209,-0.00128174,-0.00012207,-0.00128174,-0.00219727,-0.00280762,-0.0017395,-0.00112915,-0.00247192,-0.00296021,-0.00247192,-0.00149536,-0.0022583,-0.00198364,-0.00149536,0.000549316,0.000640869,0.000762939,0.00167847,0.00134277,0.000701904,0.000274658,-0.00012207,0.00106812,0.00289917,0.00231934,-0.000488281,-0.00195312,-0.000579834,0.000640869,0.00012207,-0.000976562,-0.000274658,0.000335693,0.00238037,0.00247192,0.0017395,0.00161743,0.00198364,0.00177002,0.000915527,-0.000274658,-0.00286865,-0.00408936,-0.00457764,-0.00549316,-0.00726318,-0.00842285,-0.00732422,-0.00518799,-0.00219727,-0.000427246,-0.0017395,-0.000213623,0.0010376,0.000976562,-0.00128174,-0.00302124,-0.00350952,-0.00238037,-0.00204468,6.10352e-05,0.000335693,-0.00195312,-0.00372314,-0.00231934,-0.00366211,-0.00518799,-0.00744629,-0.00949097,-0.0105591,-0.0123901,-0.0129395,-0.0117493,-0.011261,-0.0132141,-0.0136414,-0.0106812,-0.00796509,-0.00759888,-0.00759888,-0.0088501,-0.00830078,-0.00485229,-0.00289917,-0.00289917,6.10352e-05,0.0022583,0.00311279,-0.000274658,-0.00372314,-0.00592041,-0.0038147,-0.00500488,-0.00744629,-0.00991821,-0.0108337,-0.0132141,-0.0115356,-0.0114746,-0.0123901,-0.0127869,-0.011261,-0.0103455,-0.00991821,-0.00958252,-0.0110474,-0.0116272,-0.0110474,-0.0120239,-0.0123901,-0.00909424,-0.00695801,-0.00942993,-0.0115967,-0.00976562,-0.00646973,-0.00689697,-0.00921631,-0.00958252,-0.0102844,-0.00894165,-0.00747681,-0.00674438,-0.00927734,-0.0121155,-0.0132141,-0.0134277,-0.0141296,-0.013855,-0.0134888,-0.013855,-0.0137024,-0.0116882,-0.0114746,-0.0128784,-0.0136414,-0.0127869,-0.0112,-0.00878906,-0.00863647,-0.00814819,-0.00592041,-0.00241089,0,0.000793457,0.00274658,0.00421143,0.00674438,0.0100403,0.0113831,0.0109863,0.0104675,0.0119019,0.0106812,0.009552,0.00845337,0.00802612,0.00653076,0.00613403,0.00561523,0.00442505,0.00204468,0.00167847,0.00265503,0.00311279,0.00393677,0.00350952,0.00479126,0.00653076,0.00933838,0.0122375,0.0140076,0.0147705,0.0141907,0.0135803,0.0121765,0.0119629,0.0116272,0.0113831,0.0102539,0.00894165,0.00512695,0.00128174,-0.00128174,-0.00265503,-0.00421143,-0.00427246,-0.0039978,-0.00280762,-0.000793457,0.0010376,0.00128174,0.00280762,0.00457764,0.00662231,0.00759888,0.00787354,0.00747681,0.0071106,0.00393677,0.000701904,-0.000915527,-0.000762939,-0.00149536,-0.00177002,-0.00265503,-0.00189209,-0.00302124,-0.00210571,-0.00112915,0.00189209,0.00421143,0.00491333,0.00473022,0.00646973,0.00836182,0.0107727,0.00979614,0.00991821,0.0115967,0.0123291,0.0136414,0.0135803,0.0146484,0.0163269,0.0176697,0.019989,0.022644,0.0272827,0.0310059,0.0323792,0.033783,0.033783,0.033783,0.0319519,0.0307617,0.030304,0.0292664,0.0263977,0.0238342,0.0205383,0.0198975,0.018219,0.0159607,0.0141907,0.0134277,0.0123901,0.0106201,0.00793457,0.00469971,0.00598145,0.00817871,0.00888062,0.00598145,0.00216675,-0.000366211,0.000976562,0.00167847,0.00357056,0.00350952,0.00338745,0.00415039,0.0039978,0.00302124,0.00289917,0.00360107,0.00338745,0.0015564,6.10352e-05,-0.000793457,-0.00357056,-0.00634766,-0.00836182,-0.0102539,-0.0112,-0.0147095,-0.0173645,-0.019928,-0.0210266,-0.0213013,-0.0218201,-0.0222473,-0.0231323,-0.0221558,-0.0198364,-0.0203857,-0.0214539,-0.0216064,-0.0205383,-0.018158,-0.018158,-0.0190735,-0.0205994,-0.0216064,-0.0201111,-0.0177307,-0.0173035,-0.0178833,-0.0204163,-0.0227356,-0.0240479,-0.0247498,-0.0267334,-0.0276489,-0.0272827,-0.0266113,-0.0256653,-0.0260925,-0.0256958,-0.0244751,-0.0228577,-0.0221558,-0.0231323,-0.0235596,-0.0239868,-0.0256653,-0.0281372,-0.0303345,-0.0324402,-0.0355225,-0.039032,-0.0410767,-0.040863,-0.039032,-0.0376282,-0.0383301,-0.0388184,-0.0394592,-0.0422668,-0.0458679,-0.0487366,-0.0513,-0.0524902,-0.0541687,-0.0533752,-0.0512695,-0.047821,-0.0457153,-0.0453186,-0.0458679,-0.0434875,-0.0377808,-0.0330505,-0.0293274,-0.028717,-0.0282898,-0.0254822,-0.0203857,-0.013092,-0.00830078,-0.00350952,0.00408936,0.0132141,0.0222168,0.0325012,0.0423584,0.0491028,0.0514221,0.0539551,0.054657,0.0549316,0.0554504,0.0547485,0.0505676,0.0440979,0.0381165,0.0339661,0.0327148,0.0340576,0.035614,0.0352478,0.0337524,0.033783,0.0388489,0.04599,0.0526733,0.0575562,0.0563354,0.0568237,0.0571899,0.0604858,0.0641479,0.0666199,0.0666809,0.063385,0.0602112,0.0576172,0.057251,0.0579834,0.0585938,0.0578918,0.0567627,0.0540466,0.053833,0.0550232,0.0574036,0.0579834,0.0557861,0.0505676,0.0444031,0.0403137,0.0385437,0.0368652,0.0317993,0.0263672,0.0190735,0.0134888,0.00970459,0.00842285,0.0071106,0.00640869,0.00521851,0.00323486,0.0017395,0.0032959,0.00717163,0.0118713,0.0136414,0.0130005,0.0102539,0.0101929,0.0133057,0.0186462,0.0203857,0.0203247,0.0178833,0.016449,0.0172424,0.020813,0.0220337,0.0230103,0.0220947,0.0198975,0.0177307,0.0157776,0.0152588,0.0161743,0.0154724,0.0134888,0.0088501,0.00430298,0.00238037,0.0017395,0.00134277,-0.00140381,-0.00613403,-0.0108948,-0.0144043,-0.0161133,-0.0187988,-0.0223083,-0.025238,-0.027771,-0.0305176,-0.0342712,-0.0371399,-0.0379333,-0.0368042,-0.0333557,-0.0316467,-0.031311,-0.0305481,-0.02771,-0.024353,-0.0219421,-0.020813,-0.020813,-0.0224609,-0.0239258,-0.0253296,-0.0267944,-0.0282288,-0.0303955,-0.0326233,-0.035675,-0.038147,-0.0399475,-0.0401001,-0.0389709,-0.038208,-0.0365906,-0.0362244,-0.0358887,-0.0343323,-0.0343323,-0.0329895,-0.0341797,-0.0354004,-0.0383911,-0.0409241,-0.0444641,-0.0476379,-0.0498657,-0.0508728,-0.0506592,-0.0509338,-0.0522766,-0.0535278,-0.0527039,-0.0514832,-0.0482483,-0.045166,-0.0444641,-0.0455933,-0.0464478,-0.0466309,-0.0468445,-0.0485535,-0.0512695,-0.0557861,-0.061554,-0.0675964,-0.0745544,-0.0808411,-0.0845642,-0.087738,-0.0904846,-0.0961609,-0.101868,-0.103851,-0.102203,-0.0965271,-0.0914001,-0.0887146,-0.0880127,-0.0892639,-0.0856934,-0.0775757,-0.0655823,-0.0540161,-0.0424194,-0.0308228,-0.0212402,-0.0128174,0.00198364,0.0215149,0.0409241,0.0548096,0.0643005,0.0714722,0.0751343,0.081543,0.0853882,0.0874939,0.0864563,0.081665,0.0761108,0.0663452,0.0596008,0.0561218,0.0551453,0.0577698,0.0586548,0.059021,0.059021,0.0622559,0.0697327,0.0791321,0.0894165,0.0967407,0.0978699,0.0978394,0.100098,0.105377,0.110291,0.111237,0.110229,0.10791,0.106293,0.105164,0.108459,0.112061,0.115936,0.115845,0.112823,0.111023,0.109467,0.110443,0.110504,0.108612,0.100891,0.0895691,0.0777893,0.065918,0.0568542,0.0492554,0.0420837,0.0316467,0.0189209,0.00646973,-0.00408936,-0.0109863,-0.0146179,-0.0170898,-0.0195618,-0.0250549,-0.032135,-0.0343933,-0.0310974,-0.025116,-0.0216064,-0.0231323,-0.0255432,-0.0261536,-0.0228577,-0.0176392,-0.0130005,-0.0102539,-0.00964355,-0.00830078,-0.00588989,0.000152588,0.00582886,0.0122375,0.0154114,0.0167542,0.0180664,0.0204773,0.0250244,0.0276489,0.0291748,0.0281982,0.0249634,0.0203857,0.0164795,0.0133057,0.00958252,0.00421143,-0.0022583,-0.00900269,-0.0171509,-0.0245361,-0.0291748,-0.0327759,-0.0346985,-0.0372925,-0.0401611,-0.0426331,-0.043457,-0.0413513,-0.0369263,-0.0306091,-0.0272827,-0.0217285,-0.0171509,-0.0112,-0.00415039,0.000976562,0.00485229,0.0062561,0.00656128,0.00656128,0.00683594,0.00613403,0.00344849,-0.000549316,-0.00518799,-0.0107727,-0.0158997,-0.0204163,-0.0238647,-0.0279846,-0.031311,-0.0357971,-0.0393982,-0.0417175,-0.0436096,-0.0444031,-0.045166,-0.0455933,-0.0472717,-0.0498047,-0.0515747,-0.0533142,-0.0529175,-0.0533752,-0.0531006,-0.0547485,-0.0574036,-0.0588684,-0.0597839,-0.0592957,-0.0587463,-0.058197,-0.0583801,-0.0596008,-0.0601501,-0.06073,-0.0613403,-0.0621338,-0.0639648,-0.0673218,-0.0710449,-0.0769653,-0.0827942,-0.0897827,-0.0966492,-0.103638,-0.108551,-0.114807,-0.119385,-0.124786,-0.130646,-0.134583,-0.135986,-0.1362,-0.134094,-0.132324,-0.129456,-0.125275,-0.12085,-0.115356,-0.108398,-0.100586,-0.0915222,-0.0857544,-0.0787964,-0.0664978,-0.0476074,-0.0303345,-0.0185852,-0.00479126,0.0102844,0.0279236,0.0461426,0.0642395,0.0773926,0.0848999,0.0900269,0.0939331,0.0956116,0.0959473,0.0958252,0.0922852,0.0854797,0.0769653,0.0724487,0.0683899,0.0645142,0.0654297,0.0704041,0.0759583,0.0803528,0.0865479,0.0956726,0.106232,0.115234,0.123871,0.132599,0.139923,0.144653,0.147522,0.148438,0.147308,0.146759,0.146118,0.144562,0.14328,0.141266,0.139801,0.137177,0.133118,0.128967,0.126007,0.124451,0.122131,0.118134,0.110321,0.0996094,0.0871582,0.0762634,0.0675964,0.0569153,0.0438232,0.030304,0.017395,0.00793457,-0.00259399,-0.0115967,-0.0206299,-0.0291138,-0.0348206,-0.038269,-0.0395203,-0.0401001,-0.0412292,-0.0420532,-0.0419312,-0.0397339,-0.0358887,-0.0322266,-0.0305176,-0.0310974,-0.032135,-0.0303955,-0.0279846,-0.0242615,-0.0216064,-0.0176392,-0.0164795,-0.0166626,-0.0153198,-0.0115967,-0.0078125,-0.00402832,-0.00210571,-0.00210571,-0.00134277,0.000335693,0.00189209,0.0032959,0.00372314,0.00408936,0.00302124,0.00265503,0.00125122,0.000976562,0.00012207,-0.00119019,-0.00479126,-0.00836182,-0.0115967,-0.0137024,-0.0148315,-0.0163879,-0.0180969,-0.0214539,-0.0238647,-0.0246887,-0.0216675,-0.0168152,-0.0116272,-0.00738525,-0.00289917,0.00204468,0.00808716,0.0151367,0.0214539,0.0254517,0.0282898,0.0284119,0.0280151,0.0267334,0.0239868,0.0204163,0.0157776,0.00863647,0.00268555,-0.00512695,-0.0112,-0.0176697,-0.023407,-0.0286255,-0.0332642,-0.0369873,-0.0393066,-0.0416565,-0.042572,-0.0441895,-0.0455322,-0.0476379,-0.0482483,-0.0483398,-0.0483398,-0.0481873,-0.0486755,-0.0487366,-0.0498962,-0.0523376,-0.0534058,-0.0543823,-0.0553589,-0.0560608,-0.059021,-0.0623169,-0.065918,-0.0682983,-0.0707092,-0.0741577,-0.0770874,-0.0801392,-0.0833435,-0.0877075,-0.0924377,-0.0966492,-0.101013,-0.105103,-0.109039,-0.113342,-0.117188,-0.121368,-0.124817,-0.128754,-0.130493,-0.131897,-0.133026,-0.133118,-0.132172,-0.128052,-0.120667,-0.115143,-0.108673,-0.104401,-0.0994873,-0.0912476,-0.0806885,-0.0670471,-0.0522156,-0.0355225,-0.0238342,-0.0141296,-0.000427246,0.0161133,0.0351868,0.0537415,0.0679626,0.0738525,0.0771179,0.0794067,0.083374,0.0883484,0.0908203,0.0881653,0.0808105,0.0694275,0.0624695,0.0604858,0.0611267,0.0625305,0.0639343,0.064209,0.0647278,0.0702209,0.0798645,0.0920715,0.104187,0.112366,0.119659,0.126221,0.133575,0.140472,0.146484,0.150208,0.149506,0.147156,0.144409,0.142731,0.141327,0.140411,0.137054,0.131836,0.126068,0.120422,0.117279,0.114868,0.113892,0.108917,0.101013,0.0908813,0.0810242,0.0735779,0.0671692,0.0583801,0.0457153,0.0317078,0.0185547,0.00598145,-0.00485229,-0.0128784,-0.0211182,-0.0300903,-0.0396729,-0.0454407,-0.0487671,-0.0484619,-0.0476379,-0.0457458,-0.0434875,-0.0418396,-0.0383911,-0.0339966,-0.0300293,-0.0252686,-0.0213318,-0.0180969,-0.0166626,-0.0148621,-0.0130005,-0.0118713,-0.00927734,-0.00894165,-0.00921631,-0.0106812,-0.0119019,-0.0129395,-0.0116882,-0.0104065,-0.0111694,-0.0137024,-0.0157776,-0.0171814,-0.0175171,-0.0153198,-0.0128784,-0.00976562,-0.00802612,-0.00759888,-0.00640869,-0.00308228,0.000640869,0.0038147,0.00592041,0.00527954,0.00540161,0.00518799,0.00421143,0.00274658,0.000335693,-0.00146484,-0.00280762,-0.00534058,-0.00674438,-0.00738525,-0.00561523,-0.00286865,0.0010376,0.00534058,0.0107727,0.0146484,0.0184937,0.022522,0.0255432,0.0265198,0.0263977,0.0250244,0.0222168,0.01828,0.0130005,0.00717163,-0.000152588,-0.00787354,-0.0158386,-0.022522,-0.0270996,-0.0315857,-0.0354614,-0.0405273,-0.0439148,-0.0462036,-0.0466309,-0.0471497,-0.047821,-0.0479126,-0.0464478,-0.0465088,-0.0466309,-0.0458069,-0.0432129,-0.0417786,-0.0418701,-0.0415955,-0.0426941,-0.043457,-0.0446167,-0.0446777,-0.0468445,-0.0492249,-0.0530396,-0.0545959,-0.0553589,-0.0569153,-0.0592957,-0.0614929,-0.0638733,-0.0670471,-0.0720215,-0.0761719,-0.0765991,-0.0722656,-0.0687256,-0.0678101,-0.0692139,-0.0693665,-0.0692139,-0.0676575,-0.0666199,-0.0646362,-0.0640869,-0.0635986,-0.063385,-0.0621948,-0.0635986,-0.0641479,-0.0638733,-0.0603638,-0.0579529,-0.0562134,-0.0539551,-0.0489807,-0.0423584,-0.036438,-0.0300293,-0.0211792,-0.0116272,-0.00106812,0.00772095,0.0161743,0.0261536,0.0358582,0.0421448,0.0460815,0.0481262,0.0501709,0.0496521,0.047699,0.0460815,0.0443115,0.0391846,0.0344543,0.0311584,0.0274963,0.0254822,0.0246277,0.0249634,0.0259705,0.0283508,0.032135,0.038147,0.0440369,0.0502319,0.0556335,0.0595703,0.0649414,0.069519,0.0737305,0.0754089,0.0752563,0.0734253,0.0715332,0.0694885,0.0657654,0.0626221,0.0597229,0.0562744,0.0522156,0.0501404,0.0475464,0.0470581,0.0467224,0.047821,0.0482483,0.0481262,0.0479126,0.0462341,0.0464172,0.0455933,0.0436707,0.0410767,0.0363159,0.0310059,0.0249023,0.019928,0.0158997,0.0117493,0.00717163,0.00357056,0.000335693,-0.00265503,-0.00296021,-0.00259399,-0.00189209,-0.00125122,-0.000579834,0.00247192,0.00582886,0.00909424,0.0134277,0.0170898,0.0195007,0.0213318,0.023407,0.0240479,0.024353,0.0242615,0.0227356,0.0221558,0.02005,0.0176392,0.015564,0.0127258,0.0100403,0.00857544,0.00512695,0.00195312,-0.000549316,-0.00219727,-0.00323486,-0.0032959,-0.0032959,-0.00357056,-0.00506592,-0.00598145,-0.00613403,-0.00494385,-0.00512695,-0.00576782,-0.00668335,-0.00653076,-0.00674438,-0.00753784,-0.00747681,-0.00765991,-0.00808716,-0.00787354,-0.00674438,-0.00512695,-0.00302124,-0.00491333,-0.00775146,-0.00906372,-0.00814819,-0.00640869,-0.00521851,-0.00491333,-0.00387573,-0.00274658,-0.0015564,-0.000488281,0.000335693,0.00216675,0.00350952,0.00393677,0.00402832,0.00286865,0.00265503,0.00183105,-0.00012207,-0.00119019,-0.000640869,-0.00125122,-0.00268555,-0.00335693,-0.00448608,-0.00393677,-0.00344849,-0.00588989,-0.00747681,-0.00747681,-0.00759888,-0.00701904,-0.00723267,-0.00830078,-0.00878906,-0.00985718,-0.0116272,-0.0100403,-0.009552,-0.00863647,-0.0071106,-0.00772095,-0.00814819,-0.00592041,-0.00653076,-0.00674438,-0.00360107,-0.00500488,-0.00430298,-0.00286865,-0.00479126,-0.00372314,-0.00357056,-0.00427246,-0.00302124,-0.00308228,-0.00408936,-0.00357056,-0.00393677,-0.00430298,-0.00402832,-0.0055542,-0.0062561,-0.00613403,-0.00656128,-0.00634766,-0.00701904,-0.00744629,-0.0071106,-0.0078125,-0.00909424,-0.00997925,-0.0101318,-0.011261,-0.0106812,-0.0132446,-0.0159607,-0.0163269,-0.0186462,-0.0191956,-0.020752,-0.0230103,-0.0216064,-0.0206299,-0.0213318,-0.0213928,-0.0209045,-0.0205383,-0.0204163,-0.0197144,-0.0198364,-0.0209045,-0.0220337,-0.022583,-0.0224609,-0.0232849,-0.0240784,-0.025177,-0.0255432,-0.0258179,-0.0248413,-0.0259399,-0.0248413,-0.0247498,-0.0247498,-0.0227966,-0.0229187,-0.0223083,-0.0221558,-0.0197754,-0.0163269,-0.0163879,-0.016449,-0.0149231,-0.0147095,-0.0142212,-0.013031,-0.0137024,-0.0142822,-0.0154114,-0.0168762,-0.0178833,-0.0178528,-0.0170898,-0.0165405,-0.0158997,-0.0154114,-0.0143433,-0.0135803,-0.0121765,-0.0102539,-0.00787354,-0.00491333,-0.00338745,-0.00323486,-0.000793457,0.00112915,0.00210571,0.00335693,0.00436401,0.00527954,0.00527954,0.00500488,0.00534058,0.0045166,0.00521851,0.00549316,0.00582886,0.00604248,0.00701904,0.00695801,0.00921631,0.0107727,0.0123291,0.0139465,0.0153198,0.0163879,0.017395,0.0183716,0.0192566,0.01828,0.0186462,0.0184326,0.0179443,0.0163269,0.0158997,0.0144958,0.0136414,0.0127258,0.0116272,0.0104675,0.0101929,0.010498,0.0111694,0.0118713,0.0117493,0.0112,0.0125122,0.0123291,0.0119629,0.0126038,0.0123901,0.0129395,0.0124512,0.0118713,0.0117493,0.011261,0.0111084,0.0109558,0.0102539,0.0100403,0.00894165,0.00863647,0.0088501,0.00793457,0.00772095,0.00744629,0.00802612,0.00866699,0.00845337,0.0088501,0.00933838,0.0111694,0.0115356,0.0125732,0.0124512,0.0135193,0.0122375,0.0126648,0.0108337,0.0103455,0.00836182,0.00759888,0.00619507,0.00570679,0.00442505,0.00335693,0.00274658,0.00146484,0.00183105,0.00210571,0.00308228,0.00421143,0.00485229,0.00512695,0.00564575,0.00534058,0.00634766,0.00695801,0.00732422,0.00823975,0.00765991,0.00772095,0.00717163,0.00680542,0.00640869,0.00592041,0.00674438,0.00582886,0.00640869,0.00640869,0.00662231,0.00662231,0.00668335,0.00610352,0.00656128,0.00717163,0.0071106,0.00787354,0.00772095,0.00747681,0.00866699,0.00842285,0.00845337,0.00863647,0.00802612,0.00656128,0.00726318,0.00717163,0.0071106,0.00668335,0.00817871,0.00836182,0.00921631,0.00866699,0.0093689,0.00997925,0.0107117,0.00933838,0.00787354,0.00683594,0.00457764,0.00350952,0.00146484,-0.000640869,-0.00128174,-0.00219727,-0.00219727,-0.00311279,-0.00494385,-0.0045166,-0.00534058,-0.00534058,-0.00656128,-0.00765991,-0.00738525,-0.00646973,-0.00521851,-0.00683594,-0.00747681,-0.00793457,-0.00646973,-0.00701904,-0.00906372,-0.0104675,-0.0121765,-0.0114136,-0.0128784,-0.0144958,-0.0154114,-0.0153198,-0.0153503,-0.0149841,-0.0149841,-0.0142212,-0.0129395,-0.0107727,-0.0116272,-0.0115967,-0.0117493,-0.0132141,-0.0130005,-0.0126038,-0.0121765,-0.0126038,-0.013031,-0.0128174,-0.0128784,-0.0128174,-0.0133667,-0.0134277,-0.0151978,-0.0158997,-0.0164795,-0.0184326,-0.0189209,-0.0205383,-0.0220947,-0.0220032,-0.0230713,-0.023407,-0.0229492,-0.0230103,-0.0224609,-0.019928,-0.0177917,-0.0171814,-0.0167542,-0.0154114,-0.0139465,-0.0135803,-0.0127258,-0.013855,-0.0144043,-0.0139465,-0.0140076,-0.013855,-0.0146484,-0.0176697,-0.0194092,-0.020752,-0.022644,-0.0224609,-0.0231323,-0.0238647,-0.0232849,-0.0211792,-0.01828,-0.0160217,-0.0131531,-0.0115356,-0.00765991,-0.00344849,-0.000976562,0.00106812,0.00216675,0.00296021,0.00177002,0.00167847,-0.000366211,-0.00161743,-0.00473022,-0.00836182,-0.0104675,-0.0128174,-0.0137939,-0.015564,-0.0148315,-0.0134277,-0.0126038,-0.0107727,-0.00817871,-0.0038147,-0.00106812,-0.000274658,-0.000335693,0.00128174,0.00323486,0.00494385,0.00408936,0.00241089,0.00238037,0.00317383,0.00253296,0.0017395,0.00204468,0.00335693,0.00564575,0.00723267,0.00872803,0.0104065,0.0141907,0.0167542,0.0201721,0.0211182,0.0227966,0.023407,0.0254517,0.0262451,0.0258179,0.0246887,0.0239258,0.0230103,0.0212402,0.0205994,0.0189209,0.0192871,0.0174561,0.0172424,0.0171509,0.0178833,0.0187683,0.0198975,0.0203247,0.0215454,0.0217896,0.0216064,0.0216675,0.0223694,0.0227051,0.0230103,0.0211182,0.0195618,0.0184326,0.0178528,0.0169678,0.0170288,0.0180054,0.018219,0.0190735,0.019928,0.0201111,0.0202637,0.020874,0.0231323,0.0235596,0.0245361,0.0236206,0.022522,0.020813,0.0194702,0.0179443,0.0175781,0.0170898,0.0154114,0.0141296,0.0127258,0.0118713,0.0114746,0.0111694,0.0119629,0.0123901,0.0134277,0.0137024,0.0140076,0.0140076,0.0147705,0.0153198,0.0151978,0.0148621,0.0153503,0.0160217,0.017395,0.0173645,0.0167236,0.0166016,0.0163269,0.0153503,0.013855,0.0137939,0.0135803,0.0127869,0.0113831,0.0106201,0.00949097,0.00775146,0.00689697,0.00463867,0.00393677,0.00357056,0.0032959,0.00308228,0.0022583,0.0015564,0.000152588,-0.00195312,-0.00506592,-0.00808716,-0.00991821,-0.0103455,-0.013855,-0.0164795,-0.0195618,-0.0198364,-0.0203247,-0.0205383,-0.0211182,-0.02005,-0.0206299,-0.020813,-0.0212402,-0.0209656,-0.0220947,-0.0230103,-0.0227356,-0.0230103,-0.0256653,-0.0292664,-0.03125,-0.0307312,-0.0285645,-0.0292664,-0.0275574,-0.0258789,-0.0262451,-0.0274353,-0.029541,-0.030304,-0.0292664,-0.0281372,-0.0282898,-0.0302429,-0.0309448,-0.0310974,-0.0320129,-0.0348816,-0.0372314,-0.0406799,-0.0421448,-0.0411682,-0.0422974,-0.0439148,-0.0467834,-0.0480347,-0.0462952,-0.0450745,-0.0460815,-0.0489807,-0.0531006,-0.0549316,-0.0559387,-0.0588989,-0.0630188,-0.0653381,-0.0674133,-0.0701904,-0.0747681,-0.0781555,-0.0806274,-0.081604,-0.0834961,-0.0847168,-0.0851135,-0.0860901,-0.0856018,-0.0829468,-0.07547,-0.0650635,-0.0544434,-0.0423584,-0.0285034,-0.0133057,0.00323486,0.0202637,0.0332642,0.0422058,0.0485535,0.0524902,0.0566406,0.0580444,0.056488,0.0512695,0.0440369,0.0341187,0.0257568,0.0193481,0.0160522,0.0171814,0.0185852,0.0198364,0.0246277,0.0298157,0.0389099,0.0506592,0.0600586,0.067749,0.0704041,0.0732422,0.0751343,0.0762634,0.0763855,0.074585,0.0713501,0.0670471,0.0620422,0.0592957,0.0587463,0.0608521,0.0648804,0.0690308,0.0714111,0.0757751,0.0820923,0.0909729,0.0978699,0.100586,0.100891,0.0977173,0.0938416,0.0897827,0.0835876,0.0741272,0.0625916,0.0519714,0.0415039,0.0313721,0.0231628,0.0172424,0.0127869,0.00845337,0.0038147,0.000274658,-0.00128174,-0.00161743,0.000366211,0.00146484,0.000793457,-0.000640869,-0.00167847,-0.000854492,-0.00012207,0.000701904,0.000335693,0.000427246,0.00012207,0.000152588,0.00161743,0.00427246,0.00842285,0.0126648,0.015564,0.0183716,0.0211182,0.0247803,0.0296326,0.0339661,0.0358887,0.0367737,0.036377,0.0353699,0.0346985,0.0330811,0.0330505,0.0296326,0.0247803,0.0191956,0.0139465,0.00802612,0.00323486,-0.000976562,-0.00561523,-0.0108948,-0.0172424,-0.0217896,-0.0237122,-0.0238647,-0.0229187,-0.022583,-0.0229187,-0.0247498,-0.0244141,-0.0224609,-0.0184326,-0.0163879,-0.0162354,-0.0176697,-0.0192871,-0.0192566,-0.0176392,-0.0168152,-0.0162659,-0.0165405,-0.0173035,-0.0194702,-0.0210876,-0.0217896,-0.0224609,-0.0237732,-0.0270691,-0.0317383,-0.0361023,-0.0388184,-0.040741,-0.0419922,-0.0458069,-0.0500183,-0.0535889,-0.0568542,-0.0583191,-0.0592346,-0.0592957,-0.0603027,-0.06073,-0.0630188,-0.0636597,-0.0635376,-0.0624084,-0.0618286,-0.0621338,-0.0646362,-0.0664978,-0.068512,-0.0686035,-0.0688782,-0.0709229,-0.0743713,-0.0794067,-0.0837708,-0.0870972,-0.0915222,-0.0960083,-0.1008,-0.106842,-0.110657,-0.116211,-0.122131,-0.127747,-0.133606,-0.137268,-0.138092,-0.137329,-0.137329,-0.136536,-0.132904,-0.12207,-0.10025,-0.0737915,-0.04953,-0.0274963,-0.00814819,0.013916,0.0406494,0.0690918,0.0896301,0.101288,0.10202,0.0958252,0.0914001,0.0899658,0.0881653,0.0846863,0.0700073,0.0514832,0.0361023,0.0258789,0.0280151,0.0372925,0.0431213,0.0464172,0.0483398,0.0535889,0.0676575,0.0838013,0.0978699,0.106354,0.107544,0.103333,0.101074,0.0994873,0.100891,0.102936,0.1008,0.0942078,0.0882874,0.0877075,0.0930176,0.104523,0.114594,0.119659,0.121857,0.121979,0.128174,0.137238,0.144409,0.14444,0.137177,0.123535,0.109161,0.09552,0.0831604,0.0701294,0.0521851,0.0308228,0.00878906,-0.00808716,-0.018158,-0.0224304,-0.0261841,-0.0328674,-0.0398254,-0.0455017,-0.0453796,-0.0432129,-0.0400391,-0.0393982,-0.0405273,-0.0417175,-0.0430603,-0.043457,-0.0420837,-0.0419312,-0.0413818,-0.0405884,-0.0390625,-0.0358887,-0.0300903,-0.0213928,-0.0107727,-0.000701904,0.00933838,0.0178833,0.0264587,0.0357971,0.0443115,0.0519104,0.0559387,0.058197,0.0577698,0.0542908,0.0524292,0.0489807,0.0471191,0.0416565,0.0331421,0.0228577,0.0142822,0.00668335,0.00216675,-0.00302124,-0.00878906,-0.0149841,-0.020752,-0.024353,-0.0258179,-0.0249634,-0.0223694,-0.0204163,-0.0187073,-0.0163269,-0.0136414,-0.00991821,-0.00296021,0.00393677,0.00894165,0.0120239,0.0133057,0.0157776,0.0191956,0.0216064,0.0220032,0.0206909,0.0177307,0.0130005,0.00738525,0.00372314,0.000366211,-0.00378418,-0.0108337,-0.0187073,-0.0264587,-0.0310974,-0.0353088,-0.0389099,-0.0455322,-0.0535889,-0.0613403,-0.0666199,-0.0693665,-0.0718384,-0.0762024,-0.0808411,-0.0851746,-0.0880737,-0.0897827,-0.0906677,-0.0915833,-0.0914001,-0.0930176,-0.0948181,-0.0974426,-0.0976562,-0.0977173,-0.0991211,-0.102356,-0.1073,-0.113983,-0.119537,-0.125153,-0.130829,-0.13739,-0.143707,-0.151886,-0.158783,-0.165314,-0.167908,-0.166595,-0.163788,-0.160309,-0.155884,-0.146545,-0.126709,-0.0968018,-0.0653687,-0.0390625,-0.0165405,0.00241089,0.0270996,0.0553589,0.081665,0.0984802,0.103699,0.0970154,0.0888367,0.0843506,0.081604,0.07724,0.0668945,0.0481873,0.0308228,0.0192871,0.0192871,0.0310059,0.0430603,0.052002,0.0576172,0.0645142,0.0782471,0.0976257,0.115845,0.128662,0.13324,0.131195,0.126282,0.122986,0.12085,0.11853,0.11377,0.10434,0.0949707,0.0874939,0.0865479,0.0927124,0.103424,0.113953,0.118622,0.120148,0.124939,0.134033,0.145569,0.152374,0.150757,0.139771,0.124176,0.107788,0.0947571,0.0814514,0.0644226,0.0410767,0.015686,-0.00723267,-0.0218201,-0.0301819,-0.0362244,-0.0426331,-0.0497437,-0.0556335,-0.0585327,-0.0561218,-0.0522156,-0.0486755,-0.0465698,-0.0472717,-0.0491638,-0.0515747,-0.053894,-0.0548706,-0.0551453,-0.056366,-0.0586853,-0.0608521,-0.0611877,-0.056366,-0.0464172,-0.0370789,-0.0274963,-0.019989,-0.0128174,-0.00421143,0.00570679,0.015686,0.0253296,0.0315247,0.033844,0.0339661,0.0344849,0.035675,0.0358582,0.0342712,0.0298157,0.0231628,0.0160522,0.00979614,0.00613403,0.00317383,6.10352e-05,-0.00216675,-0.00491333,-0.00793457,-0.00921631,-0.00888062,-0.00683594,-0.00268555,0.000152588,0.00119019,0.00238037,0.00479126,0.0114746,0.0186462,0.0249023,0.027771,0.0286865,0.0292664,0.0298157,0.0332642,0.0353699,0.0358582,0.0329285,0.0289917,0.0259399,0.0238342,0.0220032,0.0197144,0.0161743,0.00888062,0.00308228,-0.0032959,-0.00753784,-0.0111694,-0.0170288,-0.0232239,-0.03125,-0.0388184,-0.0460205,-0.052002,-0.0575256,-0.0626221,-0.0679016,-0.0726013,-0.07724,-0.079834,-0.0820312,-0.0823669,-0.0823059,-0.0821838,-0.0818176,-0.0821533,-0.0826721,-0.0836487,-0.0846252,-0.0876465,-0.0916748,-0.0975647,-0.103699,-0.110596,-0.118896,-0.12619,-0.133942,-0.141907,-0.150482,-0.158722,-0.166565,-0.171082,-0.169769,-0.1651,-0.160095,-0.15329,-0.140961,-0.121613,-0.0956116,-0.069519,-0.043457,-0.020813,-0.000915527,0.022522,0.0460205,0.0657654,0.0812378,0.0876465,0.086731,0.0832214,0.0773926,0.0728149,0.0668945,0.0557861,0.0429077,0.0303345,0.0217285,0.0229492,0.0307312,0.0386963,0.0466309,0.0521851,0.0643616,0.0785217,0.0934753,0.107361,0.119019,0.126343,0.126984,0.127625,0.126556,0.124298,0.119385,0.113556,0.105927,0.0966492,0.0881348,0.0835876,0.0846252,0.0862427,0.0879517,0.0920715,0.097229,0.103851,0.112427,0.121765,0.128052,0.130341,0.128448,0.123199,0.115601,0.106628,0.0953979,0.0810547,0.060791,0.0404358,0.0220337,0.00527954,-0.00921631,-0.0223694,-0.0361023,-0.047699,-0.0562744,-0.0618896,-0.0625305,-0.0627441,-0.0622559,-0.0601501,-0.0579834,-0.0561218,-0.0542908,-0.0524292,-0.0510559,-0.0497437,-0.049469,-0.0492249,-0.0486755,-0.0489502,-0.0469055,-0.0442505,-0.0422668,-0.039032,-0.0343323,-0.029541,-0.025116,-0.0186462,-0.0119019,-0.00491333,0.000854492,0.00704956,0.0124512,0.0159607,0.0198975,0.0222168,0.0223694,0.0211182,0.0184937,0.0152588,0.0116272,0.00726318,0.00280762,-0.00119019,-0.00613403,-0.0110474,-0.0147705,-0.0175171,-0.0187073,-0.0183716,-0.0171814,-0.0161743,-0.0144348,-0.0101929,-0.00463867,0.00241089,0.00796509,0.0132446,0.017395,0.0206299,0.0244751,0.0283508,0.0315247,0.0333557,0.0325623,0.0317993,0.0298462,0.0280151,0.0265198,0.0247498,0.0218201,0.018219,0.0149841,0.0120239,0.0101318,0.00717163,0.00427246,0.000335693,-0.00491333,-0.00964355,-0.013855,-0.0194092,-0.0247498,-0.0310974,-0.0377808,-0.0450745,-0.0522766,-0.0567017,-0.0596008,-0.0618286,-0.0621948,-0.0610657,-0.0606995,-0.0595703,-0.058197,-0.0558472,-0.0531006,-0.0514221,-0.0489502,-0.0474243,-0.0487671,-0.0513611,-0.0516357,-0.053833,-0.0583191,-0.0646667,-0.0688782,-0.0726624,-0.0776672,-0.0844116,-0.0911865,-0.0966492,-0.0991821,-0.0996094,-0.0962219,-0.0906677,-0.0844116,-0.0766602,-0.068512,-0.0577393,-0.0438232,-0.028717,-0.0147705,-0.00280762,0.00814819,0.020874,0.03125,0.0377808,0.0410156,0.0424805,0.0411682,0.040802,0.0386353,0.0353088,0.0289917,0.0213013,0.0149841,0.00964355,0.00613403,0.00576782,0.00796509,0.0101929,0.0137329,0.0178528,0.0231628,0.0316467,0.0402222,0.0488281,0.0541687,0.0576782,0.0600891,0.0618286,0.0604248,0.0580444,0.054657,0.0499573,0.0437012,0.0363159,0.0310059,0.0275574,0.0254822,0.0242615,0.0241394,0.0252686,0.0278625,0.0334167,0.0403748,0.0465088,0.0524902,0.0578308,0.0629578,0.0666809,0.0683899,0.0686035,0.0664062,0.0621338,0.0544434,0.0473633,0.0386963,0.0289001,0.0194092,0.00985718,0.000549316,-0.00772095,-0.0137024,-0.0158997,-0.0187683,-0.0184326,-0.0188599,-0.0170288,-0.013092,-0.00814819,-0.00393677,0.00161743,0.00695801,0.0108337,0.0158997,0.0187073,0.0202637,0.0220032,0.0222473,0.0206299,0.01828,0.015625,0.0121155,0.00976562,0.00656128,0.00549316,0.0039978,0.00238037,0.00317383,0.00360107,0.00540161,0.00570679,0.00787354,0.009552,0.0121155,0.0141296,0.0145569,0.0155334,0.0151062,0.0128784,0.0103455,0.00717163,0.00366211,-0.000213623,-0.0039978,-0.00765991,-0.0118103,-0.0149231,-0.0178528,-0.0203247,-0.0213013,-0.0231323,-0.0231323,-0.0229187,-0.0220337,-0.0211792,-0.0194092,-0.0162354,-0.0105591,-0.00500488,0.00112915,0.00500488,0.00753784,0.0119019,0.0137024,0.0147095,0.0147095,0.0148315,0.0132446,0.0116882,0.0112,0.0106201,0.011322,0.0122375,0.0104065,0.0085144,0.00448608,0.000488281,-0.00259399,-0.00436401,-0.00793457,-0.00997925,-0.011261,-0.0118713,-0.013031,-0.012085,-0.0107117,-0.00942993,-0.00619507,-0.00674438,-0.00598145,-0.00543213,-0.00527954,-0.00469971,-0.00387573,-0.00469971,-0.00634766,-0.00772095,-0.00997925,-0.0114746,-0.013855,-0.0161133,-0.0179443,-0.0189209,-0.0229187,-0.0239868,-0.0259399,-0.0273132,-0.0274963,-0.0286255,-0.0284119,-0.0279236,-0.0273132,-0.0246277,-0.0237122,-0.0218201,-0.0201721,-0.0191345,-0.0178528,-0.0164795,-0.0151978,-0.0176392,-0.0161133,-0.0171814,-0.0187988,-0.0190735,-0.0213318,-0.0222168,-0.0221558,-0.0236206,-0.0240784,-0.0239258,-0.0243225,-0.0241394,-0.022644,-0.0217896,-0.0190735,-0.0153503,-0.0133667,-0.00976562,-0.0055542,-0.00323486,-0.000152588,0.0017395,0.00204468,0.00238037,0.00216675,0.000915527,-0.000427246,-0.0015564,-0.00427246,-0.00534058,-0.0062561,-0.0078125,-0.00949097,-0.0100403,-0.0113831,-0.0104065,-0.0102844,-0.0101929,-0.00906372,-0.00775146,-0.00610352,-0.00344849,-0.00195312,0.000152588,0.00238037,0.00360107,0.00534058,0.00619507,0.00668335,0.00704956,0.00753784,0.0062561,0.00570679,0.00408936,0.00357056,0.00296021,0.00296021,0.00125122,0.000640869,0.000152588,0.000579834,0.000152588,0.000915527,0.000701904,0.000152588,0.00146484,0.00195312,0.00241089,0.00357056,0.00415039,0.00512695,0.00473022,0.00631714,0.00561523,0.00656128,0.00732422,0.00775146,0.00772095,0.00680542,0.00674438,0.00646973,0.00674438,0.00732422,0.00680542,0.00772095,0.00787354,0.00900269,0.0104065,0.0122375,0.0132446,0.0151062,0.0160522,0.0168762,0.0174561,0.0188599,0.0203857,0.0209045,0.0206299,0.0197144,0.0187073,0.0179443,0.0168152,0.0164795,0.0151978,0.0129395,0.0114746,0.0107117,0.0103455,0.0104065,0.0106201,0.0100403,0.00985718,0.00921631,0.00949097,0.00909424,0.00997925,0.0093689,0.00964355,0.00830078,0.00793457,0.00680542,0.0062561,0.00695801,0.00549316,0.00527954,0.00427246,0.00338745,0.00415039,0.00421143,0.00469971,0.00393677,0.0039978,0.00378418,0.0038147,0.00323486,0.00247192,0.00134277,0.000579834,-0.000427246,-0.00210571,-0.00308228,-0.00473022,-0.00656128,-0.0071106,-0.00668335,-0.00888062,-0.00836182,-0.00921631,-0.00942993,-0.00817871,-0.00814819,-0.00823975,-0.00793457,-0.00775146,-0.00704956,-0.00653076,-0.00564575,-0.00494385,-0.00479126,-0.00506592,-0.00518799,-0.00543213,-0.00570679,-0.00534058,-0.00646973,-0.00656128,-0.00732422,-0.00866699,-0.00814819,-0.00796509,-0.00808716,-0.00808716,-0.00866699,-0.00814819,-0.00772095,-0.00717163,-0.00588989,-0.00485229,-0.00338745,-0.00210571,-0.000640869,0.000427246,0.00274658,0.00350952,0.00534058,0.00668335,0.00775146,0.00814819,0.0088501,0.00866699,0.00894165,0.00872803,0.00888062,0.00726318,0.00759888,0.00646973,0.00613403,0.00604248,0.00479126,0.00350952,0.00265503,0.00238037,0.00204468,0.00231934,0.00128174,0.0010376,0.000640869,-0.000213623,-0.000213623,-0.000701904,-0.00119019,-0.00134277,-0.00128174,-0.00274658,-0.00357056,-0.00500488,-0.00518799,-0.00543213,-0.00540161,-0.00680542,-0.00717163,-0.00814819,-0.00836182,-0.00759888,-0.00814819,-0.00845337,-0.00836182,-0.00927734,-0.00921631,-0.00915527,-0.0104065,-0.010498,-0.0104065,-0.0116272,-0.0119629,-0.0123291,-0.0136414,-0.0132141,-0.0133057,-0.013916,-0.0139465,-0.0135193,-0.013916,-0.0124512,-0.0126038,-0.0123291,-0.0117493,-0.0106201,-0.0112,-0.0104065,-0.0102844,-0.00979614,-0.00894165,-0.00845337,-0.00878906,-0.00958252,-0.0103455,-0.0105591,-0.0102844,-0.00949097,-0.00894165,-0.00872803,-0.00836182,-0.00738525,-0.00646973,-0.00561523,-0.00421143,-0.00335693,-0.00259399,-0.00125122,-0.00161743,-0.000549316,-0.000213623,0.000213623,0.000762939,0.000640869,-0.000579834,-0.0010376,-0.00112915,-0.0017395,-0.00268555,-0.00350952,-0.00448608,-0.00473022,-0.00366211,-0.00372314,-0.00238037,-0.00198364,-0.00177002,-0.000488281,0.00106812,0.0022583,0.00344849,0.00442505,0.00570679,0.00561523,0.00598145,0.00613403,0.00674438,0.00701904,0.00759888,0.00653076,0.00689697,0.0062561,0.00634766,0.0062561,0.00695801,0.00717163,0.0071106,0.00759888,0.00814819,0.00845337,0.00915527,0.00878906,0.0088501,0.00933838,0.00906372,0.00915527,0.00878906,0.00753784,0.00738525,0.00717163,0.00683594,0.00640869,0.00646973,0.00576782,0.00634766,0.00631714,0.00704956,0.00680542,0.00738525,0.00842285,0.00921631,0.00976562,0.00958252,0.00979614,0.0100708,0.0101929,0.0100403,0.00949097,0.00933838,0.00888062,0.00775146,0.00747681,0.00668335,0.00500488,0.00518799,0.00415039,0.00436401,0.00512695,0.00512695,0.00506592,0.00592041,0.00610352,0.00753784,0.00814819,0.0085144,0.00845337,0.00915527,0.0088501,0.00921631,0.00927734,0.00866699,0.00836182,0.00683594,0.00619507,0.00588989,0.00598145,0.00646973,0.00747681,0.00695801,0.00604248,0.00469971,0.00506592,0.0055542,0.00592041,0.00518799,0.00448608,0.00469971,0.00491333,0.00408936,0.00491333,0.00689697,0.00704956,0.00689697,0.00576782,0.00521851,0.00527954,0.00576782,0.00564575,0.00473022,0.00479126,0.0039978,0.00408936,0.00430298,0.00500488,0.00540161,0.00695801,0.00793457,0.00872803,0.00704956,0.00582886,0.00430298,0.00280762,0.00204468,0.000427246,-0.00415039,-0.00704956,-0.00866699,-0.0122375,-0.013916,-0.0160217,-0.0178833,-0.0189209,-0.0186462,-0.0184937,-0.0187073,-0.0174561,-0.0163269,-0.0132141,-0.0116272,-0.00900269,-0.00759888,-0.0071106,-0.0055542,-0.00534058,-0.00543213,-0.00570679,-0.00747681,-0.00985718,-0.0118713,-0.0150452,-0.0178833,-0.0204163,-0.0232239,-0.0258789,-0.0280762,-0.0314331,-0.0348206,-0.0374451,-0.0387573,-0.0389099,-0.0387573,-0.0389099,-0.0386047,-0.0371399,-0.0357971,-0.0332642,-0.0303955,-0.0256653,-0.020752,-0.0161133,-0.0109863,-0.00653076,-0.0032959,0.000915527,0.00430298,0.00619507,0.00695801,0.00582886,0.00357056,0.00183105,-6.10352e-05,-0.00296021,-0.00506592,-0.00796509,-0.00970459,-0.0106201,-0.0113831,-0.0107117,-0.0104675,-0.00927734,-0.00747681,-0.00598145,-0.00491333,-0.00335693,-0.00195312,-0.000915527,-0.000793457,-0.00134277,-0.00265503,-0.00323486,-0.0045166,-0.00576782,-0.00738525,-0.00787354,-0.00793457,-0.00634766,-0.00521851,-0.0038147,-0.000274658,0.00296021,0.00726318,0.0106812,0.0141296,0.018158,0.0216675,0.0255432,0.0289001,0.0305176,0.0317383,0.0327759,0.0332642,0.0320129,0.0315247,0.0291138,0.0275574,0.0256653,0.0234985,0.0213318,0.0197754,0.0184326,0.0191345,0.0180969,0.0180664,0.0169373,0.0165405,0.0163879,0.0168762,0.0162659,0.0159607,0.015625,0.0150452,0.0147705,0.0140076,0.0128784,0.0122375,0.0111084,0.0101929,0.00949097,0.00921631,0.0093689,0.00970459,0.0105591,0.011261,0.0113831,0.0133667,0.0148621,0.0176697,0.0197754,0.0209045,0.0215149,0.0227051,0.0236206,0.0246277,0.025116,0.0242004,0.0237122,0.0220032,0.020813,0.018219,0.0157776,0.013031,0.00933838,0.00582886,0.00177002,-0.00140381,-0.00372314,-0.00473022,-0.00631714,-0.00726318,-0.00921631,-0.00866699,-0.00775146,-0.00582886,-0.00408936,-0.00378418,-0.00338745,-0.00161743,0.000152588,0.00204468,0.00219727,0.00289917,0.00219727,0.00280762,0.00317383,0.00268555,0.00335693,0.00286865,0.00308228,0.00231934,0.000335693,-0.000762939,-0.000793457,-0.000549316,-0.00161743,-0.00241089,-0.00259399,-0.00146484,-0.0017395,-0.00167847,-0.00167847,-0.0017395,-0.00259399,-0.00344849,-0.00469971,-0.00561523,-0.00704956,-0.00888062,-0.0113831,-0.0133667,-0.0160522,-0.0176392,-0.0194702,-0.0214539,-0.0254517,-0.0294189,-0.0339661,-0.0365906,-0.040802,-0.0447998,-0.0486145,-0.0509338,-0.0559998,-0.0609741,-0.0655823,-0.0691528,-0.0715637,-0.0736389,-0.0756226,-0.0775757,-0.0802612,-0.0821533,-0.0834351,-0.0844116,-0.0844727,-0.0823669,-0.0792847,-0.0755005,-0.0707703,-0.0631714,-0.0519714,-0.0385437,-0.0249634,-0.0118103,0.00119019,0.0142212,0.0256958,0.0349731,0.0410767,0.043457,0.0426331,0.0417786,0.0385437,0.0351868,0.0296021,0.0229492,0.0168762,0.0114746,0.00906372,0.00802612,0.00796509,0.0104065,0.0129395,0.0170898,0.0213318,0.0260925,0.0319214,0.0362854,0.0397644,0.0399475,0.0403748,0.0393066,0.0376282,0.0358887,0.0339966,0.0319519,0.0303345,0.0303955,0.0314636,0.0348816,0.0386047,0.0439148,0.0493164,0.0550232,0.0599976,0.0649414,0.069519,0.0736694,0.076416,0.07724,0.0760498,0.0728149,0.0697021,0.0648499,0.0579529,0.049469,0.0413513,0.0319519,0.0240784,0.0165405,0.00888062,0.00259399,-0.00436401,-0.0108337,-0.0166626,-0.0222473,-0.0276489,-0.0319519,-0.0361633,-0.0388489,-0.040802,-0.0415649,-0.0417175,-0.040863,-0.0389709,-0.0372009,-0.0341797,-0.0308838,-0.0272827,-0.0233459,-0.018219,-0.0134888,-0.00894165,-0.00436401,-0.000854492,0.00289917,0.0071106,0.0116882,0.0153198,0.0189209,0.0215454,0.0246277,0.0276489,0.0310364,0.0344543,0.0371399,0.0372314,0.0378418,0.0369873,0.0354614,0.0317993,0.0282898,0.0218201,0.0144043,0.00653076,-0.00012207,-0.00631714,-0.0126648,-0.0172424,-0.0210266,-0.0232239,-0.0246277,-0.0238342,-0.0231323,-0.0210876,-0.0178833,-0.0137329,-0.00991821,-0.00512695,-0.00140381,0.00311279,0.00592041,0.00845337,0.0112,0.0115356,0.0119019,0.0121765,0.0127258,0.013031,0.0137329,0.0137329,0.0141907,0.0137939,0.0124512,0.011322,0.00872803,0.00512695,-0.000152588,-0.0062561,-0.0133057,-0.0214539,-0.0300293,-0.0384216,-0.0466309,-0.0549927,-0.0632629,-0.0707092,-0.0771179,-0.0828552,-0.0874329,-0.0915833,-0.0964355,-0.0996094,-0.102234,-0.105255,-0.107208,-0.110931,-0.114532,-0.116211,-0.119171,-0.119446,-0.119232,-0.119507,-0.117676,-0.113251,-0.103699,-0.0921021,-0.0752563,-0.0559387,-0.0348206,-0.0144043,0.00753784,0.029541,0.0500183,0.0688782,0.0826416,0.0916443,0.0958252,0.09552,0.094635,0.0907593,0.0843506,0.0749817,0.0652771,0.054718,0.0461426,0.0399475,0.0369263,0.0357361,0.035675,0.0375061,0.0398254,0.0426941,0.0472107,0.052002,0.0543213,0.0545044,0.0527039,0.04953,0.0467224,0.0441895,0.0422974,0.0397339,0.0376892,0.0368042,0.0396729,0.0437012,0.0512085,0.0579529,0.0658569,0.0735779,0.0803223,0.0870972,0.0916748,0.0959473,0.0977173,0.0962219,0.093689,0.0875854,0.0806885,0.0719604,0.0623169,0.0519104,0.0405273,0.0289307,0.0178833,0.00808716,-0.00128174,-0.0104675,-0.0191345,-0.0292664,-0.0383301,-0.0484009,-0.0572815,-0.0660706,-0.0734253,-0.0805359,-0.0863037,-0.0906982,-0.0916443,-0.0922241,-0.0900269,-0.0863953,-0.0823975,-0.0762024,-0.0690918,-0.060791,-0.0516357,-0.0429688,-0.0336304,-0.0256958,-0.0177917,-0.00942993,-0.00311279,0.00338745,0.00888062,0.0139465,0.01828,0.0227966,0.0272827,0.0329285,0.0377808,0.0421448,0.0450745,0.0469971,0.0488892,0.0493774,0.0492554,0.0457153,0.0405273,0.0330505,0.0260925,0.018219,0.0110474,0.00366211,-0.00274658,-0.00970459,-0.0144043,-0.0177307,-0.0187073,-0.0190125,-0.0180054,-0.0146484,-0.0123291,-0.00765991,-0.00247192,0.00219727,0.00701904,0.0116272,0.0158386,0.0183411,0.019989,0.0206909,0.0215149,0.0220947,0.0228577,0.0238342,0.0232849,0.0220032,0.0213013,0.019989,0.0180664,0.0150452,0.00888062,0.00134277,-0.00732422,-0.0167236,-0.0257568,-0.035675,-0.0473328,-0.0580444,-0.0700073,-0.0802612,-0.0891418,-0.0968628,-0.10376,-0.110321,-0.115997,-0.120148,-0.123322,-0.125519,-0.126068,-0.127686,-0.12915,-0.129791,-0.129944,-0.130005,-0.128387,-0.124878,-0.121429,-0.113342,-0.102722,-0.0864563,-0.0679016,-0.04776,-0.0262451,-0.00415039,0.0168762,0.0393372,0.0592957,0.0749817,0.0855408,0.0907593,0.0930786,0.0927734,0.0909424,0.0852661,0.0775757,0.0666809,0.056427,0.0480652,0.0428467,0.0396118,0.0383301,0.0385437,0.0396729,0.0429993,0.0485535,0.0549316,0.0602722,0.0632324,0.0648804,0.0640259,0.0614014,0.0596619,0.0563354,0.052887,0.0486755,0.0452881,0.0432739,0.043335,0.04599,0.0509338,0.0555115,0.0632324,0.0697937,0.0769653,0.0837097,0.0908813,0.0965271,0.100677,0.102142,0.100159,0.0960999,0.0902405,0.0828552,0.0740662,0.0628967,0.0512085,0.0385437,0.0272827,0.0164795,0.00683594,-0.00265503,-0.013092,-0.0227966,-0.0316467,-0.0397339,-0.0483398,-0.0555725,-0.0624084,-0.0693054,-0.0747986,-0.0789185,-0.0814514,-0.0834351,-0.0832825,-0.0823059,-0.0799255,-0.0766907,-0.0716858,-0.0652771,-0.0586548,-0.0510559,-0.0431824,-0.0360107,-0.029541,-0.0233459,-0.0172424,-0.0115967,-0.00610352,-0.000762939,0.00302124,0.00640869,0.00964355,0.0136414,0.0179443,0.0229187,0.0275574,0.0309448,0.0327148,0.033783,0.0347595,0.0350952,0.0335388,0.03125,0.0259399,0.0198364,0.0140076,0.00830078,0.00286865,-0.0017395,-0.00695801,-0.011322,-0.0154114,-0.0178528,-0.0176697,-0.0171509,-0.0140686,-0.0102539,-0.00772095,-0.0038147,0.000488281,0.00463867,0.00970459,0.013092,0.0147705,0.0161743,0.0158997,0.0170898,0.0192871,0.0197754,0.0198975,0.0190125,0.0171509,0.0168762,0.0151978,0.0137939,0.0100708,0.00540161,-0.000854492,-0.00823975,-0.0158997,-0.0234375,-0.0330505,-0.0432739,-0.0534668,-0.0643616,-0.0730896,-0.0824585,-0.0908203,-0.0985718,-0.105042,-0.10968,-0.113617,-0.116211,-0.118835,-0.11972,-0.119049,-0.117828,-0.117004,-0.115356,-0.113983,-0.111145,-0.104828,-0.0944824,-0.0832825,-0.0704346,-0.0572815,-0.0418701,-0.0250549,-0.00701904,0.0119019,0.0285645,0.0406494,0.0495911,0.0569763,0.0628967,0.0686646,0.0704956,0.0689392,0.0628357,0.0567627,0.0500793,0.04599,0.042572,0.0393372,0.0362244,0.0333252,0.0335388,0.0351868,0.0398254,0.0431824,0.0467834,0.0487671,0.0501404,0.0496521,0.0499573,0.0498657,0.0483398,0.046936,0.0438843,0.0406799,0.0388184,0.0393982,0.0411682,0.0445251,0.0472107,0.0522156,0.056366,0.0617065,0.0688171,0.0755615,0.0820312,0.0864563,0.0893555,0.0904846,0.0904541,0.0889893,0.0858154,0.0805664,0.0724487,0.0644226,0.0549927,0.0473633,0.0388184,0.0308228,0.0218811,0.013092,0.00506592,-0.00241089,-0.009552,-0.0167542,-0.0231323,-0.0299072,-0.035614,-0.0404663,-0.04599,-0.0488892,-0.0524292,-0.054718,-0.056488,-0.0577698,-0.0577698,-0.0571899,-0.0541687,-0.0509338,-0.0455933,-0.040863,-0.035614,-0.0305176,-0.0246887,-0.0187988,-0.0127258,-0.00689697,-0.00265503,0.00112915,0.00427246,0.00817871,0.0112,0.013092,0.0154724,0.0159607,0.0160217,0.0162354,0.0161743,0.0149841,0.0134888,0.0122986,0.0108337,0.00842285,0.00500488,0.00195312,-0.000579834,-0.00335693,-0.00543213,-0.00802612,-0.0119019,-0.0151062,-0.0170288,-0.0179443,-0.0187073,-0.0192871,-0.0196228,-0.0189819,-0.0174561,-0.0160522,-0.013092,-0.0111694,-0.00878906,-0.00640869,-0.00415039,-0.00231934,-0.000152588,0.00161743,0.00421143,0.00512695,0.00634766,0.00653076,0.00753784,0.00765991,0.00668335,0.0055542,0.00323486,0,-0.0039978,-0.00863647,-0.0143433,-0.0210266,-0.0273132,-0.0344543,-0.0417786,-0.0489807,-0.0556641,-0.0614014,-0.0664062,-0.0713196,-0.0756836,-0.0785828,-0.0794983,-0.0788574,-0.0782166,-0.0776672,-0.0769043,-0.0745544,-0.0704956,-0.065918,-0.0596619,-0.0536804,-0.0474243,-0.0403137,-0.0322266,-0.0231628,-0.0141296,-0.00549316,0.00253296,0.00900269,0.0143433,0.0195618,0.0237122,0.0284729,0.0317078,0.0328369,0.0329895,0.032135,0.0323792,0.032135,0.0322266,0.0306702,0.0302429,0.0280762,0.0278625,0.0266724,0.0271606,0.0265808,0.0260315,0.0240784,0.0224609,0.0203857,0.0194702,0.0175171,0.0165405,0.0142822,0.0119019,0.00985718,0.00900269,0.00949097,0.00985718,0.0111084,0.0125122,0.0151062,0.0178833,0.0210266,0.0250244,0.0287781,0.0331421,0.0375671,0.040802,0.0441895,0.0465088,0.0486755,0.0496521,0.0499573,0.0489502,0.0472107,0.0445251,0.0417786,0.0396118,0.0361023,0.0326538,0.0296936,0.0257568,0.0228577,0.0194092,0.0160522,0.0129395,0.00976562,0.00689697,0.00393677,0.0015564,-0.000427246,-0.00280762,-0.00430298,-0.00634766,-0.00808716,-0.00915527,-0.00985718,-0.010498,-0.0106201,-0.0109863,-0.0101318,-0.00964355,-0.00836182,-0.00662231,-0.00485229,-0.00268555,-0.000274658,0.00274658,0.00479126,0.00863647,0.0108337,0.0140686,0.016449,0.0184937,0.0195007,0.0202637,0.0202026,0.0194092,0.01828,0.015564,0.0135803,0.0100403,0.0071106,0.0038147,0.000274658,-0.00265503,-0.00570679,-0.00863647,-0.0115356,-0.0142212,-0.0162659,-0.0184937,-0.0195618,-0.0213318,-0.0228577,-0.0237732,-0.0249023,-0.0258789,-0.0256958,-0.026947,-0.0266724,-0.0263977,-0.0253906,-0.0235596,-0.0211182,-0.0185547,-0.0160522,-0.0123901,-0.009552,-0.00640869,-0.00296021,-0.000579834,0.00247192,0.00436401,0.00683594,0.00772095,0.00909424,0.00906372,0.00857544,0.0071106,0.00534058,0.00259399,0.00012207,-0.00317383,-0.00726318,-0.0111694,-0.0149231,-0.0184937,-0.0218811,-0.0252686,-0.0280151,-0.0308228,-0.0329895,-0.0343933,-0.0344543,-0.0346985,-0.0339661,-0.0327148,-0.0309448,-0.0289001,-0.0256653,-0.0218201,-0.0173645,-0.0127258,-0.00796509,-0.00387573,6.10352e-05,0.00335693,0.00613403,0.00808716,0.00866699,0.00802612,0.00772095,0.00662231,0.00518799,0.0038147,0.00189209,-0.000793457,-0.00253296,-0.00393677,-0.00549316,-0.00543213,-0.00631714,-0.00634766,-0.00701904,-0.00646973,-0.00668335,-0.00704956,-0.00759888,-0.00900269,-0.0112,-0.0125122,-0.0151367,-0.0163269,-0.0187988,-0.0206299,-0.0223694,-0.0240784,-0.0244751,-0.0246887,-0.0244141,-0.0229492,-0.0215149,-0.0180664,-0.0157776,-0.012085,-0.00863647,-0.00469971,-0.000976562,0.00408936,0.0085144,0.0122375,0.0151367,0.0187988,0.0210266,0.0238342,0.0256958,0.0270996,0.0272827,0.0282288,0.0274963,0.0281982,0.0275574,0.0273743,0.0263672,0.0259399,0.0246277,0.0236511,0.0229492,0.0219421,0.0215149,0.0202026,0.0203247,0.0189819,0.0191345,0.0177307,0.0176697,0.0172424,0.0164795,0.015686,0.0148315,0.013855,0.0125732,0.0121765,0.0107117,0.0104065,0.00857544,0.0085144,0.00753784,0.00732422,0.00747681,0.00842285,0.00888062,0.00997925,0.0114136,0.0131531,0.0149231,0.0165405,0.0183411,0.0194702,0.020752,0.0211792,0.0213013,0.0203247,0.0190125,0.0176392,0.0149841,0.0130005,0.00979614,0.00662231,0.00408936,0.000976562,-0.00125122,-0.00360107,-0.00604248,-0.00738525,-0.00878906,-0.00976562,-0.00976562,-0.0110474,-0.0108337,-0.011322,-0.0109863,-0.0101929,-0.0101318,-0.00933838,-0.00857544,-0.00759888,-0.00610352,-0.00491333,-0.00302124,-0.00177002,0.000152588,0.00167847,0.00378418,0.00527954,0.00765991,0.00878906,0.0104065,0.0107727,0.0108948,0.0107727,0.0101929,0.00866699,0.00814819,0.00653076,0.00393677,0.00317383,0.000854492,-0.00106812,-0.00317383,-0.00540161,-0.00726318,-0.00949097,-0.0114746,-0.0134888,-0.0158997,-0.0179443,-0.0197754,-0.0210266,-0.0218811,-0.0231323,-0.0243225,-0.0247803,-0.0248413,-0.0230713,-0.0224304,-0.0229187,-0.023407,-0.0231323,-0.0239258,-0.0222168,-0.0215149,-0.0202637,-0.0185547,-0.0177917,-0.018158,-0.0177917,-0.0187683,-0.0191345,-0.0187073,-0.0176392,-0.015625,-0.0137939,-0.0135193,-0.0134277,-0.0135803,-0.0140686,-0.0144958,-0.0151062,-0.0161133,-0.0168762,-0.0178528,-0.0184937,-0.0191956,-0.0196838,-0.0205994,-0.0215454,-0.0223083,-0.0232239,-0.0245667,-0.0253296,-0.0256958,-0.0255432,-0.0249634,-0.0240479,-0.0227966,-0.0211182,-0.0187073,-0.0167236,-0.013916,-0.0111694,-0.00808716,-0.00582886,-0.00253296,0.000640869,0.0039978,0.0078125,0.0107117,0.0137939,0.0168152,0.0193481,0.0220032,0.0240479,0.0250549,0.0256042,0.0257568,0.0261536,0.0262451,0.0266724,0.0270691,0.0271606,0.027771,0.0272827,0.0276489,0.0266113,0.0263672,0.0258789,0.0249023,0.023407,0.0222168,0.0209656,0.019989,0.0192566,0.0189819,0.018158,0.0170898,0.0162354,0.0143433,0.0133667,0.0128784,0.0122375,0.0128784,0.0128784,0.0135193,0.0142822,0.0153503,0.0161133,0.0169373,0.017395,0.0176697,0.0177307,0.0180969,0.0185547,0.0190125,0.0196228,0.0205994,0.0206909,0.0213013,0.020874,0.0206299,0.0204163,0.0204773,0.0196838,0.0194702,0.0184937,0.0173645,0.0168762,0.0144348,0.0134888,0.0112,0.00900269,0.00704956,0.00485229,0.00265503,6.10352e-05,-0.00195312,-0.0038147,-0.00582886,-0.00668335,-0.00808716,-0.00808716,-0.00787354,-0.00689697,-0.00610352,-0.00485229,-0.00372314,-0.00268555,-0.00106812,6.10352e-05,0.000549316,0.00140381,0.00241089,0.00198364,0.00189209,0.00112915,-0.000427246,-0.00296021,-0.00592041,-0.00927734,-0.0123291,-0.0149841,-0.0169373,-0.0194092,-0.0211182,-0.0229187,-0.0259399,-0.0259399,-0.0267334,-0.0274353,-0.027771,-0.0267944,-0.026886,-0.0261841,-0.0266113,-0.027771,-0.0282288,-0.0296936,-0.0300293,-0.0316467,-0.0330505,-0.0343933,-0.0361633,-0.0355835,-0.0346985,-0.0335693,-0.0323792,-0.0305481,-0.0289307,-0.0266724,-0.0249634,-0.0221558,-0.0189209,-0.0164795,-0.0140686,-0.0111084,-0.00845337,-0.00604248,-0.00427246,-0.00372314,-0.00387573,-0.00479126,-0.00549316,-0.00717163,-0.00823975,-0.00927734,-0.011261,-0.0130005,-0.013916,-0.0153198,-0.015564,-0.0151062,-0.0151062,-0.0147095,-0.0149841,-0.0153198,-0.0149231,-0.0143433,-0.0136414,-0.0126038,-0.0108948,-0.0093689,-0.00549316,-0.0032959,-0.00012207,0.00204468,0.00415039,0.0062561,0.0085144,0.0109863,0.013916,0.0158386,0.0185852,0.02005,0.0213013,0.0228577,0.0236511,0.024353,0.0242615,0.0239258,0.023407,0.0238647,0.0245361,0.0249023,0.0258789,0.0266113,0.0273743,0.0281982,0.0281372,0.0289001,0.0282898,0.0286865,0.0279236,0.0275574,0.0254517,0.0245361,0.0224609,0.0216064,0.0206299,0.0197754,0.0186462,0.017395,0.0164795,0.0154114,0.0150452,0.0149841,0.0153198,0.0157471,0.0164795,0.0173645,0.0187683,0.019928,0.0210266,0.0218201,0.0223083,0.022583,0.0236206,0.0236206,0.0249023,0.0253906,0.0265808,0.026947,0.0280762,0.0283508,0.0289307,0.0284119,0.0282288,0.0265808,0.0253296,0.0224304,0.0201111,0.0164795,0.0128784,0.00894165,0.00463867,0.000976562,-0.00268555,-0.00521851,-0.00793457,-0.00970459,-0.012085,-0.0137329,-0.0151367,-0.0159607,-0.0158386,-0.0161743,-0.0160522,-0.0167236,-0.015686,-0.0153503,-0.015625,-0.0151367,-0.0163269,-0.0180054,-0.0194092,-0.0215149,-0.0229492,-0.0246887,-0.0266724,-0.0285034,-0.0307617,-0.0323486,-0.0342712,-0.0354614,-0.0372009,-0.0388489,-0.0404663,-0.0426941,-0.0441895,-0.0454407,-0.0458069,-0.0463562,-0.045929,-0.0462341,-0.0453796,-0.0431824,-0.0396729,-0.0336914,-0.0273132,-0.0213928,-0.0169678,-0.0128784,-0.00949097,-0.00604248,-0.0039978,-0.00195312,-0.00210571,-0.00308228,-0.0038147,-0.00457764,-0.00500488,-0.00619507,-0.0088501,-0.0116882,-0.0149231,-0.0169373,-0.0178833,-0.0173035,-0.0168762,-0.0154724,-0.0147095,-0.0136414,-0.0121155,-0.0100403,-0.00872803,-0.00634766,-0.00631714,-0.00527954,-0.00494385,-0.00448608,-0.00402832,-0.00296021,-0.00280762,-0.00134277,0.000427246,0.00308228,0.00576782,0.00845337,0.0104675,0.0119629,0.013855,0.0151062,0.0167236,0.0180969,0.0191956,0.0195618,0.0185852,0.0183411,0.0176392,0.0171509,0.0169373,0.0154724,0.0160217,0.0148621,0.016449,0.0169373,0.0184937,0.0201721,0.0213318,0.0234375,0.0242615,0.0244141,0.0242615,0.023407,0.0222473,0.0206909,0.0194092,0.0168762,0.0151062,0.013031,0.0126648,0.0122986,0.0128784,0.013092,0.0137939,0.0148621,0.015625,0.0178833,0.0196838,0.0218811,0.023407,0.0249634,0.0261841,0.0279846,0.0291748,0.0302429,0.0314331,0.0321655,0.0332642,0.0345459,0.035614,0.036499,0.0367737,0.0380554,0.0391235,0.0411377,0.0417786,0.0419922,0.0406799,0.0383911,0.0353088,0.0317078,0.0265198,0.0203857,0.0140686,0.00732422,0.00125122,-0.00427246,-0.00857544,-0.0120239,-0.0149231,-0.0175781,-0.02005,-0.0215454,-0.0231628,-0.0242004,-0.0247803,-0.0256958,-0.0254517,-0.0250244,-0.0239258,-0.022583,-0.0220032,-0.0220947,-0.0236511,-0.025238,-0.0276489,-0.0307617,-0.0342712,-0.0374451,-0.0415649,-0.0448914,-0.0493774,-0.0525513,-0.0578918,-0.0619202,-0.065918,-0.0696411,-0.0717468,-0.0731812,-0.0737305,-0.0727539,-0.0692139,-0.0621033,-0.0525513,-0.0422058,-0.032074,-0.0230713,-0.0151978,-0.00723267,-0.000915527,0.00506592,0.00744629,0.00689697,0.00527954,0.00360107,0.00112915,-0.000579834,-0.00378418,-0.00830078,-0.0123901,-0.0162354,-0.0184326,-0.0177307,-0.0162354,-0.0133667,-0.0109558,-0.00817871,-0.00408936,-0.000152588,0.00479126,0.00668335,0.0085144,0.00787354,0.00759888,0.00656128,0.00662231,0.00518799,0.00430298,0.00323486,0.00335693,0.00527954,0.00772095,0.0106812,0.0137939,0.0170898,0.0198364,0.0231628,0.0263672,0.0299072,0.0324402,0.0342712,0.0351562,0.0345459,0.0340576,0.0328674,0.0316467,0.0285034,0.0263977,0.0236511,0.0222168,0.0210266,0.020813,0.0216675,0.0220337,0.0229492,0.0238342,0.0238342,0.023407,0.0222473,0.0201721,0.0186462,0.0160522,0.0137939,0.0115356,0.00888062,0.00662231,0.00521851,0.00473022,0.00421143,0.00421143,0.00408936,0.00387573,0.00512695,0.00668335,0.00933838,0.0113831,0.0133057,0.0149231,0.0168762,0.01828,0.019989,0.020813,0.0224609,0.0237122,0.0261841,0.0283508,0.0307617,0.0328674,0.0343323,0.0361633,0.0386963,0.0406799,0.0420532,0.0417175,0.0398865,0.0372314,0.0329895,0.0287781,0.0236206,0.0171509,0.0106812,0.00408936,-0.00146484,-0.00592041,-0.0100403,-0.0137939,-0.0188599,-0.0224609,-0.026886,-0.0302429,-0.0336914,-0.0375061,-0.0397339,-0.0415039,-0.0429077,-0.0429077,-0.0439758,-0.0437012,-0.0445251,-0.0452271,-0.0463562,-0.0471497,-0.0489807,-0.0505676,-0.052124,-0.0534668,-0.0554199,-0.0572815,-0.0604858,-0.0625916,-0.0654907,-0.0678101,-0.0699158,-0.0714722,-0.0708923,-0.0674744,-0.060791,-0.0513,-0.0409546,-0.0323792,-0.0236511,-0.016449,-0.00787354,-0.000549316,0.00485229,0.00701904,0.0071106,0.00640869,0.00506592,0.00421143,0.00280762,0.00012207,-0.00378418,-0.00723267,-0.00872803,-0.00817871,-0.00683594,-0.00448608,-0.00308228,-0.000274658,0.00289917,0.00689697,0.010498,0.0140076,0.0166626,0.0173645,0.01828,0.0180969,0.0185852,0.0177307,0.0168762,0.0167542,0.0167542,0.0178528,0.0205994,0.0235596,0.0270691,0.0306091,0.0339966,0.0372009,0.0398865,0.0427551,0.045929,0.0479736,0.0485229,0.0481262,0.0466919,0.045166,0.0437012,0.040863,0.0377808,0.0341797,0.0300293,0.0273743,0.024353,0.0220032,0.0202026,0.0184326,0.0170898,0.0160217,0.0144958,0.0119019,0.00836182,0.00436401,0.000640869,-0.00241089,-0.00582886,-0.00726318,-0.00964355,-0.010498,-0.0108337,-0.0101318,-0.00845337,-0.00772095,-0.00640869,-0.0045166,-0.00289917,0.000488281,0.00338745,0.00674438,0.00949097,0.0123291,0.0154114,0.0180664,0.020874,0.022644,0.0245667,0.0265198,0.028717,0.030304,0.0319519,0.0335388,0.0355835,0.0376892,0.0388489,0.0393066,0.0377197,0.035675,0.0317993,0.0272217,0.0213318,0.0144043,0.00823975,0.00210571,-0.00338745,-0.00759888,-0.0118103,-0.015564,-0.0197144,-0.0232849,-0.0274353,-0.0320129,-0.0374146,-0.043457,-0.0498047,-0.0562744,-0.0605164,-0.0648499,-0.0686035,-0.0725098,-0.0756226,-0.0794983,-0.0817566,-0.084198,-0.0863342,-0.0884094,-0.0892639,-0.0891418,-0.0895386,-0.0901794,-0.0900269,-0.0865479,-0.0818176,-0.074707,-0.0655823,-0.0531006,-0.0386963,-0.024353,-0.00964355,0.00198364,0.0140686,0.0254822,0.0344849,0.0400391,0.0393372,0.0363159,0.0306091,0.0266113,0.0222168,0.0168762,0.0126038,0.00631714,0.00527954,0.00732422,0.0135193,0.0204163,0.0239868,0.0244751,0.0246277,0.0256042,0.02771,0.0274963,0.0236206,0.0179443,0.00866699,0.0038147,0.00189209,0.000793457,0.00106812,0.00259399,0.00695801,0.0140686,0.0227356,0.032135,0.0417786,0.0501404,0.056366,0.0605774,0.063385,0.0669861,0.0681152,0.0692139,0.0673828,0.0654907,0.0621033,0.0599976,0.0569153,0.0557251,0.054657,0.0536804,0.0529785,0.0514832,0.0485535,0.0450745,0.0386353,0.0306091,0.0220337,0.0123291,0.00357056,-0.00680542,-0.0175171,-0.02948,-0.040741,-0.0514221,-0.0602112,-0.0674744,-0.0734253,-0.0778198,-0.0797119,-0.0787354,-0.0751343,-0.070343,-0.0648804,-0.059021,-0.0531921,-0.0467834,-0.0402527,-0.0337524,-0.0266113,-0.0198975,-0.0116882,-0.00296021,0.00631714,0.0166626,0.0266113,0.0383911,0.0488892,0.0595093,0.0692139,0.0770264,0.0826721,0.0874939,0.0895386,0.0898438,0.0879211,0.0837708,0.076416,0.0672607,0.0571899,0.04599,0.0343933,0.0216064,0.0104065,-0.00149536,-0.012085,-0.0210876,-0.0293884,-0.0379028,-0.0462036,-0.0559387,-0.0645142,-0.0743713,-0.0826416,-0.0910339,-0.0986938,-0.105804,-0.110291,-0.114166,-0.115082,-0.116211,-0.115387,-0.11557,-0.115784,-0.113983,-0.111938,-0.106567,-0.101074,-0.0943298,-0.0860291,-0.0731506,-0.0556641,-0.0330505,-0.00830078,0.0160522,0.0367126,0.0527649,0.0671997,0.0796509,0.088562,0.0899048,0.0826721,0.0706482,0.0581665,0.047699,0.0397644,0.0314331,0.0213013,0.0126038,0.00836182,0.0115356,0.0198975,0.0283508,0.0347595,0.0358582,0.0342712,0.0334167,0.0310974,0.025116,0.0159607,0.00219727,-0.00958252,-0.0184937,-0.0201111,-0.0168762,-0.00842285,0.00146484,0.015625,0.0314331,0.052063,0.0733032,0.0920105,0.104248,0.112,0.114227,0.113892,0.111359,0.107269,0.101532,0.0939941,0.0854187,0.079071,0.0740051,0.0713196,0.067749,0.0628052,0.0568237,0.0487671,0.039032,0.027771,0.013916,-0.00238037,-0.0220337,-0.0444641,-0.0640869,-0.0832214,-0.100189,-0.115784,-0.129578,-0.141815,-0.149841,-0.154846,-0.156586,-0.156036,-0.153778,-0.149841,-0.143158,-0.135498,-0.125092,-0.114166,-0.102295,-0.0897827,-0.0758362,-0.0606384,-0.0455933,-0.0292664,-0.0130005,0.00485229,0.0229187,0.0438232,0.0635071,0.0818176,0.0985718,0.11319,0.126678,0.136261,0.143005,0.14563,0.143646,0.140625,0.136749,0.132324,0.124573,0.114044,0.101379,0.0860901,0.0713196,0.0579529,0.0435486,0.0281372,0.0125732,-0.00289917,-0.0157776,-0.027771,-0.0377808,-0.0490417,-0.0610046,-0.0734558,-0.0823669,-0.0881348,-0.0923157,-0.0969238,-0.101288,-0.105103,-0.107971,-0.107697,-0.106018,-0.104523,-0.103973,-0.104767,-0.104828,-0.101929,-0.095459,-0.0870056,-0.0785828,-0.0705566,-0.0598145,-0.0441589,-0.0218811,0.00344849,0.0261841,0.0430603,0.0529785,0.0583801,0.0632629,0.065979,0.0611267,0.0476074,0.0270081,0.00668335,-0.00772095,-0.0158386,-0.0206909,-0.0239868,-0.02948,-0.0300293,-0.0229492,-0.00802612,0.00823975,0.0192566,0.0216675,0.0170288,0.011322,0.00631714,0.00119019,-0.00704956,-0.0175171,-0.0265808,-0.0292664,-0.0230713,-0.00695801,0.0160522,0.0414429,0.0662842,0.0909424,0.115356,0.138947,0.157654,0.168121,0.16864,0.161163,0.149963,0.139374,0.129517,0.120728,0.111908,0.103271,0.09729,0.0948486,0.0943298,0.0931396,0.0865479,0.0768738,0.0602112,0.0397339,0.0173645,-0.00845337,-0.0358887,-0.0652161,-0.0942688,-0.119995,-0.139008,-0.152374,-0.160187,-0.16629,-0.168274,-0.169342,-0.167084,-0.163971,-0.160522,-0.157074,-0.15329,-0.148987,-0.142334,-0.133606,-0.120941,-0.105865,-0.0870056,-0.0664062,-0.0444031,-0.0201721,0.00344849,0.0275879,0.0496521,0.0700073,0.0874329,0.102478,0.113831,0.122528,0.129303,0.133362,0.136322,0.13739,0.136414,0.135193,0.131897,0.128754,0.124237,0.116852,0.10553,0.0913086,0.0759583,0.0578308,0.0395508,0.0188599,-0.00140381,-0.0213928,-0.0384216,-0.0526123,-0.0635071,-0.0725098,-0.0801086,-0.0865479,-0.0907593,-0.0957947,-0.0981445,-0.102631,-0.106995,-0.113312,-0.119659,-0.125,-0.129242,-0.133514,-0.135498,-0.132874,-0.125641,-0.114441,-0.100372,-0.0832825,-0.0614319,-0.0350952,-0.0032959,0.0272217,0.0538025,0.0708313,0.0794067,0.0835876,0.0825806,0.0783691,0.0647278,0.0441589,0.019928,0.000579834,-0.0114136,-0.0153503,-0.0136414,-0.0118103,-0.00872803,-0.00247192,0.00991821,0.0248413,0.0365295,0.0385437,0.0296326,0.0128784,-0.00564575,-0.0222473,-0.0363159,-0.0496826,-0.0604248,-0.0648804,-0.0579529,-0.0389709,-0.00976562,0.0246277,0.0585327,0.0884094,0.113068,0.134033,0.149628,0.158569,0.157013,0.148438,0.13562,0.123871,0.117279,0.115448,0.11853,0.122345,0.126129,0.130341,0.135406,0.136536,0.132172,0.117218,0.0941162,0.0639648,0.0302429,-0.00479126,-0.0378418,-0.0700073,-0.0983276,-0.122894,-0.140564,-0.151672,-0.156372,-0.158417,-0.160675,-0.164673,-0.170715,-0.177429,-0.18396,-0.189941,-0.194214,-0.194794,-0.190094,-0.178772,-0.160187,-0.135284,-0.105927,-0.0728149,-0.0394592,-0.00830078,0.0198975,0.0440369,0.0638733,0.0796204,0.0924988,0.104034,0.113953,0.124664,0.136963,0.149963,0.163086,0.175171,0.185303,0.191833,0.194153,0.191345,0.182983,0.168701,0.147675,0.122894,0.0942078,0.0650024,0.0372314,0.011322,-0.0114136,-0.0314636,-0.0473328,-0.0577698,-0.0654297,-0.072937,-0.081543,-0.0911865,-0.101715,-0.114532,-0.127594,-0.140564,-0.152924,-0.165161,-0.175232,-0.17981,-0.181213,-0.179382,-0.172913,-0.161469,-0.144287,-0.125366,-0.105377,-0.0851135,-0.0614929,-0.0342407,-0.00265503,0.0286255,0.0552979,0.0723877,0.0819397,0.0856018,0.0866699,0.0834351,0.0734558,0.0545349,0.0334778,0.0149841,0.0045166,0.00308228,0.00683594,0.0106812,0.0145569,0.0205383,0.0291748,0.0389709,0.0439148,0.0388489,0.0227356,-0.00125122,-0.0255432,-0.0466919,-0.0618896,-0.072876,-0.0765381,-0.0711975,-0.0542297,-0.0257568,0.0104065,0.0499573,0.086731,0.115845,0.136902,0.150635,0.158783,0.159271,0.153076,0.14209,0.130219,0.123322,0.123535,0.131409,0.14212,0.153717,0.161316,0.164764,0.164185,0.155396,0.138428,0.110443,0.0731506,0.0317078,-0.0102539,-0.0484009,-0.0809631,-0.107971,-0.130341,-0.146545,-0.158417,-0.165802,-0.171356,-0.17804,-0.188385,-0.202026,-0.21814,-0.233276,-0.243774,-0.24884,-0.24585,-0.233917,-0.214142,-0.184998,-0.150879,-0.111206,-0.0709229,-0.0332642,-0.000213623,0.0264587,0.0493774,0.0686646,0.0864563,0.102478,0.119507,0.137604,0.15921,0.182281,0.205627,0.225098,0.239044,0.247131,0.24762,0.24173,0.228638,0.209229,0.18338,0.153931,0.122681,0.0933533,0.0652771,0.0392456,0.0131531,-0.0106201,-0.0328369,-0.0532532,-0.0724487,-0.090332,-0.109314,-0.128723,-0.148346,-0.165161,-0.179443,-0.190979,-0.199982,-0.204285,-0.204712,-0.203033,-0.199432,-0.193451,-0.185577,-0.173676,-0.158295,-0.140564,-0.12085,-0.0993347,-0.0705566,-0.0330505,0.0093689,0.0507202,0.0863037,0.112061,0.125916,0.130554,0.12854,0.119537,0.1008,0.0750427,0.0471191,0.0257568,0.0141907,0.0158386,0.0246887,0.0348816,0.0439758,0.0507812,0.057251,0.059082,0.0513,0.0308838,-0.0010376,-0.038208,-0.0718079,-0.0956726,-0.108124,-0.110107,-0.100586,-0.0794373,-0.0471497,-0.00842285,0.033844,0.0719604,0.101776,0.120911,0.13092,0.134003,0.134277,0.1315,0.128052,0.125641,0.128815,0.139557,0.156403,0.174896,0.191406,0.201752,0.201538,0.192841,0.174835,0.1492,0.114044,0.0734253,0.0299072,-0.0112,-0.0481873,-0.0770874,-0.101654,-0.12149,-0.138855,-0.15506,-0.169617,-0.185211,-0.203369,-0.223999,-0.24707,-0.268158,-0.285248,-0.293915,-0.293365,-0.282715,-0.261902,-0.232849,-0.197174,-0.158142,-0.117004,-0.0771179,-0.0394592,-0.00592041,0.0239868,0.0508423,0.0773926,0.104828,0.133179,0.160828,0.190063,0.21814,0.244232,0.265625,0.28125,0.289062,0.289703,0.282043,0.267395,0.248108,0.224182,0.196411,0.166504,0.135193,0.103149,0.0693665,0.0355835,0.00204468,-0.0317383,-0.0655823,-0.0979919,-0.127808,-0.154968,-0.179688,-0.201111,-0.218658,-0.232849,-0.243561,-0.24826,-0.249756,-0.248047,-0.246796,-0.243561,-0.238129,-0.228577,-0.213928,-0.191193,-0.165527,-0.135559,-0.0977173,-0.0501404,0.00582886,0.061615,0.109528,0.14444,0.161041,0.164764,0.160889,0.151306,0.135437,0.112976,0.0882263,0.0678711,0.0600586,0.0669556,0.0834351,0.0992737,0.107544,0.106873,0.0995483,0.0856934,0.0624695,0.0292664,-0.013916,-0.0609741,-0.101868,-0.128387,-0.13797,-0.131958,-0.113464,-0.0871582,-0.0555725,-0.0213013,0.0135803,0.0449524,0.0699158,0.0852661,0.0924988,0.0932007,0.093689,0.0970154,0.104309,0.116302,0.13266,0.154144,0.17804,0.201324,0.220978,0.232422,0.233276,0.221741,0.199982,0.169678,0.133514,0.092804,0.0535889,0.0141907,-0.0222473,-0.0558472,-0.0840149,-0.1091,-0.13092,-0.152161,-0.174957,-0.200684,-0.228333,-0.255981,-0.279297,-0.299347,-0.311981,-0.318268,-0.315796,-0.304108,-0.282379,-0.252411,-0.21814,-0.18158,-0.143372,-0.104309,-0.0631104,-0.0213318,0.0195618,0.0577393,0.0951233,0.13147,0.169128,0.204865,0.237488,0.265228,0.287567,0.304962,0.31839,0.324738,0.325165,0.317566,0.300598,0.274719,0.243042,0.207245,0.170654,0.131073,0.088562,0.0446167,-0.000335693,-0.0437622,-0.0836487,-0.11911,-0.153992,-0.188324,-0.221741,-0.251831,-0.274445,-0.290955,-0.300659,-0.308624,-0.314392,-0.318756,-0.318176,-0.311554,-0.298401,-0.278076,-0.253265,-0.220886,-0.181854,-0.131134,-0.0680847,-0.000488281,0.0661316,0.122772,0.163147,0.185425,0.192535,0.192047,0.185638,0.173492,0.155945,0.137665,0.124451,0.123108,0.13797,0.160309,0.179443,0.18515,0.17691,0.159485,0.132904,0.0970764,0.0507202,-0.0062561,-0.0648499,-0.114594,-0.146545,-0.159637,-0.155945,-0.141205,-0.118896,-0.091156,-0.0593872,-0.0258789,0.00402832,0.0275574,0.0400391,0.0437622,0.0443726,0.0466919,0.0560608,0.0704956,0.0896912,0.11377,0.141174,0.171783,0.202545,0.230042,0.247467,0.250641,0.238831,0.217529,0.190155,0.159637,0.124176,0.0863953,0.0458069,0.00646973,-0.0282288,-0.0573425,-0.084137,-0.111633,-0.142303,-0.175293,-0.207886,-0.237976,-0.265076,-0.288727,-0.309601,-0.324921,-0.33255,-0.330688,-0.319855,-0.299744,-0.273743,-0.24292,-0.207306,-0.167358,-0.121338,-0.0718384,-0.0222168,0.0254517,0.0715637,0.115143,0.162231,0.20816,0.253326,0.290833,0.320282,0.340637,0.355591,0.366425,0.371521,0.367798,0.352234,0.326416,0.292358,0.255585,0.216339,0.173767,0.124298,0.0690918,0.0123901,-0.0402527,-0.0872192,-0.131744,-0.174591,-0.220337,-0.264069,-0.301147,-0.328033,-0.346344,-0.361328,-0.375305,-0.386841,-0.394928,-0.395355,-0.385315,-0.364349,-0.336121,-0.301514,-0.257599,-0.198517,-0.126068,-0.0463562,0.0279846,0.091156,0.136902,0.166565,0.186127,0.200623,0.209503,0.207031,0.195068,0.18222,0.17923,0.192627,0.217377,0.244385,0.261414,0.263458,0.252197,0.23291,0.20282,0.159973,0.101868,0.0317383,-0.0365295,-0.0933533,-0.130005,-0.149475,-0.157074,-0.154419,-0.143036,-0.122833,-0.0960083,-0.0664978,-0.0405884,-0.0245361,-0.019928,-0.0211182,-0.0220337,-0.0170288,-0.00634766,0.00933838,0.0311584,0.0609131,0.09729,0.138245,0.179321,0.217102,0.242645,0.253754,0.25235,0.24115,0.223846,0.19931,0.166931,0.129425,0.0889282,0.0499573,0.0162659,-0.0125122,-0.0401001,-0.0707092,-0.105316,-0.140991,-0.176086,-0.210114,-0.242859,-0.274567,-0.302856,-0.327209,-0.341949,-0.347168,-0.340485,-0.324585,-0.299683,-0.269226,-0.232727,-0.189728,-0.14212,-0.0915833,-0.042572,0.00485229,0.0522156,0.101318,0.150696,0.198792,0.24234,0.28125,0.317566,0.350616,0.380371,0.401489,0.411102,0.404358,0.384521,0.35321,0.315155,0.270294,0.217438,0.161163,0.104095,0.049469,-0.00146484,-0.049469,-0.097229,-0.147583,-0.197113,-0.244446,-0.28653,-0.325775,-0.36319,-0.397675,-0.427856,-0.450104,-0.460083,-0.456055,-0.440094,-0.412933,-0.371735,-0.318451,-0.251648,-0.178406,-0.105804,-0.0413513,0.0113831,0.0531921,0.090271,0.121613,0.147949,0.166565,0.179108,0.190765,0.211273,0.240509,0.276764,0.311218,0.335846,0.34549,0.341949,0.327759,0.303284,0.264526,0.211884,0.149353,0.0840149,0.0253296,-0.0205383,-0.0544434,-0.0799255,-0.0989075,-0.110382,-0.11438,-0.111145,-0.105316,-0.100586,-0.101013,-0.107574,-0.117554,-0.125427,-0.127045,-0.120575,-0.106659,-0.0842896,-0.054718,-0.0171814,0.0263672,0.0727539,0.117493,0.156158,0.18454,0.201599,0.210327,0.211609,0.205566,0.192322,0.17215,0.148376,0.123962,0.101654,0.0810242,0.0610046,0.038147,0.0102844,-0.0215149,-0.0554199,-0.0907593,-0.127319,-0.165375,-0.203033,-0.238831,-0.269653,-0.291656,-0.304901,-0.306,-0.298553,-0.282501,-0.259216,-0.229889,-0.194519,-0.155029,-0.113831,-0.072113,-0.027771,0.0167542,0.0621948,0.108337,0.154114,0.199738,0.24234,0.282867,0.317352,0.344574,0.359955,0.363403,0.353363,0.33255,0.302094,0.264313,0.223358,0.180145,0.136841,0.0920715,0.0455017,-0.00259399,-0.0513,-0.0996094,-0.147369,-0.195557,-0.246704,-0.300049,-0.352356,-0.395569,-0.424347,-0.436859,-0.435791,-0.421539,-0.395294,-0.356506,-0.305878,-0.250916,-0.199921,-0.157104,-0.125214,-0.0993958,-0.0715637,-0.0435486,-0.0125732,0.0168762,0.0481873,0.0881653,0.137054,0.193542,0.253052,0.304321,0.343018,0.365662,0.37439,0.368256,0.348785,0.31543,0.273163,0.225677,0.180878,0.143433,0.114319,0.0911865,0.0718994,0.0549927,0.0393066,0.0227966,0.00653076,-0.0122986,-0.036499,-0.0654907,-0.0975647,-0.127808,-0.152496,-0.168335,-0.173065,-0.168335,-0.154785,-0.134308,-0.106842,-0.0752563,-0.0409546,-0.00759888,0.0195618,0.0415649,0.0581665,0.0707703,0.0809631,0.0870056,0.0913696,0.0913086,0.0909729,0.0903931,0.0906067,0.0906067,0.0880127,0.0814819,0.0686646,0.0508728,0.0286865,0.00134277,-0.0265808,-0.0576782,-0.0888367,-0.120148,-0.147308,-0.168549,-0.181641,-0.187073,-0.185577,-0.179047,-0.168152,-0.15387,-0.135986,-0.115021,-0.0912476,-0.0668945,-0.0417786,-0.0168762,0.0100403,0.0417175,0.076416,0.115356,0.152527,0.18811,0.216522,0.238708,0.253662,0.259308,0.255219,0.23819,0.212799,0.18219,0.152313,0.122833,0.0924377,0.0580444,0.0210876,-0.0178833,-0.0567017,-0.0939941,-0.131958,-0.173248,-0.218872,-0.262177,-0.296814,-0.316345,-0.321228,-0.312897,-0.296783,-0.273926,-0.247467,-0.222809,-0.200439,-0.18396,-0.172058,-0.164703,-0.158295,-0.14682,-0.128235,-0.101288,-0.0641479,-0.016449,0.0395508,0.0973816,0.153564,0.201141,0.238892,0.26297,0.273804,0.271271,0.256622,0.235748,0.213013,0.191498,0.175507,0.168488,0.166931,0.167297,0.168396,0.168121,0.162842,0.151886,0.131622,0.105103,0.0722351,0.033783,-0.00457764,-0.0418396,-0.0706177,-0.0914612,-0.102356,-0.104309,-0.0989075,-0.0875244,-0.0730896,-0.0585938,-0.0450134,-0.0339661,-0.0262451,-0.0223694,-0.0206299,-0.0191956,-0.0190735,-0.0189819,-0.0180969,-0.0157776,-0.011322,-0.00570679,0.000976562,0.00683594,0.012085,0.0137939,0.013092,0.00753784,-0.000701904,-0.0131531,-0.02771,-0.0444031,-0.0614014,-0.0780334,-0.0921631,-0.103638,-0.110107,-0.110992,-0.106232,-0.0959473,-0.0823059,-0.0660706,-0.0486145,-0.0314636,-0.0130005,0.00421143,0.0219421,0.0371399,0.0534058,0.0700684,0.0895691,0.11087,0.134277,0.155945,0.172974,0.18396,0.189606,0.189575,0.181915,0.16687,0.145416,0.119171,0.0915222,0.0640869,0.0369263,0.00759888,-0.0242004,-0.0593872,-0.0950317,-0.128967,-0.161804,-0.194946,-0.227875,-0.256836,-0.27774,-0.286316,-0.281464,-0.263367,-0.236145,-0.204346,-0.17215,-0.145966,-0.129944,-0.119934,-0.11615,-0.116302,-0.117065,-0.114868,-0.107697,-0.0948486,-0.0674133,-0.0227356,0.0332642,0.0926514,0.145752,0.187408,0.215332,0.231232,0.234741,0.226318,0.20459,0.172974,0.141602,0.114532,0.101654,0.102844,0.112152,0.124573,0.135651,0.146393,0.153076,0.155334,0.148071,0.130646,0.101105,0.0641479,0.0258179,-0.0071106,-0.0308228,-0.0464478,-0.0536194,-0.0530396,-0.0453796,-0.0312195,-0.0140076,0.00296021,0.0165405,0.022522,0.0211792,0.0147095,0.00549316,-0.00378418,-0.0135803,-0.0261841,-0.0374451,-0.0467224,-0.050293,-0.0493774,-0.0452271,-0.0418396,-0.0406799,-0.0427551,-0.0474854,-0.0535278,-0.0619812,-0.0728149,-0.0865479,-0.100525,-0.114594,-0.123474,-0.12854,-0.127411,-0.120728,-0.109802,-0.0920105,-0.0713501,-0.0464172,-0.0222168,0.00119019,0.0213013,0.0397644,0.0562744,0.0734558,0.091156,0.108337,0.128448,0.149475,0.171844,0.191193,0.206604,0.214478,0.212463,0.202881,0.185913,0.161255,0.129913,0.0967102,0.0628967,0.0308838,0.00128174,-0.0262451,-0.0550842,-0.0873108,-0.121979,-0.155487,-0.188538,-0.222076,-0.256287,-0.28653,-0.308685,-0.317749,-0.306366,-0.278442,-0.237976,-0.192627,-0.152435,-0.119019,-0.0967407,-0.0805359,-0.0698547,-0.0669556,-0.0688782,-0.0744324,-0.0758362,-0.0669861,-0.0403748,0.0055542,0.0639648,0.123474,0.173553,0.213013,0.238556,0.252838,0.251984,0.23587,0.203583,0.160553,0.115997,0.0820312,0.0629578,0.0611267,0.067688,0.0777283,0.0889282,0.101288,0.113983,0.121979,0.120514,0.106354,0.0785828,0.0415039,0.00518799,-0.0250549,-0.045166,-0.0558472,-0.0594482,-0.0531921,-0.0397339,-0.0185852,0.00732422,0.0317078,0.0505676,0.0599365,0.0609741,0.0545349,0.0465088,0.0353699,0.022644,0.00598145,-0.0109863,-0.0253296,-0.0332642,-0.036438,-0.0359497,-0.0368652,-0.0397644,-0.0481873,-0.0581055,-0.0697937,-0.0809631,-0.0956726,-0.112488,-0.130829,-0.147156,-0.158264,-0.163757,-0.16095,-0.15274,-0.138367,-0.119324,-0.0955505,-0.0684509,-0.040741,-0.0133057,0.0113831,0.0343933,0.0566406,0.0811768,0.106781,0.134308,0.163757,0.192902,0.218506,0.237274,0.24881,0.25235,0.245392,0.231567,0.208588,0.177063,0.139862,0.103149,0.0686646,0.0360107,0.00436401,-0.0300293,-0.0684509,-0.109253,-0.148865,-0.184662,-0.223206,-0.265686,-0.306519,-0.341278,-0.360321,-0.355103,-0.329529,-0.290405,-0.248169,-0.206116,-0.168213,-0.136414,-0.110443,-0.0923157,-0.0852051,-0.0872192,-0.0935669,-0.0936279,-0.0820923,-0.0524292,-0.00457764,0.0559998,0.120575,0.182007,0.233185,0.271973,0.294495,0.299255,0.283569,0.250092,0.206329,0.160095,0.121216,0.0956726,0.0850525,0.0861816,0.0930176,0.105255,0.11972,0.132263,0.13916,0.135193,0.116211,0.084259,0.0430603,0.000915527,-0.0375671,-0.0666199,-0.0854187,-0.0934143,-0.0900574,-0.0743713,-0.0505066,-0.0221558,0.00613403,0.0284119,0.0437622,0.0510559,0.0515137,0.0468445,0.0379333,0.0245361,0.00991821,-0.00610352,-0.0185852,-0.025116,-0.0272217,-0.0259705,-0.025238,-0.0256653,-0.0287781,-0.0343323,-0.0426331,-0.0535278,-0.0686646,-0.088562,-0.110229,-0.130005,-0.146393,-0.157379,-0.16272,-0.159821,-0.150543,-0.132965,-0.109039,-0.0813904,-0.0514221,-0.0227966,0.00387573,0.0267334,0.0466919,0.0661926,0.0872498,0.110291,0.137268,0.166321,0.192322,0.215271,0.23111,0.240723,0.241913,0.232574,0.212311,0.180786,0.143494,0.105316,0.0714722,0.0415039,0.0128174,-0.0190735,-0.0569763,-0.097168,-0.13562,-0.171661,-0.209229,-0.253693,-0.298767,-0.337463,-0.357513,-0.348572,-0.315704,-0.268219,-0.222168,-0.183685,-0.154053,-0.130127,-0.109802,-0.0965271,-0.0956116,-0.10553,-0.123199,-0.132538,-0.122131,-0.0861206,-0.0253906,0.0450745,0.11438,0.177155,0.226715,0.26593,0.288971,0.292358,0.271606,0.228058,0.175385,0.125916,0.0916748,0.077301,0.0787964,0.0896912,0.104614,0.123901,0.146179,0.166595,0.17868,0.174469,0.148438,0.106659,0.056488,0.00900269,-0.028717,-0.0555725,-0.0715637,-0.0776062,-0.0720215,-0.0536804,-0.0256042,0.0071106,0.033844,0.052002,0.0571289,0.0544434,0.0487366,0.0393372,0.0264587,0.00857544,-0.0117493,-0.0310974,-0.0443726,-0.0486755,-0.045929,-0.0410767,-0.0402222,-0.0420837,-0.0474854,-0.0530396,-0.0585327,-0.0667725,-0.0805359,-0.100403,-0.122742,-0.142792,-0.156952,-0.163635,-0.164886,-0.158936,-0.146973,-0.125427,-0.0955505,-0.0609131,-0.0255432,0.00421143,0.0289307,0.0481262,0.0666199,0.0888367,0.113037,0.138794,0.163696,0.186768,0.206909,0.226013,0.240234,0.247009,0.242615,0.224213,0.19339,0.155396,0.117462,0.0830994,0.0527039,0.0230713,-0.00976562,-0.047699,-0.0891113,-0.128052,-0.162628,-0.197754,-0.240173,-0.289703,-0.337524,-0.370331,-0.376221,-0.35083,-0.302216,-0.249176,-0.201904,-0.163971,-0.130859,-0.101318,-0.0756836,-0.0618286,-0.0660706,-0.0875244,-0.11264,-0.122528,-0.105225,-0.0582581,0.00823975,0.07901,0.145813,0.204651,0.254669,0.294678,0.31369,0.306946,0.270264,0.211884,0.14978,0.0991211,0.0680237,0.0549316,0.0553589,0.0623169,0.0756836,0.0965271,0.123169,0.148376,0.160095,0.151947,0.120575,0.076416,0.0278625,-0.0135803,-0.0466309,-0.0701904,-0.0838623,-0.0870972,-0.0757141,-0.0498657,-0.0147705,0.0220947,0.0493164,0.0658569,0.0709839,0.0708923,0.0683594,0.061676,0.0491638,0.0300903,0.00717163,-0.0125122,-0.0246887,-0.0273743,-0.0256653,-0.0257568,-0.0318604,-0.0410767,-0.0506592,-0.0576172,-0.0641479,-0.0744324,-0.0902405,-0.113312,-0.135986,-0.15506,-0.166321,-0.172485,-0.173065,-0.169769,-0.158203,-0.135834,-0.102081,-0.0619202,-0.0229187,0.00927734,0.0332642,0.0536194,0.0741577,0.0992737,0.126678,0.154053,0.178406,0.199921,0.219757,0.238617,0.252991,0.259674,0.25058,0.225677,0.187958,0.146393,0.108765,0.07724,0.0487366,0.0151367,-0.0265198,-0.0730286,-0.116974,-0.154572,-0.189514,-0.230804,-0.281677,-0.338745,-0.384888,-0.403534,-0.386475,-0.337372,-0.275909,-0.220825,-0.179962,-0.152252,-0.12619,-0.100403,-0.0792236,-0.0736389,-0.0903931,-0.11911,-0.139923,-0.130646,-0.0832214,-0.00964355,0.0728149,0.14856,0.211823,0.26593,0.310944,0.343658,0.349274,0.320374,0.258392,0.184875,0.121063,0.0814514,0.0664673,0.0690308,0.0787964,0.090332,0.108002,0.131683,0.159424,0.177917,0.172852,0.140991,0.0878601,0.0274963,-0.0250549,-0.0657654,-0.0923157,-0.110168,-0.119659,-0.115662,-0.0932007,-0.0549927,-0.0115967,0.0253906,0.0460815,0.0535889,0.0509949,0.0469971,0.0440979,0.0377808,0.0245667,0.00296021,-0.0192566,-0.0333252,-0.0346069,-0.0261841,-0.0174561,-0.0162354,-0.0232849,-0.0342712,-0.0415649,-0.0455933,-0.0486145,-0.0597839,-0.0797119,-0.105591,-0.129669,-0.145538,-0.15271,-0.155029,-0.153076,-0.147644,-0.132538,-0.10434,-0.0652771,-0.0210266,0.0159607,0.0424194,0.0601501,0.0758972,0.0942078,0.118317,0.140778,0.162567,0.179382,0.196411,0.215912,0.235931,0.250793,0.251007,0.231079,0.195984,0.151886,0.11087,0.0768738,0.0448303,0.00991821,-0.0332031,-0.0803528,-0.123383,-0.158203,-0.189178,-0.225311,-0.272308,-0.327911,-0.376709,-0.401917,-0.393677,-0.350739,-0.290802,-0.233398,-0.187775,-0.155273,-0.128296,-0.102142,-0.0805664,-0.0736389,-0.0887756,-0.120026,-0.144714,-0.144287,-0.105011,-0.0362854,0.0481262,0.127472,0.196899,0.255066,0.30481,0.341614,0.354218,0.333313,0.276611,0.203369,0.135406,0.0879211,0.0671082,0.0670471,0.0787964,0.0947571,0.115784,0.144135,0.175537,0.19809,0.200409,0.17392,0.122955,0.0611877,0.00146484,-0.045105,-0.077301,-0.0982056,-0.110077,-0.110321,-0.0920105,-0.0581055,-0.0163269,0.02005,0.0443115,0.0521851,0.0480347,0.0383911,0.02948,0.0190125,0.00469971,-0.0163879,-0.0402222,-0.0577393,-0.063385,-0.0577698,-0.0473633,-0.0415649,-0.0429993,-0.0518494,-0.0592957,-0.0637207,-0.0651245,-0.0709229,-0.0842896,-0.105255,-0.126709,-0.14212,-0.147369,-0.144012,-0.134094,-0.123169,-0.108704,-0.0887146,-0.0574036,-0.0203857,0.0171814,0.0480347,0.0701294,0.0892639,0.109894,0.136261,0.166656,0.194794,0.21582,0.227448,0.235474,0.241913,0.245667,0.242279,0.223633,0.189514,0.147644,0.107971,0.0769043,0.0505981,0.0209045,-0.0209656,-0.0718384,-0.123108,-0.166107,-0.204285,-0.243408,-0.291046,-0.348297,-0.402527,-0.433472,-0.42807,-0.385376,-0.31958,-0.25296,-0.200684,-0.163208,-0.133942,-0.102997,-0.0749817,-0.0602722,-0.0713501,-0.104675,-0.139435,-0.148926,-0.117218,-0.0473328,0.0398254,0.126282,0.197266,0.256012,0.307922,0.350952,0.373199,0.360382,0.309326,0.231781,0.156647,0.100189,0.0742798,0.0715332,0.0808105,0.092804,0.106293,0.129242,0.160736,0.19101,0.203888,0.187073,0.140778,0.0775757,0.0151978,-0.0329895,-0.0658264,-0.0884399,-0.10553,-0.113953,-0.105957,-0.0761719,-0.0354614,0.00823975,0.0391235,0.0534668,0.0515747,0.0431824,0.0353088,0.0294189,0.0165405,-0.00534058,-0.0349731,-0.061676,-0.0740051,-0.0726013,-0.0606384,-0.0509949,-0.050354,-0.0581665,-0.0678101,-0.072052,-0.0726013,-0.0751953,-0.0871582,-0.108917,-0.135284,-0.156311,-0.165253,-0.162292,-0.151459,-0.137878,-0.123047,-0.10025,-0.0652771,-0.0202637,0.0270996,0.064209,0.0888367,0.104401,0.119232,0.140961,0.167694,0.194946,0.21701,0.232025,0.243835,0.257477,0.269653,0.273712,0.261078,0.228271,0.184235,0.137543,0.0968018,0.0610657,0.0263062,-0.0158997,-0.06604,-0.116974,-0.160889,-0.199585,-0.239532,-0.286652,-0.342468,-0.401398,-0.447693,-0.463593,-0.441284,-0.388824,-0.32309,-0.259857,-0.208099,-0.165741,-0.127533,-0.0922852,-0.0653381,-0.0597229,-0.0813904,-0.117126,-0.143524,-0.134094,-0.087738,-0.0115356,0.0755615,0.160248,0.234314,0.298279,0.353485,0.393188,0.403015,0.37326,0.306915,0.224976,0.153168,0.103607,0.0795593,0.0769043,0.086731,0.100403,0.118805,0.147308,0.182068,0.207672,0.209717,0.179535,0.12735,0.0641479,0.00274658,-0.0457458,-0.0794373,-0.102142,-0.116425,-0.119873,-0.102783,-0.0666199,-0.0217285,0.0184326,0.0442505,0.0556641,0.0540466,0.0446777,0.0339661,0.0220947,0.00317383,-0.0234985,-0.0541077,-0.0783691,-0.0873718,-0.0848999,-0.0753479,-0.0681152,-0.0679016,-0.0731812,-0.0795593,-0.0825195,-0.0840149,-0.0898438,-0.105042,-0.129425,-0.153778,-0.172546,-0.179321,-0.175293,-0.163361,-0.146332,-0.123749,-0.0932312,-0.0526733,-0.00598145,0.0409241,0.0793457,0.108704,0.130707,0.151947,0.176422,0.202515,0.229248,0.251556,0.268433,0.280121,0.28653,0.29068,0.288208,0.274017,0.2453,0.204498,0.160309,0.116058,0.0750732,0.0342712,-0.0115967,-0.0640259,-0.120239,-0.173706,-0.222107,-0.269714,-0.320496,-0.376434,-0.433502,-0.480133,-0.501709,-0.489502,-0.442902,-0.377625,-0.307861,-0.248383,-0.20163,-0.159485,-0.120575,-0.0880737,-0.0733643,-0.0838013,-0.113464,-0.139282,-0.13913,-0.100861,-0.0274353,0.0654297,0.158081,0.238464,0.309235,0.370605,0.415527,0.434753,0.417877,0.363617,0.284546,0.204926,0.142456,0.107208,0.097168,0.102142,0.112427,0.127197,0.150177,0.179474,0.207458,0.218079,0.200226,0.152527,0.0857544,0.0173645,-0.0395508,-0.0803528,-0.10672,-0.125214,-0.131897,-0.12149,-0.092804,-0.0498657,-0.00469971,0.0323792,0.0525513,0.0549927,0.0452881,0.0330811,0.0202637,0.00500488,-0.01828,-0.0481873,-0.0758362,-0.0914001,-0.0932312,-0.0839844,-0.072876,-0.0680847,-0.0707703,-0.0787354,-0.0862427,-0.0905457,-0.0968628,-0.110168,-0.132324,-0.158905,-0.182281,-0.195221,-0.194794,-0.180939,-0.161713,-0.137054,-0.106842,-0.0668335,-0.0195007,0.0293274,0.0712585,0.102783,0.128387,0.148987,0.171997,0.198578,0.226868,0.254242,0.277039,0.293152,0.306641,0.314453,0.316345,0.307648,0.283081,0.246094,0.200684,0.15506,0.110504,0.0681152,0.0220947,-0.0310974,-0.0881653,-0.141907,-0.190979,-0.241241,-0.292786,-0.35025,-0.409058,-0.466705,-0.507996,-0.520447,-0.501953,-0.456573,-0.394775,-0.328949,-0.267761,-0.214722,-0.167908,-0.129639,-0.10025,-0.0906982,-0.104401,-0.131622,-0.149628,-0.13858,-0.0926514,-0.0163879,0.0796509,0.176086,0.263519,0.337952,0.400208,0.442352,0.454803,0.42984,0.370453,0.294708,0.220184,0.16153,0.125977,0.114685,0.122131,0.134583,0.152435,0.178314,0.206604,0.228851,0.230042,0.203308,0.151581,0.0843506,0.0154114,-0.0455322,-0.0889282,-0.118103,-0.134155,-0.137939,-0.123962,-0.0921631,-0.0516968,-0.0107117,0.0213928,0.0390625,0.0420837,0.0308838,0.0160217,0.000213623,-0.0180969,-0.0416565,-0.0690308,-0.0916748,-0.104065,-0.103607,-0.0952454,-0.0857544,-0.0783691,-0.0783691,-0.0834351,-0.0895691,-0.0959473,-0.105042,-0.118896,-0.140411,-0.164551,-0.185242,-0.197205,-0.195129,-0.180389,-0.155548,-0.125092,-0.089325,-0.0486145,-0.00387573,0.0426331,0.084198,0.117828,0.143494,0.163696,0.182831,0.20578,0.233124,0.263458,0.289337,0.308624,0.319183,0.324249,0.324158,0.315155,0.293976,0.258545,0.213226,0.163544,0.113312,0.0658569,0.0202637,-0.0284119,-0.0809631,-0.134277,-0.185913,-0.235962,-0.288422,-0.340546,-0.391846,-0.446411,-0.498718,-0.534912,-0.541046,-0.512573,-0.458191,-0.390503,-0.320801,-0.259155,-0.20575,-0.159119,-0.115082,-0.0829468,-0.0774536,-0.0967102,-0.124512,-0.13443,-0.112488,-0.0551453,0.0314331,0.129852,0.226105,0.307495,0.375641,0.430542,0.467621,0.47226,0.438904,0.373566,0.294128,0.21936,0.163574,0.134979,0.13205,0.140747,0.150269,0.164703,0.186768,0.214905,0.231323,0.224487,0.190918,0.133606,0.0638123,-0.00653076,-0.0626221,-0.098999,-0.121429,-0.134644,-0.137512,-0.122772,-0.0922241,-0.0538025,-0.0164795,0.0118713,0.0250549,0.0214539,0.00772095,-0.00775146,-0.0213318,-0.0368652,-0.0599365,-0.0854187,-0.107269,-0.118042,-0.120026,-0.113617,-0.103119,-0.0964355,-0.0965881,-0.103149,-0.10968,-0.113983,-0.120361,-0.132812,-0.150604,-0.171082,-0.188232,-0.195862,-0.189178,-0.168274,-0.136108,-0.100586,-0.0611267,-0.0172424,0.0280762,0.0734253,0.113556,0.14859,0.173248,0.191559,0.208954,0.230255,0.258392,0.288513,0.315247,0.334656,0.344696,0.345978,0.33783,0.320801,0.292358,0.251862,0.203094,0.150177,0.100159,0.0496826,0.0017395,-0.0483093,-0.098053,-0.147186,-0.195282,-0.245392,-0.29892,-0.356598,-0.41394,-0.472107,-0.524994,-0.561035,-0.573608,-0.555481,-0.509247,-0.439819,-0.361115,-0.284576,-0.216461,-0.157928,-0.110779,-0.077301,-0.0690002,-0.0820923,-0.106873,-0.121063,-0.107635,-0.061615,0.0176697,0.114685,0.215637,0.307648,0.386353,0.451935,0.494354,0.506226,0.4823,0.425171,0.347107,0.26712,0.199921,0.158203,0.140991,0.140564,0.148346,0.162872,0.186157,0.212311,0.232849,0.235657,0.213379,0.165741,0.0993958,0.0275574,-0.0365906,-0.0849609,-0.118103,-0.138306,-0.14856,-0.142883,-0.122986,-0.0897827,-0.0517883,-0.0177307,0.00521851,0.0125122,0.00592041,-0.0071106,-0.0222168,-0.0395203,-0.0629578,-0.0913086,-0.119293,-0.141418,-0.152313,-0.151886,-0.142944,-0.132446,-0.126221,-0.125916,-0.126923,-0.12796,-0.129578,-0.135071,-0.14624,-0.16217,-0.178558,-0.189362,-0.190216,-0.177826,-0.152496,-0.119537,-0.0781555,-0.0317078,0.0192566,0.0713501,0.117065,0.15686,0.187836,0.213562,0.237061,0.261902,0.290894,0.321014,0.346191,0.36319,0.373474,0.377716,0.370941,0.35434,0.323822,0.281952,0.230377,0.179108,0.132599,0.0901184,0.0455017,-0.00241089,-0.0543823,-0.108398,-0.160889,-0.212158,-0.266968,-0.326996,-0.390228,-0.450378,-0.504456,-0.552734,-0.59317,-0.618225,-0.619354,-0.588318,-0.527618,-0.447357,-0.35675,-0.270355,-0.194794,-0.135071,-0.0891418,-0.0565491,-0.0439758,-0.04953,-0.0626831,-0.0669556,-0.0482483,-0.00216675,0.0740051,0.17276,0.275909,0.368958,0.44342,0.500244,0.535553,0.544769,0.5224,0.466919,0.391144,0.306702,0.228912,0.172272,0.142395,0.135773,0.142609,0.156738,0.177155,0.199982,0.218353,0.224609,0.210327,0.172974,0.111725,0.0360718,-0.0375061,-0.0977783,-0.13681,-0.161591,-0.173004,-0.16864,-0.149689,-0.117706,-0.0777283,-0.0350952,-0.000793457,0.0153198,0.0108337,-0.00909424,-0.0350342,-0.0629578,-0.0934753,-0.124939,-0.155243,-0.178894,-0.194672,-0.196411,-0.185638,-0.168213,-0.153839,-0.147736,-0.14743,-0.150208,-0.15329,-0.158783,-0.165527,-0.173553,-0.184082,-0.192627,-0.195129,-0.183105,-0.153778,-0.111847,-0.0608521,-0.00436401,0.0529785,0.108459,0.158691,0.203217,0.238495,0.266632,0.286407,0.303955,0.324005,0.349823,0.378265,0.40274,0.416809,0.419067,0.409912,0.387604,0.35434,0.309875,0.258667,0.201904,0.147461,0.0963745,0.0508423,0.0038147,-0.0471497,-0.103424,-0.164124,-0.224426,-0.284912,-0.347382,-0.408081,-0.46225,-0.507965,-0.551971,-0.590942,-0.619904,-0.638062,-0.641296,-0.620758,-0.572632,-0.502716,-0.420135,-0.33493,-0.254456,-0.180786,-0.113312,-0.0557251,-0.013092,0.013092,0.024353,0.0247803,0.0340576,0.0656433,0.12149,0.195435,0.277802,0.357513,0.428925,0.491608,0.54126,0.568329,0.570374,0.542999,0.484406,0.406403,0.325134,0.254364,0.201752,0.169403,0.154846,0.152863,0.157715,0.171722,0.188873,0.202545,0.202942,0.178467,0.129578,0.064209,-0.00604248,-0.070343,-0.122345,-0.158264,-0.178528,-0.185913,-0.178406,-0.156403,-0.121613,-0.0808411,-0.0455017,-0.0256653,-0.0245667,-0.0384216,-0.0628052,-0.090332,-0.119293,-0.148163,-0.176636,-0.202545,-0.218567,-0.222351,-0.214722,-0.200562,-0.186371,-0.176697,-0.172546,-0.173187,-0.175232,-0.175995,-0.178558,-0.183411,-0.192047,-0.198364,-0.196533,-0.179962,-0.148926,-0.102844,-0.0489502,0.00997925,0.0684509,0.124817,0.176727,0.22049,0.25528,0.280548,0.304108,0.329071,0.356384,0.388031,0.419189,0.444122,0.456909,0.458038,0.450104,0.432983,0.40097,0.355896,0.302429,0.244537,0.187408,0.134491,0.0839233,0.0294189,-0.0289917,-0.0906677,-0.15329,-0.215546,-0.273865,-0.329712,-0.382904,-0.434387,-0.481262,-0.523407,-0.56189,-0.59726,-0.631592,-0.65918,-0.674927,-0.675476,-0.655304,-0.607391,-0.531342,-0.437653,-0.335632,-0.229706,-0.130432,-0.0472107,0.0170898,0.0651245,0.0940552,0.10495,0.104126,0.10376,0.116425,0.15033,0.209564,0.288025,0.378815,0.469727,0.549774,0.610779,0.645294,0.649658,0.61908,0.555328,0.466614,0.369873,0.27774,0.201904,0.150208,0.124573,0.123169,0.134277,0.15567,0.180023,0.199982,0.204559,0.185913,0.143097,0.0807495,0.00723267,-0.0696411,-0.136963,-0.18866,-0.22168,-0.234192,-0.228973,-0.205566,-0.170807,-0.132324,-0.0980835,-0.0737915,-0.0644531,-0.0678101,-0.0853882,-0.112213,-0.14267,-0.17453,-0.204559,-0.230804,-0.249176,-0.258606,-0.259521,-0.253479,-0.241364,-0.225952,-0.20874,-0.196075,-0.185242,-0.178192,-0.17157,-0.168549,-0.166931,-0.164276,-0.158997,-0.148071,-0.127136,-0.0920105,-0.0432739,0.0146484,0.0770264,0.13797,0.19635,0.247009,0.293427,0.333435,0.369263,0.398163,0.422455,0.445435,0.46698,0.487671,0.502625,0.50708,0.495453,0.469513,0.430878,0.384949,0.333527,0.278442,0.220673,0.160828,0.103271,0.0522766,0.00241089,-0.0500183,-0.111084,-0.180725,-0.254303,-0.32486,-0.391907,-0.453827,-0.509308,-0.555542,-0.591156,-0.616608,-0.631744,-0.638123,-0.641449,-0.645294,-0.648132,-0.649384,-0.644684,-0.626526,-0.587494,-0.519592,-0.425659,-0.31543,-0.19873,-0.0834961,0.0254517,0.12085,0.194733,0.246796,0.277527,0.282013,0.271118,0.263306,0.272797,0.306152,0.365936,0.44342,0.525421,0.598297,0.656403,0.693573,0.702148,0.680634,0.623413,0.530426,0.420319,0.309662,0.214478,0.143311,0.102478,0.0891113,0.094696,0.110016,0.130005,0.14624,0.153656,0.143738,0.106995,0.0445862,-0.0336304,-0.116516,-0.190918,-0.246307,-0.278076,-0.288788,-0.283447,-0.263458,-0.233002,-0.196472,-0.161438,-0.134003,-0.121429,-0.124451,-0.142242,-0.171021,-0.202728,-0.23111,-0.25528,-0.275421,-0.291443,-0.300812,-0.298645,-0.286041,-0.265289,-0.241486,-0.217224,-0.198181,-0.183472,-0.170532,-0.157806,-0.145905,-0.135925,-0.126831,-0.11853,-0.105164,-0.0827942,-0.0493774,0.00134277,0.0640869,0.135132,0.206879,0.276062,0.342102,0.398224,0.444519,0.480042,0.503967,0.517334,0.523102,0.525513,0.530304,0.536316,0.539276,0.535065,0.516937,0.484833,0.438202,0.381653,0.31546,0.239868,0.16272,0.0860291,0.00958252,-0.0631714,-0.130859,-0.193665,-0.254395,-0.315704,-0.378479,-0.443115,-0.503815,-0.55484,-0.601532,-0.641357,-0.668732,-0.682739,-0.687927,-0.687714,-0.67807,-0.659363,-0.63855,-0.621826,-0.607544,-0.591156,-0.570435,-0.539093,-0.491669,-0.41626,-0.3125,-0.185638,-0.0462341,0.094635,0.226318,0.332825,0.408173,0.456573,0.477997,0.472321,0.441498,0.404083,0.381927,0.387268,0.423553,0.485474,0.559418,0.634033,0.694489,0.729645,0.733459,0.704742,0.64032,0.542999,0.421021,0.295746,0.17923,0.084137,0.0227356,-0.00167847,0.00357056,0.0232239,0.0458069,0.0667419,0.0825806,0.0822449,0.0585938,0.00796509,-0.06073,-0.140045,-0.219788,-0.287354,-0.331482,-0.35321,-0.354706,-0.342377,-0.321289,-0.290558,-0.258545,-0.228546,-0.207886,-0.19931,-0.204987,-0.224274,-0.251556,-0.277161,-0.297485,-0.315796,-0.330566,-0.340057,-0.338379,-0.324799,-0.3013,-0.268585,-0.230682,-0.194031,-0.161713,-0.134735,-0.109528,-0.0854797,-0.0628967,-0.0418396,-0.0201721,0.00357056,0.033783,0.0717468,0.120575,0.183197,0.255005,0.329651,0.401123,0.467377,0.522705,0.562439,0.587189,0.601196,0.605713,0.599915,0.586578,0.572998,0.562775,0.551605,0.534515,0.508545,0.467743,0.407166,0.329376,0.243347,0.155945,0.0662842,-0.0230713,-0.107788,-0.187622,-0.257202,-0.320496,-0.379822,-0.434113,-0.485321,-0.534454,-0.582275,-0.623077,-0.651764,-0.671967,-0.685394,-0.687317,-0.67984,-0.663879,-0.639954,-0.609375,-0.573975,-0.54068,-0.513489,-0.490814,-0.468536,-0.440521,-0.40683,-0.369904,-0.324951,-0.263824,-0.177551,-0.0643616,0.0670471,0.205353,0.338318,0.447754,0.517761,0.550751,0.560242,0.552246,0.524292,0.480469,0.436646,0.404449,0.390289,0.413849,0.473663,0.550415,0.618134,0.660431,0.673706,0.658264,0.617004,0.547821,0.451294,0.337799,0.218658,0.102692,0.00668335,-0.0507202,-0.0648804,-0.0500183,-0.0224609,0.00448608,0.0256042,0.0370178,0.0355225,0.0152588,-0.026886,-0.0934753,-0.180786,-0.2742,-0.352386,-0.406189,-0.436493,-0.446136,-0.437225,-0.414703,-0.384796,-0.351044,-0.314606,-0.280396,-0.259521,-0.259155,-0.278015,-0.304047,-0.329712,-0.347656,-0.357666,-0.357941,-0.350677,-0.333466,-0.305542,-0.263397,-0.210266,-0.150269,-0.0963135,-0.049469,-0.00985718,0.0250549,0.0579529,0.087738,0.115997,0.14267,0.16806,0.193817,0.226532,0.271484,0.33255,0.400543,0.469696,0.530487,0.577545,0.60675,0.616333,0.610535,0.592316,0.571075,0.547028,0.519745,0.493073,0.470551,0.449402,0.422455,0.384949,0.33078,0.258392,0.165039,0.0646362,-0.030304,-0.113831,-0.186279,-0.24762,-0.300171,-0.347931,-0.392914,-0.433472,-0.469025,-0.501434,-0.534729,-0.568817,-0.601044,-0.626099,-0.638702,-0.636719,-0.620667,-0.593964,-0.560974,-0.529388,-0.498352,-0.463593,-0.425598,-0.38974,-0.360535,-0.340973,-0.332306,-0.330414,-0.324738,-0.305603,-0.269653,-0.217743,-0.14386,-0.0424194,0.0802002,0.211273,0.338867,0.447571,0.522064,0.556824,0.561859,0.545532,0.504547,0.446014,0.387482,0.347931,0.335785,0.358276,0.415344,0.493011,0.571381,0.636505,0.678589,0.688934,0.664856,0.606201,0.513672,0.393677,0.261749,0.132172,0.022644,-0.049469,-0.0777283,-0.0723877,-0.0471497,-0.0146179,0.0176392,0.0426941,0.0492249,0.028717,-0.0230103,-0.103851,-0.205292,-0.316925,-0.417358,-0.493286,-0.53949,-0.557434,-0.547791,-0.51825,-0.474152,-0.423492,-0.369171,-0.321136,-0.289764,-0.282593,-0.295166,-0.318665,-0.342102,-0.359497,-0.366028,-0.360168,-0.341187,-0.309387,-0.261963,-0.202271,-0.133667,-0.0638123,0,0.052887,0.0934753,0.12558,0.150421,0.172638,0.191559,0.208588,0.226807,0.248383,0.277466,0.318329,0.370575,0.429474,0.486725,0.537689,0.573822,0.590851,0.588104,0.569244,0.539307,0.504486,0.473785,0.449371,0.42807,0.409088,0.389038,0.364746,0.327545,0.276947,0.209839,0.126404,0.033783,-0.0570374,-0.134308,-0.194733,-0.238556,-0.272522,-0.303833,-0.337189,-0.373047,-0.410217,-0.446777,-0.483734,-0.519012,-0.552246,-0.579956,-0.594849,-0.594025,-0.575928,-0.546326,-0.512756,-0.48056,-0.450928,-0.424347,-0.40274,-0.383453,-0.367279,-0.354004,-0.349213,-0.353271,-0.359253,-0.357635,-0.343933,-0.31546,-0.265686,-0.190491,-0.0873108,0.0327759,0.163544,0.291382,0.404144,0.48877,0.535217,0.548981,0.53598,0.499695,0.44635,0.392975,0.357727,0.353302,0.37793,0.437866,0.523682,0.614929,0.69574,0.753143,0.78064,0.769684,0.715302,0.618225,0.485748,0.339417,0.195923,0.0697937,-0.020813,-0.0679016,-0.0754089,-0.0598755,-0.0296936,0.00311279,0.0267944,0.0289917,-0.000152588,-0.0651245,-0.160736,-0.278015,-0.404297,-0.518311,-0.604004,-0.655365,-0.674988,-0.660767,-0.61969,-0.560608,-0.492371,-0.428436,-0.374481,-0.340485,-0.327698,-0.331635,-0.345337,-0.355469,-0.356873,-0.348236,-0.325989,-0.29126,-0.243744,-0.186005,-0.120667,-0.0529175,0.0131531,0.0716858,0.118683,0.156738,0.188873,0.216095,0.239807,0.258514,0.275696,0.290527,0.30658,0.325134,0.347809,0.378113,0.412964,0.447266,0.477997,0.503632,0.520569,0.524872,0.515564,0.496155,0.469574,0.440735,0.412537,0.391144,0.373901,0.358582,0.337463,0.305725,0.263153,0.207397,0.141815,0.0673828,-0.00857544,-0.077301,-0.13562,-0.18219,-0.21814,-0.245667,-0.272736,-0.305878,-0.346191,-0.390076,-0.435944,-0.479858,-0.517426,-0.544617,-0.560669,-0.565033,-0.561157,-0.547882,-0.528534,-0.506287,-0.485474,-0.469238,-0.455627,-0.445251,-0.435242,-0.420685,-0.40332,-0.385651,-0.371948,-0.361176,-0.354065,-0.34549,-0.329163,-0.297913,-0.24234,-0.155945,-0.0412903,0.0957336,0.239044,0.375092,0.491119,0.577759,0.631012,0.652496,0.640381,0.596283,0.533173,0.468994,0.42865,0.425873,0.461273,0.533386,0.621887,0.710571,0.783905,0.832794,0.844604,0.80838,0.720276,0.585083,0.414551,0.231018,0.0601501,-0.0787048,-0.16687,-0.205688,-0.205566,-0.183472,-0.14624,-0.110931,-0.0857544,-0.0868225,-0.12439,-0.203369,-0.313202,-0.4375,-0.558075,-0.655426,-0.716705,-0.741394,-0.730438,-0.689331,-0.623444,-0.54364,-0.457916,-0.376099,-0.310089,-0.267242,-0.247406,-0.242645,-0.243774,-0.241425,-0.234131,-0.22049,-0.20163,-0.174316,-0.137329,-0.0890503,-0.0300903,0.0333557,0.093689,0.146271,0.18869,0.22229,0.250793,0.273926,0.290131,0.299194,0.301941,0.300018,0.298981,0.304535,0.317139,0.338806,0.364044,0.388306,0.409973,0.427948,0.443481,0.453613,0.457825,0.455292,0.442413,0.422791,0.399139,0.376801,0.357086,0.335266,0.308624,0.2724,0.227936,0.175812,0.117554,0.0588684,0.00119019,-0.0562134,-0.111298,-0.163635,-0.207672,-0.245575,-0.281586,-0.319305,-0.360168,-0.40329,-0.447479,-0.487427,-0.522186,-0.546478,-0.561584,-0.569885,-0.572845,-0.570526,-0.560333,-0.542175,-0.51889,-0.493286,-0.466461,-0.439972,-0.410675,-0.378601,-0.342438,-0.307281,-0.281464,-0.269012,-0.264587,-0.264648,-0.265198,-0.258728,-0.231079,-0.17453,-0.0856323,0.02948,0.169312,0.320099,0.468506,0.598724,0.690338,0.734222,0.734283,0.695679,0.622314,0.532166,0.451782,0.397736,0.377502,0.397736,0.462769,0.553589,0.647888,0.728607,0.78009,0.787048,0.737518,0.630035,0.475281,0.29483,0.110229,-0.0612183,-0.198395,-0.282959,-0.314941,-0.30658,-0.266144,-0.210571,-0.157715,-0.126343,-0.125977,-0.162292,-0.234741,-0.331696,-0.442902,-0.551056,-0.635742,-0.685486,-0.702057,-0.682678,-0.629395,-0.55069,-0.462524,-0.375366,-0.296173,-0.232513,-0.190582,-0.169525,-0.164246,-0.166107,-0.168549,-0.169312,-0.162933,-0.14563,-0.118134,-0.0799255,-0.0343323,0.0177307,0.072876,0.124939,0.167297,0.201813,0.228058,0.249664,0.263458,0.271973,0.277954,0.280609,0.281128,0.281952,0.285614,0.291534,0.304688,0.321716,0.339783,0.359039,0.376312,0.388092,0.394165,0.394165,0.38974,0.377258,0.361511,0.344482,0.325378,0.30777,0.290833,0.27182,0.249451,0.218292,0.174896,0.119232,0.0560608,-0.0078125,-0.0683899,-0.122253,-0.165802,-0.202271,-0.234131,-0.262878,-0.289978,-0.316071,-0.346191,-0.380035,-0.417511,-0.455139,-0.489471,-0.514374,-0.529358,-0.536072,-0.534851,-0.526428,-0.511871,-0.489258,-0.45993,-0.425751,-0.390137,-0.356384,-0.327118,-0.303131,-0.281128,-0.261963,-0.249023,-0.245361,-0.24939,-0.257111,-0.259918,-0.25,-0.214478,-0.145325,-0.0386353,0.0960083,0.244873,0.392761,0.528748,0.636169,0.701355,0.726685,0.710785,0.652771,0.557983,0.452423,0.368469,0.322144,0.323547,0.372009,0.455383,0.551331,0.643188,0.713318,0.749756,0.7388,0.66626,0.535553,0.35907,0.165894,-0.0216675,-0.180511,-0.290344,-0.342865,-0.346619,-0.315796,-0.260773,-0.197754,-0.139374,-0.10434,-0.10968,-0.158478,-0.243958,-0.351868,-0.464386,-0.56189,-0.627136,-0.65509,-0.647278,-0.60614,-0.533875,-0.443481,-0.348907,-0.260925,-0.189941,-0.143585,-0.123169,-0.122253,-0.128876,-0.133942,-0.133667,-0.126984,-0.113892,-0.0927124,-0.0635986,-0.0279846,0.0114746,0.0531921,0.090332,0.118805,0.137451,0.153168,0.168274,0.184113,0.200562,0.213074,0.222382,0.226746,0.228638,0.230682,0.233765,0.239624,0.24826,0.256989,0.267181,0.281891,0.299835,0.316498,0.331268,0.339142,0.342316,0.339661,0.335785,0.332977,0.330933,0.326843,0.315704,0.299103,0.276123,0.247559,0.206604,0.156158,0.0975037,0.0344543,-0.0280762,-0.0829468,-0.122772,-0.153412,-0.177002,-0.202972,-0.230103,-0.260284,-0.293213,-0.330017,-0.370575,-0.41391,-0.454102,-0.48941,-0.514862,-0.527344,-0.527527,-0.518341,-0.502197,-0.479706,-0.450439,-0.41864,-0.38446,-0.349274,-0.315735,-0.287567,-0.267822,-0.251648,-0.239044,-0.232086,-0.233917,-0.238678,-0.241516,-0.238892,-0.224762,-0.187042,-0.114471,-0.00430298,0.13028,0.275482,0.419769,0.549225,0.643616,0.692993,0.699677,0.667389,0.597473,0.493195,0.386841,0.302917,0.260651,0.265198,0.320312,0.411682,0.513611,0.606262,0.672729,0.700867,0.678497,0.596558,0.457611,0.279266,0.0933533,-0.0825806,-0.228149,-0.320435,-0.355255,-0.340485,-0.291718,-0.222015,-0.145752,-0.0810547,-0.0455322,-0.0538025,-0.105743,-0.192627,-0.299042,-0.407593,-0.499664,-0.557526,-0.579041,-0.568634,-0.524292,-0.453949,-0.370087,-0.286316,-0.213562,-0.156311,-0.122284,-0.111694,-0.116852,-0.128387,-0.137878,-0.141815,-0.143219,-0.138519,-0.127106,-0.11087,-0.085968,-0.0567627,-0.0234985,0.0116882,0.0437012,0.0716248,0.0984192,0.125763,0.151733,0.174316,0.191284,0.201813,0.204865,0.203888,0.202332,0.203308,0.210205,0.22406,0.24115,0.261292,0.284851,0.309174,0.330231,0.346832,0.35611,0.35907,0.355469,0.352081,0.349213,0.350037,0.34964,0.346039,0.332611,0.309326,0.274445,0.227081,0.170593,0.106293,0.0400391,-0.0196228,-0.0691528,-0.103333,-0.124939,-0.139862,-0.154266,-0.176239,-0.207581,-0.249451,-0.298981,-0.355469,-0.412811,-0.466187,-0.509308,-0.535858,-0.544373,-0.534149,-0.509949,-0.475677,-0.437225,-0.398865,-0.364044,-0.334839,-0.312073,-0.295959,-0.287079,-0.282501,-0.278015,-0.269836,-0.262115,-0.254089,-0.246765,-0.23645,-0.225189,-0.210846,-0.187836,-0.146545,-0.0794067,0.0144958,0.129852,0.258179,0.386414,0.504028,0.590912,0.634033,0.636444,0.604706,0.540131,0.450165,0.355621,0.282532,0.246277,0.253906,0.313049,0.409424,0.515656,0.610565,0.676117,0.701813,0.676056,0.589294,0.450653,0.277679,0.0983582,-0.0694885,-0.208038,-0.29483,-0.320435,-0.297516,-0.240509,-0.167419,-0.0930786,-0.0360718,-0.0123291,-0.0300903,-0.0912476,-0.185303,-0.299103,-0.413361,-0.51004,-0.571014,-0.594086,-0.584259,-0.541412,-0.472809,-0.391541,-0.309479,-0.23938,-0.181976,-0.145325,-0.13147,-0.135193,-0.147247,-0.157593,-0.165314,-0.169312,-0.167297,-0.156097,-0.136047,-0.108612,-0.0729675,-0.0309448,0.0153198,0.0583801,0.0953064,0.128235,0.157104,0.18219,0.201538,0.214264,0.221039,0.219757,0.21405,0.208801,0.206757,0.213074,0.228424,0.251343,0.278595,0.308899,0.337799,0.359955,0.37262,0.375946,0.369629,0.352814,0.332306,0.312775,0.300262,0.296448,0.296173,0.297424,0.293793,0.278137,0.24588,0.194427,0.131744,0.0628357,-0.0038147,-0.0626221,-0.107483,-0.137451,-0.15567,-0.168427,-0.180664,-0.19812,-0.22464,-0.265228,-0.317261,-0.377625,-0.436951,-0.487091,-0.523376,-0.541809,-0.540466,-0.526154,-0.498505,-0.461395,-0.419128,-0.375671,-0.34021,-0.312408,-0.291748,-0.2771,-0.267761,-0.259674,-0.250732,-0.240601,-0.229706,-0.220062,-0.21167,-0.200897,-0.186493,-0.169556,-0.145477,-0.106232,-0.0395203,0.0554504,0.174622,0.304199,0.428284,0.538147,0.61673,0.656433,0.652985,0.613312,0.542389,0.444336,0.343506,0.263885,0.223999,0.233337,0.291931,0.389221,0.492645,0.583466,0.645447,0.665283,0.635376,0.547302,0.406281,0.226318,0.040863,-0.127747,-0.261902,-0.34491,-0.369415,-0.343811,-0.285034,-0.209351,-0.132812,-0.0737915,-0.0435486,-0.0563354,-0.113678,-0.20459,-0.314331,-0.419678,-0.507507,-0.561462,-0.577271,-0.560883,-0.515015,-0.444336,-0.358917,-0.272797,-0.197388,-0.138855,-0.101807,-0.0866699,-0.088623,-0.0992432,-0.109589,-0.116302,-0.121643,-0.123322,-0.117218,-0.103333,-0.0799255,-0.0472717,-0.00863647,0.032074,0.0718079,0.106018,0.136353,0.165741,0.191681,0.211945,0.223572,0.226318,0.221954,0.21106,0.201752,0.195282,0.195435,0.203857,0.220673,0.244019,0.273743,0.306519,0.335632,0.355316,0.362854,0.3573,0.339783,0.313416,0.288483,0.267029,0.251343,0.240021,0.231659,0.223633,0.213287,0.194214,0.162292,0.11615,0.0611877,0.00253296,-0.0514221,-0.0948486,-0.12558,-0.147858,-0.165375,-0.184937,-0.210114,-0.242767,-0.283234,-0.329651,-0.381653,-0.432709,-0.476624,-0.505157,-0.512207,-0.49939,-0.468231,-0.428284,-0.382782,-0.338104,-0.298218,-0.268463,-0.249451,-0.239044,-0.235718,-0.234741,-0.2341,-0.227448,-0.213348,-0.188965,-0.161041,-0.138672,-0.121277,-0.108917,-0.0984802,-0.0907593,-0.0770264,-0.0462036,0.0123291,0.0965881,0.197266,0.30481,0.4104,0.50354,0.565582,0.587708,0.572723,0.522675,0.43927,0.338501,0.248596,0.188446,0.170715,0.198029,0.266693,0.361023,0.457397,0.535614,0.580109,0.581299,0.531677,0.423767,0.270142,0.0962524,-0.0690002,-0.209625,-0.309814,-0.354279,-0.344269,-0.292999,-0.216339,-0.131836,-0.0539551,-0.00296021,0.00646973,-0.0328369,-0.111359,-0.213226,-0.32309,-0.423706,-0.497223,-0.530487,-0.526825,-0.490448,-0.425049,-0.338806,-0.246918,-0.166321,-0.106079,-0.0676575,-0.0526733,-0.059021,-0.0778198,-0.100891,-0.118591,-0.131287,-0.137817,-0.134369,-0.117676,-0.0906982,-0.0574036,-0.02005,0.0189819,0.0570679,0.090271,0.116486,0.139923,0.1604,0.175018,0.182007,0.183624,0.178986,0.171234,0.161224,0.154205,0.150757,0.155884,0.170044,0.191437,0.221405,0.256012,0.289398,0.314026,0.327911,0.327881,0.315155,0.289703,0.259949,0.230042,0.207306,0.193451,0.189026,0.19281,0.201538,0.207184,0.203461,0.183319,0.146729,0.0956116,0.0362244,-0.0236206,-0.0761108,-0.11972,-0.151093,-0.17334,-0.189392,-0.204865,-0.221741,-0.245026,-0.273163,-0.307648,-0.344849,-0.381287,-0.410767,-0.426514,-0.427155,-0.413574,-0.390076,-0.360199,-0.325775,-0.294037,-0.263611,-0.239105,-0.219543,-0.206421,-0.196411,-0.188049,-0.179474,-0.167908,-0.155121,-0.142181,-0.134277,-0.133789,-0.140472,-0.14801,-0.152435,-0.147308,-0.123199,-0.0700073,0.0127869,0.117706,0.231171,0.345276,0.445923,0.517761,0.548492,0.539154,0.491669,0.412872,0.313049,0.214264,0.144714,0.11853,0.138885,0.205353,0.303986,0.412323,0.507019,0.571655,0.593109,0.562225,0.47287,0.333923,0.165619,-0.00457764,-0.150696,-0.261353,-0.321136,-0.322693,-0.278381,-0.202942,-0.114471,-0.0297546,0.0328369,0.0556335,0.02948,-0.0415649,-0.14267,-0.255981,-0.364746,-0.452057,-0.502991,-0.512421,-0.486969,-0.429962,-0.347656,-0.254852,-0.16983,-0.105438,-0.0658264,-0.0501709,-0.0580444,-0.0812378,-0.108551,-0.133789,-0.151794,-0.161377,-0.160339,-0.143951,-0.113831,-0.077179,-0.0373535,0.00253296,0.0391846,0.0689392,0.0920105,0.109894,0.124786,0.135437,0.141602,0.143646,0.143158,0.143433,0.141113,0.140045,0.141876,0.148438,0.161163,0.181091,0.207306,0.237701,0.268097,0.293335,0.309052,0.313751,0.310181,0.295532,0.274933,0.253235,0.232941,0.218445,0.210632,0.209564,0.21405,0.2164,0.212189,0.194366,0.162567,0.118195,0.0657654,0.0122375,-0.0391235,-0.0813904,-0.115295,-0.138367,-0.154327,-0.167511,-0.182617,-0.203735,-0.233002,-0.271179,-0.314087,-0.358154,-0.397308,-0.424835,-0.436371,-0.431427,-0.411682,-0.378418,-0.33844,-0.295654,-0.256561,-0.2258,-0.206482,-0.197876,-0.197906,-0.202454,-0.207123,-0.208923,-0.206116,-0.197479,-0.185516,-0.175781,-0.16925,-0.161713,-0.154327,-0.143433,-0.121979,-0.0804138,-0.0133667,0.0775757,0.179688,0.285248,0.382477,0.461761,0.507568,0.514099,0.486877,0.430267,0.349365,0.257904,0.184082,0.145691,0.149689,0.197449,0.280914,0.381561,0.475067,0.546814,0.580322,0.56723,0.503479,0.387268,0.231506,0.0650635,-0.0838013,-0.202515,-0.277679,-0.298492,-0.268433,-0.20401,-0.123108,-0.0412292,0.0244751,0.0565796,0.0443115,-0.0163879,-0.111145,-0.220764,-0.328888,-0.419617,-0.478912,-0.496674,-0.47934,-0.433044,-0.362946,-0.278351,-0.195343,-0.13147,-0.091095,-0.0752563,-0.0782471,-0.0962219,-0.121429,-0.142883,-0.156403,-0.162231,-0.161163,-0.149261,-0.126343,-0.0970154,-0.0647278,-0.0328369,-0.00106812,0.0291138,0.0566406,0.0814819,0.104675,0.127472,0.144135,0.152649,0.156097,0.154114,0.14801,0.138641,0.130157,0.128235,0.134979,0.155029,0.185455,0.22464,0.268433,0.308105,0.335907,0.349274,0.349426,0.33429,0.306641,0.26944,0.23349,0.202728,0.185028,0.180237,0.186707,0.200439,0.212433,0.214417,0.201324,0.171143,0.126404,0.071106,0.0112,-0.0464172,-0.0981445,-0.138947,-0.170654,-0.191406,-0.207672,-0.222229,-0.240387,-0.264862,-0.294403,-0.3255,-0.356873,-0.381866,-0.3974,-0.401672,-0.394012,-0.37616,-0.349365,-0.31839,-0.287292,-0.260071,-0.239868,-0.226013,-0.21814,-0.214081,-0.212524,-0.209015,-0.203369,-0.19516,-0.183838,-0.173615,-0.166931,-0.164673,-0.165375,-0.167084,-0.156891,-0.125641,-0.0688171,0.013916,0.115356,0.227783,0.333588,0.420105,0.481598,0.512482,0.507629,0.466675,0.394653,0.304169,0.221863,0.165466,0.150177,0.181641,0.255096,0.353149,0.449951,0.529724,0.580994,0.589294,0.545685,0.450653,0.314026,0.152924,-0.00582886,-0.140961,-0.234314,-0.275146,-0.268036,-0.221893,-0.153442,-0.0736389,-0.00265503,0.0369263,0.0379944,-0.00534058,-0.0844116,-0.188171,-0.299255,-0.39502,-0.466003,-0.499878,-0.499664,-0.465851,-0.404022,-0.325836,-0.242645,-0.173004,-0.122253,-0.0937195,-0.0890503,-0.0988464,-0.117279,-0.135406,-0.150757,-0.160309,-0.161804,-0.153229,-0.131958,-0.103333,-0.0708923,-0.0349731,0,0.0322266,0.0598755,0.0852051,0.107971,0.126984,0.140839,0.147675,0.149994,0.148102,0.142242,0.133789,0.126221,0.126434,0.133789,0.151093,0.179321,0.216522,0.255768,0.293701,0.322632,0.339294,0.341187,0.329315,0.304962,0.273926,0.243958,0.218567,0.203949,0.201752,0.211334,0.225952,0.238708,0.242493,0.230377,0.199799,0.150818,0.0915222,0.0256042,-0.0365295,-0.0920105,-0.136047,-0.166321,-0.186157,-0.198578,-0.210266,-0.223083,-0.243195,-0.272125,-0.308319,-0.346893,-0.382538,-0.40979,-0.425323,-0.427368,-0.415833,-0.392822,-0.362152,-0.327606,-0.294464,-0.266327,-0.246155,-0.233612,-0.22702,-0.224426,-0.221802,-0.215881,-0.20816,-0.197174,-0.187958,-0.181427,-0.181793,-0.182404,-0.178986,-0.161713,-0.123444,-0.0613403,0.025177,0.129364,0.24292,0.351318,0.443604,0.512787,0.546234,0.540131,0.491577,0.414978,0.323395,0.240021,0.184998,0.169098,0.195129,0.260773,0.351532,0.448181,0.532318,0.587067,0.597748,0.553497,0.45755,0.320801,0.158508,-0.00247192,-0.139648,-0.237579,-0.286682,-0.287994,-0.245514,-0.17392,-0.0904541,-0.015625,0.026947,0.0297546,-0.0102539,-0.0849915,-0.186981,-0.296112,-0.39502,-0.471039,-0.510437,-0.513489,-0.47821,-0.413452,-0.33255,-0.24826,-0.176025,-0.124359,-0.0941162,-0.0881348,-0.0978699,-0.117889,-0.141388,-0.161713,-0.174835,-0.175293,-0.162415,-0.137329,-0.105225,-0.0690918,-0.0319519,0.00366211,0.0357361,0.063324,0.0873108,0.10672,0.122192,0.133575,0.141693,0.147369,0.150177,0.151581,0.1492,0.148224,0.150818,0.159393,0.175659,0.200836,0.233002,0.267822,0.3013,0.328156,0.343719,0.346893,0.337189,0.317139,0.290741,0.261536,0.236511,0.217957,0.210754,0.21344,0.221039,0.226257,0.223694,0.208435,0.175812,0.127594,0.0694275,0.00845337,-0.0494385,-0.100586,-0.142029,-0.171844,-0.19101,-0.204498,-0.216736,-0.231598,-0.252533,-0.281738,-0.318939,-0.358795,-0.394318,-0.421448,-0.435791,-0.435242,-0.419769,-0.39325,-0.358917,-0.321564,-0.2854,-0.255157,-0.233704,-0.221191,-0.216736,-0.2164,-0.217804,-0.216888,-0.212372,-0.203247,-0.194366,-0.188904,-0.18515,-0.181549,-0.173706,-0.153442,-0.109528,-0.042572,0.0441895,0.147858,0.259949,0.36618,0.455933,0.519958,0.551178,0.541626,0.49292,0.417572,0.328888,0.249237,0.199371,0.18573,0.212311,0.278564,0.367767,0.45932,0.537933,0.5896,0.595093,0.546753,0.446991,0.307404,0.144897,-0.0153198,-0.151947,-0.251068,-0.302765,-0.302765,-0.263611,-0.196289,-0.113892,-0.0412292,0.00308228,0.00588989,-0.0317383,-0.104675,-0.204071,-0.311066,-0.40921,-0.482239,-0.521576,-0.524231,-0.489838,-0.42392,-0.339447,-0.252563,-0.176727,-0.119537,-0.0858765,-0.0742798,-0.0830688,-0.101379,-0.124084,-0.144623,-0.157501,-0.159546,-0.14682,-0.120636,-0.0877991,-0.0512695,-0.013092,0.0242004,0.0562134,0.0830688,0.106232,0.124573,0.137115,0.146881,0.153229,0.156677,0.159393,0.158997,0.15567,0.152435,0.15329,0.159271,0.173126,0.194641,0.224823,0.257812,0.289001,0.315369,0.332245,0.33725,0.330688,0.311859,0.285553,0.256348,0.23053,0.209778,0.199982,0.199982,0.206329,0.211884,0.211121,0.198242,0.16861,0.124603,0.0704041,0.00991821,-0.0494385,-0.104675,-0.149017,-0.184601,-0.209015,-0.226013,-0.238922,-0.25177,-0.270569,-0.296173,-0.329102,-0.363922,-0.395844,-0.419891,-0.432922,-0.43396,-0.420532,-0.396484,-0.363983,-0.327484,-0.290802,-0.259857,-0.236145,-0.220734,-0.21167,-0.208923,-0.207245,-0.205688,-0.201813,-0.196045,-0.18866,-0.182678,-0.178345,-0.170654,-0.15329,-0.119293,-0.0637207,0.0148315,0.111359,0.21814,0.32431,0.419189,0.492706,0.540985,0.555481,0.52951,0.468506,0.386475,0.29892,0.229065,0.191895,0.195129,0.234528,0.30249,0.387695,0.471191,0.53894,0.572052,0.557098,0.487213,0.371735,0.223907,0.0623474,-0.0887756,-0.210419,-0.289398,-0.321014,-0.307495,-0.254517,-0.176208,-0.0918884,-0.0241394,0.00653076,-0.00473022,-0.0563354,-0.139771,-0.240814,-0.344513,-0.433899,-0.498474,-0.525513,-0.511505,-0.459167,-0.379028,-0.288422,-0.201202,-0.132263,-0.0854797,-0.0620422,-0.0626221,-0.0778809,-0.103638,-0.13205,-0.154907,-0.165192,-0.158478,-0.134918,-0.100891,-0.061676,-0.0217896,0.0161133,0.0504456,0.07901,0.100891,0.116486,0.12619,0.13092,0.135498,0.140289,0.147156,0.153229,0.157074,0.158356,0.160339,0.165741,0.177612,0.193542,0.216125,0.241852,0.267242,0.290527,0.309326,0.32016,0.32016,0.309448,0.290558,0.26712,0.243744,0.225098,0.211823,0.207611,0.208374,0.211029,0.209076,0.198029,0.172974,0.134155,0.0820923,0.0242004,-0.0355835,-0.0903931,-0.136902,-0.173889,-0.201538,-0.220764,-0.235382,-0.247192,-0.262207,-0.284058,-0.312622,-0.345703,-0.378967,-0.406128,-0.4245,-0.430664,-0.424561,-0.407318,-0.380951,-0.347504,-0.311432,-0.277863,-0.249512,-0.228546,-0.214783,-0.208038,-0.204132,-0.20105,-0.198822,-0.196777,-0.194366,-0.191925,-0.189087,-0.182617,-0.164673,-0.126434,-0.0637512,0.0177917,0.114746,0.223907,0.335205,0.431732,0.504883,0.548584,0.560333,0.532593,0.471069,0.387756,0.300873,0.233978,0.196472,0.196777,0.233978,0.302155,0.385864,0.466003,0.531555,0.564606,0.55011,0.481537,0.367554,0.225555,0.0681152,-0.0812378,-0.205627,-0.289001,-0.322601,-0.312469,-0.265991,-0.193054,-0.109894,-0.0396729,-0.00689697,-0.0144043,-0.0580444,-0.133087,-0.227631,-0.328613,-0.417236,-0.480682,-0.508636,-0.500336,-0.454803,-0.378632,-0.291168,-0.207672,-0.139008,-0.0909729,-0.0636597,-0.0605774,-0.0750732,-0.0976257,-0.122742,-0.143494,-0.155121,-0.151093,-0.129913,-0.0975037,-0.0631104,-0.0267334,0.00717163,0.0402222,0.0674744,0.0870972,0.103638,0.115082,0.124817,0.13205,0.141541,0.151459,0.161957,0.167938,0.170105,0.171295,0.17511,0.183136,0.195343,0.213562,0.236023,0.260712,0.283569,0.303558,0.317566,0.32312,0.316986,0.301849,0.280396,0.258667,0.238983,0.223297,0.212738,0.208008,0.203522,0.195862,0.178986,0.151581,0.111359,0.0629578,0.00863647,-0.0460815,-0.0971375,-0.137512,-0.171234,-0.197906,-0.220032,-0.238129,-0.2565,-0.277191,-0.302094,-0.330719,-0.361664,-0.391052,-0.412323,-0.424194,-0.422211,-0.410278,-0.388672,-0.362732,-0.331757,-0.300049,-0.2724,-0.248688,-0.230103,-0.21814,-0.211456,-0.208099,-0.204376,-0.20105,-0.196564,-0.195068,-0.195343,-0.19516,-0.184937,-0.156525,-0.102997,-0.0249634,0.068512,0.172485,0.281097,0.385162,0.471313,0.529144,0.555756,0.545074,0.496185,0.419342,0.331848,0.257477,0.211823,0.20105,0.223572,0.277893,0.354645,0.439026,0.514893,0.563202,0.570374,0.522705,0.424957,0.292664,0.139984,-0.0133667,-0.148926,-0.252625,-0.308258,-0.316711,-0.284637,-0.220612,-0.140686,-0.0626221,-0.0133667,-0.00473022,-0.0350342,-0.0964355,-0.182678,-0.283569,-0.38324,-0.46463,-0.512268,-0.520294,-0.489685,-0.424774,-0.339355,-0.250916,-0.171448,-0.110931,-0.0681763,-0.0498962,-0.0559998,-0.0782166,-0.108612,-0.137604,-0.158356,-0.165955,-0.154846,-0.127258,-0.0923767,-0.052887,-0.0127258,0.0287781,0.0666199,0.0949097,0.112274,0.123871,0.129913,0.132446,0.134796,0.13916,0.14444,0.150909,0.15506,0.161377,0.171509,0.186218,0.203735,0.223206,0.244812,0.266479,0.287079,0.304474,0.315948,0.321198,0.315033,0.302704,0.284698,0.267029,0.250305,0.235046,0.221863,0.211243,0.203888,0.194458,0.178528,0.153931,0.118408,0.0749817,0.0261841,-0.0250244,-0.0747986,-0.117279,-0.15274,-0.184448,-0.212372,-0.237152,-0.25824,-0.282318,-0.307343,-0.335754,-0.364319,-0.389954,-0.408783,-0.417999,-0.417999,-0.408508,-0.391479,-0.371033,-0.346893,-0.320801,-0.298126,-0.280182,-0.264923,-0.254303,-0.24585,-0.239899,-0.233978,-0.228088,-0.222382,-0.21933,-0.216614,-0.209656,-0.187775,-0.144836,-0.0795593,0.00701904,0.108673,0.219116,0.329285,0.428436,0.503204,0.549011,0.56073,0.535828,0.479218,0.404419,0.328674,0.27121,0.241302,0.245026,0.281036,0.343231,0.419922,0.493347,0.549835,0.573822,0.554199,0.484406,0.37384,0.235809,0.0842896,-0.0602722,-0.181427,-0.264221,-0.301727,-0.297729,-0.258392,-0.195221,-0.124817,-0.0643005,-0.0339661,-0.0400085,-0.0794067,-0.146545,-0.234039,-0.331116,-0.41864,-0.482574,-0.513458,-0.508392,-0.46936,-0.400543,-0.317902,-0.233185,-0.158936,-0.102478,-0.0658264,-0.0548096,-0.064209,-0.0875244,-0.116272,-0.143799,-0.163055,-0.168854,-0.156464,-0.129669,-0.0930176,-0.0512085,-0.00610352,0.0397644,0.0777893,0.105927,0.124023,0.13443,0.138947,0.138306,0.136322,0.136536,0.138947,0.14386,0.153015,0.166229,0.186157,0.210266,0.236389,0.263153,0.288208,0.309967,0.323944,0.331329,0.330994,0.324585,0.310883,0.294769,0.277893,0.263947,0.253174,0.243835,0.235229,0.22644,0.21463,0.193542,0.16272,0.12149,0.0744324,0.0230713,-0.028717,-0.0768738,-0.118195,-0.151031,-0.177917,-0.202606,-0.226013,-0.250153,-0.278351,-0.311798,-0.34729,-0.381348,-0.412292,-0.434113,-0.44339,-0.440948,-0.425201,-0.402374,-0.373901,-0.345215,-0.317749,-0.295959,-0.282227,-0.274353,-0.269348,-0.266479,-0.264648,-0.260986,-0.25473,-0.247131,-0.23877,-0.228088,-0.211761,-0.179962,-0.127472,-0.0536804,0.0368042,0.138794,0.249756,0.355682,0.447266,0.514801,0.553345,0.5578,0.526703,0.468231,0.396698,0.327454,0.280975,0.261292,0.274414,0.31665,0.381989,0.454712,0.520355,0.567932,0.579193,0.544922,0.463318,0.344635,0.202728,0.0525513,-0.0862427,-0.199738,-0.271973,-0.300476,-0.289124,-0.245453,-0.182556,-0.115021,-0.0645752,-0.0455322,-0.06073,-0.106628,-0.178253,-0.265228,-0.356171,-0.434204,-0.487732,-0.508179,-0.495392,-0.450867,-0.382324,-0.303284,-0.225952,-0.159546,-0.108002,-0.0756836,-0.0646362,-0.0723267,-0.0907593,-0.113983,-0.136261,-0.151184,-0.154358,-0.143158,-0.120941,-0.0919495,-0.0562744,-0.0164795,0.0261536,0.063446,0.0942688,0.117065,0.133789,0.143707,0.149902,0.15274,0.154541,0.156464,0.157501,0.161804,0.171997,0.189087,0.21225,0.23938,0.267395,0.295471,0.318237,0.334564,0.34259,0.341675,0.332672,0.318268,0.299561,0.282288,0.267395,0.256561,0.246216,0.236877,0.226654,0.20929,0.18277,0.144989,0.0965881,0.0425415,-0.0142822,-0.0667419,-0.112366,-0.145142,-0.169678,-0.187042,-0.20459,-0.219788,-0.239899,-0.268463,-0.305176,-0.347015,-0.389923,-0.428558,-0.456207,-0.468658,-0.464844,-0.444794,-0.412445,-0.37439,-0.333679,-0.296661,-0.268097,-0.252838,-0.247894,-0.250916,-0.261261,-0.273743,-0.284149,-0.289398,-0.290466,-0.285248,-0.267975,-0.230194,-0.163757,-0.074585,0.0312195,0.14386,0.260437,0.369171,0.457703,0.519592,0.551239,0.552246,0.517334,0.454254,0.379517,0.313538,0.273499,0.261566,0.282867,0.331757,0.401917,0.475677,0.541138,0.58725,0.59845,0.564331,0.48053,0.360748,0.21936,0.0704956,-0.0679016,-0.181915,-0.255157,-0.283081,-0.275421,-0.235382,-0.175385,-0.109192,-0.060791,-0.0439148,-0.0609741,-0.106232,-0.174957,-0.259735,-0.349915,-0.42749,-0.479553,-0.499054,-0.486725,-0.442566,-0.374725,-0.299347,-0.229401,-0.171021,-0.127686,-0.10025,-0.0927124,-0.0997009,-0.115662,-0.132874,-0.147034,-0.154541,-0.150696,-0.132324,-0.107056,-0.0805664,-0.0534058,-0.0247498,0.00491333,0.0303955,0.0508423,0.0686035,0.085907,0.102722,0.120148,0.136963,0.155548,0.172211,0.185791,0.195343,0.205994,0.219757,0.234741,0.25058,0.268097,0.285889,0.303467,0.318329,0.329651,0.33606,0.336975,0.332031,0.322845,0.31369,0.305237,0.297485,0.286194,0.272522,0.25415,0.228333,0.191925,0.143494,0.0858765,0.0245667,-0.0372925,-0.0933533,-0.137329,-0.167358,-0.184753,-0.195984,-0.204559,-0.212738,-0.226868,-0.250519,-0.284851,-0.32901,-0.377136,-0.424194,-0.462311,-0.485046,-0.489349,-0.475403,-0.447571,-0.408997,-0.364197,-0.319092,-0.279205,-0.251495,-0.235748,-0.231567,-0.240021,-0.257141,-0.276764,-0.295685,-0.308563,-0.312683,-0.299316,-0.256775,-0.181061,-0.0766907,0.0448303,0.175537,0.304169,0.417084,0.504059,0.558197,0.575867,0.557922,0.504395,0.429352,0.349823,0.288208,0.258057,0.260712,0.297485,0.362427,0.440643,0.516907,0.578613,0.614777,0.609619,0.556366,0.456268,0.323395,0.174591,0.0270691,-0.102722,-0.201538,-0.257111,-0.271393,-0.249603,-0.201477,-0.138733,-0.0802002,-0.0448303,-0.0439758,-0.0766907,-0.138184,-0.218292,-0.30896,-0.395142,-0.462189,-0.500793,-0.504272,-0.475494,-0.417114,-0.340912,-0.263611,-0.196289,-0.146973,-0.115601,-0.104309,-0.111084,-0.129669,-0.152435,-0.173187,-0.183105,-0.180939,-0.162628,-0.130219,-0.0925903,-0.0533142,-0.0194702,0.0124512,0.0369873,0.0536194,0.0621948,0.0665588,0.0708923,0.0770874,0.0889893,0.106232,0.129913,0.156464,0.183624,0.209717,0.236298,0.26297,0.285767,0.304688,0.319031,0.327667,0.331635,0.33197,0.327972,0.321991,0.315033,0.307709,0.302551,0.301636,0.304474,0.308258,0.30896,0.299896,0.281403,0.248474,0.200562,0.139069,0.0688171,-0.00588989,-0.0780029,-0.13916,-0.18454,-0.213593,-0.228333,-0.235443,-0.238464,-0.242767,-0.254456,-0.275635,-0.306702,-0.346039,-0.388519,-0.43158,-0.464386,-0.486328,-0.48999,-0.478912,-0.454376,-0.420319,-0.382324,-0.343506,-0.307648,-0.27951,-0.259369,-0.251007,-0.253662,-0.263031,-0.276337,-0.2901,-0.299042,-0.291168,-0.25354,-0.180298,-0.0803223,0.038269,0.165955,0.296448,0.411804,0.501526,0.558502,0.581635,0.567017,0.51532,0.440521,0.363556,0.308777,0.283844,0.292145,0.330719,0.392761,0.463013,0.529999,0.581482,0.607758,0.593018,0.529572,0.423645,0.291718,0.150269,0.013031,-0.106506,-0.191925,-0.236359,-0.242126,-0.220032,-0.174164,-0.116577,-0.0673828,-0.045166,-0.0560608,-0.0975647,-0.160339,-0.239624,-0.327881,-0.410126,-0.470917,-0.501923,-0.497925,-0.461426,-0.396332,-0.317841,-0.242767,-0.179871,-0.133362,-0.104675,-0.0969543,-0.1091,-0.134155,-0.16333,-0.189301,-0.205841,-0.205048,-0.185852,-0.149567,-0.108215,-0.0660706,-0.0244141,0.0135803,0.0446167,0.0641479,0.0713196,0.072052,0.0699768,0.0693665,0.0741577,0.0863953,0.105438,0.129456,0.155762,0.186646,0.221527,0.259247,0.294495,0.324249,0.347534,0.363708,0.373322,0.375793,0.372406,0.361389,0.345886,0.327759,0.313202,0.305023,0.303711,0.303894,0.301178,0.292877,0.276031,0.247467,0.205139,0.147461,0.0787048,0.00289917,-0.0700684,-0.134216,-0.185211,-0.222107,-0.246918,-0.26535,-0.281036,-0.297211,-0.314667,-0.335999,-0.364349,-0.395844,-0.427155,-0.454865,-0.472595,-0.47821,-0.471954,-0.456909,-0.434113,-0.408722,-0.381561,-0.354706,-0.332397,-0.315857,-0.307129,-0.302795,-0.303772,-0.306213,-0.306427,-0.299194,-0.278564,-0.233826,-0.15976,-0.0596619,0.0574036,0.182831,0.302795,0.407043,0.48822,0.536743,0.554077,0.537231,0.491028,0.426453,0.359833,0.315094,0.300537,0.318542,0.365753,0.43045,0.502197,0.563049,0.606689,0.618988,0.5914,0.519165,0.407745,0.272095,0.128967,-0.00204468,-0.109406,-0.183746,-0.217499,-0.215393,-0.183411,-0.133514,-0.0780334,-0.0346985,-0.0192871,-0.0375061,-0.0874329,-0.15976,-0.245605,-0.334564,-0.414276,-0.4729,-0.500092,-0.493073,-0.455017,-0.389648,-0.314178,-0.240112,-0.180298,-0.138885,-0.116302,-0.112213,-0.126129,-0.151093,-0.181763,-0.208435,-0.224213,-0.223297,-0.204376,-0.169952,-0.127136,-0.0830994,-0.0406799,-0.00231934,0.0279236,0.0483093,0.0569153,0.0583191,0.0567627,0.0570679,0.0642395,0.0783691,0.101868,0.130005,0.162781,0.198364,0.235962,0.274353,0.307648,0.335419,0.354187,0.366089,0.373352,0.376923,0.377716,0.375458,0.370239,0.363922,0.358917,0.355835,0.353271,0.348785,0.337677,0.316711,0.283722,0.237427,0.181213,0.116364,0.0453186,-0.0263672,-0.0915222,-0.144196,-0.185242,-0.215607,-0.237488,-0.255798,-0.276337,-0.302429,-0.33197,-0.366364,-0.404144,-0.442291,-0.476898,-0.501923,-0.514954,-0.513824,-0.500031,-0.475769,-0.444305,-0.41217,-0.382355,-0.356323,-0.334991,-0.321472,-0.31662,-0.319733,-0.326263,-0.332947,-0.332397,-0.318542,-0.278778,-0.207733,-0.105927,0.0173645,0.149567,0.281464,0.400696,0.496155,0.557709,0.582275,0.570374,0.525696,0.458099,0.384308,0.327057,0.30188,0.309753,0.350281,0.415405,0.491791,0.562866,0.617004,0.641937,0.626801,0.565887,0.461212,0.325867,0.177704,0.0350952,-0.0861206,-0.175507,-0.224274,-0.23053,-0.203156,-0.152863,-0.0940552,-0.0418396,-0.0143433,-0.0203857,-0.0598145,-0.127258,-0.212036,-0.303497,-0.39035,-0.459229,-0.497223,-0.498993,-0.468018,-0.408936,-0.333923,-0.258026,-0.194458,-0.148376,-0.12262,-0.116425,-0.128937,-0.155121,-0.187958,-0.218658,-0.238342,-0.241852,-0.225739,-0.19458,-0.150269,-0.103546,-0.0567017,-0.0154114,0.02005,0.0436707,0.0550232,0.0556335,0.0509949,0.0462036,0.0481262,0.0577393,0.0775757,0.106293,0.142242,0.185242,0.232849,0.283203,0.328613,0.366791,0.391785,0.404236,0.405548,0.398956,0.38739,0.37384,0.360199,0.350494,0.346405,0.351166,0.36026,0.371094,0.374817,0.364746,0.33606,0.288727,0.22464,0.146881,0.0604248,-0.0260315,-0.104309,-0.169891,-0.221527,-0.255798,-0.277954,-0.292175,-0.306702,-0.32486,-0.347961,-0.376282,-0.408173,-0.441437,-0.474518,-0.501587,-0.519653,-0.527191,-0.523102,-0.508179,-0.485413,-0.459015,-0.431671,-0.403992,-0.378052,-0.355743,-0.339569,-0.329437,-0.325775,-0.322968,-0.311707,-0.28302,-0.227417,-0.142517,-0.0340576,0.0882874,0.214722,0.333466,0.437286,0.516937,0.563568,0.573608,0.550537,0.501038,0.438324,0.383667,0.352173,0.351868,0.378418,0.429565,0.49292,0.554962,0.604553,0.630737,0.621613,0.571991,0.481445,0.361572,0.222992,0.0875854,-0.0310364,-0.122742,-0.179047,-0.198303,-0.184998,-0.14801,-0.10025,-0.0556335,-0.0316467,-0.0349731,-0.0697937,-0.130493,-0.207886,-0.292297,-0.37149,-0.435608,-0.474792,-0.481201,-0.456635,-0.405151,-0.337463,-0.267975,-0.20874,-0.166931,-0.143951,-0.13913,-0.14978,-0.171448,-0.198669,-0.224701,-0.241302,-0.244019,-0.229553,-0.200195,-0.161377,-0.117554,-0.0757751,-0.0379333,-0.00588989,0.0173645,0.0323792,0.0386353,0.0402222,0.0412292,0.0467224,0.0586548,0.0787048,0.106079,0.139923,0.178772,0.223267,0.270142,0.315735,0.355896,0.386932,0.406891,0.416168,0.41745,0.411682,0.403595,0.393311,0.384308,0.377625,0.374878,0.375153,0.375183,0.367859,0.350464,0.319366,0.273712,0.216309,0.147522,0.0736389,-0.000335693,-0.069519,-0.130127,-0.180084,-0.22049,-0.256348,-0.289551,-0.324097,-0.360687,-0.396545,-0.432281,-0.463013,-0.48996,-0.510376,-0.522064,-0.524811,-0.517609,-0.503113,-0.484497,-0.4664,-0.450287,-0.436432,-0.424561,-0.414337,-0.407166,-0.401398,-0.394775,-0.3862,-0.368469,-0.332825,-0.273743,-0.186859,-0.0757751,0.0530396,0.186829,0.311218,0.417023,0.497345,0.5466,0.560547,0.541534,0.497864,0.440033,0.384888,0.349762,0.34491,0.374268,0.432007,0.507965,0.582611,0.641785,0.675751,0.674164,0.630676,0.545349,0.424042,0.281738,0.133087,0.00106812,-0.102295,-0.168335,-0.193542,-0.184723,-0.148071,-0.0978394,-0.0480652,-0.0142212,-0.00753784,-0.0335388,-0.0914612,-0.174316,-0.267181,-0.359467,-0.434174,-0.486023,-0.504547,-0.489899,-0.444336,-0.375366,-0.298065,-0.225403,-0.171997,-0.140472,-0.131409,-0.144135,-0.16861,-0.201599,-0.234192,-0.259796,-0.270355,-0.262482,-0.234406,-0.190308,-0.138153,-0.085907,-0.0403137,-0.00506592,0.019989,0.0336914,0.0390625,0.0371399,0.0322876,0.0303345,0.0353088,0.0517883,0.0810547,0.120667,0.167786,0.219849,0.273926,0.326996,0.373138,0.4086,0.429138,0.43399,0.427917,0.413574,0.399841,0.388733,0.383881,0.385315,0.390991,0.399658,0.409698,0.409851,0.393616,0.355896,0.299042,0.223907,0.137817,0.0513611,-0.0275879,-0.0970154,-0.153442,-0.197693,-0.229187,-0.253479,-0.276398,-0.304688,-0.341461,-0.385284,-0.43103,-0.475464,-0.512634,-0.53949,-0.554077,-0.557007,-0.549072,-0.529358,-0.503326,-0.475708,-0.451141,-0.432068,-0.420471,-0.415558,-0.416595,-0.418793,-0.419128,-0.412048,-0.391541,-0.34845,-0.276123,-0.171722,-0.040802,0.102692,0.242981,0.366791,0.466766,0.534363,0.564423,0.558411,0.523895,0.470215,0.407806,0.359497,0.337799,0.351959,0.399231,0.472656,0.555969,0.631378,0.684631,0.70462,0.683838,0.619415,0.514099,0.378815,0.228088,0.0838013,-0.0370178,-0.123444,-0.16864,-0.174164,-0.146973,-0.100525,-0.049469,-0.00814819,0.00942993,-0.00296021,-0.0508728,-0.127045,-0.221405,-0.318604,-0.405212,-0.470276,-0.504883,-0.504974,-0.474426,-0.41745,-0.34549,-0.273651,-0.213562,-0.174622,-0.15921,-0.164978,-0.187561,-0.219055,-0.251007,-0.276733,-0.289276,-0.283356,-0.260132,-0.219055,-0.16748,-0.111511,-0.0614014,-0.0218201,0.00463867,0.0194092,0.0246277,0.0252686,0.0253906,0.0292664,0.0393372,0.0591736,0.0896301,0.129791,0.175598,0.227142,0.278778,0.328156,0.370575,0.405426,0.42926,0.44101,0.443481,0.438202,0.431305,0.424896,0.420898,0.420044,0.419678,0.420746,0.420258,0.413666,0.394867,0.358795,0.305511,0.232635,0.147247,0.0603638,-0.019928,-0.0899048,-0.149719,-0.19696,-0.234741,-0.268036,-0.297516,-0.330078,-0.365173,-0.406464,-0.451202,-0.496582,-0.536041,-0.565094,-0.578888,-0.580231,-0.567291,-0.546661,-0.518799,-0.489471,-0.460907,-0.4375,-0.420746,-0.412445,-0.411041,-0.414062,-0.417725,-0.414001,-0.394806,-0.351257,-0.274414,-0.163422,-0.0270996,0.121216,0.263794,0.387482,0.486176,0.550964,0.578339,0.568481,0.53006,0.46875,0.400543,0.351166,0.333252,0.355194,0.411407,0.491394,0.574188,0.643402,0.691223,0.705536,0.678375,0.606415,0.496246,0.358368,0.210327,0.074707,-0.033783,-0.105804,-0.138245,-0.135834,-0.108124,-0.0662842,-0.0227051,0.00814819,0.0127869,-0.0137024,-0.0725098,-0.153137,-0.24585,-0.33551,-0.410065,-0.464081,-0.488068,-0.481964,-0.448486,-0.392914,-0.330566,-0.272827,-0.231659,-0.212158,-0.211243,-0.226593,-0.250916,-0.278168,-0.302338,-0.318695,-0.320374,-0.302979,-0.266418,-0.215057,-0.155487,-0.100739,-0.0545349,-0.0220337,-0.000488281,0.0118713,0.0165405,0.0187683,0.0210266,0.0288391,0.0462341,0.0775146,0.121765,0.174042,0.232361,0.290039,0.346344,0.395935,0.436218,0.464172,0.478027,0.478668,0.470367,0.460205,0.451691,0.446655,0.444519,0.444733,0.446503,0.448242,0.446289,0.432495,0.400146,0.343994,0.267029,0.175781,0.0792236,-0.0118103,-0.0921021,-0.161255,-0.219147,-0.265778,-0.300018,-0.32959,-0.355835,-0.384735,-0.420197,-0.463226,-0.506561,-0.546326,-0.57608,-0.594666,-0.602325,-0.598328,-0.58432,-0.560547,-0.529297,-0.497772,-0.469727,-0.449158,-0.435883,-0.429138,-0.427795,-0.423767,-0.412933,-0.38623,-0.337372,-0.255707,-0.139557,0.00387573,0.15625,0.297424,0.414825,0.501709,0.553223,0.568756,0.550629,0.506165,0.443756,0.380096,0.33844,0.333862,0.370453,0.44342,0.534149,0.620758,0.687592,0.724731,0.723175,0.678223,0.590515,0.466278,0.318878,0.168213,0.0375671,-0.0574036,-0.110809,-0.122833,-0.10144,-0.0577393,-0.00469971,0.0432129,0.0707703,0.0662537,0.0224609,-0.0542908,-0.155457,-0.264282,-0.364624,-0.444122,-0.494568,-0.512695,-0.496521,-0.451691,-0.385315,-0.313843,-0.252075,-0.212646,-0.199646,-0.210358,-0.239258,-0.277374,-0.317688,-0.353851,-0.377289,-0.384308,-0.367218,-0.325867,-0.265564,-0.19516,-0.128601,-0.0713196,-0.0276489,0.00128174,0.0184326,0.0253906,0.0273132,0.0278015,0.0328369,0.0495911,0.0814514,0.130371,0.188873,0.256927,0.325378,0.391541,0.450104,0.495453,0.523468,0.5354,0.531281,0.520416,0.506073,0.494843,0.488586,0.486023,0.486511,0.48822,0.487671,0.478027,0.452484,0.403748,0.330719,0.235809,0.1315,0.0289917,-0.0652161,-0.147095,-0.215698,-0.272797,-0.317535,-0.354004,-0.383057,-0.410675,-0.441925,-0.480072,-0.523041,-0.564819,-0.600433,-0.625031,-0.638763,-0.641296,-0.631714,-0.612091,-0.583801,-0.549988,-0.513275,-0.479767,-0.451996,-0.433136,-0.421051,-0.415955,-0.408173,-0.391479,-0.35321,-0.282959,-0.177856,-0.0415955,0.109955,0.25882,0.388306,0.493774,0.565521,0.600006,0.596344,0.558929,0.494965,0.421234,0.365112,0.343597,0.364105,0.422424,0.507263,0.592896,0.665649,0.712646,0.726685,0.697937,0.624847,0.511658,0.3703,0.220032,0.0840759,-0.0219421,-0.086792,-0.111206,-0.099884,-0.0646362,-0.0151978,0.0350952,0.0689392,0.0738831,0.0413818,-0.0244751,-0.116913,-0.220764,-0.32077,-0.403534,-0.461639,-0.488159,-0.483582,-0.449463,-0.395691,-0.33316,-0.279266,-0.245514,-0.235962,-0.247284,-0.275146,-0.311493,-0.348511,-0.380157,-0.4021,-0.406464,-0.389221,-0.349487,-0.291229,-0.224213,-0.159424,-0.105652,-0.0638733,-0.0351868,-0.0161743,-0.00540161,0.00189209,0.00933838,0.0221558,0.0456543,0.0846252,0.137756,0.202759,0.274506,0.347107,0.415192,0.475555,0.522064,0.553864,0.569946,0.57312,0.567932,0.559753,0.551056,0.545197,0.538239,0.534088,0.526703,0.512848,0.490326,0.452972,0.395203,0.316132,0.224213,0.128296,0.0358582,-0.0519104,-0.13205,-0.202332,-0.267731,-0.326752,-0.380707,-0.427948,-0.471619,-0.514038,-0.557068,-0.595795,-0.626587,-0.643402,-0.648834,-0.642853,-0.630249,-0.612091,-0.593719,-0.574799,-0.554749,-0.534454,-0.5177,-0.504608,-0.4935,-0.481659,-0.463959,-0.436371,-0.38916,-0.316437,-0.212189,-0.0811157,0.0647888,0.210327,0.342163,0.448029,0.520782,0.558441,0.563995,0.539917,0.49231,0.43335,0.381561,0.356812,0.36911,0.419983,0.500336,0.5914,0.670563,0.725433,0.745911,0.725769,0.663879,0.562073,0.431183,0.28653,0.148438,0.0348206,-0.0403748,-0.0735168,-0.0682373,-0.0360107,0.011322,0.0592957,0.0944214,0.102997,0.0775146,0.0157471,-0.0747986,-0.180664,-0.287109,-0.377686,-0.442719,-0.476624,-0.477539,-0.450592,-0.401764,-0.343811,-0.290741,-0.254883,-0.243896,-0.2565,-0.288635,-0.331055,-0.373779,-0.4104,-0.433563,-0.440399,-0.42688,-0.391205,-0.33725,-0.270691,-0.202271,-0.143311,-0.0967102,-0.0657654,-0.04599,-0.0335693,-0.0235596,-0.0121765,0.00494385,0.0319214,0.0725403,0.126678,0.193512,0.267029,0.342438,0.410919,0.469788,0.514099,0.546326,0.565796,0.574615,0.575958,0.574127,0.572784,0.574127,0.57663,0.579041,0.576569,0.564209,0.53656,0.493073,0.428131,0.343384,0.249023,0.150208,0.0527039,-0.0383911,-0.117828,-0.186493,-0.249603,-0.307434,-0.361176,-0.410919,-0.460236,-0.508698,-0.555664,-0.600708,-0.636993,-0.661682,-0.673035,-0.672241,-0.660553,-0.642639,-0.621887,-0.60022,-0.577057,-0.554474,-0.535065,-0.520355,-0.510101,-0.502136,-0.489838,-0.463867,-0.411377,-0.327759,-0.211182,-0.0698547,0.0823669,0.230804,0.359985,0.463867,0.531006,0.560059,0.551117,0.510956,0.448456,0.384155,0.338806,0.32959,0.362915,0.43454,0.533325,0.633331,0.717896,0.772217,0.785156,0.750397,0.666321,0.542328,0.392822,0.236664,0.097168,-0.00662231,-0.06604,-0.0767517,-0.0500183,0.0038147,0.0686035,0.128113,0.16568,0.166595,0.125916,0.0438232,-0.0675964,-0.192108,-0.310791,-0.407684,-0.473022,-0.499542,-0.488586,-0.447144,-0.385498,-0.319092,-0.264526,-0.232361,-0.229767,-0.251923,-0.294983,-0.348633,-0.400635,-0.44516,-0.472443,-0.479645,-0.461975,-0.420319,-0.359894,-0.287292,-0.216797,-0.155548,-0.108978,-0.074646,-0.0516968,-0.0357361,-0.0216064,-0.00610352,0.0157776,0.04776,0.0929871,0.151184,0.220245,0.294556,0.367371,0.432373,0.488068,0.532318,0.565735,0.58725,0.598236,0.602875,0.604095,0.603577,0.602661,0.602173,0.599152,0.584442,0.557709,0.517181,0.457916,0.378632,0.287384,0.193115,0.0977783,0.00619507,-0.0745544,-0.144775,-0.210419,-0.271667,-0.328949,-0.384308,-0.440674,-0.495972,-0.549713,-0.600159,-0.641663,-0.667969,-0.680267,-0.678375,-0.664154,-0.642822,-0.621246,-0.600708,-0.581085,-0.563263,-0.548309,-0.538727,-0.531769,-0.526611,-0.514038,-0.486511,-0.431946,-0.344421,-0.220459,-0.0760498,0.0766907,0.220825,0.347229,0.44516,0.508392,0.535828,0.525848,0.483643,0.419403,0.354492,0.310577,0.303497,0.340851,0.417603,0.517761,0.619415,0.704468,0.759552,0.77356,0.741943,0.663086,0.543304,0.399231,0.251007,0.11972,0.0231323,-0.029541,-0.0386963,-0.0130005,0.0349121,0.0916748,0.143005,0.172638,0.169312,0.126556,0.0468445,-0.0583801,-0.174591,-0.283295,-0.369965,-0.427856,-0.450439,-0.441101,-0.406891,-0.356812,-0.305786,-0.267883,-0.253876,-0.26474,-0.297363,-0.344086,-0.394287,-0.437408,-0.467682,-0.480408,-0.473572,-0.445038,-0.397247,-0.335266,-0.269012,-0.209656,-0.163422,-0.134521,-0.116791,-0.10553,-0.0932312,-0.0756226,-0.0491638,-0.0100403,0.0437012,0.111786,0.190765,0.276031,0.358063,0.428711,0.483734,0.523315,0.548798,0.56601,0.574524,0.578278,0.583466,0.591064,0.601837,0.613983,0.625275,0.627655,0.613281,0.580994,0.52887,0.453522,0.360168,0.258728,0.154755,0.0530396,-0.0391846,-0.117828,-0.187042,-0.249603,-0.305817,-0.357727,-0.4104,-0.463531,-0.515442,-0.565948,-0.614014,-0.651917,-0.674011,-0.682312,-0.677094,-0.660797,-0.639801,-0.618134,-0.596252,-0.574463,-0.555817,-0.543427,-0.537445,-0.536133,-0.532257,-0.513672,-0.46698,-0.386414,-0.271118,-0.130371,0.0240479,0.176453,0.313416,0.42688,0.506226,0.544373,0.539429,0.497437,0.428223,0.353363,0.299255,0.278015,0.299347,0.363434,0.459808,0.567902,0.667694,0.743439,0.778412,0.764069,0.696594,0.583344,0.437988,0.283447,0.142395,0.0321655,-0.033905,-0.0515747,-0.0268555,0.0281372,0.0967407,0.163635,0.209015,0.219421,0.185516,0.110718,0.00216675,-0.123108,-0.247559,-0.352509,-0.426361,-0.461853,-0.455841,-0.420593,-0.36496,-0.305115,-0.256073,-0.231506,-0.237213,-0.269775,-0.322632,-0.386139,-0.446777,-0.495972,-0.523315,-0.526215,-0.501434,-0.451569,-0.384949,-0.307617,-0.234192,-0.172913,-0.129852,-0.103821,-0.0899048,-0.0819702,-0.072876,-0.0569153,-0.0273132,0.0183411,0.0823975,0.160187,0.248169,0.339417,0.423157,0.492004,0.543793,0.579803,0.602539,0.612946,0.615204,0.614777,0.61499,0.617432,0.623566,0.630188,0.630737,0.617645,0.588745,0.540619,0.468536,0.379517,0.27887,0.174896,0.068573,-0.0315857,-0.12262,-0.202026,-0.271332,-0.333527,-0.388947,-0.441864,-0.492981,-0.540924,-0.586487,-0.62793,-0.660492,-0.680969,-0.688568,-0.683868,-0.666748,-0.642365,-0.61731,-0.591553,-0.568848,-0.550049,-0.537964,-0.533447,-0.532379,-0.529663,-0.513336,-0.472656,-0.396759,-0.28244,-0.137115,0.0244141,0.183594,0.325226,0.441772,0.521759,0.56131,0.55484,0.509949,0.43512,0.353271,0.288513,0.260498,0.279266,0.34549,0.445526,0.559845,0.66449,0.745483,0.788605,0.782135,0.721619,0.611328,0.46463,0.304688,0.155609,0.0389099,-0.0326538,-0.0543823,-0.0317078,0.020813,0.0905457,0.160553,0.213287,0.23111,0.205139,0.133881,0.0258179,-0.102844,-0.23291,-0.344482,-0.425659,-0.469025,-0.473663,-0.447968,-0.397888,-0.339905,-0.290405,-0.262878,-0.266266,-0.296173,-0.347443,-0.408997,-0.467102,-0.513489,-0.539642,-0.541534,-0.517914,-0.469727,-0.403381,-0.326355,-0.250946,-0.18869,-0.143799,-0.115723,-0.0994873,-0.0860291,-0.069519,-0.0447388,-0.00610352,0.047821,0.118683,0.202179,0.293701,0.385864,0.467896,0.53421,0.582062,0.6138,0.631714,0.63974,0.641235,0.642975,0.646729,0.653107,0.659241,0.664368,0.661346,0.643829,0.605988,0.544434,0.460785,0.361877,0.251495,0.137878,0.0275574,-0.0730896,-0.161957,-0.239166,-0.305725,-0.364197,-0.417877,-0.468994,-0.518616,-0.568909,-0.618286,-0.662537,-0.700195,-0.725647,-0.735779,-0.728302,-0.708038,-0.678223,-0.642334,-0.605713,-0.574738,-0.549561,-0.533081,-0.525085,-0.523682,-0.518402,-0.498901,-0.448547,-0.361572,-0.235931,-0.0856018,0.0796204,0.239258,0.375793,0.480194,0.546753,0.570648,0.551178,0.494843,0.415741,0.339294,0.286591,0.274506,0.310638,0.389801,0.498566,0.609375,0.70462,0.769531,0.79129,0.762024,0.681458,0.559143,0.4104,0.259033,0.127258,0.0341797,-0.0109863,-0.0093689,0.0310974,0.0914612,0.157227,0.213104,0.241943,0.233765,0.180725,0.088562,-0.0310364,-0.160736,-0.281128,-0.374268,-0.433136,-0.453308,-0.441223,-0.408234,-0.362854,-0.322266,-0.296173,-0.297272,-0.326416,-0.378876,-0.445038,-0.51001,-0.561218,-0.591705,-0.594788,-0.571869,-0.523743,-0.458191,-0.381409,-0.302979,-0.234344,-0.183899,-0.153229,-0.137268,-0.127686,-0.115356,-0.0920105,-0.0540161,0.0039978,0.0797119,0.170105,0.269836,0.372284,0.470337,0.553009,0.614624,0.65802,0.682678,0.69342,0.692657,0.687714,0.683624,0.682434,0.682678,0.683777,0.680481,0.666046,0.639191,0.594147,0.528168,0.441376,0.339569,0.227631,0.110321,-0.00479126,-0.110107,-0.203888,-0.286682,-0.359558,-0.425323,-0.484985,-0.538177,-0.585297,-0.628296,-0.666626,-0.700317,-0.726196,-0.740997,-0.742676,-0.731201,-0.707825,-0.677521,-0.644104,-0.6138,-0.585876,-0.563416,-0.546906,-0.537598,-0.529633,-0.513702,-0.477112,-0.410004,-0.307434,-0.172058,-0.0151978,0.148651,0.2966,0.419006,0.507507,0.557098,0.564331,0.529877,0.463531,0.385925,0.320496,0.282715,0.289185,0.342682,0.436005,0.547363,0.653595,0.739288,0.789093,0.792389,0.744476,0.648346,0.515594,0.368256,0.225403,0.111908,0.0389099,0.0151978,0.0365295,0.0872192,0.150879,0.21286,0.256134,0.265778,0.233276,0.156891,0.0468445,-0.0832825,-0.215393,-0.328156,-0.408356,-0.449951,-0.452759,-0.428711,-0.387817,-0.342896,-0.309967,-0.298615,-0.318604,-0.365753,-0.432587,-0.50827,-0.576416,-0.626862,-0.649506,-0.640594,-0.602386,-0.54071,-0.463379,-0.377686,-0.29364,-0.225098,-0.176697,-0.14859,-0.135437,-0.126831,-0.113739,-0.0868225,-0.0412292,0.0258789,0.110321,0.206818,0.312195,0.419006,0.517487,0.599304,0.660095,0.699402,0.717896,0.722412,0.718109,0.712616,0.709106,0.708466,0.709167,0.707428,0.697571,0.676239,0.637848,0.578491,0.497559,0.399353,0.292725,0.182129,0.0730896,-0.0294189,-0.121613,-0.204376,-0.280548,-0.352173,-0.420349,-0.485596,-0.549347,-0.610626,-0.665833,-0.713043,-0.746674,-0.764679,-0.767578,-0.754639,-0.729492,-0.69693,-0.661499,-0.627075,-0.598389,-0.578064,-0.567932,-0.56842,-0.573212,-0.574127,-0.554291,-0.503418,-0.414764,-0.288727,-0.136353,0.0335693,0.200439,0.347656,0.46521,0.543915,0.575531,0.558411,0.500244,0.418488,0.338379,0.282715,0.267883,0.300934,0.377899,0.488068,0.605988,0.713593,0.794373,0.830902,0.814911,0.741974,0.623413,0.476532,0.324799,0.18988,0.0906677,0.0377808,0.0337524,0.0696411,0.128937,0.198517,0.258453,0.291595,0.283203,0.227356,0.128967,0.000793457,-0.139709,-0.273163,-0.37854,-0.448334,-0.474792,-0.463745,-0.427734,-0.375885,-0.329163,-0.29834,-0.295807,-0.325867,-0.382751,-0.458405,-0.536835,-0.605682,-0.652618,-0.66864,-0.651489,-0.603516,-0.531555,-0.44516,-0.352936,-0.269287,-0.204437,-0.162659,-0.139771,-0.130585,-0.124176,-0.113403,-0.0876465,-0.040863,0.0266724,0.114929,0.217377,0.328949,0.440033,0.539001,0.6185,0.676605,0.712616,0.729218,0.730408,0.723938,0.714935,0.706787,0.702484,0.701233,0.698547,0.690765,0.671204,0.633362,0.573547,0.491364,0.391846,0.283295,0.169312,0.054657,-0.0538025,-0.149414,-0.234406,-0.309937,-0.374817,-0.432587,-0.485962,-0.539215,-0.588104,-0.63559,-0.679413,-0.712891,-0.734314,-0.744202,-0.742035,-0.726715,-0.702301,-0.673157,-0.643127,-0.612946,-0.588165,-0.573822,-0.567627,-0.567993,-0.564484,-0.543518,-0.494202,-0.408508,-0.287781,-0.140503,0.0246887,0.187134,0.330688,0.444946,0.524933,0.559265,0.544495,0.491577,0.412323,0.33429,0.27774,0.26358,0.298218,0.380249,0.49469,0.616455,0.727173,0.812225,0.85144,0.835602,0.764343,0.644653,0.494904,0.337738,0.197662,0.093689,0.0393066,0.0355835,0.0726013,0.134033,0.205048,0.268219,0.303192,0.295746,0.239044,0.137939,0.00317383,-0.14563,-0.287109,-0.40036,-0.476624,-0.507996,-0.500397,-0.46521,-0.41217,-0.360962,-0.322388,-0.312561,-0.334869,-0.383057,-0.452393,-0.52655,-0.592468,-0.640106,-0.657318,-0.644165,-0.600342,-0.531708,-0.446014,-0.352814,-0.266113,-0.196838,-0.147583,-0.119293,-0.103607,-0.0934143,-0.0795593,-0.0524292,-0.00738525,0.0550842,0.13562,0.228577,0.330719,0.432373,0.522675,0.596558,0.64975,0.682312,0.696381,0.698547,0.695892,0.692139,0.689636,0.687988,0.689117,0.687775,0.681061,0.662109,0.623718,0.562286,0.478729,0.378113,0.268799,0.158142,0.0513611,-0.0446167,-0.131348,-0.208801,-0.277954,-0.338928,-0.395996,-0.450226,-0.503815,-0.557373,-0.610962,-0.659668,-0.698273,-0.721344,-0.729523,-0.722046,-0.701996,-0.676819,-0.647552,-0.618988,-0.591278,-0.569977,-0.556732,-0.551239,-0.554749,-0.561798,-0.559143,-0.532593,-0.470856,-0.373779,-0.24234,-0.0865173,0.0794373,0.238007,0.372345,0.477234,0.541473,0.560669,0.533813,0.473846,0.39389,0.324371,0.282593,0.286194,0.334839,0.425873,0.543365,0.662415,0.764832,0.835815,0.860138,0.829834,0.747009,0.620667,0.471619,0.319672,0.186127,0.092804,0.0441589,0.0425415,0.0763855,0.132324,0.193329,0.243042,0.262543,0.241913,0.17453,0.0670471,-0.0680847,-0.211823,-0.343597,-0.448059,-0.513763,-0.537231,-0.525909,-0.489838,-0.439606,-0.391479,-0.358429,-0.352814,-0.375031,-0.420746,-0.480988,-0.54126,-0.59256,-0.622284,-0.625763,-0.599945,-0.546539,-0.472534,-0.384186,-0.29245,-0.21048,-0.147156,-0.104736,-0.0808105,-0.0679016,-0.0571289,-0.0393982,-0.00744629,0.040741,0.1073,0.189148,0.282227,0.380005,0.473297,0.554474,0.615479,0.65509,0.674652,0.678925,0.671387,0.660095,0.651062,0.644806,0.641663,0.644379,0.649261,0.652252,0.63855,0.60611,0.549133,0.463928,0.357788,0.241028,0.125061,0.0144043,-0.0851746,-0.167023,-0.235535,-0.294617,-0.343719,-0.387146,-0.430725,-0.478363,-0.529388,-0.584595,-0.636993,-0.680969,-0.709534,-0.721649,-0.717346,-0.699524,-0.671844,-0.640015,-0.606964,-0.576019,-0.549561,-0.533295,-0.526215,-0.529022,-0.537323,-0.544769,-0.537933,-0.503113,-0.430939,-0.319519,-0.177399,-0.0130005,0.159271,0.317963,0.445099,0.5383,0.588745,0.589508,0.545959,0.473663,0.391632,0.326904,0.298767,0.320587,0.387329,0.494965,0.619751,0.735901,0.828705,0.881409,0.884857,0.83139,0.726959,0.58493,0.425171,0.268097,0.138153,0.0500793,0.0104065,0.0143433,0.04953,0.102203,0.154968,0.192596,0.198303,0.161865,0.0821838,-0.0334778,-0.171387,-0.312073,-0.432861,-0.521149,-0.568207,-0.574524,-0.549927,-0.504761,-0.452209,-0.405853,-0.37616,-0.374756,-0.397736,-0.4422,-0.497284,-0.547791,-0.584442,-0.596558,-0.580566,-0.536194,-0.468079,-0.384857,-0.293213,-0.203674,-0.130646,-0.0783691,-0.0491028,-0.0360718,-0.0317993,-0.0256653,-0.00738525,0.0278015,0.0814514,0.152924,0.237976,0.331543,0.425873,0.51297,0.583679,0.631714,0.657837,0.66452,0.657349,0.641663,0.624481,0.613281,0.608093,0.609924,0.616333,0.624603,0.627594,0.615753,0.581482,0.521698,0.435822,0.329102,0.211517,0.0938416,-0.0157471,-0.110657,-0.189575,-0.254608,-0.30777,-0.356018,-0.400085,-0.445587,-0.494904,-0.545685,-0.596832,-0.641235,-0.677155,-0.69812,-0.703186,-0.695831,-0.678864,-0.652954,-0.623627,-0.596344,-0.573883,-0.554962,-0.540985,-0.529938,-0.523529,-0.52002,-0.522186,-0.51947,-0.496796,-0.442627,-0.352295,-0.223785,-0.0667419,0.104187,0.2659,0.405548,0.515564,0.590637,0.624817,0.613312,0.563049,0.486511,0.408936,0.355621,0.344513,0.384857,0.46817,0.580872,0.695587,0.794708,0.866608,0.899414,0.881683,0.809631,0.685486,0.526642,0.353516,0.190521,0.0620422,-0.0187988,-0.0506592,-0.0430603,-0.00845337,0.0431213,0.0941772,0.127136,0.127686,0.0838013,-0.00570679,-0.130829,-0.27359,-0.410919,-0.523102,-0.594574,-0.624969,-0.61795,-0.582886,-0.526917,-0.462311,-0.404358,-0.36673,-0.357635,-0.377716,-0.420746,-0.470764,-0.515076,-0.542236,-0.546051,-0.523376,-0.477448,-0.407257,-0.321564,-0.225098,-0.133942,-0.0605774,-0.0104065,0.0142822,0.0233459,0.0253906,0.0327148,0.0521851,0.0854797,0.131989,0.192627,0.265076,0.348999,0.434265,0.51474,0.580109,0.623505,0.644958,0.646973,0.635162,0.617035,0.600403,0.588043,0.581421,0.582184,0.587494,0.597321,0.598724,0.584473,0.546875,0.483368,0.396332,0.291229,0.177216,0.0647278,-0.0370789,-0.124451,-0.197205,-0.258514,-0.310364,-0.355957,-0.40274,-0.452393,-0.505035,-0.558929,-0.611267,-0.65332,-0.6828,-0.698059,-0.698639,-0.686951,-0.666962,-0.642426,-0.614777,-0.586334,-0.562927,-0.544617,-0.529083,-0.516022,-0.505432,-0.497009,-0.490906,-0.485748,-0.473083,-0.440033,-0.376862,-0.277039,-0.140747,0.0198364,0.185638,0.342041,0.477112,0.582916,0.651855,0.679016,0.662415,0.608246,0.532806,0.462311,0.413666,0.406128,0.444458,0.522614,0.622864,0.725372,0.814911,0.878632,0.897522,0.863373,0.773132,0.633575,0.460724,0.276886,0.107208,-0.0256042,-0.111511,-0.146271,-0.138794,-0.0984192,-0.0406799,0.0161743,0.0526733,0.052887,0.00747681,-0.0848389,-0.209198,-0.349915,-0.48288,-0.588196,-0.65387,-0.675354,-0.657349,-0.605072,-0.530304,-0.449463,-0.377716,-0.331116,-0.313385,-0.329285,-0.368256,-0.41626,-0.460358,-0.487427,-0.490662,-0.467743,-0.417084,-0.340485,-0.247772,-0.146332,-0.0559387,0.0144958,0.058197,0.0765381,0.0784302,0.0741577,0.0734558,0.0830994,0.104767,0.143158,0.196747,0.267975,0.351105,0.438751,0.519714,0.585175,0.628906,0.648041,0.647919,0.635315,0.616455,0.595703,0.57608,0.559479,0.549561,0.547516,0.551178,0.550049,0.535828,0.500946,0.443207,0.362854,0.262909,0.151245,0.0400391,-0.0650024,-0.160614,-0.243683,-0.310883,-0.365601,-0.411133,-0.451996,-0.490051,-0.530579,-0.571808,-0.610901,-0.643066,-0.667755,-0.68222,-0.684631,-0.677521,-0.661621,-0.638062,-0.608307,-0.574951,-0.542877,-0.515289,-0.49469,-0.478455,-0.46521,-0.453827,-0.450653,-0.45163,-0.448273,-0.426605,-0.373962,-0.282379,-0.15274,0.00863647,0.187042,0.356262,0.502563,0.620392,0.701782,0.735718,0.720093,0.66507,0.581573,0.493927,0.427155,0.404205,0.432343,0.503845,0.605927,0.713898,0.809723,0.876129,0.898193,0.863647,0.769958,0.625061,0.445801,0.251923,0.0707703,-0.0701904,-0.161163,-0.200134,-0.193176,-0.151093,-0.0894165,-0.0290527,0.0119629,0.0161743,-0.0256958,-0.112976,-0.235962,-0.374878,-0.506073,-0.60907,-0.671417,-0.686951,-0.661835,-0.602325,-0.520782,-0.431732,-0.352783,-0.301147,-0.282227,-0.297424,-0.338287,-0.389008,-0.434265,-0.461487,-0.462555,-0.436157,-0.381927,-0.30307,-0.206696,-0.104065,-0.0103455,0.0610046,0.102844,0.115601,0.106293,0.0879211,0.0738831,0.0731506,0.0879211,0.121124,0.173126,0.246063,0.332977,0.426819,0.516418,0.591827,0.642914,0.665161,0.661682,0.641083,0.610565,0.578186,0.547455,0.523407,0.507477,0.502777,0.508545,0.514313,0.511017,0.487671,0.43869,0.362946,0.263458,0.153015,0.0392456,-0.0706482,-0.17392,-0.262695,-0.335907,-0.394073,-0.439545,-0.472687,-0.498627,-0.527771,-0.559418,-0.591492,-0.618286,-0.641418,-0.654572,-0.657562,-0.653534,-0.642548,-0.624054,-0.597595,-0.564911,-0.528687,-0.491577,-0.460144,-0.438843,-0.424957,-0.419067,-0.419891,-0.42688,-0.434204,-0.427734,-0.394806,-0.326141,-0.214996,-0.0648804,0.113953,0.297638,0.466766,0.610565,0.714508,0.770508,0.772919,0.730835,0.649811,0.550629,0.460144,0.40387,0.393372,0.431946,0.515778,0.623993,0.73175,0.821228,0.876801,0.879852,0.820892,0.701569,0.536194,0.33963,0.139557,-0.0348206,-0.164978,-0.242065,-0.262817,-0.238403,-0.181305,-0.111359,-0.0478516,-0.0101318,-0.0173645,-0.0726013,-0.171722,-0.300537,-0.438477,-0.562714,-0.652832,-0.698212,-0.696716,-0.653198,-0.578033,-0.483154,-0.387848,-0.310669,-0.262268,-0.249329,-0.269287,-0.312683,-0.361298,-0.40274,-0.424255,-0.418213,-0.382782,-0.317993,-0.230255,-0.129791,-0.0286865,0.0540161,0.112823,0.139282,0.13916,0.122345,0.100586,0.0863342,0.085907,0.103607,0.143005,0.202606,0.281128,0.371246,0.46402,0.546173,0.609344,0.645874,0.655243,0.641022,0.610535,0.573181,0.534363,0.503479,0.482178,0.474274,0.476532,0.485962,0.490906,0.481537,0.448761,0.38974,0.305817,0.203369,0.086731,-0.0313721,-0.142792,-0.241943,-0.325012,-0.386902,-0.429626,-0.46051,-0.483307,-0.503571,-0.526642,-0.553864,-0.580872,-0.603455,-0.623901,-0.637634,-0.642487,-0.637421,-0.621185,-0.595428,-0.559631,-0.518616,-0.479004,-0.445648,-0.419891,-0.401001,-0.387909,-0.382843,-0.386902,-0.397034,-0.407227,-0.405975,-0.378418,-0.30777,-0.193542,-0.0400085,0.138031,0.322388,0.490479,0.634064,0.739655,0.795441,0.797943,0.749542,0.661499,0.550903,0.449463,0.383484,0.366425,0.400696,0.479919,0.588379,0.697205,0.792053,0.850159,0.857544,0.80191,0.684692,0.517273,0.317322,0.113525,-0.0664978,-0.201538,-0.281616,-0.305939,-0.279846,-0.219147,-0.14386,-0.0744934,-0.0314636,-0.0329895,-0.0826721,-0.177856,-0.304047,-0.439728,-0.5625,-0.65213,-0.696869,-0.692719,-0.643829,-0.561523,-0.460297,-0.358124,-0.275696,-0.225525,-0.210968,-0.232239,-0.277435,-0.328461,-0.37207,-0.396484,-0.393799,-0.360474,-0.296936,-0.209503,-0.107758,-0.00576782,0.0801086,0.138458,0.165039,0.161865,0.14209,0.114868,0.0945435,0.0866089,0.0967407,0.128937,0.181366,0.254578,0.341736,0.434906,0.519958,0.587494,0.628693,0.644379,0.633911,0.607819,0.570587,0.528656,0.488373,0.455139,0.432922,0.422729,0.422516,0.424622,0.422668,0.402618,0.358368,0.290619,0.201965,0.0992737,-0.0124512,-0.11972,-0.218353,-0.305115,-0.373566,-0.420319,-0.452484,-0.475677,-0.494476,-0.511353,-0.533936,-0.556671,-0.576141,-0.589661,-0.599152,-0.601318,-0.594391,-0.576782,-0.551758,-0.517761,-0.479126,-0.442932,-0.410889,-0.386566,-0.369385,-0.356537,-0.347931,-0.343781,-0.352234,-0.36618,-0.373535,-0.365234,-0.330017,-0.256287,-0.142578,0.00241089,0.169617,0.343872,0.504181,0.641724,0.742859,0.794159,0.79129,0.737122,0.646515,0.536255,0.437653,0.369904,0.348419,0.375732,0.446289,0.543365,0.64798,0.741669,0.801483,0.811127,0.76059,0.649536,0.488922,0.293793,0.0915833,-0.088562,-0.230255,-0.32077,-0.356384,-0.338989,-0.283936,-0.210205,-0.136047,-0.0858154,-0.0755615,-0.108765,-0.186218,-0.294037,-0.415833,-0.527313,-0.612885,-0.657196,-0.657837,-0.613647,-0.535004,-0.436523,-0.337311,-0.25528,-0.200836,-0.180176,-0.192474,-0.227783,-0.272461,-0.312988,-0.33493,-0.331909,-0.298828,-0.236572,-0.152252,-0.0576782,0.0341187,0.108002,0.155396,0.171082,0.160339,0.133942,0.102631,0.0759888,0.0646667,0.0738831,0.105927,0.161438,0.238007,0.328583,0.422241,0.507019,0.570953,0.609222,0.618011,0.600983,0.565033,0.517975,0.466187,0.418915,0.384369,0.367493,0.369049,0.383392,0.400482,0.409149,0.398041,0.360474,0.29538,0.20816,0.103638,-0.0109558,-0.123383,-0.227783,-0.315857,-0.38324,-0.426025,-0.450653,-0.464996,-0.473145,-0.483276,-0.496521,-0.512207,-0.527832,-0.540985,-0.551971,-0.557648,-0.55661,-0.54541,-0.523682,-0.491669,-0.452545,-0.411743,-0.374969,-0.345398,-0.324158,-0.310089,-0.301361,-0.298492,-0.307861,-0.329926,-0.353912,-0.365967,-0.356171,-0.306244,-0.207733,-0.0662842,0.0983276,0.276184,0.448334,0.599426,0.714661,0.784882,0.803253,0.758759,0.665222,0.542328,0.422455,0.329315,0.283234,0.294037,0.356323,0.455719,0.570587,0.686035,0.775238,0.817596,0.796906,0.70517,0.5495,0.346588,0.128326,-0.0771179,-0.243256,-0.353058,-0.402527,-0.391754,-0.331146,-0.24173,-0.143219,-0.0618286,-0.0227051,-0.035614,-0.101501,-0.208527,-0.340057,-0.468719,-0.572479,-0.636566,-0.654572,-0.622742,-0.546539,-0.442261,-0.328888,-0.228546,-0.158478,-0.127411,-0.136536,-0.172974,-0.22229,-0.269928,-0.303192,-0.314087,-0.298218,-0.252777,-0.180023,-0.091095,-6.10352e-05,0.0779419,0.128174,0.145355,0.134644,0.107635,0.0771179,0.052002,0.0399475,0.0450745,0.0716858,0.117554,0.185852,0.27063,0.362701,0.446167,0.510925,0.550751,0.565338,0.55658,0.531067,0.494751,0.451935,0.406891,0.366364,0.340149,0.335052,0.34906,0.374054,0.397675,0.406982,0.393951,0.35083,0.279053,0.186066,0.0763245,-0.040802,-0.158142,-0.260284,-0.338806,-0.390167,-0.41568,-0.421936,-0.420105,-0.421112,-0.429626,-0.444244,-0.464355,-0.485596,-0.50473,-0.519531,-0.524872,-0.519318,-0.498352,-0.464569,-0.423645,-0.380463,-0.343719,-0.317963,-0.303497,-0.296387,-0.295319,-0.2966,-0.301788,-0.31369,-0.333801,-0.3526,-0.359772,-0.346954,-0.302277,-0.222076,-0.104736,0.0372314,0.191193,0.346527,0.494202,0.618225,0.700043,0.736267,0.721832,0.657349,0.560944,0.457397,0.37088,0.314941,0.301727,0.333527,0.403076,0.495514,0.593658,0.682098,0.736603,0.741119,0.682312,0.564911,0.401062,0.208221,0.0165405,-0.151672,-0.278717,-0.352234,-0.371704,-0.340912,-0.274231,-0.191559,-0.110107,-0.0571289,-0.0450134,-0.0810547,-0.157501,-0.262115,-0.377197,-0.480347,-0.552917,-0.586365,-0.576721,-0.524811,-0.439056,-0.338165,-0.240601,-0.163361,-0.117004,-0.107056,-0.128967,-0.170746,-0.218353,-0.260712,-0.288025,-0.292633,-0.269379,-0.217804,-0.145813,-0.0641479,0.0117493,0.070343,0.102631,0.108276,0.0932922,0.0692749,0.0427551,0.0209045,0.0112,0.0197144,0.0510864,0.104889,0.179596,0.268097,0.357147,0.433899,0.492157,0.53006,0.546661,0.542999,0.521698,0.486328,0.441162,0.39563,0.357452,0.3367,0.33551,0.347931,0.365662,0.377716,0.377411,0.361084,0.322205,0.259735,0.172852,0.0670471,-0.0484009,-0.162842,-0.261963,-0.335083,-0.382629,-0.409271,-0.418976,-0.417725,-0.413788,-0.411194,-0.412323,-0.41687,-0.428894,-0.445038,-0.459442,-0.467621,-0.464935,-0.449188,-0.424408,-0.392883,-0.360413,-0.332306,-0.308411,-0.290314,-0.275208,-0.267883,-0.266815,-0.275269,-0.28949,-0.310516,-0.334167,-0.354065,-0.35907,-0.33963,-0.289276,-0.2005,-0.0726624,0.0844727,0.253754,0.415619,0.559204,0.665649,0.723969,0.729797,0.685181,0.597809,0.485107,0.374725,0.29126,0.249725,0.262543,0.324921,0.421112,0.53302,0.641296,0.723267,0.756653,0.731628,0.6427,0.495056,0.306793,0.103394,-0.0862427,-0.239594,-0.341034,-0.385376,-0.372711,-0.314789,-0.230377,-0.13916,-0.0643005,-0.0250244,-0.0322266,-0.0882263,-0.181427,-0.294952,-0.408936,-0.500305,-0.555695,-0.565948,-0.533234,-0.463379,-0.36734,-0.264984,-0.17511,-0.111938,-0.0844727,-0.09552,-0.133514,-0.187408,-0.240662,-0.281738,-0.300018,-0.291748,-0.255646,-0.196259,-0.119293,-0.0400085,0.0271606,0.0715332,0.0870056,0.0769043,0.0483093,0.0151978,-0.0130005,-0.0289001,-0.0240479,0.00253296,0.0543213,0.128021,0.216827,0.312469,0.402374,0.475494,0.525696,0.552368,0.55426,0.536682,0.505035,0.462036,0.417358,0.375366,0.345764,0.331268,0.332886,0.345398,0.361176,0.370514,0.366791,0.345337,0.302002,0.234253,0.142731,0.0343933,-0.0798645,-0.187256,-0.274292,-0.335846,-0.372833,-0.390137,-0.392181,-0.389252,-0.383392,-0.379608,-0.379883,-0.389099,-0.405334,-0.4245,-0.442627,-0.452332,-0.449036,-0.432648,-0.406281,-0.374969,-0.343292,-0.315216,-0.292236,-0.274567,-0.264923,-0.263885,-0.269836,-0.284637,-0.305115,-0.332886,-0.360748,-0.38382,-0.39035,-0.37207,-0.321411,-0.231445,-0.103912,0.0517883,0.219696,0.384155,0.532623,0.644043,0.710449,0.725372,0.692871,0.613068,0.506775,0.402802,0.318329,0.270782,0.271606,0.323395,0.410339,0.515106,0.623444,0.712006,0.757996,0.745605,0.669159,0.530914,0.347595,0.142242,-0.0552979,-0.220734,-0.335693,-0.393097,-0.393036,-0.342743,-0.259003,-0.163422,-0.0778809,-0.0256958,-0.0192871,-0.0629578,-0.148438,-0.259369,-0.375153,-0.473083,-0.537323,-0.558411,-0.533997,-0.468231,-0.371948,-0.266907,-0.172272,-0.102692,-0.0701904,-0.0787048,-0.117279,-0.173065,-0.232574,-0.283661,-0.314789,-0.318878,-0.293365,-0.240234,-0.167297,-0.0873108,-0.0161133,0.0336914,0.0541687,0.0506592,0.0292053,0.000549316,-0.0249634,-0.0415039,-0.0398865,-0.0162354,0.0331421,0.10614,0.198242,0.296814,0.390076,0.466339,0.522339,0.55661,0.570251,0.564484,0.54245,0.507294,0.462463,0.417816,0.378601,0.352509,0.3367,0.330994,0.329803,0.33078,0.328949,0.319885,0.299835,0.260498,0.197601,0.110657,0.00723267,-0.100311,-0.200134,-0.283997,-0.347931,-0.391785,-0.41568,-0.422791,-0.415985,-0.40155,-0.383453,-0.373749,-0.37558,-0.386841,-0.403229,-0.417114,-0.424835,-0.421814,-0.40976,-0.389862,-0.365753,-0.33783,-0.308533,-0.283875,-0.267609,-0.260559,-0.261963,-0.271271,-0.28772,-0.306,-0.326416,-0.346405,-0.365265,-0.370117,-0.353729,-0.309814,-0.231812,-0.11676,0.025238,0.178955,0.332825,0.476807,0.598877,0.6828,0.722534,0.712433,0.657104,0.568481,0.471039,0.387756,0.333099,0.316284,0.341248,0.402527,0.485626,0.576569,0.657562,0.706512,0.703674,0.64093,0.520844,0.356598,0.169098,-0.0164795,-0.177826,-0.298401,-0.368683,-0.385437,-0.352661,-0.283783,-0.200562,-0.122192,-0.069519,-0.0579529,-0.0906677,-0.160675,-0.25473,-0.35498,-0.444183,-0.504395,-0.525574,-0.504608,-0.444336,-0.35553,-0.254303,-0.162079,-0.0956726,-0.064209,-0.0719604,-0.112549,-0.172852,-0.239685,-0.298492,-0.338989,-0.351746,-0.331696,-0.280609,-0.205902,-0.121002,-0.0429077,0.0159607,0.0473633,0.0511475,0.0357361,0.00717163,-0.0210266,-0.0400391,-0.0432129,-0.0220032,0.025177,0.0977783,0.189606,0.289001,0.387268,0.470978,0.535767,0.578339,0.599426,0.599731,0.580444,0.54483,0.498199,0.446289,0.396484,0.355682,0.325928,0.309967,0.303711,0.304901,0.309021,0.312012,0.304871,0.279724,0.226379,0.143494,0.0353088,-0.0852051,-0.204437,-0.307159,-0.384613,-0.434479,-0.455139,-0.449951,-0.423004,-0.38559,-0.347595,-0.322632,-0.314301,-0.329224,-0.359558,-0.395935,-0.427917,-0.446655,-0.449799,-0.434113,-0.401489,-0.356323,-0.304413,-0.254181,-0.213165,-0.184723,-0.172699,-0.176086,-0.194946,-0.22644,-0.266968,-0.311066,-0.354767,-0.391205,-0.413574,-0.411896,-0.375732,-0.300385,-0.179932,-0.0259705,0.148071,0.325562,0.493439,0.636169,0.73761,0.786194,0.778595,0.716217,0.613495,0.496643,0.389709,0.312073,0.276276,0.289124,0.347443,0.437836,0.543793,0.644165,0.71405,0.72995,0.67984,0.56604,0.399719,0.204346,0.00268555,-0.179047,-0.322052,-0.412659,-0.446167,-0.423645,-0.356323,-0.264862,-0.173462,-0.103821,-0.0730896,-0.0886536,-0.146027,-0.231506,-0.328461,-0.416656,-0.48056,-0.507019,-0.492645,-0.437775,-0.351746,-0.25116,-0.157318,-0.0884399,-0.0558472,-0.0652771,-0.108673,-0.172424,-0.240509,-0.299316,-0.33902,-0.348846,-0.327393,-0.275055,-0.201691,-0.117828,-0.0419922,0.0151062,0.0441589,0.0458069,0.0283508,0.0015564,-0.023407,-0.0361023,-0.0318604,-0.00588989,0.0422974,0.110596,0.194519,0.285461,0.375366,0.454437,0.515503,0.558411,0.581696,0.589783,0.58017,0.558228,0.523102,0.479218,0.430939,0.386139,0.348419,0.320801,0.300812,0.286407,0.274658,0.261627,0.244476,0.21759,0.175385,0.112213,0.0266113,-0.0748596,-0.179688,-0.273041,-0.345764,-0.394501,-0.417084,-0.418365,-0.403656,-0.380249,-0.352173,-0.329437,-0.320862,-0.329987,-0.353363,-0.381775,-0.407654,-0.419708,-0.413666,-0.389038,-0.35083,-0.30426,-0.253967,-0.207794,-0.172546,-0.153656,-0.154114,-0.171387,-0.202942,-0.242065,-0.284363,-0.320984,-0.349152,-0.369965,-0.385284,-0.385162,-0.368683,-0.331543,-0.269287,-0.168823,-0.033844,0.118591,0.272736,0.427521,0.57251,0.685059,0.758423,0.791199,0.771423,0.697418,0.59613,0.496246,0.409973,0.34787,0.324371,0.344055,0.397064,0.469788,0.549835,0.614716,0.643188,0.615387,0.528473,0.390137,0.217499,0.0315857,-0.14743,-0.298401,-0.406616,-0.464294,-0.465485,-0.419281,-0.341125,-0.254852,-0.17923,-0.133728,-0.127258,-0.157776,-0.216888,-0.289398,-0.36264,-0.417725,-0.443542,-0.435303,-0.395294,-0.32373,-0.232025,-0.14563,-0.0810242,-0.0462952,-0.0472107,-0.0836487,-0.141663,-0.204865,-0.260376,-0.302979,-0.323181,-0.316437,-0.283234,-0.227631,-0.155487,-0.0817261,-0.0210876,0.0161743,0.0310364,0.0252686,0.0078125,-0.0108948,-0.0216675,-0.0209045,-0.00311279,0.0334167,0.0896912,0.162994,0.247772,0.339905,0.426666,0.500458,0.555115,0.589996,0.607391,0.607727,0.591614,0.562225,0.520233,0.468994,0.414825,0.365387,0.323547,0.288574,0.25946,0.233215,0.20871,0.181213,0.151093,0.114441,0.0653687,-0.000701904,-0.0820312,-0.169891,-0.253479,-0.325226,-0.375946,-0.405975,-0.413666,-0.403442,-0.381409,-0.349915,-0.318604,-0.294342,-0.287659,-0.296295,-0.314026,-0.335266,-0.350189,-0.353088,-0.341888,-0.319855,-0.289276,-0.250031,-0.208496,-0.173004,-0.149139,-0.141663,-0.151337,-0.174835,-0.205994,-0.238983,-0.271179,-0.300018,-0.325287,-0.348145,-0.367371,-0.379517,-0.37735,-0.35611,-0.306641,-0.223419,-0.103546,0.0455933,0.214355,0.388336,0.558624,0.707336,0.814545,0.869659,0.865265,0.802185,0.695404,0.573608,0.457703,0.36145,0.298492,0.28183,0.310669,0.369751,0.448456,0.524719,0.572632,0.569672,0.507263,0.389008,0.22879,0.043335,-0.145142,-0.3125,-0.441803,-0.521973,-0.544342,-0.511566,-0.436859,-0.341522,-0.247711,-0.174408,-0.135773,-0.133514,-0.164673,-0.217224,-0.274902,-0.32486,-0.355255,-0.357361,-0.328827,-0.270905,-0.194427,-0.112854,-0.045929,-0.00646973,0.00204468,-0.023407,-0.074646,-0.139984,-0.206116,-0.263519,-0.306702,-0.325012,-0.316925,-0.283295,-0.230194,-0.164886,-0.102905,-0.052124,-0.0191956,-0.00335693,0.000213623,-0.00286865,-0.00540161,-0.000976562,0.0135803,0.040802,0.0849915,0.144409,0.216797,0.298401,0.382355,0.460724,0.526917,0.57785,0.61322,0.632141,0.634186,0.61673,0.580994,0.529236,0.466278,0.397552,0.3284,0.263306,0.203857,0.152924,0.109039,0.0739441,0.0438843,0.0169373,-0.0114136,-0.0473633,-0.0924988,-0.145966,-0.204346,-0.261993,-0.310516,-0.344849,-0.362579,-0.364563,-0.350616,-0.324249,-0.293854,-0.267548,-0.24881,-0.243469,-0.250641,-0.266144,-0.283356,-0.29541,-0.298401,-0.288361,-0.268219,-0.237061,-0.200439,-0.163971,-0.135132,-0.119873,-0.121979,-0.140503,-0.172058,-0.213104,-0.256226,-0.296021,-0.329102,-0.355804,-0.376068,-0.386414,-0.385712,-0.374664,-0.350494,-0.298706,-0.211456,-0.0943909,0.0466309,0.209625,0.383331,0.55011,0.696228,0.810638,0.879486,0.884552,0.827728,0.727631,0.608246,0.483582,0.371002,0.2901,0.253815,0.258118,0.293915,0.35498,0.423126,0.469513,0.471527,0.421509,0.319611,0.174591,0.00366211,-0.172272,-0.332397,-0.458954,-0.53952,-0.56546,-0.535431,-0.459869,-0.356964,-0.247406,-0.15329,-0.0903931,-0.0638733,-0.0723267,-0.106384,-0.15271,-0.197449,-0.231659,-0.246918,-0.236938,-0.197601,-0.138733,-0.0714111,-0.0144043,0.0224609,0.0279846,-0.00106812,-0.0575562,-0.131287,-0.207611,-0.279968,-0.33963,-0.377686,-0.389313,-0.370575,-0.325653,-0.262665,-0.192383,-0.128662,-0.0780334,-0.0435486,-0.0241394,-0.0104065,0.00106812,0.0142822,0.0334167,0.0635376,0.107574,0.164948,0.234741,0.314941,0.396851,0.473602,0.536133,0.584106,0.615692,0.629425,0.62561,0.604645,0.567566,0.516846,0.454315,0.385071,0.313263,0.241486,0.174194,0.113251,0.0611267,0.0177917,-0.0173035,-0.0455017,-0.071106,-0.0948486,-0.118958,-0.14563,-0.176788,-0.212158,-0.243958,-0.268372,-0.281097,-0.284637,-0.276062,-0.258942,-0.239197,-0.218292,-0.201691,-0.191345,-0.191437,-0.197754,-0.209076,-0.217499,-0.222565,-0.219116,-0.210358,-0.195831,-0.181213,-0.170227,-0.164948,-0.169769,-0.18396,-0.210052,-0.24292,-0.278229,-0.308472,-0.330017,-0.341553,-0.348633,-0.35321,-0.353699,-0.352661,-0.350769,-0.348633,-0.337402,-0.303192,-0.236572,-0.133362,0.00744629,0.181549,0.370605,0.559692,0.733246,0.873779,0.960052,0.976929,0.925995,0.817322,0.672668,0.514465,0.365234,0.245392,0.170929,0.143036,0.157166,0.206207,0.271667,0.327972,0.35025,0.326996,0.255219,0.13858,-0.0085144,-0.165466,-0.312195,-0.429626,-0.502716,-0.524994,-0.493774,-0.416534,-0.308105,-0.189789,-0.0814514,-0.00231934,0.0397339,0.0430603,0.0160522,-0.0291748,-0.0769653,-0.121002,-0.151031,-0.160522,-0.146179,-0.113129,-0.069519,-0.0308838,-0.00949097,-0.0173645,-0.0580444,-0.125366,-0.210846,-0.298767,-0.379822,-0.447357,-0.490662,-0.50412,-0.48349,-0.431854,-0.355835,-0.266144,-0.176514,-0.0984192,-0.0367126,0.00888062,0.043396,0.0700684,0.0916748,0.113251,0.138885,0.172089,0.215485,0.273285,0.340698,0.414062,0.484222,0.546234,0.596008,0.631042,0.648621,0.644897,0.619537,0.570648,0.501526,0.417603,0.326691,0.236176,0.152863,0.0793457,0.0192871,-0.0260315,-0.0535889,-0.0665588,-0.0692139,-0.0688782,-0.0700073,-0.0777893,-0.0924988,-0.115997,-0.143494,-0.171387,-0.191711,-0.202942,-0.203217,-0.191071,-0.168213,-0.137512,-0.108459,-0.0853271,-0.0752563,-0.084198,-0.11145,-0.149841,-0.192749,-0.233978,-0.270142,-0.296509,-0.311798,-0.315308,-0.307648,-0.291443,-0.271423,-0.255524,-0.25116,-0.260376,-0.278442,-0.299683,-0.32312,-0.346893,-0.36969,-0.388306,-0.402466,-0.410553,-0.404907,-0.385803,-0.355408,-0.311554,-0.240814,-0.133087,0.00997925,0.178467,0.361389,0.549011,0.72171,0.862335,0.959137,0.999969,0.975037,0.881104,0.737091,0.573181,0.408295,0.258942,0.14563,0.0797729,0.0611877,0.0808411,0.128937,0.19101,0.242706,0.261688,0.23938,0.172272,0.0694885,-0.053833,-0.179474,-0.289978,-0.369049,-0.406464,-0.398529,-0.345917,-0.258026,-0.148224,-0.0371399,0.0548706,0.111633,0.127319,0.106293,0.0588684,-0.00128174,-0.0617676,-0.113251,-0.14978,-0.16806,-0.164703,-0.141327,-0.11319,-0.0950317,-0.099762,-0.134857,-0.198669,-0.285278,-0.380646,-0.46817,-0.539001,-0.585938,-0.601562,-0.581696,-0.525085,-0.437286,-0.329865,-0.218201,-0.113831,-0.0265808,0.0410156,0.0919495,0.132477,0.166321,0.194366,0.222076,0.252197,0.289001,0.332123,0.380432,0.43045,0.477112,0.516724,0.546539,0.565094,0.573059,0.56897,0.550812,0.516144,0.467468,0.407043,0.338745,0.263672,0.186066,0.109467,0.0393982,-0.02005,-0.0628967,-0.0889893,-0.0983582,-0.095459,-0.0846863,-0.0707703,-0.0548706,-0.0418701,-0.0320129,-0.0291138,-0.0326538,-0.0402527,-0.0505981,-0.0599365,-0.0667419,-0.0695801,-0.0714111,-0.0751953,-0.0878601,-0.110077,-0.14267,-0.182709,-0.227631,-0.273041,-0.31424,-0.348633,-0.374023,-0.3862,-0.384094,-0.370331,-0.350281,-0.328033,-0.307983,-0.295868,-0.293854,-0.300049,-0.308258,-0.316132,-0.320709,-0.321899,-0.318237,-0.307831,-0.29187,-0.271179,-0.247925,-0.22525,-0.201599,-0.169403,-0.119934,-0.0440369,0.0661316,0.202454,0.356537,0.519104,0.677612,0.815338,0.91095,0.95343,0.933655,0.84671,0.703339,0.530914,0.353363,0.187286,0.0542297,-0.0317078,-0.0656433,-0.0531921,-0.000854492,0.0724487,0.146759,0.200714,0.218994,0.194733,0.131989,0.0437622,-0.0565796,-0.150269,-0.222992,-0.264313,-0.270416,-0.239746,-0.176453,-0.0941772,-0.0085144,0.0632629,0.107971,0.11792,0.0955505,0.0474243,-0.0151978,-0.0821838,-0.14386,-0.193939,-0.229553,-0.248108,-0.250793,-0.243622,-0.236572,-0.240814,-0.2612,-0.299683,-0.352112,-0.408508,-0.460999,-0.500946,-0.524506,-0.52359,-0.499329,-0.446869,-0.366516,-0.267548,-0.15799,-0.050354,0.0487366,0.134003,0.202026,0.256409,0.297211,0.32193,0.332977,0.335571,0.333038,0.332733,0.335846,0.345917,0.359619,0.377136,0.397736,0.418488,0.434662,0.443542,0.439728,0.419281,0.381653,0.329803,0.267334,0.198883,0.130554,0.065918,0.013092,-0.0246277,-0.0429688,-0.0427856,-0.0244751,0.00564575,0.0398254,0.0704346,0.0904846,0.100403,0.0978699,0.0823975,0.0557251,0.0231323,-0.0121765,-0.0426941,-0.0658264,-0.0784912,-0.0845032,-0.0902405,-0.100952,-0.124298,-0.158142,-0.206421,-0.263672,-0.327606,-0.389709,-0.441772,-0.478516,-0.492004,-0.480896,-0.446167,-0.397247,-0.341339,-0.286255,-0.241486,-0.209015,-0.192963,-0.191498,-0.199799,-0.211945,-0.223724,-0.232574,-0.235535,-0.228333,-0.213867,-0.195343,-0.178192,-0.161865,-0.147186,-0.130341,-0.101379,-0.0483398,0.0348206,0.146057,0.279724,0.424072,0.566528,0.693512,0.78775,0.837585,0.828918,0.758484,0.631042,0.46991,0.300751,0.145203,0.0213318,-0.0597839,-0.0912476,-0.0770264,-0.0229187,0.0596008,0.150269,0.227661,0.272095,0.274933,0.233765,0.159973,0.0697021,-0.0204163,-0.0969238,-0.150757,-0.17749,-0.173828,-0.142242,-0.0892639,-0.0289001,0.0239258,0.0549927,0.0536804,0.0233459,-0.0311584,-0.0944824,-0.157654,-0.212585,-0.254883,-0.281525,-0.291168,-0.282532,-0.260712,-0.236511,-0.222015,-0.227142,-0.253479,-0.297089,-0.348907,-0.399353,-0.43869,-0.462952,-0.465302,-0.442688,-0.391754,-0.314178,-0.214294,-0.104767,0.00183105,0.0937195,0.167908,0.22168,0.255371,0.271423,0.270416,0.256287,0.236359,0.216339,0.205048,0.204559,0.217163,0.238617,0.266846,0.298218,0.32959,0.355133,0.374725,0.382538,0.376007,0.354767,0.321136,0.28067,0.23938,0.200989,0.168396,0.14212,0.122742,0.11142,0.105804,0.108612,0.114868,0.123962,0.128113,0.125427,0.113739,0.0961609,0.0743713,0.0507202,0.0267944,0.00259399,-0.0222168,-0.0454407,-0.0669861,-0.0866699,-0.106842,-0.134003,-0.170532,-0.218994,-0.27652,-0.336212,-0.392273,-0.4375,-0.469238,-0.483521,-0.479645,-0.456329,-0.415283,-0.359894,-0.300262,-0.242981,-0.196991,-0.167572,-0.154144,-0.153168,-0.159973,-0.171936,-0.188538,-0.206696,-0.220551,-0.226654,-0.228271,-0.229187,-0.231873,-0.2341,-0.236664,-0.231812,-0.20993,-0.161926,-0.0830078,0.0263672,0.160889,0.311646,0.468018,0.613525,0.73114,0.807312,0.831299,0.795715,0.700256,0.558655,0.39917,0.239746,0.0986328,-0.0062561,-0.0613403,-0.0628052,-0.0190735,0.061615,0.159058,0.255524,0.327606,0.357574,0.340698,0.280212,0.189819,0.0813904,-0.0257568,-0.115936,-0.175812,-0.201202,-0.192963,-0.154968,-0.0976257,-0.0367126,0.0146484,0.0417175,0.0397644,0.0103455,-0.0426331,-0.10553,-0.169556,-0.225098,-0.266205,-0.291443,-0.295959,-0.283783,-0.260132,-0.236847,-0.224762,-0.228271,-0.249298,-0.285126,-0.329865,-0.378754,-0.420258,-0.448456,-0.457977,-0.444397,-0.403656,-0.334076,-0.244537,-0.143158,-0.0431213,0.0488281,0.125305,0.182495,0.220947,0.237854,0.236237,0.219757,0.196289,0.175171,0.163147,0.165253,0.181976,0.210968,0.250153,0.294891,0.340759,0.3815,0.413208,0.43045,0.429565,0.413513,0.386078,0.352081,0.315094,0.27655,0.240295,0.20752,0.181763,0.163361,0.15329,0.148499,0.146973,0.145325,0.141205,0.131348,0.116272,0.0969238,0.0723267,0.0438843,0.00985718,-0.0244141,-0.0566406,-0.0848389,-0.110321,-0.134735,-0.161804,-0.192413,-0.230164,-0.271881,-0.315247,-0.358643,-0.400421,-0.436523,-0.460846,-0.46991,-0.45993,-0.432709,-0.388336,-0.336273,-0.281036,-0.231995,-0.1922,-0.16629,-0.156311,-0.162933,-0.182007,-0.208588,-0.235931,-0.259644,-0.275696,-0.281677,-0.280609,-0.275635,-0.270264,-0.262451,-0.253052,-0.236664,-0.209503,-0.159698,-0.0797119,0.0312195,0.168976,0.32309,0.483002,0.633331,0.758148,0.83905,0.867096,0.831665,0.736115,0.594086,0.427368,0.259796,0.114105,0.00491333,-0.0509949,-0.0541077,-0.00619507,0.0766602,0.176514,0.27478,0.347382,0.380035,0.363403,0.300323,0.206329,0.0937805,-0.0126038,-0.104126,-0.166321,-0.194794,-0.190491,-0.154053,-0.0966492,-0.0326233,0.022583,0.0521851,0.0510559,0.0206299,-0.0326233,-0.0982666,-0.167908,-0.228424,-0.2771,-0.305511,-0.313538,-0.302704,-0.280182,-0.258057,-0.247467,-0.254395,-0.279907,-0.319672,-0.369324,-0.419006,-0.462952,-0.494049,-0.504395,-0.490967,-0.445923,-0.371307,-0.275146,-0.165466,-0.0597229,0.0385437,0.119751,0.183136,0.226746,0.246918,0.248199,0.234192,0.212524,0.193329,0.181091,0.182709,0.196747,0.222778,0.258545,0.299896,0.345184,0.387421,0.422516,0.44516,0.452606,0.444397,0.422455,0.391754,0.355896,0.31662,0.276825,0.238129,0.203888,0.177002,0.158569,0.14856,0.146393,0.146271,0.145752,0.140625,0.131134,0.115234,0.093689,0.0639648,0.0263977,-0.0126648,-0.0527649,-0.0889893,-0.121643,-0.151459,-0.17807,-0.209625,-0.244934,-0.283081,-0.323608,-0.36322,-0.404633,-0.439331,-0.463928,-0.473572,-0.466461,-0.442902,-0.402802,-0.352936,-0.300232,-0.251129,-0.210571,-0.183746,-0.173401,-0.178772,-0.198364,-0.224915,-0.25647,-0.286957,-0.311218,-0.327271,-0.335968,-0.337952,-0.334381,-0.322693,-0.30188,-0.267975,-0.217224,-0.143921,-0.0409546,0.0883484,0.23764,0.395355,0.549438,0.686157,0.790588,0.849792,0.856354,0.805084,0.697357,0.552246,0.387421,0.230194,0.0993958,0.00830078,-0.0296326,-0.0191345,0.0370178,0.122131,0.218353,0.310577,0.373474,0.396057,0.370331,0.302277,0.210144,0.107544,0.0130005,-0.0611877,-0.108978,-0.125977,-0.116058,-0.0811157,-0.0317383,0.0183716,0.0533142,0.0626831,0.040863,-0.00570679,-0.0673828,-0.133392,-0.195831,-0.246857,-0.284576,-0.303284,-0.307404,-0.297913,-0.283142,-0.274719,-0.280396,-0.304871,-0.345428,-0.395355,-0.448059,-0.493988,-0.526703,-0.541321,-0.534729,-0.503326,-0.443176,-0.356537,-0.25296,-0.143372,-0.0421448,0.0461426,0.116516,0.16983,0.202942,0.21701,0.214294,0.200623,0.183136,0.168823,0.164001,0.173065,0.193817,0.226532,0.265015,0.307556,0.351166,0.390991,0.423767,0.443909,0.44812,0.436859,0.412964,0.38327,0.350616,0.318878,0.289917,0.265564,0.247833,0.236145,0.232788,0.234039,0.239105,0.241364,0.238007,0.223633,0.197266,0.159821,0.115356,0.0686646,0.0220337,-0.0247803,-0.0653381,-0.10144,-0.130371,-0.155273,-0.179962,-0.20752,-0.242706,-0.286316,-0.336884,-0.388306,-0.43399,-0.469574,-0.492279,-0.498413,-0.486389,-0.456909,-0.412018,-0.358643,-0.302582,-0.254517,-0.222443,-0.209625,-0.216949,-0.239258,-0.27301,-0.310455,-0.347809,-0.379791,-0.404419,-0.418701,-0.42392,-0.420746,-0.404846,-0.37558,-0.334381,-0.279999,-0.201691,-0.0930786,0.043457,0.199005,0.361877,0.523529,0.669861,0.783264,0.850586,0.867554,0.827026,0.730408,0.588806,0.426514,0.270264,0.137329,0.0424194,-0.00195312,0.00561523,0.0631714,0.147156,0.244385,0.339081,0.412506,0.448334,0.436432,0.384674,0.307281,0.213989,0.12326,0.0489807,-0.00106812,-0.0234985,-0.0237122,-0.000793457,0.0351868,0.0715637,0.0964355,0.0968628,0.068512,0.0164795,-0.0488281,-0.119598,-0.188232,-0.247345,-0.290558,-0.316223,-0.329071,-0.329498,-0.323334,-0.319733,-0.327667,-0.353912,-0.393616,-0.443756,-0.499207,-0.548706,-0.587952,-0.608429,-0.606628,-0.580078,-0.523407,-0.440308,-0.335693,-0.221893,-0.112488,-0.0148315,0.0658264,0.127533,0.167908,0.186279,0.186432,0.173126,0.152954,0.133087,0.122742,0.126068,0.144775,0.176147,0.217316,0.265289,0.316711,0.366943,0.410767,0.442841,0.460022,0.460999,0.448059,0.428986,0.408081,0.387604,0.3703,0.355835,0.347015,0.343781,0.346588,0.353058,0.359497,0.358429,0.347107,0.319031,0.278778,0.226532,0.170044,0.114471,0.0599365,0.010498,-0.0334778,-0.0690002,-0.0974426,-0.122772,-0.149567,-0.18454,-0.231445,-0.2883,-0.351379,-0.41391,-0.468536,-0.511993,-0.537598,-0.54422,-0.529877,-0.495453,-0.446075,-0.388031,-0.331543,-0.286255,-0.25946,-0.253967,-0.267883,-0.297577,-0.338013,-0.379242,-0.417786,-0.449677,-0.469788,-0.47998,-0.48111,-0.474091,-0.456573,-0.430115,-0.3927,-0.341339,-0.266907,-0.16217,-0.0299072,0.125092,0.29306,0.465485,0.625275,0.755127,0.842194,0.875854,0.850311,0.763,0.630798,0.47345,0.316559,0.17923,0.0775757,0.0296021,0.0365295,0.0964661,0.187408,0.295532,0.404297,0.489899,0.535919,0.536255,0.493225,0.419556,0.322693,0.224976,0.141052,0.0798645,0.0480652,0.0412292,0.0599976,0.0941772,0.126221,0.14563,0.141968,0.110596,0.0541077,-0.0201721,-0.101929,-0.184814,-0.260712,-0.31839,-0.357513,-0.379028,-0.384308,-0.381439,-0.378906,-0.383453,-0.401917,-0.433044,-0.476379,-0.529083,-0.582123,-0.626312,-0.656006,-0.662415,-0.64328,-0.594635,-0.517822,-0.419342,-0.306915,-0.193542,-0.0888367,0.00259399,0.0743408,0.123169,0.148651,0.15329,0.143738,0.124725,0.106232,0.0939941,0.0933533,0.107086,0.135712,0.176208,0.226227,0.282013,0.337952,0.388672,0.430267,0.459656,0.47464,0.476532,0.470428,0.460693,0.450439,0.441864,0.436859,0.435394,0.440399,0.449585,0.460297,0.465851,0.463226,0.444885,0.412445,0.361877,0.299896,0.232635,0.164948,0.100616,0.0422974,-0.00787354,-0.0482483,-0.0823975,-0.112,-0.143097,-0.179474,-0.227356,-0.28598,-0.351532,-0.414215,-0.471527,-0.515442,-0.545074,-0.555817,-0.546448,-0.517761,-0.475922,-0.422516,-0.372162,-0.332245,-0.309753,-0.306305,-0.318481,-0.345001,-0.379944,-0.416809,-0.453308,-0.483582,-0.507263,-0.52066,-0.52713,-0.525696,-0.517761,-0.500519,-0.473846,-0.430054,-0.357178,-0.248413,-0.107758,0.0544434,0.232025,0.411835,0.582214,0.723175,0.822144,0.865143,0.843842,0.759979,0.629761,0.478424,0.332611,0.207306,0.11972,0.0810547,0.0953369,0.158905,0.252136,0.363342,0.475006,0.560516,0.605499,0.599457,0.554413,0.481476,0.391296,0.302094,0.223999,0.167206,0.135071,0.126068,0.144135,0.174164,0.201965,0.211761,0.192902,0.142944,0.0681152,-0.0195007,-0.114441,-0.207794,-0.288513,-0.352112,-0.3927,-0.41153,-0.4086,-0.392761,-0.377716,-0.373138,-0.388336,-0.421753,-0.471191,-0.53125,-0.593445,-0.651703,-0.697418,-0.721191,-0.714752,-0.67276,-0.597046,-0.494568,-0.377991,-0.259521,-0.147156,-0.0475464,0.0319519,0.0861816,0.11261,0.114868,0.0966492,0.0696411,0.0438232,0.0260315,0.0230103,0.0360107,0.0653687,0.109253,0.164612,0.228149,0.293488,0.354706,0.407379,0.446167,0.471741,0.485535,0.492004,0.49527,0.497375,0.50058,0.505035,0.51178,0.523102,0.537598,0.553284,0.561462,0.557159,0.536682,0.496857,0.442566,0.374268,0.300385,0.224335,0.149475,0.0819397,0.0235596,-0.0218811,-0.0581055,-0.0877075,-0.117554,-0.154327,-0.200897,-0.258026,-0.320587,-0.386627,-0.447632,-0.500336,-0.538147,-0.55661,-0.55484,-0.53009,-0.487244,-0.434662,-0.38324,-0.341949,-0.317535,-0.309174,-0.321136,-0.349365,-0.391357,-0.438904,-0.488007,-0.533081,-0.569122,-0.593048,-0.605225,-0.608307,-0.601074,-0.580994,-0.546875,-0.496674,-0.420746,-0.315033,-0.180664,-0.0278015,0.139557,0.311218,0.474304,0.615051,0.718109,0.774384,0.772156,0.717896,0.621521,0.503571,0.382904,0.275757,0.197815,0.160675,0.167633,0.21936,0.29892,0.394928,0.494202,0.574402,0.622498,0.630829,0.602478,0.549622,0.476837,0.401398,0.333099,0.277954,0.242706,0.224609,0.227356,0.241516,0.251648,0.248413,0.222595,0.172272,0.100525,0.0148621,-0.076416,-0.167206,-0.24884,-0.313812,-0.361023,-0.386017,-0.391205,-0.383484,-0.374329,-0.373535,-0.387817,-0.420349,-0.468506,-0.528046,-0.592682,-0.654602,-0.70813,-0.740356,-0.744843,-0.715576,-0.652618,-0.562988,-0.456696,-0.343781,-0.233215,-0.131989,-0.0506592,0.00653076,0.036438,0.0410767,0.0265808,0.00161743,-0.0232239,-0.0416565,-0.0471497,-0.0366516,-0.00942993,0.033905,0.0917969,0.157501,0.22876,0.295898,0.358337,0.408173,0.446411,0.473999,0.4935,0.509552,0.524078,0.537964,0.551941,0.569336,0.58902,0.610535,0.628632,0.638214,0.632843,0.610779,0.568481,0.511414,0.44101,0.364899,0.286591,0.2099,0.140564,0.0818787,0.0353088,-0.000427246,-0.0306091,-0.0606995,-0.0970764,-0.146179,-0.204071,-0.270508,-0.339844,-0.403931,-0.462067,-0.504486,-0.52832,-0.530151,-0.509338,-0.471252,-0.423492,-0.378326,-0.343384,-0.326141,-0.328583,-0.349579,-0.386841,-0.436035,-0.493011,-0.548767,-0.597382,-0.633972,-0.656708,-0.667328,-0.666473,-0.654114,-0.632294,-0.596924,-0.544434,-0.467255,-0.364532,-0.239624,-0.0976562,0.0610657,0.225342,0.378174,0.511169,0.610901,0.667694,0.671387,0.630249,0.555389,0.462463,0.36734,0.281677,0.22287,0.20105,0.219208,0.273804,0.351044,0.444183,0.535278,0.605896,0.649658,0.659088,0.64151,0.598236,0.538147,0.475891,0.418427,0.374115,0.343658,0.326569,0.325073,0.327057,0.322479,0.302643,0.263611,0.204437,0.127747,0.0415039,-0.0501709,-0.135437,-0.210114,-0.269287,-0.31015,-0.332764,-0.338379,-0.336487,-0.33725,-0.345673,-0.370331,-0.411377,-0.466461,-0.531616,-0.598785,-0.663025,-0.714539,-0.744202,-0.746674,-0.715942,-0.656128,-0.573212,-0.476685,-0.377258,-0.28006,-0.196533,-0.131561,-0.0900269,-0.0722656,-0.0765381,-0.0939331,-0.117126,-0.136322,-0.143799,-0.136963,-0.113739,-0.0737915,-0.0201111,0.045166,0.116058,0.18634,0.253387,0.311371,0.358856,0.396698,0.426666,0.454956,0.483307,0.512787,0.543945,0.578033,0.61499,0.65332,0.687988,0.712921,0.721222,0.708557,0.673248,0.6185,0.549225,0.467896,0.384583,0.303192,0.229675,0.170166,0.122345,0.089325,0.0635986,0.0386963,0.00863647,-0.034668,-0.0888672,-0.153656,-0.226013,-0.296814,-0.360687,-0.413239,-0.450714,-0.468109,-0.462341,-0.437561,-0.402252,-0.367767,-0.3414,-0.328674,-0.334869,-0.358917,-0.399872,-0.449677,-0.507294,-0.566437,-0.619629,-0.662811,-0.690826,-0.706512,-0.708954,-0.700592,-0.680847,-0.648834,-0.600433,-0.530212,-0.436096,-0.323456,-0.194214,-0.0549927,0.0856018,0.220612,0.338501,0.43103,0.485474,0.496887,0.474091,0.423431,0.360168,0.295532,0.24054,0.208862,0.203308,0.229187,0.283661,0.356262,0.442932,0.525421,0.592102,0.638336,0.656403,0.652954,0.631104,0.595978,0.557861,0.519867,0.486389,0.460083,0.441101,0.430878,0.421326,0.403168,0.373322,0.326691,0.266968,0.195923,0.118835,0.0412292,-0.032074,-0.0979919,-0.154205,-0.198517,-0.228699,-0.246918,-0.25946,-0.273712,-0.294617,-0.32608,-0.370178,-0.422882,-0.481171,-0.540405,-0.597687,-0.646027,-0.679077,-0.690948,-0.675262,-0.636566,-0.580292,-0.511139,-0.437988,-0.365448,-0.299255,-0.246277,-0.20929,-0.190765,-0.19043,-0.202667,-0.21991,-0.233429,-0.237854,-0.229492,-0.207733,-0.171143,-0.120239,-0.0570374,0.0133667,0.0852051,0.153717,0.215881,0.268738,0.313324,0.351959,0.388184,0.422882,0.457184,0.493439,0.534851,0.580322,0.626221,0.665649,0.694885,0.708496,0.703003,0.677734,0.633331,0.574463,0.504669,0.430176,0.356323,0.293762,0.241364,0.201324,0.170593,0.145325,0.120941,0.0912476,0.0515137,0.00195312,-0.0557251,-0.119873,-0.186005,-0.250641,-0.303894,-0.340118,-0.359467,-0.360687,-0.347656,-0.328094,-0.309814,-0.299622,-0.300232,-0.314331,-0.343719,-0.390869,-0.449402,-0.512909,-0.573883,-0.628479,-0.672119,-0.697998,-0.708893,-0.705322,-0.688141,-0.651062,-0.590912,-0.514038,-0.426117,-0.328949,-0.227875,-0.127899,-0.0335693,0.0498962,0.119019,0.164673,0.182617,0.178741,0.158783,0.134369,0.113312,0.0993347,0.099884,0.117981,0.154419,0.210358,0.276764,0.355133,0.432281,0.497009,0.545837,0.573059,0.586639,0.590302,0.58609,0.580566,0.571991,0.563416,0.554749,0.545135,0.538391,0.527618,0.506226,0.473297,0.424072,0.366028,0.300446,0.2341,0.174591,0.119812,0.0725403,0.03125,-0.00378418,-0.0312195,-0.0536804,-0.0756836,-0.100739,-0.134521,-0.17807,-0.230621,-0.285065,-0.341736,-0.394073,-0.442719,-0.485107,-0.517059,-0.536682,-0.538666,-0.525482,-0.501282,-0.470642,-0.439758,-0.409973,-0.381714,-0.358154,-0.339294,-0.329437,-0.327484,-0.332031,-0.338318,-0.34082,-0.337677,-0.325867,-0.304169,-0.274628,-0.237152,-0.190643,-0.13913,-0.0817261,-0.0255432,0.02771,0.0751953,0.119385,0.161224,0.201111,0.242279,0.285187,0.332031,0.382202,0.436371,0.490601,0.539642,0.579803,0.607086,0.617371,0.608734,0.583466,0.545471,0.496582,0.443756,0.392822,0.348206,0.310394,0.282043,0.26239,0.245605,0.227661,0.20282,0.171875,0.130768,0.0814819,0.0246887,-0.0330811,-0.0883484,-0.136536,-0.17334,-0.19281,-0.198822,-0.193024,-0.184296,-0.175537,-0.17453,-0.185577,-0.211548,-0.253693,-0.307861,-0.374268,-0.446014,-0.513031,-0.565613,-0.595367,-0.598938,-0.574249,-0.528931,-0.467529,-0.395142,-0.321472,-0.253662,-0.198669,-0.164001,-0.151611,-0.164062,-0.193604,-0.231873,-0.268036,-0.296509,-0.310455,-0.302094,-0.270905,-0.217651,-0.144501,-0.0545959,0.0422668,0.137054,0.221313,0.28598,0.332977,0.361115,0.377472,0.385712,0.39035,0.397461,0.407654,0.425262,0.449524,0.477753,0.508392,0.53009,0.538147,0.527344,0.496735,0.452759,0.399078,0.342529,0.289551,0.243408,0.207458,0.184875,0.176086,0.180939,0.190704,0.19986,0.200836,0.186615,0.156738,0.111298,0.0549927,-0.00830078,-0.0753479,-0.139709,-0.196777,-0.23941,-0.265564,-0.275574,-0.271423,-0.260712,-0.248199,-0.241425,-0.241364,-0.251068,-0.269867,-0.296661,-0.329773,-0.365234,-0.397766,-0.424408,-0.437225,-0.436798,-0.422852,-0.399506,-0.367981,-0.330933,-0.293274,-0.253662,-0.217499,-0.184174,-0.155182,-0.130493,-0.107422,-0.0837708,-0.0594482,-0.0307312,0.000915527,0.0367126,0.0773315,0.121368,0.169037,0.216522,0.260925,0.29715,0.323334,0.339447,0.34436,0.340271,0.32959,0.31546,0.299194,0.283844,0.2724,0.266907,0.266541,0.269379,0.270752,0.26474,0.252136,0.23172,0.204163,0.168854,0.127686,0.0863342,0.0464478,0.013031,-0.0128784,-0.0272827,-0.0306091,-0.0289307,-0.0296326,-0.0358887,-0.049469,-0.0735779,-0.10849,-0.147247,-0.183258,-0.207245,-0.216339,-0.204071,-0.173279,-0.124084,-0.06604,-0.0114136,0.0284119,0.0426331,0.0280762,-0.0232849,-0.108398,-0.217224,-0.332886,-0.442474,-0.531616,-0.588379,-0.605194,-0.580017,-0.518524,-0.42807,-0.318604,-0.201202,-0.0925903,-0.00543213,0.0550842,0.0906677,0.106232,0.109955,0.109955,0.114044,0.124298,0.142456,0.170807,0.208038,0.248383,0.285767,0.309814,0.311981,0.291931,0.254456,0.208435,0.161011,0.119171,0.0870972,0.068512,0.064209,0.0795593,0.112366,0.157166,0.203949,0.243683,0.268646,0.274719,0.263031,0.23941,0.205963,0.168488,0.128448,0.0914001,0.0638733,0.0513,0.0528259,0.0656433,0.0825195,0.0971375,0.102417,0.0943909,0.0727539,0.0378418,-0.00979614,-0.065979,-0.129211,-0.190704,-0.245026,-0.284363,-0.305115,-0.308044,-0.297943,-0.277588,-0.253174,-0.225891,-0.197876,-0.173279,-0.151794,-0.135925,-0.123962,-0.114532,-0.104126,-0.0930786,-0.0778198,-0.0599976,-0.0410767,-0.0218811,-0.0039978,0.0135803,0.0292053,0.0410767,0.04776,0.0469971,0.0399475,0.0281372,0.0144348,0.00286865,-0.00640869,-0.0123291,-0.0137939,-0.00909424,0.0022583,0.0210876,0.0457153,0.0704956,0.0905457,0.101807,0.102417,0.0948181,0.079071,0.0592346,0.0357361,0.0113831,-0.00909424,-0.0248413,-0.0325623,-0.03125,-0.0234985,-0.0147705,-0.0109558,-0.0170288,-0.0361633,-0.0645142,-0.0900574,-0.105316,-0.102203,-0.0744934,-0.0246887,0.0439148,0.127197,0.219635,0.310638,0.376648,0.405853,0.384186,0.306915,0.183136,0.0317078,-0.128326,-0.276886,-0.397522,-0.480988,-0.517212,-0.502563,-0.436737,-0.329376,-0.197906,-0.0657043,0.0427856,0.113617,0.148285,0.153931,0.141113,0.120148,0.0959473,0.0747681,0.0600586,0.0639648,0.0897522,0.132385,0.179657,0.213654,0.221039,0.196075,0.147095,0.0858765,0.0197144,-0.0446167,-0.102509,-0.1521,-0.185028,-0.190796,-0.16687,-0.114105,-0.0501709,0.0114136,0.0578308,0.0849609,0.0958252,0.0941772,0.0828857,0.0612183,0.02948,-0.00653076,-0.0372925,-0.0510559,-0.0422058,-0.0150452,0.0234985,0.0626221,0.0962219,0.120148,0.133575,0.136047,0.12262,0.0906677,0.0409546,-0.0212402,-0.0854797,-0.139648,-0.177124,-0.194305,-0.196747,-0.184509,-0.163788,-0.132385,-0.0939026,-0.0502319,-0.00878906,0.0244751,0.0464478,0.0610046,0.0692749,0.0795593,0.0916443,0.106934,0.123688,0.140259,0.156097,0.171082,0.185211,0.193726,0.191437,0.175323,0.144073,0.103912,0.0588684,0.0142822,-0.0254517,-0.0588684,-0.0840759,-0.0997009,-0.10376,-0.0941772,-0.0753479,-0.0527649,-0.0333252,-0.0221558,-0.0191956,-0.0265198,-0.039032,-0.0562744,-0.0766602,-0.0969238,-0.116974,-0.131256,-0.138367,-0.137329,-0.132202,-0.126434,-0.127686,-0.141968,-0.170441,-0.209656,-0.248596,-0.278137,-0.291595,-0.279694,-0.237701,-0.165466,-0.0689392,0.047699,0.170166,0.278595,0.354889,0.385162,0.362,0.285034,0.165314,0.020813,-0.130646,-0.269348,-0.375458,-0.436432,-0.444397,-0.394928,-0.296814,-0.164612,-0.0192566,0.117218,0.225403,0.296082,0.329651,0.330231,0.304047,0.265686,0.223419,0.187286,0.16925,0.175598,0.205048,0.246582,0.288574,0.31662,0.318115,0.291931,0.242859,0.176941,0.100098,0.020813,-0.0506592,-0.108398,-0.142334,-0.145477,-0.118134,-0.0686646,-0.0102844,0.0443115,0.0842896,0.106384,0.107788,0.0896301,0.0518494,-0.000366211,-0.0600891,-0.117615,-0.162781,-0.186981,-0.188171,-0.169189,-0.134979,-0.0950928,-0.0559082,-0.0247498,-0.00485229,-0.00247192,-0.0183411,-0.0536194,-0.103546,-0.160614,-0.215271,-0.258057,-0.281586,-0.285736,-0.270844,-0.240234,-0.19873,-0.151093,-0.100159,-0.0518494,-0.012085,0.0171509,0.0349121,0.0441589,0.0480652,0.0544434,0.0653687,0.0840149,0.110443,0.142822,0.17923,0.214508,0.243408,0.260925,0.264069,0.251923,0.223999,0.183411,0.135773,0.0871582,0.0439758,0.0108337,-0.00863647,-0.0137939,-0.00357056,0.015686,0.0401001,0.0644226,0.0838013,0.0944214,0.0919495,0.0778198,0.0537415,0.0238342,-0.00906372,-0.040802,-0.0644531,-0.0782471,-0.088623,-0.0939026,-0.0982056,-0.106567,-0.124176,-0.151093,-0.183594,-0.220032,-0.24762,-0.258667,-0.246307,-0.207245,-0.142334,-0.059082,0.0318604,0.120361,0.189575,0.229187,0.225891,0.175507,0.0819397,-0.043396,-0.182495,-0.318054,-0.429962,-0.502441,-0.526978,-0.501495,-0.428436,-0.313416,-0.174591,-0.0343323,0.091156,0.185913,0.242706,0.262665,0.254669,0.230316,0.197815,0.166016,0.145355,0.14035,0.154572,0.187683,0.228271,0.264801,0.284485,0.279846,0.251373,0.203522,0.145569,0.0858765,0.0299072,-0.0165405,-0.0476379,-0.0553589,-0.0376892,0.00479126,0.0628357,0.124023,0.175873,0.210144,0.222778,0.215759,0.191711,0.152252,0.100189,0.043396,-0.0108337,-0.0524292,-0.0759888,-0.0787048,-0.063446,-0.0369263,-0.00927734,0.015625,0.0288391,0.0301208,0.0162659,-0.0140686,-0.0609131,-0.119507,-0.181976,-0.239258,-0.282318,-0.303986,-0.304535,-0.285828,-0.251862,-0.208099,-0.158569,-0.10791,-0.0604248,-0.0223083,0.0015564,0.0119629,0.0114746,0.00534058,-0.00119019,-0.00231934,0.00323486,0.0155334,0.0342712,0.0568542,0.0800476,0.098053,0.106354,0.105316,0.0917969,0.0667725,0.0349731,0.000854492,-0.0308838,-0.0550842,-0.0665588,-0.0632324,-0.0454407,-0.0179443,0.0150452,0.0471497,0.0763855,0.0965271,0.105316,0.100159,0.0827942,0.0549927,0.022522,-0.0103455,-0.0380554,-0.0571289,-0.0705566,-0.0799866,-0.0874329,-0.0973511,-0.111786,-0.126282,-0.134369,-0.130219,-0.111298,-0.0755005,-0.0210266,0.0483398,0.13092,0.217438,0.294403,0.347656,0.364349,0.33316,0.253662,0.134918,-0.00927734,-0.164124,-0.311096,-0.430664,-0.513245,-0.546875,-0.522675,-0.447418,-0.329987,-0.187988,-0.0467224,0.0762024,0.16449,0.220551,0.242157,0.233124,0.208588,0.173981,0.138245,0.111938,0.102081,0.114258,0.140259,0.170319,0.19281,0.192261,0.170013,0.126129,0.070343,0.00683594,-0.0552368,-0.112061,-0.157593,-0.181641,-0.176422,-0.139008,-0.0757141,0.00183105,0.0800476,0.144409,0.189362,0.212952,0.214081,0.194946,0.155884,0.102203,0.0432129,-0.0122986,-0.0506592,-0.0700684,-0.0666199,-0.0441589,-0.0101929,0.0266724,0.0611877,0.0860901,0.0980835,0.0896912,0.0612793,0.0132141,-0.0485229,-0.113617,-0.172363,-0.216095,-0.239746,-0.242615,-0.224396,-0.188751,-0.140961,-0.0854797,-0.0289917,0.0196838,0.0575256,0.0799255,0.0875854,0.0831604,0.0735168,0.0645142,0.0591431,0.0611877,0.0697327,0.084137,0.101105,0.114594,0.119873,0.112061,0.0906982,0.0545349,0.00857544,-0.042572,-0.0922241,-0.132904,-0.159393,-0.168854,-0.157013,-0.126404,-0.0820923,-0.0317078,0.0175781,0.057251,0.0829468,0.0941162,0.0875854,0.0645142,0.0303345,-0.0108337,-0.0524292,-0.0900574,-0.11676,-0.134583,-0.145477,-0.152649,-0.159912,-0.170471,-0.179047,-0.186432,-0.184174,-0.168335,-0.130371,-0.07547,-0.00747681,0.0750732,0.164185,0.244476,0.305939,0.33783,0.328583,0.273499,0.177765,0.0547485,-0.0827332,-0.216583,-0.328094,-0.408447,-0.444397,-0.428497,-0.367065,-0.265717,-0.137451,-0.00436401,0.112762,0.20224,0.258728,0.278595,0.269714,0.241791,0.201843,0.160339,0.12735,0.110229,0.112,0.13092,0.160553,0.187256,0.198883,0.189026,0.15918,0.112549,0.0553589,-0.0038147,-0.061676,-0.110535,-0.141663,-0.1492,-0.125702,-0.0765991,-0.00915527,0.0630188,0.125977,0.172546,0.196686,0.197449,0.176941,0.135498,0.0792236,0.0162659,-0.04599,-0.0937805,-0.121643,-0.126678,-0.10968,-0.077301,-0.0370789,0.00289917,0.0363159,0.0560608,0.0578308,0.0397339,0.00238037,-0.0496521,-0.108459,-0.16217,-0.20575,-0.230682,-0.23468,-0.218933,-0.184937,-0.138245,-0.0823059,-0.0258179,0.0253906,0.0637512,0.0883484,0.0975037,0.0937805,0.0840149,0.0733643,0.065979,0.063385,0.067749,0.0760498,0.087738,0.0970764,0.102783,0.0986328,0.0824585,0.0548706,0.015625,-0.0296021,-0.0735168,-0.110809,-0.13501,-0.144653,-0.13562,-0.111725,-0.0738525,-0.0270691,0.0194092,0.0602112,0.0904846,0.104462,0.0967407,0.0744324,0.0410156,0.00125122,-0.0424194,-0.0845642,-0.122467,-0.151672,-0.178131,-0.198792,-0.210266,-0.214478,-0.209015,-0.192841,-0.157806,-0.10553,-0.0374451,0.0432739,0.126831,0.205566,0.270782,0.312988,0.325134,0.299835,0.236572,0.137177,0.0137329,-0.121002,-0.247711,-0.352722,-0.424683,-0.452698,-0.435944,-0.374603,-0.274658,-0.152039,-0.0227966,0.0987549,0.197479,0.263794,0.298828,0.30545,0.288849,0.257538,0.223083,0.189575,0.166779,0.155121,0.154968,0.158997,0.161591,0.15387,0.132477,0.0976562,0.0522156,0.000488281,-0.0514221,-0.0992432,-0.136841,-0.157104,-0.154358,-0.127136,-0.0769653,-0.0119629,0.0584412,0.121216,0.171661,0.201965,0.211975,0.199066,0.166321,0.117401,0.0588074,-0.00167847,-0.0542908,-0.092926,-0.112122,-0.113464,-0.0986938,-0.0738831,-0.0441895,-0.0164795,0.0032959,0.0111694,0.00317383,-0.0213013,-0.0581055,-0.10199,-0.146332,-0.183838,-0.207672,-0.215759,-0.205414,-0.178772,-0.135559,-0.0832825,-0.0246887,0.0306702,0.0783081,0.112,0.130585,0.134979,0.129364,0.117767,0.104126,0.0922852,0.084259,0.0795593,0.0777283,0.0777283,0.0770874,0.0714722,0.0578918,0.0351562,0.00436401,-0.0318604,-0.0709839,-0.104828,-0.128723,-0.139008,-0.134216,-0.113342,-0.0783081,-0.033844,0.0154724,0.0636597,0.102478,0.128601,0.13382,0.120911,0.0923767,0.0523987,0.00436401,-0.0503845,-0.105438,-0.156799,-0.202728,-0.24054,-0.269562,-0.285248,-0.283936,-0.264648,-0.221649,-0.157776,-0.0760498,0.015564,0.108276,0.193542,0.262665,0.30603,0.316772,0.289642,0.225403,0.128723,0.00949097,-0.120087,-0.241425,-0.341339,-0.408234,-0.435242,-0.421234,-0.365601,-0.276184,-0.166992,-0.0498047,0.0587463,0.149261,0.213348,0.249725,0.262695,0.255859,0.237915,0.214264,0.192596,0.179596,0.174896,0.178558,0.183472,0.185577,0.177612,0.15686,0.124084,0.0824585,0.0353699,-0.011261,-0.054657,-0.0875854,-0.104187,-0.100586,-0.072876,-0.0255432,0.0355835,0.100677,0.158997,0.20343,0.228577,0.233337,0.21582,0.177856,0.123962,0.0591431,-0.00598145,-0.0635986,-0.105652,-0.127106,-0.128967,-0.111938,-0.0836487,-0.04776,-0.013031,0.0151367,0.0298157,0.0275879,0.00744629,-0.0289917,-0.0759888,-0.125793,-0.17157,-0.20578,-0.225098,-0.225037,-0.208374,-0.173676,-0.127258,-0.0744324,-0.0214539,0.023407,0.0575256,0.0778809,0.0854187,0.0838623,0.0760498,0.0664978,0.056366,0.0481262,0.0420837,0.0393066,0.0393982,0.0371399,0.0341797,0.0229187,0.00653076,-0.0206299,-0.0521851,-0.0845642,-0.113037,-0.132477,-0.139374,-0.130157,-0.102905,-0.0648804,-0.0171814,0.0334778,0.0832825,0.125519,0.152435,0.160797,0.150604,0.121338,0.0777893,0.0248413,-0.0317383,-0.0839844,-0.134644,-0.179108,-0.216949,-0.24115,-0.250244,-0.244446,-0.219055,-0.171173,-0.103638,-0.0223694,0.0631104,0.149841,0.227417,0.287567,0.323669,0.330994,0.304047,0.238678,0.14035,0.0218811,-0.10553,-0.226807,-0.328522,-0.399841,-0.431946,-0.423004,-0.373322,-0.289642,-0.184814,-0.0714111,0.0360718,0.126923,0.193237,0.232422,0.246063,0.23764,0.214996,0.186859,0.161163,0.143524,0.135498,0.136047,0.140137,0.14209,0.135437,0.11734,0.0900574,0.0514221,0.0062561,-0.0416565,-0.0875244,-0.124451,-0.145538,-0.144989,-0.118805,-0.0696411,-0.00500488,0.0675964,0.13797,0.19754,0.240173,0.260284,0.255585,0.226166,0.1763,0.110992,0.0404358,-0.0245361,-0.0769043,-0.1091,-0.1203,-0.11087,-0.0840149,-0.0476379,-0.0088501,0.0256958,0.0471497,0.0527039,0.0389099,0.00817871,-0.0341797,-0.0828552,-0.128601,-0.164978,-0.187347,-0.190643,-0.176361,-0.143921,-0.0991821,-0.0464172,0.00473022,0.0501404,0.0838623,0.103973,0.110016,0.106293,0.0960999,0.0814514,0.0658264,0.0527649,0.0415649,0.0337524,0.0273132,0.0205994,0.009552,-0.00759888,-0.0321655,-0.061615,-0.0955505,-0.129303,-0.156586,-0.173706,-0.176453,-0.163635,-0.133881,-0.090332,-0.0357361,0.0206299,0.0726624,0.114258,0.139709,0.148102,0.136139,0.106567,0.0621338,0.00857544,-0.0491028,-0.104736,-0.153931,-0.194733,-0.227509,-0.248596,-0.256836,-0.250305,-0.226013,-0.18396,-0.122345,-0.0460205,0.0369263,0.120026,0.198578,0.264435,0.310577,0.330292,0.318665,0.271057,0.190643,0.0834351,-0.0383301,-0.159698,-0.267548,-0.348511,-0.395294,-0.402039,-0.368683,-0.298279,-0.201599,-0.088623,0.023407,0.124146,0.20163,0.252838,0.27536,0.272736,0.250519,0.217163,0.182129,0.152527,0.130768,0.118622,0.113068,0.110931,0.105438,0.094635,0.0743713,0.0463562,0.0110474,-0.0286865,-0.0697937,-0.104767,-0.128235,-0.133881,-0.116577,-0.0780334,-0.0196838,0.0474854,0.118103,0.180176,0.227081,0.252563,0.254181,0.229614,0.182678,0.117767,0.0447388,-0.0266724,-0.0870056,-0.129364,-0.149292,-0.146545,-0.123871,-0.0869446,-0.0426941,-0.000335693,0.0333557,0.0524902,0.0529785,0.0362244,0.00408936,-0.0368042,-0.0779419,-0.115387,-0.140747,-0.152252,-0.147369,-0.126068,-0.0918884,-0.0496521,-0.00604248,0.0345459,0.0667725,0.0892639,0.100525,0.101715,0.0937805,0.0823059,0.0666809,0.049469,0.0342407,0.0205383,0.00921631,-0.00134277,-0.0121155,-0.0245667,-0.040802,-0.0617065,-0.0856934,-0.107697,-0.126343,-0.138428,-0.139343,-0.127319,-0.104523,-0.0733032,-0.0341797,0.0088501,0.0514832,0.0856323,0.107788,0.115173,0.105225,0.0793457,0.0432129,-0.00140381,-0.0521851,-0.105865,-0.151825,-0.191772,-0.226746,-0.25296,-0.262543,-0.260925,-0.247284,-0.21521,-0.161926,-0.0903931,-0.011261,0.0714722,0.155609,0.229553,0.287598,0.326263,0.337372,0.311646,0.248901,0.156372,0.0429077,-0.0828857,-0.202942,-0.30249,-0.373138,-0.406067,-0.39682,-0.348419,-0.267517,-0.162842,-0.043396,0.0728149,0.174377,0.250366,0.298065,0.318329,0.312286,0.287872,0.255798,0.220398,0.187775,0.159485,0.136597,0.119598,0.102783,0.0863037,0.0661316,0.0399475,0.0093689,-0.0262451,-0.0623474,-0.0961609,-0.120636,-0.130127,-0.120209,-0.0914612,-0.0456543,0.013916,0.079834,0.143494,0.197479,0.234741,0.250153,0.240936,0.208008,0.156586,0.0914612,0.0213928,-0.0446167,-0.0983582,-0.135284,-0.151611,-0.148102,-0.127136,-0.0944214,-0.0575256,-0.0234375,0.00247192,0.0154114,0.013031,-0.00323486,-0.0307312,-0.0644531,-0.098053,-0.126068,-0.144409,-0.148926,-0.139374,-0.114807,-0.0796204,-0.0386353,0.00134277,0.0376282,0.0669861,0.085907,0.0965271,0.098999,0.0943909,0.0828857,0.0689392,0.0521851,0.0355835,0.0196228,0.00576782,-0.00857544,-0.0227966,-0.0393982,-0.0580444,-0.0765381,-0.0946045,-0.108612,-0.11676,-0.117401,-0.107269,-0.0880737,-0.060791,-0.0258789,0.0127869,0.052063,0.0881348,0.115723,0.130585,0.13028,0.114685,0.0858154,0.0488281,0.00582886,-0.0397339,-0.0866699,-0.131622,-0.172211,-0.203217,-0.223999,-0.236359,-0.237549,-0.227448,-0.208038,-0.176453,-0.126404,-0.061615,0.012085,0.088562,0.165466,0.233643,0.279968,0.303833,0.300171,0.26416,0.195282,0.0989685,-0.013916,-0.135925,-0.25,-0.340485,-0.397675,-0.418579,-0.397552,-0.340057,-0.253174,-0.144928,-0.0275879,0.0853271,0.180603,0.253387,0.297913,0.312347,0.302002,0.27301,0.236298,0.197266,0.161102,0.129913,0.105682,0.0870972,0.0729675,0.0604858,0.0458069,0.0263977,0.0010376,-0.0289001,-0.0602722,-0.0877075,-0.105103,-0.108612,-0.0939941,-0.0625305,-0.0141296,0.0448914,0.110291,0.172791,0.224213,0.257843,0.268951,0.253265,0.215607,0.15976,0.0937195,0.0248413,-0.0377808,-0.0872498,-0.120087,-0.132904,-0.126984,-0.105011,-0.0726624,-0.0379333,-0.00656128,0.0147095,0.022583,0.0160522,-0.00198364,-0.0280762,-0.0574646,-0.084198,-0.104034,-0.11377,-0.111633,-0.0975647,-0.0740662,-0.0436707,-0.0108337,0.0197144,0.045105,0.0627441,0.0710449,0.072052,0.0652771,0.0527039,0.0352478,0.0154114,-0.00427246,-0.0229187,-0.0388489,-0.0510864,-0.0619812,-0.0718384,-0.0814819,-0.0900269,-0.0976257,-0.102844,-0.105927,-0.103333,-0.0960388,-0.0826416,-0.0629578,-0.0370789,-0.00430298,0.0265198,0.0544434,0.077179,0.0926514,0.0953064,0.0865173,0.0709229,0.046936,0.0123901,-0.0280151,-0.0684509,-0.110657,-0.150177,-0.17981,-0.198669,-0.211823,-0.217651,-0.213654,-0.200562,-0.176208,-0.134003,-0.0739441,-0.00582886,0.068573,0.146179,0.216522,0.269775,0.30603,0.320374,0.302094,0.250092,0.16925,0.0652161,-0.0557861,-0.175323,-0.27774,-0.353363,-0.397552,-0.401672,-0.36792,-0.300934,-0.206665,-0.0950317,0.0210876,0.126984,0.214966,0.27774,0.310364,0.314819,0.299103,0.267822,0.229034,0.189514,0.151459,0.117188,0.0892639,0.0666809,0.0484009,0.0303345,0.00964355,-0.0140076,-0.043396,-0.0741272,-0.101776,-0.121429,-0.13028,-0.121338,-0.0942688,-0.0502319,0.0088501,0.0762024,0.14563,0.207031,0.253876,0.279358,0.278381,0.254181,0.207367,0.146271,0.0764771,0.00775146,-0.0533142,-0.100952,-0.130554,-0.139557,-0.131409,-0.10791,-0.077301,-0.0446167,-0.0175171,0.00146484,0.009552,0.00796509,-0.00274658,-0.0187073,-0.0379028,-0.0548096,-0.0664978,-0.0688782,-0.0638733,-0.0495911,-0.0292664,-0.00726318,0.013031,0.0307617,0.0441895,0.052124,0.0555115,0.0542297,0.0467224,0.0320129,0.0141907,-0.00506592,-0.0227356,-0.0383911,-0.0504456,-0.0609131,-0.0720215,-0.0840149,-0.0942078,-0.103485,-0.109406,-0.112122,-0.110657,-0.105591,-0.09552,-0.0799255,-0.0580444,-0.0311584,0.000213623,0.0307617,0.0574036,0.0770264,0.0864563,0.0842896,0.0726013,0.0550232,0.028717,-0.00576782,-0.0461426,-0.0856018,-0.122833,-0.158081,-0.182404,-0.197601,-0.207092,-0.211273,-0.207581,-0.193604,-0.171631,-0.13501,-0.0826416,-0.0180664,0.0548706,0.133453,0.207031,0.266846,0.309601,0.330505,0.321289,0.277039,0.204224,0.10434,-0.0145569,-0.136353,-0.243256,-0.328033,-0.382538,-0.396851,-0.369812,-0.308533,-0.218079,-0.107422,0.00866699,0.116638,0.209198,0.278168,0.316132,0.323883,0.30896,0.278137,0.237335,0.19458,0.153351,0.117126,0.0879211,0.065979,0.047821,0.0286255,0.00701904,-0.0193481,-0.0506592,-0.0830078,-0.112061,-0.134583,-0.145813,-0.14035,-0.115143,-0.0720215,-0.0125732,0.0566406,0.128754,0.193512,0.24353,0.271698,0.275574,0.253387,0.21048,0.151886,0.0851135,0.0171814,-0.0455322,-0.0958862,-0.12796,-0.140839,-0.134796,-0.116211,-0.0894775,-0.060791,-0.0361023,-0.0169678,-0.00604248,-0.00366211,-0.00842285,-0.0184937,-0.02948,-0.039032,-0.0437012,-0.0415039,-0.0310974,-0.0157471,0.00372314,0.0224304,0.0377808,0.0485229,0.0534668,0.0530396,0.04776,0.0390625,0.0267334,0.0108337,-0.00610352,-0.0227356,-0.0361023,-0.0462341,-0.0515747,-0.0541687,-0.0551453,-0.0570374,-0.0599365,-0.0650024,-0.0699158,-0.0754089,-0.0804749,-0.0827332,-0.0810547,-0.0741577,-0.0614929,-0.0412292,-0.0154114,0.0133057,0.0388489,0.0601501,0.0730286,0.0756836,0.0690918,0.0524902,0.0287781,-0.00259399,-0.0396118,-0.0791321,-0.11496,-0.145966,-0.171021,-0.188477,-0.196045,-0.197968,-0.196411,-0.190369,-0.177856,-0.159698,-0.132477,-0.0910339,-0.0336914,0.0326233,0.105164,0.180603,0.248596,0.297791,0.324371,0.323761,0.288422,0.22049,0.123688,0.00878906,-0.115509,-0.230957,-0.324951,-0.387146,-0.409851,-0.391266,-0.333588,-0.245514,-0.136047,-0.0173035,0.0958862,0.19281,0.268036,0.313599,0.329102,0.319305,0.293854,0.257324,0.217804,0.180176,0.148224,0.120911,0.0973816,0.0759583,0.0528259,0.0230103,-0.0125732,-0.0533142,-0.0964661,-0.13562,-0.167084,-0.182892,-0.17926,-0.153412,-0.105438,-0.0389709,0.0406799,0.122894,0.199493,0.25946,0.299469,0.311554,0.296234,0.256836,0.198822,0.128296,0.0532532,-0.0183411,-0.0796204,-0.124878,-0.1521,-0.160095,-0.153412,-0.134857,-0.110718,-0.0847168,-0.0604248,-0.0401001,-0.0268555,-0.0173035,-0.0124512,-0.00933838,-0.00662231,-0.00241089,0.00500488,0.0147705,0.025177,0.0357361,0.0436707,0.0466919,0.0453796,0.0384216,0.0290527,0.0160522,0.00204468,-0.0103455,-0.0216064,-0.0314331,-0.0387573,-0.0426941,-0.0427551,-0.0413513,-0.0397644,-0.0388184,-0.0392456,-0.0426331,-0.0479736,-0.0545349,-0.0621948,-0.0694885,-0.0757751,-0.0780029,-0.0713196,-0.0585938,-0.0383911,-0.0119019,0.0171814,0.0442505,0.0668335,0.0835876,0.0902405,0.0837097,0.0646362,0.0353699,-0.00183105,-0.0422668,-0.0830078,-0.120239,-0.152802,-0.176727,-0.190979,-0.19809,-0.193604,-0.18338,-0.169678,-0.153778,-0.137268,-0.121979,-0.103912,-0.0774536,-0.0361023,0.0173645,0.0802002,0.147186,0.207947,0.254242,0.286957,0.298126,0.27948,0.228149,0.147736,0.0441895,-0.0745544,-0.190918,-0.291443,-0.366852,-0.407532,-0.405701,-0.366516,-0.294128,-0.195831,-0.0812378,0.0349121,0.144135,0.234955,0.298981,0.332062,0.340118,0.327606,0.299316,0.26178,0.220886,0.180603,0.142395,0.110535,0.0803528,0.0496521,0.0146179,-0.0222168,-0.0622559,-0.101532,-0.13681,-0.163849,-0.179169,-0.17807,-0.15567,-0.11264,-0.0511475,0.0237732,0.10434,0.182617,0.250214,0.297852,0.32135,0.318756,0.291809,0.244659,0.180511,0.106567,0.0307312,-0.0398865,-0.0986328,-0.140564,-0.164764,-0.17215,-0.164764,-0.147034,-0.122467,-0.09552,-0.0690002,-0.0462341,-0.0270691,-0.0108337,0.00253296,0.0129395,0.0220947,0.0298462,0.0362854,0.0432739,0.0488281,0.0522156,0.050293,0.0437622,0.033844,0.0198975,0.00534058,-0.00894165,-0.0211182,-0.0323792,-0.0431824,-0.0528259,-0.06073,-0.0656433,-0.0655518,-0.0619812,-0.0565491,-0.052124,-0.0484619,-0.0464478,-0.0455017,-0.0444031,-0.0453186,-0.0452881,-0.0466919,-0.0457458,-0.0400085,-0.0280762,-0.0103455,0.0108948,0.0334778,0.053833,0.0688171,0.0765991,0.0744324,0.0612183,0.0355225,-0.000701904,-0.0441895,-0.0889282,-0.129028,-0.162659,-0.187042,-0.198517,-0.19754,-0.186554,-0.165466,-0.137329,-0.107361,-0.0823669,-0.0631104,-0.0515747,-0.0438232,-0.0349731,-0.0187073,0.00985718,0.0488892,0.0958862,0.144714,0.189087,0.222168,0.241211,0.235321,0.202026,0.138885,0.0529175,-0.0511475,-0.16153,-0.261566,-0.341614,-0.391296,-0.403534,-0.374176,-0.307617,-0.210266,-0.0934753,0.0289001,0.145691,0.24762,0.322906,0.365875,0.377258,0.360413,0.321625,0.266266,0.207458,0.149078,0.0987549,0.0565491,0.0235596,-0.00372314,-0.0275879,-0.0500183,-0.0730896,-0.09552,-0.11557,-0.131195,-0.140411,-0.138733,-0.121124,-0.0864563,-0.0345459,0.0298157,0.102234,0.175323,0.24054,0.291718,0.320709,0.327057,0.306915,0.265198,0.202972,0.129669,0.0513,-0.0260315,-0.0935059,-0.14682,-0.182068,-0.198395,-0.197266,-0.180786,-0.152649,-0.118378,-0.0821533,-0.0481873,-0.0173645,0.00808716,0.0296326,0.0452271,0.0561523,0.0631714,0.0656433,0.0650635,0.0636597,0.0592957,0.052063,0.0409241,0.0265808,0.0108948,-0.00604248,-0.0218201,-0.0355835,-0.0484619,-0.059082,-0.0708923,-0.0811157,-0.0873718,-0.0880737,-0.0821838,-0.0734253,-0.0617676,-0.0505066,-0.0393066,-0.0290527,-0.02005,-0.0123291,-0.00814819,-0.00662231,-0.00564575,-0.00473022,-0.00189209,0.00259399,0.00921631,0.0184937,0.0273743,0.0334778,0.0348206,0.0303955,0.0193481,0.00238037,-0.0232239,-0.054718,-0.089325,-0.119934,-0.143005,-0.156525,-0.159058,-0.154114,-0.141052,-0.119324,-0.0919495,-0.0646667,-0.0419922,-0.027771,-0.0247803,-0.0317993,-0.0425415,-0.0522766,-0.0581665,-0.0500793,-0.0264587,0.0102539,0.056366,0.104614,0.148712,0.180878,0.197205,0.190308,0.153778,0.0905457,0.00680542,-0.088623,-0.184235,-0.265076,-0.323242,-0.351105,-0.340363,-0.291748,-0.212677,-0.113342,-0.0039978,0.10321,0.197906,0.272583,0.318451,0.332672,0.317474,0.281525,0.233002,0.178772,0.130157,0.0891418,0.0581665,0.0374451,0.0237732,0.0125732,0.000427246,-0.015564,-0.0360107,-0.0602112,-0.0847168,-0.107269,-0.124237,-0.126221,-0.110809,-0.0750732,-0.0233459,0.0418396,0.114594,0.187134,0.25116,0.299133,0.324738,0.324158,0.298859,0.250732,0.18515,0.109192,0.0289001,-0.0472717,-0.111847,-0.159973,-0.189606,-0.200775,-0.194366,-0.174683,-0.144897,-0.110077,-0.0735779,-0.0390625,-0.00772095,0.0204163,0.0432129,0.0606384,0.0729675,0.0802002,0.0839844,0.0853882,0.0822449,0.0756836,0.0628052,0.0449524,0.0242615,0.00106812,-0.0224304,-0.0441589,-0.0650635,-0.0817261,-0.0964355,-0.107758,-0.114105,-0.112854,-0.10257,-0.0845032,-0.0628967,-0.0380554,-0.0153198,0.00588989,0.0216675,0.033783,0.0376892,0.0346985,0.0245361,0.012085,-0.00198364,-0.0144348,-0.024353,-0.0293884,-0.0306091,-0.0272217,-0.0215454,-0.0147705,-0.0085144,-0.00448608,-0.00640869,-0.0135193,-0.026886,-0.0481262,-0.0723877,-0.0950928,-0.112366,-0.123657,-0.12735,-0.120575,-0.107208,-0.0889282,-0.0688782,-0.0514832,-0.0388489,-0.0329285,-0.032074,-0.038208,-0.0513611,-0.0665588,-0.0761719,-0.0732422,-0.0538025,-0.0190125,0.0263977,0.0738831,0.117126,0.149567,0.164551,0.162079,0.13739,0.0891418,0.01828,-0.0651245,-0.153076,-0.232788,-0.291046,-0.317749,-0.308777,-0.269379,-0.200928,-0.112122,-0.0141296,0.0842896,0.176727,0.249451,0.294464,0.308777,0.296997,0.264862,0.220734,0.171509,0.123047,0.0823975,0.0498657,0.0263977,0.0102539,-0.00112915,-0.0118103,-0.0244141,-0.0411682,-0.0609741,-0.0804749,-0.0960388,-0.102783,-0.0977173,-0.0787354,-0.0450134,0.00335693,0.0650024,0.132874,0.201538,0.261139,0.30188,0.319305,0.312134,0.281525,0.229614,0.161469,0.0837708,0.00350952,-0.0702209,-0.131958,-0.174744,-0.19577,-0.196899,-0.180298,-0.152161,-0.114746,-0.0734558,-0.033783,0.00408936,0.0367126,0.0621338,0.0794373,0.0900269,0.0953064,0.0960999,0.0950928,0.0903931,0.0810547,0.0680237,0.0494385,0.0285645,0.00415039,-0.0223694,-0.0498962,-0.0756836,-0.0960083,-0.110931,-0.118958,-0.118591,-0.110229,-0.0938416,-0.0694275,-0.0391846,-0.00701904,0.0216064,0.0430603,0.0567627,0.0592346,0.0511475,0.0358887,0.0151978,-0.00830078,-0.0335388,-0.0554199,-0.0707703,-0.0761719,-0.0715637,-0.0583801,-0.0393066,-0.0201111,-0.00265503,0.0107727,0.0183716,0.0174561,0.00796509,-0.0123291,-0.0396729,-0.0709839,-0.0989685,-0.118103,-0.127594,-0.127686,-0.117767,-0.0990601,-0.076416,-0.0557251,-0.0384827,-0.0275879,-0.0250549,-0.0323792,-0.0476074,-0.0674744,-0.0880737,-0.107269,-0.119751,-0.115845,-0.0956116,-0.0587463,-0.00775146,0.0472717,0.101013,0.140991,0.162628,0.164886,0.148926,0.110779,0.0533142,-0.0195618,-0.0991821,-0.176453,-0.239807,-0.27597,-0.279358,-0.251373,-0.199738,-0.127533,-0.045166,0.036377,0.114105,0.181793,0.231079,0.256012,0.256287,0.234314,0.200073,0.15921,0.119995,0.0870056,0.0625916,0.0455017,0.033783,0.0254822,0.0198364,0.0146484,0.00564575,-0.00915527,-0.0274353,-0.0464172,-0.0625305,-0.0725403,-0.0730286,-0.0597229,-0.0298462,0.013031,0.0655518,0.124298,0.181549,0.22998,0.261688,0.274414,0.265503,0.237488,0.190002,0.130371,0.0650024,-0.00183105,-0.0613403,-0.110535,-0.142395,-0.157166,-0.155975,-0.141968,-0.115997,-0.084198,-0.0484619,-0.0123901,0.0210876,0.0496826,0.0711365,0.0861816,0.0951233,0.0986328,0.0968628,0.0906677,0.0799866,0.064209,0.0453796,0.0229187,0.00134277,-0.0216064,-0.0421448,-0.0612793,-0.0751343,-0.0839233,-0.0850525,-0.0804138,-0.070282,-0.0576782,-0.0429688,-0.0267334,-0.00979614,0.00512695,0.0163879,0.0231323,0.0262451,0.0235596,0.0163269,0.00582886,-0.00582886,-0.0198364,-0.0342407,-0.0465088,-0.0548096,-0.0579529,-0.0559998,-0.049469,-0.0405273,-0.0306702,-0.0187988,-0.0078125,0.000335693,0.00183105,-0.00177002,-0.0125732,-0.0282898,-0.0473633,-0.0667725,-0.084259,-0.0982056,-0.108185,-0.112762,-0.112274,-0.103119,-0.0857544,-0.0666809,-0.0523987,-0.0425415,-0.0365295,-0.033783,-0.0379333,-0.0472107,-0.0576172,-0.0678101,-0.0791321,-0.0918579,-0.10144,-0.0953064,-0.072876,-0.0403748,-0.00421143,0.0326538,0.0656433,0.088501,0.100464,0.10553,0.0983276,0.0742798,0.0325012,-0.0209045,-0.078949,-0.132202,-0.171173,-0.191925,-0.194214,-0.177917,-0.144226,-0.094635,-0.0349731,0.02771,0.0906067,0.145813,0.186859,0.206818,0.207184,0.193176,0.169128,0.139984,0.111237,0.0844727,0.0626221,0.0461426,0.035675,0.0312195,0.0310364,0.0289917,0.0223694,0.00970459,-0.00610352,-0.0234375,-0.0410156,-0.0536804,-0.0574036,-0.0485229,-0.0263672,0.00759888,0.0524292,0.102692,0.154633,0.198883,0.231506,0.249329,0.248047,0.22702,0.18811,0.134918,0.0759888,0.0162354,-0.0387573,-0.0846252,-0.118195,-0.136108,-0.140259,-0.129852,-0.108398,-0.0779419,-0.0443726,-0.00976562,0.0211792,0.0473633,0.0674133,0.0830994,0.0927124,0.0962524,0.0946045,0.0887146,0.0782166,0.0635986,0.0474243,0.0305481,0.0137329,-0.00338745,-0.0217285,-0.0389099,-0.0559998,-0.0684509,-0.0764771,-0.078949,-0.0774536,-0.0724487,-0.0637512,-0.0509949,-0.0332031,-0.0144958,0.00268555,0.0174561,0.0280151,0.0337524,0.0322266,0.0244751,0.0121765,-0.00259399,-0.0180969,-0.0329285,-0.0461426,-0.054657,-0.0572815,-0.0526733,-0.0462036,-0.0375671,-0.0275879,-0.0162354,-0.00933838,-0.00949097,-0.0144043,-0.023407,-0.0371399,-0.0535889,-0.0688782,-0.0796509,-0.0874939,-0.0892029,-0.0862427,-0.0803528,-0.0711975,-0.0570374,-0.0410767,-0.030304,-0.026947,-0.0276489,-0.0328369,-0.0402222,-0.0526123,-0.0617065,-0.070343,-0.0762634,-0.0839233,-0.0894165,-0.0923157,-0.092926,-0.0936279,-0.0866089,-0.0731812,-0.0535278,-0.0317993,-0.00704956,0.01828,0.0424194,0.0644531,0.0846863,0.0974426,0.0961609,0.0763855,0.0434875,0.000854492,-0.0472717,-0.0955505,-0.136047,-0.164948,-0.177002,-0.172485,-0.148438,-0.108673,-0.0558472,0.00561523,0.0683899,0.124573,0.163696,0.184021,0.187988,0.178986,0.160034,0.136597,0.110657,0.0858765,0.0644531,0.0501404,0.0431824,0.0403748,0.0391235,0.033783,0.0242004,0.00793457,-0.012085,-0.0319519,-0.0494385,-0.0611267,-0.0619202,-0.0491028,-0.0223083,0.0161133,0.0641479,0.116974,0.168976,0.213348,0.241516,0.251831,0.241028,0.211731,0.166595,0.111206,0.0497437,-0.0101318,-0.0635376,-0.101776,-0.126343,-0.133179,-0.123871,-0.100525,-0.0682373,-0.0319519,0.00527954,0.0396729,0.0673218,0.0874939,0.0991821,0.10257,0.0973816,0.0874939,0.0738831,0.0592346,0.0435486,0.0308228,0.0203857,0.0127869,0.00527954,-0.00289917,-0.0103455,-0.0179443,-0.0242004,-0.0310059,-0.0376892,-0.0449524,-0.0517578,-0.0550842,-0.0519104,-0.0426941,-0.0298157,-0.0153198,0.000152588,0.0136414,0.0231323,0.0281982,0.0254517,0.0167236,0.00210571,-0.0153198,-0.0360718,-0.0559998,-0.0694885,-0.0743713,-0.0708923,-0.0595703,-0.0420837,-0.020813,0.000335693,0.0178833,0.0298462,0.0329285,0.0232239,0.0032959,-0.0229187,-0.0523987,-0.0823059,-0.107269,-0.123535,-0.131134,-0.128937,-0.116058,-0.0951233,-0.0709229,-0.0445251,-0.0206909,-0.00604248,-0.00317383,-0.00976562,-0.0198364,-0.0332642,-0.0474854,-0.0588989,-0.0697021,-0.0820312,-0.0947571,-0.0982056,-0.097168,-0.0971375,-0.100037,-0.104553,-0.104736,-0.0997009,-0.0871582,-0.0687866,-0.0431213,-0.0088501,0.030304,0.0678101,0.0991211,0.123169,0.13092,0.116089,0.0823669,0.0340576,-0.0285645,-0.0973816,-0.160461,-0.207611,-0.23349,-0.235168,-0.21225,-0.166168,-0.0989075,-0.0167236,0.0674744,0.141174,0.197113,0.23111,0.242065,0.231659,0.203735,0.165588,0.120911,0.0773315,0.0395508,0.0139465,0.00149536,-0.00280762,-0.00253296,0.00183105,0.00491333,0.00360107,-0.00442505,-0.0159607,-0.0279846,-0.0367126,-0.0397339,-0.0317383,-0.0111694,0.0238647,0.070282,0.122955,0.175659,0.223511,0.257599,0.273376,0.266815,0.240021,0.191711,0.129852,0.0595093,-0.00894165,-0.0694275,-0.115387,-0.143005,-0.150635,-0.13797,-0.108917,-0.0671997,-0.0196838,0.0310059,0.0759583,0.110596,0.131622,0.140625,0.138855,0.126678,0.107056,0.0844727,0.0586548,0.0352478,0.0161133,0.00323486,-0.00247192,-0.00521851,-0.00512695,-0.00372314,-0.00231934,-0.0017395,-0.00457764,-0.0107117,-0.0206299,-0.0312195,-0.0400085,-0.0487366,-0.0529785,-0.0516968,-0.0453186,-0.0349121,-0.0213928,-0.00653076,0.00704956,0.0169678,0.0216064,0.020752,0.0149231,0.00317383,-0.0130005,-0.0278625,-0.0383301,-0.0443115,-0.0460205,-0.0419312,-0.0313721,-0.0202637,-0.00921631,-0.000915527,0.00357056,-0.00259399,-0.0171509,-0.0386963,-0.0645142,-0.0906982,-0.113617,-0.129791,-0.135498,-0.129913,-0.112854,-0.088562,-0.0576172,-0.0245667,0.00448608,0.026886,0.0376892,0.0363159,0.0239258,0.00646973,-0.02005,-0.0515747,-0.0805359,-0.103424,-0.121826,-0.133179,-0.132751,-0.125763,-0.121277,-0.118042,-0.116577,-0.117706,-0.121643,-0.123901,-0.125702,-0.122192,-0.10553,-0.0744324,-0.0372314,0.00909424,0.0645142,0.120087,0.164001,0.193542,0.20459,0.187531,0.13739,0.0665588,-0.0191956,-0.11145,-0.201141,-0.274353,-0.32373,-0.339783,-0.318756,-0.264923,-0.182465,-0.0799866,0.0320129,0.138458,0.226013,0.287933,0.316345,0.312927,0.281311,0.228149,0.164703,0.0981445,0.0370178,-0.0120239,-0.0405273,-0.0495911,-0.0428467,-0.0279236,-0.00793457,0.00949097,0.0201721,0.0222168,0.0168762,0.00421143,-0.00888062,-0.0187073,-0.0194702,-0.00744629,0.0190125,0.0593872,0.106781,0.158691,0.207397,0.242615,0.26059,0.258331,0.235016,0.192261,0.134857,0.0711975,0.00723267,-0.0464172,-0.0863037,-0.10553,-0.105438,-0.086731,-0.0545349,-0.0155334,0.0254517,0.0643616,0.0935059,0.108978,0.111847,0.102631,0.0847778,0.0618286,0.0387573,0.0205383,0.00866699,0.00500488,0.00976562,0.0229492,0.0404663,0.0584717,0.0743408,0.0847168,0.0869446,0.0805664,0.0629578,0.0379028,0.00747681,-0.0242615,-0.0536804,-0.0777893,-0.0940552,-0.10144,-0.0994873,-0.0889893,-0.0704346,-0.0484009,-0.0248413,-0.00311279,0.0149841,0.0281982,0.0361633,0.0369263,0.033844,0.0273132,0.0188599,0.0111694,0.00286865,-0.00421143,-0.00985718,-0.0149841,-0.0220947,-0.0316467,-0.0413818,-0.0563354,-0.0749817,-0.0943909,-0.111694,-0.126434,-0.13501,-0.135284,-0.126709,-0.109955,-0.0839233,-0.0527649,-0.0211182,0.00894165,0.0327148,0.0468445,0.0476074,0.0377808,0.0193481,-0.00598145,-0.0374451,-0.0682983,-0.0961609,-0.115601,-0.126282,-0.130127,-0.127319,-0.120728,-0.110291,-0.100677,-0.0932312,-0.0880127,-0.0877075,-0.0940552,-0.101288,-0.106506,-0.110992,-0.113251,-0.106934,-0.0939941,-0.0755005,-0.0481262,-0.0134277,0.0203247,0.0506592,0.0808105,0.104126,0.113831,0.112488,0.0992737,0.0706482,0.0273132,-0.0218201,-0.0755005,-0.130768,-0.18045,-0.216125,-0.236359,-0.235809,-0.213074,-0.17157,-0.113617,-0.0442505,0.0326233,0.10672,0.170654,0.218018,0.243683,0.24884,0.233978,0.201599,0.157227,0.107361,0.0585327,0.0164795,-0.0148315,-0.032074,-0.038208,-0.0343933,-0.0231323,-0.00878906,0.00335693,0.0127869,0.016449,0.0152588,0.00942993,0.00512695,0.00408936,0.0093689,0.0244751,0.0493774,0.0823975,0.121368,0.163269,0.198883,0.226044,0.23996,0.237762,0.21759,0.182831,0.137268,0.0830078,0.0296021,-0.018158,-0.0542908,-0.0784302,-0.085907,-0.0784912,-0.059021,-0.0305481,0.00350952,0.0369873,0.0658264,0.087738,0.101654,0.106384,0.104034,0.094696,0.0826721,0.070282,0.0585327,0.0517578,0.0507202,0.0529785,0.0576782,0.0644531,0.0699158,0.0722351,0.0683594,0.0593567,0.0422974,0.0209045,-0.00518799,-0.0317078,-0.0570679,-0.0783081,-0.0927124,-0.0993347,-0.0970764,-0.0864563,-0.0690002,-0.0471191,-0.0211182,0.00402832,0.0276489,0.0446167,0.0570679,0.0621033,0.0611877,0.0534668,0.040802,0.0236206,0.00561523,-0.0131531,-0.0308838,-0.047699,-0.0628967,-0.0757751,-0.0865479,-0.0953064,-0.102295,-0.106293,-0.107269,-0.105927,-0.10202,-0.0929871,-0.0813293,-0.0665588,-0.0509338,-0.0334167,-0.0176697,-0.00408936,0.00561523,0.0109558,0.0104065,0.00494385,-0.00582886,-0.0185852,-0.0341797,-0.0496521,-0.0654907,-0.0778809,-0.0887756,-0.0964661,-0.101807,-0.10376,-0.101654,-0.0991211,-0.0950317,-0.0919495,-0.0870056,-0.0808411,-0.0742798,-0.067688,-0.0602722,-0.0532532,-0.0472717,-0.0440369,-0.0396118,-0.0377808,-0.0379028,-0.0401001,-0.0447388,-0.0501709,-0.0518494,-0.0473633,-0.0401001,-0.0298462,-0.0119019,0.0102539,0.0289307,0.0450745,0.0604248,0.0690918,0.063324,0.0443115,0.0180969,-0.0167542,-0.0571289,-0.0974426,-0.130127,-0.152924,-0.159821,-0.149902,-0.122345,-0.0810242,-0.0260925,0.0341187,0.0921631,0.142609,0.179688,0.199097,0.198395,0.179596,0.146179,0.102692,0.0561523,0.0108337,-0.0257568,-0.0502319,-0.0619202,-0.0610046,-0.0494385,-0.0284729,-0.00286865,0.0205994,0.0400391,0.0543823,0.0624084,0.0617676,0.0573425,0.0514221,0.0484009,0.04599,0.0478516,0.0537415,0.0648499,0.0782166,0.0906067,0.100311,0.104675,0.101776,0.0930176,0.0767517,0.0560608,0.0333252,0.0109863,-0.00689697,-0.0211792,-0.027771,-0.0261841,-0.0190735,-0.00723267,0.00872803,0.0244751,0.0389099,0.050293,0.0585327,0.0614319,0.0610046,0.0572815,0.0522766,0.0455933,0.0390625,0.033844,0.0310974,0.0290527,0.027771,0.0256958,0.0240784,0.0215149,0.0183411,0.0140686,0.00842285,0.00344849,-0.0022583,-0.00512695,-0.00717163,-0.00726318,-0.00613403,-0.0039978,-0.000640869,0.00259399,0.00463867,0.00592041,0.00604248,0.00485229,0.00302124,0.00146484,0.00012207,0.000152588,-6.10352e-05,0.00140381,0.00338745,0.00430298,0.00485229,0.00430298,0.00183105,-0.00265503,-0.0078125,-0.0135193,-0.0195007,-0.0254517,-0.0296326,-0.0310059,-0.0296021,-0.0268555,-0.0220947,-0.0146484,-0.00738525,-0.000640869,0.00518799,0.00830078,0.00991821,0.00793457,0.00427246,-0.0010376,-0.00674438,-0.013092,-0.0180969,-0.0216675,-0.0244141,-0.024353,-0.0242615,-0.0220032,-0.0191956,-0.0168152,-0.0144348,-0.0125732,-0.0117493,-0.0111694,-0.011261,-0.0118713,-0.0124512,-0.0128174,-0.0135193,-0.0132141,-0.013031,-0.0123291,-0.0115356,-0.0107117,-0.0100708,-0.00976562,-0.00985718,-0.0100708,-0.0116882,-0.0130005,-0.0153198,-0.0177917,-0.0204773,-0.0232849,-0.025177,-0.0264587,-0.0270996,-0.0263062,-0.0242004,-0.0217896,-0.018158,-0.0154724,-0.0116882,-0.00894165,-0.00680542,-0.00564575,-0.00604248,-0.00717163,-0.00942993,-0.0129395,-0.0160217,-0.0204163,-0.0236206,-0.0266113,-0.0290527,-0.0304565,-0.0306702,-0.0317383,-0.0314331,-0.0312195,-0.0308838,-0.0306091,-0.0301819,-0.0294189,-0.0287781,-0.0264587,-0.0240784,-0.020752,-0.0175171,-0.0139465,-0.0108948,-0.00872803,-0.00732422,-0.00765991,-0.00872803,-0.0116882,-0.0148315,-0.0184326,-0.0222473,-0.0249023,-0.0267334,-0.0274353,-0.0258179,-0.0236206,-0.0195007,-0.0153503,-0.0112,-0.00683594,-0.00344849,-0.00134277,0.000213623,0.00012207,-0.000701904,-0.00216675,-0.00268555,-0.00448608,-0.00378418,-0.00430298,-0.00210571,-0.000152588,0.00286865,0.00549316,0.00888062,0.0106812,0.0125122,0.0133667,0.013916,0.0137329,0.0124512,0.0119629,0.0108948,0.0101318,0.0104675,0.0102844,0.0121765,0.0133057,0.0151062,0.0177917,0.0191345,0.0211182,0.0223694,0.0232849,0.022644,0.0223083,0.020874,0.0187988,0.0166016,0.0144043,0.0126648,0.0111694,0.0108948,0.00985718,0.0106812,0.0120239,0.0133057,0.0157471,0.0176697,0.0203247,0.0222168,0.0236206,0.0247498,0.0252686,0.0241394,0.022644,0.020752,0.0175781,0.0149231,0.0121765,0.0093689,0.00747681,0.00576782,0.0045166,0.00421143,0.00494385,0.00634766,0.00775146,0.0101318,0.0122375,0.0148315,0.0172424,0.0197144,0.0215149,0.0220947,0.0227051,0.0217285,0.0206299,0.0189819,0.017395,0.0154724,0.0137024,0.0127258,0.0117493,0.0125122,0.0137329,0.0127869,0.0134277,0.0141907,0.0161743,0.0169678,0.0186462,0.0192871,0.0188599,0.0194702,0.0192871,0.0184326,0.0171814,0.0154724,0.013855,0.0134888,0.0123901,0.0122375,0.0114136,0.0116272,0.0116882,0.0114136,0.0121765,0.0118713,0.0130005,0.013031,0.0136414,0.013855,0.0135803,0.0127869,0.0125732,0.0114746,0.0118103,0.0108337,0.00894165,0.00772095,0.0062561,0.00448608,0.00323486,0.00189209,-0.00012207,-0.00241089,-0.00357056,-0.00491333,-0.00500488,-0.00576782,-0.00512695,-0.00427246,-0.0038147,-0.00241089,-0.0022583,-0.0010376,-0.00216675,-0.00274658,-0.00430298,-0.00646973,-0.00878906,-0.0107117,-0.0129395,-0.0141296,-0.0146484,-0.0154724,-0.0149841,-0.0146484,-0.0142822,-0.0137329,-0.0137024,-0.0144043,-0.015564,-0.0170288,-0.0190125,-0.020752,-0.0222168,-0.022583,-0.0218811,-0.0219421,-0.0204163,-0.0197144,-0.0169373,-0.0151367,-0.0133667,-0.0135803,-0.015564,-0.0185852,-0.0223083,-0.0270081,-0.0315857,-0.0365906,-0.0405273,-0.0426331,-0.0431824,-0.0417175,-0.0378418,-0.0334778,-0.026947,-0.0211792,-0.0161133,-0.0117493,-0.00964355,-0.00933838,-0.0110474,-0.0145569,-0.0194092,-0.0258789,-0.0318604,-0.0372925,-0.0412292,-0.0431213,-0.0429993,-0.0410767,-0.0377808,-0.0330505,-0.0279846,-0.0231628,-0.0189819,-0.0162659,-0.0149231,-0.0154114,-0.0169373,-0.0187683,-0.0211182,-0.0237122,-0.025238,-0.0252686,-0.0244751,-0.0227051,-0.0192566,-0.0151062,-0.0102844,-0.0062561,-0.00204468,0.000335693,0.00167847,0.00189209,0.000366211,-0.00161743,-0.00457764,-0.00787354,-0.0102844,-0.0118103,-0.0130005,-0.0117493,-0.00970459,-0.00588989,-0.000854492,0.00393677,0.0101929,0.0144348,0.0192566,0.0219421,0.0233459,0.0236206,0.0219421,0.0195007,0.015625,0.0122986,0.00814819,0.00543213,0.00430298,0.00323486,0.00500488,0.00683594,0.0107727,0.0142212,0.0187988,0.0228577,0.0256958,0.0275879,0.0281372,0.0274353,0.0260315,0.0236511,0.0213013,0.0189209,0.016449,0.0153198,0.0140686,0.0140076,0.0157471,0.016449,0.0190735,0.020874,0.0222168,0.0239868,0.0246277,0.0247803,0.0256042,0.0249023,0.0247803,0.0239258,0.0233459,0.022522,0.0224304,0.0223083,0.0223083,0.0224304,0.0220947,0.0213928,0.0205994,0.0193481,0.01828,0.0174561,0.0161743,0.0162659,0.015686,0.0166016,0.0177917,0.0191956,0.0210266,0.0244751,0.0253296,0.0232849,0.0198364,0.0193481,0.0195618,0.0192566,0.0180664,0.0144043,0.0116272,0.00970459,0.0109863,0.0118103,0.012085,0.0119019,0.0119019,0.0115967,0.0116882,0.011322,0.00970459,0.00796509,0.00592041,0.00357056,0.00195312,0.00106812,0.00106812,0.0017395,0.00350952,0.00512695,0.00695801,0.00872803,0.0100403,0.0113831,0.0119019,0.0109863,0.00985718,0.00646973,0.00311279,-0.000640869,-0.00393677,-0.00656128,-0.00857544,-0.0101929,-0.0102844,-0.00921631,-0.00704956,-0.00494385,-0.00289917,-0.000915527,0.00119019,0.0017395,-0.000549316,-0.00280762,-0.00479126,-0.00717163,-0.00808716,-0.00823975,-0.00906372,-0.00915527,-0.00814819,-0.00613403,-0.00448608,-0.00216675,0,6.10352e-05,0.00125122,0.000579834,0.000366211,-0.00219727,-0.00506592,-0.00915527,-0.013031,-0.0163269,-0.0185852,-0.0205383,-0.0220032,-0.0221558,-0.0216675,-0.0204773,-0.0180969,-0.0161743,-0.0125732,-0.0102539,-0.00653076,-0.00387573,-0.0015564,-0.0010376,-0.000579834,-0.00134277,-0.00323486,-0.00549316,-0.00872803,-0.0127869,-0.016449,-0.020874,-0.0247803,-0.027771,-0.0307617,-0.0324402,-0.0332031,-0.0327759,-0.0307617,-0.0279846,-0.025116,-0.0209045,-0.0168152,-0.0126038,-0.00979614,-0.00680542,-0.00564575,-0.00640869,-0.0078125,-0.011322,-0.0136414,-0.0172424,-0.0198364,-0.0223083,-0.0234985,-0.0242615,-0.0242004,-0.0232239,-0.0217285,-0.0209045,-0.0198364,-0.0198364,-0.020752,-0.0220947,-0.0237732,-0.0255432,-0.0257568,-0.0267334,-0.0253906,-0.0235596,-0.0205383,-0.016449,-0.0121765,-0.00817871,-0.00469971,-0.00286865,-0.00149536,-0.00289917,-0.00491333,-0.00878906,-0.013031,-0.0177917,-0.0220947,-0.0263062,-0.0278015,-0.0289001,-0.0273132,-0.0256653,-0.0218811,-0.0180054,-0.0139465,-0.00970459,-0.00540161,-0.00241089,0.00125122,0.00274658,0.00457764,0.00521851,0.00619507,0.00570679,0.00613403,0.00518799,0.00415039,0.00241089,0.000488281,-0.00112915,-0.0039978,-0.00588989,-0.00765991,-0.00906372,-0.00949097,-0.00872803,-0.00668335,-0.00402832,-0.00012207,0.0045166,0.00878906,0.0132446,0.0169373,0.0195618,0.0215149,0.0220947,0.0220337,0.020813,0.0187988,0.0171814,0.015686,0.0143433,0.0135803,0.0134277,0.0128174,0.0135193,0.0132446,0.0134277,0.0137329,0.013092,0.0130005,0.0132141,0.0135193,0.0149231,0.0162354,0.0173035,0.0187073,0.0205383,0.0228577,0.0248413,0.0271606,0.0278625,0.0280762,0.0276489,0.0270691,0.0258789,0.0247803,0.0232849,0.0227966,0.0218811,0.022522,0.0230103,0.0240784,0.0246277,0.0247498,0.0243225,0.022644,0.0220947,0.0197754,0.0185547,0.0167236,0.015686,0.0154724,0.015686,0.0173035,0.0196838,0.0224304,0.0249023,0.027771,0.0284729,0.0293274,0.0287781,0.0272827,0.0252686,0.0230103,0.0204773,0.0184326,0.0168152,0.0161743,0.0167236,0.0164795,0.017395,0.0176392,0.0176392,0.0170898,0.015625,0.0135803,0.0108948,0.00866699,0.00613403,0.00518799,0.00494385,0.00588989,0.00793457,0.0103455,0.013031,0.0159607,0.0178528,0.0184326,0.0187988,0.0168762,0.0147095,0.0108948,0.00759888,0.00265503,-0.000366211,-0.00427246,-0.0071106,-0.00842285,-0.0101929,-0.0102844,-0.0104065,-0.00976562,-0.00866699,-0.00793457,-0.00653076,-0.00561523,-0.00408936,-0.00378418,-0.00286865,-0.00247192,-0.00253296,-0.00302124,-0.00360107,-0.00521851,-0.0062561,-0.00796509,-0.0102844,-0.0116882,-0.0145569,-0.0155334,-0.0178528,-0.0187683,-0.0198364,-0.0204163,-0.0201111,-0.019928,-0.0194092,-0.0183411,-0.0173645,-0.0165405,-0.0149841,-0.0142822,-0.0134888,-0.0132141,-0.013092,-0.0135193,-0.013916,-0.0148621,-0.0158997,-0.0173035,-0.018219,-0.0190735,-0.019928,-0.0209045,-0.0204163,-0.0210876,-0.0213928,-0.0211182,-0.0209656,-0.0204163,-0.0202026,-0.0191956,-0.0185547,-0.0176392,-0.0167542,-0.0159607,-0.0149841,-0.0148315,-0.0145569,-0.0144348,-0.0152588,-0.015625,-0.0168762,-0.018158,-0.0194702,-0.0206299,-0.0212402,-0.0223083,-0.0215454,-0.0210266,-0.0198364,-0.0179443,-0.0157471,-0.013916,-0.0109863,-0.00979614,-0.00845337,-0.00775146,-0.00753784,-0.00857544,-0.00888062,-0.0103455,-0.0113831,-0.0123291,-0.0127869,-0.0132446,-0.0127869,-0.0125122,-0.0116882,-0.0111694,-0.0108337,-0.0108948,-0.0108337,-0.0110474,-0.0108948,-0.0106812,-0.00958252,-0.00863647,-0.00662231,-0.00402832,-0.00189209,0.000549316,0.00177002,0.00296021,0.0022583,0.000854492,-0.00149536,-0.00448608,-0.00738525,-0.00985718,-0.0118713,-0.0126648,-0.0114136,-0.00964355,-0.00576782,-0.00125122,0.00360107,0.00765991,0.0116882,0.0131531,0.0140686,0.0121765,0.00970459,0.00518799,0.00125122,-0.0038147,-0.00732422,-0.009552,-0.0107117,-0.00979614,-0.0071106,-0.00366211,0.000854492,0.00518799,0.00933838,0.0122986,0.0141907,0.0142212,0.0135193,0.0107727,0.00796509,0.00448608,0.0015564,-0.000762939,-0.00167847,-0.00268555,-0.000762939,-0.000152588,0.00268555,0.0038147,0.00576782,0.00610352,0.00646973,0.00570679,0.00494385,0.00366211,0.00311279,0.00247192,0.00289917,0.0045166,0.00564575,0.00823975,0.0107727,0.0125122,0.0141907,0.0146179,0.0141296,0.0122986,0.0102539,0.00683594,0.00393677,0.00146484,-0.00012207,-0.00146484,-0.000335693,0.00128174,0.0038147,0.00753784,0.0112,0.0143433,0.0176697,0.0194702,0.0198975,0.0195618,0.01828,0.015625,0.013092,0.0108337,0.00863647,0.00704956,0.00598145,0.00619507,0.00668335,0.00772095,0.00915527,0.0102539,0.011322,0.011261,0.0116882,0.0110474,0.00991821,0.0093689,0.00836182,0.00817871,0.00830078,0.00857544,0.0100403,0.0112,0.013031,0.0142212,0.0153503,0.0158997,0.0149231,0.013855,0.0117493,0.00915527,0.0062561,0.00415039,0.00167847,0.000488281,0.000335693,0.0010376,0.00265503,0.0045166,0.00723267,0.00985718,0.0115967,0.0137329,0.0142822,0.013855,0.0127258,0.0104065,0.00772095,0.00436401,0.00177002,-0.00134277,-0.00274658,-0.00457764,-0.00448608,-0.00448608,-0.00311279,-0.00146484,0.000915527,0.00265503,0.00485229,0.00634766,0.00717163,0.00765991,0.0078125,0.00656128,0.00549316,0.00387573,0.0022583,0.000579834,-0.000427246,-0.00161743,-0.00183105,-0.00198364,-0.00128174,-0.000488281,0.000640869,0.00177002,0.00241089,0.00323486,0.00311279,0.00280762,0.00198364,0.000793457,-0.000915527,-0.00268555,-0.00421143,-0.0055542,-0.00576782,-0.00668335,-0.00494385,-0.00473022,-0.00238037,-0.000915527,0.000793457,0.00268555,0.00274658,0.00311279,0.00268555,0.000640869,-0.0010376,-0.00408936,-0.0062561,-0.00949097,-0.011261,-0.0127258,-0.0130005,-0.0132141,-0.0121155,-0.0106201,-0.0088501,-0.00732422,-0.00521851,-0.00436401,-0.00344849,-0.00317383,-0.00311279,-0.0038147,-0.00463867,-0.00506592,-0.00646973,-0.00726318,-0.00747681,-0.00823975,-0.00866699,-0.00823975,-0.00921631,-0.00857544,-0.00915527,-0.00894165,-0.0093689,-0.00933838,-0.009552,-0.00958252,-0.00997925,-0.00942993,-0.00915527,-0.00842285,-0.00775146,-0.00653076,-0.00646973,-0.00485229,-0.00469971,-0.00408936,-0.00335693,-0.00378418,-0.00338745,-0.00393677,-0.00393677,-0.00494385,-0.00479126,-0.00534058,-0.00518799,-0.00491333,-0.00479126,-0.00415039,-0.0039978,-0.00344849,-0.00280762,-0.00302124,-0.00247192,-0.00274658,-0.00286865,-0.00286865,-0.00311279,-0.00265503,-0.00274658,-0.00161743,-0.00112915,-0.00012207,0.000640869,0.00112915,0.00128174,0.00106812,-0.000274658,-0.00106812,-0.00311279,-0.00442505,-0.00631714,-0.00753784,-0.00836182,-0.00787354,-0.00732422,-0.00576782,-0.00360107,-0.00146484,0.000488281,0.00259399,0.00338745,0.00415039,0.00323486,0.00247192,0.000213623,-0.00195312,-0.00393677,-0.00598145,-0.00717163,-0.00787354,-0.00753784,-0.00689697,-0.00479126,-0.00387573,-0.000976562,6.10352e-05,0.0015564,0.00210571,0.00219727,0.00167847,0.000854492,-0.000427246,-0.00140381,-0.00268555,-0.00289917,-0.00344849,-0.00317383,-0.00247192,-0.00128174,-0.000427246,0.00106812,0.00149536,0.00265503,0.00253296,0.00247192,0.00195312,0.000976562,-0.000366211,-0.00128174,-0.00296021,-0.0032959,-0.00436401,-0.00485229,-0.00469971,-0.00500488,-0.00485229,-0.00372314,-0.00415039,-0.00265503,-0.00280762,-0.00210571,-0.00195312,-0.00112915,-0.00106812,0.00012207,-0.000366211,0.000976562,0.000793457,0.00140381,0.00119019,0.000762939,0.000213623,-0.000366211,-0.00189209,-0.00289917,-0.00408936,-0.00521851,-0.00588989,-0.00656128,-0.00689697,-0.00680542,-0.00656128,-0.00634766,-0.00582886,-0.00598145,-0.00549316,-0.00564575,-0.00604248,-0.00604248,-0.00619507,-0.00561523,-0.00564575,-0.00408936,-0.00323486,-0.00167847,0.000152588,0.00161743,0.00274658,0.00408936,0.00408936,0.00360107,0.00308228,0.00106812,-0.000488281,-0.00231934,-0.00408936,-0.0055542,-0.00646973,-0.0071106,-0.00674438,-0.00592041,-0.00494385,-0.00323486,-0.00119019,6.10352e-05,0.0015564,0.00286865,0.00360107,0.00408936,0.00469971,0.00436401,0.00463867,0.00402832,0.00415039,0.00357056,0.00378418,0.00280762,0.00289917,0.00183105,0.00112915,0.000274658,-0.00112915,-0.0022583,-0.0032959,-0.00387573,-0.00457764,-0.00408936,-0.00350952,-0.00204468,-0.000762939,0.00125122,0.00274658,0.00402832,0.00521851,0.00500488,0.00491333,0.00448608,0.00317383,0.00219727,0.00128174,0.000335693,0.000213623,0.000640869,0.000488281,0.00195312,0.00247192,0.00338745,0.0038147,0.0038147,0.00350952,0.00289917,0.0017395,0.000915527,0,-0.000762939,-0.000762939,0.000366211,0.000976562,0.00344849,0.00527954,0.00775146,0.00985718,0.011261,0.0123291,0.0122986,0.0118103,0.0106812,0.00866699,0.00726318,0.00518799,0.00357056,0.00302124,0.00238037,0.0032959,0.0038147,0.00564575,0.00726318,0.0088501,0.0102844,0.0111084,0.0121155,0.0114746,0.0110474,0.00997925,0.00894165,0.00753784,0.00662231,0.00598145,0.00588989,0.00653076,0.00747681,0.00872803,0.0102844,0.0121155,0.0135193,0.0144958,0.0149231,0.0147095,0.0139465,0.0119019,0.0100708,0.00772095,0.00527954,0.00286865,0.00140381,0.00012207,-0.000701904,0.000274658,0.000762939,0.0022583,0.00448608,0.00631714,0.00802612,0.00933838,0.00976562,0.0102844,0.00942993,0.00888062,0.00689697,0.00598145,0.00448608,0.00378418,0.00308228,0.00323486,0.00350952,0.00436401,0.00506592,0.00613403,0.0062561,0.00619507,0.00561523,0.00421143,0.00280762,0.0010376,-0.000701904,-0.00238037,-0.0032959,-0.00366211,-0.00357056,-0.00259399,-0.000976562,0.000854492,0.00296021,0.00469971,0.00640869,0.00695801,0.00723267,0.00668335,0.00521851,0.00311279,0.00106812,-0.00195312,-0.00344849,-0.00598145,-0.00726318,-0.00802612,-0.00842285,-0.00787354,-0.0071106,-0.00582886,-0.00494385,-0.00378418,-0.00259399,-0.00289917,-0.00289917,-0.00323486,-0.0045166,-0.00561523,-0.00668335,-0.00732422,-0.00814819,-0.00878906,-0.00823975,-0.00830078,-0.00747681,-0.00726318,-0.00668335,-0.00634766,-0.00726318,-0.00674438,-0.00823975,-0.0088501,-0.0102539,-0.0111694,-0.0119629,-0.0126648,-0.0125122,-0.0125732,-0.0116272,-0.0111084,-0.0104675,-0.0088501,-0.00888062,-0.00802612,-0.00823975,-0.00863647,-0.00888062,-0.00964355,-0.0106812,-0.010498,-0.0114136,-0.0108337,-0.0109558,-0.00985718,-0.00927734,-0.00842285,-0.00802612,-0.00772095,-0.00759888,-0.00842285,-0.00894165,-0.0104065,-0.0109558,-0.0123901,-0.0128174,-0.013031,-0.0123901,-0.0115967,-0.0106201,-0.00857544,-0.00747681,-0.00543213,-0.00457764,-0.00335693,-0.00308228,-0.00302124,-0.00311279,-0.00436401,-0.00473022,-0.00564575,-0.00662231,-0.00656128,-0.00683594,-0.00680542,-0.00640869,-0.00598145,-0.00549316,-0.00457764,-0.00421143,-0.00372314,-0.00338745,-0.00338745,-0.00335693,-0.00360107,-0.00311279,-0.00360107,-0.0032959,-0.00265503,-0.00241089,-0.00112915,-0.000579834,0.000366211,0.00167847,0.00204468,0.00302124,0.00302124,0.0039978,0.0032959,0.00308228,0.00286865,0.00216675,0.0017395,0.00161743,0.00134277,0.0015564,0.0017395,0.00268555,0.00247192,0.00317383,0.00393677,0.00393677,0.00457764,0.00457764,0.00430298,0.00463867,0.00463867,0.00430298,0.0045166,0.00393677,0.00500488,0.00402832,0.00479126,0.00491333,0.00479126,0.00543213,0.00527954,0.00582886,0.00588989,0.00613403,0.0062561,0.00598145,0.00576782,0.00543213,0.00442505,0.00421143,0.00311279,0.00274658,0.00210571,0.00198364,0.00204468,0.0022583,0.00344849,0.00344849,0.00457764,0.00543213,0.00561523,0.00604248,0.00582886,0.00534058,0.00485229,0.00378418,0.00302124,0.00183105,0.00119019,0.000854492,0.000762939,0.000762939,0.00149536,0.00219727,0.00231934,0.00344849,0.00378418,0.00357056,0.00387573,0.00317383,0.00210571,0.0017395,0.000427246,-0.000152588,-0.00106812,-0.00149536,-0.00177002,-0.00106812,-0.0010376,-0.00012207,0.000549316,0.00189209,0.00183105,0.00268555,0.00238037,0.0022583,0.0015564,0.000915527,6.10352e-05,-0.000915527,-0.0017395,-0.0022583,-0.00286865,-0.00253296,-0.00280762,-0.00274658,-0.0017395,-0.00167847,-0.000976562,-0.000488281,-0.000579834,-0.000274658,-0.000366211,-0.000915527,-0.00134277,-0.00161743,-0.00280762,-0.0032959,-0.00357056,-0.00421143,-0.00387573,-0.00421143,-0.00323486,-0.00323486,-0.00195312,-0.00204468,-0.000579834,-0.00106812,-0.000274658,-0.000762939,-0.000793457,-0.00128174,-0.0017395,-0.00216675,-0.00204468,-0.00265503,-0.00204468,-0.00204468,-0.00112915,-0.000366211,0.00012207,0.000427246,0.000976562,0.000579834,0.000213623,0.00012207,-0.00106812,-0.00177002,-0.00274658,-0.00311279,-0.00366211,-0.00366211,-0.00289917,-0.00259399,-0.000854492,-0.000213623,0.00183105,0.00241089,0.00393677,0.00408936,0.00500488,0.00408936,0.00469971,0.00302124,0.00247192,0.0010376,0.000274658,-0.000640869,-0.00177002,-0.00149536,-0.00231934,-0.00198364,-0.00177002,-0.00140381,-0.000976562,-0.000549316,-0.000274658,-0.000152588,0.000213623,0.000152588,0.000335693,0.000335693,0.000762939,0.000793457,0.00140381,0.00216675,0.00286865,0.00378418,0.00442505,0.00491333,0.00473022,0.00436401,0.00344849,0.00204468,0.000762939,-0.00140381,-0.00286865,-0.00436401,-0.00564575,-0.00619507,-0.00588989,-0.00521851,-0.00360107,-0.00177002,0.000213623,0.0022583,0.00344849,0.00506592,0.00494385,0.00518799,0.0039978,0.00289917,0.0010376,-0.000488281,-0.00167847,-0.00311279,-0.00357056,-0.00335693,-0.00335693,-0.00204468,-0.00177002,-6.10352e-05,-0.00012207,0.000488281,0.000793457,0,-0.000427246,-0.000854492,-0.0017395,-0.00241089,-0.00268555,-0.00241089,-0.00198364,-0.00140381,-0.000427246,0.000701904,0.00125122,0.00189209,0.00198364,0.00183105,0.00106812,0.000335693,-0.00112915,-0.00204468,-0.00338745,-0.00421143,-0.00527954,-0.00506592,-0.00527954,-0.00494385,-0.00402832,-0.00350952,-0.00259399,-0.00195312,-0.00112915,-0.000701904,0,-0.000488281,0.000335693,-0.000488281,-0.000427246,-0.000488281,-0.00125122,-0.000976562,-0.00119019,-0.00146484,-0.00128174,-0.00134277,-0.00146484,-0.00146484,-0.00128174,-0.00146484,-0.00134277,-0.00119019,-0.00149536,-0.00112915,-0.000793457,-0.000793457,-0.000213623,-6.10352e-05,0.000366211,0.000793457,0.00128174,0.00177002,0.00204468,0.00216675,0.00195312,0.00183105,0.00134277,0.00106812,0.000274658,0.000274658,-0.000549316,-0.0010376,-0.000793457,-0.00134277,-0.000854492,-0.000793457,0.00012207,0.000213623,0.0015564,0.00161743,0.00247192,0.00280762,0.00311279,0.00387573,0.00350952,0.0038147,0.00402832,0.00360107,0.00338745,0.00296021,0.00259399,0.00183105,0.000701904,-0.00012207,-0.00140381,-0.00195312,-0.00317383,-0.00323486,-0.00378418,-0.00311279,-0.00210571,-0.00134277,0.000854492,0.00238037,0.00378418,0.00570679,0.00613403,0.00674438,0.00680542,0.00564575,0.00430298,0.00280762,0.000335693,-0.00125122,-0.00308228,-0.00463867,-0.00479126,-0.00540161,-0.00436401,-0.0038147,-0.00204468,-0.000854492,0.000976562,0.00198364,0.00265503,0.00335693,0.00308228,0.00253296,0.00167847,0.000854492,-0.000335693,-0.000488281,-0.00140381,-0.00177002,-0.00112915,-0.00112915,-0.000488281,0,0.0010376,0.000762939,0.00140381,0.000854492,0.000915527,-0.00012207,-6.10352e-05,-0.00119019,-0.00140381,-0.00195312,-0.00210571,-0.00198364,-0.00204468,-0.00128174,-0.00128174,-0.000549316,-6.10352e-05,0.00012207,0.000213623,0,-0.000335693,-0.000976562,-0.00125122,-0.00241089,-0.00280762,-0.0032959,-0.00421143,-0.00360107,-0.00408936,-0.00335693,-0.00308228,-0.00231934,-0.00167847,-0.000701904,-0.000274658,0,0.000488281,0.000427246,-0.00012207,-0.000427246,-0.00146484,-0.00195312,-0.00308228,-0.00311279,-0.00427246,-0.00430298,-0.00415039,-0.00402832,-0.00378418,-0.00296021,-0.00216675,-0.00161743,-0.000366211,-0.000488281,0.000274658,0.000213623,0.00012207,-0.000640869,-0.000488281,-0.00149536,-0.00198364,-0.00195312,-0.00210571,-0.00167847,-0.00161743,-0.000854492,-0.000640869,-0.000335693,-0.000274658,-0.000274658,-0.000579834,-0.00106812,-0.000854492,-0.00210571,-0.00119019,-0.0017395,-0.00112915,-0.00012207,6.10352e-05,0.00125122,0.00189209,0.00210571,0.00253296,0.0022583,0.00183105,0.000915527,0.000640869,-0.000640869,-0.000793457,-0.00149536,-0.00125122,-0.00128174,-0.000488281,-0.000915527,0.000640869,6.10352e-05,0.00106812,0.000366211,0.000274658,0.000335693,-0.000274658,-0.000274658,6.10352e-05,-0.000427246,0,0.000640869,0.00106812,0.00183105,0.00231934,0.00210571,0.00216675,0.00216675,0.000976562,0.000976562,-0.000488281,-0.000640869,-0.00149536,-0.0015564,-0.00195312,-0.00134277,-0.000854492,-0.000152588,0.0010376,0.00177002,0.00241089,0.0032959,0.00335693,0.00366211,0.00302124,0.00259399,0.00195312,0.000915527,0,-0.000854492,-0.00167847,-0.00183105,-0.00183105,-0.00177002,-0.00161743,-0.000579834,-0.000366211,0.00112915,0.00204468,0.00210571,0.00338745,0.00323486,0.0032959,0.00350952,0.00247192,0.00216675,0.00128174,0.000549316,-6.10352e-05,-0.000427246,-0.0010376,-0.000579834,-0.000366211,0.000335693,0.000793457,0.00112915,0.00204468,0.00167847,0.00216675,0.00198364,0.00128174,0.000640869,6.10352e-05,-0.000640869,-0.0010376,-0.0015564,-0.00128174,-0.00134277,-0.000854492,-0.000701904,0.000579834,0.000427246,0.000854492,0.00183105,0.00112915,0.00140381,0.00112915,0.000579834,0.000366211,-0.000274658,-0.000427246,-0.00125122,-0.000701904,-0.00195312,-0.00161743,-0.00204468,-0.00210571,-0.00231934,-0.00259399,-0.00231934,-0.00231934,-0.0022583,-0.00195312,-0.00134277,-0.00119019,-0.000488281,0.000152588,0.000366211,0.000915527,0.000854492,0.000579834,0.000701904,0,-0.000213623,-0.000793457,-0.00140381,-0.0017395,-0.00253296,-0.0022583,-0.00286865,-0.00268555,-0.00219727,-0.00231934,-0.00146484,-0.00140381,-0.000701904,-0.000427246,-0.00012207,0.000335693,0.000366211,0.000366211,0.000488281,0.000335693,-0.000427246,-0.000549316,-0.000793457,-0.00161743,-0.0017395,-0.00219727,-0.0022583,-0.00268555,-0.00241089,-0.00210571,-0.00219727,-0.00134277,-0.00128174,-0.00106812,-0.000915527,-0.000762939,-0.000579834,-0.00134277,-0.00112915,-0.00183105,-0.00189209,-0.00247192,-0.00216675,-0.00286865,-0.00195312,-0.00286865,-0.00167847,-0.00216675,-0.0015564,-0.00134277,-0.00177002,-0.0017395,-0.0015564,-0.00204468,-0.00204468,-0.00210571,-0.0022583,-0.00210571,-0.00167847,-0.00204468,-0.0015564,-0.00146484,-0.00167847,-0.0017395,-0.00195312,-0.0022583,-0.00274658,-0.00289917,-0.00338745,-0.00286865,-0.00280762,-0.0022583,-0.000915527,-0.000640869,0.000793457,0.00189209,0.00241089,0.00323486,0.00366211,0.0032959,0.00274658,0.0022583,0.000854492,-6.10352e-05,-0.00161743,-0.00198364,-0.00317383,-0.00317383,-0.00344849,-0.00317383,-0.00219727,-0.00198364,-0.000549316,0.00012207,0.00140381,0.00195312,0.00265503,0.0032959,0.00296021,0.00323486,0.00265503,0.00241089,0.00167847,0.00119019,0.000549316,-0.000335693,-0.000579834,-0.00119019,-0.00119019,-0.00177002,-0.00140381,-0.00161743,-0.000793457,-0.000915527,-0.000579834,0.000152588,0.000274658,0.000701904,0.000854492,0.0010376,0.00112915,0.00134277,0.00140381,0.00106812,0.00119019,0.000854492,0.000854492,0.000427246,0.000549316,0.000152588,-0.000701904,-0.000793457,-0.0015564,-0.00167847,-0.00238037,-0.00210571,-0.0022583,-0.00167847,-0.0010376,-0.000335693,0.000793457,0.00177002,0.00289917,0.00360107,0.00430298,0.00463867,0.00427246,0.00378418,0.00308228,0.00210571,0.000915527,0.000335693,-0.000213623,-0.00106812,-0.000854492,-0.00146484,-0.000701904,-0.000793457,-0.000274658,-0.000213623,0.000152588,0.000640869,0.000427246,0.00119019,0.00106812,0.0017395,0.00195312,0.00210571,0.00265503,0.00286865,0.00302124,0.00311279,0.00296021,0.00253296,0.0022583,0.00112915,0.000366211,-0.000274658,-0.00146484,-0.00219727,-0.00280762,-0.0032959,-0.00360107,-0.00357056,-0.00317383,-0.00247192,-0.00167847,-0.000762939,0.000366211,0.00119019,0.00189209,0.00241089,0.00280762,0.0022583,0.00216675,0.00106812,0.000335693,-0.00149536,-0.00253296,-0.00366211,-0.00457764,-0.00518799,-0.00491333,-0.00463867,-0.0038147,-0.00268555,-0.00119019,0,0.00106812,0.00204468,0.00268555,0.00280762,0.0022583,0.00183105,0.000793457,-0.000274658,-0.00106812,-0.0022583,-0.00231934,-0.00323486,-0.00274658,-0.00216675,-0.00216675,-0.000274658,-0.000274658,0.00106812,0.00149536,0.00161743,0.0017395,0.0017395,0.000640869,0.000549316,-0.000701904,-0.0010376,-0.0017395,-0.00177002,-0.0022583,-0.0015564,-0.00161743,-0.000793457,-0.000640869,0.000488281,0.000335693,0.00106812,0.000549316,0.000915527,0.000549316,0.000213623,-0.000213623,-0.00012207,-0.000366211,-0.000793457,-0.00012207,-0.000335693,0.00012207,-6.10352e-05,0.000213623,6.10352e-05,0.000152588,-0.000701904,-0.000427246,-0.0015564,-0.00161743,-0.00210571,-0.00247192,-0.00253296,-0.00274658,-0.0017395,-0.00183105,-0.000976562,-0.000152588,0.000213623,0.000793457,0.00149536,0.00128174,0.00146484,0.00112915,0.000701904,0.000274658,6.10352e-05,-0.0010376,-0.000976562,-0.00149536,-0.00161743,-0.00161743,-0.00140381,-0.00134277,-0.0010376,-0.000549316,-0.000762939,0.000152588,0,0.000152588,0.000335693,0.000366211,0.000274658,0.000335693,0.000213623,0,-0.000152588,-0.000335693,-0.000549316,-0.000793457,-0.00106812,-0.0010376,-0.0015564,-0.0010376,-0.00134277,-0.000762939,-0.000427246,0.000213623,0.00012207,0.000976562,0.0010376,0.00134277,0.00119019,0.000976562,0.000274658,-0.000152588,-0.000701904,-0.00183105,-0.00219727,-0.00280762,-0.00274658,-0.00286865,-0.00286865,-0.00204468,-0.00125122,-0.000762939,0.000152588,0.000701904,0.000762939,0.00112915,0.000701904,0.000366211,-0.000213623,-0.00125122,-0.00134277,-0.00204468,-0.00247192,-0.00177002,-0.00195312,-0.00119019,-0.000488281,0,0.000427246,0.00134277,0.000579834,0.000915527,0.000488281,-0.000366211,-0.000549316,-0.00112915,-0.00125122,-0.00167847,-0.000854492,-0.000976562,-6.10352e-05,0.000793457,0.00125122,0.00189209,0.00253296,0.00231934,0.00177002,0.00189209,0.000549316,0.000213623,-0.0010376,-0.00119019,-0.00189209,-0.00195312,-0.0017395,-0.00146484,-0.000701904,-0.000335693,0.000793457,0.000915527,0.00204468,0.00149536,0.00231934,0.0017395,0.00177002,0.000701904,0.00125122,0.000640869,0.000976562,0.000427246,0.00128174,0.000915527,0.00112915,0.00134277,0.000854492,0.00106812,0.00012207,0.000549316,-0.000488281,-0.000701904,-0.000793457,-0.00128174,-0.000701904,-0.0010376,0,-6.10352e-05,6.10352e-05,0.000854492,0.00125122,0.00112915,0.00210571,0.00167847,0.00286865,0.00280762,0.00317383,0.00265503,0.00308228,0.00247192,0.00204468,0.000915527,0.000762939,-0.000213623,-0.00183105,-0.0022583,-0.00241089,-0.00161743,0.000213623,0.00360107,0.00393677,0.00357056,0.00372314,0.00588989,0.00491333,0.00485229,0.00683594,0.00915527,0.0101318,0.0100403,0.00872803,0.00674438,0.0062561,0.00588989,0.00463867,0.00268555,0.00219727,0.00146484,-0.000152588,0.000335693,0.00106812,0.000213623,-0.000579834,-0.000335693,-0.000335693,-0.00274658,-0.00415039,-0.00344849,-0.00463867,-0.00479126,-0.00436401,-0.00408936,-0.00335693,-0.00247192,-0.00198364,0.000762939,0.00195312,0.0032959,0.00387573,0.00308228,-0.00128174,-0.00540161,-0.00866699,-0.0131531,-0.015564,-0.0134888,-0.00491333,0.0115967,0.0169373,0.00863647,0.00149536,0,-6.10352e-05,-0.00442505,-0.0117493,-0.0117493,-0.00933838,-0.0100708,-0.00894165,-0.00238037,0.00469971,0.00964355,0.0101929,0.00732422,0.00350952,-0.00372314,-0.0104065,-0.0150452,-0.0162354,-0.0170898,-0.0178833,-0.0173645,-0.0108337,-0.00247192,0.00634766,0.015625,0.0178833,0.0133057,0.00976562,0.00753784,0.00527954,-0.000335693,-0.00436401,-0.00238037,-0.00149536,0.00119019,0.0062561,0.0109863,0.0116272,0.0116272,0.00985718,0.00421143,0.00012207,-0.00247192,-0.00408936,-0.0071106,-0.00894165,-0.00683594,-0.00311279,-0.000335693,0.00204468,0.00604248,0.00744629,0.00534058,0.00140381,-0.0015564,-0.00308228,-0.00588989,-0.00732422,-0.00726318,-0.00997925,-0.0112,-0.00808716,-0.00448608,-0.00146484,-0.000854492,-0.000579834,-0.00161743,-0.00427246,-0.00604248,-0.00830078,-0.00894165,-0.00723267,-0.00631714,-0.00619507,-0.00491333,-0.00378418,-0.00442505,-0.00457764,-0.00335693,-0.000854492,-0.00128174,-0.00350952,-0.00561523,-0.00680542,-0.00387573,-0.00012207,6.10352e-05,-0.00360107,-0.0045166,-0.00317383,-0.00149536,-0.00167847,-0.00430298,-0.00427246,-0.00231934,-0.000762939,-0.000427246,-0.00167847,-0.00344849,-0.00469971,-0.00427246,-0.00732422,-0.00793457,-0.00836182,-0.00527954,-0.00436401,-0.00588989,-0.00402832,0.000335693,0.00286865,0.00378418,0.0062561,0.00592041,0.0062561,0.0022583,-0.00219727,-0.00402832,-0.00344849,-0.00286865,-0.00238037,-0.000701904,-0.000793457,0.000366211,0.0010376,0.00335693,0.00473022,0.00247192,0.00112915,-0.000640869,-0.00204468,-0.00253296,-0.00335693,-0.00408936,-0.00506592,-0.00366211,-0.00302124,-0.00265503,-0.00198364,-0.000976562,-0.0010376,-0.00366211,-0.00402832,-0.00408936,-0.00210571,-0.000549316,0.000854492,0.00247192,0.00561523,0.00640869,0.00582886,0.0039978,0.0032959,0.000366211,-0.000427246,-0.00128174,-0.00134277,-0.000579834,0.000579834,0.00308228,0.00506592,0.00653076,0.00604248,0.00527954,0.00360107,0.000701904,0.000274658,-0.00183105,-0.0010376,0.00012207,0.00134277,0.00289917,0.00421143,0.00311279,0.000762939,-0.000213623,-0.00241089,-0.00378418,-0.00521851,-0.00534058,-0.00765991,-0.00863647,-0.00857544,-0.00738525,-0.00683594,-0.00393677,-0.000274658,0.00134277,0.00112915,-0.000488281,-0.0032959,-0.00442505,-0.0055542,-0.00570679,-0.00704956,-0.00604248,-0.00387573,-0.00387573,-0.00463867,-0.00335693,-0.0015564,-0.00106812,-0.0017395,-0.00195312,-0.00274658,-0.00415039,-0.00448608,-0.00457764,-0.0032959,-0.00280762,-0.0038147,-0.00323486,-0.00216675,-0.00241089,-0.00308228,-0.00231934,-0.00161743,-0.00140381,-0.00183105,-0.000915527,0.000549316,0.000488281,0.00167847,0.00378418,0.0055542,0.00598145,0.00704956,0.00738525,0.00802612,0.00723267,0.00588989,0.00286865,0.000701904,-0.00177002,-0.0015564,-0.00238037,-0.00265503,-0.00372314,-0.00311279,-0.00204468,-0.0010376,-0.000427246,0.00161743,0.00280762,0.00344849,0.00350952,0.00421143,0.00500488,0.00640869,0.00646973,0.00613403,0.00485229,0.00436401,0.00335693,0.00241089,0.00134277,0.0010376,0.0022583,0.00149536,0.000915527,-0.000213623,0.000152588,0.000427246,-6.10352e-05,-0.000915527,-0.00216675,-0.00112915,-0.000549316,-0.000335693,-0.000640869,-0.00106812,-0.000701904,0.000213623,-0.000213623,0.000549316,-0.000213623,0.000213623,-0.000152588,-0.000274658,-0.00119019,-0.000793457,-0.0010376,-0.000274658,0.000579834,0.000854492,0.000793457,0.000579834,0.00189209,0.00311279,0.00415039,0.00323486,0.00134277,-0.00012207,-0.000274658,0.000701904,0.00177002,0.00149536,0.00167847,0.0015564,0.00140381,0,0.000274658,-0.000549316,-0.000915527,-0.000762939,-0.000366211,-0.000854492,-0.00241089,-0.00280762,-0.00183105,0.000152588,0.00106812,0.00119019,0.000335693,-0.000854492,-0.00177002,-0.0022583,-0.00189209,-0.00134277,-0.000854492,-0.000335693,0.000427246,0.0015564,0.00247192,0.00253296,0.00241089,0.00198364,0.00274658,0.00189209,0.0022583,0.00238037,0.00323486,0.00280762,0.00238037,0.000976562,0.000762939,0.000488281,0.000579834,0.000579834,0.000579834,0,-0.0015564,-0.00259399,-0.00259399,-0.00112915,0.000549316,0.00128174,0.00195312,0.00302124,0.00335693,0.00350952,0.0038147,0.00338745,0.00253296,0.00238037,0.00125122,0.00219727,0.00338745,0.00540161,0.00521851,0.0055542,0.00427246,0.00366211,0.00296021,0.00247192,0.00167847,0.00106812,0.000335693,0.000854492,0.00183105,0.00280762,0.0032959,0.00402832,0.00387573,0.00393677,0.00372314,0.00289917,0.0022583,0.00128174,0.0010376,0.00112915,0.00204468,0.0010376,0.000549316,0.000335693,0.00106812,0.0022583,0.00268555,0.00167847,0.00140381,0.000213623,-0.000762939,6.10352e-05,-0.000335693,0.000976562,0.00134277,0.000854492,0.000213623,0.000427246,0.00149536,0.00219727,0.00167847,0.0010376,-0.000335693,-0.000274658,-0.00112915,0.000427246,-0.000274658,0.000854492,0.000976562,0.00128174,0.00106812,0.000854492,0.000762939,0.0010376,0.000274658,-0.000579834,-0.00146484,-0.00183105,-0.00119019,-0.00119019,-0.000213623,-6.10352e-05,0.000335693,6.10352e-05,0.000549316,0.000427246,0.000640869,0.000915527,0.000366211,-0.000640869,-0.000488281,-0.000762939,0.000701904,0.000366211,0.000549316,0.000640869,0.00140381,0.0017395,0.0022583,0.00189209,0.00119019,-0.000274658,-0.000427246,-0.00106812,-0.00167847,-0.00280762,-0.00308228,-0.00317383,-0.00280762,-0.00253296,-0.00146484,-0.00161743,-0.000427246,-0.000366211,0.000427246,0.00183105,0.00189209,0.00219727,0.00183105,0.00146484,0.000701904,0.000793457,0.000213623,0.000274658,-0.00012207,-0.00128174,-0.00149536,-0.00161743,-0.00177002,-0.00195312,-0.00231934,-0.00289917,-0.00296021,-0.00302124,-0.00360107,-0.0039978,-0.0032959,-0.00415039,-0.00387573,-0.00402832,-0.00323486,-0.00308228,-0.00238037,-0.00177002,-0.00183105,-0.00149536,-0.00125122,-0.00119019,-0.000640869,-0.00167847,-0.00195312,-0.00268555,-0.00296021,-0.00268555,-0.0022583,-0.00231934,-0.0022583,-0.00289917,-0.00289917,-0.0038147,-0.00372314,-0.00372314,-0.00408936,-0.00500488,-0.00549316,-0.00662231,-0.00656128,-0.00674438,-0.00656128,-0.00564575,-0.00588989,-0.00469971,-0.00494385,-0.00360107,-0.00317383,-0.00280762,-0.00204468,-0.00189209,-0.00140381,-0.00177002,-0.00231934,-0.00387573,-0.00485229,-0.00485229,-0.0055542,-0.00592041,-0.0071106,-0.00793457,-0.00845337,-0.00872803,-0.00830078,-0.0085144,-0.00802612,-0.00732422,-0.0071106,-0.00604248,-0.00570679,-0.00518799,-0.00491333,-0.00436401,-0.0045166,-0.00457764,-0.00561523,-0.00598145,-0.00765991,-0.00823975,-0.00845337,-0.00872803,-0.00872803,-0.00979614,-0.0107727,-0.0109558,-0.0103455,-0.0093689,-0.00842285,-0.00772095,-0.00668335,-0.00674438,-0.0062561,-0.00634766,-0.00646973,-0.00656128,-0.00723267,-0.00808716,-0.00927734,-0.00985718,-0.00991821,-0.00933838,-0.00857544,-0.00863647,-0.00863647,-0.00878906,-0.00857544,-0.00726318,-0.00619507,-0.00634766,-0.00653076,-0.00759888,-0.00793457,-0.00872803,-0.00836182,-0.00866699,-0.00878906,-0.00958252,-0.00921631,-0.00894165,-0.00759888,-0.00704956,-0.00588989,-0.00561523,-0.00534058,-0.00473022,-0.00485229,-0.00402832,-0.00247192,-0.00183105,-0.000213623,0.000549316,0.00149536,0.00268555,0.00442505,0.00656128,0.0085144,0.0104065,0.0118713,0.013916,0.0148621,0.0160217,0.0161743,0.017395,0.0176697,0.0183716,0.0187073,0.0192871,0.0194702,0.020874,0.0220947,0.0230713,0.0238342,0.0249023,0.0258179,0.0265198,0.0278625,0.0287781,0.0299072,0.0305176,0.0299683,0.0296326,0.0302429,0.0310364,0.0322876,0.0332031,0.0339966,0.0348206,0.0352478,0.0362244,0.0365906,0.0365906,0.0354614,0.0347595,0.0334167,0.0323792,0.0321655,0.0303955,0.0290527,0.0278625,0.0272217,0.0267944,0.0265198,0.0261841,0.0250244,0.0240784,0.0230713,0.0210876,0.0195007,0.01828,0.0178528,0.0169373,0.0167542,0.0157776,0.0146484,0.0143433,0.013855,0.0124512,0.0107727,0.0088501,0.00747681,0.00738525,0.00570679,0.00512695,0.00274658,0.00177002,-6.10352e-05,-0.000549316,-0.0015564,-0.00247192,-0.00421143,-0.00457764,-0.00576782,-0.00704956,-0.00738525,-0.00949097,-0.0108337,-0.012085,-0.0133667,-0.0137329,-0.0137939,-0.0137329,-0.0144348,-0.0149231,-0.0164795,-0.0170288,-0.0174561,-0.0176697,-0.0187683,-0.0191956,-0.0203857,-0.020752,-0.0213928,-0.0217285,-0.0224304,-0.0222168,-0.0232239,-0.0229492,-0.0232849,-0.0220947,-0.0220947,-0.0210876,-0.0213928,-0.0206299,-0.020813,-0.0206299,-0.0209656,-0.0203857,-0.0203247,-0.019989,-0.0203247,-0.0197144,-0.0195007,-0.0190125,-0.01828,-0.018158,-0.0168762,-0.0162659,-0.0148315,-0.0137329,-0.0127869,-0.0119629,-0.0114746,-0.0108337,-0.0103455,-0.00921631,-0.00836182,-0.00787354,-0.00732422,-0.00701904,-0.00744629,-0.00704956,-0.00738525,-0.0071106,-0.00668335,-0.00683594,-0.00613403,-0.00598145,-0.00540161,-0.00448608,-0.0039978,-0.00344849,-0.00317383,-0.00289917,-0.00323486,-0.00302124,-0.00427246,-0.0045166,-0.00512695,-0.00518799,-0.00613403,-0.00683594,-0.00753784,-0.00744629,-0.00808716,-0.00775146,-0.0088501,-0.00933838,-0.0101929,-0.0107117,-0.0108948,-0.0111084,-0.010498,-0.0111084,-0.011322,-0.0107727,-0.0114746,-0.0110474,-0.0114136,-0.0109863,-0.012085,-0.0122986,-0.013092,-0.0137329,-0.0139465,-0.0155334,-0.0167542,-0.0187683,-0.0190735,-0.0196838,-0.0187683,-0.01828,-0.0194092,-0.020813,-0.0217896,-0.0212402,-0.0205383,-0.0198975,-0.0189819,-0.0193481,-0.019928,-0.0206909,-0.0209045,-0.0202637,-0.0191956,-0.0191956,-0.0193481,-0.020752,-0.0210266,-0.0205994,-0.0184326,-0.0177917,-0.0174561,-0.0193481,-0.0198975,-0.019989,-0.0185547,-0.0173035,-0.0170898,-0.0187683,-0.0209656,-0.0215454,-0.0210266,-0.0197144,-0.0192566,-0.0205994,-0.0223083,-0.0241394,-0.025177,-0.0238342,-0.0227356,-0.0229187,-0.0254517,-0.0268555,-0.0270996,-0.0263062,-0.0242004,-0.023407,-0.0212402,-0.020752,-0.0196838,-0.0173035,-0.0121765,-0.00527954,0.00366211,0.0109558,0.0173035,0.0209045,0.0249023,0.028717,0.0323486,0.0340576,0.0339966,0.0324402,0.0304565,0.0284119,0.0281372,0.0274353,0.0267944,0.0273132,0.0274353,0.0289001,0.0306702,0.0339966,0.038147,0.0409546,0.0415955,0.0427856,0.0437622,0.0456543,0.0484009,0.0496826,0.049469,0.0490417,0.0503845,0.0512695,0.0542908,0.0549927,0.0556335,0.0552979,0.0555725,0.0569153,0.0571289,0.0593872,0.0606384,0.0604248,0.0581665,0.0563354,0.0544434,0.0537415,0.0503845,0.0470581,0.0431824,0.0388489,0.0351562,0.0328674,0.0304565,0.0279846,0.0243225,0.0204163,0.0168152,0.0144348,0.0131531,0.0119629,0.0103455,0.00970459,0.009552,0.00949097,0.0101929,0.0118713,0.0126648,0.0125122,0.0122375,0.0114746,0.0106812,0.00949097,0.00772095,0.00448608,0.00112915,-0.00268555,-0.00610352,-0.00949097,-0.0109863,-0.0119629,-0.0125732,-0.013031,-0.0127869,-0.0123901,-0.0121155,-0.0122986,-0.0120239,-0.0126038,-0.0140076,-0.0141907,-0.0155334,-0.0161743,-0.0178833,-0.0187988,-0.0191345,-0.0193481,-0.0191345,-0.0190125,-0.0183716,-0.0166016,-0.015686,-0.0139465,-0.0126038,-0.011261,-0.0100403,-0.00921631,-0.00823975,-0.00900269,-0.0085144,-0.00842285,-0.00817871,-0.0088501,-0.00842285,-0.00842285,-0.00726318,-0.00683594,-0.0062561,-0.00506592,-0.00463867,-0.0022583,-0.00125122,0.00012207,0.00125122,0.00231934,0.00415039,0.00561523,0.00793457,0.00900269,0.0101929,0.0112,0.011261,0.0116882,0.0113831,0.0119629,0.0117493,0.0115967,0.0105591,0.00985718,0.00866699,0.00814819,0.00836182,0.00830078,0.00906372,0.00964355,0.0100403,0.0104065,0.0110474,0.0111084,0.0104675,0.00927734,0.00830078,0.00653076,0.00521851,0.00372314,0.00167847,-0.000915527,-0.00308228,-0.00494385,-0.00653076,-0.00857544,-0.0102539,-0.0122986,-0.0132141,-0.0139465,-0.0154724,-0.0167542,-0.0180664,-0.0203247,-0.0213013,-0.0237732,-0.024353,-0.0257568,-0.0265198,-0.02771,-0.0284119,-0.0293884,-0.02948,-0.0300293,-0.0300293,-0.0310364,-0.0314331,-0.0323486,-0.0318604,-0.0327759,-0.0328369,-0.0334778,-0.0335388,-0.033844,-0.0342712,-0.0341797,-0.0335693,-0.0336304,-0.0337524,-0.0344543,-0.0351868,-0.0361633,-0.0362244,-0.0361633,-0.0360718,-0.036438,-0.0365906,-0.0349731,-0.0332642,-0.0307617,-0.0285034,-0.0265198,-0.0242004,-0.022522,-0.0209656,-0.0191345,-0.0180054,-0.0161743,-0.015686,-0.0147095,-0.0140686,-0.013031,-0.0120239,-0.0110474,-0.00976562,-0.00888062,-0.00802612,-0.00888062,-0.00942993,-0.0109863,-0.0109863,-0.0111694,-0.0105591,-0.0104065,-0.0115356,-0.013092,-0.0137024,-0.0120239,-0.011322,-0.00985718,-0.00991821,-0.00976562,-0.0101318,-0.00970459,-0.00933838,-0.00836182,-0.00772095,-0.00759888,-0.00845337,-0.00933838,-0.0113831,-0.0121765,-0.0130005,-0.0144348,-0.0163879,-0.0190125,-0.0210266,-0.0232849,-0.0254517,-0.0278015,-0.0301208,-0.0327148,-0.0343323,-0.0351562,-0.0348206,-0.033783,-0.0330811,-0.0326538,-0.0316467,-0.0289307,-0.0211792,-0.0108948,-0.000427246,0.00765991,0.0136414,0.0173645,0.0238342,0.0297546,0.0352478,0.0371399,0.035675,0.0325623,0.0291138,0.0265808,0.0252686,0.0266724,0.0282288,0.0292053,0.0289001,0.0279846,0.0289001,0.03125,0.0346985,0.0368652,0.0372314,0.0361633,0.0369263,0.0389709,0.0424194,0.0448303,0.047821,0.0512085,0.0541077,0.0576172,0.0593872,0.0611877,0.0614014,0.0611877,0.05896,0.0585327,0.0594482,0.0602112,0.0617065,0.061615,0.0604858,0.0578918,0.0576782,0.0576782,0.0569763,0.0538025,0.0492249,0.0438232,0.0388489,0.0351562,0.0310364,0.0275574,0.0228577,0.0184937,0.0133057,0.00985718,0.0078125,0.00527954,0.00564575,0.00442505,0.00430298,0.00350952,0.00317383,0.00311279,0.00408936,0.00302124,0.00238037,0.00161743,-0.000366211,-0.00210571,-0.00408936,-0.00610352,-0.00765991,-0.00842285,-0.00942993,-0.00927734,-0.00985718,-0.0100403,-0.00985718,-0.0109558,-0.0116882,-0.0114136,-0.0118713,-0.0115967,-0.0109863,-0.0112,-0.0127258,-0.013092,-0.0143433,-0.0139465,-0.0135193,-0.0128174,-0.0137024,-0.0149841,-0.0171509,-0.0180664,-0.0185852,-0.0179443,-0.0174561,-0.0161133,-0.0154114,-0.0129395,-0.0104065,-0.00802612,-0.0045166,-0.00231934,0.000366211,0.00167847,0.00344849,0.00473022,0.00604248,0.00744629,0.00933838,0.0109558,0.0128174,0.0144348,0.0160522,0.0169373,0.0176697,0.0183411,0.0185852,0.019928,0.020874,0.0221558,0.0232849,0.0236206,0.0239258,0.0236511,0.0234375,0.0239868,0.0236511,0.0233459,0.0224609,0.0214539,0.0203247,0.0194702,0.0187988,0.0185547,0.0175171,0.0171509,0.0162354,0.0162354,0.0151978,0.0148315,0.0139465,0.0134277,0.0129395,0.0122986,0.010498,0.00906372,0.00695801,0.00506592,0.00302124,0.000915527,-0.00140381,-0.00350952,-0.00598145,-0.00823975,-0.0105591,-0.0128784,-0.015625,-0.01828,-0.0204163,-0.0222473,-0.0238342,-0.0259705,-0.0281372,-0.0308838,-0.0326233,-0.0343323,-0.0360107,-0.038208,-0.0402222,-0.0415039,-0.0423584,-0.043335,-0.0432739,-0.0440979,-0.0441589,-0.0434875,-0.0435486,-0.0429077,-0.0423584,-0.0420532,-0.0404663,-0.0402527,-0.0391235,-0.0391235,-0.0376282,-0.0378418,-0.0369263,-0.0368652,-0.0372925,-0.0373535,-0.0372925,-0.0372009,-0.0373535,-0.0375061,-0.0370789,-0.0367737,-0.035614,-0.0343933,-0.0337524,-0.032135,-0.0315247,-0.0296326,-0.0288391,-0.0272827,-0.0259399,-0.0239258,-0.0222473,-0.0197754,-0.0185547,-0.0168152,-0.015564,-0.0151978,-0.0147095,-0.0141907,-0.0137024,-0.0134277,-0.0137329,-0.0144958,-0.0152588,-0.0160217,-0.0157471,-0.0164795,-0.0167236,-0.0189209,-0.0196228,-0.0218201,-0.022644,-0.0242004,-0.0252686,-0.0274963,-0.0293884,-0.0318604,-0.0335693,-0.035675,-0.0376892,-0.040863,-0.043457,-0.0453796,-0.0473328,-0.0489807,-0.0516968,-0.0556641,-0.0585327,-0.0599976,-0.0600891,-0.0596008,-0.0602112,-0.0594482,-0.056366,-0.0484619,-0.0330505,-0.0136414,0.00726318,0.0248413,0.0372925,0.0482483,0.0586853,0.070282,0.0783081,0.0809021,0.0760498,0.0655518,0.0552368,0.0496826,0.0476379,0.0469971,0.0474243,0.0466919,0.0453186,0.0446777,0.0466309,0.0492249,0.0514832,0.0507812,0.0487366,0.0457458,0.0454407,0.047699,0.054657,0.0610046,0.0662842,0.0717468,0.0785217,0.0844727,0.089325,0.0889893,0.085968,0.0795593,0.0742798,0.0698547,0.0690308,0.0701294,0.0715637,0.0740051,0.0758972,0.0770874,0.0765991,0.0743408,0.0708923,0.0624084,0.0505676,0.0370178,0.0246887,0.0151367,0.00775146,0.00259399,-0.00463867,-0.0107727,-0.0169678,-0.0210266,-0.0248413,-0.0291138,-0.033844,-0.0388489,-0.0417786,-0.0443726,-0.0448914,-0.0437012,-0.0406799,-0.0355225,-0.0304565,-0.0255432,-0.0204163,-0.0183716,-0.0164795,-0.0176697,-0.0205994,-0.0245667,-0.0288391,-0.0298462,-0.0298462,-0.0273743,-0.0245667,-0.0210876,-0.016449,-0.0119019,-0.00823975,-0.00610352,-0.00564575,-0.00753784,-0.00985718,-0.0126648,-0.0147095,-0.0169678,-0.0170288,-0.0167236,-0.0150452,-0.0137329,-0.0133667,-0.0129395,-0.013031,-0.0121765,-0.0114136,-0.0100708,-0.00808716,-0.00527954,-0.00247192,0.00183105,0.00689697,0.0112,0.0168152,0.020752,0.0245667,0.0271606,0.0291138,0.0314636,0.0341187,0.0367126,0.0401611,0.0432739,0.0474854,0.0496521,0.0530396,0.0533142,0.0540466,0.0530396,0.0516357,0.0505676,0.0480347,0.0456543,0.042572,0.0396729,0.0375671,0.0354614,0.0336304,0.0314636,0.0291748,0.0261841,0.023407,0.0196228,0.0162659,0.0134888,0.0118103,0.0113831,0.0115356,0.0125732,0.0128784,0.0134888,0.0143433,0.0148621,0.0134888,0.011322,0.00842285,0.00540161,0.00302124,-0.000488281,-0.00372314,-0.00695801,-0.00976562,-0.0114746,-0.0141296,-0.0177917,-0.0220947,-0.0266113,-0.0309448,-0.0350342,-0.0383301,-0.042572,-0.0458069,-0.0486145,-0.0501709,-0.0517883,-0.052124,-0.0533752,-0.0529785,-0.0541077,-0.0545959,-0.0555725,-0.0568237,-0.0560608,-0.0563354,-0.0553589,-0.054718,-0.0536194,-0.0514832,-0.0500183,-0.0473328,-0.0462952,-0.0443726,-0.0429077,-0.0409241,-0.0400085,-0.0372925,-0.0361633,-0.033844,-0.0325623,-0.030304,-0.0303345,-0.0287781,-0.0284119,-0.0279236,-0.0285034,-0.0307617,-0.0329285,-0.0357971,-0.0366516,-0.0377808,-0.038147,-0.0383911,-0.0379944,-0.0374146,-0.0361023,-0.0346069,-0.0344849,-0.0335693,-0.0333252,-0.0330811,-0.0333557,-0.0334167,-0.0345459,-0.0357971,-0.0368652,-0.0393982,-0.0405884,-0.0429688,-0.0438232,-0.0466309,-0.0492554,-0.0536194,-0.0579529,-0.0626221,-0.0665588,-0.0706482,-0.0752563,-0.081665,-0.0880127,-0.0926514,-0.0945435,-0.0934143,-0.0895691,-0.0828552,-0.0720215,-0.0545349,-0.0299072,0,0.0303345,0.0583191,0.079834,0.0967102,0.110016,0.120789,0.127258,0.126129,0.118103,0.105377,0.0906982,0.0813293,0.0750732,0.0730286,0.0737915,0.0753479,0.0780029,0.0799255,0.0830994,0.0849609,0.086792,0.0856018,0.0823669,0.0766602,0.0723877,0.0695801,0.0709229,0.0732422,0.0761108,0.0786438,0.0819702,0.0862427,0.0887756,0.0876465,0.0838623,0.0771179,0.0716248,0.0664673,0.0647278,0.0643616,0.0652161,0.0678711,0.0705566,0.072937,0.0744934,0.0729675,0.0691528,0.0611267,0.0468445,0.0290527,0.00915527,-0.00921631,-0.0261536,-0.0399475,-0.0526123,-0.0632324,-0.0706177,-0.0750427,-0.0750427,-0.0737305,-0.0731506,-0.0734253,-0.0739441,-0.0766602,-0.0789185,-0.0810242,-0.0823669,-0.0817566,-0.0801392,-0.0761719,-0.0710449,-0.0654297,-0.0575562,-0.0509949,-0.0434875,-0.0385437,-0.0345459,-0.0304565,-0.0252686,-0.0194702,-0.0137939,-0.00906372,-0.0039978,0.000793457,0.0071106,0.0127258,0.0172424,0.0197754,0.0211182,0.0202026,0.0180664,0.0149231,0.011261,0.00689697,0.00302124,-0.00289917,-0.00753784,-0.0121155,-0.0147095,-0.0136414,-0.0109863,-0.00640869,-0.00146484,0.00436401,0.0103455,0.0164795,0.0227966,0.0286255,0.0332031,0.0362244,0.0368042,0.0379944,0.0393982,0.0421448,0.04599,0.0505066,0.0557861,0.0614319,0.0678101,0.0733032,0.0786438,0.0825195,0.0846252,0.0847778,0.0824585,0.0783691,0.0722656,0.0646362,0.0566406,0.0490417,0.0431213,0.0372925,0.0327759,0.0276489,0.0223083,0.0174561,0.012085,0.00775146,0.00189209,-0.00415039,-0.00942993,-0.0144348,-0.0167542,-0.017395,-0.0170288,-0.0160217,-0.0127258,-0.0103455,-0.00796509,-0.00656128,-0.00588989,-0.00689697,-0.00775146,-0.0101318,-0.0127869,-0.0161743,-0.0188599,-0.0204163,-0.0218811,-0.0221558,-0.0228577,-0.0236511,-0.0238342,-0.0250549,-0.026886,-0.0308838,-0.0350342,-0.0404663,-0.0450745,-0.0499573,-0.0547485,-0.0580444,-0.061676,-0.0632629,-0.064209,-0.0644226,-0.0644226,-0.0632629,-0.0621948,-0.0608521,-0.0588989,-0.0574646,-0.0548706,-0.0527039,-0.0496521,-0.0471191,-0.0440979,-0.0420532,-0.0393372,-0.0380554,-0.0365906,-0.0355835,-0.0358582,-0.0353088,-0.0363159,-0.0377808,-0.0410156,-0.0438232,-0.0467224,-0.0485535,-0.0489807,-0.0512085,-0.0535278,-0.0576782,-0.0629578,-0.0665588,-0.0707092,-0.0730896,-0.0765991,-0.0804749,-0.0856323,-0.0916443,-0.0969238,-0.101379,-0.105103,-0.106995,-0.108765,-0.109741,-0.110504,-0.110504,-0.108337,-0.104034,-0.097168,-0.0873108,-0.0740051,-0.0567627,-0.0354614,-0.00921631,0.0210266,0.0542908,0.088501,0.119812,0.146057,0.165741,0.179657,0.186707,0.186157,0.179535,0.166443,0.149139,0.129425,0.112854,0.100739,0.0933533,0.090332,0.0906982,0.0933533,0.0951843,0.0989685,0.101074,0.101654,0.0992737,0.0935059,0.0844116,0.0760498,0.0693665,0.0655518,0.0643005,0.0661926,0.0697021,0.07547,0.0818176,0.0884399,0.0913086,0.0914001,0.0865173,0.0802612,0.0729675,0.0666199,0.0612793,0.0571899,0.0543823,0.0540466,0.0528259,0.0524902,0.0487366,0.0426331,0.0317383,0.0144958,-0.0071106,-0.0327148,-0.0581055,-0.0821533,-0.103333,-0.120575,-0.133453,-0.141968,-0.143494,-0.140259,-0.133514,-0.125793,-0.118896,-0.113983,-0.111786,-0.111145,-0.111023,-0.111694,-0.110992,-0.108063,-0.102631,-0.0936279,-0.0828552,-0.068573,-0.0541077,-0.0378418,-0.023407,-0.00997925,0.000366211,0.0101929,0.0171509,0.0243225,0.0290527,0.0342712,0.0373535,0.0423584,0.0471497,0.052002,0.0555115,0.0559998,0.0550842,0.050293,0.0454407,0.0396118,0.0326233,0.0263672,0.0196228,0.0141296,0.0104675,0.00958252,0.012085,0.0159607,0.0220947,0.027771,0.033844,0.0393372,0.0450134,0.0498657,0.0554504,0.0596008,0.0641479,0.0671692,0.0709229,0.0734558,0.0775146,0.0809631,0.0844116,0.0870972,0.0877991,0.0880737,0.086731,0.0852051,0.081604,0.0765381,0.0692749,0.0604858,0.0499573,0.0387573,0.0266113,0.0153503,0.00415039,-0.00588989,-0.0145569,-0.0220032,-0.0285034,-0.0341187,-0.0386963,-0.0412292,-0.0442505,-0.0464172,-0.0489502,-0.0506592,-0.0508728,-0.0494385,-0.0473328,-0.0437012,-0.0400391,-0.0355835,-0.0304565,-0.0243225,-0.0198364,-0.0148621,-0.0128784,-0.0107727,-0.0102844,-0.0108337,-0.0116272,-0.013855,-0.0163879,-0.0185852,-0.0211182,-0.0232849,-0.0249634,-0.0273743,-0.029541,-0.0327759,-0.0362244,-0.040863,-0.0462341,-0.0516357,-0.0581055,-0.063446,-0.0688171,-0.0722351,-0.0752869,-0.0767517,-0.0756226,-0.074646,-0.0718994,-0.0692749,-0.0666809,-0.0644226,-0.0627441,-0.0614014,-0.059082,-0.0578918,-0.0560608,-0.0550232,-0.0556335,-0.0571899,-0.0595703,-0.061554,-0.0630188,-0.0655518,-0.069519,-0.0762024,-0.0839844,-0.0920715,-0.0992432,-0.104828,-0.109161,-0.114258,-0.11911,-0.122894,-0.124664,-0.123962,-0.120361,-0.112976,-0.102936,-0.0917358,-0.0770874,-0.0570679,-0.032135,-0.00259399,0.0291138,0.0591431,0.0872498,0.110718,0.132751,0.14978,0.161041,0.164001,0.160553,0.152161,0.143005,0.13382,0.125763,0.120422,0.118469,0.117493,0.120239,0.125,0.130646,0.135773,0.13739,0.134918,0.127411,0.116699,0.104614,0.0923767,0.0806885,0.0698547,0.0604858,0.0548706,0.0536194,0.0556641,0.06073,0.0667725,0.0700073,0.0721741,0.0708923,0.0690308,0.0662537,0.0629578,0.0585938,0.0548706,0.0500183,0.0474243,0.0453796,0.0438232,0.0405884,0.0344543,0.0256653,0.0123901,-0.00366211,-0.0227051,-0.0428467,-0.0637207,-0.0837097,-0.102142,-0.116638,-0.127747,-0.13266,-0.13443,-0.133362,-0.130371,-0.127625,-0.125427,-0.123322,-0.121826,-0.121857,-0.122131,-0.122894,-0.120575,-0.116425,-0.108673,-0.0965271,-0.0821533,-0.0650024,-0.0462036,-0.0268555,-0.00662231,0.0121765,0.0285645,0.0431824,0.0542297,0.063385,0.0704041,0.0765381,0.0803528,0.0832214,0.084259,0.0848999,0.0834961,0.0811768,0.0777283,0.0734253,0.0673828,0.0605774,0.052887,0.0457458,0.0394592,0.0347595,0.0313721,0.0283508,0.0266724,0.0260315,0.0264587,0.0275574,0.0292664,0.0304565,0.0315857,0.0321655,0.0335388,0.0353088,0.038269,0.0424194,0.046936,0.0522156,0.0568237,0.0611877,0.065918,0.0701294,0.0740051,0.0758362,0.0762024,0.0745544,0.0701904,0.0645752,0.0566406,0.0476074,0.0363159,0.023407,0.009552,-0.00543213,-0.0187683,-0.0312195,-0.0417175,-0.0512085,-0.0591736,-0.0658264,-0.0714111,-0.0760498,-0.0791321,-0.0814514,-0.0823059,-0.0832825,-0.0828857,-0.0814819,-0.0783691,-0.0731812,-0.0671692,-0.0592957,-0.0514221,-0.042572,-0.0329895,-0.0236206,-0.0141907,-0.00680542,-0.000335693,0.00534058,0.00888062,0.0121765,0.013031,0.0123291,0.0101318,0.00631714,0.00140381,-0.00427246,-0.0100708,-0.0175781,-0.025238,-0.0342407,-0.0446777,-0.0548096,-0.0658569,-0.0749817,-0.0856323,-0.0956116,-0.105957,-0.115356,-0.124786,-0.132477,-0.138519,-0.143097,-0.145416,-0.145813,-0.145813,-0.143921,-0.142456,-0.139374,-0.136414,-0.131287,-0.125427,-0.121155,-0.118195,-0.115845,-0.112762,-0.107635,-0.099762,-0.0888367,-0.0749817,-0.0573425,-0.0347595,-0.00775146,0.0255432,0.0625916,0.0986328,0.130127,0.153992,0.170044,0.17923,0.180084,0.173676,0.156799,0.134277,0.110168,0.085968,0.0675964,0.0555115,0.0517883,0.0542297,0.0621338,0.0726013,0.0852051,0.0985718,0.110596,0.118469,0.121643,0.118896,0.112854,0.105652,0.0988464,0.0943298,0.0927734,0.0937805,0.099762,0.108612,0.119324,0.129913,0.137665,0.140991,0.140076,0.13382,0.124023,0.112,0.0980835,0.0821533,0.0672607,0.0533142,0.0412903,0.0313721,0.0202026,0.00857544,-0.00582886,-0.0246277,-0.0460815,-0.0718384,-0.0990601,-0.125763,-0.150482,-0.171509,-0.188446,-0.19928,-0.202728,-0.198364,-0.188477,-0.17453,-0.158783,-0.144135,-0.129578,-0.11792,-0.107056,-0.0982666,-0.0910339,-0.0839844,-0.0764771,-0.0673218,-0.056488,-0.0420532,-0.0254822,-0.00640869,0.0126648,0.0314636,0.0485229,0.063385,0.074707,0.0830688,0.0873718,0.088501,0.0868835,0.0840149,0.0807495,0.0769043,0.0731506,0.069519,0.0653687,0.061615,0.0574036,0.0535889,0.0485229,0.0438843,0.0391846,0.0352478,0.0335693,0.0341187,0.0376892,0.0413513,0.0481873,0.0549316,0.0621948,0.0705566,0.0776672,0.083374,0.0879211,0.0895691,0.0908203,0.0904846,0.0891418,0.0884399,0.086792,0.0849915,0.0814819,0.0784912,0.0747681,0.071106,0.0666809,0.0608521,0.0525513,0.0410156,0.0270996,0.0115356,-0.00491333,-0.0222168,-0.0401001,-0.0579529,-0.0739441,-0.0870972,-0.0956116,-0.101227,-0.103394,-0.104248,-0.102692,-0.099762,-0.095459,-0.0904541,-0.0861816,-0.0826721,-0.0796204,-0.0766602,-0.0730896,-0.0675354,-0.06073,-0.0523376,-0.0445862,-0.0361633,-0.028717,-0.0206909,-0.0129395,-0.00787354,-0.00436401,-0.00448608,-0.00604248,-0.00872803,-0.0130005,-0.0175171,-0.0227356,-0.0293884,-0.035675,-0.0432739,-0.0506592,-0.0585938,-0.0669556,-0.0777893,-0.0899658,-0.104614,-0.118958,-0.133575,-0.145355,-0.15625,-0.164062,-0.170532,-0.174957,-0.177063,-0.175171,-0.170746,-0.162659,-0.15387,-0.146179,-0.139008,-0.132599,-0.12262,-0.107849,-0.0880127,-0.0639648,-0.0350952,-0.00119019,0.0393372,0.0837708,0.131073,0.173187,0.206207,0.225525,0.234344,0.233765,0.223633,0.202454,0.170929,0.134735,0.0986328,0.0697327,0.050293,0.0418396,0.0415039,0.0462952,0.0544434,0.0652161,0.0765381,0.0863953,0.0906677,0.0879517,0.0773926,0.0617065,0.0453796,0.0313721,0.0236206,0.0217896,0.0259705,0.0367126,0.0538025,0.0755005,0.0992432,0.120667,0.13681,0.146332,0.148285,0.145264,0.136963,0.124512,0.109833,0.092865,0.077179,0.0625305,0.050354,0.0383301,0.0244751,0.00842285,-0.013031,-0.0376282,-0.0668335,-0.0989075,-0.132202,-0.163696,-0.192535,-0.215973,-0.2323,-0.241241,-0.240387,-0.231659,-0.216583,-0.197876,-0.178314,-0.159393,-0.142242,-0.125854,-0.112061,-0.0980835,-0.0856934,-0.0724487,-0.05896,-0.0422058,-0.0220337,0.00286865,0.0289307,0.0571899,0.0839844,0.108887,0.130157,0.146545,0.157806,0.163086,0.162079,0.155975,0.146057,0.134644,0.121857,0.108398,0.0946045,0.0810242,0.067749,0.0556641,0.045105,0.0358582,0.0279846,0.0209656,0.0163269,0.013092,0.0131531,0.0158997,0.0211792,0.0271606,0.0336914,0.0402527,0.0461426,0.0526123,0.0585327,0.0645752,0.0708923,0.0768127,0.0827332,0.0877075,0.0922241,0.0967102,0.101166,0.103851,0.105591,0.103119,0.0969543,0.0863953,0.0747986,0.0612183,0.0453796,0.0264587,0.00527954,-0.018158,-0.0429077,-0.0657654,-0.0871582,-0.104767,-0.120026,-0.13147,-0.140259,-0.144348,-0.144836,-0.140625,-0.133453,-0.124359,-0.114227,-0.105469,-0.0957947,-0.0872498,-0.0776672,-0.0696411,-0.0600891,-0.0508423,-0.0397339,-0.0284729,-0.0164795,-0.00662231,0.00128174,0.00759888,0.0118713,0.0140076,0.0128174,0.00793457,-0.00119019,-0.0125122,-0.027771,-0.0441589,-0.0623474,-0.0826721,-0.103149,-0.124512,-0.144562,-0.163422,-0.179596,-0.19339,-0.204376,-0.213928,-0.22168,-0.227417,-0.228638,-0.224213,-0.216522,-0.206818,-0.194366,-0.177124,-0.153656,-0.12207,-0.0794373,-0.0285645,0.0283508,0.0865479,0.144562,0.199097,0.245605,0.279205,0.296082,0.3013,0.293152,0.26944,0.232574,0.187408,0.143707,0.106842,0.0812683,0.0651245,0.059021,0.0577698,0.061676,0.0673828,0.0729675,0.074646,0.0697327,0.0572815,0.0375671,0.0126648,-0.0136414,-0.0358887,-0.0493164,-0.0531006,-0.0454407,-0.0278625,-0.00183105,0.0298157,0.0662537,0.100403,0.13092,0.15387,0.168213,0.175781,0.175812,0.169037,0.155823,0.140564,0.125,0.111084,0.0985413,0.0857544,0.0704346,0.0513611,0.0272217,-0.00134277,-0.0335388,-0.0692749,-0.108215,-0.149139,-0.189453,-0.225403,-0.255005,-0.275574,-0.287231,-0.287506,-0.279633,-0.265839,-0.247131,-0.226746,-0.203674,-0.179932,-0.156647,-0.134094,-0.111786,-0.0901184,-0.0681763,-0.0443115,-0.0183716,0.0119019,0.0447998,0.079834,0.11319,0.146606,0.175171,0.198822,0.214844,0.224121,0.226044,0.219757,0.20697,0.189667,0.167694,0.144226,0.11972,0.0944214,0.0722656,0.0512695,0.0328674,0.0162354,0.00238037,-0.00942993,-0.0174561,-0.0238342,-0.0263977,-0.0254822,-0.0227966,-0.0178528,-0.0118103,-0.00463867,0.00668335,0.0209045,0.0367737,0.0535889,0.0694885,0.0863342,0.101593,0.117767,0.131195,0.141327,0.146118,0.145325,0.140289,0.133179,0.124176,0.11261,0.0962219,0.077179,0.0554504,0.0329895,0.00942993,-0.0158386,-0.0446777,-0.0743408,-0.103485,-0.130066,-0.153412,-0.172546,-0.186218,-0.193726,-0.194366,-0.188873,-0.177612,-0.162933,-0.146027,-0.129211,-0.11261,-0.0979309,-0.0832825,-0.0697021,-0.0559082,-0.043457,-0.0317383,-0.0201721,-0.00817871,0.00360107,0.0142822,0.0215454,0.0249023,0.0240784,0.0184937,0.00704956,-0.0103455,-0.0330811,-0.0592346,-0.0866699,-0.113739,-0.140747,-0.166595,-0.191925,-0.216309,-0.237854,-0.252838,-0.261566,-0.264374,-0.26474,-0.262909,-0.255798,-0.240112,-0.211731,-0.166779,-0.107208,-0.0385437,0.0310059,0.0985413,0.163422,0.221863,0.269867,0.30307,0.320984,0.320587,0.302551,0.270752,0.233704,0.198669,0.171387,0.155121,0.147644,0.14682,0.150391,0.15625,0.163208,0.166809,0.162781,0.146667,0.117188,0.0780334,0.0303345,-0.0175781,-0.0637207,-0.100311,-0.124298,-0.131897,-0.12381,-0.102295,-0.0713196,-0.0344543,0.0062561,0.0438843,0.0763245,0.100677,0.114594,0.119232,0.113312,0.101166,0.0864563,0.0750427,0.067749,0.0654297,0.0649414,0.0614319,0.0555115,0.0441589,0.0279846,0.00726318,-0.019928,-0.0550842,-0.0967407,-0.140137,-0.182343,-0.21701,-0.243958,-0.260498,-0.268219,-0.266754,-0.261047,-0.24939,-0.234528,-0.217804,-0.200134,-0.183472,-0.167358,-0.151886,-0.135193,-0.116302,-0.0930786,-0.0644226,-0.0291748,0.012085,0.056427,0.10321,0.148285,0.190491,0.224701,0.250366,0.267517,0.274231,0.273743,0.263794,0.248047,0.228271,0.205261,0.181854,0.160889,0.140503,0.122772,0.105103,0.0882874,0.0713196,0.0555115,0.0400085,0.0261841,0.0121155,0.000579834,-0.0111084,-0.0214539,-0.029541,-0.0333557,-0.0319519,-0.0244141,-0.0133057,0.000976562,0.0179443,0.0357361,0.0556641,0.0755005,0.093689,0.107788,0.116272,0.119232,0.117615,0.112762,0.104553,0.0951843,0.0818787,0.0664062,0.0469971,0.0267334,0.00357056,-0.0234375,-0.0530396,-0.0844116,-0.115387,-0.14444,-0.171661,-0.193024,-0.207306,-0.21286,-0.211975,-0.205688,-0.195557,-0.183594,-0.169617,-0.157227,-0.14743,-0.140076,-0.13443,-0.12796,-0.119049,-0.108215,-0.09552,-0.0814514,-0.0646667,-0.047821,-0.0311584,-0.0180969,-0.00949097,-0.00634766,-0.0085144,-0.0172424,-0.0326233,-0.0539551,-0.0795593,-0.106384,-0.135132,-0.163757,-0.188385,-0.205139,-0.213165,-0.21582,-0.210327,-0.196198,-0.169525,-0.127106,-0.0676575,0.0032959,0.0716858,0.129669,0.175079,0.213104,0.244263,0.264526,0.267395,0.252045,0.220184,0.183136,0.149719,0.128662,0.123047,0.131134,0.147247,0.168121,0.190643,0.213776,0.23645,0.251343,0.251221,0.231659,0.194092,0.146332,0.0951843,0.045929,0.00344849,-0.0321655,-0.0578918,-0.0690308,-0.0654907,-0.0500793,-0.02948,-0.00900269,0.00830078,0.0227966,0.0337524,0.0383301,0.0358887,0.0274353,0.0129395,-0.00296021,-0.0174561,-0.0266113,-0.0297546,-0.0281372,-0.026886,-0.0286255,-0.0339966,-0.0411682,-0.0524292,-0.065155,-0.0839233,-0.107483,-0.135406,-0.165741,-0.193024,-0.212799,-0.224487,-0.22702,-0.224701,-0.218079,-0.207672,-0.195374,-0.180298,-0.165802,-0.151672,-0.141327,-0.134521,-0.128723,-0.123688,-0.113251,-0.0971375,-0.0750427,-0.046936,-0.0122986,0.0280762,0.0714722,0.115997,0.157928,0.195221,0.224487,0.244598,0.254608,0.257812,0.252472,0.242004,0.225555,0.207184,0.188232,0.172272,0.15918,0.150269,0.142517,0.135925,0.128448,0.120667,0.11261,0.104187,0.0924377,0.0775757,0.0603027,0.0423584,0.0259399,0.0128174,0.00448608,0.00198364,0.00442505,0.0093689,0.0164795,0.0263062,0.0357361,0.0464172,0.0551453,0.0604248,0.0611267,0.0572815,0.0496521,0.0405273,0.0325012,0.0258789,0.0188599,0.00949097,-0.00357056,-0.0187683,-0.0369263,-0.0545959,-0.0755005,-0.0989075,-0.124237,-0.148071,-0.169189,-0.18219,-0.187531,-0.186768,-0.181366,-0.173492,-0.163788,-0.154114,-0.145813,-0.140839,-0.140961,-0.144623,-0.149994,-0.155487,-0.158997,-0.160553,-0.160309,-0.158356,-0.151886,-0.141541,-0.128052,-0.116272,-0.108917,-0.108276,-0.113342,-0.124298,-0.138733,-0.155243,-0.172852,-0.189789,-0.200287,-0.199738,-0.185028,-0.15329,-0.10321,-0.0385437,0.0398865,0.123901,0.201965,0.264008,0.305389,0.32782,0.333588,0.322266,0.289276,0.236786,0.17392,0.114471,0.0708313,0.0490417,0.050354,0.0681763,0.0940552,0.12677,0.16272,0.199585,0.229828,0.24469,0.238983,0.211121,0.166565,0.115448,0.0662537,0.0253906,-0.00479126,-0.0220032,-0.0247803,-0.011261,0.0173035,0.0554504,0.0939941,0.123108,0.141174,0.147369,0.143311,0.127899,0.102936,0.0686035,0.0327148,-0.00106812,-0.0260315,-0.0414429,-0.0491028,-0.054657,-0.0623474,-0.0739441,-0.0894775,-0.108459,-0.130859,-0.157074,-0.186066,-0.216675,-0.246368,-0.270966,-0.285553,-0.289825,-0.281738,-0.265991,-0.246063,-0.223145,-0.199707,-0.174255,-0.151031,-0.129791,-0.111572,-0.0975647,-0.0861206,-0.0754089,-0.0614014,-0.0429993,-0.0192871,0.00979614,0.0418396,0.0768738,0.111694,0.145355,0.174744,0.198364,0.214966,0.223907,0.224884,0.218872,0.207611,0.19281,0.176025,0.158142,0.140747,0.126068,0.114044,0.105255,0.0993347,0.0956726,0.092865,0.0926514,0.0932007,0.0956116,0.0984802,0.099884,0.0970764,0.092804,0.0873108,0.0837708,0.0825806,0.0828552,0.0845032,0.0865479,0.088623,0.0903931,0.0906067,0.0899048,0.0863342,0.079071,0.0674133,0.0500793,0.031311,0.0109863,-0.00701904,-0.0238647,-0.0384827,-0.0540161,-0.0713196,-0.0910339,-0.111847,-0.132202,-0.152252,-0.174042,-0.194031,-0.211945,-0.222076,-0.224915,-0.219421,-0.207672,-0.191406,-0.173492,-0.15506,-0.139008,-0.127747,-0.120148,-0.11853,-0.122253,-0.129242,-0.138947,-0.147034,-0.153351,-0.156586,-0.157654,-0.155731,-0.151733,-0.146027,-0.141388,-0.142334,-0.150635,-0.166016,-0.186859,-0.205994,-0.21933,-0.22702,-0.223083,-0.203308,-0.160614,-0.0962219,-0.0133057,0.0809631,0.176147,0.259033,0.321503,0.362366,0.381927,0.380859,0.353485,0.301514,0.234528,0.165314,0.110321,0.0781555,0.0714111,0.0826416,0.10553,0.138947,0.178894,0.221588,0.256409,0.273438,0.264709,0.22934,0.175446,0.112701,0.0493164,-0.00717163,-0.0527649,-0.081665,-0.0911865,-0.0802002,-0.0490417,-0.00286865,0.0484009,0.0932922,0.125,0.141266,0.142303,0.12851,0.0999451,0.0609741,0.0180664,-0.0202637,-0.0480347,-0.0611267,-0.0631714,-0.0585938,-0.0539551,-0.0526733,-0.0568542,-0.0683899,-0.0884094,-0.117126,-0.155273,-0.197968,-0.240448,-0.278503,-0.305115,-0.318115,-0.316376,-0.300812,-0.278076,-0.249084,-0.21814,-0.184998,-0.154846,-0.129517,-0.111725,-0.0996704,-0.0910339,-0.0818787,-0.0676575,-0.0463562,-0.0176392,0.0189819,0.0591736,0.103638,0.148102,0.190918,0.228577,0.256683,0.274841,0.282288,0.281891,0.272308,0.259674,0.242981,0.224701,0.205292,0.186554,0.170013,0.154633,0.139862,0.126282,0.112427,0.0994873,0.088562,0.0795593,0.0737915,0.0717468,0.0706177,0.0706482,0.0704956,0.0708313,0.0733643,0.0775757,0.0834961,0.0886536,0.0913086,0.0926514,0.091095,0.0891418,0.0857544,0.0801086,0.0694885,0.0534668,0.0335388,0.012085,-0.00793457,-0.0246887,-0.0375671,-0.0499573,-0.064209,-0.0821533,-0.103149,-0.124664,-0.14743,-0.173248,-0.201965,-0.22998,-0.253479,-0.267242,-0.272522,-0.269073,-0.258392,-0.243042,-0.224884,-0.207184,-0.191071,-0.17981,-0.173401,-0.172485,-0.175934,-0.18158,-0.185577,-0.187469,-0.186981,-0.184509,-0.181091,-0.175537,-0.16861,-0.162628,-0.160126,-0.165039,-0.177429,-0.189606,-0.197266,-0.193542,-0.17453,-0.136414,-0.0789185,-0.00241089,0.0873718,0.183594,0.2742,0.347656,0.400269,0.430969,0.436859,0.411835,0.35611,0.280884,0.201202,0.131622,0.083374,0.0613403,0.0631714,0.0823669,0.118378,0.166321,0.22168,0.272614,0.305603,0.312408,0.289764,0.241211,0.175781,0.104095,0.0354004,-0.0256042,-0.0718079,-0.0984192,-0.103638,-0.084198,-0.0445862,0.00680542,0.0575562,0.098999,0.129089,0.143219,0.13858,0.111938,0.0674133,0.0135803,-0.0409241,-0.0880127,-0.121277,-0.140045,-0.148071,-0.148926,-0.146057,-0.142303,-0.140839,-0.144928,-0.158417,-0.181641,-0.214294,-0.250946,-0.286469,-0.314453,-0.330078,-0.331757,-0.319397,-0.297577,-0.268433,-0.234406,-0.19754,-0.162079,-0.130646,-0.105957,-0.0875244,-0.0740662,-0.0613403,-0.0452271,-0.0228577,0.00701904,0.043457,0.0838623,0.126556,0.170807,0.212311,0.248413,0.274994,0.291107,0.297424,0.295166,0.285461,0.270996,0.254456,0.237335,0.220398,0.205048,0.192108,0.181213,0.17157,0.160248,0.151123,0.140747,0.131561,0.12262,0.116302,0.111694,0.10968,0.108765,0.110107,0.112213,0.115387,0.117767,0.119293,0.118835,0.115448,0.110657,0.102844,0.0924988,0.0782166,0.060791,0.0396729,0.0157471,-0.0085144,-0.0343323,-0.058197,-0.0794983,-0.0969238,-0.111298,-0.127106,-0.143158,-0.161102,-0.179321,-0.199585,-0.221039,-0.242645,-0.263092,-0.278076,-0.285461,-0.284363,-0.274994,-0.259216,-0.240662,-0.220673,-0.20282,-0.187988,-0.177124,-0.171356,-0.170807,-0.175934,-0.184021,-0.192963,-0.200623,-0.206177,-0.210968,-0.210632,-0.212189,-0.215332,-0.220825,-0.227875,-0.233215,-0.232422,-0.221863,-0.196289,-0.151398,-0.0844727,-0.00216675,0.0913086,0.192688,0.290741,0.374115,0.433777,0.467377,0.474854,0.452606,0.401398,0.328674,0.249115,0.174835,0.12204,0.0939941,0.0935059,0.114044,0.151398,0.202667,0.259949,0.312469,0.347382,0.353149,0.326202,0.270844,0.197754,0.118256,0.0413513,-0.0262451,-0.0787354,-0.108459,-0.116638,-0.10025,-0.0640259,-0.0130005,0.0397339,0.0830994,0.112823,0.126404,0.123444,0.102356,0.0629578,0.0134888,-0.0392456,-0.0874329,-0.126068,-0.153168,-0.170258,-0.180878,-0.18634,-0.188873,-0.190918,-0.194244,-0.203369,-0.219208,-0.242126,-0.268158,-0.294037,-0.314087,-0.32605,-0.327454,-0.318481,-0.301636,-0.279907,-0.253601,-0.224976,-0.194672,-0.166992,-0.142517,-0.122253,-0.10434,-0.0863342,-0.0645142,-0.0355835,0.00146484,0.0458679,0.0949097,0.145203,0.194794,0.240173,0.278778,0.306732,0.322632,0.327881,0.322479,0.310577,0.293579,0.274567,0.256561,0.239807,0.224121,0.213013,0.203857,0.196991,0.189575,0.182678,0.174805,0.166382,0.157318,0.147949,0.139771,0.132538,0.125,0.118042,0.11145,0.107056,0.104675,0.103119,0.101807,0.0992432,0.0953064,0.0901184,0.0807495,0.0662842,0.0454407,0.0196228,-0.00979614,-0.0398254,-0.0687866,-0.0951233,-0.120026,-0.143524,-0.163849,-0.17981,-0.192963,-0.204865,-0.219147,-0.235809,-0.25354,-0.270508,-0.282593,-0.288971,-0.289398,-0.286194,-0.278168,-0.266144,-0.248383,-0.228088,-0.207123,-0.19043,-0.179382,-0.174194,-0.173187,-0.173767,-0.178192,-0.185913,-0.195221,-0.2052,-0.215759,-0.22702,-0.238617,-0.248535,-0.256348,-0.257843,-0.247131,-0.220276,-0.174744,-0.106171,-0.0205994,0.07901,0.18454,0.291504,0.386719,0.460571,0.507965,0.526764,0.513947,0.469208,0.399078,0.315033,0.23053,0.158508,0.110321,0.090271,0.0968628,0.125427,0.172699,0.232208,0.295898,0.347656,0.374451,0.368073,0.328888,0.26297,0.180847,0.0927734,0.00732422,-0.0668945,-0.119537,-0.148163,-0.14859,-0.124176,-0.0783691,-0.0240784,0.0283508,0.0717468,0.101379,0.114441,0.105652,0.0768127,0.0315247,-0.0209656,-0.0747681,-0.122131,-0.158478,-0.184387,-0.202026,-0.214142,-0.220886,-0.223907,-0.22583,-0.229675,-0.239258,-0.253601,-0.272827,-0.291931,-0.307648,-0.317474,-0.317352,-0.308197,-0.292023,-0.270966,-0.246368,-0.2211,-0.195984,-0.173981,-0.156799,-0.141968,-0.128876,-0.111511,-0.0887146,-0.0547485,-0.0115356,0.040741,0.0978699,0.157074,0.215393,0.269012,0.313263,0.344757,0.36087,0.363068,0.353912,0.33725,0.315948,0.293854,0.272736,0.253662,0.237152,0.22464,0.215912,0.209991,0.20575,0.201965,0.19754,0.193604,0.187744,0.179535,0.169342,0.156403,0.140778,0.124786,0.109375,0.0976257,0.0905457,0.0870361,0.0853882,0.081604,0.0750732,0.0666809,0.0556641,0.040802,0.0211792,-0.00473022,-0.0374146,-0.0744324,-0.10791,-0.135284,-0.155457,-0.173981,-0.194458,-0.215607,-0.234467,-0.250214,-0.26358,-0.277252,-0.292999,-0.310455,-0.325287,-0.333527,-0.331818,-0.321472,-0.303986,-0.283356,-0.259735,-0.235809,-0.210358,-0.187286,-0.170044,-0.16153,-0.162628,-0.168823,-0.181305,-0.19397,-0.208527,-0.223938,-0.241364,-0.257538,-0.268311,-0.271332,-0.26593,-0.250214,-0.220886,-0.171295,-0.0993347,-0.00921631,0.0927734,0.202332,0.312347,0.413239,0.494629,0.551056,0.577576,0.568817,0.524445,0.451416,0.363831,0.275635,0.199219,0.14386,0.113556,0.111725,0.135284,0.184448,0.249329,0.31897,0.376648,0.407806,0.406891,0.370392,0.307404,0.222656,0.127319,0.0296326,-0.056427,-0.122772,-0.162445,-0.173248,-0.155884,-0.115356,-0.0614319,-0.00653076,0.0423584,0.0791931,0.0976257,0.0914612,0.0628052,0.0150452,-0.0426331,-0.102142,-0.157379,-0.202667,-0.238708,-0.265076,-0.283875,-0.292572,-0.295166,-0.293427,-0.292877,-0.295868,-0.303253,-0.312134,-0.321686,-0.328308,-0.328827,-0.322418,-0.309387,-0.291595,-0.269379,-0.245605,-0.217529,-0.191833,-0.167084,-0.146332,-0.12796,-0.108063,-0.0847778,-0.0536804,-0.0137024,0.0336304,0.0866089,0.143494,0.200195,0.255432,0.305542,0.345398,0.372833,0.387604,0.388123,0.380737,0.366302,0.349335,0.330933,0.313049,0.297272,0.283508,0.273987,0.267029,0.261353,0.254089,0.244171,0.233398,0.220184,0.207092,0.191559,0.176575,0.159637,0.143311,0.127533,0.113251,0.101074,0.0916443,0.0823975,0.0736694,0.0632629,0.0496826,0.0347595,0.0154114,-0.00653076,-0.0335388,-0.0632629,-0.094696,-0.126068,-0.154907,-0.17868,-0.198364,-0.214081,-0.229767,-0.243896,-0.257629,-0.273376,-0.290833,-0.310455,-0.330933,-0.350189,-0.364136,-0.370605,-0.368774,-0.356537,-0.336823,-0.309753,-0.277893,-0.243134,-0.209991,-0.180725,-0.159698,-0.147034,-0.145813,-0.152222,-0.166077,-0.185364,-0.207458,-0.232086,-0.254364,-0.271484,-0.282013,-0.284546,-0.276825,-0.253387,-0.209839,-0.139008,-0.0420532,0.0714111,0.190094,0.307404,0.417786,0.516479,0.590912,0.63797,0.648895,0.617249,0.546478,0.454956,0.358154,0.268097,0.19339,0.140625,0.114227,0.117493,0.148712,0.207611,0.280823,0.35202,0.401337,0.419434,0.401703,0.350281,0.272247,0.174957,0.0686035,-0.0362854,-0.128174,-0.1922,-0.22406,-0.222809,-0.19339,-0.144226,-0.0834351,-0.0222168,0.0341187,0.0761719,0.0946045,0.0847168,0.0490417,-0.00280762,-0.0638123,-0.125427,-0.181488,-0.22757,-0.267303,-0.297913,-0.319611,-0.329224,-0.330688,-0.325928,-0.322815,-0.322144,-0.325012,-0.329712,-0.332397,-0.32959,-0.321838,-0.310242,-0.296509,-0.280823,-0.262665,-0.240662,-0.216187,-0.191772,-0.170471,-0.14859,-0.126068,-0.0986938,-0.0632629,-0.0193481,0.033783,0.0927734,0.155609,0.219208,0.281311,0.335846,0.378815,0.408508,0.422516,0.423859,0.413361,0.397552,0.379333,0.359833,0.340759,0.324158,0.310181,0.299957,0.291595,0.285828,0.277588,0.266052,0.250366,0.231293,0.210327,0.187042,0.163269,0.141052,0.120026,0.102142,0.0880127,0.0791931,0.0758362,0.0745544,0.0720215,0.0673218,0.0572815,0.0428467,0.022522,-0.00259399,-0.0317993,-0.0655518,-0.102509,-0.139801,-0.172699,-0.199219,-0.217529,-0.231873,-0.243134,-0.253967,-0.263672,-0.273926,-0.286377,-0.3013,-0.318329,-0.336273,-0.353302,-0.365448,-0.369629,-0.365021,-0.350983,-0.330414,-0.303955,-0.273651,-0.241943,-0.210358,-0.182617,-0.161255,-0.149414,-0.145905,-0.1492,-0.15863,-0.172791,-0.193024,-0.217377,-0.242615,-0.264526,-0.279144,-0.281616,-0.26889,-0.234406,-0.175171,-0.0913696,0.0171814,0.142609,0.276947,0.408356,0.524872,0.613708,0.671173,0.692841,0.671844,0.609985,0.516144,0.406464,0.295959,0.197815,0.126404,0.0861816,0.0814819,0.107208,0.159882,0.231598,0.308136,0.373199,0.4104,0.412292,0.372986,0.299835,0.203094,0.0953064,-0.0114746,-0.105804,-0.178558,-0.221893,-0.231293,-0.207123,-0.159119,-0.0956116,-0.0294189,0.0303345,0.0756226,0.0991211,0.0949707,0.0655823,0.016449,-0.0452881,-0.111847,-0.173065,-0.224335,-0.264801,-0.295746,-0.317261,-0.329498,-0.33429,-0.333221,-0.330902,-0.3284,-0.328033,-0.330414,-0.334167,-0.334137,-0.329224,-0.316986,-0.300446,-0.282288,-0.261292,-0.240723,-0.217255,-0.194153,-0.171783,-0.148804,-0.123322,-0.0950928,-0.0596008,-0.0155334,0.0380554,0.0990601,0.163086,0.225403,0.284363,0.334351,0.374451,0.40097,0.414703,0.415405,0.405914,0.390564,0.373901,0.358063,0.343292,0.330902,0.31958,0.309448,0.298706,0.287384,0.272797,0.253876,0.231232,0.204987,0.178528,0.152802,0.130768,0.113464,0.100372,0.0904541,0.0842896,0.0789185,0.0750427,0.0713501,0.0668335,0.0613403,0.0534668,0.0400085,0.0205994,-0.00469971,-0.0327759,-0.0619812,-0.0896301,-0.114807,-0.138092,-0.159271,-0.179047,-0.195862,-0.20752,-0.217865,-0.22995,-0.24884,-0.273438,-0.302063,-0.328186,-0.349854,-0.365723,-0.374969,-0.376648,-0.368896,-0.348145,-0.317474,-0.279694,-0.24173,-0.207947,-0.180298,-0.158783,-0.142883,-0.134155,-0.132599,-0.139771,-0.15152,-0.163269,-0.174164,-0.181091,-0.188477,-0.199799,-0.215637,-0.230042,-0.233124,-0.219635,-0.188812,-0.1409,-0.0722351,0.015686,0.123901,0.250427,0.383942,0.503967,0.593597,0.649536,0.67099,0.655304,0.598999,0.506378,0.391052,0.26886,0.15799,0.0749817,0.0291138,0.0214539,0.047699,0.103333,0.179443,0.263153,0.33725,0.385162,0.39444,0.360535,0.287598,0.187531,0.0765991,-0.0319519,-0.127686,-0.201141,-0.246704,-0.25769,-0.231323,-0.17453,-0.100525,-0.0270691,0.0375061,0.0868835,0.114685,0.114532,0.086792,0.0372314,-0.0270691,-0.0968018,-0.162933,-0.216949,-0.259247,-0.287659,-0.306305,-0.314728,-0.316132,-0.312836,-0.307861,-0.303009,-0.299469,-0.297852,-0.299469,-0.300537,-0.296722,-0.286102,-0.269165,-0.250427,-0.231506,-0.212585,-0.191986,-0.170532,-0.14978,-0.126831,-0.101379,-0.0731506,-0.0395203,0.00146484,0.0534668,0.113525,0.176025,0.237854,0.292999,0.340149,0.37326,0.394592,0.403015,0.398438,0.385071,0.364838,0.34613,0.328888,0.315094,0.303986,0.294678,0.286255,0.277527,0.266754,0.252838,0.232422,0.207672,0.178192,0.14682,0.115997,0.0881653,0.0668945,0.0521851,0.0445251,0.0426331,0.045105,0.0493774,0.0528259,0.0552063,0.0534058,0.0471191,0.0346985,0.0155334,-0.00802612,-0.0374146,-0.065918,-0.092804,-0.11734,-0.138641,-0.155731,-0.16806,-0.176453,-0.18277,-0.189178,-0.198456,-0.212463,-0.234741,-0.260925,-0.289764,-0.315308,-0.335266,-0.347595,-0.350128,-0.341675,-0.320709,-0.288574,-0.249237,-0.207458,-0.170471,-0.141876,-0.120575,-0.108459,-0.103119,-0.10553,-0.114929,-0.126709,-0.141174,-0.154572,-0.165955,-0.175659,-0.184448,-0.192596,-0.198822,-0.201202,-0.196899,-0.179749,-0.147308,-0.0941772,-0.0180969,0.079834,0.193054,0.314178,0.430176,0.526062,0.594147,0.632935,0.635803,0.596558,0.518951,0.412445,0.291809,0.174469,0.0782471,0.0151978,-0.0101929,-0.00436401,0.0314331,0.0922852,0.17038,0.250305,0.311798,0.340546,0.328156,0.276459,0.195984,0.0979309,-0.00350952,-0.0987549,-0.17807,-0.233856,-0.255768,-0.242767,-0.197906,-0.133667,-0.0626831,0.0022583,0.0565796,0.0951233,0.111511,0.102905,0.070282,0.0195618,-0.0425415,-0.104401,-0.155609,-0.195221,-0.224335,-0.247559,-0.265015,-0.277313,-0.28244,-0.283295,-0.282288,-0.281128,-0.282501,-0.284363,-0.285889,-0.279968,-0.266479,-0.248199,-0.228333,-0.208954,-0.19162,-0.175507,-0.15918,-0.142822,-0.123962,-0.103485,-0.0791931,-0.0503845,-0.013031,0.0344543,0.0922852,0.153931,0.214355,0.270477,0.317963,0.354126,0.377838,0.387207,0.385376,0.371918,0.351044,0.328827,0.309326,0.29425,0.281799,0.270782,0.260712,0.249664,0.238007,0.223785,0.205902,0.182709,0.15506,0.12326,0.0927124,0.065918,0.0462341,0.0323792,0.0257568,0.0239258,0.0263672,0.03125,0.0362854,0.0379028,0.0359497,0.0289917,0.0183411,0.00219727,-0.0151978,-0.0350952,-0.0544434,-0.0727539,-0.0884399,-0.0999451,-0.1091,-0.11615,-0.123322,-0.1315,-0.141693,-0.155762,-0.173065,-0.195831,-0.221954,-0.249939,-0.277588,-0.299561,-0.314819,-0.317841,-0.309692,-0.289185,-0.25882,-0.221893,-0.182556,-0.145691,-0.114319,-0.0916748,-0.0801086,-0.0778809,-0.0823975,-0.092865,-0.104889,-0.118591,-0.127686,-0.13382,-0.1362,-0.135498,-0.133667,-0.134003,-0.139069,-0.146393,-0.154053,-0.157715,-0.15274,-0.13443,-0.0964661,-0.0330811,0.0555725,0.163422,0.278442,0.388306,0.479218,0.544983,0.584442,0.591705,0.559601,0.483795,0.37558,0.250732,0.131622,0.0393066,-0.0197144,-0.045105,-0.0414429,-0.0121155,0.0417175,0.116577,0.196045,0.261902,0.294403,0.284119,0.233704,0.156525,0.0679626,-0.0209656,-0.104889,-0.1763,-0.229248,-0.251923,-0.239868,-0.194946,-0.130646,-0.0631104,-0.00323486,0.0438232,0.0804138,0.102417,0.103149,0.0820312,0.0405273,-0.0116272,-0.0630188,-0.103821,-0.13382,-0.157806,-0.181915,-0.205353,-0.227081,-0.24353,-0.251831,-0.254852,-0.256561,-0.259003,-0.260376,-0.259369,-0.249512,-0.230682,-0.206818,-0.184326,-0.166779,-0.156464,-0.150269,-0.143494,-0.135284,-0.124603,-0.110107,-0.0911865,-0.0639648,-0.0263062,0.0245667,0.0863953,0.153229,0.217926,0.275269,0.321075,0.354126,0.372772,0.377625,0.36911,0.347931,0.319946,0.291534,0.268372,0.252136,0.241028,0.231995,0.222656,0.212189,0.200226,0.187347,0.169891,0.146729,0.116913,0.0830688,0.049469,0.0210266,0.00128174,-0.00942993,-0.0122986,-0.0088501,-0.00247192,0.00695801,0.0167236,0.0244751,0.0280151,0.0243225,0.0142212,-0.00280762,-0.0218201,-0.0404358,-0.0553589,-0.0660706,-0.0709839,-0.0723877,-0.0705566,-0.0682373,-0.068573,-0.0733643,-0.0838013,-0.100159,-0.123474,-0.152008,-0.183807,-0.215332,-0.24469,-0.266541,-0.278137,-0.278351,-0.265198,-0.242218,-0.211273,-0.177856,-0.143097,-0.112549,-0.0854797,-0.0662842,-0.0555115,-0.0545349,-0.0610657,-0.0721741,-0.0842896,-0.0934753,-0.0981445,-0.0970764,-0.0918579,-0.0839844,-0.0765381,-0.0725403,-0.0752563,-0.0862427,-0.104462,-0.126892,-0.148499,-0.166595,-0.17392,-0.165375,-0.133453,-0.0731506,0.0132446,0.119293,0.234955,0.343018,0.429626,0.488342,0.520996,0.521973,0.486877,0.412659,0.308563,0.190002,0.0785217,-0.00772095,-0.0576172,-0.0740662,-0.0638733,-0.0313721,0.0216675,0.0923157,0.167145,0.228546,0.257812,0.248047,0.201599,0.131775,0.0510559,-0.0306702,-0.106018,-0.172058,-0.220764,-0.243683,-0.233551,-0.192139,-0.130554,-0.0657043,-0.00683594,0.0432129,0.0863037,0.117279,0.132385,0.127899,0.103851,0.0627441,0.0169678,-0.0250549,-0.06073,-0.0935669,-0.128326,-0.163788,-0.196899,-0.220123,-0.232635,-0.235229,-0.230103,-0.221741,-0.212799,-0.202057,-0.188873,-0.17215,-0.155884,-0.146057,-0.144562,-0.151184,-0.162506,-0.171936,-0.176941,-0.172699,-0.156738,-0.129089,-0.090271,-0.0398865,0.0215454,0.0921021,0.162415,0.22821,0.281036,0.319153,0.339447,0.343781,0.334869,0.316223,0.289764,0.260498,0.233612,0.214355,0.204559,0.201324,0.200195,0.198578,0.192413,0.182281,0.166718,0.146667,0.119995,0.0887756,0.0525513,0.0167236,-0.0136414,-0.0339966,-0.0422974,-0.040802,-0.0313721,-0.0195007,-0.0045166,0.009552,0.0202637,0.0272217,0.026886,0.018219,0.00335693,-0.0137024,-0.0281982,-0.0372925,-0.0413513,-0.040863,-0.0372009,-0.0329285,-0.0286255,-0.0256042,-0.0270996,-0.0355835,-0.053833,-0.0819702,-0.114532,-0.146393,-0.175171,-0.197876,-0.215485,-0.227631,-0.229187,-0.219696,-0.197693,-0.16864,-0.138245,-0.111511,-0.0902405,-0.0742188,-0.0599976,-0.0487366,-0.0411682,-0.0396729,-0.0449524,-0.0511475,-0.0574036,-0.0588684,-0.0570679,-0.0527649,-0.0493164,-0.0472717,-0.0456543,-0.0453796,-0.0479126,-0.059021,-0.0785217,-0.107574,-0.13913,-0.170258,-0.194244,-0.207581,-0.208923,-0.191132,-0.148926,-0.0804138,0.0118713,0.118134,0.225128,0.31665,0.38501,0.432709,0.455627,0.447754,0.402893,0.324677,0.222107,0.114105,0.0214539,-0.0425415,-0.074585,-0.0803223,-0.0643616,-0.0272827,0.030304,0.100525,0.167999,0.214478,0.228699,0.205475,0.153625,0.084259,0.00866699,-0.0650024,-0.133392,-0.189819,-0.224823,-0.230255,-0.201599,-0.14505,-0.0745544,-0.00344849,0.0611267,0.118317,0.163086,0.190643,0.195435,0.175812,0.134583,0.0801392,0.0247498,-0.0242615,-0.065918,-0.103271,-0.135925,-0.162628,-0.178619,-0.182495,-0.177124,-0.16629,-0.154541,-0.147888,-0.147369,-0.150543,-0.157013,-0.165466,-0.178406,-0.194427,-0.211029,-0.224274,-0.228638,-0.220947,-0.200409,-0.16687,-0.122406,-0.0699768,-0.0139465,0.0455017,0.104553,0.158569,0.203583,0.237091,0.257629,0.265625,0.26239,0.252686,0.239594,0.226166,0.21344,0.202515,0.197174,0.195862,0.198029,0.199585,0.198181,0.190704,0.175293,0.15271,0.124451,0.0921631,0.0580444,0.0233459,-0.0101318,-0.0369873,-0.0557861,-0.0623474,-0.0579529,-0.0440369,-0.025177,-0.00408936,0.0154724,0.0306091,0.0399475,0.0424805,0.0360718,0.0216064,0.000579834,-0.0202637,-0.036377,-0.0415039,-0.0346069,-0.0190735,-0.00140381,0.0133057,0.022644,0.0263977,0.0234985,0.0132141,-0.00787354,-0.039032,-0.0804138,-0.125427,-0.163574,-0.189026,-0.199371,-0.198517,-0.192413,-0.178772,-0.158356,-0.129852,-0.0969543,-0.0681152,-0.0479126,-0.0406799,-0.040863,-0.0431213,-0.043335,-0.0426941,-0.0422668,-0.0446777,-0.0476074,-0.0471191,-0.040802,-0.0286865,-0.0160522,-0.00802612,-0.00695801,-0.0127869,-0.0201111,-0.0284729,-0.0420532,-0.064209,-0.0978394,-0.140503,-0.18515,-0.226257,-0.256897,-0.275818,-0.280609,-0.264587,-0.222076,-0.152008,-0.0560608,0.0577393,0.173279,0.277466,0.359039,0.418304,0.449463,0.447266,0.405853,0.327271,0.220184,0.103271,-0.000640869,-0.0737915,-0.112122,-0.121704,-0.108337,-0.0708313,-0.0106201,0.0690918,0.149261,0.21225,0.241913,0.232788,0.19043,0.12796,0.0588989,-0.0122375,-0.0811157,-0.141113,-0.184174,-0.199005,-0.181488,-0.13269,-0.0680847,-0.00128174,0.0614929,0.115997,0.161591,0.193176,0.206421,0.194641,0.160522,0.111786,0.0637207,0.0227051,-0.011322,-0.043396,-0.0750427,-0.10495,-0.128021,-0.143494,-0.150482,-0.155182,-0.160828,-0.169952,-0.181,-0.189026,-0.19281,-0.193329,-0.192841,-0.192627,-0.192596,-0.192139,-0.185425,-0.174042,-0.15506,-0.131561,-0.102997,-0.0713196,-0.0362244,0.00247192,0.0432739,0.0835876,0.121857,0.156464,0.184662,0.205566,0.217316,0.222931,0.224335,0.222107,0.217255,0.210815,0.205078,0.200409,0.197113,0.193329,0.186371,0.174164,0.15448,0.128326,0.0975647,0.0643005,0.029541,-0.00473022,-0.0367126,-0.0613403,-0.0765381,-0.0775146,-0.0671692,-0.0460815,-0.020813,0.00598145,0.0315247,0.052124,0.0669556,0.0724487,0.0675964,0.0504456,0.0257568,-0.00119019,-0.0250549,-0.0411682,-0.0479736,-0.0446167,-0.0327759,-0.0144348,0.00802612,0.0287781,0.0427551,0.0457458,0.0369263,0.0173035,-0.00997925,-0.0413818,-0.0730896,-0.103485,-0.131256,-0.152954,-0.162567,-0.160339,-0.147308,-0.129913,-0.111786,-0.0953064,-0.0795593,-0.0647888,-0.0509338,-0.0386963,-0.0299683,-0.0237732,-0.0189819,-0.0120239,-0.00268555,0.00796509,0.0164795,0.0209656,0.0198975,0.0140076,0.00357056,-0.00888062,-0.0227356,-0.0376892,-0.0549927,-0.0704346,-0.0863953,-0.101654,-0.119232,-0.140839,-0.16861,-0.199066,-0.231232,-0.262207,-0.28653,-0.301147,-0.295898,-0.263885,-0.202667,-0.118469,-0.0168152,0.0917358,0.195343,0.284912,0.358154,0.407471,0.420837,0.392883,0.328583,0.238403,0.134277,0.0370178,-0.0397339,-0.0884399,-0.10968,-0.104767,-0.0749817,-0.0204163,0.052002,0.127472,0.187775,0.219757,0.218994,0.188538,0.135925,0.0720215,0.00149536,-0.0692749,-0.130157,-0.171783,-0.185028,-0.16687,-0.122284,-0.0614929,0.00350952,0.0682983,0.129913,0.183594,0.222809,0.241241,0.238495,0.213074,0.172211,0.127258,0.0889282,0.0562134,0.0237122,-0.0105591,-0.0450134,-0.0762634,-0.100372,-0.118103,-0.132538,-0.148102,-0.164948,-0.18277,-0.197327,-0.20578,-0.208008,-0.209717,-0.209442,-0.209778,-0.207794,-0.202118,-0.190796,-0.175079,-0.154968,-0.131622,-0.105103,-0.0764771,-0.0431213,-0.00485229,0.0342712,0.0723877,0.107758,0.140259,0.169891,0.193604,0.211273,0.223022,0.227661,0.2258,0.218719,0.209991,0.199524,0.18692,0.171387,0.151398,0.127533,0.099823,0.0702209,0.0393372,0.0121155,-0.0134277,-0.0355835,-0.0519714,-0.0617065,-0.0614014,-0.0508728,-0.0323792,-0.00866699,0.0162354,0.0372925,0.0550232,0.0658569,0.0698547,0.0666199,0.0559387,0.0386353,0.0177307,-0.00247192,-0.0168152,-0.022583,-0.0180664,-0.00393677,0.0177307,0.0423584,0.0689392,0.0927734,0.110657,0.115356,0.102692,0.0721741,0.0280762,-0.0232849,-0.0738831,-0.117828,-0.150909,-0.173676,-0.185425,-0.184021,-0.166656,-0.134705,-0.0958862,-0.059021,-0.0334778,-0.0195618,-0.0166016,-0.0167236,-0.0202637,-0.0264587,-0.0349731,-0.0462341,-0.0545959,-0.0533142,-0.0405884,-0.0174561,0.00759888,0.0297546,0.0450745,0.0535889,0.0574036,0.0543213,0.0431213,0.0217896,-0.00863647,-0.0428467,-0.0763245,-0.106293,-0.134003,-0.164246,-0.200226,-0.239868,-0.278381,-0.307129,-0.329712,-0.346039,-0.354553,-0.34668,-0.314117,-0.254456,-0.168121,-0.063385,0.0498962,0.157715,0.250916,0.324524,0.379944,0.409424,0.402802,0.355103,0.274292,0.174957,0.0726013,-0.0134888,-0.0716248,-0.102478,-0.106995,-0.0897522,-0.0478516,0.0148315,0.0918579,0.165039,0.216309,0.23526,0.222382,0.182343,0.124725,0.0576172,-0.012085,-0.0766602,-0.128601,-0.161102,-0.163147,-0.132172,-0.0742798,-0.00393677,0.0687256,0.138641,0.203217,0.259369,0.296082,0.31015,0.299042,0.263824,0.211395,0.153778,0.100403,0.0513611,0.00289917,-0.0465088,-0.0921631,-0.128235,-0.15329,-0.166077,-0.172546,-0.175079,-0.176239,-0.178192,-0.181305,-0.181488,-0.181793,-0.185913,-0.195923,-0.210114,-0.224121,-0.233856,-0.236359,-0.231659,-0.216736,-0.193451,-0.161743,-0.122131,-0.0743408,-0.0210876,0.0344543,0.0851746,0.13028,0.166443,0.193237,0.208313,0.212738,0.209717,0.19931,0.184387,0.166656,0.150269,0.13739,0.127747,0.120575,0.114166,0.10495,0.0943298,0.0783691,0.0621338,0.0436707,0.0257568,0.00619507,-0.0122375,-0.027771,-0.035614,-0.0347595,-0.0247803,-0.00738525,0.0137329,0.0365295,0.0583801,0.0783691,0.095459,0.1073,0.110504,0.104736,0.0905457,0.0740662,0.0579834,0.04599,0.0393066,0.0395203,0.0429077,0.0498962,0.0576782,0.0656433,0.0707092,0.068512,0.056488,0.0346069,0.0017395,-0.0371399,-0.0793457,-0.119537,-0.153503,-0.177856,-0.191925,-0.193939,-0.18338,-0.163361,-0.136261,-0.105225,-0.0751343,-0.0497437,-0.0318604,-0.0217285,-0.0178528,-0.0176697,-0.0194092,-0.0203857,-0.0222168,-0.0209656,-0.015564,-0.00427246,0.0116882,0.0301819,0.0466919,0.0586548,0.0639343,0.0631104,0.0575256,0.0463562,0.0271606,6.10352e-05,-0.0344849,-0.0700684,-0.104675,-0.134155,-0.161438,-0.187531,-0.216309,-0.248169,-0.27951,-0.304626,-0.321075,-0.332062,-0.340057,-0.343567,-0.334839,-0.305725,-0.248383,-0.166077,-0.06604,0.0391235,0.138519,0.22757,0.302979,0.368988,0.415192,0.427643,0.399384,0.33374,0.246582,0.153412,0.072937,0.0125122,-0.0296326,-0.0562744,-0.0672607,-0.0519104,-0.00958252,0.0545044,0.1203,0.169617,0.190369,0.186127,0.162079,0.127197,0.083374,0.0311584,-0.0263672,-0.0812683,-0.120087,-0.131348,-0.112274,-0.069519,-0.0175781,0.035675,0.0895691,0.149567,0.211945,0.266144,0.300598,0.309052,0.290894,0.252991,0.208008,0.162292,0.113525,0.0566406,-0.00738525,-0.0718384,-0.128235,-0.169098,-0.195648,-0.212311,-0.223846,-0.23111,-0.236145,-0.235046,-0.229401,-0.220612,-0.217316,-0.220886,-0.231384,-0.243469,-0.251862,-0.254517,-0.24826,-0.235321,-0.213348,-0.182495,-0.142242,-0.0917358,-0.0348206,0.0250549,0.0804749,0.129517,0.170471,0.20163,0.223785,0.236023,0.240021,0.234253,0.221161,0.202667,0.18338,0.167145,0.152954,0.141327,0.128113,0.112701,0.0960999,0.0774536,0.0601501,0.0447388,0.0284119,0.0118103,-0.00527954,-0.0191345,-0.0263672,-0.0252686,-0.0152588,0.000579834,0.0185547,0.0378418,0.0567017,0.0755005,0.0929871,0.108185,0.116058,0.116272,0.107697,0.0953064,0.0821533,0.0710449,0.0624084,0.0563354,0.0499573,0.0445251,0.0396729,0.035675,0.0306702,0.0220032,0.00604248,-0.0179443,-0.0471497,-0.0783081,-0.109406,-0.137177,-0.159485,-0.176941,-0.186615,-0.188049,-0.178406,-0.160614,-0.136536,-0.111511,-0.0875854,-0.0668335,-0.0475464,-0.0308838,-0.0171814,-0.00695801,-0.000976562,0.00289917,0.00473022,0.00866699,0.0151367,0.0244751,0.0332642,0.0418701,0.0489807,0.0554199,0.0617676,0.0655518,0.0663452,0.0602112,0.0488281,0.0317993,0.0107117,-0.015564,-0.0446777,-0.07724,-0.112335,-0.146973,-0.178772,-0.20578,-0.228333,-0.246063,-0.259918,-0.269836,-0.276123,-0.277679,-0.27533,-0.272461,-0.270416,-0.265076,-0.248169,-0.213715,-0.158203,-0.0858765,-0.000915527,0.091095,0.182068,0.26474,0.341827,0.408447,0.450989,0.456055,0.418365,0.346405,0.250153,0.147888,0.0575562,-0.0192566,-0.0814819,-0.128448,-0.152527,-0.141174,-0.0952454,-0.0259399,0.0470581,0.104095,0.138855,0.151611,0.148163,0.130157,0.0968628,0.0487671,-0.00619507,-0.0586548,-0.0943298,-0.101593,-0.0820312,-0.0405884,0.00909424,0.0622559,0.125793,0.197449,0.267548,0.321289,0.347382,0.343231,0.31311,0.263367,0.207458,0.146027,0.077179,0.000549316,-0.0763855,-0.145264,-0.197662,-0.230469,-0.250305,-0.261688,-0.267303,-0.267822,-0.263672,-0.253265,-0.238831,-0.227356,-0.221741,-0.222809,-0.227173,-0.228546,-0.225464,-0.215698,-0.201416,-0.179382,-0.149261,-0.110321,-0.0646362,-0.0116882,0.0429077,0.0953979,0.141876,0.182404,0.21405,0.236145,0.246582,0.246796,0.238068,0.221039,0.198578,0.172974,0.147949,0.12558,0.106567,0.0893555,0.0737305,0.0579529,0.0436096,0.0292053,0.0180969,0.0062561,-0.0062561,-0.019928,-0.0321655,-0.0398865,-0.0391846,-0.0302429,-0.0135193,0.00668335,0.0301208,0.0536194,0.0769653,0.0986328,0.116852,0.129791,0.132874,0.126984,0.115082,0.100372,0.085907,0.072876,0.0612793,0.0512085,0.0424805,0.0358887,0.0300903,0.0242615,0.0147095,-0.00231934,-0.0275574,-0.0604858,-0.0951843,-0.12915,-0.159485,-0.185089,-0.204987,-0.216248,-0.216888,-0.204498,-0.179688,-0.145416,-0.110077,-0.0778809,-0.0521851,-0.0283508,-0.00631714,0.0144043,0.0305481,0.0387573,0.0415039,0.0394592,0.0405884,0.0481262,0.059082,0.0706482,0.0785217,0.0809631,0.0827942,0.0848389,0.0880127,0.0891418,0.0827332,0.0682373,0.0484619,0.0282898,0.00915527,-0.00857544,-0.0298462,-0.0551453,-0.0856018,-0.114807,-0.140503,-0.161713,-0.181427,-0.199524,-0.215118,-0.226532,-0.231781,-0.233124,-0.233856,-0.238464,-0.245789,-0.254303,-0.261963,-0.266815,-0.263885,-0.24585,-0.206696,-0.145355,-0.0650024,0.0297546,0.131744,0.228058,0.311432,0.383179,0.437988,0.46106,0.439484,0.371307,0.267548,0.145538,0.0289307,-0.0664978,-0.139374,-0.192322,-0.225311,-0.226959,-0.185303,-0.106628,-0.00906372,0.0821533,0.145691,0.17804,0.183258,0.170929,0.146271,0.104187,0.0501709,-0.00909424,-0.0578918,-0.079834,-0.0672607,-0.0236511,0.038147,0.102478,0.165588,0.23291,0.303345,0.363342,0.395721,0.391846,0.353516,0.290344,0.216034,0.144562,0.0765381,0.00689697,-0.063446,-0.128326,-0.178741,-0.209076,-0.221191,-0.224884,-0.229279,-0.234406,-0.241241,-0.244934,-0.244537,-0.241211,-0.240326,-0.244446,-0.252563,-0.25528,-0.25,-0.233124,-0.207672,-0.17691,-0.142303,-0.101227,-0.0571899,-0.009552,0.0378418,0.0821838,0.117493,0.145142,0.165314,0.179321,0.185699,0.183472,0.176086,0.162994,0.146667,0.129089,0.111725,0.0969543,0.0837708,0.0726624,0.0628967,0.0524292,0.0415039,0.0299072,0.018219,0.00662231,-0.00491333,-0.0168762,-0.0271606,-0.0353088,-0.0365906,-0.0298462,-0.0133667,0.0104065,0.0387573,0.0687256,0.0984802,0.12619,0.150543,0.170166,0.182129,0.182617,0.171661,0.150635,0.125793,0.100037,0.0749817,0.0535278,0.0335388,0.015625,0.000152588,-0.011322,-0.0189819,-0.0263672,-0.0360107,-0.0521851,-0.0738831,-0.0987549,-0.12262,-0.141663,-0.156677,-0.167358,-0.173279,-0.175018,-0.16748,-0.15033,-0.124084,-0.0957336,-0.0671692,-0.0437622,-0.0232849,-0.0038147,0.0140076,0.0311584,0.0443726,0.0516968,0.0536194,0.0531921,0.0532532,0.0555725,0.0578918,0.0583191,0.0573425,0.0533752,0.0502319,0.0469971,0.0452271,0.0418701,0.0361023,0.0272217,0.015686,0.00204468,-0.0133667,-0.0317993,-0.0530396,-0.0762634,-0.100159,-0.12326,-0.14505,-0.161438,-0.174469,-0.182709,-0.186859,-0.187286,-0.184601,-0.182068,-0.181152,-0.185699,-0.193665,-0.205475,-0.21936,-0.232422,-0.243561,-0.246216,-0.231232,-0.192261,-0.12915,-0.0467834,0.0474243,0.14743,0.23938,0.317535,0.384033,0.432159,0.448334,0.418793,0.344788,0.237335,0.115723,0.00128174,-0.0912476,-0.16095,-0.210846,-0.239319,-0.236511,-0.190918,-0.109253,-0.0078125,0.085968,0.154785,0.195435,0.210052,0.206543,0.187561,0.150421,0.0985413,0.0386353,-0.0116882,-0.0376282,-0.0332642,-0.00146484,0.0464172,0.0969543,0.14978,0.209076,0.274017,0.32959,0.358917,0.35553,0.320099,0.260376,0.191284,0.121704,0.0522156,-0.020874,-0.0951843,-0.164001,-0.2164,-0.248474,-0.260223,-0.26297,-0.262604,-0.261688,-0.258179,-0.251831,-0.241241,-0.230194,-0.22348,-0.223907,-0.227142,-0.226379,-0.218018,-0.200348,-0.174164,-0.144196,-0.108276,-0.0667725,-0.0217285,0.0243225,0.0684509,0.106018,0.13501,0.153503,0.165802,0.170532,0.169037,0.16153,0.151031,0.139374,0.127533,0.115936,0.10434,0.0950928,0.0855408,0.0775757,0.0674133,0.0549316,0.0385437,0.0198975,0.0015564,-0.0143433,-0.0272827,-0.0371399,-0.0427551,-0.043396,-0.0351868,-0.0180969,0.009552,0.0419922,0.0763245,0.108765,0.136597,0.160187,0.177643,0.18866,0.190521,0.181641,0.161041,0.135132,0.106384,0.0792847,0.0542908,0.0326538,0.0151062,-0.000366211,-0.0119019,-0.02005,-0.0256958,-0.0320129,-0.0419922,-0.0573425,-0.078949,-0.102722,-0.128601,-0.151947,-0.171356,-0.185455,-0.192963,-0.191986,-0.180145,-0.15799,-0.128021,-0.0941162,-0.0601501,-0.0290527,-0.00183105,0.0230713,0.0439148,0.0605774,0.0701294,0.0725098,0.0711365,0.0671082,0.0631714,0.0618286,0.0588074,0.0555115,0.0502319,0.0461426,0.0439758,0.0444031,0.0432739,0.0397644,0.0322266,0.022522,0.0104065,-0.00146484,-0.0162659,-0.0352478,-0.0587463,-0.083374,-0.106384,-0.125427,-0.139771,-0.150391,-0.15863,-0.163269,-0.1651,-0.160736,-0.152161,-0.140625,-0.130768,-0.12619,-0.130341,-0.140961,-0.157379,-0.175934,-0.19635,-0.216583,-0.231384,-0.230377,-0.207794,-0.161224,-0.0929871,-0.00845337,0.0856018,0.179108,0.262115,0.331818,0.387817,0.416748,0.405334,0.350677,0.258759,0.144226,0.0253296,-0.0770264,-0.158356,-0.218353,-0.257629,-0.26886,-0.24115,-0.172211,-0.0726624,0.0329285,0.121277,0.183899,0.220947,0.235931,0.233063,0.212097,0.172424,0.119934,0.0619202,0.0148621,-0.0100708,-0.00656128,0.0178833,0.0522156,0.0898438,0.13443,0.190216,0.248199,0.291718,0.310883,0.30249,0.268433,0.217712,0.15976,0.0990601,0.0341187,-0.0375671,-0.109833,-0.174805,-0.22348,-0.253387,-0.26825,-0.275482,-0.276337,-0.27121,-0.259247,-0.241516,-0.216034,-0.190582,-0.170319,-0.156647,-0.14743,-0.1362,-0.123596,-0.107361,-0.0913086,-0.0744324,-0.0557861,-0.0346069,-0.0111694,0.0144043,0.0402527,0.0644531,0.0837708,0.100189,0.114685,0.125092,0.131042,0.132111,0.130219,0.123901,0.113983,0.100861,0.0861206,0.0708923,0.056427,0.042572,0.0285034,0.0141296,0.00134277,-0.00915527,-0.0154724,-0.0174561,-0.017395,-0.0142212,-0.009552,0.00106812,0.0162659,0.0381165,0.0638733,0.0890503,0.112854,0.132812,0.148712,0.159393,0.166016,0.165192,0.157013,0.139435,0.115143,0.0891418,0.0635071,0.0402222,0.020874,0.00570679,-0.00588989,-0.0140686,-0.0187683,-0.0221558,-0.0250549,-0.0327148,-0.0452881,-0.0632629,-0.0856323,-0.109406,-0.133453,-0.15448,-0.168762,-0.174408,-0.170715,-0.157501,-0.135284,-0.104553,-0.0701294,-0.0352478,-0.00506592,0.0204773,0.0406799,0.0549316,0.0611267,0.0614319,0.0570374,0.0506592,0.0440979,0.0389709,0.0354614,0.0352478,0.035614,0.0371399,0.0389099,0.0394592,0.0391235,0.0372925,0.0322876,0.0249634,0.0146179,0.00247192,-0.0113831,-0.0256958,-0.0403137,-0.0539551,-0.0688171,-0.0821838,-0.0939331,-0.10199,-0.107422,-0.110321,-0.110016,-0.107635,-0.10257,-0.0986328,-0.0969238,-0.09729,-0.098053,-0.102356,-0.114655,-0.133453,-0.157379,-0.183411,-0.211609,-0.236176,-0.25354,-0.25769,-0.239594,-0.197479,-0.134979,-0.05896,0.0285645,0.119934,0.204224,0.273926,0.32663,0.358765,0.355347,0.313599,0.234131,0.13269,0.0230713,-0.0777283,-0.158844,-0.215881,-0.249512,-0.255524,-0.229828,-0.166077,-0.072876,0.0318604,0.127045,0.199493,0.245941,0.266815,0.262451,0.23764,0.195709,0.140472,0.0809021,0.0293884,-0.00469971,-0.0131531,0.00259399,0.0372314,0.0778809,0.123749,0.177551,0.234192,0.281342,0.306244,0.304901,0.279968,0.235046,0.178619,0.117218,0.0530396,-0.0114136,-0.0771179,-0.135986,-0.182465,-0.211273,-0.225464,-0.228851,-0.227448,-0.220825,-0.210541,-0.198181,-0.182983,-0.166779,-0.15506,-0.148285,-0.145752,-0.143707,-0.138794,-0.129639,-0.116791,-0.101929,-0.0832214,-0.060791,-0.036377,-0.0116882,0.0126038,0.0346069,0.0516357,0.064209,0.0744324,0.0808411,0.0836487,0.0821533,0.0789185,0.0739441,0.0688782,0.0638733,0.0581055,0.0531006,0.0471497,0.0411682,0.0342712,0.0271606,0.0183411,0.00906372,0.000549316,-0.00631714,-0.0101929,-0.0101929,-0.00656128,0.0017395,0.0155334,0.0346069,0.0588074,0.0863953,0.112976,0.136627,0.155609,0.168701,0.174316,0.173828,0.165955,0.150391,0.126678,0.100037,0.0719604,0.0479126,0.0271606,0.0122986,0.00296021,-0.00140381,-0.00195312,-0.000579834,0.00146484,-0.000640869,-0.00836182,-0.0231628,-0.0444641,-0.0700684,-0.0966492,-0.121429,-0.141327,-0.154968,-0.159393,-0.153992,-0.136841,-0.110992,-0.0777283,-0.0444641,-0.0126038,0.0125732,0.0321655,0.0435486,0.0480347,0.0454407,0.0359497,0.0242615,0.012085,0.00265503,-0.000854492,-0.000762939,0.0039978,0.0102539,0.0175171,0.0247803,0.0316467,0.0344849,0.0326538,0.0244141,0.0122986,-0.00280762,-0.0177917,-0.032074,-0.0465698,-0.0609131,-0.0745544,-0.0844727,-0.091156,-0.0942078,-0.09552,-0.0948181,-0.0937805,-0.0923767,-0.0926514,-0.0941162,-0.0976257,-0.102997,-0.110931,-0.12262,-0.137054,-0.153015,-0.170929,-0.191681,-0.212585,-0.229462,-0.240082,-0.238495,-0.2211,-0.183411,-0.12915,-0.0611267,0.0180054,0.103119,0.186005,0.254303,0.30545,0.339447,0.348633,0.325836,0.27005,0.186615,0.0881348,-0.0118713,-0.0948181,-0.156738,-0.196625,-0.216187,-0.210266,-0.174377,-0.107056,-0.0171814,0.0749207,0.153564,0.207123,0.235321,0.241089,0.229492,0.202972,0.160187,0.1091,0.0553589,0.0133057,-0.00863647,-0.00335693,0.0242615,0.063385,0.107208,0.155945,0.21048,0.264648,0.303711,0.318756,0.305176,0.266846,0.210632,0.144653,0.0757751,0.00448608,-0.0683899,-0.137451,-0.194946,-0.236237,-0.256073,-0.259735,-0.25415,-0.241852,-0.226318,-0.208588,-0.189453,-0.16983,-0.153076,-0.144714,-0.14386,-0.147308,-0.148438,-0.145264,-0.136108,-0.122131,-0.105103,-0.0832825,-0.057251,-0.0281982,0.00274658,0.0325623,0.0580444,0.0774536,0.0909424,0.0988464,0.102631,0.101288,0.0956726,0.0880737,0.077179,0.0658264,0.0552368,0.0457458,0.0385437,0.0324402,0.028717,0.0246277,0.0204773,0.0175171,0.0151062,0.0142822,0.0149231,0.0161133,0.0192566,0.0234985,0.0316467,0.0429077,0.0586548,0.0778198,0.0983276,0.118744,0.138733,0.156158,0.170319,0.179749,0.182709,0.178619,0.164703,0.144012,0.116638,0.088501,0.0581055,0.0309448,0.00619507,-0.013031,-0.0283508,-0.0380554,-0.0436707,-0.0461426,-0.0484619,-0.0525513,-0.0617676,-0.0747986,-0.0912476,-0.109802,-0.127899,-0.143585,-0.156647,-0.161591,-0.158844,-0.144348,-0.121857,-0.0914001,-0.0598755,-0.0294189,-0.0022583,0.0209045,0.040863,0.0554504,0.0635376,0.0618286,0.0538025,0.0419922,0.0316467,0.0258179,0.0232849,0.0201111,0.0141296,0.00689697,0.0015564,-0.0010376,-0.00119019,-0.00360107,-0.00872803,-0.0194092,-0.0296021,-0.038269,-0.0439148,-0.0473328,-0.0526733,-0.059021,-0.0671997,-0.0750427,-0.0793457,-0.0797729,-0.0794067,-0.0804749,-0.084198,-0.0897827,-0.0951233,-0.0979309,-0.0999756,-0.10434,-0.114929,-0.129425,-0.144836,-0.161926,-0.178619,-0.195068,-0.207672,-0.213989,-0.204712,-0.176147,-0.128052,-0.0650635,0.00817871,0.0871582,0.163086,0.22757,0.280396,0.31839,0.333221,0.315582,0.262695,0.181763,0.085907,-0.00793457,-0.0879211,-0.147888,-0.190155,-0.214478,-0.215607,-0.18338,-0.117004,-0.0293884,0.0610657,0.136108,0.191071,0.223999,0.236572,0.231995,0.210907,0.173553,0.123871,0.0716248,0.0281982,0.00408936,0.00344849,0.0230713,0.0517578,0.0848389,0.125214,0.174042,0.223358,0.260071,0.272583,0.260712,0.226807,0.17923,0.124237,0.0660706,0.00448608,-0.059082,-0.120209,-0.171356,-0.206268,-0.223572,-0.227356,-0.223022,-0.214142,-0.202759,-0.188263,-0.172211,-0.154114,-0.139374,-0.131256,-0.128601,-0.129303,-0.128448,-0.121765,-0.111359,-0.0979309,-0.0821533,-0.064209,-0.0432129,-0.0218201,-0.000274658,0.0191956,0.035675,0.047821,0.0559082,0.0621033,0.06604,0.0666199,0.0665588,0.0650024,0.0632324,0.0606384,0.0579529,0.0556335,0.0525513,0.0496826,0.0465088,0.0415955,0.0349731,0.027771,0.0217896,0.0175171,0.0163879,0.0177307,0.0211792,0.02771,0.038208,0.052124,0.0705566,0.0910339,0.110992,0.128326,0.141876,0.1521,0.15802,0.159332,0.154633,0.143005,0.125153,0.100372,0.0752563,0.0486755,0.0259399,0.00473022,-0.0107117,-0.0227051,-0.0287781,-0.0320129,-0.0306091,-0.029541,-0.0296021,-0.0348206,-0.0446777,-0.059021,-0.0765381,-0.0953369,-0.113068,-0.127838,-0.137115,-0.139435,-0.134369,-0.120636,-0.100189,-0.0743713,-0.0481873,-0.0220032,0.00128174,0.0201721,0.0343933,0.0402222,0.0398865,0.033783,0.025177,0.0153503,0.00527954,-0.00280762,-0.0101318,-0.0130005,-0.015625,-0.0146179,-0.0116272,-0.00732422,-0.00268555,0.000488281,0.00183105,0.000854492,-0.000976562,-0.00479126,-0.0104675,-0.0188599,-0.0298157,-0.0426941,-0.0560608,-0.0678711,-0.0778809,-0.0849915,-0.0910339,-0.0951233,-0.0993958,-0.102142,-0.104614,-0.106171,-0.109192,-0.116425,-0.127136,-0.142944,-0.161804,-0.182831,-0.203674,-0.218079,-0.224701,-0.215607,-0.186218,-0.132812,-0.0630493,0.0188599,0.10553,0.189575,0.261139,0.31778,0.356812,0.368988,0.346893,0.287231,0.197205,0.0908813,-0.0113831,-0.0957336,-0.158508,-0.203217,-0.229462,-0.230255,-0.196136,-0.126923,-0.035614,0.0542908,0.125519,0.17392,0.199219,0.205902,0.197113,0.174408,0.137878,0.088501,0.0386353,0.000213623,-0.0135193,-0.00338745,0.0257568,0.0625916,0.100677,0.144562,0.195831,0.245605,0.280426,0.289337,0.271179,0.231934,0.180511,0.125061,0.067688,0.00717163,-0.0559082,-0.115936,-0.165863,-0.199921,-0.215607,-0.218353,-0.215973,-0.211121,-0.204773,-0.195557,-0.183899,-0.16861,-0.156311,-0.150208,-0.149628,-0.149567,-0.145538,-0.133728,-0.115845,-0.0939941,-0.0717468,-0.04776,-0.0211792,0.00360107,0.027771,0.0485535,0.0629578,0.0713196,0.0744934,0.0750427,0.072876,0.0681152,0.0619812,0.0565796,0.0509949,0.0467834,0.0450745,0.0440979,0.0445862,0.0441895,0.0432129,0.0396118,0.0335388,0.0263977,0.0185852,0.0126648,0.00772095,0.0055542,0.00564575,0.0101929,0.0197754,0.0353088,0.0559387,0.0796509,0.103912,0.125427,0.144012,0.160095,0.170013,0.175079,0.171936,0.160461,0.141388,0.115845,0.0879517,0.0599365,0.0340576,0.0108337,-0.00787354,-0.0227966,-0.0328369,-0.0389099,-0.0410156,-0.043457,-0.0468445,-0.0531311,-0.0626221,-0.0743408,-0.0892639,-0.102936,-0.116364,-0.124664,-0.127625,-0.123871,-0.112427,-0.0946045,-0.0724487,-0.0487671,-0.0249634,-0.00308228,0.0143433,0.0264587,0.0331421,0.0339966,0.0296936,0.0215149,0.0130005,0.00512695,-0.000366211,-0.00463867,-0.00738525,-0.00909424,-0.0106201,-0.0101318,-0.00894165,-0.00732422,-0.00759888,-0.00991821,-0.0151978,-0.0222473,-0.0296326,-0.0378418,-0.045929,-0.0572815,-0.0702209,-0.0832214,-0.0942078,-0.102905,-0.110657,-0.119232,-0.128937,-0.136902,-0.141876,-0.144073,-0.146484,-0.149689,-0.155182,-0.166656,-0.182404,-0.196259,-0.204651,-0.20639,-0.19754,-0.17215,-0.125977,-0.0600586,0.0234375,0.116058,0.209656,0.290192,0.353302,0.397827,0.416809,0.402679,0.347809,0.257538,0.145325,0.0298462,-0.0715332,-0.151093,-0.207886,-0.240997,-0.245453,-0.217316,-0.154419,-0.0671082,0.0261841,0.108063,0.164062,0.195282,0.200562,0.190094,0.166718,0.13092,0.0834351,0.0348816,-0.0022583,-0.0173035,-0.00723267,0.023407,0.0654907,0.110504,0.158997,0.209198,0.257141,0.290619,0.299316,0.279785,0.23526,0.175171,0.108337,0.0415039,-0.0247498,-0.0890503,-0.150208,-0.201538,-0.236633,-0.252838,-0.253052,-0.245392,-0.234894,-0.223083,-0.21167,-0.197815,-0.18277,-0.169037,-0.160797,-0.157104,-0.155396,-0.149689,-0.136627,-0.11557,-0.0896301,-0.0598755,-0.0296021,0.00247192,0.0320129,0.0596619,0.0828857,0.0993958,0.108887,0.111694,0.109161,0.103394,0.0933533,0.0827332,0.071106,0.0585327,0.0476074,0.0385437,0.0328369,0.0300293,0.0278625,0.0272827,0.0253906,0.0223083,0.0185547,0.0161743,0.0151062,0.0161743,0.0180054,0.0219421,0.0274963,0.0366516,0.0492249,0.0662842,0.0864563,0.107422,0.127319,0.14505,0.160034,0.171356,0.177216,0.176575,0.167786,0.150421,0.125488,0.0963135,0.0657654,0.0351562,0.00662231,-0.0180664,-0.0395203,-0.0562134,-0.0682373,-0.07547,-0.0788574,-0.0823669,-0.0854187,-0.0921021,-0.0997009,-0.109039,-0.117493,-0.122742,-0.125641,-0.124237,-0.118378,-0.106384,-0.087738,-0.0628357,-0.0362244,-0.00970459,0.0146484,0.0334778,0.0469055,0.0531921,0.0549927,0.0497437,0.0410156,0.0273743,0.0109558,-0.00448608,-0.0166016,-0.025177,-0.0302429,-0.0334778,-0.0336304,-0.0319519,-0.0282288,-0.0223694,-0.0171814,-0.0146484,-0.0170288,-0.0241394,-0.0346985,-0.0472107,-0.0621948,-0.0792236,-0.0985413,-0.118805,-0.13913,-0.156677,-0.169952,-0.176636,-0.179108,-0.181427,-0.182007,-0.182281,-0.184448,-0.186432,-0.187958,-0.189178,-0.186279,-0.170959,-0.137177,-0.0862427,-0.020874,0.057251,0.142395,0.224915,0.297424,0.35788,0.401489,0.415344,0.391479,0.329437,0.23764,0.131836,0.0264587,-0.065979,-0.140137,-0.194855,-0.226044,-0.227936,-0.192596,-0.124573,-0.039032,0.042572,0.108215,0.151245,0.173126,0.174835,0.161438,0.133728,0.0932312,0.0472107,0.00549316,-0.0206909,-0.0217896,0.00146484,0.0427551,0.0893555,0.138641,0.191345,0.245148,0.2883,0.309692,0.302368,0.268158,0.213501,0.147675,0.0780945,0.00787354,-0.0611267,-0.128021,-0.186829,-0.23111,-0.256073,-0.262878,-0.258118,-0.24762,-0.234528,-0.221252,-0.206757,-0.19281,-0.178833,-0.169617,-0.165375,-0.166168,-0.165527,-0.158081,-0.140839,-0.115875,-0.085907,-0.0516357,-0.0154114,0.0216064,0.0570374,0.0892639,0.117493,0.136353,0.147186,0.149994,0.144989,0.134979,0.119873,0.10257,0.0832825,0.0636597,0.045929,0.0310059,0.0193481,0.0125122,0.00845337,0.00518799,0.00323486,0.000427246,-0.000427246,0.00128174,0.00518799,0.0100708,0.015625,0.0222473,0.0309448,0.0426331,0.0575256,0.0755005,0.0953979,0.113403,0.13147,0.146942,0.161865,0.172852,0.178467,0.176575,0.165955,0.147583,0.123322,0.0962524,0.0675964,0.0390625,0.0101929,-0.0167542,-0.0427551,-0.0635071,-0.0796204,-0.0909729,-0.099762,-0.107544,-0.113953,-0.119751,-0.124084,-0.125275,-0.12326,-0.119537,-0.113556,-0.106384,-0.0963745,-0.0811157,-0.061615,-0.0386047,-0.0155334,0.00485229,0.0215149,0.0339661,0.0438843,0.0519714,0.0566406,0.0556641,0.0481262,0.0355835,0.0198364,0.00473022,-0.00909424,-0.022522,-0.034668,-0.0471497,-0.0573425,-0.0631104,-0.0643005,-0.0617065,-0.0604248,-0.0613403,-0.0654907,-0.0720215,-0.0806274,-0.0922852,-0.108887,-0.130341,-0.154968,-0.176941,-0.195984,-0.20871,-0.219421,-0.22757,-0.23587,-0.242065,-0.241791,-0.233215,-0.215332,-0.189301,-0.149078,-0.0937805,-0.0244751,0.0575256,0.150208,0.244385,0.324158,0.383698,0.422882,0.439026,0.424561,0.373413,0.289062,0.180573,0.0632324,-0.0427551,-0.125702,-0.181915,-0.212799,-0.217438,-0.194092,-0.137238,-0.0530396,0.0389709,0.117462,0.170807,0.194519,0.194244,0.173462,0.139771,0.094696,0.0424194,-0.00888062,-0.0485535,-0.0646667,-0.0485229,-0.00473022,0.0548096,0.115662,0.176208,0.235809,0.290344,0.32663,0.335266,0.309875,0.257599,0.185364,0.105591,0.0244751,-0.0540466,-0.12796,-0.196259,-0.252136,-0.289185,-0.303711,-0.298828,-0.284332,-0.264313,-0.243317,-0.221741,-0.202118,-0.182281,-0.166595,-0.15567,-0.15271,-0.153717,-0.151398,-0.141479,-0.122833,-0.0985718,-0.070343,-0.0384216,-0.00402832,0.0322266,0.0683899,0.104309,0.135925,0.159607,0.173889,0.180298,0.178406,0.169128,0.154572,0.133728,0.108765,0.0834961,0.0574646,0.0358887,0.0168152,0.00372314,-0.00415039,-0.0104065,-0.0128174,-0.0118713,-0.00592041,0.00442505,0.0166016,0.0289001,0.0390625,0.0479736,0.0566406,0.0657043,0.0768738,0.0890503,0.100616,0.110931,0.121765,0.133575,0.146057,0.155243,0.16095,0.158691,0.148773,0.132202,0.110077,0.0832214,0.0523987,0.01828,-0.0161743,-0.0496826,-0.0796509,-0.102142,-0.119751,-0.130127,-0.136139,-0.136902,-0.135834,-0.132324,-0.127045,-0.120026,-0.110718,-0.10202,-0.0906982,-0.077179,-0.0603027,-0.0416565,-0.0220337,-0.0017395,0.0171509,0.0330811,0.045105,0.0528259,0.0560608,0.0556335,0.0509949,0.0431213,0.0310059,0.0169678,0.00149536,-0.013092,-0.0248413,-0.035614,-0.045105,-0.0543823,-0.061554,-0.0694885,-0.0758972,-0.0850525,-0.0968018,-0.11261,-0.129852,-0.14682,-0.163086,-0.178467,-0.192139,-0.204712,-0.215607,-0.227631,-0.236572,-0.242767,-0.243896,-0.241852,-0.236176,-0.221161,-0.188171,-0.133179,-0.0603027,0.0264587,0.120514,0.213562,0.296295,0.36319,0.413574,0.442291,0.438324,0.393524,0.310669,0.203156,0.0876465,-0.0196838,-0.105927,-0.170227,-0.212036,-0.229706,-0.217041,-0.166656,-0.0866699,0.00588989,0.0906067,0.150696,0.186279,0.198883,0.192749,0.172913,0.138885,0.0940552,0.0441589,0.000762939,-0.0224304,-0.0167236,0.0152588,0.0617065,0.112,0.162842,0.214294,0.263794,0.300537,0.312134,0.294983,0.249664,0.184387,0.110535,0.0357971,-0.0360718,-0.104828,-0.172272,-0.233063,-0.278381,-0.303192,-0.306915,-0.298981,-0.284576,-0.268036,-0.251617,-0.234833,-0.215698,-0.195007,-0.175323,-0.161255,-0.152222,-0.140747,-0.124023,-0.0992432,-0.0697021,-0.0405884,-0.011261,0.015564,0.0406799,0.0646667,0.0889282,0.110596,0.126678,0.135223,0.137268,0.136108,0.132477,0.127625,0.120361,0.109833,0.0969238,0.0817566,0.0668945,0.0539551,0.043335,0.0331421,0.0220947,0.0102539,0.000274658,-0.00372314,-0.00119019,0.00753784,0.0190125,0.0329285,0.0483093,0.0652161,0.0854187,0.108459,0.13092,0.150482,0.16568,0.175659,0.18277,0.184814,0.181274,0.169739,0.149902,0.122345,0.0895386,0.0542297,0.0190125,-0.0149841,-0.0455322,-0.0706177,-0.0896301,-0.101715,-0.107422,-0.106354,-0.102417,-0.0968018,-0.0921631,-0.0905457,-0.0940552,-0.101074,-0.111237,-0.120026,-0.126617,-0.127197,-0.120911,-0.107361,-0.0877075,-0.0622559,-0.0333557,-0.00140381,0.0288391,0.0552368,0.0725403,0.0804138,0.0802002,0.0730286,0.0598145,0.0415649,0.0179443,-0.00845337,-0.0346985,-0.0581665,-0.076416,-0.0906067,-0.101166,-0.110443,-0.117828,-0.125,-0.131622,-0.137238,-0.142578,-0.14801,-0.157715,-0.171783,-0.188385,-0.206482,-0.225464,-0.244385,-0.260345,-0.271393,-0.275574,-0.267517,-0.237213,-0.180603,-0.0977173,0.00561523,0.12085,0.236572,0.339294,0.421509,0.481445,0.515228,0.51178,0.459503,0.361298,0.232635,0.0950928,-0.0323486,-0.134033,-0.208496,-0.256287,-0.275848,-0.261078,-0.206116,-0.11734,-0.0137939,0.0810547,0.147583,0.18219,0.191345,0.180237,0.155457,0.114929,0.0630188,0.00610352,-0.0406799,-0.06073,-0.0462952,-0.00238037,0.05896,0.124176,0.18866,0.251617,0.309692,0.352386,0.364838,0.341614,0.284821,0.204712,0.115601,0.0260315,-0.0577698,-0.13681,-0.210144,-0.273438,-0.316437,-0.33374,-0.327667,-0.308777,-0.28598,-0.26416,-0.245026,-0.226501,-0.210052,-0.193054,-0.179871,-0.172577,-0.171844,-0.167023,-0.15329,-0.126831,-0.0920715,-0.0519104,-0.0102539,0.0305481,0.0689392,0.105316,0.139069,0.168396,0.187286,0.194153,0.188873,0.176239,0.158722,0.138885,0.116791,0.0925598,0.067688,0.0436096,0.0244751,0.0125122,0.00662231,0.00442505,0.00311279,0.000427246,0.000549316,0.00610352,0.0166016,0.0299072,0.0428467,0.0531921,0.0641479,0.0754089,0.0916748,0.112366,0.135406,0.156677,0.175171,0.190491,0.204224,0.215424,0.220398,0.216309,0.198395,0.170258,0.133179,0.091095,0.0479736,0.00366211,-0.0379333,-0.0773315,-0.109589,-0.132751,-0.146881,-0.152313,-0.153442,-0.15329,-0.152924,-0.153564,-0.154968,-0.15625,-0.158142,-0.157501,-0.153717,-0.145355,-0.131287,-0.11087,-0.0849609,-0.0552063,-0.025116,0.00479126,0.0309448,0.0524292,0.0674133,0.0752869,0.0767517,0.0706177,0.0575256,0.0376282,0.0126038,-0.0141296,-0.0418701,-0.0695801,-0.0969543,-0.124084,-0.14859,-0.169037,-0.18219,-0.188873,-0.193512,-0.199585,-0.208923,-0.220398,-0.233856,-0.249084,-0.261566,-0.27182,-0.281311,-0.287384,-0.278229,-0.240082,-0.166718,-0.0648499,0.0575562,0.188049,0.313629,0.424744,0.515442,0.583405,0.616882,0.598389,0.522247,0.398041,0.250214,0.100616,-0.0306702,-0.132904,-0.20874,-0.256195,-0.274506,-0.253448,-0.188599,-0.0942688,0.00543213,0.0820923,0.12204,0.130005,0.118805,0.0948486,0.0623474,0.0191345,-0.032135,-0.0794373,-0.10791,-0.101288,-0.0585327,0.011322,0.0889893,0.160736,0.226318,0.286407,0.338531,0.371002,0.370087,0.33136,0.261963,0.174896,0.085907,0.00317383,-0.0704041,-0.141205,-0.211273,-0.273743,-0.315857,-0.33255,-0.328613,-0.316833,-0.308685,-0.302277,-0.298004,-0.290527,-0.274719,-0.252777,-0.231506,-0.215607,-0.203857,-0.183197,-0.149567,-0.101532,-0.0469971,0.00723267,0.0569153,0.100861,0.138153,0.173065,0.204285,0.228149,0.238708,0.232941,0.217865,0.198364,0.180176,0.162415,0.143494,0.121429,0.097229,0.0752869,0.056488,0.0438232,0.0336304,0.0221558,0.0062561,-0.0108948,-0.0245667,-0.0302429,-0.0289001,-0.0229187,-0.0146484,-0.00357056,0.0122986,0.0368042,0.0693054,0.108826,0.147308,0.182617,0.210327,0.232208,0.247925,0.255981,0.251648,0.23291,0.200439,0.157654,0.111694,0.0672607,0.026947,-0.009552,-0.0413818,-0.067749,-0.0869446,-0.0995483,-0.106628,-0.115601,-0.127747,-0.145905,-0.166595,-0.187836,-0.206665,-0.219635,-0.227509,-0.227936,-0.220398,-0.202057,-0.174469,-0.139221,-0.100372,-0.0613403,-0.0262451,0.00469971,0.030304,0.0509949,0.0648804,0.0700684,0.0669861,0.0547485,0.0353699,0.0111694,-0.017395,-0.0489807,-0.0829468,-0.116058,-0.144012,-0.169556,-0.191223,-0.209442,-0.223999,-0.23764,-0.253601,-0.267731,-0.279968,-0.289215,-0.297485,-0.301392,-0.291962,-0.260986,-0.203888,-0.122131,-0.0168762,0.106354,0.236145,0.356262,0.458893,0.542175,0.595642,0.60788,0.570679,0.489746,0.374756,0.241302,0.110535,0.00259399,-0.0752869,-0.124664,-0.147797,-0.141663,-0.102234,-0.0357971,0.0391846,0.098053,0.127197,0.123901,0.0944214,0.045929,-0.0104065,-0.0660706,-0.116516,-0.158417,-0.183807,-0.178741,-0.13562,-0.0623169,0.0256042,0.109833,0.184235,0.248413,0.298218,0.325348,0.324158,0.291321,0.233002,0.156311,0.0757141,0.000579834,-0.0629578,-0.119049,-0.170532,-0.215393,-0.24585,-0.261627,-0.266418,-0.266479,-0.267517,-0.271271,-0.280975,-0.29306,-0.299805,-0.298981,-0.291656,-0.286377,-0.276825,-0.259155,-0.225616,-0.179596,-0.12262,-0.0610046,0.00335693,0.0644226,0.120239,0.171448,0.218079,0.256287,0.279633,0.286469,0.279297,0.262817,0.241302,0.217102,0.193604,0.171783,0.151306,0.132172,0.11615,0.103821,0.0965271,0.0874329,0.0744934,0.0571289,0.0380554,0.0209656,0.00732422,-0.00408936,-0.012085,-0.0168152,-0.0161133,-0.00808716,0.00985718,0.0383301,0.0727539,0.108673,0.140472,0.16861,0.192902,0.211609,0.218781,0.213562,0.196564,0.168915,0.135223,0.0995483,0.0653687,0.0333252,0.00259399,-0.0280151,-0.0563354,-0.0826721,-0.107422,-0.13147,-0.156677,-0.180359,-0.204132,-0.224823,-0.241943,-0.251129,-0.251923,-0.244263,-0.229706,-0.20816,-0.180298,-0.149628,-0.118103,-0.0884094,-0.0603027,-0.034668,-0.0137024,0.00238037,0.0105591,0.0131531,0.0103455,0.00198364,-0.011322,-0.0286255,-0.0492554,-0.0692139,-0.0906067,-0.113556,-0.139709,-0.170166,-0.203033,-0.238251,-0.271393,-0.298828,-0.315582,-0.3255,-0.327179,-0.309814,-0.263794,-0.189941,-0.0941772,0.0196838,0.142303,0.261047,0.361511,0.442352,0.504822,0.540497,0.537537,0.490906,0.409637,0.308472,0.201538,0.106384,0.033905,-0.0127258,-0.0368652,-0.0397339,-0.0197144,0.02771,0.0925903,0.156464,0.198364,0.20575,0.181305,0.131744,0.067749,-0.00247192,-0.0709229,-0.13266,-0.183746,-0.21463,-0.211548,-0.169312,-0.0964355,-0.0113831,0.0701904,0.140625,0.200348,0.245575,0.268677,0.263824,0.227722,0.167084,0.0889893,0.00775146,-0.0648499,-0.122894,-0.168854,-0.210327,-0.243622,-0.261688,-0.262115,-0.250305,-0.234741,-0.223633,-0.218658,-0.225311,-0.237915,-0.249817,-0.253662,-0.256348,-0.263733,-0.27182,-0.270569,-0.253235,-0.220062,-0.175598,-0.119049,-0.0592957,0.0015564,0.0609741,0.122833,0.18515,0.242126,0.28363,0.305389,0.309967,0.302765,0.286652,0.264648,0.238251,0.208923,0.178528,0.14978,0.127258,0.113831,0.108765,0.106506,0.102936,0.09729,0.0906067,0.0858765,0.0814514,0.0750732,0.067688,0.0575562,0.0479736,0.0415955,0.0436096,0.0522156,0.0658264,0.0796509,0.0921021,0.104553,0.118317,0.131409,0.142517,0.146942,0.144562,0.134155,0.117462,0.0960083,0.0728149,0.0469055,0.0163879,-0.0187988,-0.0570679,-0.0958862,-0.134216,-0.170929,-0.204132,-0.231567,-0.253479,-0.269989,-0.278778,-0.276947,-0.265503,-0.244812,-0.217926,-0.189148,-0.160522,-0.133087,-0.109039,-0.0856934,-0.065155,-0.0483093,-0.0406494,-0.0418701,-0.049469,-0.0593872,-0.0697021,-0.0806274,-0.0917358,-0.105652,-0.120209,-0.1362,-0.152222,-0.168762,-0.185852,-0.206696,-0.228973,-0.250793,-0.26593,-0.271973,-0.262451,-0.229462,-0.170044,-0.0861206,0.0153198,0.130859,0.250702,0.359497,0.445007,0.506287,0.536469,0.531494,0.487305,0.408447,0.307861,0.197479,0.0984192,0.0253906,-0.0180054,-0.0357361,-0.0314331,-0.00308228,0.04953,0.119446,0.189392,0.238617,0.253265,0.234619,0.187988,0.124664,0.052124,-0.0205383,-0.085968,-0.14209,-0.181061,-0.188904,-0.161469,-0.10199,-0.0298157,0.0398865,0.0986328,0.14624,0.18158,0.198517,0.191193,0.158295,0.102142,0.0346985,-0.0355835,-0.0989685,-0.150604,-0.194794,-0.233398,-0.265686,-0.285248,-0.288513,-0.27887,-0.263672,-0.247894,-0.236084,-0.230408,-0.228851,-0.223633,-0.214966,-0.205994,-0.20459,-0.208282,-0.209412,-0.200226,-0.180511,-0.150818,-0.114044,-0.0723267,-0.0274353,0.0196838,0.0727234,0.132202,0.190521,0.239258,0.271698,0.289001,0.294189,0.290131,0.279297,0.260773,0.235962,0.206421,0.176453,0.152588,0.13858,0.133392,0.133026,0.132538,0.12973,0.127686,0.127411,0.128387,0.127197,0.122894,0.114685,0.105927,0.099762,0.0985413,0.102417,0.107147,0.111511,0.111786,0.112549,0.114929,0.115662,0.112549,0.100464,0.0823059,0.059021,0.0352478,0.0123901,-0.00701904,-0.0274353,-0.0493774,-0.0755615,-0.103546,-0.131256,-0.158081,-0.185852,-0.215607,-0.246704,-0.273651,-0.29541,-0.305817,-0.305023,-0.292664,-0.272949,-0.247772,-0.218994,-0.186127,-0.150177,-0.116974,-0.0910339,-0.0740662,-0.0665588,-0.0666809,-0.0722656,-0.0821533,-0.0941162,-0.107697,-0.124786,-0.14386,-0.16333,-0.182129,-0.200836,-0.222656,-0.244934,-0.262878,-0.274353,-0.276886,-0.265289,-0.226166,-0.156799,-0.0643005,0.0471497,0.172424,0.300537,0.414978,0.501709,0.557159,0.581787,0.565826,0.509827,0.418701,0.306519,0.191498,0.0891113,0.0194702,-0.0151367,-0.0173645,0.0045166,0.047699,0.109161,0.184082,0.25705,0.307343,0.317566,0.286407,0.225037,0.145477,0.0599976,-0.0201721,-0.0879517,-0.142456,-0.17804,-0.183136,-0.151611,-0.0866699,-0.00689697,0.0653381,0.118591,0.151886,0.167145,0.162445,0.135986,0.0865479,0.0193481,-0.0580444,-0.13382,-0.197754,-0.24234,-0.270905,-0.292023,-0.309967,-0.319672,-0.314728,-0.298645,-0.279694,-0.261566,-0.24939,-0.244019,-0.245026,-0.243408,-0.232849,-0.217102,-0.205353,-0.198242,-0.191223,-0.17392,-0.145477,-0.108398,-0.0648499,-0.0194092,0.0239258,0.0640869,0.105438,0.150177,0.195557,0.233337,0.256073,0.26297,0.259644,0.252075,0.24292,0.232239,0.220734,0.206421,0.193878,0.184723,0.184723,0.194427,0.207611,0.217804,0.219421,0.214905,0.207092,0.198395,0.186646,0.171387,0.152527,0.134491,0.119537,0.112335,0.114166,0.122345,0.133179,0.141541,0.144562,0.143585,0.136688,0.119385,0.0906982,0.0531921,0.0111084,-0.0305176,-0.0688782,-0.10199,-0.130707,-0.156952,-0.180237,-0.19986,-0.215424,-0.226807,-0.239899,-0.253693,-0.268646,-0.280212,-0.28598,-0.286682,-0.282959,-0.276947,-0.26825,-0.25647,-0.239532,-0.220032,-0.199005,-0.181549,-0.168121,-0.157776,-0.149292,-0.140686,-0.134369,-0.13205,-0.1362,-0.145538,-0.160126,-0.179169,-0.203796,-0.233765,-0.265411,-0.295593,-0.318054,-0.326965,-0.313629,-0.266113,-0.182831,-0.0701294,0.0652161,0.218445,0.376984,0.519592,0.627655,0.69574,0.718872,0.693146,0.618561,0.505646,0.369385,0.227722,0.100891,0.0124512,-0.031311,-0.0319519,-0.000701904,0.056427,0.135437,0.225311,0.308563,0.36377,0.373962,0.33902,0.267517,0.170654,0.0646362,-0.034668,-0.115997,-0.175934,-0.211121,-0.210754,-0.16806,-0.0882874,0.0062561,0.0932007,0.15802,0.197388,0.210205,0.195068,0.151886,0.084137,-0.000549316,-0.0939026,-0.186218,-0.264496,-0.323029,-0.360107,-0.384247,-0.399292,-0.403809,-0.396545,-0.380646,-0.360474,-0.340912,-0.323395,-0.311218,-0.306427,-0.298553,-0.283234,-0.262177,-0.241852,-0.226227,-0.20639,-0.180359,-0.145355,-0.102295,-0.0540466,6.10352e-05,0.0525513,0.102295,0.150543,0.200775,0.249817,0.290192,0.314087,0.322845,0.319031,0.308838,0.295532,0.27948,0.262054,0.244812,0.228333,0.216736,0.213715,0.219849,0.231567,0.240784,0.244659,0.241913,0.235962,0.227234,0.216187,0.204773,0.190979,0.181091,0.174957,0.177124,0.187256,0.200012,0.209656,0.208527,0.195648,0.172089,0.138184,0.0965881,0.0479736,-0.0032959,-0.0512085,-0.0937805,-0.129028,-0.155823,-0.176086,-0.191925,-0.20993,-0.229187,-0.250702,-0.273865,-0.297577,-0.322418,-0.345215,-0.363892,-0.377014,-0.380737,-0.375641,-0.36026,-0.336395,-0.307709,-0.278168,-0.248383,-0.220245,-0.195496,-0.176208,-0.165253,-0.161804,-0.166809,-0.177765,-0.194519,-0.212677,-0.233124,-0.253265,-0.276031,-0.29892,-0.31546,-0.322632,-0.318451,-0.294891,-0.243347,-0.161804,-0.0514832,0.0797119,0.226379,0.376556,0.512329,0.618561,0.689636,0.719818,0.704254,0.6427,0.543671,0.422729,0.295105,0.182495,0.10199,0.0586548,0.0532532,0.0777893,0.128021,0.19809,0.276672,0.348907,0.394501,0.398804,0.36264,0.292511,0.200287,0.100403,0.00344849,-0.0792847,-0.142609,-0.179108,-0.17923,-0.13858,-0.067688,0.0173035,0.0969238,0.155762,0.188873,0.194733,0.173126,0.123444,0.0505066,-0.0389709,-0.135559,-0.227936,-0.306732,-0.364838,-0.404419,-0.430664,-0.448029,-0.454742,-0.45163,-0.44046,-0.425598,-0.409637,-0.393616,-0.379333,-0.365601,-0.347015,-0.320984,-0.290039,-0.259796,-0.232849,-0.205475,-0.174896,-0.139496,-0.0986938,-0.0535278,-0.00668335,0.0415649,0.0900269,0.140839,0.194458,0.247772,0.293121,0.325867,0.344269,0.350128,0.346619,0.334839,0.316772,0.294189,0.270264,0.249298,0.235046,0.231934,0.23941,0.252991,0.267975,0.278656,0.286377,0.288635,0.287109,0.279785,0.267944,0.254242,0.243347,0.238403,0.240173,0.244812,0.245239,0.237488,0.219482,0.19101,0.155029,0.113037,0.0682373,0.01828,-0.0331421,-0.0811157,-0.120514,-0.153076,-0.179169,-0.201324,-0.223206,-0.248901,-0.276764,-0.304047,-0.327393,-0.349213,-0.368011,-0.3862,-0.400909,-0.407227,-0.404205,-0.390381,-0.369873,-0.347046,-0.322144,-0.299805,-0.277893,-0.255493,-0.233917,-0.220245,-0.214996,-0.218628,-0.225464,-0.235016,-0.246094,-0.258118,-0.272522,-0.290955,-0.312225,-0.329529,-0.337738,-0.330688,-0.298859,-0.235809,-0.143921,-0.0222473,0.123169,0.281403,0.437012,0.56955,0.672546,0.739502,0.759491,0.728943,0.651794,0.542328,0.412933,0.282959,0.17804,0.109039,0.0784302,0.0823975,0.116302,0.179321,0.260834,0.347809,0.419006,0.455719,0.449158,0.401489,0.31958,0.217804,0.109894,0.00863647,-0.0811157,-0.154053,-0.191284,-0.186615,-0.138031,-0.0626221,0.018158,0.0887146,0.138794,0.162506,0.161041,0.132202,0.0776672,-0.000762939,-0.0957947,-0.195374,-0.285278,-0.355347,-0.404785,-0.436798,-0.457397,-0.46817,-0.469086,-0.459534,-0.44455,-0.427094,-0.413086,-0.404724,-0.402893,-0.398315,-0.383606,-0.358215,-0.329926,-0.300934,-0.269867,-0.232727,-0.187195,-0.134521,-0.0767517,-0.0184937,0.0355835,0.0838623,0.129456,0.17511,0.222107,0.263824,0.295685,0.316132,0.327057,0.332733,0.333954,0.334137,0.331635,0.326843,0.319397,0.313263,0.313477,0.321716,0.333466,0.341522,0.341125,0.333588,0.320007,0.303894,0.285828,0.270142,0.256989,0.249542,0.248413,0.254456,0.264648,0.273315,0.273865,0.261353,0.234619,0.194214,0.14212,0.0813293,0.0162354,-0.0493774,-0.109955,-0.162781,-0.203949,-0.234253,-0.254578,-0.270081,-0.284363,-0.297272,-0.308685,-0.318817,-0.331909,-0.347748,-0.365723,-0.383331,-0.397949,-0.407654,-0.410126,-0.406525,-0.395721,-0.379333,-0.357178,-0.331146,-0.303284,-0.278168,-0.258179,-0.246063,-0.239746,-0.241028,-0.247467,-0.260376,-0.277191,-0.300232,-0.325348,-0.347748,-0.363129,-0.366455,-0.350342,-0.304626,-0.224487,-0.110657,0.0334778,0.19696,0.364685,0.51947,0.648407,0.742737,0.793671,0.794647,0.744995,0.651855,0.528809,0.394592,0.271606,0.180389,0.128174,0.116058,0.136353,0.185211,0.256561,0.339661,0.419128,0.473236,0.488922,0.459381,0.391998,0.29657,0.187836,0.0783081,-0.0198975,-0.101776,-0.158844,-0.179382,-0.157227,-0.0999451,-0.0250244,0.0487366,0.104401,0.134583,0.138519,0.117065,0.0700684,0.00238037,-0.0844116,-0.180664,-0.274902,-0.353699,-0.410278,-0.446869,-0.469238,-0.482239,-0.488068,-0.485352,-0.475769,-0.46344,-0.44989,-0.441101,-0.437134,-0.436584,-0.42981,-0.413147,-0.386932,-0.357147,-0.323517,-0.285187,-0.240875,-0.188538,-0.12854,-0.063446,0.00241089,0.0640259,0.120239,0.17276,0.223267,0.270691,0.309387,0.336761,0.351898,0.357422,0.356964,0.352783,0.348419,0.343597,0.341278,0.341187,0.347321,0.358704,0.37439,0.388458,0.396271,0.393738,0.380096,0.358917,0.330566,0.300751,0.274078,0.252411,0.242432,0.242645,0.251373,0.262207,0.26825,0.264099,0.244812,0.21225,0.169312,0.11676,0.059021,-0.00500488,-0.0699768,-0.129211,-0.180847,-0.222565,-0.256836,-0.284576,-0.308044,-0.328796,-0.344788,-0.357727,-0.367554,-0.37735,-0.388885,-0.400574,-0.411682,-0.418854,-0.420471,-0.419281,-0.412506,-0.403503,-0.389313,-0.371521,-0.352234,-0.33197,-0.314026,-0.30011,-0.292358,-0.286041,-0.280823,-0.276398,-0.278809,-0.290344,-0.306915,-0.32608,-0.343719,-0.353058,-0.34491,-0.309021,-0.237976,-0.130341,0.00765991,0.171387,0.346344,0.514191,0.657257,0.764954,0.826935,0.83551,0.787689,0.692871,0.565125,0.423065,0.29126,0.188171,0.127533,0.110779,0.131348,0.18338,0.258881,0.34787,0.435181,0.498688,0.523193,0.502136,0.438538,0.344849,0.231598,0.116791,0.0132446,-0.0716858,-0.130646,-0.152954,-0.134155,-0.0779419,-0.00265503,0.0713501,0.125519,0.150909,0.148102,0.117126,0.0611877,-0.0147705,-0.105682,-0.205292,-0.300385,-0.381073,-0.438354,-0.473785,-0.492645,-0.503418,-0.507202,-0.506012,-0.500244,-0.491241,-0.482025,-0.474304,-0.470551,-0.468719,-0.461487,-0.445709,-0.419006,-0.387268,-0.349701,-0.306305,-0.257843,-0.201477,-0.140137,-0.0750427,-0.00909424,0.0531006,0.108826,0.158936,0.205505,0.249664,0.287109,0.317047,0.337036,0.348511,0.355103,0.358582,0.36087,0.363281,0.368256,0.375519,0.388184,0.404419,0.422028,0.43573,0.441711,0.435883,0.420319,0.396393,0.367859,0.337585,0.309387,0.28717,0.271393,0.265076,0.26593,0.269928,0.269653,0.259216,0.234253,0.197327,0.14801,0.090332,0.0280151,-0.0351562,-0.0966492,-0.152496,-0.199005,-0.235229,-0.262451,-0.282318,-0.298615,-0.313751,-0.328308,-0.342041,-0.356171,-0.372406,-0.392181,-0.41391,-0.433624,-0.449249,-0.456482,-0.45517,-0.446442,-0.432434,-0.412231,-0.388733,-0.365479,-0.34314,-0.32431,-0.311005,-0.306641,-0.309265,-0.313843,-0.319794,-0.329987,-0.341888,-0.355743,-0.369324,-0.376801,-0.368958,-0.336914,-0.272461,-0.173187,-0.0428467,0.110443,0.276398,0.441284,0.592529,0.717621,0.804291,0.842407,0.826721,0.756927,0.646912,0.51355,0.380798,0.267822,0.18634,0.145569,0.14267,0.175018,0.234772,0.315796,0.402527,0.476471,0.519012,0.518097,0.472321,0.392334,0.290039,0.176239,0.0635071,-0.033783,-0.108398,-0.149475,-0.147736,-0.107269,-0.035675,0.0446777,0.116638,0.163544,0.181274,0.169098,0.127747,0.0584412,-0.0321655,-0.138245,-0.248047,-0.348572,-0.42926,-0.483795,-0.515869,-0.530273,-0.533325,-0.525696,-0.513123,-0.495178,-0.477295,-0.46225,-0.453766,-0.450653,-0.450653,-0.448181,-0.438141,-0.42215,-0.399353,-0.368195,-0.328522,-0.277435,-0.216736,-0.147095,-0.0743713,-0.00140381,0.0696411,0.133606,0.191833,0.24292,0.285736,0.318176,0.339508,0.349823,0.352448,0.35025,0.346313,0.343506,0.344269,0.351105,0.364349,0.383698,0.406189,0.428436,0.44516,0.453461,0.451141,0.439056,0.41983,0.393951,0.367065,0.340637,0.321503,0.308563,0.302551,0.296722,0.286377,0.269867,0.243042,0.205566,0.15976,0.107971,0.049469,-0.0146179,-0.0780334,-0.135498,-0.18277,-0.222229,-0.251923,-0.276886,-0.297638,-0.316833,-0.33316,-0.346466,-0.360687,-0.376495,-0.39621,-0.417816,-0.438843,-0.452179,-0.457916,-0.456482,-0.448944,-0.434479,-0.415344,-0.393951,-0.368896,-0.343079,-0.322479,-0.309937,-0.30722,-0.309113,-0.31311,-0.318939,-0.326538,-0.340057,-0.358856,-0.37616,-0.390381,-0.395203,-0.381836,-0.339508,-0.262451,-0.151672,-0.00976562,0.154968,0.332062,0.502228,0.650848,0.765961,0.840607,0.864777,0.833282,0.75119,0.633759,0.498291,0.365173,0.256836,0.185852,0.156586,0.162933,0.201691,0.264984,0.345215,0.427917,0.492157,0.521576,0.507629,0.45401,0.366302,0.255585,0.139374,0.0325012,-0.0575562,-0.121765,-0.154114,-0.144562,-0.0970154,-0.0256958,0.0487671,0.109253,0.144653,0.151459,0.131073,0.0836487,0.0154724,-0.0699158,-0.166382,-0.265198,-0.354218,-0.422943,-0.46991,-0.497375,-0.513763,-0.52066,-0.521912,-0.517212,-0.509186,-0.498047,-0.487854,-0.47937,-0.475342,-0.470276,-0.45929,-0.440033,-0.414978,-0.384155,-0.34668,-0.300873,-0.247559,-0.185944,-0.118683,-0.047821,0.0214539,0.0870361,0.146332,0.20105,0.250732,0.293152,0.325012,0.346405,0.358124,0.364258,0.364838,0.362152,0.360657,0.362213,0.369263,0.382263,0.399292,0.417511,0.433716,0.442841,0.442474,0.4328,0.416046,0.393677,0.368042,0.341827,0.318542,0.302765,0.295258,0.294708,0.296783,0.295258,0.283356,0.259003,0.222565,0.176147,0.120728,0.0579529,-0.00842285,-0.0751953,-0.137939,-0.193451,-0.238251,-0.272308,-0.299133,-0.319153,-0.335693,-0.34845,-0.35788,-0.365875,-0.376312,-0.390076,-0.409424,-0.428772,-0.445007,-0.455139,-0.458252,-0.455017,-0.446228,-0.431732,-0.412445,-0.388123,-0.361237,-0.335571,-0.31369,-0.297485,-0.288635,-0.283508,-0.280426,-0.282654,-0.291107,-0.307129,-0.326141,-0.345673,-0.357422,-0.358704,-0.339722,-0.290131,-0.205078,-0.0824585,0.0736694,0.252075,0.431152,0.593536,0.727173,0.822876,0.873779,0.871765,0.818787,0.719666,0.58609,0.440308,0.30896,0.209717,0.153717,0.138184,0.156372,0.202026,0.26889,0.350464,0.428711,0.48407,0.500824,0.472534,0.401337,0.298492,0.181702,0.0682373,-0.0318604,-0.112274,-0.164825,-0.179871,-0.152496,-0.0901794,-0.00997925,0.0667419,0.122955,0.150116,0.145325,0.113037,0.0566406,-0.0194702,-0.11264,-0.21344,-0.312775,-0.39563,-0.458038,-0.495941,-0.51712,-0.525574,-0.525513,-0.519653,-0.509521,-0.495056,-0.479218,-0.466888,-0.45993,-0.456055,-0.4487,-0.435455,-0.415039,-0.385864,-0.349365,-0.30426,-0.250031,-0.18988,-0.122528,-0.0539551,0.0153503,0.0783691,0.136688,0.189148,0.237366,0.279205,0.3125,0.337799,0.352814,0.363007,0.369476,0.371521,0.37262,0.372009,0.372833,0.378815,0.389374,0.404449,0.419495,0.427277,0.426605,0.415253,0.395935,0.372131,0.345978,0.321777,0.300323,0.285553,0.278778,0.280548,0.286652,0.28949,0.285492,0.26767,0.237152,0.195068,0.144409,0.0854187,0.020813,-0.0465698,-0.110809,-0.168976,-0.2164,-0.254608,-0.283875,-0.307648,-0.325928,-0.340637,-0.350677,-0.358795,-0.367859,-0.379883,-0.3974,-0.415985,-0.435181,-0.44812,-0.455078,-0.45459,-0.447632,-0.433777,-0.4133,-0.388123,-0.359741,-0.330994,-0.30481,-0.283875,-0.269379,-0.259644,-0.253479,-0.251373,-0.255005,-0.264069,-0.278809,-0.299683,-0.320801,-0.335266,-0.339569,-0.327118,-0.285187,-0.206055,-0.0864563,0.0674133,0.244049,0.424286,0.592255,0.732056,0.834045,0.888763,0.892212,0.841644,0.744476,0.611816,0.464142,0.326294,0.217712,0.148804,0.120026,0.127106,0.167084,0.23053,0.307129,0.385315,0.444244,0.466553,0.442413,0.376495,0.277893,0.161804,0.0452881,-0.0579834,-0.140076,-0.190643,-0.203735,-0.176788,-0.114929,-0.0332642,0.0472107,0.107544,0.139008,0.139923,0.112,0.0591431,-0.0140076,-0.102631,-0.197266,-0.288788,-0.368683,-0.429688,-0.469147,-0.491119,-0.501923,-0.506287,-0.504547,-0.498505,-0.490326,-0.480682,-0.473846,-0.468018,-0.462524,-0.452423,-0.434418,-0.406982,-0.3703,-0.325165,-0.273529,-0.214844,-0.153168,-0.0883484,-0.0243225,0.0380554,0.0936279,0.144775,0.190216,0.232788,0.271423,0.305542,0.333954,0.354553,0.368408,0.378418,0.382568,0.383392,0.380737,0.376373,0.375854,0.379669,0.385376,0.391846,0.393463,0.388947,0.37735,0.358551,0.336609,0.311218,0.288147,0.269379,0.258057,0.25647,0.264801,0.278992,0.289337,0.291107,0.27774,0.248535,0.206268,0.155975,0.0963135,0.0305176,-0.0374146,-0.102692,-0.161438,-0.20993,-0.246002,-0.272034,-0.29306,-0.310516,-0.324524,-0.335358,-0.345001,-0.355591,-0.370667,-0.389862,-0.412384,-0.432861,-0.446869,-0.452911,-0.449402,-0.438324,-0.418793,-0.391632,-0.3573,-0.318756,-0.28125,-0.251343,-0.227722,-0.212097,-0.203247,-0.199432,-0.197174,-0.200348,-0.211334,-0.227783,-0.247559,-0.268433,-0.286255,-0.301514,-0.311157,-0.31192,-0.293915,-0.244263,-0.154572,-0.0237122,0.13739,0.315216,0.488495,0.640381,0.76181,0.846771,0.888916,0.88089,0.819397,0.714722,0.575714,0.423767,0.285461,0.179688,0.114441,0.0874939,0.09552,0.135712,0.197754,0.272949,0.347229,0.397522,0.408386,0.374115,0.299744,0.193817,0.0755615,-0.0368652,-0.133026,-0.204498,-0.242279,-0.238464,-0.197113,-0.125153,-0.0372314,0.0445862,0.105865,0.137268,0.135712,0.105865,0.0529175,-0.0180054,-0.102081,-0.191925,-0.276611,-0.349701,-0.40683,-0.443542,-0.46579,-0.47641,-0.481201,-0.482086,-0.48056,-0.477539,-0.472382,-0.466003,-0.457886,-0.444183,-0.421967,-0.389526,-0.349548,-0.302856,-0.250458,-0.195282,-0.138306,-0.0826721,-0.0293274,0.0206909,0.0674133,0.111145,0.153717,0.196838,0.242004,0.285278,0.325623,0.359039,0.384247,0.400482,0.407104,0.40274,0.390076,0.369812,0.348419,0.329926,0.319031,0.313477,0.312683,0.312012,0.308899,0.303009,0.296326,0.288574,0.279297,0.269775,0.259674,0.251556,0.249237,0.254364,0.264313,0.271881,0.271179,0.256073,0.226166,0.182892,0.131409,0.0749207,0.0154724,-0.0453186,-0.104462,-0.158142,-0.204498,-0.242126,-0.269714,-0.291046,-0.309113,-0.325928,-0.340363,-0.354919,-0.368469,-0.384247,-0.400055,-0.41687,-0.429901,-0.436249,-0.431732,-0.417023,-0.391907,-0.358643,-0.320282,-0.279572,-0.238281,-0.199005,-0.166504,-0.145203,-0.134796,-0.135193,-0.140625,-0.146729,-0.152588,-0.159546,-0.170105,-0.183319,-0.198944,-0.214264,-0.228973,-0.241699,-0.25235,-0.25946,-0.258606,-0.242065,-0.195831,-0.111938,0.00845337,0.157288,0.319244,0.481262,0.628143,0.749298,0.834595,0.87738,0.87204,0.816376,0.713196,0.575104,0.41983,0.270477,0.149017,0.0655823,0.0258179,0.0220947,0.0514832,0.104614,0.170807,0.236847,0.284119,0.296021,0.2659,0.198883,0.104095,-0.00604248,-0.112274,-0.19928,-0.258942,-0.286377,-0.27655,-0.23111,-0.155975,-0.0627441,0.0280151,0.0994568,0.143585,0.157288,0.142517,0.101501,0.0400085,-0.0363159,-0.12204,-0.207947,-0.288727,-0.356445,-0.406036,-0.439392,-0.460083,-0.473145,-0.47998,-0.480774,-0.474304,-0.459778,-0.438049,-0.409637,-0.375641,-0.337738,-0.295593,-0.252899,-0.209442,-0.165375,-0.12262,-0.0813293,-0.0422668,-0.00576782,0.0337524,0.0773315,0.127594,0.182678,0.239532,0.296112,0.348999,0.392822,0.422943,0.436523,0.433838,0.416382,0.385223,0.344086,0.299103,0.257385,0.22644,0.209778,0.205292,0.210327,0.219849,0.231781,0.241516,0.247833,0.250305,0.246002,0.236633,0.221954,0.206116,0.194305,0.191284,0.195343,0.203461,0.207825,0.203583,0.188324,0.160828,0.125488,0.0809021,0.0305176,-0.0263672,-0.0852051,-0.14209,-0.192749,-0.235748,-0.270203,-0.298767,-0.320496,-0.338531,-0.352661,-0.362152,-0.367981,-0.372223,-0.376648,-0.378906,-0.377991,-0.369751,-0.356018,-0.335785,-0.310394,-0.281342,-0.248199,-0.213928,-0.178955,-0.14624,-0.116699,-0.0948486,-0.0804138,-0.0712585,-0.0642395,-0.0603638,-0.0563354,-0.0555725,-0.0584717,-0.0667725,-0.0787048,-0.095459,-0.117126,-0.142578,-0.171661,-0.202667,-0.23053,-0.247925,-0.251007,-0.237091,-0.204071,-0.145752,-0.0569763,0.0643005,0.209503,0.370819,0.528931,0.665649,0.763702,0.82196,0.838287,0.809784,0.736389,0.619781,0.47168,0.307709,0.156403,0.0353088,-0.040741,-0.072876,-0.0692139,-0.0412292,0.00241089,0.0542297,0.103638,0.136108,0.138306,0.103851,0.0361023,-0.0509949,-0.144714,-0.22644,-0.281464,-0.306915,-0.303253,-0.264526,-0.192261,-0.0970764,0.00888062,0.107788,0.183105,0.225677,0.232788,0.206207,0.153564,0.0808105,-0.00521851,-0.0996094,-0.191772,-0.272949,-0.337189,-0.381714,-0.407593,-0.419067,-0.420837,-0.414215,-0.401001,-0.384399,-0.362518,-0.338104,-0.310181,-0.281036,-0.248108,-0.211029,-0.173553,-0.135498,-0.0984802,-0.0599365,-0.0196838,0.0227966,0.0672607,0.115356,0.164185,0.213074,0.259918,0.305176,0.346191,0.378387,0.397064,0.398651,0.385101,0.358765,0.325226,0.286377,0.244171,0.202179,0.164185,0.134979,0.119232,0.115784,0.119812,0.128296,0.133728,0.138245,0.140289,0.143311,0.147797,0.151581,0.153412,0.154694,0.157928,0.165894,0.177765,0.191345,0.197968,0.191345,0.169312,0.132751,0.085968,0.0334778,-0.0220947,-0.0769043,-0.130005,-0.177826,-0.217163,-0.246307,-0.264008,-0.274445,-0.279724,-0.284119,-0.288849,-0.294464,-0.302002,-0.309937,-0.318665,-0.325928,-0.327667,-0.323456,-0.310944,-0.288635,-0.257751,-0.220398,-0.177643,-0.130981,-0.084137,-0.0391235,0.00140381,0.03125,0.0509338,0.0595093,0.0595093,0.0534668,0.043335,0.0299072,0.0103455,-0.012085,-0.0375671,-0.0628052,-0.0854797,-0.105927,-0.12326,-0.139343,-0.151672,-0.161377,-0.16629,-0.162415,-0.152039,-0.13913,-0.127533,-0.114319,-0.0916443,-0.0552979,0.00302124,0.0863953,0.193237,0.312408,0.433075,0.540619,0.627563,0.689148,0.715515,0.69989,0.637146,0.532043,0.392242,0.232086,0.0716248,-0.0683594,-0.1763,-0.248474,-0.287567,-0.292236,-0.264374,-0.213593,-0.150421,-0.0878601,-0.0386353,-0.0122986,-0.0144348,-0.0410156,-0.0804749,-0.122345,-0.159119,-0.180939,-0.18277,-0.157166,-0.103149,-0.0303955,0.0540161,0.140076,0.213287,0.259674,0.274567,0.258026,0.215118,0.150604,0.0698547,-0.02005,-0.108612,-0.187134,-0.253113,-0.302704,-0.332886,-0.343719,-0.341522,-0.329437,-0.312714,-0.290894,-0.266357,-0.238403,-0.210114,-0.179749,-0.149017,-0.118134,-0.0894165,-0.0593872,-0.0260925,0.0122375,0.0532532,0.0956726,0.13858,0.179382,0.218994,0.251709,0.281799,0.304962,0.320099,0.32373,0.314514,0.293579,0.26358,0.225677,0.183807,0.139221,0.0958862,0.056427,0.0247498,0.00372314,-0.00289917,0.00177002,0.0133057,0.0282898,0.0426331,0.0563354,0.0688171,0.0778809,0.0854187,0.0895386,0.0938416,0.0966492,0.101379,0.107544,0.116974,0.125519,0.131348,0.130493,0.122681,0.106354,0.0820923,0.0506592,0.0135193,-0.0256958,-0.067749,-0.109802,-0.149719,-0.187073,-0.218231,-0.244476,-0.263306,-0.274933,-0.279266,-0.277374,-0.270508,-0.260345,-0.244873,-0.226654,-0.204926,-0.179688,-0.152863,-0.124725,-0.0963745,-0.0686035,-0.0420837,-0.0162354,0.00842285,0.030304,0.0501709,0.0665588,0.0792847,0.086731,0.0898438,0.0887146,0.0825806,0.0723267,0.0588074,0.040802,0.0209045,-0.00119019,-0.0247498,-0.0466919,-0.068512,-0.0863953,-0.0974426,-0.101166,-0.101105,-0.0962524,-0.0868225,-0.0788574,-0.0750732,-0.0733643,-0.0750732,-0.0819702,-0.0898438,-0.09729,-0.100189,-0.101593,-0.098053,-0.0864563,-0.0612793,-0.0151062,0.0567017,0.151337,0.254456,0.351868,0.42688,0.469513,0.479004,0.453888,0.398804,0.311981,0.192627,0.0493774,-0.0984802,-0.232849,-0.333435,-0.386841,-0.392456,-0.365875,-0.313812,-0.242828,-0.162781,-0.0811157,-0.00662231,0.0496521,0.0784912,0.0810242,0.0601501,0.0272217,-0.0017395,-0.0178528,-0.0174561,0.00161743,0.0404663,0.0948486,0.158783,0.223999,0.282318,0.317413,0.324585,0.303894,0.259003,0.194855,0.119232,0.0390625,-0.0388184,-0.107544,-0.162628,-0.201599,-0.222229,-0.227997,-0.22229,-0.209442,-0.193665,-0.177826,-0.160553,-0.14267,-0.123596,-0.103851,-0.0811157,-0.0562744,-0.0307617,-0.00717163,0.0141907,0.0330811,0.0514832,0.0696411,0.0884094,0.105957,0.12085,0.130219,0.133301,0.134369,0.131958,0.12796,0.120239,0.105377,0.0819397,0.0508728,0.0178528,-0.0155334,-0.0439148,-0.0684509,-0.086792,-0.0981445,-0.0991821,-0.0890503,-0.0676575,-0.0393372,-0.00680542,0.025116,0.0538025,0.0775757,0.0968018,0.110535,0.121826,0.12677,0.130432,0.130432,0.131775,0.132263,0.132172,0.129852,0.123444,0.111633,0.0956116,0.0741272,0.0488281,0.0219421,-0.00744629,-0.0363159,-0.0630188,-0.0866089,-0.105469,-0.119751,-0.131134,-0.139008,-0.14209,-0.1409,-0.134979,-0.125763,-0.116058,-0.105225,-0.0944824,-0.0811768,-0.0648499,-0.0447998,-0.0249023,-0.00421143,0.0148621,0.0305481,0.0446777,0.0565491,0.065918,0.0718384,0.072052,0.0645752,0.0500793,0.0326233,0.0123291,-0.00738525,-0.0275574,-0.0472107,-0.0660706,-0.0811768,-0.0930176,-0.099884,-0.101807,-0.0983276,-0.0923767,-0.0851135,-0.0752869,-0.063385,-0.0503845,-0.0384827,-0.02948,-0.0222473,-0.0184326,-0.018158,-0.018158,-0.016449,-0.015686,-0.0197754,-0.0304565,-0.0450745,-0.059021,-0.0681763,-0.0740051,-0.0780945,-0.085907,-0.100159,-0.123474,-0.15097,-0.174744,-0.188599,-0.19577,-0.198364,-0.192047,-0.168427,-0.123474,-0.0553589,0.0329895,0.128387,0.216248,0.280273,0.314545,0.318817,0.298767,0.254578,0.187775,0.101166,0.00570679,-0.0857544,-0.156586,-0.191437,-0.186768,-0.146179,-0.0834961,-0.00845337,0.0694275,0.140686,0.196136,0.229767,0.236938,0.216522,0.17215,0.112823,0.052887,0.00656128,-0.0157471,-0.0113831,0.0166626,0.061676,0.115936,0.173706,0.222931,0.25592,0.267761,0.25946,0.228699,0.178741,0.114166,0.0471497,-0.0153503,-0.0679016,-0.107971,-0.134491,-0.151031,-0.160461,-0.16449,-0.164948,-0.158569,-0.151947,-0.145142,-0.140747,-0.136749,-0.132904,-0.126221,-0.115234,-0.100861,-0.0856934,-0.074585,-0.0687256,-0.0657654,-0.0612793,-0.0560608,-0.050293,-0.042572,-0.0328369,-0.0217285,-0.0088501,0.00866699,0.0314636,0.0541077,0.0738831,0.0836487,0.0844727,0.0757141,0.0617676,0.0446777,0.0273743,0.013855,0.00259399,-0.0039978,-0.00485229,0.00134277,0.0127869,0.0298157,0.0480652,0.0664062,0.0827332,0.0968628,0.107697,0.116699,0.125519,0.134796,0.143433,0.148712,0.150635,0.147034,0.139771,0.128174,0.112122,0.0934143,0.0733643,0.0510559,0.0289001,0.00878906,-0.00775146,-0.0211792,-0.0299683,-0.0355835,-0.0384827,-0.040741,-0.0432129,-0.0473328,-0.0531311,-0.0600891,-0.067749,-0.0768738,-0.0846252,-0.0887146,-0.0906677,-0.0884094,-0.0854797,-0.0786438,-0.0701294,-0.0628357,-0.0565796,-0.0531006,-0.052002,-0.0515137,-0.0519714,-0.0516968,-0.0498657,-0.0492249,-0.0464478,-0.0425415,-0.0365906,-0.0323792,-0.0300293,-0.0323486,-0.0400085,-0.0481873,-0.058197,-0.0673218,-0.0740662,-0.0773315,-0.0775757,-0.0732422,-0.0621948,-0.0444031,-0.0209045,0.00689697,0.0336914,0.0569763,0.0761108,0.0873108,0.0913696,0.0889893,0.0787048,0.0619812,0.040802,0.0192566,0.00289917,-0.00802612,-0.0137024,-0.0168762,-0.0187988,-0.0210876,-0.0201721,-0.0163879,-0.0119629,-0.00915527,-0.011322,-0.0217285,-0.035614,-0.0526733,-0.0704956,-0.0888367,-0.107697,-0.124451,-0.135559,-0.1409,-0.143585,-0.142395,-0.141327,-0.142517,-0.144714,-0.144348,-0.142334,-0.144623,-0.146454,-0.142181,-0.125092,-0.0906677,-0.0344543,0.0329895,0.0988464,0.154144,0.191986,0.212311,0.223511,0.224335,0.206696,0.168335,0.108459,0.0367126,-0.0301819,-0.0803223,-0.108337,-0.111938,-0.103821,-0.0879211,-0.0621338,-0.0287781,0.00906372,0.0469971,0.081665,0.106567,0.116974,0.113312,0.107635,0.103394,0.102631,0.113068,0.132202,0.152954,0.175934,0.198883,0.2164,0.224213,0.224915,0.21582,0.195862,0.169617,0.139557,0.108917,0.0737915,0.0386963,0.00610352,-0.0246277,-0.0545349,-0.0833435,-0.111908,-0.138794,-0.160522,-0.174408,-0.17926,-0.174042,-0.161011,-0.141418,-0.115997,-0.0853271,-0.052887,-0.0240784,-0.00323486,0.00872803,0.0110474,0.00723267,0.000366211,-0.00695801,-0.013031,-0.0173035,-0.0202026,-0.0217285,-0.0184326,-0.0100403,0.00265503,0.0143433,0.0232239,0.0261841,0.0232849,0.0166626,0.00592041,-0.00564575,-0.0187988,-0.0309448,-0.0426331,-0.0474243,-0.047699,-0.0432129,-0.0349731,-0.0250244,-0.011322,0.00836182,0.0314331,0.057251,0.0847778,0.112915,0.139587,0.161377,0.178558,0.188385,0.189362,0.179871,0.161804,0.135193,0.103912,0.0712585,0.0406799,0.0123291,-0.00732422,-0.0224609,-0.0319519,-0.0354004,-0.0342712,-0.0321655,-0.03125,-0.0328674,-0.0350952,-0.0377197,-0.0404358,-0.0439758,-0.0465088,-0.04776,-0.0465698,-0.0409546,-0.0296021,-0.0141296,0.000915527,0.0126038,0.020874,0.0265198,0.0289001,0.0297546,0.0266724,0.0219421,0.0122375,0.000152588,-0.0128174,-0.0248413,-0.035675,-0.0450134,-0.0541077,-0.0639648,-0.0750732,-0.0854797,-0.0957336,-0.102417,-0.106354,-0.106567,-0.104523,-0.0977173,-0.088501,-0.0750427,-0.0611877,-0.045166,-0.0289307,-0.0149231,-0.00219727,0.00656128,0.0117493,0.0126648,0.0106201,0.00653076,0.000640869,-0.00485229,-0.0107117,-0.0157776,-0.0205383,-0.0229187,-0.0234985,-0.0222473,-0.0216064,-0.0215454,-0.0249023,-0.0297546,-0.0360718,-0.0424194,-0.0492249,-0.0549316,-0.0609131,-0.0655823,-0.0687256,-0.0679016,-0.0628052,-0.0534058,-0.0424805,-0.0346985,-0.0292053,-0.0254822,-0.0216064,-0.0166626,-0.0120239,-0.0120239,-0.0195007,-0.0328369,-0.0480652,-0.0617676,-0.0704346,-0.0770264,-0.0857544,-0.0989685,-0.115662,-0.134277,-0.153351,-0.16861,-0.175995,-0.171631,-0.153412,-0.12262,-0.0787354,-0.0279846,0.0223083,0.0681763,0.108765,0.13739,0.155762,0.159882,0.151306,0.134277,0.111359,0.0864563,0.0673218,0.0566406,0.0550842,0.0588989,0.0629578,0.0658569,0.0664062,0.0661316,0.0635071,0.0606995,0.0544434,0.0434875,0.0315857,0.0218811,0.0213013,0.0282898,0.0426941,0.0636597,0.0895691,0.115784,0.138153,0.156647,0.167206,0.166656,0.157318,0.143036,0.125,0.110168,0.0976257,0.0888672,0.0823059,0.0738525,0.0628967,0.0529175,0.0429993,0.0293884,0.0112,-0.00915527,-0.03125,-0.050293,-0.0655518,-0.0735168,-0.0740662,-0.0738525,-0.0742798,-0.0713501,-0.0652161,-0.0597229,-0.0541077,-0.0474243,-0.0374451,-0.0255432,-0.0132141,-0.00012207,0.013031,0.0218201,0.0266724,0.0285034,0.0290527,0.0261841,0.0202026,0.0107727,0.000274658,-0.0118103,-0.0236206,-0.0329285,-0.0357361,-0.0342712,-0.0301208,-0.0224609,-0.013916,-0.0032959,0.00662231,0.016449,0.0239258,0.029541,0.0314331,0.0323486,0.0340576,0.0369263,0.0422058,0.0484009,0.0550232,0.0599976,0.063385,0.0657654,0.0666199,0.0654907,0.0599976,0.0529785,0.0450134,0.0358887,0.0297546,0.0236511,0.0178528,0.0114136,0.00323486,-0.00662231,-0.016449,-0.0263977,-0.0362854,-0.0446167,-0.050354,-0.0542297,-0.0534668,-0.0498047,-0.0426941,-0.0334167,-0.0239868,-0.0144348,-0.00479126,0.00421143,0.0116882,0.0180054,0.0210266,0.0227051,0.0223694,0.0215454,0.0203857,0.0180969,0.0142822,0.00857544,0.00286865,-0.00357056,-0.0102844,-0.017395,-0.0242004,-0.0296326,-0.0330811,-0.0355835,-0.0367126,-0.0367737,-0.0357361,-0.0343933,-0.0319519,-0.0293274,-0.0274963,-0.0266113,-0.0270996,-0.0278625,-0.0282288,-0.0276489,-0.0256958,-0.0204163,-0.0140686,-0.00772095,-0.00241089,0.00280762,0.00842285,0.0133057,0.0163879,0.0166016,0.0117493,0.00366211,-0.00808716,-0.0196838,-0.0313721,-0.040741,-0.0501709,-0.0599976,-0.0678711,-0.0721741,-0.0742188,-0.0727234,-0.0692749,-0.063385,-0.0570679,-0.0512085,-0.0436707,-0.0357361,-0.0292053,-0.0239258,-0.0220337,-0.0218201,-0.0224304,-0.0229187,-0.0236511,-0.0233459,-0.0234375,-0.0238342,-0.0229187,-0.0223694,-0.0187988,-0.016449,-0.0154114,-0.0168152,-0.0215149,-0.0259399,-0.0328674,-0.0404663,-0.0509338,-0.0605164,-0.0706482,-0.079071,-0.0848999,-0.0879211,-0.0874939,-0.0851135,-0.0807495,-0.0761108,-0.0705566,-0.0640259,-0.0569763,-0.0501709,-0.0440979,-0.0418701,-0.0434875,-0.0485535,-0.0529785,-0.0575256,-0.0578918,-0.0525513,-0.0405884,-0.0221558,0.000335693,0.0213318,0.0374451,0.0489807,0.0541077,0.0535889,0.052124,0.0491028,0.0429688,0.0363159,0.0314636,0.0278625,0.0290527,0.035675,0.0437622,0.052063,0.0559082,0.0577393,0.0556335,0.0532532,0.04953,0.0479736,0.0488892,0.0508728,0.0536804,0.0602722,0.0726624,0.0881348,0.103699,0.118378,0.131134,0.139801,0.143646,0.141479,0.133881,0.120453,0.102417,0.0833435,0.0669861,0.0571289,0.0513,0.0485229,0.0465088,0.0429688,0.0370178,0.0310364,0.0237122,0.0192871,0.0163879,0.0115356,0.00836182,0.00448608,0.00296021,0.00335693,0.00500488,0.00796509,0.009552,0.00906372,0.00680542,0.00177002,-0.00286865,-0.00704956,-0.00964355,-0.00909424,-0.00564575,0.00012207,0.00570679,0.00942993,0.00976562,0.00802612,0.00485229,0,-0.00582886,-0.0128784,-0.0189819,-0.0228577,-0.0233459,-0.0202637,-0.0133057,-0.00350952,0.00640869,0.0151062,0.0224304,0.0270996,0.0298462,0.0302429,0.028717,0.0260925,0.0217285,0.0192871,0.018158,0.0202637,0.0238647,0.0282288,0.0317383,0.0351562,0.0375671,0.0384216,0.0377808,0.0342712,0.0280762,0.0193481,0.00933838,-6.10352e-05,-0.00683594,-0.0116272,-0.0153503,-0.0184326,-0.0213013,-0.0245667,-0.0245667,-0.0241394,-0.0204773,-0.0164795,-0.0129395,-0.00991821,-0.00744629,-0.0062561,-0.00717163,-0.00909424,-0.0131531,-0.0173035,-0.0219421,-0.0260925,-0.0298157,-0.0323792,-0.0336914,-0.0327148,-0.0302429,-0.0267334,-0.0227051,-0.02005,-0.0176697,-0.0171814,-0.0168152,-0.0183411,-0.01828,-0.0190125,-0.0195007,-0.0211792,-0.0222168,-0.0224609,-0.0215454,-0.0201111,-0.0187683,-0.0178528,-0.0180054,-0.0174561,-0.0170288,-0.0146179,-0.0127258,-0.0111694,-0.0116272,-0.0127869,-0.0133667,-0.0155334,-0.016449,-0.0172424,-0.0190735,-0.0236206,-0.0291138,-0.0343933,-0.039032,-0.0413818,-0.0440369,-0.0446167,-0.046936,-0.0479126,-0.0491638,-0.0471497,-0.0436707,-0.0394592,-0.035614,-0.0327148,-0.0289001,-0.0259399,-0.0210266,-0.0157471,-0.0104675,-0.00857544,-0.0107727,-0.0147705,-0.0204773,-0.0266724,-0.0323486,-0.0370789,-0.0399475,-0.040802,-0.0402222,-0.0383301,-0.033783,-0.0266724,-0.0177307,-0.0105591,-0.00534058,-0.00350952,-0.00494385,-0.00668335,-0.0093689,-0.0120239,-0.0132141,-0.0142212,-0.0147095,-0.0144043,-0.0141907,-0.0126038,-0.00830078,-0.00265503,0.00463867,0.00915527,0.0108337,0.00888062,0.00588989,0.00106812,-0.00296021,-0.00640869,-0.0100403,-0.013916,-0.0196838,-0.0263062,-0.0323792,-0.0358582,-0.0377197,-0.0390625,-0.0393372,-0.0405273,-0.0406799,-0.0406799,-0.0401611,-0.0384827,-0.0372009,-0.0344849,-0.0317078,-0.0291748,-0.0267944,-0.0237732,-0.0183411,-0.0142822,-0.00985718,-0.00485229,-0.000152588,0.00387573,0.00662231,0.0103455,0.0104065,0.00933838,0.00668335,0.00421143,0.00280762,0.00335693,0.00680542,0.009552,0.0135193,0.0175171,0.0232239,0.0296021,0.0367737,0.0460815,0.0529785,0.0581665,0.0627441,0.067749,0.0729675,0.0773926,0.084259,0.0904541,0.0942078,0.0969543,0.0977783,0.0974426,0.0937805,0.088623,0.0844116,0.0808105,0.0758972,0.072052,0.068573,0.0642395,0.0591736,0.0556641,0.0522156,0.0510559,0.0487671,0.0469055,0.0440979,0.0400391,0.036377,0.0325012,0.0307312,0.0317078,0.0349731,0.0367126,0.0386047,0.0412903,0.0441589,0.0424194,0.0386047,0.0349121,0.0281372,0.0206299,0.0118713,0.00436401,-0.00366211,-0.0107727,-0.0175171,-0.0214539,-0.0218201,-0.0217896,-0.0198975,-0.0194702,-0.0189819,-0.019928,-0.0206299,-0.0188599,-0.0177917,-0.0147705,-0.0146484,-0.0134277,-0.0127258,-0.0101318,-0.00817871,-0.00543213,-0.0022583,0.0022583,0.00613403,0.00921631,0.0114136,0.0126038,0.0133667,0.0123291,0.0118103,0.0105591,0.00900269,0.00732422,0.00457764,0.00219727,-0.000213623,-0.00247192,-0.00335693,-0.00430298,-0.00512695,-0.00506592,-0.00564575,-0.0062561,-0.00701904,-0.00830078,-0.0104065,-0.0130005,-0.0155334,-0.018158,-0.0202637,-0.0217896,-0.0234985,-0.0239258,-0.0241394,-0.0237122,-0.0222473,-0.0198364,-0.0164795,-0.0132141,-0.011322,-0.0109863,-0.011322,-0.0115967,-0.0122986,-0.013092,-0.0142212,-0.0166626,-0.0204163,-0.0231323,-0.025177,-0.0253906,-0.0260925,-0.0256042,-0.0254822,-0.0242615,-0.0237122,-0.0229187,-0.0206299,-0.0191956,-0.0169373,-0.0151367,-0.0133667,-0.0125732,-0.0127258,-0.0139465,-0.015564,-0.0163879,-0.0170288,-0.0172424,-0.01828,-0.0196838,-0.020752,-0.0224304,-0.0223083,-0.0213318,-0.0198975,-0.0187988,-0.0163269,-0.0141296,-0.0115356,-0.00906372,-0.00732422,-0.00646973,-0.00674438,-0.00744629,-0.0102539,-0.0121765,-0.0147095,-0.0168762,-0.0197754,-0.0231323,-0.0254517,-0.0267334,-0.0259399,-0.0232239,-0.0205994,-0.0191956,-0.0178833,-0.0163269,-0.013855,-0.0105591,-0.00814819,-0.00640869,-0.00518799,-0.0045166,-0.00344849,-0.00289917,-0.00189209,-0.00161743,-0.00146484,-0.00259399,-0.00360107,-0.00393677,-0.00436401,-0.00408936,-0.00387573,-0.0038147,-0.00317383,-0.0022583,-0.000976562,0,-0.000152588,-0.00112915,-0.00323486,-0.0045166,-0.00588989,-0.00842285,-0.0104675,-0.0143433,-0.0171509,-0.0176697,-0.0180664,-0.0163269,-0.0163269,-0.0144348,-0.0134277,-0.00985718,-0.00653076,-0.00302124,0,0.0015564,0.00210571,0.00161743,0.000549316,-0.00247192,-0.00610352,-0.0108337,-0.0177307,-0.0253906,-0.0323486,-0.0372314,-0.0405884,-0.0429993,-0.0442505,-0.043457,-0.0401001,-0.0334778,-0.023407,-0.0125122,-0.00323486,0.00357056,0.00753784,0.00964355,0.0125732,0.0139465,0.0153198,0.0149841,0.0136414,0.0116882,0.0108337,0.0118103,0.0146484,0.0179443,0.0203247,0.0224609,0.0232849,0.0247498,0.0250244,0.0263977,0.0263672,0.0253906,0.0230713,0.0217285,0.02005,0.0192566,0.0183716,0.0177917,0.0187683,0.0221558,0.026886,0.0317993,0.0367126,0.0410156,0.0447998,0.0492554,0.0536804,0.0574646,0.0583191,0.0568237,0.0512085,0.0447998,0.0365295,0.0284729,0.0211182,0.0131531,0.00726318,0.00134277,-0.000793457,-0.000427246,0.00219727,0.00473022,0.00888062,0.0127258,0.0151978,0.0185852,0.0214539,0.023407,0.0242004,0.0235596,0.0224609,0.0222168,0.0216064,0.018158,0.0137024,0.00689697,0.000488281,-0.0055542,-0.0100708,-0.0125122,-0.0125732,-0.0124512,-0.0123901,-0.011322,-0.00970459,-0.00674438,-0.00360107,0.00012207,0.00238037,0.00289917,0.00161743,0.000213623,-0.00198364,-0.00378418,-0.00494385,-0.00592041,-0.00463867,-0.000793457,0.00274658,0.00726318,0.0101929,0.0132141,0.0145569,0.0161743,0.0171509,0.0165405,0.0144958,0.0106201,0.00506592,-0.000335693,-0.00592041,-0.0085144,-0.00888062,-0.00888062,-0.00787354,-0.00695801,-0.00576782,-0.00302124,0.000640869,0.00430298,0.00823975,0.0121155,0.015564,0.0186462,0.0193481,0.018219,0.0157776,0.0113831,0.00796509,0.0039978,0.00106812,-0.0015564,-0.00457764,-0.00765991,-0.0111694,-0.0148315,-0.0169678,-0.0186462,-0.0184937,-0.0175171,-0.0177307,-0.0163879,-0.015686,-0.0147705,-0.013031,-0.0107727,-0.0100708,-0.00842285,-0.00738525,-0.00662231,-0.00646973,-0.0062561,-0.00604248,-0.00527954,-0.00311279,-0.00149536,0.000427246,0.00149536,0.00210571,0.00198364,0.00106812,-0.000366211,-0.00302124,-0.00680542,-0.0112,-0.015686,-0.0210876,-0.025116,-0.0291138,-0.0308228,-0.0314331,-0.0305176,-0.0286865,-0.025238,-0.0209656,-0.0168762,-0.0128174,-0.00985718,-0.00732422,-0.00430298,-0.00247192,-0.000427246,0.00146484,0.00317383,0.00442505,0.00485229,0.00494385,0.00366211,0.0017395,-6.10352e-05,-0.0022583,-0.00564575,-0.00723267,-0.0101929,-0.0114746,-0.013031,-0.0139465,-0.0157471,-0.0166016,-0.0179443,-0.0187988,-0.0187683,-0.0184326,-0.0164795,-0.013855,-0.0101929,-0.00610352,-0.00204468,0.00106812,0.00415039,0.00570679,0.00836182,0.0105591,0.0125122,0.0137329,0.0142822,0.0126038,0.0108948,0.00900269,0.00787354,0.0078125,0.00668335,0.00500488,0.00210571,-0.0017395,-0.00491333,-0.00793457,-0.00976562,-0.0117493,-0.0136414,-0.0143433,-0.0145569,-0.013855,-0.0123901,-0.00915527,-0.00668335,-0.00350952,-0.00125122,0.00167847,0.00311279,0.0062561,0.00753784,0.009552,0.0101318,0.0111694,0.0125122,0.0130005,0.0134888,0.0123291,0.0109863,0.00866699,0.00494385,0.00259399,-0.00134277,-0.00338745,-0.00540161,-0.00683594,-0.00704956,-0.00668335,-0.0055542,-0.00415039,-0.00247192,-0.000701904,0.000762939,0.00219727,0.00357056,0.00543213,0.00680542,0.00793457,0.00949097,0.00878906,0.00949097,0.0088501,0.00823975,0.00695801,0.00570679,0.00427246,0.00210571,0.000335693,-0.00189209,-0.00421143,-0.00576782,-0.00744629,-0.00823975,-0.0085144,-0.00796509,-0.0071106,-0.00604248,-0.00527954,-0.00442505,-0.00317383,-0.000976562,0.000549316,0.00195312,0.00210571,0.00189209,0.0015564,0.00134277,0.00140381,0.000976562,0.000427246,-0.000488281,-0.00216675,-0.00289917,-0.00360107,-0.00286865,-0.00241089,-0.00167847,-0.00140381,-0.00134277,-0.00149536,-0.00189209,-0.00231934,-0.00372314,-0.00588989,-0.00744629,-0.009552,-0.00976562,-0.00985718,-0.00717163,-0.0045166,-0.00012207,0.00402832,0.00964355,0.0141296,0.0187683,0.0209656,0.0211182,0.0189819,0.0144348,0.009552,0.00360107,-0.00238037,-0.00817871,-0.013031,-0.0164795,-0.0187683,-0.0176697,-0.0161743,-0.0139465,-0.0116882,-0.00906372,-0.00668335,-0.00479126,-0.00317383,-0.00335693,-0.00338745,-0.0038147,-0.00302124,-0.00241089,0.000427246,0.00241089,0.00512695,0.00653076,0.00662231,0.00738525,0.00732422,0.00747681,0.00613403,0.00415039,0.00119019,-0.00286865,-0.00619507,-0.00836182,-0.0104675,-0.0123291,-0.0135803,-0.0141296,-0.0142822,-0.0124512,-0.0101318,-0.00808716,-0.00485229,-0.00241089,0.000579834,0.00421143,0.00796509,0.0111694,0.0142822,0.0155334,0.0161133,0.0163269,0.0169678,0.0159607,0.0158997,0.0143433,0.0118713,0.0101318,0.00732422,0.00576782,0.00436401,0.00289917,0.00161743,0.000488281,-0.000762939,0.000366211,0.000274658,0.00140381,0.0015564,0.00210571,0.00259399,0.00296021,0.00311279,0.00302124,0.0022583,0.00183105,0.00241089,0.00311279,0.00479126,0.00598145,0.00775146,0.00817871,0.00949097,0.0105591,0.0119019,0.0122986,0.012085,0.0102539,0.00662231,0.00238037,-0.00146484,-0.00518799,-0.00765991,-0.00976562,-0.0114746,-0.0119629,-0.010498,-0.00845337,-0.00500488,-0.000915527,0.00311279,0.00753784,0.0114746,0.0149841,0.0173645,0.0178833,0.0169678,0.0151062,0.0129395,0.0107727,0.0093689,0.00842285,0.00656128,0.00564575,0.0039978,0.0038147,0.00360107,0.00527954,0.00668335,0.00817871,0.00866699,0.00933838,0.00979614,0.009552,0.0101929,0.00878906,0.00872803,0.0071106,0.00598145,0.00527954,0.00430298,0.00289917,0.00149536,-6.10352e-05,-0.00149536,-0.00274658,-0.00350952,-0.00408936,-0.00360107,-0.0038147,-0.00317383,-0.00308228,-0.00241089,-0.00204468,-0.00198364,-0.00210571,-0.00302124,-0.0032959,-0.00408936,-0.00469971,-0.00494385,-0.00564575,-0.0062561,-0.00570679,-0.00598145,-0.00457764,-0.00469971,-0.00344849,-0.00378418,-0.00344849,-0.0032959,-0.00296021,-0.00274658,-0.00378418,-0.00436401,-0.00656128,-0.00765991,-0.00927734,-0.0104675,-0.0118103,-0.0122375,-0.0134888,-0.0134888,-0.0132446,-0.0114136,-0.0104065,-0.00732422,-0.0055542,-0.00335693,-0.00210571,-0.000152588,0.000762939,0.00183105,0.00195312,0.00119019,0.000427246,-0.000854492,-0.00195312,-0.00350952,-0.00491333,-0.00613403,-0.0078125,-0.00872803,-0.00997925,-0.0108337,-0.0116272,-0.0129395,-0.0134277,-0.0141907,-0.0137024,-0.0126648,-0.0116882,-0.0101318,-0.0093689,-0.00830078,-0.00836182,-0.00738525,-0.00808716,-0.00726318,-0.00845337,-0.00823975,-0.00909424,-0.0088501,-0.0088501,-0.00830078,-0.00701904,-0.00646973,-0.00469971,-0.00317383,-0.00146484,-0.00012207,0.000335693,0.000762939,0.000488281,-0.000488281,-0.000701904,-0.00265503,-0.00408936,-0.00704956,-0.00933838,-0.0107117,-0.0126648,-0.0123291,-0.0113831,-0.00958252,-0.00753784,-0.0039978,-0.00149536,0.00189209,0.00393677,0.00619507,0.00704956,0.00723267,0.00695801,0.00527954,0.00378418,0.00119019,-0.00167847,-0.00430298,-0.00640869,-0.00836182,-0.00933838,-0.00857544,-0.00793457,-0.00631714,-0.00366211,-0.0010376,0.00167847,0.00457764,0.00634766,0.00759888,0.00808716,0.00787354,0.00726318,0.00534058,0.00415039,0.00241089,0.000793457,0.000152588,-0.000579834,0.000213623,0.000152588,0.0017395,0.00302124,0.00421143,0.00646973,0.00717163,0.00842285,0.00738525,0.0062561,0.00421143,0.00149536,-0.00125122,-0.00366211,-0.00653076,-0.00772095,-0.00964355,-0.00888062,-0.00814819,-0.00549316,-0.00286865,0.000976562,0.00378418,0.00674438,0.00915527,0.0106812,0.011322,0.0115967,0.0112,0.0100708,0.00894165,0.00631714,0.00485229,0.00210571,0.000213623,-0.000854492,-0.0017395,-0.000915527,-0.000152588,0.0017395,0.0022583,0.00378418,0.0038147,0.00500488,0.00521851,0.00610352,0.00598145,0.00631714,0.00634766,0.00646973,0.00634766,0.00717163,0.00726318,0.00793457,0.00753784,0.00796509,0.00817871,0.00823975,0.00894165,0.0085144,0.00836182,0.00772095,0.0071106,0.00683594,0.00592041,0.00588989,0.00469971,0.0038147,0.00198364,0.00112915,-0.000976562,-0.00204468,-0.00350952,-0.00500488,-0.00582886,-0.00634766,-0.00674438,-0.00619507,-0.00494385,-0.00421143,-0.00177002,0.00012207,0.00219727,0.00372314,0.00448608,0.00506592,0.00457764,0.00415039,0.00241089,0.00146484,-0.000488281,-0.00140381,-0.0022583,-0.00360107,-0.0038147,-0.00436401,-0.00430298,-0.00473022,-0.00430298,-0.00393677,-0.00378418,-0.00308228,-0.00289917,-0.00268555,-0.00253296,-0.00253296,-0.00183105,-0.0010376,0.000274658,0.00210571,0.0039978,0.00653076,0.00906372,0.0106812,0.0126038,0.013031,0.0133057,0.0130005,0.0111084,0.00976562,0.00732422,0.00543213,0.00302124,0.00112915,-0.000793457,-0.00241089,-0.00378418,-0.00469971,-0.00512695,-0.00549316,-0.00570679,-0.00527954,-0.00534058,-0.00421143,-0.00393677,-0.00317383,-0.00259399,-0.00198364,-0.00189209,-0.00140381,-0.0017395,-0.00149536,-0.00167847,-0.00253296,-0.00259399,-0.00323486,-0.00366211,-0.00415039,-0.00436401,-0.00457764,-0.00448608,-0.00494385,-0.00427246,-0.00463867,-0.00427246,-0.00473022,-0.00479126,-0.00512695,-0.00582886,-0.00674438,-0.00765991,-0.00866699,-0.00964355,-0.0105591,-0.0104675,-0.00991821,-0.00933838,-0.00772095,-0.00668335,-0.00521851,-0.00408936,-0.00219727,-0.00216675,-0.000427246,-0.000793457,-0.000427246,-0.00106812,-0.00161743,-0.00198364,-0.00289917,-0.0032959,-0.00344849,-0.00317383,-0.00268555,-0.00149536,-0.000976562,0.000762939,0.00140381,0.00265503,0.00335693,0.00360107,0.00436401,0.00378418,0.00360107,0.00338745,0.00238037,0.0017395,0.000793457,0.000488281,-0.000549316,-0.000854492,-0.0010376,-0.00189209,-0.0017395,-0.00274658,-0.00338745,-0.00350952,-0.00457764,-0.00436401,-0.00463867,-0.0038147,-0.00344849,-0.00268555,-0.00161743,-0.000793457,0.000213623,0.00112915,0.00119019,0.0017395,0.000976562,0.000488281,0.000427246,-0.000152588,-0.000274658,-0.000488281,-0.000762939,-0.0010376,-0.000793457,-0.000488281,-0.00012207,0,0.000335693,6.10352e-05,-0.000335693,-0.000854492,-0.00134277,-0.00149536,-0.00265503,-0.00247192,-0.0032959,-0.00296021,-0.00259399,-0.00149536,-0.000366211,0.000274658,0.00149536,0.00253296,0.00357056,0.00469971,0.00570679,0.00561523,0.00598145,0.00561523,0.00494385,0.00457764,0.00360107,0.00308228,0.00204468,0.00149536,0.000976562,0.00112915,0.0017395,0.00216675,0.00317383,0.00408936,0.00494385,0.00540161,0.00610352,0.00570679,0.00512695,0.00427246,0.00286865,0.00198364,0.000549316,0,-0.000549316,0.000213623,0.000274658,0.00253296,0.00350952,0.00588989,0.00723267,0.00927734,0.00964355,0.0104065,0.00942993,0.00866699,0.00619507,0.00387573,0.000976562,-0.00161743,-0.00393677,-0.00570679,-0.00689697,-0.00738525,-0.00744629,-0.00640869,-0.00576782,-0.00378418,-0.00247192,-0.00134277,-6.10352e-05,0.000335693,0.000701904,0.000213623,0,-0.000701904,-0.00149536,-0.00216675,-0.00302124,-0.00344849,-0.00366211,-0.00323486,-0.00274658,-0.00219727,-0.000976562,-0.000274658,0.000366211,0.00128174,0.00146484,0.00119019,0.000488281,-0.00106812,-0.0017395,-0.0039978,-0.00463867,-0.00653076,-0.00689697,-0.00765991,-0.00753784,-0.00723267,-0.0062561,-0.00500488,-0.0038147,-0.00146484,0,0.00189209,0.00360107,0.00485229,0.00619507,0.00634766,0.00744629,0.00701904,0.00726318,0.00619507,0.00564575,0.00518799,0.00408936,0.00378418,0.00323486,0.00238037,0.00241089,0.0015564,0.000976562,0.000488281,-0.000335693,-0.00112915,-0.00219727,-0.00296021,-0.00408936,-0.00448608,-0.00540161,-0.00549316,-0.00604248,-0.00631714,-0.00619507,-0.00646973,-0.00543213,-0.00518799,-0.00408936,-0.00402832,-0.00289917,-0.00296021,-0.00219727,-0.00183105,-0.00149536,-0.00106812,-0.000640869,-0.00134277,-0.000854492,-0.00189209,-0.00247192,-0.00421143,-0.00534058,-0.00738525,-0.00909424,-0.0105591,-0.0123291,-0.0129395,-0.0136414,-0.0127258,-0.0123291,-0.0106201,-0.00845337,-0.00680542,-0.00479126,-0.00274658,-0.00119019,-0.000427246,0.000579834,0.0010376,0.000762939,0.00125122,0.000640869,0.000854492,0.000976562,0.00106812,0.00198364,0.00265503,0.00372314,0.00485229,0.00592041,0.00610352,0.00701904,0.00680542,0.00646973,0.00592041,0.0055542,0.00473022,0.00387573,0.00274658,0.00219727,0.000915527,0.000488281,-0.000152588,-0.000488281,-0.000274658,0.000427246,0.000488281,0.00189209,0.00289917,0.00387573,0.00561523,0.00695801,0.00796509,0.00933838,0.00964355,0.00991821,0.00915527,0.00857544,0.00695801,0.00473022,0.00289917,0.00012207,-0.00183105,-0.00402832,-0.00570679,-0.00689697,-0.00787354,-0.00738525,-0.00759888,-0.00598145,-0.00534058,-0.00360107,-0.00311279,-0.0017395,-0.00128174,-0.000793457,-0.000549316,-0.000640869,-0.00112915,-0.0015564,-0.00238037,-0.00286865,-0.00308228,-0.00357056,-0.00317383,-0.00274658,-0.00274658,-0.00134277,-0.00119019,-0.000152588,0.000549316,0.00119019,0.00146484,0.00119019,0.00140381,0.000335693,0.00012207,-0.0010376,-0.00210571,-0.00259399,-0.00323486,-0.00393677,-0.00378418,-0.00338745,-0.00238037,-0.000793457,0.000701904,0.00317383,0.00506592,0.00738525,0.00866699,0.0104675,0.0107117,0.0115967,0.0108948,0.0106201,0.00915527,0.00787354,0.00723267,0.00506592,0.0045166,0.0032959,0.00219727,0.00146484,0.000427246,-0.00012207,-0.000488281,-0.000915527,-0.0010376,-0.00112915,-0.000915527,-0.000915527,-0.000793457,-0.000335693,-0.00012207,-0.000213623,0.000335693,0.000213623,0.000488281,0.000213623,0.000579834,0.000549316,0.000213623,0.000213623,6.10352e-05,-0.000274658,-0.000213623,-0.000579834,-0.000976562,-0.000854492,-0.00146484,-0.00140381,-0.00219727,-0.00216675,-0.00302124,-0.00311279,-0.00393677,-0.00415039,-0.00518799,-0.00540161,-0.00640869,-0.00704956,-0.00759888,-0.00845337,-0.00857544,-0.00909424,-0.00830078,-0.0088501,-0.00726318,-0.00653076,-0.00543213,-0.00317383,-0.00204468,-0.00012207,0.00161743,0.00259399,0.00274658,0.00335693,0.00238037,0.00241089,0.00112915,0.000488281,0.000152588,-0.000762939,-0.000854492,-0.00112915,-0.00119019,-0.00119019,-0.000915527,-0.000427246,-0.000152588,-0.000274658,-0.000152588,-0.000152588,-0.000427246,-0.000427246,-0.000579834,-0.00012207,-0.00012207,0.000701904,0.000427246,0.00177002,0.00167847,0.00286865,0.00317383,0.00393677,0.00393677,0.0039978,0.00408936,0.00360107,0.00286865,0.00259399,0.0017395,0.000976562,0.000549316,-0.000915527,-0.00125122,-0.00259399,-0.00372314,-0.00457764,-0.0062561,-0.00683594,-0.00823975,-0.00888062,-0.00964355,-0.0102844,-0.0103455,-0.00979614,-0.00976562,-0.00836182,-0.00717163,-0.00610352,-0.00430298,-0.00350952,-0.00216675,-0.00183105,-0.00134277,-0.00149536,-0.00146484,-0.00195312,-0.00268555,-0.00259399,-0.00360107,-0.00323486,-0.00350952,-0.00265503,-0.00231934,-0.00146484,-0.000274658,0.000213623,0.00128174,0.00183105,0.00183105,0.00253296,0.00183105,0.0017395,0.00134277,0.000640869,0.000549316,-0.000335693,-0.000213623,0,0.000335693,0.000976562,0.00216675,0.00357056,0.00442505,0.00604248,0.00668335,0.00830078,0.00878906,0.00958252,0.0100708,0.00970459,0.00979614,0.00857544,0.00775146,0.0062561,0.00549316,0.00350952,0.00280762,0.0017395,0.000854492,0.000335693,-0.000366211,-0.000366211,-0.000579834,-0.000762939,-0.000915527,-0.000762939,-0.00125122,-0.00146484,-0.00231934,-0.00274658,-0.00344849,-0.0039978,-0.00448608,-0.00485229,-0.00469971,-0.00534058,-0.00500488,-0.00494385,-0.0045166,-0.00415039,-0.00350952,-0.00289917,-0.00253296,-0.00189209,-0.00134277,-0.000762939,-0.000366211,-6.10352e-05,0.000549316,0.000640869,0.000640869,0.000549316,0.000427246,-6.10352e-05,-0.000274658,-0.000549316,-0.000762939,-0.000793457,-0.0010376,-0.000793457,-0.000549316,-0.000549316,0,0.000152588,0.000854492,0.00161743,0.00161743,0.00238037,0.00280762,0.00302124,0.00357056,0.00372314,0.00436401,0.00473022,0.00494385,0.00570679,0.00592041,0.0062561,0.00631714,0.0062561,0.00656128,0.00631714,0.00656128,0.00570679,0.00540161,0.00506592,0.00393677,0.00408936,0.00286865,0.00274658,0.00177002,0.000976562,0.000213623,-0.000793457,-0.00161743,-0.00241089,-0.00238037,-0.00253296,-0.00210571,-0.0022583,-0.00134277,-0.00125122,-0.000427246,-0.000213623,-0.00012207,-0.00012207,-0.000335693,-0.00128174,-0.00195312,-0.00274658,-0.00378418,-0.00427246,-0.00469971,-0.00549316,-0.00521851,-0.00521851,-0.00494385,-0.00415039,-0.00408936,-0.00317383,-0.00323486,-0.00253296,-0.00238037,-0.00238037,-0.00219727,-0.00253296,-0.00289917,-0.00286865,-0.00296021,-0.00302124,-0.00274658,-0.00268555,-0.00231934,-0.00204468,-0.00177002,-0.00106812,-0.000762939,0.000152588,0.000640869,0.0015564,0.00274658,0.00296021,0.00427246,0.00457764,0.00543213,0.00527954,0.00500488,0.00442505,0.0038147,0.00302124,0.0017395,0.0010376,-0.000213623,-0.000488281,-0.000854492,-0.00134277,-0.000854492,-0.000854492,-0.000640869,-0.000335693,0.000152588,0.000427246,0.000640869,0.00112915,0.000488281,0.000976562,0.000274658,0.000366211,-0.000640869,0,-0.000701904,-0.00012207,-0.000366211,-0.000488281,-0.000366211,-0.000152588,-0.000793457,-0.00106812,-0.00189209,-0.00308228,-0.0038147,-0.00527954,-0.00674438,-0.00747681,-0.0088501,-0.00909424,-0.00949097,-0.00976562,-0.00949097,-0.00900269,-0.00863647,-0.00744629,-0.00683594,-0.00549316,-0.00521851,-0.00408936,-0.0038147,-0.00317383,-0.00311279,-0.00280762,-0.00216675,-0.00198364,-0.00146484,-0.00112915,0.00012207,0.000274658,0.00119019,0.00183105,0.0022583,0.00253296,0.00231934,0.00286865,0.00241089,0.00238037,0.00238037,0.00177002,0.00238037,0.00140381,0.00198364,0.00146484,0.0015564,0.00125122,0.00106812,0.000915527,0.000427246,0.000762939,0.000274658,0.000793457,0.000915527,0.0015564,0.00219727,0.00286865,0.00317383,0.00442505,0.00430298,0.00506592,0.00485229,0.00491333,0.00448608,0.0038147,0.00302124,0.00189209,0.000701904,6.10352e-05,-0.00183105,-0.00219727,-0.00335693,-0.00402832,-0.00448608,-0.00457764,-0.00442505,-0.00430298,-0.00344849,-0.00372314,-0.00280762,-0.00311279,-0.00308228,-0.00280762,-0.0032959,-0.0032959,-0.00387573,-0.00436401,-0.00436401,-0.00448608,-0.00430298,-0.00360107,-0.00280762,-0.00219727,-0.00112915,-0.00012207,0.000793457,0.0015564,0.00161743,0.00274658,0.00219727,0.00177002,0.00204468,0.000854492,0.000640869,-0.000335693,-0.000762939,-0.00119019,-0.00119019,-0.00106812,-0.000701904,-0.000213623,0.000762939,0.00149536,0.00238037,0.00335693,0.00457764,0.00512695,0.00613403,0.00680542,0.00726318,0.00775146,0.00753784,0.00726318,0.00701904,0.00662231,0.00604248,0.00582886,0.00527954,0.00469971,0.00415039,0.00344849,0.00253296,0.00216675,0.0015564,0.000427246,-0.000152588,-0.00149536,-0.00204468,-0.00265503,-0.00335693,-0.00296021,-0.00286865,-0.00265503,-0.00210571,-0.00106812,-0.000579834,0.000152588,0.000579834,0.000976562,0.00125122,0.00119019,0.000793457,0.00119019,0.000213623,0.000335693,-6.10352e-05,-0.000640869,-0.000579834,-0.00128174,-0.00140381,-0.00167847,-0.00216675,-0.00296021,-0.00357056,-0.00402832,-0.00491333,-0.00527954,-0.00576782,-0.00582886,-0.00631714,-0.00592041,-0.00570679,-0.00479126,-0.00366211,-0.00265503,-0.00125122,0.000366211,0.00119019,0.00302124,0.00357056,0.00436401,0.0055542,0.00540161,0.00613403,0.00561523,0.00576782,0.00457764,0.0039978,0.00289917,0.00189209,0.000488281,0.000274658,-0.00146484,-0.00134277,-0.00216675,-0.00219727,-0.00161743,-0.00177002,-0.000640869,-0.000793457,0.000152588,0.000213623,0.000579834,0.000793457,0.000488281,0.000762939,0.00012207,-0.000152588,-0.000854492,-0.000793457,-0.00128174,-0.00119019,-0.00125122,-0.00112915,-0.000915527,-0.000793457,6.10352e-05,0.00012207,0.000640869,0.000762939,0.000915527,0,-0.00012207,-0.00112915,-0.00189209,-0.00289917,-0.00442505,-0.00549316,-0.00646973,-0.00787354,-0.00823975,-0.00842285,-0.0088501,-0.00802612,-0.0071106,-0.00668335,-0.00473022,-0.0038147,-0.00241089,-0.00134277,-0.000335693,6.10352e-05,0.00012207,0.000335693,6.10352e-05,-0.000274658,-0.000213623,-0.000976562,-0.000762939,-0.000854492,-0.000701904,-0.000549316,-0.000335693,-0.000335693,-0.000152588,-0.000366211,-0.00106812,-0.000640869,-0.00134277,-0.0010376,-0.000640869,-0.000549316,0.000274658,0.000701904,0.00149536,0.00198364,0.00238037,0.00280762,0.00238037,0.0022583,0.0017395,0.00106812,0.000427246,-0.00012207,-0.000427246,-6.10352e-05,0.00012207,0.000762939,0.0017395,0.00296021,0.00350952,0.00436401,0.00448608,0.00436401,0.00338745,0.00274658,0.0010376,-0.000427246,-0.00167847,-0.00338745,-0.00366211,-0.0045166,-0.00402832,-0.00323486,-0.00231934,-0.00106812,0.000701904,0.00140381,0.00253296,0.00238037,0.00253296,0.00210571,0.000427246,-0.000427246,-0.00210571,-0.00317383,-0.00512695,-0.00527954,-0.00592041,-0.00610352,-0.00512695,-0.00408936,-0.00308228,-0.00140381,0.00012207,0.000854492,0.00216675,0.00238037,0.0022583,0.0017395,0.00119019,-0.000152588,-0.0010376,-0.00265503,-0.00286865,-0.00360107,-0.00387573,-0.0032959,-0.00253296,-0.00204468,0,0.000976562,0.00238037,0.00350952,0.00448608,0.00521851,0.00534058,0.00512695,0.00485229,0.0039978,0.00311279,0.0022583,0.00146484,0.00106812,0.000488281,0.00140381,0.000488281,0.00195312,0.00198364,0.00259399,0.00296021,0.00335693,0.00366211,0.00366211,0.00372314,0.00311279,0.00296021,0.00238037,0.0017395,0.00119019,0.000640869,0.000152588,-0.000701904,-0.00112915,-0.00183105,-0.00210571,-0.00238037,-0.00286865,-0.00238037,-0.00253296,-0.00183105,-0.00167847,-0.00140381,-0.00106812,-0.00106812,-0.000488281,-0.00146484,-0.000701904,-0.00149536,-0.00149536,-0.00219727,-0.00259399,-0.00253296,-0.00259399,-0.00247192,-0.00195312,-0.00231934,-0.00198364,-0.00231934,-0.00195312,-0.00265503,-0.00268555,-0.00286865,-0.00335693,-0.00323486,-0.00338745,-0.00302124,-0.00253296,-0.00195312,-0.00125122,-0.000488281,0.000274658,0.000762939,0.000793457,0.00140381,0.000427246,0.000854492,6.10352e-05,-0.000152588,-0.000427246,-0.000366211,-0.000579834,0.000274658,0.000427246,0.00119019,0.00167847,0.00274658,0.00259399,0.00360107,0.0032959,0.00366211,0.00280762,0.00265503,0.00183105,0.000976562,0.000854492,6.10352e-05,-0.00012207,-0.000366211,-0.000976562,-0.000488281,-0.0010376,-0.000549316,-0.000854492,-0.000152588,-0.000549316,-0.000335693,-0.000213623,-0.000335693,-0.000427246,-0.000427246,-0.000366211,-0.00119019,-0.000579834,-0.00106812,-0.00119019,-0.00128174,-0.00146484,-0.00119019,-0.00161743,-0.0010376,-0.00149536,-0.00134277,-0.00128174,-0.0017395,-0.00140381,-0.00219727,-0.00204468,-0.00259399,-0.00231934,-0.00296021,-0.00296021,-0.00311279,-0.00311279,-0.00280762,-0.00323486,-0.00231934,-0.00204468,-0.00189209,-0.00119019,-0.000854492,-0.000762939,-0.000274658,-0.000701904,-0.000335693,-0.000579834,0,-0.000274658,0.000213623,0.000274658,0.000701904,0.000701904,0.0010376,0.00125122,0.00149536,0.00106812,0.00167847,0.00161743,0.0015564,0.00134277,0.00161743,0.00161743,0.00128174,0.00149536,0.0015564,0.0010376,0.00177002,0.000488281,0.00134277,0.000762939,0.00119019,0.000854492,0.000854492,0.00119019,0.00119019,0.00112915,0.00134277,0.00161743,0.0017395,0.00198364,0.00177002,0.00216675,0.00167847,0.00167847,0.00146484,0.00106812,0.000793457,0.000152588,0.000274658,-0.000427246,-0.000213623,-0.000854492,-0.0010376,-0.00149536,-0.0017395,-0.00253296,-0.00253296,-0.00311279,-0.0032959,-0.00357056,-0.00323486,-0.00302124,-0.00280762,-0.00204468,-0.00146484,-0.000579834,-0.000335693,0.000427246,0.000762939,0.000762939,0.000640869,0.000274658,0.000213623,-0.000549316,-0.000976562,-0.000915527,-0.00167847,-0.00146484,-0.00140381,-0.00112915,-0.000854492,-0.00012207,-0.000213623,0.000152588,0.000366211,-0.000152588,-0.000152588,-0.000793457,-0.00140381,-0.00198364,-0.00238037,-0.00323486,-0.00280762,-0.00338745,-0.00268555,-0.00253296,-0.0017395,-0.00112915,-0.000152588,0.000701904,0.00161743,0.00231934,0.00308228,0.00308228,0.00357056,0.00323486,0.00296021,0.00296021,0.00183105,0.00189209,0.000854492,0.000427246,-0.000213623,-0.000701904,-0.00134277,-0.0010376,-0.00167847,-0.00149536,-0.00134277,-0.00161743,-0.00106812,-0.00128174,-0.00146484,-0.00112915,-0.00149536,-0.00134277,-0.00167847,-0.00134277,-0.00161743,-0.0015564,-0.00112915,-0.0010376,-0.000976562,0.000152588,0,0.000640869,0.000579834,0.000976562,0.000579834,0.000213623,-0.00012207,-0.000274658,-0.000793457,-0.00125122,-0.00210571,-0.00183105,-0.00268555,-0.00253296,-0.00286865,-0.00268555,-0.00259399,-0.00274658,-0.00259399,-0.00210571,-0.00268555,-0.0017395,-0.00146484,-0.00112915,-0.000701904,-0.000335693,-0.000213623,0.000274658,0.000701904,0.000488281,0.000976562,0.00112915,0.000762939,0.00112915,0.000793457,0.000579834,0.000854492,0.000488281,0.000579834,0.000213623,0.000427246,-6.10352e-05,0.000213623,-0.000549316,-0.000579834,-0.00140381,-0.00112915,-0.00204468,-0.00146484,-0.00161743,-0.00140381,-0.0010376,-0.000640869,0.00012207,0.000549316,0.000854492,0.00183105,0.0015564,0.00189209,0.00204468,0.00146484,0.00112915,0.00112915,0.000579834,0.000549316,0,-0.000274658,-6.10352e-05,-0.000701904,-0.000549316,-0.000793457,-0.000427246,-0.00146484,-0.000488281,-0.00125122,-0.0015564,-0.00128174,-0.00210571,-0.0022583,-0.00216675,-0.00241089,-0.00210571,-0.00204468,-0.00177002,-0.00128174,-0.000854492,-0.000427246,0.000366211,0.000579834,0.000915527,0.00128174,0.00161743,0.00125122,0.00149536,0.0010376,0.000854492,0.000427246,0.000793457,-0.000427246,0.000549316,0.000152588,-6.10352e-05,0.000549316,0.000579834,0.000915527,0.00128174,0.000976562,0.0015564,0.0010376,0.0010376,0.000762939,0.00012207,0,-0.000274658,-0.000701904,-0.000427246,-0.000793457,-6.10352e-05,0.000152588,0.000793457,0.00128174,0.00195312,0.00210571,0.00259399,0.00238037,0.00259399,0.00219727,0.00140381,0.000640869,0.000427246,-0.000976562,-0.00119019,-0.00146484,-0.00216675,-0.0022583,-0.00177002,-0.00210571,-0.0015564,-0.00140381,-0.00119019,-0.0010376,-0.000854492,-0.000854492,-0.00134277,-0.0010376,-0.00146484,-0.00167847,-0.00161743,-0.00183105,-0.00140381,-0.0015564,-0.00134277,-0.000854492,-0.000915527,-0.00012207,-0.000549316,-0.000152588,-0.00012207,-0.000152588,-0.000213623,-0.000213623,-0.000488281,-0.000335693,-0.000579834,-0.000335693,-0.000579834,-0.000152588,-0.000335693,-0.000335693,0.000549316,-0.000274658,0.000793457,0.000488281,0.00119019,0.00112915,0.00149536,0.00119019,0.00195312,0.0010376,0.00146484,0.00149536,0.0015564,0.00167847,0.00146484,0.00204468,0.0015564,0.00204468,0.00140381,0.00167847,0.00106812,0.000976562,0.000335693,-0.000335693,-0.000793457,-0.00112915,-0.0017395,-0.00167847,-0.00216675,-0.00167847,-0.00161743,-0.00112915,-0.000854492,0.000152588,-0.000213623,0.000640869,0.000366211,0.000274658,6.10352e-05,-0.000274658,-0.000854492,-0.0010376,-0.00106812,-0.0015564,-0.00106812,-0.00149536,-0.000640869,-0.000640869,-0.000152588,6.10352e-05,0.000213623,0.000274658,-0.000152588,-0.000488281,-0.000549316,-0.00146484,-0.0015564,-0.00231934,-0.00274658,-0.00280762,-0.00296021,-0.00311279,-0.00274658,-0.0022583,-0.00210571,-0.00128174,-0.000793457,6.10352e-05,0.000762939,0.00125122,0.00204468,0.00204468,0.00238037,0.00265503,0.00219727,0.00198364,0.00183105,0.00112915,0.00112915,0.000335693,0.000640869,0.000640869,0.000427246,0.000915527,0.00106812,0.00119019,0.00119019,0.00112915,0.000762939,0.000640869,-0.000701904,-0.000579834,-0.00195312,-0.00253296,-0.00338745,-0.00338745,-0.00350952,-0.0032959,-0.00265503,-0.00219727,-0.00119019,-0.000427246,0.000366211,0.0010376,0.00146484,0.0017395,0.00146484,0.00146484,0.00106812,0.000640869,-0.000213623,-0.00012207,-0.0010376,-0.0010376,-0.00149536,-0.00161743,-0.00195312,-0.00177002,-0.0022583,-0.00216675,-0.00274658,-0.00268555,-0.00296021,-0.00338745,-0.00335693,-0.00338745,-0.00357056,-0.00308228,-0.00302124,-0.00241089,-0.00204468,-0.0017395,-0.00125122,-0.000640869,-0.000549316,-0.000335693,-0.000152588,0.000213623,-6.10352e-05,0.000274658,0.00012207,0.000579834,0.000213623,0.000488281,0.000488281,0.000427246,0.000427246,0.000274658,0.00012207,-0.000213623,0,-0.000579834,-0.000579834,-0.000366211,-0.000640869,-0.000213623,-0.000579834,-0.00012207,6.10352e-05,-0.000274658,0.000152588,0.000274658,0.000335693,0.000579834,0.000579834,0.000793457,0.000976562,0.00149536,0.00146484,0.00167847,0.00216675,0.00204468,0.00210571,0.00161743,0.00183105,0.00112915,0.00119019,0.000152588,0.000335693,-0.000762939,-0.000640869,-0.00134277,-0.00161743,-0.00146484,-0.00241089,-0.0017395,-0.00216675,-0.00216675,-0.00183105,-0.0015564,-0.00146484,-0.0010376,-0.000488281,-0.000549316,-0.000274658,0.00012207,0.000274658,0.000427246,0.000366211,0.000488281,0.000152588,0,-0.00012207,-0.000335693,-0.000549316,-0.000549316,-0.000335693,-0.000488281,-6.10352e-05,-0.000488281,0.000427246,-0.000152588,0.000793457,0.000579834,0.000335693,0.000793457,0.000274658,0.000152588,-0.000488281,0.000152588,-0.00134277,-0.000976562,-0.00125122,-0.00167847,-0.00161743,-0.00149536,-0.00125122,-0.000793457,-0.000579834,0.000152588,0.000427246,0.00106812,0.00128174,0.0015564,0.00216675,0.00167847,0.00189209,0.00161743,0.00146484,0.000579834,0.000579834,-0.000549316,-0.000427246,-0.000793457,-0.000915527,-0.00106812,-0.000579834,-0.000640869,-0.00012207,0.000274658,-0.000335693,0.000427246,-0.000152588,6.10352e-05,-0.000915527,-0.000762939,-0.00112915,-0.0017395,-0.0017395,-0.00189209,-0.00210571,-0.00140381,-0.00128174,-0.000854492,-0.000335693,0.000152588,0.000762939,0.000488281,0.00146484,0.000915527,0.000854492,0.000762939,-0.000152588,-6.10352e-05,-0.000915527,-0.000915527,-0.0010376,-0.00128174,-0.00140381,-0.000793457,-0.00112915,-0.000640869,-0.000701904,-0.000366211,-0.000335693,-0.00012207,-0.000152588,-0.000152588,0.00012207,-6.10352e-05,0.000152588,-0.000274658,0.000762939,-0.000152588,0.000701904,0.00012207,0.00012207,0.000427246,0.00012207,0.000701904,-0.00012207,0.000549316,0.000427246,0.000701904,0.000274658,0.000915527,0.000579834,0.00112915,0.0010376,0.00112915,0.000762939,0.00106812,0.000640869,0.000427246,6.10352e-05,0,-0.000213623,-0.000549316,-0.000549316,-0.000579834,-0.00012207,-0.000549316,0.000213623,6.10352e-05,0.000549316,0.000427246,0.000762939,0.000762939,0.000640869,0.000701904,0.000274658,0,-0.000152588,-0.000854492,-0.000701904,-0.00149536,-0.00167847,-0.00167847,-0.00189209,-0.0017395,-0.00134277,-0.00149536,-0.00119019,-0.00106812,-0.000793457,-0.000640869,-0.00106812,-0.000701904,-0.000854492,-0.00128174,-0.00106812,-0.00140381,-0.0015564,-0.00183105,-0.0015564,-0.00195312,-0.00177002,-0.00161743,-0.0015564,-0.00134277,-0.00149536,-0.00119019,-0.00106812,-0.000976562,-0.000701904,-0.000915527,-0.000335693,-0.000579834,-0.0010376,-0.000579834,-0.000640869,-0.000793457,-0.00106812,-0.00119019,-0.00125122,-0.00140381,-0.00149536,-0.00149536,-0.00112915,-0.00106812,-0.000549316,-0.000366211,0.000427246,0.000640869,0.000915527,0.0015564,0.00167847,0.00106812,0.00167847,0.000793457,0.000762939,0.000274658,-0.000152588,-0.000640869,-0.000854492,-0.00134277,-0.000793457,-0.000976562,-0.00106812,-0.000549316,-6.10352e-05,-0.000579834,6.10352e-05,0,-6.10352e-05,-0.000335693,-0.00012207,-0.000579834,-0.000213623,-0.000854492,-0.000335693,-0.000335693,-0.00012207,-0.00012207,0.000549316,0.000213623,0.000701904,0.000335693,0.000335693,-0.00012207,-0.000366211,-0.000854492,-0.0010376,-0.00146484,-0.00167847,-0.00210571,-0.00210571,-0.00195312,-0.00198364,-0.00177002,-0.00140381,-0.00134277,-0.00106812,-0.000976562,-0.000976562,-0.000762939,-0.00134277,-0.0010376,-0.00140381,-0.00149536,-0.00149536,-0.00161743,-0.000976562,-0.000976562,-0.000213623,0.000213623,0.000549316,0.00119019,0.00161743,0.00183105,0.00195312,0.00183105,0.00177002,0.00106812,0.0010376,0.000335693,0.00012207,-0.000274658,-0.000213623,-0.000579834,-0.000579834,0,-0.000213623,0.000488281,0.000488281,0.0010376,0.000915527,0.00128174,0.000549316,0.00128174,0.000366211,0.000579834,0,0,-0.000152588,-0.000488281,-0.000152588,-0.000427246,-0.000366211,0.000152588,0,0.000366211,0.000274658,0.000579834,0.000427246,0.000274658,-0.000213623,0,-0.000640869,-0.0010376,-0.00106812,-0.00149536,-0.00149536,-0.00177002,-0.00177002,-0.00149536,-0.0015564,-0.00106812,-0.00128174,-0.000762939,-0.00106812,-0.000762939,-0.0010376,-0.000366211,-0.00112915,-0.000427246,-0.000976562,-0.000640869,-0.000854492,-0.000701904,-0.000854492,-0.000579834,-0.000640869,-0.000427246,-0.00012207,0,0.000640869,0.000274658,0.000854492,0.00128174,0.000762939,0.00134277,0.00106812,0.00119019,0.000854492,0.000701904,0.000640869,0.000366211,0.000549316,0.000549316,0.000640869,0.000762939,0.00106812,0.000854492,0.00125122,0.00106812,0.000701904,0.000640869,0.000366211,-0.000427246,-0.00012207,-0.0010376,-0.000640869,-0.00106812,-0.000640869,-0.000915527,-0.000274658,-0.000366211,-0.00012207,0.000488281,-0.000274658,0.000366211,-0.00012207,-0.000335693,-0.000274658,-0.00119019,-0.000579834,-0.00125122,-0.00125122,-0.00134277,-0.000854492,-0.000854492,-0.000366211,0.00012207,0.000427246,0.000335693,0.0010376,0.000701904,0.000427246,0.000640869,-0.000213623,-0.00012207,-0.000854492,-0.00112915,-0.00125122,-0.00161743,-0.00167847,-0.00146484,-0.00119019,-0.0010376,-0.000854492,0.00012207,0.000274658,0.000335693,0.000915527,0.000854492,0.000640869,0.000762939,0.000213623,0.00012207,-0.000640869,-0.000366211,-0.00112915,-0.000793457,-0.000762939,-0.000427246,-0.000152588,0.000152588,0.000488281,0.00106812,0.000579834,0.0010376,0.000579834,0.00012207,-0.000427246,-0.000854492,-0.00134277,-0.0022583,-0.00189209,-0.00274658,-0.00219727,-0.00210571,-0.00183105,-0.00140381,-0.000762939,-0.000549316,-0.00012207,0.00012207,0.000366211,0.000335693,0.000427246,-0.000152588,0.000274658,-0.000213623,-0.000213623,-0.000335693,-0.000427246,-0.000427246,-0.000335693,-0.000366211,-0.000152588,-0.00012207,-0.00012207,0.000579834,0,0.000427246,0.000579834,0.000427246,0.000335693,0.00012207,-0.000213623,-0.000213623,-0.000915527,-0.000701904,-0.00167847,-0.00146484,-0.00161743,-0.00134277,-0.00183105,-0.00112915,-0.00112915,-0.000152588,-0.000640869,0.000640869,0.000335693,0.000762939,0.00106812,0.000854492,0.000915527,0.000793457,0.000701904,6.10352e-05,-0.000213623,-0.000152588,-0.000915527,-0.000915527,-0.000854492,-0.00119019,-0.00112915,-0.00128174,-0.0010376,-0.00119019,-0.000976562,-0.00119019,-0.000701904,-0.00119019,-0.000579834,-0.000915527,-0.000488281,-0.000640869,-0.000335693,-0.000335693,0.000152588,-0.000274658,0.000488281,0,0.00012207,0.000488281,-0.00012207,0.000427246,0.00012207,0.00012207,0.000366211,0,0.000335693,0,0.000366211,-0.000274658,0.000366211,-0.000549316,-0.000335693,-0.000640869,-0.00112915,-0.00106812,-0.00125122,-0.00119019,-0.00177002,-0.000762939,-0.00134277,-0.000488281,-0.000335693,6.10352e-05,0.000366211,0.0010376,0.000854492,0.0010376,0.00112915,0.00112915,0.000915527,0.000640869,0.000854492,6.10352e-05,0.000427246,6.10352e-05,0.000213623,-6.10352e-05,-0.000213623,0.000366211,-0.000152588,0.00012207,0.000152588,-0.00012207,0.000213623,-0.000152588,-0.000335693,-0.00012207,-0.000366211,-0.000549316,-0.000335693,-0.000213623,-0.000640869,6.10352e-05,-6.10352e-05,6.10352e-05,0.000640869,0.000549316,0.000854492,0.00112915,0.000701904,0.00128174,0.000549316,0.000701904,0.000366211,-0.00012207,-0.00012207,-0.000488281,-0.000427246,-0.000701904,-0.000488281,-0.000915527,-0.000366211,-0.000701904,-0.000701904,-0.000793457,-0.00128174,-0.00134277,-0.00204468,-0.0022583,-0.00241089,-0.00280762,-0.00274658,-0.00259399,-0.0022583,-0.00219727,-0.0010376,-0.00112915,-0.000488281,0.000274658,0.000274658,0.000579834,0.000640869,0.000213623,0.000274658,-0.000427246,-0.000488281,-0.000854492,-0.000976562,-0.000976562,-0.000762939,-0.00112915,-0.000366211,-0.000488281,-0.000152588,0.00012207,0.000427246,0.000274658,0.000488281,0.000366211,0.000366211,0.000366211,0.000488281,0.000366211,0.000427246,0.000488281,0.000640869,0.000854492,0.000976562,0.00128174,0.00125122,0.00119019,0.00161743,0.00125122,0.00149536,0.00125122,0.000762939,0.00128174,0,0.000854492,0,0.000213623,0,-0.00012207,-6.10352e-05,-0.000366211,-0.000366211,-0.000488281,-0.000701904,-0.000976562,-0.000976562,-0.00125122,-0.000915527,-0.00125122,-0.00119019,-0.0010376,-0.000549316,-0.000915527,-0.000366211,-0.000335693,-0.000274658,6.10352e-05,0,-0.00012207,-0.000427246,-0.000152588,-0.000640869,-0.0010376,-0.000854492,-0.0015564,-0.00128174,-0.00177002,-0.00146484,-0.00140381,-0.00167847,-0.00134277,-0.00140381,-0.00119019,-0.00125122,-0.00119019,-0.0010376,-0.00125122,-0.0015564,-0.000976562,-0.00161743,-0.000976562,-0.0010376,-0.000701904,-0.000640869,6.10352e-05,-6.10352e-05,0.000549316,0.000793457,0.00119019,0.000579834,0.00140381,0.000854492,0.000976562,0.000701904,0.000915527,0.000366211,0.000701904,0.000274658,0.000366211,0,0.000274658,-0.000366211,-0.000335693,-0.000793457,-0.000549316,-0.00134277,-0.00119019,-0.00112915,-0.00112915,-0.000976562,-0.000701904,-0.000335693,0.000152588,0,0.000488281,0.000549316,0.000366211,0.000274658,0,-0.000213623,-0.000488281,-0.000640869,-0.00106812,-0.000762939,-0.00106812,-0.000549316,-0.000915527,0,-0.000366211,0,-6.10352e-05,-0.000366211,0,-0.000640869,-0.000793457,-0.00112915,-0.00119019,-0.00146484,-0.0015564,-0.00112915,-0.00161743,-0.00125122,-0.000549316,-0.00106812,-0.000366211,-0.000488281,-0.000335693,-0.000701904,-0.000274658,-0.000274658,-0.000488281,-6.10352e-05,-0.000366211,0.000427246,0.00012207,0.000915527,0.000640869,0.00112915,0.000976562,0.00106812,0.000366211,0.000762939,-0.000152588,-0.000274658,-0.000762939,-0.00128174,-0.0010376,-0.00146484,-0.00134277,-0.00106812,-0.000976562,-0.000152588,0,0.000274658,0.000854492,0.00128174,0.00149536,0.00167847,0.00134277,0.0015564,0.00119019,0.000793457,0.000549316,0.000366211,-0.000152588,-0.000640869,-0.000366211,-0.000549316,-0.000854492,-0.000549316,-0.000366211,-0.000488281,6.10352e-05,-0.000335693,-0.00012207,0.00012207,-0.000427246,-0.000213623,-0.000915527,-0.000579834,-0.00161743,-0.00112915,-0.00198364,-0.00146484,-0.00216675,-0.00149536,-0.00177002,-0.00149536,-0.00106812,-0.000793457,-0.000366211,-6.10352e-05,0.000274658,0.000488281,0.000488281,0.0010376,0.000579834,0.000274658,0.000366211,-6.10352e-05,-0.000579834,-0.000915527,-0.00119019,-0.0015564,-0.00198364,-0.00177002,-0.00210571,-0.00204468,-0.00198364,-0.00161743,-0.00146484,-0.000976562,-0.000762939,-0.000213623,-0.00012207,0.000488281,0.000335693,0.000640869,0.000762939,0.000549316,0.000762939,0,0.000366211,-0.00012207,-0.000213623,-0.000213623,-0.00012207,-0.000335693,0.000213623,0.000152588,0.000640869,0.000213623,0.000762939,0.000213623,0.000366211,6.10352e-05,-0.000274658,-0.000335693,-0.000854492,-0.000793457,-0.00112915,-0.0010376,-0.000854492,-0.000701904,-0.000213623,-0.000274658,0.000213623,0.000274658,0.000549316,0.000213623,0.000488281,0.000335693,0,-0.000274658,-0.000213623,-0.000274658,-0.000701904,-0.000152588,-0.000488281,0.00012207,-0.000213623,0.000274658,-0.00012207,0.00012207,-0.000152588,-0.000213623,-0.000854492,-0.000488281,-0.00140381,-0.00112915,-0.00177002,-0.00149536,-0.00177002,-0.00183105,-0.00140381,-0.00167847,-0.00119019,-0.00106812,-0.000701904,-0.000854492,-0.000549316,-0.000488281,-0.000274658,-0.000488281,-0.000335693,-0.000213623,-0.000549316,-0.000549316,-0.000488281,-0.000579834,-0.000640869,-0.000488281,-0.00112915,-0.000488281,-0.000854492,-0.000488281,-0.000976562,-0.000488281,-0.000762939,-0.000701904,-0.000793457,-0.000549316,-0.000579834,-0.000488281,-0.000427246,-0.000335693,0,0,0.000366211,0.000335693,0.000793457,0.000762939,0.000793457,0.000701904,0.00119019,0.000488281,0.000701904,0.000579834,0.000366211,0,0.000274658,-0.000213623,-0.000366211,-0.000213623,-0.000366211,-0.000427246,-0.000762939,-0.000335693,-0.000793457,-0.000488281,-0.000579834,-0.000701904,-0.000335693,-0.000915527,-0.000213623,-0.000335693,-0.000793457,0,-0.000854492,-0.000427246,-0.000579834,-0.000488281,-0.000549316,-0.000579834,-0.000640869,-6.10352e-05,-0.000549316,0.000274658,0.000152588,0.000213623,0.000854492,0.000549316,0.000213623,0.000762939,-0.000274658,0.00012207,-0.000762939,-0.0010376,-0.00125122,-0.0017395,-0.00161743,-0.00238037,-0.00146484,-0.00161743,-0.00128174,-0.000915527,-0.000335693,-0.000274658,0.000579834,0.000274658,0.000701904,0.000701904,0.000701904,0.000549316,0.000213623,0.000701904,-6.10352e-05,0,0.000152588,-0.000274658,0.000274658,0.00012207,0.000427246,0.000427246,0.000549316,0.000762939,0.000640869,0.000640869,0.000488281,6.10352e-05,0,-0.000213623,-0.000640869,-0.00112915,-0.00119019,-0.00128174,-0.00183105,-0.00146484,-0.00161743,-0.00146484,-0.0010376,-0.000701904,-6.10352e-05,-0.000152588,0.000976562,0.000549316,0.00128174,0.0010376,0.00106812,0.000640869,0.000427246,0.000152588,-0.000335693,-0.000579834,-0.000427246,-0.00128174,-0.000549316,-0.000854492,-0.000366211,-0.000335693,0.000274658,0.000213623,0.000427246,0.000274658,6.10352e-05,0.000213623,-0.000579834,-0.000579834,-0.00125122,-0.00149536,-0.00146484,-0.00177002,-0.00177002,-0.00128174,-0.00146484,-0.000793457,-0.000793457,6.10352e-05,-0.00012207,0.000549316,0.000793457,0.000579834,0.000915527,0.000701904,0.000579834,0.000274658,6.10352e-05,0,-0.0010376,-0.000579834,-0.000793457,-0.000976562,-0.000854492,-0.000915527,-0.000366211,-0.000488281,0,0,0.00012207,-0.00012207,0.000366211,-0.000427246,-0.00012207,-0.000579834,-0.000579834,-0.000854492,-0.0010376,-0.000793457,-0.000640869,-0.000640869,-0.000427246,0.000152588,0,0.000427246,0.000274658,0.000366211,0.000274658,0.000335693,-0.000335693,-0.000213623,-0.000274658,-0.000915527,-0.000488281,-0.000915527,-0.000793457,-0.000701904,-0.000915527,-0.000793457,-0.000640869,-0.00112915,-0.00128174,-0.000701904,-0.0017395,-0.000793457,-0.00149536,-0.00119019,-0.000915527,-0.000640869,-0.000427246,-6.10352e-05,6.10352e-05,0.000701904,0.000549316,0.000701904,0.000640869,0.000366211,0.000427246,-0.000213623,-0.000701904,-0.000701904,-0.00106812,-0.00128174,-0.00140381,-0.00140381,-0.00112915,-0.000854492,-0.000640869,-0.000427246,-0.000152588,0.000213623,-0.000274658,0.000427246,0.000274658,6.10352e-05,0,-0.00012207,-0.000274658,-0.000427246,-0.000274658,-0.000701904,-0.000549316,-0.000335693,-0.000427246,0.000274658,-6.10352e-05,0.000579834,0.000640869,0.000793457,0.000701904,0.0010376,0.000579834,0.000488281,0.000335693,0.00012207,-0.000549316,-0.000488281,-0.000976562,-0.00112915,-0.00112915,-0.00167847,-0.000976562,-0.00167847,-0.000915527,-0.000976562,-0.0010376,-0.000427246,-0.000701904,-0.000152588,6.10352e-05,-0.000427246,0.000549316,-0.00012207,0.000366211,0,0.00012207,0.000274658,-0.000335693,-6.10352e-05,-0.00012207,-6.10352e-05,-0.000549316,-0.000213623,-0.000335693,-0.000701904,-0.000213623,-0.000640869,-0.000213623,-0.000762939,0.00012207,-0.000366211,0,-0.000366211,0.000427246,6.10352e-05,0.000274658,6.10352e-05,0.000549316,0.000213623,0.000427246,0.000366211,0.000366211,0.000366211,0.000427246,0.000427246,0.000213623,0.000640869,-6.10352e-05,0.000366211,6.10352e-05,0.000152588,-0.000152588,6.10352e-05,-0.000335693,-0.000152588,-0.000366211,-0.000366211,-0.000488281,-0.000793457,-0.000366211,-0.00140381,-0.0010376,-0.000854492,-0.00106812,-0.0010376,-0.000915527,-0.000640869,-0.000366211,0.00012207,0,0.000701904,0.000793457,0.000854492,0.00140381,0.000793457,0.000976562,0.000701904,0.000427246,0.000488281,-0.000579834,-6.10352e-05,-0.000915527};
freunde_1_fois_baryton = (freunde_1_fois_baryton_0):((!,_));
freunde_1_fois_baryton_rtable_0(r) = (freunde_1_fois_baryton_0,r):rdtable;
| https://raw.githubusercontent.com/grame-cncm/GeekBagatelles/d09ed1362a79707d1687ed92cf0482ced2509035/freunde_1_fois_baryton_waveform.dsp | faust | freunde_1_fois_baryton_0 = waveform{-0.000793457,-0.00253296,-0.0032959,-0.00238037,-0.0015564,-0.00128174,-0.000762939,-0.00146484,-0.00216675,-0.00210571,-0.00241089,-0.0032959,-0.00189209,-0.000152588,0.000213623,0.000701904,0.000488281,0.00125122,0.00219727,0.00247192,0.00335693,0.00448608,0.00427246,0.00463867,0.00521851,0.00469971,0.00265503,0.00149536,0.00134277,0.00134277,0.000854492,-0.000976562,-0.0010376,-0.0022583,-0.00265503,-0.0032959,-0.00473022,-0.00500488,-0.0038147,-0.00259399,-0.00198364,-0.0017395,-0.00149536,-0.00112915,0.000640869,0.00241089,0.0022583,0.0010376,0.00195312,0.00219727,0.00286865,0.0022583,0.00247192,0.00302124,0.00357056,0.00183105,0.00106812,-0.000274658,-0.000976562,-0.00119019,-0.0010376,-0.000579834,6.10352e-05,0.000854492,0.00253296,0.00265503,0.00274658,0.00183105,0.00296021,0.00479126,0.00415039,0.00241089,6.10352e-05,-0.00012207,-0.000854492,-0.000793457,-0.00146484,-0.00360107,-0.00436401,-0.00427246,-0.00448608,-0.00436401,-0.00415039,-0.00231934,-0.0010376,-0.000427246,-0.000579834,-0.00189209,-0.00140381,-0.000488281,-0.00112915,-0.00198364,-0.00195312,-0.00106812,-0.000549316,-0.00140381,-0.00149536,-0.00125122,-0.000549316,0.000915527,0.00112915,0.00112915,0.000915527,0.00128174,0.000366211,-0.00119019,-0.00238037,-0.00134277,-0.00167847,-0.00134277,-0.000976562,-0.000335693,-0.0015564,-0.00195312,-0.00195312,-0.000213623,-0.000488281,-0.000640869,0.000152588,0.00112915,0.00161743,0.00146484,0.00189209,0.00231934,0.00308228,0.00448608,0.00387573,0.00360107,0.00402832,0.00421143,0.00646973,0.00668335,0.00570679,0.00512695,0.00427246,0.00274658,0.00238037,0.0017395,0.00216675,0.00421143,0.00592041,0.00506592,0.00372314,0.00280762,0.00280762,0.00323486,0.0032959,0.00241089,0.00296021,0.00344849,0.00372314,0.00360107,0.00479126,0.00518799,0.00350952,0.00210571,0.00241089,0.00149536,-0.000579834,-0.0015564,-0.000640869,-0.00146484,-0.00308228,-0.00372314,-0.00408936,-0.00408936,-0.00479126,-0.00421143,-0.00506592,-0.00393677,-0.00491333,-0.00366211,-0.0032959,-0.00265503,-0.00317383,-0.00189209,-0.00128174,-0.000427246,-0.000366211,-0.000274658,0.000640869,0.000152588,-0.00167847,-0.0017395,-0.000549316,0.00134277,0.00149536,0.00231934,0.00219727,0.00189209,0.00128174,0.000427246,-0.000579834,-0.00167847,-0.00289917,-0.00308228,-0.00280762,-0.00268555,-0.00146484,0.000549316,0.0010376,0.00204468,0.00280762,0.00323486,0.00268555,0.00360107,0.00231934,0.00146484,0.000579834,0.00125122,0.0010376,0.000579834,0.00112915,0.000793457,0.00106812,0.00219727,0.00268555,0.00302124,0.00259399,0.00128174,0.000427246,0.000213623,0.000427246,0.000579834,-0.000213623,-0.000366211,-0.0015564,-0.00134277,-0.0032959,-0.00402832,-0.00357056,-0.00286865,-0.00366211,-0.00286865,-0.00198364,-0.000640869,-0.000549316,-0.00106812,-0.00274658,-0.00335693,-0.00253296,-0.00393677,-0.0045166,-0.00442505,-0.00534058,-0.00613403,-0.00683594,-0.00726318,-0.00723267,-0.0062561,-0.00473022,-0.00640869,-0.00772095,-0.00646973,-0.00634766,-0.00619507,-0.00534058,-0.00366211,-0.00479126,-0.00479126,-0.00570679,-0.00570679,-0.00683594,-0.00662231,-0.00668335,-0.00695801,-0.00662231,-0.00744629,-0.00747681,-0.00738525,-0.00738525,-0.00656128,-0.00506592,-0.00366211,-0.00219727,-0.00149536,-0.00238037,-0.00128174,-0.00125122,-0.0010376,-0.000152588,0.000762939,0.00149536,6.10352e-05,-0.00268555,-0.00393677,-0.0039978,-0.00402832,-0.00518799,-0.00582886,-0.00588989,-0.00518799,-0.0038147,-0.00430298,-0.00241089,-0.00119019,-0.000274658,0.000335693,0.00012207,-0.000640869,-0.000488281,-0.000488281,-0.000579834,-0.00195312,-0.00198364,-0.0032959,-0.00357056,-0.00231934,-0.000488281,-0.00128174,-0.00195312,-0.00210571,-0.00140381,-0.000274658,0.00195312,0.00308228,0.00247192,0.000701904,-0.000701904,-0.000701904,-0.000854492,-0.0010376,-0.00146484,-0.000488281,-0.00161743,-0.00204468,-0.00289917,-0.00360107,-0.00268555,-0.00189209,-0.00149536,-0.00210571,-0.00112915,-0.00189209,-0.00189209,-0.00195312,-0.000701904,0,-0.000854492,-0.000549316,0.00012207,-0.000976562,-0.000762939,0.000213623,0.00128174,0.00128174,0.000640869,0.000274658,-0.0017395,-0.00286865,-0.00311279,-0.0015564,-0.0017395,-0.0015564,-0.0017395,-0.00216675,-0.0010376,-0.000762939,-0.00106812,-0.000152588,-0.000427246,-0.000701904,-0.00195312,-0.00296021,-0.00125122,-0.000335693,-0.00112915,-0.00204468,-0.00259399,-0.00274658,-0.00408936,-0.00360107,-0.00335693,-0.00177002,-0.00289917,-0.00393677,-0.00500488,-0.00457764,-0.00408936,-0.00357056,-0.00265503,-0.000976562,-0.000549316,-0.000213623,-0.00146484,-0.00106812,-0.000701904,-0.00106812,-0.00128174,-0.00128174,-0.0017395,-0.000915527,-0.000152588,-0.000579834,-0.00216675,-0.000152588,0.000854492,0.00268555,0.00219727,0.00265503,0.00317383,0.0045166,0.00640869,0.00772095,0.00701904,0.0062561,0.00582886,0.00506592,0.00421143,0.00463867,0.00469971,0.00408936,0.00360107,0.00308228,0.00311279,0.00302124,0.00448608,0.00610352,0.00793457,0.00927734,0.00900269,0.00732422,0.00695801,0.00732422,0.0062561,0.00473022,0.00357056,0.00238037,0.00106812,0.0010376,0.000701904,0,-0.0010376,-0.000152588,0.000427246,0.00106812,0.00183105,0.0017395,0.00183105,0.00366211,0.00680542,0.00793457,0.00759888,0.00570679,0.00576782,0.0071106,0.00674438,0.00646973,0.0062561,0.00674438,0.00598145,0.0062561,0.00442505,0.00268555,0.00442505,0.00619507,0.00610352,0.00549316,0.00634766,0.00656128,0.00717163,0.00802612,0.0104065,0.0113831,0.0112,0.0107117,0.0103455,0.0106201,0.010498,0.00997925,0.0110474,0.0110474,0.0111084,0.00909424,0.00817871,0.00662231,0.00747681,0.00802612,0.00866699,0.00878906,0.00747681,0.00775146,0.0085144,0.00863647,0.00857544,0.00878906,0.00976562,0.00830078,0.00747681,0.00646973,0.00570679,0.00393677,0.00360107,0.00430298,0.00463867,0.00473022,0.00506592,0.00469971,0.00561523,0.0078125,0.00933838,0.011261,0.012085,0.0109558,0.00997925,0.00964355,0.0100403,0.00921631,0.0093689,0.00866699,0.00775146,0.00723267,0.00631714,0.00753784,0.00753784,0.00888062,0.00888062,0.00753784,0.00570679,0.00387573,0.00393677,0.00442505,0.00479126,0.00506592,0.00564575,0.00540161,0.0039978,0.00357056,0.00134277,-0.000854492,-0.000915527,-0.000762939,-0.00183105,-0.00296021,-0.0039978,-0.00549316,-0.0062561,-0.00613403,-0.00689697,-0.00726318,-0.00680542,-0.00619507,-0.00640869,-0.00674438,-0.00759888,-0.00726318,-0.00683594,-0.00738525,-0.00695801,-0.00866699,-0.00949097,-0.00979614,-0.0088501,-0.00921631,-0.00857544,-0.00808716,-0.00704956,-0.00631714,-0.00653076,-0.00695801,-0.00787354,-0.00695801,-0.00680542,-0.00759888,-0.00906372,-0.0108948,-0.0120239,-0.0119629,-0.0119019,-0.0128174,-0.0143433,-0.0141296,-0.0128174,-0.0128784,-0.0136414,-0.0132446,-0.0118103,-0.0104065,-0.0093689,-0.00927734,-0.009552,-0.00842285,-0.00808716,-0.00796509,-0.00796509,-0.00619507,-0.00598145,-0.00726318,-0.00863647,-0.00927734,-0.0101318,-0.0114136,-0.012085,-0.0109863,-0.0110474,-0.0111694,-0.0126038,-0.0115967,-0.0128784,-0.0124512,-0.0116882,-0.0103455,-0.0100708,-0.0105591,-0.0112,-0.0119629,-0.0118103,-0.0119019,-0.0129395,-0.0126648,-0.0120239,-0.0124512,-0.0120239,-0.0124512,-0.0129395,-0.0135193,-0.0120239,-0.0108948,-0.0108337,-0.0114746,-0.0108337,-0.0104065,-0.011261,-0.0110474,-0.0116272,-0.0122375,-0.0114136,-0.0093689,-0.0100403,-0.00979614,-0.00909424,-0.00915527,-0.009552,-0.00921631,-0.0078125,-0.00772095,-0.00787354,-0.00732422,-0.00631714,-0.00543213,-0.00500488,-0.00442505,-0.0039978,-0.00427246,-0.00485229,-0.00610352,-0.00668335,-0.00604248,-0.00717163,-0.00845337,-0.00793457,-0.0078125,-0.00772095,-0.00747681,-0.00588989,-0.00521851,-0.00436401,-0.0039978,-0.00527954,-0.00469971,-0.00360107,-0.00241089,-0.00323486,-0.00280762,-0.0015564,-0.00149536,-0.00286865,-0.00302124,-0.00167847,-0.000762939,0.000701904,0.00106812,0.000335693,0.0022583,0.00265503,0.00259399,0.00387573,0.00549316,0.00534058,0.00561523,0.00506592,0.00469971,0.00430298,0.0039978,0.00274658,0.00134277,-0.000549316,-0.00241089,-0.00198364,-0.00335693,-0.00457764,-0.00344849,-0.00286865,-0.00317383,-0.00408936,-0.00311279,-0.0032959,-0.00247192,-0.000274658,0.00106812,0.00161743,0.00204468,0.0022583,0.00289917,0.00280762,0.00195312,0.000793457,0.00112915,0.00204468,0.0017395,0.000915527,-0.000274658,-0.00012207,6.10352e-05,0.00112915,0.0010376,0.000793457,6.10352e-05,0.0010376,0.00167847,0.0017395,0.00378418,0.00521851,0.00613403,0.00378418,0.00183105,0.00106812,-0.000335693,-0.00210571,-0.00378418,-0.00387573,-0.00311279,-0.00308228,-0.0017395,-0.000793457,0.000488281,0.000701904,0.000854492,0.000427246,0.00195312,0.00140381,0.00134277,0.0017395,0.0032959,0.00231934,0.000640869,-0.00149536,-0.00167847,-0.000335693,-0.000427246,-0.00247192,-0.00183105,-0.000549316,0.000762939,0.000579834,-0.000152588,-0.000427246,-0.00167847,-0.00119019,0.000335693,0.00106812,0.00106812,0.00189209,0.00372314,0.00448608,0.00448608,0.00463867,0.00588989,0.00744629,0.00744629,0.00723267,0.00802612,0.00836182,0.00970459,0.0101929,0.0123291,0.0128174,0.0151978,0.0167542,0.0198364,0.0224304,0.0246887,0.0260925,0.0279236,0.0292664,0.0282288,0.0253906,0.0243225,0.0242004,0.0239258,0.0239868,0.0230103,0.0231323,0.0244751,0.0253906,0.0279846,0.0308228,0.0319214,0.0316467,0.0322876,0.0323486,0.0317383,0.0296936,0.0280151,0.0296936,0.0299072,0.0288391,0.0273132,0.0260925,0.02771,0.0301208,0.0310059,0.0307617,0.0308838,0.0317078,0.0321655,0.030304,0.0296021,0.0294189,0.0278625,0.0261536,0.0238342,0.0217896,0.0196228,0.0183716,0.0180969,0.0184326,0.0194092,0.0189819,0.0174561,0.0158386,0.0144348,0.0110474,0.00933838,0.00808716,0.00814819,0.00738525,0.00613403,0.0039978,0.0032959,0.00491333,0.00619507,0.0062561,0.00457764,0.00338745,0.00274658,0.00167847,-0.000335693,-0.00302124,-0.0055542,-0.00582886,-0.00732422,-0.0102844,-0.013031,-0.0126648,-0.0118713,-0.0116882,-0.00942993,-0.00787354,-0.00817871,-0.00909424,-0.009552,-0.0101318,-0.0114136,-0.013031,-0.0141907,-0.0148621,-0.0149231,-0.0163879,-0.0168152,-0.0185547,-0.0185852,-0.0192566,-0.0195618,-0.0193481,-0.0187073,-0.0183716,-0.0171814,-0.0180054,-0.0178528,-0.01828,-0.018219,-0.0180664,-0.0186462,-0.0197144,-0.0206299,-0.0202026,-0.0178833,-0.0173035,-0.0171814,-0.01828,-0.0187988,-0.0192566,-0.0196838,-0.0212402,-0.0221558,-0.022522,-0.0220032,-0.0217285,-0.0217896,-0.0223083,-0.0220032,-0.0203247,-0.0185852,-0.0171814,-0.0161743,-0.0163879,-0.0169678,-0.0187988,-0.0188599,-0.0198975,-0.0203857,-0.0217896,-0.0223083,-0.022522,-0.0220947,-0.022644,-0.0210266,-0.0194702,-0.0162659,-0.0132446,-0.0121155,-0.0122375,-0.011261,-0.0119019,-0.0123901,-0.0123291,-0.0137939,-0.0137329,-0.0137329,-0.0141296,-0.0147095,-0.0145569,-0.0136414,-0.0141296,-0.0146179,-0.0154724,-0.0154114,-0.0160217,-0.0157471,-0.0159607,-0.0153503,-0.0148621,-0.0146179,-0.0144043,-0.0144958,-0.0140686,-0.0141296,-0.0137024,-0.0130005,-0.0141907,-0.0148621,-0.0163879,-0.0168152,-0.0175171,-0.0185852,-0.0204163,-0.0203247,-0.02005,-0.018158,-0.0168762,-0.013916,-0.0123291,-0.0111694,-0.0108948,-0.00817871,-0.00613403,-0.00457764,-0.00289917,-0.00265503,-0.00280762,-0.00448608,-0.00634766,-0.00814819,-0.0078125,-0.00726318,-0.00802612,-0.00878906,-0.009552,-0.00732422,-0.00604248,-0.00393677,-0.00308228,-0.00253296,-0.00247192,-0.00231934,-0.00280762,-0.00268555,-0.00219727,-0.00119019,-0.00183105,-0.00238037,-0.00360107,-0.00241089,-0.00247192,-0.00149536,-0.000854492,0.000640869,0.00140381,0.00241089,0.00296021,0.00350952,0.00296021,0.0010376,0.000427246,0.00125122,0.00210571,0.00167847,0.000579834,0.00253296,0.00598145,0.00662231,0.00494385,0.00479126,0.00512695,0.00512695,0.00408936,0.00216675,0.0017395,0.0022583,0.00268555,0.00183105,0.000915527,-0.000549316,-0.000335693,0.00167847,0.00402832,0.0038147,0.00280762,0.00311279,0.00350952,0.00378418,0.0022583,-0.000213623,-0.00140381,-0.000366211,0.000488281,-0.000427246,-0.000640869,-0.000427246,0.00204468,0.00366211,0.00344849,0.0022583,0.00238037,0.00366211,0.00473022,0.00357056,0.00238037,-0.000274658,-0.000701904,-0.000579834,-0.00140381,-0.00274658,-0.00198364,0.00106812,0.00302124,0.00491333,0.00415039,0.00485229,0.00442505,0.00372314,0.00350952,0.00189209,-6.10352e-05,-0.00128174,-0.00204468,-0.00128174,-0.00210571,-0.00247192,-0.000335693,0.00183105,0.00485229,0.00561523,0.00604248,0.00668335,0.0101929,0.0118713,0.0127258,0.0110474,0.0101318,0.00964355,0.00894165,0.0103455,0.0121765,0.0142822,0.0158997,0.0175171,0.0190735,0.0203247,0.0213318,0.0222473,0.025116,0.0263672,0.0260315,0.0245361,0.0227051,0.0232239,0.0236206,0.0230713,0.0235596,0.0260925,0.0294189,0.0330505,0.0335693,0.0343323,0.0343933,0.0345459,0.0366516,0.0362244,0.0334167,0.0310364,0.0303345,0.0310974,0.0307312,0.0333557,0.035675,0.0383301,0.0395508,0.0396729,0.0395508,0.0409546,0.0440369,0.047821,0.049469,0.0478516,0.0444031,0.0417786,0.0409546,0.0396118,0.0376892,0.0354004,0.0353088,0.0354614,0.0350952,0.0350952,0.0350952,0.0339966,0.0332642,0.0317078,0.0282898,0.0246887,0.0212402,0.0179443,0.0147705,0.0126648,0.0109863,0.00949097,0.00906372,0.00857544,0.00817871,0.00674438,0.00564575,0.00549316,0.00610352,0.00610352,0.00463867,0.00289917,0.000854492,0.00112915,6.10352e-05,-0.000488281,-0.0022583,-0.00350952,-0.00442505,-0.0045166,-0.00430298,-0.00296021,-0.00231934,-0.00265503,-0.00280762,-0.00485229,-0.00695801,-0.0101318,-0.0121155,-0.0130005,-0.0144958,-0.0161743,-0.018219,-0.0178833,-0.0169373,-0.018158,-0.0185547,-0.0179443,-0.0180054,-0.0196838,-0.0221558,-0.0247498,-0.0285645,-0.0316467,-0.0334778,-0.0343933,-0.0359497,-0.0370178,-0.0353088,-0.0341187,-0.0323792,-0.0316467,-0.0303955,-0.027771,-0.0264587,-0.0272827,-0.0282898,-0.0289001,-0.0283508,-0.02771,-0.0278015,-0.0270081,-0.0258179,-0.0263062,-0.0273132,-0.026886,-0.025116,-0.025177,-0.0256653,-0.0256958,-0.0257568,-0.0258789,-0.026886,-0.0265808,-0.0273132,-0.0268555,-0.0279846,-0.0290527,-0.0300293,-0.0289001,-0.0285034,-0.0279846,-0.0266113,-0.0259399,-0.025238,-0.0246277,-0.0242615,-0.0238342,-0.0231628,-0.0227356,-0.022522,-0.020874,-0.0202026,-0.0198364,-0.0190735,-0.0171814,-0.0137329,-0.0123901,-0.0122375,-0.0114746,-0.0114746,-0.0116272,-0.0123901,-0.011322,-0.0109558,-0.0106201,-0.0123291,-0.0137939,-0.0146484,-0.0147095,-0.0161743,-0.0170288,-0.015625,-0.0153198,-0.0154724,-0.0142822,-0.0142212,-0.0142822,-0.013092,-0.0142212,-0.0149841,-0.0170898,-0.0176392,-0.0189209,-0.0187988,-0.0197754,-0.0205994,-0.0211792,-0.0205383,-0.018158,-0.0178833,-0.0171509,-0.016449,-0.0152588,-0.0142212,-0.0132446,-0.0123291,-0.0120239,-0.0119629,-0.0106201,-0.00985718,-0.00796509,-0.00717163,-0.00582886,-0.00521851,-0.00350952,-0.00415039,-0.00357056,-0.00219727,-0.00119019,-0.000366211,-0.00204468,-0.00265503,-0.00427246,-0.00387573,-0.00286865,-0.00204468,-0.00253296,-0.00189209,-0.0022583,-0.00338745,-0.00161743,-0.000274658,0.000427246,0.000366211,-0.00119019,-0.00241089,-0.0038147,-0.00387573,-0.00491333,-0.00534058,-0.00485229,-0.00216675,-0.00112915,-0.00149536,-0.00198364,-0.00204468,-0.00274658,-0.0022583,-0.00198364,-0.00134277,-0.000427246,0.000701904,0.00195312,0.00259399,0.00274658,0.00274658,0.00289917,0.00344849,0.00473022,0.00549316,0.00668335,0.00485229,0.0039978,0.00378418,0.0045166,0.00265503,0.00134277,0.000366211,0.000915527,0.00302124,0.0039978,0.00469971,0.00631714,0.00717163,0.0085144,0.00613403,0.00323486,0.000762939,-0.00247192,-0.00372314,-0.00576782,-0.00662231,-0.00863647,-0.00787354,-0.00775146,-0.0071106,-0.00970459,-0.00872803,-0.00674438,-0.00360107,-0.000152588,0.00195312,0.00366211,0.00668335,0.0093689,0.0106201,0.00997925,0.0103455,0.0120239,0.0141907,0.0168152,0.0202026,0.0246277,0.0270996,0.0293274,0.030304,0.0299072,0.0291138,0.0283508,0.0281372,0.0286255,0.0306091,0.0323792,0.0328674,0.0327148,0.0322876,0.0335693,0.0326538,0.0301208,0.0298462,0.0322876,0.033905,0.0332031,0.0328369,0.0323486,0.0323792,0.0335693,0.0332031,0.0319214,0.0317383,0.0339661,0.0375671,0.0391235,0.0411377,0.0422668,0.0431213,0.043335,0.0424194,0.042572,0.0418396,0.0434875,0.0446167,0.045929,0.0458069,0.04776,0.0484619,0.0485229,0.0490417,0.0481262,0.0476074,0.0487671,0.0510864,0.0519714,0.0514221,0.0489807,0.0462036,0.0446167,0.0420837,0.0393066,0.035614,0.0318604,0.0280762,0.0259705,0.0244141,0.0241394,0.0238647,0.022522,0.0206909,0.01828,0.016449,0.0144348,0.0118713,0.00976562,0.0078125,0.0071106,0.00646973,0.00613403,0.00564575,0.0045166,0.00311279,0.00189209,0.00119019,0.000427246,6.10352e-05,-0.000701904,-0.00338745,-0.00427246,-0.00631714,-0.00796509,-0.0088501,-0.0093689,-0.0102539,-0.0118713,-0.0132141,-0.0121765,-0.0111694,-0.0115967,-0.013092,-0.0140686,-0.0165405,-0.0187073,-0.0211792,-0.0220947,-0.0239868,-0.0250549,-0.0256958,-0.0260925,-0.0258789,-0.0254822,-0.0256958,-0.0257568,-0.0271606,-0.0285645,-0.02948,-0.02948,-0.0300903,-0.0310974,-0.0317078,-0.0324402,-0.0327148,-0.0323486,-0.032074,-0.0310974,-0.0312195,-0.0301208,-0.0284729,-0.0267944,-0.0254517,-0.0245361,-0.025116,-0.0237122,-0.0239258,-0.0242004,-0.0234985,-0.0227051,-0.0223083,-0.0216064,-0.0215149,-0.0220337,-0.0231323,-0.0235596,-0.0237732,-0.025177,-0.0271606,-0.0294189,-0.0308228,-0.0320129,-0.0310364,-0.0315857,-0.0306091,-0.0310974,-0.0302429,-0.0301819,-0.0273132,-0.0270081,-0.0258179,-0.0254822,-0.0237732,-0.022583,-0.0227966,-0.0232239,-0.0236206,-0.0243225,-0.0256653,-0.0250244,-0.0243225,-0.022644,-0.0220947,-0.0218201,-0.0224609,-0.0229187,-0.0232239,-0.0220032,-0.0212402,-0.0214539,-0.0222168,-0.0221558,-0.0223083,-0.0231628,-0.0236206,-0.022583,-0.0233459,-0.0223694,-0.0217896,-0.0209656,-0.0210266,-0.0210266,-0.0213318,-0.0211182,-0.0210876,-0.019928,-0.0192566,-0.0191956,-0.0192871,-0.0205994,-0.0203857,-0.0190125,-0.017395,-0.0183411,-0.0195618,-0.020752,-0.0196228,-0.0180664,-0.01828,-0.0159607,-0.0153198,-0.0148315,-0.0154724,-0.0147705,-0.0145569,-0.0130005,-0.0116272,-0.0100403,-0.00900269,-0.00726318,-0.00473022,-0.00259399,-0.0010376,-0.000976562,-0.00140381,-0.00289917,-0.00512695,-0.00570679,-0.00592041,-0.00592041,-0.00772095,-0.00949097,-0.011322,-0.012085,-0.0130005,-0.0129395,-0.0118713,-0.0111694,-0.00909424,-0.00842285,-0.00802612,-0.00765991,-0.0071106,-0.00717163,-0.00543213,-0.00588989,-0.00662231,-0.00598145,-0.00469971,-0.0032959,-0.00140381,-0.000640869,0.000152588,0.00210571,0.00195312,0.00128174,0.0010376,-0.000152588,-0.00125122,-0.00259399,-0.00289917,-0.00415039,-0.00549316,-0.00564575,-0.00427246,-0.00335693,-0.000793457,0.00140381,0.00231934,0.00469971,0.00598145,0.00732422,0.00759888,0.00613403,0.00372314,0.00268555,0.00302124,0.00302124,0.00274658,0.0022583,0.00265503,0.00231934,0.00415039,0.0088501,0.0127869,0.0160217,0.018219,0.0191345,0.0198975,0.0220032,0.0245361,0.0261536,0.0294189,0.0306091,0.0323792,0.0344543,0.0381165,0.0412903,0.0444031,0.0461426,0.0458679,0.0454407,0.0443115,0.0454407,0.0476379,0.0486755,0.0485535,0.047699,0.0455933,0.0450134,0.0476074,0.050293,0.0505981,0.04953,0.0485229,0.0483093,0.0469055,0.0438843,0.0406799,0.0376282,0.0348816,0.032074,0.030304,0.0317078,0.0334167,0.0354004,0.0361633,0.0383301,0.040741,0.043396,0.0445251,0.0436707,0.0443726,0.0439758,0.045105,0.0458069,0.0456543,0.0447998,0.0429993,0.0400391,0.0384216,0.0384216,0.0388184,0.0368652,0.0344543,0.0341797,0.0348206,0.0354614,0.0355835,0.035614,0.0353699,0.0335693,0.032074,0.0317078,0.0322266,0.0317993,0.0303955,0.0276489,0.0249634,0.0220337,0.0192871,0.0188599,0.0185547,0.0171814,0.0142212,0.0116882,0.00842285,0.00823975,0.0085144,0.00775146,0.00610352,0.00442505,0.00421143,0.00469971,0.00576782,0.00543213,0.00534058,0.00253296,0.000701904,-0.00195312,-0.00393677,-0.0062561,-0.00823975,-0.0123901,-0.0142822,-0.0155334,-0.0163879,-0.0170898,-0.0167542,-0.015564,-0.0151367,-0.0168762,-0.0192566,-0.0193481,-0.0215454,-0.0241394,-0.0253906,-0.0266113,-0.0273132,-0.0281982,-0.0308228,-0.0323486,-0.0334167,-0.0330811,-0.0313721,-0.0305481,-0.0301208,-0.0309448,-0.0310059,-0.029541,-0.0288391,-0.0268555,-0.0254822,-0.0250549,-0.0245667,-0.0245667,-0.0242004,-0.0231628,-0.0232239,-0.0227966,-0.0234375,-0.0242004,-0.025116,-0.025177,-0.0266113,-0.0270996,-0.0280762,-0.0291138,-0.0300293,-0.0308228,-0.0308838,-0.0292664,-0.02948,-0.0291748,-0.0290527,-0.0289001,-0.0270691,-0.0272217,-0.0263977,-0.0254517,-0.0260315,-0.0260925,-0.0278015,-0.0272827,-0.0281982,-0.0293884,-0.0303955,-0.0321655,-0.0327759,-0.0336304,-0.0335388,-0.0335693,-0.033844,-0.0339661,-0.0341187,-0.0330505,-0.0330505,-0.032074,-0.032074,-0.0308838,-0.0305176,-0.0294189,-0.0273132,-0.0263062,-0.025177,-0.024353,-0.0236511,-0.0223083,-0.0218811,-0.022644,-0.0231628,-0.0240479,-0.0237732,-0.0243225,-0.0237732,-0.0231628,-0.0233459,-0.0232849,-0.0230103,-0.0231628,-0.0219421,-0.0210266,-0.0193481,-0.01828,-0.0189819,-0.0198364,-0.0209045,-0.0205994,-0.0201111,-0.0185852,-0.0203247,-0.0198975,-0.0202026,-0.0192566,-0.0190125,-0.0175171,-0.0167542,-0.0151978,-0.0158997,-0.0167236,-0.0178528,-0.0158386,-0.0134888,-0.0126648,-0.0142212,-0.0158386,-0.0151367,-0.0149841,-0.015625,-0.015564,-0.0163879,-0.0171509,-0.0194702,-0.020813,-0.0232239,-0.0229492,-0.0219421,-0.0216675,-0.0222168,-0.0209656,-0.0184326,-0.0162354,-0.0145569,-0.0121155,-0.00888062,-0.00738525,-0.00619507,-0.00598145,-0.00610352,-0.00753784,-0.0108337,-0.0146484,-0.0187683,-0.0197144,-0.0211182,-0.0206299,-0.018219,-0.0135193,-0.0107727,-0.00796509,-0.00350952,0.00317383,0.00915527,0.0139465,0.0166626,0.0175171,0.013855,0.0108337,0.00793457,0.00674438,0.00683594,0.0062561,0.00540161,0.00570679,0.0078125,0.0118713,0.0179443,0.0259705,0.0322266,0.0369873,0.0400085,0.0413818,0.0437012,0.0462952,0.0465088,0.0458069,0.0437012,0.0450134,0.0469971,0.0491638,0.0502319,0.050293,0.0515137,0.0526123,0.0543823,0.0549316,0.0547485,0.0540466,0.0530396,0.050354,0.0487366,0.0492554,0.0498657,0.0492249,0.049469,0.0509949,0.0513611,0.0505981,0.0505676,0.052124,0.0537415,0.0510559,0.0462952,0.0443726,0.0441589,0.0437622,0.0421448,0.0406799,0.0412292,0.0414429,0.0404358,0.0402527,0.0410767,0.0431824,0.0435486,0.043457,0.0422974,0.0387573,0.0345459,0.0314636,0.0291138,0.0278625,0.0256958,0.0232849,0.0203857,0.0183716,0.0175171,0.0185547,0.0196838,0.0209656,0.0233459,0.0254822,0.0240784,0.0231323,0.0232849,0.022644,0.0216064,0.0206909,0.0204163,0.0189819,0.0163269,0.0163269,0.0169373,0.01828,0.0183716,0.0180054,0.0193481,0.0210266,0.020752,0.0189819,0.0175171,0.0150452,0.0123291,0.00933838,0.00863647,0.00817871,0.00738525,0.00631714,0.00473022,0.0045166,0.00491333,0.00448608,0.0039978,0.00274658,0.00146484,-0.000976562,-0.0038147,-0.00598145,-0.00909424,-0.0115356,-0.0143433,-0.0151062,-0.0161133,-0.0151367,-0.0149231,-0.0147705,-0.0142212,-0.013916,-0.0135193,-0.0149231,-0.0157776,-0.016449,-0.0170898,-0.0178833,-0.0183411,-0.0192871,-0.019928,-0.019928,-0.0184937,-0.0175171,-0.0167236,-0.0154114,-0.0147095,-0.0136414,-0.0149841,-0.0163879,-0.0170288,-0.0168152,-0.0190125,-0.0203857,-0.0234375,-0.0255432,-0.0270691,-0.0289917,-0.0298462,-0.0306091,-0.0324402,-0.033905,-0.0341797,-0.0337524,-0.0337524,-0.0350342,-0.0351868,-0.0353699,-0.0352478,-0.035675,-0.0355225,-0.0343933,-0.0343323,-0.033783,-0.0339966,-0.0333252,-0.0328674,-0.0319214,-0.0312195,-0.0300903,-0.0287781,-0.0293274,-0.0296936,-0.0300293,-0.0299072,-0.0299683,-0.0306091,-0.0308228,-0.03125,-0.0313721,-0.0323792,-0.0331421,-0.0326538,-0.0319519,-0.0310974,-0.0303955,-0.0296936,-0.0298157,-0.0298157,-0.0300903,-0.0303955,-0.030304,-0.0303345,-0.0315247,-0.0317383,-0.0326233,-0.0326233,-0.032135,-0.031311,-0.0307312,-0.0300903,-0.0293884,-0.0279846,-0.0273743,-0.0258179,-0.0232849,-0.020813,-0.0203857,-0.0206299,-0.0192566,-0.0176392,-0.0159607,-0.0160217,-0.0154114,-0.0159607,-0.0169373,-0.0178528,-0.0174561,-0.0160217,-0.0141296,-0.0143433,-0.0150452,-0.0157471,-0.0154724,-0.0158997,-0.0174561,-0.0154114,-0.0141907,-0.0137939,-0.0157471,-0.0177307,-0.0227051,-0.0260315,-0.0286865,-0.0296936,-0.0293884,-0.0288391,-0.0296326,-0.0315857,-0.0333557,-0.032135,-0.0290527,-0.025116,-0.0228577,-0.0206909,-0.019928,-0.0177917,-0.0154114,-0.0133057,-0.0118713,-0.0123291,-0.0130005,-0.0119629,-0.00970459,-0.00796509,-0.00717163,-0.0062561,-0.00296021,-0.00106812,0.000640869,0.00204468,0.00421143,0.00473022,0.0045166,0.00512695,0.00878906,0.0133667,0.0158386,0.0167236,0.0194702,0.0219421,0.0246277,0.0278625,0.03125,0.0344849,0.0350952,0.0344543,0.0344543,0.0350342,0.0377808,0.0372925,0.0370789,0.0374451,0.0393372,0.0409241,0.0417786,0.0441895,0.0491638,0.0534058,0.0558472,0.0547485,0.0537415,0.0550842,0.0572815,0.0569153,0.056427,0.0579834,0.0585938,0.0576172,0.0541687,0.0514221,0.0505066,0.049469,0.0484009,0.0489502,0.0522766,0.053894,0.0521851,0.0485229,0.0455933,0.0431213,0.0423584,0.0426941,0.0428467,0.0416565,0.0377197,0.0328674,0.0304565,0.02948,0.0303955,0.0292664,0.0272827,0.0254822,0.0247803,0.0259705,0.0275879,0.026947,0.0255432,0.0240479,0.0228577,0.0236511,0.0245361,0.0246277,0.0230103,0.0229187,0.0234375,0.0227356,0.0238342,0.024353,0.0240479,0.0201111,0.0173035,0.0150452,0.0160522,0.0157776,0.015564,0.0142822,0.013092,0.0104065,0.00888062,0.00909424,0.0104675,0.0108337,0.00976562,0.00909424,0.0100403,0.011261,0.0110474,0.00927734,0.00668335,0.00527954,0.00506592,0.0062561,0.00723267,0.00534058,0.00421143,0.00140381,-0.000427246,-0.00216675,-0.00280762,-0.00357056,-0.00491333,-0.00723267,-0.00842285,-0.00814819,-0.00704956,-0.00775146,-0.00744629,-0.00759888,-0.00802612,-0.00863647,-0.00765991,-0.00521851,-0.00415039,-0.00549316,-0.00723267,-0.00933838,-0.00906372,-0.00845337,-0.00830078,-0.00933838,-0.00964355,-0.00985718,-0.00915527,-0.00970459,-0.0113831,-0.0126648,-0.0133057,-0.0129395,-0.0132446,-0.013031,-0.0141907,-0.0146179,-0.0165405,-0.0187073,-0.0211792,-0.0230103,-0.0231628,-0.0238647,-0.0249634,-0.025238,-0.0244751,-0.0235596,-0.0245361,-0.0237732,-0.022583,-0.0224609,-0.0243225,-0.025238,-0.0250549,-0.025177,-0.0270081,-0.0280151,-0.0278015,-0.0281982,-0.0296936,-0.0303345,-0.0305176,-0.0310059,-0.0315247,-0.0333557,-0.0335693,-0.0350342,-0.0368042,-0.0372009,-0.0358887,-0.0357971,-0.0355835,-0.0336914,-0.0318604,-0.0310059,-0.0319214,-0.0352478,-0.0357361,-0.0327759,-0.0293274,-0.0303955,-0.0332642,-0.0354614,-0.0358887,-0.0335388,-0.0320129,-0.0306702,-0.0298157,-0.0280151,-0.0276489,-0.0282898,-0.0299683,-0.03125,-0.0289917,-0.0281982,-0.0292053,-0.0298157,-0.026947,-0.0236206,-0.0224304,-0.0216675,-0.022522,-0.0236206,-0.0229187,-0.0189819,-0.0141907,-0.012085,-0.0136414,-0.0147705,-0.0149231,-0.0157776,-0.0177917,-0.0172424,-0.0152588,-0.0121155,-0.0115967,-0.0113831,-0.0144043,-0.015686,-0.0123291,-0.00878906,-0.00796509,-0.00775146,-0.00738525,-0.00866699,-0.00845337,-0.00866699,-0.0102844,-0.0123291,-0.0137939,-0.0137939,-0.0118103,-0.0125732,-0.0141907,-0.0159607,-0.0123291,-0.00958252,-0.00830078,-0.0055542,-0.00189209,6.10352e-05,0.000335693,0.000549316,0.00149536,0.000274658,-0.00289917,-0.00311279,-0.00259399,-0.00350952,-0.00350952,-0.00183105,-6.10352e-05,-0.00167847,-0.0017395,0.000579834,0.00296021,0.00436401,0.00787354,0.0102539,0.010498,0.0114136,0.0158997,0.0204773,0.0243225,0.0260925,0.0283508,0.0290527,0.0296936,0.0296936,0.0280151,0.0247803,0.0222168,0.0198364,0.0171814,0.0171814,0.0204773,0.0234375,0.025116,0.0265198,0.0294189,0.0311584,0.0322876,0.0337524,0.0344543,0.0344543,0.0326233,0.0306091,0.0296021,0.0296021,0.0286255,0.0261536,0.0244141,0.0249023,0.0256958,0.0274353,0.0270081,0.027771,0.0302429,0.0325012,0.0308228,0.0282288,0.0257568,0.0231628,0.0231628,0.024353,0.0238647,0.0216675,0.0222168,0.0263062,0.0282288,0.0279846,0.028717,0.0298157,0.0301819,0.0270996,0.0230103,0.0173035,0.0128174,0.00906372,0.00802612,0.00872803,0.00726318,0.00402832,0.00506592,0.0071106,0.00921631,0.012085,0.0153503,0.0175171,0.0190735,0.0193481,0.0190125,0.0190125,0.0180054,0.0151978,0.013855,0.0123291,0.0116882,0.0121155,0.0123901,0.0102844,0.00753784,0.00753784,0.00732422,0.00598145,0.00448608,0.00366211,0.000976562,-0.000793457,-0.0017395,-0.00350952,-0.00534058,-0.00112915,0.00302124,0.00335693,0.00366211,0.00619507,0.00808716,0.0118713,0.0143433,0.0157471,0.011322,0.000854492,-0.00772095,-0.0103455,-0.0133667,-0.0170898,-0.015625,-0.0147705,-0.0168762,-0.0177307,-0.0153198,-0.0133057,-0.00863647,-0.00415039,0.00119019,0.00366211,0.00506592,0.00335693,0.00640869,0.0127258,0.0154724,0.0134888,0.0112,0.0106812,0.0071106,0.00604248,0.00561523,0.00366211,0.000640869,0.000152588,-0.00640869,-0.0155334,-0.0162354,-0.0078125,-0.00140381,-0.00479126,-0.0133667,-0.0158997,-0.0121765,-0.00744629,-0.00366211,-0.00378418,-0.00512695,-0.0032959,0.00012207,-0.00149536,-0.00350952,-0.00335693,-0.00598145,-0.00817871,-0.00872803,-0.00592041,-0.00485229,-0.00527954,-0.00360107,-0.000152588,0.00689697,0.0123291,0.0148315,0.013916,0.00747681,0.00296021,0.00195312,-0.0015564,-0.00836182,-0.010498,-0.0161743,-0.0175781,-0.0177917,-0.0144043,-0.0161743,-0.0187683,-0.0190735,-0.0189819,-0.0118103,-0.00442505,-0.00183105,-0.00491333,-6.10352e-05,0.0100403,0.0144043,0.0133057,0.0162659,0.0203247,0.0222473,0.0264587,0.0237732,0.0149231,0.0114746,0.0125732,0.0153503,0.0146179,0.0120239,0.00668335,0.00231934,0.00372314,-0.0010376,-0.0102844,-0.0129395,-0.013031,-0.018158,-0.0271606,-0.0293884,-0.0229492,-0.0164795,-0.0126648,-0.0117493,-0.00894165,-0.00527954,-0.000427246,0.00704956,0.0122986,0.0132141,0.0140686,0.0116882,0.0134277,0.0158997,0.0151062,0.0108948,0.00598145,0.000427246,-0.00802612,-0.0137024,-0.0128784,-0.0115967,-0.0173645,-0.0266724,-0.032074,-0.0341797,-0.0344543,-0.0339966,-0.0310974,-0.0289307,-0.0301819,-0.0310974,-0.0262451,-0.0221558,-0.0163269,-0.00942993,-0.00534058,-0.00210571,-0.0010376,-0.00231934,-0.00125122,0.000976562,0.00378418,0.00576782,0.00265503,-0.00308228,-0.00512695,-0.00872803,-0.0111084,-0.0123901,-0.0146484,-0.0230103,-0.0308838,-0.0332642,-0.033783,-0.0352478,-0.0335388,-0.0298462,-0.0280762,-0.0264587,-0.025238,-0.0209656,-0.0153503,-0.00958252,-0.00680542,-0.00506592,-0.00469971,-0.00195312,0.00238037,0.00259399,0.00259399,0.00543213,0.00765991,0.00323486,-0.00140381,-0.00350952,-0.00268555,-0.00198364,-0.0039978,-0.00894165,-0.0161133,-0.018219,-0.0151062,-0.0124512,-0.0133057,-0.013855,-0.0125732,-0.0130005,-0.013916,-0.0110474,-0.00717163,-0.0032959,-0.000640869,-0.00012207,-0.00134277,0.000366211,0.00549316,0.00958252,0.00964355,0.00900269,0.0071106,0.0078125,0.00772095,0.00689697,0.0062561,0.00888062,0.00582886,0.00296021,0.00195312,0.000366211,-0.00119019,-0.000488281,-0.000976562,-0.00119019,-0.00119019,-0.000915527,-0.00241089,-0.00167847,-0.000274658,0.00161743,0.00253296,0.00317383,0.00372314,0.00448608,0.00619507,0.00878906,0.00900269,0.00506592,0.00656128,0.0103455,0.0122375,0.0117493,0.0108337,0.00836182,0.0055542,0.00543213,0.00842285,0.00909424,0.00927734,0.00683594,0.00473022,0.00436401,0.00436401,0.00604248,0.00549316,0.00427246,0.00619507,0.00900269,0.00915527,0.00738525,0.00549316,0.00662231,0.00662231,0.00915527,0.00894165,0.00653076,0.00543213,0.00744629,0.00814819,0.00765991,0.00857544,0.00958252,0.00997925,0.0106201,0.0105591,0.00900269,0.010498,0.0122375,0.0117493,0.00744629,0.00378418,0.00140381,0.000579834,0.000366211,0.000366211,-0.000793457,-0.00238037,-0.00372314,-0.00402832,-0.00265503,-0.00012207,0.00140381,0.00140381,0.00247192,0.00436401,0.00372314,0.00732422,0.00915527,0.00723267,0.00302124,0.00265503,0.00344849,0.00421143,0.00146484,-0.00265503,-0.00582886,-0.00646973,-0.00927734,-0.0128784,-0.0114746,-0.0104065,-0.0107117,-0.0102539,-0.00576782,-0.000549316,0.00259399,0.00140381,0.00302124,0.0093689,0.0132446,0.0160217,0.0177917,0.0176392,0.0166016,0.0168152,0.0203247,0.0189819,0.0135803,0.00991821,0.00631714,0.00189209,-0.00604248,-0.0121155,-0.0155334,-0.0163269,-0.0187988,-0.0230713,-0.0210266,-0.0153503,-0.0114136,-0.00933838,-0.00540161,0.00012207,0.00280762,0.00540161,0.00845337,0.00949097,0.00921631,0.0100403,0.00836182,0.0071106,0.00592041,0.00393677,0.00177002,0.00238037,0.00296021,0.00216675,0.000366211,0.00149536,0.00259399,0.00308228,0.00167847,-0.00012207,-0.0017395,-0.000976562,0.000335693,-0.00125122,-0.00335693,-0.00259399,-0.000152588,0.0010376,0.0022583,0.00167847,-0.00106812,-0.00695801,-0.0106201,-0.0123901,-0.0113831,-0.0123291,-0.0166016,-0.0168762,-0.0126648,-0.00753784,-0.00527954,-0.00866699,-0.00927734,-0.00436401,-0.00125122,0.000488281,0.000579834,-0.000488281,-0.000701904,-0.000762939,-0.00198364,-0.00427246,-0.00592041,-0.00814819,-0.00857544,-0.0071106,-0.00588989,-0.00744629,-0.00970459,-0.00915527,-0.0101929,-0.010498,-0.0104675,-0.0108948,-0.0118713,-0.0149841,-0.0169373,-0.0158386,-0.0160522,-0.0153503,-0.00991821,-0.00759888,-0.0105591,-0.0134277,-0.013092,-0.0121765,-0.00921631,-0.00378418,-0.00344849,-0.00683594,-0.00964355,-0.00836182,-0.00674438,-0.00540161,-0.00338745,-0.00302124,-0.00308228,-0.00311279,-0.00265503,-0.00494385,-0.00631714,-0.00588989,-0.00592041,-0.00958252,-0.0122375,-0.0102844,-0.00576782,-0.00592041,-0.00933838,-0.00802612,-0.00408936,-0.00442505,-0.00976562,-0.0136414,-0.00915527,-0.00317383,0.000152588,-0.000762939,-0.00189209,0.00195312,0.00619507,0.011322,0.0127258,0.0126648,0.0109558,0.00744629,0.00704956,0.00549316,0.00286865,-0.00134277,-0.00543213,-0.00726318,-0.00701904,-0.00726318,-0.00866699,-0.0108948,-0.00485229,-0.00012207,-0.00421143,-0.00949097,-0.00653076,0.000549316,0.000762939,-0.00289917,-0.00402832,-0.000640869,0.0038147,0.000366211,-0.00387573,-0.00338745,-0.000854492,-0.000549316,-0.000366211,-0.00216675,-0.00308228,-0.00210571,-0.00259399,-0.00241089,-0.00265503,-0.00372314,-0.00323486,-0.00408936,-0.00604248,-0.00598145,-0.0062561,-0.00738525,-0.00534058,-0.000366211,0.00134277,-0.000549316,-0.00512695,-0.00793457,-0.00997925,-0.0136414,-0.0172424,-0.0154724,-0.0100708,-0.00976562,-0.0144348,-0.0144958,-0.0093689,-0.00631714,-0.00564575,-0.00350952,0.000854492,0.00457764,0.00296021,-0.00146484,-0.0062561,-0.00689697,-0.0071106,-0.00958252,-0.0114746,-0.0117493,-0.0119629,-0.0115356,-0.0107117,-0.00704956,-0.0032959,-0.00231934,-0.00521851,-0.00747681,-0.00695801,-0.0062561,-0.00421143,-0.000579834,0.0015564,0.000549316,-0.00259399,-0.000915527,0.00216675,0.00350952,0.00549316,0.00527954,0.00668335,0.00985718,0.0106201,0.0104675,0.0109863,0.012085,0.0129395,0.0134277,0.0135193,0.0149841,0.018158,0.0209656,0.0220337,0.0231323,0.0257568,0.0265198,0.0279236,0.028717,0.0300903,0.0307617,0.0310364,0.0329285,0.0358582,0.0380554,0.0377197,0.0368042,0.0379028,0.0380554,0.0360107,0.0344543,0.0350952,0.036377,0.0375061,0.0391235,0.0418396,0.0440369,0.0452881,0.0437012,0.0439758,0.0442505,0.0429993,0.0398254,0.0360718,0.0330811,0.0296936,0.027771,0.0248413,0.0240784,0.0227966,0.0216675,0.0201721,0.0206909,0.0227356,0.0256042,0.0273132,0.0272217,0.0271606,0.0263062,0.0261536,0.0264587,0.0258179,0.0231323,0.0201111,0.0168152,0.0126038,0.0093689,0.0062561,0.00521851,0.00518799,0.00265503,0,-0.00308228,-0.00479126,-0.00485229,-0.0039978,-0.00357056,-0.00308228,-0.00302124,-0.0038147,-0.00436401,-0.00527954,-0.00683594,-0.00793457,-0.00991821,-0.0121765,-0.0149841,-0.0164795,-0.0183411,-0.0183411,-0.0185547,-0.0196228,-0.0198364,-0.0213928,-0.022583,-0.0241394,-0.0246277,-0.0270691,-0.0301819,-0.0321655,-0.0326538,-0.0322876,-0.0310059,-0.0291138,-0.0263672,-0.0236206,-0.0235596,-0.0243225,-0.0247803,-0.0237732,-0.0238342,-0.0237122,-0.0248413,-0.0271606,-0.0281982,-0.0292664,-0.0292664,-0.0285034,-0.0281372,-0.0286255,-0.0300903,-0.0306091,-0.0287781,-0.0272827,-0.026947,-0.025177,-0.022644,-0.0206909,-0.0198364,-0.0191956,-0.0176697,-0.0174561,-0.0171814,-0.0191345,-0.0193481,-0.0205383,-0.0202026,-0.0201111,-0.0194702,-0.0179443,-0.0180664,-0.0189209,-0.0174561,-0.0168152,-0.0146484,-0.0133667,-0.012085,-0.0132141,-0.0145569,-0.0150452,-0.0154724,-0.0150452,-0.015686,-0.0177917,-0.0194092,-0.0209045,-0.0213318,-0.0223083,-0.0220032,-0.0223083,-0.0220947,-0.0222168,-0.0216064,-0.0216675,-0.0217285,-0.0203247,-0.0185547,-0.0195618,-0.0206299,-0.020813,-0.020813,-0.0216675,-0.0211182,-0.0211182,-0.02005,-0.0203857,-0.0216064,-0.0216675,-0.0227966,-0.0239868,-0.026947,-0.0288391,-0.02948,-0.0307617,-0.0315247,-0.0315247,-0.0309448,-0.0315857,-0.0303955,-0.0286255,-0.0262451,-0.0240784,-0.0213928,-0.0189209,-0.0160522,-0.011322,-0.00457764,0.000335693,0.00387573,0.0078125,0.0110474,0.0154724,0.0231323,0.0292664,0.0326233,0.0342712,0.0347595,0.0334778,0.0324402,0.0335693,0.0347595,0.0340576,0.0315247,0.0293884,0.0289307,0.0322266,0.036377,0.0391235,0.0410767,0.043457,0.0455933,0.0482483,0.0524902,0.0559998,0.056488,0.0556641,0.0541687,0.0534668,0.052124,0.0509338,0.0512085,0.0490417,0.0466309,0.0448914,0.0453796,0.0473328,0.0500793,0.0533142,0.0541687,0.0548706,0.0557251,0.0563354,0.0579529,0.0588074,0.0578308,0.0563354,0.0542297,0.052063,0.0492249,0.046936,0.0447998,0.0413818,0.0377197,0.0352478,0.0331421,0.0296326,0.0279846,0.0273743,0.0265808,0.0253906,0.0229492,0.0216064,0.0205994,0.0210876,0.0215454,0.0205383,0.0183716,0.0166626,0.0141296,0.0131531,0.0139465,0.0140686,0.0125732,0.0103455,0.00842285,0.00796509,0.00704956,0.00817871,0.00906372,0.00793457,0.00543213,0.00280762,0.00128174,0.0022583,0.0038147,0.00415039,0.00311279,-0.000335693,-0.00311279,-0.00491333,-0.00427246,-0.00518799,-0.00744629,-0.0115967,-0.0154724,-0.0183716,-0.0203857,-0.0217896,-0.0237122,-0.0267334,-0.0297546,-0.0324402,-0.0343323,-0.0347595,-0.0331421,-0.032135,-0.0312195,-0.0316467,-0.0305481,-0.0288391,-0.0266113,-0.0246277,-0.0234375,-0.0240784,-0.0244751,-0.0245361,-0.0241394,-0.0233459,-0.0237732,-0.0240784,-0.0261841,-0.0273743,-0.0286865,-0.0286865,-0.0279236,-0.0266113,-0.0258179,-0.0239258,-0.0240784,-0.0228577,-0.0213013,-0.0198975,-0.0192566,-0.0188599,-0.0201111,-0.0223083,-0.0250549,-0.026947,-0.0293274,-0.0304565,-0.0323792,-0.0340576,-0.0359497,-0.0369873,-0.0370789,-0.0351868,-0.0341187,-0.0330505,-0.0321655,-0.0303345,-0.0300903,-0.0292053,-0.0286255,-0.02771,-0.0286865,-0.0303345,-0.0315247,-0.0332642,-0.0344849,-0.0348816,-0.0362244,-0.0376282,-0.0397644,-0.0404358,-0.0411682,-0.0412903,-0.0423584,-0.0437012,-0.0446777,-0.0460815,-0.0484619,-0.0496826,-0.0509338,-0.0524902,-0.0538025,-0.054718,-0.0552368,-0.0548706,-0.0543213,-0.0542908,-0.0550842,-0.0543823,-0.0533142,-0.050293,-0.04953,-0.04776,-0.0458679,-0.0439758,-0.0413513,-0.038147,-0.0357971,-0.0332031,-0.0315857,-0.0293884,-0.0278015,-0.0253296,-0.0222473,-0.0191956,-0.0140686,-0.0102539,-0.00689697,-0.00195312,0.00701904,0.0168152,0.0254822,0.0328674,0.0401001,0.0454407,0.0505066,0.0575256,0.0628052,0.0638733,0.0624084,0.061615,0.0585327,0.0555725,0.054657,0.0540466,0.0526123,0.0519714,0.0515747,0.0507812,0.0523376,0.0568542,0.0620422,0.0654907,0.0696411,0.0722351,0.074646,0.076416,0.0787964,0.0801086,0.0821533,0.0823059,0.0803223,0.0779419,0.077301,0.0757141,0.0743713,0.0718384,0.0699768,0.0667725,0.0646362,0.0624695,0.0610657,0.059021,0.0568542,0.0552063,0.0523987,0.0489807,0.0455017,0.0438232,0.0439758,0.0404663,0.034668,0.0284729,0.0245667,0.0220947,0.0185547,0.0149231,0.0111084,0.00549316,0.00119019,-0.00204468,-0.00415039,-0.00646973,-0.00704956,-0.00674438,-0.00817871,-0.0108948,-0.0122986,-0.0104065,-0.00598145,-0.00280762,-0.00167847,-0.000854492,-0.000427246,0.00195312,0.00540161,0.00970459,0.0131531,0.0149841,0.0161133,0.0158997,0.0149231,0.0151367,0.0169373,0.0186462,0.0173645,0.0135193,0.0085144,0.00543213,0.00274658,0.00247192,0.00125122,-0.000976562,-0.00500488,-0.00933838,-0.013031,-0.0137329,-0.0145569,-0.0146179,-0.0154114,-0.0183411,-0.020813,-0.0220337,-0.0216064,-0.02005,-0.0184937,-0.0174561,-0.0178833,-0.017395,-0.0164795,-0.0144043,-0.0121155,-0.0093689,-0.00726318,-0.00640869,-0.00704956,-0.00726318,-0.00717163,-0.00674438,-0.00689697,-0.00787354,-0.0102539,-0.013855,-0.0176392,-0.0203857,-0.0219421,-0.0223083,-0.0237732,-0.0268555,-0.0305176,-0.0334778,-0.0340576,-0.0336304,-0.0328674,-0.0319519,-0.0325623,-0.033844,-0.0357971,-0.0360107,-0.0357971,-0.0354004,-0.0351868,-0.036438,-0.0380554,-0.0398254,-0.0404358,-0.0409546,-0.0418396,-0.0422668,-0.0436096,-0.045105,-0.0450134,-0.0447388,-0.0441895,-0.0428467,-0.0410156,-0.0393982,-0.0392456,-0.0393372,-0.0384827,-0.038208,-0.0380554,-0.0375061,-0.0379944,-0.0405273,-0.0446167,-0.0493774,-0.0530396,-0.0553589,-0.0557251,-0.0577698,-0.0618286,-0.0682373,-0.0722656,-0.0735168,-0.0722656,-0.0694275,-0.0701294,-0.072113,-0.0742798,-0.0748596,-0.0725098,-0.0682373,-0.0655823,-0.0640869,-0.0637207,-0.0614929,-0.058197,-0.0519714,-0.0453186,-0.0410156,-0.0379333,-0.0371399,-0.0339661,-0.0261841,-0.0183411,-0.0152588,-0.0155334,-0.0154724,-0.0134277,-0.0106812,-0.00543213,0.000701904,0.00527954,0.00817871,0.0116272,0.0174561,0.0258789,0.0355225,0.045166,0.0535889,0.0603027,0.0647888,0.0709229,0.0776672,0.0826416,0.0823669,0.0809021,0.0786438,0.0778809,0.0761108,0.0731812,0.0699768,0.0676575,0.0670471,0.0681763,0.0681152,0.0708313,0.0752869,0.0797729,0.0834961,0.0868835,0.091156,0.093689,0.0953369,0.0976562,0.0989685,0.0981445,0.0953064,0.0904541,0.085968,0.0811157,0.0762634,0.0723267,0.0682983,0.0632629,0.0575256,0.0527039,0.0492554,0.0462341,0.0446167,0.0430603,0.0406494,0.0368042,0.0341797,0.0328369,0.0313721,0.0296326,0.0256042,0.020874,0.0168762,0.0147095,0.0119019,0.00814819,0.00402832,-0.000427246,-0.00427246,-0.00726318,-0.00909424,-0.0101929,-0.0104065,-0.0117493,-0.0136414,-0.0157471,-0.0160217,-0.0149841,-0.013855,-0.0129395,-0.0124512,-0.0119019,-0.0113831,-0.00970459,-0.00759888,-0.00689697,-0.00576782,-0.00415039,-0.00134277,0.000793457,0.00280762,0.00534058,0.00817871,0.011261,0.0128174,0.0157471,0.0180664,0.019989,0.0218811,0.0231628,0.0238342,0.0227966,0.020752,0.0178528,0.0142822,0.00979614,0.00619507,0.00308228,-0.00189209,-0.00765991,-0.0129395,-0.0154114,-0.0167236,-0.0166016,-0.0163879,-0.0163269,-0.0163879,-0.0150452,-0.0128174,-0.0088501,-0.00430298,-0.000701904,0.00195312,0.00216675,0.00296021,0.00280762,0.00311279,0.00344849,0.00140381,-0.00140381,-0.00588989,-0.00894165,-0.0127869,-0.0160522,-0.0184326,-0.0211182,-0.0244141,-0.0264587,-0.0282898,-0.030304,-0.0322876,-0.0336304,-0.0347595,-0.0360718,-0.0367126,-0.0370789,-0.0373535,-0.036438,-0.036499,-0.0368042,-0.0383911,-0.0392456,-0.0396118,-0.040863,-0.0421448,-0.0421448,-0.0438232,-0.0448303,-0.0470581,-0.0493164,-0.0516357,-0.0537415,-0.0555725,-0.0555115,-0.0557251,-0.0552979,-0.0554199,-0.0556335,-0.0550232,-0.0524292,-0.0489502,-0.0452271,-0.0422058,-0.0401001,-0.0372314,-0.0350342,-0.0323792,-0.031311,-0.0323486,-0.0346985,-0.0365906,-0.0385437,-0.040802,-0.0439148,-0.0486145,-0.0547485,-0.061615,-0.0667725,-0.0686035,-0.0693665,-0.0704956,-0.0719604,-0.0728149,-0.0730896,-0.0714111,-0.0681152,-0.0635071,-0.0575256,-0.0523376,-0.0480347,-0.0457153,-0.0409546,-0.0342712,-0.0284729,-0.0227966,-0.0170288,-0.0122986,-0.00921631,-0.00701904,-0.00592041,-0.00323486,-0.00146484,0.00338745,0.00759888,0.011261,0.0144043,0.017395,0.0223694,0.0283508,0.0351562,0.0420837,0.04776,0.0537415,0.058197,0.0627441,0.0666809,0.0698547,0.0704956,0.0678101,0.0650635,0.0625305,0.0587463,0.0568237,0.0537415,0.04953,0.0450134,0.0422974,0.0417786,0.0426941,0.0454407,0.0482483,0.0495911,0.0516968,0.0561523,0.063385,0.069519,0.0724487,0.0751343,0.0764771,0.0765991,0.0760498,0.0761108,0.0747986,0.0712585,0.0667725,0.0609131,0.0538025,0.0478516,0.0440369,0.0414429,0.0375671,0.0343323,0.0294189,0.0270081,0.0249634,0.0257568,0.0263977,0.0268555,0.0266113,0.0234985,0.0215454,0.0189209,0.0180969,0.0169678,0.015564,0.011261,0.00592041,0.00119019,-0.0017395,-0.00372314,-0.00506592,-0.0062561,-0.00732422,-0.00793457,-0.00747681,-0.00592041,-0.00265503,0.000579834,0.00238037,0.00378418,0.00366211,0.00543213,0.00701904,0.00872803,0.00921631,0.00970459,0.0107117,0.0122375,0.0117493,0.0118103,0.011261,0.0117493,0.012085,0.0120239,0.0109558,0.00900269,0.00747681,0.00588989,0.00442505,0.00408936,0.00683594,0.00949097,0.00970459,0.00830078,0.00942993,0.0118713,0.0108948,0.00900269,0.00717163,0.0062561,0.00469971,0.00393677,0.00253296,0.000762939,-0.0010376,-0.00195312,-0.00393677,-0.00506592,-0.00695801,-0.0078125,-0.00976562,-0.0114746,-0.0144348,-0.0171509,-0.0189209,-0.02005,-0.0191956,-0.0206909,-0.0222473,-0.0204773,-0.0163269,-0.0127258,-0.0104065,-0.00900269,-0.00878906,-0.00991821,-0.0108337,-0.00991821,-0.00991821,-0.0119019,-0.0133057,-0.0151978,-0.0152588,-0.0169373,-0.0220947,-0.0276489,-0.0323486,-0.0332031,-0.0329285,-0.0344849,-0.0379944,-0.0412903,-0.0387573,-0.0361023,-0.0339661,-0.030304,-0.0258179,-0.022522,-0.0179443,-0.0154114,-0.0126038,-0.0101929,-0.00793457,-0.00689697,-0.0105591,-0.0162659,-0.0220337,-0.0248413,-0.0245667,-0.0256042,-0.0262451,-0.0297546,-0.0292053,-0.0243225,-0.0187073,-0.0151062,-0.0134888,-0.0118103,-0.0088501,-0.00506592,-0.00167847,-0.000579834,-0.00265503,-0.00604248,-0.00744629,-0.00949097,-0.0117493,-0.0143433,-0.0124512,-0.0107117,-0.011322,-0.0115356,-0.00878906,-0.00814819,-0.0107727,-0.0135803,-0.0154114,-0.0143433,-0.0148621,-0.0178528,-0.0230713,-0.0258789,-0.0238342,-0.0219421,-0.0204163,-0.0175781,-0.0129395,-0.00985718,-0.00726318,-0.00323486,0.00119019,0.00366211,0.00311279,0.00408936,0.00723267,0.00985718,0.0114136,0.00970459,0.00927734,0.00726318,0.00872803,0.00927734,0.00576782,0.00335693,0.00241089,0.000488281,-0.00259399,-0.00357056,-0.00265503,-0.000579834,0.00177002,0.00198364,0.00408936,0.00613403,0.0078125,0.0120239,0.0146179,0.0169373,0.0197144,0.0206909,0.0215454,0.0218811,0.0210266,0.020813,0.0218201,0.0228577,0.0219421,0.0178528,0.0143433,0.0130005,0.0122375,0.011322,0.00933838,0.00765991,0.00613403,0.00570679,0.0062561,0.00598145,0.00723267,0.0100708,0.0114136,0.0124512,0.0142822,0.0167236,0.0184326,0.0188599,0.0206909,0.0204163,0.0187073,0.0166626,0.0143433,0.0137329,0.0114136,0.009552,0.00653076,0.0032959,0.000976562,0.000579834,-0.00125122,-0.00274658,-0.00421143,-0.00219727,0.000854492,0.00238037,0.00289917,0.00436401,0.00704956,0.00942993,0.0120239,0.0123901,0.0101318,0.00909424,0.00970459,0.00921631,0.00796509,0.00534058,0.00344849,0.00265503,0.00231934,0.00219727,0.000274658,-0.000549316,-0.000640869,6.10352e-05,-0.00012207,-0.000915527,-0.000488281,-0.00012207,0.000793457,0.00204468,0.00408936,0.00512695,0.00534058,0.00518799,0.00604248,0.00701904,0.00683594,0.00527954,0.00280762,0.00125122,0.000793457,0.000488281,-0.00149536,-0.00198364,-0.00259399,-0.00238037,-0.00338745,-0.00421143,-0.0032959,-0.000976562,0,-0.00106812,-0.000976562,0.000274658,0.000366211,-0.000213623,-6.10352e-05,-0.000793457,-0.0010376,-0.0022583,-0.00253296,-0.00335693,-0.00280762,-0.00149536,-0.00247192,-0.00430298,-0.00613403,-0.00631714,-0.00680542,-0.00634766,-0.00662231,-0.0062561,-0.00695801,-0.00888062,-0.00759888,-0.0055542,-0.00427246,-0.00415039,-0.00494385,-0.00512695,-0.00366211,-0.00204468,-0.00219727,-0.00323486,-0.00286865,-0.00183105,-0.00247192,-0.00253296,-0.00302124,-0.00286865,-0.00149536,-0.000366211,-0.000976562,-0.00161743,-0.000915527,-0.000549316,-0.00189209,-0.00128174,-0.00012207,-0.00128174,-0.00219727,-0.00280762,-0.0017395,-0.00112915,-0.00247192,-0.00296021,-0.00247192,-0.00149536,-0.0022583,-0.00198364,-0.00149536,0.000549316,0.000640869,0.000762939,0.00167847,0.00134277,0.000701904,0.000274658,-0.00012207,0.00106812,0.00289917,0.00231934,-0.000488281,-0.00195312,-0.000579834,0.000640869,0.00012207,-0.000976562,-0.000274658,0.000335693,0.00238037,0.00247192,0.0017395,0.00161743,0.00198364,0.00177002,0.000915527,-0.000274658,-0.00286865,-0.00408936,-0.00457764,-0.00549316,-0.00726318,-0.00842285,-0.00732422,-0.00518799,-0.00219727,-0.000427246,-0.0017395,-0.000213623,0.0010376,0.000976562,-0.00128174,-0.00302124,-0.00350952,-0.00238037,-0.00204468,6.10352e-05,0.000335693,-0.00195312,-0.00372314,-0.00231934,-0.00366211,-0.00518799,-0.00744629,-0.00949097,-0.0105591,-0.0123901,-0.0129395,-0.0117493,-0.011261,-0.0132141,-0.0136414,-0.0106812,-0.00796509,-0.00759888,-0.00759888,-0.0088501,-0.00830078,-0.00485229,-0.00289917,-0.00289917,6.10352e-05,0.0022583,0.00311279,-0.000274658,-0.00372314,-0.00592041,-0.0038147,-0.00500488,-0.00744629,-0.00991821,-0.0108337,-0.0132141,-0.0115356,-0.0114746,-0.0123901,-0.0127869,-0.011261,-0.0103455,-0.00991821,-0.00958252,-0.0110474,-0.0116272,-0.0110474,-0.0120239,-0.0123901,-0.00909424,-0.00695801,-0.00942993,-0.0115967,-0.00976562,-0.00646973,-0.00689697,-0.00921631,-0.00958252,-0.0102844,-0.00894165,-0.00747681,-0.00674438,-0.00927734,-0.0121155,-0.0132141,-0.0134277,-0.0141296,-0.013855,-0.0134888,-0.013855,-0.0137024,-0.0116882,-0.0114746,-0.0128784,-0.0136414,-0.0127869,-0.0112,-0.00878906,-0.00863647,-0.00814819,-0.00592041,-0.00241089,0,0.000793457,0.00274658,0.00421143,0.00674438,0.0100403,0.0113831,0.0109863,0.0104675,0.0119019,0.0106812,0.009552,0.00845337,0.00802612,0.00653076,0.00613403,0.00561523,0.00442505,0.00204468,0.00167847,0.00265503,0.00311279,0.00393677,0.00350952,0.00479126,0.00653076,0.00933838,0.0122375,0.0140076,0.0147705,0.0141907,0.0135803,0.0121765,0.0119629,0.0116272,0.0113831,0.0102539,0.00894165,0.00512695,0.00128174,-0.00128174,-0.00265503,-0.00421143,-0.00427246,-0.0039978,-0.00280762,-0.000793457,0.0010376,0.00128174,0.00280762,0.00457764,0.00662231,0.00759888,0.00787354,0.00747681,0.0071106,0.00393677,0.000701904,-0.000915527,-0.000762939,-0.00149536,-0.00177002,-0.00265503,-0.00189209,-0.00302124,-0.00210571,-0.00112915,0.00189209,0.00421143,0.00491333,0.00473022,0.00646973,0.00836182,0.0107727,0.00979614,0.00991821,0.0115967,0.0123291,0.0136414,0.0135803,0.0146484,0.0163269,0.0176697,0.019989,0.022644,0.0272827,0.0310059,0.0323792,0.033783,0.033783,0.033783,0.0319519,0.0307617,0.030304,0.0292664,0.0263977,0.0238342,0.0205383,0.0198975,0.018219,0.0159607,0.0141907,0.0134277,0.0123901,0.0106201,0.00793457,0.00469971,0.00598145,0.00817871,0.00888062,0.00598145,0.00216675,-0.000366211,0.000976562,0.00167847,0.00357056,0.00350952,0.00338745,0.00415039,0.0039978,0.00302124,0.00289917,0.00360107,0.00338745,0.0015564,6.10352e-05,-0.000793457,-0.00357056,-0.00634766,-0.00836182,-0.0102539,-0.0112,-0.0147095,-0.0173645,-0.019928,-0.0210266,-0.0213013,-0.0218201,-0.0222473,-0.0231323,-0.0221558,-0.0198364,-0.0203857,-0.0214539,-0.0216064,-0.0205383,-0.018158,-0.018158,-0.0190735,-0.0205994,-0.0216064,-0.0201111,-0.0177307,-0.0173035,-0.0178833,-0.0204163,-0.0227356,-0.0240479,-0.0247498,-0.0267334,-0.0276489,-0.0272827,-0.0266113,-0.0256653,-0.0260925,-0.0256958,-0.0244751,-0.0228577,-0.0221558,-0.0231323,-0.0235596,-0.0239868,-0.0256653,-0.0281372,-0.0303345,-0.0324402,-0.0355225,-0.039032,-0.0410767,-0.040863,-0.039032,-0.0376282,-0.0383301,-0.0388184,-0.0394592,-0.0422668,-0.0458679,-0.0487366,-0.0513,-0.0524902,-0.0541687,-0.0533752,-0.0512695,-0.047821,-0.0457153,-0.0453186,-0.0458679,-0.0434875,-0.0377808,-0.0330505,-0.0293274,-0.028717,-0.0282898,-0.0254822,-0.0203857,-0.013092,-0.00830078,-0.00350952,0.00408936,0.0132141,0.0222168,0.0325012,0.0423584,0.0491028,0.0514221,0.0539551,0.054657,0.0549316,0.0554504,0.0547485,0.0505676,0.0440979,0.0381165,0.0339661,0.0327148,0.0340576,0.035614,0.0352478,0.0337524,0.033783,0.0388489,0.04599,0.0526733,0.0575562,0.0563354,0.0568237,0.0571899,0.0604858,0.0641479,0.0666199,0.0666809,0.063385,0.0602112,0.0576172,0.057251,0.0579834,0.0585938,0.0578918,0.0567627,0.0540466,0.053833,0.0550232,0.0574036,0.0579834,0.0557861,0.0505676,0.0444031,0.0403137,0.0385437,0.0368652,0.0317993,0.0263672,0.0190735,0.0134888,0.00970459,0.00842285,0.0071106,0.00640869,0.00521851,0.00323486,0.0017395,0.0032959,0.00717163,0.0118713,0.0136414,0.0130005,0.0102539,0.0101929,0.0133057,0.0186462,0.0203857,0.0203247,0.0178833,0.016449,0.0172424,0.020813,0.0220337,0.0230103,0.0220947,0.0198975,0.0177307,0.0157776,0.0152588,0.0161743,0.0154724,0.0134888,0.0088501,0.00430298,0.00238037,0.0017395,0.00134277,-0.00140381,-0.00613403,-0.0108948,-0.0144043,-0.0161133,-0.0187988,-0.0223083,-0.025238,-0.027771,-0.0305176,-0.0342712,-0.0371399,-0.0379333,-0.0368042,-0.0333557,-0.0316467,-0.031311,-0.0305481,-0.02771,-0.024353,-0.0219421,-0.020813,-0.020813,-0.0224609,-0.0239258,-0.0253296,-0.0267944,-0.0282288,-0.0303955,-0.0326233,-0.035675,-0.038147,-0.0399475,-0.0401001,-0.0389709,-0.038208,-0.0365906,-0.0362244,-0.0358887,-0.0343323,-0.0343323,-0.0329895,-0.0341797,-0.0354004,-0.0383911,-0.0409241,-0.0444641,-0.0476379,-0.0498657,-0.0508728,-0.0506592,-0.0509338,-0.0522766,-0.0535278,-0.0527039,-0.0514832,-0.0482483,-0.045166,-0.0444641,-0.0455933,-0.0464478,-0.0466309,-0.0468445,-0.0485535,-0.0512695,-0.0557861,-0.061554,-0.0675964,-0.0745544,-0.0808411,-0.0845642,-0.087738,-0.0904846,-0.0961609,-0.101868,-0.103851,-0.102203,-0.0965271,-0.0914001,-0.0887146,-0.0880127,-0.0892639,-0.0856934,-0.0775757,-0.0655823,-0.0540161,-0.0424194,-0.0308228,-0.0212402,-0.0128174,0.00198364,0.0215149,0.0409241,0.0548096,0.0643005,0.0714722,0.0751343,0.081543,0.0853882,0.0874939,0.0864563,0.081665,0.0761108,0.0663452,0.0596008,0.0561218,0.0551453,0.0577698,0.0586548,0.059021,0.059021,0.0622559,0.0697327,0.0791321,0.0894165,0.0967407,0.0978699,0.0978394,0.100098,0.105377,0.110291,0.111237,0.110229,0.10791,0.106293,0.105164,0.108459,0.112061,0.115936,0.115845,0.112823,0.111023,0.109467,0.110443,0.110504,0.108612,0.100891,0.0895691,0.0777893,0.065918,0.0568542,0.0492554,0.0420837,0.0316467,0.0189209,0.00646973,-0.00408936,-0.0109863,-0.0146179,-0.0170898,-0.0195618,-0.0250549,-0.032135,-0.0343933,-0.0310974,-0.025116,-0.0216064,-0.0231323,-0.0255432,-0.0261536,-0.0228577,-0.0176392,-0.0130005,-0.0102539,-0.00964355,-0.00830078,-0.00588989,0.000152588,0.00582886,0.0122375,0.0154114,0.0167542,0.0180664,0.0204773,0.0250244,0.0276489,0.0291748,0.0281982,0.0249634,0.0203857,0.0164795,0.0133057,0.00958252,0.00421143,-0.0022583,-0.00900269,-0.0171509,-0.0245361,-0.0291748,-0.0327759,-0.0346985,-0.0372925,-0.0401611,-0.0426331,-0.043457,-0.0413513,-0.0369263,-0.0306091,-0.0272827,-0.0217285,-0.0171509,-0.0112,-0.00415039,0.000976562,0.00485229,0.0062561,0.00656128,0.00656128,0.00683594,0.00613403,0.00344849,-0.000549316,-0.00518799,-0.0107727,-0.0158997,-0.0204163,-0.0238647,-0.0279846,-0.031311,-0.0357971,-0.0393982,-0.0417175,-0.0436096,-0.0444031,-0.045166,-0.0455933,-0.0472717,-0.0498047,-0.0515747,-0.0533142,-0.0529175,-0.0533752,-0.0531006,-0.0547485,-0.0574036,-0.0588684,-0.0597839,-0.0592957,-0.0587463,-0.058197,-0.0583801,-0.0596008,-0.0601501,-0.06073,-0.0613403,-0.0621338,-0.0639648,-0.0673218,-0.0710449,-0.0769653,-0.0827942,-0.0897827,-0.0966492,-0.103638,-0.108551,-0.114807,-0.119385,-0.124786,-0.130646,-0.134583,-0.135986,-0.1362,-0.134094,-0.132324,-0.129456,-0.125275,-0.12085,-0.115356,-0.108398,-0.100586,-0.0915222,-0.0857544,-0.0787964,-0.0664978,-0.0476074,-0.0303345,-0.0185852,-0.00479126,0.0102844,0.0279236,0.0461426,0.0642395,0.0773926,0.0848999,0.0900269,0.0939331,0.0956116,0.0959473,0.0958252,0.0922852,0.0854797,0.0769653,0.0724487,0.0683899,0.0645142,0.0654297,0.0704041,0.0759583,0.0803528,0.0865479,0.0956726,0.106232,0.115234,0.123871,0.132599,0.139923,0.144653,0.147522,0.148438,0.147308,0.146759,0.146118,0.144562,0.14328,0.141266,0.139801,0.137177,0.133118,0.128967,0.126007,0.124451,0.122131,0.118134,0.110321,0.0996094,0.0871582,0.0762634,0.0675964,0.0569153,0.0438232,0.030304,0.017395,0.00793457,-0.00259399,-0.0115967,-0.0206299,-0.0291138,-0.0348206,-0.038269,-0.0395203,-0.0401001,-0.0412292,-0.0420532,-0.0419312,-0.0397339,-0.0358887,-0.0322266,-0.0305176,-0.0310974,-0.032135,-0.0303955,-0.0279846,-0.0242615,-0.0216064,-0.0176392,-0.0164795,-0.0166626,-0.0153198,-0.0115967,-0.0078125,-0.00402832,-0.00210571,-0.00210571,-0.00134277,0.000335693,0.00189209,0.0032959,0.00372314,0.00408936,0.00302124,0.00265503,0.00125122,0.000976562,0.00012207,-0.00119019,-0.00479126,-0.00836182,-0.0115967,-0.0137024,-0.0148315,-0.0163879,-0.0180969,-0.0214539,-0.0238647,-0.0246887,-0.0216675,-0.0168152,-0.0116272,-0.00738525,-0.00289917,0.00204468,0.00808716,0.0151367,0.0214539,0.0254517,0.0282898,0.0284119,0.0280151,0.0267334,0.0239868,0.0204163,0.0157776,0.00863647,0.00268555,-0.00512695,-0.0112,-0.0176697,-0.023407,-0.0286255,-0.0332642,-0.0369873,-0.0393066,-0.0416565,-0.042572,-0.0441895,-0.0455322,-0.0476379,-0.0482483,-0.0483398,-0.0483398,-0.0481873,-0.0486755,-0.0487366,-0.0498962,-0.0523376,-0.0534058,-0.0543823,-0.0553589,-0.0560608,-0.059021,-0.0623169,-0.065918,-0.0682983,-0.0707092,-0.0741577,-0.0770874,-0.0801392,-0.0833435,-0.0877075,-0.0924377,-0.0966492,-0.101013,-0.105103,-0.109039,-0.113342,-0.117188,-0.121368,-0.124817,-0.128754,-0.130493,-0.131897,-0.133026,-0.133118,-0.132172,-0.128052,-0.120667,-0.115143,-0.108673,-0.104401,-0.0994873,-0.0912476,-0.0806885,-0.0670471,-0.0522156,-0.0355225,-0.0238342,-0.0141296,-0.000427246,0.0161133,0.0351868,0.0537415,0.0679626,0.0738525,0.0771179,0.0794067,0.083374,0.0883484,0.0908203,0.0881653,0.0808105,0.0694275,0.0624695,0.0604858,0.0611267,0.0625305,0.0639343,0.064209,0.0647278,0.0702209,0.0798645,0.0920715,0.104187,0.112366,0.119659,0.126221,0.133575,0.140472,0.146484,0.150208,0.149506,0.147156,0.144409,0.142731,0.141327,0.140411,0.137054,0.131836,0.126068,0.120422,0.117279,0.114868,0.113892,0.108917,0.101013,0.0908813,0.0810242,0.0735779,0.0671692,0.0583801,0.0457153,0.0317078,0.0185547,0.00598145,-0.00485229,-0.0128784,-0.0211182,-0.0300903,-0.0396729,-0.0454407,-0.0487671,-0.0484619,-0.0476379,-0.0457458,-0.0434875,-0.0418396,-0.0383911,-0.0339966,-0.0300293,-0.0252686,-0.0213318,-0.0180969,-0.0166626,-0.0148621,-0.0130005,-0.0118713,-0.00927734,-0.00894165,-0.00921631,-0.0106812,-0.0119019,-0.0129395,-0.0116882,-0.0104065,-0.0111694,-0.0137024,-0.0157776,-0.0171814,-0.0175171,-0.0153198,-0.0128784,-0.00976562,-0.00802612,-0.00759888,-0.00640869,-0.00308228,0.000640869,0.0038147,0.00592041,0.00527954,0.00540161,0.00518799,0.00421143,0.00274658,0.000335693,-0.00146484,-0.00280762,-0.00534058,-0.00674438,-0.00738525,-0.00561523,-0.00286865,0.0010376,0.00534058,0.0107727,0.0146484,0.0184937,0.022522,0.0255432,0.0265198,0.0263977,0.0250244,0.0222168,0.01828,0.0130005,0.00717163,-0.000152588,-0.00787354,-0.0158386,-0.022522,-0.0270996,-0.0315857,-0.0354614,-0.0405273,-0.0439148,-0.0462036,-0.0466309,-0.0471497,-0.047821,-0.0479126,-0.0464478,-0.0465088,-0.0466309,-0.0458069,-0.0432129,-0.0417786,-0.0418701,-0.0415955,-0.0426941,-0.043457,-0.0446167,-0.0446777,-0.0468445,-0.0492249,-0.0530396,-0.0545959,-0.0553589,-0.0569153,-0.0592957,-0.0614929,-0.0638733,-0.0670471,-0.0720215,-0.0761719,-0.0765991,-0.0722656,-0.0687256,-0.0678101,-0.0692139,-0.0693665,-0.0692139,-0.0676575,-0.0666199,-0.0646362,-0.0640869,-0.0635986,-0.063385,-0.0621948,-0.0635986,-0.0641479,-0.0638733,-0.0603638,-0.0579529,-0.0562134,-0.0539551,-0.0489807,-0.0423584,-0.036438,-0.0300293,-0.0211792,-0.0116272,-0.00106812,0.00772095,0.0161743,0.0261536,0.0358582,0.0421448,0.0460815,0.0481262,0.0501709,0.0496521,0.047699,0.0460815,0.0443115,0.0391846,0.0344543,0.0311584,0.0274963,0.0254822,0.0246277,0.0249634,0.0259705,0.0283508,0.032135,0.038147,0.0440369,0.0502319,0.0556335,0.0595703,0.0649414,0.069519,0.0737305,0.0754089,0.0752563,0.0734253,0.0715332,0.0694885,0.0657654,0.0626221,0.0597229,0.0562744,0.0522156,0.0501404,0.0475464,0.0470581,0.0467224,0.047821,0.0482483,0.0481262,0.0479126,0.0462341,0.0464172,0.0455933,0.0436707,0.0410767,0.0363159,0.0310059,0.0249023,0.019928,0.0158997,0.0117493,0.00717163,0.00357056,0.000335693,-0.00265503,-0.00296021,-0.00259399,-0.00189209,-0.00125122,-0.000579834,0.00247192,0.00582886,0.00909424,0.0134277,0.0170898,0.0195007,0.0213318,0.023407,0.0240479,0.024353,0.0242615,0.0227356,0.0221558,0.02005,0.0176392,0.015564,0.0127258,0.0100403,0.00857544,0.00512695,0.00195312,-0.000549316,-0.00219727,-0.00323486,-0.0032959,-0.0032959,-0.00357056,-0.00506592,-0.00598145,-0.00613403,-0.00494385,-0.00512695,-0.00576782,-0.00668335,-0.00653076,-0.00674438,-0.00753784,-0.00747681,-0.00765991,-0.00808716,-0.00787354,-0.00674438,-0.00512695,-0.00302124,-0.00491333,-0.00775146,-0.00906372,-0.00814819,-0.00640869,-0.00521851,-0.00491333,-0.00387573,-0.00274658,-0.0015564,-0.000488281,0.000335693,0.00216675,0.00350952,0.00393677,0.00402832,0.00286865,0.00265503,0.00183105,-0.00012207,-0.00119019,-0.000640869,-0.00125122,-0.00268555,-0.00335693,-0.00448608,-0.00393677,-0.00344849,-0.00588989,-0.00747681,-0.00747681,-0.00759888,-0.00701904,-0.00723267,-0.00830078,-0.00878906,-0.00985718,-0.0116272,-0.0100403,-0.009552,-0.00863647,-0.0071106,-0.00772095,-0.00814819,-0.00592041,-0.00653076,-0.00674438,-0.00360107,-0.00500488,-0.00430298,-0.00286865,-0.00479126,-0.00372314,-0.00357056,-0.00427246,-0.00302124,-0.00308228,-0.00408936,-0.00357056,-0.00393677,-0.00430298,-0.00402832,-0.0055542,-0.0062561,-0.00613403,-0.00656128,-0.00634766,-0.00701904,-0.00744629,-0.0071106,-0.0078125,-0.00909424,-0.00997925,-0.0101318,-0.011261,-0.0106812,-0.0132446,-0.0159607,-0.0163269,-0.0186462,-0.0191956,-0.020752,-0.0230103,-0.0216064,-0.0206299,-0.0213318,-0.0213928,-0.0209045,-0.0205383,-0.0204163,-0.0197144,-0.0198364,-0.0209045,-0.0220337,-0.022583,-0.0224609,-0.0232849,-0.0240784,-0.025177,-0.0255432,-0.0258179,-0.0248413,-0.0259399,-0.0248413,-0.0247498,-0.0247498,-0.0227966,-0.0229187,-0.0223083,-0.0221558,-0.0197754,-0.0163269,-0.0163879,-0.016449,-0.0149231,-0.0147095,-0.0142212,-0.013031,-0.0137024,-0.0142822,-0.0154114,-0.0168762,-0.0178833,-0.0178528,-0.0170898,-0.0165405,-0.0158997,-0.0154114,-0.0143433,-0.0135803,-0.0121765,-0.0102539,-0.00787354,-0.00491333,-0.00338745,-0.00323486,-0.000793457,0.00112915,0.00210571,0.00335693,0.00436401,0.00527954,0.00527954,0.00500488,0.00534058,0.0045166,0.00521851,0.00549316,0.00582886,0.00604248,0.00701904,0.00695801,0.00921631,0.0107727,0.0123291,0.0139465,0.0153198,0.0163879,0.017395,0.0183716,0.0192566,0.01828,0.0186462,0.0184326,0.0179443,0.0163269,0.0158997,0.0144958,0.0136414,0.0127258,0.0116272,0.0104675,0.0101929,0.010498,0.0111694,0.0118713,0.0117493,0.0112,0.0125122,0.0123291,0.0119629,0.0126038,0.0123901,0.0129395,0.0124512,0.0118713,0.0117493,0.011261,0.0111084,0.0109558,0.0102539,0.0100403,0.00894165,0.00863647,0.0088501,0.00793457,0.00772095,0.00744629,0.00802612,0.00866699,0.00845337,0.0088501,0.00933838,0.0111694,0.0115356,0.0125732,0.0124512,0.0135193,0.0122375,0.0126648,0.0108337,0.0103455,0.00836182,0.00759888,0.00619507,0.00570679,0.00442505,0.00335693,0.00274658,0.00146484,0.00183105,0.00210571,0.00308228,0.00421143,0.00485229,0.00512695,0.00564575,0.00534058,0.00634766,0.00695801,0.00732422,0.00823975,0.00765991,0.00772095,0.00717163,0.00680542,0.00640869,0.00592041,0.00674438,0.00582886,0.00640869,0.00640869,0.00662231,0.00662231,0.00668335,0.00610352,0.00656128,0.00717163,0.0071106,0.00787354,0.00772095,0.00747681,0.00866699,0.00842285,0.00845337,0.00863647,0.00802612,0.00656128,0.00726318,0.00717163,0.0071106,0.00668335,0.00817871,0.00836182,0.00921631,0.00866699,0.0093689,0.00997925,0.0107117,0.00933838,0.00787354,0.00683594,0.00457764,0.00350952,0.00146484,-0.000640869,-0.00128174,-0.00219727,-0.00219727,-0.00311279,-0.00494385,-0.0045166,-0.00534058,-0.00534058,-0.00656128,-0.00765991,-0.00738525,-0.00646973,-0.00521851,-0.00683594,-0.00747681,-0.00793457,-0.00646973,-0.00701904,-0.00906372,-0.0104675,-0.0121765,-0.0114136,-0.0128784,-0.0144958,-0.0154114,-0.0153198,-0.0153503,-0.0149841,-0.0149841,-0.0142212,-0.0129395,-0.0107727,-0.0116272,-0.0115967,-0.0117493,-0.0132141,-0.0130005,-0.0126038,-0.0121765,-0.0126038,-0.013031,-0.0128174,-0.0128784,-0.0128174,-0.0133667,-0.0134277,-0.0151978,-0.0158997,-0.0164795,-0.0184326,-0.0189209,-0.0205383,-0.0220947,-0.0220032,-0.0230713,-0.023407,-0.0229492,-0.0230103,-0.0224609,-0.019928,-0.0177917,-0.0171814,-0.0167542,-0.0154114,-0.0139465,-0.0135803,-0.0127258,-0.013855,-0.0144043,-0.0139465,-0.0140076,-0.013855,-0.0146484,-0.0176697,-0.0194092,-0.020752,-0.022644,-0.0224609,-0.0231323,-0.0238647,-0.0232849,-0.0211792,-0.01828,-0.0160217,-0.0131531,-0.0115356,-0.00765991,-0.00344849,-0.000976562,0.00106812,0.00216675,0.00296021,0.00177002,0.00167847,-0.000366211,-0.00161743,-0.00473022,-0.00836182,-0.0104675,-0.0128174,-0.0137939,-0.015564,-0.0148315,-0.0134277,-0.0126038,-0.0107727,-0.00817871,-0.0038147,-0.00106812,-0.000274658,-0.000335693,0.00128174,0.00323486,0.00494385,0.00408936,0.00241089,0.00238037,0.00317383,0.00253296,0.0017395,0.00204468,0.00335693,0.00564575,0.00723267,0.00872803,0.0104065,0.0141907,0.0167542,0.0201721,0.0211182,0.0227966,0.023407,0.0254517,0.0262451,0.0258179,0.0246887,0.0239258,0.0230103,0.0212402,0.0205994,0.0189209,0.0192871,0.0174561,0.0172424,0.0171509,0.0178833,0.0187683,0.0198975,0.0203247,0.0215454,0.0217896,0.0216064,0.0216675,0.0223694,0.0227051,0.0230103,0.0211182,0.0195618,0.0184326,0.0178528,0.0169678,0.0170288,0.0180054,0.018219,0.0190735,0.019928,0.0201111,0.0202637,0.020874,0.0231323,0.0235596,0.0245361,0.0236206,0.022522,0.020813,0.0194702,0.0179443,0.0175781,0.0170898,0.0154114,0.0141296,0.0127258,0.0118713,0.0114746,0.0111694,0.0119629,0.0123901,0.0134277,0.0137024,0.0140076,0.0140076,0.0147705,0.0153198,0.0151978,0.0148621,0.0153503,0.0160217,0.017395,0.0173645,0.0167236,0.0166016,0.0163269,0.0153503,0.013855,0.0137939,0.0135803,0.0127869,0.0113831,0.0106201,0.00949097,0.00775146,0.00689697,0.00463867,0.00393677,0.00357056,0.0032959,0.00308228,0.0022583,0.0015564,0.000152588,-0.00195312,-0.00506592,-0.00808716,-0.00991821,-0.0103455,-0.013855,-0.0164795,-0.0195618,-0.0198364,-0.0203247,-0.0205383,-0.0211182,-0.02005,-0.0206299,-0.020813,-0.0212402,-0.0209656,-0.0220947,-0.0230103,-0.0227356,-0.0230103,-0.0256653,-0.0292664,-0.03125,-0.0307312,-0.0285645,-0.0292664,-0.0275574,-0.0258789,-0.0262451,-0.0274353,-0.029541,-0.030304,-0.0292664,-0.0281372,-0.0282898,-0.0302429,-0.0309448,-0.0310974,-0.0320129,-0.0348816,-0.0372314,-0.0406799,-0.0421448,-0.0411682,-0.0422974,-0.0439148,-0.0467834,-0.0480347,-0.0462952,-0.0450745,-0.0460815,-0.0489807,-0.0531006,-0.0549316,-0.0559387,-0.0588989,-0.0630188,-0.0653381,-0.0674133,-0.0701904,-0.0747681,-0.0781555,-0.0806274,-0.081604,-0.0834961,-0.0847168,-0.0851135,-0.0860901,-0.0856018,-0.0829468,-0.07547,-0.0650635,-0.0544434,-0.0423584,-0.0285034,-0.0133057,0.00323486,0.0202637,0.0332642,0.0422058,0.0485535,0.0524902,0.0566406,0.0580444,0.056488,0.0512695,0.0440369,0.0341187,0.0257568,0.0193481,0.0160522,0.0171814,0.0185852,0.0198364,0.0246277,0.0298157,0.0389099,0.0506592,0.0600586,0.067749,0.0704041,0.0732422,0.0751343,0.0762634,0.0763855,0.074585,0.0713501,0.0670471,0.0620422,0.0592957,0.0587463,0.0608521,0.0648804,0.0690308,0.0714111,0.0757751,0.0820923,0.0909729,0.0978699,0.100586,0.100891,0.0977173,0.0938416,0.0897827,0.0835876,0.0741272,0.0625916,0.0519714,0.0415039,0.0313721,0.0231628,0.0172424,0.0127869,0.00845337,0.0038147,0.000274658,-0.00128174,-0.00161743,0.000366211,0.00146484,0.000793457,-0.000640869,-0.00167847,-0.000854492,-0.00012207,0.000701904,0.000335693,0.000427246,0.00012207,0.000152588,0.00161743,0.00427246,0.00842285,0.0126648,0.015564,0.0183716,0.0211182,0.0247803,0.0296326,0.0339661,0.0358887,0.0367737,0.036377,0.0353699,0.0346985,0.0330811,0.0330505,0.0296326,0.0247803,0.0191956,0.0139465,0.00802612,0.00323486,-0.000976562,-0.00561523,-0.0108948,-0.0172424,-0.0217896,-0.0237122,-0.0238647,-0.0229187,-0.022583,-0.0229187,-0.0247498,-0.0244141,-0.0224609,-0.0184326,-0.0163879,-0.0162354,-0.0176697,-0.0192871,-0.0192566,-0.0176392,-0.0168152,-0.0162659,-0.0165405,-0.0173035,-0.0194702,-0.0210876,-0.0217896,-0.0224609,-0.0237732,-0.0270691,-0.0317383,-0.0361023,-0.0388184,-0.040741,-0.0419922,-0.0458069,-0.0500183,-0.0535889,-0.0568542,-0.0583191,-0.0592346,-0.0592957,-0.0603027,-0.06073,-0.0630188,-0.0636597,-0.0635376,-0.0624084,-0.0618286,-0.0621338,-0.0646362,-0.0664978,-0.068512,-0.0686035,-0.0688782,-0.0709229,-0.0743713,-0.0794067,-0.0837708,-0.0870972,-0.0915222,-0.0960083,-0.1008,-0.106842,-0.110657,-0.116211,-0.122131,-0.127747,-0.133606,-0.137268,-0.138092,-0.137329,-0.137329,-0.136536,-0.132904,-0.12207,-0.10025,-0.0737915,-0.04953,-0.0274963,-0.00814819,0.013916,0.0406494,0.0690918,0.0896301,0.101288,0.10202,0.0958252,0.0914001,0.0899658,0.0881653,0.0846863,0.0700073,0.0514832,0.0361023,0.0258789,0.0280151,0.0372925,0.0431213,0.0464172,0.0483398,0.0535889,0.0676575,0.0838013,0.0978699,0.106354,0.107544,0.103333,0.101074,0.0994873,0.100891,0.102936,0.1008,0.0942078,0.0882874,0.0877075,0.0930176,0.104523,0.114594,0.119659,0.121857,0.121979,0.128174,0.137238,0.144409,0.14444,0.137177,0.123535,0.109161,0.09552,0.0831604,0.0701294,0.0521851,0.0308228,0.00878906,-0.00808716,-0.018158,-0.0224304,-0.0261841,-0.0328674,-0.0398254,-0.0455017,-0.0453796,-0.0432129,-0.0400391,-0.0393982,-0.0405273,-0.0417175,-0.0430603,-0.043457,-0.0420837,-0.0419312,-0.0413818,-0.0405884,-0.0390625,-0.0358887,-0.0300903,-0.0213928,-0.0107727,-0.000701904,0.00933838,0.0178833,0.0264587,0.0357971,0.0443115,0.0519104,0.0559387,0.058197,0.0577698,0.0542908,0.0524292,0.0489807,0.0471191,0.0416565,0.0331421,0.0228577,0.0142822,0.00668335,0.00216675,-0.00302124,-0.00878906,-0.0149841,-0.020752,-0.024353,-0.0258179,-0.0249634,-0.0223694,-0.0204163,-0.0187073,-0.0163269,-0.0136414,-0.00991821,-0.00296021,0.00393677,0.00894165,0.0120239,0.0133057,0.0157776,0.0191956,0.0216064,0.0220032,0.0206909,0.0177307,0.0130005,0.00738525,0.00372314,0.000366211,-0.00378418,-0.0108337,-0.0187073,-0.0264587,-0.0310974,-0.0353088,-0.0389099,-0.0455322,-0.0535889,-0.0613403,-0.0666199,-0.0693665,-0.0718384,-0.0762024,-0.0808411,-0.0851746,-0.0880737,-0.0897827,-0.0906677,-0.0915833,-0.0914001,-0.0930176,-0.0948181,-0.0974426,-0.0976562,-0.0977173,-0.0991211,-0.102356,-0.1073,-0.113983,-0.119537,-0.125153,-0.130829,-0.13739,-0.143707,-0.151886,-0.158783,-0.165314,-0.167908,-0.166595,-0.163788,-0.160309,-0.155884,-0.146545,-0.126709,-0.0968018,-0.0653687,-0.0390625,-0.0165405,0.00241089,0.0270996,0.0553589,0.081665,0.0984802,0.103699,0.0970154,0.0888367,0.0843506,0.081604,0.07724,0.0668945,0.0481873,0.0308228,0.0192871,0.0192871,0.0310059,0.0430603,0.052002,0.0576172,0.0645142,0.0782471,0.0976257,0.115845,0.128662,0.13324,0.131195,0.126282,0.122986,0.12085,0.11853,0.11377,0.10434,0.0949707,0.0874939,0.0865479,0.0927124,0.103424,0.113953,0.118622,0.120148,0.124939,0.134033,0.145569,0.152374,0.150757,0.139771,0.124176,0.107788,0.0947571,0.0814514,0.0644226,0.0410767,0.015686,-0.00723267,-0.0218201,-0.0301819,-0.0362244,-0.0426331,-0.0497437,-0.0556335,-0.0585327,-0.0561218,-0.0522156,-0.0486755,-0.0465698,-0.0472717,-0.0491638,-0.0515747,-0.053894,-0.0548706,-0.0551453,-0.056366,-0.0586853,-0.0608521,-0.0611877,-0.056366,-0.0464172,-0.0370789,-0.0274963,-0.019989,-0.0128174,-0.00421143,0.00570679,0.015686,0.0253296,0.0315247,0.033844,0.0339661,0.0344849,0.035675,0.0358582,0.0342712,0.0298157,0.0231628,0.0160522,0.00979614,0.00613403,0.00317383,6.10352e-05,-0.00216675,-0.00491333,-0.00793457,-0.00921631,-0.00888062,-0.00683594,-0.00268555,0.000152588,0.00119019,0.00238037,0.00479126,0.0114746,0.0186462,0.0249023,0.027771,0.0286865,0.0292664,0.0298157,0.0332642,0.0353699,0.0358582,0.0329285,0.0289917,0.0259399,0.0238342,0.0220032,0.0197144,0.0161743,0.00888062,0.00308228,-0.0032959,-0.00753784,-0.0111694,-0.0170288,-0.0232239,-0.03125,-0.0388184,-0.0460205,-0.052002,-0.0575256,-0.0626221,-0.0679016,-0.0726013,-0.07724,-0.079834,-0.0820312,-0.0823669,-0.0823059,-0.0821838,-0.0818176,-0.0821533,-0.0826721,-0.0836487,-0.0846252,-0.0876465,-0.0916748,-0.0975647,-0.103699,-0.110596,-0.118896,-0.12619,-0.133942,-0.141907,-0.150482,-0.158722,-0.166565,-0.171082,-0.169769,-0.1651,-0.160095,-0.15329,-0.140961,-0.121613,-0.0956116,-0.069519,-0.043457,-0.020813,-0.000915527,0.022522,0.0460205,0.0657654,0.0812378,0.0876465,0.086731,0.0832214,0.0773926,0.0728149,0.0668945,0.0557861,0.0429077,0.0303345,0.0217285,0.0229492,0.0307312,0.0386963,0.0466309,0.0521851,0.0643616,0.0785217,0.0934753,0.107361,0.119019,0.126343,0.126984,0.127625,0.126556,0.124298,0.119385,0.113556,0.105927,0.0966492,0.0881348,0.0835876,0.0846252,0.0862427,0.0879517,0.0920715,0.097229,0.103851,0.112427,0.121765,0.128052,0.130341,0.128448,0.123199,0.115601,0.106628,0.0953979,0.0810547,0.060791,0.0404358,0.0220337,0.00527954,-0.00921631,-0.0223694,-0.0361023,-0.047699,-0.0562744,-0.0618896,-0.0625305,-0.0627441,-0.0622559,-0.0601501,-0.0579834,-0.0561218,-0.0542908,-0.0524292,-0.0510559,-0.0497437,-0.049469,-0.0492249,-0.0486755,-0.0489502,-0.0469055,-0.0442505,-0.0422668,-0.039032,-0.0343323,-0.029541,-0.025116,-0.0186462,-0.0119019,-0.00491333,0.000854492,0.00704956,0.0124512,0.0159607,0.0198975,0.0222168,0.0223694,0.0211182,0.0184937,0.0152588,0.0116272,0.00726318,0.00280762,-0.00119019,-0.00613403,-0.0110474,-0.0147705,-0.0175171,-0.0187073,-0.0183716,-0.0171814,-0.0161743,-0.0144348,-0.0101929,-0.00463867,0.00241089,0.00796509,0.0132446,0.017395,0.0206299,0.0244751,0.0283508,0.0315247,0.0333557,0.0325623,0.0317993,0.0298462,0.0280151,0.0265198,0.0247498,0.0218201,0.018219,0.0149841,0.0120239,0.0101318,0.00717163,0.00427246,0.000335693,-0.00491333,-0.00964355,-0.013855,-0.0194092,-0.0247498,-0.0310974,-0.0377808,-0.0450745,-0.0522766,-0.0567017,-0.0596008,-0.0618286,-0.0621948,-0.0610657,-0.0606995,-0.0595703,-0.058197,-0.0558472,-0.0531006,-0.0514221,-0.0489502,-0.0474243,-0.0487671,-0.0513611,-0.0516357,-0.053833,-0.0583191,-0.0646667,-0.0688782,-0.0726624,-0.0776672,-0.0844116,-0.0911865,-0.0966492,-0.0991821,-0.0996094,-0.0962219,-0.0906677,-0.0844116,-0.0766602,-0.068512,-0.0577393,-0.0438232,-0.028717,-0.0147705,-0.00280762,0.00814819,0.020874,0.03125,0.0377808,0.0410156,0.0424805,0.0411682,0.040802,0.0386353,0.0353088,0.0289917,0.0213013,0.0149841,0.00964355,0.00613403,0.00576782,0.00796509,0.0101929,0.0137329,0.0178528,0.0231628,0.0316467,0.0402222,0.0488281,0.0541687,0.0576782,0.0600891,0.0618286,0.0604248,0.0580444,0.054657,0.0499573,0.0437012,0.0363159,0.0310059,0.0275574,0.0254822,0.0242615,0.0241394,0.0252686,0.0278625,0.0334167,0.0403748,0.0465088,0.0524902,0.0578308,0.0629578,0.0666809,0.0683899,0.0686035,0.0664062,0.0621338,0.0544434,0.0473633,0.0386963,0.0289001,0.0194092,0.00985718,0.000549316,-0.00772095,-0.0137024,-0.0158997,-0.0187683,-0.0184326,-0.0188599,-0.0170288,-0.013092,-0.00814819,-0.00393677,0.00161743,0.00695801,0.0108337,0.0158997,0.0187073,0.0202637,0.0220032,0.0222473,0.0206299,0.01828,0.015625,0.0121155,0.00976562,0.00656128,0.00549316,0.0039978,0.00238037,0.00317383,0.00360107,0.00540161,0.00570679,0.00787354,0.009552,0.0121155,0.0141296,0.0145569,0.0155334,0.0151062,0.0128784,0.0103455,0.00717163,0.00366211,-0.000213623,-0.0039978,-0.00765991,-0.0118103,-0.0149231,-0.0178528,-0.0203247,-0.0213013,-0.0231323,-0.0231323,-0.0229187,-0.0220337,-0.0211792,-0.0194092,-0.0162354,-0.0105591,-0.00500488,0.00112915,0.00500488,0.00753784,0.0119019,0.0137024,0.0147095,0.0147095,0.0148315,0.0132446,0.0116882,0.0112,0.0106201,0.011322,0.0122375,0.0104065,0.0085144,0.00448608,0.000488281,-0.00259399,-0.00436401,-0.00793457,-0.00997925,-0.011261,-0.0118713,-0.013031,-0.012085,-0.0107117,-0.00942993,-0.00619507,-0.00674438,-0.00598145,-0.00543213,-0.00527954,-0.00469971,-0.00387573,-0.00469971,-0.00634766,-0.00772095,-0.00997925,-0.0114746,-0.013855,-0.0161133,-0.0179443,-0.0189209,-0.0229187,-0.0239868,-0.0259399,-0.0273132,-0.0274963,-0.0286255,-0.0284119,-0.0279236,-0.0273132,-0.0246277,-0.0237122,-0.0218201,-0.0201721,-0.0191345,-0.0178528,-0.0164795,-0.0151978,-0.0176392,-0.0161133,-0.0171814,-0.0187988,-0.0190735,-0.0213318,-0.0222168,-0.0221558,-0.0236206,-0.0240784,-0.0239258,-0.0243225,-0.0241394,-0.022644,-0.0217896,-0.0190735,-0.0153503,-0.0133667,-0.00976562,-0.0055542,-0.00323486,-0.000152588,0.0017395,0.00204468,0.00238037,0.00216675,0.000915527,-0.000427246,-0.0015564,-0.00427246,-0.00534058,-0.0062561,-0.0078125,-0.00949097,-0.0100403,-0.0113831,-0.0104065,-0.0102844,-0.0101929,-0.00906372,-0.00775146,-0.00610352,-0.00344849,-0.00195312,0.000152588,0.00238037,0.00360107,0.00534058,0.00619507,0.00668335,0.00704956,0.00753784,0.0062561,0.00570679,0.00408936,0.00357056,0.00296021,0.00296021,0.00125122,0.000640869,0.000152588,0.000579834,0.000152588,0.000915527,0.000701904,0.000152588,0.00146484,0.00195312,0.00241089,0.00357056,0.00415039,0.00512695,0.00473022,0.00631714,0.00561523,0.00656128,0.00732422,0.00775146,0.00772095,0.00680542,0.00674438,0.00646973,0.00674438,0.00732422,0.00680542,0.00772095,0.00787354,0.00900269,0.0104065,0.0122375,0.0132446,0.0151062,0.0160522,0.0168762,0.0174561,0.0188599,0.0203857,0.0209045,0.0206299,0.0197144,0.0187073,0.0179443,0.0168152,0.0164795,0.0151978,0.0129395,0.0114746,0.0107117,0.0103455,0.0104065,0.0106201,0.0100403,0.00985718,0.00921631,0.00949097,0.00909424,0.00997925,0.0093689,0.00964355,0.00830078,0.00793457,0.00680542,0.0062561,0.00695801,0.00549316,0.00527954,0.00427246,0.00338745,0.00415039,0.00421143,0.00469971,0.00393677,0.0039978,0.00378418,0.0038147,0.00323486,0.00247192,0.00134277,0.000579834,-0.000427246,-0.00210571,-0.00308228,-0.00473022,-0.00656128,-0.0071106,-0.00668335,-0.00888062,-0.00836182,-0.00921631,-0.00942993,-0.00817871,-0.00814819,-0.00823975,-0.00793457,-0.00775146,-0.00704956,-0.00653076,-0.00564575,-0.00494385,-0.00479126,-0.00506592,-0.00518799,-0.00543213,-0.00570679,-0.00534058,-0.00646973,-0.00656128,-0.00732422,-0.00866699,-0.00814819,-0.00796509,-0.00808716,-0.00808716,-0.00866699,-0.00814819,-0.00772095,-0.00717163,-0.00588989,-0.00485229,-0.00338745,-0.00210571,-0.000640869,0.000427246,0.00274658,0.00350952,0.00534058,0.00668335,0.00775146,0.00814819,0.0088501,0.00866699,0.00894165,0.00872803,0.00888062,0.00726318,0.00759888,0.00646973,0.00613403,0.00604248,0.00479126,0.00350952,0.00265503,0.00238037,0.00204468,0.00231934,0.00128174,0.0010376,0.000640869,-0.000213623,-0.000213623,-0.000701904,-0.00119019,-0.00134277,-0.00128174,-0.00274658,-0.00357056,-0.00500488,-0.00518799,-0.00543213,-0.00540161,-0.00680542,-0.00717163,-0.00814819,-0.00836182,-0.00759888,-0.00814819,-0.00845337,-0.00836182,-0.00927734,-0.00921631,-0.00915527,-0.0104065,-0.010498,-0.0104065,-0.0116272,-0.0119629,-0.0123291,-0.0136414,-0.0132141,-0.0133057,-0.013916,-0.0139465,-0.0135193,-0.013916,-0.0124512,-0.0126038,-0.0123291,-0.0117493,-0.0106201,-0.0112,-0.0104065,-0.0102844,-0.00979614,-0.00894165,-0.00845337,-0.00878906,-0.00958252,-0.0103455,-0.0105591,-0.0102844,-0.00949097,-0.00894165,-0.00872803,-0.00836182,-0.00738525,-0.00646973,-0.00561523,-0.00421143,-0.00335693,-0.00259399,-0.00125122,-0.00161743,-0.000549316,-0.000213623,0.000213623,0.000762939,0.000640869,-0.000579834,-0.0010376,-0.00112915,-0.0017395,-0.00268555,-0.00350952,-0.00448608,-0.00473022,-0.00366211,-0.00372314,-0.00238037,-0.00198364,-0.00177002,-0.000488281,0.00106812,0.0022583,0.00344849,0.00442505,0.00570679,0.00561523,0.00598145,0.00613403,0.00674438,0.00701904,0.00759888,0.00653076,0.00689697,0.0062561,0.00634766,0.0062561,0.00695801,0.00717163,0.0071106,0.00759888,0.00814819,0.00845337,0.00915527,0.00878906,0.0088501,0.00933838,0.00906372,0.00915527,0.00878906,0.00753784,0.00738525,0.00717163,0.00683594,0.00640869,0.00646973,0.00576782,0.00634766,0.00631714,0.00704956,0.00680542,0.00738525,0.00842285,0.00921631,0.00976562,0.00958252,0.00979614,0.0100708,0.0101929,0.0100403,0.00949097,0.00933838,0.00888062,0.00775146,0.00747681,0.00668335,0.00500488,0.00518799,0.00415039,0.00436401,0.00512695,0.00512695,0.00506592,0.00592041,0.00610352,0.00753784,0.00814819,0.0085144,0.00845337,0.00915527,0.0088501,0.00921631,0.00927734,0.00866699,0.00836182,0.00683594,0.00619507,0.00588989,0.00598145,0.00646973,0.00747681,0.00695801,0.00604248,0.00469971,0.00506592,0.0055542,0.00592041,0.00518799,0.00448608,0.00469971,0.00491333,0.00408936,0.00491333,0.00689697,0.00704956,0.00689697,0.00576782,0.00521851,0.00527954,0.00576782,0.00564575,0.00473022,0.00479126,0.0039978,0.00408936,0.00430298,0.00500488,0.00540161,0.00695801,0.00793457,0.00872803,0.00704956,0.00582886,0.00430298,0.00280762,0.00204468,0.000427246,-0.00415039,-0.00704956,-0.00866699,-0.0122375,-0.013916,-0.0160217,-0.0178833,-0.0189209,-0.0186462,-0.0184937,-0.0187073,-0.0174561,-0.0163269,-0.0132141,-0.0116272,-0.00900269,-0.00759888,-0.0071106,-0.0055542,-0.00534058,-0.00543213,-0.00570679,-0.00747681,-0.00985718,-0.0118713,-0.0150452,-0.0178833,-0.0204163,-0.0232239,-0.0258789,-0.0280762,-0.0314331,-0.0348206,-0.0374451,-0.0387573,-0.0389099,-0.0387573,-0.0389099,-0.0386047,-0.0371399,-0.0357971,-0.0332642,-0.0303955,-0.0256653,-0.020752,-0.0161133,-0.0109863,-0.00653076,-0.0032959,0.000915527,0.00430298,0.00619507,0.00695801,0.00582886,0.00357056,0.00183105,-6.10352e-05,-0.00296021,-0.00506592,-0.00796509,-0.00970459,-0.0106201,-0.0113831,-0.0107117,-0.0104675,-0.00927734,-0.00747681,-0.00598145,-0.00491333,-0.00335693,-0.00195312,-0.000915527,-0.000793457,-0.00134277,-0.00265503,-0.00323486,-0.0045166,-0.00576782,-0.00738525,-0.00787354,-0.00793457,-0.00634766,-0.00521851,-0.0038147,-0.000274658,0.00296021,0.00726318,0.0106812,0.0141296,0.018158,0.0216675,0.0255432,0.0289001,0.0305176,0.0317383,0.0327759,0.0332642,0.0320129,0.0315247,0.0291138,0.0275574,0.0256653,0.0234985,0.0213318,0.0197754,0.0184326,0.0191345,0.0180969,0.0180664,0.0169373,0.0165405,0.0163879,0.0168762,0.0162659,0.0159607,0.015625,0.0150452,0.0147705,0.0140076,0.0128784,0.0122375,0.0111084,0.0101929,0.00949097,0.00921631,0.0093689,0.00970459,0.0105591,0.011261,0.0113831,0.0133667,0.0148621,0.0176697,0.0197754,0.0209045,0.0215149,0.0227051,0.0236206,0.0246277,0.025116,0.0242004,0.0237122,0.0220032,0.020813,0.018219,0.0157776,0.013031,0.00933838,0.00582886,0.00177002,-0.00140381,-0.00372314,-0.00473022,-0.00631714,-0.00726318,-0.00921631,-0.00866699,-0.00775146,-0.00582886,-0.00408936,-0.00378418,-0.00338745,-0.00161743,0.000152588,0.00204468,0.00219727,0.00289917,0.00219727,0.00280762,0.00317383,0.00268555,0.00335693,0.00286865,0.00308228,0.00231934,0.000335693,-0.000762939,-0.000793457,-0.000549316,-0.00161743,-0.00241089,-0.00259399,-0.00146484,-0.0017395,-0.00167847,-0.00167847,-0.0017395,-0.00259399,-0.00344849,-0.00469971,-0.00561523,-0.00704956,-0.00888062,-0.0113831,-0.0133667,-0.0160522,-0.0176392,-0.0194702,-0.0214539,-0.0254517,-0.0294189,-0.0339661,-0.0365906,-0.040802,-0.0447998,-0.0486145,-0.0509338,-0.0559998,-0.0609741,-0.0655823,-0.0691528,-0.0715637,-0.0736389,-0.0756226,-0.0775757,-0.0802612,-0.0821533,-0.0834351,-0.0844116,-0.0844727,-0.0823669,-0.0792847,-0.0755005,-0.0707703,-0.0631714,-0.0519714,-0.0385437,-0.0249634,-0.0118103,0.00119019,0.0142212,0.0256958,0.0349731,0.0410767,0.043457,0.0426331,0.0417786,0.0385437,0.0351868,0.0296021,0.0229492,0.0168762,0.0114746,0.00906372,0.00802612,0.00796509,0.0104065,0.0129395,0.0170898,0.0213318,0.0260925,0.0319214,0.0362854,0.0397644,0.0399475,0.0403748,0.0393066,0.0376282,0.0358887,0.0339966,0.0319519,0.0303345,0.0303955,0.0314636,0.0348816,0.0386047,0.0439148,0.0493164,0.0550232,0.0599976,0.0649414,0.069519,0.0736694,0.076416,0.07724,0.0760498,0.0728149,0.0697021,0.0648499,0.0579529,0.049469,0.0413513,0.0319519,0.0240784,0.0165405,0.00888062,0.00259399,-0.00436401,-0.0108337,-0.0166626,-0.0222473,-0.0276489,-0.0319519,-0.0361633,-0.0388489,-0.040802,-0.0415649,-0.0417175,-0.040863,-0.0389709,-0.0372009,-0.0341797,-0.0308838,-0.0272827,-0.0233459,-0.018219,-0.0134888,-0.00894165,-0.00436401,-0.000854492,0.00289917,0.0071106,0.0116882,0.0153198,0.0189209,0.0215454,0.0246277,0.0276489,0.0310364,0.0344543,0.0371399,0.0372314,0.0378418,0.0369873,0.0354614,0.0317993,0.0282898,0.0218201,0.0144043,0.00653076,-0.00012207,-0.00631714,-0.0126648,-0.0172424,-0.0210266,-0.0232239,-0.0246277,-0.0238342,-0.0231323,-0.0210876,-0.0178833,-0.0137329,-0.00991821,-0.00512695,-0.00140381,0.00311279,0.00592041,0.00845337,0.0112,0.0115356,0.0119019,0.0121765,0.0127258,0.013031,0.0137329,0.0137329,0.0141907,0.0137939,0.0124512,0.011322,0.00872803,0.00512695,-0.000152588,-0.0062561,-0.0133057,-0.0214539,-0.0300293,-0.0384216,-0.0466309,-0.0549927,-0.0632629,-0.0707092,-0.0771179,-0.0828552,-0.0874329,-0.0915833,-0.0964355,-0.0996094,-0.102234,-0.105255,-0.107208,-0.110931,-0.114532,-0.116211,-0.119171,-0.119446,-0.119232,-0.119507,-0.117676,-0.113251,-0.103699,-0.0921021,-0.0752563,-0.0559387,-0.0348206,-0.0144043,0.00753784,0.029541,0.0500183,0.0688782,0.0826416,0.0916443,0.0958252,0.09552,0.094635,0.0907593,0.0843506,0.0749817,0.0652771,0.054718,0.0461426,0.0399475,0.0369263,0.0357361,0.035675,0.0375061,0.0398254,0.0426941,0.0472107,0.052002,0.0543213,0.0545044,0.0527039,0.04953,0.0467224,0.0441895,0.0422974,0.0397339,0.0376892,0.0368042,0.0396729,0.0437012,0.0512085,0.0579529,0.0658569,0.0735779,0.0803223,0.0870972,0.0916748,0.0959473,0.0977173,0.0962219,0.093689,0.0875854,0.0806885,0.0719604,0.0623169,0.0519104,0.0405273,0.0289307,0.0178833,0.00808716,-0.00128174,-0.0104675,-0.0191345,-0.0292664,-0.0383301,-0.0484009,-0.0572815,-0.0660706,-0.0734253,-0.0805359,-0.0863037,-0.0906982,-0.0916443,-0.0922241,-0.0900269,-0.0863953,-0.0823975,-0.0762024,-0.0690918,-0.060791,-0.0516357,-0.0429688,-0.0336304,-0.0256958,-0.0177917,-0.00942993,-0.00311279,0.00338745,0.00888062,0.0139465,0.01828,0.0227966,0.0272827,0.0329285,0.0377808,0.0421448,0.0450745,0.0469971,0.0488892,0.0493774,0.0492554,0.0457153,0.0405273,0.0330505,0.0260925,0.018219,0.0110474,0.00366211,-0.00274658,-0.00970459,-0.0144043,-0.0177307,-0.0187073,-0.0190125,-0.0180054,-0.0146484,-0.0123291,-0.00765991,-0.00247192,0.00219727,0.00701904,0.0116272,0.0158386,0.0183411,0.019989,0.0206909,0.0215149,0.0220947,0.0228577,0.0238342,0.0232849,0.0220032,0.0213013,0.019989,0.0180664,0.0150452,0.00888062,0.00134277,-0.00732422,-0.0167236,-0.0257568,-0.035675,-0.0473328,-0.0580444,-0.0700073,-0.0802612,-0.0891418,-0.0968628,-0.10376,-0.110321,-0.115997,-0.120148,-0.123322,-0.125519,-0.126068,-0.127686,-0.12915,-0.129791,-0.129944,-0.130005,-0.128387,-0.124878,-0.121429,-0.113342,-0.102722,-0.0864563,-0.0679016,-0.04776,-0.0262451,-0.00415039,0.0168762,0.0393372,0.0592957,0.0749817,0.0855408,0.0907593,0.0930786,0.0927734,0.0909424,0.0852661,0.0775757,0.0666809,0.056427,0.0480652,0.0428467,0.0396118,0.0383301,0.0385437,0.0396729,0.0429993,0.0485535,0.0549316,0.0602722,0.0632324,0.0648804,0.0640259,0.0614014,0.0596619,0.0563354,0.052887,0.0486755,0.0452881,0.0432739,0.043335,0.04599,0.0509338,0.0555115,0.0632324,0.0697937,0.0769653,0.0837097,0.0908813,0.0965271,0.100677,0.102142,0.100159,0.0960999,0.0902405,0.0828552,0.0740662,0.0628967,0.0512085,0.0385437,0.0272827,0.0164795,0.00683594,-0.00265503,-0.013092,-0.0227966,-0.0316467,-0.0397339,-0.0483398,-0.0555725,-0.0624084,-0.0693054,-0.0747986,-0.0789185,-0.0814514,-0.0834351,-0.0832825,-0.0823059,-0.0799255,-0.0766907,-0.0716858,-0.0652771,-0.0586548,-0.0510559,-0.0431824,-0.0360107,-0.029541,-0.0233459,-0.0172424,-0.0115967,-0.00610352,-0.000762939,0.00302124,0.00640869,0.00964355,0.0136414,0.0179443,0.0229187,0.0275574,0.0309448,0.0327148,0.033783,0.0347595,0.0350952,0.0335388,0.03125,0.0259399,0.0198364,0.0140076,0.00830078,0.00286865,-0.0017395,-0.00695801,-0.011322,-0.0154114,-0.0178528,-0.0176697,-0.0171509,-0.0140686,-0.0102539,-0.00772095,-0.0038147,0.000488281,0.00463867,0.00970459,0.013092,0.0147705,0.0161743,0.0158997,0.0170898,0.0192871,0.0197754,0.0198975,0.0190125,0.0171509,0.0168762,0.0151978,0.0137939,0.0100708,0.00540161,-0.000854492,-0.00823975,-0.0158997,-0.0234375,-0.0330505,-0.0432739,-0.0534668,-0.0643616,-0.0730896,-0.0824585,-0.0908203,-0.0985718,-0.105042,-0.10968,-0.113617,-0.116211,-0.118835,-0.11972,-0.119049,-0.117828,-0.117004,-0.115356,-0.113983,-0.111145,-0.104828,-0.0944824,-0.0832825,-0.0704346,-0.0572815,-0.0418701,-0.0250549,-0.00701904,0.0119019,0.0285645,0.0406494,0.0495911,0.0569763,0.0628967,0.0686646,0.0704956,0.0689392,0.0628357,0.0567627,0.0500793,0.04599,0.042572,0.0393372,0.0362244,0.0333252,0.0335388,0.0351868,0.0398254,0.0431824,0.0467834,0.0487671,0.0501404,0.0496521,0.0499573,0.0498657,0.0483398,0.046936,0.0438843,0.0406799,0.0388184,0.0393982,0.0411682,0.0445251,0.0472107,0.0522156,0.056366,0.0617065,0.0688171,0.0755615,0.0820312,0.0864563,0.0893555,0.0904846,0.0904541,0.0889893,0.0858154,0.0805664,0.0724487,0.0644226,0.0549927,0.0473633,0.0388184,0.0308228,0.0218811,0.013092,0.00506592,-0.00241089,-0.009552,-0.0167542,-0.0231323,-0.0299072,-0.035614,-0.0404663,-0.04599,-0.0488892,-0.0524292,-0.054718,-0.056488,-0.0577698,-0.0577698,-0.0571899,-0.0541687,-0.0509338,-0.0455933,-0.040863,-0.035614,-0.0305176,-0.0246887,-0.0187988,-0.0127258,-0.00689697,-0.00265503,0.00112915,0.00427246,0.00817871,0.0112,0.013092,0.0154724,0.0159607,0.0160217,0.0162354,0.0161743,0.0149841,0.0134888,0.0122986,0.0108337,0.00842285,0.00500488,0.00195312,-0.000579834,-0.00335693,-0.00543213,-0.00802612,-0.0119019,-0.0151062,-0.0170288,-0.0179443,-0.0187073,-0.0192871,-0.0196228,-0.0189819,-0.0174561,-0.0160522,-0.013092,-0.0111694,-0.00878906,-0.00640869,-0.00415039,-0.00231934,-0.000152588,0.00161743,0.00421143,0.00512695,0.00634766,0.00653076,0.00753784,0.00765991,0.00668335,0.0055542,0.00323486,0,-0.0039978,-0.00863647,-0.0143433,-0.0210266,-0.0273132,-0.0344543,-0.0417786,-0.0489807,-0.0556641,-0.0614014,-0.0664062,-0.0713196,-0.0756836,-0.0785828,-0.0794983,-0.0788574,-0.0782166,-0.0776672,-0.0769043,-0.0745544,-0.0704956,-0.065918,-0.0596619,-0.0536804,-0.0474243,-0.0403137,-0.0322266,-0.0231628,-0.0141296,-0.00549316,0.00253296,0.00900269,0.0143433,0.0195618,0.0237122,0.0284729,0.0317078,0.0328369,0.0329895,0.032135,0.0323792,0.032135,0.0322266,0.0306702,0.0302429,0.0280762,0.0278625,0.0266724,0.0271606,0.0265808,0.0260315,0.0240784,0.0224609,0.0203857,0.0194702,0.0175171,0.0165405,0.0142822,0.0119019,0.00985718,0.00900269,0.00949097,0.00985718,0.0111084,0.0125122,0.0151062,0.0178833,0.0210266,0.0250244,0.0287781,0.0331421,0.0375671,0.040802,0.0441895,0.0465088,0.0486755,0.0496521,0.0499573,0.0489502,0.0472107,0.0445251,0.0417786,0.0396118,0.0361023,0.0326538,0.0296936,0.0257568,0.0228577,0.0194092,0.0160522,0.0129395,0.00976562,0.00689697,0.00393677,0.0015564,-0.000427246,-0.00280762,-0.00430298,-0.00634766,-0.00808716,-0.00915527,-0.00985718,-0.010498,-0.0106201,-0.0109863,-0.0101318,-0.00964355,-0.00836182,-0.00662231,-0.00485229,-0.00268555,-0.000274658,0.00274658,0.00479126,0.00863647,0.0108337,0.0140686,0.016449,0.0184937,0.0195007,0.0202637,0.0202026,0.0194092,0.01828,0.015564,0.0135803,0.0100403,0.0071106,0.0038147,0.000274658,-0.00265503,-0.00570679,-0.00863647,-0.0115356,-0.0142212,-0.0162659,-0.0184937,-0.0195618,-0.0213318,-0.0228577,-0.0237732,-0.0249023,-0.0258789,-0.0256958,-0.026947,-0.0266724,-0.0263977,-0.0253906,-0.0235596,-0.0211182,-0.0185547,-0.0160522,-0.0123901,-0.009552,-0.00640869,-0.00296021,-0.000579834,0.00247192,0.00436401,0.00683594,0.00772095,0.00909424,0.00906372,0.00857544,0.0071106,0.00534058,0.00259399,0.00012207,-0.00317383,-0.00726318,-0.0111694,-0.0149231,-0.0184937,-0.0218811,-0.0252686,-0.0280151,-0.0308228,-0.0329895,-0.0343933,-0.0344543,-0.0346985,-0.0339661,-0.0327148,-0.0309448,-0.0289001,-0.0256653,-0.0218201,-0.0173645,-0.0127258,-0.00796509,-0.00387573,6.10352e-05,0.00335693,0.00613403,0.00808716,0.00866699,0.00802612,0.00772095,0.00662231,0.00518799,0.0038147,0.00189209,-0.000793457,-0.00253296,-0.00393677,-0.00549316,-0.00543213,-0.00631714,-0.00634766,-0.00701904,-0.00646973,-0.00668335,-0.00704956,-0.00759888,-0.00900269,-0.0112,-0.0125122,-0.0151367,-0.0163269,-0.0187988,-0.0206299,-0.0223694,-0.0240784,-0.0244751,-0.0246887,-0.0244141,-0.0229492,-0.0215149,-0.0180664,-0.0157776,-0.012085,-0.00863647,-0.00469971,-0.000976562,0.00408936,0.0085144,0.0122375,0.0151367,0.0187988,0.0210266,0.0238342,0.0256958,0.0270996,0.0272827,0.0282288,0.0274963,0.0281982,0.0275574,0.0273743,0.0263672,0.0259399,0.0246277,0.0236511,0.0229492,0.0219421,0.0215149,0.0202026,0.0203247,0.0189819,0.0191345,0.0177307,0.0176697,0.0172424,0.0164795,0.015686,0.0148315,0.013855,0.0125732,0.0121765,0.0107117,0.0104065,0.00857544,0.0085144,0.00753784,0.00732422,0.00747681,0.00842285,0.00888062,0.00997925,0.0114136,0.0131531,0.0149231,0.0165405,0.0183411,0.0194702,0.020752,0.0211792,0.0213013,0.0203247,0.0190125,0.0176392,0.0149841,0.0130005,0.00979614,0.00662231,0.00408936,0.000976562,-0.00125122,-0.00360107,-0.00604248,-0.00738525,-0.00878906,-0.00976562,-0.00976562,-0.0110474,-0.0108337,-0.011322,-0.0109863,-0.0101929,-0.0101318,-0.00933838,-0.00857544,-0.00759888,-0.00610352,-0.00491333,-0.00302124,-0.00177002,0.000152588,0.00167847,0.00378418,0.00527954,0.00765991,0.00878906,0.0104065,0.0107727,0.0108948,0.0107727,0.0101929,0.00866699,0.00814819,0.00653076,0.00393677,0.00317383,0.000854492,-0.00106812,-0.00317383,-0.00540161,-0.00726318,-0.00949097,-0.0114746,-0.0134888,-0.0158997,-0.0179443,-0.0197754,-0.0210266,-0.0218811,-0.0231323,-0.0243225,-0.0247803,-0.0248413,-0.0230713,-0.0224304,-0.0229187,-0.023407,-0.0231323,-0.0239258,-0.0222168,-0.0215149,-0.0202637,-0.0185547,-0.0177917,-0.018158,-0.0177917,-0.0187683,-0.0191345,-0.0187073,-0.0176392,-0.015625,-0.0137939,-0.0135193,-0.0134277,-0.0135803,-0.0140686,-0.0144958,-0.0151062,-0.0161133,-0.0168762,-0.0178528,-0.0184937,-0.0191956,-0.0196838,-0.0205994,-0.0215454,-0.0223083,-0.0232239,-0.0245667,-0.0253296,-0.0256958,-0.0255432,-0.0249634,-0.0240479,-0.0227966,-0.0211182,-0.0187073,-0.0167236,-0.013916,-0.0111694,-0.00808716,-0.00582886,-0.00253296,0.000640869,0.0039978,0.0078125,0.0107117,0.0137939,0.0168152,0.0193481,0.0220032,0.0240479,0.0250549,0.0256042,0.0257568,0.0261536,0.0262451,0.0266724,0.0270691,0.0271606,0.027771,0.0272827,0.0276489,0.0266113,0.0263672,0.0258789,0.0249023,0.023407,0.0222168,0.0209656,0.019989,0.0192566,0.0189819,0.018158,0.0170898,0.0162354,0.0143433,0.0133667,0.0128784,0.0122375,0.0128784,0.0128784,0.0135193,0.0142822,0.0153503,0.0161133,0.0169373,0.017395,0.0176697,0.0177307,0.0180969,0.0185547,0.0190125,0.0196228,0.0205994,0.0206909,0.0213013,0.020874,0.0206299,0.0204163,0.0204773,0.0196838,0.0194702,0.0184937,0.0173645,0.0168762,0.0144348,0.0134888,0.0112,0.00900269,0.00704956,0.00485229,0.00265503,6.10352e-05,-0.00195312,-0.0038147,-0.00582886,-0.00668335,-0.00808716,-0.00808716,-0.00787354,-0.00689697,-0.00610352,-0.00485229,-0.00372314,-0.00268555,-0.00106812,6.10352e-05,0.000549316,0.00140381,0.00241089,0.00198364,0.00189209,0.00112915,-0.000427246,-0.00296021,-0.00592041,-0.00927734,-0.0123291,-0.0149841,-0.0169373,-0.0194092,-0.0211182,-0.0229187,-0.0259399,-0.0259399,-0.0267334,-0.0274353,-0.027771,-0.0267944,-0.026886,-0.0261841,-0.0266113,-0.027771,-0.0282288,-0.0296936,-0.0300293,-0.0316467,-0.0330505,-0.0343933,-0.0361633,-0.0355835,-0.0346985,-0.0335693,-0.0323792,-0.0305481,-0.0289307,-0.0266724,-0.0249634,-0.0221558,-0.0189209,-0.0164795,-0.0140686,-0.0111084,-0.00845337,-0.00604248,-0.00427246,-0.00372314,-0.00387573,-0.00479126,-0.00549316,-0.00717163,-0.00823975,-0.00927734,-0.011261,-0.0130005,-0.013916,-0.0153198,-0.015564,-0.0151062,-0.0151062,-0.0147095,-0.0149841,-0.0153198,-0.0149231,-0.0143433,-0.0136414,-0.0126038,-0.0108948,-0.0093689,-0.00549316,-0.0032959,-0.00012207,0.00204468,0.00415039,0.0062561,0.0085144,0.0109863,0.013916,0.0158386,0.0185852,0.02005,0.0213013,0.0228577,0.0236511,0.024353,0.0242615,0.0239258,0.023407,0.0238647,0.0245361,0.0249023,0.0258789,0.0266113,0.0273743,0.0281982,0.0281372,0.0289001,0.0282898,0.0286865,0.0279236,0.0275574,0.0254517,0.0245361,0.0224609,0.0216064,0.0206299,0.0197754,0.0186462,0.017395,0.0164795,0.0154114,0.0150452,0.0149841,0.0153198,0.0157471,0.0164795,0.0173645,0.0187683,0.019928,0.0210266,0.0218201,0.0223083,0.022583,0.0236206,0.0236206,0.0249023,0.0253906,0.0265808,0.026947,0.0280762,0.0283508,0.0289307,0.0284119,0.0282288,0.0265808,0.0253296,0.0224304,0.0201111,0.0164795,0.0128784,0.00894165,0.00463867,0.000976562,-0.00268555,-0.00521851,-0.00793457,-0.00970459,-0.012085,-0.0137329,-0.0151367,-0.0159607,-0.0158386,-0.0161743,-0.0160522,-0.0167236,-0.015686,-0.0153503,-0.015625,-0.0151367,-0.0163269,-0.0180054,-0.0194092,-0.0215149,-0.0229492,-0.0246887,-0.0266724,-0.0285034,-0.0307617,-0.0323486,-0.0342712,-0.0354614,-0.0372009,-0.0388489,-0.0404663,-0.0426941,-0.0441895,-0.0454407,-0.0458069,-0.0463562,-0.045929,-0.0462341,-0.0453796,-0.0431824,-0.0396729,-0.0336914,-0.0273132,-0.0213928,-0.0169678,-0.0128784,-0.00949097,-0.00604248,-0.0039978,-0.00195312,-0.00210571,-0.00308228,-0.0038147,-0.00457764,-0.00500488,-0.00619507,-0.0088501,-0.0116882,-0.0149231,-0.0169373,-0.0178833,-0.0173035,-0.0168762,-0.0154724,-0.0147095,-0.0136414,-0.0121155,-0.0100403,-0.00872803,-0.00634766,-0.00631714,-0.00527954,-0.00494385,-0.00448608,-0.00402832,-0.00296021,-0.00280762,-0.00134277,0.000427246,0.00308228,0.00576782,0.00845337,0.0104675,0.0119629,0.013855,0.0151062,0.0167236,0.0180969,0.0191956,0.0195618,0.0185852,0.0183411,0.0176392,0.0171509,0.0169373,0.0154724,0.0160217,0.0148621,0.016449,0.0169373,0.0184937,0.0201721,0.0213318,0.0234375,0.0242615,0.0244141,0.0242615,0.023407,0.0222473,0.0206909,0.0194092,0.0168762,0.0151062,0.013031,0.0126648,0.0122986,0.0128784,0.013092,0.0137939,0.0148621,0.015625,0.0178833,0.0196838,0.0218811,0.023407,0.0249634,0.0261841,0.0279846,0.0291748,0.0302429,0.0314331,0.0321655,0.0332642,0.0345459,0.035614,0.036499,0.0367737,0.0380554,0.0391235,0.0411377,0.0417786,0.0419922,0.0406799,0.0383911,0.0353088,0.0317078,0.0265198,0.0203857,0.0140686,0.00732422,0.00125122,-0.00427246,-0.00857544,-0.0120239,-0.0149231,-0.0175781,-0.02005,-0.0215454,-0.0231628,-0.0242004,-0.0247803,-0.0256958,-0.0254517,-0.0250244,-0.0239258,-0.022583,-0.0220032,-0.0220947,-0.0236511,-0.025238,-0.0276489,-0.0307617,-0.0342712,-0.0374451,-0.0415649,-0.0448914,-0.0493774,-0.0525513,-0.0578918,-0.0619202,-0.065918,-0.0696411,-0.0717468,-0.0731812,-0.0737305,-0.0727539,-0.0692139,-0.0621033,-0.0525513,-0.0422058,-0.032074,-0.0230713,-0.0151978,-0.00723267,-0.000915527,0.00506592,0.00744629,0.00689697,0.00527954,0.00360107,0.00112915,-0.000579834,-0.00378418,-0.00830078,-0.0123901,-0.0162354,-0.0184326,-0.0177307,-0.0162354,-0.0133667,-0.0109558,-0.00817871,-0.00408936,-0.000152588,0.00479126,0.00668335,0.0085144,0.00787354,0.00759888,0.00656128,0.00662231,0.00518799,0.00430298,0.00323486,0.00335693,0.00527954,0.00772095,0.0106812,0.0137939,0.0170898,0.0198364,0.0231628,0.0263672,0.0299072,0.0324402,0.0342712,0.0351562,0.0345459,0.0340576,0.0328674,0.0316467,0.0285034,0.0263977,0.0236511,0.0222168,0.0210266,0.020813,0.0216675,0.0220337,0.0229492,0.0238342,0.0238342,0.023407,0.0222473,0.0201721,0.0186462,0.0160522,0.0137939,0.0115356,0.00888062,0.00662231,0.00521851,0.00473022,0.00421143,0.00421143,0.00408936,0.00387573,0.00512695,0.00668335,0.00933838,0.0113831,0.0133057,0.0149231,0.0168762,0.01828,0.019989,0.020813,0.0224609,0.0237122,0.0261841,0.0283508,0.0307617,0.0328674,0.0343323,0.0361633,0.0386963,0.0406799,0.0420532,0.0417175,0.0398865,0.0372314,0.0329895,0.0287781,0.0236206,0.0171509,0.0106812,0.00408936,-0.00146484,-0.00592041,-0.0100403,-0.0137939,-0.0188599,-0.0224609,-0.026886,-0.0302429,-0.0336914,-0.0375061,-0.0397339,-0.0415039,-0.0429077,-0.0429077,-0.0439758,-0.0437012,-0.0445251,-0.0452271,-0.0463562,-0.0471497,-0.0489807,-0.0505676,-0.052124,-0.0534668,-0.0554199,-0.0572815,-0.0604858,-0.0625916,-0.0654907,-0.0678101,-0.0699158,-0.0714722,-0.0708923,-0.0674744,-0.060791,-0.0513,-0.0409546,-0.0323792,-0.0236511,-0.016449,-0.00787354,-0.000549316,0.00485229,0.00701904,0.0071106,0.00640869,0.00506592,0.00421143,0.00280762,0.00012207,-0.00378418,-0.00723267,-0.00872803,-0.00817871,-0.00683594,-0.00448608,-0.00308228,-0.000274658,0.00289917,0.00689697,0.010498,0.0140076,0.0166626,0.0173645,0.01828,0.0180969,0.0185852,0.0177307,0.0168762,0.0167542,0.0167542,0.0178528,0.0205994,0.0235596,0.0270691,0.0306091,0.0339966,0.0372009,0.0398865,0.0427551,0.045929,0.0479736,0.0485229,0.0481262,0.0466919,0.045166,0.0437012,0.040863,0.0377808,0.0341797,0.0300293,0.0273743,0.024353,0.0220032,0.0202026,0.0184326,0.0170898,0.0160217,0.0144958,0.0119019,0.00836182,0.00436401,0.000640869,-0.00241089,-0.00582886,-0.00726318,-0.00964355,-0.010498,-0.0108337,-0.0101318,-0.00845337,-0.00772095,-0.00640869,-0.0045166,-0.00289917,0.000488281,0.00338745,0.00674438,0.00949097,0.0123291,0.0154114,0.0180664,0.020874,0.022644,0.0245667,0.0265198,0.028717,0.030304,0.0319519,0.0335388,0.0355835,0.0376892,0.0388489,0.0393066,0.0377197,0.035675,0.0317993,0.0272217,0.0213318,0.0144043,0.00823975,0.00210571,-0.00338745,-0.00759888,-0.0118103,-0.015564,-0.0197144,-0.0232849,-0.0274353,-0.0320129,-0.0374146,-0.043457,-0.0498047,-0.0562744,-0.0605164,-0.0648499,-0.0686035,-0.0725098,-0.0756226,-0.0794983,-0.0817566,-0.084198,-0.0863342,-0.0884094,-0.0892639,-0.0891418,-0.0895386,-0.0901794,-0.0900269,-0.0865479,-0.0818176,-0.074707,-0.0655823,-0.0531006,-0.0386963,-0.024353,-0.00964355,0.00198364,0.0140686,0.0254822,0.0344849,0.0400391,0.0393372,0.0363159,0.0306091,0.0266113,0.0222168,0.0168762,0.0126038,0.00631714,0.00527954,0.00732422,0.0135193,0.0204163,0.0239868,0.0244751,0.0246277,0.0256042,0.02771,0.0274963,0.0236206,0.0179443,0.00866699,0.0038147,0.00189209,0.000793457,0.00106812,0.00259399,0.00695801,0.0140686,0.0227356,0.032135,0.0417786,0.0501404,0.056366,0.0605774,0.063385,0.0669861,0.0681152,0.0692139,0.0673828,0.0654907,0.0621033,0.0599976,0.0569153,0.0557251,0.054657,0.0536804,0.0529785,0.0514832,0.0485535,0.0450745,0.0386353,0.0306091,0.0220337,0.0123291,0.00357056,-0.00680542,-0.0175171,-0.02948,-0.040741,-0.0514221,-0.0602112,-0.0674744,-0.0734253,-0.0778198,-0.0797119,-0.0787354,-0.0751343,-0.070343,-0.0648804,-0.059021,-0.0531921,-0.0467834,-0.0402527,-0.0337524,-0.0266113,-0.0198975,-0.0116882,-0.00296021,0.00631714,0.0166626,0.0266113,0.0383911,0.0488892,0.0595093,0.0692139,0.0770264,0.0826721,0.0874939,0.0895386,0.0898438,0.0879211,0.0837708,0.076416,0.0672607,0.0571899,0.04599,0.0343933,0.0216064,0.0104065,-0.00149536,-0.012085,-0.0210876,-0.0293884,-0.0379028,-0.0462036,-0.0559387,-0.0645142,-0.0743713,-0.0826416,-0.0910339,-0.0986938,-0.105804,-0.110291,-0.114166,-0.115082,-0.116211,-0.115387,-0.11557,-0.115784,-0.113983,-0.111938,-0.106567,-0.101074,-0.0943298,-0.0860291,-0.0731506,-0.0556641,-0.0330505,-0.00830078,0.0160522,0.0367126,0.0527649,0.0671997,0.0796509,0.088562,0.0899048,0.0826721,0.0706482,0.0581665,0.047699,0.0397644,0.0314331,0.0213013,0.0126038,0.00836182,0.0115356,0.0198975,0.0283508,0.0347595,0.0358582,0.0342712,0.0334167,0.0310974,0.025116,0.0159607,0.00219727,-0.00958252,-0.0184937,-0.0201111,-0.0168762,-0.00842285,0.00146484,0.015625,0.0314331,0.052063,0.0733032,0.0920105,0.104248,0.112,0.114227,0.113892,0.111359,0.107269,0.101532,0.0939941,0.0854187,0.079071,0.0740051,0.0713196,0.067749,0.0628052,0.0568237,0.0487671,0.039032,0.027771,0.013916,-0.00238037,-0.0220337,-0.0444641,-0.0640869,-0.0832214,-0.100189,-0.115784,-0.129578,-0.141815,-0.149841,-0.154846,-0.156586,-0.156036,-0.153778,-0.149841,-0.143158,-0.135498,-0.125092,-0.114166,-0.102295,-0.0897827,-0.0758362,-0.0606384,-0.0455933,-0.0292664,-0.0130005,0.00485229,0.0229187,0.0438232,0.0635071,0.0818176,0.0985718,0.11319,0.126678,0.136261,0.143005,0.14563,0.143646,0.140625,0.136749,0.132324,0.124573,0.114044,0.101379,0.0860901,0.0713196,0.0579529,0.0435486,0.0281372,0.0125732,-0.00289917,-0.0157776,-0.027771,-0.0377808,-0.0490417,-0.0610046,-0.0734558,-0.0823669,-0.0881348,-0.0923157,-0.0969238,-0.101288,-0.105103,-0.107971,-0.107697,-0.106018,-0.104523,-0.103973,-0.104767,-0.104828,-0.101929,-0.095459,-0.0870056,-0.0785828,-0.0705566,-0.0598145,-0.0441589,-0.0218811,0.00344849,0.0261841,0.0430603,0.0529785,0.0583801,0.0632629,0.065979,0.0611267,0.0476074,0.0270081,0.00668335,-0.00772095,-0.0158386,-0.0206909,-0.0239868,-0.02948,-0.0300293,-0.0229492,-0.00802612,0.00823975,0.0192566,0.0216675,0.0170288,0.011322,0.00631714,0.00119019,-0.00704956,-0.0175171,-0.0265808,-0.0292664,-0.0230713,-0.00695801,0.0160522,0.0414429,0.0662842,0.0909424,0.115356,0.138947,0.157654,0.168121,0.16864,0.161163,0.149963,0.139374,0.129517,0.120728,0.111908,0.103271,0.09729,0.0948486,0.0943298,0.0931396,0.0865479,0.0768738,0.0602112,0.0397339,0.0173645,-0.00845337,-0.0358887,-0.0652161,-0.0942688,-0.119995,-0.139008,-0.152374,-0.160187,-0.16629,-0.168274,-0.169342,-0.167084,-0.163971,-0.160522,-0.157074,-0.15329,-0.148987,-0.142334,-0.133606,-0.120941,-0.105865,-0.0870056,-0.0664062,-0.0444031,-0.0201721,0.00344849,0.0275879,0.0496521,0.0700073,0.0874329,0.102478,0.113831,0.122528,0.129303,0.133362,0.136322,0.13739,0.136414,0.135193,0.131897,0.128754,0.124237,0.116852,0.10553,0.0913086,0.0759583,0.0578308,0.0395508,0.0188599,-0.00140381,-0.0213928,-0.0384216,-0.0526123,-0.0635071,-0.0725098,-0.0801086,-0.0865479,-0.0907593,-0.0957947,-0.0981445,-0.102631,-0.106995,-0.113312,-0.119659,-0.125,-0.129242,-0.133514,-0.135498,-0.132874,-0.125641,-0.114441,-0.100372,-0.0832825,-0.0614319,-0.0350952,-0.0032959,0.0272217,0.0538025,0.0708313,0.0794067,0.0835876,0.0825806,0.0783691,0.0647278,0.0441589,0.019928,0.000579834,-0.0114136,-0.0153503,-0.0136414,-0.0118103,-0.00872803,-0.00247192,0.00991821,0.0248413,0.0365295,0.0385437,0.0296326,0.0128784,-0.00564575,-0.0222473,-0.0363159,-0.0496826,-0.0604248,-0.0648804,-0.0579529,-0.0389709,-0.00976562,0.0246277,0.0585327,0.0884094,0.113068,0.134033,0.149628,0.158569,0.157013,0.148438,0.13562,0.123871,0.117279,0.115448,0.11853,0.122345,0.126129,0.130341,0.135406,0.136536,0.132172,0.117218,0.0941162,0.0639648,0.0302429,-0.00479126,-0.0378418,-0.0700073,-0.0983276,-0.122894,-0.140564,-0.151672,-0.156372,-0.158417,-0.160675,-0.164673,-0.170715,-0.177429,-0.18396,-0.189941,-0.194214,-0.194794,-0.190094,-0.178772,-0.160187,-0.135284,-0.105927,-0.0728149,-0.0394592,-0.00830078,0.0198975,0.0440369,0.0638733,0.0796204,0.0924988,0.104034,0.113953,0.124664,0.136963,0.149963,0.163086,0.175171,0.185303,0.191833,0.194153,0.191345,0.182983,0.168701,0.147675,0.122894,0.0942078,0.0650024,0.0372314,0.011322,-0.0114136,-0.0314636,-0.0473328,-0.0577698,-0.0654297,-0.072937,-0.081543,-0.0911865,-0.101715,-0.114532,-0.127594,-0.140564,-0.152924,-0.165161,-0.175232,-0.17981,-0.181213,-0.179382,-0.172913,-0.161469,-0.144287,-0.125366,-0.105377,-0.0851135,-0.0614929,-0.0342407,-0.00265503,0.0286255,0.0552979,0.0723877,0.0819397,0.0856018,0.0866699,0.0834351,0.0734558,0.0545349,0.0334778,0.0149841,0.0045166,0.00308228,0.00683594,0.0106812,0.0145569,0.0205383,0.0291748,0.0389709,0.0439148,0.0388489,0.0227356,-0.00125122,-0.0255432,-0.0466919,-0.0618896,-0.072876,-0.0765381,-0.0711975,-0.0542297,-0.0257568,0.0104065,0.0499573,0.086731,0.115845,0.136902,0.150635,0.158783,0.159271,0.153076,0.14209,0.130219,0.123322,0.123535,0.131409,0.14212,0.153717,0.161316,0.164764,0.164185,0.155396,0.138428,0.110443,0.0731506,0.0317078,-0.0102539,-0.0484009,-0.0809631,-0.107971,-0.130341,-0.146545,-0.158417,-0.165802,-0.171356,-0.17804,-0.188385,-0.202026,-0.21814,-0.233276,-0.243774,-0.24884,-0.24585,-0.233917,-0.214142,-0.184998,-0.150879,-0.111206,-0.0709229,-0.0332642,-0.000213623,0.0264587,0.0493774,0.0686646,0.0864563,0.102478,0.119507,0.137604,0.15921,0.182281,0.205627,0.225098,0.239044,0.247131,0.24762,0.24173,0.228638,0.209229,0.18338,0.153931,0.122681,0.0933533,0.0652771,0.0392456,0.0131531,-0.0106201,-0.0328369,-0.0532532,-0.0724487,-0.090332,-0.109314,-0.128723,-0.148346,-0.165161,-0.179443,-0.190979,-0.199982,-0.204285,-0.204712,-0.203033,-0.199432,-0.193451,-0.185577,-0.173676,-0.158295,-0.140564,-0.12085,-0.0993347,-0.0705566,-0.0330505,0.0093689,0.0507202,0.0863037,0.112061,0.125916,0.130554,0.12854,0.119537,0.1008,0.0750427,0.0471191,0.0257568,0.0141907,0.0158386,0.0246887,0.0348816,0.0439758,0.0507812,0.057251,0.059082,0.0513,0.0308838,-0.0010376,-0.038208,-0.0718079,-0.0956726,-0.108124,-0.110107,-0.100586,-0.0794373,-0.0471497,-0.00842285,0.033844,0.0719604,0.101776,0.120911,0.13092,0.134003,0.134277,0.1315,0.128052,0.125641,0.128815,0.139557,0.156403,0.174896,0.191406,0.201752,0.201538,0.192841,0.174835,0.1492,0.114044,0.0734253,0.0299072,-0.0112,-0.0481873,-0.0770874,-0.101654,-0.12149,-0.138855,-0.15506,-0.169617,-0.185211,-0.203369,-0.223999,-0.24707,-0.268158,-0.285248,-0.293915,-0.293365,-0.282715,-0.261902,-0.232849,-0.197174,-0.158142,-0.117004,-0.0771179,-0.0394592,-0.00592041,0.0239868,0.0508423,0.0773926,0.104828,0.133179,0.160828,0.190063,0.21814,0.244232,0.265625,0.28125,0.289062,0.289703,0.282043,0.267395,0.248108,0.224182,0.196411,0.166504,0.135193,0.103149,0.0693665,0.0355835,0.00204468,-0.0317383,-0.0655823,-0.0979919,-0.127808,-0.154968,-0.179688,-0.201111,-0.218658,-0.232849,-0.243561,-0.24826,-0.249756,-0.248047,-0.246796,-0.243561,-0.238129,-0.228577,-0.213928,-0.191193,-0.165527,-0.135559,-0.0977173,-0.0501404,0.00582886,0.061615,0.109528,0.14444,0.161041,0.164764,0.160889,0.151306,0.135437,0.112976,0.0882263,0.0678711,0.0600586,0.0669556,0.0834351,0.0992737,0.107544,0.106873,0.0995483,0.0856934,0.0624695,0.0292664,-0.013916,-0.0609741,-0.101868,-0.128387,-0.13797,-0.131958,-0.113464,-0.0871582,-0.0555725,-0.0213013,0.0135803,0.0449524,0.0699158,0.0852661,0.0924988,0.0932007,0.093689,0.0970154,0.104309,0.116302,0.13266,0.154144,0.17804,0.201324,0.220978,0.232422,0.233276,0.221741,0.199982,0.169678,0.133514,0.092804,0.0535889,0.0141907,-0.0222473,-0.0558472,-0.0840149,-0.1091,-0.13092,-0.152161,-0.174957,-0.200684,-0.228333,-0.255981,-0.279297,-0.299347,-0.311981,-0.318268,-0.315796,-0.304108,-0.282379,-0.252411,-0.21814,-0.18158,-0.143372,-0.104309,-0.0631104,-0.0213318,0.0195618,0.0577393,0.0951233,0.13147,0.169128,0.204865,0.237488,0.265228,0.287567,0.304962,0.31839,0.324738,0.325165,0.317566,0.300598,0.274719,0.243042,0.207245,0.170654,0.131073,0.088562,0.0446167,-0.000335693,-0.0437622,-0.0836487,-0.11911,-0.153992,-0.188324,-0.221741,-0.251831,-0.274445,-0.290955,-0.300659,-0.308624,-0.314392,-0.318756,-0.318176,-0.311554,-0.298401,-0.278076,-0.253265,-0.220886,-0.181854,-0.131134,-0.0680847,-0.000488281,0.0661316,0.122772,0.163147,0.185425,0.192535,0.192047,0.185638,0.173492,0.155945,0.137665,0.124451,0.123108,0.13797,0.160309,0.179443,0.18515,0.17691,0.159485,0.132904,0.0970764,0.0507202,-0.0062561,-0.0648499,-0.114594,-0.146545,-0.159637,-0.155945,-0.141205,-0.118896,-0.091156,-0.0593872,-0.0258789,0.00402832,0.0275574,0.0400391,0.0437622,0.0443726,0.0466919,0.0560608,0.0704956,0.0896912,0.11377,0.141174,0.171783,0.202545,0.230042,0.247467,0.250641,0.238831,0.217529,0.190155,0.159637,0.124176,0.0863953,0.0458069,0.00646973,-0.0282288,-0.0573425,-0.084137,-0.111633,-0.142303,-0.175293,-0.207886,-0.237976,-0.265076,-0.288727,-0.309601,-0.324921,-0.33255,-0.330688,-0.319855,-0.299744,-0.273743,-0.24292,-0.207306,-0.167358,-0.121338,-0.0718384,-0.0222168,0.0254517,0.0715637,0.115143,0.162231,0.20816,0.253326,0.290833,0.320282,0.340637,0.355591,0.366425,0.371521,0.367798,0.352234,0.326416,0.292358,0.255585,0.216339,0.173767,0.124298,0.0690918,0.0123901,-0.0402527,-0.0872192,-0.131744,-0.174591,-0.220337,-0.264069,-0.301147,-0.328033,-0.346344,-0.361328,-0.375305,-0.386841,-0.394928,-0.395355,-0.385315,-0.364349,-0.336121,-0.301514,-0.257599,-0.198517,-0.126068,-0.0463562,0.0279846,0.091156,0.136902,0.166565,0.186127,0.200623,0.209503,0.207031,0.195068,0.18222,0.17923,0.192627,0.217377,0.244385,0.261414,0.263458,0.252197,0.23291,0.20282,0.159973,0.101868,0.0317383,-0.0365295,-0.0933533,-0.130005,-0.149475,-0.157074,-0.154419,-0.143036,-0.122833,-0.0960083,-0.0664978,-0.0405884,-0.0245361,-0.019928,-0.0211182,-0.0220337,-0.0170288,-0.00634766,0.00933838,0.0311584,0.0609131,0.09729,0.138245,0.179321,0.217102,0.242645,0.253754,0.25235,0.24115,0.223846,0.19931,0.166931,0.129425,0.0889282,0.0499573,0.0162659,-0.0125122,-0.0401001,-0.0707092,-0.105316,-0.140991,-0.176086,-0.210114,-0.242859,-0.274567,-0.302856,-0.327209,-0.341949,-0.347168,-0.340485,-0.324585,-0.299683,-0.269226,-0.232727,-0.189728,-0.14212,-0.0915833,-0.042572,0.00485229,0.0522156,0.101318,0.150696,0.198792,0.24234,0.28125,0.317566,0.350616,0.380371,0.401489,0.411102,0.404358,0.384521,0.35321,0.315155,0.270294,0.217438,0.161163,0.104095,0.049469,-0.00146484,-0.049469,-0.097229,-0.147583,-0.197113,-0.244446,-0.28653,-0.325775,-0.36319,-0.397675,-0.427856,-0.450104,-0.460083,-0.456055,-0.440094,-0.412933,-0.371735,-0.318451,-0.251648,-0.178406,-0.105804,-0.0413513,0.0113831,0.0531921,0.090271,0.121613,0.147949,0.166565,0.179108,0.190765,0.211273,0.240509,0.276764,0.311218,0.335846,0.34549,0.341949,0.327759,0.303284,0.264526,0.211884,0.149353,0.0840149,0.0253296,-0.0205383,-0.0544434,-0.0799255,-0.0989075,-0.110382,-0.11438,-0.111145,-0.105316,-0.100586,-0.101013,-0.107574,-0.117554,-0.125427,-0.127045,-0.120575,-0.106659,-0.0842896,-0.054718,-0.0171814,0.0263672,0.0727539,0.117493,0.156158,0.18454,0.201599,0.210327,0.211609,0.205566,0.192322,0.17215,0.148376,0.123962,0.101654,0.0810242,0.0610046,0.038147,0.0102844,-0.0215149,-0.0554199,-0.0907593,-0.127319,-0.165375,-0.203033,-0.238831,-0.269653,-0.291656,-0.304901,-0.306,-0.298553,-0.282501,-0.259216,-0.229889,-0.194519,-0.155029,-0.113831,-0.072113,-0.027771,0.0167542,0.0621948,0.108337,0.154114,0.199738,0.24234,0.282867,0.317352,0.344574,0.359955,0.363403,0.353363,0.33255,0.302094,0.264313,0.223358,0.180145,0.136841,0.0920715,0.0455017,-0.00259399,-0.0513,-0.0996094,-0.147369,-0.195557,-0.246704,-0.300049,-0.352356,-0.395569,-0.424347,-0.436859,-0.435791,-0.421539,-0.395294,-0.356506,-0.305878,-0.250916,-0.199921,-0.157104,-0.125214,-0.0993958,-0.0715637,-0.0435486,-0.0125732,0.0168762,0.0481873,0.0881653,0.137054,0.193542,0.253052,0.304321,0.343018,0.365662,0.37439,0.368256,0.348785,0.31543,0.273163,0.225677,0.180878,0.143433,0.114319,0.0911865,0.0718994,0.0549927,0.0393066,0.0227966,0.00653076,-0.0122986,-0.036499,-0.0654907,-0.0975647,-0.127808,-0.152496,-0.168335,-0.173065,-0.168335,-0.154785,-0.134308,-0.106842,-0.0752563,-0.0409546,-0.00759888,0.0195618,0.0415649,0.0581665,0.0707703,0.0809631,0.0870056,0.0913696,0.0913086,0.0909729,0.0903931,0.0906067,0.0906067,0.0880127,0.0814819,0.0686646,0.0508728,0.0286865,0.00134277,-0.0265808,-0.0576782,-0.0888367,-0.120148,-0.147308,-0.168549,-0.181641,-0.187073,-0.185577,-0.179047,-0.168152,-0.15387,-0.135986,-0.115021,-0.0912476,-0.0668945,-0.0417786,-0.0168762,0.0100403,0.0417175,0.076416,0.115356,0.152527,0.18811,0.216522,0.238708,0.253662,0.259308,0.255219,0.23819,0.212799,0.18219,0.152313,0.122833,0.0924377,0.0580444,0.0210876,-0.0178833,-0.0567017,-0.0939941,-0.131958,-0.173248,-0.218872,-0.262177,-0.296814,-0.316345,-0.321228,-0.312897,-0.296783,-0.273926,-0.247467,-0.222809,-0.200439,-0.18396,-0.172058,-0.164703,-0.158295,-0.14682,-0.128235,-0.101288,-0.0641479,-0.016449,0.0395508,0.0973816,0.153564,0.201141,0.238892,0.26297,0.273804,0.271271,0.256622,0.235748,0.213013,0.191498,0.175507,0.168488,0.166931,0.167297,0.168396,0.168121,0.162842,0.151886,0.131622,0.105103,0.0722351,0.033783,-0.00457764,-0.0418396,-0.0706177,-0.0914612,-0.102356,-0.104309,-0.0989075,-0.0875244,-0.0730896,-0.0585938,-0.0450134,-0.0339661,-0.0262451,-0.0223694,-0.0206299,-0.0191956,-0.0190735,-0.0189819,-0.0180969,-0.0157776,-0.011322,-0.00570679,0.000976562,0.00683594,0.012085,0.0137939,0.013092,0.00753784,-0.000701904,-0.0131531,-0.02771,-0.0444031,-0.0614014,-0.0780334,-0.0921631,-0.103638,-0.110107,-0.110992,-0.106232,-0.0959473,-0.0823059,-0.0660706,-0.0486145,-0.0314636,-0.0130005,0.00421143,0.0219421,0.0371399,0.0534058,0.0700684,0.0895691,0.11087,0.134277,0.155945,0.172974,0.18396,0.189606,0.189575,0.181915,0.16687,0.145416,0.119171,0.0915222,0.0640869,0.0369263,0.00759888,-0.0242004,-0.0593872,-0.0950317,-0.128967,-0.161804,-0.194946,-0.227875,-0.256836,-0.27774,-0.286316,-0.281464,-0.263367,-0.236145,-0.204346,-0.17215,-0.145966,-0.129944,-0.119934,-0.11615,-0.116302,-0.117065,-0.114868,-0.107697,-0.0948486,-0.0674133,-0.0227356,0.0332642,0.0926514,0.145752,0.187408,0.215332,0.231232,0.234741,0.226318,0.20459,0.172974,0.141602,0.114532,0.101654,0.102844,0.112152,0.124573,0.135651,0.146393,0.153076,0.155334,0.148071,0.130646,0.101105,0.0641479,0.0258179,-0.0071106,-0.0308228,-0.0464478,-0.0536194,-0.0530396,-0.0453796,-0.0312195,-0.0140076,0.00296021,0.0165405,0.022522,0.0211792,0.0147095,0.00549316,-0.00378418,-0.0135803,-0.0261841,-0.0374451,-0.0467224,-0.050293,-0.0493774,-0.0452271,-0.0418396,-0.0406799,-0.0427551,-0.0474854,-0.0535278,-0.0619812,-0.0728149,-0.0865479,-0.100525,-0.114594,-0.123474,-0.12854,-0.127411,-0.120728,-0.109802,-0.0920105,-0.0713501,-0.0464172,-0.0222168,0.00119019,0.0213013,0.0397644,0.0562744,0.0734558,0.091156,0.108337,0.128448,0.149475,0.171844,0.191193,0.206604,0.214478,0.212463,0.202881,0.185913,0.161255,0.129913,0.0967102,0.0628967,0.0308838,0.00128174,-0.0262451,-0.0550842,-0.0873108,-0.121979,-0.155487,-0.188538,-0.222076,-0.256287,-0.28653,-0.308685,-0.317749,-0.306366,-0.278442,-0.237976,-0.192627,-0.152435,-0.119019,-0.0967407,-0.0805359,-0.0698547,-0.0669556,-0.0688782,-0.0744324,-0.0758362,-0.0669861,-0.0403748,0.0055542,0.0639648,0.123474,0.173553,0.213013,0.238556,0.252838,0.251984,0.23587,0.203583,0.160553,0.115997,0.0820312,0.0629578,0.0611267,0.067688,0.0777283,0.0889282,0.101288,0.113983,0.121979,0.120514,0.106354,0.0785828,0.0415039,0.00518799,-0.0250549,-0.045166,-0.0558472,-0.0594482,-0.0531921,-0.0397339,-0.0185852,0.00732422,0.0317078,0.0505676,0.0599365,0.0609741,0.0545349,0.0465088,0.0353699,0.022644,0.00598145,-0.0109863,-0.0253296,-0.0332642,-0.036438,-0.0359497,-0.0368652,-0.0397644,-0.0481873,-0.0581055,-0.0697937,-0.0809631,-0.0956726,-0.112488,-0.130829,-0.147156,-0.158264,-0.163757,-0.16095,-0.15274,-0.138367,-0.119324,-0.0955505,-0.0684509,-0.040741,-0.0133057,0.0113831,0.0343933,0.0566406,0.0811768,0.106781,0.134308,0.163757,0.192902,0.218506,0.237274,0.24881,0.25235,0.245392,0.231567,0.208588,0.177063,0.139862,0.103149,0.0686646,0.0360107,0.00436401,-0.0300293,-0.0684509,-0.109253,-0.148865,-0.184662,-0.223206,-0.265686,-0.306519,-0.341278,-0.360321,-0.355103,-0.329529,-0.290405,-0.248169,-0.206116,-0.168213,-0.136414,-0.110443,-0.0923157,-0.0852051,-0.0872192,-0.0935669,-0.0936279,-0.0820923,-0.0524292,-0.00457764,0.0559998,0.120575,0.182007,0.233185,0.271973,0.294495,0.299255,0.283569,0.250092,0.206329,0.160095,0.121216,0.0956726,0.0850525,0.0861816,0.0930176,0.105255,0.11972,0.132263,0.13916,0.135193,0.116211,0.084259,0.0430603,0.000915527,-0.0375671,-0.0666199,-0.0854187,-0.0934143,-0.0900574,-0.0743713,-0.0505066,-0.0221558,0.00613403,0.0284119,0.0437622,0.0510559,0.0515137,0.0468445,0.0379333,0.0245361,0.00991821,-0.00610352,-0.0185852,-0.025116,-0.0272217,-0.0259705,-0.025238,-0.0256653,-0.0287781,-0.0343323,-0.0426331,-0.0535278,-0.0686646,-0.088562,-0.110229,-0.130005,-0.146393,-0.157379,-0.16272,-0.159821,-0.150543,-0.132965,-0.109039,-0.0813904,-0.0514221,-0.0227966,0.00387573,0.0267334,0.0466919,0.0661926,0.0872498,0.110291,0.137268,0.166321,0.192322,0.215271,0.23111,0.240723,0.241913,0.232574,0.212311,0.180786,0.143494,0.105316,0.0714722,0.0415039,0.0128174,-0.0190735,-0.0569763,-0.097168,-0.13562,-0.171661,-0.209229,-0.253693,-0.298767,-0.337463,-0.357513,-0.348572,-0.315704,-0.268219,-0.222168,-0.183685,-0.154053,-0.130127,-0.109802,-0.0965271,-0.0956116,-0.10553,-0.123199,-0.132538,-0.122131,-0.0861206,-0.0253906,0.0450745,0.11438,0.177155,0.226715,0.26593,0.288971,0.292358,0.271606,0.228058,0.175385,0.125916,0.0916748,0.077301,0.0787964,0.0896912,0.104614,0.123901,0.146179,0.166595,0.17868,0.174469,0.148438,0.106659,0.056488,0.00900269,-0.028717,-0.0555725,-0.0715637,-0.0776062,-0.0720215,-0.0536804,-0.0256042,0.0071106,0.033844,0.052002,0.0571289,0.0544434,0.0487366,0.0393372,0.0264587,0.00857544,-0.0117493,-0.0310974,-0.0443726,-0.0486755,-0.045929,-0.0410767,-0.0402222,-0.0420837,-0.0474854,-0.0530396,-0.0585327,-0.0667725,-0.0805359,-0.100403,-0.122742,-0.142792,-0.156952,-0.163635,-0.164886,-0.158936,-0.146973,-0.125427,-0.0955505,-0.0609131,-0.0255432,0.00421143,0.0289307,0.0481262,0.0666199,0.0888367,0.113037,0.138794,0.163696,0.186768,0.206909,0.226013,0.240234,0.247009,0.242615,0.224213,0.19339,0.155396,0.117462,0.0830994,0.0527039,0.0230713,-0.00976562,-0.047699,-0.0891113,-0.128052,-0.162628,-0.197754,-0.240173,-0.289703,-0.337524,-0.370331,-0.376221,-0.35083,-0.302216,-0.249176,-0.201904,-0.163971,-0.130859,-0.101318,-0.0756836,-0.0618286,-0.0660706,-0.0875244,-0.11264,-0.122528,-0.105225,-0.0582581,0.00823975,0.07901,0.145813,0.204651,0.254669,0.294678,0.31369,0.306946,0.270264,0.211884,0.14978,0.0991211,0.0680237,0.0549316,0.0553589,0.0623169,0.0756836,0.0965271,0.123169,0.148376,0.160095,0.151947,0.120575,0.076416,0.0278625,-0.0135803,-0.0466309,-0.0701904,-0.0838623,-0.0870972,-0.0757141,-0.0498657,-0.0147705,0.0220947,0.0493164,0.0658569,0.0709839,0.0708923,0.0683594,0.061676,0.0491638,0.0300903,0.00717163,-0.0125122,-0.0246887,-0.0273743,-0.0256653,-0.0257568,-0.0318604,-0.0410767,-0.0506592,-0.0576172,-0.0641479,-0.0744324,-0.0902405,-0.113312,-0.135986,-0.15506,-0.166321,-0.172485,-0.173065,-0.169769,-0.158203,-0.135834,-0.102081,-0.0619202,-0.0229187,0.00927734,0.0332642,0.0536194,0.0741577,0.0992737,0.126678,0.154053,0.178406,0.199921,0.219757,0.238617,0.252991,0.259674,0.25058,0.225677,0.187958,0.146393,0.108765,0.07724,0.0487366,0.0151367,-0.0265198,-0.0730286,-0.116974,-0.154572,-0.189514,-0.230804,-0.281677,-0.338745,-0.384888,-0.403534,-0.386475,-0.337372,-0.275909,-0.220825,-0.179962,-0.152252,-0.12619,-0.100403,-0.0792236,-0.0736389,-0.0903931,-0.11911,-0.139923,-0.130646,-0.0832214,-0.00964355,0.0728149,0.14856,0.211823,0.26593,0.310944,0.343658,0.349274,0.320374,0.258392,0.184875,0.121063,0.0814514,0.0664673,0.0690308,0.0787964,0.090332,0.108002,0.131683,0.159424,0.177917,0.172852,0.140991,0.0878601,0.0274963,-0.0250549,-0.0657654,-0.0923157,-0.110168,-0.119659,-0.115662,-0.0932007,-0.0549927,-0.0115967,0.0253906,0.0460815,0.0535889,0.0509949,0.0469971,0.0440979,0.0377808,0.0245667,0.00296021,-0.0192566,-0.0333252,-0.0346069,-0.0261841,-0.0174561,-0.0162354,-0.0232849,-0.0342712,-0.0415649,-0.0455933,-0.0486145,-0.0597839,-0.0797119,-0.105591,-0.129669,-0.145538,-0.15271,-0.155029,-0.153076,-0.147644,-0.132538,-0.10434,-0.0652771,-0.0210266,0.0159607,0.0424194,0.0601501,0.0758972,0.0942078,0.118317,0.140778,0.162567,0.179382,0.196411,0.215912,0.235931,0.250793,0.251007,0.231079,0.195984,0.151886,0.11087,0.0768738,0.0448303,0.00991821,-0.0332031,-0.0803528,-0.123383,-0.158203,-0.189178,-0.225311,-0.272308,-0.327911,-0.376709,-0.401917,-0.393677,-0.350739,-0.290802,-0.233398,-0.187775,-0.155273,-0.128296,-0.102142,-0.0805664,-0.0736389,-0.0887756,-0.120026,-0.144714,-0.144287,-0.105011,-0.0362854,0.0481262,0.127472,0.196899,0.255066,0.30481,0.341614,0.354218,0.333313,0.276611,0.203369,0.135406,0.0879211,0.0671082,0.0670471,0.0787964,0.0947571,0.115784,0.144135,0.175537,0.19809,0.200409,0.17392,0.122955,0.0611877,0.00146484,-0.045105,-0.077301,-0.0982056,-0.110077,-0.110321,-0.0920105,-0.0581055,-0.0163269,0.02005,0.0443115,0.0521851,0.0480347,0.0383911,0.02948,0.0190125,0.00469971,-0.0163879,-0.0402222,-0.0577393,-0.063385,-0.0577698,-0.0473633,-0.0415649,-0.0429993,-0.0518494,-0.0592957,-0.0637207,-0.0651245,-0.0709229,-0.0842896,-0.105255,-0.126709,-0.14212,-0.147369,-0.144012,-0.134094,-0.123169,-0.108704,-0.0887146,-0.0574036,-0.0203857,0.0171814,0.0480347,0.0701294,0.0892639,0.109894,0.136261,0.166656,0.194794,0.21582,0.227448,0.235474,0.241913,0.245667,0.242279,0.223633,0.189514,0.147644,0.107971,0.0769043,0.0505981,0.0209045,-0.0209656,-0.0718384,-0.123108,-0.166107,-0.204285,-0.243408,-0.291046,-0.348297,-0.402527,-0.433472,-0.42807,-0.385376,-0.31958,-0.25296,-0.200684,-0.163208,-0.133942,-0.102997,-0.0749817,-0.0602722,-0.0713501,-0.104675,-0.139435,-0.148926,-0.117218,-0.0473328,0.0398254,0.126282,0.197266,0.256012,0.307922,0.350952,0.373199,0.360382,0.309326,0.231781,0.156647,0.100189,0.0742798,0.0715332,0.0808105,0.092804,0.106293,0.129242,0.160736,0.19101,0.203888,0.187073,0.140778,0.0775757,0.0151978,-0.0329895,-0.0658264,-0.0884399,-0.10553,-0.113953,-0.105957,-0.0761719,-0.0354614,0.00823975,0.0391235,0.0534668,0.0515747,0.0431824,0.0353088,0.0294189,0.0165405,-0.00534058,-0.0349731,-0.061676,-0.0740051,-0.0726013,-0.0606384,-0.0509949,-0.050354,-0.0581665,-0.0678101,-0.072052,-0.0726013,-0.0751953,-0.0871582,-0.108917,-0.135284,-0.156311,-0.165253,-0.162292,-0.151459,-0.137878,-0.123047,-0.10025,-0.0652771,-0.0202637,0.0270996,0.064209,0.0888367,0.104401,0.119232,0.140961,0.167694,0.194946,0.21701,0.232025,0.243835,0.257477,0.269653,0.273712,0.261078,0.228271,0.184235,0.137543,0.0968018,0.0610657,0.0263062,-0.0158997,-0.06604,-0.116974,-0.160889,-0.199585,-0.239532,-0.286652,-0.342468,-0.401398,-0.447693,-0.463593,-0.441284,-0.388824,-0.32309,-0.259857,-0.208099,-0.165741,-0.127533,-0.0922852,-0.0653381,-0.0597229,-0.0813904,-0.117126,-0.143524,-0.134094,-0.087738,-0.0115356,0.0755615,0.160248,0.234314,0.298279,0.353485,0.393188,0.403015,0.37326,0.306915,0.224976,0.153168,0.103607,0.0795593,0.0769043,0.086731,0.100403,0.118805,0.147308,0.182068,0.207672,0.209717,0.179535,0.12735,0.0641479,0.00274658,-0.0457458,-0.0794373,-0.102142,-0.116425,-0.119873,-0.102783,-0.0666199,-0.0217285,0.0184326,0.0442505,0.0556641,0.0540466,0.0446777,0.0339661,0.0220947,0.00317383,-0.0234985,-0.0541077,-0.0783691,-0.0873718,-0.0848999,-0.0753479,-0.0681152,-0.0679016,-0.0731812,-0.0795593,-0.0825195,-0.0840149,-0.0898438,-0.105042,-0.129425,-0.153778,-0.172546,-0.179321,-0.175293,-0.163361,-0.146332,-0.123749,-0.0932312,-0.0526733,-0.00598145,0.0409241,0.0793457,0.108704,0.130707,0.151947,0.176422,0.202515,0.229248,0.251556,0.268433,0.280121,0.28653,0.29068,0.288208,0.274017,0.2453,0.204498,0.160309,0.116058,0.0750732,0.0342712,-0.0115967,-0.0640259,-0.120239,-0.173706,-0.222107,-0.269714,-0.320496,-0.376434,-0.433502,-0.480133,-0.501709,-0.489502,-0.442902,-0.377625,-0.307861,-0.248383,-0.20163,-0.159485,-0.120575,-0.0880737,-0.0733643,-0.0838013,-0.113464,-0.139282,-0.13913,-0.100861,-0.0274353,0.0654297,0.158081,0.238464,0.309235,0.370605,0.415527,0.434753,0.417877,0.363617,0.284546,0.204926,0.142456,0.107208,0.097168,0.102142,0.112427,0.127197,0.150177,0.179474,0.207458,0.218079,0.200226,0.152527,0.0857544,0.0173645,-0.0395508,-0.0803528,-0.10672,-0.125214,-0.131897,-0.12149,-0.092804,-0.0498657,-0.00469971,0.0323792,0.0525513,0.0549927,0.0452881,0.0330811,0.0202637,0.00500488,-0.01828,-0.0481873,-0.0758362,-0.0914001,-0.0932312,-0.0839844,-0.072876,-0.0680847,-0.0707703,-0.0787354,-0.0862427,-0.0905457,-0.0968628,-0.110168,-0.132324,-0.158905,-0.182281,-0.195221,-0.194794,-0.180939,-0.161713,-0.137054,-0.106842,-0.0668335,-0.0195007,0.0293274,0.0712585,0.102783,0.128387,0.148987,0.171997,0.198578,0.226868,0.254242,0.277039,0.293152,0.306641,0.314453,0.316345,0.307648,0.283081,0.246094,0.200684,0.15506,0.110504,0.0681152,0.0220947,-0.0310974,-0.0881653,-0.141907,-0.190979,-0.241241,-0.292786,-0.35025,-0.409058,-0.466705,-0.507996,-0.520447,-0.501953,-0.456573,-0.394775,-0.328949,-0.267761,-0.214722,-0.167908,-0.129639,-0.10025,-0.0906982,-0.104401,-0.131622,-0.149628,-0.13858,-0.0926514,-0.0163879,0.0796509,0.176086,0.263519,0.337952,0.400208,0.442352,0.454803,0.42984,0.370453,0.294708,0.220184,0.16153,0.125977,0.114685,0.122131,0.134583,0.152435,0.178314,0.206604,0.228851,0.230042,0.203308,0.151581,0.0843506,0.0154114,-0.0455322,-0.0889282,-0.118103,-0.134155,-0.137939,-0.123962,-0.0921631,-0.0516968,-0.0107117,0.0213928,0.0390625,0.0420837,0.0308838,0.0160217,0.000213623,-0.0180969,-0.0416565,-0.0690308,-0.0916748,-0.104065,-0.103607,-0.0952454,-0.0857544,-0.0783691,-0.0783691,-0.0834351,-0.0895691,-0.0959473,-0.105042,-0.118896,-0.140411,-0.164551,-0.185242,-0.197205,-0.195129,-0.180389,-0.155548,-0.125092,-0.089325,-0.0486145,-0.00387573,0.0426331,0.084198,0.117828,0.143494,0.163696,0.182831,0.20578,0.233124,0.263458,0.289337,0.308624,0.319183,0.324249,0.324158,0.315155,0.293976,0.258545,0.213226,0.163544,0.113312,0.0658569,0.0202637,-0.0284119,-0.0809631,-0.134277,-0.185913,-0.235962,-0.288422,-0.340546,-0.391846,-0.446411,-0.498718,-0.534912,-0.541046,-0.512573,-0.458191,-0.390503,-0.320801,-0.259155,-0.20575,-0.159119,-0.115082,-0.0829468,-0.0774536,-0.0967102,-0.124512,-0.13443,-0.112488,-0.0551453,0.0314331,0.129852,0.226105,0.307495,0.375641,0.430542,0.467621,0.47226,0.438904,0.373566,0.294128,0.21936,0.163574,0.134979,0.13205,0.140747,0.150269,0.164703,0.186768,0.214905,0.231323,0.224487,0.190918,0.133606,0.0638123,-0.00653076,-0.0626221,-0.098999,-0.121429,-0.134644,-0.137512,-0.122772,-0.0922241,-0.0538025,-0.0164795,0.0118713,0.0250549,0.0214539,0.00772095,-0.00775146,-0.0213318,-0.0368652,-0.0599365,-0.0854187,-0.107269,-0.118042,-0.120026,-0.113617,-0.103119,-0.0964355,-0.0965881,-0.103149,-0.10968,-0.113983,-0.120361,-0.132812,-0.150604,-0.171082,-0.188232,-0.195862,-0.189178,-0.168274,-0.136108,-0.100586,-0.0611267,-0.0172424,0.0280762,0.0734253,0.113556,0.14859,0.173248,0.191559,0.208954,0.230255,0.258392,0.288513,0.315247,0.334656,0.344696,0.345978,0.33783,0.320801,0.292358,0.251862,0.203094,0.150177,0.100159,0.0496826,0.0017395,-0.0483093,-0.098053,-0.147186,-0.195282,-0.245392,-0.29892,-0.356598,-0.41394,-0.472107,-0.524994,-0.561035,-0.573608,-0.555481,-0.509247,-0.439819,-0.361115,-0.284576,-0.216461,-0.157928,-0.110779,-0.077301,-0.0690002,-0.0820923,-0.106873,-0.121063,-0.107635,-0.061615,0.0176697,0.114685,0.215637,0.307648,0.386353,0.451935,0.494354,0.506226,0.4823,0.425171,0.347107,0.26712,0.199921,0.158203,0.140991,0.140564,0.148346,0.162872,0.186157,0.212311,0.232849,0.235657,0.213379,0.165741,0.0993958,0.0275574,-0.0365906,-0.0849609,-0.118103,-0.138306,-0.14856,-0.142883,-0.122986,-0.0897827,-0.0517883,-0.0177307,0.00521851,0.0125122,0.00592041,-0.0071106,-0.0222168,-0.0395203,-0.0629578,-0.0913086,-0.119293,-0.141418,-0.152313,-0.151886,-0.142944,-0.132446,-0.126221,-0.125916,-0.126923,-0.12796,-0.129578,-0.135071,-0.14624,-0.16217,-0.178558,-0.189362,-0.190216,-0.177826,-0.152496,-0.119537,-0.0781555,-0.0317078,0.0192566,0.0713501,0.117065,0.15686,0.187836,0.213562,0.237061,0.261902,0.290894,0.321014,0.346191,0.36319,0.373474,0.377716,0.370941,0.35434,0.323822,0.281952,0.230377,0.179108,0.132599,0.0901184,0.0455017,-0.00241089,-0.0543823,-0.108398,-0.160889,-0.212158,-0.266968,-0.326996,-0.390228,-0.450378,-0.504456,-0.552734,-0.59317,-0.618225,-0.619354,-0.588318,-0.527618,-0.447357,-0.35675,-0.270355,-0.194794,-0.135071,-0.0891418,-0.0565491,-0.0439758,-0.04953,-0.0626831,-0.0669556,-0.0482483,-0.00216675,0.0740051,0.17276,0.275909,0.368958,0.44342,0.500244,0.535553,0.544769,0.5224,0.466919,0.391144,0.306702,0.228912,0.172272,0.142395,0.135773,0.142609,0.156738,0.177155,0.199982,0.218353,0.224609,0.210327,0.172974,0.111725,0.0360718,-0.0375061,-0.0977783,-0.13681,-0.161591,-0.173004,-0.16864,-0.149689,-0.117706,-0.0777283,-0.0350952,-0.000793457,0.0153198,0.0108337,-0.00909424,-0.0350342,-0.0629578,-0.0934753,-0.124939,-0.155243,-0.178894,-0.194672,-0.196411,-0.185638,-0.168213,-0.153839,-0.147736,-0.14743,-0.150208,-0.15329,-0.158783,-0.165527,-0.173553,-0.184082,-0.192627,-0.195129,-0.183105,-0.153778,-0.111847,-0.0608521,-0.00436401,0.0529785,0.108459,0.158691,0.203217,0.238495,0.266632,0.286407,0.303955,0.324005,0.349823,0.378265,0.40274,0.416809,0.419067,0.409912,0.387604,0.35434,0.309875,0.258667,0.201904,0.147461,0.0963745,0.0508423,0.0038147,-0.0471497,-0.103424,-0.164124,-0.224426,-0.284912,-0.347382,-0.408081,-0.46225,-0.507965,-0.551971,-0.590942,-0.619904,-0.638062,-0.641296,-0.620758,-0.572632,-0.502716,-0.420135,-0.33493,-0.254456,-0.180786,-0.113312,-0.0557251,-0.013092,0.013092,0.024353,0.0247803,0.0340576,0.0656433,0.12149,0.195435,0.277802,0.357513,0.428925,0.491608,0.54126,0.568329,0.570374,0.542999,0.484406,0.406403,0.325134,0.254364,0.201752,0.169403,0.154846,0.152863,0.157715,0.171722,0.188873,0.202545,0.202942,0.178467,0.129578,0.064209,-0.00604248,-0.070343,-0.122345,-0.158264,-0.178528,-0.185913,-0.178406,-0.156403,-0.121613,-0.0808411,-0.0455017,-0.0256653,-0.0245667,-0.0384216,-0.0628052,-0.090332,-0.119293,-0.148163,-0.176636,-0.202545,-0.218567,-0.222351,-0.214722,-0.200562,-0.186371,-0.176697,-0.172546,-0.173187,-0.175232,-0.175995,-0.178558,-0.183411,-0.192047,-0.198364,-0.196533,-0.179962,-0.148926,-0.102844,-0.0489502,0.00997925,0.0684509,0.124817,0.176727,0.22049,0.25528,0.280548,0.304108,0.329071,0.356384,0.388031,0.419189,0.444122,0.456909,0.458038,0.450104,0.432983,0.40097,0.355896,0.302429,0.244537,0.187408,0.134491,0.0839233,0.0294189,-0.0289917,-0.0906677,-0.15329,-0.215546,-0.273865,-0.329712,-0.382904,-0.434387,-0.481262,-0.523407,-0.56189,-0.59726,-0.631592,-0.65918,-0.674927,-0.675476,-0.655304,-0.607391,-0.531342,-0.437653,-0.335632,-0.229706,-0.130432,-0.0472107,0.0170898,0.0651245,0.0940552,0.10495,0.104126,0.10376,0.116425,0.15033,0.209564,0.288025,0.378815,0.469727,0.549774,0.610779,0.645294,0.649658,0.61908,0.555328,0.466614,0.369873,0.27774,0.201904,0.150208,0.124573,0.123169,0.134277,0.15567,0.180023,0.199982,0.204559,0.185913,0.143097,0.0807495,0.00723267,-0.0696411,-0.136963,-0.18866,-0.22168,-0.234192,-0.228973,-0.205566,-0.170807,-0.132324,-0.0980835,-0.0737915,-0.0644531,-0.0678101,-0.0853882,-0.112213,-0.14267,-0.17453,-0.204559,-0.230804,-0.249176,-0.258606,-0.259521,-0.253479,-0.241364,-0.225952,-0.20874,-0.196075,-0.185242,-0.178192,-0.17157,-0.168549,-0.166931,-0.164276,-0.158997,-0.148071,-0.127136,-0.0920105,-0.0432739,0.0146484,0.0770264,0.13797,0.19635,0.247009,0.293427,0.333435,0.369263,0.398163,0.422455,0.445435,0.46698,0.487671,0.502625,0.50708,0.495453,0.469513,0.430878,0.384949,0.333527,0.278442,0.220673,0.160828,0.103271,0.0522766,0.00241089,-0.0500183,-0.111084,-0.180725,-0.254303,-0.32486,-0.391907,-0.453827,-0.509308,-0.555542,-0.591156,-0.616608,-0.631744,-0.638123,-0.641449,-0.645294,-0.648132,-0.649384,-0.644684,-0.626526,-0.587494,-0.519592,-0.425659,-0.31543,-0.19873,-0.0834961,0.0254517,0.12085,0.194733,0.246796,0.277527,0.282013,0.271118,0.263306,0.272797,0.306152,0.365936,0.44342,0.525421,0.598297,0.656403,0.693573,0.702148,0.680634,0.623413,0.530426,0.420319,0.309662,0.214478,0.143311,0.102478,0.0891113,0.094696,0.110016,0.130005,0.14624,0.153656,0.143738,0.106995,0.0445862,-0.0336304,-0.116516,-0.190918,-0.246307,-0.278076,-0.288788,-0.283447,-0.263458,-0.233002,-0.196472,-0.161438,-0.134003,-0.121429,-0.124451,-0.142242,-0.171021,-0.202728,-0.23111,-0.25528,-0.275421,-0.291443,-0.300812,-0.298645,-0.286041,-0.265289,-0.241486,-0.217224,-0.198181,-0.183472,-0.170532,-0.157806,-0.145905,-0.135925,-0.126831,-0.11853,-0.105164,-0.0827942,-0.0493774,0.00134277,0.0640869,0.135132,0.206879,0.276062,0.342102,0.398224,0.444519,0.480042,0.503967,0.517334,0.523102,0.525513,0.530304,0.536316,0.539276,0.535065,0.516937,0.484833,0.438202,0.381653,0.31546,0.239868,0.16272,0.0860291,0.00958252,-0.0631714,-0.130859,-0.193665,-0.254395,-0.315704,-0.378479,-0.443115,-0.503815,-0.55484,-0.601532,-0.641357,-0.668732,-0.682739,-0.687927,-0.687714,-0.67807,-0.659363,-0.63855,-0.621826,-0.607544,-0.591156,-0.570435,-0.539093,-0.491669,-0.41626,-0.3125,-0.185638,-0.0462341,0.094635,0.226318,0.332825,0.408173,0.456573,0.477997,0.472321,0.441498,0.404083,0.381927,0.387268,0.423553,0.485474,0.559418,0.634033,0.694489,0.729645,0.733459,0.704742,0.64032,0.542999,0.421021,0.295746,0.17923,0.084137,0.0227356,-0.00167847,0.00357056,0.0232239,0.0458069,0.0667419,0.0825806,0.0822449,0.0585938,0.00796509,-0.06073,-0.140045,-0.219788,-0.287354,-0.331482,-0.35321,-0.354706,-0.342377,-0.321289,-0.290558,-0.258545,-0.228546,-0.207886,-0.19931,-0.204987,-0.224274,-0.251556,-0.277161,-0.297485,-0.315796,-0.330566,-0.340057,-0.338379,-0.324799,-0.3013,-0.268585,-0.230682,-0.194031,-0.161713,-0.134735,-0.109528,-0.0854797,-0.0628967,-0.0418396,-0.0201721,0.00357056,0.033783,0.0717468,0.120575,0.183197,0.255005,0.329651,0.401123,0.467377,0.522705,0.562439,0.587189,0.601196,0.605713,0.599915,0.586578,0.572998,0.562775,0.551605,0.534515,0.508545,0.467743,0.407166,0.329376,0.243347,0.155945,0.0662842,-0.0230713,-0.107788,-0.187622,-0.257202,-0.320496,-0.379822,-0.434113,-0.485321,-0.534454,-0.582275,-0.623077,-0.651764,-0.671967,-0.685394,-0.687317,-0.67984,-0.663879,-0.639954,-0.609375,-0.573975,-0.54068,-0.513489,-0.490814,-0.468536,-0.440521,-0.40683,-0.369904,-0.324951,-0.263824,-0.177551,-0.0643616,0.0670471,0.205353,0.338318,0.447754,0.517761,0.550751,0.560242,0.552246,0.524292,0.480469,0.436646,0.404449,0.390289,0.413849,0.473663,0.550415,0.618134,0.660431,0.673706,0.658264,0.617004,0.547821,0.451294,0.337799,0.218658,0.102692,0.00668335,-0.0507202,-0.0648804,-0.0500183,-0.0224609,0.00448608,0.0256042,0.0370178,0.0355225,0.0152588,-0.026886,-0.0934753,-0.180786,-0.2742,-0.352386,-0.406189,-0.436493,-0.446136,-0.437225,-0.414703,-0.384796,-0.351044,-0.314606,-0.280396,-0.259521,-0.259155,-0.278015,-0.304047,-0.329712,-0.347656,-0.357666,-0.357941,-0.350677,-0.333466,-0.305542,-0.263397,-0.210266,-0.150269,-0.0963135,-0.049469,-0.00985718,0.0250549,0.0579529,0.087738,0.115997,0.14267,0.16806,0.193817,0.226532,0.271484,0.33255,0.400543,0.469696,0.530487,0.577545,0.60675,0.616333,0.610535,0.592316,0.571075,0.547028,0.519745,0.493073,0.470551,0.449402,0.422455,0.384949,0.33078,0.258392,0.165039,0.0646362,-0.030304,-0.113831,-0.186279,-0.24762,-0.300171,-0.347931,-0.392914,-0.433472,-0.469025,-0.501434,-0.534729,-0.568817,-0.601044,-0.626099,-0.638702,-0.636719,-0.620667,-0.593964,-0.560974,-0.529388,-0.498352,-0.463593,-0.425598,-0.38974,-0.360535,-0.340973,-0.332306,-0.330414,-0.324738,-0.305603,-0.269653,-0.217743,-0.14386,-0.0424194,0.0802002,0.211273,0.338867,0.447571,0.522064,0.556824,0.561859,0.545532,0.504547,0.446014,0.387482,0.347931,0.335785,0.358276,0.415344,0.493011,0.571381,0.636505,0.678589,0.688934,0.664856,0.606201,0.513672,0.393677,0.261749,0.132172,0.022644,-0.049469,-0.0777283,-0.0723877,-0.0471497,-0.0146179,0.0176392,0.0426941,0.0492249,0.028717,-0.0230103,-0.103851,-0.205292,-0.316925,-0.417358,-0.493286,-0.53949,-0.557434,-0.547791,-0.51825,-0.474152,-0.423492,-0.369171,-0.321136,-0.289764,-0.282593,-0.295166,-0.318665,-0.342102,-0.359497,-0.366028,-0.360168,-0.341187,-0.309387,-0.261963,-0.202271,-0.133667,-0.0638123,0,0.052887,0.0934753,0.12558,0.150421,0.172638,0.191559,0.208588,0.226807,0.248383,0.277466,0.318329,0.370575,0.429474,0.486725,0.537689,0.573822,0.590851,0.588104,0.569244,0.539307,0.504486,0.473785,0.449371,0.42807,0.409088,0.389038,0.364746,0.327545,0.276947,0.209839,0.126404,0.033783,-0.0570374,-0.134308,-0.194733,-0.238556,-0.272522,-0.303833,-0.337189,-0.373047,-0.410217,-0.446777,-0.483734,-0.519012,-0.552246,-0.579956,-0.594849,-0.594025,-0.575928,-0.546326,-0.512756,-0.48056,-0.450928,-0.424347,-0.40274,-0.383453,-0.367279,-0.354004,-0.349213,-0.353271,-0.359253,-0.357635,-0.343933,-0.31546,-0.265686,-0.190491,-0.0873108,0.0327759,0.163544,0.291382,0.404144,0.48877,0.535217,0.548981,0.53598,0.499695,0.44635,0.392975,0.357727,0.353302,0.37793,0.437866,0.523682,0.614929,0.69574,0.753143,0.78064,0.769684,0.715302,0.618225,0.485748,0.339417,0.195923,0.0697937,-0.020813,-0.0679016,-0.0754089,-0.0598755,-0.0296936,0.00311279,0.0267944,0.0289917,-0.000152588,-0.0651245,-0.160736,-0.278015,-0.404297,-0.518311,-0.604004,-0.655365,-0.674988,-0.660767,-0.61969,-0.560608,-0.492371,-0.428436,-0.374481,-0.340485,-0.327698,-0.331635,-0.345337,-0.355469,-0.356873,-0.348236,-0.325989,-0.29126,-0.243744,-0.186005,-0.120667,-0.0529175,0.0131531,0.0716858,0.118683,0.156738,0.188873,0.216095,0.239807,0.258514,0.275696,0.290527,0.30658,0.325134,0.347809,0.378113,0.412964,0.447266,0.477997,0.503632,0.520569,0.524872,0.515564,0.496155,0.469574,0.440735,0.412537,0.391144,0.373901,0.358582,0.337463,0.305725,0.263153,0.207397,0.141815,0.0673828,-0.00857544,-0.077301,-0.13562,-0.18219,-0.21814,-0.245667,-0.272736,-0.305878,-0.346191,-0.390076,-0.435944,-0.479858,-0.517426,-0.544617,-0.560669,-0.565033,-0.561157,-0.547882,-0.528534,-0.506287,-0.485474,-0.469238,-0.455627,-0.445251,-0.435242,-0.420685,-0.40332,-0.385651,-0.371948,-0.361176,-0.354065,-0.34549,-0.329163,-0.297913,-0.24234,-0.155945,-0.0412903,0.0957336,0.239044,0.375092,0.491119,0.577759,0.631012,0.652496,0.640381,0.596283,0.533173,0.468994,0.42865,0.425873,0.461273,0.533386,0.621887,0.710571,0.783905,0.832794,0.844604,0.80838,0.720276,0.585083,0.414551,0.231018,0.0601501,-0.0787048,-0.16687,-0.205688,-0.205566,-0.183472,-0.14624,-0.110931,-0.0857544,-0.0868225,-0.12439,-0.203369,-0.313202,-0.4375,-0.558075,-0.655426,-0.716705,-0.741394,-0.730438,-0.689331,-0.623444,-0.54364,-0.457916,-0.376099,-0.310089,-0.267242,-0.247406,-0.242645,-0.243774,-0.241425,-0.234131,-0.22049,-0.20163,-0.174316,-0.137329,-0.0890503,-0.0300903,0.0333557,0.093689,0.146271,0.18869,0.22229,0.250793,0.273926,0.290131,0.299194,0.301941,0.300018,0.298981,0.304535,0.317139,0.338806,0.364044,0.388306,0.409973,0.427948,0.443481,0.453613,0.457825,0.455292,0.442413,0.422791,0.399139,0.376801,0.357086,0.335266,0.308624,0.2724,0.227936,0.175812,0.117554,0.0588684,0.00119019,-0.0562134,-0.111298,-0.163635,-0.207672,-0.245575,-0.281586,-0.319305,-0.360168,-0.40329,-0.447479,-0.487427,-0.522186,-0.546478,-0.561584,-0.569885,-0.572845,-0.570526,-0.560333,-0.542175,-0.51889,-0.493286,-0.466461,-0.439972,-0.410675,-0.378601,-0.342438,-0.307281,-0.281464,-0.269012,-0.264587,-0.264648,-0.265198,-0.258728,-0.231079,-0.17453,-0.0856323,0.02948,0.169312,0.320099,0.468506,0.598724,0.690338,0.734222,0.734283,0.695679,0.622314,0.532166,0.451782,0.397736,0.377502,0.397736,0.462769,0.553589,0.647888,0.728607,0.78009,0.787048,0.737518,0.630035,0.475281,0.29483,0.110229,-0.0612183,-0.198395,-0.282959,-0.314941,-0.30658,-0.266144,-0.210571,-0.157715,-0.126343,-0.125977,-0.162292,-0.234741,-0.331696,-0.442902,-0.551056,-0.635742,-0.685486,-0.702057,-0.682678,-0.629395,-0.55069,-0.462524,-0.375366,-0.296173,-0.232513,-0.190582,-0.169525,-0.164246,-0.166107,-0.168549,-0.169312,-0.162933,-0.14563,-0.118134,-0.0799255,-0.0343323,0.0177307,0.072876,0.124939,0.167297,0.201813,0.228058,0.249664,0.263458,0.271973,0.277954,0.280609,0.281128,0.281952,0.285614,0.291534,0.304688,0.321716,0.339783,0.359039,0.376312,0.388092,0.394165,0.394165,0.38974,0.377258,0.361511,0.344482,0.325378,0.30777,0.290833,0.27182,0.249451,0.218292,0.174896,0.119232,0.0560608,-0.0078125,-0.0683899,-0.122253,-0.165802,-0.202271,-0.234131,-0.262878,-0.289978,-0.316071,-0.346191,-0.380035,-0.417511,-0.455139,-0.489471,-0.514374,-0.529358,-0.536072,-0.534851,-0.526428,-0.511871,-0.489258,-0.45993,-0.425751,-0.390137,-0.356384,-0.327118,-0.303131,-0.281128,-0.261963,-0.249023,-0.245361,-0.24939,-0.257111,-0.259918,-0.25,-0.214478,-0.145325,-0.0386353,0.0960083,0.244873,0.392761,0.528748,0.636169,0.701355,0.726685,0.710785,0.652771,0.557983,0.452423,0.368469,0.322144,0.323547,0.372009,0.455383,0.551331,0.643188,0.713318,0.749756,0.7388,0.66626,0.535553,0.35907,0.165894,-0.0216675,-0.180511,-0.290344,-0.342865,-0.346619,-0.315796,-0.260773,-0.197754,-0.139374,-0.10434,-0.10968,-0.158478,-0.243958,-0.351868,-0.464386,-0.56189,-0.627136,-0.65509,-0.647278,-0.60614,-0.533875,-0.443481,-0.348907,-0.260925,-0.189941,-0.143585,-0.123169,-0.122253,-0.128876,-0.133942,-0.133667,-0.126984,-0.113892,-0.0927124,-0.0635986,-0.0279846,0.0114746,0.0531921,0.090332,0.118805,0.137451,0.153168,0.168274,0.184113,0.200562,0.213074,0.222382,0.226746,0.228638,0.230682,0.233765,0.239624,0.24826,0.256989,0.267181,0.281891,0.299835,0.316498,0.331268,0.339142,0.342316,0.339661,0.335785,0.332977,0.330933,0.326843,0.315704,0.299103,0.276123,0.247559,0.206604,0.156158,0.0975037,0.0344543,-0.0280762,-0.0829468,-0.122772,-0.153412,-0.177002,-0.202972,-0.230103,-0.260284,-0.293213,-0.330017,-0.370575,-0.41391,-0.454102,-0.48941,-0.514862,-0.527344,-0.527527,-0.518341,-0.502197,-0.479706,-0.450439,-0.41864,-0.38446,-0.349274,-0.315735,-0.287567,-0.267822,-0.251648,-0.239044,-0.232086,-0.233917,-0.238678,-0.241516,-0.238892,-0.224762,-0.187042,-0.114471,-0.00430298,0.13028,0.275482,0.419769,0.549225,0.643616,0.692993,0.699677,0.667389,0.597473,0.493195,0.386841,0.302917,0.260651,0.265198,0.320312,0.411682,0.513611,0.606262,0.672729,0.700867,0.678497,0.596558,0.457611,0.279266,0.0933533,-0.0825806,-0.228149,-0.320435,-0.355255,-0.340485,-0.291718,-0.222015,-0.145752,-0.0810547,-0.0455322,-0.0538025,-0.105743,-0.192627,-0.299042,-0.407593,-0.499664,-0.557526,-0.579041,-0.568634,-0.524292,-0.453949,-0.370087,-0.286316,-0.213562,-0.156311,-0.122284,-0.111694,-0.116852,-0.128387,-0.137878,-0.141815,-0.143219,-0.138519,-0.127106,-0.11087,-0.085968,-0.0567627,-0.0234985,0.0116882,0.0437012,0.0716248,0.0984192,0.125763,0.151733,0.174316,0.191284,0.201813,0.204865,0.203888,0.202332,0.203308,0.210205,0.22406,0.24115,0.261292,0.284851,0.309174,0.330231,0.346832,0.35611,0.35907,0.355469,0.352081,0.349213,0.350037,0.34964,0.346039,0.332611,0.309326,0.274445,0.227081,0.170593,0.106293,0.0400391,-0.0196228,-0.0691528,-0.103333,-0.124939,-0.139862,-0.154266,-0.176239,-0.207581,-0.249451,-0.298981,-0.355469,-0.412811,-0.466187,-0.509308,-0.535858,-0.544373,-0.534149,-0.509949,-0.475677,-0.437225,-0.398865,-0.364044,-0.334839,-0.312073,-0.295959,-0.287079,-0.282501,-0.278015,-0.269836,-0.262115,-0.254089,-0.246765,-0.23645,-0.225189,-0.210846,-0.187836,-0.146545,-0.0794067,0.0144958,0.129852,0.258179,0.386414,0.504028,0.590912,0.634033,0.636444,0.604706,0.540131,0.450165,0.355621,0.282532,0.246277,0.253906,0.313049,0.409424,0.515656,0.610565,0.676117,0.701813,0.676056,0.589294,0.450653,0.277679,0.0983582,-0.0694885,-0.208038,-0.29483,-0.320435,-0.297516,-0.240509,-0.167419,-0.0930786,-0.0360718,-0.0123291,-0.0300903,-0.0912476,-0.185303,-0.299103,-0.413361,-0.51004,-0.571014,-0.594086,-0.584259,-0.541412,-0.472809,-0.391541,-0.309479,-0.23938,-0.181976,-0.145325,-0.13147,-0.135193,-0.147247,-0.157593,-0.165314,-0.169312,-0.167297,-0.156097,-0.136047,-0.108612,-0.0729675,-0.0309448,0.0153198,0.0583801,0.0953064,0.128235,0.157104,0.18219,0.201538,0.214264,0.221039,0.219757,0.21405,0.208801,0.206757,0.213074,0.228424,0.251343,0.278595,0.308899,0.337799,0.359955,0.37262,0.375946,0.369629,0.352814,0.332306,0.312775,0.300262,0.296448,0.296173,0.297424,0.293793,0.278137,0.24588,0.194427,0.131744,0.0628357,-0.0038147,-0.0626221,-0.107483,-0.137451,-0.15567,-0.168427,-0.180664,-0.19812,-0.22464,-0.265228,-0.317261,-0.377625,-0.436951,-0.487091,-0.523376,-0.541809,-0.540466,-0.526154,-0.498505,-0.461395,-0.419128,-0.375671,-0.34021,-0.312408,-0.291748,-0.2771,-0.267761,-0.259674,-0.250732,-0.240601,-0.229706,-0.220062,-0.21167,-0.200897,-0.186493,-0.169556,-0.145477,-0.106232,-0.0395203,0.0554504,0.174622,0.304199,0.428284,0.538147,0.61673,0.656433,0.652985,0.613312,0.542389,0.444336,0.343506,0.263885,0.223999,0.233337,0.291931,0.389221,0.492645,0.583466,0.645447,0.665283,0.635376,0.547302,0.406281,0.226318,0.040863,-0.127747,-0.261902,-0.34491,-0.369415,-0.343811,-0.285034,-0.209351,-0.132812,-0.0737915,-0.0435486,-0.0563354,-0.113678,-0.20459,-0.314331,-0.419678,-0.507507,-0.561462,-0.577271,-0.560883,-0.515015,-0.444336,-0.358917,-0.272797,-0.197388,-0.138855,-0.101807,-0.0866699,-0.088623,-0.0992432,-0.109589,-0.116302,-0.121643,-0.123322,-0.117218,-0.103333,-0.0799255,-0.0472717,-0.00863647,0.032074,0.0718079,0.106018,0.136353,0.165741,0.191681,0.211945,0.223572,0.226318,0.221954,0.21106,0.201752,0.195282,0.195435,0.203857,0.220673,0.244019,0.273743,0.306519,0.335632,0.355316,0.362854,0.3573,0.339783,0.313416,0.288483,0.267029,0.251343,0.240021,0.231659,0.223633,0.213287,0.194214,0.162292,0.11615,0.0611877,0.00253296,-0.0514221,-0.0948486,-0.12558,-0.147858,-0.165375,-0.184937,-0.210114,-0.242767,-0.283234,-0.329651,-0.381653,-0.432709,-0.476624,-0.505157,-0.512207,-0.49939,-0.468231,-0.428284,-0.382782,-0.338104,-0.298218,-0.268463,-0.249451,-0.239044,-0.235718,-0.234741,-0.2341,-0.227448,-0.213348,-0.188965,-0.161041,-0.138672,-0.121277,-0.108917,-0.0984802,-0.0907593,-0.0770264,-0.0462036,0.0123291,0.0965881,0.197266,0.30481,0.4104,0.50354,0.565582,0.587708,0.572723,0.522675,0.43927,0.338501,0.248596,0.188446,0.170715,0.198029,0.266693,0.361023,0.457397,0.535614,0.580109,0.581299,0.531677,0.423767,0.270142,0.0962524,-0.0690002,-0.209625,-0.309814,-0.354279,-0.344269,-0.292999,-0.216339,-0.131836,-0.0539551,-0.00296021,0.00646973,-0.0328369,-0.111359,-0.213226,-0.32309,-0.423706,-0.497223,-0.530487,-0.526825,-0.490448,-0.425049,-0.338806,-0.246918,-0.166321,-0.106079,-0.0676575,-0.0526733,-0.059021,-0.0778198,-0.100891,-0.118591,-0.131287,-0.137817,-0.134369,-0.117676,-0.0906982,-0.0574036,-0.02005,0.0189819,0.0570679,0.090271,0.116486,0.139923,0.1604,0.175018,0.182007,0.183624,0.178986,0.171234,0.161224,0.154205,0.150757,0.155884,0.170044,0.191437,0.221405,0.256012,0.289398,0.314026,0.327911,0.327881,0.315155,0.289703,0.259949,0.230042,0.207306,0.193451,0.189026,0.19281,0.201538,0.207184,0.203461,0.183319,0.146729,0.0956116,0.0362244,-0.0236206,-0.0761108,-0.11972,-0.151093,-0.17334,-0.189392,-0.204865,-0.221741,-0.245026,-0.273163,-0.307648,-0.344849,-0.381287,-0.410767,-0.426514,-0.427155,-0.413574,-0.390076,-0.360199,-0.325775,-0.294037,-0.263611,-0.239105,-0.219543,-0.206421,-0.196411,-0.188049,-0.179474,-0.167908,-0.155121,-0.142181,-0.134277,-0.133789,-0.140472,-0.14801,-0.152435,-0.147308,-0.123199,-0.0700073,0.0127869,0.117706,0.231171,0.345276,0.445923,0.517761,0.548492,0.539154,0.491669,0.412872,0.313049,0.214264,0.144714,0.11853,0.138885,0.205353,0.303986,0.412323,0.507019,0.571655,0.593109,0.562225,0.47287,0.333923,0.165619,-0.00457764,-0.150696,-0.261353,-0.321136,-0.322693,-0.278381,-0.202942,-0.114471,-0.0297546,0.0328369,0.0556335,0.02948,-0.0415649,-0.14267,-0.255981,-0.364746,-0.452057,-0.502991,-0.512421,-0.486969,-0.429962,-0.347656,-0.254852,-0.16983,-0.105438,-0.0658264,-0.0501709,-0.0580444,-0.0812378,-0.108551,-0.133789,-0.151794,-0.161377,-0.160339,-0.143951,-0.113831,-0.077179,-0.0373535,0.00253296,0.0391846,0.0689392,0.0920105,0.109894,0.124786,0.135437,0.141602,0.143646,0.143158,0.143433,0.141113,0.140045,0.141876,0.148438,0.161163,0.181091,0.207306,0.237701,0.268097,0.293335,0.309052,0.313751,0.310181,0.295532,0.274933,0.253235,0.232941,0.218445,0.210632,0.209564,0.21405,0.2164,0.212189,0.194366,0.162567,0.118195,0.0657654,0.0122375,-0.0391235,-0.0813904,-0.115295,-0.138367,-0.154327,-0.167511,-0.182617,-0.203735,-0.233002,-0.271179,-0.314087,-0.358154,-0.397308,-0.424835,-0.436371,-0.431427,-0.411682,-0.378418,-0.33844,-0.295654,-0.256561,-0.2258,-0.206482,-0.197876,-0.197906,-0.202454,-0.207123,-0.208923,-0.206116,-0.197479,-0.185516,-0.175781,-0.16925,-0.161713,-0.154327,-0.143433,-0.121979,-0.0804138,-0.0133667,0.0775757,0.179688,0.285248,0.382477,0.461761,0.507568,0.514099,0.486877,0.430267,0.349365,0.257904,0.184082,0.145691,0.149689,0.197449,0.280914,0.381561,0.475067,0.546814,0.580322,0.56723,0.503479,0.387268,0.231506,0.0650635,-0.0838013,-0.202515,-0.277679,-0.298492,-0.268433,-0.20401,-0.123108,-0.0412292,0.0244751,0.0565796,0.0443115,-0.0163879,-0.111145,-0.220764,-0.328888,-0.419617,-0.478912,-0.496674,-0.47934,-0.433044,-0.362946,-0.278351,-0.195343,-0.13147,-0.091095,-0.0752563,-0.0782471,-0.0962219,-0.121429,-0.142883,-0.156403,-0.162231,-0.161163,-0.149261,-0.126343,-0.0970154,-0.0647278,-0.0328369,-0.00106812,0.0291138,0.0566406,0.0814819,0.104675,0.127472,0.144135,0.152649,0.156097,0.154114,0.14801,0.138641,0.130157,0.128235,0.134979,0.155029,0.185455,0.22464,0.268433,0.308105,0.335907,0.349274,0.349426,0.33429,0.306641,0.26944,0.23349,0.202728,0.185028,0.180237,0.186707,0.200439,0.212433,0.214417,0.201324,0.171143,0.126404,0.071106,0.0112,-0.0464172,-0.0981445,-0.138947,-0.170654,-0.191406,-0.207672,-0.222229,-0.240387,-0.264862,-0.294403,-0.3255,-0.356873,-0.381866,-0.3974,-0.401672,-0.394012,-0.37616,-0.349365,-0.31839,-0.287292,-0.260071,-0.239868,-0.226013,-0.21814,-0.214081,-0.212524,-0.209015,-0.203369,-0.19516,-0.183838,-0.173615,-0.166931,-0.164673,-0.165375,-0.167084,-0.156891,-0.125641,-0.0688171,0.013916,0.115356,0.227783,0.333588,0.420105,0.481598,0.512482,0.507629,0.466675,0.394653,0.304169,0.221863,0.165466,0.150177,0.181641,0.255096,0.353149,0.449951,0.529724,0.580994,0.589294,0.545685,0.450653,0.314026,0.152924,-0.00582886,-0.140961,-0.234314,-0.275146,-0.268036,-0.221893,-0.153442,-0.0736389,-0.00265503,0.0369263,0.0379944,-0.00534058,-0.0844116,-0.188171,-0.299255,-0.39502,-0.466003,-0.499878,-0.499664,-0.465851,-0.404022,-0.325836,-0.242645,-0.173004,-0.122253,-0.0937195,-0.0890503,-0.0988464,-0.117279,-0.135406,-0.150757,-0.160309,-0.161804,-0.153229,-0.131958,-0.103333,-0.0708923,-0.0349731,0,0.0322266,0.0598755,0.0852051,0.107971,0.126984,0.140839,0.147675,0.149994,0.148102,0.142242,0.133789,0.126221,0.126434,0.133789,0.151093,0.179321,0.216522,0.255768,0.293701,0.322632,0.339294,0.341187,0.329315,0.304962,0.273926,0.243958,0.218567,0.203949,0.201752,0.211334,0.225952,0.238708,0.242493,0.230377,0.199799,0.150818,0.0915222,0.0256042,-0.0365295,-0.0920105,-0.136047,-0.166321,-0.186157,-0.198578,-0.210266,-0.223083,-0.243195,-0.272125,-0.308319,-0.346893,-0.382538,-0.40979,-0.425323,-0.427368,-0.415833,-0.392822,-0.362152,-0.327606,-0.294464,-0.266327,-0.246155,-0.233612,-0.22702,-0.224426,-0.221802,-0.215881,-0.20816,-0.197174,-0.187958,-0.181427,-0.181793,-0.182404,-0.178986,-0.161713,-0.123444,-0.0613403,0.025177,0.129364,0.24292,0.351318,0.443604,0.512787,0.546234,0.540131,0.491577,0.414978,0.323395,0.240021,0.184998,0.169098,0.195129,0.260773,0.351532,0.448181,0.532318,0.587067,0.597748,0.553497,0.45755,0.320801,0.158508,-0.00247192,-0.139648,-0.237579,-0.286682,-0.287994,-0.245514,-0.17392,-0.0904541,-0.015625,0.026947,0.0297546,-0.0102539,-0.0849915,-0.186981,-0.296112,-0.39502,-0.471039,-0.510437,-0.513489,-0.47821,-0.413452,-0.33255,-0.24826,-0.176025,-0.124359,-0.0941162,-0.0881348,-0.0978699,-0.117889,-0.141388,-0.161713,-0.174835,-0.175293,-0.162415,-0.137329,-0.105225,-0.0690918,-0.0319519,0.00366211,0.0357361,0.063324,0.0873108,0.10672,0.122192,0.133575,0.141693,0.147369,0.150177,0.151581,0.1492,0.148224,0.150818,0.159393,0.175659,0.200836,0.233002,0.267822,0.3013,0.328156,0.343719,0.346893,0.337189,0.317139,0.290741,0.261536,0.236511,0.217957,0.210754,0.21344,0.221039,0.226257,0.223694,0.208435,0.175812,0.127594,0.0694275,0.00845337,-0.0494385,-0.100586,-0.142029,-0.171844,-0.19101,-0.204498,-0.216736,-0.231598,-0.252533,-0.281738,-0.318939,-0.358795,-0.394318,-0.421448,-0.435791,-0.435242,-0.419769,-0.39325,-0.358917,-0.321564,-0.2854,-0.255157,-0.233704,-0.221191,-0.216736,-0.2164,-0.217804,-0.216888,-0.212372,-0.203247,-0.194366,-0.188904,-0.18515,-0.181549,-0.173706,-0.153442,-0.109528,-0.042572,0.0441895,0.147858,0.259949,0.36618,0.455933,0.519958,0.551178,0.541626,0.49292,0.417572,0.328888,0.249237,0.199371,0.18573,0.212311,0.278564,0.367767,0.45932,0.537933,0.5896,0.595093,0.546753,0.446991,0.307404,0.144897,-0.0153198,-0.151947,-0.251068,-0.302765,-0.302765,-0.263611,-0.196289,-0.113892,-0.0412292,0.00308228,0.00588989,-0.0317383,-0.104675,-0.204071,-0.311066,-0.40921,-0.482239,-0.521576,-0.524231,-0.489838,-0.42392,-0.339447,-0.252563,-0.176727,-0.119537,-0.0858765,-0.0742798,-0.0830688,-0.101379,-0.124084,-0.144623,-0.157501,-0.159546,-0.14682,-0.120636,-0.0877991,-0.0512695,-0.013092,0.0242004,0.0562134,0.0830688,0.106232,0.124573,0.137115,0.146881,0.153229,0.156677,0.159393,0.158997,0.15567,0.152435,0.15329,0.159271,0.173126,0.194641,0.224823,0.257812,0.289001,0.315369,0.332245,0.33725,0.330688,0.311859,0.285553,0.256348,0.23053,0.209778,0.199982,0.199982,0.206329,0.211884,0.211121,0.198242,0.16861,0.124603,0.0704041,0.00991821,-0.0494385,-0.104675,-0.149017,-0.184601,-0.209015,-0.226013,-0.238922,-0.25177,-0.270569,-0.296173,-0.329102,-0.363922,-0.395844,-0.419891,-0.432922,-0.43396,-0.420532,-0.396484,-0.363983,-0.327484,-0.290802,-0.259857,-0.236145,-0.220734,-0.21167,-0.208923,-0.207245,-0.205688,-0.201813,-0.196045,-0.18866,-0.182678,-0.178345,-0.170654,-0.15329,-0.119293,-0.0637207,0.0148315,0.111359,0.21814,0.32431,0.419189,0.492706,0.540985,0.555481,0.52951,0.468506,0.386475,0.29892,0.229065,0.191895,0.195129,0.234528,0.30249,0.387695,0.471191,0.53894,0.572052,0.557098,0.487213,0.371735,0.223907,0.0623474,-0.0887756,-0.210419,-0.289398,-0.321014,-0.307495,-0.254517,-0.176208,-0.0918884,-0.0241394,0.00653076,-0.00473022,-0.0563354,-0.139771,-0.240814,-0.344513,-0.433899,-0.498474,-0.525513,-0.511505,-0.459167,-0.379028,-0.288422,-0.201202,-0.132263,-0.0854797,-0.0620422,-0.0626221,-0.0778809,-0.103638,-0.13205,-0.154907,-0.165192,-0.158478,-0.134918,-0.100891,-0.061676,-0.0217896,0.0161133,0.0504456,0.07901,0.100891,0.116486,0.12619,0.13092,0.135498,0.140289,0.147156,0.153229,0.157074,0.158356,0.160339,0.165741,0.177612,0.193542,0.216125,0.241852,0.267242,0.290527,0.309326,0.32016,0.32016,0.309448,0.290558,0.26712,0.243744,0.225098,0.211823,0.207611,0.208374,0.211029,0.209076,0.198029,0.172974,0.134155,0.0820923,0.0242004,-0.0355835,-0.0903931,-0.136902,-0.173889,-0.201538,-0.220764,-0.235382,-0.247192,-0.262207,-0.284058,-0.312622,-0.345703,-0.378967,-0.406128,-0.4245,-0.430664,-0.424561,-0.407318,-0.380951,-0.347504,-0.311432,-0.277863,-0.249512,-0.228546,-0.214783,-0.208038,-0.204132,-0.20105,-0.198822,-0.196777,-0.194366,-0.191925,-0.189087,-0.182617,-0.164673,-0.126434,-0.0637512,0.0177917,0.114746,0.223907,0.335205,0.431732,0.504883,0.548584,0.560333,0.532593,0.471069,0.387756,0.300873,0.233978,0.196472,0.196777,0.233978,0.302155,0.385864,0.466003,0.531555,0.564606,0.55011,0.481537,0.367554,0.225555,0.0681152,-0.0812378,-0.205627,-0.289001,-0.322601,-0.312469,-0.265991,-0.193054,-0.109894,-0.0396729,-0.00689697,-0.0144043,-0.0580444,-0.133087,-0.227631,-0.328613,-0.417236,-0.480682,-0.508636,-0.500336,-0.454803,-0.378632,-0.291168,-0.207672,-0.139008,-0.0909729,-0.0636597,-0.0605774,-0.0750732,-0.0976257,-0.122742,-0.143494,-0.155121,-0.151093,-0.129913,-0.0975037,-0.0631104,-0.0267334,0.00717163,0.0402222,0.0674744,0.0870972,0.103638,0.115082,0.124817,0.13205,0.141541,0.151459,0.161957,0.167938,0.170105,0.171295,0.17511,0.183136,0.195343,0.213562,0.236023,0.260712,0.283569,0.303558,0.317566,0.32312,0.316986,0.301849,0.280396,0.258667,0.238983,0.223297,0.212738,0.208008,0.203522,0.195862,0.178986,0.151581,0.111359,0.0629578,0.00863647,-0.0460815,-0.0971375,-0.137512,-0.171234,-0.197906,-0.220032,-0.238129,-0.2565,-0.277191,-0.302094,-0.330719,-0.361664,-0.391052,-0.412323,-0.424194,-0.422211,-0.410278,-0.388672,-0.362732,-0.331757,-0.300049,-0.2724,-0.248688,-0.230103,-0.21814,-0.211456,-0.208099,-0.204376,-0.20105,-0.196564,-0.195068,-0.195343,-0.19516,-0.184937,-0.156525,-0.102997,-0.0249634,0.068512,0.172485,0.281097,0.385162,0.471313,0.529144,0.555756,0.545074,0.496185,0.419342,0.331848,0.257477,0.211823,0.20105,0.223572,0.277893,0.354645,0.439026,0.514893,0.563202,0.570374,0.522705,0.424957,0.292664,0.139984,-0.0133667,-0.148926,-0.252625,-0.308258,-0.316711,-0.284637,-0.220612,-0.140686,-0.0626221,-0.0133667,-0.00473022,-0.0350342,-0.0964355,-0.182678,-0.283569,-0.38324,-0.46463,-0.512268,-0.520294,-0.489685,-0.424774,-0.339355,-0.250916,-0.171448,-0.110931,-0.0681763,-0.0498962,-0.0559998,-0.0782166,-0.108612,-0.137604,-0.158356,-0.165955,-0.154846,-0.127258,-0.0923767,-0.052887,-0.0127258,0.0287781,0.0666199,0.0949097,0.112274,0.123871,0.129913,0.132446,0.134796,0.13916,0.14444,0.150909,0.15506,0.161377,0.171509,0.186218,0.203735,0.223206,0.244812,0.266479,0.287079,0.304474,0.315948,0.321198,0.315033,0.302704,0.284698,0.267029,0.250305,0.235046,0.221863,0.211243,0.203888,0.194458,0.178528,0.153931,0.118408,0.0749817,0.0261841,-0.0250244,-0.0747986,-0.117279,-0.15274,-0.184448,-0.212372,-0.237152,-0.25824,-0.282318,-0.307343,-0.335754,-0.364319,-0.389954,-0.408783,-0.417999,-0.417999,-0.408508,-0.391479,-0.371033,-0.346893,-0.320801,-0.298126,-0.280182,-0.264923,-0.254303,-0.24585,-0.239899,-0.233978,-0.228088,-0.222382,-0.21933,-0.216614,-0.209656,-0.187775,-0.144836,-0.0795593,0.00701904,0.108673,0.219116,0.329285,0.428436,0.503204,0.549011,0.56073,0.535828,0.479218,0.404419,0.328674,0.27121,0.241302,0.245026,0.281036,0.343231,0.419922,0.493347,0.549835,0.573822,0.554199,0.484406,0.37384,0.235809,0.0842896,-0.0602722,-0.181427,-0.264221,-0.301727,-0.297729,-0.258392,-0.195221,-0.124817,-0.0643005,-0.0339661,-0.0400085,-0.0794067,-0.146545,-0.234039,-0.331116,-0.41864,-0.482574,-0.513458,-0.508392,-0.46936,-0.400543,-0.317902,-0.233185,-0.158936,-0.102478,-0.0658264,-0.0548096,-0.064209,-0.0875244,-0.116272,-0.143799,-0.163055,-0.168854,-0.156464,-0.129669,-0.0930176,-0.0512085,-0.00610352,0.0397644,0.0777893,0.105927,0.124023,0.13443,0.138947,0.138306,0.136322,0.136536,0.138947,0.14386,0.153015,0.166229,0.186157,0.210266,0.236389,0.263153,0.288208,0.309967,0.323944,0.331329,0.330994,0.324585,0.310883,0.294769,0.277893,0.263947,0.253174,0.243835,0.235229,0.22644,0.21463,0.193542,0.16272,0.12149,0.0744324,0.0230713,-0.028717,-0.0768738,-0.118195,-0.151031,-0.177917,-0.202606,-0.226013,-0.250153,-0.278351,-0.311798,-0.34729,-0.381348,-0.412292,-0.434113,-0.44339,-0.440948,-0.425201,-0.402374,-0.373901,-0.345215,-0.317749,-0.295959,-0.282227,-0.274353,-0.269348,-0.266479,-0.264648,-0.260986,-0.25473,-0.247131,-0.23877,-0.228088,-0.211761,-0.179962,-0.127472,-0.0536804,0.0368042,0.138794,0.249756,0.355682,0.447266,0.514801,0.553345,0.5578,0.526703,0.468231,0.396698,0.327454,0.280975,0.261292,0.274414,0.31665,0.381989,0.454712,0.520355,0.567932,0.579193,0.544922,0.463318,0.344635,0.202728,0.0525513,-0.0862427,-0.199738,-0.271973,-0.300476,-0.289124,-0.245453,-0.182556,-0.115021,-0.0645752,-0.0455322,-0.06073,-0.106628,-0.178253,-0.265228,-0.356171,-0.434204,-0.487732,-0.508179,-0.495392,-0.450867,-0.382324,-0.303284,-0.225952,-0.159546,-0.108002,-0.0756836,-0.0646362,-0.0723267,-0.0907593,-0.113983,-0.136261,-0.151184,-0.154358,-0.143158,-0.120941,-0.0919495,-0.0562744,-0.0164795,0.0261536,0.063446,0.0942688,0.117065,0.133789,0.143707,0.149902,0.15274,0.154541,0.156464,0.157501,0.161804,0.171997,0.189087,0.21225,0.23938,0.267395,0.295471,0.318237,0.334564,0.34259,0.341675,0.332672,0.318268,0.299561,0.282288,0.267395,0.256561,0.246216,0.236877,0.226654,0.20929,0.18277,0.144989,0.0965881,0.0425415,-0.0142822,-0.0667419,-0.112366,-0.145142,-0.169678,-0.187042,-0.20459,-0.219788,-0.239899,-0.268463,-0.305176,-0.347015,-0.389923,-0.428558,-0.456207,-0.468658,-0.464844,-0.444794,-0.412445,-0.37439,-0.333679,-0.296661,-0.268097,-0.252838,-0.247894,-0.250916,-0.261261,-0.273743,-0.284149,-0.289398,-0.290466,-0.285248,-0.267975,-0.230194,-0.163757,-0.074585,0.0312195,0.14386,0.260437,0.369171,0.457703,0.519592,0.551239,0.552246,0.517334,0.454254,0.379517,0.313538,0.273499,0.261566,0.282867,0.331757,0.401917,0.475677,0.541138,0.58725,0.59845,0.564331,0.48053,0.360748,0.21936,0.0704956,-0.0679016,-0.181915,-0.255157,-0.283081,-0.275421,-0.235382,-0.175385,-0.109192,-0.060791,-0.0439148,-0.0609741,-0.106232,-0.174957,-0.259735,-0.349915,-0.42749,-0.479553,-0.499054,-0.486725,-0.442566,-0.374725,-0.299347,-0.229401,-0.171021,-0.127686,-0.10025,-0.0927124,-0.0997009,-0.115662,-0.132874,-0.147034,-0.154541,-0.150696,-0.132324,-0.107056,-0.0805664,-0.0534058,-0.0247498,0.00491333,0.0303955,0.0508423,0.0686035,0.085907,0.102722,0.120148,0.136963,0.155548,0.172211,0.185791,0.195343,0.205994,0.219757,0.234741,0.25058,0.268097,0.285889,0.303467,0.318329,0.329651,0.33606,0.336975,0.332031,0.322845,0.31369,0.305237,0.297485,0.286194,0.272522,0.25415,0.228333,0.191925,0.143494,0.0858765,0.0245667,-0.0372925,-0.0933533,-0.137329,-0.167358,-0.184753,-0.195984,-0.204559,-0.212738,-0.226868,-0.250519,-0.284851,-0.32901,-0.377136,-0.424194,-0.462311,-0.485046,-0.489349,-0.475403,-0.447571,-0.408997,-0.364197,-0.319092,-0.279205,-0.251495,-0.235748,-0.231567,-0.240021,-0.257141,-0.276764,-0.295685,-0.308563,-0.312683,-0.299316,-0.256775,-0.181061,-0.0766907,0.0448303,0.175537,0.304169,0.417084,0.504059,0.558197,0.575867,0.557922,0.504395,0.429352,0.349823,0.288208,0.258057,0.260712,0.297485,0.362427,0.440643,0.516907,0.578613,0.614777,0.609619,0.556366,0.456268,0.323395,0.174591,0.0270691,-0.102722,-0.201538,-0.257111,-0.271393,-0.249603,-0.201477,-0.138733,-0.0802002,-0.0448303,-0.0439758,-0.0766907,-0.138184,-0.218292,-0.30896,-0.395142,-0.462189,-0.500793,-0.504272,-0.475494,-0.417114,-0.340912,-0.263611,-0.196289,-0.146973,-0.115601,-0.104309,-0.111084,-0.129669,-0.152435,-0.173187,-0.183105,-0.180939,-0.162628,-0.130219,-0.0925903,-0.0533142,-0.0194702,0.0124512,0.0369873,0.0536194,0.0621948,0.0665588,0.0708923,0.0770874,0.0889893,0.106232,0.129913,0.156464,0.183624,0.209717,0.236298,0.26297,0.285767,0.304688,0.319031,0.327667,0.331635,0.33197,0.327972,0.321991,0.315033,0.307709,0.302551,0.301636,0.304474,0.308258,0.30896,0.299896,0.281403,0.248474,0.200562,0.139069,0.0688171,-0.00588989,-0.0780029,-0.13916,-0.18454,-0.213593,-0.228333,-0.235443,-0.238464,-0.242767,-0.254456,-0.275635,-0.306702,-0.346039,-0.388519,-0.43158,-0.464386,-0.486328,-0.48999,-0.478912,-0.454376,-0.420319,-0.382324,-0.343506,-0.307648,-0.27951,-0.259369,-0.251007,-0.253662,-0.263031,-0.276337,-0.2901,-0.299042,-0.291168,-0.25354,-0.180298,-0.0803223,0.038269,0.165955,0.296448,0.411804,0.501526,0.558502,0.581635,0.567017,0.51532,0.440521,0.363556,0.308777,0.283844,0.292145,0.330719,0.392761,0.463013,0.529999,0.581482,0.607758,0.593018,0.529572,0.423645,0.291718,0.150269,0.013031,-0.106506,-0.191925,-0.236359,-0.242126,-0.220032,-0.174164,-0.116577,-0.0673828,-0.045166,-0.0560608,-0.0975647,-0.160339,-0.239624,-0.327881,-0.410126,-0.470917,-0.501923,-0.497925,-0.461426,-0.396332,-0.317841,-0.242767,-0.179871,-0.133362,-0.104675,-0.0969543,-0.1091,-0.134155,-0.16333,-0.189301,-0.205841,-0.205048,-0.185852,-0.149567,-0.108215,-0.0660706,-0.0244141,0.0135803,0.0446167,0.0641479,0.0713196,0.072052,0.0699768,0.0693665,0.0741577,0.0863953,0.105438,0.129456,0.155762,0.186646,0.221527,0.259247,0.294495,0.324249,0.347534,0.363708,0.373322,0.375793,0.372406,0.361389,0.345886,0.327759,0.313202,0.305023,0.303711,0.303894,0.301178,0.292877,0.276031,0.247467,0.205139,0.147461,0.0787048,0.00289917,-0.0700684,-0.134216,-0.185211,-0.222107,-0.246918,-0.26535,-0.281036,-0.297211,-0.314667,-0.335999,-0.364349,-0.395844,-0.427155,-0.454865,-0.472595,-0.47821,-0.471954,-0.456909,-0.434113,-0.408722,-0.381561,-0.354706,-0.332397,-0.315857,-0.307129,-0.302795,-0.303772,-0.306213,-0.306427,-0.299194,-0.278564,-0.233826,-0.15976,-0.0596619,0.0574036,0.182831,0.302795,0.407043,0.48822,0.536743,0.554077,0.537231,0.491028,0.426453,0.359833,0.315094,0.300537,0.318542,0.365753,0.43045,0.502197,0.563049,0.606689,0.618988,0.5914,0.519165,0.407745,0.272095,0.128967,-0.00204468,-0.109406,-0.183746,-0.217499,-0.215393,-0.183411,-0.133514,-0.0780334,-0.0346985,-0.0192871,-0.0375061,-0.0874329,-0.15976,-0.245605,-0.334564,-0.414276,-0.4729,-0.500092,-0.493073,-0.455017,-0.389648,-0.314178,-0.240112,-0.180298,-0.138885,-0.116302,-0.112213,-0.126129,-0.151093,-0.181763,-0.208435,-0.224213,-0.223297,-0.204376,-0.169952,-0.127136,-0.0830994,-0.0406799,-0.00231934,0.0279236,0.0483093,0.0569153,0.0583191,0.0567627,0.0570679,0.0642395,0.0783691,0.101868,0.130005,0.162781,0.198364,0.235962,0.274353,0.307648,0.335419,0.354187,0.366089,0.373352,0.376923,0.377716,0.375458,0.370239,0.363922,0.358917,0.355835,0.353271,0.348785,0.337677,0.316711,0.283722,0.237427,0.181213,0.116364,0.0453186,-0.0263672,-0.0915222,-0.144196,-0.185242,-0.215607,-0.237488,-0.255798,-0.276337,-0.302429,-0.33197,-0.366364,-0.404144,-0.442291,-0.476898,-0.501923,-0.514954,-0.513824,-0.500031,-0.475769,-0.444305,-0.41217,-0.382355,-0.356323,-0.334991,-0.321472,-0.31662,-0.319733,-0.326263,-0.332947,-0.332397,-0.318542,-0.278778,-0.207733,-0.105927,0.0173645,0.149567,0.281464,0.400696,0.496155,0.557709,0.582275,0.570374,0.525696,0.458099,0.384308,0.327057,0.30188,0.309753,0.350281,0.415405,0.491791,0.562866,0.617004,0.641937,0.626801,0.565887,0.461212,0.325867,0.177704,0.0350952,-0.0861206,-0.175507,-0.224274,-0.23053,-0.203156,-0.152863,-0.0940552,-0.0418396,-0.0143433,-0.0203857,-0.0598145,-0.127258,-0.212036,-0.303497,-0.39035,-0.459229,-0.497223,-0.498993,-0.468018,-0.408936,-0.333923,-0.258026,-0.194458,-0.148376,-0.12262,-0.116425,-0.128937,-0.155121,-0.187958,-0.218658,-0.238342,-0.241852,-0.225739,-0.19458,-0.150269,-0.103546,-0.0567017,-0.0154114,0.02005,0.0436707,0.0550232,0.0556335,0.0509949,0.0462036,0.0481262,0.0577393,0.0775757,0.106293,0.142242,0.185242,0.232849,0.283203,0.328613,0.366791,0.391785,0.404236,0.405548,0.398956,0.38739,0.37384,0.360199,0.350494,0.346405,0.351166,0.36026,0.371094,0.374817,0.364746,0.33606,0.288727,0.22464,0.146881,0.0604248,-0.0260315,-0.104309,-0.169891,-0.221527,-0.255798,-0.277954,-0.292175,-0.306702,-0.32486,-0.347961,-0.376282,-0.408173,-0.441437,-0.474518,-0.501587,-0.519653,-0.527191,-0.523102,-0.508179,-0.485413,-0.459015,-0.431671,-0.403992,-0.378052,-0.355743,-0.339569,-0.329437,-0.325775,-0.322968,-0.311707,-0.28302,-0.227417,-0.142517,-0.0340576,0.0882874,0.214722,0.333466,0.437286,0.516937,0.563568,0.573608,0.550537,0.501038,0.438324,0.383667,0.352173,0.351868,0.378418,0.429565,0.49292,0.554962,0.604553,0.630737,0.621613,0.571991,0.481445,0.361572,0.222992,0.0875854,-0.0310364,-0.122742,-0.179047,-0.198303,-0.184998,-0.14801,-0.10025,-0.0556335,-0.0316467,-0.0349731,-0.0697937,-0.130493,-0.207886,-0.292297,-0.37149,-0.435608,-0.474792,-0.481201,-0.456635,-0.405151,-0.337463,-0.267975,-0.20874,-0.166931,-0.143951,-0.13913,-0.14978,-0.171448,-0.198669,-0.224701,-0.241302,-0.244019,-0.229553,-0.200195,-0.161377,-0.117554,-0.0757751,-0.0379333,-0.00588989,0.0173645,0.0323792,0.0386353,0.0402222,0.0412292,0.0467224,0.0586548,0.0787048,0.106079,0.139923,0.178772,0.223267,0.270142,0.315735,0.355896,0.386932,0.406891,0.416168,0.41745,0.411682,0.403595,0.393311,0.384308,0.377625,0.374878,0.375153,0.375183,0.367859,0.350464,0.319366,0.273712,0.216309,0.147522,0.0736389,-0.000335693,-0.069519,-0.130127,-0.180084,-0.22049,-0.256348,-0.289551,-0.324097,-0.360687,-0.396545,-0.432281,-0.463013,-0.48996,-0.510376,-0.522064,-0.524811,-0.517609,-0.503113,-0.484497,-0.4664,-0.450287,-0.436432,-0.424561,-0.414337,-0.407166,-0.401398,-0.394775,-0.3862,-0.368469,-0.332825,-0.273743,-0.186859,-0.0757751,0.0530396,0.186829,0.311218,0.417023,0.497345,0.5466,0.560547,0.541534,0.497864,0.440033,0.384888,0.349762,0.34491,0.374268,0.432007,0.507965,0.582611,0.641785,0.675751,0.674164,0.630676,0.545349,0.424042,0.281738,0.133087,0.00106812,-0.102295,-0.168335,-0.193542,-0.184723,-0.148071,-0.0978394,-0.0480652,-0.0142212,-0.00753784,-0.0335388,-0.0914612,-0.174316,-0.267181,-0.359467,-0.434174,-0.486023,-0.504547,-0.489899,-0.444336,-0.375366,-0.298065,-0.225403,-0.171997,-0.140472,-0.131409,-0.144135,-0.16861,-0.201599,-0.234192,-0.259796,-0.270355,-0.262482,-0.234406,-0.190308,-0.138153,-0.085907,-0.0403137,-0.00506592,0.019989,0.0336914,0.0390625,0.0371399,0.0322876,0.0303345,0.0353088,0.0517883,0.0810547,0.120667,0.167786,0.219849,0.273926,0.326996,0.373138,0.4086,0.429138,0.43399,0.427917,0.413574,0.399841,0.388733,0.383881,0.385315,0.390991,0.399658,0.409698,0.409851,0.393616,0.355896,0.299042,0.223907,0.137817,0.0513611,-0.0275879,-0.0970154,-0.153442,-0.197693,-0.229187,-0.253479,-0.276398,-0.304688,-0.341461,-0.385284,-0.43103,-0.475464,-0.512634,-0.53949,-0.554077,-0.557007,-0.549072,-0.529358,-0.503326,-0.475708,-0.451141,-0.432068,-0.420471,-0.415558,-0.416595,-0.418793,-0.419128,-0.412048,-0.391541,-0.34845,-0.276123,-0.171722,-0.040802,0.102692,0.242981,0.366791,0.466766,0.534363,0.564423,0.558411,0.523895,0.470215,0.407806,0.359497,0.337799,0.351959,0.399231,0.472656,0.555969,0.631378,0.684631,0.70462,0.683838,0.619415,0.514099,0.378815,0.228088,0.0838013,-0.0370178,-0.123444,-0.16864,-0.174164,-0.146973,-0.100525,-0.049469,-0.00814819,0.00942993,-0.00296021,-0.0508728,-0.127045,-0.221405,-0.318604,-0.405212,-0.470276,-0.504883,-0.504974,-0.474426,-0.41745,-0.34549,-0.273651,-0.213562,-0.174622,-0.15921,-0.164978,-0.187561,-0.219055,-0.251007,-0.276733,-0.289276,-0.283356,-0.260132,-0.219055,-0.16748,-0.111511,-0.0614014,-0.0218201,0.00463867,0.0194092,0.0246277,0.0252686,0.0253906,0.0292664,0.0393372,0.0591736,0.0896301,0.129791,0.175598,0.227142,0.278778,0.328156,0.370575,0.405426,0.42926,0.44101,0.443481,0.438202,0.431305,0.424896,0.420898,0.420044,0.419678,0.420746,0.420258,0.413666,0.394867,0.358795,0.305511,0.232635,0.147247,0.0603638,-0.019928,-0.0899048,-0.149719,-0.19696,-0.234741,-0.268036,-0.297516,-0.330078,-0.365173,-0.406464,-0.451202,-0.496582,-0.536041,-0.565094,-0.578888,-0.580231,-0.567291,-0.546661,-0.518799,-0.489471,-0.460907,-0.4375,-0.420746,-0.412445,-0.411041,-0.414062,-0.417725,-0.414001,-0.394806,-0.351257,-0.274414,-0.163422,-0.0270996,0.121216,0.263794,0.387482,0.486176,0.550964,0.578339,0.568481,0.53006,0.46875,0.400543,0.351166,0.333252,0.355194,0.411407,0.491394,0.574188,0.643402,0.691223,0.705536,0.678375,0.606415,0.496246,0.358368,0.210327,0.074707,-0.033783,-0.105804,-0.138245,-0.135834,-0.108124,-0.0662842,-0.0227051,0.00814819,0.0127869,-0.0137024,-0.0725098,-0.153137,-0.24585,-0.33551,-0.410065,-0.464081,-0.488068,-0.481964,-0.448486,-0.392914,-0.330566,-0.272827,-0.231659,-0.212158,-0.211243,-0.226593,-0.250916,-0.278168,-0.302338,-0.318695,-0.320374,-0.302979,-0.266418,-0.215057,-0.155487,-0.100739,-0.0545349,-0.0220337,-0.000488281,0.0118713,0.0165405,0.0187683,0.0210266,0.0288391,0.0462341,0.0775146,0.121765,0.174042,0.232361,0.290039,0.346344,0.395935,0.436218,0.464172,0.478027,0.478668,0.470367,0.460205,0.451691,0.446655,0.444519,0.444733,0.446503,0.448242,0.446289,0.432495,0.400146,0.343994,0.267029,0.175781,0.0792236,-0.0118103,-0.0921021,-0.161255,-0.219147,-0.265778,-0.300018,-0.32959,-0.355835,-0.384735,-0.420197,-0.463226,-0.506561,-0.546326,-0.57608,-0.594666,-0.602325,-0.598328,-0.58432,-0.560547,-0.529297,-0.497772,-0.469727,-0.449158,-0.435883,-0.429138,-0.427795,-0.423767,-0.412933,-0.38623,-0.337372,-0.255707,-0.139557,0.00387573,0.15625,0.297424,0.414825,0.501709,0.553223,0.568756,0.550629,0.506165,0.443756,0.380096,0.33844,0.333862,0.370453,0.44342,0.534149,0.620758,0.687592,0.724731,0.723175,0.678223,0.590515,0.466278,0.318878,0.168213,0.0375671,-0.0574036,-0.110809,-0.122833,-0.10144,-0.0577393,-0.00469971,0.0432129,0.0707703,0.0662537,0.0224609,-0.0542908,-0.155457,-0.264282,-0.364624,-0.444122,-0.494568,-0.512695,-0.496521,-0.451691,-0.385315,-0.313843,-0.252075,-0.212646,-0.199646,-0.210358,-0.239258,-0.277374,-0.317688,-0.353851,-0.377289,-0.384308,-0.367218,-0.325867,-0.265564,-0.19516,-0.128601,-0.0713196,-0.0276489,0.00128174,0.0184326,0.0253906,0.0273132,0.0278015,0.0328369,0.0495911,0.0814514,0.130371,0.188873,0.256927,0.325378,0.391541,0.450104,0.495453,0.523468,0.5354,0.531281,0.520416,0.506073,0.494843,0.488586,0.486023,0.486511,0.48822,0.487671,0.478027,0.452484,0.403748,0.330719,0.235809,0.1315,0.0289917,-0.0652161,-0.147095,-0.215698,-0.272797,-0.317535,-0.354004,-0.383057,-0.410675,-0.441925,-0.480072,-0.523041,-0.564819,-0.600433,-0.625031,-0.638763,-0.641296,-0.631714,-0.612091,-0.583801,-0.549988,-0.513275,-0.479767,-0.451996,-0.433136,-0.421051,-0.415955,-0.408173,-0.391479,-0.35321,-0.282959,-0.177856,-0.0415955,0.109955,0.25882,0.388306,0.493774,0.565521,0.600006,0.596344,0.558929,0.494965,0.421234,0.365112,0.343597,0.364105,0.422424,0.507263,0.592896,0.665649,0.712646,0.726685,0.697937,0.624847,0.511658,0.3703,0.220032,0.0840759,-0.0219421,-0.086792,-0.111206,-0.099884,-0.0646362,-0.0151978,0.0350952,0.0689392,0.0738831,0.0413818,-0.0244751,-0.116913,-0.220764,-0.32077,-0.403534,-0.461639,-0.488159,-0.483582,-0.449463,-0.395691,-0.33316,-0.279266,-0.245514,-0.235962,-0.247284,-0.275146,-0.311493,-0.348511,-0.380157,-0.4021,-0.406464,-0.389221,-0.349487,-0.291229,-0.224213,-0.159424,-0.105652,-0.0638733,-0.0351868,-0.0161743,-0.00540161,0.00189209,0.00933838,0.0221558,0.0456543,0.0846252,0.137756,0.202759,0.274506,0.347107,0.415192,0.475555,0.522064,0.553864,0.569946,0.57312,0.567932,0.559753,0.551056,0.545197,0.538239,0.534088,0.526703,0.512848,0.490326,0.452972,0.395203,0.316132,0.224213,0.128296,0.0358582,-0.0519104,-0.13205,-0.202332,-0.267731,-0.326752,-0.380707,-0.427948,-0.471619,-0.514038,-0.557068,-0.595795,-0.626587,-0.643402,-0.648834,-0.642853,-0.630249,-0.612091,-0.593719,-0.574799,-0.554749,-0.534454,-0.5177,-0.504608,-0.4935,-0.481659,-0.463959,-0.436371,-0.38916,-0.316437,-0.212189,-0.0811157,0.0647888,0.210327,0.342163,0.448029,0.520782,0.558441,0.563995,0.539917,0.49231,0.43335,0.381561,0.356812,0.36911,0.419983,0.500336,0.5914,0.670563,0.725433,0.745911,0.725769,0.663879,0.562073,0.431183,0.28653,0.148438,0.0348206,-0.0403748,-0.0735168,-0.0682373,-0.0360107,0.011322,0.0592957,0.0944214,0.102997,0.0775146,0.0157471,-0.0747986,-0.180664,-0.287109,-0.377686,-0.442719,-0.476624,-0.477539,-0.450592,-0.401764,-0.343811,-0.290741,-0.254883,-0.243896,-0.2565,-0.288635,-0.331055,-0.373779,-0.4104,-0.433563,-0.440399,-0.42688,-0.391205,-0.33725,-0.270691,-0.202271,-0.143311,-0.0967102,-0.0657654,-0.04599,-0.0335693,-0.0235596,-0.0121765,0.00494385,0.0319214,0.0725403,0.126678,0.193512,0.267029,0.342438,0.410919,0.469788,0.514099,0.546326,0.565796,0.574615,0.575958,0.574127,0.572784,0.574127,0.57663,0.579041,0.576569,0.564209,0.53656,0.493073,0.428131,0.343384,0.249023,0.150208,0.0527039,-0.0383911,-0.117828,-0.186493,-0.249603,-0.307434,-0.361176,-0.410919,-0.460236,-0.508698,-0.555664,-0.600708,-0.636993,-0.661682,-0.673035,-0.672241,-0.660553,-0.642639,-0.621887,-0.60022,-0.577057,-0.554474,-0.535065,-0.520355,-0.510101,-0.502136,-0.489838,-0.463867,-0.411377,-0.327759,-0.211182,-0.0698547,0.0823669,0.230804,0.359985,0.463867,0.531006,0.560059,0.551117,0.510956,0.448456,0.384155,0.338806,0.32959,0.362915,0.43454,0.533325,0.633331,0.717896,0.772217,0.785156,0.750397,0.666321,0.542328,0.392822,0.236664,0.097168,-0.00662231,-0.06604,-0.0767517,-0.0500183,0.0038147,0.0686035,0.128113,0.16568,0.166595,0.125916,0.0438232,-0.0675964,-0.192108,-0.310791,-0.407684,-0.473022,-0.499542,-0.488586,-0.447144,-0.385498,-0.319092,-0.264526,-0.232361,-0.229767,-0.251923,-0.294983,-0.348633,-0.400635,-0.44516,-0.472443,-0.479645,-0.461975,-0.420319,-0.359894,-0.287292,-0.216797,-0.155548,-0.108978,-0.074646,-0.0516968,-0.0357361,-0.0216064,-0.00610352,0.0157776,0.04776,0.0929871,0.151184,0.220245,0.294556,0.367371,0.432373,0.488068,0.532318,0.565735,0.58725,0.598236,0.602875,0.604095,0.603577,0.602661,0.602173,0.599152,0.584442,0.557709,0.517181,0.457916,0.378632,0.287384,0.193115,0.0977783,0.00619507,-0.0745544,-0.144775,-0.210419,-0.271667,-0.328949,-0.384308,-0.440674,-0.495972,-0.549713,-0.600159,-0.641663,-0.667969,-0.680267,-0.678375,-0.664154,-0.642822,-0.621246,-0.600708,-0.581085,-0.563263,-0.548309,-0.538727,-0.531769,-0.526611,-0.514038,-0.486511,-0.431946,-0.344421,-0.220459,-0.0760498,0.0766907,0.220825,0.347229,0.44516,0.508392,0.535828,0.525848,0.483643,0.419403,0.354492,0.310577,0.303497,0.340851,0.417603,0.517761,0.619415,0.704468,0.759552,0.77356,0.741943,0.663086,0.543304,0.399231,0.251007,0.11972,0.0231323,-0.029541,-0.0386963,-0.0130005,0.0349121,0.0916748,0.143005,0.172638,0.169312,0.126556,0.0468445,-0.0583801,-0.174591,-0.283295,-0.369965,-0.427856,-0.450439,-0.441101,-0.406891,-0.356812,-0.305786,-0.267883,-0.253876,-0.26474,-0.297363,-0.344086,-0.394287,-0.437408,-0.467682,-0.480408,-0.473572,-0.445038,-0.397247,-0.335266,-0.269012,-0.209656,-0.163422,-0.134521,-0.116791,-0.10553,-0.0932312,-0.0756226,-0.0491638,-0.0100403,0.0437012,0.111786,0.190765,0.276031,0.358063,0.428711,0.483734,0.523315,0.548798,0.56601,0.574524,0.578278,0.583466,0.591064,0.601837,0.613983,0.625275,0.627655,0.613281,0.580994,0.52887,0.453522,0.360168,0.258728,0.154755,0.0530396,-0.0391846,-0.117828,-0.187042,-0.249603,-0.305817,-0.357727,-0.4104,-0.463531,-0.515442,-0.565948,-0.614014,-0.651917,-0.674011,-0.682312,-0.677094,-0.660797,-0.639801,-0.618134,-0.596252,-0.574463,-0.555817,-0.543427,-0.537445,-0.536133,-0.532257,-0.513672,-0.46698,-0.386414,-0.271118,-0.130371,0.0240479,0.176453,0.313416,0.42688,0.506226,0.544373,0.539429,0.497437,0.428223,0.353363,0.299255,0.278015,0.299347,0.363434,0.459808,0.567902,0.667694,0.743439,0.778412,0.764069,0.696594,0.583344,0.437988,0.283447,0.142395,0.0321655,-0.033905,-0.0515747,-0.0268555,0.0281372,0.0967407,0.163635,0.209015,0.219421,0.185516,0.110718,0.00216675,-0.123108,-0.247559,-0.352509,-0.426361,-0.461853,-0.455841,-0.420593,-0.36496,-0.305115,-0.256073,-0.231506,-0.237213,-0.269775,-0.322632,-0.386139,-0.446777,-0.495972,-0.523315,-0.526215,-0.501434,-0.451569,-0.384949,-0.307617,-0.234192,-0.172913,-0.129852,-0.103821,-0.0899048,-0.0819702,-0.072876,-0.0569153,-0.0273132,0.0183411,0.0823975,0.160187,0.248169,0.339417,0.423157,0.492004,0.543793,0.579803,0.602539,0.612946,0.615204,0.614777,0.61499,0.617432,0.623566,0.630188,0.630737,0.617645,0.588745,0.540619,0.468536,0.379517,0.27887,0.174896,0.068573,-0.0315857,-0.12262,-0.202026,-0.271332,-0.333527,-0.388947,-0.441864,-0.492981,-0.540924,-0.586487,-0.62793,-0.660492,-0.680969,-0.688568,-0.683868,-0.666748,-0.642365,-0.61731,-0.591553,-0.568848,-0.550049,-0.537964,-0.533447,-0.532379,-0.529663,-0.513336,-0.472656,-0.396759,-0.28244,-0.137115,0.0244141,0.183594,0.325226,0.441772,0.521759,0.56131,0.55484,0.509949,0.43512,0.353271,0.288513,0.260498,0.279266,0.34549,0.445526,0.559845,0.66449,0.745483,0.788605,0.782135,0.721619,0.611328,0.46463,0.304688,0.155609,0.0389099,-0.0326538,-0.0543823,-0.0317078,0.020813,0.0905457,0.160553,0.213287,0.23111,0.205139,0.133881,0.0258179,-0.102844,-0.23291,-0.344482,-0.425659,-0.469025,-0.473663,-0.447968,-0.397888,-0.339905,-0.290405,-0.262878,-0.266266,-0.296173,-0.347443,-0.408997,-0.467102,-0.513489,-0.539642,-0.541534,-0.517914,-0.469727,-0.403381,-0.326355,-0.250946,-0.18869,-0.143799,-0.115723,-0.0994873,-0.0860291,-0.069519,-0.0447388,-0.00610352,0.047821,0.118683,0.202179,0.293701,0.385864,0.467896,0.53421,0.582062,0.6138,0.631714,0.63974,0.641235,0.642975,0.646729,0.653107,0.659241,0.664368,0.661346,0.643829,0.605988,0.544434,0.460785,0.361877,0.251495,0.137878,0.0275574,-0.0730896,-0.161957,-0.239166,-0.305725,-0.364197,-0.417877,-0.468994,-0.518616,-0.568909,-0.618286,-0.662537,-0.700195,-0.725647,-0.735779,-0.728302,-0.708038,-0.678223,-0.642334,-0.605713,-0.574738,-0.549561,-0.533081,-0.525085,-0.523682,-0.518402,-0.498901,-0.448547,-0.361572,-0.235931,-0.0856018,0.0796204,0.239258,0.375793,0.480194,0.546753,0.570648,0.551178,0.494843,0.415741,0.339294,0.286591,0.274506,0.310638,0.389801,0.498566,0.609375,0.70462,0.769531,0.79129,0.762024,0.681458,0.559143,0.4104,0.259033,0.127258,0.0341797,-0.0109863,-0.0093689,0.0310974,0.0914612,0.157227,0.213104,0.241943,0.233765,0.180725,0.088562,-0.0310364,-0.160736,-0.281128,-0.374268,-0.433136,-0.453308,-0.441223,-0.408234,-0.362854,-0.322266,-0.296173,-0.297272,-0.326416,-0.378876,-0.445038,-0.51001,-0.561218,-0.591705,-0.594788,-0.571869,-0.523743,-0.458191,-0.381409,-0.302979,-0.234344,-0.183899,-0.153229,-0.137268,-0.127686,-0.115356,-0.0920105,-0.0540161,0.0039978,0.0797119,0.170105,0.269836,0.372284,0.470337,0.553009,0.614624,0.65802,0.682678,0.69342,0.692657,0.687714,0.683624,0.682434,0.682678,0.683777,0.680481,0.666046,0.639191,0.594147,0.528168,0.441376,0.339569,0.227631,0.110321,-0.00479126,-0.110107,-0.203888,-0.286682,-0.359558,-0.425323,-0.484985,-0.538177,-0.585297,-0.628296,-0.666626,-0.700317,-0.726196,-0.740997,-0.742676,-0.731201,-0.707825,-0.677521,-0.644104,-0.6138,-0.585876,-0.563416,-0.546906,-0.537598,-0.529633,-0.513702,-0.477112,-0.410004,-0.307434,-0.172058,-0.0151978,0.148651,0.2966,0.419006,0.507507,0.557098,0.564331,0.529877,0.463531,0.385925,0.320496,0.282715,0.289185,0.342682,0.436005,0.547363,0.653595,0.739288,0.789093,0.792389,0.744476,0.648346,0.515594,0.368256,0.225403,0.111908,0.0389099,0.0151978,0.0365295,0.0872192,0.150879,0.21286,0.256134,0.265778,0.233276,0.156891,0.0468445,-0.0832825,-0.215393,-0.328156,-0.408356,-0.449951,-0.452759,-0.428711,-0.387817,-0.342896,-0.309967,-0.298615,-0.318604,-0.365753,-0.432587,-0.50827,-0.576416,-0.626862,-0.649506,-0.640594,-0.602386,-0.54071,-0.463379,-0.377686,-0.29364,-0.225098,-0.176697,-0.14859,-0.135437,-0.126831,-0.113739,-0.0868225,-0.0412292,0.0258789,0.110321,0.206818,0.312195,0.419006,0.517487,0.599304,0.660095,0.699402,0.717896,0.722412,0.718109,0.712616,0.709106,0.708466,0.709167,0.707428,0.697571,0.676239,0.637848,0.578491,0.497559,0.399353,0.292725,0.182129,0.0730896,-0.0294189,-0.121613,-0.204376,-0.280548,-0.352173,-0.420349,-0.485596,-0.549347,-0.610626,-0.665833,-0.713043,-0.746674,-0.764679,-0.767578,-0.754639,-0.729492,-0.69693,-0.661499,-0.627075,-0.598389,-0.578064,-0.567932,-0.56842,-0.573212,-0.574127,-0.554291,-0.503418,-0.414764,-0.288727,-0.136353,0.0335693,0.200439,0.347656,0.46521,0.543915,0.575531,0.558411,0.500244,0.418488,0.338379,0.282715,0.267883,0.300934,0.377899,0.488068,0.605988,0.713593,0.794373,0.830902,0.814911,0.741974,0.623413,0.476532,0.324799,0.18988,0.0906677,0.0377808,0.0337524,0.0696411,0.128937,0.198517,0.258453,0.291595,0.283203,0.227356,0.128967,0.000793457,-0.139709,-0.273163,-0.37854,-0.448334,-0.474792,-0.463745,-0.427734,-0.375885,-0.329163,-0.29834,-0.295807,-0.325867,-0.382751,-0.458405,-0.536835,-0.605682,-0.652618,-0.66864,-0.651489,-0.603516,-0.531555,-0.44516,-0.352936,-0.269287,-0.204437,-0.162659,-0.139771,-0.130585,-0.124176,-0.113403,-0.0876465,-0.040863,0.0266724,0.114929,0.217377,0.328949,0.440033,0.539001,0.6185,0.676605,0.712616,0.729218,0.730408,0.723938,0.714935,0.706787,0.702484,0.701233,0.698547,0.690765,0.671204,0.633362,0.573547,0.491364,0.391846,0.283295,0.169312,0.054657,-0.0538025,-0.149414,-0.234406,-0.309937,-0.374817,-0.432587,-0.485962,-0.539215,-0.588104,-0.63559,-0.679413,-0.712891,-0.734314,-0.744202,-0.742035,-0.726715,-0.702301,-0.673157,-0.643127,-0.612946,-0.588165,-0.573822,-0.567627,-0.567993,-0.564484,-0.543518,-0.494202,-0.408508,-0.287781,-0.140503,0.0246887,0.187134,0.330688,0.444946,0.524933,0.559265,0.544495,0.491577,0.412323,0.33429,0.27774,0.26358,0.298218,0.380249,0.49469,0.616455,0.727173,0.812225,0.85144,0.835602,0.764343,0.644653,0.494904,0.337738,0.197662,0.093689,0.0393066,0.0355835,0.0726013,0.134033,0.205048,0.268219,0.303192,0.295746,0.239044,0.137939,0.00317383,-0.14563,-0.287109,-0.40036,-0.476624,-0.507996,-0.500397,-0.46521,-0.41217,-0.360962,-0.322388,-0.312561,-0.334869,-0.383057,-0.452393,-0.52655,-0.592468,-0.640106,-0.657318,-0.644165,-0.600342,-0.531708,-0.446014,-0.352814,-0.266113,-0.196838,-0.147583,-0.119293,-0.103607,-0.0934143,-0.0795593,-0.0524292,-0.00738525,0.0550842,0.13562,0.228577,0.330719,0.432373,0.522675,0.596558,0.64975,0.682312,0.696381,0.698547,0.695892,0.692139,0.689636,0.687988,0.689117,0.687775,0.681061,0.662109,0.623718,0.562286,0.478729,0.378113,0.268799,0.158142,0.0513611,-0.0446167,-0.131348,-0.208801,-0.277954,-0.338928,-0.395996,-0.450226,-0.503815,-0.557373,-0.610962,-0.659668,-0.698273,-0.721344,-0.729523,-0.722046,-0.701996,-0.676819,-0.647552,-0.618988,-0.591278,-0.569977,-0.556732,-0.551239,-0.554749,-0.561798,-0.559143,-0.532593,-0.470856,-0.373779,-0.24234,-0.0865173,0.0794373,0.238007,0.372345,0.477234,0.541473,0.560669,0.533813,0.473846,0.39389,0.324371,0.282593,0.286194,0.334839,0.425873,0.543365,0.662415,0.764832,0.835815,0.860138,0.829834,0.747009,0.620667,0.471619,0.319672,0.186127,0.092804,0.0441589,0.0425415,0.0763855,0.132324,0.193329,0.243042,0.262543,0.241913,0.17453,0.0670471,-0.0680847,-0.211823,-0.343597,-0.448059,-0.513763,-0.537231,-0.525909,-0.489838,-0.439606,-0.391479,-0.358429,-0.352814,-0.375031,-0.420746,-0.480988,-0.54126,-0.59256,-0.622284,-0.625763,-0.599945,-0.546539,-0.472534,-0.384186,-0.29245,-0.21048,-0.147156,-0.104736,-0.0808105,-0.0679016,-0.0571289,-0.0393982,-0.00744629,0.040741,0.1073,0.189148,0.282227,0.380005,0.473297,0.554474,0.615479,0.65509,0.674652,0.678925,0.671387,0.660095,0.651062,0.644806,0.641663,0.644379,0.649261,0.652252,0.63855,0.60611,0.549133,0.463928,0.357788,0.241028,0.125061,0.0144043,-0.0851746,-0.167023,-0.235535,-0.294617,-0.343719,-0.387146,-0.430725,-0.478363,-0.529388,-0.584595,-0.636993,-0.680969,-0.709534,-0.721649,-0.717346,-0.699524,-0.671844,-0.640015,-0.606964,-0.576019,-0.549561,-0.533295,-0.526215,-0.529022,-0.537323,-0.544769,-0.537933,-0.503113,-0.430939,-0.319519,-0.177399,-0.0130005,0.159271,0.317963,0.445099,0.5383,0.588745,0.589508,0.545959,0.473663,0.391632,0.326904,0.298767,0.320587,0.387329,0.494965,0.619751,0.735901,0.828705,0.881409,0.884857,0.83139,0.726959,0.58493,0.425171,0.268097,0.138153,0.0500793,0.0104065,0.0143433,0.04953,0.102203,0.154968,0.192596,0.198303,0.161865,0.0821838,-0.0334778,-0.171387,-0.312073,-0.432861,-0.521149,-0.568207,-0.574524,-0.549927,-0.504761,-0.452209,-0.405853,-0.37616,-0.374756,-0.397736,-0.4422,-0.497284,-0.547791,-0.584442,-0.596558,-0.580566,-0.536194,-0.468079,-0.384857,-0.293213,-0.203674,-0.130646,-0.0783691,-0.0491028,-0.0360718,-0.0317993,-0.0256653,-0.00738525,0.0278015,0.0814514,0.152924,0.237976,0.331543,0.425873,0.51297,0.583679,0.631714,0.657837,0.66452,0.657349,0.641663,0.624481,0.613281,0.608093,0.609924,0.616333,0.624603,0.627594,0.615753,0.581482,0.521698,0.435822,0.329102,0.211517,0.0938416,-0.0157471,-0.110657,-0.189575,-0.254608,-0.30777,-0.356018,-0.400085,-0.445587,-0.494904,-0.545685,-0.596832,-0.641235,-0.677155,-0.69812,-0.703186,-0.695831,-0.678864,-0.652954,-0.623627,-0.596344,-0.573883,-0.554962,-0.540985,-0.529938,-0.523529,-0.52002,-0.522186,-0.51947,-0.496796,-0.442627,-0.352295,-0.223785,-0.0667419,0.104187,0.2659,0.405548,0.515564,0.590637,0.624817,0.613312,0.563049,0.486511,0.408936,0.355621,0.344513,0.384857,0.46817,0.580872,0.695587,0.794708,0.866608,0.899414,0.881683,0.809631,0.685486,0.526642,0.353516,0.190521,0.0620422,-0.0187988,-0.0506592,-0.0430603,-0.00845337,0.0431213,0.0941772,0.127136,0.127686,0.0838013,-0.00570679,-0.130829,-0.27359,-0.410919,-0.523102,-0.594574,-0.624969,-0.61795,-0.582886,-0.526917,-0.462311,-0.404358,-0.36673,-0.357635,-0.377716,-0.420746,-0.470764,-0.515076,-0.542236,-0.546051,-0.523376,-0.477448,-0.407257,-0.321564,-0.225098,-0.133942,-0.0605774,-0.0104065,0.0142822,0.0233459,0.0253906,0.0327148,0.0521851,0.0854797,0.131989,0.192627,0.265076,0.348999,0.434265,0.51474,0.580109,0.623505,0.644958,0.646973,0.635162,0.617035,0.600403,0.588043,0.581421,0.582184,0.587494,0.597321,0.598724,0.584473,0.546875,0.483368,0.396332,0.291229,0.177216,0.0647278,-0.0370789,-0.124451,-0.197205,-0.258514,-0.310364,-0.355957,-0.40274,-0.452393,-0.505035,-0.558929,-0.611267,-0.65332,-0.6828,-0.698059,-0.698639,-0.686951,-0.666962,-0.642426,-0.614777,-0.586334,-0.562927,-0.544617,-0.529083,-0.516022,-0.505432,-0.497009,-0.490906,-0.485748,-0.473083,-0.440033,-0.376862,-0.277039,-0.140747,0.0198364,0.185638,0.342041,0.477112,0.582916,0.651855,0.679016,0.662415,0.608246,0.532806,0.462311,0.413666,0.406128,0.444458,0.522614,0.622864,0.725372,0.814911,0.878632,0.897522,0.863373,0.773132,0.633575,0.460724,0.276886,0.107208,-0.0256042,-0.111511,-0.146271,-0.138794,-0.0984192,-0.0406799,0.0161743,0.0526733,0.052887,0.00747681,-0.0848389,-0.209198,-0.349915,-0.48288,-0.588196,-0.65387,-0.675354,-0.657349,-0.605072,-0.530304,-0.449463,-0.377716,-0.331116,-0.313385,-0.329285,-0.368256,-0.41626,-0.460358,-0.487427,-0.490662,-0.467743,-0.417084,-0.340485,-0.247772,-0.146332,-0.0559387,0.0144958,0.058197,0.0765381,0.0784302,0.0741577,0.0734558,0.0830994,0.104767,0.143158,0.196747,0.267975,0.351105,0.438751,0.519714,0.585175,0.628906,0.648041,0.647919,0.635315,0.616455,0.595703,0.57608,0.559479,0.549561,0.547516,0.551178,0.550049,0.535828,0.500946,0.443207,0.362854,0.262909,0.151245,0.0400391,-0.0650024,-0.160614,-0.243683,-0.310883,-0.365601,-0.411133,-0.451996,-0.490051,-0.530579,-0.571808,-0.610901,-0.643066,-0.667755,-0.68222,-0.684631,-0.677521,-0.661621,-0.638062,-0.608307,-0.574951,-0.542877,-0.515289,-0.49469,-0.478455,-0.46521,-0.453827,-0.450653,-0.45163,-0.448273,-0.426605,-0.373962,-0.282379,-0.15274,0.00863647,0.187042,0.356262,0.502563,0.620392,0.701782,0.735718,0.720093,0.66507,0.581573,0.493927,0.427155,0.404205,0.432343,0.503845,0.605927,0.713898,0.809723,0.876129,0.898193,0.863647,0.769958,0.625061,0.445801,0.251923,0.0707703,-0.0701904,-0.161163,-0.200134,-0.193176,-0.151093,-0.0894165,-0.0290527,0.0119629,0.0161743,-0.0256958,-0.112976,-0.235962,-0.374878,-0.506073,-0.60907,-0.671417,-0.686951,-0.661835,-0.602325,-0.520782,-0.431732,-0.352783,-0.301147,-0.282227,-0.297424,-0.338287,-0.389008,-0.434265,-0.461487,-0.462555,-0.436157,-0.381927,-0.30307,-0.206696,-0.104065,-0.0103455,0.0610046,0.102844,0.115601,0.106293,0.0879211,0.0738831,0.0731506,0.0879211,0.121124,0.173126,0.246063,0.332977,0.426819,0.516418,0.591827,0.642914,0.665161,0.661682,0.641083,0.610565,0.578186,0.547455,0.523407,0.507477,0.502777,0.508545,0.514313,0.511017,0.487671,0.43869,0.362946,0.263458,0.153015,0.0392456,-0.0706482,-0.17392,-0.262695,-0.335907,-0.394073,-0.439545,-0.472687,-0.498627,-0.527771,-0.559418,-0.591492,-0.618286,-0.641418,-0.654572,-0.657562,-0.653534,-0.642548,-0.624054,-0.597595,-0.564911,-0.528687,-0.491577,-0.460144,-0.438843,-0.424957,-0.419067,-0.419891,-0.42688,-0.434204,-0.427734,-0.394806,-0.326141,-0.214996,-0.0648804,0.113953,0.297638,0.466766,0.610565,0.714508,0.770508,0.772919,0.730835,0.649811,0.550629,0.460144,0.40387,0.393372,0.431946,0.515778,0.623993,0.73175,0.821228,0.876801,0.879852,0.820892,0.701569,0.536194,0.33963,0.139557,-0.0348206,-0.164978,-0.242065,-0.262817,-0.238403,-0.181305,-0.111359,-0.0478516,-0.0101318,-0.0173645,-0.0726013,-0.171722,-0.300537,-0.438477,-0.562714,-0.652832,-0.698212,-0.696716,-0.653198,-0.578033,-0.483154,-0.387848,-0.310669,-0.262268,-0.249329,-0.269287,-0.312683,-0.361298,-0.40274,-0.424255,-0.418213,-0.382782,-0.317993,-0.230255,-0.129791,-0.0286865,0.0540161,0.112823,0.139282,0.13916,0.122345,0.100586,0.0863342,0.085907,0.103607,0.143005,0.202606,0.281128,0.371246,0.46402,0.546173,0.609344,0.645874,0.655243,0.641022,0.610535,0.573181,0.534363,0.503479,0.482178,0.474274,0.476532,0.485962,0.490906,0.481537,0.448761,0.38974,0.305817,0.203369,0.086731,-0.0313721,-0.142792,-0.241943,-0.325012,-0.386902,-0.429626,-0.46051,-0.483307,-0.503571,-0.526642,-0.553864,-0.580872,-0.603455,-0.623901,-0.637634,-0.642487,-0.637421,-0.621185,-0.595428,-0.559631,-0.518616,-0.479004,-0.445648,-0.419891,-0.401001,-0.387909,-0.382843,-0.386902,-0.397034,-0.407227,-0.405975,-0.378418,-0.30777,-0.193542,-0.0400085,0.138031,0.322388,0.490479,0.634064,0.739655,0.795441,0.797943,0.749542,0.661499,0.550903,0.449463,0.383484,0.366425,0.400696,0.479919,0.588379,0.697205,0.792053,0.850159,0.857544,0.80191,0.684692,0.517273,0.317322,0.113525,-0.0664978,-0.201538,-0.281616,-0.305939,-0.279846,-0.219147,-0.14386,-0.0744934,-0.0314636,-0.0329895,-0.0826721,-0.177856,-0.304047,-0.439728,-0.5625,-0.65213,-0.696869,-0.692719,-0.643829,-0.561523,-0.460297,-0.358124,-0.275696,-0.225525,-0.210968,-0.232239,-0.277435,-0.328461,-0.37207,-0.396484,-0.393799,-0.360474,-0.296936,-0.209503,-0.107758,-0.00576782,0.0801086,0.138458,0.165039,0.161865,0.14209,0.114868,0.0945435,0.0866089,0.0967407,0.128937,0.181366,0.254578,0.341736,0.434906,0.519958,0.587494,0.628693,0.644379,0.633911,0.607819,0.570587,0.528656,0.488373,0.455139,0.432922,0.422729,0.422516,0.424622,0.422668,0.402618,0.358368,0.290619,0.201965,0.0992737,-0.0124512,-0.11972,-0.218353,-0.305115,-0.373566,-0.420319,-0.452484,-0.475677,-0.494476,-0.511353,-0.533936,-0.556671,-0.576141,-0.589661,-0.599152,-0.601318,-0.594391,-0.576782,-0.551758,-0.517761,-0.479126,-0.442932,-0.410889,-0.386566,-0.369385,-0.356537,-0.347931,-0.343781,-0.352234,-0.36618,-0.373535,-0.365234,-0.330017,-0.256287,-0.142578,0.00241089,0.169617,0.343872,0.504181,0.641724,0.742859,0.794159,0.79129,0.737122,0.646515,0.536255,0.437653,0.369904,0.348419,0.375732,0.446289,0.543365,0.64798,0.741669,0.801483,0.811127,0.76059,0.649536,0.488922,0.293793,0.0915833,-0.088562,-0.230255,-0.32077,-0.356384,-0.338989,-0.283936,-0.210205,-0.136047,-0.0858154,-0.0755615,-0.108765,-0.186218,-0.294037,-0.415833,-0.527313,-0.612885,-0.657196,-0.657837,-0.613647,-0.535004,-0.436523,-0.337311,-0.25528,-0.200836,-0.180176,-0.192474,-0.227783,-0.272461,-0.312988,-0.33493,-0.331909,-0.298828,-0.236572,-0.152252,-0.0576782,0.0341187,0.108002,0.155396,0.171082,0.160339,0.133942,0.102631,0.0759888,0.0646667,0.0738831,0.105927,0.161438,0.238007,0.328583,0.422241,0.507019,0.570953,0.609222,0.618011,0.600983,0.565033,0.517975,0.466187,0.418915,0.384369,0.367493,0.369049,0.383392,0.400482,0.409149,0.398041,0.360474,0.29538,0.20816,0.103638,-0.0109558,-0.123383,-0.227783,-0.315857,-0.38324,-0.426025,-0.450653,-0.464996,-0.473145,-0.483276,-0.496521,-0.512207,-0.527832,-0.540985,-0.551971,-0.557648,-0.55661,-0.54541,-0.523682,-0.491669,-0.452545,-0.411743,-0.374969,-0.345398,-0.324158,-0.310089,-0.301361,-0.298492,-0.307861,-0.329926,-0.353912,-0.365967,-0.356171,-0.306244,-0.207733,-0.0662842,0.0983276,0.276184,0.448334,0.599426,0.714661,0.784882,0.803253,0.758759,0.665222,0.542328,0.422455,0.329315,0.283234,0.294037,0.356323,0.455719,0.570587,0.686035,0.775238,0.817596,0.796906,0.70517,0.5495,0.346588,0.128326,-0.0771179,-0.243256,-0.353058,-0.402527,-0.391754,-0.331146,-0.24173,-0.143219,-0.0618286,-0.0227051,-0.035614,-0.101501,-0.208527,-0.340057,-0.468719,-0.572479,-0.636566,-0.654572,-0.622742,-0.546539,-0.442261,-0.328888,-0.228546,-0.158478,-0.127411,-0.136536,-0.172974,-0.22229,-0.269928,-0.303192,-0.314087,-0.298218,-0.252777,-0.180023,-0.091095,-6.10352e-05,0.0779419,0.128174,0.145355,0.134644,0.107635,0.0771179,0.052002,0.0399475,0.0450745,0.0716858,0.117554,0.185852,0.27063,0.362701,0.446167,0.510925,0.550751,0.565338,0.55658,0.531067,0.494751,0.451935,0.406891,0.366364,0.340149,0.335052,0.34906,0.374054,0.397675,0.406982,0.393951,0.35083,0.279053,0.186066,0.0763245,-0.040802,-0.158142,-0.260284,-0.338806,-0.390167,-0.41568,-0.421936,-0.420105,-0.421112,-0.429626,-0.444244,-0.464355,-0.485596,-0.50473,-0.519531,-0.524872,-0.519318,-0.498352,-0.464569,-0.423645,-0.380463,-0.343719,-0.317963,-0.303497,-0.296387,-0.295319,-0.2966,-0.301788,-0.31369,-0.333801,-0.3526,-0.359772,-0.346954,-0.302277,-0.222076,-0.104736,0.0372314,0.191193,0.346527,0.494202,0.618225,0.700043,0.736267,0.721832,0.657349,0.560944,0.457397,0.37088,0.314941,0.301727,0.333527,0.403076,0.495514,0.593658,0.682098,0.736603,0.741119,0.682312,0.564911,0.401062,0.208221,0.0165405,-0.151672,-0.278717,-0.352234,-0.371704,-0.340912,-0.274231,-0.191559,-0.110107,-0.0571289,-0.0450134,-0.0810547,-0.157501,-0.262115,-0.377197,-0.480347,-0.552917,-0.586365,-0.576721,-0.524811,-0.439056,-0.338165,-0.240601,-0.163361,-0.117004,-0.107056,-0.128967,-0.170746,-0.218353,-0.260712,-0.288025,-0.292633,-0.269379,-0.217804,-0.145813,-0.0641479,0.0117493,0.070343,0.102631,0.108276,0.0932922,0.0692749,0.0427551,0.0209045,0.0112,0.0197144,0.0510864,0.104889,0.179596,0.268097,0.357147,0.433899,0.492157,0.53006,0.546661,0.542999,0.521698,0.486328,0.441162,0.39563,0.357452,0.3367,0.33551,0.347931,0.365662,0.377716,0.377411,0.361084,0.322205,0.259735,0.172852,0.0670471,-0.0484009,-0.162842,-0.261963,-0.335083,-0.382629,-0.409271,-0.418976,-0.417725,-0.413788,-0.411194,-0.412323,-0.41687,-0.428894,-0.445038,-0.459442,-0.467621,-0.464935,-0.449188,-0.424408,-0.392883,-0.360413,-0.332306,-0.308411,-0.290314,-0.275208,-0.267883,-0.266815,-0.275269,-0.28949,-0.310516,-0.334167,-0.354065,-0.35907,-0.33963,-0.289276,-0.2005,-0.0726624,0.0844727,0.253754,0.415619,0.559204,0.665649,0.723969,0.729797,0.685181,0.597809,0.485107,0.374725,0.29126,0.249725,0.262543,0.324921,0.421112,0.53302,0.641296,0.723267,0.756653,0.731628,0.6427,0.495056,0.306793,0.103394,-0.0862427,-0.239594,-0.341034,-0.385376,-0.372711,-0.314789,-0.230377,-0.13916,-0.0643005,-0.0250244,-0.0322266,-0.0882263,-0.181427,-0.294952,-0.408936,-0.500305,-0.555695,-0.565948,-0.533234,-0.463379,-0.36734,-0.264984,-0.17511,-0.111938,-0.0844727,-0.09552,-0.133514,-0.187408,-0.240662,-0.281738,-0.300018,-0.291748,-0.255646,-0.196259,-0.119293,-0.0400085,0.0271606,0.0715332,0.0870056,0.0769043,0.0483093,0.0151978,-0.0130005,-0.0289001,-0.0240479,0.00253296,0.0543213,0.128021,0.216827,0.312469,0.402374,0.475494,0.525696,0.552368,0.55426,0.536682,0.505035,0.462036,0.417358,0.375366,0.345764,0.331268,0.332886,0.345398,0.361176,0.370514,0.366791,0.345337,0.302002,0.234253,0.142731,0.0343933,-0.0798645,-0.187256,-0.274292,-0.335846,-0.372833,-0.390137,-0.392181,-0.389252,-0.383392,-0.379608,-0.379883,-0.389099,-0.405334,-0.4245,-0.442627,-0.452332,-0.449036,-0.432648,-0.406281,-0.374969,-0.343292,-0.315216,-0.292236,-0.274567,-0.264923,-0.263885,-0.269836,-0.284637,-0.305115,-0.332886,-0.360748,-0.38382,-0.39035,-0.37207,-0.321411,-0.231445,-0.103912,0.0517883,0.219696,0.384155,0.532623,0.644043,0.710449,0.725372,0.692871,0.613068,0.506775,0.402802,0.318329,0.270782,0.271606,0.323395,0.410339,0.515106,0.623444,0.712006,0.757996,0.745605,0.669159,0.530914,0.347595,0.142242,-0.0552979,-0.220734,-0.335693,-0.393097,-0.393036,-0.342743,-0.259003,-0.163422,-0.0778809,-0.0256958,-0.0192871,-0.0629578,-0.148438,-0.259369,-0.375153,-0.473083,-0.537323,-0.558411,-0.533997,-0.468231,-0.371948,-0.266907,-0.172272,-0.102692,-0.0701904,-0.0787048,-0.117279,-0.173065,-0.232574,-0.283661,-0.314789,-0.318878,-0.293365,-0.240234,-0.167297,-0.0873108,-0.0161133,0.0336914,0.0541687,0.0506592,0.0292053,0.000549316,-0.0249634,-0.0415039,-0.0398865,-0.0162354,0.0331421,0.10614,0.198242,0.296814,0.390076,0.466339,0.522339,0.55661,0.570251,0.564484,0.54245,0.507294,0.462463,0.417816,0.378601,0.352509,0.3367,0.330994,0.329803,0.33078,0.328949,0.319885,0.299835,0.260498,0.197601,0.110657,0.00723267,-0.100311,-0.200134,-0.283997,-0.347931,-0.391785,-0.41568,-0.422791,-0.415985,-0.40155,-0.383453,-0.373749,-0.37558,-0.386841,-0.403229,-0.417114,-0.424835,-0.421814,-0.40976,-0.389862,-0.365753,-0.33783,-0.308533,-0.283875,-0.267609,-0.260559,-0.261963,-0.271271,-0.28772,-0.306,-0.326416,-0.346405,-0.365265,-0.370117,-0.353729,-0.309814,-0.231812,-0.11676,0.025238,0.178955,0.332825,0.476807,0.598877,0.6828,0.722534,0.712433,0.657104,0.568481,0.471039,0.387756,0.333099,0.316284,0.341248,0.402527,0.485626,0.576569,0.657562,0.706512,0.703674,0.64093,0.520844,0.356598,0.169098,-0.0164795,-0.177826,-0.298401,-0.368683,-0.385437,-0.352661,-0.283783,-0.200562,-0.122192,-0.069519,-0.0579529,-0.0906677,-0.160675,-0.25473,-0.35498,-0.444183,-0.504395,-0.525574,-0.504608,-0.444336,-0.35553,-0.254303,-0.162079,-0.0956726,-0.064209,-0.0719604,-0.112549,-0.172852,-0.239685,-0.298492,-0.338989,-0.351746,-0.331696,-0.280609,-0.205902,-0.121002,-0.0429077,0.0159607,0.0473633,0.0511475,0.0357361,0.00717163,-0.0210266,-0.0400391,-0.0432129,-0.0220032,0.025177,0.0977783,0.189606,0.289001,0.387268,0.470978,0.535767,0.578339,0.599426,0.599731,0.580444,0.54483,0.498199,0.446289,0.396484,0.355682,0.325928,0.309967,0.303711,0.304901,0.309021,0.312012,0.304871,0.279724,0.226379,0.143494,0.0353088,-0.0852051,-0.204437,-0.307159,-0.384613,-0.434479,-0.455139,-0.449951,-0.423004,-0.38559,-0.347595,-0.322632,-0.314301,-0.329224,-0.359558,-0.395935,-0.427917,-0.446655,-0.449799,-0.434113,-0.401489,-0.356323,-0.304413,-0.254181,-0.213165,-0.184723,-0.172699,-0.176086,-0.194946,-0.22644,-0.266968,-0.311066,-0.354767,-0.391205,-0.413574,-0.411896,-0.375732,-0.300385,-0.179932,-0.0259705,0.148071,0.325562,0.493439,0.636169,0.73761,0.786194,0.778595,0.716217,0.613495,0.496643,0.389709,0.312073,0.276276,0.289124,0.347443,0.437836,0.543793,0.644165,0.71405,0.72995,0.67984,0.56604,0.399719,0.204346,0.00268555,-0.179047,-0.322052,-0.412659,-0.446167,-0.423645,-0.356323,-0.264862,-0.173462,-0.103821,-0.0730896,-0.0886536,-0.146027,-0.231506,-0.328461,-0.416656,-0.48056,-0.507019,-0.492645,-0.437775,-0.351746,-0.25116,-0.157318,-0.0884399,-0.0558472,-0.0652771,-0.108673,-0.172424,-0.240509,-0.299316,-0.33902,-0.348846,-0.327393,-0.275055,-0.201691,-0.117828,-0.0419922,0.0151062,0.0441589,0.0458069,0.0283508,0.0015564,-0.023407,-0.0361023,-0.0318604,-0.00588989,0.0422974,0.110596,0.194519,0.285461,0.375366,0.454437,0.515503,0.558411,0.581696,0.589783,0.58017,0.558228,0.523102,0.479218,0.430939,0.386139,0.348419,0.320801,0.300812,0.286407,0.274658,0.261627,0.244476,0.21759,0.175385,0.112213,0.0266113,-0.0748596,-0.179688,-0.273041,-0.345764,-0.394501,-0.417084,-0.418365,-0.403656,-0.380249,-0.352173,-0.329437,-0.320862,-0.329987,-0.353363,-0.381775,-0.407654,-0.419708,-0.413666,-0.389038,-0.35083,-0.30426,-0.253967,-0.207794,-0.172546,-0.153656,-0.154114,-0.171387,-0.202942,-0.242065,-0.284363,-0.320984,-0.349152,-0.369965,-0.385284,-0.385162,-0.368683,-0.331543,-0.269287,-0.168823,-0.033844,0.118591,0.272736,0.427521,0.57251,0.685059,0.758423,0.791199,0.771423,0.697418,0.59613,0.496246,0.409973,0.34787,0.324371,0.344055,0.397064,0.469788,0.549835,0.614716,0.643188,0.615387,0.528473,0.390137,0.217499,0.0315857,-0.14743,-0.298401,-0.406616,-0.464294,-0.465485,-0.419281,-0.341125,-0.254852,-0.17923,-0.133728,-0.127258,-0.157776,-0.216888,-0.289398,-0.36264,-0.417725,-0.443542,-0.435303,-0.395294,-0.32373,-0.232025,-0.14563,-0.0810242,-0.0462952,-0.0472107,-0.0836487,-0.141663,-0.204865,-0.260376,-0.302979,-0.323181,-0.316437,-0.283234,-0.227631,-0.155487,-0.0817261,-0.0210876,0.0161743,0.0310364,0.0252686,0.0078125,-0.0108948,-0.0216675,-0.0209045,-0.00311279,0.0334167,0.0896912,0.162994,0.247772,0.339905,0.426666,0.500458,0.555115,0.589996,0.607391,0.607727,0.591614,0.562225,0.520233,0.468994,0.414825,0.365387,0.323547,0.288574,0.25946,0.233215,0.20871,0.181213,0.151093,0.114441,0.0653687,-0.000701904,-0.0820312,-0.169891,-0.253479,-0.325226,-0.375946,-0.405975,-0.413666,-0.403442,-0.381409,-0.349915,-0.318604,-0.294342,-0.287659,-0.296295,-0.314026,-0.335266,-0.350189,-0.353088,-0.341888,-0.319855,-0.289276,-0.250031,-0.208496,-0.173004,-0.149139,-0.141663,-0.151337,-0.174835,-0.205994,-0.238983,-0.271179,-0.300018,-0.325287,-0.348145,-0.367371,-0.379517,-0.37735,-0.35611,-0.306641,-0.223419,-0.103546,0.0455933,0.214355,0.388336,0.558624,0.707336,0.814545,0.869659,0.865265,0.802185,0.695404,0.573608,0.457703,0.36145,0.298492,0.28183,0.310669,0.369751,0.448456,0.524719,0.572632,0.569672,0.507263,0.389008,0.22879,0.043335,-0.145142,-0.3125,-0.441803,-0.521973,-0.544342,-0.511566,-0.436859,-0.341522,-0.247711,-0.174408,-0.135773,-0.133514,-0.164673,-0.217224,-0.274902,-0.32486,-0.355255,-0.357361,-0.328827,-0.270905,-0.194427,-0.112854,-0.045929,-0.00646973,0.00204468,-0.023407,-0.074646,-0.139984,-0.206116,-0.263519,-0.306702,-0.325012,-0.316925,-0.283295,-0.230194,-0.164886,-0.102905,-0.052124,-0.0191956,-0.00335693,0.000213623,-0.00286865,-0.00540161,-0.000976562,0.0135803,0.040802,0.0849915,0.144409,0.216797,0.298401,0.382355,0.460724,0.526917,0.57785,0.61322,0.632141,0.634186,0.61673,0.580994,0.529236,0.466278,0.397552,0.3284,0.263306,0.203857,0.152924,0.109039,0.0739441,0.0438843,0.0169373,-0.0114136,-0.0473633,-0.0924988,-0.145966,-0.204346,-0.261993,-0.310516,-0.344849,-0.362579,-0.364563,-0.350616,-0.324249,-0.293854,-0.267548,-0.24881,-0.243469,-0.250641,-0.266144,-0.283356,-0.29541,-0.298401,-0.288361,-0.268219,-0.237061,-0.200439,-0.163971,-0.135132,-0.119873,-0.121979,-0.140503,-0.172058,-0.213104,-0.256226,-0.296021,-0.329102,-0.355804,-0.376068,-0.386414,-0.385712,-0.374664,-0.350494,-0.298706,-0.211456,-0.0943909,0.0466309,0.209625,0.383331,0.55011,0.696228,0.810638,0.879486,0.884552,0.827728,0.727631,0.608246,0.483582,0.371002,0.2901,0.253815,0.258118,0.293915,0.35498,0.423126,0.469513,0.471527,0.421509,0.319611,0.174591,0.00366211,-0.172272,-0.332397,-0.458954,-0.53952,-0.56546,-0.535431,-0.459869,-0.356964,-0.247406,-0.15329,-0.0903931,-0.0638733,-0.0723267,-0.106384,-0.15271,-0.197449,-0.231659,-0.246918,-0.236938,-0.197601,-0.138733,-0.0714111,-0.0144043,0.0224609,0.0279846,-0.00106812,-0.0575562,-0.131287,-0.207611,-0.279968,-0.33963,-0.377686,-0.389313,-0.370575,-0.325653,-0.262665,-0.192383,-0.128662,-0.0780334,-0.0435486,-0.0241394,-0.0104065,0.00106812,0.0142822,0.0334167,0.0635376,0.107574,0.164948,0.234741,0.314941,0.396851,0.473602,0.536133,0.584106,0.615692,0.629425,0.62561,0.604645,0.567566,0.516846,0.454315,0.385071,0.313263,0.241486,0.174194,0.113251,0.0611267,0.0177917,-0.0173035,-0.0455017,-0.071106,-0.0948486,-0.118958,-0.14563,-0.176788,-0.212158,-0.243958,-0.268372,-0.281097,-0.284637,-0.276062,-0.258942,-0.239197,-0.218292,-0.201691,-0.191345,-0.191437,-0.197754,-0.209076,-0.217499,-0.222565,-0.219116,-0.210358,-0.195831,-0.181213,-0.170227,-0.164948,-0.169769,-0.18396,-0.210052,-0.24292,-0.278229,-0.308472,-0.330017,-0.341553,-0.348633,-0.35321,-0.353699,-0.352661,-0.350769,-0.348633,-0.337402,-0.303192,-0.236572,-0.133362,0.00744629,0.181549,0.370605,0.559692,0.733246,0.873779,0.960052,0.976929,0.925995,0.817322,0.672668,0.514465,0.365234,0.245392,0.170929,0.143036,0.157166,0.206207,0.271667,0.327972,0.35025,0.326996,0.255219,0.13858,-0.0085144,-0.165466,-0.312195,-0.429626,-0.502716,-0.524994,-0.493774,-0.416534,-0.308105,-0.189789,-0.0814514,-0.00231934,0.0397339,0.0430603,0.0160522,-0.0291748,-0.0769653,-0.121002,-0.151031,-0.160522,-0.146179,-0.113129,-0.069519,-0.0308838,-0.00949097,-0.0173645,-0.0580444,-0.125366,-0.210846,-0.298767,-0.379822,-0.447357,-0.490662,-0.50412,-0.48349,-0.431854,-0.355835,-0.266144,-0.176514,-0.0984192,-0.0367126,0.00888062,0.043396,0.0700684,0.0916748,0.113251,0.138885,0.172089,0.215485,0.273285,0.340698,0.414062,0.484222,0.546234,0.596008,0.631042,0.648621,0.644897,0.619537,0.570648,0.501526,0.417603,0.326691,0.236176,0.152863,0.0793457,0.0192871,-0.0260315,-0.0535889,-0.0665588,-0.0692139,-0.0688782,-0.0700073,-0.0777893,-0.0924988,-0.115997,-0.143494,-0.171387,-0.191711,-0.202942,-0.203217,-0.191071,-0.168213,-0.137512,-0.108459,-0.0853271,-0.0752563,-0.084198,-0.11145,-0.149841,-0.192749,-0.233978,-0.270142,-0.296509,-0.311798,-0.315308,-0.307648,-0.291443,-0.271423,-0.255524,-0.25116,-0.260376,-0.278442,-0.299683,-0.32312,-0.346893,-0.36969,-0.388306,-0.402466,-0.410553,-0.404907,-0.385803,-0.355408,-0.311554,-0.240814,-0.133087,0.00997925,0.178467,0.361389,0.549011,0.72171,0.862335,0.959137,0.999969,0.975037,0.881104,0.737091,0.573181,0.408295,0.258942,0.14563,0.0797729,0.0611877,0.0808411,0.128937,0.19101,0.242706,0.261688,0.23938,0.172272,0.0694885,-0.053833,-0.179474,-0.289978,-0.369049,-0.406464,-0.398529,-0.345917,-0.258026,-0.148224,-0.0371399,0.0548706,0.111633,0.127319,0.106293,0.0588684,-0.00128174,-0.0617676,-0.113251,-0.14978,-0.16806,-0.164703,-0.141327,-0.11319,-0.0950317,-0.099762,-0.134857,-0.198669,-0.285278,-0.380646,-0.46817,-0.539001,-0.585938,-0.601562,-0.581696,-0.525085,-0.437286,-0.329865,-0.218201,-0.113831,-0.0265808,0.0410156,0.0919495,0.132477,0.166321,0.194366,0.222076,0.252197,0.289001,0.332123,0.380432,0.43045,0.477112,0.516724,0.546539,0.565094,0.573059,0.56897,0.550812,0.516144,0.467468,0.407043,0.338745,0.263672,0.186066,0.109467,0.0393982,-0.02005,-0.0628967,-0.0889893,-0.0983582,-0.095459,-0.0846863,-0.0707703,-0.0548706,-0.0418701,-0.0320129,-0.0291138,-0.0326538,-0.0402527,-0.0505981,-0.0599365,-0.0667419,-0.0695801,-0.0714111,-0.0751953,-0.0878601,-0.110077,-0.14267,-0.182709,-0.227631,-0.273041,-0.31424,-0.348633,-0.374023,-0.3862,-0.384094,-0.370331,-0.350281,-0.328033,-0.307983,-0.295868,-0.293854,-0.300049,-0.308258,-0.316132,-0.320709,-0.321899,-0.318237,-0.307831,-0.29187,-0.271179,-0.247925,-0.22525,-0.201599,-0.169403,-0.119934,-0.0440369,0.0661316,0.202454,0.356537,0.519104,0.677612,0.815338,0.91095,0.95343,0.933655,0.84671,0.703339,0.530914,0.353363,0.187286,0.0542297,-0.0317078,-0.0656433,-0.0531921,-0.000854492,0.0724487,0.146759,0.200714,0.218994,0.194733,0.131989,0.0437622,-0.0565796,-0.150269,-0.222992,-0.264313,-0.270416,-0.239746,-0.176453,-0.0941772,-0.0085144,0.0632629,0.107971,0.11792,0.0955505,0.0474243,-0.0151978,-0.0821838,-0.14386,-0.193939,-0.229553,-0.248108,-0.250793,-0.243622,-0.236572,-0.240814,-0.2612,-0.299683,-0.352112,-0.408508,-0.460999,-0.500946,-0.524506,-0.52359,-0.499329,-0.446869,-0.366516,-0.267548,-0.15799,-0.050354,0.0487366,0.134003,0.202026,0.256409,0.297211,0.32193,0.332977,0.335571,0.333038,0.332733,0.335846,0.345917,0.359619,0.377136,0.397736,0.418488,0.434662,0.443542,0.439728,0.419281,0.381653,0.329803,0.267334,0.198883,0.130554,0.065918,0.013092,-0.0246277,-0.0429688,-0.0427856,-0.0244751,0.00564575,0.0398254,0.0704346,0.0904846,0.100403,0.0978699,0.0823975,0.0557251,0.0231323,-0.0121765,-0.0426941,-0.0658264,-0.0784912,-0.0845032,-0.0902405,-0.100952,-0.124298,-0.158142,-0.206421,-0.263672,-0.327606,-0.389709,-0.441772,-0.478516,-0.492004,-0.480896,-0.446167,-0.397247,-0.341339,-0.286255,-0.241486,-0.209015,-0.192963,-0.191498,-0.199799,-0.211945,-0.223724,-0.232574,-0.235535,-0.228333,-0.213867,-0.195343,-0.178192,-0.161865,-0.147186,-0.130341,-0.101379,-0.0483398,0.0348206,0.146057,0.279724,0.424072,0.566528,0.693512,0.78775,0.837585,0.828918,0.758484,0.631042,0.46991,0.300751,0.145203,0.0213318,-0.0597839,-0.0912476,-0.0770264,-0.0229187,0.0596008,0.150269,0.227661,0.272095,0.274933,0.233765,0.159973,0.0697021,-0.0204163,-0.0969238,-0.150757,-0.17749,-0.173828,-0.142242,-0.0892639,-0.0289001,0.0239258,0.0549927,0.0536804,0.0233459,-0.0311584,-0.0944824,-0.157654,-0.212585,-0.254883,-0.281525,-0.291168,-0.282532,-0.260712,-0.236511,-0.222015,-0.227142,-0.253479,-0.297089,-0.348907,-0.399353,-0.43869,-0.462952,-0.465302,-0.442688,-0.391754,-0.314178,-0.214294,-0.104767,0.00183105,0.0937195,0.167908,0.22168,0.255371,0.271423,0.270416,0.256287,0.236359,0.216339,0.205048,0.204559,0.217163,0.238617,0.266846,0.298218,0.32959,0.355133,0.374725,0.382538,0.376007,0.354767,0.321136,0.28067,0.23938,0.200989,0.168396,0.14212,0.122742,0.11142,0.105804,0.108612,0.114868,0.123962,0.128113,0.125427,0.113739,0.0961609,0.0743713,0.0507202,0.0267944,0.00259399,-0.0222168,-0.0454407,-0.0669861,-0.0866699,-0.106842,-0.134003,-0.170532,-0.218994,-0.27652,-0.336212,-0.392273,-0.4375,-0.469238,-0.483521,-0.479645,-0.456329,-0.415283,-0.359894,-0.300262,-0.242981,-0.196991,-0.167572,-0.154144,-0.153168,-0.159973,-0.171936,-0.188538,-0.206696,-0.220551,-0.226654,-0.228271,-0.229187,-0.231873,-0.2341,-0.236664,-0.231812,-0.20993,-0.161926,-0.0830078,0.0263672,0.160889,0.311646,0.468018,0.613525,0.73114,0.807312,0.831299,0.795715,0.700256,0.558655,0.39917,0.239746,0.0986328,-0.0062561,-0.0613403,-0.0628052,-0.0190735,0.061615,0.159058,0.255524,0.327606,0.357574,0.340698,0.280212,0.189819,0.0813904,-0.0257568,-0.115936,-0.175812,-0.201202,-0.192963,-0.154968,-0.0976257,-0.0367126,0.0146484,0.0417175,0.0397644,0.0103455,-0.0426331,-0.10553,-0.169556,-0.225098,-0.266205,-0.291443,-0.295959,-0.283783,-0.260132,-0.236847,-0.224762,-0.228271,-0.249298,-0.285126,-0.329865,-0.378754,-0.420258,-0.448456,-0.457977,-0.444397,-0.403656,-0.334076,-0.244537,-0.143158,-0.0431213,0.0488281,0.125305,0.182495,0.220947,0.237854,0.236237,0.219757,0.196289,0.175171,0.163147,0.165253,0.181976,0.210968,0.250153,0.294891,0.340759,0.3815,0.413208,0.43045,0.429565,0.413513,0.386078,0.352081,0.315094,0.27655,0.240295,0.20752,0.181763,0.163361,0.15329,0.148499,0.146973,0.145325,0.141205,0.131348,0.116272,0.0969238,0.0723267,0.0438843,0.00985718,-0.0244141,-0.0566406,-0.0848389,-0.110321,-0.134735,-0.161804,-0.192413,-0.230164,-0.271881,-0.315247,-0.358643,-0.400421,-0.436523,-0.460846,-0.46991,-0.45993,-0.432709,-0.388336,-0.336273,-0.281036,-0.231995,-0.1922,-0.16629,-0.156311,-0.162933,-0.182007,-0.208588,-0.235931,-0.259644,-0.275696,-0.281677,-0.280609,-0.275635,-0.270264,-0.262451,-0.253052,-0.236664,-0.209503,-0.159698,-0.0797119,0.0312195,0.168976,0.32309,0.483002,0.633331,0.758148,0.83905,0.867096,0.831665,0.736115,0.594086,0.427368,0.259796,0.114105,0.00491333,-0.0509949,-0.0541077,-0.00619507,0.0766602,0.176514,0.27478,0.347382,0.380035,0.363403,0.300323,0.206329,0.0937805,-0.0126038,-0.104126,-0.166321,-0.194794,-0.190491,-0.154053,-0.0966492,-0.0326233,0.022583,0.0521851,0.0510559,0.0206299,-0.0326233,-0.0982666,-0.167908,-0.228424,-0.2771,-0.305511,-0.313538,-0.302704,-0.280182,-0.258057,-0.247467,-0.254395,-0.279907,-0.319672,-0.369324,-0.419006,-0.462952,-0.494049,-0.504395,-0.490967,-0.445923,-0.371307,-0.275146,-0.165466,-0.0597229,0.0385437,0.119751,0.183136,0.226746,0.246918,0.248199,0.234192,0.212524,0.193329,0.181091,0.182709,0.196747,0.222778,0.258545,0.299896,0.345184,0.387421,0.422516,0.44516,0.452606,0.444397,0.422455,0.391754,0.355896,0.31662,0.276825,0.238129,0.203888,0.177002,0.158569,0.14856,0.146393,0.146271,0.145752,0.140625,0.131134,0.115234,0.093689,0.0639648,0.0263977,-0.0126648,-0.0527649,-0.0889893,-0.121643,-0.151459,-0.17807,-0.209625,-0.244934,-0.283081,-0.323608,-0.36322,-0.404633,-0.439331,-0.463928,-0.473572,-0.466461,-0.442902,-0.402802,-0.352936,-0.300232,-0.251129,-0.210571,-0.183746,-0.173401,-0.178772,-0.198364,-0.224915,-0.25647,-0.286957,-0.311218,-0.327271,-0.335968,-0.337952,-0.334381,-0.322693,-0.30188,-0.267975,-0.217224,-0.143921,-0.0409546,0.0883484,0.23764,0.395355,0.549438,0.686157,0.790588,0.849792,0.856354,0.805084,0.697357,0.552246,0.387421,0.230194,0.0993958,0.00830078,-0.0296326,-0.0191345,0.0370178,0.122131,0.218353,0.310577,0.373474,0.396057,0.370331,0.302277,0.210144,0.107544,0.0130005,-0.0611877,-0.108978,-0.125977,-0.116058,-0.0811157,-0.0317383,0.0183716,0.0533142,0.0626831,0.040863,-0.00570679,-0.0673828,-0.133392,-0.195831,-0.246857,-0.284576,-0.303284,-0.307404,-0.297913,-0.283142,-0.274719,-0.280396,-0.304871,-0.345428,-0.395355,-0.448059,-0.493988,-0.526703,-0.541321,-0.534729,-0.503326,-0.443176,-0.356537,-0.25296,-0.143372,-0.0421448,0.0461426,0.116516,0.16983,0.202942,0.21701,0.214294,0.200623,0.183136,0.168823,0.164001,0.173065,0.193817,0.226532,0.265015,0.307556,0.351166,0.390991,0.423767,0.443909,0.44812,0.436859,0.412964,0.38327,0.350616,0.318878,0.289917,0.265564,0.247833,0.236145,0.232788,0.234039,0.239105,0.241364,0.238007,0.223633,0.197266,0.159821,0.115356,0.0686646,0.0220337,-0.0247803,-0.0653381,-0.10144,-0.130371,-0.155273,-0.179962,-0.20752,-0.242706,-0.286316,-0.336884,-0.388306,-0.43399,-0.469574,-0.492279,-0.498413,-0.486389,-0.456909,-0.412018,-0.358643,-0.302582,-0.254517,-0.222443,-0.209625,-0.216949,-0.239258,-0.27301,-0.310455,-0.347809,-0.379791,-0.404419,-0.418701,-0.42392,-0.420746,-0.404846,-0.37558,-0.334381,-0.279999,-0.201691,-0.0930786,0.043457,0.199005,0.361877,0.523529,0.669861,0.783264,0.850586,0.867554,0.827026,0.730408,0.588806,0.426514,0.270264,0.137329,0.0424194,-0.00195312,0.00561523,0.0631714,0.147156,0.244385,0.339081,0.412506,0.448334,0.436432,0.384674,0.307281,0.213989,0.12326,0.0489807,-0.00106812,-0.0234985,-0.0237122,-0.000793457,0.0351868,0.0715637,0.0964355,0.0968628,0.068512,0.0164795,-0.0488281,-0.119598,-0.188232,-0.247345,-0.290558,-0.316223,-0.329071,-0.329498,-0.323334,-0.319733,-0.327667,-0.353912,-0.393616,-0.443756,-0.499207,-0.548706,-0.587952,-0.608429,-0.606628,-0.580078,-0.523407,-0.440308,-0.335693,-0.221893,-0.112488,-0.0148315,0.0658264,0.127533,0.167908,0.186279,0.186432,0.173126,0.152954,0.133087,0.122742,0.126068,0.144775,0.176147,0.217316,0.265289,0.316711,0.366943,0.410767,0.442841,0.460022,0.460999,0.448059,0.428986,0.408081,0.387604,0.3703,0.355835,0.347015,0.343781,0.346588,0.353058,0.359497,0.358429,0.347107,0.319031,0.278778,0.226532,0.170044,0.114471,0.0599365,0.010498,-0.0334778,-0.0690002,-0.0974426,-0.122772,-0.149567,-0.18454,-0.231445,-0.2883,-0.351379,-0.41391,-0.468536,-0.511993,-0.537598,-0.54422,-0.529877,-0.495453,-0.446075,-0.388031,-0.331543,-0.286255,-0.25946,-0.253967,-0.267883,-0.297577,-0.338013,-0.379242,-0.417786,-0.449677,-0.469788,-0.47998,-0.48111,-0.474091,-0.456573,-0.430115,-0.3927,-0.341339,-0.266907,-0.16217,-0.0299072,0.125092,0.29306,0.465485,0.625275,0.755127,0.842194,0.875854,0.850311,0.763,0.630798,0.47345,0.316559,0.17923,0.0775757,0.0296021,0.0365295,0.0964661,0.187408,0.295532,0.404297,0.489899,0.535919,0.536255,0.493225,0.419556,0.322693,0.224976,0.141052,0.0798645,0.0480652,0.0412292,0.0599976,0.0941772,0.126221,0.14563,0.141968,0.110596,0.0541077,-0.0201721,-0.101929,-0.184814,-0.260712,-0.31839,-0.357513,-0.379028,-0.384308,-0.381439,-0.378906,-0.383453,-0.401917,-0.433044,-0.476379,-0.529083,-0.582123,-0.626312,-0.656006,-0.662415,-0.64328,-0.594635,-0.517822,-0.419342,-0.306915,-0.193542,-0.0888367,0.00259399,0.0743408,0.123169,0.148651,0.15329,0.143738,0.124725,0.106232,0.0939941,0.0933533,0.107086,0.135712,0.176208,0.226227,0.282013,0.337952,0.388672,0.430267,0.459656,0.47464,0.476532,0.470428,0.460693,0.450439,0.441864,0.436859,0.435394,0.440399,0.449585,0.460297,0.465851,0.463226,0.444885,0.412445,0.361877,0.299896,0.232635,0.164948,0.100616,0.0422974,-0.00787354,-0.0482483,-0.0823975,-0.112,-0.143097,-0.179474,-0.227356,-0.28598,-0.351532,-0.414215,-0.471527,-0.515442,-0.545074,-0.555817,-0.546448,-0.517761,-0.475922,-0.422516,-0.372162,-0.332245,-0.309753,-0.306305,-0.318481,-0.345001,-0.379944,-0.416809,-0.453308,-0.483582,-0.507263,-0.52066,-0.52713,-0.525696,-0.517761,-0.500519,-0.473846,-0.430054,-0.357178,-0.248413,-0.107758,0.0544434,0.232025,0.411835,0.582214,0.723175,0.822144,0.865143,0.843842,0.759979,0.629761,0.478424,0.332611,0.207306,0.11972,0.0810547,0.0953369,0.158905,0.252136,0.363342,0.475006,0.560516,0.605499,0.599457,0.554413,0.481476,0.391296,0.302094,0.223999,0.167206,0.135071,0.126068,0.144135,0.174164,0.201965,0.211761,0.192902,0.142944,0.0681152,-0.0195007,-0.114441,-0.207794,-0.288513,-0.352112,-0.3927,-0.41153,-0.4086,-0.392761,-0.377716,-0.373138,-0.388336,-0.421753,-0.471191,-0.53125,-0.593445,-0.651703,-0.697418,-0.721191,-0.714752,-0.67276,-0.597046,-0.494568,-0.377991,-0.259521,-0.147156,-0.0475464,0.0319519,0.0861816,0.11261,0.114868,0.0966492,0.0696411,0.0438232,0.0260315,0.0230103,0.0360107,0.0653687,0.109253,0.164612,0.228149,0.293488,0.354706,0.407379,0.446167,0.471741,0.485535,0.492004,0.49527,0.497375,0.50058,0.505035,0.51178,0.523102,0.537598,0.553284,0.561462,0.557159,0.536682,0.496857,0.442566,0.374268,0.300385,0.224335,0.149475,0.0819397,0.0235596,-0.0218811,-0.0581055,-0.0877075,-0.117554,-0.154327,-0.200897,-0.258026,-0.320587,-0.386627,-0.447632,-0.500336,-0.538147,-0.55661,-0.55484,-0.53009,-0.487244,-0.434662,-0.38324,-0.341949,-0.317535,-0.309174,-0.321136,-0.349365,-0.391357,-0.438904,-0.488007,-0.533081,-0.569122,-0.593048,-0.605225,-0.608307,-0.601074,-0.580994,-0.546875,-0.496674,-0.420746,-0.315033,-0.180664,-0.0278015,0.139557,0.311218,0.474304,0.615051,0.718109,0.774384,0.772156,0.717896,0.621521,0.503571,0.382904,0.275757,0.197815,0.160675,0.167633,0.21936,0.29892,0.394928,0.494202,0.574402,0.622498,0.630829,0.602478,0.549622,0.476837,0.401398,0.333099,0.277954,0.242706,0.224609,0.227356,0.241516,0.251648,0.248413,0.222595,0.172272,0.100525,0.0148621,-0.076416,-0.167206,-0.24884,-0.313812,-0.361023,-0.386017,-0.391205,-0.383484,-0.374329,-0.373535,-0.387817,-0.420349,-0.468506,-0.528046,-0.592682,-0.654602,-0.70813,-0.740356,-0.744843,-0.715576,-0.652618,-0.562988,-0.456696,-0.343781,-0.233215,-0.131989,-0.0506592,0.00653076,0.036438,0.0410767,0.0265808,0.00161743,-0.0232239,-0.0416565,-0.0471497,-0.0366516,-0.00942993,0.033905,0.0917969,0.157501,0.22876,0.295898,0.358337,0.408173,0.446411,0.473999,0.4935,0.509552,0.524078,0.537964,0.551941,0.569336,0.58902,0.610535,0.628632,0.638214,0.632843,0.610779,0.568481,0.511414,0.44101,0.364899,0.286591,0.2099,0.140564,0.0818787,0.0353088,-0.000427246,-0.0306091,-0.0606995,-0.0970764,-0.146179,-0.204071,-0.270508,-0.339844,-0.403931,-0.462067,-0.504486,-0.52832,-0.530151,-0.509338,-0.471252,-0.423492,-0.378326,-0.343384,-0.326141,-0.328583,-0.349579,-0.386841,-0.436035,-0.493011,-0.548767,-0.597382,-0.633972,-0.656708,-0.667328,-0.666473,-0.654114,-0.632294,-0.596924,-0.544434,-0.467255,-0.364532,-0.239624,-0.0976562,0.0610657,0.225342,0.378174,0.511169,0.610901,0.667694,0.671387,0.630249,0.555389,0.462463,0.36734,0.281677,0.22287,0.20105,0.219208,0.273804,0.351044,0.444183,0.535278,0.605896,0.649658,0.659088,0.64151,0.598236,0.538147,0.475891,0.418427,0.374115,0.343658,0.326569,0.325073,0.327057,0.322479,0.302643,0.263611,0.204437,0.127747,0.0415039,-0.0501709,-0.135437,-0.210114,-0.269287,-0.31015,-0.332764,-0.338379,-0.336487,-0.33725,-0.345673,-0.370331,-0.411377,-0.466461,-0.531616,-0.598785,-0.663025,-0.714539,-0.744202,-0.746674,-0.715942,-0.656128,-0.573212,-0.476685,-0.377258,-0.28006,-0.196533,-0.131561,-0.0900269,-0.0722656,-0.0765381,-0.0939331,-0.117126,-0.136322,-0.143799,-0.136963,-0.113739,-0.0737915,-0.0201111,0.045166,0.116058,0.18634,0.253387,0.311371,0.358856,0.396698,0.426666,0.454956,0.483307,0.512787,0.543945,0.578033,0.61499,0.65332,0.687988,0.712921,0.721222,0.708557,0.673248,0.6185,0.549225,0.467896,0.384583,0.303192,0.229675,0.170166,0.122345,0.089325,0.0635986,0.0386963,0.00863647,-0.034668,-0.0888672,-0.153656,-0.226013,-0.296814,-0.360687,-0.413239,-0.450714,-0.468109,-0.462341,-0.437561,-0.402252,-0.367767,-0.3414,-0.328674,-0.334869,-0.358917,-0.399872,-0.449677,-0.507294,-0.566437,-0.619629,-0.662811,-0.690826,-0.706512,-0.708954,-0.700592,-0.680847,-0.648834,-0.600433,-0.530212,-0.436096,-0.323456,-0.194214,-0.0549927,0.0856018,0.220612,0.338501,0.43103,0.485474,0.496887,0.474091,0.423431,0.360168,0.295532,0.24054,0.208862,0.203308,0.229187,0.283661,0.356262,0.442932,0.525421,0.592102,0.638336,0.656403,0.652954,0.631104,0.595978,0.557861,0.519867,0.486389,0.460083,0.441101,0.430878,0.421326,0.403168,0.373322,0.326691,0.266968,0.195923,0.118835,0.0412292,-0.032074,-0.0979919,-0.154205,-0.198517,-0.228699,-0.246918,-0.25946,-0.273712,-0.294617,-0.32608,-0.370178,-0.422882,-0.481171,-0.540405,-0.597687,-0.646027,-0.679077,-0.690948,-0.675262,-0.636566,-0.580292,-0.511139,-0.437988,-0.365448,-0.299255,-0.246277,-0.20929,-0.190765,-0.19043,-0.202667,-0.21991,-0.233429,-0.237854,-0.229492,-0.207733,-0.171143,-0.120239,-0.0570374,0.0133667,0.0852051,0.153717,0.215881,0.268738,0.313324,0.351959,0.388184,0.422882,0.457184,0.493439,0.534851,0.580322,0.626221,0.665649,0.694885,0.708496,0.703003,0.677734,0.633331,0.574463,0.504669,0.430176,0.356323,0.293762,0.241364,0.201324,0.170593,0.145325,0.120941,0.0912476,0.0515137,0.00195312,-0.0557251,-0.119873,-0.186005,-0.250641,-0.303894,-0.340118,-0.359467,-0.360687,-0.347656,-0.328094,-0.309814,-0.299622,-0.300232,-0.314331,-0.343719,-0.390869,-0.449402,-0.512909,-0.573883,-0.628479,-0.672119,-0.697998,-0.708893,-0.705322,-0.688141,-0.651062,-0.590912,-0.514038,-0.426117,-0.328949,-0.227875,-0.127899,-0.0335693,0.0498962,0.119019,0.164673,0.182617,0.178741,0.158783,0.134369,0.113312,0.0993347,0.099884,0.117981,0.154419,0.210358,0.276764,0.355133,0.432281,0.497009,0.545837,0.573059,0.586639,0.590302,0.58609,0.580566,0.571991,0.563416,0.554749,0.545135,0.538391,0.527618,0.506226,0.473297,0.424072,0.366028,0.300446,0.2341,0.174591,0.119812,0.0725403,0.03125,-0.00378418,-0.0312195,-0.0536804,-0.0756836,-0.100739,-0.134521,-0.17807,-0.230621,-0.285065,-0.341736,-0.394073,-0.442719,-0.485107,-0.517059,-0.536682,-0.538666,-0.525482,-0.501282,-0.470642,-0.439758,-0.409973,-0.381714,-0.358154,-0.339294,-0.329437,-0.327484,-0.332031,-0.338318,-0.34082,-0.337677,-0.325867,-0.304169,-0.274628,-0.237152,-0.190643,-0.13913,-0.0817261,-0.0255432,0.02771,0.0751953,0.119385,0.161224,0.201111,0.242279,0.285187,0.332031,0.382202,0.436371,0.490601,0.539642,0.579803,0.607086,0.617371,0.608734,0.583466,0.545471,0.496582,0.443756,0.392822,0.348206,0.310394,0.282043,0.26239,0.245605,0.227661,0.20282,0.171875,0.130768,0.0814819,0.0246887,-0.0330811,-0.0883484,-0.136536,-0.17334,-0.19281,-0.198822,-0.193024,-0.184296,-0.175537,-0.17453,-0.185577,-0.211548,-0.253693,-0.307861,-0.374268,-0.446014,-0.513031,-0.565613,-0.595367,-0.598938,-0.574249,-0.528931,-0.467529,-0.395142,-0.321472,-0.253662,-0.198669,-0.164001,-0.151611,-0.164062,-0.193604,-0.231873,-0.268036,-0.296509,-0.310455,-0.302094,-0.270905,-0.217651,-0.144501,-0.0545959,0.0422668,0.137054,0.221313,0.28598,0.332977,0.361115,0.377472,0.385712,0.39035,0.397461,0.407654,0.425262,0.449524,0.477753,0.508392,0.53009,0.538147,0.527344,0.496735,0.452759,0.399078,0.342529,0.289551,0.243408,0.207458,0.184875,0.176086,0.180939,0.190704,0.19986,0.200836,0.186615,0.156738,0.111298,0.0549927,-0.00830078,-0.0753479,-0.139709,-0.196777,-0.23941,-0.265564,-0.275574,-0.271423,-0.260712,-0.248199,-0.241425,-0.241364,-0.251068,-0.269867,-0.296661,-0.329773,-0.365234,-0.397766,-0.424408,-0.437225,-0.436798,-0.422852,-0.399506,-0.367981,-0.330933,-0.293274,-0.253662,-0.217499,-0.184174,-0.155182,-0.130493,-0.107422,-0.0837708,-0.0594482,-0.0307312,0.000915527,0.0367126,0.0773315,0.121368,0.169037,0.216522,0.260925,0.29715,0.323334,0.339447,0.34436,0.340271,0.32959,0.31546,0.299194,0.283844,0.2724,0.266907,0.266541,0.269379,0.270752,0.26474,0.252136,0.23172,0.204163,0.168854,0.127686,0.0863342,0.0464478,0.013031,-0.0128784,-0.0272827,-0.0306091,-0.0289307,-0.0296326,-0.0358887,-0.049469,-0.0735779,-0.10849,-0.147247,-0.183258,-0.207245,-0.216339,-0.204071,-0.173279,-0.124084,-0.06604,-0.0114136,0.0284119,0.0426331,0.0280762,-0.0232849,-0.108398,-0.217224,-0.332886,-0.442474,-0.531616,-0.588379,-0.605194,-0.580017,-0.518524,-0.42807,-0.318604,-0.201202,-0.0925903,-0.00543213,0.0550842,0.0906677,0.106232,0.109955,0.109955,0.114044,0.124298,0.142456,0.170807,0.208038,0.248383,0.285767,0.309814,0.311981,0.291931,0.254456,0.208435,0.161011,0.119171,0.0870972,0.068512,0.064209,0.0795593,0.112366,0.157166,0.203949,0.243683,0.268646,0.274719,0.263031,0.23941,0.205963,0.168488,0.128448,0.0914001,0.0638733,0.0513,0.0528259,0.0656433,0.0825195,0.0971375,0.102417,0.0943909,0.0727539,0.0378418,-0.00979614,-0.065979,-0.129211,-0.190704,-0.245026,-0.284363,-0.305115,-0.308044,-0.297943,-0.277588,-0.253174,-0.225891,-0.197876,-0.173279,-0.151794,-0.135925,-0.123962,-0.114532,-0.104126,-0.0930786,-0.0778198,-0.0599976,-0.0410767,-0.0218811,-0.0039978,0.0135803,0.0292053,0.0410767,0.04776,0.0469971,0.0399475,0.0281372,0.0144348,0.00286865,-0.00640869,-0.0123291,-0.0137939,-0.00909424,0.0022583,0.0210876,0.0457153,0.0704956,0.0905457,0.101807,0.102417,0.0948181,0.079071,0.0592346,0.0357361,0.0113831,-0.00909424,-0.0248413,-0.0325623,-0.03125,-0.0234985,-0.0147705,-0.0109558,-0.0170288,-0.0361633,-0.0645142,-0.0900574,-0.105316,-0.102203,-0.0744934,-0.0246887,0.0439148,0.127197,0.219635,0.310638,0.376648,0.405853,0.384186,0.306915,0.183136,0.0317078,-0.128326,-0.276886,-0.397522,-0.480988,-0.517212,-0.502563,-0.436737,-0.329376,-0.197906,-0.0657043,0.0427856,0.113617,0.148285,0.153931,0.141113,0.120148,0.0959473,0.0747681,0.0600586,0.0639648,0.0897522,0.132385,0.179657,0.213654,0.221039,0.196075,0.147095,0.0858765,0.0197144,-0.0446167,-0.102509,-0.1521,-0.185028,-0.190796,-0.16687,-0.114105,-0.0501709,0.0114136,0.0578308,0.0849609,0.0958252,0.0941772,0.0828857,0.0612183,0.02948,-0.00653076,-0.0372925,-0.0510559,-0.0422058,-0.0150452,0.0234985,0.0626221,0.0962219,0.120148,0.133575,0.136047,0.12262,0.0906677,0.0409546,-0.0212402,-0.0854797,-0.139648,-0.177124,-0.194305,-0.196747,-0.184509,-0.163788,-0.132385,-0.0939026,-0.0502319,-0.00878906,0.0244751,0.0464478,0.0610046,0.0692749,0.0795593,0.0916443,0.106934,0.123688,0.140259,0.156097,0.171082,0.185211,0.193726,0.191437,0.175323,0.144073,0.103912,0.0588684,0.0142822,-0.0254517,-0.0588684,-0.0840759,-0.0997009,-0.10376,-0.0941772,-0.0753479,-0.0527649,-0.0333252,-0.0221558,-0.0191956,-0.0265198,-0.039032,-0.0562744,-0.0766602,-0.0969238,-0.116974,-0.131256,-0.138367,-0.137329,-0.132202,-0.126434,-0.127686,-0.141968,-0.170441,-0.209656,-0.248596,-0.278137,-0.291595,-0.279694,-0.237701,-0.165466,-0.0689392,0.047699,0.170166,0.278595,0.354889,0.385162,0.362,0.285034,0.165314,0.020813,-0.130646,-0.269348,-0.375458,-0.436432,-0.444397,-0.394928,-0.296814,-0.164612,-0.0192566,0.117218,0.225403,0.296082,0.329651,0.330231,0.304047,0.265686,0.223419,0.187286,0.16925,0.175598,0.205048,0.246582,0.288574,0.31662,0.318115,0.291931,0.242859,0.176941,0.100098,0.020813,-0.0506592,-0.108398,-0.142334,-0.145477,-0.118134,-0.0686646,-0.0102844,0.0443115,0.0842896,0.106384,0.107788,0.0896301,0.0518494,-0.000366211,-0.0600891,-0.117615,-0.162781,-0.186981,-0.188171,-0.169189,-0.134979,-0.0950928,-0.0559082,-0.0247498,-0.00485229,-0.00247192,-0.0183411,-0.0536194,-0.103546,-0.160614,-0.215271,-0.258057,-0.281586,-0.285736,-0.270844,-0.240234,-0.19873,-0.151093,-0.100159,-0.0518494,-0.012085,0.0171509,0.0349121,0.0441589,0.0480652,0.0544434,0.0653687,0.0840149,0.110443,0.142822,0.17923,0.214508,0.243408,0.260925,0.264069,0.251923,0.223999,0.183411,0.135773,0.0871582,0.0439758,0.0108337,-0.00863647,-0.0137939,-0.00357056,0.015686,0.0401001,0.0644226,0.0838013,0.0944214,0.0919495,0.0778198,0.0537415,0.0238342,-0.00906372,-0.040802,-0.0644531,-0.0782471,-0.088623,-0.0939026,-0.0982056,-0.106567,-0.124176,-0.151093,-0.183594,-0.220032,-0.24762,-0.258667,-0.246307,-0.207245,-0.142334,-0.059082,0.0318604,0.120361,0.189575,0.229187,0.225891,0.175507,0.0819397,-0.043396,-0.182495,-0.318054,-0.429962,-0.502441,-0.526978,-0.501495,-0.428436,-0.313416,-0.174591,-0.0343323,0.091156,0.185913,0.242706,0.262665,0.254669,0.230316,0.197815,0.166016,0.145355,0.14035,0.154572,0.187683,0.228271,0.264801,0.284485,0.279846,0.251373,0.203522,0.145569,0.0858765,0.0299072,-0.0165405,-0.0476379,-0.0553589,-0.0376892,0.00479126,0.0628357,0.124023,0.175873,0.210144,0.222778,0.215759,0.191711,0.152252,0.100189,0.043396,-0.0108337,-0.0524292,-0.0759888,-0.0787048,-0.063446,-0.0369263,-0.00927734,0.015625,0.0288391,0.0301208,0.0162659,-0.0140686,-0.0609131,-0.119507,-0.181976,-0.239258,-0.282318,-0.303986,-0.304535,-0.285828,-0.251862,-0.208099,-0.158569,-0.10791,-0.0604248,-0.0223083,0.0015564,0.0119629,0.0114746,0.00534058,-0.00119019,-0.00231934,0.00323486,0.0155334,0.0342712,0.0568542,0.0800476,0.098053,0.106354,0.105316,0.0917969,0.0667725,0.0349731,0.000854492,-0.0308838,-0.0550842,-0.0665588,-0.0632324,-0.0454407,-0.0179443,0.0150452,0.0471497,0.0763855,0.0965271,0.105316,0.100159,0.0827942,0.0549927,0.022522,-0.0103455,-0.0380554,-0.0571289,-0.0705566,-0.0799866,-0.0874329,-0.0973511,-0.111786,-0.126282,-0.134369,-0.130219,-0.111298,-0.0755005,-0.0210266,0.0483398,0.13092,0.217438,0.294403,0.347656,0.364349,0.33316,0.253662,0.134918,-0.00927734,-0.164124,-0.311096,-0.430664,-0.513245,-0.546875,-0.522675,-0.447418,-0.329987,-0.187988,-0.0467224,0.0762024,0.16449,0.220551,0.242157,0.233124,0.208588,0.173981,0.138245,0.111938,0.102081,0.114258,0.140259,0.170319,0.19281,0.192261,0.170013,0.126129,0.070343,0.00683594,-0.0552368,-0.112061,-0.157593,-0.181641,-0.176422,-0.139008,-0.0757141,0.00183105,0.0800476,0.144409,0.189362,0.212952,0.214081,0.194946,0.155884,0.102203,0.0432129,-0.0122986,-0.0506592,-0.0700684,-0.0666199,-0.0441589,-0.0101929,0.0266724,0.0611877,0.0860901,0.0980835,0.0896912,0.0612793,0.0132141,-0.0485229,-0.113617,-0.172363,-0.216095,-0.239746,-0.242615,-0.224396,-0.188751,-0.140961,-0.0854797,-0.0289917,0.0196838,0.0575256,0.0799255,0.0875854,0.0831604,0.0735168,0.0645142,0.0591431,0.0611877,0.0697327,0.084137,0.101105,0.114594,0.119873,0.112061,0.0906982,0.0545349,0.00857544,-0.042572,-0.0922241,-0.132904,-0.159393,-0.168854,-0.157013,-0.126404,-0.0820923,-0.0317078,0.0175781,0.057251,0.0829468,0.0941162,0.0875854,0.0645142,0.0303345,-0.0108337,-0.0524292,-0.0900574,-0.11676,-0.134583,-0.145477,-0.152649,-0.159912,-0.170471,-0.179047,-0.186432,-0.184174,-0.168335,-0.130371,-0.07547,-0.00747681,0.0750732,0.164185,0.244476,0.305939,0.33783,0.328583,0.273499,0.177765,0.0547485,-0.0827332,-0.216583,-0.328094,-0.408447,-0.444397,-0.428497,-0.367065,-0.265717,-0.137451,-0.00436401,0.112762,0.20224,0.258728,0.278595,0.269714,0.241791,0.201843,0.160339,0.12735,0.110229,0.112,0.13092,0.160553,0.187256,0.198883,0.189026,0.15918,0.112549,0.0553589,-0.0038147,-0.061676,-0.110535,-0.141663,-0.1492,-0.125702,-0.0765991,-0.00915527,0.0630188,0.125977,0.172546,0.196686,0.197449,0.176941,0.135498,0.0792236,0.0162659,-0.04599,-0.0937805,-0.121643,-0.126678,-0.10968,-0.077301,-0.0370789,0.00289917,0.0363159,0.0560608,0.0578308,0.0397339,0.00238037,-0.0496521,-0.108459,-0.16217,-0.20575,-0.230682,-0.23468,-0.218933,-0.184937,-0.138245,-0.0823059,-0.0258179,0.0253906,0.0637512,0.0883484,0.0975037,0.0937805,0.0840149,0.0733643,0.065979,0.063385,0.067749,0.0760498,0.087738,0.0970764,0.102783,0.0986328,0.0824585,0.0548706,0.015625,-0.0296021,-0.0735168,-0.110809,-0.13501,-0.144653,-0.13562,-0.111725,-0.0738525,-0.0270691,0.0194092,0.0602112,0.0904846,0.104462,0.0967407,0.0744324,0.0410156,0.00125122,-0.0424194,-0.0845642,-0.122467,-0.151672,-0.178131,-0.198792,-0.210266,-0.214478,-0.209015,-0.192841,-0.157806,-0.10553,-0.0374451,0.0432739,0.126831,0.205566,0.270782,0.312988,0.325134,0.299835,0.236572,0.137177,0.0137329,-0.121002,-0.247711,-0.352722,-0.424683,-0.452698,-0.435944,-0.374603,-0.274658,-0.152039,-0.0227966,0.0987549,0.197479,0.263794,0.298828,0.30545,0.288849,0.257538,0.223083,0.189575,0.166779,0.155121,0.154968,0.158997,0.161591,0.15387,0.132477,0.0976562,0.0522156,0.000488281,-0.0514221,-0.0992432,-0.136841,-0.157104,-0.154358,-0.127136,-0.0769653,-0.0119629,0.0584412,0.121216,0.171661,0.201965,0.211975,0.199066,0.166321,0.117401,0.0588074,-0.00167847,-0.0542908,-0.092926,-0.112122,-0.113464,-0.0986938,-0.0738831,-0.0441895,-0.0164795,0.0032959,0.0111694,0.00317383,-0.0213013,-0.0581055,-0.10199,-0.146332,-0.183838,-0.207672,-0.215759,-0.205414,-0.178772,-0.135559,-0.0832825,-0.0246887,0.0306702,0.0783081,0.112,0.130585,0.134979,0.129364,0.117767,0.104126,0.0922852,0.084259,0.0795593,0.0777283,0.0777283,0.0770874,0.0714722,0.0578918,0.0351562,0.00436401,-0.0318604,-0.0709839,-0.104828,-0.128723,-0.139008,-0.134216,-0.113342,-0.0783081,-0.033844,0.0154724,0.0636597,0.102478,0.128601,0.13382,0.120911,0.0923767,0.0523987,0.00436401,-0.0503845,-0.105438,-0.156799,-0.202728,-0.24054,-0.269562,-0.285248,-0.283936,-0.264648,-0.221649,-0.157776,-0.0760498,0.015564,0.108276,0.193542,0.262665,0.30603,0.316772,0.289642,0.225403,0.128723,0.00949097,-0.120087,-0.241425,-0.341339,-0.408234,-0.435242,-0.421234,-0.365601,-0.276184,-0.166992,-0.0498047,0.0587463,0.149261,0.213348,0.249725,0.262695,0.255859,0.237915,0.214264,0.192596,0.179596,0.174896,0.178558,0.183472,0.185577,0.177612,0.15686,0.124084,0.0824585,0.0353699,-0.011261,-0.054657,-0.0875854,-0.104187,-0.100586,-0.072876,-0.0255432,0.0355835,0.100677,0.158997,0.20343,0.228577,0.233337,0.21582,0.177856,0.123962,0.0591431,-0.00598145,-0.0635986,-0.105652,-0.127106,-0.128967,-0.111938,-0.0836487,-0.04776,-0.013031,0.0151367,0.0298157,0.0275879,0.00744629,-0.0289917,-0.0759888,-0.125793,-0.17157,-0.20578,-0.225098,-0.225037,-0.208374,-0.173676,-0.127258,-0.0744324,-0.0214539,0.023407,0.0575256,0.0778809,0.0854187,0.0838623,0.0760498,0.0664978,0.056366,0.0481262,0.0420837,0.0393066,0.0393982,0.0371399,0.0341797,0.0229187,0.00653076,-0.0206299,-0.0521851,-0.0845642,-0.113037,-0.132477,-0.139374,-0.130157,-0.102905,-0.0648804,-0.0171814,0.0334778,0.0832825,0.125519,0.152435,0.160797,0.150604,0.121338,0.0777893,0.0248413,-0.0317383,-0.0839844,-0.134644,-0.179108,-0.216949,-0.24115,-0.250244,-0.244446,-0.219055,-0.171173,-0.103638,-0.0223694,0.0631104,0.149841,0.227417,0.287567,0.323669,0.330994,0.304047,0.238678,0.14035,0.0218811,-0.10553,-0.226807,-0.328522,-0.399841,-0.431946,-0.423004,-0.373322,-0.289642,-0.184814,-0.0714111,0.0360718,0.126923,0.193237,0.232422,0.246063,0.23764,0.214996,0.186859,0.161163,0.143524,0.135498,0.136047,0.140137,0.14209,0.135437,0.11734,0.0900574,0.0514221,0.0062561,-0.0416565,-0.0875244,-0.124451,-0.145538,-0.144989,-0.118805,-0.0696411,-0.00500488,0.0675964,0.13797,0.19754,0.240173,0.260284,0.255585,0.226166,0.1763,0.110992,0.0404358,-0.0245361,-0.0769043,-0.1091,-0.1203,-0.11087,-0.0840149,-0.0476379,-0.0088501,0.0256958,0.0471497,0.0527039,0.0389099,0.00817871,-0.0341797,-0.0828552,-0.128601,-0.164978,-0.187347,-0.190643,-0.176361,-0.143921,-0.0991821,-0.0464172,0.00473022,0.0501404,0.0838623,0.103973,0.110016,0.106293,0.0960999,0.0814514,0.0658264,0.0527649,0.0415649,0.0337524,0.0273132,0.0205994,0.009552,-0.00759888,-0.0321655,-0.061615,-0.0955505,-0.129303,-0.156586,-0.173706,-0.176453,-0.163635,-0.133881,-0.090332,-0.0357361,0.0206299,0.0726624,0.114258,0.139709,0.148102,0.136139,0.106567,0.0621338,0.00857544,-0.0491028,-0.104736,-0.153931,-0.194733,-0.227509,-0.248596,-0.256836,-0.250305,-0.226013,-0.18396,-0.122345,-0.0460205,0.0369263,0.120026,0.198578,0.264435,0.310577,0.330292,0.318665,0.271057,0.190643,0.0834351,-0.0383301,-0.159698,-0.267548,-0.348511,-0.395294,-0.402039,-0.368683,-0.298279,-0.201599,-0.088623,0.023407,0.124146,0.20163,0.252838,0.27536,0.272736,0.250519,0.217163,0.182129,0.152527,0.130768,0.118622,0.113068,0.110931,0.105438,0.094635,0.0743713,0.0463562,0.0110474,-0.0286865,-0.0697937,-0.104767,-0.128235,-0.133881,-0.116577,-0.0780334,-0.0196838,0.0474854,0.118103,0.180176,0.227081,0.252563,0.254181,0.229614,0.182678,0.117767,0.0447388,-0.0266724,-0.0870056,-0.129364,-0.149292,-0.146545,-0.123871,-0.0869446,-0.0426941,-0.000335693,0.0333557,0.0524902,0.0529785,0.0362244,0.00408936,-0.0368042,-0.0779419,-0.115387,-0.140747,-0.152252,-0.147369,-0.126068,-0.0918884,-0.0496521,-0.00604248,0.0345459,0.0667725,0.0892639,0.100525,0.101715,0.0937805,0.0823059,0.0666809,0.049469,0.0342407,0.0205383,0.00921631,-0.00134277,-0.0121155,-0.0245667,-0.040802,-0.0617065,-0.0856934,-0.107697,-0.126343,-0.138428,-0.139343,-0.127319,-0.104523,-0.0733032,-0.0341797,0.0088501,0.0514832,0.0856323,0.107788,0.115173,0.105225,0.0793457,0.0432129,-0.00140381,-0.0521851,-0.105865,-0.151825,-0.191772,-0.226746,-0.25296,-0.262543,-0.260925,-0.247284,-0.21521,-0.161926,-0.0903931,-0.011261,0.0714722,0.155609,0.229553,0.287598,0.326263,0.337372,0.311646,0.248901,0.156372,0.0429077,-0.0828857,-0.202942,-0.30249,-0.373138,-0.406067,-0.39682,-0.348419,-0.267517,-0.162842,-0.043396,0.0728149,0.174377,0.250366,0.298065,0.318329,0.312286,0.287872,0.255798,0.220398,0.187775,0.159485,0.136597,0.119598,0.102783,0.0863037,0.0661316,0.0399475,0.0093689,-0.0262451,-0.0623474,-0.0961609,-0.120636,-0.130127,-0.120209,-0.0914612,-0.0456543,0.013916,0.079834,0.143494,0.197479,0.234741,0.250153,0.240936,0.208008,0.156586,0.0914612,0.0213928,-0.0446167,-0.0983582,-0.135284,-0.151611,-0.148102,-0.127136,-0.0944214,-0.0575256,-0.0234375,0.00247192,0.0154114,0.013031,-0.00323486,-0.0307312,-0.0644531,-0.098053,-0.126068,-0.144409,-0.148926,-0.139374,-0.114807,-0.0796204,-0.0386353,0.00134277,0.0376282,0.0669861,0.085907,0.0965271,0.098999,0.0943909,0.0828857,0.0689392,0.0521851,0.0355835,0.0196228,0.00576782,-0.00857544,-0.0227966,-0.0393982,-0.0580444,-0.0765381,-0.0946045,-0.108612,-0.11676,-0.117401,-0.107269,-0.0880737,-0.060791,-0.0258789,0.0127869,0.052063,0.0881348,0.115723,0.130585,0.13028,0.114685,0.0858154,0.0488281,0.00582886,-0.0397339,-0.0866699,-0.131622,-0.172211,-0.203217,-0.223999,-0.236359,-0.237549,-0.227448,-0.208038,-0.176453,-0.126404,-0.061615,0.012085,0.088562,0.165466,0.233643,0.279968,0.303833,0.300171,0.26416,0.195282,0.0989685,-0.013916,-0.135925,-0.25,-0.340485,-0.397675,-0.418579,-0.397552,-0.340057,-0.253174,-0.144928,-0.0275879,0.0853271,0.180603,0.253387,0.297913,0.312347,0.302002,0.27301,0.236298,0.197266,0.161102,0.129913,0.105682,0.0870972,0.0729675,0.0604858,0.0458069,0.0263977,0.0010376,-0.0289001,-0.0602722,-0.0877075,-0.105103,-0.108612,-0.0939941,-0.0625305,-0.0141296,0.0448914,0.110291,0.172791,0.224213,0.257843,0.268951,0.253265,0.215607,0.15976,0.0937195,0.0248413,-0.0377808,-0.0872498,-0.120087,-0.132904,-0.126984,-0.105011,-0.0726624,-0.0379333,-0.00656128,0.0147095,0.022583,0.0160522,-0.00198364,-0.0280762,-0.0574646,-0.084198,-0.104034,-0.11377,-0.111633,-0.0975647,-0.0740662,-0.0436707,-0.0108337,0.0197144,0.045105,0.0627441,0.0710449,0.072052,0.0652771,0.0527039,0.0352478,0.0154114,-0.00427246,-0.0229187,-0.0388489,-0.0510864,-0.0619812,-0.0718384,-0.0814819,-0.0900269,-0.0976257,-0.102844,-0.105927,-0.103333,-0.0960388,-0.0826416,-0.0629578,-0.0370789,-0.00430298,0.0265198,0.0544434,0.077179,0.0926514,0.0953064,0.0865173,0.0709229,0.046936,0.0123901,-0.0280151,-0.0684509,-0.110657,-0.150177,-0.17981,-0.198669,-0.211823,-0.217651,-0.213654,-0.200562,-0.176208,-0.134003,-0.0739441,-0.00582886,0.068573,0.146179,0.216522,0.269775,0.30603,0.320374,0.302094,0.250092,0.16925,0.0652161,-0.0557861,-0.175323,-0.27774,-0.353363,-0.397552,-0.401672,-0.36792,-0.300934,-0.206665,-0.0950317,0.0210876,0.126984,0.214966,0.27774,0.310364,0.314819,0.299103,0.267822,0.229034,0.189514,0.151459,0.117188,0.0892639,0.0666809,0.0484009,0.0303345,0.00964355,-0.0140076,-0.043396,-0.0741272,-0.101776,-0.121429,-0.13028,-0.121338,-0.0942688,-0.0502319,0.0088501,0.0762024,0.14563,0.207031,0.253876,0.279358,0.278381,0.254181,0.207367,0.146271,0.0764771,0.00775146,-0.0533142,-0.100952,-0.130554,-0.139557,-0.131409,-0.10791,-0.077301,-0.0446167,-0.0175171,0.00146484,0.009552,0.00796509,-0.00274658,-0.0187073,-0.0379028,-0.0548096,-0.0664978,-0.0688782,-0.0638733,-0.0495911,-0.0292664,-0.00726318,0.013031,0.0307617,0.0441895,0.052124,0.0555115,0.0542297,0.0467224,0.0320129,0.0141907,-0.00506592,-0.0227356,-0.0383911,-0.0504456,-0.0609131,-0.0720215,-0.0840149,-0.0942078,-0.103485,-0.109406,-0.112122,-0.110657,-0.105591,-0.09552,-0.0799255,-0.0580444,-0.0311584,0.000213623,0.0307617,0.0574036,0.0770264,0.0864563,0.0842896,0.0726013,0.0550232,0.028717,-0.00576782,-0.0461426,-0.0856018,-0.122833,-0.158081,-0.182404,-0.197601,-0.207092,-0.211273,-0.207581,-0.193604,-0.171631,-0.13501,-0.0826416,-0.0180664,0.0548706,0.133453,0.207031,0.266846,0.309601,0.330505,0.321289,0.277039,0.204224,0.10434,-0.0145569,-0.136353,-0.243256,-0.328033,-0.382538,-0.396851,-0.369812,-0.308533,-0.218079,-0.107422,0.00866699,0.116638,0.209198,0.278168,0.316132,0.323883,0.30896,0.278137,0.237335,0.19458,0.153351,0.117126,0.0879211,0.065979,0.047821,0.0286255,0.00701904,-0.0193481,-0.0506592,-0.0830078,-0.112061,-0.134583,-0.145813,-0.14035,-0.115143,-0.0720215,-0.0125732,0.0566406,0.128754,0.193512,0.24353,0.271698,0.275574,0.253387,0.21048,0.151886,0.0851135,0.0171814,-0.0455322,-0.0958862,-0.12796,-0.140839,-0.134796,-0.116211,-0.0894775,-0.060791,-0.0361023,-0.0169678,-0.00604248,-0.00366211,-0.00842285,-0.0184937,-0.02948,-0.039032,-0.0437012,-0.0415039,-0.0310974,-0.0157471,0.00372314,0.0224304,0.0377808,0.0485229,0.0534668,0.0530396,0.04776,0.0390625,0.0267334,0.0108337,-0.00610352,-0.0227356,-0.0361023,-0.0462341,-0.0515747,-0.0541687,-0.0551453,-0.0570374,-0.0599365,-0.0650024,-0.0699158,-0.0754089,-0.0804749,-0.0827332,-0.0810547,-0.0741577,-0.0614929,-0.0412292,-0.0154114,0.0133057,0.0388489,0.0601501,0.0730286,0.0756836,0.0690918,0.0524902,0.0287781,-0.00259399,-0.0396118,-0.0791321,-0.11496,-0.145966,-0.171021,-0.188477,-0.196045,-0.197968,-0.196411,-0.190369,-0.177856,-0.159698,-0.132477,-0.0910339,-0.0336914,0.0326233,0.105164,0.180603,0.248596,0.297791,0.324371,0.323761,0.288422,0.22049,0.123688,0.00878906,-0.115509,-0.230957,-0.324951,-0.387146,-0.409851,-0.391266,-0.333588,-0.245514,-0.136047,-0.0173035,0.0958862,0.19281,0.268036,0.313599,0.329102,0.319305,0.293854,0.257324,0.217804,0.180176,0.148224,0.120911,0.0973816,0.0759583,0.0528259,0.0230103,-0.0125732,-0.0533142,-0.0964661,-0.13562,-0.167084,-0.182892,-0.17926,-0.153412,-0.105438,-0.0389709,0.0406799,0.122894,0.199493,0.25946,0.299469,0.311554,0.296234,0.256836,0.198822,0.128296,0.0532532,-0.0183411,-0.0796204,-0.124878,-0.1521,-0.160095,-0.153412,-0.134857,-0.110718,-0.0847168,-0.0604248,-0.0401001,-0.0268555,-0.0173035,-0.0124512,-0.00933838,-0.00662231,-0.00241089,0.00500488,0.0147705,0.025177,0.0357361,0.0436707,0.0466919,0.0453796,0.0384216,0.0290527,0.0160522,0.00204468,-0.0103455,-0.0216064,-0.0314331,-0.0387573,-0.0426941,-0.0427551,-0.0413513,-0.0397644,-0.0388184,-0.0392456,-0.0426331,-0.0479736,-0.0545349,-0.0621948,-0.0694885,-0.0757751,-0.0780029,-0.0713196,-0.0585938,-0.0383911,-0.0119019,0.0171814,0.0442505,0.0668335,0.0835876,0.0902405,0.0837097,0.0646362,0.0353699,-0.00183105,-0.0422668,-0.0830078,-0.120239,-0.152802,-0.176727,-0.190979,-0.19809,-0.193604,-0.18338,-0.169678,-0.153778,-0.137268,-0.121979,-0.103912,-0.0774536,-0.0361023,0.0173645,0.0802002,0.147186,0.207947,0.254242,0.286957,0.298126,0.27948,0.228149,0.147736,0.0441895,-0.0745544,-0.190918,-0.291443,-0.366852,-0.407532,-0.405701,-0.366516,-0.294128,-0.195831,-0.0812378,0.0349121,0.144135,0.234955,0.298981,0.332062,0.340118,0.327606,0.299316,0.26178,0.220886,0.180603,0.142395,0.110535,0.0803528,0.0496521,0.0146179,-0.0222168,-0.0622559,-0.101532,-0.13681,-0.163849,-0.179169,-0.17807,-0.15567,-0.11264,-0.0511475,0.0237732,0.10434,0.182617,0.250214,0.297852,0.32135,0.318756,0.291809,0.244659,0.180511,0.106567,0.0307312,-0.0398865,-0.0986328,-0.140564,-0.164764,-0.17215,-0.164764,-0.147034,-0.122467,-0.09552,-0.0690002,-0.0462341,-0.0270691,-0.0108337,0.00253296,0.0129395,0.0220947,0.0298462,0.0362854,0.0432739,0.0488281,0.0522156,0.050293,0.0437622,0.033844,0.0198975,0.00534058,-0.00894165,-0.0211182,-0.0323792,-0.0431824,-0.0528259,-0.06073,-0.0656433,-0.0655518,-0.0619812,-0.0565491,-0.052124,-0.0484619,-0.0464478,-0.0455017,-0.0444031,-0.0453186,-0.0452881,-0.0466919,-0.0457458,-0.0400085,-0.0280762,-0.0103455,0.0108948,0.0334778,0.053833,0.0688171,0.0765991,0.0744324,0.0612183,0.0355225,-0.000701904,-0.0441895,-0.0889282,-0.129028,-0.162659,-0.187042,-0.198517,-0.19754,-0.186554,-0.165466,-0.137329,-0.107361,-0.0823669,-0.0631104,-0.0515747,-0.0438232,-0.0349731,-0.0187073,0.00985718,0.0488892,0.0958862,0.144714,0.189087,0.222168,0.241211,0.235321,0.202026,0.138885,0.0529175,-0.0511475,-0.16153,-0.261566,-0.341614,-0.391296,-0.403534,-0.374176,-0.307617,-0.210266,-0.0934753,0.0289001,0.145691,0.24762,0.322906,0.365875,0.377258,0.360413,0.321625,0.266266,0.207458,0.149078,0.0987549,0.0565491,0.0235596,-0.00372314,-0.0275879,-0.0500183,-0.0730896,-0.09552,-0.11557,-0.131195,-0.140411,-0.138733,-0.121124,-0.0864563,-0.0345459,0.0298157,0.102234,0.175323,0.24054,0.291718,0.320709,0.327057,0.306915,0.265198,0.202972,0.129669,0.0513,-0.0260315,-0.0935059,-0.14682,-0.182068,-0.198395,-0.197266,-0.180786,-0.152649,-0.118378,-0.0821533,-0.0481873,-0.0173645,0.00808716,0.0296326,0.0452271,0.0561523,0.0631714,0.0656433,0.0650635,0.0636597,0.0592957,0.052063,0.0409241,0.0265808,0.0108948,-0.00604248,-0.0218201,-0.0355835,-0.0484619,-0.059082,-0.0708923,-0.0811157,-0.0873718,-0.0880737,-0.0821838,-0.0734253,-0.0617676,-0.0505066,-0.0393066,-0.0290527,-0.02005,-0.0123291,-0.00814819,-0.00662231,-0.00564575,-0.00473022,-0.00189209,0.00259399,0.00921631,0.0184937,0.0273743,0.0334778,0.0348206,0.0303955,0.0193481,0.00238037,-0.0232239,-0.054718,-0.089325,-0.119934,-0.143005,-0.156525,-0.159058,-0.154114,-0.141052,-0.119324,-0.0919495,-0.0646667,-0.0419922,-0.027771,-0.0247803,-0.0317993,-0.0425415,-0.0522766,-0.0581665,-0.0500793,-0.0264587,0.0102539,0.056366,0.104614,0.148712,0.180878,0.197205,0.190308,0.153778,0.0905457,0.00680542,-0.088623,-0.184235,-0.265076,-0.323242,-0.351105,-0.340363,-0.291748,-0.212677,-0.113342,-0.0039978,0.10321,0.197906,0.272583,0.318451,0.332672,0.317474,0.281525,0.233002,0.178772,0.130157,0.0891418,0.0581665,0.0374451,0.0237732,0.0125732,0.000427246,-0.015564,-0.0360107,-0.0602112,-0.0847168,-0.107269,-0.124237,-0.126221,-0.110809,-0.0750732,-0.0233459,0.0418396,0.114594,0.187134,0.25116,0.299133,0.324738,0.324158,0.298859,0.250732,0.18515,0.109192,0.0289001,-0.0472717,-0.111847,-0.159973,-0.189606,-0.200775,-0.194366,-0.174683,-0.144897,-0.110077,-0.0735779,-0.0390625,-0.00772095,0.0204163,0.0432129,0.0606384,0.0729675,0.0802002,0.0839844,0.0853882,0.0822449,0.0756836,0.0628052,0.0449524,0.0242615,0.00106812,-0.0224304,-0.0441589,-0.0650635,-0.0817261,-0.0964355,-0.107758,-0.114105,-0.112854,-0.10257,-0.0845032,-0.0628967,-0.0380554,-0.0153198,0.00588989,0.0216675,0.033783,0.0376892,0.0346985,0.0245361,0.012085,-0.00198364,-0.0144348,-0.024353,-0.0293884,-0.0306091,-0.0272217,-0.0215454,-0.0147705,-0.0085144,-0.00448608,-0.00640869,-0.0135193,-0.026886,-0.0481262,-0.0723877,-0.0950928,-0.112366,-0.123657,-0.12735,-0.120575,-0.107208,-0.0889282,-0.0688782,-0.0514832,-0.0388489,-0.0329285,-0.032074,-0.038208,-0.0513611,-0.0665588,-0.0761719,-0.0732422,-0.0538025,-0.0190125,0.0263977,0.0738831,0.117126,0.149567,0.164551,0.162079,0.13739,0.0891418,0.01828,-0.0651245,-0.153076,-0.232788,-0.291046,-0.317749,-0.308777,-0.269379,-0.200928,-0.112122,-0.0141296,0.0842896,0.176727,0.249451,0.294464,0.308777,0.296997,0.264862,0.220734,0.171509,0.123047,0.0823975,0.0498657,0.0263977,0.0102539,-0.00112915,-0.0118103,-0.0244141,-0.0411682,-0.0609741,-0.0804749,-0.0960388,-0.102783,-0.0977173,-0.0787354,-0.0450134,0.00335693,0.0650024,0.132874,0.201538,0.261139,0.30188,0.319305,0.312134,0.281525,0.229614,0.161469,0.0837708,0.00350952,-0.0702209,-0.131958,-0.174744,-0.19577,-0.196899,-0.180298,-0.152161,-0.114746,-0.0734558,-0.033783,0.00408936,0.0367126,0.0621338,0.0794373,0.0900269,0.0953064,0.0960999,0.0950928,0.0903931,0.0810547,0.0680237,0.0494385,0.0285645,0.00415039,-0.0223694,-0.0498962,-0.0756836,-0.0960083,-0.110931,-0.118958,-0.118591,-0.110229,-0.0938416,-0.0694275,-0.0391846,-0.00701904,0.0216064,0.0430603,0.0567627,0.0592346,0.0511475,0.0358887,0.0151978,-0.00830078,-0.0335388,-0.0554199,-0.0707703,-0.0761719,-0.0715637,-0.0583801,-0.0393066,-0.0201111,-0.00265503,0.0107727,0.0183716,0.0174561,0.00796509,-0.0123291,-0.0396729,-0.0709839,-0.0989685,-0.118103,-0.127594,-0.127686,-0.117767,-0.0990601,-0.076416,-0.0557251,-0.0384827,-0.0275879,-0.0250549,-0.0323792,-0.0476074,-0.0674744,-0.0880737,-0.107269,-0.119751,-0.115845,-0.0956116,-0.0587463,-0.00775146,0.0472717,0.101013,0.140991,0.162628,0.164886,0.148926,0.110779,0.0533142,-0.0195618,-0.0991821,-0.176453,-0.239807,-0.27597,-0.279358,-0.251373,-0.199738,-0.127533,-0.045166,0.036377,0.114105,0.181793,0.231079,0.256012,0.256287,0.234314,0.200073,0.15921,0.119995,0.0870056,0.0625916,0.0455017,0.033783,0.0254822,0.0198364,0.0146484,0.00564575,-0.00915527,-0.0274353,-0.0464172,-0.0625305,-0.0725403,-0.0730286,-0.0597229,-0.0298462,0.013031,0.0655518,0.124298,0.181549,0.22998,0.261688,0.274414,0.265503,0.237488,0.190002,0.130371,0.0650024,-0.00183105,-0.0613403,-0.110535,-0.142395,-0.157166,-0.155975,-0.141968,-0.115997,-0.084198,-0.0484619,-0.0123901,0.0210876,0.0496826,0.0711365,0.0861816,0.0951233,0.0986328,0.0968628,0.0906677,0.0799866,0.064209,0.0453796,0.0229187,0.00134277,-0.0216064,-0.0421448,-0.0612793,-0.0751343,-0.0839233,-0.0850525,-0.0804138,-0.070282,-0.0576782,-0.0429688,-0.0267334,-0.00979614,0.00512695,0.0163879,0.0231323,0.0262451,0.0235596,0.0163269,0.00582886,-0.00582886,-0.0198364,-0.0342407,-0.0465088,-0.0548096,-0.0579529,-0.0559998,-0.049469,-0.0405273,-0.0306702,-0.0187988,-0.0078125,0.000335693,0.00183105,-0.00177002,-0.0125732,-0.0282898,-0.0473633,-0.0667725,-0.084259,-0.0982056,-0.108185,-0.112762,-0.112274,-0.103119,-0.0857544,-0.0666809,-0.0523987,-0.0425415,-0.0365295,-0.033783,-0.0379333,-0.0472107,-0.0576172,-0.0678101,-0.0791321,-0.0918579,-0.10144,-0.0953064,-0.072876,-0.0403748,-0.00421143,0.0326538,0.0656433,0.088501,0.100464,0.10553,0.0983276,0.0742798,0.0325012,-0.0209045,-0.078949,-0.132202,-0.171173,-0.191925,-0.194214,-0.177917,-0.144226,-0.094635,-0.0349731,0.02771,0.0906067,0.145813,0.186859,0.206818,0.207184,0.193176,0.169128,0.139984,0.111237,0.0844727,0.0626221,0.0461426,0.035675,0.0312195,0.0310364,0.0289917,0.0223694,0.00970459,-0.00610352,-0.0234375,-0.0410156,-0.0536804,-0.0574036,-0.0485229,-0.0263672,0.00759888,0.0524292,0.102692,0.154633,0.198883,0.231506,0.249329,0.248047,0.22702,0.18811,0.134918,0.0759888,0.0162354,-0.0387573,-0.0846252,-0.118195,-0.136108,-0.140259,-0.129852,-0.108398,-0.0779419,-0.0443726,-0.00976562,0.0211792,0.0473633,0.0674133,0.0830994,0.0927124,0.0962524,0.0946045,0.0887146,0.0782166,0.0635986,0.0474243,0.0305481,0.0137329,-0.00338745,-0.0217285,-0.0389099,-0.0559998,-0.0684509,-0.0764771,-0.078949,-0.0774536,-0.0724487,-0.0637512,-0.0509949,-0.0332031,-0.0144958,0.00268555,0.0174561,0.0280151,0.0337524,0.0322266,0.0244751,0.0121765,-0.00259399,-0.0180969,-0.0329285,-0.0461426,-0.054657,-0.0572815,-0.0526733,-0.0462036,-0.0375671,-0.0275879,-0.0162354,-0.00933838,-0.00949097,-0.0144043,-0.023407,-0.0371399,-0.0535889,-0.0688782,-0.0796509,-0.0874939,-0.0892029,-0.0862427,-0.0803528,-0.0711975,-0.0570374,-0.0410767,-0.030304,-0.026947,-0.0276489,-0.0328369,-0.0402222,-0.0526123,-0.0617065,-0.070343,-0.0762634,-0.0839233,-0.0894165,-0.0923157,-0.092926,-0.0936279,-0.0866089,-0.0731812,-0.0535278,-0.0317993,-0.00704956,0.01828,0.0424194,0.0644531,0.0846863,0.0974426,0.0961609,0.0763855,0.0434875,0.000854492,-0.0472717,-0.0955505,-0.136047,-0.164948,-0.177002,-0.172485,-0.148438,-0.108673,-0.0558472,0.00561523,0.0683899,0.124573,0.163696,0.184021,0.187988,0.178986,0.160034,0.136597,0.110657,0.0858765,0.0644531,0.0501404,0.0431824,0.0403748,0.0391235,0.033783,0.0242004,0.00793457,-0.012085,-0.0319519,-0.0494385,-0.0611267,-0.0619202,-0.0491028,-0.0223083,0.0161133,0.0641479,0.116974,0.168976,0.213348,0.241516,0.251831,0.241028,0.211731,0.166595,0.111206,0.0497437,-0.0101318,-0.0635376,-0.101776,-0.126343,-0.133179,-0.123871,-0.100525,-0.0682373,-0.0319519,0.00527954,0.0396729,0.0673218,0.0874939,0.0991821,0.10257,0.0973816,0.0874939,0.0738831,0.0592346,0.0435486,0.0308228,0.0203857,0.0127869,0.00527954,-0.00289917,-0.0103455,-0.0179443,-0.0242004,-0.0310059,-0.0376892,-0.0449524,-0.0517578,-0.0550842,-0.0519104,-0.0426941,-0.0298157,-0.0153198,0.000152588,0.0136414,0.0231323,0.0281982,0.0254517,0.0167236,0.00210571,-0.0153198,-0.0360718,-0.0559998,-0.0694885,-0.0743713,-0.0708923,-0.0595703,-0.0420837,-0.020813,0.000335693,0.0178833,0.0298462,0.0329285,0.0232239,0.0032959,-0.0229187,-0.0523987,-0.0823059,-0.107269,-0.123535,-0.131134,-0.128937,-0.116058,-0.0951233,-0.0709229,-0.0445251,-0.0206909,-0.00604248,-0.00317383,-0.00976562,-0.0198364,-0.0332642,-0.0474854,-0.0588989,-0.0697021,-0.0820312,-0.0947571,-0.0982056,-0.097168,-0.0971375,-0.100037,-0.104553,-0.104736,-0.0997009,-0.0871582,-0.0687866,-0.0431213,-0.0088501,0.030304,0.0678101,0.0991211,0.123169,0.13092,0.116089,0.0823669,0.0340576,-0.0285645,-0.0973816,-0.160461,-0.207611,-0.23349,-0.235168,-0.21225,-0.166168,-0.0989075,-0.0167236,0.0674744,0.141174,0.197113,0.23111,0.242065,0.231659,0.203735,0.165588,0.120911,0.0773315,0.0395508,0.0139465,0.00149536,-0.00280762,-0.00253296,0.00183105,0.00491333,0.00360107,-0.00442505,-0.0159607,-0.0279846,-0.0367126,-0.0397339,-0.0317383,-0.0111694,0.0238647,0.070282,0.122955,0.175659,0.223511,0.257599,0.273376,0.266815,0.240021,0.191711,0.129852,0.0595093,-0.00894165,-0.0694275,-0.115387,-0.143005,-0.150635,-0.13797,-0.108917,-0.0671997,-0.0196838,0.0310059,0.0759583,0.110596,0.131622,0.140625,0.138855,0.126678,0.107056,0.0844727,0.0586548,0.0352478,0.0161133,0.00323486,-0.00247192,-0.00521851,-0.00512695,-0.00372314,-0.00231934,-0.0017395,-0.00457764,-0.0107117,-0.0206299,-0.0312195,-0.0400085,-0.0487366,-0.0529785,-0.0516968,-0.0453186,-0.0349121,-0.0213928,-0.00653076,0.00704956,0.0169678,0.0216064,0.020752,0.0149231,0.00317383,-0.0130005,-0.0278625,-0.0383301,-0.0443115,-0.0460205,-0.0419312,-0.0313721,-0.0202637,-0.00921631,-0.000915527,0.00357056,-0.00259399,-0.0171509,-0.0386963,-0.0645142,-0.0906982,-0.113617,-0.129791,-0.135498,-0.129913,-0.112854,-0.088562,-0.0576172,-0.0245667,0.00448608,0.026886,0.0376892,0.0363159,0.0239258,0.00646973,-0.02005,-0.0515747,-0.0805359,-0.103424,-0.121826,-0.133179,-0.132751,-0.125763,-0.121277,-0.118042,-0.116577,-0.117706,-0.121643,-0.123901,-0.125702,-0.122192,-0.10553,-0.0744324,-0.0372314,0.00909424,0.0645142,0.120087,0.164001,0.193542,0.20459,0.187531,0.13739,0.0665588,-0.0191956,-0.11145,-0.201141,-0.274353,-0.32373,-0.339783,-0.318756,-0.264923,-0.182465,-0.0799866,0.0320129,0.138458,0.226013,0.287933,0.316345,0.312927,0.281311,0.228149,0.164703,0.0981445,0.0370178,-0.0120239,-0.0405273,-0.0495911,-0.0428467,-0.0279236,-0.00793457,0.00949097,0.0201721,0.0222168,0.0168762,0.00421143,-0.00888062,-0.0187073,-0.0194702,-0.00744629,0.0190125,0.0593872,0.106781,0.158691,0.207397,0.242615,0.26059,0.258331,0.235016,0.192261,0.134857,0.0711975,0.00723267,-0.0464172,-0.0863037,-0.10553,-0.105438,-0.086731,-0.0545349,-0.0155334,0.0254517,0.0643616,0.0935059,0.108978,0.111847,0.102631,0.0847778,0.0618286,0.0387573,0.0205383,0.00866699,0.00500488,0.00976562,0.0229492,0.0404663,0.0584717,0.0743408,0.0847168,0.0869446,0.0805664,0.0629578,0.0379028,0.00747681,-0.0242615,-0.0536804,-0.0777893,-0.0940552,-0.10144,-0.0994873,-0.0889893,-0.0704346,-0.0484009,-0.0248413,-0.00311279,0.0149841,0.0281982,0.0361633,0.0369263,0.033844,0.0273132,0.0188599,0.0111694,0.00286865,-0.00421143,-0.00985718,-0.0149841,-0.0220947,-0.0316467,-0.0413818,-0.0563354,-0.0749817,-0.0943909,-0.111694,-0.126434,-0.13501,-0.135284,-0.126709,-0.109955,-0.0839233,-0.0527649,-0.0211182,0.00894165,0.0327148,0.0468445,0.0476074,0.0377808,0.0193481,-0.00598145,-0.0374451,-0.0682983,-0.0961609,-0.115601,-0.126282,-0.130127,-0.127319,-0.120728,-0.110291,-0.100677,-0.0932312,-0.0880127,-0.0877075,-0.0940552,-0.101288,-0.106506,-0.110992,-0.113251,-0.106934,-0.0939941,-0.0755005,-0.0481262,-0.0134277,0.0203247,0.0506592,0.0808105,0.104126,0.113831,0.112488,0.0992737,0.0706482,0.0273132,-0.0218201,-0.0755005,-0.130768,-0.18045,-0.216125,-0.236359,-0.235809,-0.213074,-0.17157,-0.113617,-0.0442505,0.0326233,0.10672,0.170654,0.218018,0.243683,0.24884,0.233978,0.201599,0.157227,0.107361,0.0585327,0.0164795,-0.0148315,-0.032074,-0.038208,-0.0343933,-0.0231323,-0.00878906,0.00335693,0.0127869,0.016449,0.0152588,0.00942993,0.00512695,0.00408936,0.0093689,0.0244751,0.0493774,0.0823975,0.121368,0.163269,0.198883,0.226044,0.23996,0.237762,0.21759,0.182831,0.137268,0.0830078,0.0296021,-0.018158,-0.0542908,-0.0784302,-0.085907,-0.0784912,-0.059021,-0.0305481,0.00350952,0.0369873,0.0658264,0.087738,0.101654,0.106384,0.104034,0.094696,0.0826721,0.070282,0.0585327,0.0517578,0.0507202,0.0529785,0.0576782,0.0644531,0.0699158,0.0722351,0.0683594,0.0593567,0.0422974,0.0209045,-0.00518799,-0.0317078,-0.0570679,-0.0783081,-0.0927124,-0.0993347,-0.0970764,-0.0864563,-0.0690002,-0.0471191,-0.0211182,0.00402832,0.0276489,0.0446167,0.0570679,0.0621033,0.0611877,0.0534668,0.040802,0.0236206,0.00561523,-0.0131531,-0.0308838,-0.047699,-0.0628967,-0.0757751,-0.0865479,-0.0953064,-0.102295,-0.106293,-0.107269,-0.105927,-0.10202,-0.0929871,-0.0813293,-0.0665588,-0.0509338,-0.0334167,-0.0176697,-0.00408936,0.00561523,0.0109558,0.0104065,0.00494385,-0.00582886,-0.0185852,-0.0341797,-0.0496521,-0.0654907,-0.0778809,-0.0887756,-0.0964661,-0.101807,-0.10376,-0.101654,-0.0991211,-0.0950317,-0.0919495,-0.0870056,-0.0808411,-0.0742798,-0.067688,-0.0602722,-0.0532532,-0.0472717,-0.0440369,-0.0396118,-0.0377808,-0.0379028,-0.0401001,-0.0447388,-0.0501709,-0.0518494,-0.0473633,-0.0401001,-0.0298462,-0.0119019,0.0102539,0.0289307,0.0450745,0.0604248,0.0690918,0.063324,0.0443115,0.0180969,-0.0167542,-0.0571289,-0.0974426,-0.130127,-0.152924,-0.159821,-0.149902,-0.122345,-0.0810242,-0.0260925,0.0341187,0.0921631,0.142609,0.179688,0.199097,0.198395,0.179596,0.146179,0.102692,0.0561523,0.0108337,-0.0257568,-0.0502319,-0.0619202,-0.0610046,-0.0494385,-0.0284729,-0.00286865,0.0205994,0.0400391,0.0543823,0.0624084,0.0617676,0.0573425,0.0514221,0.0484009,0.04599,0.0478516,0.0537415,0.0648499,0.0782166,0.0906067,0.100311,0.104675,0.101776,0.0930176,0.0767517,0.0560608,0.0333252,0.0109863,-0.00689697,-0.0211792,-0.027771,-0.0261841,-0.0190735,-0.00723267,0.00872803,0.0244751,0.0389099,0.050293,0.0585327,0.0614319,0.0610046,0.0572815,0.0522766,0.0455933,0.0390625,0.033844,0.0310974,0.0290527,0.027771,0.0256958,0.0240784,0.0215149,0.0183411,0.0140686,0.00842285,0.00344849,-0.0022583,-0.00512695,-0.00717163,-0.00726318,-0.00613403,-0.0039978,-0.000640869,0.00259399,0.00463867,0.00592041,0.00604248,0.00485229,0.00302124,0.00146484,0.00012207,0.000152588,-6.10352e-05,0.00140381,0.00338745,0.00430298,0.00485229,0.00430298,0.00183105,-0.00265503,-0.0078125,-0.0135193,-0.0195007,-0.0254517,-0.0296326,-0.0310059,-0.0296021,-0.0268555,-0.0220947,-0.0146484,-0.00738525,-0.000640869,0.00518799,0.00830078,0.00991821,0.00793457,0.00427246,-0.0010376,-0.00674438,-0.013092,-0.0180969,-0.0216675,-0.0244141,-0.024353,-0.0242615,-0.0220032,-0.0191956,-0.0168152,-0.0144348,-0.0125732,-0.0117493,-0.0111694,-0.011261,-0.0118713,-0.0124512,-0.0128174,-0.0135193,-0.0132141,-0.013031,-0.0123291,-0.0115356,-0.0107117,-0.0100708,-0.00976562,-0.00985718,-0.0100708,-0.0116882,-0.0130005,-0.0153198,-0.0177917,-0.0204773,-0.0232849,-0.025177,-0.0264587,-0.0270996,-0.0263062,-0.0242004,-0.0217896,-0.018158,-0.0154724,-0.0116882,-0.00894165,-0.00680542,-0.00564575,-0.00604248,-0.00717163,-0.00942993,-0.0129395,-0.0160217,-0.0204163,-0.0236206,-0.0266113,-0.0290527,-0.0304565,-0.0306702,-0.0317383,-0.0314331,-0.0312195,-0.0308838,-0.0306091,-0.0301819,-0.0294189,-0.0287781,-0.0264587,-0.0240784,-0.020752,-0.0175171,-0.0139465,-0.0108948,-0.00872803,-0.00732422,-0.00765991,-0.00872803,-0.0116882,-0.0148315,-0.0184326,-0.0222473,-0.0249023,-0.0267334,-0.0274353,-0.0258179,-0.0236206,-0.0195007,-0.0153503,-0.0112,-0.00683594,-0.00344849,-0.00134277,0.000213623,0.00012207,-0.000701904,-0.00216675,-0.00268555,-0.00448608,-0.00378418,-0.00430298,-0.00210571,-0.000152588,0.00286865,0.00549316,0.00888062,0.0106812,0.0125122,0.0133667,0.013916,0.0137329,0.0124512,0.0119629,0.0108948,0.0101318,0.0104675,0.0102844,0.0121765,0.0133057,0.0151062,0.0177917,0.0191345,0.0211182,0.0223694,0.0232849,0.022644,0.0223083,0.020874,0.0187988,0.0166016,0.0144043,0.0126648,0.0111694,0.0108948,0.00985718,0.0106812,0.0120239,0.0133057,0.0157471,0.0176697,0.0203247,0.0222168,0.0236206,0.0247498,0.0252686,0.0241394,0.022644,0.020752,0.0175781,0.0149231,0.0121765,0.0093689,0.00747681,0.00576782,0.0045166,0.00421143,0.00494385,0.00634766,0.00775146,0.0101318,0.0122375,0.0148315,0.0172424,0.0197144,0.0215149,0.0220947,0.0227051,0.0217285,0.0206299,0.0189819,0.017395,0.0154724,0.0137024,0.0127258,0.0117493,0.0125122,0.0137329,0.0127869,0.0134277,0.0141907,0.0161743,0.0169678,0.0186462,0.0192871,0.0188599,0.0194702,0.0192871,0.0184326,0.0171814,0.0154724,0.013855,0.0134888,0.0123901,0.0122375,0.0114136,0.0116272,0.0116882,0.0114136,0.0121765,0.0118713,0.0130005,0.013031,0.0136414,0.013855,0.0135803,0.0127869,0.0125732,0.0114746,0.0118103,0.0108337,0.00894165,0.00772095,0.0062561,0.00448608,0.00323486,0.00189209,-0.00012207,-0.00241089,-0.00357056,-0.00491333,-0.00500488,-0.00576782,-0.00512695,-0.00427246,-0.0038147,-0.00241089,-0.0022583,-0.0010376,-0.00216675,-0.00274658,-0.00430298,-0.00646973,-0.00878906,-0.0107117,-0.0129395,-0.0141296,-0.0146484,-0.0154724,-0.0149841,-0.0146484,-0.0142822,-0.0137329,-0.0137024,-0.0144043,-0.015564,-0.0170288,-0.0190125,-0.020752,-0.0222168,-0.022583,-0.0218811,-0.0219421,-0.0204163,-0.0197144,-0.0169373,-0.0151367,-0.0133667,-0.0135803,-0.015564,-0.0185852,-0.0223083,-0.0270081,-0.0315857,-0.0365906,-0.0405273,-0.0426331,-0.0431824,-0.0417175,-0.0378418,-0.0334778,-0.026947,-0.0211792,-0.0161133,-0.0117493,-0.00964355,-0.00933838,-0.0110474,-0.0145569,-0.0194092,-0.0258789,-0.0318604,-0.0372925,-0.0412292,-0.0431213,-0.0429993,-0.0410767,-0.0377808,-0.0330505,-0.0279846,-0.0231628,-0.0189819,-0.0162659,-0.0149231,-0.0154114,-0.0169373,-0.0187683,-0.0211182,-0.0237122,-0.025238,-0.0252686,-0.0244751,-0.0227051,-0.0192566,-0.0151062,-0.0102844,-0.0062561,-0.00204468,0.000335693,0.00167847,0.00189209,0.000366211,-0.00161743,-0.00457764,-0.00787354,-0.0102844,-0.0118103,-0.0130005,-0.0117493,-0.00970459,-0.00588989,-0.000854492,0.00393677,0.0101929,0.0144348,0.0192566,0.0219421,0.0233459,0.0236206,0.0219421,0.0195007,0.015625,0.0122986,0.00814819,0.00543213,0.00430298,0.00323486,0.00500488,0.00683594,0.0107727,0.0142212,0.0187988,0.0228577,0.0256958,0.0275879,0.0281372,0.0274353,0.0260315,0.0236511,0.0213013,0.0189209,0.016449,0.0153198,0.0140686,0.0140076,0.0157471,0.016449,0.0190735,0.020874,0.0222168,0.0239868,0.0246277,0.0247803,0.0256042,0.0249023,0.0247803,0.0239258,0.0233459,0.022522,0.0224304,0.0223083,0.0223083,0.0224304,0.0220947,0.0213928,0.0205994,0.0193481,0.01828,0.0174561,0.0161743,0.0162659,0.015686,0.0166016,0.0177917,0.0191956,0.0210266,0.0244751,0.0253296,0.0232849,0.0198364,0.0193481,0.0195618,0.0192566,0.0180664,0.0144043,0.0116272,0.00970459,0.0109863,0.0118103,0.012085,0.0119019,0.0119019,0.0115967,0.0116882,0.011322,0.00970459,0.00796509,0.00592041,0.00357056,0.00195312,0.00106812,0.00106812,0.0017395,0.00350952,0.00512695,0.00695801,0.00872803,0.0100403,0.0113831,0.0119019,0.0109863,0.00985718,0.00646973,0.00311279,-0.000640869,-0.00393677,-0.00656128,-0.00857544,-0.0101929,-0.0102844,-0.00921631,-0.00704956,-0.00494385,-0.00289917,-0.000915527,0.00119019,0.0017395,-0.000549316,-0.00280762,-0.00479126,-0.00717163,-0.00808716,-0.00823975,-0.00906372,-0.00915527,-0.00814819,-0.00613403,-0.00448608,-0.00216675,0,6.10352e-05,0.00125122,0.000579834,0.000366211,-0.00219727,-0.00506592,-0.00915527,-0.013031,-0.0163269,-0.0185852,-0.0205383,-0.0220032,-0.0221558,-0.0216675,-0.0204773,-0.0180969,-0.0161743,-0.0125732,-0.0102539,-0.00653076,-0.00387573,-0.0015564,-0.0010376,-0.000579834,-0.00134277,-0.00323486,-0.00549316,-0.00872803,-0.0127869,-0.016449,-0.020874,-0.0247803,-0.027771,-0.0307617,-0.0324402,-0.0332031,-0.0327759,-0.0307617,-0.0279846,-0.025116,-0.0209045,-0.0168152,-0.0126038,-0.00979614,-0.00680542,-0.00564575,-0.00640869,-0.0078125,-0.011322,-0.0136414,-0.0172424,-0.0198364,-0.0223083,-0.0234985,-0.0242615,-0.0242004,-0.0232239,-0.0217285,-0.0209045,-0.0198364,-0.0198364,-0.020752,-0.0220947,-0.0237732,-0.0255432,-0.0257568,-0.0267334,-0.0253906,-0.0235596,-0.0205383,-0.016449,-0.0121765,-0.00817871,-0.00469971,-0.00286865,-0.00149536,-0.00289917,-0.00491333,-0.00878906,-0.013031,-0.0177917,-0.0220947,-0.0263062,-0.0278015,-0.0289001,-0.0273132,-0.0256653,-0.0218811,-0.0180054,-0.0139465,-0.00970459,-0.00540161,-0.00241089,0.00125122,0.00274658,0.00457764,0.00521851,0.00619507,0.00570679,0.00613403,0.00518799,0.00415039,0.00241089,0.000488281,-0.00112915,-0.0039978,-0.00588989,-0.00765991,-0.00906372,-0.00949097,-0.00872803,-0.00668335,-0.00402832,-0.00012207,0.0045166,0.00878906,0.0132446,0.0169373,0.0195618,0.0215149,0.0220947,0.0220337,0.020813,0.0187988,0.0171814,0.015686,0.0143433,0.0135803,0.0134277,0.0128174,0.0135193,0.0132446,0.0134277,0.0137329,0.013092,0.0130005,0.0132141,0.0135193,0.0149231,0.0162354,0.0173035,0.0187073,0.0205383,0.0228577,0.0248413,0.0271606,0.0278625,0.0280762,0.0276489,0.0270691,0.0258789,0.0247803,0.0232849,0.0227966,0.0218811,0.022522,0.0230103,0.0240784,0.0246277,0.0247498,0.0243225,0.022644,0.0220947,0.0197754,0.0185547,0.0167236,0.015686,0.0154724,0.015686,0.0173035,0.0196838,0.0224304,0.0249023,0.027771,0.0284729,0.0293274,0.0287781,0.0272827,0.0252686,0.0230103,0.0204773,0.0184326,0.0168152,0.0161743,0.0167236,0.0164795,0.017395,0.0176392,0.0176392,0.0170898,0.015625,0.0135803,0.0108948,0.00866699,0.00613403,0.00518799,0.00494385,0.00588989,0.00793457,0.0103455,0.013031,0.0159607,0.0178528,0.0184326,0.0187988,0.0168762,0.0147095,0.0108948,0.00759888,0.00265503,-0.000366211,-0.00427246,-0.0071106,-0.00842285,-0.0101929,-0.0102844,-0.0104065,-0.00976562,-0.00866699,-0.00793457,-0.00653076,-0.00561523,-0.00408936,-0.00378418,-0.00286865,-0.00247192,-0.00253296,-0.00302124,-0.00360107,-0.00521851,-0.0062561,-0.00796509,-0.0102844,-0.0116882,-0.0145569,-0.0155334,-0.0178528,-0.0187683,-0.0198364,-0.0204163,-0.0201111,-0.019928,-0.0194092,-0.0183411,-0.0173645,-0.0165405,-0.0149841,-0.0142822,-0.0134888,-0.0132141,-0.013092,-0.0135193,-0.013916,-0.0148621,-0.0158997,-0.0173035,-0.018219,-0.0190735,-0.019928,-0.0209045,-0.0204163,-0.0210876,-0.0213928,-0.0211182,-0.0209656,-0.0204163,-0.0202026,-0.0191956,-0.0185547,-0.0176392,-0.0167542,-0.0159607,-0.0149841,-0.0148315,-0.0145569,-0.0144348,-0.0152588,-0.015625,-0.0168762,-0.018158,-0.0194702,-0.0206299,-0.0212402,-0.0223083,-0.0215454,-0.0210266,-0.0198364,-0.0179443,-0.0157471,-0.013916,-0.0109863,-0.00979614,-0.00845337,-0.00775146,-0.00753784,-0.00857544,-0.00888062,-0.0103455,-0.0113831,-0.0123291,-0.0127869,-0.0132446,-0.0127869,-0.0125122,-0.0116882,-0.0111694,-0.0108337,-0.0108948,-0.0108337,-0.0110474,-0.0108948,-0.0106812,-0.00958252,-0.00863647,-0.00662231,-0.00402832,-0.00189209,0.000549316,0.00177002,0.00296021,0.0022583,0.000854492,-0.00149536,-0.00448608,-0.00738525,-0.00985718,-0.0118713,-0.0126648,-0.0114136,-0.00964355,-0.00576782,-0.00125122,0.00360107,0.00765991,0.0116882,0.0131531,0.0140686,0.0121765,0.00970459,0.00518799,0.00125122,-0.0038147,-0.00732422,-0.009552,-0.0107117,-0.00979614,-0.0071106,-0.00366211,0.000854492,0.00518799,0.00933838,0.0122986,0.0141907,0.0142212,0.0135193,0.0107727,0.00796509,0.00448608,0.0015564,-0.000762939,-0.00167847,-0.00268555,-0.000762939,-0.000152588,0.00268555,0.0038147,0.00576782,0.00610352,0.00646973,0.00570679,0.00494385,0.00366211,0.00311279,0.00247192,0.00289917,0.0045166,0.00564575,0.00823975,0.0107727,0.0125122,0.0141907,0.0146179,0.0141296,0.0122986,0.0102539,0.00683594,0.00393677,0.00146484,-0.00012207,-0.00146484,-0.000335693,0.00128174,0.0038147,0.00753784,0.0112,0.0143433,0.0176697,0.0194702,0.0198975,0.0195618,0.01828,0.015625,0.013092,0.0108337,0.00863647,0.00704956,0.00598145,0.00619507,0.00668335,0.00772095,0.00915527,0.0102539,0.011322,0.011261,0.0116882,0.0110474,0.00991821,0.0093689,0.00836182,0.00817871,0.00830078,0.00857544,0.0100403,0.0112,0.013031,0.0142212,0.0153503,0.0158997,0.0149231,0.013855,0.0117493,0.00915527,0.0062561,0.00415039,0.00167847,0.000488281,0.000335693,0.0010376,0.00265503,0.0045166,0.00723267,0.00985718,0.0115967,0.0137329,0.0142822,0.013855,0.0127258,0.0104065,0.00772095,0.00436401,0.00177002,-0.00134277,-0.00274658,-0.00457764,-0.00448608,-0.00448608,-0.00311279,-0.00146484,0.000915527,0.00265503,0.00485229,0.00634766,0.00717163,0.00765991,0.0078125,0.00656128,0.00549316,0.00387573,0.0022583,0.000579834,-0.000427246,-0.00161743,-0.00183105,-0.00198364,-0.00128174,-0.000488281,0.000640869,0.00177002,0.00241089,0.00323486,0.00311279,0.00280762,0.00198364,0.000793457,-0.000915527,-0.00268555,-0.00421143,-0.0055542,-0.00576782,-0.00668335,-0.00494385,-0.00473022,-0.00238037,-0.000915527,0.000793457,0.00268555,0.00274658,0.00311279,0.00268555,0.000640869,-0.0010376,-0.00408936,-0.0062561,-0.00949097,-0.011261,-0.0127258,-0.0130005,-0.0132141,-0.0121155,-0.0106201,-0.0088501,-0.00732422,-0.00521851,-0.00436401,-0.00344849,-0.00317383,-0.00311279,-0.0038147,-0.00463867,-0.00506592,-0.00646973,-0.00726318,-0.00747681,-0.00823975,-0.00866699,-0.00823975,-0.00921631,-0.00857544,-0.00915527,-0.00894165,-0.0093689,-0.00933838,-0.009552,-0.00958252,-0.00997925,-0.00942993,-0.00915527,-0.00842285,-0.00775146,-0.00653076,-0.00646973,-0.00485229,-0.00469971,-0.00408936,-0.00335693,-0.00378418,-0.00338745,-0.00393677,-0.00393677,-0.00494385,-0.00479126,-0.00534058,-0.00518799,-0.00491333,-0.00479126,-0.00415039,-0.0039978,-0.00344849,-0.00280762,-0.00302124,-0.00247192,-0.00274658,-0.00286865,-0.00286865,-0.00311279,-0.00265503,-0.00274658,-0.00161743,-0.00112915,-0.00012207,0.000640869,0.00112915,0.00128174,0.00106812,-0.000274658,-0.00106812,-0.00311279,-0.00442505,-0.00631714,-0.00753784,-0.00836182,-0.00787354,-0.00732422,-0.00576782,-0.00360107,-0.00146484,0.000488281,0.00259399,0.00338745,0.00415039,0.00323486,0.00247192,0.000213623,-0.00195312,-0.00393677,-0.00598145,-0.00717163,-0.00787354,-0.00753784,-0.00689697,-0.00479126,-0.00387573,-0.000976562,6.10352e-05,0.0015564,0.00210571,0.00219727,0.00167847,0.000854492,-0.000427246,-0.00140381,-0.00268555,-0.00289917,-0.00344849,-0.00317383,-0.00247192,-0.00128174,-0.000427246,0.00106812,0.00149536,0.00265503,0.00253296,0.00247192,0.00195312,0.000976562,-0.000366211,-0.00128174,-0.00296021,-0.0032959,-0.00436401,-0.00485229,-0.00469971,-0.00500488,-0.00485229,-0.00372314,-0.00415039,-0.00265503,-0.00280762,-0.00210571,-0.00195312,-0.00112915,-0.00106812,0.00012207,-0.000366211,0.000976562,0.000793457,0.00140381,0.00119019,0.000762939,0.000213623,-0.000366211,-0.00189209,-0.00289917,-0.00408936,-0.00521851,-0.00588989,-0.00656128,-0.00689697,-0.00680542,-0.00656128,-0.00634766,-0.00582886,-0.00598145,-0.00549316,-0.00564575,-0.00604248,-0.00604248,-0.00619507,-0.00561523,-0.00564575,-0.00408936,-0.00323486,-0.00167847,0.000152588,0.00161743,0.00274658,0.00408936,0.00408936,0.00360107,0.00308228,0.00106812,-0.000488281,-0.00231934,-0.00408936,-0.0055542,-0.00646973,-0.0071106,-0.00674438,-0.00592041,-0.00494385,-0.00323486,-0.00119019,6.10352e-05,0.0015564,0.00286865,0.00360107,0.00408936,0.00469971,0.00436401,0.00463867,0.00402832,0.00415039,0.00357056,0.00378418,0.00280762,0.00289917,0.00183105,0.00112915,0.000274658,-0.00112915,-0.0022583,-0.0032959,-0.00387573,-0.00457764,-0.00408936,-0.00350952,-0.00204468,-0.000762939,0.00125122,0.00274658,0.00402832,0.00521851,0.00500488,0.00491333,0.00448608,0.00317383,0.00219727,0.00128174,0.000335693,0.000213623,0.000640869,0.000488281,0.00195312,0.00247192,0.00338745,0.0038147,0.0038147,0.00350952,0.00289917,0.0017395,0.000915527,0,-0.000762939,-0.000762939,0.000366211,0.000976562,0.00344849,0.00527954,0.00775146,0.00985718,0.011261,0.0123291,0.0122986,0.0118103,0.0106812,0.00866699,0.00726318,0.00518799,0.00357056,0.00302124,0.00238037,0.0032959,0.0038147,0.00564575,0.00726318,0.0088501,0.0102844,0.0111084,0.0121155,0.0114746,0.0110474,0.00997925,0.00894165,0.00753784,0.00662231,0.00598145,0.00588989,0.00653076,0.00747681,0.00872803,0.0102844,0.0121155,0.0135193,0.0144958,0.0149231,0.0147095,0.0139465,0.0119019,0.0100708,0.00772095,0.00527954,0.00286865,0.00140381,0.00012207,-0.000701904,0.000274658,0.000762939,0.0022583,0.00448608,0.00631714,0.00802612,0.00933838,0.00976562,0.0102844,0.00942993,0.00888062,0.00689697,0.00598145,0.00448608,0.00378418,0.00308228,0.00323486,0.00350952,0.00436401,0.00506592,0.00613403,0.0062561,0.00619507,0.00561523,0.00421143,0.00280762,0.0010376,-0.000701904,-0.00238037,-0.0032959,-0.00366211,-0.00357056,-0.00259399,-0.000976562,0.000854492,0.00296021,0.00469971,0.00640869,0.00695801,0.00723267,0.00668335,0.00521851,0.00311279,0.00106812,-0.00195312,-0.00344849,-0.00598145,-0.00726318,-0.00802612,-0.00842285,-0.00787354,-0.0071106,-0.00582886,-0.00494385,-0.00378418,-0.00259399,-0.00289917,-0.00289917,-0.00323486,-0.0045166,-0.00561523,-0.00668335,-0.00732422,-0.00814819,-0.00878906,-0.00823975,-0.00830078,-0.00747681,-0.00726318,-0.00668335,-0.00634766,-0.00726318,-0.00674438,-0.00823975,-0.0088501,-0.0102539,-0.0111694,-0.0119629,-0.0126648,-0.0125122,-0.0125732,-0.0116272,-0.0111084,-0.0104675,-0.0088501,-0.00888062,-0.00802612,-0.00823975,-0.00863647,-0.00888062,-0.00964355,-0.0106812,-0.010498,-0.0114136,-0.0108337,-0.0109558,-0.00985718,-0.00927734,-0.00842285,-0.00802612,-0.00772095,-0.00759888,-0.00842285,-0.00894165,-0.0104065,-0.0109558,-0.0123901,-0.0128174,-0.013031,-0.0123901,-0.0115967,-0.0106201,-0.00857544,-0.00747681,-0.00543213,-0.00457764,-0.00335693,-0.00308228,-0.00302124,-0.00311279,-0.00436401,-0.00473022,-0.00564575,-0.00662231,-0.00656128,-0.00683594,-0.00680542,-0.00640869,-0.00598145,-0.00549316,-0.00457764,-0.00421143,-0.00372314,-0.00338745,-0.00338745,-0.00335693,-0.00360107,-0.00311279,-0.00360107,-0.0032959,-0.00265503,-0.00241089,-0.00112915,-0.000579834,0.000366211,0.00167847,0.00204468,0.00302124,0.00302124,0.0039978,0.0032959,0.00308228,0.00286865,0.00216675,0.0017395,0.00161743,0.00134277,0.0015564,0.0017395,0.00268555,0.00247192,0.00317383,0.00393677,0.00393677,0.00457764,0.00457764,0.00430298,0.00463867,0.00463867,0.00430298,0.0045166,0.00393677,0.00500488,0.00402832,0.00479126,0.00491333,0.00479126,0.00543213,0.00527954,0.00582886,0.00588989,0.00613403,0.0062561,0.00598145,0.00576782,0.00543213,0.00442505,0.00421143,0.00311279,0.00274658,0.00210571,0.00198364,0.00204468,0.0022583,0.00344849,0.00344849,0.00457764,0.00543213,0.00561523,0.00604248,0.00582886,0.00534058,0.00485229,0.00378418,0.00302124,0.00183105,0.00119019,0.000854492,0.000762939,0.000762939,0.00149536,0.00219727,0.00231934,0.00344849,0.00378418,0.00357056,0.00387573,0.00317383,0.00210571,0.0017395,0.000427246,-0.000152588,-0.00106812,-0.00149536,-0.00177002,-0.00106812,-0.0010376,-0.00012207,0.000549316,0.00189209,0.00183105,0.00268555,0.00238037,0.0022583,0.0015564,0.000915527,6.10352e-05,-0.000915527,-0.0017395,-0.0022583,-0.00286865,-0.00253296,-0.00280762,-0.00274658,-0.0017395,-0.00167847,-0.000976562,-0.000488281,-0.000579834,-0.000274658,-0.000366211,-0.000915527,-0.00134277,-0.00161743,-0.00280762,-0.0032959,-0.00357056,-0.00421143,-0.00387573,-0.00421143,-0.00323486,-0.00323486,-0.00195312,-0.00204468,-0.000579834,-0.00106812,-0.000274658,-0.000762939,-0.000793457,-0.00128174,-0.0017395,-0.00216675,-0.00204468,-0.00265503,-0.00204468,-0.00204468,-0.00112915,-0.000366211,0.00012207,0.000427246,0.000976562,0.000579834,0.000213623,0.00012207,-0.00106812,-0.00177002,-0.00274658,-0.00311279,-0.00366211,-0.00366211,-0.00289917,-0.00259399,-0.000854492,-0.000213623,0.00183105,0.00241089,0.00393677,0.00408936,0.00500488,0.00408936,0.00469971,0.00302124,0.00247192,0.0010376,0.000274658,-0.000640869,-0.00177002,-0.00149536,-0.00231934,-0.00198364,-0.00177002,-0.00140381,-0.000976562,-0.000549316,-0.000274658,-0.000152588,0.000213623,0.000152588,0.000335693,0.000335693,0.000762939,0.000793457,0.00140381,0.00216675,0.00286865,0.00378418,0.00442505,0.00491333,0.00473022,0.00436401,0.00344849,0.00204468,0.000762939,-0.00140381,-0.00286865,-0.00436401,-0.00564575,-0.00619507,-0.00588989,-0.00521851,-0.00360107,-0.00177002,0.000213623,0.0022583,0.00344849,0.00506592,0.00494385,0.00518799,0.0039978,0.00289917,0.0010376,-0.000488281,-0.00167847,-0.00311279,-0.00357056,-0.00335693,-0.00335693,-0.00204468,-0.00177002,-6.10352e-05,-0.00012207,0.000488281,0.000793457,0,-0.000427246,-0.000854492,-0.0017395,-0.00241089,-0.00268555,-0.00241089,-0.00198364,-0.00140381,-0.000427246,0.000701904,0.00125122,0.00189209,0.00198364,0.00183105,0.00106812,0.000335693,-0.00112915,-0.00204468,-0.00338745,-0.00421143,-0.00527954,-0.00506592,-0.00527954,-0.00494385,-0.00402832,-0.00350952,-0.00259399,-0.00195312,-0.00112915,-0.000701904,0,-0.000488281,0.000335693,-0.000488281,-0.000427246,-0.000488281,-0.00125122,-0.000976562,-0.00119019,-0.00146484,-0.00128174,-0.00134277,-0.00146484,-0.00146484,-0.00128174,-0.00146484,-0.00134277,-0.00119019,-0.00149536,-0.00112915,-0.000793457,-0.000793457,-0.000213623,-6.10352e-05,0.000366211,0.000793457,0.00128174,0.00177002,0.00204468,0.00216675,0.00195312,0.00183105,0.00134277,0.00106812,0.000274658,0.000274658,-0.000549316,-0.0010376,-0.000793457,-0.00134277,-0.000854492,-0.000793457,0.00012207,0.000213623,0.0015564,0.00161743,0.00247192,0.00280762,0.00311279,0.00387573,0.00350952,0.0038147,0.00402832,0.00360107,0.00338745,0.00296021,0.00259399,0.00183105,0.000701904,-0.00012207,-0.00140381,-0.00195312,-0.00317383,-0.00323486,-0.00378418,-0.00311279,-0.00210571,-0.00134277,0.000854492,0.00238037,0.00378418,0.00570679,0.00613403,0.00674438,0.00680542,0.00564575,0.00430298,0.00280762,0.000335693,-0.00125122,-0.00308228,-0.00463867,-0.00479126,-0.00540161,-0.00436401,-0.0038147,-0.00204468,-0.000854492,0.000976562,0.00198364,0.00265503,0.00335693,0.00308228,0.00253296,0.00167847,0.000854492,-0.000335693,-0.000488281,-0.00140381,-0.00177002,-0.00112915,-0.00112915,-0.000488281,0,0.0010376,0.000762939,0.00140381,0.000854492,0.000915527,-0.00012207,-6.10352e-05,-0.00119019,-0.00140381,-0.00195312,-0.00210571,-0.00198364,-0.00204468,-0.00128174,-0.00128174,-0.000549316,-6.10352e-05,0.00012207,0.000213623,0,-0.000335693,-0.000976562,-0.00125122,-0.00241089,-0.00280762,-0.0032959,-0.00421143,-0.00360107,-0.00408936,-0.00335693,-0.00308228,-0.00231934,-0.00167847,-0.000701904,-0.000274658,0,0.000488281,0.000427246,-0.00012207,-0.000427246,-0.00146484,-0.00195312,-0.00308228,-0.00311279,-0.00427246,-0.00430298,-0.00415039,-0.00402832,-0.00378418,-0.00296021,-0.00216675,-0.00161743,-0.000366211,-0.000488281,0.000274658,0.000213623,0.00012207,-0.000640869,-0.000488281,-0.00149536,-0.00198364,-0.00195312,-0.00210571,-0.00167847,-0.00161743,-0.000854492,-0.000640869,-0.000335693,-0.000274658,-0.000274658,-0.000579834,-0.00106812,-0.000854492,-0.00210571,-0.00119019,-0.0017395,-0.00112915,-0.00012207,6.10352e-05,0.00125122,0.00189209,0.00210571,0.00253296,0.0022583,0.00183105,0.000915527,0.000640869,-0.000640869,-0.000793457,-0.00149536,-0.00125122,-0.00128174,-0.000488281,-0.000915527,0.000640869,6.10352e-05,0.00106812,0.000366211,0.000274658,0.000335693,-0.000274658,-0.000274658,6.10352e-05,-0.000427246,0,0.000640869,0.00106812,0.00183105,0.00231934,0.00210571,0.00216675,0.00216675,0.000976562,0.000976562,-0.000488281,-0.000640869,-0.00149536,-0.0015564,-0.00195312,-0.00134277,-0.000854492,-0.000152588,0.0010376,0.00177002,0.00241089,0.0032959,0.00335693,0.00366211,0.00302124,0.00259399,0.00195312,0.000915527,0,-0.000854492,-0.00167847,-0.00183105,-0.00183105,-0.00177002,-0.00161743,-0.000579834,-0.000366211,0.00112915,0.00204468,0.00210571,0.00338745,0.00323486,0.0032959,0.00350952,0.00247192,0.00216675,0.00128174,0.000549316,-6.10352e-05,-0.000427246,-0.0010376,-0.000579834,-0.000366211,0.000335693,0.000793457,0.00112915,0.00204468,0.00167847,0.00216675,0.00198364,0.00128174,0.000640869,6.10352e-05,-0.000640869,-0.0010376,-0.0015564,-0.00128174,-0.00134277,-0.000854492,-0.000701904,0.000579834,0.000427246,0.000854492,0.00183105,0.00112915,0.00140381,0.00112915,0.000579834,0.000366211,-0.000274658,-0.000427246,-0.00125122,-0.000701904,-0.00195312,-0.00161743,-0.00204468,-0.00210571,-0.00231934,-0.00259399,-0.00231934,-0.00231934,-0.0022583,-0.00195312,-0.00134277,-0.00119019,-0.000488281,0.000152588,0.000366211,0.000915527,0.000854492,0.000579834,0.000701904,0,-0.000213623,-0.000793457,-0.00140381,-0.0017395,-0.00253296,-0.0022583,-0.00286865,-0.00268555,-0.00219727,-0.00231934,-0.00146484,-0.00140381,-0.000701904,-0.000427246,-0.00012207,0.000335693,0.000366211,0.000366211,0.000488281,0.000335693,-0.000427246,-0.000549316,-0.000793457,-0.00161743,-0.0017395,-0.00219727,-0.0022583,-0.00268555,-0.00241089,-0.00210571,-0.00219727,-0.00134277,-0.00128174,-0.00106812,-0.000915527,-0.000762939,-0.000579834,-0.00134277,-0.00112915,-0.00183105,-0.00189209,-0.00247192,-0.00216675,-0.00286865,-0.00195312,-0.00286865,-0.00167847,-0.00216675,-0.0015564,-0.00134277,-0.00177002,-0.0017395,-0.0015564,-0.00204468,-0.00204468,-0.00210571,-0.0022583,-0.00210571,-0.00167847,-0.00204468,-0.0015564,-0.00146484,-0.00167847,-0.0017395,-0.00195312,-0.0022583,-0.00274658,-0.00289917,-0.00338745,-0.00286865,-0.00280762,-0.0022583,-0.000915527,-0.000640869,0.000793457,0.00189209,0.00241089,0.00323486,0.00366211,0.0032959,0.00274658,0.0022583,0.000854492,-6.10352e-05,-0.00161743,-0.00198364,-0.00317383,-0.00317383,-0.00344849,-0.00317383,-0.00219727,-0.00198364,-0.000549316,0.00012207,0.00140381,0.00195312,0.00265503,0.0032959,0.00296021,0.00323486,0.00265503,0.00241089,0.00167847,0.00119019,0.000549316,-0.000335693,-0.000579834,-0.00119019,-0.00119019,-0.00177002,-0.00140381,-0.00161743,-0.000793457,-0.000915527,-0.000579834,0.000152588,0.000274658,0.000701904,0.000854492,0.0010376,0.00112915,0.00134277,0.00140381,0.00106812,0.00119019,0.000854492,0.000854492,0.000427246,0.000549316,0.000152588,-0.000701904,-0.000793457,-0.0015564,-0.00167847,-0.00238037,-0.00210571,-0.0022583,-0.00167847,-0.0010376,-0.000335693,0.000793457,0.00177002,0.00289917,0.00360107,0.00430298,0.00463867,0.00427246,0.00378418,0.00308228,0.00210571,0.000915527,0.000335693,-0.000213623,-0.00106812,-0.000854492,-0.00146484,-0.000701904,-0.000793457,-0.000274658,-0.000213623,0.000152588,0.000640869,0.000427246,0.00119019,0.00106812,0.0017395,0.00195312,0.00210571,0.00265503,0.00286865,0.00302124,0.00311279,0.00296021,0.00253296,0.0022583,0.00112915,0.000366211,-0.000274658,-0.00146484,-0.00219727,-0.00280762,-0.0032959,-0.00360107,-0.00357056,-0.00317383,-0.00247192,-0.00167847,-0.000762939,0.000366211,0.00119019,0.00189209,0.00241089,0.00280762,0.0022583,0.00216675,0.00106812,0.000335693,-0.00149536,-0.00253296,-0.00366211,-0.00457764,-0.00518799,-0.00491333,-0.00463867,-0.0038147,-0.00268555,-0.00119019,0,0.00106812,0.00204468,0.00268555,0.00280762,0.0022583,0.00183105,0.000793457,-0.000274658,-0.00106812,-0.0022583,-0.00231934,-0.00323486,-0.00274658,-0.00216675,-0.00216675,-0.000274658,-0.000274658,0.00106812,0.00149536,0.00161743,0.0017395,0.0017395,0.000640869,0.000549316,-0.000701904,-0.0010376,-0.0017395,-0.00177002,-0.0022583,-0.0015564,-0.00161743,-0.000793457,-0.000640869,0.000488281,0.000335693,0.00106812,0.000549316,0.000915527,0.000549316,0.000213623,-0.000213623,-0.00012207,-0.000366211,-0.000793457,-0.00012207,-0.000335693,0.00012207,-6.10352e-05,0.000213623,6.10352e-05,0.000152588,-0.000701904,-0.000427246,-0.0015564,-0.00161743,-0.00210571,-0.00247192,-0.00253296,-0.00274658,-0.0017395,-0.00183105,-0.000976562,-0.000152588,0.000213623,0.000793457,0.00149536,0.00128174,0.00146484,0.00112915,0.000701904,0.000274658,6.10352e-05,-0.0010376,-0.000976562,-0.00149536,-0.00161743,-0.00161743,-0.00140381,-0.00134277,-0.0010376,-0.000549316,-0.000762939,0.000152588,0,0.000152588,0.000335693,0.000366211,0.000274658,0.000335693,0.000213623,0,-0.000152588,-0.000335693,-0.000549316,-0.000793457,-0.00106812,-0.0010376,-0.0015564,-0.0010376,-0.00134277,-0.000762939,-0.000427246,0.000213623,0.00012207,0.000976562,0.0010376,0.00134277,0.00119019,0.000976562,0.000274658,-0.000152588,-0.000701904,-0.00183105,-0.00219727,-0.00280762,-0.00274658,-0.00286865,-0.00286865,-0.00204468,-0.00125122,-0.000762939,0.000152588,0.000701904,0.000762939,0.00112915,0.000701904,0.000366211,-0.000213623,-0.00125122,-0.00134277,-0.00204468,-0.00247192,-0.00177002,-0.00195312,-0.00119019,-0.000488281,0,0.000427246,0.00134277,0.000579834,0.000915527,0.000488281,-0.000366211,-0.000549316,-0.00112915,-0.00125122,-0.00167847,-0.000854492,-0.000976562,-6.10352e-05,0.000793457,0.00125122,0.00189209,0.00253296,0.00231934,0.00177002,0.00189209,0.000549316,0.000213623,-0.0010376,-0.00119019,-0.00189209,-0.00195312,-0.0017395,-0.00146484,-0.000701904,-0.000335693,0.000793457,0.000915527,0.00204468,0.00149536,0.00231934,0.0017395,0.00177002,0.000701904,0.00125122,0.000640869,0.000976562,0.000427246,0.00128174,0.000915527,0.00112915,0.00134277,0.000854492,0.00106812,0.00012207,0.000549316,-0.000488281,-0.000701904,-0.000793457,-0.00128174,-0.000701904,-0.0010376,0,-6.10352e-05,6.10352e-05,0.000854492,0.00125122,0.00112915,0.00210571,0.00167847,0.00286865,0.00280762,0.00317383,0.00265503,0.00308228,0.00247192,0.00204468,0.000915527,0.000762939,-0.000213623,-0.00183105,-0.0022583,-0.00241089,-0.00161743,0.000213623,0.00360107,0.00393677,0.00357056,0.00372314,0.00588989,0.00491333,0.00485229,0.00683594,0.00915527,0.0101318,0.0100403,0.00872803,0.00674438,0.0062561,0.00588989,0.00463867,0.00268555,0.00219727,0.00146484,-0.000152588,0.000335693,0.00106812,0.000213623,-0.000579834,-0.000335693,-0.000335693,-0.00274658,-0.00415039,-0.00344849,-0.00463867,-0.00479126,-0.00436401,-0.00408936,-0.00335693,-0.00247192,-0.00198364,0.000762939,0.00195312,0.0032959,0.00387573,0.00308228,-0.00128174,-0.00540161,-0.00866699,-0.0131531,-0.015564,-0.0134888,-0.00491333,0.0115967,0.0169373,0.00863647,0.00149536,0,-6.10352e-05,-0.00442505,-0.0117493,-0.0117493,-0.00933838,-0.0100708,-0.00894165,-0.00238037,0.00469971,0.00964355,0.0101929,0.00732422,0.00350952,-0.00372314,-0.0104065,-0.0150452,-0.0162354,-0.0170898,-0.0178833,-0.0173645,-0.0108337,-0.00247192,0.00634766,0.015625,0.0178833,0.0133057,0.00976562,0.00753784,0.00527954,-0.000335693,-0.00436401,-0.00238037,-0.00149536,0.00119019,0.0062561,0.0109863,0.0116272,0.0116272,0.00985718,0.00421143,0.00012207,-0.00247192,-0.00408936,-0.0071106,-0.00894165,-0.00683594,-0.00311279,-0.000335693,0.00204468,0.00604248,0.00744629,0.00534058,0.00140381,-0.0015564,-0.00308228,-0.00588989,-0.00732422,-0.00726318,-0.00997925,-0.0112,-0.00808716,-0.00448608,-0.00146484,-0.000854492,-0.000579834,-0.00161743,-0.00427246,-0.00604248,-0.00830078,-0.00894165,-0.00723267,-0.00631714,-0.00619507,-0.00491333,-0.00378418,-0.00442505,-0.00457764,-0.00335693,-0.000854492,-0.00128174,-0.00350952,-0.00561523,-0.00680542,-0.00387573,-0.00012207,6.10352e-05,-0.00360107,-0.0045166,-0.00317383,-0.00149536,-0.00167847,-0.00430298,-0.00427246,-0.00231934,-0.000762939,-0.000427246,-0.00167847,-0.00344849,-0.00469971,-0.00427246,-0.00732422,-0.00793457,-0.00836182,-0.00527954,-0.00436401,-0.00588989,-0.00402832,0.000335693,0.00286865,0.00378418,0.0062561,0.00592041,0.0062561,0.0022583,-0.00219727,-0.00402832,-0.00344849,-0.00286865,-0.00238037,-0.000701904,-0.000793457,0.000366211,0.0010376,0.00335693,0.00473022,0.00247192,0.00112915,-0.000640869,-0.00204468,-0.00253296,-0.00335693,-0.00408936,-0.00506592,-0.00366211,-0.00302124,-0.00265503,-0.00198364,-0.000976562,-0.0010376,-0.00366211,-0.00402832,-0.00408936,-0.00210571,-0.000549316,0.000854492,0.00247192,0.00561523,0.00640869,0.00582886,0.0039978,0.0032959,0.000366211,-0.000427246,-0.00128174,-0.00134277,-0.000579834,0.000579834,0.00308228,0.00506592,0.00653076,0.00604248,0.00527954,0.00360107,0.000701904,0.000274658,-0.00183105,-0.0010376,0.00012207,0.00134277,0.00289917,0.00421143,0.00311279,0.000762939,-0.000213623,-0.00241089,-0.00378418,-0.00521851,-0.00534058,-0.00765991,-0.00863647,-0.00857544,-0.00738525,-0.00683594,-0.00393677,-0.000274658,0.00134277,0.00112915,-0.000488281,-0.0032959,-0.00442505,-0.0055542,-0.00570679,-0.00704956,-0.00604248,-0.00387573,-0.00387573,-0.00463867,-0.00335693,-0.0015564,-0.00106812,-0.0017395,-0.00195312,-0.00274658,-0.00415039,-0.00448608,-0.00457764,-0.0032959,-0.00280762,-0.0038147,-0.00323486,-0.00216675,-0.00241089,-0.00308228,-0.00231934,-0.00161743,-0.00140381,-0.00183105,-0.000915527,0.000549316,0.000488281,0.00167847,0.00378418,0.0055542,0.00598145,0.00704956,0.00738525,0.00802612,0.00723267,0.00588989,0.00286865,0.000701904,-0.00177002,-0.0015564,-0.00238037,-0.00265503,-0.00372314,-0.00311279,-0.00204468,-0.0010376,-0.000427246,0.00161743,0.00280762,0.00344849,0.00350952,0.00421143,0.00500488,0.00640869,0.00646973,0.00613403,0.00485229,0.00436401,0.00335693,0.00241089,0.00134277,0.0010376,0.0022583,0.00149536,0.000915527,-0.000213623,0.000152588,0.000427246,-6.10352e-05,-0.000915527,-0.00216675,-0.00112915,-0.000549316,-0.000335693,-0.000640869,-0.00106812,-0.000701904,0.000213623,-0.000213623,0.000549316,-0.000213623,0.000213623,-0.000152588,-0.000274658,-0.00119019,-0.000793457,-0.0010376,-0.000274658,0.000579834,0.000854492,0.000793457,0.000579834,0.00189209,0.00311279,0.00415039,0.00323486,0.00134277,-0.00012207,-0.000274658,0.000701904,0.00177002,0.00149536,0.00167847,0.0015564,0.00140381,0,0.000274658,-0.000549316,-0.000915527,-0.000762939,-0.000366211,-0.000854492,-0.00241089,-0.00280762,-0.00183105,0.000152588,0.00106812,0.00119019,0.000335693,-0.000854492,-0.00177002,-0.0022583,-0.00189209,-0.00134277,-0.000854492,-0.000335693,0.000427246,0.0015564,0.00247192,0.00253296,0.00241089,0.00198364,0.00274658,0.00189209,0.0022583,0.00238037,0.00323486,0.00280762,0.00238037,0.000976562,0.000762939,0.000488281,0.000579834,0.000579834,0.000579834,0,-0.0015564,-0.00259399,-0.00259399,-0.00112915,0.000549316,0.00128174,0.00195312,0.00302124,0.00335693,0.00350952,0.0038147,0.00338745,0.00253296,0.00238037,0.00125122,0.00219727,0.00338745,0.00540161,0.00521851,0.0055542,0.00427246,0.00366211,0.00296021,0.00247192,0.00167847,0.00106812,0.000335693,0.000854492,0.00183105,0.00280762,0.0032959,0.00402832,0.00387573,0.00393677,0.00372314,0.00289917,0.0022583,0.00128174,0.0010376,0.00112915,0.00204468,0.0010376,0.000549316,0.000335693,0.00106812,0.0022583,0.00268555,0.00167847,0.00140381,0.000213623,-0.000762939,6.10352e-05,-0.000335693,0.000976562,0.00134277,0.000854492,0.000213623,0.000427246,0.00149536,0.00219727,0.00167847,0.0010376,-0.000335693,-0.000274658,-0.00112915,0.000427246,-0.000274658,0.000854492,0.000976562,0.00128174,0.00106812,0.000854492,0.000762939,0.0010376,0.000274658,-0.000579834,-0.00146484,-0.00183105,-0.00119019,-0.00119019,-0.000213623,-6.10352e-05,0.000335693,6.10352e-05,0.000549316,0.000427246,0.000640869,0.000915527,0.000366211,-0.000640869,-0.000488281,-0.000762939,0.000701904,0.000366211,0.000549316,0.000640869,0.00140381,0.0017395,0.0022583,0.00189209,0.00119019,-0.000274658,-0.000427246,-0.00106812,-0.00167847,-0.00280762,-0.00308228,-0.00317383,-0.00280762,-0.00253296,-0.00146484,-0.00161743,-0.000427246,-0.000366211,0.000427246,0.00183105,0.00189209,0.00219727,0.00183105,0.00146484,0.000701904,0.000793457,0.000213623,0.000274658,-0.00012207,-0.00128174,-0.00149536,-0.00161743,-0.00177002,-0.00195312,-0.00231934,-0.00289917,-0.00296021,-0.00302124,-0.00360107,-0.0039978,-0.0032959,-0.00415039,-0.00387573,-0.00402832,-0.00323486,-0.00308228,-0.00238037,-0.00177002,-0.00183105,-0.00149536,-0.00125122,-0.00119019,-0.000640869,-0.00167847,-0.00195312,-0.00268555,-0.00296021,-0.00268555,-0.0022583,-0.00231934,-0.0022583,-0.00289917,-0.00289917,-0.0038147,-0.00372314,-0.00372314,-0.00408936,-0.00500488,-0.00549316,-0.00662231,-0.00656128,-0.00674438,-0.00656128,-0.00564575,-0.00588989,-0.00469971,-0.00494385,-0.00360107,-0.00317383,-0.00280762,-0.00204468,-0.00189209,-0.00140381,-0.00177002,-0.00231934,-0.00387573,-0.00485229,-0.00485229,-0.0055542,-0.00592041,-0.0071106,-0.00793457,-0.00845337,-0.00872803,-0.00830078,-0.0085144,-0.00802612,-0.00732422,-0.0071106,-0.00604248,-0.00570679,-0.00518799,-0.00491333,-0.00436401,-0.0045166,-0.00457764,-0.00561523,-0.00598145,-0.00765991,-0.00823975,-0.00845337,-0.00872803,-0.00872803,-0.00979614,-0.0107727,-0.0109558,-0.0103455,-0.0093689,-0.00842285,-0.00772095,-0.00668335,-0.00674438,-0.0062561,-0.00634766,-0.00646973,-0.00656128,-0.00723267,-0.00808716,-0.00927734,-0.00985718,-0.00991821,-0.00933838,-0.00857544,-0.00863647,-0.00863647,-0.00878906,-0.00857544,-0.00726318,-0.00619507,-0.00634766,-0.00653076,-0.00759888,-0.00793457,-0.00872803,-0.00836182,-0.00866699,-0.00878906,-0.00958252,-0.00921631,-0.00894165,-0.00759888,-0.00704956,-0.00588989,-0.00561523,-0.00534058,-0.00473022,-0.00485229,-0.00402832,-0.00247192,-0.00183105,-0.000213623,0.000549316,0.00149536,0.00268555,0.00442505,0.00656128,0.0085144,0.0104065,0.0118713,0.013916,0.0148621,0.0160217,0.0161743,0.017395,0.0176697,0.0183716,0.0187073,0.0192871,0.0194702,0.020874,0.0220947,0.0230713,0.0238342,0.0249023,0.0258179,0.0265198,0.0278625,0.0287781,0.0299072,0.0305176,0.0299683,0.0296326,0.0302429,0.0310364,0.0322876,0.0332031,0.0339966,0.0348206,0.0352478,0.0362244,0.0365906,0.0365906,0.0354614,0.0347595,0.0334167,0.0323792,0.0321655,0.0303955,0.0290527,0.0278625,0.0272217,0.0267944,0.0265198,0.0261841,0.0250244,0.0240784,0.0230713,0.0210876,0.0195007,0.01828,0.0178528,0.0169373,0.0167542,0.0157776,0.0146484,0.0143433,0.013855,0.0124512,0.0107727,0.0088501,0.00747681,0.00738525,0.00570679,0.00512695,0.00274658,0.00177002,-6.10352e-05,-0.000549316,-0.0015564,-0.00247192,-0.00421143,-0.00457764,-0.00576782,-0.00704956,-0.00738525,-0.00949097,-0.0108337,-0.012085,-0.0133667,-0.0137329,-0.0137939,-0.0137329,-0.0144348,-0.0149231,-0.0164795,-0.0170288,-0.0174561,-0.0176697,-0.0187683,-0.0191956,-0.0203857,-0.020752,-0.0213928,-0.0217285,-0.0224304,-0.0222168,-0.0232239,-0.0229492,-0.0232849,-0.0220947,-0.0220947,-0.0210876,-0.0213928,-0.0206299,-0.020813,-0.0206299,-0.0209656,-0.0203857,-0.0203247,-0.019989,-0.0203247,-0.0197144,-0.0195007,-0.0190125,-0.01828,-0.018158,-0.0168762,-0.0162659,-0.0148315,-0.0137329,-0.0127869,-0.0119629,-0.0114746,-0.0108337,-0.0103455,-0.00921631,-0.00836182,-0.00787354,-0.00732422,-0.00701904,-0.00744629,-0.00704956,-0.00738525,-0.0071106,-0.00668335,-0.00683594,-0.00613403,-0.00598145,-0.00540161,-0.00448608,-0.0039978,-0.00344849,-0.00317383,-0.00289917,-0.00323486,-0.00302124,-0.00427246,-0.0045166,-0.00512695,-0.00518799,-0.00613403,-0.00683594,-0.00753784,-0.00744629,-0.00808716,-0.00775146,-0.0088501,-0.00933838,-0.0101929,-0.0107117,-0.0108948,-0.0111084,-0.010498,-0.0111084,-0.011322,-0.0107727,-0.0114746,-0.0110474,-0.0114136,-0.0109863,-0.012085,-0.0122986,-0.013092,-0.0137329,-0.0139465,-0.0155334,-0.0167542,-0.0187683,-0.0190735,-0.0196838,-0.0187683,-0.01828,-0.0194092,-0.020813,-0.0217896,-0.0212402,-0.0205383,-0.0198975,-0.0189819,-0.0193481,-0.019928,-0.0206909,-0.0209045,-0.0202637,-0.0191956,-0.0191956,-0.0193481,-0.020752,-0.0210266,-0.0205994,-0.0184326,-0.0177917,-0.0174561,-0.0193481,-0.0198975,-0.019989,-0.0185547,-0.0173035,-0.0170898,-0.0187683,-0.0209656,-0.0215454,-0.0210266,-0.0197144,-0.0192566,-0.0205994,-0.0223083,-0.0241394,-0.025177,-0.0238342,-0.0227356,-0.0229187,-0.0254517,-0.0268555,-0.0270996,-0.0263062,-0.0242004,-0.023407,-0.0212402,-0.020752,-0.0196838,-0.0173035,-0.0121765,-0.00527954,0.00366211,0.0109558,0.0173035,0.0209045,0.0249023,0.028717,0.0323486,0.0340576,0.0339966,0.0324402,0.0304565,0.0284119,0.0281372,0.0274353,0.0267944,0.0273132,0.0274353,0.0289001,0.0306702,0.0339966,0.038147,0.0409546,0.0415955,0.0427856,0.0437622,0.0456543,0.0484009,0.0496826,0.049469,0.0490417,0.0503845,0.0512695,0.0542908,0.0549927,0.0556335,0.0552979,0.0555725,0.0569153,0.0571289,0.0593872,0.0606384,0.0604248,0.0581665,0.0563354,0.0544434,0.0537415,0.0503845,0.0470581,0.0431824,0.0388489,0.0351562,0.0328674,0.0304565,0.0279846,0.0243225,0.0204163,0.0168152,0.0144348,0.0131531,0.0119629,0.0103455,0.00970459,0.009552,0.00949097,0.0101929,0.0118713,0.0126648,0.0125122,0.0122375,0.0114746,0.0106812,0.00949097,0.00772095,0.00448608,0.00112915,-0.00268555,-0.00610352,-0.00949097,-0.0109863,-0.0119629,-0.0125732,-0.013031,-0.0127869,-0.0123901,-0.0121155,-0.0122986,-0.0120239,-0.0126038,-0.0140076,-0.0141907,-0.0155334,-0.0161743,-0.0178833,-0.0187988,-0.0191345,-0.0193481,-0.0191345,-0.0190125,-0.0183716,-0.0166016,-0.015686,-0.0139465,-0.0126038,-0.011261,-0.0100403,-0.00921631,-0.00823975,-0.00900269,-0.0085144,-0.00842285,-0.00817871,-0.0088501,-0.00842285,-0.00842285,-0.00726318,-0.00683594,-0.0062561,-0.00506592,-0.00463867,-0.0022583,-0.00125122,0.00012207,0.00125122,0.00231934,0.00415039,0.00561523,0.00793457,0.00900269,0.0101929,0.0112,0.011261,0.0116882,0.0113831,0.0119629,0.0117493,0.0115967,0.0105591,0.00985718,0.00866699,0.00814819,0.00836182,0.00830078,0.00906372,0.00964355,0.0100403,0.0104065,0.0110474,0.0111084,0.0104675,0.00927734,0.00830078,0.00653076,0.00521851,0.00372314,0.00167847,-0.000915527,-0.00308228,-0.00494385,-0.00653076,-0.00857544,-0.0102539,-0.0122986,-0.0132141,-0.0139465,-0.0154724,-0.0167542,-0.0180664,-0.0203247,-0.0213013,-0.0237732,-0.024353,-0.0257568,-0.0265198,-0.02771,-0.0284119,-0.0293884,-0.02948,-0.0300293,-0.0300293,-0.0310364,-0.0314331,-0.0323486,-0.0318604,-0.0327759,-0.0328369,-0.0334778,-0.0335388,-0.033844,-0.0342712,-0.0341797,-0.0335693,-0.0336304,-0.0337524,-0.0344543,-0.0351868,-0.0361633,-0.0362244,-0.0361633,-0.0360718,-0.036438,-0.0365906,-0.0349731,-0.0332642,-0.0307617,-0.0285034,-0.0265198,-0.0242004,-0.022522,-0.0209656,-0.0191345,-0.0180054,-0.0161743,-0.015686,-0.0147095,-0.0140686,-0.013031,-0.0120239,-0.0110474,-0.00976562,-0.00888062,-0.00802612,-0.00888062,-0.00942993,-0.0109863,-0.0109863,-0.0111694,-0.0105591,-0.0104065,-0.0115356,-0.013092,-0.0137024,-0.0120239,-0.011322,-0.00985718,-0.00991821,-0.00976562,-0.0101318,-0.00970459,-0.00933838,-0.00836182,-0.00772095,-0.00759888,-0.00845337,-0.00933838,-0.0113831,-0.0121765,-0.0130005,-0.0144348,-0.0163879,-0.0190125,-0.0210266,-0.0232849,-0.0254517,-0.0278015,-0.0301208,-0.0327148,-0.0343323,-0.0351562,-0.0348206,-0.033783,-0.0330811,-0.0326538,-0.0316467,-0.0289307,-0.0211792,-0.0108948,-0.000427246,0.00765991,0.0136414,0.0173645,0.0238342,0.0297546,0.0352478,0.0371399,0.035675,0.0325623,0.0291138,0.0265808,0.0252686,0.0266724,0.0282288,0.0292053,0.0289001,0.0279846,0.0289001,0.03125,0.0346985,0.0368652,0.0372314,0.0361633,0.0369263,0.0389709,0.0424194,0.0448303,0.047821,0.0512085,0.0541077,0.0576172,0.0593872,0.0611877,0.0614014,0.0611877,0.05896,0.0585327,0.0594482,0.0602112,0.0617065,0.061615,0.0604858,0.0578918,0.0576782,0.0576782,0.0569763,0.0538025,0.0492249,0.0438232,0.0388489,0.0351562,0.0310364,0.0275574,0.0228577,0.0184937,0.0133057,0.00985718,0.0078125,0.00527954,0.00564575,0.00442505,0.00430298,0.00350952,0.00317383,0.00311279,0.00408936,0.00302124,0.00238037,0.00161743,-0.000366211,-0.00210571,-0.00408936,-0.00610352,-0.00765991,-0.00842285,-0.00942993,-0.00927734,-0.00985718,-0.0100403,-0.00985718,-0.0109558,-0.0116882,-0.0114136,-0.0118713,-0.0115967,-0.0109863,-0.0112,-0.0127258,-0.013092,-0.0143433,-0.0139465,-0.0135193,-0.0128174,-0.0137024,-0.0149841,-0.0171509,-0.0180664,-0.0185852,-0.0179443,-0.0174561,-0.0161133,-0.0154114,-0.0129395,-0.0104065,-0.00802612,-0.0045166,-0.00231934,0.000366211,0.00167847,0.00344849,0.00473022,0.00604248,0.00744629,0.00933838,0.0109558,0.0128174,0.0144348,0.0160522,0.0169373,0.0176697,0.0183411,0.0185852,0.019928,0.020874,0.0221558,0.0232849,0.0236206,0.0239258,0.0236511,0.0234375,0.0239868,0.0236511,0.0233459,0.0224609,0.0214539,0.0203247,0.0194702,0.0187988,0.0185547,0.0175171,0.0171509,0.0162354,0.0162354,0.0151978,0.0148315,0.0139465,0.0134277,0.0129395,0.0122986,0.010498,0.00906372,0.00695801,0.00506592,0.00302124,0.000915527,-0.00140381,-0.00350952,-0.00598145,-0.00823975,-0.0105591,-0.0128784,-0.015625,-0.01828,-0.0204163,-0.0222473,-0.0238342,-0.0259705,-0.0281372,-0.0308838,-0.0326233,-0.0343323,-0.0360107,-0.038208,-0.0402222,-0.0415039,-0.0423584,-0.043335,-0.0432739,-0.0440979,-0.0441589,-0.0434875,-0.0435486,-0.0429077,-0.0423584,-0.0420532,-0.0404663,-0.0402527,-0.0391235,-0.0391235,-0.0376282,-0.0378418,-0.0369263,-0.0368652,-0.0372925,-0.0373535,-0.0372925,-0.0372009,-0.0373535,-0.0375061,-0.0370789,-0.0367737,-0.035614,-0.0343933,-0.0337524,-0.032135,-0.0315247,-0.0296326,-0.0288391,-0.0272827,-0.0259399,-0.0239258,-0.0222473,-0.0197754,-0.0185547,-0.0168152,-0.015564,-0.0151978,-0.0147095,-0.0141907,-0.0137024,-0.0134277,-0.0137329,-0.0144958,-0.0152588,-0.0160217,-0.0157471,-0.0164795,-0.0167236,-0.0189209,-0.0196228,-0.0218201,-0.022644,-0.0242004,-0.0252686,-0.0274963,-0.0293884,-0.0318604,-0.0335693,-0.035675,-0.0376892,-0.040863,-0.043457,-0.0453796,-0.0473328,-0.0489807,-0.0516968,-0.0556641,-0.0585327,-0.0599976,-0.0600891,-0.0596008,-0.0602112,-0.0594482,-0.056366,-0.0484619,-0.0330505,-0.0136414,0.00726318,0.0248413,0.0372925,0.0482483,0.0586853,0.070282,0.0783081,0.0809021,0.0760498,0.0655518,0.0552368,0.0496826,0.0476379,0.0469971,0.0474243,0.0466919,0.0453186,0.0446777,0.0466309,0.0492249,0.0514832,0.0507812,0.0487366,0.0457458,0.0454407,0.047699,0.054657,0.0610046,0.0662842,0.0717468,0.0785217,0.0844727,0.089325,0.0889893,0.085968,0.0795593,0.0742798,0.0698547,0.0690308,0.0701294,0.0715637,0.0740051,0.0758972,0.0770874,0.0765991,0.0743408,0.0708923,0.0624084,0.0505676,0.0370178,0.0246887,0.0151367,0.00775146,0.00259399,-0.00463867,-0.0107727,-0.0169678,-0.0210266,-0.0248413,-0.0291138,-0.033844,-0.0388489,-0.0417786,-0.0443726,-0.0448914,-0.0437012,-0.0406799,-0.0355225,-0.0304565,-0.0255432,-0.0204163,-0.0183716,-0.0164795,-0.0176697,-0.0205994,-0.0245667,-0.0288391,-0.0298462,-0.0298462,-0.0273743,-0.0245667,-0.0210876,-0.016449,-0.0119019,-0.00823975,-0.00610352,-0.00564575,-0.00753784,-0.00985718,-0.0126648,-0.0147095,-0.0169678,-0.0170288,-0.0167236,-0.0150452,-0.0137329,-0.0133667,-0.0129395,-0.013031,-0.0121765,-0.0114136,-0.0100708,-0.00808716,-0.00527954,-0.00247192,0.00183105,0.00689697,0.0112,0.0168152,0.020752,0.0245667,0.0271606,0.0291138,0.0314636,0.0341187,0.0367126,0.0401611,0.0432739,0.0474854,0.0496521,0.0530396,0.0533142,0.0540466,0.0530396,0.0516357,0.0505676,0.0480347,0.0456543,0.042572,0.0396729,0.0375671,0.0354614,0.0336304,0.0314636,0.0291748,0.0261841,0.023407,0.0196228,0.0162659,0.0134888,0.0118103,0.0113831,0.0115356,0.0125732,0.0128784,0.0134888,0.0143433,0.0148621,0.0134888,0.011322,0.00842285,0.00540161,0.00302124,-0.000488281,-0.00372314,-0.00695801,-0.00976562,-0.0114746,-0.0141296,-0.0177917,-0.0220947,-0.0266113,-0.0309448,-0.0350342,-0.0383301,-0.042572,-0.0458069,-0.0486145,-0.0501709,-0.0517883,-0.052124,-0.0533752,-0.0529785,-0.0541077,-0.0545959,-0.0555725,-0.0568237,-0.0560608,-0.0563354,-0.0553589,-0.054718,-0.0536194,-0.0514832,-0.0500183,-0.0473328,-0.0462952,-0.0443726,-0.0429077,-0.0409241,-0.0400085,-0.0372925,-0.0361633,-0.033844,-0.0325623,-0.030304,-0.0303345,-0.0287781,-0.0284119,-0.0279236,-0.0285034,-0.0307617,-0.0329285,-0.0357971,-0.0366516,-0.0377808,-0.038147,-0.0383911,-0.0379944,-0.0374146,-0.0361023,-0.0346069,-0.0344849,-0.0335693,-0.0333252,-0.0330811,-0.0333557,-0.0334167,-0.0345459,-0.0357971,-0.0368652,-0.0393982,-0.0405884,-0.0429688,-0.0438232,-0.0466309,-0.0492554,-0.0536194,-0.0579529,-0.0626221,-0.0665588,-0.0706482,-0.0752563,-0.081665,-0.0880127,-0.0926514,-0.0945435,-0.0934143,-0.0895691,-0.0828552,-0.0720215,-0.0545349,-0.0299072,0,0.0303345,0.0583191,0.079834,0.0967102,0.110016,0.120789,0.127258,0.126129,0.118103,0.105377,0.0906982,0.0813293,0.0750732,0.0730286,0.0737915,0.0753479,0.0780029,0.0799255,0.0830994,0.0849609,0.086792,0.0856018,0.0823669,0.0766602,0.0723877,0.0695801,0.0709229,0.0732422,0.0761108,0.0786438,0.0819702,0.0862427,0.0887756,0.0876465,0.0838623,0.0771179,0.0716248,0.0664673,0.0647278,0.0643616,0.0652161,0.0678711,0.0705566,0.072937,0.0744934,0.0729675,0.0691528,0.0611267,0.0468445,0.0290527,0.00915527,-0.00921631,-0.0261536,-0.0399475,-0.0526123,-0.0632324,-0.0706177,-0.0750427,-0.0750427,-0.0737305,-0.0731506,-0.0734253,-0.0739441,-0.0766602,-0.0789185,-0.0810242,-0.0823669,-0.0817566,-0.0801392,-0.0761719,-0.0710449,-0.0654297,-0.0575562,-0.0509949,-0.0434875,-0.0385437,-0.0345459,-0.0304565,-0.0252686,-0.0194702,-0.0137939,-0.00906372,-0.0039978,0.000793457,0.0071106,0.0127258,0.0172424,0.0197754,0.0211182,0.0202026,0.0180664,0.0149231,0.011261,0.00689697,0.00302124,-0.00289917,-0.00753784,-0.0121155,-0.0147095,-0.0136414,-0.0109863,-0.00640869,-0.00146484,0.00436401,0.0103455,0.0164795,0.0227966,0.0286255,0.0332031,0.0362244,0.0368042,0.0379944,0.0393982,0.0421448,0.04599,0.0505066,0.0557861,0.0614319,0.0678101,0.0733032,0.0786438,0.0825195,0.0846252,0.0847778,0.0824585,0.0783691,0.0722656,0.0646362,0.0566406,0.0490417,0.0431213,0.0372925,0.0327759,0.0276489,0.0223083,0.0174561,0.012085,0.00775146,0.00189209,-0.00415039,-0.00942993,-0.0144348,-0.0167542,-0.017395,-0.0170288,-0.0160217,-0.0127258,-0.0103455,-0.00796509,-0.00656128,-0.00588989,-0.00689697,-0.00775146,-0.0101318,-0.0127869,-0.0161743,-0.0188599,-0.0204163,-0.0218811,-0.0221558,-0.0228577,-0.0236511,-0.0238342,-0.0250549,-0.026886,-0.0308838,-0.0350342,-0.0404663,-0.0450745,-0.0499573,-0.0547485,-0.0580444,-0.061676,-0.0632629,-0.064209,-0.0644226,-0.0644226,-0.0632629,-0.0621948,-0.0608521,-0.0588989,-0.0574646,-0.0548706,-0.0527039,-0.0496521,-0.0471191,-0.0440979,-0.0420532,-0.0393372,-0.0380554,-0.0365906,-0.0355835,-0.0358582,-0.0353088,-0.0363159,-0.0377808,-0.0410156,-0.0438232,-0.0467224,-0.0485535,-0.0489807,-0.0512085,-0.0535278,-0.0576782,-0.0629578,-0.0665588,-0.0707092,-0.0730896,-0.0765991,-0.0804749,-0.0856323,-0.0916443,-0.0969238,-0.101379,-0.105103,-0.106995,-0.108765,-0.109741,-0.110504,-0.110504,-0.108337,-0.104034,-0.097168,-0.0873108,-0.0740051,-0.0567627,-0.0354614,-0.00921631,0.0210266,0.0542908,0.088501,0.119812,0.146057,0.165741,0.179657,0.186707,0.186157,0.179535,0.166443,0.149139,0.129425,0.112854,0.100739,0.0933533,0.090332,0.0906982,0.0933533,0.0951843,0.0989685,0.101074,0.101654,0.0992737,0.0935059,0.0844116,0.0760498,0.0693665,0.0655518,0.0643005,0.0661926,0.0697021,0.07547,0.0818176,0.0884399,0.0913086,0.0914001,0.0865173,0.0802612,0.0729675,0.0666199,0.0612793,0.0571899,0.0543823,0.0540466,0.0528259,0.0524902,0.0487366,0.0426331,0.0317383,0.0144958,-0.0071106,-0.0327148,-0.0581055,-0.0821533,-0.103333,-0.120575,-0.133453,-0.141968,-0.143494,-0.140259,-0.133514,-0.125793,-0.118896,-0.113983,-0.111786,-0.111145,-0.111023,-0.111694,-0.110992,-0.108063,-0.102631,-0.0936279,-0.0828552,-0.068573,-0.0541077,-0.0378418,-0.023407,-0.00997925,0.000366211,0.0101929,0.0171509,0.0243225,0.0290527,0.0342712,0.0373535,0.0423584,0.0471497,0.052002,0.0555115,0.0559998,0.0550842,0.050293,0.0454407,0.0396118,0.0326233,0.0263672,0.0196228,0.0141296,0.0104675,0.00958252,0.012085,0.0159607,0.0220947,0.027771,0.033844,0.0393372,0.0450134,0.0498657,0.0554504,0.0596008,0.0641479,0.0671692,0.0709229,0.0734558,0.0775146,0.0809631,0.0844116,0.0870972,0.0877991,0.0880737,0.086731,0.0852051,0.081604,0.0765381,0.0692749,0.0604858,0.0499573,0.0387573,0.0266113,0.0153503,0.00415039,-0.00588989,-0.0145569,-0.0220032,-0.0285034,-0.0341187,-0.0386963,-0.0412292,-0.0442505,-0.0464172,-0.0489502,-0.0506592,-0.0508728,-0.0494385,-0.0473328,-0.0437012,-0.0400391,-0.0355835,-0.0304565,-0.0243225,-0.0198364,-0.0148621,-0.0128784,-0.0107727,-0.0102844,-0.0108337,-0.0116272,-0.013855,-0.0163879,-0.0185852,-0.0211182,-0.0232849,-0.0249634,-0.0273743,-0.029541,-0.0327759,-0.0362244,-0.040863,-0.0462341,-0.0516357,-0.0581055,-0.063446,-0.0688171,-0.0722351,-0.0752869,-0.0767517,-0.0756226,-0.074646,-0.0718994,-0.0692749,-0.0666809,-0.0644226,-0.0627441,-0.0614014,-0.059082,-0.0578918,-0.0560608,-0.0550232,-0.0556335,-0.0571899,-0.0595703,-0.061554,-0.0630188,-0.0655518,-0.069519,-0.0762024,-0.0839844,-0.0920715,-0.0992432,-0.104828,-0.109161,-0.114258,-0.11911,-0.122894,-0.124664,-0.123962,-0.120361,-0.112976,-0.102936,-0.0917358,-0.0770874,-0.0570679,-0.032135,-0.00259399,0.0291138,0.0591431,0.0872498,0.110718,0.132751,0.14978,0.161041,0.164001,0.160553,0.152161,0.143005,0.13382,0.125763,0.120422,0.118469,0.117493,0.120239,0.125,0.130646,0.135773,0.13739,0.134918,0.127411,0.116699,0.104614,0.0923767,0.0806885,0.0698547,0.0604858,0.0548706,0.0536194,0.0556641,0.06073,0.0667725,0.0700073,0.0721741,0.0708923,0.0690308,0.0662537,0.0629578,0.0585938,0.0548706,0.0500183,0.0474243,0.0453796,0.0438232,0.0405884,0.0344543,0.0256653,0.0123901,-0.00366211,-0.0227051,-0.0428467,-0.0637207,-0.0837097,-0.102142,-0.116638,-0.127747,-0.13266,-0.13443,-0.133362,-0.130371,-0.127625,-0.125427,-0.123322,-0.121826,-0.121857,-0.122131,-0.122894,-0.120575,-0.116425,-0.108673,-0.0965271,-0.0821533,-0.0650024,-0.0462036,-0.0268555,-0.00662231,0.0121765,0.0285645,0.0431824,0.0542297,0.063385,0.0704041,0.0765381,0.0803528,0.0832214,0.084259,0.0848999,0.0834961,0.0811768,0.0777283,0.0734253,0.0673828,0.0605774,0.052887,0.0457458,0.0394592,0.0347595,0.0313721,0.0283508,0.0266724,0.0260315,0.0264587,0.0275574,0.0292664,0.0304565,0.0315857,0.0321655,0.0335388,0.0353088,0.038269,0.0424194,0.046936,0.0522156,0.0568237,0.0611877,0.065918,0.0701294,0.0740051,0.0758362,0.0762024,0.0745544,0.0701904,0.0645752,0.0566406,0.0476074,0.0363159,0.023407,0.009552,-0.00543213,-0.0187683,-0.0312195,-0.0417175,-0.0512085,-0.0591736,-0.0658264,-0.0714111,-0.0760498,-0.0791321,-0.0814514,-0.0823059,-0.0832825,-0.0828857,-0.0814819,-0.0783691,-0.0731812,-0.0671692,-0.0592957,-0.0514221,-0.042572,-0.0329895,-0.0236206,-0.0141907,-0.00680542,-0.000335693,0.00534058,0.00888062,0.0121765,0.013031,0.0123291,0.0101318,0.00631714,0.00140381,-0.00427246,-0.0100708,-0.0175781,-0.025238,-0.0342407,-0.0446777,-0.0548096,-0.0658569,-0.0749817,-0.0856323,-0.0956116,-0.105957,-0.115356,-0.124786,-0.132477,-0.138519,-0.143097,-0.145416,-0.145813,-0.145813,-0.143921,-0.142456,-0.139374,-0.136414,-0.131287,-0.125427,-0.121155,-0.118195,-0.115845,-0.112762,-0.107635,-0.099762,-0.0888367,-0.0749817,-0.0573425,-0.0347595,-0.00775146,0.0255432,0.0625916,0.0986328,0.130127,0.153992,0.170044,0.17923,0.180084,0.173676,0.156799,0.134277,0.110168,0.085968,0.0675964,0.0555115,0.0517883,0.0542297,0.0621338,0.0726013,0.0852051,0.0985718,0.110596,0.118469,0.121643,0.118896,0.112854,0.105652,0.0988464,0.0943298,0.0927734,0.0937805,0.099762,0.108612,0.119324,0.129913,0.137665,0.140991,0.140076,0.13382,0.124023,0.112,0.0980835,0.0821533,0.0672607,0.0533142,0.0412903,0.0313721,0.0202026,0.00857544,-0.00582886,-0.0246277,-0.0460815,-0.0718384,-0.0990601,-0.125763,-0.150482,-0.171509,-0.188446,-0.19928,-0.202728,-0.198364,-0.188477,-0.17453,-0.158783,-0.144135,-0.129578,-0.11792,-0.107056,-0.0982666,-0.0910339,-0.0839844,-0.0764771,-0.0673218,-0.056488,-0.0420532,-0.0254822,-0.00640869,0.0126648,0.0314636,0.0485229,0.063385,0.074707,0.0830688,0.0873718,0.088501,0.0868835,0.0840149,0.0807495,0.0769043,0.0731506,0.069519,0.0653687,0.061615,0.0574036,0.0535889,0.0485229,0.0438843,0.0391846,0.0352478,0.0335693,0.0341187,0.0376892,0.0413513,0.0481873,0.0549316,0.0621948,0.0705566,0.0776672,0.083374,0.0879211,0.0895691,0.0908203,0.0904846,0.0891418,0.0884399,0.086792,0.0849915,0.0814819,0.0784912,0.0747681,0.071106,0.0666809,0.0608521,0.0525513,0.0410156,0.0270996,0.0115356,-0.00491333,-0.0222168,-0.0401001,-0.0579529,-0.0739441,-0.0870972,-0.0956116,-0.101227,-0.103394,-0.104248,-0.102692,-0.099762,-0.095459,-0.0904541,-0.0861816,-0.0826721,-0.0796204,-0.0766602,-0.0730896,-0.0675354,-0.06073,-0.0523376,-0.0445862,-0.0361633,-0.028717,-0.0206909,-0.0129395,-0.00787354,-0.00436401,-0.00448608,-0.00604248,-0.00872803,-0.0130005,-0.0175171,-0.0227356,-0.0293884,-0.035675,-0.0432739,-0.0506592,-0.0585938,-0.0669556,-0.0777893,-0.0899658,-0.104614,-0.118958,-0.133575,-0.145355,-0.15625,-0.164062,-0.170532,-0.174957,-0.177063,-0.175171,-0.170746,-0.162659,-0.15387,-0.146179,-0.139008,-0.132599,-0.12262,-0.107849,-0.0880127,-0.0639648,-0.0350952,-0.00119019,0.0393372,0.0837708,0.131073,0.173187,0.206207,0.225525,0.234344,0.233765,0.223633,0.202454,0.170929,0.134735,0.0986328,0.0697327,0.050293,0.0418396,0.0415039,0.0462952,0.0544434,0.0652161,0.0765381,0.0863953,0.0906677,0.0879517,0.0773926,0.0617065,0.0453796,0.0313721,0.0236206,0.0217896,0.0259705,0.0367126,0.0538025,0.0755005,0.0992432,0.120667,0.13681,0.146332,0.148285,0.145264,0.136963,0.124512,0.109833,0.092865,0.077179,0.0625305,0.050354,0.0383301,0.0244751,0.00842285,-0.013031,-0.0376282,-0.0668335,-0.0989075,-0.132202,-0.163696,-0.192535,-0.215973,-0.2323,-0.241241,-0.240387,-0.231659,-0.216583,-0.197876,-0.178314,-0.159393,-0.142242,-0.125854,-0.112061,-0.0980835,-0.0856934,-0.0724487,-0.05896,-0.0422058,-0.0220337,0.00286865,0.0289307,0.0571899,0.0839844,0.108887,0.130157,0.146545,0.157806,0.163086,0.162079,0.155975,0.146057,0.134644,0.121857,0.108398,0.0946045,0.0810242,0.067749,0.0556641,0.045105,0.0358582,0.0279846,0.0209656,0.0163269,0.013092,0.0131531,0.0158997,0.0211792,0.0271606,0.0336914,0.0402527,0.0461426,0.0526123,0.0585327,0.0645752,0.0708923,0.0768127,0.0827332,0.0877075,0.0922241,0.0967102,0.101166,0.103851,0.105591,0.103119,0.0969543,0.0863953,0.0747986,0.0612183,0.0453796,0.0264587,0.00527954,-0.018158,-0.0429077,-0.0657654,-0.0871582,-0.104767,-0.120026,-0.13147,-0.140259,-0.144348,-0.144836,-0.140625,-0.133453,-0.124359,-0.114227,-0.105469,-0.0957947,-0.0872498,-0.0776672,-0.0696411,-0.0600891,-0.0508423,-0.0397339,-0.0284729,-0.0164795,-0.00662231,0.00128174,0.00759888,0.0118713,0.0140076,0.0128174,0.00793457,-0.00119019,-0.0125122,-0.027771,-0.0441589,-0.0623474,-0.0826721,-0.103149,-0.124512,-0.144562,-0.163422,-0.179596,-0.19339,-0.204376,-0.213928,-0.22168,-0.227417,-0.228638,-0.224213,-0.216522,-0.206818,-0.194366,-0.177124,-0.153656,-0.12207,-0.0794373,-0.0285645,0.0283508,0.0865479,0.144562,0.199097,0.245605,0.279205,0.296082,0.3013,0.293152,0.26944,0.232574,0.187408,0.143707,0.106842,0.0812683,0.0651245,0.059021,0.0577698,0.061676,0.0673828,0.0729675,0.074646,0.0697327,0.0572815,0.0375671,0.0126648,-0.0136414,-0.0358887,-0.0493164,-0.0531006,-0.0454407,-0.0278625,-0.00183105,0.0298157,0.0662537,0.100403,0.13092,0.15387,0.168213,0.175781,0.175812,0.169037,0.155823,0.140564,0.125,0.111084,0.0985413,0.0857544,0.0704346,0.0513611,0.0272217,-0.00134277,-0.0335388,-0.0692749,-0.108215,-0.149139,-0.189453,-0.225403,-0.255005,-0.275574,-0.287231,-0.287506,-0.279633,-0.265839,-0.247131,-0.226746,-0.203674,-0.179932,-0.156647,-0.134094,-0.111786,-0.0901184,-0.0681763,-0.0443115,-0.0183716,0.0119019,0.0447998,0.079834,0.11319,0.146606,0.175171,0.198822,0.214844,0.224121,0.226044,0.219757,0.20697,0.189667,0.167694,0.144226,0.11972,0.0944214,0.0722656,0.0512695,0.0328674,0.0162354,0.00238037,-0.00942993,-0.0174561,-0.0238342,-0.0263977,-0.0254822,-0.0227966,-0.0178528,-0.0118103,-0.00463867,0.00668335,0.0209045,0.0367737,0.0535889,0.0694885,0.0863342,0.101593,0.117767,0.131195,0.141327,0.146118,0.145325,0.140289,0.133179,0.124176,0.11261,0.0962219,0.077179,0.0554504,0.0329895,0.00942993,-0.0158386,-0.0446777,-0.0743408,-0.103485,-0.130066,-0.153412,-0.172546,-0.186218,-0.193726,-0.194366,-0.188873,-0.177612,-0.162933,-0.146027,-0.129211,-0.11261,-0.0979309,-0.0832825,-0.0697021,-0.0559082,-0.043457,-0.0317383,-0.0201721,-0.00817871,0.00360107,0.0142822,0.0215454,0.0249023,0.0240784,0.0184937,0.00704956,-0.0103455,-0.0330811,-0.0592346,-0.0866699,-0.113739,-0.140747,-0.166595,-0.191925,-0.216309,-0.237854,-0.252838,-0.261566,-0.264374,-0.26474,-0.262909,-0.255798,-0.240112,-0.211731,-0.166779,-0.107208,-0.0385437,0.0310059,0.0985413,0.163422,0.221863,0.269867,0.30307,0.320984,0.320587,0.302551,0.270752,0.233704,0.198669,0.171387,0.155121,0.147644,0.14682,0.150391,0.15625,0.163208,0.166809,0.162781,0.146667,0.117188,0.0780334,0.0303345,-0.0175781,-0.0637207,-0.100311,-0.124298,-0.131897,-0.12381,-0.102295,-0.0713196,-0.0344543,0.0062561,0.0438843,0.0763245,0.100677,0.114594,0.119232,0.113312,0.101166,0.0864563,0.0750427,0.067749,0.0654297,0.0649414,0.0614319,0.0555115,0.0441589,0.0279846,0.00726318,-0.019928,-0.0550842,-0.0967407,-0.140137,-0.182343,-0.21701,-0.243958,-0.260498,-0.268219,-0.266754,-0.261047,-0.24939,-0.234528,-0.217804,-0.200134,-0.183472,-0.167358,-0.151886,-0.135193,-0.116302,-0.0930786,-0.0644226,-0.0291748,0.012085,0.056427,0.10321,0.148285,0.190491,0.224701,0.250366,0.267517,0.274231,0.273743,0.263794,0.248047,0.228271,0.205261,0.181854,0.160889,0.140503,0.122772,0.105103,0.0882874,0.0713196,0.0555115,0.0400085,0.0261841,0.0121155,0.000579834,-0.0111084,-0.0214539,-0.029541,-0.0333557,-0.0319519,-0.0244141,-0.0133057,0.000976562,0.0179443,0.0357361,0.0556641,0.0755005,0.093689,0.107788,0.116272,0.119232,0.117615,0.112762,0.104553,0.0951843,0.0818787,0.0664062,0.0469971,0.0267334,0.00357056,-0.0234375,-0.0530396,-0.0844116,-0.115387,-0.14444,-0.171661,-0.193024,-0.207306,-0.21286,-0.211975,-0.205688,-0.195557,-0.183594,-0.169617,-0.157227,-0.14743,-0.140076,-0.13443,-0.12796,-0.119049,-0.108215,-0.09552,-0.0814514,-0.0646667,-0.047821,-0.0311584,-0.0180969,-0.00949097,-0.00634766,-0.0085144,-0.0172424,-0.0326233,-0.0539551,-0.0795593,-0.106384,-0.135132,-0.163757,-0.188385,-0.205139,-0.213165,-0.21582,-0.210327,-0.196198,-0.169525,-0.127106,-0.0676575,0.0032959,0.0716858,0.129669,0.175079,0.213104,0.244263,0.264526,0.267395,0.252045,0.220184,0.183136,0.149719,0.128662,0.123047,0.131134,0.147247,0.168121,0.190643,0.213776,0.23645,0.251343,0.251221,0.231659,0.194092,0.146332,0.0951843,0.045929,0.00344849,-0.0321655,-0.0578918,-0.0690308,-0.0654907,-0.0500793,-0.02948,-0.00900269,0.00830078,0.0227966,0.0337524,0.0383301,0.0358887,0.0274353,0.0129395,-0.00296021,-0.0174561,-0.0266113,-0.0297546,-0.0281372,-0.026886,-0.0286255,-0.0339966,-0.0411682,-0.0524292,-0.065155,-0.0839233,-0.107483,-0.135406,-0.165741,-0.193024,-0.212799,-0.224487,-0.22702,-0.224701,-0.218079,-0.207672,-0.195374,-0.180298,-0.165802,-0.151672,-0.141327,-0.134521,-0.128723,-0.123688,-0.113251,-0.0971375,-0.0750427,-0.046936,-0.0122986,0.0280762,0.0714722,0.115997,0.157928,0.195221,0.224487,0.244598,0.254608,0.257812,0.252472,0.242004,0.225555,0.207184,0.188232,0.172272,0.15918,0.150269,0.142517,0.135925,0.128448,0.120667,0.11261,0.104187,0.0924377,0.0775757,0.0603027,0.0423584,0.0259399,0.0128174,0.00448608,0.00198364,0.00442505,0.0093689,0.0164795,0.0263062,0.0357361,0.0464172,0.0551453,0.0604248,0.0611267,0.0572815,0.0496521,0.0405273,0.0325012,0.0258789,0.0188599,0.00949097,-0.00357056,-0.0187683,-0.0369263,-0.0545959,-0.0755005,-0.0989075,-0.124237,-0.148071,-0.169189,-0.18219,-0.187531,-0.186768,-0.181366,-0.173492,-0.163788,-0.154114,-0.145813,-0.140839,-0.140961,-0.144623,-0.149994,-0.155487,-0.158997,-0.160553,-0.160309,-0.158356,-0.151886,-0.141541,-0.128052,-0.116272,-0.108917,-0.108276,-0.113342,-0.124298,-0.138733,-0.155243,-0.172852,-0.189789,-0.200287,-0.199738,-0.185028,-0.15329,-0.10321,-0.0385437,0.0398865,0.123901,0.201965,0.264008,0.305389,0.32782,0.333588,0.322266,0.289276,0.236786,0.17392,0.114471,0.0708313,0.0490417,0.050354,0.0681763,0.0940552,0.12677,0.16272,0.199585,0.229828,0.24469,0.238983,0.211121,0.166565,0.115448,0.0662537,0.0253906,-0.00479126,-0.0220032,-0.0247803,-0.011261,0.0173035,0.0554504,0.0939941,0.123108,0.141174,0.147369,0.143311,0.127899,0.102936,0.0686035,0.0327148,-0.00106812,-0.0260315,-0.0414429,-0.0491028,-0.054657,-0.0623474,-0.0739441,-0.0894775,-0.108459,-0.130859,-0.157074,-0.186066,-0.216675,-0.246368,-0.270966,-0.285553,-0.289825,-0.281738,-0.265991,-0.246063,-0.223145,-0.199707,-0.174255,-0.151031,-0.129791,-0.111572,-0.0975647,-0.0861206,-0.0754089,-0.0614014,-0.0429993,-0.0192871,0.00979614,0.0418396,0.0768738,0.111694,0.145355,0.174744,0.198364,0.214966,0.223907,0.224884,0.218872,0.207611,0.19281,0.176025,0.158142,0.140747,0.126068,0.114044,0.105255,0.0993347,0.0956726,0.092865,0.0926514,0.0932007,0.0956116,0.0984802,0.099884,0.0970764,0.092804,0.0873108,0.0837708,0.0825806,0.0828552,0.0845032,0.0865479,0.088623,0.0903931,0.0906067,0.0899048,0.0863342,0.079071,0.0674133,0.0500793,0.031311,0.0109863,-0.00701904,-0.0238647,-0.0384827,-0.0540161,-0.0713196,-0.0910339,-0.111847,-0.132202,-0.152252,-0.174042,-0.194031,-0.211945,-0.222076,-0.224915,-0.219421,-0.207672,-0.191406,-0.173492,-0.15506,-0.139008,-0.127747,-0.120148,-0.11853,-0.122253,-0.129242,-0.138947,-0.147034,-0.153351,-0.156586,-0.157654,-0.155731,-0.151733,-0.146027,-0.141388,-0.142334,-0.150635,-0.166016,-0.186859,-0.205994,-0.21933,-0.22702,-0.223083,-0.203308,-0.160614,-0.0962219,-0.0133057,0.0809631,0.176147,0.259033,0.321503,0.362366,0.381927,0.380859,0.353485,0.301514,0.234528,0.165314,0.110321,0.0781555,0.0714111,0.0826416,0.10553,0.138947,0.178894,0.221588,0.256409,0.273438,0.264709,0.22934,0.175446,0.112701,0.0493164,-0.00717163,-0.0527649,-0.081665,-0.0911865,-0.0802002,-0.0490417,-0.00286865,0.0484009,0.0932922,0.125,0.141266,0.142303,0.12851,0.0999451,0.0609741,0.0180664,-0.0202637,-0.0480347,-0.0611267,-0.0631714,-0.0585938,-0.0539551,-0.0526733,-0.0568542,-0.0683899,-0.0884094,-0.117126,-0.155273,-0.197968,-0.240448,-0.278503,-0.305115,-0.318115,-0.316376,-0.300812,-0.278076,-0.249084,-0.21814,-0.184998,-0.154846,-0.129517,-0.111725,-0.0996704,-0.0910339,-0.0818787,-0.0676575,-0.0463562,-0.0176392,0.0189819,0.0591736,0.103638,0.148102,0.190918,0.228577,0.256683,0.274841,0.282288,0.281891,0.272308,0.259674,0.242981,0.224701,0.205292,0.186554,0.170013,0.154633,0.139862,0.126282,0.112427,0.0994873,0.088562,0.0795593,0.0737915,0.0717468,0.0706177,0.0706482,0.0704956,0.0708313,0.0733643,0.0775757,0.0834961,0.0886536,0.0913086,0.0926514,0.091095,0.0891418,0.0857544,0.0801086,0.0694885,0.0534668,0.0335388,0.012085,-0.00793457,-0.0246887,-0.0375671,-0.0499573,-0.064209,-0.0821533,-0.103149,-0.124664,-0.14743,-0.173248,-0.201965,-0.22998,-0.253479,-0.267242,-0.272522,-0.269073,-0.258392,-0.243042,-0.224884,-0.207184,-0.191071,-0.17981,-0.173401,-0.172485,-0.175934,-0.18158,-0.185577,-0.187469,-0.186981,-0.184509,-0.181091,-0.175537,-0.16861,-0.162628,-0.160126,-0.165039,-0.177429,-0.189606,-0.197266,-0.193542,-0.17453,-0.136414,-0.0789185,-0.00241089,0.0873718,0.183594,0.2742,0.347656,0.400269,0.430969,0.436859,0.411835,0.35611,0.280884,0.201202,0.131622,0.083374,0.0613403,0.0631714,0.0823669,0.118378,0.166321,0.22168,0.272614,0.305603,0.312408,0.289764,0.241211,0.175781,0.104095,0.0354004,-0.0256042,-0.0718079,-0.0984192,-0.103638,-0.084198,-0.0445862,0.00680542,0.0575562,0.098999,0.129089,0.143219,0.13858,0.111938,0.0674133,0.0135803,-0.0409241,-0.0880127,-0.121277,-0.140045,-0.148071,-0.148926,-0.146057,-0.142303,-0.140839,-0.144928,-0.158417,-0.181641,-0.214294,-0.250946,-0.286469,-0.314453,-0.330078,-0.331757,-0.319397,-0.297577,-0.268433,-0.234406,-0.19754,-0.162079,-0.130646,-0.105957,-0.0875244,-0.0740662,-0.0613403,-0.0452271,-0.0228577,0.00701904,0.043457,0.0838623,0.126556,0.170807,0.212311,0.248413,0.274994,0.291107,0.297424,0.295166,0.285461,0.270996,0.254456,0.237335,0.220398,0.205048,0.192108,0.181213,0.17157,0.160248,0.151123,0.140747,0.131561,0.12262,0.116302,0.111694,0.10968,0.108765,0.110107,0.112213,0.115387,0.117767,0.119293,0.118835,0.115448,0.110657,0.102844,0.0924988,0.0782166,0.060791,0.0396729,0.0157471,-0.0085144,-0.0343323,-0.058197,-0.0794983,-0.0969238,-0.111298,-0.127106,-0.143158,-0.161102,-0.179321,-0.199585,-0.221039,-0.242645,-0.263092,-0.278076,-0.285461,-0.284363,-0.274994,-0.259216,-0.240662,-0.220673,-0.20282,-0.187988,-0.177124,-0.171356,-0.170807,-0.175934,-0.184021,-0.192963,-0.200623,-0.206177,-0.210968,-0.210632,-0.212189,-0.215332,-0.220825,-0.227875,-0.233215,-0.232422,-0.221863,-0.196289,-0.151398,-0.0844727,-0.00216675,0.0913086,0.192688,0.290741,0.374115,0.433777,0.467377,0.474854,0.452606,0.401398,0.328674,0.249115,0.174835,0.12204,0.0939941,0.0935059,0.114044,0.151398,0.202667,0.259949,0.312469,0.347382,0.353149,0.326202,0.270844,0.197754,0.118256,0.0413513,-0.0262451,-0.0787354,-0.108459,-0.116638,-0.10025,-0.0640259,-0.0130005,0.0397339,0.0830994,0.112823,0.126404,0.123444,0.102356,0.0629578,0.0134888,-0.0392456,-0.0874329,-0.126068,-0.153168,-0.170258,-0.180878,-0.18634,-0.188873,-0.190918,-0.194244,-0.203369,-0.219208,-0.242126,-0.268158,-0.294037,-0.314087,-0.32605,-0.327454,-0.318481,-0.301636,-0.279907,-0.253601,-0.224976,-0.194672,-0.166992,-0.142517,-0.122253,-0.10434,-0.0863342,-0.0645142,-0.0355835,0.00146484,0.0458679,0.0949097,0.145203,0.194794,0.240173,0.278778,0.306732,0.322632,0.327881,0.322479,0.310577,0.293579,0.274567,0.256561,0.239807,0.224121,0.213013,0.203857,0.196991,0.189575,0.182678,0.174805,0.166382,0.157318,0.147949,0.139771,0.132538,0.125,0.118042,0.11145,0.107056,0.104675,0.103119,0.101807,0.0992432,0.0953064,0.0901184,0.0807495,0.0662842,0.0454407,0.0196228,-0.00979614,-0.0398254,-0.0687866,-0.0951233,-0.120026,-0.143524,-0.163849,-0.17981,-0.192963,-0.204865,-0.219147,-0.235809,-0.25354,-0.270508,-0.282593,-0.288971,-0.289398,-0.286194,-0.278168,-0.266144,-0.248383,-0.228088,-0.207123,-0.19043,-0.179382,-0.174194,-0.173187,-0.173767,-0.178192,-0.185913,-0.195221,-0.2052,-0.215759,-0.22702,-0.238617,-0.248535,-0.256348,-0.257843,-0.247131,-0.220276,-0.174744,-0.106171,-0.0205994,0.07901,0.18454,0.291504,0.386719,0.460571,0.507965,0.526764,0.513947,0.469208,0.399078,0.315033,0.23053,0.158508,0.110321,0.090271,0.0968628,0.125427,0.172699,0.232208,0.295898,0.347656,0.374451,0.368073,0.328888,0.26297,0.180847,0.0927734,0.00732422,-0.0668945,-0.119537,-0.148163,-0.14859,-0.124176,-0.0783691,-0.0240784,0.0283508,0.0717468,0.101379,0.114441,0.105652,0.0768127,0.0315247,-0.0209656,-0.0747681,-0.122131,-0.158478,-0.184387,-0.202026,-0.214142,-0.220886,-0.223907,-0.22583,-0.229675,-0.239258,-0.253601,-0.272827,-0.291931,-0.307648,-0.317474,-0.317352,-0.308197,-0.292023,-0.270966,-0.246368,-0.2211,-0.195984,-0.173981,-0.156799,-0.141968,-0.128876,-0.111511,-0.0887146,-0.0547485,-0.0115356,0.040741,0.0978699,0.157074,0.215393,0.269012,0.313263,0.344757,0.36087,0.363068,0.353912,0.33725,0.315948,0.293854,0.272736,0.253662,0.237152,0.22464,0.215912,0.209991,0.20575,0.201965,0.19754,0.193604,0.187744,0.179535,0.169342,0.156403,0.140778,0.124786,0.109375,0.0976257,0.0905457,0.0870361,0.0853882,0.081604,0.0750732,0.0666809,0.0556641,0.040802,0.0211792,-0.00473022,-0.0374146,-0.0744324,-0.10791,-0.135284,-0.155457,-0.173981,-0.194458,-0.215607,-0.234467,-0.250214,-0.26358,-0.277252,-0.292999,-0.310455,-0.325287,-0.333527,-0.331818,-0.321472,-0.303986,-0.283356,-0.259735,-0.235809,-0.210358,-0.187286,-0.170044,-0.16153,-0.162628,-0.168823,-0.181305,-0.19397,-0.208527,-0.223938,-0.241364,-0.257538,-0.268311,-0.271332,-0.26593,-0.250214,-0.220886,-0.171295,-0.0993347,-0.00921631,0.0927734,0.202332,0.312347,0.413239,0.494629,0.551056,0.577576,0.568817,0.524445,0.451416,0.363831,0.275635,0.199219,0.14386,0.113556,0.111725,0.135284,0.184448,0.249329,0.31897,0.376648,0.407806,0.406891,0.370392,0.307404,0.222656,0.127319,0.0296326,-0.056427,-0.122772,-0.162445,-0.173248,-0.155884,-0.115356,-0.0614319,-0.00653076,0.0423584,0.0791931,0.0976257,0.0914612,0.0628052,0.0150452,-0.0426331,-0.102142,-0.157379,-0.202667,-0.238708,-0.265076,-0.283875,-0.292572,-0.295166,-0.293427,-0.292877,-0.295868,-0.303253,-0.312134,-0.321686,-0.328308,-0.328827,-0.322418,-0.309387,-0.291595,-0.269379,-0.245605,-0.217529,-0.191833,-0.167084,-0.146332,-0.12796,-0.108063,-0.0847778,-0.0536804,-0.0137024,0.0336304,0.0866089,0.143494,0.200195,0.255432,0.305542,0.345398,0.372833,0.387604,0.388123,0.380737,0.366302,0.349335,0.330933,0.313049,0.297272,0.283508,0.273987,0.267029,0.261353,0.254089,0.244171,0.233398,0.220184,0.207092,0.191559,0.176575,0.159637,0.143311,0.127533,0.113251,0.101074,0.0916443,0.0823975,0.0736694,0.0632629,0.0496826,0.0347595,0.0154114,-0.00653076,-0.0335388,-0.0632629,-0.094696,-0.126068,-0.154907,-0.17868,-0.198364,-0.214081,-0.229767,-0.243896,-0.257629,-0.273376,-0.290833,-0.310455,-0.330933,-0.350189,-0.364136,-0.370605,-0.368774,-0.356537,-0.336823,-0.309753,-0.277893,-0.243134,-0.209991,-0.180725,-0.159698,-0.147034,-0.145813,-0.152222,-0.166077,-0.185364,-0.207458,-0.232086,-0.254364,-0.271484,-0.282013,-0.284546,-0.276825,-0.253387,-0.209839,-0.139008,-0.0420532,0.0714111,0.190094,0.307404,0.417786,0.516479,0.590912,0.63797,0.648895,0.617249,0.546478,0.454956,0.358154,0.268097,0.19339,0.140625,0.114227,0.117493,0.148712,0.207611,0.280823,0.35202,0.401337,0.419434,0.401703,0.350281,0.272247,0.174957,0.0686035,-0.0362854,-0.128174,-0.1922,-0.22406,-0.222809,-0.19339,-0.144226,-0.0834351,-0.0222168,0.0341187,0.0761719,0.0946045,0.0847168,0.0490417,-0.00280762,-0.0638123,-0.125427,-0.181488,-0.22757,-0.267303,-0.297913,-0.319611,-0.329224,-0.330688,-0.325928,-0.322815,-0.322144,-0.325012,-0.329712,-0.332397,-0.32959,-0.321838,-0.310242,-0.296509,-0.280823,-0.262665,-0.240662,-0.216187,-0.191772,-0.170471,-0.14859,-0.126068,-0.0986938,-0.0632629,-0.0193481,0.033783,0.0927734,0.155609,0.219208,0.281311,0.335846,0.378815,0.408508,0.422516,0.423859,0.413361,0.397552,0.379333,0.359833,0.340759,0.324158,0.310181,0.299957,0.291595,0.285828,0.277588,0.266052,0.250366,0.231293,0.210327,0.187042,0.163269,0.141052,0.120026,0.102142,0.0880127,0.0791931,0.0758362,0.0745544,0.0720215,0.0673218,0.0572815,0.0428467,0.022522,-0.00259399,-0.0317993,-0.0655518,-0.102509,-0.139801,-0.172699,-0.199219,-0.217529,-0.231873,-0.243134,-0.253967,-0.263672,-0.273926,-0.286377,-0.3013,-0.318329,-0.336273,-0.353302,-0.365448,-0.369629,-0.365021,-0.350983,-0.330414,-0.303955,-0.273651,-0.241943,-0.210358,-0.182617,-0.161255,-0.149414,-0.145905,-0.1492,-0.15863,-0.172791,-0.193024,-0.217377,-0.242615,-0.264526,-0.279144,-0.281616,-0.26889,-0.234406,-0.175171,-0.0913696,0.0171814,0.142609,0.276947,0.408356,0.524872,0.613708,0.671173,0.692841,0.671844,0.609985,0.516144,0.406464,0.295959,0.197815,0.126404,0.0861816,0.0814819,0.107208,0.159882,0.231598,0.308136,0.373199,0.4104,0.412292,0.372986,0.299835,0.203094,0.0953064,-0.0114746,-0.105804,-0.178558,-0.221893,-0.231293,-0.207123,-0.159119,-0.0956116,-0.0294189,0.0303345,0.0756226,0.0991211,0.0949707,0.0655823,0.016449,-0.0452881,-0.111847,-0.173065,-0.224335,-0.264801,-0.295746,-0.317261,-0.329498,-0.33429,-0.333221,-0.330902,-0.3284,-0.328033,-0.330414,-0.334167,-0.334137,-0.329224,-0.316986,-0.300446,-0.282288,-0.261292,-0.240723,-0.217255,-0.194153,-0.171783,-0.148804,-0.123322,-0.0950928,-0.0596008,-0.0155334,0.0380554,0.0990601,0.163086,0.225403,0.284363,0.334351,0.374451,0.40097,0.414703,0.415405,0.405914,0.390564,0.373901,0.358063,0.343292,0.330902,0.31958,0.309448,0.298706,0.287384,0.272797,0.253876,0.231232,0.204987,0.178528,0.152802,0.130768,0.113464,0.100372,0.0904541,0.0842896,0.0789185,0.0750427,0.0713501,0.0668335,0.0613403,0.0534668,0.0400085,0.0205994,-0.00469971,-0.0327759,-0.0619812,-0.0896301,-0.114807,-0.138092,-0.159271,-0.179047,-0.195862,-0.20752,-0.217865,-0.22995,-0.24884,-0.273438,-0.302063,-0.328186,-0.349854,-0.365723,-0.374969,-0.376648,-0.368896,-0.348145,-0.317474,-0.279694,-0.24173,-0.207947,-0.180298,-0.158783,-0.142883,-0.134155,-0.132599,-0.139771,-0.15152,-0.163269,-0.174164,-0.181091,-0.188477,-0.199799,-0.215637,-0.230042,-0.233124,-0.219635,-0.188812,-0.1409,-0.0722351,0.015686,0.123901,0.250427,0.383942,0.503967,0.593597,0.649536,0.67099,0.655304,0.598999,0.506378,0.391052,0.26886,0.15799,0.0749817,0.0291138,0.0214539,0.047699,0.103333,0.179443,0.263153,0.33725,0.385162,0.39444,0.360535,0.287598,0.187531,0.0765991,-0.0319519,-0.127686,-0.201141,-0.246704,-0.25769,-0.231323,-0.17453,-0.100525,-0.0270691,0.0375061,0.0868835,0.114685,0.114532,0.086792,0.0372314,-0.0270691,-0.0968018,-0.162933,-0.216949,-0.259247,-0.287659,-0.306305,-0.314728,-0.316132,-0.312836,-0.307861,-0.303009,-0.299469,-0.297852,-0.299469,-0.300537,-0.296722,-0.286102,-0.269165,-0.250427,-0.231506,-0.212585,-0.191986,-0.170532,-0.14978,-0.126831,-0.101379,-0.0731506,-0.0395203,0.00146484,0.0534668,0.113525,0.176025,0.237854,0.292999,0.340149,0.37326,0.394592,0.403015,0.398438,0.385071,0.364838,0.34613,0.328888,0.315094,0.303986,0.294678,0.286255,0.277527,0.266754,0.252838,0.232422,0.207672,0.178192,0.14682,0.115997,0.0881653,0.0668945,0.0521851,0.0445251,0.0426331,0.045105,0.0493774,0.0528259,0.0552063,0.0534058,0.0471191,0.0346985,0.0155334,-0.00802612,-0.0374146,-0.065918,-0.092804,-0.11734,-0.138641,-0.155731,-0.16806,-0.176453,-0.18277,-0.189178,-0.198456,-0.212463,-0.234741,-0.260925,-0.289764,-0.315308,-0.335266,-0.347595,-0.350128,-0.341675,-0.320709,-0.288574,-0.249237,-0.207458,-0.170471,-0.141876,-0.120575,-0.108459,-0.103119,-0.10553,-0.114929,-0.126709,-0.141174,-0.154572,-0.165955,-0.175659,-0.184448,-0.192596,-0.198822,-0.201202,-0.196899,-0.179749,-0.147308,-0.0941772,-0.0180969,0.079834,0.193054,0.314178,0.430176,0.526062,0.594147,0.632935,0.635803,0.596558,0.518951,0.412445,0.291809,0.174469,0.0782471,0.0151978,-0.0101929,-0.00436401,0.0314331,0.0922852,0.17038,0.250305,0.311798,0.340546,0.328156,0.276459,0.195984,0.0979309,-0.00350952,-0.0987549,-0.17807,-0.233856,-0.255768,-0.242767,-0.197906,-0.133667,-0.0626831,0.0022583,0.0565796,0.0951233,0.111511,0.102905,0.070282,0.0195618,-0.0425415,-0.104401,-0.155609,-0.195221,-0.224335,-0.247559,-0.265015,-0.277313,-0.28244,-0.283295,-0.282288,-0.281128,-0.282501,-0.284363,-0.285889,-0.279968,-0.266479,-0.248199,-0.228333,-0.208954,-0.19162,-0.175507,-0.15918,-0.142822,-0.123962,-0.103485,-0.0791931,-0.0503845,-0.013031,0.0344543,0.0922852,0.153931,0.214355,0.270477,0.317963,0.354126,0.377838,0.387207,0.385376,0.371918,0.351044,0.328827,0.309326,0.29425,0.281799,0.270782,0.260712,0.249664,0.238007,0.223785,0.205902,0.182709,0.15506,0.12326,0.0927124,0.065918,0.0462341,0.0323792,0.0257568,0.0239258,0.0263672,0.03125,0.0362854,0.0379028,0.0359497,0.0289917,0.0183411,0.00219727,-0.0151978,-0.0350952,-0.0544434,-0.0727539,-0.0884399,-0.0999451,-0.1091,-0.11615,-0.123322,-0.1315,-0.141693,-0.155762,-0.173065,-0.195831,-0.221954,-0.249939,-0.277588,-0.299561,-0.314819,-0.317841,-0.309692,-0.289185,-0.25882,-0.221893,-0.182556,-0.145691,-0.114319,-0.0916748,-0.0801086,-0.0778809,-0.0823975,-0.092865,-0.104889,-0.118591,-0.127686,-0.13382,-0.1362,-0.135498,-0.133667,-0.134003,-0.139069,-0.146393,-0.154053,-0.157715,-0.15274,-0.13443,-0.0964661,-0.0330811,0.0555725,0.163422,0.278442,0.388306,0.479218,0.544983,0.584442,0.591705,0.559601,0.483795,0.37558,0.250732,0.131622,0.0393066,-0.0197144,-0.045105,-0.0414429,-0.0121155,0.0417175,0.116577,0.196045,0.261902,0.294403,0.284119,0.233704,0.156525,0.0679626,-0.0209656,-0.104889,-0.1763,-0.229248,-0.251923,-0.239868,-0.194946,-0.130646,-0.0631104,-0.00323486,0.0438232,0.0804138,0.102417,0.103149,0.0820312,0.0405273,-0.0116272,-0.0630188,-0.103821,-0.13382,-0.157806,-0.181915,-0.205353,-0.227081,-0.24353,-0.251831,-0.254852,-0.256561,-0.259003,-0.260376,-0.259369,-0.249512,-0.230682,-0.206818,-0.184326,-0.166779,-0.156464,-0.150269,-0.143494,-0.135284,-0.124603,-0.110107,-0.0911865,-0.0639648,-0.0263062,0.0245667,0.0863953,0.153229,0.217926,0.275269,0.321075,0.354126,0.372772,0.377625,0.36911,0.347931,0.319946,0.291534,0.268372,0.252136,0.241028,0.231995,0.222656,0.212189,0.200226,0.187347,0.169891,0.146729,0.116913,0.0830688,0.049469,0.0210266,0.00128174,-0.00942993,-0.0122986,-0.0088501,-0.00247192,0.00695801,0.0167236,0.0244751,0.0280151,0.0243225,0.0142212,-0.00280762,-0.0218201,-0.0404358,-0.0553589,-0.0660706,-0.0709839,-0.0723877,-0.0705566,-0.0682373,-0.068573,-0.0733643,-0.0838013,-0.100159,-0.123474,-0.152008,-0.183807,-0.215332,-0.24469,-0.266541,-0.278137,-0.278351,-0.265198,-0.242218,-0.211273,-0.177856,-0.143097,-0.112549,-0.0854797,-0.0662842,-0.0555115,-0.0545349,-0.0610657,-0.0721741,-0.0842896,-0.0934753,-0.0981445,-0.0970764,-0.0918579,-0.0839844,-0.0765381,-0.0725403,-0.0752563,-0.0862427,-0.104462,-0.126892,-0.148499,-0.166595,-0.17392,-0.165375,-0.133453,-0.0731506,0.0132446,0.119293,0.234955,0.343018,0.429626,0.488342,0.520996,0.521973,0.486877,0.412659,0.308563,0.190002,0.0785217,-0.00772095,-0.0576172,-0.0740662,-0.0638733,-0.0313721,0.0216675,0.0923157,0.167145,0.228546,0.257812,0.248047,0.201599,0.131775,0.0510559,-0.0306702,-0.106018,-0.172058,-0.220764,-0.243683,-0.233551,-0.192139,-0.130554,-0.0657043,-0.00683594,0.0432129,0.0863037,0.117279,0.132385,0.127899,0.103851,0.0627441,0.0169678,-0.0250549,-0.06073,-0.0935669,-0.128326,-0.163788,-0.196899,-0.220123,-0.232635,-0.235229,-0.230103,-0.221741,-0.212799,-0.202057,-0.188873,-0.17215,-0.155884,-0.146057,-0.144562,-0.151184,-0.162506,-0.171936,-0.176941,-0.172699,-0.156738,-0.129089,-0.090271,-0.0398865,0.0215454,0.0921021,0.162415,0.22821,0.281036,0.319153,0.339447,0.343781,0.334869,0.316223,0.289764,0.260498,0.233612,0.214355,0.204559,0.201324,0.200195,0.198578,0.192413,0.182281,0.166718,0.146667,0.119995,0.0887756,0.0525513,0.0167236,-0.0136414,-0.0339966,-0.0422974,-0.040802,-0.0313721,-0.0195007,-0.0045166,0.009552,0.0202637,0.0272217,0.026886,0.018219,0.00335693,-0.0137024,-0.0281982,-0.0372925,-0.0413513,-0.040863,-0.0372009,-0.0329285,-0.0286255,-0.0256042,-0.0270996,-0.0355835,-0.053833,-0.0819702,-0.114532,-0.146393,-0.175171,-0.197876,-0.215485,-0.227631,-0.229187,-0.219696,-0.197693,-0.16864,-0.138245,-0.111511,-0.0902405,-0.0742188,-0.0599976,-0.0487366,-0.0411682,-0.0396729,-0.0449524,-0.0511475,-0.0574036,-0.0588684,-0.0570679,-0.0527649,-0.0493164,-0.0472717,-0.0456543,-0.0453796,-0.0479126,-0.059021,-0.0785217,-0.107574,-0.13913,-0.170258,-0.194244,-0.207581,-0.208923,-0.191132,-0.148926,-0.0804138,0.0118713,0.118134,0.225128,0.31665,0.38501,0.432709,0.455627,0.447754,0.402893,0.324677,0.222107,0.114105,0.0214539,-0.0425415,-0.074585,-0.0803223,-0.0643616,-0.0272827,0.030304,0.100525,0.167999,0.214478,0.228699,0.205475,0.153625,0.084259,0.00866699,-0.0650024,-0.133392,-0.189819,-0.224823,-0.230255,-0.201599,-0.14505,-0.0745544,-0.00344849,0.0611267,0.118317,0.163086,0.190643,0.195435,0.175812,0.134583,0.0801392,0.0247498,-0.0242615,-0.065918,-0.103271,-0.135925,-0.162628,-0.178619,-0.182495,-0.177124,-0.16629,-0.154541,-0.147888,-0.147369,-0.150543,-0.157013,-0.165466,-0.178406,-0.194427,-0.211029,-0.224274,-0.228638,-0.220947,-0.200409,-0.16687,-0.122406,-0.0699768,-0.0139465,0.0455017,0.104553,0.158569,0.203583,0.237091,0.257629,0.265625,0.26239,0.252686,0.239594,0.226166,0.21344,0.202515,0.197174,0.195862,0.198029,0.199585,0.198181,0.190704,0.175293,0.15271,0.124451,0.0921631,0.0580444,0.0233459,-0.0101318,-0.0369873,-0.0557861,-0.0623474,-0.0579529,-0.0440369,-0.025177,-0.00408936,0.0154724,0.0306091,0.0399475,0.0424805,0.0360718,0.0216064,0.000579834,-0.0202637,-0.036377,-0.0415039,-0.0346069,-0.0190735,-0.00140381,0.0133057,0.022644,0.0263977,0.0234985,0.0132141,-0.00787354,-0.039032,-0.0804138,-0.125427,-0.163574,-0.189026,-0.199371,-0.198517,-0.192413,-0.178772,-0.158356,-0.129852,-0.0969543,-0.0681152,-0.0479126,-0.0406799,-0.040863,-0.0431213,-0.043335,-0.0426941,-0.0422668,-0.0446777,-0.0476074,-0.0471191,-0.040802,-0.0286865,-0.0160522,-0.00802612,-0.00695801,-0.0127869,-0.0201111,-0.0284729,-0.0420532,-0.064209,-0.0978394,-0.140503,-0.18515,-0.226257,-0.256897,-0.275818,-0.280609,-0.264587,-0.222076,-0.152008,-0.0560608,0.0577393,0.173279,0.277466,0.359039,0.418304,0.449463,0.447266,0.405853,0.327271,0.220184,0.103271,-0.000640869,-0.0737915,-0.112122,-0.121704,-0.108337,-0.0708313,-0.0106201,0.0690918,0.149261,0.21225,0.241913,0.232788,0.19043,0.12796,0.0588989,-0.0122375,-0.0811157,-0.141113,-0.184174,-0.199005,-0.181488,-0.13269,-0.0680847,-0.00128174,0.0614929,0.115997,0.161591,0.193176,0.206421,0.194641,0.160522,0.111786,0.0637207,0.0227051,-0.011322,-0.043396,-0.0750427,-0.10495,-0.128021,-0.143494,-0.150482,-0.155182,-0.160828,-0.169952,-0.181,-0.189026,-0.19281,-0.193329,-0.192841,-0.192627,-0.192596,-0.192139,-0.185425,-0.174042,-0.15506,-0.131561,-0.102997,-0.0713196,-0.0362244,0.00247192,0.0432739,0.0835876,0.121857,0.156464,0.184662,0.205566,0.217316,0.222931,0.224335,0.222107,0.217255,0.210815,0.205078,0.200409,0.197113,0.193329,0.186371,0.174164,0.15448,0.128326,0.0975647,0.0643005,0.029541,-0.00473022,-0.0367126,-0.0613403,-0.0765381,-0.0775146,-0.0671692,-0.0460815,-0.020813,0.00598145,0.0315247,0.052124,0.0669556,0.0724487,0.0675964,0.0504456,0.0257568,-0.00119019,-0.0250549,-0.0411682,-0.0479736,-0.0446167,-0.0327759,-0.0144348,0.00802612,0.0287781,0.0427551,0.0457458,0.0369263,0.0173035,-0.00997925,-0.0413818,-0.0730896,-0.103485,-0.131256,-0.152954,-0.162567,-0.160339,-0.147308,-0.129913,-0.111786,-0.0953064,-0.0795593,-0.0647888,-0.0509338,-0.0386963,-0.0299683,-0.0237732,-0.0189819,-0.0120239,-0.00268555,0.00796509,0.0164795,0.0209656,0.0198975,0.0140076,0.00357056,-0.00888062,-0.0227356,-0.0376892,-0.0549927,-0.0704346,-0.0863953,-0.101654,-0.119232,-0.140839,-0.16861,-0.199066,-0.231232,-0.262207,-0.28653,-0.301147,-0.295898,-0.263885,-0.202667,-0.118469,-0.0168152,0.0917358,0.195343,0.284912,0.358154,0.407471,0.420837,0.392883,0.328583,0.238403,0.134277,0.0370178,-0.0397339,-0.0884399,-0.10968,-0.104767,-0.0749817,-0.0204163,0.052002,0.127472,0.187775,0.219757,0.218994,0.188538,0.135925,0.0720215,0.00149536,-0.0692749,-0.130157,-0.171783,-0.185028,-0.16687,-0.122284,-0.0614929,0.00350952,0.0682983,0.129913,0.183594,0.222809,0.241241,0.238495,0.213074,0.172211,0.127258,0.0889282,0.0562134,0.0237122,-0.0105591,-0.0450134,-0.0762634,-0.100372,-0.118103,-0.132538,-0.148102,-0.164948,-0.18277,-0.197327,-0.20578,-0.208008,-0.209717,-0.209442,-0.209778,-0.207794,-0.202118,-0.190796,-0.175079,-0.154968,-0.131622,-0.105103,-0.0764771,-0.0431213,-0.00485229,0.0342712,0.0723877,0.107758,0.140259,0.169891,0.193604,0.211273,0.223022,0.227661,0.2258,0.218719,0.209991,0.199524,0.18692,0.171387,0.151398,0.127533,0.099823,0.0702209,0.0393372,0.0121155,-0.0134277,-0.0355835,-0.0519714,-0.0617065,-0.0614014,-0.0508728,-0.0323792,-0.00866699,0.0162354,0.0372925,0.0550232,0.0658569,0.0698547,0.0666199,0.0559387,0.0386353,0.0177307,-0.00247192,-0.0168152,-0.022583,-0.0180664,-0.00393677,0.0177307,0.0423584,0.0689392,0.0927734,0.110657,0.115356,0.102692,0.0721741,0.0280762,-0.0232849,-0.0738831,-0.117828,-0.150909,-0.173676,-0.185425,-0.184021,-0.166656,-0.134705,-0.0958862,-0.059021,-0.0334778,-0.0195618,-0.0166016,-0.0167236,-0.0202637,-0.0264587,-0.0349731,-0.0462341,-0.0545959,-0.0533142,-0.0405884,-0.0174561,0.00759888,0.0297546,0.0450745,0.0535889,0.0574036,0.0543213,0.0431213,0.0217896,-0.00863647,-0.0428467,-0.0763245,-0.106293,-0.134003,-0.164246,-0.200226,-0.239868,-0.278381,-0.307129,-0.329712,-0.346039,-0.354553,-0.34668,-0.314117,-0.254456,-0.168121,-0.063385,0.0498962,0.157715,0.250916,0.324524,0.379944,0.409424,0.402802,0.355103,0.274292,0.174957,0.0726013,-0.0134888,-0.0716248,-0.102478,-0.106995,-0.0897522,-0.0478516,0.0148315,0.0918579,0.165039,0.216309,0.23526,0.222382,0.182343,0.124725,0.0576172,-0.012085,-0.0766602,-0.128601,-0.161102,-0.163147,-0.132172,-0.0742798,-0.00393677,0.0687256,0.138641,0.203217,0.259369,0.296082,0.31015,0.299042,0.263824,0.211395,0.153778,0.100403,0.0513611,0.00289917,-0.0465088,-0.0921631,-0.128235,-0.15329,-0.166077,-0.172546,-0.175079,-0.176239,-0.178192,-0.181305,-0.181488,-0.181793,-0.185913,-0.195923,-0.210114,-0.224121,-0.233856,-0.236359,-0.231659,-0.216736,-0.193451,-0.161743,-0.122131,-0.0743408,-0.0210876,0.0344543,0.0851746,0.13028,0.166443,0.193237,0.208313,0.212738,0.209717,0.19931,0.184387,0.166656,0.150269,0.13739,0.127747,0.120575,0.114166,0.10495,0.0943298,0.0783691,0.0621338,0.0436707,0.0257568,0.00619507,-0.0122375,-0.027771,-0.035614,-0.0347595,-0.0247803,-0.00738525,0.0137329,0.0365295,0.0583801,0.0783691,0.095459,0.1073,0.110504,0.104736,0.0905457,0.0740662,0.0579834,0.04599,0.0393066,0.0395203,0.0429077,0.0498962,0.0576782,0.0656433,0.0707092,0.068512,0.056488,0.0346069,0.0017395,-0.0371399,-0.0793457,-0.119537,-0.153503,-0.177856,-0.191925,-0.193939,-0.18338,-0.163361,-0.136261,-0.105225,-0.0751343,-0.0497437,-0.0318604,-0.0217285,-0.0178528,-0.0176697,-0.0194092,-0.0203857,-0.0222168,-0.0209656,-0.015564,-0.00427246,0.0116882,0.0301819,0.0466919,0.0586548,0.0639343,0.0631104,0.0575256,0.0463562,0.0271606,6.10352e-05,-0.0344849,-0.0700684,-0.104675,-0.134155,-0.161438,-0.187531,-0.216309,-0.248169,-0.27951,-0.304626,-0.321075,-0.332062,-0.340057,-0.343567,-0.334839,-0.305725,-0.248383,-0.166077,-0.06604,0.0391235,0.138519,0.22757,0.302979,0.368988,0.415192,0.427643,0.399384,0.33374,0.246582,0.153412,0.072937,0.0125122,-0.0296326,-0.0562744,-0.0672607,-0.0519104,-0.00958252,0.0545044,0.1203,0.169617,0.190369,0.186127,0.162079,0.127197,0.083374,0.0311584,-0.0263672,-0.0812683,-0.120087,-0.131348,-0.112274,-0.069519,-0.0175781,0.035675,0.0895691,0.149567,0.211945,0.266144,0.300598,0.309052,0.290894,0.252991,0.208008,0.162292,0.113525,0.0566406,-0.00738525,-0.0718384,-0.128235,-0.169098,-0.195648,-0.212311,-0.223846,-0.23111,-0.236145,-0.235046,-0.229401,-0.220612,-0.217316,-0.220886,-0.231384,-0.243469,-0.251862,-0.254517,-0.24826,-0.235321,-0.213348,-0.182495,-0.142242,-0.0917358,-0.0348206,0.0250549,0.0804749,0.129517,0.170471,0.20163,0.223785,0.236023,0.240021,0.234253,0.221161,0.202667,0.18338,0.167145,0.152954,0.141327,0.128113,0.112701,0.0960999,0.0774536,0.0601501,0.0447388,0.0284119,0.0118103,-0.00527954,-0.0191345,-0.0263672,-0.0252686,-0.0152588,0.000579834,0.0185547,0.0378418,0.0567017,0.0755005,0.0929871,0.108185,0.116058,0.116272,0.107697,0.0953064,0.0821533,0.0710449,0.0624084,0.0563354,0.0499573,0.0445251,0.0396729,0.035675,0.0306702,0.0220032,0.00604248,-0.0179443,-0.0471497,-0.0783081,-0.109406,-0.137177,-0.159485,-0.176941,-0.186615,-0.188049,-0.178406,-0.160614,-0.136536,-0.111511,-0.0875854,-0.0668335,-0.0475464,-0.0308838,-0.0171814,-0.00695801,-0.000976562,0.00289917,0.00473022,0.00866699,0.0151367,0.0244751,0.0332642,0.0418701,0.0489807,0.0554199,0.0617676,0.0655518,0.0663452,0.0602112,0.0488281,0.0317993,0.0107117,-0.015564,-0.0446777,-0.07724,-0.112335,-0.146973,-0.178772,-0.20578,-0.228333,-0.246063,-0.259918,-0.269836,-0.276123,-0.277679,-0.27533,-0.272461,-0.270416,-0.265076,-0.248169,-0.213715,-0.158203,-0.0858765,-0.000915527,0.091095,0.182068,0.26474,0.341827,0.408447,0.450989,0.456055,0.418365,0.346405,0.250153,0.147888,0.0575562,-0.0192566,-0.0814819,-0.128448,-0.152527,-0.141174,-0.0952454,-0.0259399,0.0470581,0.104095,0.138855,0.151611,0.148163,0.130157,0.0968628,0.0487671,-0.00619507,-0.0586548,-0.0943298,-0.101593,-0.0820312,-0.0405884,0.00909424,0.0622559,0.125793,0.197449,0.267548,0.321289,0.347382,0.343231,0.31311,0.263367,0.207458,0.146027,0.077179,0.000549316,-0.0763855,-0.145264,-0.197662,-0.230469,-0.250305,-0.261688,-0.267303,-0.267822,-0.263672,-0.253265,-0.238831,-0.227356,-0.221741,-0.222809,-0.227173,-0.228546,-0.225464,-0.215698,-0.201416,-0.179382,-0.149261,-0.110321,-0.0646362,-0.0116882,0.0429077,0.0953979,0.141876,0.182404,0.21405,0.236145,0.246582,0.246796,0.238068,0.221039,0.198578,0.172974,0.147949,0.12558,0.106567,0.0893555,0.0737305,0.0579529,0.0436096,0.0292053,0.0180969,0.0062561,-0.0062561,-0.019928,-0.0321655,-0.0398865,-0.0391846,-0.0302429,-0.0135193,0.00668335,0.0301208,0.0536194,0.0769653,0.0986328,0.116852,0.129791,0.132874,0.126984,0.115082,0.100372,0.085907,0.072876,0.0612793,0.0512085,0.0424805,0.0358887,0.0300903,0.0242615,0.0147095,-0.00231934,-0.0275574,-0.0604858,-0.0951843,-0.12915,-0.159485,-0.185089,-0.204987,-0.216248,-0.216888,-0.204498,-0.179688,-0.145416,-0.110077,-0.0778809,-0.0521851,-0.0283508,-0.00631714,0.0144043,0.0305481,0.0387573,0.0415039,0.0394592,0.0405884,0.0481262,0.059082,0.0706482,0.0785217,0.0809631,0.0827942,0.0848389,0.0880127,0.0891418,0.0827332,0.0682373,0.0484619,0.0282898,0.00915527,-0.00857544,-0.0298462,-0.0551453,-0.0856018,-0.114807,-0.140503,-0.161713,-0.181427,-0.199524,-0.215118,-0.226532,-0.231781,-0.233124,-0.233856,-0.238464,-0.245789,-0.254303,-0.261963,-0.266815,-0.263885,-0.24585,-0.206696,-0.145355,-0.0650024,0.0297546,0.131744,0.228058,0.311432,0.383179,0.437988,0.46106,0.439484,0.371307,0.267548,0.145538,0.0289307,-0.0664978,-0.139374,-0.192322,-0.225311,-0.226959,-0.185303,-0.106628,-0.00906372,0.0821533,0.145691,0.17804,0.183258,0.170929,0.146271,0.104187,0.0501709,-0.00909424,-0.0578918,-0.079834,-0.0672607,-0.0236511,0.038147,0.102478,0.165588,0.23291,0.303345,0.363342,0.395721,0.391846,0.353516,0.290344,0.216034,0.144562,0.0765381,0.00689697,-0.063446,-0.128326,-0.178741,-0.209076,-0.221191,-0.224884,-0.229279,-0.234406,-0.241241,-0.244934,-0.244537,-0.241211,-0.240326,-0.244446,-0.252563,-0.25528,-0.25,-0.233124,-0.207672,-0.17691,-0.142303,-0.101227,-0.0571899,-0.009552,0.0378418,0.0821838,0.117493,0.145142,0.165314,0.179321,0.185699,0.183472,0.176086,0.162994,0.146667,0.129089,0.111725,0.0969543,0.0837708,0.0726624,0.0628967,0.0524292,0.0415039,0.0299072,0.018219,0.00662231,-0.00491333,-0.0168762,-0.0271606,-0.0353088,-0.0365906,-0.0298462,-0.0133667,0.0104065,0.0387573,0.0687256,0.0984802,0.12619,0.150543,0.170166,0.182129,0.182617,0.171661,0.150635,0.125793,0.100037,0.0749817,0.0535278,0.0335388,0.015625,0.000152588,-0.011322,-0.0189819,-0.0263672,-0.0360107,-0.0521851,-0.0738831,-0.0987549,-0.12262,-0.141663,-0.156677,-0.167358,-0.173279,-0.175018,-0.16748,-0.15033,-0.124084,-0.0957336,-0.0671692,-0.0437622,-0.0232849,-0.0038147,0.0140076,0.0311584,0.0443726,0.0516968,0.0536194,0.0531921,0.0532532,0.0555725,0.0578918,0.0583191,0.0573425,0.0533752,0.0502319,0.0469971,0.0452271,0.0418701,0.0361023,0.0272217,0.015686,0.00204468,-0.0133667,-0.0317993,-0.0530396,-0.0762634,-0.100159,-0.12326,-0.14505,-0.161438,-0.174469,-0.182709,-0.186859,-0.187286,-0.184601,-0.182068,-0.181152,-0.185699,-0.193665,-0.205475,-0.21936,-0.232422,-0.243561,-0.246216,-0.231232,-0.192261,-0.12915,-0.0467834,0.0474243,0.14743,0.23938,0.317535,0.384033,0.432159,0.448334,0.418793,0.344788,0.237335,0.115723,0.00128174,-0.0912476,-0.16095,-0.210846,-0.239319,-0.236511,-0.190918,-0.109253,-0.0078125,0.085968,0.154785,0.195435,0.210052,0.206543,0.187561,0.150421,0.0985413,0.0386353,-0.0116882,-0.0376282,-0.0332642,-0.00146484,0.0464172,0.0969543,0.14978,0.209076,0.274017,0.32959,0.358917,0.35553,0.320099,0.260376,0.191284,0.121704,0.0522156,-0.020874,-0.0951843,-0.164001,-0.2164,-0.248474,-0.260223,-0.26297,-0.262604,-0.261688,-0.258179,-0.251831,-0.241241,-0.230194,-0.22348,-0.223907,-0.227142,-0.226379,-0.218018,-0.200348,-0.174164,-0.144196,-0.108276,-0.0667725,-0.0217285,0.0243225,0.0684509,0.106018,0.13501,0.153503,0.165802,0.170532,0.169037,0.16153,0.151031,0.139374,0.127533,0.115936,0.10434,0.0950928,0.0855408,0.0775757,0.0674133,0.0549316,0.0385437,0.0198975,0.0015564,-0.0143433,-0.0272827,-0.0371399,-0.0427551,-0.043396,-0.0351868,-0.0180969,0.009552,0.0419922,0.0763245,0.108765,0.136597,0.160187,0.177643,0.18866,0.190521,0.181641,0.161041,0.135132,0.106384,0.0792847,0.0542908,0.0326538,0.0151062,-0.000366211,-0.0119019,-0.02005,-0.0256958,-0.0320129,-0.0419922,-0.0573425,-0.078949,-0.102722,-0.128601,-0.151947,-0.171356,-0.185455,-0.192963,-0.191986,-0.180145,-0.15799,-0.128021,-0.0941162,-0.0601501,-0.0290527,-0.00183105,0.0230713,0.0439148,0.0605774,0.0701294,0.0725098,0.0711365,0.0671082,0.0631714,0.0618286,0.0588074,0.0555115,0.0502319,0.0461426,0.0439758,0.0444031,0.0432739,0.0397644,0.0322266,0.022522,0.0104065,-0.00146484,-0.0162659,-0.0352478,-0.0587463,-0.083374,-0.106384,-0.125427,-0.139771,-0.150391,-0.15863,-0.163269,-0.1651,-0.160736,-0.152161,-0.140625,-0.130768,-0.12619,-0.130341,-0.140961,-0.157379,-0.175934,-0.19635,-0.216583,-0.231384,-0.230377,-0.207794,-0.161224,-0.0929871,-0.00845337,0.0856018,0.179108,0.262115,0.331818,0.387817,0.416748,0.405334,0.350677,0.258759,0.144226,0.0253296,-0.0770264,-0.158356,-0.218353,-0.257629,-0.26886,-0.24115,-0.172211,-0.0726624,0.0329285,0.121277,0.183899,0.220947,0.235931,0.233063,0.212097,0.172424,0.119934,0.0619202,0.0148621,-0.0100708,-0.00656128,0.0178833,0.0522156,0.0898438,0.13443,0.190216,0.248199,0.291718,0.310883,0.30249,0.268433,0.217712,0.15976,0.0990601,0.0341187,-0.0375671,-0.109833,-0.174805,-0.22348,-0.253387,-0.26825,-0.275482,-0.276337,-0.27121,-0.259247,-0.241516,-0.216034,-0.190582,-0.170319,-0.156647,-0.14743,-0.1362,-0.123596,-0.107361,-0.0913086,-0.0744324,-0.0557861,-0.0346069,-0.0111694,0.0144043,0.0402527,0.0644531,0.0837708,0.100189,0.114685,0.125092,0.131042,0.132111,0.130219,0.123901,0.113983,0.100861,0.0861206,0.0708923,0.056427,0.042572,0.0285034,0.0141296,0.00134277,-0.00915527,-0.0154724,-0.0174561,-0.017395,-0.0142212,-0.009552,0.00106812,0.0162659,0.0381165,0.0638733,0.0890503,0.112854,0.132812,0.148712,0.159393,0.166016,0.165192,0.157013,0.139435,0.115143,0.0891418,0.0635071,0.0402222,0.020874,0.00570679,-0.00588989,-0.0140686,-0.0187683,-0.0221558,-0.0250549,-0.0327148,-0.0452881,-0.0632629,-0.0856323,-0.109406,-0.133453,-0.15448,-0.168762,-0.174408,-0.170715,-0.157501,-0.135284,-0.104553,-0.0701294,-0.0352478,-0.00506592,0.0204773,0.0406799,0.0549316,0.0611267,0.0614319,0.0570374,0.0506592,0.0440979,0.0389709,0.0354614,0.0352478,0.035614,0.0371399,0.0389099,0.0394592,0.0391235,0.0372925,0.0322876,0.0249634,0.0146179,0.00247192,-0.0113831,-0.0256958,-0.0403137,-0.0539551,-0.0688171,-0.0821838,-0.0939331,-0.10199,-0.107422,-0.110321,-0.110016,-0.107635,-0.10257,-0.0986328,-0.0969238,-0.09729,-0.098053,-0.102356,-0.114655,-0.133453,-0.157379,-0.183411,-0.211609,-0.236176,-0.25354,-0.25769,-0.239594,-0.197479,-0.134979,-0.05896,0.0285645,0.119934,0.204224,0.273926,0.32663,0.358765,0.355347,0.313599,0.234131,0.13269,0.0230713,-0.0777283,-0.158844,-0.215881,-0.249512,-0.255524,-0.229828,-0.166077,-0.072876,0.0318604,0.127045,0.199493,0.245941,0.266815,0.262451,0.23764,0.195709,0.140472,0.0809021,0.0293884,-0.00469971,-0.0131531,0.00259399,0.0372314,0.0778809,0.123749,0.177551,0.234192,0.281342,0.306244,0.304901,0.279968,0.235046,0.178619,0.117218,0.0530396,-0.0114136,-0.0771179,-0.135986,-0.182465,-0.211273,-0.225464,-0.228851,-0.227448,-0.220825,-0.210541,-0.198181,-0.182983,-0.166779,-0.15506,-0.148285,-0.145752,-0.143707,-0.138794,-0.129639,-0.116791,-0.101929,-0.0832214,-0.060791,-0.036377,-0.0116882,0.0126038,0.0346069,0.0516357,0.064209,0.0744324,0.0808411,0.0836487,0.0821533,0.0789185,0.0739441,0.0688782,0.0638733,0.0581055,0.0531006,0.0471497,0.0411682,0.0342712,0.0271606,0.0183411,0.00906372,0.000549316,-0.00631714,-0.0101929,-0.0101929,-0.00656128,0.0017395,0.0155334,0.0346069,0.0588074,0.0863953,0.112976,0.136627,0.155609,0.168701,0.174316,0.173828,0.165955,0.150391,0.126678,0.100037,0.0719604,0.0479126,0.0271606,0.0122986,0.00296021,-0.00140381,-0.00195312,-0.000579834,0.00146484,-0.000640869,-0.00836182,-0.0231628,-0.0444641,-0.0700684,-0.0966492,-0.121429,-0.141327,-0.154968,-0.159393,-0.153992,-0.136841,-0.110992,-0.0777283,-0.0444641,-0.0126038,0.0125732,0.0321655,0.0435486,0.0480347,0.0454407,0.0359497,0.0242615,0.012085,0.00265503,-0.000854492,-0.000762939,0.0039978,0.0102539,0.0175171,0.0247803,0.0316467,0.0344849,0.0326538,0.0244141,0.0122986,-0.00280762,-0.0177917,-0.032074,-0.0465698,-0.0609131,-0.0745544,-0.0844727,-0.091156,-0.0942078,-0.09552,-0.0948181,-0.0937805,-0.0923767,-0.0926514,-0.0941162,-0.0976257,-0.102997,-0.110931,-0.12262,-0.137054,-0.153015,-0.170929,-0.191681,-0.212585,-0.229462,-0.240082,-0.238495,-0.2211,-0.183411,-0.12915,-0.0611267,0.0180054,0.103119,0.186005,0.254303,0.30545,0.339447,0.348633,0.325836,0.27005,0.186615,0.0881348,-0.0118713,-0.0948181,-0.156738,-0.196625,-0.216187,-0.210266,-0.174377,-0.107056,-0.0171814,0.0749207,0.153564,0.207123,0.235321,0.241089,0.229492,0.202972,0.160187,0.1091,0.0553589,0.0133057,-0.00863647,-0.00335693,0.0242615,0.063385,0.107208,0.155945,0.21048,0.264648,0.303711,0.318756,0.305176,0.266846,0.210632,0.144653,0.0757751,0.00448608,-0.0683899,-0.137451,-0.194946,-0.236237,-0.256073,-0.259735,-0.25415,-0.241852,-0.226318,-0.208588,-0.189453,-0.16983,-0.153076,-0.144714,-0.14386,-0.147308,-0.148438,-0.145264,-0.136108,-0.122131,-0.105103,-0.0832825,-0.057251,-0.0281982,0.00274658,0.0325623,0.0580444,0.0774536,0.0909424,0.0988464,0.102631,0.101288,0.0956726,0.0880737,0.077179,0.0658264,0.0552368,0.0457458,0.0385437,0.0324402,0.028717,0.0246277,0.0204773,0.0175171,0.0151062,0.0142822,0.0149231,0.0161133,0.0192566,0.0234985,0.0316467,0.0429077,0.0586548,0.0778198,0.0983276,0.118744,0.138733,0.156158,0.170319,0.179749,0.182709,0.178619,0.164703,0.144012,0.116638,0.088501,0.0581055,0.0309448,0.00619507,-0.013031,-0.0283508,-0.0380554,-0.0436707,-0.0461426,-0.0484619,-0.0525513,-0.0617676,-0.0747986,-0.0912476,-0.109802,-0.127899,-0.143585,-0.156647,-0.161591,-0.158844,-0.144348,-0.121857,-0.0914001,-0.0598755,-0.0294189,-0.0022583,0.0209045,0.040863,0.0554504,0.0635376,0.0618286,0.0538025,0.0419922,0.0316467,0.0258179,0.0232849,0.0201111,0.0141296,0.00689697,0.0015564,-0.0010376,-0.00119019,-0.00360107,-0.00872803,-0.0194092,-0.0296021,-0.038269,-0.0439148,-0.0473328,-0.0526733,-0.059021,-0.0671997,-0.0750427,-0.0793457,-0.0797729,-0.0794067,-0.0804749,-0.084198,-0.0897827,-0.0951233,-0.0979309,-0.0999756,-0.10434,-0.114929,-0.129425,-0.144836,-0.161926,-0.178619,-0.195068,-0.207672,-0.213989,-0.204712,-0.176147,-0.128052,-0.0650635,0.00817871,0.0871582,0.163086,0.22757,0.280396,0.31839,0.333221,0.315582,0.262695,0.181763,0.085907,-0.00793457,-0.0879211,-0.147888,-0.190155,-0.214478,-0.215607,-0.18338,-0.117004,-0.0293884,0.0610657,0.136108,0.191071,0.223999,0.236572,0.231995,0.210907,0.173553,0.123871,0.0716248,0.0281982,0.00408936,0.00344849,0.0230713,0.0517578,0.0848389,0.125214,0.174042,0.223358,0.260071,0.272583,0.260712,0.226807,0.17923,0.124237,0.0660706,0.00448608,-0.059082,-0.120209,-0.171356,-0.206268,-0.223572,-0.227356,-0.223022,-0.214142,-0.202759,-0.188263,-0.172211,-0.154114,-0.139374,-0.131256,-0.128601,-0.129303,-0.128448,-0.121765,-0.111359,-0.0979309,-0.0821533,-0.064209,-0.0432129,-0.0218201,-0.000274658,0.0191956,0.035675,0.047821,0.0559082,0.0621033,0.06604,0.0666199,0.0665588,0.0650024,0.0632324,0.0606384,0.0579529,0.0556335,0.0525513,0.0496826,0.0465088,0.0415955,0.0349731,0.027771,0.0217896,0.0175171,0.0163879,0.0177307,0.0211792,0.02771,0.038208,0.052124,0.0705566,0.0910339,0.110992,0.128326,0.141876,0.1521,0.15802,0.159332,0.154633,0.143005,0.125153,0.100372,0.0752563,0.0486755,0.0259399,0.00473022,-0.0107117,-0.0227051,-0.0287781,-0.0320129,-0.0306091,-0.029541,-0.0296021,-0.0348206,-0.0446777,-0.059021,-0.0765381,-0.0953369,-0.113068,-0.127838,-0.137115,-0.139435,-0.134369,-0.120636,-0.100189,-0.0743713,-0.0481873,-0.0220032,0.00128174,0.0201721,0.0343933,0.0402222,0.0398865,0.033783,0.025177,0.0153503,0.00527954,-0.00280762,-0.0101318,-0.0130005,-0.015625,-0.0146179,-0.0116272,-0.00732422,-0.00268555,0.000488281,0.00183105,0.000854492,-0.000976562,-0.00479126,-0.0104675,-0.0188599,-0.0298157,-0.0426941,-0.0560608,-0.0678711,-0.0778809,-0.0849915,-0.0910339,-0.0951233,-0.0993958,-0.102142,-0.104614,-0.106171,-0.109192,-0.116425,-0.127136,-0.142944,-0.161804,-0.182831,-0.203674,-0.218079,-0.224701,-0.215607,-0.186218,-0.132812,-0.0630493,0.0188599,0.10553,0.189575,0.261139,0.31778,0.356812,0.368988,0.346893,0.287231,0.197205,0.0908813,-0.0113831,-0.0957336,-0.158508,-0.203217,-0.229462,-0.230255,-0.196136,-0.126923,-0.035614,0.0542908,0.125519,0.17392,0.199219,0.205902,0.197113,0.174408,0.137878,0.088501,0.0386353,0.000213623,-0.0135193,-0.00338745,0.0257568,0.0625916,0.100677,0.144562,0.195831,0.245605,0.280426,0.289337,0.271179,0.231934,0.180511,0.125061,0.067688,0.00717163,-0.0559082,-0.115936,-0.165863,-0.199921,-0.215607,-0.218353,-0.215973,-0.211121,-0.204773,-0.195557,-0.183899,-0.16861,-0.156311,-0.150208,-0.149628,-0.149567,-0.145538,-0.133728,-0.115845,-0.0939941,-0.0717468,-0.04776,-0.0211792,0.00360107,0.027771,0.0485535,0.0629578,0.0713196,0.0744934,0.0750427,0.072876,0.0681152,0.0619812,0.0565796,0.0509949,0.0467834,0.0450745,0.0440979,0.0445862,0.0441895,0.0432129,0.0396118,0.0335388,0.0263977,0.0185852,0.0126648,0.00772095,0.0055542,0.00564575,0.0101929,0.0197754,0.0353088,0.0559387,0.0796509,0.103912,0.125427,0.144012,0.160095,0.170013,0.175079,0.171936,0.160461,0.141388,0.115845,0.0879517,0.0599365,0.0340576,0.0108337,-0.00787354,-0.0227966,-0.0328369,-0.0389099,-0.0410156,-0.043457,-0.0468445,-0.0531311,-0.0626221,-0.0743408,-0.0892639,-0.102936,-0.116364,-0.124664,-0.127625,-0.123871,-0.112427,-0.0946045,-0.0724487,-0.0487671,-0.0249634,-0.00308228,0.0143433,0.0264587,0.0331421,0.0339966,0.0296936,0.0215149,0.0130005,0.00512695,-0.000366211,-0.00463867,-0.00738525,-0.00909424,-0.0106201,-0.0101318,-0.00894165,-0.00732422,-0.00759888,-0.00991821,-0.0151978,-0.0222473,-0.0296326,-0.0378418,-0.045929,-0.0572815,-0.0702209,-0.0832214,-0.0942078,-0.102905,-0.110657,-0.119232,-0.128937,-0.136902,-0.141876,-0.144073,-0.146484,-0.149689,-0.155182,-0.166656,-0.182404,-0.196259,-0.204651,-0.20639,-0.19754,-0.17215,-0.125977,-0.0600586,0.0234375,0.116058,0.209656,0.290192,0.353302,0.397827,0.416809,0.402679,0.347809,0.257538,0.145325,0.0298462,-0.0715332,-0.151093,-0.207886,-0.240997,-0.245453,-0.217316,-0.154419,-0.0671082,0.0261841,0.108063,0.164062,0.195282,0.200562,0.190094,0.166718,0.13092,0.0834351,0.0348816,-0.0022583,-0.0173035,-0.00723267,0.023407,0.0654907,0.110504,0.158997,0.209198,0.257141,0.290619,0.299316,0.279785,0.23526,0.175171,0.108337,0.0415039,-0.0247498,-0.0890503,-0.150208,-0.201538,-0.236633,-0.252838,-0.253052,-0.245392,-0.234894,-0.223083,-0.21167,-0.197815,-0.18277,-0.169037,-0.160797,-0.157104,-0.155396,-0.149689,-0.136627,-0.11557,-0.0896301,-0.0598755,-0.0296021,0.00247192,0.0320129,0.0596619,0.0828857,0.0993958,0.108887,0.111694,0.109161,0.103394,0.0933533,0.0827332,0.071106,0.0585327,0.0476074,0.0385437,0.0328369,0.0300293,0.0278625,0.0272827,0.0253906,0.0223083,0.0185547,0.0161743,0.0151062,0.0161743,0.0180054,0.0219421,0.0274963,0.0366516,0.0492249,0.0662842,0.0864563,0.107422,0.127319,0.14505,0.160034,0.171356,0.177216,0.176575,0.167786,0.150421,0.125488,0.0963135,0.0657654,0.0351562,0.00662231,-0.0180664,-0.0395203,-0.0562134,-0.0682373,-0.07547,-0.0788574,-0.0823669,-0.0854187,-0.0921021,-0.0997009,-0.109039,-0.117493,-0.122742,-0.125641,-0.124237,-0.118378,-0.106384,-0.087738,-0.0628357,-0.0362244,-0.00970459,0.0146484,0.0334778,0.0469055,0.0531921,0.0549927,0.0497437,0.0410156,0.0273743,0.0109558,-0.00448608,-0.0166016,-0.025177,-0.0302429,-0.0334778,-0.0336304,-0.0319519,-0.0282288,-0.0223694,-0.0171814,-0.0146484,-0.0170288,-0.0241394,-0.0346985,-0.0472107,-0.0621948,-0.0792236,-0.0985413,-0.118805,-0.13913,-0.156677,-0.169952,-0.176636,-0.179108,-0.181427,-0.182007,-0.182281,-0.184448,-0.186432,-0.187958,-0.189178,-0.186279,-0.170959,-0.137177,-0.0862427,-0.020874,0.057251,0.142395,0.224915,0.297424,0.35788,0.401489,0.415344,0.391479,0.329437,0.23764,0.131836,0.0264587,-0.065979,-0.140137,-0.194855,-0.226044,-0.227936,-0.192596,-0.124573,-0.039032,0.042572,0.108215,0.151245,0.173126,0.174835,0.161438,0.133728,0.0932312,0.0472107,0.00549316,-0.0206909,-0.0217896,0.00146484,0.0427551,0.0893555,0.138641,0.191345,0.245148,0.2883,0.309692,0.302368,0.268158,0.213501,0.147675,0.0780945,0.00787354,-0.0611267,-0.128021,-0.186829,-0.23111,-0.256073,-0.262878,-0.258118,-0.24762,-0.234528,-0.221252,-0.206757,-0.19281,-0.178833,-0.169617,-0.165375,-0.166168,-0.165527,-0.158081,-0.140839,-0.115875,-0.085907,-0.0516357,-0.0154114,0.0216064,0.0570374,0.0892639,0.117493,0.136353,0.147186,0.149994,0.144989,0.134979,0.119873,0.10257,0.0832825,0.0636597,0.045929,0.0310059,0.0193481,0.0125122,0.00845337,0.00518799,0.00323486,0.000427246,-0.000427246,0.00128174,0.00518799,0.0100708,0.015625,0.0222473,0.0309448,0.0426331,0.0575256,0.0755005,0.0953979,0.113403,0.13147,0.146942,0.161865,0.172852,0.178467,0.176575,0.165955,0.147583,0.123322,0.0962524,0.0675964,0.0390625,0.0101929,-0.0167542,-0.0427551,-0.0635071,-0.0796204,-0.0909729,-0.099762,-0.107544,-0.113953,-0.119751,-0.124084,-0.125275,-0.12326,-0.119537,-0.113556,-0.106384,-0.0963745,-0.0811157,-0.061615,-0.0386047,-0.0155334,0.00485229,0.0215149,0.0339661,0.0438843,0.0519714,0.0566406,0.0556641,0.0481262,0.0355835,0.0198364,0.00473022,-0.00909424,-0.022522,-0.034668,-0.0471497,-0.0573425,-0.0631104,-0.0643005,-0.0617065,-0.0604248,-0.0613403,-0.0654907,-0.0720215,-0.0806274,-0.0922852,-0.108887,-0.130341,-0.154968,-0.176941,-0.195984,-0.20871,-0.219421,-0.22757,-0.23587,-0.242065,-0.241791,-0.233215,-0.215332,-0.189301,-0.149078,-0.0937805,-0.0244751,0.0575256,0.150208,0.244385,0.324158,0.383698,0.422882,0.439026,0.424561,0.373413,0.289062,0.180573,0.0632324,-0.0427551,-0.125702,-0.181915,-0.212799,-0.217438,-0.194092,-0.137238,-0.0530396,0.0389709,0.117462,0.170807,0.194519,0.194244,0.173462,0.139771,0.094696,0.0424194,-0.00888062,-0.0485535,-0.0646667,-0.0485229,-0.00473022,0.0548096,0.115662,0.176208,0.235809,0.290344,0.32663,0.335266,0.309875,0.257599,0.185364,0.105591,0.0244751,-0.0540466,-0.12796,-0.196259,-0.252136,-0.289185,-0.303711,-0.298828,-0.284332,-0.264313,-0.243317,-0.221741,-0.202118,-0.182281,-0.166595,-0.15567,-0.15271,-0.153717,-0.151398,-0.141479,-0.122833,-0.0985718,-0.070343,-0.0384216,-0.00402832,0.0322266,0.0683899,0.104309,0.135925,0.159607,0.173889,0.180298,0.178406,0.169128,0.154572,0.133728,0.108765,0.0834961,0.0574646,0.0358887,0.0168152,0.00372314,-0.00415039,-0.0104065,-0.0128174,-0.0118713,-0.00592041,0.00442505,0.0166016,0.0289001,0.0390625,0.0479736,0.0566406,0.0657043,0.0768738,0.0890503,0.100616,0.110931,0.121765,0.133575,0.146057,0.155243,0.16095,0.158691,0.148773,0.132202,0.110077,0.0832214,0.0523987,0.01828,-0.0161743,-0.0496826,-0.0796509,-0.102142,-0.119751,-0.130127,-0.136139,-0.136902,-0.135834,-0.132324,-0.127045,-0.120026,-0.110718,-0.10202,-0.0906982,-0.077179,-0.0603027,-0.0416565,-0.0220337,-0.0017395,0.0171509,0.0330811,0.045105,0.0528259,0.0560608,0.0556335,0.0509949,0.0431213,0.0310059,0.0169678,0.00149536,-0.013092,-0.0248413,-0.035614,-0.045105,-0.0543823,-0.061554,-0.0694885,-0.0758972,-0.0850525,-0.0968018,-0.11261,-0.129852,-0.14682,-0.163086,-0.178467,-0.192139,-0.204712,-0.215607,-0.227631,-0.236572,-0.242767,-0.243896,-0.241852,-0.236176,-0.221161,-0.188171,-0.133179,-0.0603027,0.0264587,0.120514,0.213562,0.296295,0.36319,0.413574,0.442291,0.438324,0.393524,0.310669,0.203156,0.0876465,-0.0196838,-0.105927,-0.170227,-0.212036,-0.229706,-0.217041,-0.166656,-0.0866699,0.00588989,0.0906067,0.150696,0.186279,0.198883,0.192749,0.172913,0.138885,0.0940552,0.0441589,0.000762939,-0.0224304,-0.0167236,0.0152588,0.0617065,0.112,0.162842,0.214294,0.263794,0.300537,0.312134,0.294983,0.249664,0.184387,0.110535,0.0357971,-0.0360718,-0.104828,-0.172272,-0.233063,-0.278381,-0.303192,-0.306915,-0.298981,-0.284576,-0.268036,-0.251617,-0.234833,-0.215698,-0.195007,-0.175323,-0.161255,-0.152222,-0.140747,-0.124023,-0.0992432,-0.0697021,-0.0405884,-0.011261,0.015564,0.0406799,0.0646667,0.0889282,0.110596,0.126678,0.135223,0.137268,0.136108,0.132477,0.127625,0.120361,0.109833,0.0969238,0.0817566,0.0668945,0.0539551,0.043335,0.0331421,0.0220947,0.0102539,0.000274658,-0.00372314,-0.00119019,0.00753784,0.0190125,0.0329285,0.0483093,0.0652161,0.0854187,0.108459,0.13092,0.150482,0.16568,0.175659,0.18277,0.184814,0.181274,0.169739,0.149902,0.122345,0.0895386,0.0542297,0.0190125,-0.0149841,-0.0455322,-0.0706177,-0.0896301,-0.101715,-0.107422,-0.106354,-0.102417,-0.0968018,-0.0921631,-0.0905457,-0.0940552,-0.101074,-0.111237,-0.120026,-0.126617,-0.127197,-0.120911,-0.107361,-0.0877075,-0.0622559,-0.0333557,-0.00140381,0.0288391,0.0552368,0.0725403,0.0804138,0.0802002,0.0730286,0.0598145,0.0415649,0.0179443,-0.00845337,-0.0346985,-0.0581665,-0.076416,-0.0906067,-0.101166,-0.110443,-0.117828,-0.125,-0.131622,-0.137238,-0.142578,-0.14801,-0.157715,-0.171783,-0.188385,-0.206482,-0.225464,-0.244385,-0.260345,-0.271393,-0.275574,-0.267517,-0.237213,-0.180603,-0.0977173,0.00561523,0.12085,0.236572,0.339294,0.421509,0.481445,0.515228,0.51178,0.459503,0.361298,0.232635,0.0950928,-0.0323486,-0.134033,-0.208496,-0.256287,-0.275848,-0.261078,-0.206116,-0.11734,-0.0137939,0.0810547,0.147583,0.18219,0.191345,0.180237,0.155457,0.114929,0.0630188,0.00610352,-0.0406799,-0.06073,-0.0462952,-0.00238037,0.05896,0.124176,0.18866,0.251617,0.309692,0.352386,0.364838,0.341614,0.284821,0.204712,0.115601,0.0260315,-0.0577698,-0.13681,-0.210144,-0.273438,-0.316437,-0.33374,-0.327667,-0.308777,-0.28598,-0.26416,-0.245026,-0.226501,-0.210052,-0.193054,-0.179871,-0.172577,-0.171844,-0.167023,-0.15329,-0.126831,-0.0920715,-0.0519104,-0.0102539,0.0305481,0.0689392,0.105316,0.139069,0.168396,0.187286,0.194153,0.188873,0.176239,0.158722,0.138885,0.116791,0.0925598,0.067688,0.0436096,0.0244751,0.0125122,0.00662231,0.00442505,0.00311279,0.000427246,0.000549316,0.00610352,0.0166016,0.0299072,0.0428467,0.0531921,0.0641479,0.0754089,0.0916748,0.112366,0.135406,0.156677,0.175171,0.190491,0.204224,0.215424,0.220398,0.216309,0.198395,0.170258,0.133179,0.091095,0.0479736,0.00366211,-0.0379333,-0.0773315,-0.109589,-0.132751,-0.146881,-0.152313,-0.153442,-0.15329,-0.152924,-0.153564,-0.154968,-0.15625,-0.158142,-0.157501,-0.153717,-0.145355,-0.131287,-0.11087,-0.0849609,-0.0552063,-0.025116,0.00479126,0.0309448,0.0524292,0.0674133,0.0752869,0.0767517,0.0706177,0.0575256,0.0376282,0.0126038,-0.0141296,-0.0418701,-0.0695801,-0.0969543,-0.124084,-0.14859,-0.169037,-0.18219,-0.188873,-0.193512,-0.199585,-0.208923,-0.220398,-0.233856,-0.249084,-0.261566,-0.27182,-0.281311,-0.287384,-0.278229,-0.240082,-0.166718,-0.0648499,0.0575562,0.188049,0.313629,0.424744,0.515442,0.583405,0.616882,0.598389,0.522247,0.398041,0.250214,0.100616,-0.0306702,-0.132904,-0.20874,-0.256195,-0.274506,-0.253448,-0.188599,-0.0942688,0.00543213,0.0820923,0.12204,0.130005,0.118805,0.0948486,0.0623474,0.0191345,-0.032135,-0.0794373,-0.10791,-0.101288,-0.0585327,0.011322,0.0889893,0.160736,0.226318,0.286407,0.338531,0.371002,0.370087,0.33136,0.261963,0.174896,0.085907,0.00317383,-0.0704041,-0.141205,-0.211273,-0.273743,-0.315857,-0.33255,-0.328613,-0.316833,-0.308685,-0.302277,-0.298004,-0.290527,-0.274719,-0.252777,-0.231506,-0.215607,-0.203857,-0.183197,-0.149567,-0.101532,-0.0469971,0.00723267,0.0569153,0.100861,0.138153,0.173065,0.204285,0.228149,0.238708,0.232941,0.217865,0.198364,0.180176,0.162415,0.143494,0.121429,0.097229,0.0752869,0.056488,0.0438232,0.0336304,0.0221558,0.0062561,-0.0108948,-0.0245667,-0.0302429,-0.0289001,-0.0229187,-0.0146484,-0.00357056,0.0122986,0.0368042,0.0693054,0.108826,0.147308,0.182617,0.210327,0.232208,0.247925,0.255981,0.251648,0.23291,0.200439,0.157654,0.111694,0.0672607,0.026947,-0.009552,-0.0413818,-0.067749,-0.0869446,-0.0995483,-0.106628,-0.115601,-0.127747,-0.145905,-0.166595,-0.187836,-0.206665,-0.219635,-0.227509,-0.227936,-0.220398,-0.202057,-0.174469,-0.139221,-0.100372,-0.0613403,-0.0262451,0.00469971,0.030304,0.0509949,0.0648804,0.0700684,0.0669861,0.0547485,0.0353699,0.0111694,-0.017395,-0.0489807,-0.0829468,-0.116058,-0.144012,-0.169556,-0.191223,-0.209442,-0.223999,-0.23764,-0.253601,-0.267731,-0.279968,-0.289215,-0.297485,-0.301392,-0.291962,-0.260986,-0.203888,-0.122131,-0.0168762,0.106354,0.236145,0.356262,0.458893,0.542175,0.595642,0.60788,0.570679,0.489746,0.374756,0.241302,0.110535,0.00259399,-0.0752869,-0.124664,-0.147797,-0.141663,-0.102234,-0.0357971,0.0391846,0.098053,0.127197,0.123901,0.0944214,0.045929,-0.0104065,-0.0660706,-0.116516,-0.158417,-0.183807,-0.178741,-0.13562,-0.0623169,0.0256042,0.109833,0.184235,0.248413,0.298218,0.325348,0.324158,0.291321,0.233002,0.156311,0.0757141,0.000579834,-0.0629578,-0.119049,-0.170532,-0.215393,-0.24585,-0.261627,-0.266418,-0.266479,-0.267517,-0.271271,-0.280975,-0.29306,-0.299805,-0.298981,-0.291656,-0.286377,-0.276825,-0.259155,-0.225616,-0.179596,-0.12262,-0.0610046,0.00335693,0.0644226,0.120239,0.171448,0.218079,0.256287,0.279633,0.286469,0.279297,0.262817,0.241302,0.217102,0.193604,0.171783,0.151306,0.132172,0.11615,0.103821,0.0965271,0.0874329,0.0744934,0.0571289,0.0380554,0.0209656,0.00732422,-0.00408936,-0.012085,-0.0168152,-0.0161133,-0.00808716,0.00985718,0.0383301,0.0727539,0.108673,0.140472,0.16861,0.192902,0.211609,0.218781,0.213562,0.196564,0.168915,0.135223,0.0995483,0.0653687,0.0333252,0.00259399,-0.0280151,-0.0563354,-0.0826721,-0.107422,-0.13147,-0.156677,-0.180359,-0.204132,-0.224823,-0.241943,-0.251129,-0.251923,-0.244263,-0.229706,-0.20816,-0.180298,-0.149628,-0.118103,-0.0884094,-0.0603027,-0.034668,-0.0137024,0.00238037,0.0105591,0.0131531,0.0103455,0.00198364,-0.011322,-0.0286255,-0.0492554,-0.0692139,-0.0906067,-0.113556,-0.139709,-0.170166,-0.203033,-0.238251,-0.271393,-0.298828,-0.315582,-0.3255,-0.327179,-0.309814,-0.263794,-0.189941,-0.0941772,0.0196838,0.142303,0.261047,0.361511,0.442352,0.504822,0.540497,0.537537,0.490906,0.409637,0.308472,0.201538,0.106384,0.033905,-0.0127258,-0.0368652,-0.0397339,-0.0197144,0.02771,0.0925903,0.156464,0.198364,0.20575,0.181305,0.131744,0.067749,-0.00247192,-0.0709229,-0.13266,-0.183746,-0.21463,-0.211548,-0.169312,-0.0964355,-0.0113831,0.0701904,0.140625,0.200348,0.245575,0.268677,0.263824,0.227722,0.167084,0.0889893,0.00775146,-0.0648499,-0.122894,-0.168854,-0.210327,-0.243622,-0.261688,-0.262115,-0.250305,-0.234741,-0.223633,-0.218658,-0.225311,-0.237915,-0.249817,-0.253662,-0.256348,-0.263733,-0.27182,-0.270569,-0.253235,-0.220062,-0.175598,-0.119049,-0.0592957,0.0015564,0.0609741,0.122833,0.18515,0.242126,0.28363,0.305389,0.309967,0.302765,0.286652,0.264648,0.238251,0.208923,0.178528,0.14978,0.127258,0.113831,0.108765,0.106506,0.102936,0.09729,0.0906067,0.0858765,0.0814514,0.0750732,0.067688,0.0575562,0.0479736,0.0415955,0.0436096,0.0522156,0.0658264,0.0796509,0.0921021,0.104553,0.118317,0.131409,0.142517,0.146942,0.144562,0.134155,0.117462,0.0960083,0.0728149,0.0469055,0.0163879,-0.0187988,-0.0570679,-0.0958862,-0.134216,-0.170929,-0.204132,-0.231567,-0.253479,-0.269989,-0.278778,-0.276947,-0.265503,-0.244812,-0.217926,-0.189148,-0.160522,-0.133087,-0.109039,-0.0856934,-0.065155,-0.0483093,-0.0406494,-0.0418701,-0.049469,-0.0593872,-0.0697021,-0.0806274,-0.0917358,-0.105652,-0.120209,-0.1362,-0.152222,-0.168762,-0.185852,-0.206696,-0.228973,-0.250793,-0.26593,-0.271973,-0.262451,-0.229462,-0.170044,-0.0861206,0.0153198,0.130859,0.250702,0.359497,0.445007,0.506287,0.536469,0.531494,0.487305,0.408447,0.307861,0.197479,0.0984192,0.0253906,-0.0180054,-0.0357361,-0.0314331,-0.00308228,0.04953,0.119446,0.189392,0.238617,0.253265,0.234619,0.187988,0.124664,0.052124,-0.0205383,-0.085968,-0.14209,-0.181061,-0.188904,-0.161469,-0.10199,-0.0298157,0.0398865,0.0986328,0.14624,0.18158,0.198517,0.191193,0.158295,0.102142,0.0346985,-0.0355835,-0.0989685,-0.150604,-0.194794,-0.233398,-0.265686,-0.285248,-0.288513,-0.27887,-0.263672,-0.247894,-0.236084,-0.230408,-0.228851,-0.223633,-0.214966,-0.205994,-0.20459,-0.208282,-0.209412,-0.200226,-0.180511,-0.150818,-0.114044,-0.0723267,-0.0274353,0.0196838,0.0727234,0.132202,0.190521,0.239258,0.271698,0.289001,0.294189,0.290131,0.279297,0.260773,0.235962,0.206421,0.176453,0.152588,0.13858,0.133392,0.133026,0.132538,0.12973,0.127686,0.127411,0.128387,0.127197,0.122894,0.114685,0.105927,0.099762,0.0985413,0.102417,0.107147,0.111511,0.111786,0.112549,0.114929,0.115662,0.112549,0.100464,0.0823059,0.059021,0.0352478,0.0123901,-0.00701904,-0.0274353,-0.0493774,-0.0755615,-0.103546,-0.131256,-0.158081,-0.185852,-0.215607,-0.246704,-0.273651,-0.29541,-0.305817,-0.305023,-0.292664,-0.272949,-0.247772,-0.218994,-0.186127,-0.150177,-0.116974,-0.0910339,-0.0740662,-0.0665588,-0.0666809,-0.0722656,-0.0821533,-0.0941162,-0.107697,-0.124786,-0.14386,-0.16333,-0.182129,-0.200836,-0.222656,-0.244934,-0.262878,-0.274353,-0.276886,-0.265289,-0.226166,-0.156799,-0.0643005,0.0471497,0.172424,0.300537,0.414978,0.501709,0.557159,0.581787,0.565826,0.509827,0.418701,0.306519,0.191498,0.0891113,0.0194702,-0.0151367,-0.0173645,0.0045166,0.047699,0.109161,0.184082,0.25705,0.307343,0.317566,0.286407,0.225037,0.145477,0.0599976,-0.0201721,-0.0879517,-0.142456,-0.17804,-0.183136,-0.151611,-0.0866699,-0.00689697,0.0653381,0.118591,0.151886,0.167145,0.162445,0.135986,0.0865479,0.0193481,-0.0580444,-0.13382,-0.197754,-0.24234,-0.270905,-0.292023,-0.309967,-0.319672,-0.314728,-0.298645,-0.279694,-0.261566,-0.24939,-0.244019,-0.245026,-0.243408,-0.232849,-0.217102,-0.205353,-0.198242,-0.191223,-0.17392,-0.145477,-0.108398,-0.0648499,-0.0194092,0.0239258,0.0640869,0.105438,0.150177,0.195557,0.233337,0.256073,0.26297,0.259644,0.252075,0.24292,0.232239,0.220734,0.206421,0.193878,0.184723,0.184723,0.194427,0.207611,0.217804,0.219421,0.214905,0.207092,0.198395,0.186646,0.171387,0.152527,0.134491,0.119537,0.112335,0.114166,0.122345,0.133179,0.141541,0.144562,0.143585,0.136688,0.119385,0.0906982,0.0531921,0.0111084,-0.0305176,-0.0688782,-0.10199,-0.130707,-0.156952,-0.180237,-0.19986,-0.215424,-0.226807,-0.239899,-0.253693,-0.268646,-0.280212,-0.28598,-0.286682,-0.282959,-0.276947,-0.26825,-0.25647,-0.239532,-0.220032,-0.199005,-0.181549,-0.168121,-0.157776,-0.149292,-0.140686,-0.134369,-0.13205,-0.1362,-0.145538,-0.160126,-0.179169,-0.203796,-0.233765,-0.265411,-0.295593,-0.318054,-0.326965,-0.313629,-0.266113,-0.182831,-0.0701294,0.0652161,0.218445,0.376984,0.519592,0.627655,0.69574,0.718872,0.693146,0.618561,0.505646,0.369385,0.227722,0.100891,0.0124512,-0.031311,-0.0319519,-0.000701904,0.056427,0.135437,0.225311,0.308563,0.36377,0.373962,0.33902,0.267517,0.170654,0.0646362,-0.034668,-0.115997,-0.175934,-0.211121,-0.210754,-0.16806,-0.0882874,0.0062561,0.0932007,0.15802,0.197388,0.210205,0.195068,0.151886,0.084137,-0.000549316,-0.0939026,-0.186218,-0.264496,-0.323029,-0.360107,-0.384247,-0.399292,-0.403809,-0.396545,-0.380646,-0.360474,-0.340912,-0.323395,-0.311218,-0.306427,-0.298553,-0.283234,-0.262177,-0.241852,-0.226227,-0.20639,-0.180359,-0.145355,-0.102295,-0.0540466,6.10352e-05,0.0525513,0.102295,0.150543,0.200775,0.249817,0.290192,0.314087,0.322845,0.319031,0.308838,0.295532,0.27948,0.262054,0.244812,0.228333,0.216736,0.213715,0.219849,0.231567,0.240784,0.244659,0.241913,0.235962,0.227234,0.216187,0.204773,0.190979,0.181091,0.174957,0.177124,0.187256,0.200012,0.209656,0.208527,0.195648,0.172089,0.138184,0.0965881,0.0479736,-0.0032959,-0.0512085,-0.0937805,-0.129028,-0.155823,-0.176086,-0.191925,-0.20993,-0.229187,-0.250702,-0.273865,-0.297577,-0.322418,-0.345215,-0.363892,-0.377014,-0.380737,-0.375641,-0.36026,-0.336395,-0.307709,-0.278168,-0.248383,-0.220245,-0.195496,-0.176208,-0.165253,-0.161804,-0.166809,-0.177765,-0.194519,-0.212677,-0.233124,-0.253265,-0.276031,-0.29892,-0.31546,-0.322632,-0.318451,-0.294891,-0.243347,-0.161804,-0.0514832,0.0797119,0.226379,0.376556,0.512329,0.618561,0.689636,0.719818,0.704254,0.6427,0.543671,0.422729,0.295105,0.182495,0.10199,0.0586548,0.0532532,0.0777893,0.128021,0.19809,0.276672,0.348907,0.394501,0.398804,0.36264,0.292511,0.200287,0.100403,0.00344849,-0.0792847,-0.142609,-0.179108,-0.17923,-0.13858,-0.067688,0.0173035,0.0969238,0.155762,0.188873,0.194733,0.173126,0.123444,0.0505066,-0.0389709,-0.135559,-0.227936,-0.306732,-0.364838,-0.404419,-0.430664,-0.448029,-0.454742,-0.45163,-0.44046,-0.425598,-0.409637,-0.393616,-0.379333,-0.365601,-0.347015,-0.320984,-0.290039,-0.259796,-0.232849,-0.205475,-0.174896,-0.139496,-0.0986938,-0.0535278,-0.00668335,0.0415649,0.0900269,0.140839,0.194458,0.247772,0.293121,0.325867,0.344269,0.350128,0.346619,0.334839,0.316772,0.294189,0.270264,0.249298,0.235046,0.231934,0.23941,0.252991,0.267975,0.278656,0.286377,0.288635,0.287109,0.279785,0.267944,0.254242,0.243347,0.238403,0.240173,0.244812,0.245239,0.237488,0.219482,0.19101,0.155029,0.113037,0.0682373,0.01828,-0.0331421,-0.0811157,-0.120514,-0.153076,-0.179169,-0.201324,-0.223206,-0.248901,-0.276764,-0.304047,-0.327393,-0.349213,-0.368011,-0.3862,-0.400909,-0.407227,-0.404205,-0.390381,-0.369873,-0.347046,-0.322144,-0.299805,-0.277893,-0.255493,-0.233917,-0.220245,-0.214996,-0.218628,-0.225464,-0.235016,-0.246094,-0.258118,-0.272522,-0.290955,-0.312225,-0.329529,-0.337738,-0.330688,-0.298859,-0.235809,-0.143921,-0.0222473,0.123169,0.281403,0.437012,0.56955,0.672546,0.739502,0.759491,0.728943,0.651794,0.542328,0.412933,0.282959,0.17804,0.109039,0.0784302,0.0823975,0.116302,0.179321,0.260834,0.347809,0.419006,0.455719,0.449158,0.401489,0.31958,0.217804,0.109894,0.00863647,-0.0811157,-0.154053,-0.191284,-0.186615,-0.138031,-0.0626221,0.018158,0.0887146,0.138794,0.162506,0.161041,0.132202,0.0776672,-0.000762939,-0.0957947,-0.195374,-0.285278,-0.355347,-0.404785,-0.436798,-0.457397,-0.46817,-0.469086,-0.459534,-0.44455,-0.427094,-0.413086,-0.404724,-0.402893,-0.398315,-0.383606,-0.358215,-0.329926,-0.300934,-0.269867,-0.232727,-0.187195,-0.134521,-0.0767517,-0.0184937,0.0355835,0.0838623,0.129456,0.17511,0.222107,0.263824,0.295685,0.316132,0.327057,0.332733,0.333954,0.334137,0.331635,0.326843,0.319397,0.313263,0.313477,0.321716,0.333466,0.341522,0.341125,0.333588,0.320007,0.303894,0.285828,0.270142,0.256989,0.249542,0.248413,0.254456,0.264648,0.273315,0.273865,0.261353,0.234619,0.194214,0.14212,0.0813293,0.0162354,-0.0493774,-0.109955,-0.162781,-0.203949,-0.234253,-0.254578,-0.270081,-0.284363,-0.297272,-0.308685,-0.318817,-0.331909,-0.347748,-0.365723,-0.383331,-0.397949,-0.407654,-0.410126,-0.406525,-0.395721,-0.379333,-0.357178,-0.331146,-0.303284,-0.278168,-0.258179,-0.246063,-0.239746,-0.241028,-0.247467,-0.260376,-0.277191,-0.300232,-0.325348,-0.347748,-0.363129,-0.366455,-0.350342,-0.304626,-0.224487,-0.110657,0.0334778,0.19696,0.364685,0.51947,0.648407,0.742737,0.793671,0.794647,0.744995,0.651855,0.528809,0.394592,0.271606,0.180389,0.128174,0.116058,0.136353,0.185211,0.256561,0.339661,0.419128,0.473236,0.488922,0.459381,0.391998,0.29657,0.187836,0.0783081,-0.0198975,-0.101776,-0.158844,-0.179382,-0.157227,-0.0999451,-0.0250244,0.0487366,0.104401,0.134583,0.138519,0.117065,0.0700684,0.00238037,-0.0844116,-0.180664,-0.274902,-0.353699,-0.410278,-0.446869,-0.469238,-0.482239,-0.488068,-0.485352,-0.475769,-0.46344,-0.44989,-0.441101,-0.437134,-0.436584,-0.42981,-0.413147,-0.386932,-0.357147,-0.323517,-0.285187,-0.240875,-0.188538,-0.12854,-0.063446,0.00241089,0.0640259,0.120239,0.17276,0.223267,0.270691,0.309387,0.336761,0.351898,0.357422,0.356964,0.352783,0.348419,0.343597,0.341278,0.341187,0.347321,0.358704,0.37439,0.388458,0.396271,0.393738,0.380096,0.358917,0.330566,0.300751,0.274078,0.252411,0.242432,0.242645,0.251373,0.262207,0.26825,0.264099,0.244812,0.21225,0.169312,0.11676,0.059021,-0.00500488,-0.0699768,-0.129211,-0.180847,-0.222565,-0.256836,-0.284576,-0.308044,-0.328796,-0.344788,-0.357727,-0.367554,-0.37735,-0.388885,-0.400574,-0.411682,-0.418854,-0.420471,-0.419281,-0.412506,-0.403503,-0.389313,-0.371521,-0.352234,-0.33197,-0.314026,-0.30011,-0.292358,-0.286041,-0.280823,-0.276398,-0.278809,-0.290344,-0.306915,-0.32608,-0.343719,-0.353058,-0.34491,-0.309021,-0.237976,-0.130341,0.00765991,0.171387,0.346344,0.514191,0.657257,0.764954,0.826935,0.83551,0.787689,0.692871,0.565125,0.423065,0.29126,0.188171,0.127533,0.110779,0.131348,0.18338,0.258881,0.34787,0.435181,0.498688,0.523193,0.502136,0.438538,0.344849,0.231598,0.116791,0.0132446,-0.0716858,-0.130646,-0.152954,-0.134155,-0.0779419,-0.00265503,0.0713501,0.125519,0.150909,0.148102,0.117126,0.0611877,-0.0147705,-0.105682,-0.205292,-0.300385,-0.381073,-0.438354,-0.473785,-0.492645,-0.503418,-0.507202,-0.506012,-0.500244,-0.491241,-0.482025,-0.474304,-0.470551,-0.468719,-0.461487,-0.445709,-0.419006,-0.387268,-0.349701,-0.306305,-0.257843,-0.201477,-0.140137,-0.0750427,-0.00909424,0.0531006,0.108826,0.158936,0.205505,0.249664,0.287109,0.317047,0.337036,0.348511,0.355103,0.358582,0.36087,0.363281,0.368256,0.375519,0.388184,0.404419,0.422028,0.43573,0.441711,0.435883,0.420319,0.396393,0.367859,0.337585,0.309387,0.28717,0.271393,0.265076,0.26593,0.269928,0.269653,0.259216,0.234253,0.197327,0.14801,0.090332,0.0280151,-0.0351562,-0.0966492,-0.152496,-0.199005,-0.235229,-0.262451,-0.282318,-0.298615,-0.313751,-0.328308,-0.342041,-0.356171,-0.372406,-0.392181,-0.41391,-0.433624,-0.449249,-0.456482,-0.45517,-0.446442,-0.432434,-0.412231,-0.388733,-0.365479,-0.34314,-0.32431,-0.311005,-0.306641,-0.309265,-0.313843,-0.319794,-0.329987,-0.341888,-0.355743,-0.369324,-0.376801,-0.368958,-0.336914,-0.272461,-0.173187,-0.0428467,0.110443,0.276398,0.441284,0.592529,0.717621,0.804291,0.842407,0.826721,0.756927,0.646912,0.51355,0.380798,0.267822,0.18634,0.145569,0.14267,0.175018,0.234772,0.315796,0.402527,0.476471,0.519012,0.518097,0.472321,0.392334,0.290039,0.176239,0.0635071,-0.033783,-0.108398,-0.149475,-0.147736,-0.107269,-0.035675,0.0446777,0.116638,0.163544,0.181274,0.169098,0.127747,0.0584412,-0.0321655,-0.138245,-0.248047,-0.348572,-0.42926,-0.483795,-0.515869,-0.530273,-0.533325,-0.525696,-0.513123,-0.495178,-0.477295,-0.46225,-0.453766,-0.450653,-0.450653,-0.448181,-0.438141,-0.42215,-0.399353,-0.368195,-0.328522,-0.277435,-0.216736,-0.147095,-0.0743713,-0.00140381,0.0696411,0.133606,0.191833,0.24292,0.285736,0.318176,0.339508,0.349823,0.352448,0.35025,0.346313,0.343506,0.344269,0.351105,0.364349,0.383698,0.406189,0.428436,0.44516,0.453461,0.451141,0.439056,0.41983,0.393951,0.367065,0.340637,0.321503,0.308563,0.302551,0.296722,0.286377,0.269867,0.243042,0.205566,0.15976,0.107971,0.049469,-0.0146179,-0.0780334,-0.135498,-0.18277,-0.222229,-0.251923,-0.276886,-0.297638,-0.316833,-0.33316,-0.346466,-0.360687,-0.376495,-0.39621,-0.417816,-0.438843,-0.452179,-0.457916,-0.456482,-0.448944,-0.434479,-0.415344,-0.393951,-0.368896,-0.343079,-0.322479,-0.309937,-0.30722,-0.309113,-0.31311,-0.318939,-0.326538,-0.340057,-0.358856,-0.37616,-0.390381,-0.395203,-0.381836,-0.339508,-0.262451,-0.151672,-0.00976562,0.154968,0.332062,0.502228,0.650848,0.765961,0.840607,0.864777,0.833282,0.75119,0.633759,0.498291,0.365173,0.256836,0.185852,0.156586,0.162933,0.201691,0.264984,0.345215,0.427917,0.492157,0.521576,0.507629,0.45401,0.366302,0.255585,0.139374,0.0325012,-0.0575562,-0.121765,-0.154114,-0.144562,-0.0970154,-0.0256958,0.0487671,0.109253,0.144653,0.151459,0.131073,0.0836487,0.0154724,-0.0699158,-0.166382,-0.265198,-0.354218,-0.422943,-0.46991,-0.497375,-0.513763,-0.52066,-0.521912,-0.517212,-0.509186,-0.498047,-0.487854,-0.47937,-0.475342,-0.470276,-0.45929,-0.440033,-0.414978,-0.384155,-0.34668,-0.300873,-0.247559,-0.185944,-0.118683,-0.047821,0.0214539,0.0870361,0.146332,0.20105,0.250732,0.293152,0.325012,0.346405,0.358124,0.364258,0.364838,0.362152,0.360657,0.362213,0.369263,0.382263,0.399292,0.417511,0.433716,0.442841,0.442474,0.4328,0.416046,0.393677,0.368042,0.341827,0.318542,0.302765,0.295258,0.294708,0.296783,0.295258,0.283356,0.259003,0.222565,0.176147,0.120728,0.0579529,-0.00842285,-0.0751953,-0.137939,-0.193451,-0.238251,-0.272308,-0.299133,-0.319153,-0.335693,-0.34845,-0.35788,-0.365875,-0.376312,-0.390076,-0.409424,-0.428772,-0.445007,-0.455139,-0.458252,-0.455017,-0.446228,-0.431732,-0.412445,-0.388123,-0.361237,-0.335571,-0.31369,-0.297485,-0.288635,-0.283508,-0.280426,-0.282654,-0.291107,-0.307129,-0.326141,-0.345673,-0.357422,-0.358704,-0.339722,-0.290131,-0.205078,-0.0824585,0.0736694,0.252075,0.431152,0.593536,0.727173,0.822876,0.873779,0.871765,0.818787,0.719666,0.58609,0.440308,0.30896,0.209717,0.153717,0.138184,0.156372,0.202026,0.26889,0.350464,0.428711,0.48407,0.500824,0.472534,0.401337,0.298492,0.181702,0.0682373,-0.0318604,-0.112274,-0.164825,-0.179871,-0.152496,-0.0901794,-0.00997925,0.0667419,0.122955,0.150116,0.145325,0.113037,0.0566406,-0.0194702,-0.11264,-0.21344,-0.312775,-0.39563,-0.458038,-0.495941,-0.51712,-0.525574,-0.525513,-0.519653,-0.509521,-0.495056,-0.479218,-0.466888,-0.45993,-0.456055,-0.4487,-0.435455,-0.415039,-0.385864,-0.349365,-0.30426,-0.250031,-0.18988,-0.122528,-0.0539551,0.0153503,0.0783691,0.136688,0.189148,0.237366,0.279205,0.3125,0.337799,0.352814,0.363007,0.369476,0.371521,0.37262,0.372009,0.372833,0.378815,0.389374,0.404449,0.419495,0.427277,0.426605,0.415253,0.395935,0.372131,0.345978,0.321777,0.300323,0.285553,0.278778,0.280548,0.286652,0.28949,0.285492,0.26767,0.237152,0.195068,0.144409,0.0854187,0.020813,-0.0465698,-0.110809,-0.168976,-0.2164,-0.254608,-0.283875,-0.307648,-0.325928,-0.340637,-0.350677,-0.358795,-0.367859,-0.379883,-0.3974,-0.415985,-0.435181,-0.44812,-0.455078,-0.45459,-0.447632,-0.433777,-0.4133,-0.388123,-0.359741,-0.330994,-0.30481,-0.283875,-0.269379,-0.259644,-0.253479,-0.251373,-0.255005,-0.264069,-0.278809,-0.299683,-0.320801,-0.335266,-0.339569,-0.327118,-0.285187,-0.206055,-0.0864563,0.0674133,0.244049,0.424286,0.592255,0.732056,0.834045,0.888763,0.892212,0.841644,0.744476,0.611816,0.464142,0.326294,0.217712,0.148804,0.120026,0.127106,0.167084,0.23053,0.307129,0.385315,0.444244,0.466553,0.442413,0.376495,0.277893,0.161804,0.0452881,-0.0579834,-0.140076,-0.190643,-0.203735,-0.176788,-0.114929,-0.0332642,0.0472107,0.107544,0.139008,0.139923,0.112,0.0591431,-0.0140076,-0.102631,-0.197266,-0.288788,-0.368683,-0.429688,-0.469147,-0.491119,-0.501923,-0.506287,-0.504547,-0.498505,-0.490326,-0.480682,-0.473846,-0.468018,-0.462524,-0.452423,-0.434418,-0.406982,-0.3703,-0.325165,-0.273529,-0.214844,-0.153168,-0.0883484,-0.0243225,0.0380554,0.0936279,0.144775,0.190216,0.232788,0.271423,0.305542,0.333954,0.354553,0.368408,0.378418,0.382568,0.383392,0.380737,0.376373,0.375854,0.379669,0.385376,0.391846,0.393463,0.388947,0.37735,0.358551,0.336609,0.311218,0.288147,0.269379,0.258057,0.25647,0.264801,0.278992,0.289337,0.291107,0.27774,0.248535,0.206268,0.155975,0.0963135,0.0305176,-0.0374146,-0.102692,-0.161438,-0.20993,-0.246002,-0.272034,-0.29306,-0.310516,-0.324524,-0.335358,-0.345001,-0.355591,-0.370667,-0.389862,-0.412384,-0.432861,-0.446869,-0.452911,-0.449402,-0.438324,-0.418793,-0.391632,-0.3573,-0.318756,-0.28125,-0.251343,-0.227722,-0.212097,-0.203247,-0.199432,-0.197174,-0.200348,-0.211334,-0.227783,-0.247559,-0.268433,-0.286255,-0.301514,-0.311157,-0.31192,-0.293915,-0.244263,-0.154572,-0.0237122,0.13739,0.315216,0.488495,0.640381,0.76181,0.846771,0.888916,0.88089,0.819397,0.714722,0.575714,0.423767,0.285461,0.179688,0.114441,0.0874939,0.09552,0.135712,0.197754,0.272949,0.347229,0.397522,0.408386,0.374115,0.299744,0.193817,0.0755615,-0.0368652,-0.133026,-0.204498,-0.242279,-0.238464,-0.197113,-0.125153,-0.0372314,0.0445862,0.105865,0.137268,0.135712,0.105865,0.0529175,-0.0180054,-0.102081,-0.191925,-0.276611,-0.349701,-0.40683,-0.443542,-0.46579,-0.47641,-0.481201,-0.482086,-0.48056,-0.477539,-0.472382,-0.466003,-0.457886,-0.444183,-0.421967,-0.389526,-0.349548,-0.302856,-0.250458,-0.195282,-0.138306,-0.0826721,-0.0293274,0.0206909,0.0674133,0.111145,0.153717,0.196838,0.242004,0.285278,0.325623,0.359039,0.384247,0.400482,0.407104,0.40274,0.390076,0.369812,0.348419,0.329926,0.319031,0.313477,0.312683,0.312012,0.308899,0.303009,0.296326,0.288574,0.279297,0.269775,0.259674,0.251556,0.249237,0.254364,0.264313,0.271881,0.271179,0.256073,0.226166,0.182892,0.131409,0.0749207,0.0154724,-0.0453186,-0.104462,-0.158142,-0.204498,-0.242126,-0.269714,-0.291046,-0.309113,-0.325928,-0.340363,-0.354919,-0.368469,-0.384247,-0.400055,-0.41687,-0.429901,-0.436249,-0.431732,-0.417023,-0.391907,-0.358643,-0.320282,-0.279572,-0.238281,-0.199005,-0.166504,-0.145203,-0.134796,-0.135193,-0.140625,-0.146729,-0.152588,-0.159546,-0.170105,-0.183319,-0.198944,-0.214264,-0.228973,-0.241699,-0.25235,-0.25946,-0.258606,-0.242065,-0.195831,-0.111938,0.00845337,0.157288,0.319244,0.481262,0.628143,0.749298,0.834595,0.87738,0.87204,0.816376,0.713196,0.575104,0.41983,0.270477,0.149017,0.0655823,0.0258179,0.0220947,0.0514832,0.104614,0.170807,0.236847,0.284119,0.296021,0.2659,0.198883,0.104095,-0.00604248,-0.112274,-0.19928,-0.258942,-0.286377,-0.27655,-0.23111,-0.155975,-0.0627441,0.0280151,0.0994568,0.143585,0.157288,0.142517,0.101501,0.0400085,-0.0363159,-0.12204,-0.207947,-0.288727,-0.356445,-0.406036,-0.439392,-0.460083,-0.473145,-0.47998,-0.480774,-0.474304,-0.459778,-0.438049,-0.409637,-0.375641,-0.337738,-0.295593,-0.252899,-0.209442,-0.165375,-0.12262,-0.0813293,-0.0422668,-0.00576782,0.0337524,0.0773315,0.127594,0.182678,0.239532,0.296112,0.348999,0.392822,0.422943,0.436523,0.433838,0.416382,0.385223,0.344086,0.299103,0.257385,0.22644,0.209778,0.205292,0.210327,0.219849,0.231781,0.241516,0.247833,0.250305,0.246002,0.236633,0.221954,0.206116,0.194305,0.191284,0.195343,0.203461,0.207825,0.203583,0.188324,0.160828,0.125488,0.0809021,0.0305176,-0.0263672,-0.0852051,-0.14209,-0.192749,-0.235748,-0.270203,-0.298767,-0.320496,-0.338531,-0.352661,-0.362152,-0.367981,-0.372223,-0.376648,-0.378906,-0.377991,-0.369751,-0.356018,-0.335785,-0.310394,-0.281342,-0.248199,-0.213928,-0.178955,-0.14624,-0.116699,-0.0948486,-0.0804138,-0.0712585,-0.0642395,-0.0603638,-0.0563354,-0.0555725,-0.0584717,-0.0667725,-0.0787048,-0.095459,-0.117126,-0.142578,-0.171661,-0.202667,-0.23053,-0.247925,-0.251007,-0.237091,-0.204071,-0.145752,-0.0569763,0.0643005,0.209503,0.370819,0.528931,0.665649,0.763702,0.82196,0.838287,0.809784,0.736389,0.619781,0.47168,0.307709,0.156403,0.0353088,-0.040741,-0.072876,-0.0692139,-0.0412292,0.00241089,0.0542297,0.103638,0.136108,0.138306,0.103851,0.0361023,-0.0509949,-0.144714,-0.22644,-0.281464,-0.306915,-0.303253,-0.264526,-0.192261,-0.0970764,0.00888062,0.107788,0.183105,0.225677,0.232788,0.206207,0.153564,0.0808105,-0.00521851,-0.0996094,-0.191772,-0.272949,-0.337189,-0.381714,-0.407593,-0.419067,-0.420837,-0.414215,-0.401001,-0.384399,-0.362518,-0.338104,-0.310181,-0.281036,-0.248108,-0.211029,-0.173553,-0.135498,-0.0984802,-0.0599365,-0.0196838,0.0227966,0.0672607,0.115356,0.164185,0.213074,0.259918,0.305176,0.346191,0.378387,0.397064,0.398651,0.385101,0.358765,0.325226,0.286377,0.244171,0.202179,0.164185,0.134979,0.119232,0.115784,0.119812,0.128296,0.133728,0.138245,0.140289,0.143311,0.147797,0.151581,0.153412,0.154694,0.157928,0.165894,0.177765,0.191345,0.197968,0.191345,0.169312,0.132751,0.085968,0.0334778,-0.0220947,-0.0769043,-0.130005,-0.177826,-0.217163,-0.246307,-0.264008,-0.274445,-0.279724,-0.284119,-0.288849,-0.294464,-0.302002,-0.309937,-0.318665,-0.325928,-0.327667,-0.323456,-0.310944,-0.288635,-0.257751,-0.220398,-0.177643,-0.130981,-0.084137,-0.0391235,0.00140381,0.03125,0.0509338,0.0595093,0.0595093,0.0534668,0.043335,0.0299072,0.0103455,-0.012085,-0.0375671,-0.0628052,-0.0854797,-0.105927,-0.12326,-0.139343,-0.151672,-0.161377,-0.16629,-0.162415,-0.152039,-0.13913,-0.127533,-0.114319,-0.0916443,-0.0552979,0.00302124,0.0863953,0.193237,0.312408,0.433075,0.540619,0.627563,0.689148,0.715515,0.69989,0.637146,0.532043,0.392242,0.232086,0.0716248,-0.0683594,-0.1763,-0.248474,-0.287567,-0.292236,-0.264374,-0.213593,-0.150421,-0.0878601,-0.0386353,-0.0122986,-0.0144348,-0.0410156,-0.0804749,-0.122345,-0.159119,-0.180939,-0.18277,-0.157166,-0.103149,-0.0303955,0.0540161,0.140076,0.213287,0.259674,0.274567,0.258026,0.215118,0.150604,0.0698547,-0.02005,-0.108612,-0.187134,-0.253113,-0.302704,-0.332886,-0.343719,-0.341522,-0.329437,-0.312714,-0.290894,-0.266357,-0.238403,-0.210114,-0.179749,-0.149017,-0.118134,-0.0894165,-0.0593872,-0.0260925,0.0122375,0.0532532,0.0956726,0.13858,0.179382,0.218994,0.251709,0.281799,0.304962,0.320099,0.32373,0.314514,0.293579,0.26358,0.225677,0.183807,0.139221,0.0958862,0.056427,0.0247498,0.00372314,-0.00289917,0.00177002,0.0133057,0.0282898,0.0426331,0.0563354,0.0688171,0.0778809,0.0854187,0.0895386,0.0938416,0.0966492,0.101379,0.107544,0.116974,0.125519,0.131348,0.130493,0.122681,0.106354,0.0820923,0.0506592,0.0135193,-0.0256958,-0.067749,-0.109802,-0.149719,-0.187073,-0.218231,-0.244476,-0.263306,-0.274933,-0.279266,-0.277374,-0.270508,-0.260345,-0.244873,-0.226654,-0.204926,-0.179688,-0.152863,-0.124725,-0.0963745,-0.0686035,-0.0420837,-0.0162354,0.00842285,0.030304,0.0501709,0.0665588,0.0792847,0.086731,0.0898438,0.0887146,0.0825806,0.0723267,0.0588074,0.040802,0.0209045,-0.00119019,-0.0247498,-0.0466919,-0.068512,-0.0863953,-0.0974426,-0.101166,-0.101105,-0.0962524,-0.0868225,-0.0788574,-0.0750732,-0.0733643,-0.0750732,-0.0819702,-0.0898438,-0.09729,-0.100189,-0.101593,-0.098053,-0.0864563,-0.0612793,-0.0151062,0.0567017,0.151337,0.254456,0.351868,0.42688,0.469513,0.479004,0.453888,0.398804,0.311981,0.192627,0.0493774,-0.0984802,-0.232849,-0.333435,-0.386841,-0.392456,-0.365875,-0.313812,-0.242828,-0.162781,-0.0811157,-0.00662231,0.0496521,0.0784912,0.0810242,0.0601501,0.0272217,-0.0017395,-0.0178528,-0.0174561,0.00161743,0.0404663,0.0948486,0.158783,0.223999,0.282318,0.317413,0.324585,0.303894,0.259003,0.194855,0.119232,0.0390625,-0.0388184,-0.107544,-0.162628,-0.201599,-0.222229,-0.227997,-0.22229,-0.209442,-0.193665,-0.177826,-0.160553,-0.14267,-0.123596,-0.103851,-0.0811157,-0.0562744,-0.0307617,-0.00717163,0.0141907,0.0330811,0.0514832,0.0696411,0.0884094,0.105957,0.12085,0.130219,0.133301,0.134369,0.131958,0.12796,0.120239,0.105377,0.0819397,0.0508728,0.0178528,-0.0155334,-0.0439148,-0.0684509,-0.086792,-0.0981445,-0.0991821,-0.0890503,-0.0676575,-0.0393372,-0.00680542,0.025116,0.0538025,0.0775757,0.0968018,0.110535,0.121826,0.12677,0.130432,0.130432,0.131775,0.132263,0.132172,0.129852,0.123444,0.111633,0.0956116,0.0741272,0.0488281,0.0219421,-0.00744629,-0.0363159,-0.0630188,-0.0866089,-0.105469,-0.119751,-0.131134,-0.139008,-0.14209,-0.1409,-0.134979,-0.125763,-0.116058,-0.105225,-0.0944824,-0.0811768,-0.0648499,-0.0447998,-0.0249023,-0.00421143,0.0148621,0.0305481,0.0446777,0.0565491,0.065918,0.0718384,0.072052,0.0645752,0.0500793,0.0326233,0.0123291,-0.00738525,-0.0275574,-0.0472107,-0.0660706,-0.0811768,-0.0930176,-0.099884,-0.101807,-0.0983276,-0.0923767,-0.0851135,-0.0752869,-0.063385,-0.0503845,-0.0384827,-0.02948,-0.0222473,-0.0184326,-0.018158,-0.018158,-0.016449,-0.015686,-0.0197754,-0.0304565,-0.0450745,-0.059021,-0.0681763,-0.0740051,-0.0780945,-0.085907,-0.100159,-0.123474,-0.15097,-0.174744,-0.188599,-0.19577,-0.198364,-0.192047,-0.168427,-0.123474,-0.0553589,0.0329895,0.128387,0.216248,0.280273,0.314545,0.318817,0.298767,0.254578,0.187775,0.101166,0.00570679,-0.0857544,-0.156586,-0.191437,-0.186768,-0.146179,-0.0834961,-0.00845337,0.0694275,0.140686,0.196136,0.229767,0.236938,0.216522,0.17215,0.112823,0.052887,0.00656128,-0.0157471,-0.0113831,0.0166626,0.061676,0.115936,0.173706,0.222931,0.25592,0.267761,0.25946,0.228699,0.178741,0.114166,0.0471497,-0.0153503,-0.0679016,-0.107971,-0.134491,-0.151031,-0.160461,-0.16449,-0.164948,-0.158569,-0.151947,-0.145142,-0.140747,-0.136749,-0.132904,-0.126221,-0.115234,-0.100861,-0.0856934,-0.074585,-0.0687256,-0.0657654,-0.0612793,-0.0560608,-0.050293,-0.042572,-0.0328369,-0.0217285,-0.0088501,0.00866699,0.0314636,0.0541077,0.0738831,0.0836487,0.0844727,0.0757141,0.0617676,0.0446777,0.0273743,0.013855,0.00259399,-0.0039978,-0.00485229,0.00134277,0.0127869,0.0298157,0.0480652,0.0664062,0.0827332,0.0968628,0.107697,0.116699,0.125519,0.134796,0.143433,0.148712,0.150635,0.147034,0.139771,0.128174,0.112122,0.0934143,0.0733643,0.0510559,0.0289001,0.00878906,-0.00775146,-0.0211792,-0.0299683,-0.0355835,-0.0384827,-0.040741,-0.0432129,-0.0473328,-0.0531311,-0.0600891,-0.067749,-0.0768738,-0.0846252,-0.0887146,-0.0906677,-0.0884094,-0.0854797,-0.0786438,-0.0701294,-0.0628357,-0.0565796,-0.0531006,-0.052002,-0.0515137,-0.0519714,-0.0516968,-0.0498657,-0.0492249,-0.0464478,-0.0425415,-0.0365906,-0.0323792,-0.0300293,-0.0323486,-0.0400085,-0.0481873,-0.058197,-0.0673218,-0.0740662,-0.0773315,-0.0775757,-0.0732422,-0.0621948,-0.0444031,-0.0209045,0.00689697,0.0336914,0.0569763,0.0761108,0.0873108,0.0913696,0.0889893,0.0787048,0.0619812,0.040802,0.0192566,0.00289917,-0.00802612,-0.0137024,-0.0168762,-0.0187988,-0.0210876,-0.0201721,-0.0163879,-0.0119629,-0.00915527,-0.011322,-0.0217285,-0.035614,-0.0526733,-0.0704956,-0.0888367,-0.107697,-0.124451,-0.135559,-0.1409,-0.143585,-0.142395,-0.141327,-0.142517,-0.144714,-0.144348,-0.142334,-0.144623,-0.146454,-0.142181,-0.125092,-0.0906677,-0.0344543,0.0329895,0.0988464,0.154144,0.191986,0.212311,0.223511,0.224335,0.206696,0.168335,0.108459,0.0367126,-0.0301819,-0.0803223,-0.108337,-0.111938,-0.103821,-0.0879211,-0.0621338,-0.0287781,0.00906372,0.0469971,0.081665,0.106567,0.116974,0.113312,0.107635,0.103394,0.102631,0.113068,0.132202,0.152954,0.175934,0.198883,0.2164,0.224213,0.224915,0.21582,0.195862,0.169617,0.139557,0.108917,0.0737915,0.0386963,0.00610352,-0.0246277,-0.0545349,-0.0833435,-0.111908,-0.138794,-0.160522,-0.174408,-0.17926,-0.174042,-0.161011,-0.141418,-0.115997,-0.0853271,-0.052887,-0.0240784,-0.00323486,0.00872803,0.0110474,0.00723267,0.000366211,-0.00695801,-0.013031,-0.0173035,-0.0202026,-0.0217285,-0.0184326,-0.0100403,0.00265503,0.0143433,0.0232239,0.0261841,0.0232849,0.0166626,0.00592041,-0.00564575,-0.0187988,-0.0309448,-0.0426331,-0.0474243,-0.047699,-0.0432129,-0.0349731,-0.0250244,-0.011322,0.00836182,0.0314331,0.057251,0.0847778,0.112915,0.139587,0.161377,0.178558,0.188385,0.189362,0.179871,0.161804,0.135193,0.103912,0.0712585,0.0406799,0.0123291,-0.00732422,-0.0224609,-0.0319519,-0.0354004,-0.0342712,-0.0321655,-0.03125,-0.0328674,-0.0350952,-0.0377197,-0.0404358,-0.0439758,-0.0465088,-0.04776,-0.0465698,-0.0409546,-0.0296021,-0.0141296,0.000915527,0.0126038,0.020874,0.0265198,0.0289001,0.0297546,0.0266724,0.0219421,0.0122375,0.000152588,-0.0128174,-0.0248413,-0.035675,-0.0450134,-0.0541077,-0.0639648,-0.0750732,-0.0854797,-0.0957336,-0.102417,-0.106354,-0.106567,-0.104523,-0.0977173,-0.088501,-0.0750427,-0.0611877,-0.045166,-0.0289307,-0.0149231,-0.00219727,0.00656128,0.0117493,0.0126648,0.0106201,0.00653076,0.000640869,-0.00485229,-0.0107117,-0.0157776,-0.0205383,-0.0229187,-0.0234985,-0.0222473,-0.0216064,-0.0215454,-0.0249023,-0.0297546,-0.0360718,-0.0424194,-0.0492249,-0.0549316,-0.0609131,-0.0655823,-0.0687256,-0.0679016,-0.0628052,-0.0534058,-0.0424805,-0.0346985,-0.0292053,-0.0254822,-0.0216064,-0.0166626,-0.0120239,-0.0120239,-0.0195007,-0.0328369,-0.0480652,-0.0617676,-0.0704346,-0.0770264,-0.0857544,-0.0989685,-0.115662,-0.134277,-0.153351,-0.16861,-0.175995,-0.171631,-0.153412,-0.12262,-0.0787354,-0.0279846,0.0223083,0.0681763,0.108765,0.13739,0.155762,0.159882,0.151306,0.134277,0.111359,0.0864563,0.0673218,0.0566406,0.0550842,0.0588989,0.0629578,0.0658569,0.0664062,0.0661316,0.0635071,0.0606995,0.0544434,0.0434875,0.0315857,0.0218811,0.0213013,0.0282898,0.0426941,0.0636597,0.0895691,0.115784,0.138153,0.156647,0.167206,0.166656,0.157318,0.143036,0.125,0.110168,0.0976257,0.0888672,0.0823059,0.0738525,0.0628967,0.0529175,0.0429993,0.0293884,0.0112,-0.00915527,-0.03125,-0.050293,-0.0655518,-0.0735168,-0.0740662,-0.0738525,-0.0742798,-0.0713501,-0.0652161,-0.0597229,-0.0541077,-0.0474243,-0.0374451,-0.0255432,-0.0132141,-0.00012207,0.013031,0.0218201,0.0266724,0.0285034,0.0290527,0.0261841,0.0202026,0.0107727,0.000274658,-0.0118103,-0.0236206,-0.0329285,-0.0357361,-0.0342712,-0.0301208,-0.0224609,-0.013916,-0.0032959,0.00662231,0.016449,0.0239258,0.029541,0.0314331,0.0323486,0.0340576,0.0369263,0.0422058,0.0484009,0.0550232,0.0599976,0.063385,0.0657654,0.0666199,0.0654907,0.0599976,0.0529785,0.0450134,0.0358887,0.0297546,0.0236511,0.0178528,0.0114136,0.00323486,-0.00662231,-0.016449,-0.0263977,-0.0362854,-0.0446167,-0.050354,-0.0542297,-0.0534668,-0.0498047,-0.0426941,-0.0334167,-0.0239868,-0.0144348,-0.00479126,0.00421143,0.0116882,0.0180054,0.0210266,0.0227051,0.0223694,0.0215454,0.0203857,0.0180969,0.0142822,0.00857544,0.00286865,-0.00357056,-0.0102844,-0.017395,-0.0242004,-0.0296326,-0.0330811,-0.0355835,-0.0367126,-0.0367737,-0.0357361,-0.0343933,-0.0319519,-0.0293274,-0.0274963,-0.0266113,-0.0270996,-0.0278625,-0.0282288,-0.0276489,-0.0256958,-0.0204163,-0.0140686,-0.00772095,-0.00241089,0.00280762,0.00842285,0.0133057,0.0163879,0.0166016,0.0117493,0.00366211,-0.00808716,-0.0196838,-0.0313721,-0.040741,-0.0501709,-0.0599976,-0.0678711,-0.0721741,-0.0742188,-0.0727234,-0.0692749,-0.063385,-0.0570679,-0.0512085,-0.0436707,-0.0357361,-0.0292053,-0.0239258,-0.0220337,-0.0218201,-0.0224304,-0.0229187,-0.0236511,-0.0233459,-0.0234375,-0.0238342,-0.0229187,-0.0223694,-0.0187988,-0.016449,-0.0154114,-0.0168152,-0.0215149,-0.0259399,-0.0328674,-0.0404663,-0.0509338,-0.0605164,-0.0706482,-0.079071,-0.0848999,-0.0879211,-0.0874939,-0.0851135,-0.0807495,-0.0761108,-0.0705566,-0.0640259,-0.0569763,-0.0501709,-0.0440979,-0.0418701,-0.0434875,-0.0485535,-0.0529785,-0.0575256,-0.0578918,-0.0525513,-0.0405884,-0.0221558,0.000335693,0.0213318,0.0374451,0.0489807,0.0541077,0.0535889,0.052124,0.0491028,0.0429688,0.0363159,0.0314636,0.0278625,0.0290527,0.035675,0.0437622,0.052063,0.0559082,0.0577393,0.0556335,0.0532532,0.04953,0.0479736,0.0488892,0.0508728,0.0536804,0.0602722,0.0726624,0.0881348,0.103699,0.118378,0.131134,0.139801,0.143646,0.141479,0.133881,0.120453,0.102417,0.0833435,0.0669861,0.0571289,0.0513,0.0485229,0.0465088,0.0429688,0.0370178,0.0310364,0.0237122,0.0192871,0.0163879,0.0115356,0.00836182,0.00448608,0.00296021,0.00335693,0.00500488,0.00796509,0.009552,0.00906372,0.00680542,0.00177002,-0.00286865,-0.00704956,-0.00964355,-0.00909424,-0.00564575,0.00012207,0.00570679,0.00942993,0.00976562,0.00802612,0.00485229,0,-0.00582886,-0.0128784,-0.0189819,-0.0228577,-0.0233459,-0.0202637,-0.0133057,-0.00350952,0.00640869,0.0151062,0.0224304,0.0270996,0.0298462,0.0302429,0.028717,0.0260925,0.0217285,0.0192871,0.018158,0.0202637,0.0238647,0.0282288,0.0317383,0.0351562,0.0375671,0.0384216,0.0377808,0.0342712,0.0280762,0.0193481,0.00933838,-6.10352e-05,-0.00683594,-0.0116272,-0.0153503,-0.0184326,-0.0213013,-0.0245667,-0.0245667,-0.0241394,-0.0204773,-0.0164795,-0.0129395,-0.00991821,-0.00744629,-0.0062561,-0.00717163,-0.00909424,-0.0131531,-0.0173035,-0.0219421,-0.0260925,-0.0298157,-0.0323792,-0.0336914,-0.0327148,-0.0302429,-0.0267334,-0.0227051,-0.02005,-0.0176697,-0.0171814,-0.0168152,-0.0183411,-0.01828,-0.0190125,-0.0195007,-0.0211792,-0.0222168,-0.0224609,-0.0215454,-0.0201111,-0.0187683,-0.0178528,-0.0180054,-0.0174561,-0.0170288,-0.0146179,-0.0127258,-0.0111694,-0.0116272,-0.0127869,-0.0133667,-0.0155334,-0.016449,-0.0172424,-0.0190735,-0.0236206,-0.0291138,-0.0343933,-0.039032,-0.0413818,-0.0440369,-0.0446167,-0.046936,-0.0479126,-0.0491638,-0.0471497,-0.0436707,-0.0394592,-0.035614,-0.0327148,-0.0289001,-0.0259399,-0.0210266,-0.0157471,-0.0104675,-0.00857544,-0.0107727,-0.0147705,-0.0204773,-0.0266724,-0.0323486,-0.0370789,-0.0399475,-0.040802,-0.0402222,-0.0383301,-0.033783,-0.0266724,-0.0177307,-0.0105591,-0.00534058,-0.00350952,-0.00494385,-0.00668335,-0.0093689,-0.0120239,-0.0132141,-0.0142212,-0.0147095,-0.0144043,-0.0141907,-0.0126038,-0.00830078,-0.00265503,0.00463867,0.00915527,0.0108337,0.00888062,0.00588989,0.00106812,-0.00296021,-0.00640869,-0.0100403,-0.013916,-0.0196838,-0.0263062,-0.0323792,-0.0358582,-0.0377197,-0.0390625,-0.0393372,-0.0405273,-0.0406799,-0.0406799,-0.0401611,-0.0384827,-0.0372009,-0.0344849,-0.0317078,-0.0291748,-0.0267944,-0.0237732,-0.0183411,-0.0142822,-0.00985718,-0.00485229,-0.000152588,0.00387573,0.00662231,0.0103455,0.0104065,0.00933838,0.00668335,0.00421143,0.00280762,0.00335693,0.00680542,0.009552,0.0135193,0.0175171,0.0232239,0.0296021,0.0367737,0.0460815,0.0529785,0.0581665,0.0627441,0.067749,0.0729675,0.0773926,0.084259,0.0904541,0.0942078,0.0969543,0.0977783,0.0974426,0.0937805,0.088623,0.0844116,0.0808105,0.0758972,0.072052,0.068573,0.0642395,0.0591736,0.0556641,0.0522156,0.0510559,0.0487671,0.0469055,0.0440979,0.0400391,0.036377,0.0325012,0.0307312,0.0317078,0.0349731,0.0367126,0.0386047,0.0412903,0.0441589,0.0424194,0.0386047,0.0349121,0.0281372,0.0206299,0.0118713,0.00436401,-0.00366211,-0.0107727,-0.0175171,-0.0214539,-0.0218201,-0.0217896,-0.0198975,-0.0194702,-0.0189819,-0.019928,-0.0206299,-0.0188599,-0.0177917,-0.0147705,-0.0146484,-0.0134277,-0.0127258,-0.0101318,-0.00817871,-0.00543213,-0.0022583,0.0022583,0.00613403,0.00921631,0.0114136,0.0126038,0.0133667,0.0123291,0.0118103,0.0105591,0.00900269,0.00732422,0.00457764,0.00219727,-0.000213623,-0.00247192,-0.00335693,-0.00430298,-0.00512695,-0.00506592,-0.00564575,-0.0062561,-0.00701904,-0.00830078,-0.0104065,-0.0130005,-0.0155334,-0.018158,-0.0202637,-0.0217896,-0.0234985,-0.0239258,-0.0241394,-0.0237122,-0.0222473,-0.0198364,-0.0164795,-0.0132141,-0.011322,-0.0109863,-0.011322,-0.0115967,-0.0122986,-0.013092,-0.0142212,-0.0166626,-0.0204163,-0.0231323,-0.025177,-0.0253906,-0.0260925,-0.0256042,-0.0254822,-0.0242615,-0.0237122,-0.0229187,-0.0206299,-0.0191956,-0.0169373,-0.0151367,-0.0133667,-0.0125732,-0.0127258,-0.0139465,-0.015564,-0.0163879,-0.0170288,-0.0172424,-0.01828,-0.0196838,-0.020752,-0.0224304,-0.0223083,-0.0213318,-0.0198975,-0.0187988,-0.0163269,-0.0141296,-0.0115356,-0.00906372,-0.00732422,-0.00646973,-0.00674438,-0.00744629,-0.0102539,-0.0121765,-0.0147095,-0.0168762,-0.0197754,-0.0231323,-0.0254517,-0.0267334,-0.0259399,-0.0232239,-0.0205994,-0.0191956,-0.0178833,-0.0163269,-0.013855,-0.0105591,-0.00814819,-0.00640869,-0.00518799,-0.0045166,-0.00344849,-0.00289917,-0.00189209,-0.00161743,-0.00146484,-0.00259399,-0.00360107,-0.00393677,-0.00436401,-0.00408936,-0.00387573,-0.0038147,-0.00317383,-0.0022583,-0.000976562,0,-0.000152588,-0.00112915,-0.00323486,-0.0045166,-0.00588989,-0.00842285,-0.0104675,-0.0143433,-0.0171509,-0.0176697,-0.0180664,-0.0163269,-0.0163269,-0.0144348,-0.0134277,-0.00985718,-0.00653076,-0.00302124,0,0.0015564,0.00210571,0.00161743,0.000549316,-0.00247192,-0.00610352,-0.0108337,-0.0177307,-0.0253906,-0.0323486,-0.0372314,-0.0405884,-0.0429993,-0.0442505,-0.043457,-0.0401001,-0.0334778,-0.023407,-0.0125122,-0.00323486,0.00357056,0.00753784,0.00964355,0.0125732,0.0139465,0.0153198,0.0149841,0.0136414,0.0116882,0.0108337,0.0118103,0.0146484,0.0179443,0.0203247,0.0224609,0.0232849,0.0247498,0.0250244,0.0263977,0.0263672,0.0253906,0.0230713,0.0217285,0.02005,0.0192566,0.0183716,0.0177917,0.0187683,0.0221558,0.026886,0.0317993,0.0367126,0.0410156,0.0447998,0.0492554,0.0536804,0.0574646,0.0583191,0.0568237,0.0512085,0.0447998,0.0365295,0.0284729,0.0211182,0.0131531,0.00726318,0.00134277,-0.000793457,-0.000427246,0.00219727,0.00473022,0.00888062,0.0127258,0.0151978,0.0185852,0.0214539,0.023407,0.0242004,0.0235596,0.0224609,0.0222168,0.0216064,0.018158,0.0137024,0.00689697,0.000488281,-0.0055542,-0.0100708,-0.0125122,-0.0125732,-0.0124512,-0.0123901,-0.011322,-0.00970459,-0.00674438,-0.00360107,0.00012207,0.00238037,0.00289917,0.00161743,0.000213623,-0.00198364,-0.00378418,-0.00494385,-0.00592041,-0.00463867,-0.000793457,0.00274658,0.00726318,0.0101929,0.0132141,0.0145569,0.0161743,0.0171509,0.0165405,0.0144958,0.0106201,0.00506592,-0.000335693,-0.00592041,-0.0085144,-0.00888062,-0.00888062,-0.00787354,-0.00695801,-0.00576782,-0.00302124,0.000640869,0.00430298,0.00823975,0.0121155,0.015564,0.0186462,0.0193481,0.018219,0.0157776,0.0113831,0.00796509,0.0039978,0.00106812,-0.0015564,-0.00457764,-0.00765991,-0.0111694,-0.0148315,-0.0169678,-0.0186462,-0.0184937,-0.0175171,-0.0177307,-0.0163879,-0.015686,-0.0147705,-0.013031,-0.0107727,-0.0100708,-0.00842285,-0.00738525,-0.00662231,-0.00646973,-0.0062561,-0.00604248,-0.00527954,-0.00311279,-0.00149536,0.000427246,0.00149536,0.00210571,0.00198364,0.00106812,-0.000366211,-0.00302124,-0.00680542,-0.0112,-0.015686,-0.0210876,-0.025116,-0.0291138,-0.0308228,-0.0314331,-0.0305176,-0.0286865,-0.025238,-0.0209656,-0.0168762,-0.0128174,-0.00985718,-0.00732422,-0.00430298,-0.00247192,-0.000427246,0.00146484,0.00317383,0.00442505,0.00485229,0.00494385,0.00366211,0.0017395,-6.10352e-05,-0.0022583,-0.00564575,-0.00723267,-0.0101929,-0.0114746,-0.013031,-0.0139465,-0.0157471,-0.0166016,-0.0179443,-0.0187988,-0.0187683,-0.0184326,-0.0164795,-0.013855,-0.0101929,-0.00610352,-0.00204468,0.00106812,0.00415039,0.00570679,0.00836182,0.0105591,0.0125122,0.0137329,0.0142822,0.0126038,0.0108948,0.00900269,0.00787354,0.0078125,0.00668335,0.00500488,0.00210571,-0.0017395,-0.00491333,-0.00793457,-0.00976562,-0.0117493,-0.0136414,-0.0143433,-0.0145569,-0.013855,-0.0123901,-0.00915527,-0.00668335,-0.00350952,-0.00125122,0.00167847,0.00311279,0.0062561,0.00753784,0.009552,0.0101318,0.0111694,0.0125122,0.0130005,0.0134888,0.0123291,0.0109863,0.00866699,0.00494385,0.00259399,-0.00134277,-0.00338745,-0.00540161,-0.00683594,-0.00704956,-0.00668335,-0.0055542,-0.00415039,-0.00247192,-0.000701904,0.000762939,0.00219727,0.00357056,0.00543213,0.00680542,0.00793457,0.00949097,0.00878906,0.00949097,0.0088501,0.00823975,0.00695801,0.00570679,0.00427246,0.00210571,0.000335693,-0.00189209,-0.00421143,-0.00576782,-0.00744629,-0.00823975,-0.0085144,-0.00796509,-0.0071106,-0.00604248,-0.00527954,-0.00442505,-0.00317383,-0.000976562,0.000549316,0.00195312,0.00210571,0.00189209,0.0015564,0.00134277,0.00140381,0.000976562,0.000427246,-0.000488281,-0.00216675,-0.00289917,-0.00360107,-0.00286865,-0.00241089,-0.00167847,-0.00140381,-0.00134277,-0.00149536,-0.00189209,-0.00231934,-0.00372314,-0.00588989,-0.00744629,-0.009552,-0.00976562,-0.00985718,-0.00717163,-0.0045166,-0.00012207,0.00402832,0.00964355,0.0141296,0.0187683,0.0209656,0.0211182,0.0189819,0.0144348,0.009552,0.00360107,-0.00238037,-0.00817871,-0.013031,-0.0164795,-0.0187683,-0.0176697,-0.0161743,-0.0139465,-0.0116882,-0.00906372,-0.00668335,-0.00479126,-0.00317383,-0.00335693,-0.00338745,-0.0038147,-0.00302124,-0.00241089,0.000427246,0.00241089,0.00512695,0.00653076,0.00662231,0.00738525,0.00732422,0.00747681,0.00613403,0.00415039,0.00119019,-0.00286865,-0.00619507,-0.00836182,-0.0104675,-0.0123291,-0.0135803,-0.0141296,-0.0142822,-0.0124512,-0.0101318,-0.00808716,-0.00485229,-0.00241089,0.000579834,0.00421143,0.00796509,0.0111694,0.0142822,0.0155334,0.0161133,0.0163269,0.0169678,0.0159607,0.0158997,0.0143433,0.0118713,0.0101318,0.00732422,0.00576782,0.00436401,0.00289917,0.00161743,0.000488281,-0.000762939,0.000366211,0.000274658,0.00140381,0.0015564,0.00210571,0.00259399,0.00296021,0.00311279,0.00302124,0.0022583,0.00183105,0.00241089,0.00311279,0.00479126,0.00598145,0.00775146,0.00817871,0.00949097,0.0105591,0.0119019,0.0122986,0.012085,0.0102539,0.00662231,0.00238037,-0.00146484,-0.00518799,-0.00765991,-0.00976562,-0.0114746,-0.0119629,-0.010498,-0.00845337,-0.00500488,-0.000915527,0.00311279,0.00753784,0.0114746,0.0149841,0.0173645,0.0178833,0.0169678,0.0151062,0.0129395,0.0107727,0.0093689,0.00842285,0.00656128,0.00564575,0.0039978,0.0038147,0.00360107,0.00527954,0.00668335,0.00817871,0.00866699,0.00933838,0.00979614,0.009552,0.0101929,0.00878906,0.00872803,0.0071106,0.00598145,0.00527954,0.00430298,0.00289917,0.00149536,-6.10352e-05,-0.00149536,-0.00274658,-0.00350952,-0.00408936,-0.00360107,-0.0038147,-0.00317383,-0.00308228,-0.00241089,-0.00204468,-0.00198364,-0.00210571,-0.00302124,-0.0032959,-0.00408936,-0.00469971,-0.00494385,-0.00564575,-0.0062561,-0.00570679,-0.00598145,-0.00457764,-0.00469971,-0.00344849,-0.00378418,-0.00344849,-0.0032959,-0.00296021,-0.00274658,-0.00378418,-0.00436401,-0.00656128,-0.00765991,-0.00927734,-0.0104675,-0.0118103,-0.0122375,-0.0134888,-0.0134888,-0.0132446,-0.0114136,-0.0104065,-0.00732422,-0.0055542,-0.00335693,-0.00210571,-0.000152588,0.000762939,0.00183105,0.00195312,0.00119019,0.000427246,-0.000854492,-0.00195312,-0.00350952,-0.00491333,-0.00613403,-0.0078125,-0.00872803,-0.00997925,-0.0108337,-0.0116272,-0.0129395,-0.0134277,-0.0141907,-0.0137024,-0.0126648,-0.0116882,-0.0101318,-0.0093689,-0.00830078,-0.00836182,-0.00738525,-0.00808716,-0.00726318,-0.00845337,-0.00823975,-0.00909424,-0.0088501,-0.0088501,-0.00830078,-0.00701904,-0.00646973,-0.00469971,-0.00317383,-0.00146484,-0.00012207,0.000335693,0.000762939,0.000488281,-0.000488281,-0.000701904,-0.00265503,-0.00408936,-0.00704956,-0.00933838,-0.0107117,-0.0126648,-0.0123291,-0.0113831,-0.00958252,-0.00753784,-0.0039978,-0.00149536,0.00189209,0.00393677,0.00619507,0.00704956,0.00723267,0.00695801,0.00527954,0.00378418,0.00119019,-0.00167847,-0.00430298,-0.00640869,-0.00836182,-0.00933838,-0.00857544,-0.00793457,-0.00631714,-0.00366211,-0.0010376,0.00167847,0.00457764,0.00634766,0.00759888,0.00808716,0.00787354,0.00726318,0.00534058,0.00415039,0.00241089,0.000793457,0.000152588,-0.000579834,0.000213623,0.000152588,0.0017395,0.00302124,0.00421143,0.00646973,0.00717163,0.00842285,0.00738525,0.0062561,0.00421143,0.00149536,-0.00125122,-0.00366211,-0.00653076,-0.00772095,-0.00964355,-0.00888062,-0.00814819,-0.00549316,-0.00286865,0.000976562,0.00378418,0.00674438,0.00915527,0.0106812,0.011322,0.0115967,0.0112,0.0100708,0.00894165,0.00631714,0.00485229,0.00210571,0.000213623,-0.000854492,-0.0017395,-0.000915527,-0.000152588,0.0017395,0.0022583,0.00378418,0.0038147,0.00500488,0.00521851,0.00610352,0.00598145,0.00631714,0.00634766,0.00646973,0.00634766,0.00717163,0.00726318,0.00793457,0.00753784,0.00796509,0.00817871,0.00823975,0.00894165,0.0085144,0.00836182,0.00772095,0.0071106,0.00683594,0.00592041,0.00588989,0.00469971,0.0038147,0.00198364,0.00112915,-0.000976562,-0.00204468,-0.00350952,-0.00500488,-0.00582886,-0.00634766,-0.00674438,-0.00619507,-0.00494385,-0.00421143,-0.00177002,0.00012207,0.00219727,0.00372314,0.00448608,0.00506592,0.00457764,0.00415039,0.00241089,0.00146484,-0.000488281,-0.00140381,-0.0022583,-0.00360107,-0.0038147,-0.00436401,-0.00430298,-0.00473022,-0.00430298,-0.00393677,-0.00378418,-0.00308228,-0.00289917,-0.00268555,-0.00253296,-0.00253296,-0.00183105,-0.0010376,0.000274658,0.00210571,0.0039978,0.00653076,0.00906372,0.0106812,0.0126038,0.013031,0.0133057,0.0130005,0.0111084,0.00976562,0.00732422,0.00543213,0.00302124,0.00112915,-0.000793457,-0.00241089,-0.00378418,-0.00469971,-0.00512695,-0.00549316,-0.00570679,-0.00527954,-0.00534058,-0.00421143,-0.00393677,-0.00317383,-0.00259399,-0.00198364,-0.00189209,-0.00140381,-0.0017395,-0.00149536,-0.00167847,-0.00253296,-0.00259399,-0.00323486,-0.00366211,-0.00415039,-0.00436401,-0.00457764,-0.00448608,-0.00494385,-0.00427246,-0.00463867,-0.00427246,-0.00473022,-0.00479126,-0.00512695,-0.00582886,-0.00674438,-0.00765991,-0.00866699,-0.00964355,-0.0105591,-0.0104675,-0.00991821,-0.00933838,-0.00772095,-0.00668335,-0.00521851,-0.00408936,-0.00219727,-0.00216675,-0.000427246,-0.000793457,-0.000427246,-0.00106812,-0.00161743,-0.00198364,-0.00289917,-0.0032959,-0.00344849,-0.00317383,-0.00268555,-0.00149536,-0.000976562,0.000762939,0.00140381,0.00265503,0.00335693,0.00360107,0.00436401,0.00378418,0.00360107,0.00338745,0.00238037,0.0017395,0.000793457,0.000488281,-0.000549316,-0.000854492,-0.0010376,-0.00189209,-0.0017395,-0.00274658,-0.00338745,-0.00350952,-0.00457764,-0.00436401,-0.00463867,-0.0038147,-0.00344849,-0.00268555,-0.00161743,-0.000793457,0.000213623,0.00112915,0.00119019,0.0017395,0.000976562,0.000488281,0.000427246,-0.000152588,-0.000274658,-0.000488281,-0.000762939,-0.0010376,-0.000793457,-0.000488281,-0.00012207,0,0.000335693,6.10352e-05,-0.000335693,-0.000854492,-0.00134277,-0.00149536,-0.00265503,-0.00247192,-0.0032959,-0.00296021,-0.00259399,-0.00149536,-0.000366211,0.000274658,0.00149536,0.00253296,0.00357056,0.00469971,0.00570679,0.00561523,0.00598145,0.00561523,0.00494385,0.00457764,0.00360107,0.00308228,0.00204468,0.00149536,0.000976562,0.00112915,0.0017395,0.00216675,0.00317383,0.00408936,0.00494385,0.00540161,0.00610352,0.00570679,0.00512695,0.00427246,0.00286865,0.00198364,0.000549316,0,-0.000549316,0.000213623,0.000274658,0.00253296,0.00350952,0.00588989,0.00723267,0.00927734,0.00964355,0.0104065,0.00942993,0.00866699,0.00619507,0.00387573,0.000976562,-0.00161743,-0.00393677,-0.00570679,-0.00689697,-0.00738525,-0.00744629,-0.00640869,-0.00576782,-0.00378418,-0.00247192,-0.00134277,-6.10352e-05,0.000335693,0.000701904,0.000213623,0,-0.000701904,-0.00149536,-0.00216675,-0.00302124,-0.00344849,-0.00366211,-0.00323486,-0.00274658,-0.00219727,-0.000976562,-0.000274658,0.000366211,0.00128174,0.00146484,0.00119019,0.000488281,-0.00106812,-0.0017395,-0.0039978,-0.00463867,-0.00653076,-0.00689697,-0.00765991,-0.00753784,-0.00723267,-0.0062561,-0.00500488,-0.0038147,-0.00146484,0,0.00189209,0.00360107,0.00485229,0.00619507,0.00634766,0.00744629,0.00701904,0.00726318,0.00619507,0.00564575,0.00518799,0.00408936,0.00378418,0.00323486,0.00238037,0.00241089,0.0015564,0.000976562,0.000488281,-0.000335693,-0.00112915,-0.00219727,-0.00296021,-0.00408936,-0.00448608,-0.00540161,-0.00549316,-0.00604248,-0.00631714,-0.00619507,-0.00646973,-0.00543213,-0.00518799,-0.00408936,-0.00402832,-0.00289917,-0.00296021,-0.00219727,-0.00183105,-0.00149536,-0.00106812,-0.000640869,-0.00134277,-0.000854492,-0.00189209,-0.00247192,-0.00421143,-0.00534058,-0.00738525,-0.00909424,-0.0105591,-0.0123291,-0.0129395,-0.0136414,-0.0127258,-0.0123291,-0.0106201,-0.00845337,-0.00680542,-0.00479126,-0.00274658,-0.00119019,-0.000427246,0.000579834,0.0010376,0.000762939,0.00125122,0.000640869,0.000854492,0.000976562,0.00106812,0.00198364,0.00265503,0.00372314,0.00485229,0.00592041,0.00610352,0.00701904,0.00680542,0.00646973,0.00592041,0.0055542,0.00473022,0.00387573,0.00274658,0.00219727,0.000915527,0.000488281,-0.000152588,-0.000488281,-0.000274658,0.000427246,0.000488281,0.00189209,0.00289917,0.00387573,0.00561523,0.00695801,0.00796509,0.00933838,0.00964355,0.00991821,0.00915527,0.00857544,0.00695801,0.00473022,0.00289917,0.00012207,-0.00183105,-0.00402832,-0.00570679,-0.00689697,-0.00787354,-0.00738525,-0.00759888,-0.00598145,-0.00534058,-0.00360107,-0.00311279,-0.0017395,-0.00128174,-0.000793457,-0.000549316,-0.000640869,-0.00112915,-0.0015564,-0.00238037,-0.00286865,-0.00308228,-0.00357056,-0.00317383,-0.00274658,-0.00274658,-0.00134277,-0.00119019,-0.000152588,0.000549316,0.00119019,0.00146484,0.00119019,0.00140381,0.000335693,0.00012207,-0.0010376,-0.00210571,-0.00259399,-0.00323486,-0.00393677,-0.00378418,-0.00338745,-0.00238037,-0.000793457,0.000701904,0.00317383,0.00506592,0.00738525,0.00866699,0.0104675,0.0107117,0.0115967,0.0108948,0.0106201,0.00915527,0.00787354,0.00723267,0.00506592,0.0045166,0.0032959,0.00219727,0.00146484,0.000427246,-0.00012207,-0.000488281,-0.000915527,-0.0010376,-0.00112915,-0.000915527,-0.000915527,-0.000793457,-0.000335693,-0.00012207,-0.000213623,0.000335693,0.000213623,0.000488281,0.000213623,0.000579834,0.000549316,0.000213623,0.000213623,6.10352e-05,-0.000274658,-0.000213623,-0.000579834,-0.000976562,-0.000854492,-0.00146484,-0.00140381,-0.00219727,-0.00216675,-0.00302124,-0.00311279,-0.00393677,-0.00415039,-0.00518799,-0.00540161,-0.00640869,-0.00704956,-0.00759888,-0.00845337,-0.00857544,-0.00909424,-0.00830078,-0.0088501,-0.00726318,-0.00653076,-0.00543213,-0.00317383,-0.00204468,-0.00012207,0.00161743,0.00259399,0.00274658,0.00335693,0.00238037,0.00241089,0.00112915,0.000488281,0.000152588,-0.000762939,-0.000854492,-0.00112915,-0.00119019,-0.00119019,-0.000915527,-0.000427246,-0.000152588,-0.000274658,-0.000152588,-0.000152588,-0.000427246,-0.000427246,-0.000579834,-0.00012207,-0.00012207,0.000701904,0.000427246,0.00177002,0.00167847,0.00286865,0.00317383,0.00393677,0.00393677,0.0039978,0.00408936,0.00360107,0.00286865,0.00259399,0.0017395,0.000976562,0.000549316,-0.000915527,-0.00125122,-0.00259399,-0.00372314,-0.00457764,-0.0062561,-0.00683594,-0.00823975,-0.00888062,-0.00964355,-0.0102844,-0.0103455,-0.00979614,-0.00976562,-0.00836182,-0.00717163,-0.00610352,-0.00430298,-0.00350952,-0.00216675,-0.00183105,-0.00134277,-0.00149536,-0.00146484,-0.00195312,-0.00268555,-0.00259399,-0.00360107,-0.00323486,-0.00350952,-0.00265503,-0.00231934,-0.00146484,-0.000274658,0.000213623,0.00128174,0.00183105,0.00183105,0.00253296,0.00183105,0.0017395,0.00134277,0.000640869,0.000549316,-0.000335693,-0.000213623,0,0.000335693,0.000976562,0.00216675,0.00357056,0.00442505,0.00604248,0.00668335,0.00830078,0.00878906,0.00958252,0.0100708,0.00970459,0.00979614,0.00857544,0.00775146,0.0062561,0.00549316,0.00350952,0.00280762,0.0017395,0.000854492,0.000335693,-0.000366211,-0.000366211,-0.000579834,-0.000762939,-0.000915527,-0.000762939,-0.00125122,-0.00146484,-0.00231934,-0.00274658,-0.00344849,-0.0039978,-0.00448608,-0.00485229,-0.00469971,-0.00534058,-0.00500488,-0.00494385,-0.0045166,-0.00415039,-0.00350952,-0.00289917,-0.00253296,-0.00189209,-0.00134277,-0.000762939,-0.000366211,-6.10352e-05,0.000549316,0.000640869,0.000640869,0.000549316,0.000427246,-6.10352e-05,-0.000274658,-0.000549316,-0.000762939,-0.000793457,-0.0010376,-0.000793457,-0.000549316,-0.000549316,0,0.000152588,0.000854492,0.00161743,0.00161743,0.00238037,0.00280762,0.00302124,0.00357056,0.00372314,0.00436401,0.00473022,0.00494385,0.00570679,0.00592041,0.0062561,0.00631714,0.0062561,0.00656128,0.00631714,0.00656128,0.00570679,0.00540161,0.00506592,0.00393677,0.00408936,0.00286865,0.00274658,0.00177002,0.000976562,0.000213623,-0.000793457,-0.00161743,-0.00241089,-0.00238037,-0.00253296,-0.00210571,-0.0022583,-0.00134277,-0.00125122,-0.000427246,-0.000213623,-0.00012207,-0.00012207,-0.000335693,-0.00128174,-0.00195312,-0.00274658,-0.00378418,-0.00427246,-0.00469971,-0.00549316,-0.00521851,-0.00521851,-0.00494385,-0.00415039,-0.00408936,-0.00317383,-0.00323486,-0.00253296,-0.00238037,-0.00238037,-0.00219727,-0.00253296,-0.00289917,-0.00286865,-0.00296021,-0.00302124,-0.00274658,-0.00268555,-0.00231934,-0.00204468,-0.00177002,-0.00106812,-0.000762939,0.000152588,0.000640869,0.0015564,0.00274658,0.00296021,0.00427246,0.00457764,0.00543213,0.00527954,0.00500488,0.00442505,0.0038147,0.00302124,0.0017395,0.0010376,-0.000213623,-0.000488281,-0.000854492,-0.00134277,-0.000854492,-0.000854492,-0.000640869,-0.000335693,0.000152588,0.000427246,0.000640869,0.00112915,0.000488281,0.000976562,0.000274658,0.000366211,-0.000640869,0,-0.000701904,-0.00012207,-0.000366211,-0.000488281,-0.000366211,-0.000152588,-0.000793457,-0.00106812,-0.00189209,-0.00308228,-0.0038147,-0.00527954,-0.00674438,-0.00747681,-0.0088501,-0.00909424,-0.00949097,-0.00976562,-0.00949097,-0.00900269,-0.00863647,-0.00744629,-0.00683594,-0.00549316,-0.00521851,-0.00408936,-0.0038147,-0.00317383,-0.00311279,-0.00280762,-0.00216675,-0.00198364,-0.00146484,-0.00112915,0.00012207,0.000274658,0.00119019,0.00183105,0.0022583,0.00253296,0.00231934,0.00286865,0.00241089,0.00238037,0.00238037,0.00177002,0.00238037,0.00140381,0.00198364,0.00146484,0.0015564,0.00125122,0.00106812,0.000915527,0.000427246,0.000762939,0.000274658,0.000793457,0.000915527,0.0015564,0.00219727,0.00286865,0.00317383,0.00442505,0.00430298,0.00506592,0.00485229,0.00491333,0.00448608,0.0038147,0.00302124,0.00189209,0.000701904,6.10352e-05,-0.00183105,-0.00219727,-0.00335693,-0.00402832,-0.00448608,-0.00457764,-0.00442505,-0.00430298,-0.00344849,-0.00372314,-0.00280762,-0.00311279,-0.00308228,-0.00280762,-0.0032959,-0.0032959,-0.00387573,-0.00436401,-0.00436401,-0.00448608,-0.00430298,-0.00360107,-0.00280762,-0.00219727,-0.00112915,-0.00012207,0.000793457,0.0015564,0.00161743,0.00274658,0.00219727,0.00177002,0.00204468,0.000854492,0.000640869,-0.000335693,-0.000762939,-0.00119019,-0.00119019,-0.00106812,-0.000701904,-0.000213623,0.000762939,0.00149536,0.00238037,0.00335693,0.00457764,0.00512695,0.00613403,0.00680542,0.00726318,0.00775146,0.00753784,0.00726318,0.00701904,0.00662231,0.00604248,0.00582886,0.00527954,0.00469971,0.00415039,0.00344849,0.00253296,0.00216675,0.0015564,0.000427246,-0.000152588,-0.00149536,-0.00204468,-0.00265503,-0.00335693,-0.00296021,-0.00286865,-0.00265503,-0.00210571,-0.00106812,-0.000579834,0.000152588,0.000579834,0.000976562,0.00125122,0.00119019,0.000793457,0.00119019,0.000213623,0.000335693,-6.10352e-05,-0.000640869,-0.000579834,-0.00128174,-0.00140381,-0.00167847,-0.00216675,-0.00296021,-0.00357056,-0.00402832,-0.00491333,-0.00527954,-0.00576782,-0.00582886,-0.00631714,-0.00592041,-0.00570679,-0.00479126,-0.00366211,-0.00265503,-0.00125122,0.000366211,0.00119019,0.00302124,0.00357056,0.00436401,0.0055542,0.00540161,0.00613403,0.00561523,0.00576782,0.00457764,0.0039978,0.00289917,0.00189209,0.000488281,0.000274658,-0.00146484,-0.00134277,-0.00216675,-0.00219727,-0.00161743,-0.00177002,-0.000640869,-0.000793457,0.000152588,0.000213623,0.000579834,0.000793457,0.000488281,0.000762939,0.00012207,-0.000152588,-0.000854492,-0.000793457,-0.00128174,-0.00119019,-0.00125122,-0.00112915,-0.000915527,-0.000793457,6.10352e-05,0.00012207,0.000640869,0.000762939,0.000915527,0,-0.00012207,-0.00112915,-0.00189209,-0.00289917,-0.00442505,-0.00549316,-0.00646973,-0.00787354,-0.00823975,-0.00842285,-0.0088501,-0.00802612,-0.0071106,-0.00668335,-0.00473022,-0.0038147,-0.00241089,-0.00134277,-0.000335693,6.10352e-05,0.00012207,0.000335693,6.10352e-05,-0.000274658,-0.000213623,-0.000976562,-0.000762939,-0.000854492,-0.000701904,-0.000549316,-0.000335693,-0.000335693,-0.000152588,-0.000366211,-0.00106812,-0.000640869,-0.00134277,-0.0010376,-0.000640869,-0.000549316,0.000274658,0.000701904,0.00149536,0.00198364,0.00238037,0.00280762,0.00238037,0.0022583,0.0017395,0.00106812,0.000427246,-0.00012207,-0.000427246,-6.10352e-05,0.00012207,0.000762939,0.0017395,0.00296021,0.00350952,0.00436401,0.00448608,0.00436401,0.00338745,0.00274658,0.0010376,-0.000427246,-0.00167847,-0.00338745,-0.00366211,-0.0045166,-0.00402832,-0.00323486,-0.00231934,-0.00106812,0.000701904,0.00140381,0.00253296,0.00238037,0.00253296,0.00210571,0.000427246,-0.000427246,-0.00210571,-0.00317383,-0.00512695,-0.00527954,-0.00592041,-0.00610352,-0.00512695,-0.00408936,-0.00308228,-0.00140381,0.00012207,0.000854492,0.00216675,0.00238037,0.0022583,0.0017395,0.00119019,-0.000152588,-0.0010376,-0.00265503,-0.00286865,-0.00360107,-0.00387573,-0.0032959,-0.00253296,-0.00204468,0,0.000976562,0.00238037,0.00350952,0.00448608,0.00521851,0.00534058,0.00512695,0.00485229,0.0039978,0.00311279,0.0022583,0.00146484,0.00106812,0.000488281,0.00140381,0.000488281,0.00195312,0.00198364,0.00259399,0.00296021,0.00335693,0.00366211,0.00366211,0.00372314,0.00311279,0.00296021,0.00238037,0.0017395,0.00119019,0.000640869,0.000152588,-0.000701904,-0.00112915,-0.00183105,-0.00210571,-0.00238037,-0.00286865,-0.00238037,-0.00253296,-0.00183105,-0.00167847,-0.00140381,-0.00106812,-0.00106812,-0.000488281,-0.00146484,-0.000701904,-0.00149536,-0.00149536,-0.00219727,-0.00259399,-0.00253296,-0.00259399,-0.00247192,-0.00195312,-0.00231934,-0.00198364,-0.00231934,-0.00195312,-0.00265503,-0.00268555,-0.00286865,-0.00335693,-0.00323486,-0.00338745,-0.00302124,-0.00253296,-0.00195312,-0.00125122,-0.000488281,0.000274658,0.000762939,0.000793457,0.00140381,0.000427246,0.000854492,6.10352e-05,-0.000152588,-0.000427246,-0.000366211,-0.000579834,0.000274658,0.000427246,0.00119019,0.00167847,0.00274658,0.00259399,0.00360107,0.0032959,0.00366211,0.00280762,0.00265503,0.00183105,0.000976562,0.000854492,6.10352e-05,-0.00012207,-0.000366211,-0.000976562,-0.000488281,-0.0010376,-0.000549316,-0.000854492,-0.000152588,-0.000549316,-0.000335693,-0.000213623,-0.000335693,-0.000427246,-0.000427246,-0.000366211,-0.00119019,-0.000579834,-0.00106812,-0.00119019,-0.00128174,-0.00146484,-0.00119019,-0.00161743,-0.0010376,-0.00149536,-0.00134277,-0.00128174,-0.0017395,-0.00140381,-0.00219727,-0.00204468,-0.00259399,-0.00231934,-0.00296021,-0.00296021,-0.00311279,-0.00311279,-0.00280762,-0.00323486,-0.00231934,-0.00204468,-0.00189209,-0.00119019,-0.000854492,-0.000762939,-0.000274658,-0.000701904,-0.000335693,-0.000579834,0,-0.000274658,0.000213623,0.000274658,0.000701904,0.000701904,0.0010376,0.00125122,0.00149536,0.00106812,0.00167847,0.00161743,0.0015564,0.00134277,0.00161743,0.00161743,0.00128174,0.00149536,0.0015564,0.0010376,0.00177002,0.000488281,0.00134277,0.000762939,0.00119019,0.000854492,0.000854492,0.00119019,0.00119019,0.00112915,0.00134277,0.00161743,0.0017395,0.00198364,0.00177002,0.00216675,0.00167847,0.00167847,0.00146484,0.00106812,0.000793457,0.000152588,0.000274658,-0.000427246,-0.000213623,-0.000854492,-0.0010376,-0.00149536,-0.0017395,-0.00253296,-0.00253296,-0.00311279,-0.0032959,-0.00357056,-0.00323486,-0.00302124,-0.00280762,-0.00204468,-0.00146484,-0.000579834,-0.000335693,0.000427246,0.000762939,0.000762939,0.000640869,0.000274658,0.000213623,-0.000549316,-0.000976562,-0.000915527,-0.00167847,-0.00146484,-0.00140381,-0.00112915,-0.000854492,-0.00012207,-0.000213623,0.000152588,0.000366211,-0.000152588,-0.000152588,-0.000793457,-0.00140381,-0.00198364,-0.00238037,-0.00323486,-0.00280762,-0.00338745,-0.00268555,-0.00253296,-0.0017395,-0.00112915,-0.000152588,0.000701904,0.00161743,0.00231934,0.00308228,0.00308228,0.00357056,0.00323486,0.00296021,0.00296021,0.00183105,0.00189209,0.000854492,0.000427246,-0.000213623,-0.000701904,-0.00134277,-0.0010376,-0.00167847,-0.00149536,-0.00134277,-0.00161743,-0.00106812,-0.00128174,-0.00146484,-0.00112915,-0.00149536,-0.00134277,-0.00167847,-0.00134277,-0.00161743,-0.0015564,-0.00112915,-0.0010376,-0.000976562,0.000152588,0,0.000640869,0.000579834,0.000976562,0.000579834,0.000213623,-0.00012207,-0.000274658,-0.000793457,-0.00125122,-0.00210571,-0.00183105,-0.00268555,-0.00253296,-0.00286865,-0.00268555,-0.00259399,-0.00274658,-0.00259399,-0.00210571,-0.00268555,-0.0017395,-0.00146484,-0.00112915,-0.000701904,-0.000335693,-0.000213623,0.000274658,0.000701904,0.000488281,0.000976562,0.00112915,0.000762939,0.00112915,0.000793457,0.000579834,0.000854492,0.000488281,0.000579834,0.000213623,0.000427246,-6.10352e-05,0.000213623,-0.000549316,-0.000579834,-0.00140381,-0.00112915,-0.00204468,-0.00146484,-0.00161743,-0.00140381,-0.0010376,-0.000640869,0.00012207,0.000549316,0.000854492,0.00183105,0.0015564,0.00189209,0.00204468,0.00146484,0.00112915,0.00112915,0.000579834,0.000549316,0,-0.000274658,-6.10352e-05,-0.000701904,-0.000549316,-0.000793457,-0.000427246,-0.00146484,-0.000488281,-0.00125122,-0.0015564,-0.00128174,-0.00210571,-0.0022583,-0.00216675,-0.00241089,-0.00210571,-0.00204468,-0.00177002,-0.00128174,-0.000854492,-0.000427246,0.000366211,0.000579834,0.000915527,0.00128174,0.00161743,0.00125122,0.00149536,0.0010376,0.000854492,0.000427246,0.000793457,-0.000427246,0.000549316,0.000152588,-6.10352e-05,0.000549316,0.000579834,0.000915527,0.00128174,0.000976562,0.0015564,0.0010376,0.0010376,0.000762939,0.00012207,0,-0.000274658,-0.000701904,-0.000427246,-0.000793457,-6.10352e-05,0.000152588,0.000793457,0.00128174,0.00195312,0.00210571,0.00259399,0.00238037,0.00259399,0.00219727,0.00140381,0.000640869,0.000427246,-0.000976562,-0.00119019,-0.00146484,-0.00216675,-0.0022583,-0.00177002,-0.00210571,-0.0015564,-0.00140381,-0.00119019,-0.0010376,-0.000854492,-0.000854492,-0.00134277,-0.0010376,-0.00146484,-0.00167847,-0.00161743,-0.00183105,-0.00140381,-0.0015564,-0.00134277,-0.000854492,-0.000915527,-0.00012207,-0.000549316,-0.000152588,-0.00012207,-0.000152588,-0.000213623,-0.000213623,-0.000488281,-0.000335693,-0.000579834,-0.000335693,-0.000579834,-0.000152588,-0.000335693,-0.000335693,0.000549316,-0.000274658,0.000793457,0.000488281,0.00119019,0.00112915,0.00149536,0.00119019,0.00195312,0.0010376,0.00146484,0.00149536,0.0015564,0.00167847,0.00146484,0.00204468,0.0015564,0.00204468,0.00140381,0.00167847,0.00106812,0.000976562,0.000335693,-0.000335693,-0.000793457,-0.00112915,-0.0017395,-0.00167847,-0.00216675,-0.00167847,-0.00161743,-0.00112915,-0.000854492,0.000152588,-0.000213623,0.000640869,0.000366211,0.000274658,6.10352e-05,-0.000274658,-0.000854492,-0.0010376,-0.00106812,-0.0015564,-0.00106812,-0.00149536,-0.000640869,-0.000640869,-0.000152588,6.10352e-05,0.000213623,0.000274658,-0.000152588,-0.000488281,-0.000549316,-0.00146484,-0.0015564,-0.00231934,-0.00274658,-0.00280762,-0.00296021,-0.00311279,-0.00274658,-0.0022583,-0.00210571,-0.00128174,-0.000793457,6.10352e-05,0.000762939,0.00125122,0.00204468,0.00204468,0.00238037,0.00265503,0.00219727,0.00198364,0.00183105,0.00112915,0.00112915,0.000335693,0.000640869,0.000640869,0.000427246,0.000915527,0.00106812,0.00119019,0.00119019,0.00112915,0.000762939,0.000640869,-0.000701904,-0.000579834,-0.00195312,-0.00253296,-0.00338745,-0.00338745,-0.00350952,-0.0032959,-0.00265503,-0.00219727,-0.00119019,-0.000427246,0.000366211,0.0010376,0.00146484,0.0017395,0.00146484,0.00146484,0.00106812,0.000640869,-0.000213623,-0.00012207,-0.0010376,-0.0010376,-0.00149536,-0.00161743,-0.00195312,-0.00177002,-0.0022583,-0.00216675,-0.00274658,-0.00268555,-0.00296021,-0.00338745,-0.00335693,-0.00338745,-0.00357056,-0.00308228,-0.00302124,-0.00241089,-0.00204468,-0.0017395,-0.00125122,-0.000640869,-0.000549316,-0.000335693,-0.000152588,0.000213623,-6.10352e-05,0.000274658,0.00012207,0.000579834,0.000213623,0.000488281,0.000488281,0.000427246,0.000427246,0.000274658,0.00012207,-0.000213623,0,-0.000579834,-0.000579834,-0.000366211,-0.000640869,-0.000213623,-0.000579834,-0.00012207,6.10352e-05,-0.000274658,0.000152588,0.000274658,0.000335693,0.000579834,0.000579834,0.000793457,0.000976562,0.00149536,0.00146484,0.00167847,0.00216675,0.00204468,0.00210571,0.00161743,0.00183105,0.00112915,0.00119019,0.000152588,0.000335693,-0.000762939,-0.000640869,-0.00134277,-0.00161743,-0.00146484,-0.00241089,-0.0017395,-0.00216675,-0.00216675,-0.00183105,-0.0015564,-0.00146484,-0.0010376,-0.000488281,-0.000549316,-0.000274658,0.00012207,0.000274658,0.000427246,0.000366211,0.000488281,0.000152588,0,-0.00012207,-0.000335693,-0.000549316,-0.000549316,-0.000335693,-0.000488281,-6.10352e-05,-0.000488281,0.000427246,-0.000152588,0.000793457,0.000579834,0.000335693,0.000793457,0.000274658,0.000152588,-0.000488281,0.000152588,-0.00134277,-0.000976562,-0.00125122,-0.00167847,-0.00161743,-0.00149536,-0.00125122,-0.000793457,-0.000579834,0.000152588,0.000427246,0.00106812,0.00128174,0.0015564,0.00216675,0.00167847,0.00189209,0.00161743,0.00146484,0.000579834,0.000579834,-0.000549316,-0.000427246,-0.000793457,-0.000915527,-0.00106812,-0.000579834,-0.000640869,-0.00012207,0.000274658,-0.000335693,0.000427246,-0.000152588,6.10352e-05,-0.000915527,-0.000762939,-0.00112915,-0.0017395,-0.0017395,-0.00189209,-0.00210571,-0.00140381,-0.00128174,-0.000854492,-0.000335693,0.000152588,0.000762939,0.000488281,0.00146484,0.000915527,0.000854492,0.000762939,-0.000152588,-6.10352e-05,-0.000915527,-0.000915527,-0.0010376,-0.00128174,-0.00140381,-0.000793457,-0.00112915,-0.000640869,-0.000701904,-0.000366211,-0.000335693,-0.00012207,-0.000152588,-0.000152588,0.00012207,-6.10352e-05,0.000152588,-0.000274658,0.000762939,-0.000152588,0.000701904,0.00012207,0.00012207,0.000427246,0.00012207,0.000701904,-0.00012207,0.000549316,0.000427246,0.000701904,0.000274658,0.000915527,0.000579834,0.00112915,0.0010376,0.00112915,0.000762939,0.00106812,0.000640869,0.000427246,6.10352e-05,0,-0.000213623,-0.000549316,-0.000549316,-0.000579834,-0.00012207,-0.000549316,0.000213623,6.10352e-05,0.000549316,0.000427246,0.000762939,0.000762939,0.000640869,0.000701904,0.000274658,0,-0.000152588,-0.000854492,-0.000701904,-0.00149536,-0.00167847,-0.00167847,-0.00189209,-0.0017395,-0.00134277,-0.00149536,-0.00119019,-0.00106812,-0.000793457,-0.000640869,-0.00106812,-0.000701904,-0.000854492,-0.00128174,-0.00106812,-0.00140381,-0.0015564,-0.00183105,-0.0015564,-0.00195312,-0.00177002,-0.00161743,-0.0015564,-0.00134277,-0.00149536,-0.00119019,-0.00106812,-0.000976562,-0.000701904,-0.000915527,-0.000335693,-0.000579834,-0.0010376,-0.000579834,-0.000640869,-0.000793457,-0.00106812,-0.00119019,-0.00125122,-0.00140381,-0.00149536,-0.00149536,-0.00112915,-0.00106812,-0.000549316,-0.000366211,0.000427246,0.000640869,0.000915527,0.0015564,0.00167847,0.00106812,0.00167847,0.000793457,0.000762939,0.000274658,-0.000152588,-0.000640869,-0.000854492,-0.00134277,-0.000793457,-0.000976562,-0.00106812,-0.000549316,-6.10352e-05,-0.000579834,6.10352e-05,0,-6.10352e-05,-0.000335693,-0.00012207,-0.000579834,-0.000213623,-0.000854492,-0.000335693,-0.000335693,-0.00012207,-0.00012207,0.000549316,0.000213623,0.000701904,0.000335693,0.000335693,-0.00012207,-0.000366211,-0.000854492,-0.0010376,-0.00146484,-0.00167847,-0.00210571,-0.00210571,-0.00195312,-0.00198364,-0.00177002,-0.00140381,-0.00134277,-0.00106812,-0.000976562,-0.000976562,-0.000762939,-0.00134277,-0.0010376,-0.00140381,-0.00149536,-0.00149536,-0.00161743,-0.000976562,-0.000976562,-0.000213623,0.000213623,0.000549316,0.00119019,0.00161743,0.00183105,0.00195312,0.00183105,0.00177002,0.00106812,0.0010376,0.000335693,0.00012207,-0.000274658,-0.000213623,-0.000579834,-0.000579834,0,-0.000213623,0.000488281,0.000488281,0.0010376,0.000915527,0.00128174,0.000549316,0.00128174,0.000366211,0.000579834,0,0,-0.000152588,-0.000488281,-0.000152588,-0.000427246,-0.000366211,0.000152588,0,0.000366211,0.000274658,0.000579834,0.000427246,0.000274658,-0.000213623,0,-0.000640869,-0.0010376,-0.00106812,-0.00149536,-0.00149536,-0.00177002,-0.00177002,-0.00149536,-0.0015564,-0.00106812,-0.00128174,-0.000762939,-0.00106812,-0.000762939,-0.0010376,-0.000366211,-0.00112915,-0.000427246,-0.000976562,-0.000640869,-0.000854492,-0.000701904,-0.000854492,-0.000579834,-0.000640869,-0.000427246,-0.00012207,0,0.000640869,0.000274658,0.000854492,0.00128174,0.000762939,0.00134277,0.00106812,0.00119019,0.000854492,0.000701904,0.000640869,0.000366211,0.000549316,0.000549316,0.000640869,0.000762939,0.00106812,0.000854492,0.00125122,0.00106812,0.000701904,0.000640869,0.000366211,-0.000427246,-0.00012207,-0.0010376,-0.000640869,-0.00106812,-0.000640869,-0.000915527,-0.000274658,-0.000366211,-0.00012207,0.000488281,-0.000274658,0.000366211,-0.00012207,-0.000335693,-0.000274658,-0.00119019,-0.000579834,-0.00125122,-0.00125122,-0.00134277,-0.000854492,-0.000854492,-0.000366211,0.00012207,0.000427246,0.000335693,0.0010376,0.000701904,0.000427246,0.000640869,-0.000213623,-0.00012207,-0.000854492,-0.00112915,-0.00125122,-0.00161743,-0.00167847,-0.00146484,-0.00119019,-0.0010376,-0.000854492,0.00012207,0.000274658,0.000335693,0.000915527,0.000854492,0.000640869,0.000762939,0.000213623,0.00012207,-0.000640869,-0.000366211,-0.00112915,-0.000793457,-0.000762939,-0.000427246,-0.000152588,0.000152588,0.000488281,0.00106812,0.000579834,0.0010376,0.000579834,0.00012207,-0.000427246,-0.000854492,-0.00134277,-0.0022583,-0.00189209,-0.00274658,-0.00219727,-0.00210571,-0.00183105,-0.00140381,-0.000762939,-0.000549316,-0.00012207,0.00012207,0.000366211,0.000335693,0.000427246,-0.000152588,0.000274658,-0.000213623,-0.000213623,-0.000335693,-0.000427246,-0.000427246,-0.000335693,-0.000366211,-0.000152588,-0.00012207,-0.00012207,0.000579834,0,0.000427246,0.000579834,0.000427246,0.000335693,0.00012207,-0.000213623,-0.000213623,-0.000915527,-0.000701904,-0.00167847,-0.00146484,-0.00161743,-0.00134277,-0.00183105,-0.00112915,-0.00112915,-0.000152588,-0.000640869,0.000640869,0.000335693,0.000762939,0.00106812,0.000854492,0.000915527,0.000793457,0.000701904,6.10352e-05,-0.000213623,-0.000152588,-0.000915527,-0.000915527,-0.000854492,-0.00119019,-0.00112915,-0.00128174,-0.0010376,-0.00119019,-0.000976562,-0.00119019,-0.000701904,-0.00119019,-0.000579834,-0.000915527,-0.000488281,-0.000640869,-0.000335693,-0.000335693,0.000152588,-0.000274658,0.000488281,0,0.00012207,0.000488281,-0.00012207,0.000427246,0.00012207,0.00012207,0.000366211,0,0.000335693,0,0.000366211,-0.000274658,0.000366211,-0.000549316,-0.000335693,-0.000640869,-0.00112915,-0.00106812,-0.00125122,-0.00119019,-0.00177002,-0.000762939,-0.00134277,-0.000488281,-0.000335693,6.10352e-05,0.000366211,0.0010376,0.000854492,0.0010376,0.00112915,0.00112915,0.000915527,0.000640869,0.000854492,6.10352e-05,0.000427246,6.10352e-05,0.000213623,-6.10352e-05,-0.000213623,0.000366211,-0.000152588,0.00012207,0.000152588,-0.00012207,0.000213623,-0.000152588,-0.000335693,-0.00012207,-0.000366211,-0.000549316,-0.000335693,-0.000213623,-0.000640869,6.10352e-05,-6.10352e-05,6.10352e-05,0.000640869,0.000549316,0.000854492,0.00112915,0.000701904,0.00128174,0.000549316,0.000701904,0.000366211,-0.00012207,-0.00012207,-0.000488281,-0.000427246,-0.000701904,-0.000488281,-0.000915527,-0.000366211,-0.000701904,-0.000701904,-0.000793457,-0.00128174,-0.00134277,-0.00204468,-0.0022583,-0.00241089,-0.00280762,-0.00274658,-0.00259399,-0.0022583,-0.00219727,-0.0010376,-0.00112915,-0.000488281,0.000274658,0.000274658,0.000579834,0.000640869,0.000213623,0.000274658,-0.000427246,-0.000488281,-0.000854492,-0.000976562,-0.000976562,-0.000762939,-0.00112915,-0.000366211,-0.000488281,-0.000152588,0.00012207,0.000427246,0.000274658,0.000488281,0.000366211,0.000366211,0.000366211,0.000488281,0.000366211,0.000427246,0.000488281,0.000640869,0.000854492,0.000976562,0.00128174,0.00125122,0.00119019,0.00161743,0.00125122,0.00149536,0.00125122,0.000762939,0.00128174,0,0.000854492,0,0.000213623,0,-0.00012207,-6.10352e-05,-0.000366211,-0.000366211,-0.000488281,-0.000701904,-0.000976562,-0.000976562,-0.00125122,-0.000915527,-0.00125122,-0.00119019,-0.0010376,-0.000549316,-0.000915527,-0.000366211,-0.000335693,-0.000274658,6.10352e-05,0,-0.00012207,-0.000427246,-0.000152588,-0.000640869,-0.0010376,-0.000854492,-0.0015564,-0.00128174,-0.00177002,-0.00146484,-0.00140381,-0.00167847,-0.00134277,-0.00140381,-0.00119019,-0.00125122,-0.00119019,-0.0010376,-0.00125122,-0.0015564,-0.000976562,-0.00161743,-0.000976562,-0.0010376,-0.000701904,-0.000640869,6.10352e-05,-6.10352e-05,0.000549316,0.000793457,0.00119019,0.000579834,0.00140381,0.000854492,0.000976562,0.000701904,0.000915527,0.000366211,0.000701904,0.000274658,0.000366211,0,0.000274658,-0.000366211,-0.000335693,-0.000793457,-0.000549316,-0.00134277,-0.00119019,-0.00112915,-0.00112915,-0.000976562,-0.000701904,-0.000335693,0.000152588,0,0.000488281,0.000549316,0.000366211,0.000274658,0,-0.000213623,-0.000488281,-0.000640869,-0.00106812,-0.000762939,-0.00106812,-0.000549316,-0.000915527,0,-0.000366211,0,-6.10352e-05,-0.000366211,0,-0.000640869,-0.000793457,-0.00112915,-0.00119019,-0.00146484,-0.0015564,-0.00112915,-0.00161743,-0.00125122,-0.000549316,-0.00106812,-0.000366211,-0.000488281,-0.000335693,-0.000701904,-0.000274658,-0.000274658,-0.000488281,-6.10352e-05,-0.000366211,0.000427246,0.00012207,0.000915527,0.000640869,0.00112915,0.000976562,0.00106812,0.000366211,0.000762939,-0.000152588,-0.000274658,-0.000762939,-0.00128174,-0.0010376,-0.00146484,-0.00134277,-0.00106812,-0.000976562,-0.000152588,0,0.000274658,0.000854492,0.00128174,0.00149536,0.00167847,0.00134277,0.0015564,0.00119019,0.000793457,0.000549316,0.000366211,-0.000152588,-0.000640869,-0.000366211,-0.000549316,-0.000854492,-0.000549316,-0.000366211,-0.000488281,6.10352e-05,-0.000335693,-0.00012207,0.00012207,-0.000427246,-0.000213623,-0.000915527,-0.000579834,-0.00161743,-0.00112915,-0.00198364,-0.00146484,-0.00216675,-0.00149536,-0.00177002,-0.00149536,-0.00106812,-0.000793457,-0.000366211,-6.10352e-05,0.000274658,0.000488281,0.000488281,0.0010376,0.000579834,0.000274658,0.000366211,-6.10352e-05,-0.000579834,-0.000915527,-0.00119019,-0.0015564,-0.00198364,-0.00177002,-0.00210571,-0.00204468,-0.00198364,-0.00161743,-0.00146484,-0.000976562,-0.000762939,-0.000213623,-0.00012207,0.000488281,0.000335693,0.000640869,0.000762939,0.000549316,0.000762939,0,0.000366211,-0.00012207,-0.000213623,-0.000213623,-0.00012207,-0.000335693,0.000213623,0.000152588,0.000640869,0.000213623,0.000762939,0.000213623,0.000366211,6.10352e-05,-0.000274658,-0.000335693,-0.000854492,-0.000793457,-0.00112915,-0.0010376,-0.000854492,-0.000701904,-0.000213623,-0.000274658,0.000213623,0.000274658,0.000549316,0.000213623,0.000488281,0.000335693,0,-0.000274658,-0.000213623,-0.000274658,-0.000701904,-0.000152588,-0.000488281,0.00012207,-0.000213623,0.000274658,-0.00012207,0.00012207,-0.000152588,-0.000213623,-0.000854492,-0.000488281,-0.00140381,-0.00112915,-0.00177002,-0.00149536,-0.00177002,-0.00183105,-0.00140381,-0.00167847,-0.00119019,-0.00106812,-0.000701904,-0.000854492,-0.000549316,-0.000488281,-0.000274658,-0.000488281,-0.000335693,-0.000213623,-0.000549316,-0.000549316,-0.000488281,-0.000579834,-0.000640869,-0.000488281,-0.00112915,-0.000488281,-0.000854492,-0.000488281,-0.000976562,-0.000488281,-0.000762939,-0.000701904,-0.000793457,-0.000549316,-0.000579834,-0.000488281,-0.000427246,-0.000335693,0,0,0.000366211,0.000335693,0.000793457,0.000762939,0.000793457,0.000701904,0.00119019,0.000488281,0.000701904,0.000579834,0.000366211,0,0.000274658,-0.000213623,-0.000366211,-0.000213623,-0.000366211,-0.000427246,-0.000762939,-0.000335693,-0.000793457,-0.000488281,-0.000579834,-0.000701904,-0.000335693,-0.000915527,-0.000213623,-0.000335693,-0.000793457,0,-0.000854492,-0.000427246,-0.000579834,-0.000488281,-0.000549316,-0.000579834,-0.000640869,-6.10352e-05,-0.000549316,0.000274658,0.000152588,0.000213623,0.000854492,0.000549316,0.000213623,0.000762939,-0.000274658,0.00012207,-0.000762939,-0.0010376,-0.00125122,-0.0017395,-0.00161743,-0.00238037,-0.00146484,-0.00161743,-0.00128174,-0.000915527,-0.000335693,-0.000274658,0.000579834,0.000274658,0.000701904,0.000701904,0.000701904,0.000549316,0.000213623,0.000701904,-6.10352e-05,0,0.000152588,-0.000274658,0.000274658,0.00012207,0.000427246,0.000427246,0.000549316,0.000762939,0.000640869,0.000640869,0.000488281,6.10352e-05,0,-0.000213623,-0.000640869,-0.00112915,-0.00119019,-0.00128174,-0.00183105,-0.00146484,-0.00161743,-0.00146484,-0.0010376,-0.000701904,-6.10352e-05,-0.000152588,0.000976562,0.000549316,0.00128174,0.0010376,0.00106812,0.000640869,0.000427246,0.000152588,-0.000335693,-0.000579834,-0.000427246,-0.00128174,-0.000549316,-0.000854492,-0.000366211,-0.000335693,0.000274658,0.000213623,0.000427246,0.000274658,6.10352e-05,0.000213623,-0.000579834,-0.000579834,-0.00125122,-0.00149536,-0.00146484,-0.00177002,-0.00177002,-0.00128174,-0.00146484,-0.000793457,-0.000793457,6.10352e-05,-0.00012207,0.000549316,0.000793457,0.000579834,0.000915527,0.000701904,0.000579834,0.000274658,6.10352e-05,0,-0.0010376,-0.000579834,-0.000793457,-0.000976562,-0.000854492,-0.000915527,-0.000366211,-0.000488281,0,0,0.00012207,-0.00012207,0.000366211,-0.000427246,-0.00012207,-0.000579834,-0.000579834,-0.000854492,-0.0010376,-0.000793457,-0.000640869,-0.000640869,-0.000427246,0.000152588,0,0.000427246,0.000274658,0.000366211,0.000274658,0.000335693,-0.000335693,-0.000213623,-0.000274658,-0.000915527,-0.000488281,-0.000915527,-0.000793457,-0.000701904,-0.000915527,-0.000793457,-0.000640869,-0.00112915,-0.00128174,-0.000701904,-0.0017395,-0.000793457,-0.00149536,-0.00119019,-0.000915527,-0.000640869,-0.000427246,-6.10352e-05,6.10352e-05,0.000701904,0.000549316,0.000701904,0.000640869,0.000366211,0.000427246,-0.000213623,-0.000701904,-0.000701904,-0.00106812,-0.00128174,-0.00140381,-0.00140381,-0.00112915,-0.000854492,-0.000640869,-0.000427246,-0.000152588,0.000213623,-0.000274658,0.000427246,0.000274658,6.10352e-05,0,-0.00012207,-0.000274658,-0.000427246,-0.000274658,-0.000701904,-0.000549316,-0.000335693,-0.000427246,0.000274658,-6.10352e-05,0.000579834,0.000640869,0.000793457,0.000701904,0.0010376,0.000579834,0.000488281,0.000335693,0.00012207,-0.000549316,-0.000488281,-0.000976562,-0.00112915,-0.00112915,-0.00167847,-0.000976562,-0.00167847,-0.000915527,-0.000976562,-0.0010376,-0.000427246,-0.000701904,-0.000152588,6.10352e-05,-0.000427246,0.000549316,-0.00012207,0.000366211,0,0.00012207,0.000274658,-0.000335693,-6.10352e-05,-0.00012207,-6.10352e-05,-0.000549316,-0.000213623,-0.000335693,-0.000701904,-0.000213623,-0.000640869,-0.000213623,-0.000762939,0.00012207,-0.000366211,0,-0.000366211,0.000427246,6.10352e-05,0.000274658,6.10352e-05,0.000549316,0.000213623,0.000427246,0.000366211,0.000366211,0.000366211,0.000427246,0.000427246,0.000213623,0.000640869,-6.10352e-05,0.000366211,6.10352e-05,0.000152588,-0.000152588,6.10352e-05,-0.000335693,-0.000152588,-0.000366211,-0.000366211,-0.000488281,-0.000793457,-0.000366211,-0.00140381,-0.0010376,-0.000854492,-0.00106812,-0.0010376,-0.000915527,-0.000640869,-0.000366211,0.00012207,0,0.000701904,0.000793457,0.000854492,0.00140381,0.000793457,0.000976562,0.000701904,0.000427246,0.000488281,-0.000579834,-6.10352e-05,-0.000915527};
freunde_1_fois_baryton = (freunde_1_fois_baryton_0):((!,_));
freunde_1_fois_baryton_rtable_0(r) = (freunde_1_fois_baryton_0,r):rdtable;
|
|
2741670790f9f86af0a53289c78e851ee127868627f6563b539220cf76cc046f | grame-cncm/GeekBagatelles | freunde_baryton_waveform.dsp | freunde_baryton_0 = waveform{0.00219727,0.00296021,0.00280762,0.00234985,0.00186157,0.00140381,-0.000305176,-0.000793457,-0.000946045,-0.000793457,-0.00109863,-0.000152588,-0.000305176,-0.000610352,-0.000305176,-0.000793457,-0.00140381,-0.00125122,-0.000793457,-0.000793457,-0.0015564,-0.00140381,-0.00125122,-0.00201416,-0.00140381,0.000152588,0.00201416,0.00234985,0.00219727,0.00109863,0.00186157,0.00265503,0.00360107,0.00311279,0.00250244,0.00170898,0.00186157,0.000793457,-0.000946045,-0.0015564,-0.00234985,-0.00296021,-0.00341797,-0.00326538,-0.00265503,-0.0015564,-0.00125122,-0.00296021,-0.00311279,-0.00390625,-0.00405884,-0.00436401,-0.00436401,-0.00576782,-0.00531006,-0.00466919,-0.0045166,-0.00390625,-0.00375366,-0.00234985,-0.000610352,-0.000305176,0,-0.000152588,-0.000152588,0.000793457,0.00265503,0.00234985,0.00250244,0.00250244,0.00326538,0.00405884,0.00375366,0.0045166,0.00341797,0.00280762,0.00234985,0.00201416,0.000793457,0.000610352,-0.000305176,-0.000610352,-0.000152588,-0.00201416,-0.00296021,-0.00360107,-0.00341797,-0.00375366,-0.00390625,-0.00311279,-0.00250244,-0.00219727,-0.000793457,-0.000457764,0.000305176,0.000152588,-0.000457764,-0.0015564,-0.00140381,-0.00170898,-0.00265503,-0.00250244,-0.00265503,-0.00326538,-0.00265503,-0.00234985,-0.0015564,-0.000946045,0,0.000946045,0.000610352,0.00170898,0.000793457,0.00140381,0.000946045,0.00140381,0.00186157,0.00219727,0.00186157,0.0015564,0.00170898,0.00125122,0.000457764,0.000152588,-0.000152588,0.000152588,0.000152588,0.000946045,0,0.000305176,0.000152588,-0.000610352,-0.00170898,-0.00201416,-0.00234985,-0.00280762,-0.0015564,-0.0015564,-0.00140381,-0.000946045,-0.000946045,-0.000946045,-0.00109863,-0.000946045,-0.000946045,-0.000946045,-0.000793457,-0.000305176,0.000793457,0.00125122,0.00234985,0.00296021,0.00326538,0.00265503,0.00250244,0.00296021,0.00234985,0.00280762,0.00170898,0.00201416,0.00219727,0.00296021,0.000793457,-0.000457764,-0.0015564,-0.0015564,-0.00140381,-0.00140381,-0.0015564,-0.00140381,-0.00125122,-0.000610352,-0.000610352,-0.000152588,-0.000152588,-0.000457764,-0.000457764,-0.00170898,-0.00201416,-0.0015564,-0.00186157,-0.00219727,-0.00250244,-0.000946045,-0.000305176,0.000457764,0.000305176,-0.000457764,0.000457764,0.000946045,0.00140381,0.000793457,0.000152588,0,0.000152588,0.000152588,0.000152588,-0.000457764,-0.000152588,-0.000457764,0,-0.000610352,-0.00125122,-0.0015564,-0.00170898,-0.000946045,-0.000457764,-0.000610352,-0.000946045,-0.00170898,-0.00186157,-0.00186157,-0.0015564,-0.0015564,-0.000793457,-0.000457764,-0.000457764,-0.000457764,0.000152588,-0.000152588,-0.000457764,-0.000946045,-0.000457764,-0.000793457,-0.000793457,-0.00186157,-0.00219727,-0.00265503,-0.00125122,-0.00125122,-0.000152588,0.000305176,-0.000152588,0.000946045,0.00140381,0.00140381,0.00170898,0.00201416,0,-0.000793457,-0.00265503,-0.00250244,-0.00250244,-0.00186157,-0.00234985,-0.00250244,-0.00201416,-0.000457764,-0.000152588,0.000152588,-0.000457764,-0.000457764,-0.000793457,-0.000793457,-0.000457764,0.000457764,0,0.00125122,0.00125122,0.00125122,0.0015564,0.0015564,0.00250244,0.00234985,0.00311279,0.00311279,0.00390625,0.00421143,0.00497437,0.00436401,0.00466919,0.00341797,0.00250244,0.00125122,0.000457764,0,-0.000305176,-0.000152588,-0.000610352,-0.000610352,-0.000793457,-0.000152588,-0.000610352,-0.000793457,-0.00109863,-0.00140381,-0.00219727,-0.00186157,-0.00265503,-0.00234985,-0.00219727,-0.00234985,-0.0015564,-0.00109863,-0.00109863,-0.000610352,-0.000946045,-0.000946045,-0.00170898,-0.00219727,-0.00250244,-0.00219727,-0.00140381,-0.00219727,-0.00234985,-0.00219727,-0.000946045,0.000152588,0.000610352,0.00140381,0.000946045,0.00219727,0.00280762,0.00234985,0.00201416,0.00140381,0.000946045,0.000457764,-0.000152588,-0.00109863,-0.00234985,-0.00250244,-0.00280762,-0.00186157,-0.00140381,-0.000152588,-0.000152588,-0.000610352,-0.000610352,-0.000457764,-0.000457764,-0.000152588,0.000152588,0.000152588,0.000152588,-0.000152588,0,0.000152588,0.0015564,0.00326538,0.00436401,0.00497437,0.00546265,0.00466919,0.00546265,0.00561523,0.00482178,0.00421143,0.00421143,0.00466919,0.00466919,0.00421143,0.00390625,0.00265503,0.00219727,0.00170898,0.00140381,0.000610352,-0.000152588,0.000793457,0.00109863,0.00140381,0.000457764,0.000305176,-0.000152588,0.000457764,0.000457764,0.000305176,-0.000152588,0.000457764,0.000457764,0.000946045,0.000946045,0.00140381,0.00170898,0.00201416,0.00265503,0.00201416,0.00186157,0.00170898,0.00170898,0.00109863,0.000152588,0.000152588,0.00109863,0.00125122,0.00219727,0.00234985,0.00280762,0.00296021,0.00296021,0.00280762,0.00125122,0.00125122,0.000305176,0.000457764,0.000610352,0.000946045,-0.000152588,0.000610352,-0.000305176,0.000457764,-0.000946045,-0.000946045,-0.00140381,0,0.000152588,0.000152588,0.000305176,-0.000305176,0,-0.00140381,-0.00280762,-0.00311279,-0.00326538,-0.00280762,-0.00280762,-0.00170898,-0.00109863,0.000457764,0.00140381,0.00219727,0.00219727,0.00280762,0.00234985,0.00326538,0.00405884,0.00326538,0.00265503,0.0015564,0.00170898,0.00186157,0.00201416,0.00311279,0.00341797,0.00326538,0.00311279,0.00326538,0.00311279,0.00201416,0.00140381,0.000793457,0.000610352,0.000305176,0.000152588,0.000305176,-0.000305176,-0.000793457,-0.0015564,-0.00250244,-0.00296021,-0.00326538,-0.00296021,-0.00341797,-0.00375366,-0.00390625,-0.00436401,-0.0045166,-0.00421143,-0.00360107,-0.00390625,-0.00296021,-0.00311279,-0.00219727,-0.00234985,-0.0015564,-0.00186157,-0.0015564,-0.00109863,0,0,-0.000152588,-0.00125122,-0.00109863,-0.00170898,-0.00265503,-0.00341797,-0.00360107,-0.00436401,-0.00405884,-0.00466919,-0.00546265,-0.00515747,-0.00482178,-0.00482178,-0.00592041,-0.00637817,-0.00732422,-0.00811768,-0.00796509,-0.00888062,-0.00857544,-0.00811768,-0.00637817,-0.00546265,-0.00497437,-0.00341797,-0.00250244,-0.00109863,-0.00125122,-0.00186157,-0.0015564,-0.0015564,-0.0015564,-0.00234985,-0.00234985,-0.00341797,-0.00390625,-0.00482178,-0.00482178,-0.00436401,-0.00405884,-0.00360107,-0.00390625,-0.00436401,-0.00375366,-0.00326538,-0.00375366,-0.00466919,-0.00561523,-0.00637817,-0.006073,-0.00622559,-0.00656128,-0.00592041,-0.00546265,-0.00436401,-0.00390625,-0.00360107,-0.00360107,-0.00405884,-0.00360107,-0.00405884,-0.00405884,-0.00341797,-0.0045166,-0.00405884,-0.00375366,-0.00265503,-0.00170898,-0.000610352,0.000457764,0.000610352,0.00125122,0.00109863,0.00186157,0.00280762,0.00280762,0.00265503,0.00125122,0.000793457,0.000457764,0.000305176,0.00109863,0.000610352,0.00125122,0.000946045,0.00219727,0.00265503,0.00296021,0.00296021,0.00265503,0.00250244,0.00186157,0.000793457,-0.000305176,-0.00109863,-0.00219727,-0.00265503,-0.00375366,-0.00405884,-0.00390625,-0.00311279,-0.00265503,-0.00201416,-0.00109863,0.000152588,0.000152588,0.000793457,0.000305176,0,-0.000305176,-0.000610352,-0.000305176,-0.000793457,0,0.000457764,0.000793457,0.00140381,0.00125122,0.00219727,0.00109863,0.000946045,0,-0.000610352,-0.00109863,-0.0015564,-0.000946045,-0.00109863,-0.00140381,-0.00219727,-0.00250244,-0.00250244,-0.00219727,-0.00186157,-0.00201416,-0.00234985,-0.00170898,-0.0015564,-0.00125122,-0.000946045,-0.00125122,-0.000793457,-0.000305176,-0.000305176,0.000152588,0.000305176,0,0.000793457,-0.000457764,0,-0.000305176,0.000152588,0.00109863,0.00109863,0.000946045,0.000946045,0.000457764,-0.000152588,-0.000457764,0.000152588,0,0.000457764,0,0,-0.000457764,0,0.000946045,0.0015564,0.00125122,0.00140381,0.00125122,0.00201416,0.00234985,0.00234985,0.00234985,0.00170898,0.00140381,0.00109863,0.000946045,0.000152588,-0.000305176,0.000305176,0.000305176,0.00109863,-0.000152588,-0.000152588,0,0.000152588,0.000152588,0.000946045,0.00219727,0.00311279,0.00390625,0.00360107,0.00421143,0.00421143,0.00515747,0.00546265,0.00531006,0.00546265,0.0045166,0.00466919,0.00421143,0.00375366,0.00341797,0.00341797,0.00311279,0.00186157,0.00170898,0.00109863,0.000946045,-0.000457764,-0.000793457,-0.00140381,-0.0015564,-0.00170898,-0.00170898,-0.00125122,-0.000793457,0.000793457,0.00140381,0.0015564,0.00250244,0.00311279,0.00360107,0.00421143,0.00466919,0.00360107,0.00421143,0.00390625,0.00482178,0.00546265,0.00546265,0.00466919,0.00405884,0.0045166,0.00466919,0.00561523,0.00546265,0.00576782,0.00531006,0.00466919,0.00482178,0.00497437,0.00515747,0.00497437,0.00482178,0.00466919,0.00592041,0.006073,0.006073,0.00637817,0.00671387,0.00671387,0.00811768,0.00857544,0.0090332,0.00888062,0.00857544,0.00952148,0.0093689,0.0101318,0.00967407,0.0101318,0.0093689,0.0093689,0.00918579,0.0101318,0.0101318,0.00997925,0.00952148,0.0093689,0.00967407,0.00997925,0.0105896,0.0102844,0.0110779,0.0105896,0.0110779,0.00997925,0.00997925,0.00997925,0.00918579,0.00997925,0.0101318,0.010437,0.0107727,0.0110779,0.0109253,0.0102844,0.00967407,0.00967407,0.00888062,0.00842285,0.00732422,0.00656128,0.006073,0.00531006,0.00497437,0.00546265,0.006073,0.00497437,0.00531006,0.00436401,0.00390625,0.00375366,0.00341797,0.00311279,0.00186157,0,-0.00140381,-0.00201416,-0.00201416,-0.00234985,-0.00201416,-0.00201416,-0.00219727,-0.00201416,-0.00296021,-0.00296021,-0.00375366,-0.00326538,-0.00341797,-0.00405884,-0.00466919,-0.00576782,-0.006073,-0.00656128,-0.00732422,-0.00686646,-0.00732422,-0.00561523,-0.006073,-0.00576782,-0.006073,-0.00561523,-0.00531006,-0.00482178,-0.00466919,-0.00515747,-0.00497437,-0.00637817,-0.00717163,-0.00827026,-0.00888062,-0.00967407,-0.00918579,-0.00982666,-0.0109253,-0.0107727,-0.0101318,-0.0093689,-0.00827026,-0.00842285,-0.00732422,-0.00827026,-0.00811768,-0.0090332,-0.0102844,-0.0102844,-0.0107727,-0.0105896,-0.010437,-0.0105896,-0.00918579,-0.0090332,-0.00918579,-0.00857544,-0.00796509,-0.00717163,-0.00686646,-0.00686646,-0.00701904,-0.00811768,-0.00778198,-0.00811768,-0.00888062,-0.00888062,-0.0093689,-0.00888062,-0.0090332,-0.00827026,-0.00857544,-0.00857544,-0.00888062,-0.0090332,-0.00888062,-0.0090332,-0.00967407,-0.00982666,-0.0105896,-0.010437,-0.010437,-0.0102844,-0.0107727,-0.0107727,-0.0105896,-0.0101318,-0.00967407,-0.00918579,-0.00872803,-0.00857544,-0.00888062,-0.00842285,-0.00888062,-0.00888062,-0.00888062,-0.00952148,-0.00888062,-0.00872803,-0.00811768,-0.0093689,-0.00872803,-0.00811768,-0.00637817,-0.00576782,-0.00515747,-0.00531006,-0.00497437,-0.00405884,-0.00390625,-0.00421143,-0.00531006,-0.00515747,-0.00466919,-0.00436401,-0.00466919,-0.00546265,-0.00546265,-0.00686646,-0.00656128,-0.00701904,-0.00732422,-0.00656128,-0.00686646,-0.00686646,-0.00686646,-0.00796509,-0.00701904,-0.00686646,-0.00686646,-0.00717163,-0.00732422,-0.00762939,-0.00717163,-0.00701904,-0.00637817,-0.00561523,-0.00390625,-0.0015564,-0.000457764,0.000946045,0.00170898,0.00250244,0.00311279,0.00326538,0.00311279,0.00250244,0.00201416,0.00140381,0.00125122,0.000610352,0.000793457,0,0.000946045,0.000793457,0.00109863,0.0015564,0.000152588,0.000793457,-0.000457764,-0.000793457,-0.00140381,-0.00280762,-0.00360107,-0.00515747,-0.00466919,-0.00482178,-0.00436401,-0.00436401,-0.00421143,-0.00405884,-0.00234985,-0.000793457,0,0.000305176,0.000457764,0.000793457,0.00109863,0.000793457,0.000793457,-0.000305176,-0.000152588,-0.000457764,-0.000946045,-0.0015564,-0.00170898,-0.0015564,-0.00109863,-0.000610352,-0.000152588,0.000793457,0.000457764,0.000152588,0,0.000457764,0.000457764,0.000152588,0,-0.000610352,-0.00109863,-0.00125122,-0.0015564,-0.00170898,-0.0015564,-0.00186157,-0.00125122,-0.00125122,-0.00109863,-0.00109863,-0.00140381,-0.000793457,-0.000305176,0.000152588,0,0.000305176,-0.000305176,-0.000152588,0.000610352,0.000946045,0.00125122,0.00186157,0.00170898,0.00265503,0.00265503,0.00296021,0.00296021,0.00341797,0.00326538,0.00405884,0.00360107,0.00311279,0.00170898,0.000457764,0,-0.000793457,-0.000610352,-0.000610352,-0.000305176,-0.000610352,-0.000305176,-0.000610352,-0.000793457,0.000457764,0.00201416,0.00296021,0.00390625,0.00360107,0.00405884,0.00421143,0.00497437,0.00656128,0.00732422,0.00778198,0.00747681,0.00622559,0.006073,0.00576782,0.00656128,0.00656128,0.00732422,0.00811768,0.00857544,0.0093689,0.0101318,0.0109253,0.013092,0.0149536,0.0169983,0.0177612,0.0174561,0.0177612,0.0187073,0.0185547,0.0177612,0.0174561,0.0169983,0.0174561,0.0177612,0.0173035,0.0168457,0.0165405,0.0174561,0.0182495,0.0201111,0.0193481,0.0201111,0.019165,0.0198059,0.0212097,0.0218201,0.0227661,0.0223083,0.0218201,0.020752,0.0212097,0.0213623,0.0210571,0.0215149,0.0215149,0.020752,0.0218201,0.0215149,0.0221558,0.0221558,0.0223083,0.0226135,0.0232239,0.0227661,0.0219727,0.0213623,0.0202637,0.0199585,0.0195007,0.0198059,0.019165,0.0184021,0.0171509,0.0157471,0.0155945,0.0157471,0.0158997,0.0149536,0.0132446,0.0118408,0.0102844,0.00997925,0.00872803,0.00796509,0.00637817,0.00515747,0.0045166,0.00265503,0.00170898,0.000946045,0,-0.000610352,-0.00201416,-0.00326538,-0.00405884,-0.00482178,-0.00592041,-0.006073,-0.00717163,-0.00686646,-0.00671387,-0.00701904,-0.00732422,-0.00762939,-0.00778198,-0.00811768,-0.00796509,-0.00717163,-0.00732422,-0.00796509,-0.00778198,-0.00888062,-0.00842285,-0.00872803,-0.00888062,-0.00918579,-0.0101318,-0.0113831,-0.0119934,-0.0123291,-0.0124817,-0.0138855,-0.0149536,-0.0155945,-0.0155945,-0.0155945,-0.0158997,-0.0157471,-0.0155945,-0.0158997,-0.0154419,-0.0151367,-0.0143433,-0.0144958,-0.0149536,-0.0146484,-0.0141907,-0.0135803,-0.0129395,-0.0127869,-0.0126343,-0.0126343,-0.0126343,-0.0121765,-0.0124817,-0.0116882,-0.0116882,-0.0113831,-0.0116882,-0.0113831,-0.0109253,-0.0112305,-0.0115356,-0.0112305,-0.0112305,-0.010437,-0.0107727,-0.0107727,-0.0101318,-0.0101318,-0.010437,-0.0102844,-0.0107727,-0.0110779,-0.013092,-0.0141907,-0.0141907,-0.0141907,-0.0141907,-0.0137329,-0.0144958,-0.0137329,-0.0140381,-0.0135803,-0.0135803,-0.0132446,-0.0133972,-0.0124817,-0.0123291,-0.0124817,-0.013092,-0.0137329,-0.013092,-0.0119934,-0.0105896,-0.0105896,-0.010437,-0.0110779,-0.0101318,-0.0101318,-0.0102844,-0.0101318,-0.0101318,-0.00967407,-0.0102844,-0.0113831,-0.0121765,-0.0121765,-0.0124817,-0.0119934,-0.0118408,-0.0115356,-0.0109253,-0.0112305,-0.0121765,-0.0124817,-0.0112305,-0.0109253,-0.00967407,-0.00918579,-0.00952148,-0.00982666,-0.0093689,-0.00827026,-0.00796509,-0.00811768,-0.00952148,-0.0102844,-0.0112305,-0.0115356,-0.0112305,-0.0102844,-0.0093689,-0.00811768,-0.00717163,-0.00482178,-0.00405884,-0.00250244,-0.00219727,-0.00125122,-0.00109863,-0.000457764,-0.000457764,-0.000946045,-0.00186157,-0.00186157,-0.00140381,-0.00201416,-0.00265503,-0.00405884,-0.00515747,-0.00531006,-0.00497437,-0.00421143,-0.00421143,-0.00436401,-0.00375366,-0.00280762,-0.00186157,0.000305176,0.000610352,0.00109863,0.00109863,0.00140381,0.00326538,0.00360107,0.00436401,0.00326538,0.00219727,0.0015564,0.000946045,-0.000457764,0,0.000610352,0.000946045,0.000152588,-0.000457764,0.000457764,0.00201416,0.00280762,0.00250244,0.00125122,0.00140381,0.00109863,0.0015564,0.00265503,0.00250244,0.00265503,0.00186157,0.0015564,0.00201416,0.00201416,0.00326538,0.00326538,0.00360107,0.00326538,0.00265503,0.00170898,0.0015564,0.00186157,0.000610352,-0.000305176,-0.000457764,-0.00109863,-0.000305176,0.000305176,0.00170898,0.00311279,0.00405884,0.00531006,0.006073,0.00592041,0.00497437,0.00390625,0.00341797,0.00280762,0.00360107,0.00311279,0.00186157,0.000946045,-0.000793457,-0.000457764,0.000305176,0.000305176,-0.000610352,-0.000946045,-0.000457764,0.000305176,0.0015564,0.000305176,0.000152588,-0.000610352,0.0015564,0.00341797,0.00497437,0.00375366,0.00234985,0.00125122,0.000793457,0.000610352,0.0015564,0.00170898,0.00186157,0.000793457,0.00140381,0.00170898,0.00296021,0.00360107,0.00576782,0.00747681,0.00952148,0.00997925,0.0126343,0.0133972,0.0129395,0.0123291,0.0113831,0.010437,0.0105896,0.0090332,0.00747681,0.00546265,0.00515747,0.00546265,0.00466919,0.00360107,0.00375366,0.00405884,0.00531006,0.00637817,0.00842285,0.00997925,0.0124817,0.0146484,0.0169983,0.0188599,0.0213623,0.0224609,0.0243225,0.0254211,0.026825,0.0261841,0.0255737,0.0241699,0.0232239,0.0210571,0.0202637,0.0182495,0.0162048,0.0138855,0.0124817,0.0123291,0.0126343,0.013092,0.0140381,0.0149536,0.0160522,0.0177612,0.0190125,0.0199585,0.020752,0.0218201,0.0216675,0.0216675,0.0216675,0.020752,0.0209045,0.0199585,0.0190125,0.0190125,0.0177612,0.0165405,0.0146484,0.0124817,0.0107727,0.0101318,0.00842285,0.00827026,0.00686646,0.00482178,0.0045166,0.00482178,0.00546265,0.00622559,0.00686646,0.00686646,0.00747681,0.00717163,0.00842285,0.00918579,0.010437,0.0105896,0.0110779,0.0112305,0.0101318,0.00842285,0.00637817,0.00311279,0.000457764,-0.0015564,-0.00280762,-0.00390625,-0.00637817,-0.0090332,-0.00888062,-0.00686646,-0.00466919,-0.00219727,-0.00125122,-0.00219727,-0.00497437,-0.00701904,-0.00872803,-0.00967407,-0.00857544,-0.0090332,-0.0101318,-0.0113831,-0.0116882,-0.0119934,-0.0123291,-0.0118408,-0.00982666,-0.00918579,-0.00778198,-0.00842285,-0.0112305,-0.013092,-0.0133972,-0.0119934,-0.0123291,-0.0129395,-0.0135803,-0.0144958,-0.0133972,-0.0133972,-0.0135803,-0.0116882,-0.0093689,-0.00872803,-0.0109253,-0.0138855,-0.0141907,-0.0137329,-0.0154419,-0.0165405,-0.0179443,-0.0204163,-0.0218201,-0.020752,-0.0187073,-0.0182495,-0.0177612,-0.0157471,-0.0137329,-0.0126343,-0.0119934,-0.0110779,-0.00827026,-0.00436401,-0.00311279,-0.00405884,-0.00466919,-0.00531006,-0.006073,-0.00796509,-0.0109253,-0.0126343,-0.0140381,-0.0154419,-0.0169983,-0.0182495,-0.0185547,-0.0180969,-0.0177612,-0.0155945,-0.0166931,-0.0151367,-0.0121765,-0.00842285,-0.00561523,-0.00497437,-0.00466919,-0.00360107,0.00201416,0.00280762,0.00326538,0.00405884,0.00140381,-0.000946045,-0.0015564,-0.000610352,0.000457764,-0.00109863,-0.00296021,-0.00686646,-0.00967407,-0.0121765,-0.013092,-0.0119934,-0.0133972,-0.0127869,-0.0101318,-0.00997925,-0.0112305,-0.00872803,-0.00592041,-0.00466919,-0.00296021,0.000305176,-0.00109863,-0.000946045,0.000305176,0.00280762,0.00592041,0.00796509,0.00952148,0.0116882,0.0121765,0.0102844,0.00997925,0.00888062,0.00622559,0.00515747,0.00482178,0.00296021,0.000152588,-0.0015564,-0.00390625,-0.00592041,-0.006073,-0.00390625,-0.00311279,-0.00296021,-0.00405884,-0.00436401,-0.00436401,-0.00140381,0.00250244,0.00531006,0.00701904,0.00796509,0.00967407,0.0113831,0.0113831,0.0127869,0.0146484,0.0155945,0.0169983,0.0168457,0.0160522,0.0143433,0.0109253,0.0105896,0.00872803,0.00686646,0.00421143,0.00280762,-0.00109863,-0.00360107,-0.00531006,-0.00515747,-0.00405884,-0.00360107,-0.00390625,-0.00326538,0,0.00186157,0.00360107,0.00405884,0.006073,0.00778198,0.0102844,0.0119934,0.0121765,0.0132446,0.0158997,0.0180969,0.0187073,0.0185547,0.014801,0.0102844,0.00732422,0.00576782,0.00296021,-0.00219727,-0.006073,-0.00762939,-0.00952148,-0.00997925,-0.0121765,-0.0124817,-0.0118408,-0.010437,-0.00842285,-0.00796509,-0.00778198,-0.00622559,-0.00466919,-0.00219727,-0.000152588,0.0015564,0.00421143,0.00531006,0.00656128,0.00827026,0.00952148,0.0102844,0.00997925,0.0090332,0.00796509,0.00747681,0.00622559,0.00360107,0.00109863,-0.00201416,-0.00436401,-0.00546265,-0.00778198,-0.0093689,-0.00997925,-0.0126343,-0.0129395,-0.0123291,-0.00888062,-0.00546265,-0.00497437,-0.00732422,-0.00515747,0.000457764,0.00592041,0.00515747,0.00405884,0.00436401,0.00592041,0.00671387,0.00482178,0.000946045,0.000793457,0.00186157,0.00326538,0.00436401,0.00375366,0.000610352,-0.00201416,-0.00170898,-0.00219727,-0.00341797,-0.00497437,-0.00592041,-0.00546265,-0.0045166,-0.00482178,-0.00515747,-0.00576782,-0.00592041,-0.00656128,-0.00561523,-0.00497437,-0.0045166,-0.00405884,-0.00326538,-0.00219727,-0.000457764,0.000457764,0.000457764,0,0.000946045,0.000946045,0.000793457,0.00125122,0.000305176,-0.000610352,-0.000793457,-0.000305176,-0.000793457,-0.00140381,-0.00186157,-0.00219727,-0.00201416,-0.00219727,-0.00219727,-0.00265503,-0.00360107,-0.00390625,-0.00375366,-0.00326538,-0.00311279,-0.00436401,-0.00466919,-0.0045166,-0.0045166,-0.00360107,-0.00326538,-0.00296021,-0.00326538,-0.00250244,-0.00219727,-0.00250244,-0.00219727,-0.00201416,-0.0015564,-0.00170898,-0.000793457,-0.000457764,-0.00186157,-0.00219727,-0.00311279,-0.00250244,-0.00219727,-0.00186157,-0.00186157,-0.00140381,-0.000305176,0.000793457,0.00219727,0.00296021,0.00341797,0.00296021,0.00326538,0.00280762,0.00201416,0.00186157,0.000457764,0.000152588,-0.000610352,-0.000610352,-0.000793457,-0.000793457,-0.00109863,-0.00109863,0.000457764,0.0015564,0.000610352,0.00109863,0.00280762,0.00375366,0.00109863,0.00109863,0.00311279,0.0045166,0.00466919,0.00360107,0.00341797,0.00421143,0.00375366,0.00280762,0.0015564,0.000793457,-0.000793457,-0.00170898,-0.00201416,-0.00326538,-0.00250244,-0.00250244,-0.00280762,-0.00311279,-0.00326538,-0.00311279,-0.00219727,-0.00125122,0,0.000305176,0.000457764,0.00140381,0.00125122,0.00280762,0.00296021,0.00280762,0.00311279,0.00250244,0.00186157,0.00109863,-0.000152588,-0.00109863,-0.00140381,-0.00250244,-0.00326538,-0.00311279,-0.00311279,-0.00280762,-0.00201416,-0.00186157,-0.00280762,-0.00265503,-0.0015564,-0.00170898,-0.00280762,-0.00280762,-0.00234985,-0.00109863,-0.00201416,-0.00234985,-0.00125122,-0.00125122,-0.00140381,-0.000457764,-0.0015564,-0.00265503,-0.00265503,-0.00250244,-0.00326538,-0.00326538,-0.00360107,-0.00405884,-0.00360107,-0.00201416,-0.00109863,0.000610352,0.00125122,0.00201416,0.00250244,0.00280762,0.00296021,0.00140381,0.000946045,0.000793457,0,0.00125122,0.000946045,0.00140381,0.000946045,0.000305176,-0.000457764,-0.00109863,-0.00405884,-0.00405884,-0.00390625,-0.0045166,-0.00341797,-0.00341797,-0.00515747,-0.00637817,-0.00656128,-0.00405884,-0.00311279,-0.00219727,-0.00140381,-0.000610352,-0.000610352,-0.000152588,0.000457764,0.000793457,0.00201416,0.00265503,0.00265503,0.00296021,0.00280762,0.00250244,0.00219727,0.00436401,0.0045166,0.00296021,0.000610352,-0.0015564,-0.0015564,-0.00201416,-0.000610352,0.000610352,0.000946045,0.000457764,0.000152588,0.0015564,0.00186157,0.00280762,0.00250244,0.00201416,0.000946045,0.000457764,-0.000793457,-0.00170898,-0.000946045,0.000152588,-0.000305176,0.000610352,0.000793457,0.000457764,0.00109863,0.00234985,0.00186157,0.00280762,0.00375366,0.00360107,0.00109863,-0.00170898,-0.00219727,-0.00186157,-0.000793457,-0.0015564,-0.00219727,-0.00250244,-0.00219727,-0.00170898,-0.0015564,-0.000946045,-0.000793457,0.000610352,0.00140381,0.00326538,0.00234985,0.00201416,0.00201416,0.00125122,-0.000793457,-0.000305176,0.000793457,0.00125122,0.00109863,0.0015564,0.000152588,-0.000457764,-0.000946045,-0.00109863,-0.000457764,-0.000610352,-0.00219727,-0.00326538,-0.00311279,-0.00250244,-0.000152588,0.000152588,0.00170898,0.00311279,0.00546265,0.00515747,0.00531006,0.00592041,0.00482178,0.00186157,0,0.000457764,0.000305176,-0.00109863,-0.00250244,-0.00326538,-0.00341797,-0.0045166,-0.00405884,-0.00326538,-0.00375366,-0.00466919,-0.00421143,-0.00125122,0,0.00125122,0.00170898,0.00201416,0.00234985,0.00311279,0.00280762,0.00234985,0,-0.00341797,-0.00592041,-0.00592041,-0.00436401,-0.00421143,-0.00576782,-0.00576782,-0.0045166,-0.00250244,-0.00140381,-0.00140381,-0.00140381,-0.000946045,0.000793457,0.00186157,0.00250244,0.000946045,0.000305176,0.0015564,0.00109863,-0.000610352,-0.00390625,-0.00405884,-0.00482178,-0.00341797,-0.00421143,-0.00515747,-0.00531006,-0.00482178,-0.00390625,-0.00390625,-0.0045166,-0.0045166,-0.00375366,-0.00234985,0.000457764,0.0015564,0.00326538,0.00296021,0.00234985,0.000610352,-0.00170898,-0.00341797,-0.00576782,-0.00686646,-0.00717163,-0.00732422,-0.00686646,-0.00436401,-0.00186157,0.00109863,0.00311279,0.00341797,0.00375366,0.00390625,0.00360107,0.00234985,0.000152588,-0.00219727,-0.000946045,-0.000457764,-0.000152588,-0.000610352,-0.000152588,-0.000946045,-0.00186157,-0.00250244,-0.00170898,-0.000610352,-0.000946045,-0.00170898,-0.00219727,-0.00201416,-0.00201416,-0.00326538,-0.00592041,-0.00717163,-0.00671387,-0.00622559,-0.006073,-0.00622559,-0.00421143,-0.00360107,-0.00280762,-0.00109863,0.000610352,0.0015564,0.00296021,0.00390625,0.00436401,0.00436401,0.00405884,0.0015564,-0.00125122,-0.00311279,-0.00405884,-0.0045166,-0.00531006,-0.00637817,-0.00811768,-0.00827026,-0.006073,-0.00421143,-0.00311279,-0.000946045,0.000610352,0.0015564,0.00170898,0.00109863,-0.000457764,0.000610352,0.00140381,0.00234985,0.000152588,-0.000457764,-0.00250244,-0.00360107,-0.00576782,-0.00592041,-0.00592041,-0.00531006,-0.00497437,-0.00482178,-0.00341797,-0.000946045,-0.00109863,-0.00234985,-0.00265503,-0.00219727,-0.00186157,0,0,-0.000305176,-0.000457764,0.000610352,0.00186157,0.00311279,0.00326538,0.00280762,0.00234985,0.00201416,0.000793457,-0.0015564,-0.00326538,-0.00265503,-0.00326538,-0.00405884,-0.00405884,-0.00375366,-0.00265503,-0.00109863,0.000946045,0.00326538,0.00482178,0.00515747,0.00497437,0.00497437,0.00466919,0.00515747,0.00576782,0.00622559,0.006073,0.00622559,0.00671387,0.00701904,0.00717163,0.00686646,0.00592041,0.00497437,0.00576782,0.006073,0.00637817,0.00717163,0.00952148,0.00997925,0.0110779,0.0102844,0.0115356,0.0109253,0.0113831,0.0115356,0.0113831,0.0107727,0.0102844,0.0102844,0.00982666,0.00997925,0.0102844,0.00997925,0.00872803,0.00888062,0.0093689,0.00918579,0.00967407,0.0090332,0.0090332,0.00982666,0.0102844,0.0113831,0.0115356,0.0121765,0.0121765,0.0124817,0.0133972,0.0140381,0.0133972,0.0138855,0.0138855,0.0140381,0.0141907,0.0135803,0.0123291,0.0109253,0.0102844,0.00952148,0.00827026,0.00701904,0.00592041,0.00390625,0.00311279,0.00219727,0.00250244,0.00250244,0.00311279,0.00360107,0.00421143,0.00497437,0.00637817,0.00701904,0.00762939,0.00827026,0.00762939,0.00701904,0.00622559,0.0045166,0.00405884,0.00219727,0.0015564,0.000305176,-0.000305176,-0.0015564,-0.00250244,-0.00234985,-0.00201416,-0.00250244,-0.00125122,-0.00140381,0,0.000946045,0.000610352,0.000610352,0.000457764,0.000946045,0.000152588,-0.00109863,-0.00250244,-0.00390625,-0.00497437,-0.00531006,-0.00531006,-0.00561523,-0.00671387,-0.00637817,-0.006073,-0.00561523,-0.00497437,-0.00497437,-0.00546265,-0.00546265,-0.00592041,-0.00576782,-0.00637817,-0.00592041,-0.00656128,-0.00686646,-0.00686646,-0.00732422,-0.00637817,-0.00515747,-0.00546265,-0.00546265,-0.00622559,-0.00637817,-0.00622559,-0.00592041,-0.00622559,-0.00686646,-0.00686646,-0.00747681,-0.00762939,-0.0090332,-0.00918579,-0.00888062,-0.00918579,-0.00952148,-0.00952148,-0.00967407,-0.00952148,-0.0093689,-0.00857544,-0.00747681,-0.00686646,-0.00686646,-0.00671387,-0.00747681,-0.00796509,-0.00762939,-0.00811768,-0.00827026,-0.0090332,-0.00967407,-0.00967407,-0.00982666,-0.00888062,-0.00842285,-0.00762939,-0.00778198,-0.00732422,-0.00827026,-0.00811768,-0.00888062,-0.00811768,-0.0090332,-0.00857544,-0.00857544,-0.00827026,-0.00842285,-0.00857544,-0.0090332,-0.0090332,-0.00967407,-0.00967407,-0.0105896,-0.0113831,-0.0113831,-0.0121765,-0.0110779,-0.0118408,-0.0115356,-0.0123291,-0.0116882,-0.0109253,-0.00967407,-0.0093689,-0.0101318,-0.0107727,-0.0109253,-0.0110779,-0.0101318,-0.00982666,-0.0102844,-0.00997925,-0.00857544,-0.00762939,-0.00686646,-0.00717163,-0.00732422,-0.00732422,-0.00747681,-0.00811768,-0.00872803,-0.0090332,-0.00967407,-0.00967407,-0.0101318,-0.0101318,-0.00982666,-0.010437,-0.00982666,-0.00967407,-0.00982666,-0.0102844,-0.0093689,-0.0090332,-0.00952148,-0.00842285,-0.00842285,-0.00811768,-0.00762939,-0.00811768,-0.00747681,-0.00701904,-0.00637817,-0.00592041,-0.00576782,-0.00515747,-0.00561523,-0.00515747,-0.00531006,-0.00436401,-0.00360107,-0.00186157,-0.0015564,-0.000793457,-0.00109863,-0.000457764,-0.000610352,-0.000946045,-0.00109863,-0.00219727,-0.00250244,-0.00390625,-0.00515747,-0.00576782,-0.00637817,-0.00732422,-0.00778198,-0.00872803,-0.0093689,-0.00872803,-0.00842285,-0.00717163,-0.00637817,-0.00466919,-0.00482178,-0.00311279,-0.00265503,-0.000946045,0.000305176,0.000152588,-0.000152588,-0.00109863,-0.00219727,-0.00186157,-0.00280762,-0.00311279,-0.00390625,-0.0045166,-0.00592041,-0.00622559,-0.00561523,-0.00436401,-0.00341797,-0.00234985,-0.00250244,-0.00125122,0,0.00219727,0.00311279,0.00531006,0.00762939,0.0101318,0.0133972,0.0151367,0.0187073,0.0215149,0.0252686,0.0286865,0.0316467,0.0343018,0.0360107,0.036499,0.0371094,0.0371094,0.0380554,0.0380554,0.037262,0.0360107,0.0343018,0.0332031,0.0325928,0.0330505,0.0333557,0.0343018,0.0352478,0.036499,0.0383606,0.0396118,0.0417786,0.0439758,0.0461426,0.0473938,0.0481873,0.0481873,0.0481873,0.0473938,0.0467834,0.0458374,0.0448914,0.0436707,0.0422668,0.0411682,0.0407104,0.0397644,0.0386658,0.0383606,0.0374146,0.0374146,0.0379028,0.037262,0.035553,0.0339966,0.0324402,0.0314941,0.0310364,0.0291443,0.0272827,0.0240173,0.0210571,0.0182495,0.0165405,0.0143433,0.0137329,0.0121765,0.0101318,0.00842285,0.00637817,0.00531006,0.00436401,0.00341797,0.00250244,0.000305176,-0.00234985,-0.00466919,-0.00671387,-0.00842285,-0.00967407,-0.0115356,-0.0129395,-0.0151367,-0.0165405,-0.0174561,-0.0190125,-0.0193481,-0.0201111,-0.0205688,-0.020752,-0.0218201,-0.0230713,-0.0241699,-0.0254211,-0.0254211,-0.0258789,-0.0260315,-0.0275879,-0.0291443,-0.0305481,-0.0314941,-0.0319519,-0.0322876,-0.0332031,-0.0336914,-0.0344543,-0.0346069,-0.0350952,-0.0344543,-0.0344543,-0.0339966,-0.0330505,-0.0328979,-0.0321045,-0.0310364,-0.0302429,-0.0299377,-0.02948,-0.0285339,-0.0282288,-0.0269775,-0.0271301,-0.0254211,-0.0249329,-0.0232239,-0.0215149,-0.0196533,-0.0180969,-0.0158997,-0.0140381,-0.0121765,-0.010437,-0.00918579,-0.00796509,-0.00778198,-0.00717163,-0.00747681,-0.00778198,-0.00857544,-0.00857544,-0.00796509,-0.00857544,-0.00842285,-0.00811768,-0.00796509,-0.00827026,-0.00796509,-0.00778198,-0.00671387,-0.00561523,-0.00592041,-0.00466919,-0.00497437,-0.00421143,-0.00375366,-0.00250244,-0.00234985,-0.00201416,-0.00280762,-0.00390625,-0.00482178,-0.00531006,-0.00546265,-0.00592041,-0.00576782,-0.00637817,-0.00762939,-0.00857544,-0.00888062,-0.00872803,-0.00827026,-0.00842285,-0.00967407,-0.0112305,-0.0129395,-0.0140381,-0.0144958,-0.0154419,-0.0166931,-0.0187073,-0.0199585,-0.0212097,-0.0218201,-0.0219727,-0.0226135,-0.0229187,-0.0235291,-0.0241699,-0.0249329,-0.0246277,-0.0240173,-0.0238647,-0.0243225,-0.0246277,-0.0246277,-0.0254211,-0.0249329,-0.0246277,-0.0249329,-0.0261841,-0.0257263,-0.026825,-0.0265198,-0.0263367,-0.0257263,-0.0254211,-0.0247803,-0.0243225,-0.0233765,-0.0229187,-0.0221558,-0.0216675,-0.0205688,-0.0202637,-0.0193481,-0.0190125,-0.0177612,-0.0177612,-0.0177612,-0.0180969,-0.0188599,-0.0193481,-0.0188599,-0.0184021,-0.0173035,-0.0171509,-0.0166931,-0.0154419,-0.0137329,-0.0118408,-0.0105896,-0.00872803,-0.00686646,-0.00622559,-0.00531006,-0.00405884,-0.00265503,-0.000793457,0.00109863,0.00250244,0.00341797,0.00546265,0.00717163,0.010437,0.0137329,0.0160522,0.0182495,0.0196533,0.0215149,0.0235291,0.0263367,0.0282288,0.02948,0.031189,0.0332031,0.0357056,0.0374146,0.0393066,0.0414734,0.0436707,0.0467834,0.0495911,0.052063,0.0534668,0.0544128,0.0556641,0.0567627,0.0580139,0.0580139,0.0583191,0.0562744,0.054718,0.0528564,0.0517578,0.0508423,0.0492859,0.0475464,0.0456848,0.0445862,0.0434875,0.0431824,0.0439758,0.043335,0.0436707,0.0431824,0.0431824,0.0431824,0.0439758,0.0448914,0.0447388,0.0438232,0.0420837,0.0413208,0.0400696,0.0391235,0.0379028,0.0358582,0.033844,0.0324402,0.0308838,0.0297852,0.0275879,0.0255737,0.0243225,0.0227661,0.0215149,0.0195007,0.0176086,0.0154419,0.0140381,0.0126343,0.0112305,0.00952148,0.00686646,0.00497437,0.00234985,0.000793457,-0.000793457,-0.00296021,-0.00421143,-0.00622559,-0.00701904,-0.00796509,-0.00857544,-0.00827026,-0.00857544,-0.00778198,-0.00717163,-0.00592041,-0.0045166,-0.00390625,-0.00265503,-0.00250244,-0.00250244,-0.00219727,-0.00296021,-0.00280762,-0.00436401,-0.00622559,-0.00842285,-0.0102844,-0.0121765,-0.0138855,-0.0155945,-0.0179443,-0.0201111,-0.0213623,-0.0219727,-0.0219727,-0.0221558,-0.0219727,-0.0226135,-0.0223083,-0.0216675,-0.0205688,-0.0195007,-0.0195007,-0.0190125,-0.0193481,-0.0193481,-0.0184021,-0.0177612,-0.0173035,-0.0184021,-0.0188599,-0.0195007,-0.0188599,-0.0188599,-0.0182495,-0.0179443,-0.0168457,-0.0165405,-0.0157471,-0.0144958,-0.0132446,-0.0121765,-0.0113831,-0.010437,-0.010437,-0.00918579,-0.0093689,-0.00857544,-0.00872803,-0.00857544,-0.00872803,-0.00857544,-0.00918579,-0.00888062,-0.00967407,-0.0093689,-0.00967407,-0.0102844,-0.0102844,-0.0105896,-0.0105896,-0.0110779,-0.0124817,-0.0132446,-0.0141907,-0.014801,-0.0157471,-0.0162048,-0.0165405,-0.0176086,-0.0182495,-0.0174561,-0.0168457,-0.0158997,-0.0155945,-0.0152893,-0.0152893,-0.014801,-0.0141907,-0.0135803,-0.0143433,-0.0146484,-0.0155945,-0.0160522,-0.0165405,-0.0166931,-0.0182495,-0.0185547,-0.0195007,-0.0209045,-0.0213623,-0.0224609,-0.0226135,-0.0219727,-0.0218201,-0.0202637,-0.0210571,-0.0215149,-0.0210571,-0.0209045,-0.0202637,-0.0209045,-0.0212097,-0.0229187,-0.0229187,-0.0235291,-0.0241699,-0.0247803,-0.0237122,-0.0226135,-0.0215149,-0.0215149,-0.0209045,-0.0195007,-0.0171509,-0.014801,-0.0138855,-0.013092,-0.0133972,-0.0138855,-0.0133972,-0.013092,-0.0109253,-0.0110779,-0.00967407,-0.00918579,-0.00952148,-0.0102844,-0.0102844,-0.0102844,-0.0101318,-0.0109253,-0.0118408,-0.0133972,-0.0135803,-0.0137329,-0.0138855,-0.0146484,-0.0138855,-0.013092,-0.0115356,-0.0101318,-0.00796509,-0.00686646,-0.00561523,-0.00576782,-0.00375366,-0.00219727,0.000457764,0.000793457,-0.000305176,0,0.000305176,0.00201416,0.00311279,0.00341797,0.00390625,0.00280762,0.00375366,0.00360107,0.00421143,0.00436401,0.00482178,0.00436401,0.00482178,0.00561523,0.00592041,0.00671387,0.00796509,0.00967407,0.0110779,0.0124817,0.013092,0.0127869,0.0138855,0.014801,0.0162048,0.0177612,0.0179443,0.0184021,0.0199585,0.0221558,0.0255737,0.0269775,0.0297852,0.0310364,0.0341492,0.0369568,0.039917,0.0410156,0.0419312,0.0414734,0.0405273,0.0391235,0.0375671,0.0360107,0.033844,0.0317993,0.02948,0.0277405,0.0257263,0.0249329,0.0240173,0.0235291,0.0230713,0.0224609,0.0227661,0.0232239,0.0246277,0.0252686,0.0261841,0.0260315,0.0257263,0.0263367,0.026825,0.0275879,0.0271301,0.0271301,0.0254211,0.0254211,0.0249329,0.0241699,0.0229187,0.0212097,0.0195007,0.0177612,0.0174561,0.0168457,0.0157471,0.0149536,0.0144958,0.0132446,0.0129395,0.0124817,0.0119934,0.0118408,0.0113831,0.0107727,0.00952148,0.00796509,0.00701904,0.00561523,0.00466919,0.00326538,0.00170898,0.000610352,-0.000457764,-0.00125122,-0.00265503,-0.00341797,-0.00421143,-0.00436401,-0.00405884,-0.00375366,-0.00280762,-0.00280762,-0.00186157,-0.00109863,-0.000152588,0.00140381,0.000793457,0.0015564,0.0015564,0.00170898,0.000793457,-0.000457764,-0.00170898,-0.00390625,-0.00531006,-0.00701904,-0.00796509,-0.0090332,-0.00967407,-0.0113831,-0.0119934,-0.0129395,-0.0124817,-0.0129395,-0.0126343,-0.0126343,-0.0121765,-0.0123291,-0.0110779,-0.0116882,-0.0113831,-0.0112305,-0.0105896,-0.0109253,-0.0113831,-0.0132446,-0.0138855,-0.0141907,-0.0137329,-0.0140381,-0.0144958,-0.0158997,-0.0158997,-0.0163574,-0.0160522,-0.0155945,-0.0138855,-0.00982666,-0.00656128,-0.006073,-0.00497437,-0.00482178,-0.00466919,-0.00466919,-0.00341797,-0.00140381,-0.000610352,0.000610352,0,-0.00109863,-0.00201416,-0.00219727,-0.00341797,-0.00515747,-0.00592041,-0.00592041,-0.00637817,-0.00531006,-0.00515747,-0.00421143,-0.00466919,-0.00466919,-0.00234985,-0.000793457,-0.000946045,-0.00296021,-0.00109863,0,-0.00201416,-0.00109863,-0.000793457,-0.00140381,0.000793457,0.00140381,0.00201416,0.00186157,0.00265503,0.000946045,0.00311279,0.00637817,0.00811768,0.00762939,0.00686646,0.00827026,0.00717163,0.00686646,0.00546265,0.00436401,0.00311279,0.00201416,0,0,-0.000152588,-0.000457764,-0.00170898,-0.00170898,-0.00311279,-0.00405884,-0.00436401,-0.00497437,-0.00466919,-0.00311279,-0.00280762,-0.00296021,-0.00219727,-0.00170898,-0.000610352,-0.000946045,-0.000457764,0.000457764,0.000457764,0.00109863,0.000457764,-0.000610352,-0.00125122,-0.00140381,-0.00265503,-0.00296021,-0.00341797,-0.00482178,-0.00561523,-0.00531006,-0.00561523,-0.00561523,-0.00561523,-0.00637817,-0.00637817,-0.00546265,-0.00561523,-0.00515747,-0.00497437,-0.00421143,-0.00375366,-0.00341797,-0.00265503,-0.00265503,-0.00326538,-0.00311279,-0.00421143,-0.00405884,-0.00546265,-0.006073,-0.00747681,-0.00778198,-0.00857544,-0.00888062,-0.00888062,-0.00918579,-0.00888062,-0.0093689,-0.0090332,-0.00872803,-0.00747681,-0.00811768,-0.00686646,-0.00671387,-0.00592041,-0.00561523,-0.00546265,-0.00497437,-0.00515747,-0.00515747,-0.00546265,-0.00561523,-0.006073,-0.00622559,-0.00686646,-0.00732422,-0.00732422,-0.00778198,-0.00811768,-0.00811768,-0.00811768,-0.00811768,-0.00762939,-0.00827026,-0.00778198,-0.00732422,-0.00717163,-0.00671387,-0.00637817,-0.006073,-0.00592041,-0.00531006,-0.00515747,-0.00482178,-0.0045166,-0.00466919,-0.00466919,-0.00531006,-0.00482178,-0.00482178,-0.00482178,-0.00515747,-0.00497437,-0.00515747,-0.00546265,-0.00515747,-0.00515747,-0.00497437,-0.00482178,-0.00466919,-0.00466919,-0.00421143,-0.00436401,-0.00375366,-0.00360107,-0.00296021,-0.00296021,-0.00250244,-0.00201416,-0.0015564,-0.00201416,-0.00170898,-0.0015564,-0.00201416,-0.00170898,-0.00219727,-0.0015564,-0.00201416,-0.00186157,-0.0015564,-0.00186157,-0.00140381,-0.00125122,-0.00125122,-0.0015564,-0.00109863,-0.00140381,-0.000946045,-0.000946045,-0.000457764,0,0.000305176,0.000305176,0.000793457,0.000946045,0.0015564,0.00140381,0.00201416,0.00186157,0.00201416,0.00201416,0.00186157,0.00186157,0.00250244,0.00234985,0.00280762,0.00280762,0.00265503,0.00296021,0.00296021,0.00311279,0.00341797,0.00311279,0.00390625,0.00375366,0.00405884,0.00390625,0.00421143,0.00405884,0.00466919,0.00466919,0.00482178,0.00497437,0.00531006,0.00531006,0.00546265,0.00546265,0.00561523,0.00592041,0.00637817,0.00671387,0.00701904,0.00717163,0.00717163,0.00732422,0.00762939,0.00778198,0.00842285,0.00811768,0.00872803,0.00857544,0.00872803,0.00888062,0.00857544,0.0090332,0.00918579,0.00918579,0.0093689,0.00888062,0.00967407,0.00967407,0.0101318,0.0107727,0.0112305,0.0113831,0.0119934,0.0119934,0.0119934,0.0129395,0.0123291,0.0127869,0.0126343,0.0123291,0.0124817,0.0123291,0.0121765,0.0119934,0.0115356,0.0113831,0.0105896,0.00967407,0.00997925,0.00888062,0.00857544,0.00811768,0.00827026,0.00778198,0.00762939,0.00778198,0.00747681,0.00796509,0.00778198,0.00778198,0.00762939,0.00717163,0.00701904,0.00732422,0.00671387,0.00671387,0.00656128,0.006073,0.006073,0.00637817,0.00576782,0.00531006,0.00497437,0.00466919,0.00341797,0.00311279,0.00250244,0.00170898,0.00219727,0.00170898,0.00201416,0.00109863,0.000946045,0.000946045,0.000152588,0.000152588,0.000305176,-0.000305176,-0.000610352,-0.00186157,-0.00201416,-0.00311279,-0.00280762,-0.00341797,-0.00311279,-0.00341797,-0.00326538,-0.00311279,-0.00234985,-0.000946045,-0.00125122,-0.000946045,-0.00219727,-0.00360107,-0.00436401,-0.00405884,-0.00375366,-0.00326538,-0.00546265,-0.00686646,-0.00811768,-0.00827026,-0.00811768,-0.0093689,-0.0105896,-0.0112305,-0.0118408,-0.0123291,-0.0115356,-0.0126343,-0.0119934,-0.013092,-0.0121765,-0.0109253,-0.00982666,-0.00982666,-0.00918579,-0.0093689,-0.00827026,-0.00762939,-0.00717163,-0.00762939,-0.00811768,-0.00842285,-0.00888062,-0.0093689,-0.00967407,-0.0105896,-0.0102844,-0.0112305,-0.0124817,-0.0132446,-0.0143433,-0.0149536,-0.0157471,-0.0158997,-0.014801,-0.0137329,-0.0126343,-0.010437,-0.00857544,-0.00671387,-0.0045166,-0.00296021,-0.000793457,-0.000305176,-0.00109863,-0.000793457,-0.00250244,-0.00360107,-0.00561523,-0.00732422,-0.00982666,-0.0119934,-0.0141907,-0.0158997,-0.0174561,-0.0169983,-0.0171509,-0.0154419,-0.0135803,-0.0121765,-0.0101318,-0.00888062,-0.00732422,-0.00561523,-0.00436401,-0.00234985,-0.0015564,-0.000610352,0.000793457,-0.000305176,0.000457764,-0.000305176,-0.000305176,-0.00109863,-0.00140381,-0.00280762,-0.00421143,-0.00482178,-0.00515747,-0.00561523,-0.006073,-0.00747681,-0.00857544,-0.00796509,-0.00732422,-0.00686646,-0.00546265,-0.00531006,-0.00375366,-0.00250244,-0.000793457,-0.000457764,0.00170898,0.00201416,0.00390625,0.0045166,0.0045166,0.00482178,0.00466919,0.00482178,0.00360107,0.00296021,0.00186157,0.00125122,0.000610352,0.000305176,0.000457764,0.000152588,-0.000610352,-0.000305176,-0.000152588,0.000457764,0.0015564,0.00234985,0.00280762,0.00341797,0.00326538,0.00296021,0.00341797,0.00311279,0.00265503,0.00311279,0.00250244,0.00201416,0.00219727,0.00250244,0.00234985,0.00250244,0.00201416,0.0015564,0.00219727,0.00219727,0.00265503,0.00234985,0.00280762,0.00311279,0.00311279,0.00326538,0.00265503,0.00250244,0.00265503,0.00201416,0.00265503,0.00186157,0.00219727,0.00311279,0.00360107,0.00421143,0.00326538,0.00265503,0.00280762,0.00405884,0.00390625,0.00280762,0.00250244,0.00234985,0.00234985,0.00265503,0.00405884,0.00311279,0.00375366,0.00375366,0.00436401,0.00546265,0.00561523,0.006073,0.00576782,0.00592041,0.00515747,0.00561523,0.00515747,0.00497437,0.00497437,0.00576782,0.00637817,0.00717163,0.00778198,0.00842285,0.00872803,0.00982666,0.0105896,0.0112305,0.0118408,0.0119934,0.0118408,0.0123291,0.0116882,0.0105896,0.0093689,0.00857544,0.00778198,0.00717163,0.006073,0.00531006,0.0045166,0.00421143,0.00390625,0.00466919,0.00421143,0.00482178,0.00497437,0.00576782,0.00732422,0.00796509,0.00872803,0.0090332,0.0090332,0.00888062,0.00872803,0.0101318,0.00997925,0.0093689,0.00842285,0.00811768,0.00872803,0.00967407,0.00967407,0.0093689,0.00967407,0.0102844,0.0124817,0.0137329,0.0146484,0.0152893,0.0143433,0.0154419,0.014801,0.0151367,0.0146484,0.013092,0.0112305,0.0102844,0.00827026,0.00762939,0.00637817,0.00497437,0.00421143,0.00296021,0.00311279,0.00375366,0.0045166,0.00546265,0.006073,0.00656128,0.00732422,0.00671387,0.00732422,0.00686646,0.00622559,0.0045166,0.00219727,0.0015564,0.00170898,0.00140381,0.000152588,-0.00250244,-0.00421143,-0.00436401,-0.00280762,-0.00265503,-0.00265503,-0.00531006,-0.00576782,-0.00576782,-0.00686646,-0.00686646,-0.00827026,-0.00857544,-0.00811768,-0.00811768,-0.00778198,-0.00811768,-0.00778198,-0.00671387,-0.00561523,-0.00497437,-0.00561523,-0.00531006,-0.00561523,-0.00576782,-0.00701904,-0.00918579,-0.0112305,-0.0107727,-0.0112305,-0.0127869,-0.0144958,-0.0135803,-0.0123291,-0.0121765,-0.0119934,-0.0118408,-0.0124817,-0.0135803,-0.0141907,-0.0143433,-0.0124817,-0.0115356,-0.0115356,-0.0107727,-0.0109253,-0.013092,-0.0144958,-0.0138855,-0.0135803,-0.0121765,-0.0113831,-0.0118408,-0.0113831,-0.0115356,-0.0102844,-0.0109253,-0.0115356,-0.0102844,-0.0101318,-0.00967407,-0.0101318,-0.00982666,-0.0118408,-0.0132446,-0.014801,-0.0144958,-0.0135803,-0.0141907,-0.0149536,-0.0165405,-0.0155945,-0.0135803,-0.0126343,-0.0110779,-0.0101318,-0.00842285,-0.00857544,-0.00686646,-0.00762939,-0.00717163,-0.00686646,-0.00732422,-0.00967407,-0.0109253,-0.010437,-0.00997925,-0.010437,-0.0112305,-0.0121765,-0.0110779,-0.00842285,-0.00811768,-0.00857544,-0.00888062,-0.00762939,-0.00717163,-0.00671387,-0.00671387,-0.006073,-0.00637817,-0.006073,-0.00717163,-0.00732422,-0.00842285,-0.00888062,-0.00982666,-0.0109253,-0.0137329,-0.0154419,-0.0176086,-0.0184021,-0.0188599,-0.0185547,-0.0176086,-0.0158997,-0.0146484,-0.0140381,-0.0137329,-0.0141907,-0.0135803,-0.0152893,-0.0155945,-0.0160522,-0.0152893,-0.0154419,-0.0166931,-0.0187073,-0.019165,-0.019165,-0.0174561,-0.0154419,-0.0129395,-0.0093689,-0.00561523,-0.000152588,0.0045166,0.00811768,0.0110779,0.0138855,0.0174561,0.020752,0.0238647,0.0247803,0.0241699,0.0232239,0.0213623,0.0193481,0.0168457,0.0141907,0.0123291,0.0109253,0.010437,0.00888062,0.00872803,0.00918579,0.0109253,0.0137329,0.0162048,0.019165,0.0209045,0.0229187,0.025116,0.0272827,0.0286865,0.0302429,0.0308838,0.0308838,0.0308838,0.0305481,0.0303955,0.0296326,0.0296326,0.0285339,0.0288391,0.0286865,0.0291443,0.0297852,0.0307312,0.0317993,0.0325928,0.0344543,0.0349121,0.0358582,0.0361633,0.0363159,0.0358582,0.0344543,0.0327454,0.0299377,0.0282288,0.0244751,0.0215149,0.0179443,0.014801,0.0119934,0.00952148,0.00762939,0.006073,0.00497437,0.0045166,0.00482178,0.00576782,0.00686646,0.00811768,0.00952148,0.0105896,0.0119934,0.0132446,0.0149536,0.0152893,0.0157471,0.0149536,0.0144958,0.0141907,0.0127869,0.0118408,0.00997925,0.00827026,0.00686646,0.00531006,0.00390625,0.00280762,0.00201416,0.00125122,0.00140381,0.000946045,0.000610352,0.000610352,-0.000152588,-0.000152588,-0.00125122,-0.00186157,-0.00360107,-0.00561523,-0.00827026,-0.00982666,-0.0113831,-0.0121765,-0.0129395,-0.0141907,-0.0143433,-0.0140381,-0.0141907,-0.0129395,-0.0118408,-0.00982666,-0.00918579,-0.00796509,-0.00656128,-0.006073,-0.00466919,-0.00375366,-0.00280762,-0.00250244,-0.00219727,-0.00250244,-0.00170898,-0.00250244,-0.00326538,-0.00390625,-0.00515747,-0.00546265,-0.00637817,-0.00701904,-0.00872803,-0.00997925,-0.0116882,-0.0129395,-0.0138855,-0.0138855,-0.0143433,-0.0140381,-0.014801,-0.0155945,-0.0158997,-0.0163574,-0.0168457,-0.0171509,-0.0176086,-0.0182495,-0.0195007,-0.0204163,-0.0202637,-0.0209045,-0.0188599,-0.0188599,-0.0180969,-0.0174561,-0.0165405,-0.0155945,-0.0154419,-0.0143433,-0.0144958,-0.0137329,-0.0121765,-0.0129395,-0.0127869,-0.0141907,-0.0144958,-0.0165405,-0.0188599,-0.0215149,-0.0237122,-0.025116,-0.0263367,-0.026825,-0.0297852,-0.0308838,-0.0322876,-0.0319519,-0.0328979,-0.0327454,-0.0349121,-0.0358582,-0.036499,-0.0361633,-0.0358582,-0.0366516,-0.036499,-0.0369568,-0.0375671,-0.037262,-0.0366516,-0.0357056,-0.0346069,-0.0333557,-0.0333557,-0.0327454,-0.0322876,-0.0335083,-0.0346069,-0.0352478,-0.0361633,-0.036499,-0.0377197,-0.0380554,-0.0388184,-0.038208,-0.036499,-0.0352478,-0.0333557,-0.0307312,-0.0282288,-0.0255737,-0.0204163,-0.0151367,-0.00827026,-0.00125122,0.00592041,0.0138855,0.0210571,0.0286865,0.0358582,0.0407104,0.0448914,0.046936,0.0484924,0.0480347,0.0467834,0.0450745,0.0414734,0.0379028,0.0347595,0.0317993,0.0299377,0.0293274,0.0293274,0.0305481,0.0321045,0.0343018,0.0374146,0.0407104,0.0438232,0.0472412,0.0497437,0.0523987,0.0545654,0.0548706,0.0556641,0.0552063,0.0548706,0.0538025,0.0533142,0.0525513,0.052063,0.0505066,0.0497437,0.0498962,0.0494385,0.050354,0.0509949,0.0516052,0.0527039,0.0527039,0.0541077,0.0533142,0.0539551,0.0516052,0.0492859,0.0466309,0.0430298,0.0388184,0.0335083,0.0279236,0.0213623,0.0144958,0.00888062,0.00326538,-0.00125122,-0.00515747,-0.00827026,-0.0107727,-0.0121765,-0.0126343,-0.0127869,-0.0121765,-0.0113831,-0.0107727,-0.0102844,-0.00997925,-0.0102844,-0.0107727,-0.0113831,-0.0123291,-0.0137329,-0.0154419,-0.0168457,-0.0185547,-0.0193481,-0.0204163,-0.0204163,-0.0205688,-0.0202637,-0.0193481,-0.0185547,-0.0169983,-0.0149536,-0.0137329,-0.0119934,-0.0101318,-0.00827026,-0.00637817,-0.00497437,-0.00405884,-0.00421143,-0.0045166,-0.00592041,-0.00637817,-0.00842285,-0.0102844,-0.0124817,-0.0149536,-0.0158997,-0.0176086,-0.0176086,-0.0171509,-0.0165405,-0.0152893,-0.013092,-0.0105896,-0.00778198,-0.00421143,-0.000457764,0.00326538,0.00686646,0.00982666,0.0119934,0.0140381,0.0152893,0.0162048,0.0168457,0.0169983,0.0166931,0.0152893,0.0137329,0.0123291,0.010437,0.0090332,0.00762939,0.00686646,0.00531006,0.0045166,0.00360107,0.00311279,0.00234985,0.00140381,0.000610352,-0.000457764,-0.00170898,-0.00219727,-0.00360107,-0.00482178,-0.00717163,-0.00967407,-0.0118408,-0.0138855,-0.0162048,-0.0180969,-0.0199585,-0.0210571,-0.020752,-0.0213623,-0.0213623,-0.0210571,-0.0196533,-0.0188599,-0.0177612,-0.0169983,-0.0168457,-0.0168457,-0.0168457,-0.0179443,-0.0179443,-0.0182495,-0.0204163,-0.0238647,-0.0274353,-0.0305481,-0.0341492,-0.0375671,-0.040863,-0.0448914,-0.0481873,-0.0506592,-0.053009,-0.0552063,-0.0564575,-0.0576782,-0.0576782,-0.0566101,-0.0552063,-0.0528564,-0.0533142,-0.0528564,-0.052063,-0.0522461,-0.0517578,-0.0523987,-0.053009,-0.0534668,-0.0541077,-0.0544128,-0.0545654,-0.0553589,-0.0552063,-0.0564575,-0.0559692,-0.0548706,-0.0544128,-0.0508423,-0.0475464,-0.0445862,-0.0403748,-0.0344543,-0.0272827,-0.0187073,-0.0093689,0,0.00872803,0.0184021,0.0274353,0.037262,0.0455322,0.0531616,0.0569153,0.059082,0.0581665,0.0567627,0.0548706,0.0514526,0.0480347,0.0431824,0.0391235,0.0357056,0.0335083,0.0327454,0.0330505,0.0354004,0.0383606,0.0422668,0.0461426,0.0498962,0.0539551,0.0595703,0.0639343,0.0679932,0.0697021,0.0708008,0.0700073,0.0701599,0.0697021,0.0692139,0.0678406,0.0654907,0.0636292,0.0620422,0.0612793,0.0611267,0.0608215,0.0614319,0.0615845,0.0623779,0.0631409,0.0646973,0.0656433,0.0659485,0.0646973,0.0625305,0.0592651,0.0542603,0.0494385,0.0430298,0.0363159,0.0280762,0.0202637,0.0112305,0.00311279,-0.00405884,-0.010437,-0.0149536,-0.0193481,-0.0223083,-0.0246277,-0.0254211,-0.025116,-0.0235291,-0.0215149,-0.0199585,-0.0185547,-0.0177612,-0.0173035,-0.0169983,-0.0169983,-0.0179443,-0.0185547,-0.0213623,-0.0232239,-0.0260315,-0.0280762,-0.0300903,-0.0317993,-0.0332031,-0.0344543,-0.0350952,-0.0347595,-0.0336914,-0.0319519,-0.0300903,-0.026825,-0.0246277,-0.0218201,-0.0199585,-0.0177612,-0.0165405,-0.0143433,-0.0137329,-0.0141907,-0.0149536,-0.0168457,-0.0182495,-0.019165,-0.0196533,-0.0199585,-0.0210571,-0.0205688,-0.0196533,-0.0174561,-0.0143433,-0.0107727,-0.00686646,-0.00296021,0.00125122,0.00482178,0.00918579,0.0126343,0.0166931,0.0196533,0.0221558,0.0227661,0.0226135,0.0229187,0.0226135,0.0221558,0.0213623,0.0196533,0.0180969,0.0162048,0.0149536,0.0144958,0.0135803,0.0124817,0.0123291,0.0110779,0.00997925,0.0093689,0.0093689,0.00918579,0.00918579,0.00762939,0.00671387,0.00531006,0.00375366,0.0015564,-0.000457764,-0.00296021,-0.00546265,-0.00857544,-0.00997925,-0.0118408,-0.0121765,-0.0132446,-0.0140381,-0.0140381,-0.0144958,-0.0137329,-0.013092,-0.0112305,-0.0118408,-0.0110779,-0.0119934,-0.0133972,-0.0144958,-0.0140381,-0.0155945,-0.0166931,-0.0188599,-0.0210571,-0.0244751,-0.0272827,-0.0305481,-0.0333557,-0.0343018,-0.0360107,-0.0371094,-0.037262,-0.0393066,-0.0402222,-0.0422668,-0.0428772,-0.0427246,-0.0420837,-0.0419312,-0.0413208,-0.0405273,-0.040863,-0.039917,-0.0400696,-0.0400696,-0.040863,-0.040863,-0.0417786,-0.041626,-0.0402222,-0.0403748,-0.040863,-0.0411682,-0.039917,-0.0388184,-0.037262,-0.037262,-0.0352478,-0.0328979,-0.0319519,-0.0303955,-0.0277405,-0.0255737,-0.0216675,-0.0196533,-0.0163574,-0.0129395,-0.00747681,-0.00296021,0.00265503,0.00762939,0.0123291,0.0166931,0.0212097,0.0260315,0.0300903,0.0330505,0.0346069,0.0352478,0.035553,0.0344543,0.0341492,0.0332031,0.0317993,0.02948,0.0277405,0.0260315,0.0244751,0.0232239,0.0227661,0.0224609,0.0241699,0.025116,0.0265198,0.0279236,0.0296326,0.0316467,0.0336914,0.0350952,0.0360107,0.0366516,0.0369568,0.0375671,0.0374146,0.0369568,0.0358582,0.0347595,0.0335083,0.0330505,0.0319519,0.0324402,0.0319519,0.0333557,0.0333557,0.0346069,0.0357056,0.036499,0.0380554,0.0379028,0.0388184,0.0383606,0.0380554,0.0366516,0.0349121,0.0317993,0.0286865,0.0244751,0.0198059,0.0154419,0.0107727,0.00656128,0.00250244,-0.0015564,-0.00482178,-0.00656128,-0.00762939,-0.00778198,-0.00717163,-0.00637817,-0.00466919,-0.00280762,-0.000610352,0.0015564,0.00341797,0.00497437,0.00592041,0.00637817,0.00656128,0.00561523,0.00390625,0.00296021,0.000793457,-0.000793457,-0.00201416,-0.00390625,-0.00482178,-0.00637817,-0.00686646,-0.00732422,-0.00701904,-0.00701904,-0.00576782,-0.00592041,-0.006073,-0.00531006,-0.00531006,-0.0045166,-0.00482178,-0.00531006,-0.006073,-0.00671387,-0.00717163,-0.00888062,-0.0102844,-0.0110779,-0.0113831,-0.013092,-0.0140381,-0.0141907,-0.0135803,-0.0119934,-0.0109253,-0.00827026,-0.00656128,-0.0045166,-0.00234985,0.000305176,0.00234985,0.00436401,0.00497437,0.006073,0.00576782,0.00576782,0.00531006,0.00515747,0.00436401,0.00311279,0.00125122,-0.000610352,-0.00201416,-0.00296021,-0.00390625,-0.00466919,-0.00531006,-0.00531006,-0.00546265,-0.0045166,-0.00405884,-0.00311279,-0.00265503,-0.00201416,-0.00170898,-0.00125122,-0.00140381,-0.00125122,-0.00140381,-0.00201416,-0.00234985,-0.00280762,-0.00201416,-0.00186157,-0.00219727,-0.00296021,-0.00341797,-0.00421143,-0.00311279,-0.00341797,-0.00296021,-0.00234985,-0.00219727,-0.00125122,-0.00109863,-0.00109863,-0.000946045,-0.00140381,-0.00109863,-0.00219727,-0.00234985,-0.00326538,-0.00421143,-0.0045166,-0.00546265,-0.006073,-0.00671387,-0.00701904,-0.00686646,-0.00686646,-0.00686646,-0.00671387,-0.00747681,-0.00701904,-0.00747681,-0.00762939,-0.00842285,-0.00967407,-0.00997925,-0.0105896,-0.00952148,-0.00997925,-0.0101318,-0.0107727,-0.0113831,-0.0105896,-0.0105896,-0.0110779,-0.0113831,-0.0119934,-0.0113831,-0.0112305,-0.0105896,-0.0112305,-0.0112305,-0.0109253,-0.00997925,-0.00982666,-0.00872803,-0.00872803,-0.00918579,-0.00872803,-0.0093689,-0.00888062,-0.00967407,-0.0102844,-0.010437,-0.0107727,-0.0112305,-0.0112305,-0.0118408,-0.0119934,-0.0126343,-0.0123291,-0.0113831,-0.0115356,-0.0105896,-0.0107727,-0.00982666,-0.00952148,-0.00888062,-0.00872803,-0.00857544,-0.00717163,-0.00762939,-0.00637817,-0.00686646,-0.00671387,-0.00717163,-0.00778198,-0.00778198,-0.00778198,-0.00811768,-0.00842285,-0.00842285,-0.00888062,-0.00811768,-0.00811768,-0.00747681,-0.00622559,-0.006073,-0.00482178,-0.00405884,-0.00326538,-0.00219727,-0.00170898,-0.000610352,-0.000793457,0.000152588,0.000457764,0.000610352,0.000610352,0.000793457,0.000946045,0.00125122,0.00140381,0.00201416,0.00219727,0.00311279,0.00360107,0.00466919,0.00592041,0.00637817,0.00778198,0.00872803,0.00967407,0.0107727,0.0112305,0.0121765,0.0121765,0.0132446,0.0129395,0.013092,0.013092,0.0127869,0.0121765,0.0119934,0.0112305,0.0110779,0.0105896,0.0102844,0.0102844,0.00967407,0.0102844,0.00982666,0.0102844,0.0107727,0.0113831,0.0113831,0.0119934,0.0126343,0.0121765,0.0129395,0.0126343,0.0127869,0.0126343,0.0124817,0.0119934,0.0116882,0.0113831,0.0112305,0.0107727,0.0109253,0.0107727,0.0105896,0.0107727,0.0105896,0.0110779,0.0107727,0.0115356,0.0109253,0.0112305,0.0113831,0.0112305,0.0110779,0.0107727,0.00997925,0.00997925,0.00888062,0.00872803,0.00762939,0.00732422,0.00637817,0.00576782,0.00546265,0.00466919,0.00436401,0.0045166,0.00375366,0.00421143,0.00341797,0.00421143,0.00341797,0.00375366,0.00360107,0.00375366,0.00311279,0.00311279,0.00234985,0.00186157,0.00170898,0.00125122,0.00360107,0.00546265,0.00762939,0.00967407,0.00918579,0.00421143,0.0015564,0.00109863,0.00234985,0.0015564,-0.000457764,-0.000457764,0.000152588,0.000793457,-0.000610352,-0.00125122,-0.000610352,0.000152588,0.000610352,0.00109863,0.000152588,-0.00186157,-0.00201416,-0.00201416,-0.00201416,-0.00201416,-0.00265503,-0.00265503,-0.00421143,-0.00360107,-0.00421143,-0.0045166,-0.00375366,-0.00280762,-0.00250244,-0.00219727,-0.00296021,-0.00186157,-0.00140381,-0.000610352,0.000457764,0.00234985,0.00234985,0.00311279,0.00250244,0.00109863,-0.000152588,-0.000793457,-0.00219727,-0.00341797,-0.00341797,-0.0045166,-0.00497437,-0.00546265,-0.00515747,-0.00561523,-0.00576782,-0.00576782,-0.00497437,-0.00421143,-0.00186157,0,0.00296021,0.00390625,0.00576782,0.00637817,0.00466919,0.00390625,0.00140381,-0.000457764,-0.000793457,-0.00125122,-0.00341797,-0.00561523,-0.0090332,-0.0127869,-0.0157471,-0.0171509,-0.0185547,-0.0202637,-0.0218201,-0.0224609,-0.0227661,-0.0233765,-0.0232239,-0.0232239,-0.0232239,-0.0229187,-0.0254211,-0.0257263,-0.0260315,-0.0263367,-0.0266724,-0.0274353,-0.0286865,-0.0291443,-0.0300903,-0.0314941,-0.0330505,-0.0335083,-0.0339966,-0.0335083,-0.0335083,-0.0330505,-0.0324402,-0.0324402,-0.0332031,-0.0325928,-0.0303955,-0.0272827,-0.0246277,-0.0199585,-0.0179443,-0.0143433,-0.0090332,-0.00497437,-0.00280762,-0.00109863,0,0.00201416,0.00341797,0.0045166,0.00341797,0.00170898,-0.000305176,-0.000946045,-0.00201416,-0.00375366,-0.00482178,-0.00436401,-0.0045166,-0.00341797,-0.00326538,-0.00219727,-0.0015564,0.000457764,0.00360107,0.00622559,0.00747681,0.00827026,0.00796509,0.00747681,0.00747681,0.00747681,0.00827026,0.00888062,0.00982666,0.00982666,0.0101318,0.0115356,0.0129395,0.0155945,0.0176086,0.0199585,0.0227661,0.0272827,0.0296326,0.0324402,0.0350952,0.037262,0.0397644,0.0410156,0.0419312,0.041626,0.0407104,0.0391235,0.0371094,0.0343018,0.0316467,0.0282288,0.0249329,0.0221558,0.0193481,0.0169983,0.0152893,0.0140381,0.0140381,0.0137329,0.0129395,0.0140381,0.0133972,0.0140381,0.0135803,0.0132446,0.0132446,0.0126343,0.0110779,0.010437,0.00918579,0.00796509,0.00747681,0.00732422,0.00671387,0.00732422,0.00747681,0.00811768,0.00888062,0.00952148,0.010437,0.0118408,0.013092,0.0133972,0.0137329,0.0133972,0.013092,0.0119934,0.0107727,0.00811768,0.00576782,0.00280762,-0.000152588,-0.00219727,-0.00515747,-0.00622559,-0.00842285,-0.00967407,-0.0107727,-0.0102844,-0.00967407,-0.00888062,-0.00747681,-0.006073,-0.00421143,-0.00265503,-0.000793457,0.00140381,0.00186157,0.00250244,0.00201416,0.00201416,0.00186157,0.000946045,0,-0.00170898,-0.00201416,-0.00234985,-0.0015564,-0.00109863,-0.000457764,-0.000457764,0.000793457,0.00234985,0.00360107,0.00482178,0.00561523,0.00531006,0.00531006,0.00531006,0.00421143,0.00421143,0.00375366,0.00280762,0.00109863,-0.00109863,-0.00219727,-0.00311279,-0.00360107,-0.0045166,-0.00482178,-0.00561523,-0.00436401,-0.00405884,-0.00296021,-0.00360107,-0.00421143,-0.00360107,-0.00311279,-0.00250244,-0.00234985,-0.00280762,-0.00341797,-0.00390625,-0.00622559,-0.00796509,-0.00918579,-0.0102844,-0.0124817,-0.0144958,-0.0155945,-0.0157471,-0.0173035,-0.0195007,-0.0219727,-0.0232239,-0.0232239,-0.0233765,-0.0241699,-0.0249329,-0.0254211,-0.0274353,-0.0299377,-0.0303955,-0.0302429,-0.0300903,-0.0324402,-0.0363159,-0.0403748,-0.042572,-0.0434875,-0.0450745,-0.0481873,-0.0509949,-0.0541077,-0.0572205,-0.059082,-0.0598755,-0.0612793,-0.0622253,-0.0612793,-0.0592651,-0.0556641,-0.0519104,-0.0498962,-0.0484924,-0.0461426,-0.0397644,-0.0316467,-0.0218201,-0.0119934,-0.00436401,0.00375366,0.0119934,0.0205688,0.0279236,0.0332031,0.0369568,0.0391235,0.0383606,0.0361633,0.0325928,0.0280762,0.0237122,0.0202637,0.0168457,0.0158997,0.0143433,0.0151367,0.0155945,0.0177612,0.0209045,0.0247803,0.0272827,0.0296326,0.0316467,0.0317993,0.0319519,0.0308838,0.0288391,0.026825,0.0240173,0.0216675,0.0212097,0.0201111,0.0215149,0.0218201,0.0233765,0.0257263,0.0296326,0.0344543,0.0397644,0.0448914,0.0494385,0.0541077,0.0586243,0.0631409,0.0662537,0.0682983,0.0684509,0.0670471,0.0643921,0.0601807,0.0556641,0.0494385,0.042572,0.0347595,0.0269775,0.0196533,0.0135803,0.00872803,0.00515747,0.00265503,0.000946045,-0.00109863,-0.00186157,-0.00250244,-0.00296021,-0.00421143,-0.00561523,-0.00811768,-0.0116882,-0.0144958,-0.0171509,-0.0199585,-0.0227661,-0.0244751,-0.0263367,-0.0277405,-0.0269775,-0.0252686,-0.0221558,-0.019165,-0.0157471,-0.0124817,-0.0090332,-0.00515747,-0.0015564,0.00234985,0.00482178,0.00671387,0.00747681,0.00717163,0.00622559,0.00531006,0.00360107,0.0015564,-0.000793457,-0.00421143,-0.00717163,-0.0090332,-0.0105896,-0.0107727,-0.0121765,-0.0132446,-0.0146484,-0.0146484,-0.0135803,-0.0123291,-0.0109253,-0.0107727,-0.00997925,-0.00982666,-0.00888062,-0.00656128,-0.00436401,-0.00219727,0.000152588,0.00170898,0.00405884,0.00747681,0.0113831,0.0151367,0.0182495,0.0202637,0.0219727,0.0238647,0.0258789,0.0274353,0.0288391,0.0288391,0.0275879,0.0261841,0.0258789,0.0261841,0.0263367,0.0258789,0.0254211,0.0227661,0.0201111,0.0166931,0.0138855,0.00997925,0.00732422,0.00201416,-0.00234985,-0.00686646,-0.0110779,-0.0143433,-0.0168457,-0.0188599,-0.0205688,-0.0223083,-0.0229187,-0.0235291,-0.0244751,-0.0252686,-0.026825,-0.0289917,-0.0297852,-0.0296326,-0.02948,-0.0307312,-0.0321045,-0.0352478,-0.0380554,-0.041626,-0.0448914,-0.047699,-0.0505066,-0.0525513,-0.0553589,-0.0592651,-0.0640869,-0.0681458,-0.0722046,-0.0756226,-0.0787354,-0.084198,-0.0884094,-0.0926208,-0.0957336,-0.0980835,-0.10025,-0.101807,-0.104767,-0.106506,-0.106964,-0.10556,-0.101959,-0.0960388,-0.0884094,-0.0787354,-0.0682983,-0.0558167,-0.0413208,-0.0261841,-0.0093689,0.00576782,0.0201111,0.0324402,0.0439758,0.0533142,0.0598755,0.0628357,0.0618896,0.0597229,0.0558167,0.0522461,0.0494385,0.0467834,0.0462952,0.0462952,0.0478821,0.0511475,0.0564575,0.0618896,0.0686035,0.0751648,0.0796814,0.0821838,0.0820007,0.0805969,0.077179,0.0732727,0.0676575,0.0612793,0.0544128,0.0489502,0.0450745,0.0431824,0.0439758,0.0461426,0.048645,0.0533142,0.0589294,0.0665894,0.0745239,0.08078,0.085907,0.0898132,0.0921631,0.0937195,0.092926,0.0916748,0.087616,0.0823364,0.0751648,0.0661011,0.0567627,0.046936,0.0375671,0.0285339,0.0195007,0.0110779,0.00341797,-0.00219727,-0.00671387,-0.0105896,-0.0138855,-0.0177612,-0.0219727,-0.0258789,-0.0300903,-0.0352478,-0.0402222,-0.04599,-0.0534668,-0.0611267,-0.0690613,-0.0748291,-0.0790405,-0.0818481,-0.0829468,-0.0830994,-0.08078,-0.0762329,-0.0706177,-0.0626831,-0.0556641,-0.0475464,-0.0400696,-0.0325928,-0.0258789,-0.0195007,-0.014801,-0.00982666,-0.00671387,-0.00390625,-0.00234985,-0.000457764,0.000152588,0.000793457,0.000946045,0,-0.000457764,0,0,0.000305176,0.000793457,0.00250244,0.00405884,0.00762939,0.0105896,0.014801,0.0179443,0.0218201,0.0255737,0.0291443,0.0324402,0.0350952,0.0368042,0.0375671,0.0380554,0.038208,0.0389709,0.0400696,0.0414734,0.0431824,0.0441284,0.0461426,0.048645,0.0517578,0.0548706,0.0580139,0.0587769,0.0606384,0.0604858,0.0609741,0.0598755,0.057373,0.0542603,0.0489502,0.0427246,0.0360107,0.0280762,0.0212097,0.0124817,0.00421143,-0.0045166,-0.0135803,-0.0213623,-0.0283813,-0.0341492,-0.0397644,-0.0441284,-0.048645,-0.0519104,-0.054718,-0.0569153,-0.059082,-0.0617371,-0.0645447,-0.0692139,-0.0729675,-0.078125,-0.0830994,-0.0887146,-0.0949707,-0.101654,-0.107422,-0.112732,-0.117249,-0.121155,-0.12381,-0.12677,-0.129578,-0.131897,-0.133148,-0.134399,-0.134399,-0.134399,-0.13504,-0.135803,-0.136902,-0.135956,-0.131744,-0.125671,-0.116791,-0.106171,-0.0932312,-0.0782776,-0.0601807,-0.0405273,-0.0193481,0.00201416,0.0201111,0.0371094,0.0516052,0.0631409,0.0712585,0.0756226,0.0757751,0.0728149,0.0684509,0.0632935,0.0604858,0.059082,0.0598755,0.0629883,0.0676575,0.0739136,0.082489,0.0921631,0.102142,0.111023,0.117889,0.121613,0.122253,0.119598,0.115234,0.108826,0.101196,0.0921631,0.083252,0.0767212,0.0728149,0.0718689,0.073761,0.0765686,0.0804443,0.0843506,0.0910645,0.0966797,0.103058,0.107269,0.110382,0.110382,0.109131,0.105103,0.0997925,0.0930786,0.0848083,0.07547,0.0642395,0.0525513,0.0397644,0.0277405,0.0162048,0.0045166,-0.00576782,-0.0160522,-0.0233765,-0.0308838,-0.0347595,-0.0386658,-0.0419312,-0.0453796,-0.0494385,-0.0536499,-0.0592651,-0.065033,-0.0725098,-0.0805969,-0.0895081,-0.0996399,-0.10791,-0.114288,-0.118347,-0.120056,-0.119293,-0.116943,-0.111176,-0.103699,-0.0932312,-0.0829468,-0.0720215,-0.0623779,-0.0538025,-0.0467834,-0.0402222,-0.0350952,-0.0302429,-0.0257263,-0.0223083,-0.019165,-0.0162048,-0.0132446,-0.00982666,-0.00546265,-0.0015564,0.00296021,0.00762939,0.0133972,0.0184021,0.0237122,0.0279236,0.0321045,0.037262,0.0424194,0.047699,0.0528564,0.0578613,0.0629883,0.0675049,0.071106,0.0736084,0.0750122,0.0757751,0.0759277,0.0759277,0.07547,0.0751648,0.0751648,0.0751648,0.07547,0.0760803,0.076416,0.0767212,0.0773315,0.0773315,0.0778198,0.0770264,0.0750122,0.0722046,0.0671997,0.0608215,0.0542603,0.0462952,0.0385132,0.0297852,0.0205688,0.0123291,0.00360107,-0.00482178,-0.0135803,-0.0216675,-0.0299377,-0.0368042,-0.0439758,-0.0492859,-0.054718,-0.0594177,-0.0643921,-0.0684509,-0.0736084,-0.078125,-0.0829468,-0.0874634,-0.0924683,-0.0985413,-0.104767,-0.112274,-0.120056,-0.127075,-0.134857,-0.141571,-0.14859,-0.1539,-0.158875,-0.163086,-0.164978,-0.16745,-0.167786,-0.168243,-0.169189,-0.169006,-0.168091,-0.163727,-0.157013,-0.146576,-0.134247,-0.119598,-0.103363,-0.0843506,-0.0628357,-0.0385132,-0.0129395,0.0109253,0.0321045,0.0497437,0.0643921,0.07547,0.0818481,0.0852966,0.0826416,0.0784302,0.0728149,0.0690613,0.0684509,0.069397,0.0750122,0.0812378,0.0899658,0.100891,0.112274,0.12442,0.135345,0.144226,0.149689,0.150452,0.146729,0.139709,0.130188,0.118805,0.106659,0.0947876,0.0845032,0.0779724,0.0740662,0.0753174,0.0774841,0.0820007,0.0873108,0.0935669,0.0996399,0.106812,0.111786,0.11554,0.115997,0.113831,0.108368,0.101807,0.0935669,0.0849915,0.0750122,0.0628357,0.0498962,0.0357056,0.0218201,0.00918579,-0.00296021,-0.0138855,-0.0241699,-0.0333557,-0.040863,-0.0462952,-0.0502014,-0.0539551,-0.0581665,-0.0631409,-0.0681458,-0.0746765,-0.0810852,-0.0891724,-0.0986938,-0.109314,-0.120514,-0.13208,-0.140472,-0.147339,-0.150452,-0.150452,-0.147644,-0.141724,-0.132538,-0.120697,-0.107422,-0.0941772,-0.0805969,-0.069397,-0.0587769,-0.0505066,-0.042572,-0.0369568,-0.0307312,-0.0257263,-0.0201111,-0.0169983,-0.0118408,-0.00857544,-0.00265503,0.00405884,0.0121765,0.0201111,0.0277405,0.0354004,0.0413208,0.047699,0.0534668,0.059082,0.0643921,0.0698547,0.0742188,0.0791931,0.0835876,0.088562,0.0927734,0.0955811,0.0975952,0.09729,0.0971375,0.0958862,0.094635,0.092926,0.091217,0.0895081,0.088562,0.0873108,0.0871582,0.086853,0.0863953,0.085907,0.0848083,0.0840454,0.0812378,0.0778198,0.0723572,0.0648499,0.0566101,0.0472412,0.037262,0.0265198,0.0157471,0.00482178,-0.00561523,-0.0158997,-0.0247803,-0.0335083,-0.0413208,-0.0484924,-0.0541077,-0.0606384,-0.0659485,-0.0718689,-0.0773315,-0.0827942,-0.0882568,-0.0924683,-0.0979309,-0.102753,-0.108826,-0.115082,-0.121918,-0.128632,-0.135498,-0.14267,-0.149841,-0.157318,-0.16449,-0.169952,-0.17511,-0.178986,-0.181946,-0.184448,-0.186157,-0.187561,-0.186157,-0.181793,-0.174011,-0.161835,-0.147186,-0.130493,-0.112885,-0.0930786,-0.0714111,-0.0462952,-0.0216675,0.00326538,0.0249329,0.043335,0.0586243,0.069397,0.0773315,0.0809326,0.0810852,0.0787354,0.0753174,0.0729675,0.0731201,0.0774841,0.0849915,0.0951233,0.106812,0.119446,0.133301,0.146881,0.160919,0.171051,0.17807,0.179626,0.176819,0.169952,0.158264,0.144226,0.128326,0.113342,0.0985413,0.087616,0.079834,0.0767212,0.0778198,0.0818481,0.0873108,0.0933838,0.0988464,0.10556,0.110535,0.114746,0.114899,0.111481,0.104309,0.0955811,0.0843506,0.0728149,0.0600281,0.046936,0.0327454,0.0188599,0.00561523,-0.00637817,-0.0162048,-0.0254211,-0.0336914,-0.040863,-0.0470886,-0.0513,-0.0541077,-0.0575256,-0.0615845,-0.0664368,-0.0732727,-0.0796814,-0.0874634,-0.0958862,-0.106171,-0.118042,-0.129883,-0.141724,-0.152649,-0.160767,-0.165436,-0.167297,-0.16449,-0.159515,-0.150787,-0.139709,-0.125214,-0.111023,-0.0954285,-0.0823364,-0.069397,-0.0597229,-0.0502014,-0.043335,-0.0366516,-0.031189,-0.0260315,-0.0209045,-0.0154419,-0.00967407,-0.00250244,0.00637817,0.0169983,0.0286865,0.0403748,0.0528564,0.0639343,0.073761,0.0813904,0.0877686,0.0933838,0.098999,0.103699,0.108368,0.111176,0.114136,0.115845,0.117889,0.118652,0.117889,0.11554,0.112427,0.108215,0.104156,0.10025,0.0957336,0.0907593,0.0854492,0.08078,0.0765686,0.0745239,0.0722046,0.0706177,0.0675049,0.0648499,0.0604858,0.0558167,0.0500488,0.0417786,0.0324402,0.0213623,0.00967407,-0.00201416,-0.0124817,-0.0232239,-0.0324402,-0.0407104,-0.0483398,-0.0555115,-0.0606384,-0.0659485,-0.0695496,-0.0739136,-0.0782776,-0.0835876,-0.0901184,-0.0965271,-0.10321,-0.109772,-0.116791,-0.123016,-0.130981,-0.13736,-0.144531,-0.149994,-0.155914,-0.161224,-0.168243,-0.174774,-0.181488,-0.186951,-0.192108,-0.196777,-0.201294,-0.203949,-0.203491,-0.195831,-0.182739,-0.165131,-0.144836,-0.124268,-0.101501,-0.0770264,-0.0502014,-0.0221558,0.0045166,0.0263367,0.0434875,0.0559692,0.0651855,0.0726624,0.0774841,0.0801392,0.0802917,0.0796814,0.0820007,0.0887146,0.0993347,0.111633,0.126282,0.140167,0.155457,0.170563,0.184753,0.196625,0.203949,0.205963,0.202698,0.195526,0.184601,0.170746,0.1539,0.136749,0.119293,0.103851,0.0916748,0.0835876,0.0796814,0.0799866,0.0827942,0.0862122,0.0895081,0.0921631,0.0951233,0.0979309,0.098999,0.0971375,0.0907593,0.0810852,0.0698547,0.0581665,0.0466309,0.0350952,0.0243225,0.0121765,0.000457764,-0.00967407,-0.0182495,-0.0233765,-0.0286865,-0.0330505,-0.038208,-0.042572,-0.04599,-0.0480347,-0.0514526,-0.0564575,-0.0637817,-0.0734253,-0.0821838,-0.0915222,-0.101959,-0.113831,-0.127228,-0.140656,-0.153259,-0.162933,-0.169647,-0.17276,-0.173065,-0.1698,-0.163879,-0.155151,-0.143433,-0.131134,-0.117249,-0.103699,-0.0923157,-0.0813904,-0.0726624,-0.0651855,-0.0592651,-0.0533142,-0.0472412,-0.0402222,-0.0319519,-0.0218201,-0.00967407,0.00326538,0.0187073,0.0335083,0.0502014,0.0662537,0.0829468,0.0974426,0.110229,0.119446,0.124725,0.128174,0.130188,0.132385,0.134857,0.137054,0.138306,0.139069,0.138153,0.13736,0.135498,0.133789,0.130035,0.124573,0.117249,0.108978,0.100098,0.0901184,0.0801392,0.0709534,0.0625305,0.0556641,0.0491028,0.0441284,0.0383606,0.0333557,0.0279236,0.0233765,0.0177612,0.0105896,0.00250244,-0.00701904,-0.0171509,-0.0274353,-0.0377197,-0.04599,-0.0528564,-0.0580139,-0.0623779,-0.0665894,-0.071106,-0.07547,-0.0787354,-0.0821838,-0.085144,-0.0899658,-0.0958862,-0.103058,-0.111481,-0.120056,-0.128479,-0.135651,-0.14267,-0.149689,-0.156067,-0.162781,-0.169006,-0.174622,-0.18103,-0.187256,-0.19397,-0.200195,-0.205658,-0.209412,-0.209076,-0.204407,-0.194427,-0.178833,-0.160126,-0.139069,-0.115845,-0.0898132,-0.0611267,-0.0314941,-0.0045166,0.0177612,0.0357056,0.047699,0.0580139,0.0648499,0.0701599,0.0728149,0.0748291,0.0767212,0.083252,0.0941772,0.109314,0.12677,0.144073,0.163086,0.181335,0.200195,0.216095,0.227173,0.231079,0.228271,0.2211,0.210327,0.196777,0.180389,0.161682,0.142822,0.12677,0.113831,0.104309,0.098999,0.096344,0.0960388,0.0971375,0.0975952,0.0983887,0.0965271,0.0944824,0.0909119,0.0848083,0.0759277,0.0640869,0.050354,0.0368042,0.0237122,0.0126343,0.00170898,-0.00762939,-0.0174561,-0.0261841,-0.0332031,-0.037262,-0.0394592,-0.039917,-0.0414734,-0.043335,-0.0447388,-0.0453796,-0.046936,-0.0494385,-0.0545654,-0.0622253,-0.0704651,-0.0790405,-0.0881042,-0.0985413,-0.110718,-0.123016,-0.135345,-0.144531,-0.151703,-0.154663,-0.155151,-0.153107,-0.14859,-0.142822,-0.13504,-0.125977,-0.116486,-0.107117,-0.0988464,-0.0910645,-0.0843506,-0.0788879,-0.0739136,-0.0698547,-0.0645447,-0.0575256,-0.0489502,-0.0383606,-0.0257263,-0.0101318,0.00671387,0.0254211,0.0438232,0.0628357,0.0801392,0.0980835,0.11319,0.125977,0.134552,0.140472,0.144531,0.148285,0.150452,0.152954,0.153595,0.15451,0.1539,0.153107,0.152344,0.151093,0.148132,0.143616,0.136749,0.128326,0.117706,0.106964,0.0943298,0.0823364,0.0689087,0.0570679,0.04599,0.0352478,0.025116,0.0151367,0.006073,-0.00201416,-0.00888062,-0.0162048,-0.0233765,-0.0313416,-0.0403748,-0.0491028,-0.0569153,-0.0645447,-0.0703125,-0.0753174,-0.0796814,-0.083252,-0.0871582,-0.0899658,-0.0927734,-0.0940247,-0.0957336,-0.0979309,-0.101654,-0.106171,-0.112427,-0.118805,-0.125061,-0.132385,-0.139557,-0.147034,-0.154358,-0.161072,-0.16745,-0.173218,-0.178986,-0.185699,-0.192719,-0.198486,-0.201599,-0.19928,-0.193329,-0.18335,-0.170746,-0.155457,-0.138458,-0.116486,-0.0926208,-0.0662537,-0.0405273,-0.0171509,0.00186157,0.0176086,0.0291443,0.0386658,0.0461426,0.0516052,0.0561218,0.0606384,0.0679932,0.0784302,0.0935669,0.110718,0.129425,0.149994,0.171204,0.191772,0.210022,0.22406,0.231842,0.234039,0.230927,0.223267,0.212982,0.199097,0.18335,0.167786,0.152008,0.138916,0.128937,0.121613,0.117249,0.114288,0.111938,0.108978,0.104309,0.0988464,0.0923157,0.085144,0.076416,0.0651855,0.0514526,0.0363159,0.0223083,0.00888062,-0.00170898,-0.0124817,-0.0218201,-0.0310364,-0.0396118,-0.047699,-0.0552063,-0.0595703,-0.0632935,-0.0646973,-0.065033,-0.0646973,-0.0631409,-0.0615845,-0.0612793,-0.0622253,-0.065033,-0.0692139,-0.0750122,-0.081543,-0.0895081,-0.0982361,-0.107727,-0.117249,-0.12442,-0.129425,-0.130981,-0.128784,-0.124878,-0.11911,-0.113037,-0.105103,-0.0974426,-0.0898132,-0.0843506,-0.0799866,-0.0774841,-0.0748291,-0.0731201,-0.071106,-0.0676575,-0.0632935,-0.0558167,-0.0461426,-0.0336914,-0.0193481,-0.00360107,0.0138855,0.0303955,0.0464783,0.0601807,0.0739136,0.0865479,0.0991516,0.110718,0.119751,0.127228,0.13269,0.139252,0.146881,0.155457,0.163574,0.169006,0.171661,0.171967,0.170898,0.170258,0.16684,0.160278,0.149536,0.135498,0.12085,0.106018,0.0923157,0.0793762,0.0648499,0.0513,0.0389709,0.0280762,0.0180969,0.00811768,-0.00265503,-0.0140381,-0.0255737,-0.0350952,-0.0447388,-0.0538025,-0.0642395,-0.0740662,-0.0834045,-0.0898132,-0.0935669,-0.0954285,-0.0968323,-0.0996399,-0.101959,-0.103851,-0.105713,-0.106964,-0.10791,-0.108826,-0.110229,-0.113037,-0.117249,-0.122101,-0.126465,-0.130829,-0.134857,-0.139557,-0.145782,-0.152649,-0.159363,-0.165741,-0.172607,-0.179626,-0.187103,-0.192108,-0.193176,-0.186798,-0.174469,-0.157623,-0.138306,-0.11911,-0.0980835,-0.073761,-0.0458374,-0.0198059,0.00201416,0.0166931,0.0247803,0.0305481,0.0349121,0.0388184,0.0410156,0.0434875,0.0483398,0.0578613,0.0728149,0.0933838,0.118195,0.144226,0.169006,0.192719,0.210175,0.225006,0.231689,0.231232,0.223755,0.211731,0.197693,0.185699,0.173706,0.162933,0.153412,0.147339,0.143433,0.142517,0.141571,0.140167,0.136261,0.129425,0.117706,0.101196,0.0813904,0.0618896,0.0436707,0.0291443,0.014801,0.00341797,-0.00686646,-0.0133972,-0.0169983,-0.0198059,-0.0213623,-0.0263367,-0.0341492,-0.04599,-0.0601807,-0.0765686,-0.0899658,-0.101807,-0.110718,-0.115234,-0.115845,-0.111328,-0.103058,-0.0932312,-0.0838928,-0.0765686,-0.0712585,-0.0689087,-0.0704651,-0.0768738,-0.0871582,-0.100098,-0.113678,-0.124725,-0.130676,-0.130829,-0.125061,-0.113525,-0.0996399,-0.083252,-0.0665894,-0.0505066,-0.0375671,-0.0286865,-0.0252686,-0.0263367,-0.0305481,-0.0352478,-0.039917,-0.0417786,-0.0394592,-0.0321045,-0.0202637,-0.00341797,0.0158997,0.0368042,0.0587769,0.0785828,0.0955811,0.107422,0.115692,0.120056,0.122101,0.123322,0.124725,0.125366,0.129425,0.135498,0.143768,0.154358,0.165131,0.17337,0.178375,0.179779,0.177124,0.171509,0.161072,0.145477,0.126465,0.105103,0.0846558,0.0662537,0.0494385,0.0347595,0.0218201,0.0118408,0.0045166,-0.00219727,-0.00967407,-0.019165,-0.0303955,-0.0436707,-0.0570679,-0.0712585,-0.085907,-0.0996399,-0.111633,-0.120056,-0.125061,-0.126282,-0.124115,-0.119904,-0.114136,-0.109467,-0.10495,-0.103546,-0.103851,-0.107117,-0.111786,-0.116486,-0.122406,-0.128174,-0.133636,-0.139252,-0.141876,-0.143127,-0.14267,-0.142822,-0.143768,-0.145477,-0.147827,-0.152191,-0.159668,-0.166199,-0.170746,-0.169006,-0.159515,-0.143433,-0.123657,-0.102753,-0.0795288,-0.0534668,-0.0237122,0.00515747,0.0300903,0.0478821,0.0567627,0.059082,0.0584717,0.0572205,0.0559692,0.0566101,0.0620422,0.0731201,0.0913696,0.115082,0.144073,0.172607,0.2005,0.225464,0.242462,0.249329,0.246185,0.233582,0.214081,0.19101,0.168701,0.148743,0.134247,0.125061,0.122101,0.12381,0.128937,0.134552,0.138763,0.138763,0.134094,0.121918,0.102142,0.0742188,0.0407104,0.00842285,-0.0184021,-0.0383606,-0.0516052,-0.0595703,-0.0623779,-0.0606384,-0.0550537,-0.0489502,-0.0452271,-0.0462952,-0.0536499,-0.0668945,-0.0860596,-0.108368,-0.130341,-0.146881,-0.157318,-0.158417,-0.152191,-0.138,-0.118958,-0.0977478,-0.0776367,-0.0611267,-0.0514526,-0.0475464,-0.0506592,-0.0603333,-0.0748291,-0.0909119,-0.105255,-0.114746,-0.116486,-0.109619,-0.0943298,-0.0729675,-0.0478821,-0.0238647,-0.00234985,0.0141907,0.0240173,0.0265198,0.0227661,0.0121765,-0.000610352,-0.0137329,-0.0229187,-0.025116,-0.0184021,-0.00341797,0.0190125,0.0458374,0.0728149,0.0968323,0.117249,0.132538,0.142365,0.14502,0.140472,0.130829,0.119446,0.110535,0.108368,0.11319,0.122711,0.136261,0.150635,0.164337,0.176025,0.18335,0.184143,0.176514,0.160126,0.137848,0.110718,0.0845032,0.0578613,0.0357056,0.0171509,0.00405884,-0.00436401,-0.00997925,-0.0138855,-0.0190125,-0.0258789,-0.0350952,-0.0481873,-0.0642395,-0.0830994,-0.102142,-0.120361,-0.134399,-0.144684,-0.148895,-0.14859,-0.142059,-0.133942,-0.122864,-0.113342,-0.104767,-0.0996399,-0.0971375,-0.0982361,-0.101196,-0.106171,-0.11319,-0.118958,-0.122101,-0.122406,-0.119904,-0.115387,-0.111481,-0.108521,-0.10791,-0.109131,-0.114136,-0.121155,-0.132385,-0.144379,-0.157166,-0.165588,-0.167603,-0.157959,-0.137665,-0.108215,-0.0742188,-0.0405273,-0.00778198,0.0238647,0.0531616,0.0753174,0.088562,0.0882568,0.0784302,0.065033,0.054718,0.0511475,0.0544128,0.0659485,0.085907,0.113983,0.148285,0.186493,0.222809,0.250092,0.266479,0.27005,0.259918,0.239197,0.210175,0.177277,0.14563,0.118652,0.101196,0.0944824,0.0974426,0.105103,0.115692,0.124878,0.130341,0.128632,0.11615,0.0938721,0.0620422,0.0247803,-0.0141907,-0.0505066,-0.0834045,-0.104767,-0.114746,-0.11319,-0.103546,-0.0887146,-0.0748291,-0.0648499,-0.0597229,-0.0608215,-0.0701599,-0.0870056,-0.110382,-0.134857,-0.157959,-0.175415,-0.182587,-0.177917,-0.163879,-0.139404,-0.111328,-0.0802917,-0.0531616,-0.0319519,-0.0185547,-0.014801,-0.0196533,-0.0303955,-0.0453796,-0.0609741,-0.0728149,-0.0799866,-0.0778198,-0.0678406,-0.050354,-0.0263367,-0.0015564,0.0232239,0.0430298,0.0555115,0.0604858,0.0564575,0.0481873,0.0360107,0.0227661,0.0124817,0.00671387,0.00701904,0.0152893,0.0308838,0.0513,0.073761,0.0961914,0.114288,0.125671,0.129578,0.126617,0.120697,0.114899,0.110229,0.107574,0.106171,0.106964,0.111786,0.121765,0.135956,0.151398,0.161072,0.162323,0.154999,0.14032,0.122711,0.102905,0.0823364,0.0592651,0.0354004,0.0151367,0.00109863,-0.00732422,-0.0121765,-0.0168457,-0.0238647,-0.0332031,-0.0450745,-0.0580139,-0.0751648,-0.094635,-0.114441,-0.131287,-0.142517,-0.14798,-0.147644,-0.144073,-0.137207,-0.127869,-0.117554,-0.106812,-0.0991516,-0.0957336,-0.0955811,-0.0986938,-0.102295,-0.104614,-0.105103,-0.103058,-0.0983887,-0.0915222,-0.0827942,-0.0743713,-0.0671997,-0.0631409,-0.0643921,-0.0722046,-0.085144,-0.101501,-0.11911,-0.136261,-0.150635,-0.16153,-0.165588,-0.159515,-0.139252,-0.106506,-0.0673523,-0.0269775,0.00701904,0.0346069,0.057373,0.0751648,0.0856018,0.086853,0.0776367,0.0617371,0.0467834,0.0397644,0.0436707,0.0569153,0.079834,0.111633,0.148285,0.188507,0.226562,0.256012,0.272858,0.273804,0.260712,0.235596,0.201294,0.164032,0.127869,0.0977478,0.0784302,0.0714111,0.07547,0.0877686,0.101196,0.111786,0.115845,0.11087,0.0952759,0.0682983,0.031189,-0.0109253,-0.0548706,-0.0938721,-0.12442,-0.14563,-0.153259,-0.149994,-0.137512,-0.120514,-0.101807,-0.0874634,-0.0788879,-0.0787354,-0.085907,-0.0999451,-0.118042,-0.136902,-0.154205,-0.166534,-0.171967,-0.16684,-0.151245,-0.128174,-0.100098,-0.0701599,-0.0427246,-0.0196533,-0.00234985,0.00778198,0.0115356,0.00872803,0.00326538,-0.0045166,-0.0121765,-0.0179443,-0.0184021,-0.014801,-0.00515747,0.00762939,0.0224609,0.038208,0.0519104,0.0625305,0.0684509,0.0697021,0.0668945,0.0608215,0.0541077,0.0470886,0.0411682,0.0388184,0.0385132,0.043335,0.0500488,0.0595703,0.0709534,0.0826416,0.0918274,0.0986938,0.101349,0.101959,0.100403,0.0997925,0.101044,0.102753,0.105255,0.108215,0.110382,0.113342,0.116302,0.119293,0.1185,0.11319,0.101501,0.0862122,0.0686035,0.0517578,0.0358582,0.0210571,0.00637817,-0.00637817,-0.0176086,-0.0263367,-0.0347595,-0.0428772,-0.0539551,-0.0671997,-0.0830994,-0.0999451,-0.116302,-0.131592,-0.142059,-0.14859,-0.148285,-0.143433,-0.133789,-0.121918,-0.110535,-0.0991516,-0.0907593,-0.0852966,-0.0834045,-0.0854492,-0.0891724,-0.092926,-0.0940247,-0.0913696,-0.0854492,-0.0773315,-0.0679932,-0.0576782,-0.0500488,-0.044281,-0.0438232,-0.0506592,-0.0645447,-0.0834045,-0.103058,-0.119293,-0.130341,-0.137512,-0.139862,-0.133453,-0.116486,-0.0849915,-0.0447388,-0.00341797,0.0307312,0.0533142,0.0682983,0.0793762,0.085907,0.0888672,0.0821838,0.0670471,0.0506592,0.0434875,0.0494385,0.0675049,0.0957336,0.125977,0.158112,0.190369,0.222656,0.247925,0.260559,0.255096,0.233734,0.200348,0.162476,0.125671,0.0930786,0.0684509,0.0511475,0.04599,0.0519104,0.0661011,0.0834045,0.0947876,0.0975952,0.0871582,0.0662537,0.0350952,-0.00515747,-0.0497437,-0.0958862,-0.133942,-0.162476,-0.177124,-0.178986,-0.170258,-0.154816,-0.135803,-0.114441,-0.0979309,-0.0856018,-0.0830994,-0.0881042,-0.101807,-0.118347,-0.134399,-0.147186,-0.153748,-0.154358,-0.146576,-0.131134,-0.107727,-0.079834,-0.0500488,-0.0221558,0.000946045,0.0202637,0.0335083,0.041626,0.0441284,0.0424194,0.037262,0.0313416,0.0255737,0.0227661,0.0237122,0.0277405,0.0344543,0.0444336,0.0556641,0.0681458,0.079834,0.0890198,0.0940247,0.0941772,0.0891724,0.0821838,0.0725098,0.0623779,0.0522461,0.0448914,0.0389709,0.0383606,0.0422668,0.0516052,0.0640869,0.0773315,0.0888672,0.0960388,0.098999,0.0982361,0.0951233,0.0907593,0.084198,0.077179,0.0697021,0.0656433,0.0646973,0.0670471,0.0700073,0.0704651,0.0679932,0.0609741,0.0514526,0.0391235,0.0246277,0.00717163,-0.0116882,-0.0288391,-0.0428772,-0.0517578,-0.0575256,-0.0631409,-0.0701599,-0.0785828,-0.0887146,-0.0986938,-0.108673,-0.120056,-0.130493,-0.138611,-0.141266,-0.137848,-0.12973,-0.117249,-0.104614,-0.090271,-0.0793762,-0.0701599,-0.0648499,-0.0640869,-0.0671997,-0.0712585,-0.0745239,-0.0756226,-0.0742188,-0.0704651,-0.0657959,-0.0598755,-0.0538025,-0.048645,-0.0470886,-0.0519104,-0.0628357,-0.0778198,-0.0935669,-0.105103,-0.113342,-0.11615,-0.111328,-0.0943298,-0.0653381,-0.0261841,0.014801,0.0487976,0.0739136,0.0909119,0.101044,0.105713,0.104767,0.09729,0.082489,0.0689087,0.0623779,0.0673523,0.0852966,0.111633,0.141724,0.172913,0.203308,0.22702,0.242004,0.242615,0.227478,0.200348,0.16684,0.129883,0.0960388,0.0654907,0.0434875,0.0280762,0.0243225,0.0302429,0.0422668,0.0558167,0.0623779,0.0589294,0.0434875,0.0177612,-0.0154419,-0.0533142,-0.092926,-0.130341,-0.160278,-0.18103,-0.191162,-0.190704,-0.182587,-0.166687,-0.146088,-0.124878,-0.105713,-0.0944824,-0.0899658,-0.092926,-0.100555,-0.110718,-0.12085,-0.129578,-0.134247,-0.134552,-0.127075,-0.112274,-0.0895081,-0.0628357,-0.0330505,-0.00326538,0.0238647,0.046936,0.0639343,0.0745239,0.0784302,0.0782776,0.0739136,0.0679932,0.0603333,0.0522461,0.047699,0.0461426,0.050354,0.0589294,0.0709534,0.0848083,0.0993347,0.110718,0.119904,0.122711,0.119751,0.112427,0.100098,0.0857544,0.0690613,0.0548706,0.043335,0.0389709,0.0413208,0.0500488,0.0617371,0.0745239,0.0845032,0.0905762,0.0937195,0.092926,0.0901184,0.0829468,0.0728149,0.0614319,0.0494385,0.0407104,0.0349121,0.0314941,0.0279236,0.0233765,0.0184021,0.0107727,0.00186157,-0.0093689,-0.0212097,-0.0347595,-0.0473938,-0.0597229,-0.0704651,-0.0805969,-0.0905762,-0.101044,-0.111786,-0.122101,-0.131287,-0.139069,-0.145782,-0.15094,-0.152191,-0.149231,-0.140472,-0.128021,-0.112885,-0.0971375,-0.0821838,-0.0701599,-0.0626831,-0.0589294,-0.0581665,-0.0595703,-0.0618896,-0.0643921,-0.0665894,-0.0675049,-0.0659485,-0.0614319,-0.0541077,-0.0466309,-0.0411682,-0.0420837,-0.0480347,-0.0580139,-0.0684509,-0.0760803,-0.0810852,-0.0845032,-0.0812378,-0.0686035,-0.0434875,-0.00622559,0.0349121,0.0708008,0.0965271,0.113678,0.122559,0.127686,0.129272,0.124115,0.11087,0.0949707,0.0856018,0.0879517,0.10556,0.134705,0.167297,0.19928,0.227325,0.248688,0.259613,0.257751,0.238861,0.205658,0.164032,0.119751,0.0768738,0.040863,0.0138855,-0.00201416,-0.00747681,0.000793457,0.0151367,0.0314941,0.0396118,0.0361633,0.019165,-0.00982666,-0.0455322,-0.0863953,-0.128326,-0.169495,-0.204559,-0.228882,-0.240753,-0.238251,-0.225769,-0.205048,-0.179779,-0.15451,-0.129578,-0.111176,-0.0991516,-0.096344,-0.101501,-0.110718,-0.122711,-0.131287,-0.137054,-0.138,-0.131287,-0.116943,-0.0930786,-0.0626831,-0.0257263,0.0115356,0.0445862,0.0728149,0.0926208,0.106171,0.112885,0.113525,0.10791,0.0980835,0.0860596,0.0750122,0.0679932,0.0668945,0.0715637,0.0805969,0.0941772,0.109314,0.125366,0.139404,0.149384,0.153595,0.150146,0.140656,0.126129,0.108368,0.0904236,0.0736084,0.0623779,0.0561218,0.0572205,0.0631409,0.071106,0.079834,0.0860596,0.0890198,0.0898132,0.0881042,0.0846558,0.0782776,0.0684509,0.0580139,0.04599,0.0377197,0.0303955,0.0226135,0.0121765,-0.0015564,-0.0158997,-0.0291443,-0.0397644,-0.0495911,-0.0594177,-0.0717163,-0.0823364,-0.0907593,-0.0960388,-0.100403,-0.107269,-0.118805,-0.132843,-0.146423,-0.157013,-0.165436,-0.170898,-0.175873,-0.176514,-0.171204,-0.159027,-0.141724,-0.123505,-0.106323,-0.0916748,-0.0787354,-0.0687561,-0.0609741,-0.0575256,-0.0586243,-0.0637817,-0.0698547,-0.0745239,-0.0748291,-0.0729675,-0.0689087,-0.0654907,-0.0631409,-0.0617371,-0.0606384,-0.0584717,-0.0564575,-0.0558167,-0.0561218,-0.0544128,-0.0458374,-0.0263367,0.00326538,0.0385132,0.0717163,0.0982361,0.116638,0.130493,0.141571,0.150452,0.153748,0.149048,0.137665,0.126129,0.121002,0.126129,0.142517,0.165894,0.191772,0.218597,0.24231,0.261322,0.270844,0.267395,0.249329,0.217651,0.176666,0.130341,0.083252,0.0391235,0.0015564,-0.0258789,-0.0393066,-0.0368042,-0.025116,-0.00952148,0.00125122,0.00390625,-0.00219727,-0.0168457,-0.0405273,-0.0725098,-0.113831,-0.160126,-0.205963,-0.24588,-0.274109,-0.290009,-0.291718,-0.279419,-0.253357,-0.217499,-0.176178,-0.135193,-0.101044,-0.0776367,-0.0664368,-0.0665894,-0.0757751,-0.0926208,-0.113525,-0.132843,-0.146576,-0.147034,-0.133942,-0.105865,-0.0670471,-0.0213623,0.0252686,0.0698547,0.109772,0.140808,0.161377,0.169006,0.163239,0.146881,0.12442,0.10025,0.0791931,0.0646973,0.0587769,0.0623779,0.0748291,0.0952759,0.119293,0.143768,0.164978,0.179626,0.186157,0.184448,0.173218,0.154358,0.131897,0.10791,0.087616,0.0709534,0.0606384,0.0544128,0.0528564,0.0552063,0.0606384,0.0695496,0.079834,0.090271,0.0980835,0.101654,0.0982361,0.0884094,0.073761,0.0559692,0.0341492,0.0112305,-0.0112305,-0.0328979,-0.0514526,-0.0667419,-0.0787354,-0.0874634,-0.0937195,-0.0980835,-0.101501,-0.104462,-0.109131,-0.115082,-0.12381,-0.132233,-0.140961,-0.148743,-0.156403,-0.164795,-0.173706,-0.181183,-0.184601,-0.182892,-0.176178,-0.166534,-0.152954,-0.137512,-0.11911,-0.100891,-0.0827942,-0.0668945,-0.0558167,-0.0502014,-0.0497437,-0.0534668,-0.0600281,-0.0676575,-0.0778198,-0.0898132,-0.102142,-0.112274,-0.116638,-0.113342,-0.102142,-0.0867004,-0.0675049,-0.0439758,-0.0132446,0.0257263,0.069397,0.110382,0.140656,0.156403,0.158875,0.156219,0.152008,0.149841,0.142822,0.131897,0.120514,0.11615,0.126923,0.15155,0.188354,0.224518,0.257568,0.284882,0.304504,0.314819,0.310272,0.286438,0.244476,0.191467,0.133148,0.0782776,0.0288391,-0.0113831,-0.039917,-0.0544128,-0.0517578,-0.0328979,-0.00717163,0.0155945,0.0271301,0.0255737,0.0113831,-0.0141907,-0.0509949,-0.0994873,-0.157623,-0.21814,-0.271759,-0.310425,-0.32962,-0.330383,-0.31308,-0.282227,-0.238098,-0.189117,-0.137848,-0.094635,-0.065033,-0.0523987,-0.0561218,-0.0717163,-0.0954285,-0.121765,-0.148132,-0.166992,-0.174774,-0.165436,-0.138611,-0.0974426,-0.0462952,0.00686646,0.0597229,0.106323,0.14563,0.174164,0.188049,0.187103,0.171356,0.14563,0.11554,0.087616,0.0656433,0.0538025,0.0516052,0.0603333,0.0787354,0.104309,0.133636,0.162476,0.186005,0.201752,0.207672,0.203491,0.188812,0.166534,0.14032,0.112732,0.0874634,0.0651855,0.048645,0.037262,0.0336914,0.0363159,0.0475464,0.0636292,0.0829468,0.101044,0.113831,0.119598,0.117096,0.106964,0.0884094,0.0632935,0.0317993,-0.00265503,-0.0358582,-0.0651855,-0.0896606,-0.105713,-0.115997,-0.119293,-0.116791,-0.111176,-0.104004,-0.0977478,-0.094635,-0.0960388,-0.102142,-0.112732,-0.127228,-0.145477,-0.16745,-0.188354,-0.206299,-0.216431,-0.219238,-0.21283,-0.199738,-0.178986,-0.154358,-0.126617,-0.100098,-0.0762329,-0.0595703,-0.0509949,-0.0505066,-0.0566101,-0.069397,-0.0857544,-0.10495,-0.125061,-0.144379,-0.157623,-0.16153,-0.153595,-0.136108,-0.112732,-0.0840454,-0.048645,-0.0045166,0.0483398,0.103363,0.149231,0.176666,0.184448,0.178833,0.170258,0.163574,0.156403,0.143921,0.125214,0.109924,0.108063,0.128174,0.165588,0.212677,0.255096,0.290009,0.319489,0.342255,0.352539,0.342712,0.309357,0.255402,0.188965,0.122711,0.0597229,0.00637817,-0.0357056,-0.0625305,-0.0712585,-0.0592651,-0.0305481,0.0015564,0.0274353,0.0396118,0.0360107,0.0188599,-0.0093689,-0.0516052,-0.108215,-0.175415,-0.243378,-0.300629,-0.336945,-0.35144,-0.345215,-0.322144,-0.282837,-0.233093,-0.176361,-0.12146,-0.0773315,-0.0495911,-0.0430298,-0.053009,-0.0746765,-0.1026,-0.133453,-0.162628,-0.18335,-0.190063,-0.177124,-0.144531,-0.0968323,-0.0424194,0.0133972,0.0661011,0.114136,0.153748,0.181641,0.194122,0.188049,0.167145,0.137054,0.103851,0.0760803,0.0567627,0.0478821,0.0495911,0.0623779,0.085144,0.11554,0.149536,0.181335,0.206116,0.2211,0.226074,0.218903,0.202698,0.177582,0.148743,0.118805,0.0899658,0.065033,0.0445862,0.0324402,0.0300903,0.0369568,0.0517578,0.0708008,0.0907593,0.10791,0.120361,0.125671,0.122101,0.106812,0.082489,0.0492859,0.0129395,-0.0237122,-0.0578613,-0.0874634,-0.11087,-0.128174,-0.135651,-0.135803,-0.128326,-0.118347,-0.108368,-0.0997925,-0.0951233,-0.0941772,-0.0996399,-0.110718,-0.128937,-0.151245,-0.174316,-0.195221,-0.210175,-0.21814,-0.217834,-0.208618,-0.190521,-0.165131,-0.136597,-0.108063,-0.083252,-0.0648499,-0.0541077,-0.0508423,-0.0552063,-0.0656433,-0.0834045,-0.104309,-0.128326,-0.15155,-0.168701,-0.177765,-0.174316,-0.159821,-0.13504,-0.101196,-0.0592651,-0.00796509,0.0497437,0.106964,0.155304,0.188049,0.203308,0.200989,0.192719,0.179321,0.163391,0.143433,0.123962,0.11087,0.111633,0.130676,0.166534,0.212219,0.260559,0.304352,0.34021,0.365326,0.373444,0.359711,0.320099,0.260712,0.18634,0.109772,0.0383606,-0.0202637,-0.0617371,-0.085144,-0.0881042,-0.0708008,-0.0386658,-0.00109863,0.0303955,0.0484924,0.0473938,0.0282288,-0.00857544,-0.0611267,-0.127228,-0.19989,-0.2724,-0.330872,-0.367981,-0.378876,-0.365326,-0.330872,-0.279877,-0.219543,-0.156403,-0.098999,-0.0558167,-0.0313416,-0.0302429,-0.046936,-0.0760803,-0.111176,-0.145935,-0.174957,-0.191772,-0.193512,-0.173218,-0.135345,-0.0834045,-0.0226135,0.0368042,0.0915222,0.138458,0.173706,0.194916,0.199738,0.187408,0.161682,0.127686,0.0937195,0.0657959,0.0491028,0.0438232,0.0502014,0.0676575,0.0933838,0.125977,0.159821,0.189911,0.213623,0.225616,0.226868,0.217651,0.198334,0.173553,0.143768,0.113342,0.0845032,0.059082,0.0407104,0.0314941,0.0327454,0.0431824,0.0594177,0.078125,0.0957336,0.109619,0.118958,0.120209,0.113037,0.0960388,0.0684509,0.0352478,-0.00125122,-0.0368042,-0.0697021,-0.0979309,-0.121002,-0.136261,-0.143127,-0.141571,-0.132843,-0.121002,-0.109314,-0.0999451,-0.0938721,-0.0933838,-0.0997925,-0.113983,-0.134247,-0.159668,-0.18335,-0.203491,-0.215332,-0.218445,-0.213287,-0.198944,-0.177124,-0.150146,-0.120056,-0.0924683,-0.0703125,-0.0567627,-0.0513,-0.0536499,-0.0629883,-0.0776367,-0.0974426,-0.122253,-0.148895,-0.171814,-0.184601,-0.184296,-0.169495,-0.145782,-0.115387,-0.0779724,-0.0310364,0.0299377,0.0958862,0.157166,0.198792,0.217651,0.214874,0.203644,0.191772,0.179321,0.160767,0.136444,0.11319,0.103058,0.115234,0.152649,0.204102,0.256165,0.303253,0.341766,0.369995,0.384033,0.37561,0.340698,0.278015,0.199585,0.114899,0.0380554,-0.0263367,-0.0731201,-0.102753,-0.11087,-0.0958862,-0.0615845,-0.0177612,0.020752,0.0447388,0.0466309,0.02948,-0.00482178,-0.0538025,-0.117889,-0.192871,-0.269287,-0.333984,-0.375305,-0.386047,-0.370636,-0.33429,-0.282684,-0.22171,-0.158112,-0.096344,-0.0492859,-0.0205688,-0.0169983,-0.0344543,-0.065033,-0.100891,-0.136749,-0.165894,-0.184601,-0.18866,-0.17215,-0.135803,-0.0829468,-0.0215149,0.0397644,0.0949707,0.141418,0.175568,0.197083,0.203308,0.191925,0.165283,0.128784,0.0909119,0.0598755,0.0424194,0.0369568,0.0436707,0.0597229,0.0846558,0.116791,0.15155,0.185394,0.211731,0.226715,0.229034,0.21875,0.199432,0.17337,0.143921,0.111633,0.0802917,0.0517578,0.0322876,0.0237122,0.0275879,0.0417786,0.0611267,0.0818481,0.101196,0.116638,0.126923,0.128174,0.117889,0.0957336,0.0637817,0.0260315,-0.0121765,-0.0481873,-0.08078,-0.109314,-0.132233,-0.145477,-0.149536,-0.143768,-0.130981,-0.117706,-0.105103,-0.0960388,-0.091217,-0.092926,-0.100555,-0.117554,-0.140808,-0.167145,-0.190216,-0.207367,-0.214233,-0.212982,-0.202545,-0.185852,-0.161224,-0.133636,-0.104004,-0.0793762,-0.0626831,-0.0542603,-0.0536499,-0.0592651,-0.0692139,-0.0867004,-0.109619,-0.135803,-0.161377,-0.179138,-0.186951,-0.181946,-0.167786,-0.14328,-0.111328,-0.0657959,-0.00637817,0.0611267,0.127533,0.179626,0.211578,0.222504,0.220306,0.212982,0.199738,0.179321,0.150787,0.120697,0.101501,0.104309,0.131592,0.177917,0.232941,0.284698,0.331482,0.369232,0.395416,0.399323,0.374847,0.31839,0.238556,0.149231,0.0632935,-0.0118408,-0.069397,-0.107269,-0.122864,-0.114288,-0.0837402,-0.040863,0.00360107,0.0349121,0.0475464,0.0377197,0.00796509,-0.0389709,-0.102448,-0.177277,-0.256653,-0.327576,-0.377655,-0.397278,-0.388855,-0.355194,-0.305145,-0.243561,-0.177124,-0.111786,-0.0570679,-0.0198059,-0.00656128,-0.0173035,-0.0439758,-0.0809326,-0.117554,-0.148743,-0.17041,-0.178528,-0.169189,-0.140167,-0.0937195,-0.0344543,0.0280762,0.0873108,0.137848,0.178223,0.204254,0.215179,0.208923,0.185699,0.150299,0.109924,0.0726624,0.0461426,0.0325928,0.0324402,0.0431824,0.063446,0.0921631,0.127869,0.164795,0.197693,0.220154,0.229034,0.225006,0.209076,0.185242,0.154358,0.118652,0.0816956,0.0472412,0.0213623,0.00842285,0.00918579,0.0221558,0.0420837,0.0645447,0.0871582,0.10791,0.125214,0.133942,0.129883,0.110077,0.0770264,0.0369568,-0.00405884,-0.0428772,-0.0778198,-0.110077,-0.136597,-0.154358,-0.15921,-0.15155,-0.134552,-0.11615,-0.100098,-0.0898132,-0.0848083,-0.0852966,-0.0933838,-0.109314,-0.133453,-0.16217,-0.189117,-0.20752,-0.21579,-0.213776,-0.203156,-0.184937,-0.160278,-0.131744,-0.101654,-0.07547,-0.0575256,-0.0497437,-0.0498962,-0.0564575,-0.0682983,-0.0835876,-0.103851,-0.127686,-0.152802,-0.172302,-0.180542,-0.175568,-0.159515,-0.137665,-0.110382,-0.0731201,-0.0210571,0.0464783,0.117554,0.177765,0.215637,0.227478,0.224365,0.214874,0.205963,0.190063,0.163239,0.128021,0.0997925,0.0915222,0.113525,0.160767,0.219238,0.274567,0.322144,0.361725,0.39151,0.40274,0.38559,0.335388,0.254944,0.160583,0.0671997,-0.014801,-0.0757751,-0.116638,-0.135651,-0.129883,-0.1026,-0.0558167,-0.00482178,0.0357056,0.0533142,0.04599,0.0155945,-0.0313416,-0.0924683,-0.167297,-0.248383,-0.326355,-0.382477,-0.408813,-0.401337,-0.366089,-0.314636,-0.252441,-0.186951,-0.121307,-0.0636292,-0.0216675,-0.00219727,-0.00747681,-0.0344543,-0.0720215,-0.108978,-0.140808,-0.16153,-0.170563,-0.163574,-0.140015,-0.0975952,-0.0419312,0.020752,0.0812378,0.135498,0.177582,0.207214,0.222961,0.221863,0.204559,0.173218,0.13269,0.091217,0.0586243,0.0388184,0.0335083,0.0389709,0.0552063,0.0799866,0.113037,0.15155,0.188049,0.21814,0.234497,0.236694,0.224213,0.199432,0.165588,0.125977,0.0834045,0.043335,0.0116882,-0.00622559,-0.00701904,0.00686646,0.0316467,0.0606384,0.0899658,0.116486,0.137512,0.14798,0.141724,0.118652,0.0804443,0.0341492,-0.013092,-0.0576782,-0.0968323,-0.129425,-0.154358,-0.168091,-0.168091,-0.155457,-0.135803,-0.113831,-0.0969849,-0.0860596,-0.0829468,-0.0871582,-0.0996399,-0.120361,-0.147491,-0.176971,-0.201752,-0.218597,-0.22345,-0.219238,-0.204712,-0.184601,-0.158264,-0.130493,-0.102448,-0.0801392,-0.0639343,-0.0572205,-0.0564575,-0.0628357,-0.0743713,-0.0927734,-0.116791,-0.142059,-0.164978,-0.17868,-0.181335,-0.174011,-0.159668,-0.139404,-0.104614,-0.0506592,0.0213623,0.10025,0.169952,0.218445,0.244171,0.249329,0.247437,0.240753,0.22345,0.192108,0.14859,0.107269,0.0877686,0.0974426,0.137848,0.195221,0.253845,0.307617,0.354889,0.393402,0.416626,0.411469,0.370636,0.29422,0.195526,0.0940247,0.0015564,-0.0728149,-0.12381,-0.149994,-0.151093,-0.125519,-0.0805969,-0.0247803,0.0230713,0.0528564,0.0559692,0.0350952,-0.00592041,-0.0636292,-0.136749,-0.219849,-0.301849,-0.366882,-0.402893,-0.405701,-0.378571,-0.332581,-0.274902,-0.211731,-0.146576,-0.085144,-0.0366516,-0.00732422,-0.00265503,-0.0219727,-0.0558167,-0.0940247,-0.12738,-0.151855,-0.165588,-0.16684,-0.152649,-0.121307,-0.0736084,-0.0155945,0.0456848,0.104614,0.154358,0.193176,0.217041,0.226868,0.21814,0.193817,0.157806,0.115082,0.0767212,0.0484924,0.0336914,0.0328979,0.0422668,0.0626831,0.0937195,0.132233,0.174622,0.211426,0.237457,0.247437,0.241211,0.219849,0.186646,0.146088,0.101501,0.0566101,0.0193481,-0.00656128,-0.0141907,-0.00592041,0.0157471,0.0450745,0.0762329,0.105255,0.129272,0.144226,0.144073,0.126617,0.0915222,0.0470886,-0.00250244,-0.0487976,-0.0905762,-0.125824,-0.152954,-0.1698,-0.173859,-0.162933,-0.141571,-0.116486,-0.094635,-0.0804443,-0.07547,-0.0773315,-0.0865479,-0.103699,-0.127228,-0.156403,-0.184753,-0.205505,-0.215637,-0.213776,-0.201447,-0.182587,-0.158569,-0.13208,-0.10495,-0.0809326,-0.0620422,-0.0516052,-0.0492859,-0.0555115,-0.0676575,-0.0857544,-0.108978,-0.137207,-0.167603,-0.190369,-0.200348,-0.193817,-0.17868,-0.15686,-0.128479,-0.0846558,-0.020752,0.0608215,0.143127,0.209869,0.246826,0.253845,0.246521,0.235443,0.221863,0.199097,0.160278,0.115997,0.0826416,0.0779724,0.110535,0.170258,0.240112,0.302643,0.354401,0.393707,0.420197,0.422546,0.393219,0.326965,0.230774,0.122253,0.019165,-0.0637817,-0.119293,-0.148895,-0.154663,-0.136902,-0.0979309,-0.0439758,0.0118408,0.0509949,0.0622253,0.0439758,0.00250244,-0.0542603,-0.121765,-0.198029,-0.276917,-0.347229,-0.392303,-0.404449,-0.382782,-0.335236,-0.275513,-0.213287,-0.152008,-0.0947876,-0.044281,-0.00872803,0.00686646,-0.00201416,-0.0319519,-0.0709534,-0.107727,-0.134552,-0.150299,-0.153595,-0.145172,-0.123962,-0.0862122,-0.0350952,0.0238647,0.0845032,0.138,0.179626,0.207062,0.219849,0.217651,0.200348,0.169647,0.127869,0.0845032,0.0478821,0.0252686,0.0184021,0.0243225,0.042572,0.0692139,0.105865,0.146729,0.188812,0.222198,0.242615,0.243378,0.226074,0.193817,0.152008,0.106812,0.0617371,0.0216675,-0.00918579,-0.0238647,-0.0212097,-0.00186157,0.0297852,0.0668945,0.101807,0.130676,0.147827,0.149689,0.135498,0.104767,0.0643921,0.0168457,-0.0319519,-0.0778198,-0.117706,-0.14859,-0.16684,-0.171967,-0.163727,-0.145477,-0.124115,-0.101196,-0.0849915,-0.0742188,-0.0718689,-0.0774841,-0.090271,-0.112732,-0.138306,-0.166199,-0.189453,-0.202545,-0.206299,-0.198486,-0.183838,-0.162628,-0.139252,-0.113983,-0.0898132,-0.0687561,-0.0533142,-0.0447388,-0.0436707,-0.0498962,-0.0639343,-0.0871582,-0.120697,-0.157166,-0.187897,-0.204102,-0.202698,-0.191315,-0.175415,-0.152802,-0.113678,-0.0498962,0.0375671,0.131439,0.209259,0.252747,0.261627,0.252899,0.242462,0.229523,0.205811,0.164032,0.109772,0.0659485,0.0545654,0.0835876,0.145172,0.219696,0.288147,0.346466,0.391815,0.423004,0.430511,0.40509,0.341156,0.244965,0.131897,0.0226135,-0.0659485,-0.126465,-0.158569,-0.166382,-0.151093,-0.111786,-0.054718,0.00622559,0.0531616,0.0700073,0.0553589,0.0157471,-0.0400696,-0.105408,-0.180725,-0.258972,-0.332733,-0.384644,-0.403046,-0.385132,-0.338196,-0.277222,-0.214081,-0.154816,-0.098999,-0.0472412,-0.00497437,0.0182495,0.0171509,-0.00827026,-0.047699,-0.0882568,-0.119293,-0.139252,-0.145782,-0.143433,-0.127869,-0.0982361,-0.0522461,0.00732422,0.0712585,0.130493,0.176971,0.208313,0.222504,0.22345,0.209412,0.179779,0.138306,0.0896606,0.0467834,0.0169983,0.00561523,0.00997925,0.0272827,0.054718,0.0910645,0.133942,0.178833,0.218292,0.243561,0.248688,0.231537,0.197235,0.153107,0.106018,0.0606384,0.0190125,-0.0129395,-0.0317993,-0.0316467,-0.0143433,0.0173035,0.0552063,0.0916748,0.121765,0.141571,0.147339,0.136261,0.109314,0.0703125,0.0229187,-0.0263367,-0.0732727,-0.113678,-0.145325,-0.164795,-0.172455,-0.166992,-0.150787,-0.128021,-0.105713,-0.0871582,-0.0757751,-0.0717163,-0.0759277,-0.0860596,-0.10321,-0.125519,-0.149689,-0.172607,-0.187897,-0.194427,-0.189911,-0.177124,-0.158569,-0.137665,-0.114594,-0.0930786,-0.0718689,-0.0539551,-0.0413208,-0.0368042,-0.0414734,-0.0553589,-0.0805969,-0.114746,-0.152649,-0.183838,-0.202698,-0.206451,-0.201294,-0.189117,-0.167297,-0.125366,-0.0556641,0.0349121,0.12973,0.208313,0.254303,0.267548,0.261017,0.25058,0.233582,0.203308,0.156067,0.100098,0.0570679,0.046936,0.0779724,0.140961,0.21579,0.287048,0.347534,0.39621,0.428162,0.435638,0.406006,0.338501,0.238403,0.124115,0.0143433,-0.0748291,-0.135498,-0.167786,-0.173553,-0.155304,-0.113983,-0.0553589,0.00515747,0.0498962,0.0678406,0.0533142,0.014801,-0.0419312,-0.108063,-0.182434,-0.260071,-0.330719,-0.379517,-0.396667,-0.379364,-0.333527,-0.271912,-0.207855,-0.147186,-0.0907593,-0.0391235,0.00326538,0.0286865,0.0293274,0.00622559,-0.0336914,-0.0746765,-0.108978,-0.130188,-0.138153,-0.136108,-0.122864,-0.0944824,-0.0502014,0.00778198,0.0736084,0.133453,0.182587,0.213287,0.226868,0.224518,0.208008,0.175873,0.13269,0.082489,0.0369568,0.00561523,-0.00717163,-0.00170898,0.0177612,0.0484924,0.0874634,0.132233,0.17807,0.217499,0.243073,0.247284,0.228729,0.192108,0.14563,0.0955811,0.0494385,0.00842285,-0.0223083,-0.0386658,-0.0375671,-0.0187073,0.0146484,0.0538025,0.0918274,0.12146,0.138306,0.139709,0.125671,0.0965271,0.0575256,0.0113831,-0.0369568,-0.0823364,-0.12085,-0.147827,-0.163239,-0.165436,-0.158569,-0.142517,-0.123505,-0.1026,-0.0834045,-0.0706177,-0.0651855,-0.0690613,-0.0804443,-0.0982361,-0.11911,-0.140808,-0.160126,-0.174164,-0.180237,-0.177124,-0.164978,-0.145172,-0.122253,-0.0996399,-0.078125,-0.0592651,-0.0434875,-0.0302429,-0.0243225,-0.0286865,-0.04599,-0.0768738,-0.114746,-0.15451,-0.185242,-0.203156,-0.208923,-0.207672,-0.200684,-0.178986,-0.133453,-0.0580139,0.0360107,0.128326,0.201599,0.242004,0.254944,0.253998,0.246368,0.22937,0.194427,0.139252,0.0804443,0.0403748,0.0374146,0.0743713,0.138458,0.210175,0.277863,0.336487,0.386688,0.422089,0.431732,0.402588,0.332275,0.229675,0.116791,0.0110779,-0.0739136,-0.13208,-0.165436,-0.174622,-0.158569,-0.118958,-0.0598755,0.000793457,0.0455322,0.063446,0.0519104,0.0165405,-0.0354004,-0.0993347,-0.171356,-0.248993,-0.319336,-0.367828,-0.38559,-0.370148,-0.327271,-0.270355,-0.207672,-0.146576,-0.0870056,-0.0313416,0.0140381,0.0424194,0.0452271,0.0232239,-0.0140381,-0.0552063,-0.0893555,-0.113037,-0.126282,-0.128479,-0.11911,-0.0930786,-0.0498962,0.00952148,0.0743713,0.135498,0.184296,0.215942,0.230621,0.229034,0.211884,0.179626,0.134552,0.082489,0.0344543,-0.000152588,-0.0152893,-0.013092,0.0045166,0.0335083,0.0723572,0.117249,0.163391,0.204712,0.230438,0.236847,0.220001,0.185852,0.139709,0.0904236,0.043335,0.00109863,-0.0310364,-0.0483398,-0.0491028,-0.0310364,0.000457764,0.0388184,0.077179,0.108521,0.129578,0.136902,0.128326,0.103363,0.0653381,0.0184021,-0.0321045,-0.0796814,-0.119293,-0.148285,-0.165283,-0.170258,-0.164185,-0.147644,-0.124878,-0.0991516,-0.0762329,-0.0614319,-0.0556641,-0.0594177,-0.0703125,-0.0871582,-0.107422,-0.131134,-0.153259,-0.171051,-0.179138,-0.176025,-0.162476,-0.141724,-0.117096,-0.0943298,-0.0720215,-0.0517578,-0.0316467,-0.0171509,-0.0109253,-0.0180969,-0.0411682,-0.0767212,-0.116791,-0.154205,-0.185547,-0.207367,-0.219391,-0.22406,-0.218445,-0.188507,-0.128479,-0.0424194,0.0541077,0.144531,0.21347,0.253845,0.270844,0.271301,0.258667,0.227966,0.177582,0.114594,0.0564575,0.0216675,0.0279236,0.0715637,0.139252,0.213928,0.284882,0.347534,0.398834,0.431427,0.434082,0.396362,0.315735,0.206299,0.0898132,-0.0154419,-0.100891,-0.158875,-0.187561,-0.190521,-0.167603,-0.121155,-0.0592651,0.0015564,0.0450745,0.0645447,0.0562744,0.0212097,-0.0325928,-0.101959,-0.180389,-0.260712,-0.329773,-0.374359,-0.388397,-0.370148,-0.326813,-0.268341,-0.201599,-0.13269,-0.0648499,-0.00390625,0.0424194,0.0668945,0.0645447,0.0379028,-0.00360107,-0.0470886,-0.0846558,-0.113342,-0.129425,-0.13269,-0.120361,-0.0898132,-0.0393066,0.0229187,0.0909119,0.151855,0.200836,0.231842,0.244476,0.238556,0.214691,0.175873,0.126465,0.0723572,0.0254211,-0.00857544,-0.0226135,-0.0190125,0.00109863,0.0339966,0.077179,0.125977,0.174164,0.213135,0.236206,0.239014,0.220001,0.18399,0.136749,0.0840454,0.0325928,-0.0124817,-0.0447388,-0.0611267,-0.0592651,-0.0388184,-0.00671387,0.0325928,0.071106,0.103699,0.125061,0.13208,0.122253,0.094635,0.0538025,0.00390625,-0.0473938,-0.0961914,-0.135193,-0.164978,-0.182281,-0.186951,-0.177917,-0.158569,-0.130341,-0.101196,-0.0750122,-0.0580139,-0.0495911,-0.0511475,-0.0617371,-0.0785828,-0.101501,-0.127869,-0.152496,-0.170563,-0.178986,-0.174469,-0.15921,-0.135498,-0.108673,-0.0812378,-0.0545654,-0.0300903,-0.00796509,0.00497437,0.00686646,-0.00637817,-0.0325928,-0.0714111,-0.113678,-0.155457,-0.190063,-0.215485,-0.230133,-0.231842,-0.219391,-0.183533,-0.118347,-0.0305481,0.0640869,0.153259,0.22406,0.265381,0.27771,0.272247,0.253357,0.216431,0.164795,0.1026,0.0475464,0.0168457,0.0260315,0.0748291,0.146088,0.223907,0.295929,0.356293,0.403046,0.42926,0.425812,0.384186,0.301849,0.191925,0.07547,-0.0302429,-0.114594,-0.169647,-0.194733,-0.193024,-0.170898,-0.124878,-0.0654907,-0.00546265,0.0383606,0.0572205,0.0498962,0.0149536,-0.041626,-0.111481,-0.189606,-0.268799,-0.335236,-0.378418,-0.390594,-0.373444,-0.32962,-0.267883,-0.197693,-0.125214,-0.0548706,0.00656128,0.052063,0.0748291,0.0720215,0.0448914,0.00265503,-0.0420837,-0.081543,-0.111176,-0.127228,-0.127686,-0.111481,-0.0767212,-0.0255737,0.0385132,0.105408,0.165588,0.21347,0.242462,0.251984,0.241669,0.215027,0.174316,0.125214,0.0723572,0.0265198,-0.00637817,-0.0205688,-0.0162048,0.0045166,0.0386658,0.0826416,0.131134,0.176025,0.212982,0.233582,0.235748,0.216095,0.178986,0.130981,0.0778198,0.0269775,-0.0160522,-0.0462952,-0.0608215,-0.0581665,-0.0394592,-0.00732422,0.0316467,0.0695496,0.100555,0.119598,0.122559,0.111023,0.0845032,0.0466309,-0.000610352,-0.0511475,-0.100098,-0.142365,-0.172607,-0.189301,-0.191925,-0.183197,-0.165283,-0.139404,-0.111328,-0.0826416,-0.0612793,-0.0502014,-0.0509949,-0.0622253,-0.0812378,-0.10495,-0.130188,-0.154999,-0.173706,-0.182434,-0.17868,-0.163727,-0.139069,-0.111023,-0.081543,-0.0542603,-0.0275879,-0.00531006,0.00842285,0.00982666,-0.00592041,-0.0385132,-0.0818481,-0.126617,-0.167145,-0.2005,-0.22345,-0.235748,-0.238556,-0.220001,-0.167297,-0.084198,0.0174561,0.1185,0.203156,0.261017,0.290314,0.298279,0.291107,0.264923,0.213776,0.14502,0.0746765,0.0240173,0.0127869,0.0462952,0.108673,0.182281,0.256348,0.325256,0.384979,0.428162,0.443909,0.421143,0.354248,0.250244,0.131592,0.0180969,-0.0795288,-0.153412,-0.199432,-0.216736,-0.207062,-0.17215,-0.113342,-0.0473938,0.00747681,0.0414734,0.050354,0.0336914,-0.00622559,-0.0665894,-0.142059,-0.224823,-0.303894,-0.365326,-0.395721,-0.396027,-0.365021,-0.31308,-0.246979,-0.172302,-0.0944824,-0.0204163,0.0411682,0.081543,0.0941772,0.0785828,0.0410156,-0.00747681,-0.0536499,-0.0940247,-0.123016,-0.137207,-0.133789,-0.108521,-0.0642395,-0.00170898,0.0692139,0.138611,0.196472,0.237793,0.25946,0.259766,0.240753,0.204559,0.155609,0.100555,0.046936,0.00421143,-0.0202637,-0.0252686,-0.0107727,0.0188599,0.0604858,0.110718,0.160919,0.205505,0.237305,0.249939,0.241364,0.212372,0.16745,0.114288,0.0597229,0.0090332,-0.0308838,-0.0562744,-0.0645447,-0.0545654,-0.02948,0.00747681,0.0475464,0.0848083,0.112579,0.125214,0.120514,0.0988464,0.0618896,0.0141907,-0.0379028,-0.0899658,-0.135498,-0.171661,-0.195374,-0.205811,-0.202545,-0.187256,-0.162781,-0.134247,-0.104767,-0.079834,-0.0629883,-0.0556641,-0.0578613,-0.0679932,-0.0860596,-0.108826,-0.133942,-0.158569,-0.176025,-0.181946,-0.174164,-0.155914,-0.128937,-0.0991516,-0.0681458,-0.0368042,-0.00762939,0.0135803,0.0230713,0.0158997,-0.00918579,-0.0508423,-0.09729,-0.143616,-0.185089,-0.218445,-0.23996,-0.251801,-0.242767,-0.2005,-0.123169,-0.0230713,0.0840454,0.180389,0.254608,0.298584,0.314026,0.310913,0.28595,0.237152,0.166199,0.0913696,0.02948,0.00280762,0.0209045,0.0782776,0.154205,0.232788,0.306854,0.372498,0.421936,0.447174,0.437042,0.383728,0.290161,0.171967,0.0523987,-0.0539551,-0.138,-0.195221,-0.22171,-0.2211,-0.194122,-0.144531,-0.0795288,-0.0179443,0.0265198,0.0472412,0.0417786,0.0109253,-0.0417786,-0.112427,-0.193024,-0.275055,-0.344574,-0.388702,-0.402435,-0.385132,-0.342102,-0.279572,-0.206299,-0.125824,-0.0456848,0.0252686,0.0784302,0.104767,0.102142,0.0715637,0.0247803,-0.0266724,-0.0739136,-0.111176,-0.13504,-0.14032,-0.12442,-0.0874634,-0.0291443,0.0419312,0.116302,0.181946,0.231842,0.261932,0.269897,0.255707,0.22406,0.176361,0.120514,0.0631409,0.0135803,-0.0199585,-0.0333557,-0.0254211,0.000152588,0.0394592,0.0887146,0.141113,0.189606,0.227631,0.247925,0.24823,0.226227,0.187103,0.136261,0.082489,0.0291443,-0.0149536,-0.0464783,-0.0612793,-0.0581665,-0.0371094,-0.00360107,0.0377197,0.0753174,0.105865,0.122406,0.122559,0.107269,0.0773315,0.0358582,-0.013092,-0.0645447,-0.113037,-0.15451,-0.185547,-0.203156,-0.207855,-0.200836,-0.184448,-0.160431,-0.13269,-0.104614,-0.0809326,-0.0653381,-0.0589294,-0.0632935,-0.0759277,-0.0974426,-0.123657,-0.15155,-0.174164,-0.188354,-0.189911,-0.178375,-0.157013,-0.128174,-0.0951233,-0.059082,-0.0244751,0.00360107,0.0196533,0.0177612,-0.00436401,-0.0441284,-0.0915222,-0.140472,-0.184937,-0.220947,-0.244781,-0.255859,-0.241669,-0.192108,-0.107574,0.000457764,0.11319,0.213776,0.28891,0.329315,0.3396,0.328827,0.296082,0.238403,0.164185,0.0873108,0.0271301,0.00686646,0.0321045,0.0958862,0.17511,0.2565,0.328979,0.389038,0.430176,0.445923,0.424896,0.360962,0.258667,0.138458,0.019165,-0.0827942,-0.160583,-0.209564,-0.22998,-0.22467,-0.19397,-0.141266,-0.0767212,-0.0184021,0.0212097,0.0369568,0.0263367,-0.00778198,-0.0612793,-0.130188,-0.206909,-0.284393,-0.34787,-0.386383,-0.395111,-0.37265,-0.325714,-0.262115,-0.188049,-0.109467,-0.0325928,0.0346069,0.0827942,0.106018,0.0991516,0.0671997,0.0185547,-0.0322876,-0.0787354,-0.114136,-0.132843,-0.134552,-0.114899,-0.0748291,-0.0166931,0.0541077,0.125671,0.187256,0.232941,0.256805,0.259766,0.241211,0.207062,0.160126,0.106171,0.0534668,0.00982666,-0.0176086,-0.0240173,-0.0102844,0.019165,0.0603333,0.108826,0.157806,0.201599,0.232635,0.247437,0.241364,0.215942,0.174957,0.12677,0.0767212,0.0308838,-0.00701904,-0.0325928,-0.0434875,-0.0386658,-0.0188599,0.0129395,0.0481873,0.0802917,0.102142,0.110229,0.104156,0.0849915,0.0555115,0.0174561,-0.0274353,-0.0739136,-0.121613,-0.161987,-0.192719,-0.208923,-0.211884,-0.204102,-0.189301,-0.169342,-0.146576,-0.120514,-0.0965271,-0.0767212,-0.0671997,-0.0687561,-0.0826416,-0.105103,-0.131744,-0.155914,-0.17511,-0.186951,-0.189758,-0.183044,-0.165283,-0.135345,-0.0968323,-0.0566101,-0.0246277,-0.00311279,0.00405884,-0.00686646,-0.0350952,-0.0748291,-0.121765,-0.171356,-0.214539,-0.243378,-0.254608,-0.237305,-0.185852,-0.102448,0.00219727,0.113342,0.219849,0.302643,0.348938,0.360962,0.347229,0.308105,0.247131,0.172302,0.101196,0.0466309,0.0283813,0.0552063,0.116791,0.196625,0.275513,0.346771,0.401794,0.433777,0.436737,0.405853,0.335693,0.233093,0.115234,0.00109863,-0.0955811,-0.168549,-0.212067,-0.226868,-0.217987,-0.187103,-0.13736,-0.0785828,-0.0282288,0.00466919,0.0143433,-0.000152588,-0.038208,-0.092926,-0.157959,-0.228119,-0.295166,-0.347382,-0.376556,-0.377167,-0.351288,-0.300934,-0.235443,-0.163574,-0.088562,-0.0199585,0.0388184,0.0778198,0.0944824,0.0854492,0.0531616,0.00701904,-0.0407104,-0.0834045,-0.11319,-0.125824,-0.118042,-0.09198,-0.0481873,0.00918579,0.0751648,0.138306,0.191315,0.227325,0.242004,0.234344,0.21048,0.172913,0.128326,0.0812378,0.0377197,0.00436401,-0.0112305,-0.00747681,0.0155945,0.0513,0.0941772,0.138916,0.179138,0.211121,0.229523,0.23233,0.217834,0.187897,0.147034,0.103851,0.0639343,0.0303955,0.00717163,-0.0045166,-0.00531006,0.00482178,0.0238647,0.0478821,0.0700073,0.0843506,0.0898132,0.0835876,0.0692139,0.0475464,0.0212097,-0.0105896,-0.0462952,-0.0837402,-0.120361,-0.151855,-0.177124,-0.193329,-0.201447,-0.201599,-0.194427,-0.180389,-0.161224,-0.138153,-0.115387,-0.0966797,-0.0863953,-0.0857544,-0.0947876,-0.112579,-0.133148,-0.155304,-0.17276,-0.183533,-0.185699,-0.178223,-0.159821,-0.131134,-0.0951233,-0.0600281,-0.0325928,-0.0176086,-0.0195007,-0.0396118,-0.0731201,-0.112274,-0.154663,-0.192566,-0.224213,-0.244324,-0.239197,-0.195679,-0.115387,-0.00952148,0.107727,0.217651,0.302338,0.352081,0.371399,0.363922,0.331787,0.274902,0.19754,0.11615,0.0527039,0.0291443,0.0561218,0.120697,0.203003,0.284393,0.354248,0.408661,0.442047,0.447662,0.415527,0.341309,0.232025,0.108063,-0.0123291,-0.112427,-0.185089,-0.225769,-0.238708,-0.227173,-0.192108,-0.138611,-0.0765686,-0.0252686,0.00671387,0.0123291,-0.00622559,-0.0470886,-0.102753,-0.168854,-0.239349,-0.305145,-0.355499,-0.381226,-0.377655,-0.345825,-0.292664,-0.22406,-0.149536,-0.0742188,-0.00326538,0.0552063,0.0940247,0.108978,0.0955811,0.0583191,0.00857544,-0.0438232,-0.0888672,-0.121918,-0.136261,-0.128937,-0.100739,-0.0528564,0.0110779,0.0816956,0.149384,0.204407,0.239502,0.25058,0.236206,0.203003,0.156219,0.103546,0.0513,0.00622559,-0.0261841,-0.0379028,-0.0279236,0.00515747,0.0533142,0.109131,0.164337,0.211273,0.242767,0.255707,0.248993,0.224213,0.184448,0.135498,0.0860596,0.0436707,0.0113831,-0.00360107,-0.00466919,0.00888062,0.0310364,0.0595703,0.0877686,0.108063,0.116638,0.112122,0.0937195,0.0668945,0.0341492,-0.00170898,-0.0377197,-0.0736084,-0.106171,-0.13504,-0.158722,-0.176971,-0.189453,-0.195679,-0.197693,-0.192566,-0.181641,-0.165741,-0.147827,-0.12973,-0.115387,-0.105713,-0.105103,-0.112732,-0.127869,-0.147339,-0.168243,-0.184753,-0.195984,-0.19693,-0.186646,-0.163727,-0.130341,-0.0949707,-0.0636292,-0.042572,-0.035553,-0.0461426,-0.0720215,-0.106506,-0.145935,-0.184937,-0.216431,-0.233246,-0.227814,-0.187256,-0.108826,-0.00546265,0.110077,0.219696,0.31012,0.364868,0.385437,0.376251,0.342407,0.285645,0.212219,0.135651,0.0740662,0.0489502,0.0715637,0.135803,0.220306,0.301849,0.369537,0.41803,0.442963,0.440948,0.40213,0.324158,0.213135,0.0890198,-0.0285339,-0.123657,-0.188965,-0.224213,-0.231689,-0.217651,-0.186005,-0.138153,-0.0843506,-0.0380554,-0.0115356,-0.0109253,-0.0327454,-0.0740662,-0.125977,-0.184143,-0.244171,-0.299835,-0.343658,-0.365021,-0.360657,-0.331024,-0.278778,-0.214233,-0.143616,-0.0729675,-0.00531006,0.0525513,0.0930786,0.109619,0.100098,0.0659485,0.0169983,-0.0346069,-0.0791931,-0.112885,-0.128632,-0.125671,-0.0996399,-0.054718,0.00717163,0.0782776,0.146423,0.201447,0.237,0.247772,0.233734,0.199738,0.150635,0.0951233,0.0402222,-0.00778198,-0.0402222,-0.0519104,-0.0396118,-0.0045166,0.047699,0.106964,0.166199,0.216736,0.254303,0.270691,0.264923,0.238556,0.195374,0.142365,0.0901184,0.0452271,0.0127869,-0.00482178,-0.00622559,0.00796509,0.0333557,0.0657959,0.098999,0.122559,0.132538,0.125824,0.105713,0.0753174,0.0393066,-0.000152588,-0.041626,-0.0820007,-0.121155,-0.154053,-0.178375,-0.19458,-0.203796,-0.206604,-0.205658,-0.198792,-0.185547,-0.165436,-0.143127,-0.123016,-0.110535,-0.106506,-0.112579,-0.125671,-0.144379,-0.166687,-0.188202,-0.20752,-0.217834,-0.215179,-0.19693,-0.165741,-0.127869,-0.0918274,-0.0625305,-0.0481873,-0.0523987,-0.0720215,-0.104004,-0.141113,-0.179138,-0.211884,-0.233734,-0.232941,-0.196472,-0.121002,-0.0152893,0.105865,0.224213,0.32074,0.38092,0.403381,0.396667,0.365936,0.310608,0.23465,0.150787,0.0820007,0.0525513,0.0779724,0.146729,0.233582,0.317291,0.384644,0.435486,0.461853,0.456696,0.41272,0.324005,0.203003,0.0709534,-0.0505066,-0.145325,-0.208313,-0.239349,-0.241821,-0.223755,-0.18634,-0.13504,-0.0778198,-0.0332031,-0.0123291,-0.0184021,-0.0475464,-0.0927734,-0.147644,-0.207367,-0.266632,-0.319489,-0.35611,-0.368896,-0.355347,-0.317932,-0.261627,-0.194427,-0.125824,-0.0572205,0.006073,0.0597229,0.0971375,0.111786,0.100098,0.0653381,0.0182495,-0.0299377,-0.0715637,-0.101807,-0.116486,-0.112732,-0.0877686,-0.0439758,0.0149536,0.0810852,0.14502,0.196472,0.228882,0.237946,0.223267,0.188507,0.141113,0.0871582,0.0335083,-0.0118408,-0.044281,-0.0545654,-0.0420837,-0.00686646,0.0438232,0.101196,0.157013,0.206909,0.241669,0.25882,0.254456,0.231079,0.192261,0.14563,0.0983887,0.0584717,0.0303955,0.0173035,0.019165,0.0344543,0.0586243,0.0862122,0.110535,0.125366,0.125366,0.113525,0.0916748,0.0639343,0.0333557,0.000946045,-0.0325928,-0.0675049,-0.1026,-0.134705,-0.162933,-0.187408,-0.206909,-0.222961,-0.232941,-0.232483,-0.220154,-0.196777,-0.168091,-0.140808,-0.120361,-0.110382,-0.11319,-0.125671,-0.149048,-0.17807,-0.209412,-0.235291,-0.248993,-0.244629,-0.22171,-0.184448,-0.142822,-0.106171,-0.0821838,-0.073761,-0.0796814,-0.0966797,-0.125824,-0.164032,-0.200989,-0.228271,-0.231689,-0.192566,-0.107269,0.00888062,0.132843,0.249786,0.340851,0.400879,0.430817,0.43222,0.399475,0.330566,0.238098,0.145325,0.0804443,0.0637817,0.102753,0.177277,0.263977,0.344421,0.412262,0.464813,0.49176,0.4776,0.41507,0.305756,0.166992,0.0249329,-0.0965271,-0.186493,-0.244965,-0.270996,-0.268951,-0.241058,-0.191315,-0.126923,-0.0628357,-0.0177612,-0.00326538,-0.0169983,-0.054718,-0.106964,-0.169495,-0.237152,-0.30249,-0.35675,-0.387299,-0.38855,-0.360504,-0.309662,-0.242004,-0.168549,-0.0937195,-0.0232239,0.0417786,0.0930786,0.121155,0.121918,0.0951233,0.0487976,-0.00466919,-0.0531616,-0.0909119,-0.114288,-0.12146,-0.107269,-0.0731201,-0.0193481,0.0481873,0.118958,0.181335,0.224823,0.243866,0.237152,0.208618,0.163727,0.109131,0.0514526,-0.00140381,-0.042572,-0.0629883,-0.0594177,-0.0303955,0.0176086,0.0765686,0.137512,0.192719,0.235596,0.262573,0.266479,0.248535,0.211731,0.163574,0.113525,0.0703125,0.0386658,0.0227661,0.0215149,0.0360107,0.0611267,0.0913696,0.120361,0.139862,0.143921,0.131897,0.106171,0.0743713,0.0396118,0.00466919,-0.0313416,-0.0673523,-0.101044,-0.130981,-0.154053,-0.174011,-0.19162,-0.20816,-0.219696,-0.225464,-0.220795,-0.205963,-0.184448,-0.161835,-0.142975,-0.130829,-0.128479,-0.135651,-0.152802,-0.179626,-0.210968,-0.239655,-0.258057,-0.25946,-0.244324,-0.213623,-0.175568,-0.138153,-0.109314,-0.0926208,-0.0918274,-0.108978,-0.136597,-0.169189,-0.201141,-0.223602,-0.219696,-0.175415,-0.0932312,0.0190125,0.147186,0.271606,0.371704,0.433136,0.458862,0.449524,0.408966,0.341156,0.256165,0.168701,0.102905,0.0821838,0.118347,0.192261,0.282074,0.366577,0.435791,0.484589,0.502991,0.480865,0.411621,0.295471,0.152802,0.00796509,-0.117096,-0.212524,-0.272858,-0.295776,-0.289551,-0.257904,-0.20752,-0.142212,-0.0785828,-0.0328979,-0.0162048,-0.0308838,-0.0704651,-0.12738,-0.19101,-0.258209,-0.320251,-0.371399,-0.399323,-0.399017,-0.368439,-0.312469,-0.237946,-0.157318,-0.0760803,-0.00186157,0.063446,0.111938,0.138306,0.136444,0.106964,0.0564575,-0.000793457,-0.0517578,-0.0916748,-0.114899,-0.118652,-0.101044,-0.0617371,-0.00265503,0.0682983,0.141266,0.204559,0.247589,0.265533,0.255707,0.2211,0.168243,0.105255,0.0402222,-0.0179443,-0.0623779,-0.0835876,-0.0788879,-0.0464783,0.0093689,0.0751648,0.142517,0.202545,0.249329,0.275818,0.27771,0.255096,0.212219,0.158264,0.102753,0.0564575,0.0226135,0.00701904,0.010437,0.0302429,0.0614319,0.0955811,0.12442,0.142822,0.144073,0.131897,0.107117,0.0770264,0.0434875,0.00762939,-0.0300903,-0.0700073,-0.108673,-0.144226,-0.175415,-0.203949,-0.229034,-0.248993,-0.257111,-0.252594,-0.233246,-0.203003,-0.169189,-0.136902,-0.113831,-0.103546,-0.108826,-0.129089,-0.161987,-0.203796,-0.245575,-0.279724,-0.297333,-0.293915,-0.269287,-0.229218,-0.185089,-0.146881,-0.119904,-0.106659,-0.108063,-0.122406,-0.146423,-0.171051,-0.187103,-0.179474,-0.136902,-0.0586243,0.0483398,0.16684,0.279572,0.366882,0.417236,0.435333,0.4263,0.389954,0.330078,0.256653,0.186646,0.142365,0.143127,0.190216,0.262573,0.341309,0.406494,0.453583,0.477753,0.470581,0.424896,0.338043,0.217834,0.0834045,-0.044281,-0.145172,-0.214539,-0.250732,-0.257751,-0.24292,-0.211578,-0.167297,-0.116943,-0.0734253,-0.0519104,-0.0580139,-0.0891724,-0.137054,-0.194275,-0.25058,-0.303741,-0.347717,-0.377014,-0.382782,-0.363281,-0.319794,-0.256348,-0.184296,-0.11087,-0.044281,0.0146484,0.0626831,0.0961914,0.108673,0.096344,0.0639343,0.0182495,-0.0257263,-0.0615845,-0.0840454,-0.09198,-0.0834045,-0.0550537,-0.0109253,0.0470886,0.111023,0.169952,0.216248,0.24231,0.244629,0.222504,0.181335,0.128784,0.0718689,0.0193481,-0.0237122,-0.050354,-0.0555115,-0.0368042,0.00360107,0.0583191,0.117401,0.171661,0.214691,0.241516,0.249329,0.237,0.205505,0.163086,0.116943,0.0757751,0.046936,0.033844,0.038208,0.0541077,0.0788879,0.1026,0.12146,0.130676,0.128632,0.115387,0.0918274,0.0632935,0.0330505,0.00405884,-0.0241699,-0.053009,-0.0820007,-0.111023,-0.142365,-0.174164,-0.204895,-0.231384,-0.249176,-0.25415,-0.247284,-0.229034,-0.203156,-0.172607,-0.146576,-0.129425,-0.127228,-0.139252,-0.163574,-0.195374,-0.229034,-0.258667,-0.276611,-0.280029,-0.268646,-0.246185,-0.217346,-0.188812,-0.167297,-0.15686,-0.158112,-0.165741,-0.177429,-0.184937,-0.174164,-0.134552,-0.0632935,0.0305481,0.137848,0.245117,0.337097,0.399323,0.429108,0.428314,0.395111,0.337891,0.267883,0.201599,0.156219,0.149689,0.186157,0.254456,0.334778,0.408966,0.467285,0.503632,0.50769,0.470734,0.390259,0.269897,0.129272,-0.00842285,-0.12442,-0.208466,-0.257568,-0.272858,-0.25946,-0.225922,-0.176819,-0.119904,-0.0686035,-0.0386658,-0.0360107,-0.0631409,-0.112122,-0.174622,-0.241058,-0.303894,-0.357208,-0.394012,-0.407104,-0.392151,-0.350525,-0.2883,-0.211731,-0.130829,-0.0556641,0.0107727,0.0628357,0.0983887,0.112122,0.102142,0.0709534,0.0241699,-0.025116,-0.0673523,-0.0957336,-0.106018,-0.0974426,-0.0690613,-0.0233765,0.0350952,0.101807,0.164337,0.216095,0.247925,0.2565,0.239807,0.202087,0.149231,0.0915222,0.0327454,-0.0146484,-0.0470886,-0.0586243,-0.046936,-0.0109253,0.0420837,0.104767,0.165131,0.214874,0.248077,0.261169,0.251495,0.222504,0.179474,0.129272,0.0796814,0.0403748,0.0184021,0.0158997,0.0310364,0.0567627,0.0846558,0.107269,0.121002,0.124878,0.118652,0.102905,0.0796814,0.0506592,0.0188599,-0.0138855,-0.0472412,-0.0779724,-0.111328,-0.14563,-0.183044,-0.219238,-0.246368,-0.26178,-0.262421,-0.249481,-0.22641,-0.195221,-0.163086,-0.134247,-0.115082,-0.111633,-0.125977,-0.154816,-0.192719,-0.233887,-0.268951,-0.290314,-0.295776,-0.286102,-0.265381,-0.238251,-0.210815,-0.187897,-0.17337,-0.166382,-0.165894,-0.167938,-0.161835,-0.135498,-0.0823364,-0.00265503,0.0944824,0.198639,0.292206,0.361115,0.397919,0.408356,0.390594,0.349274,0.292053,0.231079,0.180725,0.162323,0.185852,0.248383,0.328369,0.407104,0.467621,0.503784,0.510651,0.479767,0.407745,0.295471,0.158264,0.0160522,-0.106018,-0.196472,-0.248383,-0.26474,-0.250885,-0.217651,-0.171356,-0.118805,-0.069397,-0.0363159,-0.0307312,-0.0558167,-0.106323,-0.17215,-0.24292,-0.306702,-0.362061,-0.399323,-0.41568,-0.403839,-0.36377,-0.30014,-0.220459,-0.135498,-0.0553589,0.0123291,0.0646973,0.100891,0.115082,0.106659,0.0736084,0.0249329,-0.0297852,-0.0759277,-0.10495,-0.115082,-0.103851,-0.073761,-0.025116,0.0369568,0.106171,0.173218,0.226868,0.259613,0.266479,0.24823,0.207062,0.152191,0.0916748,0.0330505,-0.0154419,-0.0470886,-0.0576782,-0.0450745,-0.00857544,0.0448914,0.106964,0.165283,0.21283,0.243713,0.255707,0.247437,0.220459,0.17868,0.130188,0.083252,0.0455322,0.0255737,0.0210571,0.0308838,0.048645,0.0686035,0.0856018,0.0975952,0.102448,0.0996399,0.0890198,0.0717163,0.0491028,0.0241699,-0.00341797,-0.0330505,-0.0668945,-0.106323,-0.151703,-0.19693,-0.235901,-0.26178,-0.274567,-0.271454,-0.256012,-0.229218,-0.193176,-0.155762,-0.124268,-0.107269,-0.109467,-0.130829,-0.165741,-0.207062,-0.247284,-0.278473,-0.29657,-0.300629,-0.290802,-0.272247,-0.248688,-0.221863,-0.197876,-0.177765,-0.168701,-0.161987,-0.150635,-0.124878,-0.0723572,0.00360107,0.0980835,0.200348,0.29422,0.362213,0.395416,0.403687,0.387299,0.350037,0.299835,0.238556,0.18399,0.157471,0.177277,0.242462,0.331482,0.418335,0.481964,0.517822,0.524689,0.494904,0.424103,0.308868,0.163239,0.00997925,-0.126129,-0.224365,-0.278625,-0.290802,-0.271149,-0.230621,-0.17868,-0.120514,-0.0642395,-0.025116,-0.0155945,-0.0424194,-0.0985413,-0.171967,-0.24823,-0.315582,-0.371552,-0.411011,-0.42691,-0.416321,-0.375153,-0.308563,-0.225464,-0.136749,-0.0538025,0.0160522,0.0692139,0.10556,0.125061,0.119446,0.0895081,0.0403748,-0.0184021,-0.0703125,-0.106659,-0.12146,-0.114288,-0.0870056,-0.0391235,0.0252686,0.098999,0.173706,0.234802,0.275513,0.290009,0.275513,0.234802,0.175262,0.107422,0.0411682,-0.0132446,-0.0497437,-0.0640869,-0.0523987,-0.0163574,0.0411682,0.10791,0.17276,0.22467,0.257904,0.269287,0.259308,0.229034,0.183838,0.132843,0.0827942,0.0431824,0.0205688,0.0149536,0.0223083,0.0374146,0.0528564,0.0648499,0.0722046,0.0723572,0.0682983,0.0608215,0.0484924,0.033844,0.0157471,-0.00296021,-0.0269775,-0.0597229,-0.101349,-0.152496,-0.206604,-0.253204,-0.286285,-0.302032,-0.299042,-0.278931,-0.244476,-0.198334,-0.152008,-0.112732,-0.092926,-0.0938721,-0.116302,-0.155609,-0.203308,-0.249634,-0.287506,-0.312164,-0.323395,-0.319489,-0.301697,-0.27536,-0.244019,-0.214539,-0.186493,-0.164337,-0.140472,-0.102448,-0.0419312,0.0366516,0.124878,0.218903,0.307465,0.372803,0.406342,0.411621,0.391663,0.350525,0.293915,0.235291,0.185852,0.162781,0.182892,0.247589,0.338348,0.43158,0.505951,0.551025,0.56366,0.533875,0.454346,0.328674,0.169189,0.00125122,-0.146729,-0.257416,-0.322144,-0.339142,-0.316833,-0.265381,-0.198944,-0.126465,-0.059082,-0.0133972,-0.00186157,-0.0299377,-0.0904236,-0.171661,-0.258667,-0.337097,-0.39978,-0.441101,-0.455902,-0.43924,-0.390259,-0.315582,-0.227325,-0.135193,-0.0495911,0.0221558,0.0756226,0.111633,0.127869,0.122253,0.0927734,0.0464783,-0.00717163,-0.0575256,-0.0935669,-0.112732,-0.110718,-0.088562,-0.0455322,0.0137329,0.0852966,0.158264,0.22345,0.268799,0.29126,0.286591,0.255707,0.203003,0.138763,0.0734253,0.0151367,-0.026825,-0.0470886,-0.042572,-0.0126343,0.039917,0.104767,0.17041,0.224365,0.259918,0.275208,0.267731,0.241821,0.200043,0.151093,0.10321,0.0651855,0.0410156,0.0321045,0.0336914,0.0397644,0.0456848,0.0481873,0.044281,0.0358582,0.025116,0.0152893,0.00360107,-0.00637817,-0.0155945,-0.025116,-0.0413208,-0.0681458,-0.106506,-0.155914,-0.208466,-0.258514,-0.297485,-0.319794,-0.323853,-0.308411,-0.276306,-0.232483,-0.185394,-0.14502,-0.118042,-0.110718,-0.121307,-0.148743,-0.185242,-0.22345,-0.258514,-0.2883,-0.308716,-0.318848,-0.317291,-0.305145,-0.284882,-0.256958,-0.222198,-0.176819,-0.11554,-0.0322876,0.0679932,0.174011,0.276306,0.366882,0.427216,0.452484,0.44577,0.411316,0.352692,0.284088,0.217834,0.167603,0.147827,0.173859,0.242004,0.338959,0.443756,0.532013,0.590149,0.610748,0.583771,0.501129,0.369537,0.200043,0.0195007,-0.145782,-0.271759,-0.35083,-0.379822,-0.363922,-0.31076,-0.236847,-0.153595,-0.0748291,-0.019165,0.00109863,-0.019165,-0.0757751,-0.158417,-0.251984,-0.342102,-0.416473,-0.469025,-0.490387,-0.477417,-0.428619,-0.351929,-0.255249,-0.153107,-0.0558167,0.0261841,0.0873108,0.125977,0.142517,0.131439,0.0974426,0.0467834,-0.0102844,-0.0615845,-0.0991516,-0.115845,-0.112427,-0.0854492,-0.0393066,0.0240173,0.0955811,0.1698,0.231842,0.275055,0.294373,0.289246,0.257751,0.206909,0.144836,0.0804443,0.0241699,-0.0149536,-0.0308838,-0.0232239,0.0093689,0.0608215,0.122559,0.184753,0.236389,0.271301,0.285492,0.280029,0.255707,0.217041,0.171356,0.12677,0.0893555,0.0631409,0.0458374,0.0354004,0.0286865,0.0229187,0.0198059,0.0157471,0.0129395,0.0093689,0.0045166,-0.00250244,-0.0121765,-0.0235291,-0.040863,-0.0676575,-0.108215,-0.159363,-0.214233,-0.265381,-0.305603,-0.328674,-0.335236,-0.324463,-0.299988,-0.261932,-0.21875,-0.179138,-0.149689,-0.138,-0.143433,-0.164642,-0.195374,-0.227631,-0.257904,-0.284241,-0.304657,-0.319183,-0.323212,-0.317596,-0.302185,-0.276123,-0.241058,-0.192871,-0.121765,-0.0277405,0.0818481,0.19632,0.308258,0.402893,0.463715,0.484924,0.472748,0.428772,0.362366,0.286438,0.215637,0.165436,0.149689,0.183044,0.261475,0.366425,0.474152,0.563507,0.620728,0.637726,0.603424,0.511414,0.368439,0.189606,0.00170898,-0.165131,-0.289062,-0.363281,-0.38623,-0.363922,-0.306702,-0.227325,-0.139862,-0.0601807,-0.00732422,0.00546265,-0.0246277,-0.0918274,-0.183197,-0.282379,-0.374512,-0.449677,-0.497223,-0.512207,-0.489441,-0.429718,-0.342712,-0.23996,-0.135956,-0.0411682,0.0347595,0.0862122,0.114594,0.120209,0.101044,0.0612793,0.00967407,-0.0417786,-0.0827942,-0.105865,-0.109314,-0.0926208,-0.0592651,-0.00967407,0.0494385,0.115234,0.178986,0.229675,0.261932,0.272858,0.263672,0.23465,0.192566,0.14267,0.0927734,0.048645,0.0184021,0.00686646,0.0160522,0.0450745,0.0896606,0.140656,0.19101,0.231537,0.25882,0.271454,0.269287,0.25119,0.222198,0.187897,0.154663,0.125366,0.100403,0.0778198,0.0555115,0.0321045,0.00967407,-0.00778198,-0.0201111,-0.0246277,-0.0226135,-0.0174561,-0.0121765,-0.0116882,-0.0166931,-0.0343018,-0.0679932,-0.119446,-0.182129,-0.247131,-0.305298,-0.345825,-0.365326,-0.363617,-0.342712,-0.307953,-0.263672,-0.218292,-0.18103,-0.157166,-0.152649,-0.16449,-0.191315,-0.22406,-0.257416,-0.289398,-0.316986,-0.338806,-0.352386,-0.352386,-0.340363,-0.312775,-0.270203,-0.209076,-0.122711,-0.0135803,0.111176,0.236206,0.35379,0.444366,0.495514,0.50473,0.481476,0.429108,0.360016,0.28363,0.216095,0.170258,0.165131,0.212982,0.300293,0.41037,0.513916,0.591248,0.633362,0.632416,0.582977,0.4776,0.324615,0.14328,-0.0379028,-0.190521,-0.297028,-0.351593,-0.358612,-0.325256,-0.266632,-0.192871,-0.116791,-0.0533142,-0.0182495,-0.0226135,-0.0657959,-0.139709,-0.229218,-0.317596,-0.393707,-0.449677,-0.479156,-0.479767,-0.447327,-0.383728,-0.297974,-0.201599,-0.109467,-0.02948,0.0300903,0.0682983,0.0873108,0.0860596,0.065033,0.0271301,-0.0188599,-0.0620422,-0.0926208,-0.104767,-0.0974426,-0.0729675,-0.033844,0.0154419,0.0709534,0.127686,0.179626,0.217194,0.238251,0.23996,0.224365,0.193665,0.154999,0.114746,0.079834,0.0544128,0.041626,0.0431824,0.0587769,0.0877686,0.127228,0.168701,0.207062,0.235901,0.253204,0.260071,0.257568,0.247589,0.230927,0.208771,0.182739,0.152649,0.119293,0.0845032,0.0498962,0.0168457,-0.0115356,-0.031189,-0.0428772,-0.0441284,-0.0379028,-0.0260315,-0.0154419,-0.013092,-0.0237122,-0.0534668,-0.100403,-0.160767,-0.225616,-0.286102,-0.334442,-0.366272,-0.377014,-0.366089,-0.336151,-0.293121,-0.245728,-0.203491,-0.17337,-0.160126,-0.164642,-0.182587,-0.210815,-0.247284,-0.287048,-0.325409,-0.3591,-0.381836,-0.390594,-0.379364,-0.348022,-0.292969,-0.211578,-0.101807,0.0272827,0.162781,0.292206,0.401794,0.477905,0.510651,0.501282,0.45871,0.387299,0.306549,0.231842,0.178833,0.160767,0.187561,0.260864,0.365479,0.480408,0.583313,0.650024,0.672943,0.642242,0.556335,0.41803,0.242462,0.0541077,-0.119598,-0.253998,-0.336792,-0.367188,-0.348022,-0.292053,-0.213135,-0.128784,-0.0544128,-0.00622559,0.00515747,-0.0257263,-0.0924683,-0.183533,-0.282532,-0.374512,-0.444855,-0.486786,-0.495514,-0.46933,-0.411774,-0.327759,-0.231232,-0.133789,-0.0462952,0.0215149,0.0654907,0.0848083,0.083252,0.0622253,0.0258789,-0.0187073,-0.0606384,-0.0941772,-0.111176,-0.108673,-0.0871582,-0.0498962,-0.00265503,0.050354,0.104156,0.154053,0.19162,0.214081,0.220154,0.209717,0.187897,0.156708,0.123169,0.0932312,0.0689087,0.0572205,0.0580139,0.0698547,0.0924683,0.121765,0.1539,0.184601,0.210022,0.227325,0.236694,0.240906,0.240112,0.236694,0.228271,0.213928,0.192261,0.162323,0.124573,0.081543,0.0358582,-0.00576782,-0.039917,-0.0615845,-0.0708008,-0.0668945,-0.0525513,-0.0354004,-0.0246277,-0.0260315,-0.0472412,-0.085907,-0.139069,-0.199585,-0.258667,-0.309662,-0.347229,-0.364868,-0.362671,-0.342255,-0.309814,-0.272095,-0.235138,-0.207367,-0.191467,-0.187408,-0.194427,-0.21048,-0.235138,-0.265991,-0.300629,-0.335541,-0.365631,-0.384491,-0.384491,-0.358917,-0.304504,-0.215027,-0.0951233,0.0452271,0.189606,0.325104,0.4375,0.512512,0.53949,0.518127,0.456543,0.36673,0.273804,0.19632,0.149536,0.144379,0.186005,0.2724,0.387787,0.510162,0.61557,0.679504,0.688538,0.637878,0.52655,0.366577,0.177582,-0.0141907,-0.180389,-0.300446,-0.367035,-0.378265,-0.340363,-0.267731,-0.178223,-0.0916748,-0.0240173,0.0118408,0.00497437,-0.043335,-0.124573,-0.224213,-0.32431,-0.411621,-0.471191,-0.498474,-0.488983,-0.44577,-0.372498,-0.278931,-0.177429,-0.0821838,-0.0015564,0.0558167,0.0857544,0.091217,0.07547,0.0427246,0.000152588,-0.044281,-0.0816956,-0.10495,-0.109619,-0.0935669,-0.0601807,-0.0149536,0.0379028,0.0898132,0.138611,0.175568,0.200043,0.208008,0.201294,0.183044,0.157013,0.127533,0.101044,0.0804443,0.069397,0.0692139,0.0804443,0.100891,0.12677,0.156403,0.184601,0.208466,0.22702,0.236847,0.241516,0.24231,0.240112,0.232941,0.219238,0.195984,0.163239,0.121918,0.0760803,0.0282288,-0.0163574,-0.0517578,-0.0753174,-0.0845032,-0.082489,-0.0684509,-0.0491028,-0.0360107,-0.0357056,-0.0569153,-0.0980835,-0.152008,-0.21347,-0.269897,-0.317444,-0.352234,-0.366577,-0.360962,-0.333984,-0.295471,-0.252899,-0.214081,-0.187256,-0.173706,-0.175415,-0.186005,-0.20752,-0.236694,-0.272552,-0.310608,-0.345062,-0.371704,-0.382477,-0.373596,-0.339447,-0.275665,-0.176971,-0.050354,0.0926208,0.234192,0.363281,0.461517,0.51532,0.526245,0.49411,0.426758,0.33725,0.249481,0.180389,0.144073,0.155457,0.21579,0.313721,0.432678,0.547119,0.633667,0.676849,0.664215,0.591095,0.460449,0.288452,0.0986938,-0.0837402,-0.22998,-0.325714,-0.366577,-0.354889,-0.301544,-0.220795,-0.132538,-0.0556641,-0.00531006,0.00497437,-0.0258789,-0.0952759,-0.188812,-0.290009,-0.381226,-0.449982,-0.488037,-0.489746,-0.457794,-0.394958,-0.309021,-0.212982,-0.120361,-0.0405273,0.019165,0.0541077,0.0657959,0.0601807,0.0393066,0.00717163,-0.0275879,-0.0587769,-0.0788879,-0.0848083,-0.0736084,-0.0472412,-0.010437,0.0321045,0.0756226,0.114594,0.14859,0.171814,0.182434,0.183044,0.174622,0.158875,0.14032,0.121765,0.108063,0.0980835,0.0954285,0.101196,0.112885,0.129272,0.14798,0.167603,0.187256,0.205658,0.2211,0.233582,0.244629,0.252594,0.254761,0.249176,0.233734,0.205658,0.164642,0.114288,0.0576782,-0.000793457,-0.0538025,-0.0933838,-0.116302,-0.121155,-0.111633,-0.0940247,-0.0774841,-0.0700073,-0.0776367,-0.103363,-0.145325,-0.19989,-0.258209,-0.312927,-0.35611,-0.382172,-0.387634,-0.372192,-0.342865,-0.303589,-0.263031,-0.227325,-0.2005,-0.186005,-0.185089,-0.198944,-0.225922,-0.261932,-0.301086,-0.337738,-0.365173,-0.374359,-0.358307,-0.311371,-0.232178,-0.120514,0.0162048,0.16217,0.30249,0.421753,0.50238,0.536682,0.526093,0.476959,0.401337,0.315582,0.239197,0.186005,0.167938,0.197388,0.270538,0.37265,0.486786,0.584717,0.64505,0.656891,0.612,0.513306,0.36673,0.191162,0.00952148,-0.153748,-0.274261,-0.343506,-0.359253,-0.327576,-0.26178,-0.180389,-0.100739,-0.0400696,-0.0113831,-0.0216675,-0.0723572,-0.152954,-0.249329,-0.342712,-0.418488,-0.465576,-0.479462,-0.459351,-0.408966,-0.335541,-0.246368,-0.155304,-0.0745239,-0.0121765,0.0272827,0.0427246,0.0396118,0.0226135,-0.00186157,-0.0302429,-0.0562744,-0.0731201,-0.0778198,-0.0657959,-0.0396118,-0.00360107,0.0374146,0.077179,0.111328,0.136902,0.152008,0.157318,0.154205,0.146576,0.136902,0.128326,0.121613,0.121002,0.123657,0.130188,0.140472,0.15094,0.162628,0.170746,0.178528,0.184753,0.192566,0.201599,0.214386,0.229034,0.245422,0.258362,0.264435,0.25882,0.238403,0.202393,0.151245,0.0893555,0.0235291,-0.0393066,-0.091217,-0.125671,-0.140015,-0.136108,-0.123322,-0.106812,-0.0968323,-0.101349,-0.121002,-0.157166,-0.206604,-0.26178,-0.316833,-0.362061,-0.390594,-0.39978,-0.387634,-0.360657,-0.323212,-0.28299,-0.246674,-0.218597,-0.201599,-0.198792,-0.210968,-0.237152,-0.272858,-0.314484,-0.354889,-0.384338,-0.392151,-0.369843,-0.309509,-0.208923,-0.0732727,0.0830994,0.239349,0.379364,0.490387,0.556335,0.575195,0.54184,0.46637,0.365631,0.263184,0.18634,0.148438,0.158722,0.220795,0.320404,0.44281,0.568176,0.66687,0.717865,0.703522,0.622742,0.480865,0.295166,0.092926,-0.098999,-0.255554,-0.359863,-0.404297,-0.390594,-0.326355,-0.229828,-0.124878,-0.0361633,0.0201111,0.0310364,-0.00656128,-0.0865479,-0.194916,-0.31076,-0.41803,-0.496613,-0.537781,-0.532013,-0.484283,-0.40274,-0.297485,-0.186157,-0.0826416,0.000305176,0.0566101,0.0820007,0.0779724,0.0513,0.0102844,-0.0347595,-0.0770264,-0.106964,-0.118958,-0.110535,-0.0823364,-0.0361633,0.0177612,0.0748291,0.124115,0.161224,0.183197,0.187897,0.179321,0.160919,0.138458,0.117706,0.102905,0.09729,0.101501,0.113037,0.133636,0.157318,0.183533,0.205505,0.223602,0.234802,0.240265,0.242767,0.243561,0.245422,0.247131,0.24884,0.246033,0.23761,0.219238,0.19162,0.151093,0.100098,0.0407104,-0.020752,-0.0773315,-0.12442,-0.152344,-0.164642,-0.164795,-0.158112,-0.154358,-0.154816,-0.167145,-0.189911,-0.222198,-0.262573,-0.304504,-0.343353,-0.371094,-0.384338,-0.382324,-0.364227,-0.337555,-0.304199,-0.271912,-0.243073,-0.223114,-0.213928,-0.21814,-0.236206,-0.26709,-0.303101,-0.340363,-0.367188,-0.374054,-0.347382,-0.282227,-0.17572,-0.035553,0.125519,0.281738,0.416779,0.516876,0.572693,0.576599,0.535126,0.454193,0.353638,0.255096,0.185089,0.157471,0.184601,0.263336,0.375305,0.499268,0.611664,0.689789,0.715515,0.676086,0.57489,0.415527,0.219391,0.0195007,-0.159668,-0.293274,-0.36969,-0.389648,-0.355652,-0.284241,-0.189758,-0.0952759,-0.0223083,0.0127869,-0.000610352,-0.0595703,-0.154663,-0.266632,-0.375458,-0.464172,-0.521881,-0.5401,-0.516571,-0.453735,-0.362518,-0.256165,-0.149841,-0.0586243,0.00872803,0.0484924,0.0625305,0.0544128,0.0299377,-0.00405884,-0.0422668,-0.0743713,-0.0965271,-0.100739,-0.0867004,-0.0531616,-0.00811768,0.0427246,0.0926208,0.136749,0.169952,0.187897,0.192413,0.184601,0.167603,0.146088,0.126129,0.112579,0.10791,0.112427,0.125824,0.148285,0.175415,0.203949,0.230438,0.25058,0.266632,0.274414,0.280029,0.282837,0.28363,0.282532,0.275208,0.261017,0.237946,0.202545,0.156067,0.100403,0.0386658,-0.0280762,-0.090271,-0.140808,-0.17215,-0.186493,-0.185699,-0.179321,-0.176361,-0.179321,-0.194122,-0.222198,-0.260712,-0.308411,-0.35675,-0.398376,-0.427216,-0.434235,-0.423798,-0.393402,-0.350037,-0.301086,-0.252441,-0.213623,-0.188202,-0.180878,-0.194275,-0.224365,-0.269287,-0.318695,-0.363281,-0.391205,-0.391998,-0.352386,-0.266327,-0.136108,0.0286865,0.203003,0.366577,0.497864,0.586731,0.62384,0.604828,0.537628,0.435181,0.317139,0.213928,0.150299,0.137207,0.184937,0.282684,0.411469,0.546021,0.661255,0.735321,0.744202,0.682465,0.555695,0.372345,0.16153,-0.0447388,-0.219543,-0.343964,-0.407745,-0.412872,-0.364227,-0.278931,-0.174957,-0.0784302,-0.00952148,0.0166931,-0.00671387,-0.0762329,-0.177582,-0.293762,-0.401978,-0.488647,-0.5401,-0.551025,-0.518127,-0.446869,-0.349121,-0.241516,-0.135956,-0.0492859,0.0129395,0.0483398,0.0583191,0.0470886,0.0205688,-0.0132446,-0.0475464,-0.0756226,-0.0909119,-0.0888672,-0.0687561,-0.0324402,0.0140381,0.0632935,0.110382,0.148438,0.174316,0.186951,0.187744,0.179474,0.164185,0.148743,0.135498,0.128479,0.12973,0.138,0.154358,0.177277,0.203308,0.228882,0.250732,0.268646,0.28299,0.293274,0.300446,0.303894,0.302338,0.296875,0.284882,0.266937,0.239807,0.200195,0.147827,0.0834045,0.00827026,-0.0678406,-0.134247,-0.184937,-0.218292,-0.234192,-0.238556,-0.235901,-0.230286,-0.227631,-0.235138,-0.258362,-0.295471,-0.341766,-0.387634,-0.424561,-0.447662,-0.45343,-0.443451,-0.415527,-0.372955,-0.32074,-0.267731,-0.223755,-0.198486,-0.194122,-0.211578,-0.244324,-0.287689,-0.332275,-0.363129,-0.368591,-0.336945,-0.258362,-0.129272,0.0386658,0.216248,0.381073,0.513763,0.600311,0.63678,0.620728,0.556,0.454987,0.337402,0.235596,0.168243,0.157471,0.211731,0.314178,0.442657,0.573639,0.678253,0.738586,0.735779,0.664703,0.527649,0.336792,0.124878,-0.0773315,-0.242767,-0.351746,-0.399933,-0.393219,-0.338959,-0.255249,-0.157471,-0.0709534,-0.0133972,-0.000793457,-0.0380554,-0.118195,-0.22702,-0.341461,-0.441254,-0.513458,-0.548828,-0.542908,-0.496918,-0.417236,-0.314484,-0.207367,-0.111023,-0.0389709,0.00531006,0.0243225,0.0223083,0.00637817,-0.0160522,-0.040863,-0.0618896,-0.0757751,-0.0768738,-0.0614319,-0.0317993,0.00747681,0.0495911,0.0895081,0.124268,0.149384,0.165131,0.17215,0.17276,0.168854,0.161377,0.153259,0.147827,0.148285,0.154816,0.16684,0.185242,0.208618,0.233246,0.253693,0.269592,0.28067,0.288605,0.29361,0.297028,0.30014,0.300293,0.297485,0.287201,0.269135,0.239655,0.196472,0.138916,0.0665894,-0.0135803,-0.0926208,-0.160919,-0.213928,-0.24588,-0.259766,-0.260864,-0.255707,-0.252289,-0.25354,-0.266785,-0.293274,-0.329163,-0.373108,-0.414917,-0.448273,-0.467285,-0.468231,-0.450775,-0.416779,-0.371094,-0.320404,-0.271759,-0.235748,-0.218292,-0.222809,-0.248077,-0.288147,-0.330383,-0.363464,-0.371094,-0.341614,-0.265076,-0.140472,0.0224609,0.203308,0.374359,0.518738,0.613861,0.65564,0.642395,0.580658,0.482727,0.364685,0.258362,0.185394,0.165436,0.212219,0.314484,0.446564,0.584229,0.693695,0.757782,0.755127,0.684021,0.546021,0.35083,0.12973,-0.0823364,-0.257416,-0.370789,-0.418488,-0.405701,-0.34613,-0.256958,-0.157013,-0.0682983,-0.0093689,0.00265503,-0.0377197,-0.124268,-0.240417,-0.361267,-0.463409,-0.533722,-0.562103,-0.546661,-0.493011,-0.406006,-0.298431,-0.187408,-0.0905762,-0.0215149,0.0158997,0.0247803,0.0112305,-0.0133972,-0.041626,-0.0673523,-0.0871582,-0.0943298,-0.0871582,-0.0620422,-0.0218201,0.0272827,0.0768738,0.11911,0.150146,0.167603,0.173065,0.168854,0.158417,0.145477,0.132843,0.124725,0.121307,0.127686,0.144531,0.170258,0.201752,0.237152,0.269592,0.295929,0.311371,0.319336,0.319641,0.314178,0.30484,0.294373,0.285034,0.275208,0.266144,0.25354,0.231842,0.197693,0.146881,0.0805969,0.0045166,-0.0723572,-0.141418,-0.19928,-0.239655,-0.265991,-0.279419,-0.284393,-0.287689,-0.292969,-0.308563,-0.334442,-0.365631,-0.401337,-0.431427,-0.454193,-0.464966,-0.462616,-0.447479,-0.417542,-0.377655,-0.333679,-0.292664,-0.265839,-0.257904,-0.271149,-0.300293,-0.337738,-0.370483,-0.382782,-0.362213,-0.29953,-0.190063,-0.0377197,0.138916,0.316223,0.472595,0.591095,0.655334,0.664368,0.619324,0.530609,0.416321,0.302948,0.220795,0.183685,0.21048,0.298737,0.422241,0.562866,0.689026,0.772888,0.796295,0.743744,0.620239,0.432831,0.208466,-0.0127869,-0.204895,-0.34256,-0.413818,-0.423492,-0.377319,-0.294678,-0.193665,-0.09729,-0.0285339,-0.00341797,-0.0317993,-0.109619,-0.222198,-0.34848,-0.462311,-0.546356,-0.590485,-0.585632,-0.536835,-0.451233,-0.339142,-0.220001,-0.110535,-0.0271301,0.0229187,0.0422668,0.0328979,0.00686646,-0.0274353,-0.0600281,-0.0854492,-0.0966797,-0.0923157,-0.0686035,-0.0285339,0.0218201,0.076416,0.123169,0.159515,0.180878,0.187256,0.181641,0.168549,0.152191,0.135956,0.122711,0.115845,0.117889,0.130676,0.1539,0.184937,0.2211,0.256958,0.288452,0.310913,0.324951,0.330078,0.328369,0.319946,0.308105,0.295624,0.282684,0.268494,0.251495,0.227478,0.192108,0.142822,0.0787354,0.00561523,-0.0678406,-0.134094,-0.189301,-0.228882,-0.254761,-0.268341,-0.275055,-0.279266,-0.286438,-0.30249,-0.328522,-0.362671,-0.39917,-0.432983,-0.457458,-0.46994,-0.469482,-0.456055,-0.429718,-0.393219,-0.350189,-0.31012,-0.281586,-0.271759,-0.28363,-0.312775,-0.348175,-0.377319,-0.383728,-0.357697,-0.289398,-0.173218,-0.0169983,0.158264,0.331177,0.483032,0.593445,0.650818,0.652527,0.602173,0.511261,0.402435,0.299988,0.226715,0.2005,0.239349,0.332886,0.460907,0.600464,0.716614,0.786011,0.790222,0.719879,0.582672,0.388092,0.166534,-0.046936,-0.225922,-0.345825,-0.401337,-0.394806,-0.340057,-0.255554,-0.161072,-0.0785828,-0.0282288,-0.0218201,-0.0661011,-0.155457,-0.272858,-0.396667,-0.50174,-0.57254,-0.599823,-0.578613,-0.516266,-0.42334,-0.311066,-0.198486,-0.0999451,-0.0289917,0.0105896,0.020752,0.00827026,-0.0193481,-0.0472412,-0.0704651,-0.085144,-0.0863953,-0.0726624,-0.0419312,0.0015564,0.0534668,0.103851,0.146729,0.177429,0.193665,0.196777,0.190216,0.178528,0.165131,0.151245,0.139557,0.134247,0.137207,0.150452,0.174469,0.207214,0.245117,0.282227,0.312927,0.332123,0.337891,0.332886,0.319489,0.301544,0.284088,0.269135,0.258209,0.246185,0.227966,0.200195,0.157959,0.103058,0.0366516,-0.0371094,-0.109924,-0.176819,-0.228577,-0.263336,-0.281433,-0.287354,-0.29126,-0.297485,-0.311066,-0.332428,-0.358307,-0.387299,-0.413361,-0.436432,-0.450623,-0.454041,-0.444366,-0.422699,-0.391663,-0.353943,-0.321503,-0.298126,-0.288757,-0.298126,-0.321808,-0.355957,-0.384644,-0.392761,-0.368134,-0.299988,-0.187744,-0.035553,0.137054,0.306244,0.456848,0.571442,0.637726,0.650818,0.612,0.52887,0.418488,0.311829,0.234985,0.20224,0.23233,0.320587,0.441254,0.577057,0.698212,0.780396,0.800964,0.751373,0.630219,0.445312,0.225464,0.00827026,-0.180542,-0.316376,-0.387787,-0.399017,-0.359406,-0.284393,-0.192413,-0.104156,-0.0414734,-0.0212097,-0.053009,-0.132843,-0.246674,-0.373901,-0.487732,-0.572693,-0.615723,-0.612457,-0.564423,-0.480713,-0.372192,-0.256348,-0.150146,-0.0682983,-0.0169983,0.00622559,0.006073,-0.0102844,-0.0325928,-0.0533142,-0.0679932,-0.0726624,-0.0629883,-0.0386658,0.000457764,0.0470886,0.0965271,0.138,0.172607,0.193665,0.2052,0.206909,0.204895,0.199738,0.192413,0.184601,0.177765,0.175873,0.181793,0.196777,0.219543,0.24884,0.27832,0.304993,0.323395,0.332733,0.33197,0.323395,0.310913,0.295624,0.282532,0.269745,0.257751,0.23761,0.204895,0.155609,0.0909119,0.0165405,-0.0637817,-0.141571,-0.207062,-0.261322,-0.291565,-0.305603,-0.304352,-0.299988,-0.299835,-0.307007,-0.327118,-0.355347,-0.385895,-0.417725,-0.443909,-0.462006,-0.469177,-0.462158,-0.442047,-0.406006,-0.364227,-0.325409,-0.297485,-0.284882,-0.29126,-0.312927,-0.344116,-0.371246,-0.379059,-0.354889,-0.289856,-0.18103,-0.031189,0.13736,0.301697,0.446869,0.554779,0.619629,0.63443,0.600464,0.524994,0.425659,0.327576,0.258514,0.233734,0.270996,0.361908,0.481018,0.610901,0.719421,0.787415,0.796753,0.734863,0.607147,0.420532,0.203003,-0.00622559,-0.181641,-0.301239,-0.356598,-0.357361,-0.311371,-0.239502,-0.155609,-0.0799866,-0.033844,-0.0305481,-0.0802917,-0.173553,-0.294525,-0.42334,-0.530762,-0.604187,-0.634277,-0.618225,-0.56131,-0.471649,-0.362366,-0.251343,-0.154205,-0.0845032,-0.04599,-0.0339966,-0.042572,-0.0620422,-0.084198,-0.100098,-0.106659,-0.100555,-0.0790405,-0.0414734,0.00872803,0.0654907,0.118958,0.164032,0.198029,0.217499,0.225159,0.223755,0.21875,0.212982,0.206604,0.19989,0.197235,0.198639,0.209869,0.228119,0.254944,0.287842,0.319336,0.34613,0.362976,0.36734,0.362823,0.348633,0.328827,0.308716,0.287506,0.26944,0.249481,0.222809,0.18399,0.128632,0.0600281,-0.0182495,-0.0988464,-0.174164,-0.235748,-0.281891,-0.308411,-0.318542,-0.316986,-0.312775,-0.314484,-0.324158,-0.347229,-0.379364,-0.41272,-0.446564,-0.471039,-0.485992,-0.486938,-0.472748,-0.443451,-0.401184,-0.354553,-0.314636,-0.289551,-0.285645,-0.302948,-0.335693,-0.37326,-0.397614,-0.393402,-0.349579,-0.257416,-0.12085,0.0470886,0.222504,0.384338,0.518127,0.606384,0.642242,0.625702,0.562561,0.466034,0.359406,0.27301,0.229034,0.24231,0.316528,0.433777,0.569427,0.698517,0.793945,0.835724,0.804565,0.701477,0.533722,0.318085,0.0954285,-0.101196,-0.24823,-0.331635,-0.352539,-0.321045,-0.253693,-0.168701,-0.0834045,-0.0218201,0.000152588,-0.0299377,-0.111328,-0.229828,-0.366089,-0.492706,-0.590149,-0.643494,-0.649719,-0.607635,-0.527649,-0.421448,-0.307159,-0.200684,-0.119598,-0.0714111,-0.054718,-0.0631409,-0.0863953,-0.115387,-0.138611,-0.150635,-0.147034,-0.12677,-0.0870056,-0.0324402,0.0310364,0.0935669,0.149231,0.190521,0.21579,0.226562,0.225006,0.218597,0.209412,0.2005,0.194427,0.193512,0.198944,0.213287,0.237793,0.269592,0.306061,0.342255,0.37265,0.39151,0.397278,0.389343,0.370483,0.343353,0.316223,0.291718,0.273651,0.258514,0.240112,0.213135,0.169189,0.109772,0.0385132,-0.0422668,-0.122101,-0.195526,-0.25415,-0.297028,-0.319794,-0.325867,-0.327759,-0.331024,-0.341461,-0.362061,-0.390259,-0.420837,-0.448273,-0.471039,-0.484436,-0.487244,-0.475403,-0.44873,-0.409912,-0.365631,-0.327423,-0.303741,-0.299835,-0.316223,-0.349426,-0.389038,-0.420197,-0.42691,-0.395874,-0.315735,-0.185547,-0.0146484,0.170898,0.345978,0.493164,0.596405,0.647369,0.641144,0.582977,0.4888,0.37326,0.271301,0.210968,0.206909,0.269287,0.388855,0.535889,0.68277,0.800507,0.870209,0.862701,0.778656,0.625244,0.412262,0.176819,-0.0394592,-0.211426,-0.31778,-0.357361,-0.33429,-0.26944,-0.182892,-0.0901184,-0.0163574,0.0210571,0.00857544,-0.0603333,-0.17276,-0.311829,-0.451538,-0.566467,-0.639893,-0.663757,-0.637726,-0.569122,-0.467438,-0.352234,-0.240753,-0.146881,-0.0860596,-0.0594177,-0.0608215,-0.0829468,-0.114441,-0.144073,-0.162781,-0.167603,-0.155762,-0.124878,-0.0765686,-0.0166931,0.0467834,0.106171,0.154205,0.187744,0.206299,0.21347,0.21347,0.210815,0.209076,0.207214,0.20816,0.212982,0.224213,0.24292,0.269135,0.301392,0.335388,0.365784,0.387939,0.397125,0.395874,0.38623,0.369537,0.350342,0.332581,0.315582,0.300293,0.27832,0.246368,0.197235,0.131744,0.053009,-0.033844,-0.12146,-0.198639,-0.25882,-0.299042,-0.320099,-0.324158,-0.320099,-0.318085,-0.321655,-0.336487,-0.362671,-0.396667,-0.433929,-0.468384,-0.494904,-0.508606,-0.505493,-0.485535,-0.450623,-0.405853,-0.359406,-0.323853,-0.304657,-0.307159,-0.329926,-0.365631,-0.39978,-0.414429,-0.395874,-0.332733,-0.220001,-0.0665894,0.108521,0.28067,0.436584,0.556488,0.624634,0.637085,0.597168,0.511719,0.402435,0.301544,0.232483,0.212067,0.2565,0.359406,0.495667,0.646149,0.776184,0.859741,0.872223,0.807678,0.671875,0.473053,0.24231,0.020752,-0.164337,-0.290466,-0.34787,-0.340057,-0.281586,-0.192719,-0.0955811,-0.0126343,0.0357056,0.0346069,-0.0227661,-0.130188,-0.269287,-0.417236,-0.545563,-0.635529,-0.675293,-0.660156,-0.598114,-0.500183,-0.384491,-0.266632,-0.165588,-0.0935669,-0.0576782,-0.0528564,-0.0732727,-0.108215,-0.143127,-0.169006,-0.180725,-0.174957,-0.147491,-0.101349,-0.0419312,0.0249329,0.087616,0.139862,0.177277,0.198181,0.206116,0.204407,0.200195,0.195831,0.193817,0.197235,0.204895,0.219238,0.240753,0.269592,0.304199,0.340851,0.373444,0.395874,0.404785,0.399933,0.38623,0.36673,0.347717,0.331482,0.320251,0.308258,0.293457,0.264923,0.220001,0.157013,0.078125,-0.0090332,-0.101349,-0.184601,-0.254944,-0.30249,-0.328827,-0.335846,-0.330566,-0.324158,-0.322754,-0.328827,-0.347382,-0.373596,-0.404297,-0.435486,-0.464478,-0.485992,-0.494568,-0.485077,-0.459503,-0.420044,-0.37796,-0.343018,-0.322449,-0.318695,-0.332886,-0.360321,-0.387939,-0.40274,-0.388245,-0.336151,-0.237793,-0.0975952,0.0692139,0.237305,0.391205,0.512207,0.584717,0.607941,0.582214,0.510956,0.412567,0.313721,0.238708,0.210022,0.242615,0.338501,0.470734,0.618378,0.751221,0.841034,0.868011,0.821869,0.704437,0.522949,0.300629,0.0773315,-0.116486,-0.255249,-0.325867,-0.329926,-0.282532,-0.20224,-0.108215,-0.0227661,0.0352478,0.0483398,0.00482178,-0.0905762,-0.226227,-0.376251,-0.514526,-0.616364,-0.66983,-0.669525,-0.621338,-0.534821,-0.424896,-0.306549,-0.198181,-0.116638,-0.0681458,-0.0544128,-0.0675049,-0.0980835,-0.134247,-0.162933,-0.180542,-0.180389,-0.160278,-0.120514,-0.0646973,0.00125122,0.0675049,0.126282,0.172302,0.201904,0.216431,0.219543,0.21579,0.21048,0.204895,0.202087,0.202698,0.208923,0.222656,0.24588,0.276459,0.313232,0.349579,0.379822,0.399323,0.405548,0.400085,0.384979,0.363464,0.341156,0.319,0.301392,0.283142,0.257751,0.219543,0.167145,0.0986938,0.0182495,-0.0686035,-0.150146,-0.221405,-0.275055,-0.310913,-0.329315,-0.333832,-0.331635,-0.329773,-0.333679,-0.347076,-0.369843,-0.397614,-0.428162,-0.454193,-0.473846,-0.482422,-0.478363,-0.461365,-0.430664,-0.392151,-0.355499,-0.325867,-0.314819,-0.323395,-0.349579,-0.380615,-0.400879,-0.396973,-0.357849,-0.275818,-0.152344,0.00622559,0.175568,0.339142,0.479004,0.575806,0.62323,0.612457,0.553223,0.46106,0.357697,0.268951,0.217499,0.21814,0.280487,0.392609,0.534821,0.679504,0.794586,0.857086,0.845398,0.759033,0.602936,0.395874,0.1698,-0.0386658,-0.204559,-0.309021,-0.346313,-0.323212,-0.253052,-0.159027,-0.0628357,0.0140381,0.0511475,0.0360107,-0.0343018,-0.151398,-0.294861,-0.440308,-0.563202,-0.643799,-0.673584,-0.649414,-0.580017,-0.478058,-0.361725,-0.24823,-0.154663,-0.0909119,-0.0603333,-0.0600281,-0.0818481,-0.116486,-0.149384,-0.174469,-0.183533,-0.174774,-0.144379,-0.0958862,-0.033844,0.0327454,0.0960388,0.150146,0.188812,0.213623,0.223907,0.22467,0.220795,0.215179,0.21048,0.209869,0.215027,0.227478,0.248383,0.279114,0.314819,0.352844,0.386688,0.409912,0.418488,0.412415,0.395416,0.369537,0.343658,0.32074,0.302185,0.286591,0.265076,0.233582,0.184143,0.118652,0.0400696,-0.0458374,-0.131592,-0.209259,-0.272247,-0.315735,-0.338806,-0.345367,-0.341309,-0.338654,-0.341309,-0.353149,-0.374359,-0.400238,-0.426605,-0.449829,-0.468231,-0.478821,-0.476807,-0.459961,-0.430328,-0.391663,-0.354889,-0.327759,-0.317139,-0.324158,-0.347534,-0.376404,-0.401031,-0.405396,-0.379364,-0.311829,-0.198944,-0.0453796,0.127869,0.298584,0.447479,0.559296,0.621643,0.628998,0.587677,0.506592,0.400726,0.300293,0.230774,0.21048,0.252747,0.353149,0.489594,0.635376,0.760895,0.843536,0.85849,0.798462,0.668579,0.477264,0.250732,0.0297852,-0.155151,-0.284241,-0.34613,-0.341461,-0.288757,-0.203796,-0.107269,-0.0218201,0.0333557,0.0422668,-0.00421143,-0.103363,-0.238403,-0.38559,-0.519379,-0.616516,-0.665314,-0.660645,-0.608398,-0.517822,-0.404449,-0.287994,-0.18335,-0.106659,-0.0639343,-0.0552063,-0.0731201,-0.107422,-0.14624,-0.176361,-0.193176,-0.191467,-0.167786,-0.123322,-0.0632935,0.00497437,0.0740662,0.134399,0.180542,0.209412,0.223114,0.22406,0.219543,0.212372,0.206604,0.203949,0.206299,0.215027,0.232025,0.258362,0.292053,0.331177,0.36969,0.40274,0.424744,0.43222,0.42691,0.409149,0.383575,0.355652,0.327271,0.301239,0.276764,0.247131,0.207672,0.153595,0.0860596,0.00686646,-0.076416,-0.156555,-0.226868,-0.281281,-0.317291,-0.336334,-0.341461,-0.341614,-0.343811,-0.351929,-0.36969,-0.396362,-0.425812,-0.455139,-0.478363,-0.493347,-0.497375,-0.486328,-0.462921,-0.426453,-0.382172,-0.341949,-0.313232,-0.302643,-0.312622,-0.338501,-0.373596,-0.402893,-0.413177,-0.387939,-0.318695,-0.204559,-0.0497437,0.129425,0.31012,0.46933,0.586884,0.653168,0.66156,0.617767,0.535278,0.427063,0.322601,0.249176,0.221558,0.256653,0.352234,0.488647,0.637726,0.766052,0.850555,0.866913,0.806885,0.678558,0.48584,0.257751,0.033844,-0.158875,-0.295319,-0.362061,-0.361908,-0.308258,-0.226562,-0.131897,-0.0483398,0.00546265,0.0169983,-0.0249329,-0.117889,-0.248535,-0.391815,-0.5242,-0.620087,-0.666565,-0.661255,-0.610107,-0.522339,-0.413177,-0.299225,-0.194733,-0.115692,-0.0698547,-0.0564575,-0.069397,-0.0988464,-0.131439,-0.158569,-0.172607,-0.170898,-0.148285,-0.109314,-0.0552063,0.00796509,0.0715637,0.129883,0.174164,0.203949,0.21875,0.2211,0.217194,0.212372,0.209564,0.208771,0.21283,0.220459,0.236389,0.260223,0.292664,0.329926,0.366577,0.397919,0.416168,0.420685,0.413513,0.39743,0.376556,0.35379,0.331177,0.31012,0.288605,0.260864,0.223907,0.171051,0.104767,0.0269775,-0.0601807,-0.142822,-0.215942,-0.270691,-0.307312,-0.326508,-0.332428,-0.334442,-0.336151,-0.344421,-0.361908,-0.388855,-0.419128,-0.449677,-0.475861,-0.493164,-0.497559,-0.490387,-0.469482,-0.43689,-0.395721,-0.356903,-0.324951,-0.309204,-0.311523,-0.330719,-0.362976,-0.395264,-0.413971,-0.40509,-0.358002,-0.270203,-0.135193,0.033844,0.217194,0.391815,0.539185,0.637085,0.679504,0.664703,0.601074,0.504089,0.395416,0.306396,0.25058,0.247284,0.306549,0.416626,0.556,0.69635,0.805786,0.861786,0.844299,0.754669,0.598114,0.386383,0.159363,-0.0538025,-0.224823,-0.335693,-0.378876,-0.3591,-0.296722,-0.209076,-0.117401,-0.047699,-0.0093689,-0.0210571,-0.082489,-0.187744,-0.321198,-0.455292,-0.569122,-0.641144,-0.6633,-0.637238,-0.568634,-0.471039,-0.360962,-0.252441,-0.160278,-0.0966797,-0.0631409,-0.0584717,-0.0751648,-0.1026,-0.12973,-0.14624,-0.15094,-0.140167,-0.110535,-0.069397,-0.0160522,0.041626,0.0982361,0.147491,0.184601,0.20752,0.217194,0.215942,0.213135,0.210327,0.209564,0.212524,0.218445,0.228577,0.244019,0.266144,0.294678,0.326965,0.358765,0.384979,0.401031,0.406647,0.401184,0.388397,0.370789,0.35144,0.33197,0.309814,0.28595,0.254303,0.209717,0.151855,0.0791931,-0.0015564,-0.0857544,-0.162933,-0.229218,-0.27832,-0.309021,-0.322449,-0.325409,-0.324615,-0.327118,-0.338654,-0.360657,-0.39151,-0.426758,-0.457153,-0.48288,-0.498627,-0.501923,-0.494415,-0.472748,-0.437988,-0.39621,-0.354095,-0.322144,-0.306244,-0.309814,-0.330231,-0.359558,-0.389954,-0.408508,-0.400726,-0.354248,-0.263672,-0.128632,0.0417786,0.226868,0.405701,0.552734,0.651428,0.694458,0.682312,0.621826,0.526703,0.418488,0.32431,0.263519,0.256012,0.310913,0.415375,0.551178,0.687134,0.793182,0.844635,0.829346,0.741882,0.588745,0.381073,0.155304,-0.057373,-0.230927,-0.343811,-0.388855,-0.37326,-0.316528,-0.234497,-0.149689,-0.08078,-0.042572,-0.046936,-0.100891,-0.197693,-0.321655,-0.448578,-0.557251,-0.624786,-0.643799,-0.619019,-0.554626,-0.46463,-0.361115,-0.257416,-0.168854,-0.10321,-0.0670471,-0.0572205,-0.0684509,-0.0887146,-0.108215,-0.120056,-0.122711,-0.111786,-0.0882568,-0.0539551,-0.0101318,0.0396118,0.0899658,0.135345,0.170105,0.193329,0.204712,0.207062,0.207672,0.208923,0.212219,0.219055,0.225769,0.235291,0.247437,0.264587,0.285797,0.310913,0.337402,0.359406,0.375916,0.386047,0.390411,0.389496,0.382172,0.368439,0.349274,0.325562,0.295929,0.259613,0.215942,0.16217,0.0955811,0.0174561,-0.0645447,-0.142365,-0.208771,-0.259613,-0.295013,-0.315735,-0.328217,-0.33493,-0.339142,-0.347076,-0.362671,-0.385284,-0.415833,-0.448578,-0.477417,-0.496307,-0.502228,-0.495209,-0.476013,-0.446075,-0.410065,-0.367981,-0.327911,-0.299042,-0.286285,-0.29187,-0.313721,-0.346466,-0.379059,-0.394318,-0.379059,-0.324158,-0.223907,-0.08078,0.0935669,0.282532,0.46167,0.606232,0.695557,0.730011,0.707733,0.636475,0.531372,0.417389,0.321991,0.257751,0.25058,0.308105,0.412109,0.547607,0.681702,0.784454,0.832001,0.808777,0.71582,0.55368,0.340546,0.114136,-0.10025,-0.273163,-0.383423,-0.428162,-0.414124,-0.357513,-0.273315,-0.186157,-0.114746,-0.0718689,-0.0736084,-0.120514,-0.207855,-0.32135,-0.4375,-0.536377,-0.599365,-0.620728,-0.603271,-0.546509,-0.464966,-0.366882,-0.265381,-0.175568,-0.106323,-0.0600281,-0.037262,-0.0322876,-0.0394592,-0.0495911,-0.0608215,-0.0709534,-0.0726624,-0.0648499,-0.0480347,-0.0180969,0.0212097,0.0661011,0.110535,0.151245,0.184753,0.208313,0.22406,0.235901,0.243073,0.248383,0.25119,0.251038,0.251984,0.254761,0.262878,0.277527,0.298889,0.324463,0.348785,0.369385,0.382019,0.387451,0.382477,0.372345,0.356445,0.33725,0.314026,0.286102,0.250092,0.204102,0.146576,0.0756226,-0.00592041,-0.0904236,-0.170563,-0.239807,-0.29422,-0.327423,-0.342712,-0.344421,-0.341003,-0.339142,-0.343018,-0.358154,-0.381683,-0.411621,-0.444855,-0.474457,-0.496918,-0.507843,-0.503632,-0.484131,-0.448578,-0.403381,-0.352844,-0.306061,-0.2724,-0.254944,-0.256653,-0.277527,-0.312164,-0.34848,-0.369843,-0.362518,-0.31839,-0.229034,-0.0918274,0.0812378,0.268799,0.449829,0.602783,0.707886,0.756531,0.745148,0.675446,0.567719,0.445465,0.339142,0.263184,0.240265,0.280975,0.370148,0.495819,0.629303,0.742035,0.804565,0.799408,0.722229,0.57489,0.370941,0.146423,-0.0725098,-0.255859,-0.384491,-0.452332,-0.460754,-0.419891,-0.3396,-0.248535,-0.165588,-0.105865,-0.0862122,-0.111786,-0.178833,-0.27771,-0.38623,-0.487091,-0.561157,-0.602173,-0.604675,-0.565826,-0.497223,-0.40741,-0.304993,-0.206604,-0.120361,-0.0534668,-0.00967407,0.0124817,0.0155945,0.006073,-0.0093689,-0.0314941,-0.050354,-0.0609741,-0.0603333,-0.0428772,-0.00982666,0.0347595,0.0860596,0.136108,0.18399,0.219849,0.244781,0.261322,0.266785,0.266144,0.262268,0.254303,0.248077,0.244629,0.248077,0.259308,0.278931,0.304199,0.330566,0.352844,0.370941,0.378723,0.379517,0.374207,0.363617,0.346466,0.3237,0.292969,0.254303,0.204712,0.144836,0.0746765,-0.00421143,-0.0857544,-0.164337,-0.234497,-0.290466,-0.326355,-0.345215,-0.351746,-0.351929,-0.351135,-0.354248,-0.365173,-0.382172,-0.405853,-0.434387,-0.462158,-0.485229,-0.497864,-0.495361,-0.478058,-0.444061,-0.400391,-0.348785,-0.29718,-0.253693,-0.223602,-0.213776,-0.220306,-0.246033,-0.284393,-0.321991,-0.34317,-0.336487,-0.290009,-0.194733,-0.0487976,0.129578,0.32074,0.505341,0.654083,0.752167,0.789886,0.7659,0.682159,0.561157,0.428009,0.309021,0.226562,0.202698,0.247284,0.342865,0.475555,0.613251,0.725647,0.787231,0.780548,0.701324,0.547607,0.336487,0.102448,-0.127228,-0.318848,-0.452179,-0.519836,-0.521545,-0.470581,-0.381378,-0.276917,-0.178986,-0.104614,-0.0739136,-0.091217,-0.155914,-0.257111,-0.371552,-0.480072,-0.562256,-0.609192,-0.612915,-0.573944,-0.499573,-0.398071,-0.281281,-0.16745,-0.0673523,0.00686646,0.0519104,0.0676575,0.0604858,0.0388184,0.00842285,-0.0261841,-0.0539551,-0.0678406,-0.0659485,-0.0431824,-0.00140381,0.0519104,0.110718,0.165588,0.211884,0.244629,0.262878,0.271149,0.268799,0.262421,0.252594,0.243073,0.237305,0.238861,0.247437,0.26413,0.287506,0.312469,0.335236,0.351929,0.360809,0.360809,0.352997,0.340363,0.323212,0.30249,0.281586,0.2565,0.225769,0.185547,0.13269,0.0664368,-0.0137329,-0.0991516,-0.184448,-0.261627,-0.322601,-0.363281,-0.38324,-0.387634,-0.380463,-0.367676,-0.35675,-0.354095,-0.36142,-0.379974,-0.406189,-0.434082,-0.457458,-0.470245,-0.469025,-0.451538,-0.41803,-0.372192,-0.317291,-0.259766,-0.210663,-0.178528,-0.170258,-0.182281,-0.212524,-0.254944,-0.297485,-0.324005,-0.325409,-0.288605,-0.206299,-0.0748291,0.0971375,0.290649,0.482727,0.641602,0.747162,0.789581,0.769775,0.689941,0.574402,0.440643,0.318237,0.225159,0.181335,0.206909,0.290009,0.416779,0.560699,0.680908,0.754822,0.7612,0.694641,0.558502,0.362061,0.133942,-0.0965271,-0.30249,-0.454651,-0.542755,-0.559601,-0.514374,-0.427216,-0.318085,-0.214386,-0.132843,-0.0865479,-0.0860596,-0.131439,-0.217834,-0.327271,-0.437195,-0.526398,-0.581116,-0.592194,-0.559753,-0.4888,-0.391815,-0.282227,-0.169495,-0.0703125,0.00918579,0.0608215,0.0830994,0.0820007,0.0651855,0.0380554,0.00872803,-0.0173035,-0.0327454,-0.0360107,-0.0233765,0.006073,0.047699,0.0971375,0.147491,0.190857,0.224213,0.244476,0.253204,0.255402,0.252289,0.247437,0.244019,0.241058,0.243073,0.24884,0.261017,0.277374,0.293915,0.309021,0.317139,0.319489,0.314178,0.305908,0.295319,0.286743,0.276611,0.266327,0.25354,0.230774,0.198639,0.151245,0.0871582,0.00872803,-0.0812378,-0.170563,-0.255096,-0.324615,-0.370941,-0.396362,-0.400238,-0.389954,-0.370789,-0.350037,-0.337891,-0.334137,-0.341614,-0.358154,-0.378723,-0.400879,-0.415222,-0.42099,-0.411957,-0.386688,-0.34848,-0.298889,-0.246185,-0.198486,-0.161987,-0.143921,-0.141876,-0.15451,-0.183197,-0.222198,-0.263184,-0.292511,-0.297485,-0.263977,-0.185852,-0.0562744,0.110382,0.290466,0.464172,0.609497,0.707733,0.753876,0.740479,0.670776,0.558044,0.423645,0.29953,0.205658,0.165131,0.189758,0.266937,0.379974,0.503784,0.612457,0.684814,0.695404,0.639435,0.51532,0.329926,0.110382,-0.111786,-0.306702,-0.450928,-0.534821,-0.554779,-0.522491,-0.44812,-0.349121,-0.250092,-0.16449,-0.110382,-0.098999,-0.131287,-0.200684,-0.289246,-0.379517,-0.455597,-0.504883,-0.519989,-0.498169,-0.443298,-0.365173,-0.269745,-0.167603,-0.0746765,0.00531006,0.0629883,0.0986938,0.113983,0.110382,0.0954285,0.0698547,0.041626,0.0168457,-0.000793457,-0.00466919,0.00656128,0.0322876,0.0673523,0.106018,0.14502,0.18103,0.208771,0.231537,0.248077,0.256012,0.25946,0.257111,0.252289,0.248077,0.245575,0.246033,0.24823,0.252899,0.256958,0.25946,0.262878,0.26413,0.262573,0.25882,0.254761,0.249939,0.244965,0.238098,0.224365,0.19693,0.152802,0.087616,0.00637817,-0.0867004,-0.180084,-0.266479,-0.338043,-0.387299,-0.410858,-0.409302,-0.387451,-0.35379,-0.317139,-0.289398,-0.276459,-0.278168,-0.295471,-0.320587,-0.34848,-0.37265,-0.386993,-0.387451,-0.369843,-0.335541,-0.287201,-0.23233,-0.178528,-0.13504,-0.106323,-0.09729,-0.105408,-0.13208,-0.171356,-0.215485,-0.254944,-0.27832,-0.271301,-0.222656,-0.128326,0.00686646,0.169342,0.34552,0.508942,0.635223,0.71521,0.734711,0.696045,0.607941,0.487396,0.358154,0.245575,0.168091,0.143433,0.172607,0.249939,0.360657,0.47525,0.571777,0.622894,0.615265,0.545715,0.407593,0.223114,0.0154419,-0.189758,-0.36377,-0.492401,-0.560059,-0.56427,-0.520294,-0.43454,-0.329926,-0.226868,-0.139709,-0.090271,-0.0750122,-0.104309,-0.168854,-0.250885,-0.338654,-0.410553,-0.455139,-0.470093,-0.445923,-0.389954,-0.309204,-0.211273,-0.111786,-0.0154419,0.0648499,0.120056,0.152649,0.160126,0.147491,0.120209,0.0799866,0.0397644,0.0045166,-0.0193481,-0.0275879,-0.0184021,0.00778198,0.0458374,0.088562,0.132996,0.17215,0.204102,0.227966,0.241669,0.249329,0.249176,0.244629,0.237,0.227173,0.21875,0.21283,0.208923,0.209412,0.213623,0.219055,0.22702,0.23465,0.242767,0.249786,0.25415,0.256165,0.250397,0.235596,0.208008,0.162323,0.0999451,0.0226135,-0.0645447,-0.153259,-0.237,-0.306061,-0.354248,-0.379211,-0.378723,-0.360016,-0.328979,-0.292664,-0.262878,-0.245575,-0.243561,-0.257751,-0.281586,-0.309814,-0.335846,-0.353302,-0.356903,-0.343811,-0.314331,-0.270538,-0.218292,-0.166046,-0.120361,-0.0888672,-0.0734253,-0.0746765,-0.0966797,-0.132385,-0.178375,-0.227966,-0.268036,-0.287048,-0.276123,-0.22641,-0.129883,0.00701904,0.169647,0.3396,0.501129,0.622742,0.694305,0.710846,0.6633,0.567566,0.4422,0.310913,0.198334,0.119446,0.094635,0.125366,0.206116,0.324158,0.447021,0.548065,0.603577,0.595612,0.523743,0.384827,0.198639,-0.006073,-0.20752,-0.376862,-0.498627,-0.559753,-0.558807,-0.503632,-0.408661,-0.29953,-0.193024,-0.106171,-0.0552063,-0.0413208,-0.0697021,-0.130829,-0.213623,-0.29718,-0.367493,-0.414276,-0.423798,-0.399323,-0.345367,-0.267242,-0.17807,-0.0852966,0.00341797,0.0765686,0.128479,0.156067,0.161224,0.147491,0.117096,0.0770264,0.0352478,-0.00219727,-0.0302429,-0.0430298,-0.0402222,-0.0195007,0.0121765,0.0531616,0.0986938,0.139252,0.175262,0.205353,0.224823,0.236694,0.239197,0.232483,0.220154,0.204407,0.189301,0.178375,0.173218,0.176819,0.186646,0.199585,0.214081,0.225616,0.235138,0.238403,0.238708,0.232788,0.223907,0.205505,0.178833,0.139404,0.0887146,0.0275879,-0.0424194,-0.11615,-0.187103,-0.249786,-0.297028,-0.325714,-0.333832,-0.324951,-0.302338,-0.27301,-0.246979,-0.230621,-0.224213,-0.22998,-0.243073,-0.262573,-0.279266,-0.29187,-0.296265,-0.287689,-0.266632,-0.234344,-0.197876,-0.160126,-0.125824,-0.1026,-0.0887146,-0.0865479,-0.094635,-0.117706,-0.152649,-0.195679,-0.240906,-0.274414,-0.284882,-0.269897,-0.21814,-0.12442,0.00576782,0.157166,0.319794,0.470734,0.585022,0.652374,0.663452,0.612305,0.51828,0.401489,0.283783,0.182434,0.115082,0.0943298,0.124725,0.199738,0.308411,0.421143,0.512207,0.556335,0.543854,0.470734,0.338654,0.168549,-0.0184021,-0.198944,-0.35379,-0.466675,-0.525604,-0.527313,-0.476196,-0.389343,-0.286591,-0.185394,-0.102753,-0.0487976,-0.0285339,-0.0445862,-0.091217,-0.158875,-0.232178,-0.298737,-0.346466,-0.362518,-0.346771,-0.303436,-0.237152,-0.160278,-0.0762329,0.00561523,0.0746765,0.126465,0.156403,0.162323,0.148438,0.114594,0.0704651,0.0230713,-0.0204163,-0.0538025,-0.0720215,-0.0731201,-0.0567627,-0.0272827,0.014801,0.0598755,0.102905,0.140808,0.170898,0.191315,0.202545,0.2052,0.199738,0.190521,0.180389,0.172913,0.170258,0.173553,0.183197,0.196625,0.209869,0.220001,0.225464,0.227631,0.227478,0.225311,0.222504,0.218292,0.210663,0.192566,0.163574,0.121002,0.0625305,-0.00747681,-0.0829468,-0.159363,-0.227814,-0.281281,-0.314819,-0.328369,-0.322754,-0.301086,-0.269745,-0.238708,-0.212677,-0.199432,-0.19693,-0.20752,-0.224518,-0.242615,-0.259766,-0.270203,-0.267395,-0.253845,-0.22937,-0.198639,-0.164978,-0.132843,-0.108368,-0.0932312,-0.0887146,-0.0966797,-0.11911,-0.156067,-0.204895,-0.258514,-0.302643,-0.327423,-0.321198,-0.274719,-0.181793,-0.0484924,0.110077,0.279724,0.438904,0.563812,0.641296,0.660339,0.618378,0.527649,0.406494,0.281433,0.16684,0.0899658,0.0636292,0.0915222,0.168854,0.282379,0.405701,0.51001,0.571442,0.574249,0.516418,0.391815,0.221863,0.0265198,-0.164978,-0.328217,-0.450775,-0.512512,-0.515015,-0.465729,-0.376862,-0.270203,-0.161835,-0.0676575,-0.00466919,0.0210571,0.00671387,-0.0436707,-0.116486,-0.200195,-0.273651,-0.327911,-0.351746,-0.346466,-0.31012,-0.251984,-0.176514,-0.0941772,-0.0127869,0.0564575,0.109314,0.137207,0.141724,0.12381,0.0871582,0.0397644,-0.0121765,-0.0598755,-0.0960388,-0.116638,-0.120361,-0.105103,-0.0746765,-0.031189,0.0151367,0.0626831,0.106018,0.143768,0.173553,0.19458,0.206299,0.209717,0.206604,0.198334,0.189606,0.183685,0.182281,0.187103,0.197388,0.211578,0.226074,0.239197,0.249786,0.256958,0.258209,0.255859,0.247589,0.233246,0.209564,0.177277,0.134247,0.0796814,0.0154419,-0.0559692,-0.128326,-0.197876,-0.255096,-0.294373,-0.31308,-0.312469,-0.29361,-0.26413,-0.230438,-0.202087,-0.182281,-0.176025,-0.182739,-0.198944,-0.221405,-0.242615,-0.256653,-0.25946,-0.246826,-0.223602,-0.192719,-0.158569,-0.130493,-0.108673,-0.0968323,-0.0966797,-0.107727,-0.130676,-0.168091,-0.217041,-0.270355,-0.319183,-0.35379,-0.362823,-0.341003,-0.282074,-0.179138,-0.041626,0.113678,0.279724,0.434875,0.552887,0.622894,0.637726,0.5961,0.505188,0.392151,0.278168,0.176178,0.111938,0.0991516,0.131744,0.209259,0.318695,0.432068,0.527008,0.574738,0.56958,0.504547,0.378418,0.210815,0.0238647,-0.156067,-0.308563,-0.422546,-0.479614,-0.481171,-0.437836,-0.354095,-0.254761,-0.153595,-0.0642395,-0.00717163,0.0163574,0.00311279,-0.0444336,-0.112122,-0.188965,-0.25946,-0.308563,-0.333374,-0.327271,-0.295319,-0.241364,-0.168701,-0.0940247,-0.0199585,0.0438232,0.0884094,0.108978,0.105865,0.0812378,0.0419312,-0.00747681,-0.0581665,-0.103546,-0.136902,-0.153412,-0.152649,-0.133301,-0.0977478,-0.0492859,0.00234985,0.0527039,0.0991516,0.139557,0.171967,0.193817,0.205963,0.21048,0.207214,0.201141,0.196472,0.198181,0.208313,0.224518,0.245728,0.267242,0.284698,0.294373,0.296265,0.289703,0.276306,0.256653,0.234039,0.209564,0.181946,0.152954,0.118195,0.0751648,0.0233765,-0.036499,-0.101959,-0.167297,-0.226074,-0.271301,-0.297974,-0.307617,-0.29953,-0.277374,-0.248077,-0.215942,-0.191772,-0.176025,-0.17276,-0.180389,-0.195221,-0.211121,-0.224213,-0.228577,-0.222198,-0.205658,-0.182434,-0.157013,-0.13504,-0.121613,-0.114746,-0.117249,-0.129089,-0.148743,-0.176025,-0.214081,-0.258209,-0.303436,-0.34256,-0.368286,-0.369995,-0.343964,-0.281433,-0.177917,-0.0441284,0.112579,0.279114,0.430664,0.549011,0.622894,0.642853,0.603882,0.525757,0.425812,0.316986,0.219055,0.156555,0.137054,0.160126,0.229218,0.327576,0.43158,0.515472,0.555847,0.547424,0.480713,0.360504,0.200989,0.0244751,-0.146088,-0.29361,-0.403687,-0.459961,-0.46637,-0.4263,-0.351746,-0.263824,-0.171661,-0.0921631,-0.0379028,-0.0107727,-0.0184021,-0.053009,-0.108215,-0.174164,-0.232635,-0.275818,-0.294067,-0.287842,-0.263336,-0.217346,-0.163574,-0.104462,-0.0467834,0.00219727,0.0374146,0.0534668,0.0483398,0.0286865,-0.00390625,-0.041626,-0.0793762,-0.113983,-0.135345,-0.144226,-0.14032,-0.121155,-0.090271,-0.0498962,-0.00671387,0.0357056,0.0778198,0.117249,0.153748,0.185089,0.210663,0.229675,0.242767,0.249634,0.254944,0.26178,0.270844,0.282227,0.294067,0.303589,0.307465,0.306244,0.296417,0.277527,0.252899,0.222504,0.190063,0.156219,0.126282,0.0997925,0.0728149,0.043335,0.00857544,-0.0344543,-0.0840454,-0.140656,-0.196472,-0.247589,-0.287506,-0.310272,-0.314484,-0.299377,-0.267242,-0.227325,-0.185242,-0.150787,-0.128784,-0.121918,-0.128784,-0.146088,-0.165741,-0.181335,-0.189606,-0.188354,-0.17572,-0.154663,-0.132843,-0.114899,-0.101654,-0.0996399,-0.108063,-0.129089,-0.159027,-0.195526,-0.238403,-0.283142,-0.324615,-0.360168,-0.382782,-0.382935,-0.361908,-0.317139,-0.232483,-0.107117,0.0450745,0.207062,0.371399,0.510315,0.605133,0.655029,0.654724,0.603729,0.52063,0.421753,0.318237,0.226227,0.171204,0.160767,0.192871,0.265533,0.354401,0.434875,0.488342,0.499115,0.463562,0.382477,0.259308,0.106171,-0.0575256,-0.212067,-0.341461,-0.432831,-0.470734,-0.464813,-0.421448,-0.354889,-0.27771,-0.198334,-0.125214,-0.0704651,-0.0383606,-0.0343018,-0.0539551,-0.0907593,-0.137665,-0.18103,-0.209564,-0.219696,-0.214691,-0.19754,-0.171204,-0.136749,-0.0974426,-0.0587769,-0.0247803,0.000610352,0.0135803,0.0140381,0.00265503,-0.0176086,-0.0405273,-0.0667419,-0.0916748,-0.110535,-0.121613,-0.123962,-0.114136,-0.0937195,-0.0637817,-0.026825,0.0180969,0.0681458,0.120209,0.175262,0.222351,0.259918,0.286438,0.301697,0.307617,0.307159,0.304047,0.300629,0.295776,0.293274,0.289398,0.285797,0.277863,0.264923,0.240753,0.208466,0.171204,0.131592,0.0924683,0.0583191,0.0288391,0.00311279,-0.0223083,-0.0509949,-0.0838928,-0.122559,-0.163879,-0.205658,-0.246033,-0.277374,-0.29361,-0.292511,-0.271149,-0.235443,-0.190704,-0.14563,-0.108063,-0.0821838,-0.0718689,-0.0748291,-0.0884094,-0.106812,-0.123016,-0.13504,-0.139557,-0.134247,-0.120361,-0.106812,-0.0986938,-0.0996399,-0.108063,-0.125366,-0.149994,-0.18103,-0.217651,-0.256805,-0.298126,-0.337097,-0.368591,-0.390594,-0.399628,-0.387451,-0.349426,-0.287201,-0.18399,-0.0380554,0.12738,0.295776,0.456238,0.584381,0.663757,0.692902,0.67514,0.610748,0.514374,0.405396,0.295929,0.206757,0.15921,0.157318,0.200195,0.276611,0.358002,0.425659,0.464325,0.462158,0.411957,0.316986,0.182739,0.0198059,-0.14859,-0.30249,-0.427856,-0.507202,-0.533875,-0.514862,-0.457001,-0.374512,-0.278168,-0.175568,-0.0835876,-0.0119934,0.0293274,0.0386658,0.0180969,-0.0247803,-0.0793762,-0.130188,-0.169342,-0.190369,-0.197083,-0.187561,-0.163879,-0.127075,-0.0829468,-0.0369568,0.00186157,0.0272827,0.0366516,0.0299377,0.00762939,-0.0249329,-0.0629883,-0.10321,-0.139252,-0.166046,-0.17807,-0.174469,-0.152802,-0.118042,-0.0725098,-0.0195007,0.0419312,0.105408,0.16745,0.225769,0.269897,0.298584,0.31308,0.317596,0.313721,0.30545,0.29657,0.287048,0.277527,0.271454,0.266785,0.264282,0.258667,0.244476,0.219238,0.185089,0.145325,0.102448,0.0622253,0.0254211,-0.00762939,-0.0385132,-0.0686035,-0.098999,-0.128326,-0.157166,-0.185852,-0.21347,-0.237457,-0.251495,-0.249329,-0.230774,-0.198029,-0.157623,-0.11554,-0.0793762,-0.0541077,-0.0428772,-0.0444336,-0.0569153,-0.0768738,-0.0980835,-0.115692,-0.127075,-0.128326,-0.120361,-0.109131,-0.10025,-0.101044,-0.111633,-0.132385,-0.161835,-0.197388,-0.236206,-0.278473,-0.32074,-0.361115,-0.39447,-0.423492,-0.438599,-0.43454,-0.413666,-0.368286,-0.281891,-0.156219,0.00296021,0.178223,0.363129,0.524689,0.648468,0.730804,0.75592,0.722992,0.644592,0.537628,0.414581,0.295013,0.209564,0.164642,0.163574,0.206451,0.276459,0.350525,0.409149,0.43454,0.419739,0.357361,0.248688,0.104004,-0.0592651,-0.220001,-0.36438,-0.471832,-0.531525,-0.541504,-0.506897,-0.436432,-0.339752,-0.232483,-0.124268,-0.0288391,0.0396118,0.0774841,0.085144,0.0617371,0.0196533,-0.0341492,-0.0848083,-0.122101,-0.147186,-0.157471,-0.152802,-0.137848,-0.111328,-0.0812378,-0.0522461,-0.0285339,-0.0199585,-0.0237122,-0.0419312,-0.0703125,-0.1026,-0.139069,-0.171967,-0.198029,-0.21283,-0.21347,-0.196777,-0.165894,-0.123322,-0.0714111,-0.0112305,0.0528564,0.11911,0.184937,0.243073,0.286285,0.315887,0.332275,0.337555,0.33725,0.33493,0.330719,0.324951,0.319489,0.312775,0.306244,0.296265,0.279419,0.250885,0.208923,0.160767,0.108978,0.0600281,0.0182495,-0.0163574,-0.0439758,-0.065033,-0.0845032,-0.101959,-0.119293,-0.137207,-0.157806,-0.181335,-0.203796,-0.218597,-0.221863,-0.207672,-0.180542,-0.144226,-0.104462,-0.0682983,-0.039917,-0.0221558,-0.0158997,-0.0226135,-0.0389709,-0.0598755,-0.0834045,-0.103546,-0.118958,-0.128326,-0.13736,-0.149048,-0.165436,-0.186646,-0.211273,-0.240265,-0.274414,-0.310608,-0.347534,-0.384644,-0.419586,-0.444855,-0.46106,-0.465576,-0.453583,-0.419434,-0.360809,-0.26474,-0.118042,0.0559692,0.243866,0.431427,0.596252,0.722534,0.80127,0.826538,0.794586,0.710052,0.593597,0.459045,0.327423,0.22998,0.173065,0.157623,0.189606,0.245117,0.305145,0.354248,0.37561,0.360809,0.300781,0.19754,0.0615845,-0.0952759,-0.24884,-0.38324,-0.482422,-0.530609,-0.532166,-0.49115,-0.411621,-0.309814,-0.192108,-0.0756226,0.0230713,0.0952759,0.134247,0.141724,0.117554,0.0697021,0.0102844,-0.0484924,-0.0974426,-0.131897,-0.151703,-0.159515,-0.15451,-0.140808,-0.123505,-0.104614,-0.0933838,-0.0944824,-0.106812,-0.133789,-0.167297,-0.203156,-0.236847,-0.261932,-0.276306,-0.274109,-0.254761,-0.220306,-0.169342,-0.108826,-0.0428772,0.0291443,0.101959,0.173553,0.242157,0.301239,0.34491,0.372803,0.389038,0.393707,0.39386,0.3909,0.38559,0.376556,0.365784,0.353302,0.339294,0.322906,0.297028,0.258362,0.206451,0.147034,0.0843506,0.0235291,-0.0282288,-0.0686035,-0.0977478,-0.116943,-0.129089,-0.137665,-0.141724,-0.144379,-0.149231,-0.158569,-0.169006,-0.175873,-0.174622,-0.158264,-0.131592,-0.0975952,-0.0625305,-0.0316467,-0.00888062,-0.000610352,-0.00360107,-0.0195007,-0.0462952,-0.0793762,-0.114288,-0.146088,-0.171967,-0.193024,-0.209564,-0.225464,-0.241669,-0.257904,-0.276459,-0.299988,-0.331482,-0.365936,-0.400085,-0.435486,-0.461853,-0.480408,-0.492401,-0.48819,-0.459351,-0.410553,-0.328217,-0.201447,-0.0325928,0.156403,0.355957,0.548523,0.709747,0.827332,0.900757,0.913849,0.862854,0.760284,0.623047,0.467438,0.318542,0.206299,0.138153,0.116943,0.140167,0.18634,0.247284,0.299377,0.322754,0.311829,0.252594,0.150635,0.0166931,-0.132843,-0.275055,-0.395721,-0.477753,-0.512207,-0.502533,-0.450287,-0.362213,-0.25058,-0.129089,-0.0113831,0.0860596,0.152496,0.185394,0.18335,0.151245,0.0979309,0.0324402,-0.0327454,-0.0901184,-0.137207,-0.171356,-0.195374,-0.206757,-0.209259,-0.208008,-0.204712,-0.205353,-0.214386,-0.232025,-0.2565,-0.28299,-0.30484,-0.31839,-0.31839,-0.304352,-0.275055,-0.229675,-0.171661,-0.105865,-0.035553,0.036499,0.110718,0.183685,0.252289,0.317932,0.37204,0.412415,0.43985,0.456238,0.463257,0.465118,0.460754,0.44873,0.428162,0.401642,0.370789,0.335999,0.297821,0.250397,0.19397,0.130341,0.0637817,0.000793457,-0.052063,-0.0932312,-0.121155,-0.137848,-0.142517,-0.138458,-0.128326,-0.113831,-0.101959,-0.0975952,-0.100098,-0.110382,-0.117554,-0.119598,-0.111328,-0.0949707,-0.0731201,-0.048645,-0.0286865,-0.0154419,-0.0101318,-0.0169983,-0.0363159,-0.0667419,-0.10791,-0.152802,-0.196625,-0.235596,-0.268036,-0.294067,-0.315887,-0.332428,-0.34491,-0.358307,-0.373749,-0.391815,-0.410858,-0.429871,-0.447815,-0.457947,-0.462006,-0.45575,-0.433777,-0.393707,-0.331482,-0.238403,-0.103546,0.0665894,0.261169,0.461365,0.649872,0.806274,0.916199,0.974182,0.970612,0.902161,0.776947,0.614655,0.438293,0.271149,0.142365,0.0618896,0.0307312,0.0497437,0.0991516,0.166534,0.222809,0.256348,0.254761,0.20752,0.119293,0.00109863,-0.132233,-0.258972,-0.365173,-0.430817,-0.454193,-0.43454,-0.376556,-0.289062,-0.177917,-0.0583191,0.0539551,0.146088,0.204712,0.228577,0.215942,0.174011,0.109924,0.0314941,-0.0489502,-0.12442,-0.189453,-0.241211,-0.280334,-0.306702,-0.321198,-0.327271,-0.32666,-0.324005,-0.324463,-0.328674,-0.336639,-0.342865,-0.342865,-0.333679,-0.310913,-0.274261,-0.224213,-0.161224,-0.0904236,-0.0132446,0.0643921,0.141418,0.215942,0.285797,0.350525,0.407898,0.451874,0.481171,0.49411,0.494415,0.485077,0.46933,0.44873,0.421753,0.389648,0.352844,0.312622,0.271149,0.226715,0.176819,0.120209,0.0597229,-0.00234985,-0.0597229,-0.106964,-0.138763,-0.153259,-0.150787,-0.133148,-0.107269,-0.0767212,-0.044281,-0.0171509,-0.00250244,-0.000152588,-0.0101318,-0.0261841,-0.0417786,-0.0491028,-0.050354,-0.0447388,-0.0380554,-0.0325928,-0.0314941,-0.0407104,-0.057373,-0.0882568,-0.130035,-0.179779,-0.234497,-0.285492,-0.329468,-0.364075,-0.387787,-0.401978,-0.404938,-0.403381,-0.399323,-0.39682,-0.398376,-0.401642,-0.408508,-0.413666,-0.415833,-0.414581,-0.403534,-0.378265,-0.332733,-0.267883,-0.17041,-0.0317993,0.140808,0.333374,0.532318,0.7146,0.857574,0.954712,0.999969,0.979187,0.889374,0.743439,0.56131,0.364227,0.183838,0.0483398,-0.036499,-0.0675049,-0.0452271,0.0127869,0.0927734,0.167603,0.22406,0.243378,0.215485,0.14563,0.0430298,-0.0750122,-0.188354,-0.282684,-0.340363,-0.360321,-0.3396,-0.280823,-0.192108,-0.0809326,0.0310364,0.132996,0.208466,0.245575,0.248688,0.216431,0.153748,0.0695496,-0.0272827,-0.125366,-0.211884,-0.282684,-0.334442,-0.372498,-0.39743,-0.411621,-0.416626,-0.411621,-0.403046,-0.394806,-0.389038,-0.385284,-0.377808,-0.361115,-0.32962,-0.28299,-0.224823,-0.154816,-0.0773315,0.00326538,0.084198,0.161835,0.234344,0.299988,0.355957,0.404449,0.442047,0.467438,0.480225,0.478668,0.466522,0.446564,0.420685,0.391663,0.355652,0.315277,0.272552,0.229034,0.186951,0.144684,0.102448,0.0592651,0.0165405,-0.0213623,-0.0517578,-0.0704651,-0.0762329,-0.0684509,-0.0500488,-0.0243225,0.00671387,0.0388184,0.0675049,0.0857544,0.090271,0.0799866,0.0584717,0.0321045,0.00842285,-0.0112305,-0.0257263,-0.0371094,-0.0478821,-0.0618896,-0.0829468,-0.109467,-0.14563,-0.192566,-0.246033,-0.302795,-0.355957,-0.400574,-0.432373,-0.451385,-0.460114,-0.455902,-0.440948,-0.421448,-0.402283,-0.386047,-0.376068,-0.372192,-0.371552,-0.374054,-0.378571,-0.377808,-0.366882,-0.343353,-0.29953,-0.228424,-0.118347,0.0349121,0.215332,0.414429,0.608093,0.774933,0.900909,0.978241,0.99057,0.931,0.802673,0.621185,0.41507,0.211121,0.0434875,-0.0718689,-0.129425,-0.126465,-0.0700073,0.0230713,0.128937,0.225922,0.294373,0.316528,0.289551,0.218445,0.117554,0.00405884,-0.102448,-0.185852,-0.236847,-0.249481,-0.22171,-0.160431,-0.0708008,0.0308838,0.126465,0.201447,0.241516,0.244019,0.212372,0.14859,0.0581665,-0.0478821,-0.159821,-0.261475,-0.345825,-0.405701,-0.445312,-0.469788,-0.479309,-0.479919,-0.469025,-0.452637,-0.43689,-0.424561,-0.41568,-0.406952,-0.389496,-0.358307,-0.311523,-0.246826,-0.170258,-0.0840454,0.0045166,0.0916748,0.172607,0.245575,0.305908,0.35379,0.388245,0.412109,0.421448,0.420349,0.407898,0.387451,0.36438,0.339752,0.315582,0.291107,0.265686,0.23996,0.216248,0.192413,0.171356,0.146423,0.121307,0.0944824,0.0673523,0.0462952,0.0314941,0.0272827,0.0347595,0.054718,0.085907,0.121155,0.156555,0.185699,0.203949,0.204254,0.188812,0.154358,0.109131,0.0581665,0.00967407,-0.0333557,-0.0708008,-0.102905,-0.134705,-0.165283,-0.200348,-0.236389,-0.278625,-0.32666,-0.374054,-0.422394,-0.458405,-0.483032,-0.495209,-0.490845,-0.476654,-0.449677,-0.417389,-0.386383,-0.36142,-0.344727,-0.333191,-0.329163,-0.328827,-0.336334,-0.349579,-0.358765,-0.354553,-0.332428,-0.289856,-0.21814,-0.113525,0.0282288,0.20285,0.393402,0.579254,0.737671,0.851318,0.913696,0.913544,0.846344,0.716919,0.539185,0.34021,0.149384,-0.000305176,-0.0954285,-0.132538,-0.104767,-0.0277405,0.083252,0.206909,0.316528,0.395111,0.427856,0.409607,0.34613,0.249939,0.136108,0.0263367,-0.0620422,-0.121155,-0.143768,-0.132538,-0.09198,-0.0271301,0.0472412,0.119446,0.17041,0.188354,0.171509,0.120697,0.0450745,-0.0494385,-0.154358,-0.260071,-0.355957,-0.432678,-0.483032,-0.510162,-0.519989,-0.516571,-0.501923,-0.482117,-0.457794,-0.435944,-0.41864,-0.405396,-0.393219,-0.374359,-0.342255,-0.295013,-0.230927,-0.154358,-0.0687561,0.0179443,0.101349,0.177277,0.244171,0.295319,0.332275,0.352081,0.356903,0.35083,0.333038,0.308716,0.282227,0.258057,0.238556,0.225311,0.217834,0.215179,0.216431,0.220459,0.225769,0.230286,0.229218,0.225159,0.215332,0.203796,0.191925,0.184601,0.182739,0.187897,0.200195,0.218597,0.239014,0.258667,0.272552,0.270355,0.251343,0.212067,0.156403,0.0913696,0.0241699,-0.0407104,-0.0991516,-0.149536,-0.194122,-0.233246,-0.267731,-0.299988,-0.331177,-0.366272,-0.404602,-0.442352,-0.476349,-0.499115,-0.508301,-0.504883,-0.488983,-0.460907,-0.423798,-0.382172,-0.343658,-0.312775,-0.294678,-0.289398,-0.295776,-0.311829,-0.333191,-0.355957,-0.374847,-0.384491,-0.377808,-0.35144,-0.292969,-0.192261,-0.0495911,0.12442,0.31076,0.48819,0.643188,0.763397,0.839172,0.858032,0.808289,0.694153,0.531677,0.351288,0.180237,0.0453796,-0.0385132,-0.0687561,-0.0405273,0.0379028,0.154053,0.2883,0.413177,0.504547,0.546204,0.531219,0.466217,0.366577,0.249939,0.13269,0.0296326,-0.0513,-0.101654,-0.114746,-0.09198,-0.0386658,0.0265198,0.0865479,0.123322,0.129272,0.105255,0.0564575,-0.0135803,-0.100891,-0.200043,-0.299683,-0.38623,-0.449829,-0.488983,-0.505188,-0.508606,-0.50238,-0.488647,-0.470428,-0.447968,-0.42926,-0.416779,-0.409912,-0.405243,-0.395416,-0.372345,-0.332581,-0.27301,-0.199585,-0.117401,-0.0330505,0.0458374,0.118195,0.178986,0.22641,0.25882,0.274261,0.273315,0.260864,0.239655,0.215942,0.195831,0.185547,0.184937,0.19397,0.208466,0.228577,0.252899,0.281128,0.307312,0.327911,0.338043,0.339447,0.33429,0.327118,0.319946,0.314026,0.309814,0.308105,0.309967,0.31604,0.323853,0.328827,0.324615,0.302795,0.261627,0.204895,0.132843,0.0572205,-0.0171509,-0.0870056,-0.147491,-0.201294,-0.245575,-0.282227,-0.31076,-0.33493,-0.357697,-0.384338,-0.414764,-0.446869,-0.475555,-0.493805,-0.498962,-0.491943,-0.470734,-0.440002,-0.401184,-0.360321,-0.323547,-0.295013,-0.281433,-0.282532,-0.299377,-0.330719,-0.369385,-0.40976,-0.442963,-0.459503,-0.45871,-0.437195,-0.383881,-0.291565,-0.155304,0.0160522,0.20285,0.380615,0.538391,0.662964,0.747345,0.787079,0.765717,0.685425,0.555847,0.401031,0.250244,0.131439,0.0578613,0.0330505,0.0595703,0.129425,0.232788,0.355042,0.473053,0.564758,0.611206,0.600128,0.538544,0.438293,0.32135,0.204712,0.0999451,0.0173035,-0.0424194,-0.0679932,-0.059082,-0.0199585,0.0354004,0.0890198,0.119904,0.12146,0.0957336,0.0461426,-0.0193481,-0.0994873,-0.188812,-0.280487,-0.362213,-0.423798,-0.462616,-0.477753,-0.48056,-0.475555,-0.464478,-0.454193,-0.44281,-0.436279,-0.43689,-0.442657,-0.450287,-0.452179,-0.442352,-0.41507,-0.368591,-0.303436,-0.22467,-0.140015,-0.0570679,0.0187073,0.0840454,0.135345,0.171509,0.190521,0.195831,0.187408,0.17215,0.153412,0.142059,0.140808,0.152802,0.176178,0.204895,0.237793,0.273163,0.31076,0.350037,0.384033,0.408813,0.421753,0.426605,0.427521,0.42926,0.43158,0.430969,0.424744,0.412872,0.400879,0.389038,0.375763,0.356445,0.321991,0.270996,0.206757,0.135193,0.0636292,-0.00390625,-0.0676575,-0.129578,-0.184937,-0.231842,-0.269135,-0.296082,-0.318085,-0.340546,-0.366882,-0.397919,-0.427856,-0.452179,-0.466034,-0.469177,-0.465881,-0.453094,-0.431915,-0.400879,-0.366425,-0.332886,-0.311066,-0.304352,-0.315125,-0.341003,-0.378265,-0.422394,-0.467438,-0.509552,-0.540741,-0.551971,-0.53949,-0.4935,-0.404602,-0.273804,-0.109772,0.0686035,0.244324,0.406952,0.545563,0.652985,0.715668,0.722229,0.669525,0.56897,0.442047,0.313721,0.207672,0.13736,0.106812,0.121155,0.177124,0.268341,0.382477,0.501282,0.598267,0.654236,0.656128,0.607483,0.522186,0.417236,0.309204,0.204254,0.114746,0.0475464,0.0119934,0.0138855,0.0473938,0.0965271,0.140961,0.163727,0.159027,0.128784,0.0793762,0.0157471,-0.0611267,-0.147827,-0.236389,-0.315887,-0.377014,-0.415985,-0.435181,-0.443756,-0.447968,-0.449829,-0.450928,-0.454193,-0.460449,-0.473206,-0.490204,-0.508148,-0.521881,-0.522949,-0.505493,-0.467773,-0.409149,-0.33725,-0.256653,-0.17572,-0.098999,-0.0296326,0.0293274,0.0736084,0.100891,0.110382,0.10556,0.092926,0.078125,0.0704651,0.0751648,0.0924683,0.11911,0.153748,0.196136,0.245117,0.30014,0.35675,0.405853,0.446075,0.473053,0.493958,0.509552,0.522034,0.530762,0.528412,0.519073,0.504242,0.486786,0.46933,0.447021,0.416321,0.37204,0.315735,0.251038,0.183685,0.117706,0.0544128,-0.00778198,-0.0668945,-0.120209,-0.164642,-0.202087,-0.234344,-0.263031,-0.294373,-0.325562,-0.354401,-0.378571,-0.400574,-0.41803,-0.431122,-0.437683,-0.432678,-0.416626,-0.393555,-0.371704,-0.355194,-0.349884,-0.354401,-0.368744,-0.394318,-0.432373,-0.479919,-0.534485,-0.582214,-0.615875,-0.628998,-0.619324,-0.582672,-0.51236,-0.401642,-0.255249,-0.0862122,0.0843506,0.244324,0.382477,0.493011,0.571777,0.606384,0.592499,0.535736,0.448273,0.351288,0.265839,0.206451,0.179138,0.186951,0.22998,0.299377,0.393066,0.495056,0.588135,0.65332,0.671875,0.644897,0.582672,0.50174,0.417725,0.333679,0.254944,0.188965,0.146576,0.135803,0.153259,0.187561,0.219849,0.232788,0.222809,0.190704,0.142059,0.08078,0.00732422,-0.0743713,-0.15686,-0.231384,-0.290955,-0.333832,-0.361115,-0.381683,-0.398071,-0.413361,-0.429565,-0.44812,-0.470734,-0.499268,-0.527649,-0.554291,-0.574402,-0.582367,-0.574554,-0.547607,-0.501282,-0.439545,-0.368591,-0.296265,-0.226562,-0.163391,-0.108368,-0.0632935,-0.0322876,-0.0155945,-0.0112305,-0.0165405,-0.0246277,-0.0265198,-0.0177612,0.00436401,0.0360107,0.0759277,0.122406,0.175568,0.237946,0.301544,0.362518,0.414917,0.457153,0.493652,0.526093,0.556793,0.581268,0.594696,0.597015,0.5914,0.578613,0.562561,0.541199,0.509247,0.464478,0.408508,0.344574,0.27771,0.212677,0.150787,0.0898132,0.031189,-0.0219727,-0.0684509,-0.109619,-0.142212,-0.173065,-0.203003,-0.234039,-0.263977,-0.293762,-0.322449,-0.346313,-0.368134,-0.384644,-0.394165,-0.39682,-0.392914,-0.386688,-0.379059,-0.376251,-0.381836,-0.39682,-0.423798,-0.462616,-0.508148,-0.558807,-0.607941,-0.648315,-0.672791,-0.680298,-0.663147,-0.611847,-0.522491,-0.395569,-0.248383,-0.094635,0.0506592,0.181335,0.293915,0.38324,0.437836,0.449219,0.41803,0.358307,0.289246,0.231689,0.193512,0.17807,0.188965,0.227814,0.29187,0.378723,0.478668,0.575043,0.647369,0.681213,0.674042,0.634277,0.574738,0.508942,0.438751,0.37204,0.31308,0.272095,0.255096,0.265228,0.291718,0.321198,0.335541,0.326965,0.296722,0.247772,0.186157,0.115082,0.0366516,-0.0444336,-0.121307,-0.185852,-0.235291,-0.268494,-0.291565,-0.311371,-0.330078,-0.352539,-0.378418,-0.410065,-0.447021,-0.485382,-0.5242,-0.558807,-0.585327,-0.597168,-0.590332,-0.564117,-0.520142,-0.465271,-0.407593,-0.351288,-0.299377,-0.251495,-0.210815,-0.179779,-0.163391,-0.157013,-0.160767,-0.163727,-0.160919,-0.146576,-0.120514,-0.0843506,-0.043335,0.00515747,0.0601807,0.122406,0.190063,0.257111,0.318237,0.374207,0.425812,0.474792,0.522034,0.564423,0.598907,0.623047,0.633026,0.631805,0.619781,0.599976,0.568481,0.527496,0.476013,0.416626,0.355652,0.299377,0.247284,0.201447,0.155609,0.11087,0.0678406,0.0255737,-0.0109253,-0.0487976,-0.0840454,-0.117401,-0.153595,-0.186157,-0.216431,-0.243378,-0.261932,-0.277527,-0.288605,-0.298737,-0.307953,-0.316833,-0.326508,-0.341461,-0.364227,-0.396515,-0.438141,-0.485535,-0.539032,-0.590149,-0.636322,-0.671722,-0.689026,-0.684967,-0.649414,-0.580811,-0.485687,-0.370636,-0.25119,-0.136108,-0.0339966,0.0514526,0.114136,0.146881,0.148132,0.122253,0.0812378,0.0407104,0.0152893,0.0105896,0.0280762,0.0723572,0.138306,0.223267,0.322449,0.423798,0.516418,0.582825,0.616821,0.61853,0.594513,0.557098,0.514862,0.471039,0.430969,0.399933,0.38324,0.38623,0.405548,0.433319,0.456696,0.462769,0.450134,0.414917,0.365631,0.302948,0.233429,0.161377,0.0893555,0.0244751,-0.026825,-0.0617371,-0.0835876,-0.0966797,-0.110077,-0.127869,-0.153107,-0.18634,-0.229523,-0.279266,-0.333984,-0.391052,-0.444519,-0.489288,-0.519226,-0.529358,-0.520935,-0.498779,-0.467926,-0.436279,-0.404144,-0.376404,-0.351929,-0.334778,-0.327759,-0.328674,-0.337402,-0.347229,-0.351929,-0.348175,-0.331329,-0.302032,-0.263184,-0.216248,-0.163086,-0.105713,-0.0428772,0.0195007,0.0812378,0.138306,0.192719,0.24588,0.299225,0.351288,0.403839,0.452332,0.493652,0.528412,0.552277,0.564575,0.564117,0.552277,0.529816,0.496613,0.457306,0.412109,0.364532,0.320404,0.281128,0.246826,0.21283,0.179932,0.144836,0.108673,0.08078,0.0538025,0.0307312,0.0093689,-0.0154419,-0.0389709,-0.0622253,-0.0770264,-0.0874634,-0.0982361,-0.111023,-0.13504,-0.16449,-0.193024,-0.228271,-0.263184,-0.307465,-0.362061,-0.417084,-0.470734,-0.504547,-0.515167,-0.507202,-0.480713,-0.443909,-0.399323,-0.341461,-0.28299,-0.226562,-0.184937,-0.173218,-0.188049,-0.225769,-0.272247,-0.31076,-0.341461,-0.35611,-0.349884,-0.322601,-0.264587,-0.176361,-0.0662537,0.0587769,0.175415,0.2724,0.343353,0.385895,0.408661,0.413971,0.40274,0.384186,0.356445,0.331329,0.318695,0.3237,0.350525,0.387939,0.424255,0.452942,0.465271,0.463562,0.450287,0.42334,0.388092,0.343658,0.289551,0.237457,0.192871,0.16449,0.153595,0.1539,0.159363,0.163574,0.162476,0.157623,0.14502,0.123657,0.0898132,0.0400696,-0.0209045,-0.0834045,-0.140808,-0.186798,-0.222504,-0.249939,-0.271912,-0.287994,-0.300446,-0.307465,-0.313568,-0.320892,-0.333374,-0.353149,-0.376251,-0.401184,-0.422089,-0.435486,-0.440002,-0.4375,-0.426605,-0.409302,-0.382324,-0.344727,-0.299988,-0.250732,-0.201447,-0.1539,-0.107727,-0.0620422,-0.0163574,0.0282288,0.0703125,0.106812,0.140656,0.171509,0.200684,0.229218,0.252594,0.27005,0.280182,0.283142,0.279724,0.274902,0.269287,0.261627,0.252136,0.239502,0.225311,0.207855,0.189911,0.172455,0.150787,0.130035,0.111938,0.0949707,0.0840454,0.0768738,0.0714111,0.0706177,0.071106,0.0732727,0.0750122,0.0698547,0.054718,0.0325928,0.00546265,-0.0151367,-0.020752,-0.00888062,0.0171509,0.0489502,0.0816956,0.112579,0.136902,0.151398,0.138,0.0874634,-0.00170898,-0.124115,-0.258667,-0.389343,-0.502838,-0.586731,-0.640198,-0.65799,-0.630402,-0.561005,-0.449982,-0.316681,-0.185394,-0.0739136,0.00421143,0.0513,0.0765686,0.0823364,0.0757751,0.0559692,0.0282288,0.0045166,-0.00390625,0.0110779,0.0483398,0.0974426,0.145477,0.182281,0.199585,0.19989,0.18634,0.161072,0.127869,0.0865479,0.0428772,0.00482178,-0.0173035,-0.0169983,0.00375366,0.041626,0.0881042,0.136597,0.182739,0.223267,0.257751,0.283295,0.296082,0.293915,0.278473,0.2565,0.236847,0.226227,0.224518,0.227478,0.228119,0.22171,0.20752,0.185394,0.156403,0.11554,0.0625305,-0.00732422,-0.0852966,-0.163574,-0.231079,-0.280823,-0.309662,-0.319946,-0.314819,-0.29657,-0.267731,-0.227325,-0.183197,-0.140167,-0.106812,-0.087616,-0.0785828,-0.0765686,-0.0750122,-0.0700073,-0.0623779,-0.053009,-0.0431824,-0.0335083,-0.0201111,-0.00482178,0.00811768,0.0137329,0.00637817,-0.0133972,-0.0419312,-0.0739136,-0.102753,-0.125977,-0.142365,-0.15094,-0.152496,-0.14502,-0.125366,-0.0991516,-0.0679932,-0.0427246,-0.0252686,-0.0163574,-0.0174561,-0.0224609,-0.0280762,-0.0360107,-0.0447388,-0.0533142,-0.059082,-0.0623779,-0.0646973,-0.0623779,-0.0629883,-0.0640869,-0.0505066,-0.0168457,0.0439758,0.130676,0.221558,0.308258,0.38559,0.453094,0.505341,0.523438,0.492401,0.400726,0.252289,0.077179,-0.0941772,-0.242004,-0.358154,-0.441101,-0.481628,-0.471344,-0.403992,-0.27832,-0.119293,0.0380554,0.16684,0.247772,0.285797,0.29361,0.276764,0.239349,0.178528,0.103546,0.0328979,-0.0155945,-0.0260315,0.00186157,0.0462952,0.0901184,0.113525,0.109619,0.0884094,0.0550537,0.0116882,-0.0389709,-0.103546,-0.172455,-0.234985,-0.27597,-0.284241,-0.26474,-0.224213,-0.172913,-0.123016,-0.0732727,-0.0274353,0.0126343,0.0466309,0.0681458,0.0712585,0.0604858,0.0419312,0.0297852,0.031189,0.0466309,0.0700073,0.0896606,0.101654,0.110382,0.115387,0.119751,0.115082,0.0916748,0.0489502,-0.00888062,-0.0708008,-0.124725,-0.163391,-0.182739,-0.187897,-0.181641,-0.164337,-0.134552,-0.0901184,-0.0319519,0.0317993,0.0926208,0.142059,0.179626,0.210175,0.239502,0.268036,0.289703,0.296722,0.2883,0.266479,0.239349,0.208313,0.173859,0.130676,0.0787354,0.0223083,-0.0316467,-0.0774841,-0.111176,-0.132843,-0.145782,-0.151855,-0.154999,-0.152191,-0.147186,-0.14032,-0.133789,-0.129883,-0.127869,-0.128021,-0.130676,-0.133148,-0.134705,-0.133148,-0.127686,-0.122864,-0.124878,-0.136444,-0.155762,-0.180389,-0.208313,-0.237457,-0.260071,-0.270538,-0.256012,-0.21283,-0.143433,-0.0562744,0.0361633,0.126129,0.205963,0.264435,0.289856,0.271912,0.203949,0.0969849,-0.0321045,-0.163727,-0.277374,-0.360168,-0.406647,-0.406647,-0.356903,-0.255402,-0.112427,0.0494385,0.201904,0.327576,0.411316,0.453278,0.455292,0.424744,0.369385,0.29422,0.213776,0.145935,0.102753,0.092926,0.113983,0.152344,0.19397,0.225769,0.240112,0.236694,0.214874,0.17868,0.127533,0.0642395,-0.00170898,-0.0611267,-0.1026,-0.118347,-0.110718,-0.0830994,-0.0439758,-0.00421143,0.0341492,0.0654907,0.0879517,0.0965271,0.085907,0.0578613,0.0168457,-0.0266724,-0.0626831,-0.086853,-0.0979309,-0.0996399,-0.0949707,-0.0862122,-0.0756226,-0.0659485,-0.0604858,-0.0661011,-0.0882568,-0.126465,-0.175262,-0.225464,-0.268951,-0.299683,-0.314178,-0.312775,-0.294373,-0.260712,-0.211731,-0.149231,-0.0805969,-0.0129395,0.0455322,0.0896606,0.121918,0.144531,0.16153,0.172302,0.175415,0.171509,0.161682,0.152496,0.148438,0.148285,0.150299,0.146088,0.13504,0.118805,0.0993347,0.0782776,0.0559692,0.0321045,0.00546265,-0.0223083,-0.0487976,-0.0665894,-0.0745239,-0.0714111,-0.0608215,-0.0487976,-0.0352478,-0.0213623,-0.0119934,-0.00311279,0.000610352,-0.00592041,-0.0199585,-0.0434875,-0.0736084,-0.106018,-0.136597,-0.160126,-0.167145,-0.148285,-0.105865,-0.0430298,0.0305481,0.104614,0.176666,0.238403,0.280975,0.294525,0.263184,0.179626,0.0623779,-0.0739136,-0.211273,-0.335083,-0.439545,-0.513611,-0.548676,-0.535278,-0.465271,-0.347534,-0.198486,-0.0450745,0.0888672,0.197693,0.275055,0.319794,0.333374,0.312317,0.261017,0.188507,0.112885,0.0533142,0.0218201,0.0199585,0.0419312,0.0742188,0.104767,0.129883,0.145782,0.152802,0.146576,0.12146,0.0788879,0.0212097,-0.039917,-0.0893555,-0.119446,-0.120056,-0.0982361,-0.0586243,-0.00982666,0.044281,0.100891,0.154999,0.196472,0.21875,0.215179,0.18634,0.144836,0.101044,0.0653381,0.0413208,0.0252686,0.0158997,0.0124817,0.0163574,0.0271301,0.0375671,0.0411682,0.0300903,0.000610352,-0.0452271,-0.0993347,-0.150452,-0.192261,-0.221558,-0.23761,-0.241669,-0.229218,-0.201294,-0.156219,-0.0988464,-0.0360107,0.0213623,0.0679932,0.10025,0.12381,0.141724,0.152802,0.15686,0.14798,0.127686,0.100739,0.0739136,0.0517578,0.0343018,0.0166931,-0.00375366,-0.0265198,-0.047699,-0.0628357,-0.0708008,-0.0753174,-0.0787354,-0.085144,-0.0907593,-0.0933838,-0.0910645,-0.0854492,-0.0791931,-0.0762329,-0.0745239,-0.0732727,-0.0717163,-0.073761,-0.0799866,-0.0901184,-0.101196,-0.117706,-0.140472,-0.166382,-0.192871,-0.215942,-0.224518,-0.211884,-0.170258,-0.102448,-0.0196533,0.0709534,0.164032,0.253845,0.332733,0.386536,0.397919,0.354095,0.255249,0.123016,-0.0213623,-0.162933,-0.290802,-0.393219,-0.456696,-0.475708,-0.438446,-0.340363,-0.199585,-0.0402222,0.110382,0.233734,0.322754,0.376251,0.39447,0.378571,0.330383,0.257751,0.175873,0.106018,0.0640869,0.053009,0.0695496,0.102753,0.137848,0.161072,0.170258,0.166534,0.15155,0.118958,0.0698547,0.00546265,-0.0631409,-0.122864,-0.158722,-0.163239,-0.138458,-0.0932312,-0.0407104,0.0135803,0.0632935,0.107117,0.138763,0.151398,0.142365,0.107574,0.0559692,0.000152588,-0.0478821,-0.0770264,-0.0910645,-0.0935669,-0.0884094,-0.0779724,-0.0601807,-0.038208,-0.0213623,-0.0151367,-0.026825,-0.0566101,-0.101349,-0.150452,-0.195068,-0.227814,-0.24884,-0.258514,-0.25354,-0.232025,-0.190704,-0.130829,-0.0584717,0.0174561,0.0884094,0.149689,0.198792,0.235901,0.260071,0.268646,0.25882,0.232025,0.191925,0.14624,0.102448,0.0643921,0.0332031,0.00888062,-0.00982666,-0.0215149,-0.0286865,-0.0288391,-0.025116,-0.0221558,-0.0204163,-0.0213623,-0.0272827,-0.036499,-0.0434875,-0.0453796,-0.0422668,-0.0343018,-0.0246277,-0.0168457,-0.0146484,-0.0155945,-0.0169983,-0.0240173,-0.0434875,-0.0765686,-0.122253,-0.171814,-0.214539,-0.23761,-0.230621,-0.192108,-0.131287,-0.0570679,0.0249329,0.111176,0.19162,0.256653,0.289856,0.271912,0.194275,0.0750122,-0.0629883,-0.204102,-0.335846,-0.44281,-0.514526,-0.546204,-0.524048,-0.440155,-0.304199,-0.14032,0.0233765,0.166199,0.273163,0.344116,0.379211,0.378418,0.344574,0.279724,0.195831,0.116486,0.0576782,0.0266724,0.0238647,0.0431824,0.0722046,0.0954285,0.109772,0.117889,0.119293,0.111176,0.0907593,0.0572205,0.0158997,-0.0254211,-0.0525513,-0.0536499,-0.0303955,0.013092,0.0631409,0.113831,0.158722,0.196625,0.225616,0.243866,0.243225,0.219849,0.177277,0.124115,0.0742188,0.0352478,0.00997925,-0.00637817,-0.019165,-0.0296326,-0.035553,-0.0363159,-0.0350952,-0.0389709,-0.0533142,-0.0804443,-0.118195,-0.161072,-0.200195,-0.228882,-0.246033,-0.253357,-0.250092,-0.235901,-0.207672,-0.163086,-0.105865,-0.0422668,0.0193481,0.0726624,0.115387,0.147186,0.169189,0.17868,0.173065,0.152191,0.116791,0.0732727,0.0254211,-0.0182495,-0.0561218,-0.0835876,-0.103058,-0.112579,-0.11319,-0.106506,-0.0930786,-0.0753174,-0.0556641,-0.0391235,-0.0297852,-0.0254211,-0.0265198,-0.0297852,-0.0317993,-0.0317993,-0.0291443,-0.0257263,-0.0255737,-0.0283813,-0.0317993,-0.0402222,-0.054718,-0.0782776,-0.109772,-0.14267,-0.16684,-0.166046,-0.133942,-0.0731201,0.00888062,0.100555,0.193665,0.278625,0.349731,0.393066,0.3909,0.332886,0.217834,0.0632935,-0.10025,-0.255554,-0.387939,-0.482117,-0.529053,-0.524841,-0.463409,-0.345978,-0.190063,-0.0260315,0.123657,0.242157,0.319489,0.352081,0.347076,0.310913,0.247772,0.171051,0.0991516,0.0441284,0.0169983,0.0177612,0.038208,0.0679932,0.096344,0.111023,0.109772,0.0927734,0.0645447,0.0244751,-0.0249329,-0.0770264,-0.123962,-0.155762,-0.16153,-0.137848,-0.0898132,-0.0279236,0.0388184,0.098999,0.146088,0.182281,0.2052,0.211273,0.199097,0.167603,0.125824,0.0837402,0.0475464,0.0247803,0.0137329,0.0101318,0.0107727,0.0107727,0.0121765,0.0110779,0.00732422,-0.00622559,-0.0289917,-0.0614319,-0.098999,-0.135651,-0.165894,-0.187256,-0.197388,-0.19632,-0.185547,-0.163574,-0.131134,-0.086853,-0.0361633,0.0168457,0.0681458,0.115082,0.153595,0.183044,0.199097,0.201599,0.18866,0.16153,0.121002,0.0722046,0.019165,-0.0313416,-0.0745239,-0.10791,-0.12973,-0.139709,-0.137848,-0.126465,-0.107117,-0.0827942,-0.0561218,-0.0347595,-0.0221558,-0.0179443,-0.0201111,-0.0246277,-0.0299377,-0.0310364,-0.0347595,-0.0407104,-0.0489502,-0.0556641,-0.0643921,-0.0768738,-0.0974426,-0.128784,-0.164337,-0.194733,-0.207367,-0.193024,-0.148438,-0.0778198,0.00747681,0.0993347,0.189606,0.269897,0.331024,0.356445,0.332428,0.253693,0.131439,-0.0158997,-0.165436,-0.299683,-0.403046,-0.465576,-0.477264,-0.435944,-0.342865,-0.209869,-0.0555115,0.0954285,0.222961,0.313232,0.359863,0.364532,0.33197,0.269897,0.189453,0.107269,0.0386658,-0.00375366,-0.0174561,-0.00561523,0.0229187,0.0583191,0.0879517,0.106018,0.107727,0.0961914,0.0706177,0.0321045,-0.0157471,-0.063446,-0.102295,-0.121002,-0.114746,-0.0829468,-0.0314941,0.02948,0.0882568,0.139709,0.177765,0.202545,0.209717,0.196625,0.164978,0.119904,0.0684509,0.0210571,-0.0140381,-0.0344543,-0.041626,-0.0403748,-0.0347595,-0.0244751,-0.0115356,0.000457764,0.00515747,-0.00140381,-0.0199585,-0.0480347,-0.0809326,-0.113037,-0.138916,-0.155609,-0.161987,-0.158417,-0.144836,-0.118195,-0.079834,-0.0313416,0.0221558,0.0751648,0.123505,0.162933,0.189911,0.201752,0.198181,0.179626,0.146088,0.0986938,0.0438232,-0.0146484,-0.0692139,-0.11319,-0.14502,-0.161377,-0.163574,-0.152802,-0.130829,-0.100555,-0.0662537,-0.0333557,-0.00857544,0.006073,0.00762939,0.000610352,-0.0109253,-0.0230713,-0.0360107,-0.0491028,-0.0631409,-0.0770264,-0.0888672,-0.101501,-0.115387,-0.135498,-0.161682,-0.191162,-0.21048,-0.206909,-0.174774,-0.115387,-0.0375671,0.0502014,0.138,0.220947,0.292206,0.334778,0.337097,0.286896,0.187103,0.050354,-0.100739,-0.246185,-0.367676,-0.450623,-0.48584,-0.466675,-0.393402,-0.273804,-0.125824,0.0324402,0.176178,0.292969,0.368896,0.400085,0.386993,0.336334,0.25946,0.174316,0.0965271,0.0400696,0.00997925,0.00656128,0.0221558,0.0494385,0.0778198,0.101501,0.113342,0.109131,0.0884094,0.0523987,0.00762939,-0.041626,-0.0835876,-0.110718,-0.115082,-0.0952759,-0.0542603,0.00109863,0.0617371,0.118195,0.165894,0.19754,0.211731,0.206757,0.182281,0.14328,0.0941772,0.0470886,0.00622559,-0.0219727,-0.0386658,-0.0453796,-0.0444336,-0.0371094,-0.0299377,-0.0224609,-0.0212097,-0.0289917,-0.0458374,-0.0734253,-0.104309,-0.134399,-0.159973,-0.177124,-0.184143,-0.180878,-0.164978,-0.13736,-0.0980835,-0.0489502,0.00515747,0.0601807,0.111328,0.155304,0.187561,0.205811,0.205811,0.188965,0.155609,0.109467,0.0544128,-0.00341797,-0.0581665,-0.104309,-0.139862,-0.161377,-0.167145,-0.158112,-0.135803,-0.104309,-0.0684509,-0.0343018,-0.00717163,0.0090332,0.0149536,0.0115356,0.00546265,-0.00561523,-0.0171509,-0.0297852,-0.0402222,-0.0527039,-0.0640869,-0.07547,-0.0888672,-0.108521,-0.137207,-0.169952,-0.198029,-0.207062,-0.184753,-0.132843,-0.0575256,0.031189,0.12085,0.205963,0.277374,0.326019,0.340057,0.30545,0.220001,0.0916748,-0.0625305,-0.217499,-0.352234,-0.449829,-0.496765,-0.486786,-0.421936,-0.313568,-0.173553,-0.0184021,0.133301,0.264923,0.359406,0.406647,0.401489,0.35144,0.272858,0.181183,0.0952759,0.02948,-0.0133972,-0.0319519,-0.0279236,-0.00576782,0.0280762,0.0656433,0.096344,0.111328,0.107422,0.085907,0.0514526,0.0115356,-0.0263367,-0.0553589,-0.0690613,-0.0675049,-0.0473938,-0.00997925,0.0396118,0.0940247,0.141113,0.175568,0.192413,0.192413,0.175262,0.14502,0.107574,0.0670471,0.0271301,-0.00732422,-0.0346069,-0.0495911,-0.0522461,-0.0473938,-0.0379028,-0.0308838,-0.0277405,-0.0314941,-0.0431824,-0.0606384,-0.0816956,-0.103851,-0.124878,-0.142975,-0.154816,-0.154205,-0.144073,-0.121002,-0.088562,-0.0470886,-0.00170898,0.0444336,0.0888672,0.128174,0.158569,0.174957,0.174774,0.156219,0.12381,0.0791931,0.0265198,-0.0288391,-0.0809326,-0.123322,-0.152344,-0.165283,-0.161835,-0.143127,-0.113037,-0.0743713,-0.0343018,0.00296021,0.0314941,0.0487976,0.0544128,0.047699,0.0332031,0.0143433,-0.00405884,-0.0212097,-0.0339966,-0.0464783,-0.0572205,-0.0697021,-0.0849915,-0.103699,-0.131439,-0.164642,-0.197083,-0.219391,-0.21814,-0.185242,-0.12381,-0.0389709,0.054718,0.147034,0.227966,0.289398,0.324005,0.318848,0.267242,0.170563,0.0357056,-0.11615,-0.266632,-0.387146,-0.459198,-0.474945,-0.433472,-0.348022,-0.231384,-0.0952759,0.0462952,0.179779,0.290161,0.360168,0.377808,0.342712,0.269135,0.176819,0.0873108,0.0157471,-0.0319519,-0.0561218,-0.0597229,-0.0427246,-0.00811768,0.0386658,0.0867004,0.124268,0.141724,0.134552,0.106323,0.0659485,0.0244751,-0.0115356,-0.0374146,-0.0506592,-0.0497437,-0.031189,0.00466919,0.0538025,0.108215,0.157166,0.192719,0.208771,0.205811,0.188202,0.159027,0.125519,0.086853,0.0480347,0.00952148,-0.0204163,-0.0402222,-0.0472412,-0.0445862,-0.0374146,-0.0308838,-0.0316467,-0.0385132,-0.0492859,-0.0626831,-0.0770264,-0.0924683,-0.108978,-0.123322,-0.13269,-0.132843,-0.120361,-0.0947876,-0.0598755,-0.0193481,0.0213623,0.0615845,0.09729,0.127869,0.14859,0.156403,0.145325,0.117096,0.0739136,0.0209045,-0.0347595,-0.0862122,-0.130188,-0.163086,-0.183533,-0.188049,-0.176819,-0.152344,-0.117889,-0.078125,-0.0374146,-0.00234985,0.0227661,0.035553,0.0369568,0.0277405,0.0154419,-0.000305176,-0.0146484,-0.0280762,-0.039917,-0.0508423,-0.0592651,-0.0703125,-0.0834045,-0.10321,-0.128479,-0.158722,-0.184601,-0.195526,-0.183044,-0.144226,-0.0816956,-0.00109863,0.0835876,0.16153,0.227631,0.273956,0.291718,0.276459,0.217041,0.118042,-0.0116882,-0.15155,-0.278168,-0.37326,-0.420685,-0.416473,-0.366272,-0.278168,-0.166046,-0.0369568,0.0957336,0.218292,0.312164,0.361725,0.362213,0.317139,0.239807,0.151855,0.0728149,0.010437,-0.0335083,-0.0559692,-0.0578613,-0.037262,0.000457764,0.0481873,0.0958862,0.130981,0.142975,0.131744,0.102448,0.0628357,0.0219727,-0.014801,-0.0413208,-0.0570679,-0.057373,-0.0388184,-0.00234985,0.0478821,0.1026,0.153412,0.190216,0.210968,0.212982,0.199738,0.173859,0.139069,0.0979309,0.053009,0.0109253,-0.0247803,-0.047699,-0.0584717,-0.0589294,-0.0531616,-0.0473938,-0.0439758,-0.0444336,-0.0489502,-0.0561218,-0.0661011,-0.0802917,-0.096344,-0.111633,-0.123657,-0.124725,-0.11615,-0.0947876,-0.0646973,-0.0277405,0.0121765,0.0519104,0.088562,0.118958,0.13736,0.140656,0.125366,0.0933838,0.048645,-0.00576782,-0.0615845,-0.112885,-0.153259,-0.180542,-0.193665,-0.190369,-0.172607,-0.142212,-0.102448,-0.0586243,-0.0166931,0.0179443,0.0394592,0.0483398,0.0441284,0.0316467,0.0135803,-0.00531006,-0.0241699,-0.0397644,-0.0534668,-0.0646973,-0.0743713,-0.0838928,-0.0944824,-0.10791,-0.123962,-0.143616,-0.157959,-0.160583,-0.145782,-0.110229,-0.0539551,0.0179443,0.096344,0.167938,0.227325,0.267883,0.281891,0.263672,0.209869,0.123505,0.0132446,-0.107269,-0.219849,-0.309967,-0.364075,-0.374054,-0.341003,-0.269897,-0.17337,-0.0601807,0.0553589,0.161987,0.244324,0.295471,0.307465,0.281891,0.224213,0.151093,0.0773315,0.0141907,-0.0344543,-0.0608215,-0.0646973,-0.0478821,-0.0155945,0.0258789,0.0706177,0.108521,0.131134,0.135193,0.120514,0.0896606,0.0500488,0.00811768,-0.0277405,-0.0544128,-0.0668945,-0.0636292,-0.0427246,-0.00857544,0.0352478,0.0820007,0.125977,0.160919,0.182129,0.189301,0.181641,0.160919,0.130676,0.0937195,0.0569153,0.0219727,-0.00671387,-0.0260315,-0.0366516,-0.0402222,-0.0385132,-0.0352478,-0.0322876,-0.0308838,-0.0339966,-0.0402222,-0.0495911,-0.0606384,-0.0717163,-0.0790405,-0.081543,-0.0773315,-0.0640869,-0.0430298,-0.0146484,0.0180969,0.0522461,0.0848083,0.110718,0.125519,0.127533,0.11319,0.0849915,0.0434875,-0.006073,-0.0570679,-0.104309,-0.142822,-0.169189,-0.181946,-0.180084,-0.164032,-0.135956,-0.100403,-0.0609741,-0.0229187,0.00796509,0.0271301,0.033844,0.0296326,0.014801,-0.00622559,-0.0283813,-0.0484924,-0.0667419,-0.0818481,-0.0916748,-0.096344,-0.0993347,-0.0991516,-0.102448,-0.110382,-0.121765,-0.134247,-0.14563,-0.150452,-0.146576,-0.126282,-0.0905762,-0.0438232,0.0154419,0.0784302,0.140167,0.188507,0.220306,0.226227,0.206757,0.158264,0.0881042,0.00311279,-0.0860596,-0.171051,-0.240417,-0.284088,-0.29187,-0.263336,-0.204102,-0.121765,-0.0246277,0.0729675,0.157623,0.223755,0.265076,0.278931,0.262115,0.220154,0.161072,0.0969849,0.035553,-0.0107727,-0.037262,-0.040863,-0.025116,0.00421143,0.0411682,0.0804443,0.114441,0.137207,0.145325,0.136444,0.109619,0.0701599,0.0252686,-0.0187073,-0.0517578,-0.0709534,-0.0709534,-0.0545654,-0.0238647,0.0160522,0.0629883,0.109467,0.150787,0.180878,0.19458,0.189911,0.167297,0.131134,0.0881042,0.0417786,-0.00170898,-0.0386658,-0.0664368,-0.0834045,-0.0910645,-0.0899658,-0.0809326,-0.069397,-0.0578613,-0.0505066,-0.0448914,-0.0445862,-0.0464783,-0.0500488,-0.0513,-0.0508423,-0.0450745,-0.0343018,-0.0171509,0.00421143,0.0296326,0.0556641,0.0795288,0.0980835,0.107269,0.103363,0.0874634,0.0584717,0.0198059,-0.0240173,-0.0651855,-0.1026,-0.131134,-0.14798,-0.154358,-0.148285,-0.132233,-0.104767,-0.0712585,-0.0339966,-0.000610352,0.0252686,0.0385132,0.041626,0.0349121,0.0230713,0.00466919,-0.0151367,-0.0366516,-0.0556641,-0.0703125,-0.0788879,-0.0816956,-0.0799866,-0.078125,-0.0757751,-0.0793762,-0.085144,-0.0957336,-0.108673,-0.121918,-0.136261,-0.14798,-0.153595,-0.147491,-0.125519,-0.0846558,-0.0328979,0.0252686,0.0820007,0.133148,0.171204,0.193024,0.193817,0.173706,0.128937,0.0600281,-0.0233765,-0.108368,-0.184601,-0.240112,-0.266937,-0.260559,-0.225769,-0.168243,-0.0932312,-0.00686646,0.0812378,0.161377,0.223907,0.261322,0.268646,0.247772,0.205505,0.153595,0.101044,0.0567627,0.0247803,0.00686646,0.00311279,0.013092,0.0343018,0.0640869,0.0954285,0.119446,0.131592,0.126923,0.107269,0.0748291,0.0393066,0.00375366,-0.0263367,-0.0456848,-0.0534668,-0.0464783,-0.0265198,0.00622559,0.0505066,0.0983887,0.142517,0.176514,0.194733,0.195374,0.179321,0.150635,0.11087,0.0653381,0.0166931,-0.0297852,-0.0697021,-0.0977478,-0.113983,-0.118347,-0.114136,-0.10495,-0.0927734,-0.0816956,-0.0717163,-0.0631409,-0.0555115,-0.0502014,-0.0453796,-0.0407104,-0.0335083,-0.0240173,-0.00888062,0.00747681,0.025116,0.0417786,0.0534668,0.0617371,0.0646973,0.0615845,0.0519104,0.0325928,0.00622559,-0.0263367,-0.0598755,-0.0887146,-0.109131,-0.120697,-0.124573,-0.121307,-0.112274,-0.09729,-0.0750122,-0.0467834,-0.0180969,0.0093689,0.0313416,0.0445862,0.0491028,0.046936,0.0400696,0.0310364,0.0166931,-0.00109863,-0.0223083,-0.0438232,-0.0609741,-0.0715637,-0.0770264,-0.0787354,-0.0796814,-0.0816956,-0.0826416,-0.0820007,-0.0805969,-0.0795288,-0.083252,-0.0887146,-0.0999451,-0.112274,-0.119293,-0.116791,-0.101654,-0.0732727,-0.035553,0.0093689,0.057373,0.104767,0.146881,0.178223,0.192871,0.184448,0.148285,0.0873108,0.00811768,-0.0782776,-0.161072,-0.227966,-0.272095,-0.289062,-0.275055,-0.23233,-0.160126,-0.0687561,0.0332031,0.13208,0.215485,0.274109,0.302643,0.300934,0.2724,0.224823,0.165894,0.104309,0.0462952,0.000457764,-0.0303955,-0.0414734,-0.0336914,-0.0110779,0.0195007,0.0498962,0.0736084,0.0877686,0.0891724,0.0809326,0.0639343,0.0396118,0.0155945,-0.00637817,-0.0198059,-0.0226135,-0.0118408,0.0127869,0.0475464,0.0888672,0.129272,0.162323,0.183685,0.190704,0.182739,0.158722,0.120697,0.0722046,0.0184021,-0.0349121,-0.0804443,-0.116302,-0.138153,-0.146423,-0.141724,-0.12677,-0.104004,-0.0778198,-0.0516052,-0.0274353,-0.00842285,0.00466919,0.0132446,0.0158997,0.0160522,0.0143433,0.0121765,0.0116882,0.0124817,0.0132446,0.0143433,0.014801,0.0144958,0.0124817,0.0090332,0.00296021,-0.0102844,-0.0266724,-0.04599,-0.0651855,-0.0809326,-0.0935669,-0.0991516,-0.101349,-0.09729,-0.086853,-0.0712585,-0.0516052,-0.0280762,-0.00482178,0.0171509,0.0341492,0.0467834,0.0505066,0.0467834,0.0393066,0.0274353,0.0115356,-0.00717163,-0.026825,-0.0458374,-0.0636292,-0.0734253,-0.0773315,-0.0774841,-0.0796814,-0.0810852,-0.0837402,-0.081543,-0.0791931,-0.0759277,-0.0742188,-0.0726624,-0.0726624,-0.0734253,-0.0743713,-0.0731201,-0.0679932,-0.0606384,-0.0483398,-0.02948,-0.00637817,0.0219727,0.052063,0.0835876,0.110718,0.129425,0.135956,0.127869,0.104156,0.0639343,0.0127869,-0.0461426,-0.105865,-0.160431,-0.201904,-0.221863,-0.216248,-0.186951,-0.13736,-0.0712585,0.00466919,0.0835876,0.157166,0.217194,0.257568,0.272705,0.263824,0.232788,0.186157,0.131592,0.0765686,0.0274353,-0.0115356,-0.0380554,-0.0500488,-0.0480347,-0.0343018,-0.0115356,0.0140381,0.0380554,0.0545654,0.0609741,0.0581665,0.0502014,0.0386658,0.0260315,0.0158997,0.00857544,0.0090332,0.0177612,0.0363159,0.0608215,0.0887146,0.115234,0.134857,0.147034,0.145477,0.131134,0.103699,0.0673523,0.025116,-0.0196533,-0.0631409,-0.100555,-0.127228,-0.139862,-0.137665,-0.121765,-0.0969849,-0.0661011,-0.035553,-0.00576782,0.0188599,0.0375671,0.0470886,0.0500488,0.0458374,0.0388184,0.02948,0.0198059,0.0116882,0.00576782,0.00234985,0.00170898,0.00265503,0.00265503,0.000457764,-0.00497437,-0.0123291,-0.0227661,-0.036499,-0.0511475,-0.0656433,-0.078125,-0.0877686,-0.0915222,-0.0881042,-0.0790405,-0.0642395,-0.04599,-0.0246277,-0.00311279,0.0162048,0.0317993,0.0413208,0.04599,0.0431824,0.0346069,0.0202637,0.00341797,-0.0158997,-0.0354004,-0.0542603,-0.0708008,-0.0848083,-0.0927734,-0.096344,-0.0940247,-0.0849915,-0.0756226,-0.0668945,-0.0589294,-0.0516052,-0.0430298,-0.0332031,-0.0252686,-0.0179443,-0.0143433,-0.0166931,-0.0240173,-0.0324402,-0.0405273,-0.0473938,-0.0553589,-0.0609741,-0.0632935,-0.0589294,-0.0466309,-0.0240173,0.0101318,0.0491028,0.0849915,0.113037,0.128937,0.132233,0.119293,0.0910645,0.0498962,-0.00296021,-0.0614319,-0.121307,-0.168701,-0.197083,-0.19928,-0.17511,-0.128174,-0.0632935,0.0112305,0.0877686,0.159515,0.220642,0.262573,0.279877,0.269287,0.233734,0.17868,0.113678,0.0475464,-0.0116882,-0.0580139,-0.0895081,-0.103546,-0.101044,-0.0821838,-0.0505066,-0.0132446,0.0258789,0.0581665,0.0816956,0.0926208,0.0923157,0.083252,0.0681458,0.0505066,0.0319519,0.0166931,0.00701904,0.00671387,0.0144958,0.0289917,0.0475464,0.0662537,0.0813904,0.0895081,0.0896606,0.0801392,0.0618896,0.035553,0.00497437,-0.0271301,-0.0566101,-0.0801392,-0.0927734,-0.0954285,-0.0862122,-0.0695496,-0.0473938,-0.0230713,0.000946045,0.0218201,0.038208,0.048645,0.0511475,0.0473938,0.0389709,0.0282288,0.0176086,0.00811768,0.00109863,-0.00341797,-0.00717163,-0.00982666,-0.0123291,-0.0157471,-0.0202637,-0.0263367,-0.0332031,-0.041626,-0.0506592,-0.0589294,-0.065033,-0.0662537,-0.0629883,-0.0558167,-0.044281,-0.031189,-0.0179443,-0.00515747,0.00637817,0.0155945,0.0209045,0.0216675,0.0169983,0.00796509,-0.00326538,-0.0168457,-0.02948,-0.0413208,-0.0497437,-0.0562744,-0.0600281,-0.0615845,-0.0587769,-0.0541077,-0.0484924,-0.0411682,-0.0324402,-0.0240173,-0.0166931,-0.0113831,-0.0093689,-0.00888062,-0.00918579,-0.00967407,-0.00997925,-0.0093689,-0.00967407,-0.0144958,-0.0212097,-0.0313416,-0.0427246,-0.0555115,-0.0654907,-0.0745239,-0.0835876,-0.090271,-0.0905762,-0.0787354,-0.0561218,-0.0232239,0.0190125,0.0628357,0.1026,0.131744,0.148743,0.153748,0.142822,0.114899,0.0708008,0.0141907,-0.0478821,-0.106964,-0.15451,-0.180542,-0.183197,-0.163391,-0.124573,-0.0709534,-0.00952148,0.0555115,0.116638,0.168091,0.200989,0.211426,0.197876,0.163727,0.116943,0.0646973,0.0151367,-0.0271301,-0.0578613,-0.0757751,-0.079834,-0.0687561,-0.0438232,-0.0113831,0.0255737,0.059082,0.0837402,0.0980835,0.0994873,0.0915222,0.0750122,0.0525513,0.0289917,0.00637817,-0.0119934,-0.0230713,-0.0237122,-0.0140381,0.00375366,0.0258789,0.0494385,0.071106,0.0888672,0.0980835,0.0988464,0.0910645,0.0736084,0.0509949,0.0237122,-0.0015564,-0.0237122,-0.0396118,-0.0494385,-0.0531616,-0.0508423,-0.0448914,-0.0361633,-0.0261841,-0.0168457,-0.00952148,-0.00531006,-0.00436401,-0.00592041,-0.00762939,-0.00701904,-0.00436401,0.00109863,0.00732422,0.0133972,0.0180969,0.0216675,0.0219727,0.0198059,0.0118408,0,-0.0157471,-0.031189,-0.0470886,-0.0595703,-0.0682983,-0.0732727,-0.0717163,-0.0659485,-0.0556641,-0.0434875,-0.0285339,-0.0149536,-0.00234985,0.00656128,0.0140381,0.0179443,0.0176086,0.0132446,0.00762939,0.00109863,-0.00592041,-0.0112305,-0.0155945,-0.0209045,-0.0254211,-0.0286865,-0.0302429,-0.0303955,-0.0289917,-0.0255737,-0.0240173,-0.0224609,-0.0224609,-0.0218201,-0.0235291,-0.0233765,-0.0210571,-0.0184021,-0.0177612,-0.0185547,-0.0187073,-0.0176086,-0.0163574,-0.0127869,-0.00918579,-0.00747681,-0.00967407,-0.0151367,-0.0212097,-0.0277405,-0.0328979,-0.0397644,-0.0489502,-0.0589294,-0.0662537,-0.0695496,-0.0643921,-0.0514526,-0.02948,-0.000793457,0.0269775,0.0536499,0.0757751,0.0954285,0.107574,0.107269,0.09198,0.0623779,0.0209045,-0.0272827,-0.0750122,-0.113831,-0.138916,-0.149841,-0.146729,-0.12738,-0.0923157,-0.0448914,0.00967407,0.065033,0.115082,0.152496,0.170563,0.169952,0.15451,0.127869,0.0932312,0.0550537,0.0179443,-0.0152893,-0.040863,-0.054718,-0.0539551,-0.0402222,-0.0177612,0.00656128,0.0300903,0.0509949,0.0662537,0.0742188,0.0751648,0.0686035,0.0564575,0.0389709,0.0187073,0.00186157,-0.00952148,-0.0127869,-0.00827026,0.00109863,0.0149536,0.0319519,0.0484924,0.0628357,0.0743713,0.0813904,0.0799866,0.0690613,0.0511475,0.0299377,0.00701904,-0.0149536,-0.0341492,-0.0481873,-0.0578613,-0.0615845,-0.0597229,-0.0523987,-0.0411682,-0.0279236,-0.0146484,-0.00311279,0.00515747,0.0112305,0.0160522,0.0201111,0.0229187,0.0260315,0.0282288,0.0296326,0.0289917,0.0283813,0.0257263,0.0209045,0.0116882,-0.000152588,-0.0138855,-0.0300903,-0.0445862,-0.054718,-0.0597229,-0.0612793,-0.0600281,-0.0536499,-0.0419312,-0.0282288,-0.013092,0.00140381,0.0137329,0.0219727,0.0254211,0.0246277,0.0219727,0.0165405,0.00952148,0.000946045,-0.00701904,-0.0126343,-0.0169983,-0.0199585,-0.0212097,-0.0229187,-0.0230713,-0.0216675,-0.0216675,-0.0215149,-0.020752,-0.020752,-0.0243225,-0.0288391,-0.0300903,-0.0305481,-0.0305481,-0.0291443,-0.0265198,-0.0263367,-0.0260315,-0.0219727,-0.0140381,-0.00531006,0.0015564,0.006073,0.00796509,0.00637817,0.00170898,-0.00375366,-0.00872803,-0.0152893,-0.0246277,-0.0366516,-0.0484924,-0.0576782,-0.0642395,-0.0678406,-0.0679932,-0.0648499,-0.0618896,-0.0567627,-0.0487976,-0.0335083,-0.0133972,0.0105896,0.0357056,0.0595703,0.0799866,0.0951233,0.10556,0.107574,0.0999451,0.0801392,0.0495911,0.00967407,-0.0349121,-0.078125,-0.113831,-0.136902,-0.147491,-0.142822,-0.124268,-0.09198,-0.0492859,0.000457764,0.0500488,0.0952759,0.129578,0.149231,0.152191,0.142212,0.121155,0.0927734,0.0601807,0.0274353,-0.00311279,-0.0266724,-0.041626,-0.0462952,-0.0424194,-0.0314941,-0.0177612,-0.0045166,0.00686646,0.0152893,0.020752,0.0224609,0.0212097,0.0169983,0.00982666,0.00280762,0.000305176,0.00311279,0.00997925,0.020752,0.0349121,0.0489502,0.0615845,0.0717163,0.0799866,0.0849915,0.0843506,0.0753174,0.0617371,0.0419312,0.0195007,-0.000946045,-0.0199585,-0.0346069,-0.0455322,-0.0517578,-0.0534668,-0.0508423,-0.0430298,-0.0307312,-0.0165405,-0.00201416,0.00952148,0.0187073,0.0258789,0.0316467,0.0358582,0.0391235,0.0422668,0.0431824,0.0434875,0.0420837,0.0402222,0.037262,0.0332031,0.0258789,0.0137329,-0.00201416,-0.0190125,-0.0360107,-0.0514526,-0.0639343,-0.0698547,-0.0725098,-0.0692139,-0.0623779,-0.0502014,-0.0343018,-0.0166931,0.00125122,0.0163574,0.0279236,0.0341492,0.037262,0.0349121,0.0303955,0.0244751,0.0179443,0.00872803,0.000793457,-0.00592041,-0.0116882,-0.0163574,-0.0212097,-0.0258789,-0.0314941,-0.035553,-0.0403748,-0.0436707,-0.0458374,-0.0456848,-0.0430298,-0.0385132,-0.031189,-0.0230713,-0.0140381,-0.00390625,0.00576782,0.0141907,0.0196533,0.0223083,0.0238647,0.0218201,0.0176086,0.0129395,0.00622559,-0.00250244,-0.0119934,-0.0215149,-0.0289917,-0.0361633,-0.0445862,-0.0502014,-0.0534668,-0.0552063,-0.0575256,-0.0556641,-0.0514526,-0.04599,-0.0393066,-0.0332031,-0.0246277,-0.0179443,-0.0135803,-0.0109253,-0.00888062,-0.00967407,-0.0137329,-0.0180969,-0.0201111,-0.0185547,-0.0135803,-0.00592041,0.00482178,0.0168457,0.0293274,0.0397644,0.0464783,0.048645,0.0419312,0.0266724,0.00296021,-0.0258789,-0.0566101,-0.085144,-0.106171,-0.117401,-0.117889,-0.106018,-0.0820007,-0.0467834,-0.00436401,0.0419312,0.0863953,0.123016,0.146423,0.156219,0.152649,0.135345,0.10791,0.0723572,0.0330505,-0.00482178,-0.0393066,-0.0639343,-0.0768738,-0.0782776,-0.0684509,-0.0508423,-0.0275879,-0.00296021,0.020752,0.0419312,0.0587769,0.0695496,0.0725098,0.0697021,0.0612793,0.0502014,0.0394592,0.0308838,0.0249329,0.0226135,0.0237122,0.0271301,0.0327454,0.0385132,0.0448914,0.0481873,0.0483398,0.0439758,0.0347595,0.0232239,0.00952148,-0.00466919,-0.0168457,-0.0261841,-0.0324402,-0.0335083,-0.02948,-0.0215149,-0.00997925,0.00421143,0.0169983,0.0291443,0.037262,0.043335,0.0461426,0.04599,0.0430298,0.0379028,0.0316467,0.0255737,0.0196533,0.0155945,0.0124817,0.0101318,0.00796509,0.00375366,-0.0015564,-0.00827026,-0.0165405,-0.0244751,-0.0324402,-0.0380554,-0.0417786,-0.0413208,-0.0377197,-0.02948,-0.0173035,-0.00326538,0.0112305,0.0240173,0.0344543,0.0405273,0.040863,0.0371094,0.0279236,0.0154419,0.000152588,-0.0155945,-0.0291443,-0.0393066,-0.0461426,-0.0489502,-0.0473938,-0.0420837,-0.036499,-0.0285339,-0.0216675,-0.0163574,-0.013092,-0.0127869,-0.0144958,-0.0188599,-0.0230713,-0.0271301,-0.0302429,-0.0314941,-0.0300903,-0.0271301,-0.020752,-0.0138855,-0.00436401,0.00375366,0.0102844,0.0129395,0.0137329,0.0115356,0.00531006,-0.00375366,-0.0146484,-0.0271301,-0.0393066,-0.0506592,-0.059082,-0.0617371,-0.0608215,-0.057373,-0.0494385,-0.0374146,-0.0247803,-0.0143433,-0.00234985,0.00842285,0.0154419,0.0182495,0.0169983,0.0143433,0.00857544,-0.000152588,-0.010437,-0.0201111,-0.0293274,-0.0380554,-0.0462952,-0.0509949,-0.0556641,-0.0589294,-0.0572205,-0.0517578,-0.0420837,-0.0289917,-0.010437,0.0101318,0.02948,0.0487976,0.0668945,0.0795288,0.0823364,0.0757751,0.0597229,0.0349121,0.00140381,-0.0343018,-0.0667419,-0.0923157,-0.111481,-0.119446,-0.113037,-0.0933838,-0.0623779,-0.0221558,0.0219727,0.063446,0.0977478,0.121002,0.131592,0.128937,0.11319,0.0888672,0.0581665,0.0249329,-0.00671387,-0.0308838,-0.0456848,-0.0492859,-0.0431824,-0.0272827,-0.00656128,0.0154419,0.0366516,0.0545654,0.0667419,0.0712585,0.0679932,0.0583191,0.044281,0.0277405,0.0129395,0.000946045,-0.00686646,-0.0101318,-0.00592041,0.00265503,0.014801,0.0282288,0.0419312,0.0534668,0.0611267,0.0645447,0.0620422,0.0564575,0.0467834,0.0347595,0.0218201,0.0093689,-0.00170898,-0.00997925,-0.0138855,-0.0151367,-0.0132446,-0.0101318,-0.006073,-0.00280762,-0.000793457,0.000457764,0.000457764,0,-0.00201416,-0.00296021,-0.00341797,-0.00109863,0.00234985,0.00827026,0.0155945,0.0244751,0.0303955,0.0347595,0.0347595,0.0316467,0.0247803,0.0143433,0.00219727,-0.0105896,-0.0241699,-0.0347595,-0.0419312,-0.0445862,-0.041626,-0.0354004,-0.0261841,-0.0154419,-0.00497437,0.00375366,0.0107727,0.0138855,0.0143433,0.0105896,0.00482178,-0.00250244,-0.00888062,-0.0143433,-0.0171509,-0.0187073,-0.0173035,-0.0149536,-0.0112305,-0.00637817,-0.00250244,0.000793457,0.0015564,-0.000793457,-0.00637817,-0.0112305,-0.0180969,-0.0255737,-0.0313416,-0.035553,-0.0397644,-0.0411682,-0.0394592,-0.0349121,-0.0288391,-0.0213623,-0.0137329,-0.00701904,-0.00219727,0.00234985,0.00515747,0.00656128,0.00561523,0.00201416,-0.00375366,-0.00967407,-0.0158997,-0.0216675,-0.0258789,-0.0280762,-0.0297852,-0.0297852,-0.0291443,-0.0249329,-0.020752,-0.0152893,-0.00967407,-0.00515747,-0.00125122,0.0015564,0.00375366,0.00576782,0.00701904,0.00827026,0.00857544,0.00778198,0.00717163,0.00592041,0.00531006,0.00311279,0.00109863,-0.00140381,-0.00436401,-0.00842285,-0.0121765,-0.0144958,-0.0166931,-0.0193481,-0.0196533,-0.0196533,-0.0187073,-0.0169983,-0.0143433,-0.0115356,-0.00778198,-0.00405884,0.000457764,0.00561523,0.0121765,0.0174561,0.0237122,0.0296326,0.0350952,0.0379028,0.0383606,0.0361633,0.0296326,0.0187073,0.00436401,-0.0126343,-0.0288391,-0.0448914,-0.0584717,-0.0656433,-0.0670471,-0.0628357,-0.0516052,-0.033844,-0.0127869,0.0093689,0.0305481,0.0478821,0.0598755,0.0651855,0.0629883,0.0545654,0.0405273,0.0241699,0.006073,-0.0093689,-0.020752,-0.0279236,-0.0285339,-0.0244751,-0.0163574,-0.00497437,0.00762939,0.0187073,0.0266724,0.031189,0.0300903,0.0255737,0.0171509,0.00796509,-0.00234985,-0.0093689,-0.0154419,-0.0165405,-0.013092,-0.00671387,0.00341797,0.0152893,0.0279236,0.0377197,0.0444336,0.0481873,0.0467834,0.0419312,0.033844,0.0227661,0.0119934,0.000946045,-0.00811768,-0.014801,-0.0171509,-0.0169983,-0.0132446,-0.00796509,-0.0015564,0.00482178,0.00982666,0.0135803,0.0137329,0.013092,0.0093689,0.00482178,-0.000152588,-0.00482178,-0.00747681,-0.00888062,-0.00747681,-0.00436401,0.000946045,0.00701904,0.0119934,0.0165405,0.0190125,0.0182495,0.0157471,0.010437,0.00360107,-0.00341797,-0.0112305,-0.0171509,-0.0216675,-0.0215149,-0.0204163,-0.0154419,-0.00778198,0.000305176,0.00872803,0.0160522,0.0216675,0.0246277,0.0247803,0.0221558,0.0173035,0.0102844,0.00280762,-0.00390625,-0.0093689,-0.0129395,-0.0135803,-0.0123291,-0.00982666,-0.00436401,-0.000152588,0.00546265,0.0105896,0.0141907,0.0157471,0.0144958,0.0126343,0.00952148,0.00637817,0.00296021,-0.00125122,-0.00311279,-0.00436401,-0.0045166,-0.00341797,-0.0015564,0.000152588,0.00234985,0.00375366,0.00405884,0.00375366,0.00234985,0.000305176,-0.00219727,-0.00421143,-0.00622559,-0.00717163,-0.00762939,-0.00811768,-0.00686646,-0.00546265,-0.00421143,-0.00280762,-0.00219727,-0.00186157,-0.00280762,-0.00360107,-0.00497437,-0.00671387,-0.00762939,-0.0090332,-0.00982666,-0.010437,-0.00982666,-0.0102844,-0.00872803,-0.00842285,-0.00811768,-0.00842285,-0.0090332,-0.00982666,-0.0115356,-0.0127869,-0.0138855,-0.0154419,-0.0157471,-0.0166931,-0.0152893,-0.0143433,-0.0118408,-0.00952148,-0.00656128,-0.00482178,-0.00265503,-0.00219727,-0.00170898,-0.00265503,-0.00421143,-0.00576782,-0.00811768,-0.00997925,-0.0118408,-0.0135803,-0.0135803,-0.0143433,-0.0141907,-0.0138855,-0.0132446,-0.0123291,-0.0113831,-0.0112305,-0.010437,-0.0093689,-0.0090332,-0.00762939,-0.00671387,-0.00546265,-0.00311279,-0.00140381,0.00109863,0.00265503,0.00341797,0.00341797,0.00234985,0.000152588,-0.00311279,-0.00732422,-0.0121765,-0.0168457,-0.0204163,-0.0232239,-0.0235291,-0.0218201,-0.0182495,-0.0126343,-0.00576782,0.00186157,0.00872803,0.0141907,0.0173035,0.0182495,0.0157471,0.0112305,0.00405884,-0.00341797,-0.0116882,-0.0179443,-0.0224609,-0.0241699,-0.0224609,-0.0184021,-0.0113831,-0.00311279,0.00515747,0.0129395,0.0193481,0.0229187,0.0230713,0.0218201,0.0163574,0.0112305,0.00405884,-0.00234985,-0.00778198,-0.0110779,-0.0124817,-0.0119934,-0.00872803,-0.00421143,0.000946045,0.00622559,0.0115356,0.0155945,0.0187073,0.0198059,0.0202637,0.019165,0.0173035,0.0154419,0.0129395,0.0112305,0.0093689,0.00872803,0.00778198,0.00827026,0.00842285,0.0090332,0.00888062,0.00967407,0.00952148,0.00982666,0.00967407,0.00982666,0.00982666,0.00967407,0.00952148,0.00918579,0.00857544,0.00827026,0.00778198,0.00717163,0.00656128,0.00531006,0.00497437,0.00375366,0.00341797,0.00360107,0.00405884,0.00436401,0.00482178,0.00546265,0.00592041,0.006073,0.00686646,0.00656128,0.00637817,0.00546265,0.00466919,0.00311279,0.00234985,0.00140381,0.00109863,0.000152588,0,-0.000610352,0.000457764,0.000946045,0.00201416,0.00265503,0.00326538,0.00341797,0.00390625,0.00360107,0.00341797,0.00280762,0.00311279,0.00311279,0.00341797,0.00390625,0.00466919,0.006073,0.00686646,0.00888062,0.0093689,0.0101318,0.0102844,0.0093689,0.00857544,0.00747681,0.00515747,0.00390625,0.00170898,0.000610352,-0.000305176,-0.000305176,0.000610352,0.00234985,0.00421143,0.00671387,0.0090332,0.0110779,0.0119934,0.0129395,0.0119934,0.0107727,0.00827026,0.0045166,0.00186157,-0.00170898,-0.00421143,-0.00592041,-0.00762939,-0.00811768,-0.00872803,-0.00747681,-0.006073,-0.0045166,-0.00234985,-0.00186157,-0.00109863,-0.00140381,-0.00140381,-0.00265503,-0.00390625,-0.00497437,-0.00561523,-0.00637817,-0.006073,-0.00622559,-0.00592041,-0.00576782,-0.00576782,-0.00592041,-0.00717163,-0.00796509,-0.00997925,-0.0109253,-0.0124817,-0.0124817,-0.0123291,-0.0121765,-0.0105896,-0.00872803,-0.00747681,-0.00436401,-0.00311279,-0.00109863,-0.000152588,-0.000152588,0,-0.000946045,-0.00170898,-0.00265503,-0.00341797,-0.00296021,-0.00375366,-0.00280762,-0.00201416,-0.0015564,-0.000793457,-0.000610352,-0.00125122,-0.00219727,-0.00390625,-0.00576782,-0.00762939,-0.00967407,-0.0112305,-0.0121765,-0.0119934,-0.0115356,-0.00982666,-0.00827026,-0.006073,-0.0045166,-0.00311279,-0.00280762,-0.00265503,-0.00375366,-0.00497437,-0.00747681,-0.00918579,-0.0116882,-0.0135803,-0.0143433,-0.014801,-0.0138855,-0.013092,-0.0110779,-0.00997925,-0.00762939,-0.00717163,-0.006073,-0.00732422,-0.00811768,-0.0102844,-0.0129395,-0.0146484,-0.0166931,-0.0180969,-0.0185547,-0.0179443,-0.0165405,-0.0143433,-0.0115356,-0.00857544,-0.00515747,-0.00311279,-0.000793457,-0.000152588,0.000610352,0,-0.000610352,-0.00140381,-0.00311279,-0.00375366,-0.00515747,-0.00531006,-0.00546265,-0.00436401,-0.00326538,-0.00219727,-0.000152588,0.00109863,0.00265503,0.00436401,0.00515747,0.00671387,0.00701904,0.00762939,0.00762939,0.00732422,0.00778198,0.00796509,0.00762939,0.00796509,0.00717163,0.00656128,0.00576782,0.00497437,0.00421143,0.00265503,0.00234985,0.000610352,0.000610352,0.000305176,0.00125122,0.00234985,0.0045166,0.006073,0.00796509,0.00997925,0.0113831,0.0121765,0.0126343,0.0119934,0.0105896,0.00811768,0.00531006,0.00219727,-0.000305176,-0.00250244,-0.00341797,-0.00405884,-0.00375366,-0.00234985,-0.000152588,0.00234985,0.00592041,0.00842285,0.0109253,0.0121765,0.013092,0.013092,0.0123291,0.0119934,0.0109253,0.00952148,0.00857544,0.00701904,0.00671387,0.00622559,0.00671387,0.00671387,0.00732422,0.00732422,0.00762939,0.00796509,0.00762939,0.00796509,0.00796509,0.00811768,0.00778198,0.00888062,0.00842285,0.0093689,0.00952148,0.00967407,0.00888062,0.00857544,0.00762939,0.00671387,0.00592041,0.00515747,0.00482178,0.00482178,0.00466919,0.00656128,0.00671387,0.00888062,0.0101318,0.0110779,0.0118408,0.0116882,0.0110779,0.0090332,0.00701904,0.00436401,0.00109863,-0.00170898,-0.00421143,-0.00671387,-0.00762939,-0.00811768,-0.00717163,-0.00531006,-0.00265503,0.000305176,0.00280762,0.006073,0.00857544,0.0109253,0.0118408,0.0113831,0.0102844,0.00811768,0.00531006,0.00219727,-0.000305176,-0.00326538,-0.00531006,-0.00686646,-0.00717163,-0.00686646,-0.00592041,-0.00436401,-0.00265503,-0.00140381,0.000152588,0.000946045,0.00186157,0.00201416,0.00219727,0.00201416,0.00186157,0.00186157,0.00201416,0.00219727,0.00234985,0.00265503,0.00234985,0.00170898,0.00109863,-0.000152588,-0.00170898,-0.00341797,-0.00546265,-0.00637817,-0.00762939,-0.00857544,-0.00778198,-0.00717163,-0.00576782,-0.0045166,-0.00280762,-0.0015564,-0.000457764,0.000457764,0,-0.00219727,-0.00686646,-0.00982666,-0.0115356,-0.0118408,-0.0123291,-0.0129395,-0.0127869,-0.0126343,-0.0107727,-0.00811768,-0.00546265,-0.00375366,-0.00186157,-0.00186157,-0.00219727,-0.00311279,-0.00482178,-0.00686646,-0.00842285,-0.010437,-0.0110779,-0.0119934,-0.0124817,-0.0126343,-0.0121765,-0.0112305,-0.00997925,-0.00872803,-0.00671387,-0.00576782,-0.00482178,-0.00497437,-0.00546265,-0.00546265,-0.00622559,-0.00622559,-0.00701904,-0.00747681,-0.00857544,-0.00952148,-0.00888062,-0.00811768,-0.00762939,-0.00796509,-0.00701904,-0.00796509,-0.00811768,-0.00872803,-0.00952148,-0.010437,-0.0102844,-0.00997925,-0.00872803,-0.00656128,-0.00466919,-0.00265503,-0.000793457,0,0,-0.000793457,-0.00170898,-0.00421143,-0.00637817,-0.00872803,-0.010437,-0.0123291,-0.0127869,-0.013092,-0.0119934,-0.00997925,-0.00827026,-0.00531006,-0.00296021,-0.0015564,0.000457764,0.000793457,0.00125122,0.000793457,0.000793457,-0.000152588,-0.000946045,-0.00201416,-0.00250244,-0.00311279,-0.00311279,-0.00375366,-0.00296021,-0.00265503,-0.00219727,-0.00140381,-0.000946045,-0.000793457,-0.000305176,-0.00109863,-0.00109863,-0.00219727,-0.00250244,-0.00311279,-0.00360107,-0.00280762,-0.00326538,-0.00170898,-0.000610352,0.000946045,0.00201416,0.00466919,0.00561523,0.00637817,0.00656128,0.00622559,0.00482178,0.00341797,0.00201416,0.000457764,-0.0015564,-0.00265503,-0.00375366,-0.00405884,-0.00375366,-0.00250244,-0.00109863,0.000610352,0.00250244,0.00405884,0.00515747,0.00561523,0.00546265,0.00515747,0.00421143,0.00296021,0.00186157,0.00109863,0.000305176,0.000305176,0.000793457,0.00201416,0.00296021,0.00515747,0.00656128,0.00827026,0.00952148,0.010437,0.0107727,0.0105896,0.0101318,0.00918579,0.00732422,0.00622559,0.00405884,0.00280762,0.00201416,0.00201416,0.00265503,0.00326538,0.00531006,0.00701904,0.00967407,0.0126343,0.0143433,0.0171509,0.0184021,0.0188599,0.0184021,0.0168457,0.0146484,0.0121765,0.0090332,0.00576782,0.00280762,0.000305176,-0.0015564,-0.00201416,-0.00186157,0.000152588,0.00234985,0.00466919,0.00827026,0.0107727,0.0132446,0.0154419,0.0162048,0.0166931,0.0158997,0.0141907,0.0123291,0.00982666,0.00717163,0.00546265,0.00375366,0.00170898,0.00186157,0.00125122,0.00186157,0.00296021,0.00390625,0.00546265,0.00637817,0.00732422,0.00762939,0.00778198,0.00762939,0.00747681,0.00656128,0.00592041,0.00515747,0.00497437,0.00390625,0.00436401,0.00482178,0.00482178,0.00576782,0.006073,0.00717163,0.00762939,0.00811768,0.00872803,0.00857544,0.00872803,0.00762939,0.00732422,0.00592041,0.0045166,0.00341797,0.00219727,0.00109863,0,-0.000457764,-0.000610352,-0.000305176,0.000457764,0.0015564,0.00296021,0.00405884,0.00497437,0.00592041,0.00622559,0.00592041,0.00561523,0.00482178,0.00375366,0.00219727,0.000946045,-0.000457764,-0.00140381,-0.00186157,-0.00201416,-0.00234985,-0.00219727,-0.00219727,-0.00234985,-0.00234985,-0.00219727,-0.00280762,-0.00341797,-0.00311279,-0.0045166,-0.00421143,-0.00482178,-0.00497437,-0.00466919,-0.00497437,-0.00466919,-0.00436401,-0.00390625,-0.00405884,-0.00390625,-0.00390625,-0.00436401,-0.00466919,-0.00546265,-0.006073,-0.00671387,-0.00732422,-0.00811768,-0.00827026,-0.00842285,-0.00827026,-0.00796509,-0.00732422,-0.00686646,-0.00622559,-0.00531006,-0.00515747,-0.00466919,-0.0045166,-0.00546265,-0.00546265,-0.00732422,-0.00762939,-0.00952148,-0.0101318,-0.0115356,-0.0116882,-0.0118408,-0.0118408,-0.0105896,-0.0093689,-0.00796509,-0.00686646,-0.00561523,-0.00546265,-0.00497437,-0.00592041,-0.00656128,-0.00778198,-0.00952148,-0.0105896,-0.0123291,-0.013092,-0.0132446,-0.0133972,-0.0119934,-0.0115356,-0.00952148,-0.00762939,-0.00656128,-0.00466919,-0.00390625,-0.00341797,-0.00326538,-0.00421143,-0.00436401,-0.00576782,-0.00686646,-0.00842285,-0.00857544,-0.00967407,-0.00952148,-0.0090332,-0.00842285,-0.00747681,-0.00671387,-0.00531006,-0.00482178,-0.00421143,-0.00341797,-0.00375366,-0.00390625,-0.00405884,-0.00482178,-0.00546265,-0.00531006,-0.00546265,-0.00531006,-0.00482178,-0.00390625,-0.00326538,-0.00234985,-0.00186157,-0.00109863,-0.000610352,-0.00109863,-0.00140381,-0.00234985,-0.00326538,-0.00421143,-0.00515747,-0.00592041,-0.006073,-0.00622559,-0.00531006,-0.0045166,-0.00326538,-0.00125122,0.000152588,0.00186157,0.00341797,0.00390625,0.0045166,0.00405884,0.00311279,0.00201416,0.000457764,-0.00140381,-0.00265503,-0.00390625,-0.00482178,-0.00515747,-0.00497437,-0.00436401,-0.00326538,-0.00186157,-0.000610352,0.00125122,0.00234985,0.00341797,0.00436401,0.00466919,0.00466919,0.00436401,0.00341797,0.00265503,0.00125122,0.000457764,-0.00125122,-0.00140381,-0.00234985,-0.00234985,-0.00234985,-0.00109863,-0.000946045,0.000793457,0.00186157,0.00311279,0.00405884,0.00482178,0.00466919,0.00515747,0.00375366,0.00326538,0.00170898,0.000152588,-0.00109863,-0.00265503,-0.00311279,-0.00375366,-0.00375366,-0.00280762,-0.00186157,-0.000457764,0.000793457,0.00201416,0.00311279,0.00341797,0.00375366,0.00280762,0.00186157,0.000610352,-0.00125122,-0.00219727,-0.00375366,-0.00421143,-0.00436401,-0.00375366,-0.00296021,-0.00125122,0.000305176,0.00170898,0.00326538,0.00436401,0.00421143,0.00515747,0.00375366,0.00375366,0.00234985,0.0015564,0.000457764,0,-0.000610352,0,0,0.000946045,0.00201416,0.00219727,0.00360107,0.00375366,0.00436401,0.00482178,0.00466919,0.00466919,0.00515747,0.0045166,0.00482178,0.00482178,0.00531006,0.00546265,0.006073,0.00592041,0.006073,0.006073,0.00546265,0.0045166,0.00390625,0.00265503,0.0015564,0.000793457,0,0.000152588,0.000946045,0.00170898,0.00326538,0.00482178,0.00701904,0.00811768,0.00997925,0.0101318,0.010437,0.00982666,0.00827026,0.00686646,0.00497437,0.00280762,0.00170898,0.000457764,-0.000152588,0.000152588,0.000793457,0.00219727,0.00360107,0.00576782,0.00747681,0.00827026,0.00997925,0.00888062,0.00952148,0.00811768,0.00686646,0.00515747,0.00390625,0.00250244,0.00125122,0.00109863,0.00125122,0.00140381,0.00265503,0.00375366,0.00515747,0.00622559,0.00732422,0.00827026,0.00888062,0.00842285,0.00888062,0.00827026,0.00778198,0.00778198,0.00701904,0.00671387,0.00622559,0.00576782,0.00497437,0.00466919,0.00360107,0.00296021,0.00186157,0.00140381,0.000457764,0.000305176,0.000152588,0.000946045,0.00170898,0.00250244,0.00405884,0.00531006,0.00686646,0.00717163,0.00811768,0.00762939,0.00717163,0.00622559,0.00482178,0.00296021,0.00109863,-0.000610352,-0.00219727,-0.00375366,-0.00436401,-0.00482178,-0.0045166,-0.00405884,-0.00311279,-0.00140381,-0.000457764,0.000610352,0.00234985,0.00296021,0.00341797,0.00341797,0.00311279,0.00280762,0.00219727,0.000946045,0,-0.000793457,-0.0015564,-0.00250244,-0.00265503,-0.00326538,-0.00326538,-0.00360107,-0.00360107,-0.00326538,-0.00311279,-0.00234985,-0.00201416,-0.00125122,-0.000793457,-0.000152588,0.000152588,0.000610352,0.000793457,0.000946045,0.000457764,0,-0.00140381,-0.00201416,-0.00360107,-0.00466919,-0.00592041,-0.00671387,-0.00778198,-0.00778198,-0.00778198,-0.00701904,-0.00622559,-0.00497437,-0.00390625,-0.00250244,-0.00186157,-0.00109863,-0.000946045,-0.00125122,-0.00219727,-0.00326538,-0.00466919,-0.00637817,-0.00732422,-0.00888062,-0.00918579,-0.00997925,-0.00997925,-0.00918579,-0.00888062,-0.00762939,-0.00656128,-0.00546265,-0.00466919,-0.00375366,-0.00390625,-0.00326538,-0.00436401,-0.0045166,-0.00622559,-0.00686646,-0.00857544,-0.00952148,-0.0105896,-0.0115356,-0.0113831,-0.0113831,-0.0110779,-0.0102844,-0.00918579,-0.00811768,-0.00686646,-0.00576782,-0.00466919,-0.00390625,-0.00341797,-0.00311279,-0.00311279,-0.00375366,-0.00405884,-0.00531006,-0.00576782,-0.00701904,-0.00811768,-0.00827026,-0.00918579,-0.00888062,-0.00918579,-0.00811768,-0.00796509,-0.00717163,-0.00592041,-0.00531006,-0.00421143,-0.00360107,-0.00311279,-0.00296021,-0.00326538,-0.00311279,-0.00390625,-0.00421143,-0.00436401,-0.00482178,-0.00497437,-0.00497437,-0.00531006,-0.00482178,-0.00421143,-0.00390625,-0.00296021,-0.00201416,-0.00186157,-0.000457764,-0.000457764,0.000457764,0.000457764,0.000610352,0.000152588,0.000152588,-0.00125122,-0.00125122,-0.00234985,-0.00265503,-0.00311279,-0.00341797,-0.00341797,-0.00280762,-0.00234985,-0.00109863,0.000305176,0.00125122,0.00326538,0.00421143,0.00561523,0.00671387,0.00701904,0.00796509,0.00732422,0.00747681,0.006073,0.00515747,0.00375366,0.00250244,0.00109863,0,-0.000793457,-0.00125122,-0.00140381,-0.00109863,0,0.00140381,0.00265503,0.0045166,0.00561523,0.00732422,0.00778198,0.00842285,0.00842285,0.00827026,0.00717163,0.00637817,0.00497437,0.00405884,0.00265503,0.00265503,0.00170898,0.00219727,0.00250244,0.00311279,0.00375366,0.0045166,0.00561523,0.00576782,0.00622559,0.006073,0.00592041,0.00531006,0.00466919,0.00390625,0.00360107,0.00296021,0.00250244,0.00265503,0.00219727,0.00201416,0.00201416,0.00250244,0.00219727,0.00250244,0.00250244,0.00265503,0.00296021,0.00311279,0.00360107,0.00375366,0.00436401,0.0045166,0.00466919,0.0045166,0.00436401,0.00375366,0.00296021,0.00201416,0.000610352,-0.000305176,-0.0015564,-0.00219727,-0.00311279,-0.00296021,-0.00311279,-0.00250244,-0.00170898,-0.000793457,0.000305176,0.0015564,0.00201416,0.00280762,0.00360107,0.00311279,0.00296021,0.00201416,0.00125122,-0.000305176,-0.00125122,-0.00280762,-0.00375366,-0.00482178,-0.00561523,-0.00592041,-0.006073,-0.00561523,-0.00515747,-0.00405884,-0.00296021,-0.00186157,-0.000610352,0.000305176,0.00125122,0.00140381,0.00186157,0.00140381,0.000793457,0.000152588,-0.0015564,-0.00219727,-0.00375366,-0.0045166,-0.00466919,-0.00576782,-0.00466919,-0.00497437,-0.00390625,-0.00296021,-0.00219727,-0.00109863,0.000457764,0.000305176,0.0015564,0.0015564,0.0015564,0.00170898,0.00140381,0.00125122,0.000793457,0.000305176,0.000305176,-0.000305176,-0.000793457,-0.000610352,-0.000793457,-0.00140381,-0.00109863,-0.00109863,-0.000946045,-0.000610352,-0.000152588,0.000152588,0.000610352,0.000793457,0.00140381,0.0015564,0.00186157,0.00201416,0.00219727,0.00186157,0.00201416,0.00140381,0.00125122,0.000946045,0.000610352,0.000793457,0,0.000305176,0.000152588,0,0.000610352,0.000610352,0.00109863,0.00170898,0.0015564,0.00234985,0.00219727,0.00265503,0.00234985,0.00234985,0.00219727,0.00186157,0.00125122,0.00125122,0.000457764,0.000793457,0.000457764,0.000152588,0.000793457,0.000457764,0.00140381,0.000793457,0.00219727,0.0015564,0.00234985,0.00234985,0.00219727,0.00234985,0.00201416,0.00219727,0.0015564,0.00140381,0.00125122,0.00125122,0.000457764,0.000946045,0.000457764,0.000152588,0.000152588,-0.000457764,-0.000457764,-0.000946045,-0.00109863,-0.00140381,-0.00109863,-0.00109863,-0.000946045,-0.000610352,0.000152588,0.000152588,0.00109863,0.00140381,0.00140381,0.00170898,0.00125122,0.000793457,-0.000152588,-0.000946045,-0.00186157,-0.00296021,-0.00341797,-0.00390625,-0.00405884,-0.00390625,-0.00311279,-0.00296021,-0.00125122,-0.00109863,-0.000152588,0.000305176,0.000152588,-0.000152588,-0.000610352,-0.00170898,-0.00265503,-0.00375366,-0.00405884,-0.00576782,-0.00466919,-0.00515747,-0.0045166,-0.00375366,-0.00234985,-0.0015564,-0.000305176,0.000610352,0.00125122,0.00201416,0.00125122,0.00170898,0.000946045,0,-0.000610352,-0.00125122,-0.00219727,-0.00250244,-0.00296021,-0.00280762,-0.00265503,-0.00280762,-0.00170898,-0.00219727,-0.00109863,-0.00140381,-0.000610352,-0.000946045,-0.000793457,-0.000457764,-0.000457764,-0.000305176,-0.000152588,0.000152588,0.000457764,0.000610352,0.000946045,0.00109863,0.000946045,0.00109863,0.000610352,0.000305176,0.000305176,-0.000946045,-0.000793457,-0.00140381,-0.00170898,-0.00170898,-0.00140381,-0.00140381,-0.000793457,-0.000610352,0.000152588,0.000457764,0.000793457,0.00125122,0.00125122,0.00125122,0.00109863,0.000457764,0.000793457,0,-0.000152588,-0.000305176,-0.000610352,0.000152588,-0.000793457,-0.000152588,0.000152588,0.000152588,0.000457764,0.000793457,0.000793457,0.00109863,0.00125122,0.00125122,0.00170898,0.00140381,0.00170898,0.00170898,0.000946045,0.0015564,0.000152588,0.000152588,-0.000946045,-0.0015564,-0.00201416,-0.00265503,-0.00265503,-0.00280762,-0.00201416,-0.00186157,-0.000457764,0.000793457,0.00234985,0.00311279,0.00436401,0.00482178,0.00482178,0.0045166,0.00326538,0.00250244,0.000305176,-0.00125122,-0.00250244,-0.00405884,-0.00466919,-0.00421143,-0.00405884,-0.00280762,-0.0015564,0.000152588,0.00140381,0.00296021,0.00326538,0.00390625,0.00360107,0.00219727,0.00109863,-0.000946045,-0.00186157,-0.00405884,-0.0045166,-0.00546265,-0.00515747,-0.00497437,-0.00405884,-0.00265503,-0.00125122,0.000152588,0.00186157,0.00234985,0.00326538,0.00341797,0.00311279,0.00280762,0.00186157,0.00109863,0.000152588,-0.000946045,-0.00170898,-0.00219727,-0.00265503,-0.00280762,-0.00296021,-0.00250244,-0.00234985,-0.00201416,-0.00170898,-0.000946045,-0.000457764,0.000152588,0.000610352,0.000946045,0.0015564,0.0015564,0.00201416,0.00170898,0.00201416,0.0015564,0.00140381,0.000610352,0.000305176,-0.000457764,-0.00125122,-0.00140381,-0.00201416,-0.00186157,-0.00201416,-0.00186157,-0.000610352,-0.000457764,0.000610352,0.0015564,0.00219727,0.00265503,0.00296021,0.00250244,0.00201416,0.00140381,0,-0.000946045,-0.00170898,-0.00250244,-0.00265503,-0.00265503,-0.00170898,-0.00109863,0.000457764,0.00140381,0.00311279,0.00360107,0.00436401,0.00405884,0.00360107,0.00250244,0.00125122,-0.000152588,-0.00140381,-0.00296021,-0.00375366,-0.00405884,-0.00390625,-0.00311279,-0.00219727,-0.00109863,0.000152588,0.000946045,0.00186157,0.00219727,0.00234985,0.00186157,0.0015564,0.000457764,-0.000457764,-0.00109863,-0.00140381,-0.00201416,-0.0015564,-0.00170898,-0.000946045,-0.000793457,0,0,0.000946045,0.000610352,0.00109863,0.000610352,0.000457764,0.000305176,-0.000152588,-0.000152588,-0.000305176,-0.000305176,-0.000457764,-0.000152588,-0.000793457,-0.000305176,-0.000610352,-0.000610352,-0.000610352,-0.000946045,-0.00109863,-0.00125122,-0.00125122,-0.00109863,-0.00109863,-0.000946045,-0.000457764,-0.000610352,0,-0.000610352,0,-0.000793457,-0.000457764,-0.00109863,-0.00109863,-0.00170898,-0.0015564,-0.00186157,-0.00109863,-0.00186157,-0.000457764,-0.00109863,0,-0.000305176,0.000152588,0,-0.000152588,-0.000152588,-0.00109863,-0.000946045,-0.00170898,-0.00201416,-0.00201416,-0.00234985,-0.00186157,-0.00170898,-0.00125122,-0.000793457,-0.000152588,0.000152588,0.000610352,0.000793457,0.000610352,0.000793457,-0.000152588,0,-0.000457764,-0.00109863,-0.00140381,-0.00140381,-0.00140381,-0.00125122,-0.00109863,-0.000610352,-0.000152588,0.000152588,0.000152588,0.000793457,0.000152588,0.000610352,-0.000610352,0.000152588,-0.000793457,-0.000793457,-0.00109863,-0.000946045,-0.000152588,0.000152588,0.00125122,0.00170898,0.00311279,0.00341797,0.00360107,0.00375366,0.00341797,0.00265503,0.00170898,0.000457764,-0.000457764,-0.00186157,-0.00250244,-0.00296021,-0.00375366,-0.00311279,-0.00250244,-0.00219727,-0.000946045,-0.000457764,0.000793457,0.000946045,0.00140381,0.00170898,0.00125122,0.00140381,0.000793457,0.000610352,0,-0.000152588,-0.000457764,-0.00109863,-0.00125122,-0.00140381,-0.00186157,-0.00265503,-0.00219727,-0.00265503,-0.00280762,-0.00186157,-0.00201416,-0.000946045,-0.000457764,0.000457764,0.00125122,0.00219727,0.00219727,0.00265503,0.00234985,0.00170898,0.000610352,0,-0.00140381,-0.00234985,-0.00296021,-0.00375366,-0.00341797,-0.00341797,-0.00234985,-0.0015564,0,0.000946045,0.00234985,0.00265503,0.00311279,0.00326538,0.00280762,0.00186157,0.00109863,0,-0.000946045,-0.00186157,-0.00234985,-0.00280762,-0.00234985,-0.00219727,-0.00109863,-0.000305176,0.000610352,0.00140381,0.00219727,0.00296021,0.00265503,0.0045166,0.00701904,0.00778198,0.00561523,0.00390625,0.00219727,0.00109863,-0.000457764,-0.000610352,-0.00109863,-0.00170898,-0.00186157,-0.000793457,-0.000457764,-0.000610352,-0.000610352,-0.000946045,-0.000946045,-0.0015564,-0.00140381,-0.00201416,-0.00186157,-0.00109863,-0.000305176,-0.000457764,-0.000457764,-0.000152588,-0.000457764,0,-0.000305176,-0.000457764,-0.00125122,-0.00219727,-0.00219727,-0.00234985,-0.00234985,-0.00265503,-0.00186157,-0.000946045,-0.000793457,-0.00109863,0,0.000946045,0.00140381,0.00170898,0.0015564,0,-0.000610352,-0.00109863,-0.000457764,-0.000946045,-0.00201416,-0.00390625,-0.00265503,-0.00201416,-0.000793457,-0.00109863,0,0.0015564,0.00234985,0.00140381,0.00170898,0.000793457,0.000610352,-0.00109863,-0.000946045,-0.00234985,-0.00125122,-0.000152588,0,-0.00125122,-0.000610352,-0.00125122,-0.00186157,-0.000793457,0.000610352,0.00125122,0.00170898,0.00250244,0.00296021,0.00265503,0.00219727,0.00140381,0.000457764,-0.000946045,-0.00186157,-0.00296021,-0.00296021,-0.00170898,-0.000457764,-0.000152588,0.000610352,0.00326538,0.00482178,0.00576782,0.00576782,0.00405884,0.00326538,0.00326538,0.00280762,0.00296021,0.0015564,0.00140381,0.00170898,0.00234985,0.00341797,0.00296021,0.00201416,0.00234985,0.00170898,0.000610352,0.000152588,-0.000152588,-0.000946045,-0.00186157,-0.00265503,-0.0015564,-0.00109863,-0.00186157,-0.00265503,-0.00140381,0.000457764,0.00109863,0.000793457,0.00170898,0.00280762,0.00341797,0.00421143,0.0045166,0.00311279,0.0015564,-0.000305176,-0.000152588,-0.0015564,-0.00219727,-0.00341797,-0.00390625,-0.00296021,-0.00140381,-0.00140381,-0.00390625,-0.00250244,-0.00109863,-0.0015564,-0.00265503,-0.00234985,-0.000946045,-0.00186157,-0.00326538,-0.00311279,-0.00311279,-0.00296021,-0.00375366,-0.00296021,-0.00219727,-0.00326538,-0.00482178,-0.00482178,-0.00296021,-0.00265503,-0.00280762,-0.00375366,-0.00405884,-0.00390625,-0.00201416,-0.00186157,-0.00250244,-0.00341797,-0.000793457,0.00140381,-0.000793457,-0.00375366,-0.00531006,-0.00531006,-0.00326538,-0.00250244,-0.00170898,-0.000152588,0.00436401,0.00796509,0.00671387,0.00311279,0.00140381,0.0015564,0.00186157,0.0015564,0.000152588,-0.00219727,-0.00125122,0.0015564,0.00390625,0.00390625,0.00390625,0.00405884,0.00576782,0.00827026,0.00778198,0.00466919,0.00201416,0.000946045,0.000793457,0.0015564,0.00186157,0.00375366,0.00656128,0.00701904,0.00671387,0.00762939,0.00531006,0.00140381,-0.00125122,0.000152588,0.000457764,-0.00219727,-0.00311279,-0.00201416,-0.00186157,-0.00296021,-0.00296021,-0.00326538,-0.00576782,-0.00717163,-0.00637817,-0.00497437,-0.00515747,-0.00592041,-0.00515747,-0.00280762,0.00326538,0.00515747,0.00671387,0.00637817,0.00592041,0.00311279,0.00125122,0.000946045,-0.00125122,-0.00280762,-0.00311279,-0.00125122,-0.000793457,-0.00234985,-0.00311279,-0.00311279,-0.00186157,-0.00170898,-0.00375366,-0.006073,-0.00546265,-0.00375366,-0.00280762,-0.00311279,-0.00375366,-0.00421143,-0.00265503,0.00186157,0.00531006,0.00311279,-0.00140381,-0.00497437,-0.00637817,-0.006073,-0.00375366,-0.00125122,0.000305176,0.00250244,0.00234985,0.00234985,0.0015564,0.000457764,-0.000457764,0.00186157,0.00421143,0.00421143,0.0015564,0.00234985,0.006073,0.00576782,0.00421143,0.0015564,0.000946045,0.00219727,0.00140381,0,-0.00234985,-0.00296021,-0.000610352,0.00170898,0.00109863,-0.000305176,0.00125122,0.00436401,0.00360107,0.000457764,0.00170898,0.00466919,0.00360107,0.0015564,0.00186157,0.0045166,0.00265503,0.00219727,0.00250244,0.00360107,0.00311279,0.00234985,0.00421143,0.00436401,0.00671387,0.006073,0.00482178,0.00280762,0.00140381,0,-0.000305176,-0.000152588,-0.000305176,0.00140381,0.00390625,0.00265503,0,-0.000305176,0.00296021,0.00497437,0.00515747,0.00436401,0.00436401,0.00219727,-0.00140381,-0.00405884,-0.00390625,-0.00466919,-0.00531006,-0.00482178,-0.00375366,-0.00296021,-0.00326538,-0.00390625,-0.00390625,-0.00390625,-0.00311279,-0.00482178,-0.006073,-0.00637817,-0.00546265,-0.00515747,-0.00482178,-0.00421143,-0.00375366,-0.00405884,-0.00515747,-0.00656128,-0.00576782,-0.00265503,-0.00326538,-0.00531006,-0.00265503,0.000793457,0.000152588,-0.00326538,-0.00482178,-0.00466919,-0.00466919,-0.00546265,-0.00842285,-0.0093689,-0.0090332,-0.00732422,-0.00622559,-0.00686646,-0.00576782,-0.00421143,-0.00219727,-0.00186157,-0.00341797,-0.00311279,-0.00186157,-0.000152588,0.000457764,-0.00125122,-0.00170898,-0.00170898,-0.0015564,-0.00375366,-0.00405884,-0.00311279,-0.00219727,-0.00125122,0.000305176,0.00125122,-0.000152588,-0.00109863,-0.0015564,-0.0015564,-0.000946045,0,0.000946045,0,-0.00109863,-0.00109863,-0.00140381,-0.00170898,-0.00280762,-0.00311279,-0.00234985,-0.00341797,-0.00360107,-0.00234985,0.000305176,0.00109863,-0.000793457,-0.00125122,0.000457764,0.000457764,0.0015564,0.00311279,0.00390625,0.00234985,0.00140381,0.000793457,0.000610352,0.00125122,-0.000610352,-0.00201416,-0.00341797,-0.00201416,0.000610352,0.000793457,0,0.00125122,0.00219727,0.00390625,0.00436401,0.00296021,0.00140381,-0.00170898,-0.00234985,-0.00280762,-0.00201416,-0.000793457,-0.000793457,-0.000152588,-0.000457764,-0.000946045,-0.00250244,-0.00421143,-0.00326538,-0.00201416,-0.00125122,-0.000946045,-0.00201416,-0.00375366,-0.00296021,-0.00341797,-0.00375366,-0.00234985,0.000305176,0.00125122,0.0015564,0.00234985,0.00219727,0.000457764,-0.00234985,-0.00375366,-0.00341797,-0.00405884,-0.00482178,-0.00466919,-0.00326538,-0.00234985,-0.00170898,-0.00186157,-0.00140381,-0.00109863,-0.000457764,-0.000305176,0,-0.000152588,-0.000152588,-0.000152588,-0.000457764,-0.00125122,-0.00170898,-0.00109863,-0.000457764,-0.000793457,-0.000610352,-0.000305176,-0.000457764,-0.000946045,-0.000152588,0,0.000610352,0,-0.00125122,-0.000793457,-0.000457764,0.000946045,0.000793457,0.0015564,0.000610352,-0.000457764,-0.000305176,0.000946045,0.000793457,0.00109863,0.000457764,0.000152588,-0.000946045,-0.000793457,0.000305176,0.000610352,0.000946045,0.00109863,0.000610352,0.00109863,0.00250244,0.00390625,0.00405884,0.00296021,0.00360107,0.00375366,0.00326538,0.00170898,0.000793457,0.00109863,0.000305176,0.000457764,0.000305176,0,0,0.000610352,0.00170898,0.00234985,0.00296021,0.00341797,0.00390625,0.00482178,0.0045166,0.00515747,0.00497437,0.00341797,0.00201416,0.000457764,-0.000152588,-0.000305176,-0.00109863,-0.000610352,-0.000793457,-0.00109863,-0.000305176,0.000946045,0.00265503,0.00219727,0.00219727,0.00250244,0.00201416,0.00109863,0.000305176,0.00109863,0.00140381,0.00234985,0.00280762,0.00296021,0.00296021,0.00186157,0.00201416,0.00250244,0.00250244,0.00219727,0.00125122,0.000610352,0.000610352,0.00140381,0.0015564,0.00125122,0,0,0.000305176,0.000793457,0.00125122,0.00125122,0.000946045,0.00170898,0.0015564,0.00109863,0.00125122,-0.000457764,-0.000793457,-0.0015564,-0.000610352,-0.000152588,0.000946045,0.000305176,0.0015564,0.00280762,0.00497437,0.00482178,0.00405884,0.00405884,0.00390625,0.0045166,0.00405884,0.00201416,0.00125122,0.000793457,0.000946045,0.000457764,-0.000152588,-0.00109863,-0.00125122,-0.000610352,0.000305176,0.000152588,-0.000610352,-0.000457764,-0.000152588,0.00109863,0.00234985,0.00280762,0.00250244,0.00170898,0.00201416,0.000457764,0.000457764,-0.00109863,-0.000793457,-0.000793457,-0.000793457,0.000610352,0.0015564,0.00265503,0.00390625,0.00360107,0.00201416,0.00140381,0.00109863,0.0015564,0.000793457,0.000305176,-0.000305176,-0.000793457,-0.000457764,0.000610352,0.0015564,0.00170898,0.000610352,0,0.000152588,-0.000152588,0,0,0.000793457,0.000457764,0.000610352,0.000305176,0.000457764,0,0,0.000152588,0.000305176,0.000793457,0,-0.00125122,-0.00186157,-0.00219727,-0.00186157,-0.00170898,-0.000946045,-0.0015564,-0.00170898,-0.00140381,-0.00186157,-0.00250244,-0.00219727,-0.0015564,-0.000946045,0.000305176,-0.000610352,0.000610352,0.000793457,0.000305176,0.000793457,-0.000793457,-0.00201416,-0.00296021,-0.00234985,-0.000946045,-0.000305176,-0.000152588,-0.000610352,-0.000610352,-0.000610352,-0.000610352,0.000946045,-0.000305176,0.000793457,0.000305176,0.000610352,0,-0.000152588,0.000305176,0.000457764,0.000610352,0.00140381,0.0015564,0.00201416,0.00186157,0.00109863,0.000946045,0.00125122,0.00125122,0.00250244,0.00234985,0.00234985,0.00186157,0.000610352,0.000152588,0.000457764,0.000152588,0,0,-0.000457764,-0.000305176,-0.000152588,0.000610352,0.00109863,0.000946045,0.00109863,0.000793457,0.00109863,0.00125122,0.000793457,0.000305176,0.000305176,-0.000457764,-0.000610352,-0.000946045,-0.00140381,-0.00250244,-0.00326538,-0.00436401,-0.00405884,-0.00436401,-0.00497437,-0.00546265,-0.00546265,-0.00531006,-0.00531006,-0.00497437,-0.00515747,-0.00515747,-0.00531006,-0.00561523,-0.00656128,-0.006073,-0.00592041,-0.00561523,-0.00482178,-0.00576782,-0.00546265,-0.006073,-0.00592041,-0.00622559,-0.00656128,-0.00561523,-0.00561523,-0.00531006,-0.00546265,-0.00531006,-0.00576782,-0.00497437,-0.00546265,-0.00405884,-0.00375366,-0.00375366,-0.00341797,-0.00375366,-0.00405884,-0.00375366,-0.00360107,-0.00296021,-0.00360107,-0.00405884,-0.00436401,-0.00497437,-0.0045166,-0.00390625,-0.00265503,-0.00234985,-0.00280762,-0.0015564,-0.00234985,-0.000610352,-0.000457764,-0.000457764,-0.000946045,-0.00186157,-0.00219727,-0.00265503,-0.0015564,-0.000305176,-0.000305176,0.000305176,0.000610352,0.000793457,0.000946045,0.000152588,0.000305176,-0.000305176,-0.000457764,-0.000610352,-0.000946045,-0.00125122,-0.00125122,-0.00219727,-0.00170898,-0.00186157,-0.00170898,-0.0015564,-0.00201416,-0.00186157,-0.00186157,-0.00186157,-0.00234985,-0.00201416,-0.00140381,-0.000946045,-0.000457764,-0.00109863,-0.00109863,-0.00125122,-0.00125122,-0.00109863,-0.00125122,-0.000946045,-0.000946045,-0.000793457,0.000152588,0.000152588,0.000610352,-0.000305176,-0.00125122,-0.00234985,-0.0015564,-0.00234985,-0.00296021,-0.00341797,-0.00280762,-0.00250244,-0.0015564,-0.000305176,0.000457764,0.000610352,0.00109863,0.00125122,0.00186157,0.00170898,0.000946045,0.000152588,-0.000457764,-0.00170898,-0.00109863,-0.00201416,-0.00186157,-0.000946045,-0.000610352,-0.000152588,-0.000152588,-0.000152588,-0.000152588,0.00109863,0.00109863,0.00170898,0.00186157,0.000457764,0.000793457,0.000457764,0.000305176,0.000793457,0.000610352,-0.000457764,0.000152588,0.000457764,0.000793457,0.000946045,0.00109863,0.00186157,0.00265503,0.00326538,0.00375366,0.00436401,0.00405884,0.00436401,0.00436401,0.00466919,0.00482178,0.00561523,0.00622559,0.00656128,0.00762939,0.00811768,0.00997925,0.0107727,0.0112305,0.0110779,0.0109253,0.0102844,0.0107727,0.0109253,0.0116882,0.0118408,0.0116882,0.0113831,0.0129395,0.0144958,0.0157471,0.0158997,0.0154419,0.0149536,0.0154419,0.0154419,0.0154419,0.0144958,0.0144958,0.0135803,0.0135803,0.0146484,0.0151367,0.0155945,0.0157471,0.0162048,0.0163574,0.0171509,0.0176086,0.0177612,0.0179443,0.0173035,0.0163574,0.0154419,0.0144958,0.0141907,0.0129395,0.0123291,0.0118408,0.0109253,0.0107727,0.00967407,0.00952148,0.00888062,0.00827026,0.00747681,0.00656128,0.00576782,0.0045166,0.00360107,0.00296021,0.00280762,0.00186157,0.00125122,0.00109863,0.000610352,0.00109863,0.00186157,0.00250244,0.00341797,0.00219727,0.00201416,0.000946045,0,-0.000610352,-0.00125122,-0.00234985,-0.00360107,-0.00497437,-0.00561523,-0.00592041,-0.00637817,-0.00686646,-0.00717163,-0.00778198,-0.00842285,-0.00762939,-0.00701904,-0.00717163,-0.00732422,-0.00811768,-0.00857544,-0.00888062,-0.00918579,-0.00952148,-0.00952148,-0.0102844,-0.00997925,-0.010437,-0.0101318,-0.0102844,-0.0102844,-0.0102844,-0.010437,-0.0101318,-0.00997925,-0.00997925,-0.00982666,-0.0101318,-0.0109253,-0.0110779,-0.0121765,-0.0121765,-0.0123291,-0.0121765,-0.0123291,-0.0118408,-0.0119934,-0.0112305,-0.0112305,-0.0107727,-0.0107727,-0.010437,-0.0105896,-0.0105896,-0.00997925,-0.00997925,-0.00952148,-0.0093689,-0.00918579,-0.00918579,-0.00872803,-0.0090332,-0.00857544,-0.00918579,-0.0093689,-0.00952148,-0.00982666,-0.0102844,-0.010437,-0.0102844,-0.00997925,-0.00952148,-0.00872803,-0.00778198,-0.00732422,-0.00671387,-0.00671387,-0.00531006,-0.00531006,-0.00497437,-0.00546265,-0.006073,-0.00717163,-0.00747681,-0.00796509,-0.00842285,-0.0090332,-0.00888062,-0.00918579,-0.00872803,-0.00762939,-0.00827026,-0.00778198,-0.00827026,-0.00796509,-0.00811768,-0.00747681,-0.00732422,-0.00717163,-0.00671387,-0.00778198,-0.00778198,-0.00762939,-0.00701904,-0.00717163,-0.00656128,-0.00762939,-0.00732422,-0.00811768,-0.00778198,-0.00811768,-0.00857544,-0.00918579,-0.0101318,-0.0112305,-0.0105896,-0.0101318,-0.00918579,-0.00888062,-0.00918579,-0.00982666,-0.0105896,-0.0109253,-0.0110779,-0.0110779,-0.0107727,-0.00997925,-0.0102844,-0.0105896,-0.0116882,-0.0119934,-0.0119934,-0.0121765,-0.0118408,-0.0123291,-0.0133972,-0.0135803,-0.0133972,-0.0129395,-0.0121765,-0.0115356,-0.0101318,-0.0105896,-0.00982666,-0.0101318,-0.00918579,-0.00857544,-0.00827026,-0.00842285,-0.00918579,-0.010437,-0.0110779,-0.0118408,-0.0113831,-0.0115356,-0.0118408,-0.0126343,-0.0133972,-0.0133972,-0.0127869,-0.0137329,-0.0143433,-0.0165405,-0.0173035,-0.0180969,-0.0166931,-0.0151367,-0.0123291,-0.0090332,-0.00671387,-0.00436401,-0.00201416,0.000610352,0.00531006,0.00952148,0.0135803,0.014801,0.0146484,0.0138855,0.0137329,0.0140381,0.0152893,0.0154419,0.0144958,0.0135803,0.0133972,0.0135803,0.014801,0.0160522,0.0185547,0.0195007,0.020752,0.0210571,0.0219727,0.0229187,0.025116,0.0266724,0.0279236,0.0286865,0.0289917,0.0299377,0.0314941,0.033844,0.0350952,0.037262,0.0385132,0.040863,0.0414734,0.0422668,0.041626,0.0407104,0.0391235,0.0389709,0.0375671,0.0374146,0.0379028,0.0375671,0.0371094,0.0358582,0.0339966,0.0332031,0.0319519,0.0319519,0.0305481,0.0291443,0.0269775,0.0263367,0.0261841,0.0255737,0.0254211,0.0243225,0.0232239,0.0235291,0.0233765,0.0237122,0.0232239,0.0230713,0.0221558,0.0205688,0.0190125,0.0171509,0.0160522,0.0146484,0.0132446,0.0124817,0.0107727,0.00982666,0.00952148,0.00857544,0.00762939,0.00576782,0.00515747,0.00390625,0.00421143,0.00311279,0.00170898,-0.000793457,-0.00265503,-0.00390625,-0.00436401,-0.00436401,-0.00466919,-0.00531006,-0.006073,-0.00671387,-0.00747681,-0.00701904,-0.00732422,-0.00717163,-0.00842285,-0.00888062,-0.010437,-0.0109253,-0.0119934,-0.0119934,-0.0123291,-0.0123291,-0.0127869,-0.0123291,-0.0121765,-0.0112305,-0.0102844,-0.0102844,-0.00952148,-0.00967407,-0.00952148,-0.00982666,-0.0102844,-0.0105896,-0.0109253,-0.0105896,-0.010437,-0.00997925,-0.00967407,-0.0090332,-0.0090332,-0.00811768,-0.00717163,-0.00686646,-0.00576782,-0.00656128,-0.00637817,-0.00671387,-0.00701904,-0.00637817,-0.00637817,-0.00561523,-0.00531006,-0.00466919,-0.0045166,-0.00390625,-0.00265503,-0.00219727,-0.0015564,-0.000793457,-0.000457764,-0.000152588,-0.000946045,-0.00125122,-0.00140381,-0.00234985,-0.00311279,-0.00421143,-0.00482178,-0.00531006,-0.00622559,-0.00717163,-0.00872803,-0.00952148,-0.0107727,-0.0107727,-0.0121765,-0.0124817,-0.0133972,-0.0144958,-0.0146484,-0.0154419,-0.0151367,-0.0157471,-0.0155945,-0.0163574,-0.0162048,-0.0162048,-0.0160522,-0.0155945,-0.0158997,-0.0158997,-0.0165405,-0.0173035,-0.0182495,-0.0187073,-0.019165,-0.0199585,-0.0202637,-0.0205688,-0.0215149,-0.0219727,-0.0224609,-0.0232239,-0.0235291,-0.0244751,-0.0244751,-0.0249329,-0.0249329,-0.025116,-0.0249329,-0.0249329,-0.0243225,-0.0235291,-0.0224609,-0.0216675,-0.0209045,-0.0204163,-0.0195007,-0.0187073,-0.0179443,-0.0174561,-0.0173035,-0.0165405,-0.0163574,-0.0157471,-0.0160522,-0.0158997,-0.0158997,-0.0149536,-0.0144958,-0.0137329,-0.0140381,-0.0140381,-0.0137329,-0.0129395,-0.0113831,-0.0107727,-0.0107727,-0.0118408,-0.0116882,-0.0112305,-0.00997925,-0.00872803,-0.00827026,-0.00857544,-0.00888062,-0.00842285,-0.00747681,-0.00592041,-0.00561523,-0.00531006,-0.00592041,-0.006073,-0.00576782,-0.00592041,-0.00592041,-0.00701904,-0.00872803,-0.00997925,-0.0113831,-0.010437,-0.0109253,-0.0112305,-0.0121765,-0.0135803,-0.0140381,-0.0137329,-0.0133972,-0.013092,-0.0132446,-0.0140381,-0.0133972,-0.013092,-0.0115356,-0.00967407,-0.00811768,-0.00796509,-0.00686646,-0.00622559,-0.0045166,-0.00250244,0.000457764,0.00360107,0.00671387,0.00872803,0.0110779,0.0135803,0.0152893,0.0185547,0.0202637,0.0213623,0.0213623,0.0209045,0.020752,0.0212097,0.0221558,0.0227661,0.0221558,0.0226135,0.0233765,0.0254211,0.0271301,0.0282288,0.0279236,0.0277405,0.0285339,0.0302429,0.0324402,0.0350952,0.0363159,0.0380554,0.0377197,0.0380554,0.0383606,0.0391235,0.0405273,0.0397644,0.0403748,0.0389709,0.037262,0.0377197,0.0368042,0.0371094,0.0371094,0.0363159,0.0358582,0.0350952,0.033844,0.0325928,0.0321045,0.0300903,0.0283813,0.0265198,0.0255737,0.0244751,0.0235291,0.0221558,0.0201111,0.0176086,0.0158997,0.0143433,0.0127869,0.0116882,0.0102844,0.00872803,0.00732422,0.00622559,0.00546265,0.00531006,0.00341797,0.00234985,0.000946045,-0.000152588,-0.000793457,-0.000610352,-0.00140381,-0.00234985,-0.0045166,-0.00701904,-0.00827026,-0.00778198,-0.00762939,-0.00637817,-0.00656128,-0.00656128,-0.00732422,-0.00701904,-0.00762939,-0.00827026,-0.00918579,-0.010437,-0.0102844,-0.0105896,-0.00952148,-0.00918579,-0.00811768,-0.00717163,-0.00656128,-0.00592041,-0.00405884,-0.00341797,-0.00280762,-0.00219727,-0.00280762,-0.0015564,-0.000457764,0.000457764,0.00170898,0.00265503,0.00341797,0.00436401,0.00531006,0.00637817,0.00842285,0.010437,0.0119934,0.0129395,0.013092,0.0135803,0.0137329,0.0149536,0.0154419,0.0155945,0.0144958,0.0144958,0.0135803,0.0141907,0.0132446,0.0127869,0.0113831,0.0105896,0.00997925,0.0090332,0.00827026,0.00796509,0.00827026,0.00857544,0.00857544,0.00842285,0.00778198,0.00747681,0.00732422,0.00732422,0.00717163,0.00701904,0.00778198,0.00717163,0.00732422,0.00576782,0.0045166,0.00296021,0.000946045,-0.000152588,-0.00170898,-0.00421143,-0.00592041,-0.00827026,-0.0093689,-0.0109253,-0.0126343,-0.0133972,-0.014801,-0.0160522,-0.0173035,-0.0187073,-0.0199585,-0.0210571,-0.0219727,-0.0232239,-0.0246277,-0.0260315,-0.0271301,-0.0277405,-0.0277405,-0.0285339,-0.0277405,-0.0285339,-0.0283813,-0.0285339,-0.0291443,-0.02948,-0.0291443,-0.0297852,-0.0291443,-0.0299377,-0.0299377,-0.0299377,-0.0299377,-0.0296326,-0.0297852,-0.0299377,-0.0297852,-0.02948,-0.0291443,-0.0289917,-0.0291443,-0.0291443,-0.0280762,-0.0271301,-0.0266724,-0.0257263,-0.0252686,-0.0243225,-0.0226135,-0.0209045,-0.0198059,-0.0176086,-0.0163574,-0.0151367,-0.0132446,-0.013092,-0.0119934,-0.0116882,-0.0109253,-0.0102844,-0.00952148,-0.00888062,-0.00796509,-0.00762939,-0.00747681,-0.00637817,-0.00686646,-0.00576782,-0.00546265,-0.00531006,-0.00546265,-0.00671387,-0.00732422,-0.00811768,-0.00811768,-0.00842285,-0.0093689,-0.010437,-0.0119934,-0.0124817,-0.013092,-0.0123291,-0.0127869,-0.0129395,-0.0146484,-0.0157471,-0.0169983,-0.0176086,-0.0188599,-0.0201111,-0.0209045,-0.0216675,-0.0224609,-0.0229187,-0.0237122,-0.0246277,-0.0238647,-0.0232239,-0.0226135,-0.0223083,-0.0230713,-0.0224609,-0.0227661,-0.0218201,-0.0218201,-0.0213623,-0.0210571,-0.0188599,-0.0132446,-0.00561523,0.00201416,0.00888062,0.0137329,0.0187073,0.0238647,0.0286865,0.0322876,0.0335083,0.0319519,0.0289917,0.0265198,0.0240173,0.0229187,0.0227661,0.0218201,0.0219727,0.0226135,0.0244751,0.0274353,0.0308838,0.0346069,0.0361633,0.038208,0.0389709,0.0393066,0.041626,0.0419312,0.0420837,0.0405273,0.0414734,0.042572,0.0456848,0.0478821,0.0491028,0.0491028,0.0489502,0.0483398,0.0489502,0.0495911,0.0481873,0.0456848,0.042572,0.0391235,0.0375671,0.0357056,0.0346069,0.0324402,0.0299377,0.0261841,0.0237122,0.0212097,0.0202637,0.0180969,0.0160522,0.0124817,0.00967407,0.00686646,0.00421143,0.000793457,-0.000793457,-0.00326538,-0.00360107,-0.00482178,-0.00390625,-0.0045166,-0.00390625,-0.00360107,-0.00311279,-0.00341797,-0.00375366,-0.00390625,-0.0045166,-0.006073,-0.00842285,-0.0113831,-0.0140381,-0.0160522,-0.0179443,-0.0184021,-0.0199585,-0.020752,-0.0216675,-0.0210571,-0.0195007,-0.0177612,-0.0173035,-0.0163574,-0.0166931,-0.0168457,-0.0168457,-0.0163574,-0.0162048,-0.0154419,-0.0154419,-0.0149536,-0.0140381,-0.0133972,-0.0113831,-0.00918579,-0.00671387,-0.00390625,-0.00140381,0.000610352,0.00326538,0.00497437,0.00747681,0.00952148,0.0124817,0.014801,0.0176086,0.0199585,0.0215149,0.0226135,0.0243225,0.0265198,0.0293274,0.031189,0.0317993,0.031189,0.0300903,0.0299377,0.0303955,0.0310364,0.0305481,0.0302429,0.0288391,0.0286865,0.0285339,0.0296326,0.0293274,0.0283813,0.0275879,0.0260315,0.0252686,0.0247803,0.0232239,0.0216675,0.0193481,0.0168457,0.0152893,0.0138855,0.0116882,0.0101318,0.00762939,0.00592041,0.00466919,0.00390625,0.00341797,0.0015564,-0.000305176,-0.00250244,-0.00576782,-0.00747681,-0.00982666,-0.0121765,-0.014801,-0.0180969,-0.020752,-0.0232239,-0.0252686,-0.0260315,-0.0280762,-0.0293274,-0.0300903,-0.0313416,-0.0317993,-0.0325928,-0.0330505,-0.0333557,-0.0346069,-0.0349121,-0.0350952,-0.0352478,-0.0354004,-0.0358582,-0.0360107,-0.0357056,-0.0357056,-0.0344543,-0.0341492,-0.0336914,-0.0341492,-0.0339966,-0.0339966,-0.033844,-0.0332031,-0.0336914,-0.0328979,-0.0330505,-0.0322876,-0.0316467,-0.0307312,-0.0288391,-0.0269775,-0.0257263,-0.0247803,-0.0237122,-0.0227661,-0.0210571,-0.0198059,-0.0185547,-0.0180969,-0.0173035,-0.0168457,-0.0162048,-0.0152893,-0.0144958,-0.0137329,-0.0137329,-0.0132446,-0.0121765,-0.0110779,-0.00997925,-0.00967407,-0.00967407,-0.00997925,-0.0102844,-0.0101318,-0.0105896,-0.0113831,-0.0127869,-0.0146484,-0.0166931,-0.0185547,-0.0195007,-0.0215149,-0.0232239,-0.0255737,-0.0279236,-0.0300903,-0.0321045,-0.033844,-0.0369568,-0.0386658,-0.040863,-0.0413208,-0.040863,-0.0414734,-0.0411682,-0.0413208,-0.0414734,-0.040863,-0.0400696,-0.0397644,-0.0394592,-0.0363159,-0.0286865,-0.0166931,-0.00219727,0.0124817,0.0254211,0.0352478,0.0434875,0.0536499,0.0623779,0.0670471,0.0664368,0.0614319,0.0527039,0.0447388,0.0405273,0.037262,0.0343018,0.0313416,0.0280762,0.0260315,0.026825,0.0291443,0.0322876,0.0344543,0.0349121,0.0354004,0.037262,0.0405273,0.0434875,0.0455322,0.0447388,0.0447388,0.0453796,0.0478821,0.0508423,0.0536499,0.0534668,0.0522461,0.052063,0.052063,0.0545654,0.0562744,0.0552063,0.0538025,0.0511475,0.0475464,0.044281,0.0407104,0.0358582,0.0288391,0.0213623,0.0141907,0.00811768,0.00341797,0.000610352,-0.00375366,-0.00762939,-0.0126343,-0.0174561,-0.0215149,-0.0237122,-0.0255737,-0.0266724,-0.0275879,-0.0277405,-0.0254211,-0.0226135,-0.0184021,-0.0155945,-0.0121765,-0.00982666,-0.00747681,-0.00531006,-0.00405884,-0.00405884,-0.00576782,-0.0090332,-0.0119934,-0.0155945,-0.0169983,-0.0187073,-0.0188599,-0.0199585,-0.020752,-0.0199585,-0.0187073,-0.0160522,-0.0133972,-0.0126343,-0.0124817,-0.0123291,-0.0121765,-0.0105896,-0.00982666,-0.00811768,-0.00796509,-0.00637817,-0.0045166,-0.00186157,0.000793457,0.00296021,0.00497437,0.00622559,0.00872803,0.0121765,0.0165405,0.0212097,0.025116,0.0282288,0.0299377,0.0324402,0.0343018,0.035553,0.0349121,0.0332031,0.0313416,0.0299377,0.0300903,0.0310364,0.0303955,0.0293274,0.0279236,0.026825,0.0263367,0.0260315,0.0249329,0.0237122,0.0213623,0.020752,0.0195007,0.0202637,0.0202637,0.0196533,0.0190125,0.0185547,0.0180969,0.0180969,0.0177612,0.0157471,0.0137329,0.010437,0.00842285,0.00656128,0.00482178,0.00360107,0.00109863,0.000152588,-0.00219727,-0.00250244,-0.00421143,-0.00515747,-0.00701904,-0.0090332,-0.0115356,-0.0135803,-0.0155945,-0.0168457,-0.0185547,-0.0199585,-0.0215149,-0.0227661,-0.0244751,-0.0252686,-0.0266724,-0.0274353,-0.02948,-0.0293274,-0.0307312,-0.0307312,-0.0314941,-0.0317993,-0.0327454,-0.0333557,-0.0354004,-0.0357056,-0.0369568,-0.0379028,-0.0388184,-0.0397644,-0.0402222,-0.0403748,-0.0402222,-0.0386658,-0.037262,-0.0357056,-0.0330505,-0.0302429,-0.0274353,-0.0240173,-0.0219727,-0.0202637,-0.0204163,-0.0210571,-0.0218201,-0.0232239,-0.0244751,-0.0263367,-0.0285339,-0.0313416,-0.0333557,-0.0352478,-0.035553,-0.0369568,-0.0377197,-0.0394592,-0.0396118,-0.0402222,-0.0400696,-0.0400696,-0.0405273,-0.0413208,-0.0419312,-0.0417786,-0.0420837,-0.0436707,-0.0445862,-0.0472412,-0.0502014,-0.0517578,-0.0539551,-0.0559692,-0.0584717,-0.0598755,-0.0606384,-0.0608215,-0.0608215,-0.0600281,-0.057373,-0.0519104,-0.0414734,-0.0269775,-0.00747681,0.0127869,0.0336914,0.052063,0.069397,0.0838928,0.0954285,0.105103,0.10791,0.10495,0.0975952,0.087616,0.0765686,0.0676575,0.0611267,0.0556641,0.0523987,0.0491028,0.0466309,0.0464783,0.0489502,0.052063,0.0550537,0.057373,0.0581665,0.0587769,0.0589294,0.0592651,0.0578613,0.0564575,0.0541077,0.0533142,0.0519104,0.0508423,0.0495911,0.0481873,0.0470886,0.0475464,0.0481873,0.0502014,0.0522461,0.0523987,0.0509949,0.047699,0.0434875,0.0379028,0.0313416,0.0227661,0.0137329,0.00375366,-0.006073,-0.0157471,-0.0226135,-0.0291443,-0.0336914,-0.0386658,-0.0430298,-0.0475464,-0.0511475,-0.0533142,-0.0552063,-0.0561218,-0.0561218,-0.0550537,-0.0525513,-0.0483398,-0.0436707,-0.0377197,-0.0321045,-0.0261841,-0.0204163,-0.0155945,-0.0129395,-0.0121765,-0.0133972,-0.0149536,-0.0173035,-0.0187073,-0.0198059,-0.0201111,-0.0195007,-0.0182495,-0.0149536,-0.0112305,-0.00686646,-0.00219727,0.0015564,0.00390625,0.006073,0.00732422,0.00872803,0.0102844,0.0126343,0.0140381,0.0163574,0.0169983,0.0188599,0.0201111,0.0202637,0.0219727,0.0229187,0.0249329,0.0272827,0.0300903,0.0335083,0.0383606,0.0422668,0.0461426,0.0492859,0.052063,0.053009,0.053009,0.0498962,0.0461426,0.041626,0.0371094,0.0332031,0.0300903,0.0275879,0.0244751,0.0221558,0.0195007,0.0182495,0.0163574,0.0152893,0.0126343,0.00967407,0.00576782,0.00250244,0,-0.00201416,-0.00436401,-0.00592041,-0.0090332,-0.0107727,-0.0126343,-0.0138855,-0.0149536,-0.0169983,-0.0177612,-0.0195007,-0.0187073,-0.0184021,-0.0179443,-0.0169983,-0.0160522,-0.0149536,-0.0144958,-0.0121765,-0.0118408,-0.0109253,-0.0116882,-0.0124817,-0.0141907,-0.014801,-0.0163574,-0.0174561,-0.0185547,-0.0210571,-0.0229187,-0.0243225,-0.0257263,-0.0258789,-0.0272827,-0.0283813,-0.0308838,-0.0322876,-0.0352478,-0.037262,-0.0393066,-0.0413208,-0.0428772,-0.0444336,-0.0450745,-0.0438232,-0.0419312,-0.0394592,-0.037262,-0.0343018,-0.0319519,-0.02948,-0.0266724,-0.0243225,-0.0237122,-0.0235291,-0.0243225,-0.0247803,-0.0263367,-0.0279236,-0.0300903,-0.0333557,-0.037262,-0.041626,-0.0467834,-0.0516052,-0.0566101,-0.0623779,-0.0671997,-0.0728149,-0.0784302,-0.0834045,-0.0881042,-0.0923157,-0.0961914,-0.0999451,-0.103058,-0.104614,-0.104462,-0.100403,-0.0940247,-0.083252,-0.069397,-0.0527039,-0.0322876,-0.00811768,0.0184021,0.0473938,0.0760803,0.100098,0.119446,0.132385,0.140472,0.14563,0.14624,0.142517,0.132538,0.12085,0.106323,0.0951233,0.0871582,0.0820007,0.0776367,0.0728149,0.0679932,0.0642395,0.0629883,0.0629883,0.0628357,0.0603333,0.0558167,0.0511475,0.0480347,0.0475464,0.0466309,0.0448914,0.0431824,0.0414734,0.0413208,0.043335,0.04599,0.0484924,0.0502014,0.0517578,0.0536499,0.0572205,0.0598755,0.0604858,0.0587769,0.0531616,0.0462952,0.0374146,0.0275879,0.0171509,0.00421143,-0.0093689,-0.0238647,-0.0366516,-0.0473938,-0.0566101,-0.063446,-0.0708008,-0.0762329,-0.0826416,-0.086853,-0.0890198,-0.0904236,-0.090271,-0.088562,-0.0867004,-0.0827942,-0.0767212,-0.0687561,-0.0600281,-0.0506592,-0.042572,-0.0352478,-0.0285339,-0.0227661,-0.0179443,-0.0144958,-0.0123291,-0.010437,-0.00827026,-0.00436401,0,0.00515747,0.0102844,0.0154419,0.020752,0.0255737,0.0299377,0.033844,0.0349121,0.0350952,0.0339966,0.0324402,0.0314941,0.0305481,0.0293274,0.0285339,0.026825,0.0261841,0.0258789,0.0258789,0.0271301,0.0280762,0.0291443,0.0313416,0.0335083,0.0388184,0.0428772,0.0483398,0.0533142,0.057373,0.0600281,0.0618896,0.0618896,0.0606384,0.0578613,0.0536499,0.0484924,0.0439758,0.0394592,0.0363159,0.0327454,0.0299377,0.0263367,0.0227661,0.0190125,0.0141907,0.00857544,0.00311279,-0.00405884,-0.0109253,-0.0176086,-0.0232239,-0.0288391,-0.033844,-0.0374146,-0.041626,-0.0439758,-0.04599,-0.0472412,-0.0472412,-0.0466309,-0.044281,-0.0420837,-0.0391235,-0.0350952,-0.0307312,-0.0265198,-0.0218201,-0.0190125,-0.0158997,-0.0137329,-0.0124817,-0.0115356,-0.0110779,-0.0123291,-0.0132446,-0.0141907,-0.0157471,-0.0176086,-0.0210571,-0.0240173,-0.0274353,-0.0310364,-0.0358582,-0.0393066,-0.0447388,-0.0487976,-0.0525513,-0.0569153,-0.0592651,-0.0614319,-0.0623779,-0.0622253,-0.0622253,-0.0606384,-0.0589294,-0.0572205,-0.0555115,-0.0534668,-0.0527039,-0.0517578,-0.0517578,-0.0522461,-0.0533142,-0.0552063,-0.0583191,-0.0623779,-0.0657959,-0.0690613,-0.0731201,-0.0762329,-0.0793762,-0.082489,-0.085144,-0.0882568,-0.0901184,-0.0905762,-0.0879517,-0.083252,-0.0760803,-0.0662537,-0.0527039,-0.0379028,-0.0177612,0.0045166,0.0317993,0.0587769,0.084198,0.106018,0.121918,0.133453,0.141418,0.145325,0.145782,0.138763,0.128479,0.11554,0.104309,0.0941772,0.0887146,0.0856018,0.0835876,0.0820007,0.08078,0.0820007,0.0834045,0.085144,0.0845032,0.0809326,0.0765686,0.0704651,0.0637817,0.0592651,0.0519104,0.0445862,0.0377197,0.0335083,0.0300903,0.02948,0.0297852,0.0288391,0.0293274,0.0297852,0.0325928,0.0347595,0.0374146,0.0360107,0.0316467,0.025116,0.0165405,0.00732422,-0.00296021,-0.0146484,-0.0274353,-0.0411682,-0.0544128,-0.0645447,-0.0725098,-0.0776367,-0.0812378,-0.0840454,-0.0857544,-0.0873108,-0.087616,-0.086853,-0.0860596,-0.0849915,-0.085907,-0.0840454,-0.0818481,-0.0788879,-0.0734253,-0.0686035,-0.0611267,-0.054718,-0.0464783,-0.038208,-0.0299377,-0.0223083,-0.0165405,-0.0102844,-0.0045166,0.00250244,0.0093689,0.0168457,0.0249329,0.0322876,0.039917,0.0472412,0.054718,0.0609741,0.0659485,0.0695496,0.0709534,0.0728149,0.0731201,0.0734253,0.0729675,0.0720215,0.0704651,0.0681458,0.0675049,0.0653381,0.0632935,0.0601807,0.0564575,0.053009,0.0500488,0.0497437,0.0489502,0.0483398,0.0473938,0.0470886,0.0470886,0.0473938,0.0456848,0.0447388,0.040863,0.036499,0.031189,0.0260315,0.0215149,0.0190125,0.0149536,0.0113831,0.00747681,0.00390625,0.000610352,-0.00375366,-0.00747681,-0.0124817,-0.0185547,-0.0241699,-0.02948,-0.0349121,-0.0397644,-0.0439758,-0.0481873,-0.0516052,-0.0541077,-0.0559692,-0.0567627,-0.0575256,-0.0570679,-0.0564575,-0.0541077,-0.0505066,-0.046936,-0.0430298,-0.0386658,-0.0346069,-0.0314941,-0.0274353,-0.0247803,-0.0223083,-0.0193481,-0.0180969,-0.0169983,-0.0168457,-0.0171509,-0.0177612,-0.0199585,-0.0229187,-0.026825,-0.0317993,-0.0363159,-0.0414734,-0.0458374,-0.0517578,-0.0561218,-0.0606384,-0.0654907,-0.0690613,-0.0740662,-0.078125,-0.0818481,-0.0856018,-0.0879517,-0.0909119,-0.0927734,-0.0954285,-0.0965271,-0.0975952,-0.0985413,-0.0985413,-0.0988464,-0.0969849,-0.0960388,-0.0944824,-0.0932312,-0.0907593,-0.0846558,-0.0767212,-0.0637817,-0.0491028,-0.0321045,-0.0116882,0.0126343,0.0417786,0.0731201,0.101044,0.124268,0.139709,0.149231,0.151855,0.150452,0.142517,0.127228,0.106964,0.0848083,0.0657959,0.0506592,0.0424194,0.0386658,0.0383606,0.0389709,0.043335,0.0497437,0.0569153,0.0653381,0.0681458,0.0690613,0.0662537,0.0639343,0.0604858,0.0589294,0.0564575,0.0527039,0.0500488,0.0473938,0.0475464,0.0505066,0.0548706,0.0581665,0.0601807,0.0623779,0.0640869,0.0670471,0.0690613,0.0667419,0.0608215,0.050354,0.0374146,0.0227661,0.00778198,-0.0090332,-0.0277405,-0.0473938,-0.0648499,-0.0820007,-0.0940247,-0.102448,-0.107269,-0.110718,-0.112122,-0.112579,-0.111176,-0.107574,-0.102295,-0.0983887,-0.0949707,-0.0916748,-0.0870056,-0.0793762,-0.0701599,-0.059082,-0.0484924,-0.0369568,-0.0247803,-0.0113831,0.000946045,0.0113831,0.0198059,0.0258789,0.0302429,0.0339966,0.0360107,0.0375671,0.0389709,0.0402222,0.0422668,0.0445862,0.047699,0.0505066,0.0539551,0.0559692,0.0555115,0.054718,0.0523987,0.0508423,0.0492859,0.0467834,0.0452271,0.0430298,0.0430298,0.0450745,0.0487976,0.0531616,0.0583191,0.0625305,0.0654907,0.0689087,0.0706177,0.0731201,0.073761,0.0729675,0.0708008,0.0667419,0.0620422,0.057373,0.0522461,0.0470886,0.0411682,0.0330505,0.0258789,0.0180969,0.0109253,0.00360107,-0.00341797,-0.0119934,-0.0198059,-0.0269775,-0.0336914,-0.0394592,-0.0441284,-0.0500488,-0.0552063,-0.0586243,-0.0611267,-0.0618896,-0.0623779,-0.0620422,-0.0608215,-0.0576782,-0.0538025,-0.0480347,-0.0428772,-0.0354004,-0.0302429,-0.0240173,-0.0199585,-0.0157471,-0.0118408,-0.0090332,-0.00686646,-0.00671387,-0.00888062,-0.0109253,-0.0135803,-0.0174561,-0.0201111,-0.0254211,-0.0305481,-0.0360107,-0.0419312,-0.0478821,-0.0539551,-0.0614319,-0.0686035,-0.0773315,-0.085144,-0.0947876,-0.10321,-0.111633,-0.119598,-0.128174,-0.134705,-0.140167,-0.142975,-0.144684,-0.143768,-0.141266,-0.13736,-0.129578,-0.121613,-0.112579,-0.102142,-0.0909119,-0.0765686,-0.0586243,-0.0366516,-0.0118408,0.0177612,0.0497437,0.0849915,0.119293,0.149994,0.174316,0.189301,0.195526,0.194122,0.182892,0.163239,0.137054,0.109131,0.0812378,0.0564575,0.0396118,0.0275879,0.0219727,0.0219727,0.0243225,0.0286865,0.0363159,0.0430298,0.0478821,0.0495911,0.0487976,0.0450745,0.0411682,0.0393066,0.038208,0.0375671,0.0389709,0.041626,0.0452271,0.0519104,0.0598755,0.0679932,0.0760803,0.0830994,0.088562,0.0926208,0.0937195,0.092926,0.0871582,0.0776367,0.0618896,0.0434875,0.0219727,-0.000793457,-0.0265198,-0.0528564,-0.0791931,-0.103363,-0.123657,-0.138763,-0.148743,-0.154053,-0.155609,-0.153595,-0.148895,-0.140167,-0.131897,-0.122406,-0.114594,-0.107117,-0.101044,-0.0927734,-0.0834045,-0.0714111,-0.0580139,-0.0439758,-0.0272827,-0.010437,0.00796509,0.0258789,0.0419312,0.0555115,0.0640869,0.0720215,0.0756226,0.076416,0.0756226,0.0722046,0.0692139,0.0648499,0.0615845,0.0589294,0.0558167,0.0542603,0.0525513,0.0505066,0.0489502,0.0470886,0.0447388,0.0428772,0.0411682,0.040863,0.0414734,0.0436707,0.0478821,0.0536499,0.0597229,0.0678406,0.07547,0.083252,0.0898132,0.0941772,0.0971375,0.0985413,0.0985413,0.0954285,0.0905762,0.0846558,0.0762329,0.0687561,0.0608215,0.0522461,0.0420837,0.0313416,0.0185547,0.00546265,-0.00872803,-0.0243225,-0.0403748,-0.0561218,-0.0701599,-0.0827942,-0.0927734,-0.0993347,-0.103851,-0.106018,-0.105713,-0.103851,-0.100739,-0.0951233,-0.0898132,-0.0830994,-0.076416,-0.0687561,-0.0598755,-0.050354,-0.0393066,-0.0288391,-0.0193481,-0.0101318,-0.00311279,0.00234985,0.00482178,0.00466919,0.00109863,-0.006073,-0.0144958,-0.0249329,-0.0354004,-0.0456848,-0.0572205,-0.0690613,-0.0812378,-0.0938721,-0.108063,-0.121613,-0.136444,-0.149536,-0.161835,-0.17215,-0.182129,-0.186493,-0.188354,-0.184601,-0.177429,-0.166046,-0.155304,-0.141724,-0.124268,-0.101654,-0.0722046,-0.0347595,0.00811768,0.0550537,0.10321,0.151093,0.19693,0.237,0.265991,0.282532,0.285339,0.27301,0.248077,0.213928,0.175262,0.137848,0.102295,0.0723572,0.0502014,0.0339966,0.0258789,0.0226135,0.0229187,0.0240173,0.0226135,0.0190125,0.0115356,0.00421143,-0.00546265,-0.0143433,-0.0213623,-0.0263367,-0.0254211,-0.0218201,-0.0135803,-0.00280762,0.00982666,0.0247803,0.0405273,0.0558167,0.0717163,0.0848083,0.0952759,0.102448,0.105255,0.104156,0.0994873,0.0901184,0.07547,0.0561218,0.0308838,0.00170898,-0.0303955,-0.0625305,-0.0947876,-0.124725,-0.15155,-0.173859,-0.188354,-0.197235,-0.198944,-0.198181,-0.192413,-0.183197,-0.17337,-0.161224,-0.149841,-0.137207,-0.123505,-0.108368,-0.0905762,-0.0708008,-0.0492859,-0.0257263,0.000152588,0.0258789,0.052063,0.0762329,0.0977478,0.11615,0.129883,0.138763,0.142517,0.142212,0.137848,0.132843,0.126129,0.118805,0.111176,0.102142,0.094635,0.0857544,0.0784302,0.0695496,0.0601807,0.0494385,0.0386658,0.0280762,0.0202637,0.0137329,0.00952148,0.00762939,0.00997925,0.0154419,0.0244751,0.0374146,0.0513,0.0648499,0.0776367,0.0898132,0.0979309,0.104004,0.106964,0.104309,0.0982361,0.0901184,0.0812378,0.0736084,0.0636292,0.0536499,0.0414734,0.0282288,0.0146484,-0.00201416,-0.0205688,-0.0413208,-0.063446,-0.085907,-0.105865,-0.123505,-0.137848,-0.14798,-0.154053,-0.15451,-0.150787,-0.144836,-0.135956,-0.126465,-0.115234,-0.104156,-0.0924683,-0.0795288,-0.0673523,-0.0541077,-0.040863,-0.0285339,-0.0171509,-0.00811768,-0.00250244,0.000152588,-0.00109863,-0.00701904,-0.0168457,-0.031189,-0.0464783,-0.0608215,-0.0745239,-0.0881042,-0.103546,-0.117889,-0.130188,-0.139709,-0.149536,-0.159515,-0.171051,-0.179138,-0.183685,-0.182892,-0.178223,-0.1698,-0.153259,-0.126282,-0.0873108,-0.0335083,0.0274353,0.0905762,0.14859,0.201141,0.248535,0.284882,0.309509,0.315735,0.303741,0.275513,0.23996,0.203796,0.170746,0.142212,0.1185,0.0996399,0.0870056,0.0801392,0.076416,0.0734253,0.0682983,0.0575256,0.039917,0.0168457,-0.00842285,-0.0317993,-0.0506592,-0.0656433,-0.0773315,-0.085144,-0.0846558,-0.0767212,-0.0615845,-0.0434875,-0.0249329,-0.00592041,0.0137329,0.0349121,0.0556641,0.0739136,0.0884094,0.096344,0.0986938,0.09729,0.0907593,0.08078,0.0653381,0.043335,0.0155945,-0.0179443,-0.0505066,-0.0801392,-0.106812,-0.130676,-0.152802,-0.171509,-0.182434,-0.185242,-0.184143,-0.179932,-0.177429,-0.173859,-0.168549,-0.161682,-0.152802,-0.143127,-0.13208,-0.117249,-0.0993347,-0.077179,-0.050354,-0.020752,0.0113831,0.0441284,0.0757751,0.104004,0.128632,0.148132,0.16153,0.168549,0.168701,0.163574,0.156067,0.147491,0.139069,0.130981,0.122253,0.114594,0.107117,0.0993347,0.0905762,0.0802917,0.0682983,0.0548706,0.039917,0.0233765,0.00778198,-0.00561523,-0.0163574,-0.0210571,-0.0212097,-0.0157471,-0.00482178,0.0109253,0.0293274,0.0489502,0.0684509,0.0852966,0.0974426,0.103699,0.104004,0.10025,0.0935669,0.084198,0.0751648,0.0662537,0.0569153,0.0470886,0.0357056,0.0218201,0.00671387,-0.0112305,-0.0319519,-0.0553589,-0.0809326,-0.104614,-0.127075,-0.14267,-0.153412,-0.157806,-0.159027,-0.156067,-0.150452,-0.143921,-0.13736,-0.132233,-0.127686,-0.124725,-0.119751,-0.115387,-0.108521,-0.100098,-0.0915222,-0.0818481,-0.0732727,-0.0653381,-0.0589294,-0.0567627,-0.0595703,-0.0667419,-0.0748291,-0.0870056,-0.100891,-0.114288,-0.128784,-0.144226,-0.15686,-0.164337,-0.167297,-0.166199,-0.16449,-0.157013,-0.139069,-0.104767,-0.0552063,0.00250244,0.0622253,0.117249,0.167938,0.213776,0.252441,0.280823,0.289856,0.28067,0.252136,0.215942,0.182129,0.153748,0.132843,0.116638,0.107117,0.104767,0.111328,0.125519,0.142975,0.156219,0.159363,0.148285,0.126923,0.100891,0.071106,0.0403748,0.0101318,-0.020752,-0.04599,-0.0643921,-0.0712585,-0.0682983,-0.0589294,-0.0467834,-0.0332031,-0.0177612,0.00170898,0.0229187,0.0414734,0.0534668,0.0589294,0.0576782,0.0544128,0.0472412,0.0393066,0.0246277,0.00436401,-0.0238647,-0.0542603,-0.0820007,-0.105713,-0.125366,-0.143616,-0.159027,-0.1698,-0.172607,-0.167603,-0.157623,-0.146088,-0.138611,-0.132538,-0.128632,-0.124268,-0.11911,-0.11554,-0.111938,-0.108978,-0.1026,-0.0904236,-0.0720215,-0.0481873,-0.0204163,0.0090332,0.039917,0.0700073,0.0994873,0.126282,0.146423,0.159515,0.164337,0.163239,0.159515,0.152649,0.147034,0.139069,0.133301,0.126617,0.122711,0.119293,0.116791,0.115234,0.109772,0.101349,0.0888672,0.073761,0.0553589,0.0380554,0.0223083,0.0119934,0.00827026,0.0090332,0.0166931,0.0293274,0.0467834,0.0645447,0.08078,0.088562,0.0909119,0.0848083,0.0723572,0.0567627,0.0388184,0.0237122,0.0093689,-0.000457764,-0.00717163,-0.0102844,-0.0119934,-0.0165405,-0.0237122,-0.0369568,-0.0544128,-0.07547,-0.0980835,-0.121155,-0.139709,-0.153412,-0.159363,-0.159515,-0.153412,-0.145325,-0.136902,-0.130829,-0.126129,-0.12677,-0.128784,-0.134094,-0.137665,-0.140808,-0.141724,-0.139069,-0.133789,-0.126129,-0.118042,-0.110535,-0.107422,-0.108368,-0.113342,-0.123016,-0.136261,-0.152649,-0.169189,-0.181335,-0.187103,-0.186951,-0.180389,-0.164642,-0.132996,-0.0812378,-0.0144958,0.0570679,0.128479,0.194733,0.250092,0.291565,0.321808,0.336487,0.331482,0.303741,0.258667,0.207214,0.162476,0.129883,0.111023,0.101501,0.0968323,0.0996399,0.109619,0.129272,0.150787,0.161682,0.157623,0.140808,0.114899,0.0862122,0.0570679,0.0269775,-0.00250244,-0.0300903,-0.0519104,-0.0668945,-0.0717163,-0.0671997,-0.0556641,-0.043335,-0.0313416,-0.0195007,-0.00311279,0.0143433,0.0296326,0.0377197,0.0374146,0.031189,0.0235291,0.0135803,0.0015564,-0.0177612,-0.0456848,-0.0791931,-0.113831,-0.144531,-0.169495,-0.190063,-0.204102,-0.214233,-0.216888,-0.210815,-0.19754,-0.175415,-0.153595,-0.134399,-0.119751,-0.109314,-0.0979309,-0.0873108,-0.0787354,-0.073761,-0.0703125,-0.0626831,-0.0492859,-0.0260315,0.000793457,0.0324402,0.0636292,0.0957336,0.127228,0.156067,0.179779,0.19632,0.203003,0.20285,0.197235,0.189117,0.182281,0.173859,0.166687,0.157959,0.149841,0.142517,0.136444,0.132233,0.126465,0.116791,0.104462,0.0891724,0.0748291,0.0626831,0.0536499,0.0492859,0.0489502,0.0538025,0.0636292,0.0770264,0.0926208,0.108063,0.116791,0.117706,0.108978,0.0924683,0.0706177,0.0445862,0.0168457,-0.010437,-0.0350952,-0.0544128,-0.0679932,-0.076416,-0.0809326,-0.0867004,-0.0951233,-0.108978,-0.125671,-0.146881,-0.1698,-0.19162,-0.210968,-0.226868,-0.235443,-0.236694,-0.229034,-0.216095,-0.201141,-0.187103,-0.175262,-0.164795,-0.155609,-0.147186,-0.140015,-0.134247,-0.129578,-0.125061,-0.12085,-0.116486,-0.113342,-0.113037,-0.117096,-0.127869,-0.144073,-0.16449,-0.180237,-0.191467,-0.194733,-0.193329,-0.178528,-0.138153,-0.073761,0.00857544,0.0974426,0.184601,0.265381,0.328522,0.37561,0.404938,0.410858,0.389343,0.340698,0.276917,0.214081,0.164795,0.133942,0.122711,0.121765,0.130829,0.149536,0.180725,0.21875,0.247925,0.257111,0.241364,0.207672,0.164642,0.118195,0.0714111,0.0219727,-0.0243225,-0.0626831,-0.0907593,-0.106018,-0.108673,-0.10025,-0.0862122,-0.0739136,-0.0629883,-0.0509949,-0.0366516,-0.0229187,-0.0152893,-0.0151367,-0.0237122,-0.0363159,-0.0483398,-0.0592651,-0.0736084,-0.0968323,-0.128632,-0.164032,-0.19632,-0.222046,-0.240601,-0.254608,-0.263031,-0.266479,-0.261475,-0.246979,-0.222961,-0.195831,-0.168701,-0.147827,-0.132233,-0.118042,-0.104156,-0.0913696,-0.081543,-0.0773315,-0.0720215,-0.0609741,-0.0405273,-0.0109253,0.025116,0.063446,0.102905,0.142517,0.180878,0.215179,0.241211,0.256348,0.261169,0.256958,0.247589,0.237305,0.227966,0.218292,0.209259,0.202087,0.195984,0.192108,0.189606,0.187897,0.181488,0.170105,0.153259,0.135345,0.117096,0.101044,0.0881042,0.0810852,0.08078,0.0865479,0.0974426,0.110535,0.119904,0.124268,0.120697,0.109131,0.0887146,0.0609741,0.0280762,-0.00762939,-0.044281,-0.0767212,-0.100891,-0.117401,-0.12738,-0.134705,-0.140961,-0.147491,-0.15686,-0.168854,-0.184937,-0.205353,-0.229218,-0.253052,-0.272858,-0.286743,-0.29361,-0.293121,-0.286743,-0.275818,-0.261169,-0.244965,-0.225311,-0.206116,-0.188202,-0.17276,-0.159668,-0.148743,-0.14032,-0.136444,-0.13736,-0.142822,-0.153595,-0.167938,-0.184296,-0.200348,-0.208313,-0.20816,-0.197083,-0.166046,-0.110077,-0.0277405,0.0678406,0.17041,0.270844,0.358765,0.427063,0.474945,0.497559,0.491608,0.450775,0.382324,0.305145,0.231689,0.178986,0.144836,0.129272,0.128174,0.142822,0.173065,0.21875,0.264282,0.298279,0.306854,0.292969,0.258972,0.213928,0.160919,0.104309,0.0438232,-0.0133972,-0.0601807,-0.092926,-0.108368,-0.109314,-0.0986938,-0.0829468,-0.0682983,-0.0517578,-0.0343018,-0.0182495,-0.00888062,-0.00982666,-0.0216675,-0.0405273,-0.0646973,-0.0896606,-0.117096,-0.150299,-0.189301,-0.231232,-0.271149,-0.302795,-0.325562,-0.337738,-0.342712,-0.34021,-0.33197,-0.313873,-0.287506,-0.255249,-0.22345,-0.196472,-0.176025,-0.160767,-0.147339,-0.133453,-0.120697,-0.112885,-0.104004,-0.0910645,-0.0682983,-0.0352478,0.00622559,0.0522461,0.0991516,0.147186,0.192871,0.235138,0.269287,0.292358,0.303101,0.30249,0.296082,0.284088,0.272552,0.260376,0.247772,0.237457,0.229034,0.227814,0.229218,0.235138,0.237,0.235291,0.22702,0.215485,0.202087,0.187561,0.172302,0.158722,0.149048,0.144073,0.145935,0.152496,0.159668,0.161682,0.154053,0.137054,0.109619,0.0745239,0.0324402,-0.0137329,-0.0612793,-0.10791,-0.145782,-0.174316,-0.190369,-0.199585,-0.205505,-0.213287,-0.224518,-0.239502,-0.257263,-0.278473,-0.303589,-0.329773,-0.355652,-0.373444,-0.381378,-0.378418,-0.365021,-0.346466,-0.324615,-0.300293,-0.275055,-0.248535,-0.225159,-0.205658,-0.192261,-0.184601,-0.18399,-0.188049,-0.195374,-0.204407,-0.215179,-0.225769,-0.233093,-0.233093,-0.22345,-0.19397,-0.136597,-0.0508423,0.0492859,0.152191,0.253204,0.347076,0.429718,0.497559,0.541199,0.554932,0.527161,0.469635,0.396667,0.327576,0.276917,0.243866,0.219849,0.205963,0.20816,0.22998,0.274109,0.325409,0.364227,0.376709,0.364532,0.336945,0.298126,0.252594,0.196777,0.128937,0.0581665,-0.00546265,-0.0531616,-0.0835876,-0.0951233,-0.0944824,-0.0871582,-0.0768738,-0.0642395,-0.0455322,-0.0247803,-0.0109253,-0.0113831,-0.0269775,-0.0538025,-0.0845032,-0.11554,-0.150787,-0.194275,-0.247437,-0.304657,-0.353485,-0.389343,-0.409454,-0.419281,-0.420837,-0.41803,-0.406006,-0.384338,-0.351135,-0.311676,-0.275818,-0.249329,-0.231842,-0.219391,-0.205353,-0.188507,-0.171356,-0.159363,-0.148438,-0.130829,-0.100403,-0.0566101,-0.00280762,0.0523987,0.106659,0.157013,0.207855,0.254608,0.295624,0.324615,0.341003,0.343506,0.338196,0.327423,0.316681,0.304993,0.292511,0.281128,0.27301,0.272552,0.278931,0.288605,0.299225,0.30484,0.303436,0.296722,0.286285,0.27301,0.255402,0.236053,0.214081,0.195374,0.181488,0.174622,0.171814,0.166199,0.153595,0.130829,0.0986938,0.0600281,0.0157471,-0.0308838,-0.0799866,-0.128937,-0.173553,-0.206451,-0.227325,-0.236053,-0.242615,-0.25415,-0.270203,-0.291565,-0.313416,-0.334442,-0.359558,-0.385132,-0.411316,-0.430511,-0.43689,-0.430176,-0.413666,-0.391357,-0.367035,-0.34317,-0.319336,-0.297668,-0.277527,-0.262268,-0.252441,-0.250092,-0.254456,-0.263824,-0.274414,-0.28299,-0.286591,-0.284241,-0.275513,-0.25354,-0.203644,-0.124115,-0.0210571,0.0910645,0.2052,0.314484,0.408813,0.4888,0.547424,0.580811,0.579407,0.540588,0.477264,0.407898,0.348328,0.311066,0.285645,0.270996,0.266785,0.278015,0.311218,0.3591,0.403534,0.42691,0.424744,0.40274,0.368134,0.324463,0.270538,0.205048,0.134705,0.0659485,0.00827026,-0.0360107,-0.0628357,-0.0709534,-0.0686035,-0.0604858,-0.0511475,-0.0391235,-0.0205688,-0.00561523,0.00186157,-0.00466919,-0.0258789,-0.0564575,-0.0916748,-0.131592,-0.178375,-0.234802,-0.298737,-0.360809,-0.414429,-0.45108,-0.474457,-0.482117,-0.479919,-0.470734,-0.451874,-0.42334,-0.385284,-0.34317,-0.306702,-0.280487,-0.266327,-0.256958,-0.247284,-0.235901,-0.225159,-0.21579,-0.201447,-0.174622,-0.132538,-0.0748291,-0.00842285,0.0612793,0.128937,0.192871,0.25058,0.300629,0.338348,0.362976,0.374054,0.371094,0.358307,0.341309,0.326508,0.315887,0.309662,0.308105,0.313721,0.324158,0.340057,0.3591,0.374664,0.383881,0.382019,0.372345,0.35611,0.336334,0.314026,0.289703,0.261932,0.236206,0.210663,0.188965,0.170258,0.152191,0.127869,0.09198,0.0483398,0.000457764,-0.0467834,-0.0905762,-0.134552,-0.174622,-0.210175,-0.237457,-0.254944,-0.266327,-0.275818,-0.288452,-0.308716,-0.33429,-0.361115,-0.386993,-0.411163,-0.430969,-0.445923,-0.454651,-0.454346,-0.442047,-0.420532,-0.391998,-0.36377,-0.339142,-0.32135,-0.308563,-0.300781,-0.30014,-0.307953,-0.323547,-0.340851,-0.357208,-0.368591,-0.368591,-0.353302,-0.320251,-0.256958,-0.161224,-0.0455322,0.0788879,0.203156,0.321198,0.424896,0.507996,0.569122,0.597015,0.587982,0.547119,0.486633,0.422394,0.374054,0.34256,0.323547,0.311676,0.313232,0.330719,0.367981,0.416473,0.457794,0.474792,0.465576,0.441101,0.404602,0.356293,0.29953,0.229523,0.150787,0.0773315,0.0127869,-0.0350952,-0.0646973,-0.0746765,-0.0725098,-0.0645447,-0.0506592,-0.0327454,-0.00982666,0.0127869,0.0232239,0.0169983,-0.00436401,-0.038208,-0.078125,-0.126282,-0.184448,-0.251801,-0.325714,-0.393066,-0.446075,-0.48056,-0.498016,-0.50238,-0.494751,-0.479004,-0.453583,-0.422089,-0.381836,-0.344116,-0.314972,-0.298126,-0.29126,-0.2883,-0.284088,-0.27771,-0.271759,-0.265381,-0.249939,-0.219238,-0.17041,-0.105865,-0.031189,0.0439758,0.118195,0.188965,0.254608,0.311829,0.357056,0.386688,0.399323,0.397278,0.386536,0.373108,0.360657,0.351593,0.34552,0.343658,0.34787,0.360016,0.377014,0.394318,0.406006,0.408813,0.402283,0.390259,0.374359,0.354889,0.329926,0.303589,0.273315,0.243073,0.21347,0.186493,0.160126,0.125824,0.0849915,0.0385132,-0.0113831,-0.0578613,-0.10025,-0.139069,-0.172455,-0.200989,-0.221558,-0.236053,-0.245422,-0.252441,-0.265839,-0.286591,-0.314331,-0.345825,-0.377319,-0.404144,-0.426453,-0.446411,-0.460907,-0.467285,-0.462921,-0.446869,-0.422394,-0.39743,-0.377167,-0.360168,-0.347534,-0.339142,-0.338654,-0.343964,-0.355347,-0.371857,-0.389038,-0.400238,-0.400879,-0.38324,-0.338196,-0.26178,-0.157318,-0.0354004,0.094635,0.22467,0.348633,0.459351,0.54776,0.604828,0.624939,0.607147,0.559601,0.497559,0.438599,0.393707,0.362823,0.341156,0.331482,0.333832,0.358765,0.400879,0.447968,0.480225,0.487244,0.472443,0.440155,0.398834,0.344421,0.278015,0.200043,0.118805,0.0450745,-0.0149536,-0.057373,-0.0790405,-0.0852966,-0.0776367,-0.0653381,-0.0453796,-0.0216675,0.00686646,0.0296326,0.038208,0.0299377,0.00280762,-0.0358582,-0.0830994,-0.139862,-0.206757,-0.28299,-0.360504,-0.427216,-0.476196,-0.505951,-0.517517,-0.516724,-0.505188,-0.485535,-0.459045,-0.424255,-0.386841,-0.355194,-0.332886,-0.323395,-0.320587,-0.317291,-0.309662,-0.300293,-0.286285,-0.268951,-0.239807,-0.193512,-0.130676,-0.0550537,0.0232239,0.100555,0.171661,0.239014,0.297821,0.34787,0.383423,0.40274,0.408356,0.405396,0.397614,0.391357,0.387451,0.385742,0.386688,0.389648,0.397125,0.408203,0.421143,0.429413,0.428467,0.418793,0.401489,0.38028,0.355652,0.328064,0.29718,0.266785,0.236847,0.209076,0.18335,0.156219,0.123016,0.081543,0.033844,-0.0162048,-0.0646973,-0.110718,-0.152802,-0.188507,-0.214691,-0.231842,-0.239014,-0.241669,-0.247437,-0.257568,-0.27597,-0.300293,-0.32962,-0.362976,-0.397614,-0.429413,-0.457153,-0.475708,-0.484589,-0.479614,-0.465424,-0.443115,-0.422699,-0.39978,-0.380127,-0.363922,-0.354889,-0.354706,-0.36438,-0.381226,-0.401794,-0.417084,-0.425964,-0.421448,-0.396362,-0.340546,-0.250397,-0.134247,-0.00201416,0.137512,0.27536,0.400726,0.51001,0.591736,0.640381,0.650513,0.625854,0.576447,0.513306,0.454651,0.409607,0.375916,0.354248,0.346771,0.354889,0.381683,0.424103,0.466217,0.493164,0.498627,0.48288,0.44812,0.400391,0.338348,0.261169,0.176025,0.0910645,0.0143433,-0.0480347,-0.0913696,-0.11087,-0.109924,-0.0971375,-0.0753174,-0.0491028,-0.0169983,0.0163574,0.0411682,0.0502014,0.0385132,0.00762939,-0.0391235,-0.0966797,-0.163239,-0.238098,-0.319183,-0.394958,-0.457153,-0.49942,-0.522034,-0.527161,-0.518738,-0.502228,-0.481018,-0.454834,-0.424255,-0.39386,-0.369537,-0.355194,-0.349426,-0.348785,-0.346771,-0.337097,-0.322906,-0.30249,-0.274902,-0.234802,-0.17868,-0.108215,-0.0289917,0.052063,0.131287,0.203796,0.269135,0.325714,0.371552,0.40274,0.420044,0.424255,0.420349,0.41272,0.408203,0.408051,0.411621,0.418182,0.42691,0.438141,0.450928,0.460449,0.463074,0.45639,0.438293,0.412567,0.379059,0.342712,0.305756,0.270355,0.238556,0.20816,0.18103,0.152191,0.119598,0.081543,0.0380554,-0.0105896,-0.0611267,-0.11087,-0.157013,-0.195068,-0.222656,-0.239197,-0.247925,-0.251343,-0.25415,-0.260864,-0.271912,-0.288605,-0.311371,-0.3396,-0.371399,-0.402588,-0.432373,-0.453888,-0.469025,-0.472748,-0.468231,-0.457001,-0.441254,-0.424561,-0.407898,-0.394623,-0.385895,-0.383087,-0.389496,-0.402283,-0.419739,-0.434235,-0.442963,-0.440948,-0.418335,-0.364532,-0.277222,-0.160583,-0.0263367,0.117249,0.262421,0.39743,0.519226,0.612152,0.672028,0.69104,0.673279,0.627258,0.565216,0.503326,0.449524,0.408813,0.379822,0.365021,0.368286,0.391998,0.430969,0.47525,0.505188,0.511261,0.494415,0.457794,0.406952,0.338959,0.254761,0.160126,0.0656433,-0.0179443,-0.0845032,-0.130676,-0.15094,-0.150787,-0.133636,-0.105408,-0.0695496,-0.0291443,0.00967407,0.0402222,0.0534668,0.0455322,0.014801,-0.0336914,-0.0951233,-0.164032,-0.241516,-0.322906,-0.399933,-0.462158,-0.503937,-0.525146,-0.528107,-0.517975,-0.498627,-0.476959,-0.45108,-0.422546,-0.394012,-0.3703,-0.356445,-0.349579,-0.349731,-0.347229,-0.337402,-0.32135,-0.297333,-0.265991,-0.22345,-0.166687,-0.0960388,-0.0155945,0.0681458,0.148895,0.22345,0.290314,0.348022,0.394958,0.428009,0.447479,0.454346,0.452484,0.44516,0.436737,0.432373,0.429871,0.42926,0.430328,0.435486,0.442505,0.44812,0.450287,0.441406,0.4216,0.394165,0.359558,0.323212,0.285034,0.249634,0.21579,0.186005,0.156555,0.127869,0.0971375,0.0608215,0.019165,-0.0302429,-0.0809326,-0.131439,-0.176971,-0.214081,-0.241058,-0.257751,-0.266144,-0.268494,-0.270996,-0.27597,-0.285797,-0.299988,-0.319794,-0.34552,-0.375153,-0.406342,-0.434387,-0.454987,-0.469482,-0.473389,-0.471649,-0.462311,-0.449219,-0.432983,-0.417725,-0.404144,-0.393707,-0.388397,-0.389038,-0.397766,-0.408356,-0.416931,-0.418182,-0.41037,-0.382782,-0.321198,-0.226715,-0.106812,0.0261841,0.164978,0.301697,0.430664,0.54541,0.635071,0.690582,0.706177,0.685425,0.638336,0.577698,0.520294,0.472443,0.429565,0.397614,0.376556,0.374054,0.394165,0.431274,0.46994,0.493164,0.493958,0.471832,0.433624,0.381531,0.312622,0.225159,0.127228,0.0319519,-0.052063,-0.118347,-0.162323,-0.179779,-0.174469,-0.152802,-0.119751,-0.0799866,-0.0358582,0.00531006,0.0361633,0.0466309,0.035553,-0.000610352,-0.0544128,-0.121307,-0.194122,-0.272247,-0.352386,-0.425201,-0.481018,-0.514069,-0.527161,-0.523438,-0.507538,-0.485382,-0.463074,-0.439697,-0.414917,-0.389801,-0.369385,-0.357513,-0.353638,-0.351746,-0.34552,-0.330231,-0.304993,-0.27301,-0.232178,-0.183044,-0.119446,-0.0455322,0.036499,0.118805,0.196777,0.268494,0.330078,0.382172,0.423157,0.450287,0.466827,0.473053,0.470093,0.463074,0.455597,0.451385,0.450134,0.449371,0.448578,0.449524,0.450623,0.449066,0.441711,0.425507,0.39917,0.365326,0.327576,0.289856,0.250244,0.213776,0.181183,0.151245,0.122101,0.0932312,0.0601807,0.0238647,-0.0182495,-0.0657959,-0.116486,-0.164978,-0.204559,-0.235748,-0.255249,-0.266632,-0.270996,-0.270355,-0.269897,-0.273651,-0.283936,-0.300781,-0.323212,-0.349884,-0.379974,-0.410065,-0.436432,-0.455902,-0.466217,-0.467621,-0.462921,-0.454651,-0.442963,-0.428619,-0.413361,-0.39978,-0.389496,-0.386047,-0.387146,-0.397278,-0.410858,-0.421936,-0.425812,-0.416931,-0.38559,-0.321808,-0.225311,-0.101501,0.0377197,0.189117,0.339752,0.483673,0.609497,0.706329,0.762146,0.776184,0.751221,0.694794,0.622742,0.549011,0.481323,0.421936,0.375916,0.350525,0.348328,0.372803,0.412415,0.454346,0.482117,0.490204,0.476013,0.440643,0.383087,0.302795,0.200836,0.0893555,-0.0173035,-0.110382,-0.182434,-0.229523,-0.246674,-0.237,-0.2052,-0.157166,-0.101654,-0.0441284,0.00732422,0.0436707,0.0584717,0.0472412,0.0124817,-0.0461426,-0.120361,-0.20224,-0.28891,-0.373108,-0.446259,-0.498962,-0.530609,-0.539032,-0.531372,-0.509552,-0.481476,-0.453888,-0.425659,-0.399475,-0.375153,-0.356903,-0.348022,-0.345367,-0.344116,-0.339142,-0.324005,-0.298584,-0.26413,-0.218292,-0.161224,-0.0916748,-0.0112305,0.0743713,0.159515,0.240417,0.313873,0.376709,0.428772,0.466827,0.493011,0.504547,0.506744,0.499573,0.487732,0.474945,0.464478,0.45639,0.448273,0.441406,0.435944,0.43158,0.422852,0.410706,0.391205,0.364532,0.332886,0.29657,0.258667,0.221863,0.187256,0.156708,0.128784,0.1026,0.0750122,0.0430298,0.006073,-0.0369568,-0.0820007,-0.128937,-0.173553,-0.211884,-0.242462,-0.261169,-0.270538,-0.271454,-0.268341,-0.266632,-0.268341,-0.279572,-0.297485,-0.321045,-0.349274,-0.380768,-0.413361,-0.440491,-0.462616,-0.476807,-0.479462,-0.473389,-0.461517,-0.445465,-0.427856,-0.410065,-0.393066,-0.377808,-0.368591,-0.368439,-0.377014,-0.3909,-0.404785,-0.411469,-0.407745,-0.381531,-0.320892,-0.22406,-0.0977478,0.04599,0.203003,0.360504,0.510498,0.644897,0.749817,0.812347,0.827942,0.799561,0.736725,0.651917,0.564911,0.483521,0.411011,0.35083,0.311676,0.299988,0.319946,0.365173,0.414581,0.452026,0.467621,0.46106,0.433624,0.382935,0.305145,0.19928,0.0788879,-0.0374146,-0.138916,-0.219849,-0.271149,-0.290466,-0.279572,-0.239807,-0.18103,-0.112732,-0.0420837,0.0198059,0.0661011,0.0863953,0.077179,0.0374146,-0.0269775,-0.110077,-0.201141,-0.295624,-0.38623,-0.463257,-0.519989,-0.549927,-0.554626,-0.540588,-0.512665,-0.477905,-0.446259,-0.417542,-0.391052,-0.366425,-0.34787,-0.338348,-0.336334,-0.337097,-0.331177,-0.314026,-0.285187,-0.245728,-0.195831,-0.13736,-0.0659485,0.0160522,0.102142,0.186951,0.266632,0.338043,0.39917,0.448273,0.485229,0.508606,0.520142,0.521698,0.513458,0.500031,0.483673,0.469635,0.457794,0.445465,0.432373,0.41803,0.403839,0.386841,0.366577,0.341461,0.31308,0.282684,0.251801,0.223602,0.195679,0.169342,0.14563,0.125214,0.104156,0.08078,0.0511475,0.0140381,-0.0286865,-0.07547,-0.123169,-0.168396,-0.208771,-0.239197,-0.260071,-0.270691,-0.272247,-0.268036,-0.262878,-0.261017,-0.268188,-0.283142,-0.304993,-0.333527,-0.364227,-0.396515,-0.427521,-0.454346,-0.473694,-0.481018,-0.476807,-0.465729,-0.44873,-0.430023,-0.408051,-0.386993,-0.367035,-0.352234,-0.345367,-0.345673,-0.354095,-0.36734,-0.379059,-0.383728,-0.370636,-0.327911,-0.244171,-0.130493,0.00546265,0.15451,0.314178,0.4729,0.619781,0.744049,0.827484,0.860992,0.844788,0.789124,0.700867,0.601227,0.504089,0.412872,0.331177,0.271149,0.241516,0.245117,0.28363,0.338806,0.391663,0.425812,0.438599,0.427063,0.3909,0.327576,0.232635,0.112579,-0.0126343,-0.12738,-0.223602,-0.291107,-0.321991,-0.319,-0.283295,-0.22406,-0.146729,-0.0651855,0.0112305,0.0734253,0.107727,0.112274,0.0823364,0.0246277,-0.0559692,-0.15094,-0.25058,-0.348328,-0.435486,-0.502991,-0.543243,-0.555847,-0.545715,-0.519379,-0.481781,-0.442657,-0.408661,-0.378571,-0.35083,-0.32962,-0.317291,-0.315277,-0.317444,-0.316681,-0.305756,-0.283295,-0.246521,-0.19928,-0.141113,-0.0731201,0.00671387,0.0927734,0.180389,0.26178,0.336151,0.397919,0.447327,0.483521,0.507355,0.51767,0.51593,0.505341,0.487885,0.466827,0.44873,0.432983,0.419434,0.40509,0.3909,0.376862,0.361572,0.34317,0.318542,0.289703,0.256958,0.223602,0.191925,0.164185,0.140167,0.118958,0.100891,0.0838928,0.0684509,0.0487976,0.0229187,-0.00967407,-0.0489502,-0.0913696,-0.133301,-0.1698,-0.2005,-0.222656,-0.236389,-0.241364,-0.242004,-0.240601,-0.240265,-0.246826,-0.260071,-0.280334,-0.305603,-0.335693,-0.366577,-0.397125,-0.42334,-0.443756,-0.454834,-0.457306,-0.45047,-0.435791,-0.415833,-0.395111,-0.372192,-0.349884,-0.329926,-0.318542,-0.31543,-0.322906,-0.338501,-0.354401,-0.364227,-0.367981,-0.356445,-0.312622,-0.225922,-0.104156,0.0428772,0.202698,0.367035,0.526245,0.673279,0.792694,0.866608,0.887177,0.85849,0.786011,0.679352,0.560852,0.445465,0.342255,0.25882,0.200348,0.171967,0.178833,0.223907,0.2883,0.352539,0.398224,0.414276,0.401642,0.362976,0.29657,0.197235,0.0709534,-0.0581665,-0.175568,-0.270538,-0.332733,-0.358307,-0.347229,-0.299835,-0.224365,-0.132233,-0.038208,0.0473938,0.113342,0.149994,0.152802,0.117401,0.0497437,-0.0413208,-0.146576,-0.253204,-0.355652,-0.443604,-0.508759,-0.545715,-0.551971,-0.536072,-0.502228,-0.457153,-0.412415,-0.372803,-0.343018,-0.320404,-0.302338,-0.292053,-0.289551,-0.292969,-0.293457,-0.284393,-0.259613,-0.218597,-0.164642,-0.101654,-0.0307312,0.0497437,0.135345,0.221252,0.299835,0.367828,0.423492,0.465881,0.49411,0.509857,0.512817,0.505341,0.490387,0.467621,0.441895,0.416931,0.395264,0.375763,0.356903,0.337097,0.317596,0.29718,0.27597,0.250732,0.223755,0.195374,0.1698,0.148438,0.130981,0.117401,0.104156,0.09198,0.0810852,0.0675049,0.0513,0.0254211,-0.00656128,-0.04599,-0.0865479,-0.12738,-0.163239,-0.190216,-0.209412,-0.220459,-0.224213,-0.22345,-0.2211,-0.220947,-0.225769,-0.23996,-0.263184,-0.290314,-0.322296,-0.354095,-0.386536,-0.414764,-0.437836,-0.450134,-0.45108,-0.4422,-0.423798,-0.39917,-0.367981,-0.336334,-0.303436,-0.27832,-0.262115,-0.256165,-0.258972,-0.27597,-0.298279,-0.322296,-0.3396,-0.347382,-0.329468,-0.269592,-0.165131,-0.0238647,0.138,0.307465,0.478058,0.63382,0.772125,0.870972,0.914642,0.899048,0.83136,0.718475,0.58313,0.443298,0.316833,0.212219,0.133636,0.0896606,0.0837402,0.118805,0.189117,0.273499,0.348938,0.395721,0.407593,0.383881,0.329163,0.242462,0.122253,-0.0160522,-0.149841,-0.265991,-0.350525,-0.394806,-0.396667,-0.35675,-0.283142,-0.182587,-0.0712585,0.033844,0.120361,0.177582,0.197083,0.175873,0.114594,0.0237122,-0.0893555,-0.207214,-0.320251,-0.420197,-0.498322,-0.545715,-0.561157,-0.544952,-0.506134,-0.452942,-0.395569,-0.344727,-0.30545,-0.279419,-0.260864,-0.249634,-0.248383,-0.254608,-0.263824,-0.265839,-0.253357,-0.222198,-0.171509,-0.109131,-0.0389709,0.0388184,0.121765,0.208923,0.290314,0.360168,0.416779,0.457458,0.483673,0.495056,0.494263,0.482727,0.46463,0.440948,0.415222,0.389191,0.365479,0.346619,0.32962,0.312622,0.293762,0.271912,0.24823,0.221558,0.19162,0.159668,0.130829,0.105713,0.0895081,0.0796814,0.0779724,0.0760803,0.07547,0.0732727,0.0671997,0.0545654,0.0324402,0.00421143,-0.0325928,-0.0723572,-0.111938,-0.147644,-0.175415,-0.195221,-0.204895,-0.20816,-0.209259,-0.210022,-0.21347,-0.222656,-0.236389,-0.257263,-0.282532,-0.312622,-0.34317,-0.371857,-0.395416,-0.412109,-0.420044,-0.419281,-0.408661,-0.389496,-0.36438,-0.331635,-0.294525,-0.257904,-0.227966,-0.205048,-0.195068,-0.198029,-0.211121,-0.231232,-0.25354,-0.275818,-0.294861,-0.303589,-0.2883,-0.226562,-0.114288,0.0316467,0.193817,0.362213,0.523743,0.665771,0.787567,0.870026,0.898743,0.864746,0.776184,0.644257,0.489594,0.344727,0.22171,0.124878,0.0545654,0.0190125,0.0195007,0.0646973,0.148743,0.246826,0.325409,0.368744,0.374512,0.348022,0.29187,0.205048,0.083252,-0.0552063,-0.186798,-0.295776,-0.371399,-0.405396,-0.394623,-0.347229,-0.267883,-0.160583,-0.0439758,0.0640869,0.148285,0.200348,0.209869,0.177429,0.106171,0.00497437,-0.112579,-0.232178,-0.342255,-0.433624,-0.500824,-0.536682,-0.539795,-0.513123,-0.462311,-0.398376,-0.33429,-0.282227,-0.249176,-0.228729,-0.216248,-0.209259,-0.212219,-0.223267,-0.237305,-0.241516,-0.226074,-0.189117,-0.131592,-0.0646973,0.00857544,0.0846558,0.165588,0.246979,0.321045,0.378571,0.421295,0.448425,0.459045,0.457458,0.44516,0.4263,0.40509,0.380768,0.357697,0.335999,0.32074,0.308411,0.29718,0.283783,0.265533,0.243073,0.216248,0.184601,0.149994,0.112732,0.0776367,0.0494385,0.0313416,0.0257263,0.0285339,0.0368042,0.0487976,0.0597229,0.0692139,0.0686035,0.0576782,0.0386658,0.010437,-0.025116,-0.0642395,-0.103058,-0.135651,-0.160767,-0.176819,-0.183197,-0.186005,-0.186951,-0.191772,-0.202545,-0.217651,-0.237946,-0.260376,-0.287201,-0.317139,-0.346466,-0.36969,-0.384338,-0.388702,-0.383423,-0.371857,-0.35379,-0.330872,-0.299988,-0.262726,-0.224823,-0.191162,-0.166199,-0.148285,-0.137054,-0.140167,-0.15451,-0.17868,-0.207855,-0.237946,-0.263672,-0.275513,-0.26474,-0.217499,-0.12442,0.00250244,0.150299,0.309021,0.468536,0.611847,0.728302,0.807037,0.837769,0.809235,0.730804,0.611664,0.466827,0.318695,0.187408,0.0826416,0.00827026,-0.0316467,-0.0317993,0.00326538,0.0759277,0.169006,0.255859,0.313873,0.340698,0.333984,0.292664,0.220001,0.116638,-0.010437,-0.139252,-0.247131,-0.329926,-0.373749,-0.376862,-0.341156,-0.272858,-0.179779,-0.0668945,0.0414734,0.130676,0.189758,0.208618,0.186005,0.124573,0.0333557,-0.0753174,-0.191162,-0.298126,-0.3909,-0.45575,-0.49054,-0.495819,-0.473694,-0.42926,-0.370148,-0.307159,-0.253052,-0.214874,-0.195068,-0.186798,-0.184601,-0.189758,-0.200043,-0.211121,-0.215942,-0.203949,-0.17041,-0.117554,-0.0528564,0.0169983,0.0887146,0.161377,0.232941,0.296417,0.344574,0.376556,0.394318,0.400085,0.394165,0.381836,0.366089,0.348785,0.330872,0.314484,0.301086,0.292358,0.288605,0.283295,0.274109,0.257416,0.232941,0.201447,0.165436,0.128479,0.088562,0.0502014,0.0179443,-0.00375366,-0.0127869,-0.00796509,0.00656128,0.0282288,0.0514526,0.0728149,0.0848083,0.0862122,0.0765686,0.0570679,0.0266724,-0.0110779,-0.0525513,-0.0895081,-0.120514,-0.140961,-0.151093,-0.1539,-0.151398,-0.153259,-0.160126,-0.174164,-0.192566,-0.216583,-0.244324,-0.276123,-0.3078,-0.337402,-0.358154,-0.367981,-0.367188,-0.35611,-0.340363,-0.316376,-0.28891,-0.255096,-0.21875,-0.184296,-0.152954,-0.12973,-0.114594,-0.106964,-0.109467,-0.120209,-0.139404,-0.162628,-0.192566,-0.219543,-0.237946,-0.240753,-0.220306,-0.166534,-0.0717163,0.0514526,0.186493,0.324951,0.456696,0.571594,0.664368,0.723785,0.735779,0.693542,0.61026,0.495972,0.366272,0.239807,0.126923,0.0374146,-0.0254211,-0.0553589,-0.0489502,-0.00857544,0.0631409,0.14798,0.225006,0.280182,0.310425,0.308258,0.275665,0.214386,0.12442,0.013092,-0.0982361,-0.192719,-0.26474,-0.306061,-0.313873,-0.289398,-0.235596,-0.156555,-0.0592651,0.0357056,0.114288,0.164032,0.179321,0.158112,0.103058,0.020752,-0.0778198,-0.181488,-0.278778,-0.361572,-0.420685,-0.452332,-0.456238,-0.435181,-0.393219,-0.341309,-0.285645,-0.238251,-0.201294,-0.178375,-0.166382,-0.161682,-0.163727,-0.17041,-0.17868,-0.179626,-0.166534,-0.133942,-0.0893555,-0.0333557,0.0263367,0.087616,0.149689,0.208313,0.260559,0.298889,0.323212,0.336639,0.341309,0.338959,0.330566,0.318237,0.303894,0.290649,0.279572,0.270996,0.265533,0.259918,0.25354,0.243866,0.227814,0.204712,0.175415,0.142975,0.108673,0.0756226,0.0455322,0.0219727,0.00747681,0.00201416,0.00637817,0.0185547,0.0358582,0.0556641,0.0742188,0.0890198,0.0932312,0.0873108,0.0723572,0.050354,0.0223083,-0.0109253,-0.043335,-0.0714111,-0.0930786,-0.106506,-0.115692,-0.123505,-0.133789,-0.14859,-0.170258,-0.194733,-0.223114,-0.25119,-0.278778,-0.304352,-0.325104,-0.338348,-0.341766,-0.33493,-0.321045,-0.302948,-0.281433,-0.257111,-0.231689,-0.205811,-0.180542,-0.157318,-0.138153,-0.120697,-0.110077,-0.102753,-0.101196,-0.106812,-0.115845,-0.129272,-0.148895,-0.174164,-0.193176,-0.2005,-0.192261,-0.159973,-0.0952759,0.00109863,0.112732,0.230438,0.347717,0.454498,0.544312,0.610748,0.64209,0.626343,0.570831,0.485229,0.378571,0.263672,0.156067,0.0636292,-0.006073,-0.0473938,-0.054718,-0.0293274,0.026825,0.10321,0.185089,0.257263,0.311523,0.33493,0.323547,0.277222,0.203949,0.101044,-0.0118408,-0.118652,-0.206909,-0.273163,-0.306396,-0.302795,-0.266144,-0.19928,-0.109619,-0.0132446,0.0745239,0.140015,0.17215,0.16684,0.12381,0.0484924,-0.0472412,-0.151703,-0.251984,-0.336945,-0.400726,-0.435486,-0.442963,-0.422699,-0.381378,-0.325409,-0.266785,-0.213287,-0.170898,-0.143616,-0.133789,-0.135956,-0.14624,-0.161224,-0.176819,-0.188812,-0.186005,-0.165741,-0.125824,-0.0725098,-0.00857544,0.0583191,0.123016,0.182739,0.236206,0.278015,0.304352,0.31543,0.315582,0.307465,0.294678,0.278778,0.262878,0.247284,0.237152,0.231232,0.231232,0.235138,0.240112,0.24231,0.239502,0.228119,0.208771,0.18103,0.14798,0.110718,0.0736084,0.0405273,0.0157471,0.000793457,-0.00326538,0.00140381,0.0140381,0.0297852,0.0481873,0.0690613,0.0867004,0.0985413,0.0993347,0.0870056,0.0637817,0.0347595,0.000610352,-0.0322876,-0.0612793,-0.0874634,-0.106323,-0.123016,-0.136597,-0.150452,-0.166199,-0.182281,-0.201599,-0.223755,-0.246521,-0.267731,-0.284088,-0.295624,-0.301544,-0.302338,-0.297974,-0.288452,-0.272705,-0.253204,-0.231384,-0.207214,-0.182281,-0.157166,-0.13269,-0.109467,-0.0884094,-0.0715637,-0.0587769,-0.053009,-0.0548706,-0.0631409,-0.0782776,-0.0982361,-0.121307,-0.146423,-0.17041,-0.190857,-0.19928,-0.186005,-0.14502,-0.0681458,0.0285339,0.134705,0.242462,0.346313,0.438293,0.516571,0.569427,0.587524,0.563507,0.504395,0.416473,0.313416,0.209869,0.11554,0.0394592,-0.0169983,-0.0458374,-0.0413208,-0.00341797,0.0623779,0.146423,0.226074,0.287689,0.325104,0.33197,0.304199,0.243225,0.153259,0.040863,-0.073761,-0.174316,-0.25415,-0.307465,-0.325562,-0.311829,-0.266632,-0.193817,-0.104309,-0.0116882,0.0657959,0.115845,0.133301,0.115692,0.0665894,-0.00436401,-0.0890198,-0.174011,-0.251495,-0.311523,-0.352539,-0.370148,-0.367676,-0.345825,-0.307617,-0.262421,-0.216888,-0.18103,-0.156555,-0.144684,-0.140808,-0.140808,-0.144226,-0.149536,-0.153748,-0.149994,-0.13208,-0.0986938,-0.0527039,0.000152588,0.0541077,0.105255,0.152344,0.19162,0.222656,0.241058,0.248383,0.249329,0.246979,0.243561,0.241364,0.240753,0.242157,0.247284,0.253357,0.260559,0.267242,0.27005,0.266479,0.254456,0.233582,0.204254,0.168854,0.129425,0.0901184,0.0536499,0.025116,0.00531006,-0.00234985,0.00170898,0.0123291,0.0296326,0.0473938,0.0631409,0.0760803,0.082489,0.0813904,0.0722046,0.0542603,0.0279236,-0.00515747,-0.0405273,-0.0728149,-0.0986938,-0.116791,-0.125366,-0.126282,-0.122864,-0.119598,-0.119751,-0.126465,-0.138763,-0.156067,-0.179779,-0.206909,-0.236542,-0.261475,-0.281281,-0.293457,-0.294861,-0.287994,-0.271606,-0.248993,-0.2211,-0.188354,-0.153748,-0.118195,-0.0860596,-0.0595703,-0.0402222,-0.0291443,-0.0269775,-0.0286865,-0.0354004,-0.047699,-0.0643921,-0.0865479,-0.108978,-0.130676,-0.149384,-0.166046,-0.179779,-0.185852,-0.181793,-0.16449,-0.123169,-0.0541077,0.036499,0.130981,0.226868,0.318085,0.402283,0.474152,0.526855,0.548523,0.532928,0.484283,0.408966,0.316681,0.219238,0.128784,0.0522461,-0.00576782,-0.0379028,-0.0396118,-0.00857544,0.0470886,0.12085,0.194733,0.253052,0.287354,0.291412,0.262573,0.204102,0.118195,0.0116882,-0.0999451,-0.199097,-0.276764,-0.329773,-0.34848,-0.333374,-0.287354,-0.213623,-0.124878,-0.0291443,0.0522461,0.108368,0.133148,0.123657,0.0838928,0.0193481,-0.0581665,-0.138458,-0.211884,-0.272705,-0.313873,-0.334442,-0.335083,-0.314484,-0.279419,-0.23465,-0.189758,-0.15155,-0.124268,-0.108978,-0.103851,-0.103851,-0.108368,-0.115845,-0.12381,-0.125977,-0.114899,-0.088562,-0.0497437,-0.00375366,0.04599,0.0941772,0.138306,0.17572,0.207214,0.228119,0.238403,0.241058,0.241516,0.239502,0.239502,0.239502,0.241364,0.244476,0.249481,0.253998,0.257111,0.2565,0.249329,0.235443,0.212982,0.184601,0.149841,0.115234,0.0802917,0.0508423,0.025116,0.00747681,-0.00234985,-0.0045166,-0.000946045,0.00656128,0.0126343,0.0169983,0.0158997,0.0124817,0.006073,-0.00250244,-0.0123291,-0.0240173,-0.036499,-0.0528564,-0.0684509,-0.0796814,-0.0849915,-0.0852966,-0.0827942,-0.0812378,-0.0805969,-0.0865479,-0.098999,-0.117554,-0.140656,-0.166534,-0.193329,-0.218445,-0.238403,-0.251343,-0.253052,-0.244781,-0.228577,-0.206757,-0.182587,-0.155762,-0.128937,-0.102753,-0.0809326,-0.0664368,-0.0564575,-0.0519104,-0.0497437,-0.0514526,-0.0553589,-0.0592651,-0.0603333,-0.0609741,-0.059082,-0.0595703,-0.0625305,-0.0657959,-0.0723572,-0.0845032,-0.10321,-0.123962,-0.144379,-0.157471,-0.154205,-0.12442,-0.0622253,0.0162048,0.104767,0.198486,0.294373,0.387146,0.470245,0.528717,0.548676,0.527313,0.470093,0.382935,0.279114,0.170746,0.0682983,-0.0174561,-0.0778198,-0.106812,-0.101959,-0.059082,0.00888062,0.0923157,0.1698,0.231079,0.265991,0.268646,0.237946,0.173065,0.0801392,-0.0314941,-0.144073,-0.239014,-0.31308,-0.359253,-0.368134,-0.344574,-0.287689,-0.203003,-0.103363,-0.00250244,0.0799866,0.135651,0.159027,0.149689,0.110077,0.0483398,-0.0272827,-0.106018,-0.178833,-0.238251,-0.27832,-0.298279,-0.296082,-0.276917,-0.241669,-0.198334,-0.154358,-0.116943,-0.0899658,-0.073761,-0.0654907,-0.0631409,-0.0656433,-0.0728149,-0.082489,-0.0863953,-0.0784302,-0.057373,-0.0260315,0.00952148,0.0481873,0.0852966,0.12085,0.153107,0.181793,0.202545,0.21579,0.223602,0.230621,0.236053,0.242004,0.245728,0.247589,0.247131,0.243713,0.238098,0.227966,0.214539,0.196136,0.171814,0.144379,0.113342,0.081543,0.0514526,0.0249329,0.00341797,-0.0126343,-0.0216675,-0.0223083,-0.0188599,-0.0112305,-0.00326538,0.000946045,0.00186157,-0.00109863,-0.00561523,-0.013092,-0.0229187,-0.0332031,-0.0439758,-0.0525513,-0.0606384,-0.0673523,-0.0732727,-0.076416,-0.0745239,-0.0695496,-0.0642395,-0.0589294,-0.0586243,-0.0648499,-0.0759277,-0.0921631,-0.111481,-0.132538,-0.153107,-0.17215,-0.188507,-0.198639,-0.198944,-0.190857,-0.176178,-0.157623,-0.137848,-0.113678,-0.0873108,-0.0606384,-0.0366516,-0.0195007,-0.00762939,0,0.00311279,0.00125122,-0.00637817,-0.0168457,-0.0271301,-0.0354004,-0.043335,-0.0508423,-0.059082,-0.0676575,-0.0812378,-0.0975952,-0.115692,-0.135956,-0.152496,-0.164642,-0.168701,-0.156708,-0.118347,-0.0545654,0.0218201,0.106812,0.194427,0.281738,0.359406,0.423492,0.461517,0.467773,0.439545,0.38028,0.298431,0.202087,0.10556,0.0196533,-0.0492859,-0.0932312,-0.108368,-0.0944824,-0.0536499,0.00747681,0.0801392,0.144531,0.191925,0.215485,0.209076,0.172913,0.111786,0.0260315,-0.0712585,-0.165588,-0.243713,-0.300934,-0.331177,-0.327271,-0.292816,-0.229218,-0.146088,-0.0519104,0.0389709,0.111938,0.161377,0.182434,0.17215,0.134552,0.0756226,0.00561523,-0.065033,-0.130981,-0.182892,-0.218445,-0.236694,-0.235596,-0.21875,-0.188354,-0.148285,-0.109314,-0.0782776,-0.0564575,-0.0456848,-0.0405273,-0.0428772,-0.0502014,-0.0636292,-0.0760803,-0.0846558,-0.0804443,-0.0636292,-0.0386658,-0.00732422,0.0269775,0.063446,0.0999451,0.134094,0.16449,0.185242,0.195526,0.201141,0.20285,0.20224,0.198486,0.193512,0.186646,0.180542,0.174957,0.170746,0.165436,0.157623,0.146088,0.130035,0.110718,0.0871582,0.0611267,0.0339966,0.00686646,-0.0152893,-0.0333557,-0.0422668,-0.0420837,-0.0360107,-0.0260315,-0.0140381,-0.00360107,0.00436401,0.00857544,0.00872803,0.00531006,-0.00421143,-0.0154419,-0.0271301,-0.0368042,-0.044281,-0.0491028,-0.0505066,-0.0484924,-0.0436707,-0.0352478,-0.0258789,-0.0187073,-0.0165405,-0.0213623,-0.0308838,-0.0478821,-0.0682983,-0.09198,-0.11554,-0.137512,-0.155304,-0.167297,-0.170258,-0.163574,-0.149048,-0.128632,-0.105255,-0.08078,-0.0555115,-0.0324402,-0.0113831,0.00265503,0.0090332,0.0093689,0.00405884,-0.00796509,-0.0224609,-0.0400696,-0.0536499,-0.0620422,-0.0639343,-0.0646973,-0.0656433,-0.0675049,-0.0697021,-0.0762329,-0.0884094,-0.10791,-0.133636,-0.161377,-0.186493,-0.204712,-0.205048,-0.178833,-0.123962,-0.0505066,0.0314941,0.124115,0.217499,0.306549,0.382477,0.434387,0.452332,0.435181,0.38324,0.306244,0.211273,0.112427,0.0216675,-0.0514526,-0.100555,-0.121918,-0.111328,-0.0731201,-0.0107727,0.0622253,0.132996,0.186005,0.219391,0.223114,0.196777,0.141418,0.0612793,-0.0344543,-0.127075,-0.206116,-0.264923,-0.297821,-0.300293,-0.270355,-0.21283,-0.133301,-0.0417786,0.0473938,0.122864,0.175262,0.199738,0.193512,0.159515,0.102753,0.036499,-0.0313416,-0.0924683,-0.141113,-0.17572,-0.192261,-0.193512,-0.179779,-0.154053,-0.121613,-0.092926,-0.0723572,-0.063446,-0.0631409,-0.0686035,-0.0779724,-0.0907593,-0.104462,-0.116638,-0.120361,-0.111328,-0.0898132,-0.0584717,-0.0243225,0.0126343,0.0487976,0.081543,0.110229,0.13208,0.144684,0.148438,0.146423,0.14328,0.142212,0.142059,0.144379,0.147827,0.152802,0.160278,0.166534,0.172607,0.173218,0.168243,0.155457,0.133789,0.105713,0.0731201,0.038208,0.00515747,-0.0241699,-0.0462952,-0.0584717,-0.0598755,-0.0491028,-0.0316467,-0.00918579,0.0149536,0.0354004,0.0519104,0.0603333,0.0615845,0.0544128,0.0400696,0.0213623,-0.000305176,-0.0205688,-0.0396118,-0.0517578,-0.0587769,-0.0580139,-0.0541077,-0.0448914,-0.0339966,-0.0238647,-0.0179443,-0.0166931,-0.0219727,-0.0336914,-0.0506592,-0.0717163,-0.0951233,-0.115845,-0.132996,-0.144684,-0.149689,-0.147827,-0.139252,-0.122864,-0.101349,-0.0768738,-0.0516052,-0.0291443,-0.00842285,0.00671387,0.0165405,0.0180969,0.0115356,-0.0015564,-0.0179443,-0.037262,-0.057373,-0.0732727,-0.083252,-0.0848083,-0.0857544,-0.0874634,-0.0913696,-0.0969849,-0.10495,-0.119293,-0.138763,-0.166199,-0.191162,-0.212067,-0.219391,-0.207062,-0.16684,-0.101349,-0.0223083,0.0662537,0.157623,0.247589,0.330231,0.397278,0.4375,0.441711,0.410706,0.349426,0.267395,0.17572,0.0852966,0.00546265,-0.0558167,-0.092926,-0.101044,-0.08078,-0.0354004,0.0272827,0.0960388,0.155609,0.196777,0.213287,0.200989,0.158569,0.0921631,0.00701904,-0.0862122,-0.17276,-0.241058,-0.28595,-0.301392,-0.284241,-0.236206,-0.164185,-0.073761,0.0227661,0.111328,0.182739,0.227478,0.241821,0.22345,0.175415,0.108826,0.0344543,-0.0377197,-0.102448,-0.155304,-0.192871,-0.212219,-0.213135,-0.196136,-0.168549,-0.136261,-0.107727,-0.0877686,-0.0773315,-0.0739136,-0.0774841,-0.086853,-0.10025,-0.116638,-0.129883,-0.134857,-0.127075,-0.106323,-0.0782776,-0.0452271,-0.00717163,0.0303955,0.0690613,0.102905,0.13208,0.152954,0.165588,0.17215,0.177429,0.179474,0.179626,0.17807,0.174011,0.170258,0.164337,0.160583,0.154053,0.146088,0.133301,0.117706,0.0980835,0.0757751,0.0508423,0.0279236,0.00671387,-0.00918579,-0.0215149,-0.0260315,-0.0254211,-0.0169983,-0.00497437,0.00918579,0.0230713,0.0346069,0.0420837,0.0448914,0.0439758,0.0374146,0.0257263,0.0121765,-0.00311279,-0.0163574,-0.0265198,-0.033844,-0.0368042,-0.0350952,-0.0328979,-0.0291443,-0.0255737,-0.0219727,-0.0238647,-0.0288391,-0.0402222,-0.0556641,-0.0756226,-0.0961914,-0.116486,-0.133453,-0.145477,-0.15155,-0.151703,-0.145325,-0.13269,-0.114441,-0.0924683,-0.0686035,-0.0456848,-0.0246277,-0.00842285,0.00405884,0.0107727,0.0129395,0.00872803,0.000457764,-0.0116882,-0.0246277,-0.0371094,-0.0473938,-0.0566101,-0.0575256,-0.0556641,-0.0527039,-0.0553589,-0.0626831,-0.0760803,-0.0944824,-0.118805,-0.150146,-0.185089,-0.215179,-0.23761,-0.241516,-0.219849,-0.168396,-0.0958862,-0.00747681,0.0884094,0.189117,0.284393,0.368286,0.430817,0.46167,0.455292,0.411774,0.341309,0.250092,0.151855,0.0572205,-0.0246277,-0.0871582,-0.122253,-0.126465,-0.0993347,-0.0464783,0.0224609,0.0921631,0.152496,0.193176,0.208923,0.195068,0.152802,0.0837402,-0.00421143,-0.0982361,-0.183533,-0.251648,-0.29422,-0.307465,-0.287201,-0.237457,-0.162781,-0.0708008,0.0269775,0.115234,0.18335,0.225769,0.237305,0.217346,0.169189,0.103699,0.0291443,-0.044281,-0.108978,-0.161987,-0.19754,-0.215485,-0.215637,-0.198181,-0.168396,-0.134399,-0.104462,-0.0818481,-0.0687561,-0.0623779,-0.0631409,-0.0692139,-0.0802917,-0.0937195,-0.104614,-0.107422,-0.0971375,-0.0767212,-0.050354,-0.0198059,0.0141907,0.0483398,0.0810852,0.111023,0.134247,0.15094,0.158875,0.164795,0.167603,0.171051,0.17215,0.173218,0.173065,0.17215,0.171204,0.169952,0.165588,0.15686,0.142365,0.12146,0.0966797,0.0671997,0.0363159,0.00622559,-0.0196533,-0.0394592,-0.0533142,-0.0566101,-0.0509949,-0.0380554,-0.0199585,0,0.019165,0.0347595,0.0439758,0.0484924,0.0450745,0.0349121,0.0187073,0,-0.0196533,-0.036499,-0.0500488,-0.0572205,-0.0587769,-0.0548706,-0.046936,-0.0379028,-0.0266724,-0.020752,-0.019165,-0.0260315,-0.0385132,-0.0566101,-0.078125,-0.100739,-0.12381,-0.140656,-0.151093,-0.153259,-0.145325,-0.13208,-0.111328,-0.084198,-0.0552063,-0.025116,0.000457764,0.0205688,0.0343018,0.0411682,0.0422668,0.036499,0.0235291,0.00762939,-0.00827026,-0.0216675,-0.033844,-0.0427246,-0.0481873,-0.0478821,-0.044281,-0.0417786,-0.0445862,-0.0555115,-0.0722046,-0.0943298,-0.124725,-0.161072,-0.2005,-0.233093,-0.255096,-0.257904,-0.234039,-0.182739,-0.108368,-0.0190125,0.0812378,0.185547,0.283936,0.368896,0.429565,0.458405,0.452484,0.410065,0.339294,0.248383,0.149994,0.053009,-0.0322876,-0.0975952,-0.135345,-0.144531,-0.121613,-0.0751648,-0.0115356,0.0553589,0.113983,0.155914,0.174957,0.163879,0.126129,0.0640869,-0.0166931,-0.103699,-0.182587,-0.246979,-0.286743,-0.30014,-0.28067,-0.232788,-0.159973,-0.0706177,0.0240173,0.111786,0.181946,0.227814,0.245422,0.23233,0.190857,0.130493,0.0618896,-0.00732422,-0.0708008,-0.122864,-0.160583,-0.180084,-0.183044,-0.17041,-0.146088,-0.116943,-0.0901184,-0.0703125,-0.0576782,-0.0517578,-0.0528564,-0.0615845,-0.0750122,-0.0893555,-0.102753,-0.106812,-0.10025,-0.0835876,-0.0589294,-0.0289917,0.00515747,0.0411682,0.0757751,0.106659,0.132538,0.150787,0.16153,0.166199,0.169189,0.169952,0.169647,0.167297,0.165436,0.161377,0.157471,0.153412,0.14798,0.138763,0.122559,0.102448,0.0770264,0.0487976,0.0182495,-0.0109253,-0.0368042,-0.0592651,-0.0746765,-0.0813904,-0.079834,-0.0686035,-0.0536499,-0.035553,-0.0154419,0.00219727,0.0155945,0.0265198,0.0317993,0.0317993,0.0261841,0.0173035,0.00576782,-0.006073,-0.0158997,-0.0218201,-0.0246277,-0.0243225,-0.0213623,-0.0176086,-0.013092,-0.0113831,-0.0138855,-0.0205688,-0.0308838,-0.0455322,-0.0622253,-0.0791931,-0.0938721,-0.104767,-0.111176,-0.111176,-0.106323,-0.0952759,-0.0810852,-0.0629883,-0.0431824,-0.0249329,-0.0090332,0.00341797,0.0113831,0.0154419,0.0163574,0.014801,0.00918579,0.00311279,-0.00326538,-0.00701904,-0.0090332,-0.0116882,-0.0132446,-0.014801,-0.0160522,-0.0196533,-0.0286865,-0.0455322,-0.0714111,-0.103851,-0.140015,-0.180878,-0.220642,-0.256805,-0.278625,-0.284546,-0.264923,-0.218292,-0.144684,-0.0545654,0.0448914,0.146576,0.244781,0.328979,0.393402,0.427521,0.427521,0.392914,0.327576,0.23996,0.14328,0.0483398,-0.0360107,-0.103058,-0.142365,-0.153595,-0.132233,-0.085144,-0.0188599,0.0522461,0.117401,0.166992,0.192719,0.189453,0.156403,0.0974426,0.0176086,-0.0701599,-0.156067,-0.226562,-0.274902,-0.295471,-0.284393,-0.241516,-0.172455,-0.0843506,0.0123291,0.105713,0.185242,0.240906,0.268951,0.266144,0.234039,0.177429,0.108521,0.0368042,-0.0296326,-0.0862122,-0.129425,-0.157166,-0.166382,-0.161835,-0.144073,-0.119446,-0.0944824,-0.0770264,-0.0671997,-0.0637817,-0.0664368,-0.0760803,-0.088562,-0.102905,-0.114746,-0.119751,-0.113831,-0.0960388,-0.0698547,-0.0388184,-0.00546265,0.02948,0.0620422,0.0909119,0.113342,0.128784,0.136597,0.138458,0.138153,0.137848,0.137665,0.138763,0.139557,0.141266,0.142212,0.142365,0.140167,0.133942,0.12085,0.100555,0.0740662,0.044281,0.0119934,-0.0199585,-0.0483398,-0.0687561,-0.0829468,-0.0863953,-0.0787354,-0.0625305,-0.0402222,-0.0152893,0.00918579,0.0317993,0.0480347,0.0575256,0.0614319,0.0559692,0.04599,0.0305481,0.0144958,-0.000946045,-0.0124817,-0.0188599,-0.019165,-0.0143433,-0.00701904,0.0015564,0.00982666,0.0141907,0.014801,0.00686646,-0.00671387,-0.0266724,-0.0498962,-0.0753174,-0.09729,-0.114594,-0.125214,-0.128479,-0.122253,-0.108521,-0.0893555,-0.0654907,-0.0407104,-0.0162048,0.00360107,0.0188599,0.0282288,0.0302429,0.0279236,0.0212097,0.010437,-0.00234985,-0.0137329,-0.0230713,-0.02948,-0.0354004,-0.038208,-0.040863,-0.0431824,-0.0450745,-0.0516052,-0.065033,-0.0873108,-0.116638,-0.150787,-0.18866,-0.226227,-0.260071,-0.285187,-0.292816,-0.277374,-0.232635,-0.16217,-0.0745239,0.0237122,0.124725,0.224213,0.312164,0.382477,0.424255,0.43222,0.405853,0.349121,0.267548,0.174957,0.081543,-0.00466919,-0.0736084,-0.120056,-0.138,-0.12738,-0.0884094,-0.0289917,0.0397644,0.102295,0.152191,0.180542,0.18335,0.157959,0.107422,0.0357056,-0.047699,-0.130676,-0.19989,-0.249329,-0.2724,-0.265686,-0.228424,-0.164032,-0.0810852,0.0137329,0.106506,0.18634,0.245117,0.275513,0.276123,0.246979,0.193024,0.123169,0.0480347,-0.0226135,-0.0852966,-0.13504,-0.168549,-0.186005,-0.185394,-0.171814,-0.14798,-0.121155,-0.0993347,-0.0843506,-0.0756226,-0.0720215,-0.07547,-0.0840454,-0.0968323,-0.110382,-0.120056,-0.120056,-0.109619,-0.0901184,-0.0646973,-0.0358582,-0.00360107,0.0300903,0.0623779,0.0915222,0.114899,0.132843,0.144684,0.153748,0.160126,0.165283,0.167603,0.167297,0.164642,0.158722,0.151398,0.140808,0.126923,0.109131,0.0865479,0.0603333,0.0332031,0.00546265,-0.0198059,-0.0414734,-0.0564575,-0.0640869,-0.0657959,-0.057373,-0.0430298,-0.0235291,-0.00280762,0.0179443,0.0354004,0.0492859,0.0570679,0.0603333,0.0572205,0.0502014,0.0394592,0.0279236,0.0171509,0.00918579,0.00497437,0.00280762,0.00311279,0.00482178,0.00747681,0.00982666,0.00952148,0.00421143,-0.006073,-0.020752,-0.0377197,-0.0595703,-0.0809326,-0.101196,-0.116302,-0.12677,-0.130493,-0.128479,-0.120514,-0.106171,-0.0873108,-0.0675049,-0.0472412,-0.02948,-0.014801,-0.00265503,0.00497437,0.00872803,0.00872803,0.00497437,-0.0015564,-0.00872803,-0.0168457,-0.0254211,-0.0341492,-0.0428772,-0.0500488,-0.0570679,-0.0645447,-0.0742188,-0.0901184,-0.111633,-0.136902,-0.166992,-0.196472,-0.224365,-0.244324,-0.253204,-0.248077,-0.218597,-0.164337,-0.0907593,-0.0045166,0.0877686,0.183685,0.271149,0.34491,0.395874,0.419891,0.412872,0.374054,0.3078,0.223114,0.131897,0.0452271,-0.0303955,-0.0856018,-0.116791,-0.121002,-0.0977478,-0.0506592,0.0116882,0.0742188,0.127533,0.162476,0.176819,0.165283,0.126923,0.0679932,-0.00762939,-0.087616,-0.160431,-0.217346,-0.251038,-0.25946,-0.237457,-0.187408,-0.11554,-0.0303955,0.0575256,0.138763,0.200348,0.239014,0.250092,0.233429,0.190216,0.128174,0.0567627,-0.0137329,-0.076416,-0.127869,-0.165283,-0.187256,-0.19397,-0.186646,-0.167297,-0.140167,-0.114594,-0.0957336,-0.0848083,-0.0796814,-0.0787354,-0.0843506,-0.0927734,-0.102142,-0.108368,-0.110229,-0.102142,-0.082489,-0.0558167,-0.0254211,0.00717163,0.0394592,0.0714111,0.10025,0.12442,0.142822,0.154663,0.160431,0.163391,0.164032,0.162781,0.160919,0.155914,0.150146,0.142365,0.132843,0.123016,0.110077,0.0935669,0.0732727,0.0502014,0.0255737,0.00250244,-0.0188599,-0.0343018,-0.044281,-0.0492859,-0.046936,-0.0371094,-0.0233765,-0.00592041,0.0119934,0.0279236,0.0413208,0.0497437,0.0538025,0.0534668,0.0483398,0.0394592,0.0274353,0.0155945,0.00482178,-0.00234985,-0.00701904,-0.0093689,-0.00842285,-0.00656128,-0.00576782,-0.00497437,-0.00967407,-0.0176086,-0.0307312,-0.0495911,-0.0695496,-0.0915222,-0.108826,-0.122711,-0.132385,-0.135651,-0.13269,-0.120361,-0.10495,-0.0838928,-0.0625305,-0.0403748,-0.0196533,-0.00436401,0.00671387,0.0140381,0.0141907,0.010437,0.00326538,-0.00701904,-0.0188599,-0.0302429,-0.039917,-0.0481873,-0.0544128,-0.059082,-0.0608215,-0.0629883,-0.0671997,-0.0785828,-0.0974426,-0.12146,-0.148438,-0.177917,-0.204407,-0.227325,-0.240265,-0.235138,-0.204254,-0.144531,-0.0681458,0.0180969,0.111176,0.206451,0.292206,0.361572,0.407593,0.423157,0.406494,0.357849,0.283783,0.193176,0.0991516,0.013092,-0.0578613,-0.107574,-0.133301,-0.130829,-0.100403,-0.0453796,0.0213623,0.0840454,0.134094,0.166046,0.175415,0.158569,0.116638,0.0522461,-0.0241699,-0.10321,-0.169952,-0.219543,-0.247284,-0.249176,-0.220642,-0.165894,-0.0915222,-0.00656128,0.0762329,0.147827,0.199432,0.227814,0.231842,0.208313,0.160126,0.0947876,0.0258789,-0.0400696,-0.0957336,-0.139557,-0.170898,-0.187744,-0.191925,-0.181641,-0.159363,-0.13269,-0.109131,-0.0944824,-0.087616,-0.0816956,-0.0810852,-0.083252,-0.0884094,-0.0943298,-0.0974426,-0.0938721,-0.079834,-0.0550537,-0.0277405,0.00186157,0.031189,0.0612793,0.086853,0.111328,0.129272,0.141571,0.149048,0.150299,0.151245,0.150452,0.149048,0.147827,0.145782,0.14328,0.138306,0.131592,0.123169,0.112427,0.0965271,0.0762329,0.0514526,0.0238647,-0.00265503,-0.0258789,-0.0436707,-0.0544128,-0.0603333,-0.0581665,-0.0480347,-0.0317993,-0.0107727,0.0113831,0.0332031,0.0505066,0.0626831,0.0695496,0.071106,0.0659485,0.0558167,0.0413208,0.0247803,0.00732422,-0.00747681,-0.0187073,-0.0258789,-0.0305481,-0.0313416,-0.031189,-0.0307312,-0.0308838,-0.0347595,-0.042572,-0.0531616,-0.0678406,-0.0845032,-0.0993347,-0.114441,-0.125519,-0.132385,-0.131287,-0.12442,-0.111786,-0.0938721,-0.0720215,-0.046936,-0.0224609,-0.00125122,0.0152893,0.0266724,0.0310364,0.0300903,0.0227661,0.00967407,-0.00811768,-0.0265198,-0.0445862,-0.0597229,-0.0709534,-0.0799866,-0.0852966,-0.0913696,-0.10025,-0.112274,-0.12677,-0.144379,-0.165894,-0.188812,-0.206604,-0.219849,-0.216736,-0.190063,-0.139404,-0.0708008,0.00811768,0.0938721,0.184296,0.270538,0.342865,0.393555,0.414581,0.404938,0.362366,0.296722,0.212067,0.122406,0.036499,-0.037262,-0.0901184,-0.118652,-0.120697,-0.0944824,-0.0438232,0.0171509,0.0785828,0.128784,0.160767,0.172913,0.157959,0.118958,0.0576782,-0.0165405,-0.0932312,-0.160278,-0.210327,-0.239349,-0.245117,-0.219696,-0.169189,-0.0977478,-0.0160522,0.0640869,0.133789,0.184143,0.213135,0.21814,0.197388,0.152649,0.091217,0.025116,-0.0374146,-0.0913696,-0.134705,-0.166687,-0.185547,-0.191315,-0.183197,-0.164795,-0.140167,-0.119751,-0.106659,-0.0991516,-0.0930786,-0.0893555,-0.0888672,-0.0910645,-0.0943298,-0.0941772,-0.087616,-0.0706177,-0.046936,-0.0202637,0.00747681,0.0335083,0.0606384,0.0860596,0.108521,0.126465,0.140015,0.147827,0.152191,0.156403,0.158722,0.159668,0.158875,0.156219,0.152008,0.145477,0.136597,0.124725,0.109619,0.0913696,0.0700073,0.0461426,0.0205688,-0.00311279,-0.0224609,-0.035553,-0.042572,-0.0439758,-0.0389709,-0.0288391,-0.0144958,0.00296021,0.0202637,0.0369568,0.0497437,0.0575256,0.0611267,0.0598755,0.0550537,0.0453796,0.0335083,0.0201111,0.00762939,-0.00265503,-0.00997925,-0.0157471,-0.0196533,-0.0240173,-0.0271301,-0.0305481,-0.0357056,-0.0430298,-0.0552063,-0.069397,-0.0863953,-0.10025,-0.114594,-0.126282,-0.133942,-0.137054,-0.131897,-0.125214,-0.110077,-0.0921631,-0.0703125,-0.0473938,-0.0265198,-0.0093689,0.00390625,0.0113831,0.013092,0.00842285,-0.00109863,-0.0152893,-0.0330505,-0.0505066,-0.0665894,-0.0776367,-0.0863953,-0.0932312,-0.0991516,-0.106506,-0.115234,-0.128632,-0.145935,-0.165131,-0.182739,-0.195374,-0.203003,-0.195374,-0.165588,-0.111633,-0.0420837,0.0363159,0.121765,0.209869,0.291412,0.358002,0.402588,0.41864,0.404449,0.358307,0.288605,0.205505,0.116791,0.0347595,-0.0360107,-0.0838928,-0.107269,-0.104004,-0.0736084,-0.0223083,0.0396118,0.096344,0.141571,0.168549,0.174774,0.155914,0.111023,0.0466309,-0.02948,-0.104767,-0.169189,-0.215637,-0.240906,-0.239807,-0.212067,-0.158722,-0.0877686,-0.00778198,0.0689087,0.131134,0.173065,0.19397,0.19101,0.164978,0.116302,0.054718,-0.0102844,-0.0697021,-0.12085,-0.160431,-0.187256,-0.201447,-0.20285,-0.193665,-0.172913,-0.148132,-0.128479,-0.115692,-0.107574,-0.100403,-0.0958862,-0.0944824,-0.092926,-0.091217,-0.0845032,-0.0718689,-0.0500488,-0.0240173,0.00466919,0.0319519,0.059082,0.0829468,0.10556,0.122711,0.137207,0.146423,0.152344,0.155609,0.157166,0.159821,0.160126,0.160431,0.15921,0.156219,0.151855,0.144226,0.133148,0.118042,0.098999,0.0776367,0.053009,0.0279236,0.00466919,-0.0140381,-0.0266724,-0.0325928,-0.0335083,-0.026825,-0.0152893,0,0.0173035,0.0344543,0.0489502,0.0606384,0.0651855,0.0664368,0.0598755,0.0498962,0.0358582,0.0210571,0.00515747,-0.00857544,-0.0213623,-0.0314941,-0.0380554,-0.0428772,-0.0453796,-0.047699,-0.0509949,-0.0564575,-0.0642395,-0.0751648,-0.0879517,-0.101349,-0.11554,-0.129089,-0.139557,-0.146576,-0.148438,-0.143616,-0.133453,-0.118042,-0.098999,-0.0760803,-0.0538025,-0.0322876,-0.0146484,-0.0015564,0.00531006,0.00515747,-0.00296021,-0.0169983,-0.0352478,-0.0562744,-0.0740662,-0.0910645,-0.103851,-0.11615,-0.125671,-0.13504,-0.144684,-0.154358,-0.163086,-0.168854,-0.170898,-0.1698,-0.157959,-0.125366,-0.0732727,-0.00747681,0.0648499,0.141418,0.219055,0.292053,0.351593,0.392914,0.409454,0.399628,0.358459,0.29718,0.220459,0.139557,0.0637817,-0.00201416,-0.0500488,-0.0762329,-0.0778198,-0.0548706,-0.0121765,0.0427246,0.0935669,0.132843,0.155457,0.158112,0.140808,0.101044,0.0431824,-0.0265198,-0.0968323,-0.15686,-0.2005,-0.22406,-0.223755,-0.19989,-0.154205,-0.0918274,-0.0210571,0.0473938,0.102295,0.136749,0.151093,0.144684,0.117706,0.0726624,0.0158997,-0.0419312,-0.0952759,-0.139557,-0.171814,-0.191162,-0.2005,-0.2005,-0.191467,-0.174316,-0.152954,-0.135498,-0.125061,-0.120361,-0.116943,-0.113037,-0.109619,-0.10321,-0.0951233,-0.0830994,-0.0640869,-0.0361633,-0.00250244,0.0325928,0.0643921,0.0927734,0.115845,0.13504,0.150146,0.160767,0.164978,0.165894,0.163391,0.160126,0.158264,0.157166,0.157471,0.157806,0.155609,0.154053,0.148132,0.140472,0.128326,0.111786,0.0926208,0.0698547,0.0452271,0.0230713,0.00390625,-0.0090332,-0.0158997,-0.0195007,-0.0162048,-0.00872803,0.00326538,0.0176086,0.0313416,0.044281,0.0533142,0.0570679,0.0561218,0.0509949,0.0410156,0.0280762,0.0141907,-0.00140381,-0.0160522,-0.0299377,-0.042572,-0.0531616,-0.0608215,-0.0671997,-0.0731201,-0.0787354,-0.0852966,-0.0926208,-0.101501,-0.111176,-0.121307,-0.130829,-0.140015,-0.146576,-0.149994,-0.148895,-0.143768,-0.133301,-0.118652,-0.101349,-0.0830994,-0.0636292,-0.0447388,-0.0285339,-0.0155945,-0.00918579,-0.00872803,-0.0133972,-0.0226135,-0.0350952,-0.0497437,-0.0665894,-0.0837402,-0.101196,-0.117249,-0.135193,-0.152954,-0.17041,-0.184937,-0.191467,-0.188812,-0.175568,-0.145477,-0.0935669,-0.0244751,0.0531616,0.134094,0.21579,0.292358,0.355957,0.400391,0.418335,0.410065,0.374512,0.31604,0.240906,0.159668,0.0809326,0.0149536,-0.0341492,-0.0594177,-0.0608215,-0.0410156,0.000610352,0.0544128,0.110718,0.155762,0.181793,0.185394,0.164978,0.123322,0.0626831,-0.0093689,-0.085907,-0.155609,-0.210175,-0.241211,-0.246979,-0.225769,-0.18103,-0.119598,-0.0478821,0.0229187,0.0835876,0.124725,0.142517,0.13736,0.110382,0.0651855,0.00622559,-0.0548706,-0.111786,-0.156555,-0.189911,-0.208008,-0.212524,-0.205963,-0.190521,-0.1698,-0.145325,-0.123505,-0.111023,-0.108063,-0.109772,-0.112122,-0.115997,-0.117096,-0.114594,-0.106506,-0.0909119,-0.0646973,-0.0293274,0.0123291,0.0522461,0.0891724,0.119904,0.146423,0.16745,0.182129,0.189758,0.190704,0.186005,0.17868,0.17276,0.16745,0.162933,0.158875,0.154816,0.151093,0.147186,0.141113,0.132996,0.12085,0.104767,0.0862122,0.0661011,0.0462952,0.0282288,0.014801,0.00576782,0.000305176,-0.000152588,0.00326538,0.0109253,0.0213623,0.0289917,0.0366516,0.040863,0.040863,0.0389709,0.0327454,0.025116,0.0173035,0.00811768,-0.000946045,-0.0116882,-0.0213623,-0.02948,-0.0368042,-0.0450745,-0.0536499,-0.0657959,-0.0790405,-0.094635,-0.110077,-0.126282,-0.141113,-0.154999,-0.165741,-0.172607,-0.173218,-0.169495,-0.159668,-0.14624,-0.128174,-0.111023,-0.0935669,-0.0778198,-0.0632935,-0.0508423,-0.0434875,-0.0427246,-0.0452271,-0.0508423,-0.0570679,-0.0636292,-0.0690613,-0.0768738,-0.0834045,-0.0913696,-0.101044,-0.112427,-0.128784,-0.147644,-0.164642,-0.175873,-0.177124,-0.167603,-0.137665,-0.0852966,-0.0127869,0.0673523,0.153412,0.239807,0.321503,0.386688,0.428162,0.440796,0.424255,0.378723,0.31076,0.225311,0.134705,0.0513,-0.0195007,-0.0643921,-0.0834045,-0.0762329,-0.044281,0.00857544,0.0745239,0.14032,0.191315,0.220795,0.22406,0.201904,0.154663,0.0881042,0.00717163,-0.076416,-0.152191,-0.208771,-0.241058,-0.246033,-0.223755,-0.178833,-0.114594,-0.0427246,0.0285339,0.0849915,0.119446,0.129272,0.115387,0.081543,0.0296326,-0.0325928,-0.09729,-0.156555,-0.202393,-0.233887,-0.246674,-0.246674,-0.235443,-0.216248,-0.190216,-0.159668,-0.13269,-0.11554,-0.106659,-0.103546,-0.101959,-0.0999451,-0.096344,-0.0895081,-0.0784302,-0.0620422,-0.0366516,-0.00390625,0.0317993,0.0662537,0.0961914,0.12146,0.142212,0.158264,0.170563,0.176666,0.179138,0.176971,0.173859,0.171509,0.170898,0.170563,0.1698,0.167938,0.165588,0.160431,0.153595,0.142517,0.12738,0.108978,0.0893555,0.0682983,0.0481873,0.0325928,0.0205688,0.0154419,0.0144958,0.0179443,0.025116,0.0341492,0.0431824,0.0519104,0.0567627,0.057373,0.054718,0.0455322,0.035553,0.0221558,0.00967407,-0.0045166,-0.0188599,-0.0332031,-0.0456848,-0.0564575,-0.0629883,-0.0698547,-0.0776367,-0.0865479,-0.0954285,-0.106323,-0.117706,-0.133453,-0.147186,-0.16153,-0.172913,-0.181793,-0.185852,-0.184143,-0.177277,-0.164032,-0.149048,-0.131592,-0.113831,-0.0955811,-0.0799866,-0.0697021,-0.0653381,-0.0667419,-0.0708008,-0.0759277,-0.0810852,-0.0873108,-0.0971375,-0.10791,-0.120209,-0.130829,-0.14267,-0.154816,-0.165588,-0.168701,-0.162933,-0.14267,-0.104462,-0.0452271,0.0293274,0.11087,0.191925,0.273804,0.347717,0.403839,0.435638,0.438141,0.414764,0.364685,0.294861,0.213287,0.128174,0.0527039,-0.0101318,-0.0502014,-0.0656433,-0.0576782,-0.0255737,0.0235291,0.0820007,0.138916,0.182129,0.205505,0.206909,0.185394,0.142059,0.0816956,0.0113831,-0.0611267,-0.122406,-0.165436,-0.186798,-0.186493,-0.162781,-0.120361,-0.0642395,-0.00482178,0.0492859,0.0873108,0.10321,0.0955811,0.0678406,0.0244751,-0.0325928,-0.0979309,-0.160126,-0.212067,-0.248383,-0.267883,-0.273499,-0.266785,-0.249176,-0.224518,-0.196625,-0.169006,-0.146881,-0.135956,-0.131439,-0.130493,-0.129272,-0.123657,-0.115387,-0.102295,-0.0827942,-0.0552063,-0.0180969,0.0246277,0.0667419,0.105103,0.136749,0.16217,0.18103,0.193512,0.199097,0.198181,0.191315,0.181488,0.17215,0.165436,0.160919,0.157318,0.154816,0.152802,0.150787,0.146729,0.14267,0.135803,0.127686,0.116943,0.104156,0.0907593,0.0779724,0.0673523,0.0608215,0.0550537,0.0511475,0.0480347,0.0458374,0.0448914,0.0445862,0.043335,0.0411682,0.0380554,0.0379028,0.0374146,0.0375671,0.0344543,0.0280762,0.0188599,0.00732422,-0.00872803,-0.0258789,-0.042572,-0.0617371,-0.0812378,-0.101654,-0.122101,-0.14267,-0.16153,-0.180084,-0.196136,-0.210175,-0.217834,-0.219238,-0.21579,-0.206757,-0.194427,-0.180725,-0.164032,-0.148895,-0.136108,-0.128326,-0.124268,-0.122559,-0.122101,-0.122253,-0.121918,-0.122559,-0.122101,-0.121307,-0.121918,-0.128174,-0.138611,-0.149689,-0.157959,-0.161835,-0.161682,-0.151245,-0.122559,-0.0682983,0.00811768,0.0968323,0.189453,0.280823,0.364868,0.433136,0.478058,0.492401,0.475708,0.425812,0.35083,0.261475,0.165894,0.0785828,0.00561523,-0.0448914,-0.0682983,-0.0661011,-0.0371094,0.0140381,0.0787354,0.145325,0.198944,0.230927,0.23996,0.224213,0.183197,0.122711,0.0444336,-0.0360107,-0.108368,-0.164032,-0.192566,-0.197388,-0.176666,-0.134247,-0.0759277,-0.00671387,0.0586243,0.109924,0.136108,0.13504,0.110382,0.0643921,-0.000305176,-0.0765686,-0.157013,-0.229675,-0.2883,-0.326508,-0.344421,-0.344727,-0.330719,-0.304504,-0.270355,-0.231079,-0.195679,-0.168091,-0.15155,-0.14267,-0.135498,-0.129089,-0.119751,-0.108521,-0.0932312,-0.071106,-0.0402222,-0.00170898,0.0430298,0.0852966,0.125061,0.158264,0.185547,0.207062,0.222198,0.229218,0.228882,0.22406,0.214691,0.205811,0.197235,0.19101,0.185547,0.179932,0.174469,0.168091,0.161072,0.152496,0.141418,0.128632,0.112885,0.0961914,0.0801392,0.0648499,0.0541077,0.0448914,0.0410156,0.0402222,0.041626,0.0478821,0.0548706,0.0640869,0.0729675,0.0801392,0.0860596,0.0867004,0.0805969,0.0687561,0.0500488,0.0260315,-0.00140381,-0.031189,-0.0578613,-0.082489,-0.102905,-0.119904,-0.135193,-0.147186,-0.160431,-0.17276,-0.185242,-0.197693,-0.211273,-0.22345,-0.234192,-0.240906,-0.24527,-0.246368,-0.242462,-0.235901,-0.225922,-0.215942,-0.204407,-0.191162,-0.175568,-0.157959,-0.140808,-0.125214,-0.11615,-0.110229,-0.110535,-0.11615,-0.128632,-0.145477,-0.160431,-0.165741,-0.164642,-0.144226,-0.0983887,-0.0226135,0.0712585,0.171204,0.272858,0.36969,0.451874,0.511902,0.539642,0.529205,0.482422,0.406647,0.312469,0.210815,0.11319,0.0293274,-0.0324402,-0.0632935,-0.0637817,-0.0363159,0.0152893,0.0820007,0.155151,0.215332,0.255859,0.270203,0.256805,0.218903,0.158112,0.0810852,-0.00234985,-0.0821838,-0.143127,-0.181488,-0.193024,-0.177917,-0.138916,-0.084198,-0.0212097,0.0405273,0.0910645,0.116486,0.114441,0.0871582,0.0391235,-0.0243225,-0.101044,-0.180084,-0.253693,-0.312927,-0.351288,-0.368896,-0.367188,-0.350342,-0.322601,-0.2883,-0.247589,-0.209259,-0.180542,-0.162628,-0.154999,-0.151398,-0.148285,-0.140656,-0.128326,-0.114136,-0.0926208,-0.0632935,-0.0218201,0.0258789,0.0756226,0.122559,0.163239,0.196136,0.22345,0.242615,0.254608,0.256012,0.248993,0.234985,0.219055,0.203796,0.190369,0.180084,0.172455,0.166687,0.163239,0.161987,0.162476,0.16217,0.161682,0.159363,0.153748,0.143433,0.129425,0.115234,0.101807,0.0881042,0.0745239,0.0620422,0.0544128,0.0508423,0.0519104,0.0569153,0.0639343,0.0715637,0.0742188,0.0717163,0.0628357,0.046936,0.0249329,-0.00296021,-0.0343018,-0.0665894,-0.0979309,-0.125061,-0.14859,-0.167786,-0.187408,-0.205963,-0.223907,-0.238403,-0.249634,-0.258667,-0.264587,-0.268646,-0.269135,-0.267242,-0.262726,-0.256165,-0.247589,-0.238403,-0.226562,-0.21579,-0.204407,-0.190521,-0.174469,-0.160583,-0.154358,-0.1539,-0.159973,-0.170563,-0.181946,-0.192566,-0.197693,-0.19397,-0.173065,-0.12442,-0.0462952,0.0552063,0.16745,0.280487,0.392303,0.492096,0.565369,0.603577,0.598267,0.55304,0.474609,0.370789,0.258209,0.14502,0.0473938,-0.0254211,-0.0664368,-0.0709534,-0.0434875,0.0124817,0.0865479,0.166382,0.237793,0.288757,0.311066,0.30249,0.263184,0.197693,0.111938,0.0168457,-0.0745239,-0.145477,-0.192413,-0.20816,-0.194427,-0.151855,-0.090271,-0.0174561,0.0555115,0.11615,0.15155,0.153748,0.126282,0.0732727,0.0015564,-0.0867004,-0.180542,-0.271149,-0.345825,-0.400726,-0.429108,-0.435333,-0.422394,-0.394623,-0.355042,-0.308716,-0.262726,-0.223907,-0.196472,-0.179626,-0.168396,-0.158112,-0.147491,-0.132843,-0.115845,-0.0927734,-0.0617371,-0.0224609,0.0240173,0.0726624,0.119598,0.161987,0.19693,0.227814,0.250397,0.266479,0.27301,0.270355,0.261932,0.250397,0.238708,0.228271,0.218445,0.208771,0.198792,0.189911,0.181946,0.172302,0.162933,0.152191,0.141266,0.126923,0.111023,0.0983887,0.0893555,0.083252,0.0801392,0.0796814,0.0862122,0.0958862,0.109924,0.124115,0.134857,0.139252,0.13504,0.124268,0.104004,0.0762329,0.0424194,0.00497437,-0.0333557,-0.0700073,-0.102905,-0.132385,-0.156219,-0.175262,-0.19458,-0.215179,-0.234802,-0.253845,-0.271912,-0.289062,-0.305908,-0.32074,-0.329773,-0.334442,-0.332733,-0.328369,-0.319641,-0.305298,-0.286102,-0.264435,-0.240417,-0.217346,-0.196777,-0.179932,-0.166687,-0.161987,-0.167145,-0.180878,-0.19754,-0.207672,-0.206299,-0.188202,-0.149689,-0.0805969,0.0157471,0.130981,0.252441,0.373444,0.485077,0.571136,0.62384,0.635376,0.603729,0.533569,0.433136,0.317139,0.198029,0.0893555,0.00561523,-0.04599,-0.0608215,-0.0366516,0.0149536,0.0879517,0.169952,0.24823,0.308105,0.337891,0.333832,0.298737,0.23465,0.152191,0.0558167,-0.0386658,-0.121002,-0.178528,-0.203796,-0.19458,-0.155304,-0.0924683,-0.0205688,0.0511475,0.113831,0.154816,0.165588,0.140961,0.0871582,0.0121765,-0.0790405,-0.175262,-0.266479,-0.34848,-0.410217,-0.450928,-0.465576,-0.457794,-0.430664,-0.392761,-0.350342,-0.306549,-0.26709,-0.235138,-0.213623,-0.197235,-0.18634,-0.174164,-0.15921,-0.138611,-0.113831,-0.0820007,-0.0428772,0.00360107,0.0527039,0.102295,0.148743,0.191162,0.226227,0.254456,0.274719,0.285797,0.288452,0.282074,0.271149,0.258972,0.247589,0.236206,0.226074,0.21579,0.206299,0.198029,0.189911,0.183838,0.176666,0.167145,0.157318,0.14563,0.133636,0.121918,0.113983,0.110382,0.111023,0.117401,0.126617,0.138916,0.148743,0.153748,0.152008,0.142975,0.123657,0.0955811,0.0589294,0.0173035,-0.0272827,-0.0701599,-0.109314,-0.144226,-0.173553,-0.199585,-0.219055,-0.235748,-0.249786,-0.26178,-0.275055,-0.287048,-0.300934,-0.31604,-0.328979,-0.342865,-0.350983,-0.356903,-0.358002,-0.353485,-0.34317,-0.325562,-0.304199,-0.279114,-0.255707,-0.235443,-0.219055,-0.211884,-0.214081,-0.225464,-0.234192,-0.233887,-0.22171,-0.189453,-0.126923,-0.0343018,0.0809326,0.206909,0.338196,0.460907,0.56662,0.644409,0.679047,0.668915,0.613251,0.52359,0.410706,0.287689,0.167938,0.0671997,-0.00360107,-0.0391235,-0.0346069,0.00515747,0.0734253,0.157318,0.238251,0.304993,0.346619,0.357208,0.334137,0.278931,0.2005,0.101654,-0.000152588,-0.09198,-0.160583,-0.199432,-0.203796,-0.17511,-0.119751,-0.0489502,0.0274353,0.0958862,0.145935,0.164337,0.150635,0.106171,0.0363159,-0.0514526,-0.148438,-0.246979,-0.334595,-0.406189,-0.453094,-0.476654,-0.478363,-0.460266,-0.42926,-0.388397,-0.345367,-0.306061,-0.274567,-0.252136,-0.232635,-0.217834,-0.2005,-0.180725,-0.157806,-0.12973,-0.094635,-0.0514526,-0.00421143,0.0491028,0.102142,0.151703,0.195984,0.232483,0.263336,0.287201,0.300446,0.303589,0.298737,0.289062,0.278168,0.268036,0.256012,0.243378,0.22998,0.215637,0.204407,0.194122,0.187561,0.181488,0.17572,0.167297,0.159515,0.152191,0.147491,0.149048,0.154358,0.160767,0.16745,0.174469,0.179474,0.18335,0.181488,0.168854,0.145477,0.114899,0.0760803,0.0324402,-0.0168457,-0.0659485,-0.112579,-0.154816,-0.194122,-0.225922,-0.249634,-0.266937,-0.281281,-0.292816,-0.307465,-0.32135,-0.336151,-0.349579,-0.360962,-0.371094,-0.378723,-0.384033,-0.383728,-0.377472,-0.367493,-0.351593,-0.333527,-0.315735,-0.296875,-0.281586,-0.270844,-0.26709,-0.270203,-0.272705,-0.267548,-0.249481,-0.208771,-0.142365,-0.0484924,0.0659485,0.188965,0.314484,0.434082,0.538849,0.616364,0.658447,0.658295,0.617462,0.543854,0.447662,0.339752,0.233887,0.143433,0.0778198,0.044281,0.0462952,0.0779724,0.135193,0.201752,0.269592,0.322296,0.353302,0.358154,0.33429,0.283478,0.208771,0.120361,0.0272827,-0.059082,-0.125214,-0.165283,-0.171661,-0.149994,-0.102142,-0.0420837,0.0202637,0.0756226,0.112732,0.122559,0.104004,0.0584717,-0.00762939,-0.0874634,-0.175568,-0.263824,-0.344116,-0.404449,-0.44577,-0.468231,-0.471191,-0.457947,-0.431915,-0.400574,-0.368134,-0.340363,-0.317596,-0.300781,-0.286743,-0.271454,-0.248383,-0.220795,-0.186005,-0.14798,-0.1026,-0.0513,0.00436401,0.0623779,0.11911,0.168396,0.209869,0.244324,0.272552,0.294678,0.308563,0.313568,0.312622,0.306854,0.299042,0.293457,0.286591,0.27771,0.264923,0.253052,0.241669,0.234039,0.227966,0.221863,0.214081,0.204895,0.194916,0.185242,0.179321,0.174774,0.173065,0.173706,0.172302,0.172607,0.172607,0.169342,0.159515,0.142822,0.118042,0.0857544,0.0458374,0.00109863,-0.046936,-0.0951233,-0.140808,-0.183533,-0.218903,-0.249634,-0.274109,-0.294678,-0.313721,-0.329468,-0.346771,-0.363281,-0.378876,-0.388397,-0.395264,-0.398834,-0.399628,-0.398224,-0.392609,-0.382477,-0.368591,-0.355042,-0.339752,-0.326508,-0.318237,-0.316833,-0.320251,-0.327576,-0.331024,-0.323212,-0.299988,-0.253998,-0.176514,-0.0657959,0.0670471,0.209717,0.348022,0.477112,0.585785,0.665771,0.70462,0.700409,0.650818,0.568481,0.462158,0.344421,0.234039,0.145782,0.0870056,0.0637817,0.073761,0.115845,0.183685,0.260864,0.335236,0.388855,0.415985,0.410065,0.376404,0.31604,0.231689,0.130035,0.0240173,-0.0697021,-0.139862,-0.176819,-0.179932,-0.151398,-0.0999451,-0.0366516,0.02948,0.0837402,0.116943,0.121002,0.0916748,0.0358582,-0.0411682,-0.130035,-0.226074,-0.321198,-0.40509,-0.468231,-0.507202,-0.521698,-0.514374,-0.49054,-0.456238,-0.416321,-0.376404,-0.343353,-0.319641,-0.30545,-0.296417,-0.285339,-0.268188,-0.244629,-0.215027,-0.177765,-0.132385,-0.078125,-0.0144958,0.0531616,0.11911,0.180542,0.233734,0.274902,0.309662,0.335236,0.350677,0.354706,0.35083,0.341156,0.330566,0.320251,0.308411,0.296722,0.286743,0.277222,0.271149,0.268646,0.268646,0.269135,0.267395,0.26413,0.254608,0.243713,0.231384,0.21814,0.206909,0.195221,0.182892,0.17041,0.157623,0.143921,0.124878,0.101501,0.0695496,0.0316467,-0.00872803,-0.0527039,-0.0966797,-0.141113,-0.182434,-0.220795,-0.254456,-0.28363,-0.308716,-0.333374,-0.35675,-0.378265,-0.397919,-0.414581,-0.427216,-0.433929,-0.436584,-0.435638,-0.429108,-0.419128,-0.406494,-0.394012,-0.382172,-0.3703,-0.360321,-0.355957,-0.358002,-0.364685,-0.369995,-0.365173,-0.343811,-0.299988,-0.223267,-0.112885,0.0165405,0.155304,0.295166,0.429108,0.546204,0.63678,0.688538,0.694794,0.657196,0.586578,0.492554,0.385742,0.281281,0.193512,0.131744,0.106171,0.115234,0.154999,0.218903,0.294678,0.367828,0.420685,0.450623,0.451385,0.421936,0.361908,0.276764,0.17337,0.0645447,-0.0366516,-0.114288,-0.159973,-0.171051,-0.148285,-0.100891,-0.0377197,0.0291443,0.0898132,0.130981,0.140015,0.117096,0.0665894,-0.0093689,-0.101959,-0.206909,-0.314331,-0.41037,-0.484589,-0.534485,-0.560547,-0.561615,-0.541656,-0.506744,-0.462616,-0.416931,-0.378265,-0.348785,-0.329468,-0.316223,-0.304352,-0.293457,-0.276764,-0.253998,-0.223907,-0.184753,-0.135956,-0.0759277,-0.00497437,0.0679932,0.139557,0.201904,0.258514,0.306854,0.344421,0.371857,0.385895,0.384827,0.375305,0.362823,0.352386,0.3396,0.324463,0.308411,0.296722,0.292206,0.29361,0.296265,0.29953,0.304047,0.305298,0.302338,0.289398,0.271912,0.254761,0.239014,0.21875,0.197693,0.176025,0.157013,0.13504,0.110229,0.0809326,0.0419312,-0.000457764,-0.0445862,-0.0873108,-0.126465,-0.160431,-0.191925,-0.220459,-0.241516,-0.260376,-0.279724,-0.301849,-0.324005,-0.347717,-0.374054,-0.400879,-0.424103,-0.446259,-0.458557,-0.465576,-0.465729,-0.458099,-0.445618,-0.429413,-0.412109,-0.395721,-0.388245,-0.388245,-0.391815,-0.398071,-0.399628,-0.389496,-0.362061,-0.307007,-0.219055,-0.0994873,0.0414734,0.187744,0.332428,0.471985,0.592499,0.677643,0.718811,0.712708,0.666107,0.589386,0.490845,0.382629,0.278473,0.197235,0.147644,0.135193,0.154999,0.204712,0.268799,0.337402,0.401031,0.445007,0.463257,0.446259,0.398834,0.323547,0.22702,0.118958,0.0127869,-0.0765686,-0.142822,-0.174774,-0.171204,-0.132843,-0.0762329,-0.0109253,0.0541077,0.108215,0.139252,0.139862,0.106018,0.0453796,-0.0377197,-0.137207,-0.243713,-0.347382,-0.436432,-0.504089,-0.544952,-0.560394,-0.555695,-0.532928,-0.498474,-0.459808,-0.423645,-0.39386,-0.370941,-0.352844,-0.339447,-0.328522,-0.315887,-0.294678,-0.265533,-0.227173,-0.174622,-0.112274,-0.0445862,0.0274353,0.101959,0.171204,0.235138,0.285645,0.325104,0.357361,0.380768,0.392609,0.391998,0.38623,0.380127,0.37561,0.371399,0.365936,0.358002,0.34848,0.343811,0.341003,0.338348,0.333679,0.325104,0.308716,0.290009,0.265076,0.238556,0.215179,0.194733,0.180542,0.165283,0.149231,0.130188,0.11319,0.0955811,0.0671997,0.0247803,-0.0235291,-0.0715637,-0.11615,-0.157013,-0.197876,-0.231689,-0.260223,-0.279419,-0.296875,-0.310608,-0.320251,-0.332123,-0.348633,-0.371704,-0.39386,-0.415985,-0.434082,-0.446259,-0.456543,-0.465576,-0.468079,-0.462158,-0.450623,-0.439392,-0.432068,-0.42691,-0.422546,-0.418488,-0.411621,-0.401978,-0.38324,-0.3396,-0.264587,-0.153412,-0.019165,0.125671,0.270996,0.416626,0.548523,0.651917,0.718964,0.748108,0.732971,0.673584,0.583923,0.479614,0.379211,0.28891,0.220642,0.180389,0.176025,0.207672,0.261932,0.323059,0.382629,0.425964,0.445923,0.441559,0.41272,0.355957,0.268799,0.159668,0.0420837,-0.0639343,-0.142822,-0.191467,-0.204407,-0.182281,-0.133453,-0.0676575,-0.000305176,0.0626831,0.106018,0.118347,0.102142,0.0584717,-0.00997925,-0.0991516,-0.200195,-0.307007,-0.404938,-0.483521,-0.537445,-0.566925,-0.571777,-0.554138,-0.525299,-0.488037,-0.450287,-0.419586,-0.394958,-0.371704,-0.35083,-0.337738,-0.32962,-0.318542,-0.295776,-0.257263,-0.210968,-0.156219,-0.0947876,-0.0190125,0.0631409,0.144531,0.221863,0.286285,0.335083,0.372345,0.405853,0.429718,0.441711,0.440002,0.427704,0.419128,0.412109,0.401489,0.389496,0.381378,0.379517,0.380463,0.379822,0.371552,0.362518,0.352997,0.334137,0.300293,0.261627,0.222809,0.189117,0.162323,0.139709,0.115845,0.0913696,0.0676575,0.0513,0.0333557,0.00842285,-0.0286865,-0.0698547,-0.106171,-0.144073,-0.180542,-0.216431,-0.248383,-0.275208,-0.299683,-0.323853,-0.348175,-0.361267,-0.376068,-0.396027,-0.415833,-0.432526,-0.445007,-0.455902,-0.45871,-0.459808,-0.462158,-0.462463,-0.458557,-0.454193,-0.455902,-0.458099,-0.462311,-0.467133,-0.462921,-0.449982,-0.425354,-0.380463,-0.301697,-0.186951,-0.0492859,0.106018,0.270691,0.431122,0.571136,0.682007,0.756531,0.787567,0.772736,0.71521,0.62915,0.525604,0.417542,0.315277,0.241211,0.200684,0.198944,0.226562,0.273163,0.332275,0.396362,0.451233,0.482574,0.485687,0.452026,0.385437,0.294678,0.189453,0.0776367,-0.0349121,-0.128632,-0.189117,-0.207062,-0.188202,-0.144226,-0.086853,-0.020752,0.0427246,0.0909119,0.115234,0.107269,0.0698547,-0.000946045,-0.0896606,-0.188507,-0.293762,-0.397278,-0.484131,-0.54776,-0.589233,-0.602936,-0.592346,-0.564575,-0.536682,-0.506897,-0.474152,-0.442505,-0.414917,-0.392456,-0.37326,-0.356445,-0.337555,-0.308105,-0.268341,-0.222961,-0.168396,-0.10321,-0.0282288,0.0548706,0.13504,0.208313,0.273315,0.329468,0.373596,0.408661,0.432678,0.446869,0.446075,0.444061,0.441254,0.4375,0.428009,0.417084,0.406189,0.403839,0.403046,0.398682,0.392151,0.385132,0.373108,0.352081,0.318695,0.278015,0.235443,0.195831,0.168243,0.146088,0.127869,0.107422,0.0843506,0.0637817,0.040863,0.0141907,-0.0149536,-0.0517578,-0.0971375,-0.144836,-0.187561,-0.217194,-0.243378,-0.271912,-0.298431,-0.320251,-0.337402,-0.353485,-0.371704,-0.389191,-0.411163,-0.432831,-0.450287,-0.464325,-0.4729,-0.484131,-0.485382,-0.483826,-0.483521,-0.481171,-0.4776,-0.472443,-0.468536,-0.46698,-0.45871,-0.442352,-0.416321,-0.381073,-0.320404,-0.222809,-0.096344,0.053009,0.210815,0.370636,0.516266,0.637238,0.729553,0.785065,0.795807,0.764313,0.698669,0.602478,0.495056,0.388397,0.301392,0.252289,0.225006,0.222504,0.241516,0.285492,0.344116,0.400238,0.441254,0.45047,0.429108,0.383575,0.316376,0.229828,0.122864,0.0163574,-0.0750122,-0.140015,-0.171356,-0.174774,-0.14859,-0.0955811,-0.0324402,0.0314941,0.0785828,0.103699,0.108063,0.079834,0.0255737,-0.054718,-0.152191,-0.257263,-0.362976,-0.453735,-0.526093,-0.576752,-0.603577,-0.607635,-0.591705,-0.56662,-0.535889,-0.499573,-0.466827,-0.437347,-0.414124,-0.395874,-0.379059,-0.35379,-0.322906,-0.285339,-0.24231,-0.192719,-0.12973,-0.0502014,0.0366516,0.117249,0.189911,0.259766,0.324005,0.379974,0.419434,0.444366,0.457001,0.46402,0.460754,0.449219,0.430328,0.412262,0.396362,0.382935,0.373749,0.369385,0.368744,0.369843,0.374054,0.372192,0.358002,0.334778,0.29953,0.261627,0.21875,0.182281,0.152649,0.129578,0.106812,0.0809326,0.057373,0.0341492,0.0110779,-0.0133972,-0.0439758,-0.076416,-0.108215,-0.138916,-0.170746,-0.203003,-0.231842,-0.256012,-0.279877,-0.309967,-0.342255,-0.367188,-0.393707,-0.418945,-0.441895,-0.466827,-0.484283,-0.490845,-0.485687,-0.481781,-0.482269,-0.483521,-0.479919,-0.473389,-0.463074,-0.454987,-0.451691,-0.448273,-0.443604,-0.425659,-0.398529,-0.352844,-0.274719,-0.157959,-0.0176086,0.139069,0.299683,0.455902,0.597015,0.709595,0.782715,0.813141,0.795654,0.741882,0.653168,0.542755,0.428619,0.331329,0.258057,0.209869,0.192871,0.207672,0.248535,0.306549,0.364075,0.410553,0.435791,0.435333,0.402283,0.34256,0.261169,0.158112,0.0500488,-0.0523987,-0.130341,-0.175873,-0.18634,-0.165436,-0.117096,-0.0475464,0.0247803,0.085907,0.131134,0.146881,0.12738,0.078125,0.00375366,-0.0896606,-0.200348,-0.316681,-0.423645,-0.511719,-0.578766,-0.61557,-0.622589,-0.609192,-0.586578,-0.555695,-0.519226,-0.479919,-0.444855,-0.419434,-0.39917,-0.376862,-0.355347,-0.329773,-0.29657,-0.25882,-0.208923,-0.147491,-0.0715637,0.0107727,0.0961914,0.179138,0.254761,0.320892,0.376404,0.423645,0.45639,0.476349,0.481171,0.476349,0.464966,0.446564,0.425659,0.402435,0.38028,0.360321,0.349274,0.345673,0.344116,0.338043,0.326172,0.306854,0.283295,0.256348,0.225769,0.19632,0.171509,0.151855,0.133301,0.118347,0.107422,0.0944824,0.0791931,0.0601807,0.0319519,-0.000457764,-0.0393066,-0.0813904,-0.120514,-0.158417,-0.19101,-0.219543,-0.241821,-0.267548,-0.293762,-0.320251,-0.346771,-0.372192,-0.401642,-0.430176,-0.448425,-0.467133,-0.481018,-0.489746,-0.498962,-0.505341,-0.505493,-0.495667,-0.479309,-0.464966,-0.449677,-0.433929,-0.418793,-0.407745,-0.393555,-0.372345,-0.341614,-0.297668,-0.225616,-0.112579,0.0271301,0.182739,0.338806,0.484772,0.617126,0.7258,0.793488,0.819061,0.801605,0.744537,0.649109,0.533875,0.413666,0.30484,0.225311,0.17511,0.159027,0.17337,0.209412,0.264435,0.322449,0.37265,0.405243,0.411316,0.385895,0.327576,0.245422,0.14328,0.038208,-0.0519104,-0.125977,-0.173553,-0.184753,-0.160767,-0.107727,-0.038208,0.0333557,0.0966797,0.135498,0.146881,0.123322,0.0692139,-0.00982666,-0.111481,-0.219849,-0.334595,-0.446564,-0.532928,-0.592804,-0.621338,-0.624298,-0.612152,-0.589539,-0.553375,-0.514862,-0.477264,-0.439697,-0.406006,-0.376556,-0.358612,-0.338348,-0.307617,-0.266144,-0.216736,-0.160767,-0.0980835,-0.0252686,0.0570679,0.140961,0.222351,0.28595,0.341614,0.391998,0.428467,0.449982,0.457458,0.462921,0.462311,0.451233,0.434387,0.40976,0.384033,0.365784,0.354401,0.342407,0.330872,0.319,0.307007,0.294525,0.273315,0.246826,0.213928,0.185547,0.165283,0.143616,0.133789,0.130981,0.12677,0.121765,0.109619,0.0957336,0.0774841,0.050354,0.0155945,-0.0265198,-0.0709534,-0.114899,-0.159515,-0.197693,-0.230621,-0.260712,-0.28595,-0.3078,-0.327423,-0.355499,-0.384186,-0.405701,-0.423798,-0.440155,-0.463257,-0.478363,-0.49115,-0.496155,-0.495361,-0.490051,-0.478516,-0.464813,-0.443604,-0.418793,-0.394623,-0.370941,-0.354095,-0.34552,-0.333679,-0.318085,-0.287506,-0.235291,-0.149689,-0.0324402,0.108826,0.263672,0.42099,0.563019,0.682922,0.774475,0.83075,0.841492,0.800201,0.716309,0.602478,0.472137,0.339447,0.225922,0.145477,0.106323,0.102142,0.127533,0.177429,0.244019,0.313568,0.375153,0.411957,0.414429,0.381836,0.321198,0.234497,0.127533,0.0137329,-0.092926,-0.165283,-0.202087,-0.200836,-0.168243,-0.111481,-0.0391235,0.0346069,0.0960388,0.128632,0.128937,0.100403,0.0428772,-0.0407104,-0.147491,-0.271149,-0.392151,-0.499573,-0.576904,-0.62915,-0.65332,-0.648315,-0.626648,-0.587982,-0.545105,-0.494415,-0.447479,-0.406189,-0.372192,-0.3396,-0.310272,-0.278015,-0.239807,-0.194916,-0.143921,-0.0862122,-0.0238647,0.0491028,0.121155,0.193329,0.261627,0.31778,0.368439,0.410553,0.440491,0.455902,0.454651,0.45047,0.438141,0.42395,0.401184,0.381073,0.36377,0.348938,0.33429,0.319489,0.310913,0.303894,0.291412,0.26944,0.240753,0.211884,0.187103,0.162323,0.143921,0.131287,0.128479,0.130341,0.132233,0.12973,0.117706,0.100098,0.0796814,0.0539551,0.0190125,-0.0300903,-0.0827942,-0.134552,-0.178986,-0.216248,-0.252594,-0.281891,-0.312012,-0.333984,-0.349884,-0.368439,-0.387451,-0.410553,-0.427704,-0.439087,-0.450134,-0.462158,-0.474304,-0.478363,-0.473846,-0.46402,-0.45343,-0.437683,-0.408813,-0.375458,-0.341461,-0.315582,-0.299377,-0.293457,-0.287048,-0.278625,-0.265991,-0.236053,-0.177765,-0.0838928,0.0374146,0.181946,0.338806,0.489136,0.625397,0.743591,0.829346,0.868958,0.854126,0.786163,0.678711,0.547424,0.408356,0.274261,0.161224,0.082489,0.0448914,0.0506592,0.0957336,0.163391,0.238708,0.314484,0.377167,0.409302,0.403198,0.358154,0.282532,0.180725,0.0676575,-0.0417786,-0.132385,-0.193512,-0.220947,-0.209869,-0.169495,-0.105103,-0.0280762,0.0431824,0.0930786,0.112885,0.100891,0.0576782,-0.0137329,-0.106964,-0.214386,-0.329926,-0.442963,-0.537445,-0.600128,-0.632111,-0.640381,-0.627106,-0.592804,-0.548523,-0.503326,-0.461365,-0.416626,-0.375305,-0.341003,-0.307312,-0.274414,-0.23465,-0.192719,-0.14624,-0.0927734,-0.0317993,0.039917,0.115387,0.188965,0.256165,0.314819,0.361267,0.399323,0.42395,0.435181,0.435333,0.429413,0.415375,0.394958,0.37265,0.350677,0.33429,0.323547,0.317139,0.306549,0.295776,0.289856,0.283783,0.275665,0.257111,0.232941,0.204407,0.180878,0.164032,0.152649,0.151093,0.149689,0.148285,0.148895,0.146881,0.135345,0.109131,0.076416,0.038208,-0.00778198,-0.0639343,-0.118347,-0.169495,-0.210815,-0.249481,-0.283783,-0.312927,-0.332581,-0.343964,-0.357208,-0.373596,-0.387787,-0.402283,-0.416473,-0.428314,-0.438293,-0.448578,-0.45343,-0.447479,-0.438446,-0.420044,-0.395874,-0.368591,-0.331024,-0.290649,-0.25354,-0.229218,-0.213135,-0.208008,-0.212677,-0.222046,-0.231689,-0.240112,-0.231689,-0.198639,-0.128479,-0.0233765,0.113525,0.271606,0.433472,0.579254,0.70694,0.805634,0.861938,0.870026,0.822174,0.726593,0.597656,0.444214,0.29422,0.167145,0.0779724,0.0291443,0.020752,0.0538025,0.114746,0.193512,0.274414,0.341003,0.384186,0.394165,0.362823,0.294678,0.195526,0.0782776,-0.0419312,-0.145782,-0.21875,-0.258972,-0.262421,-0.233246,-0.18103,-0.106506,-0.0252686,0.0397644,0.0743713,0.0736084,0.0439758,-0.0113831,-0.0896606,-0.18335,-0.287506,-0.396027,-0.4888,-0.555389,-0.589996,-0.597961,-0.58548,-0.556946,-0.514709,-0.471191,-0.431427,-0.392914,-0.355957,-0.32135,-0.286438,-0.251984,-0.214691,-0.175568,-0.127228,-0.0723572,-0.0121765,0.0497437,0.118347,0.189117,0.251495,0.309662,0.358612,0.395264,0.419739,0.432068,0.435028,0.422394,0.404785,0.384491,0.363617,0.34256,0.322144,0.305298,0.291412,0.281281,0.272095,0.264435,0.264282,0.263672,0.255859,0.235443,0.212067,0.193512,0.17868,0.161377,0.148438,0.143127,0.138153,0.13269,0.125214,0.110077,0.085907,0.0531616,0.0182495,-0.0202637,-0.0643921,-0.111328,-0.159515,-0.200684,-0.238708,-0.266937,-0.29126,-0.315887,-0.339752,-0.360962,-0.376556,-0.389191,-0.401642,-0.413177,-0.423157,-0.427856,-0.427216,-0.418945,-0.400391,-0.37796,-0.352081,-0.329926,-0.3078,-0.282227,-0.251495,-0.222656,-0.201599,-0.189117,-0.181488,-0.181641,-0.188812,-0.203003,-0.224518,-0.236206,-0.229828,-0.205048,-0.149841,-0.0645447,0.0491028,0.189301,0.345215,0.503784,0.64566,0.757935,0.831207,0.858032,0.841339,0.771179,0.659088,0.519989,0.374512,0.239349,0.122864,0.042572,0.00857544,0.0166931,0.0581665,0.120514,0.195068,0.272095,0.332886,0.361267,0.346313,0.293121,0.212982,0.112732,0.00360107,-0.112732,-0.212982,-0.28067,-0.301392,-0.282684,-0.239655,-0.17868,-0.108521,-0.0352478,0.0235291,0.0525513,0.0489502,0.0162048,-0.042572,-0.12381,-0.21347,-0.308258,-0.399475,-0.474945,-0.528717,-0.555389,-0.555847,-0.532471,-0.501129,-0.464325,-0.424561,-0.383087,-0.345215,-0.308411,-0.274414,-0.247437,-0.216583,-0.177277,-0.128021,-0.0728149,-0.0188599,0.0319519,0.090271,0.154358,0.222961,0.281738,0.327423,0.363129,0.391052,0.409454,0.416931,0.41037,0.395416,0.378876,0.360016,0.336151,0.318085,0.300446,0.286102,0.272552,0.265228,0.269135,0.268799,0.265839,0.258362,0.249176,0.233093,0.209869,0.184753,0.160431,0.141113,0.128174,0.121918,0.118805,0.108521,0.0947876,0.0840454,0.0704651,0.0438232,0.00622559,-0.0344543,-0.0757751,-0.121155,-0.167297,-0.211884,-0.255554,-0.295319,-0.328827,-0.355499,-0.379517,-0.400574,-0.414429,-0.415375,-0.412109,-0.403046,-0.390259,-0.376404,-0.358612,-0.342865,-0.330566,-0.317291,-0.29953,-0.277069,-0.25415,-0.234985,-0.217041,-0.199432,-0.172607,-0.145325,-0.131287,-0.129883,-0.133453,-0.134705,-0.136597,-0.152191,-0.168396,-0.17337,-0.169006,-0.144684,-0.0952759,-0.0190125,0.0887146,0.219391,0.375916,0.529358,0.654724,0.748413,0.811737,0.838379,0.814209,0.738922,0.629456,0.49411,0.350189,0.213623,0.100403,0.0244751,-0.00827026,-0.00390625,0.0336914,0.0985413,0.168854,0.233734,0.270996,0.280487,0.263031,0.216583,0.141418,0.0374146,-0.0809326,-0.191315,-0.274414,-0.322906,-0.339905,-0.320892,-0.272705,-0.203644,-0.133789,-0.0603333,0.00390625,0.0358582,0.0322876,-0.000457764,-0.053009,-0.122253,-0.205963,-0.289246,-0.367188,-0.434387,-0.480225,-0.496918,-0.491455,-0.470581,-0.440948,-0.407745,-0.370941,-0.333679,-0.296082,-0.263184,-0.233246,-0.199432,-0.164032,-0.12085,-0.0715637,-0.0223083,0.0282288,0.0884094,0.153107,0.21579,0.268646,0.312317,0.348785,0.376709,0.399017,0.407745,0.408661,0.397125,0.378876,0.363281,0.345215,0.320099,0.295166,0.276459,0.26413,0.25415,0.243561,0.229828,0.217987,0.215637,0.217651,0.210663,0.18866,0.164978,0.145325,0.131287,0.121918,0.117889,0.118958,0.118958,0.111633,0.0997925,0.083252,0.0592651,0.0296326,-0.00561523,-0.0497437,-0.107422,-0.16684,-0.215485,-0.255249,-0.292816,-0.32666,-0.350525,-0.360962,-0.367035,-0.373596,-0.376709,-0.375763,-0.368744,-0.35611,-0.341614,-0.333832,-0.324615,-0.309204,-0.287048,-0.265381,-0.244781,-0.221405,-0.192413,-0.161377,-0.128326,-0.094635,-0.0654907,-0.0424194,-0.0263367,-0.0223083,-0.0252686,-0.0368042,-0.0569153,-0.08078,-0.111176,-0.139709,-0.165436,-0.177124,-0.181946,-0.179321,-0.160431,-0.120697,-0.0456848,0.0614319,0.18634,0.333832,0.489746,0.62619,0.727692,0.793945,0.822021,0.811584,0.755737,0.654083,0.523285,0.374512,0.222809,0.0854492,-0.0157471,-0.0805969,-0.104156,-0.0856018,-0.043335,0.00967407,0.0692139,0.118347,0.146423,0.147034,0.110718,0.0436707,-0.0489502,-0.148895,-0.240906,-0.322449,-0.377808,-0.397766,-0.375305,-0.320251,-0.243073,-0.148285,-0.0552063,0.0274353,0.0877686,0.105255,0.0954285,0.0612793,0.00234985,-0.0676575,-0.146423,-0.224365,-0.29953,-0.358307,-0.392151,-0.405701,-0.399323,-0.375916,-0.345978,-0.31308,-0.279724,-0.25058,-0.230286,-0.211426,-0.18399,-0.151703,-0.113678,-0.0714111,-0.0229187,0.033844,0.0974426,0.163727,0.228577,0.290161,0.341949,0.379364,0.404785,0.418945,0.418182,0.409302,0.396973,0.378876,0.357513,0.335388,0.310272,0.286102,0.260864,0.234802,0.204407,0.174469,0.147491,0.117554,0.0909119,0.0689087,0.0492859,0.0330505,0.0157471,0.00842285,0.0126343,0.0224609,0.0358582,0.0531616,0.0698547,0.08078,0.0823364,0.0736084,0.0562744,0.0332031,0.0015564,-0.0358582,-0.078125,-0.122559,-0.160431,-0.192108,-0.22171,-0.244476,-0.26178,-0.273956,-0.28363,-0.295319,-0.304047,-0.307159,-0.312012,-0.31543,-0.314972,-0.308105,-0.297028,-0.286896,-0.267883,-0.239807,-0.210022,-0.178375,-0.141876,-0.101807,-0.0629883,-0.0269775,0.00201416,0.0257263,0.0411682,0.0506592,0.0522461,0.050354,0.0462952,0.0346069,0.0196533,0.00717163,-0.00967407,-0.0307312,-0.0513,-0.0709534,-0.0818481,-0.0932312,-0.101959,-0.101044,-0.0955811,-0.0845032,-0.0645447,-0.0243225,0.0458374,0.141876,0.251343,0.362976,0.465271,0.548218,0.6073,0.638641,0.636932,0.59671,0.51767,0.409607,0.280182,0.142212,0.0093689,-0.101349,-0.174164,-0.208466,-0.212067,-0.192566,-0.156067,-0.104004,-0.0586243,-0.0275879,-0.013092,-0.0177612,-0.0427246,-0.0874634,-0.141724,-0.193817,-0.240112,-0.26474,-0.262268,-0.236542,-0.190216,-0.127686,-0.050354,0.0274353,0.0916748,0.135956,0.149384,0.133453,0.0952759,0.0447388,-0.0138855,-0.0743713,-0.134705,-0.188507,-0.22937,-0.256958,-0.265686,-0.258057,-0.237457,-0.215332,-0.194916,-0.176025,-0.160919,-0.153259,-0.146576,-0.131134,-0.106323,-0.0742188,-0.0357056,0.0121765,0.0697021,0.128784,0.189301,0.247131,0.299988,0.347229,0.381683,0.396027,0.392761,0.377472,0.356293,0.325104,0.286591,0.240906,0.189606,0.141724,0.0997925,0.0684509,0.0424194,0.0224609,0.00952148,0.00375366,-0.00250244,-0.00982666,-0.0133972,-0.0124817,-0.00778198,-0.00811768,-0.00762939,-0.00686646,-0.00326538,0.0090332,0.0291443,0.0458374,0.0569153,0.0608215,0.0648499,0.0700073,0.0671997,0.0517578,0.0317993,0.00656128,-0.0213623,-0.0525513,-0.088562,-0.126129,-0.159515,-0.18866,-0.212372,-0.235291,-0.256653,-0.270538,-0.278931,-0.280029,-0.27536,-0.265533,-0.25354,-0.235748,-0.211884,-0.190857,-0.165588,-0.135803,-0.1026,-0.0659485,-0.0282288,0.00732422,0.0363159,0.0609741,0.081543,0.0935669,0.100739,0.102753,0.0949707,0.0826416,0.0684509,0.0487976,0.0296326,0.0135803,0.00219727,-0.00125122,-0.00234985,-0.0093689,-0.0205688,-0.0325928,-0.0424194,-0.0489502,-0.0502014,-0.0559692,-0.0726624,-0.0947876,-0.110718,-0.12677,-0.144684,-0.157471,-0.160126,-0.149231,-0.120056,-0.0689087,-0.000793457,0.0896606,0.200195,0.310913,0.405396,0.475708,0.520782,0.536682,0.51236,0.443909,0.343018,0.222198,0.082489,-0.0570679,-0.17572,-0.271301,-0.331329,-0.34491,-0.319336,-0.2724,-0.204895,-0.13208,-0.0609741,0.00671387,0.0569153,0.076416,0.0595703,0.0293274,-0.00778198,-0.0489502,-0.0838928,-0.0971375,-0.0895081,-0.0684509,-0.0269775,0.0319519,0.0980835,0.15921,0.20752,0.232635,0.235901,0.218597,0.173065,0.113831,0.0506592,-0.0201111,-0.0882568,-0.143127,-0.183197,-0.215027,-0.229675,-0.227814,-0.219849,-0.209076,-0.200043,-0.190857,-0.184143,-0.176178,-0.159363,-0.134552,-0.0993347,-0.0506592,0.00296021,0.0622253,0.128326,0.192566,0.249634,0.293762,0.323059,0.334778,0.321991,0.292969,0.249329,0.198334,0.14502,0.0961914,0.0494385,0.00686646,-0.0313416,-0.0534668,-0.0620422,-0.0604858,-0.0572205,-0.0522461,-0.046936,-0.0407104,-0.0339966,-0.0280762,-0.0226135,-0.0162048,-0.00515747,0.00576782,0.0229187,0.0472412,0.0742188,0.106323,0.138,0.160767,0.17215,0.176666,0.17511,0.164337,0.146088,0.120056,0.0849915,0.040863,-0.00637817,-0.0494385,-0.0913696,-0.130676,-0.161072,-0.184601,-0.203644,-0.217987,-0.222961,-0.22345,-0.217987,-0.214233,-0.209717,-0.200348,-0.189301,-0.174316,-0.153748,-0.129272,-0.0997925,-0.069397,-0.0366516,-0.00405884,0.0261841,0.0534668,0.0778198,0.0980835,0.108215,0.106659,0.0949707,0.0774841,0.0569153,0.0357056,0.00918579,-0.0198059,-0.0470886,-0.0695496,-0.0856018,-0.0985413,-0.106964,-0.108063,-0.108673,-0.104004,-0.0932312,-0.0791931,-0.0626831,-0.0502014,-0.0347595,-0.0180969,-0.000152588,0.0173035,0.0339966,0.0481873,0.0564575,0.0544128,0.0483398,0.041626,0.0366516,0.0257263,0.00842285,-0.0121765,-0.0347595,-0.0558167,-0.0742188,-0.0896606,-0.111633,-0.139404,-0.160919,-0.164978,-0.146576,-0.112427,-0.063446,0.00250244,0.0739136,0.138916,0.190704,0.227966,0.257904,0.267883,0.25354,0.216431,0.15921,0.081543,-0.000457764,-0.0654907,-0.109772,-0.133942,-0.134705,-0.121307,-0.0940247,-0.0508423,-0.00561523,0.035553,0.0712585,0.0955811,0.0957336,0.0732727,0.040863,0.010437,-0.0177612,-0.0389709,-0.0481873,-0.0430298,-0.0305481,-0.00280762,0.0371094,0.0816956,0.118652,0.141266,0.150146,0.149384,0.135345,0.110229,0.08078,0.0536499,0.0232239,-0.0090332,-0.0314941,-0.0455322,-0.0522461,-0.0561218,-0.0545654,-0.0481873,-0.0462952,-0.0484924,-0.0541077,-0.0592651,-0.0628357,-0.0620422,-0.0545654,-0.0419312,-0.0219727,-0.00375366,0.0138855,0.0314941,0.0497437,0.0684509,0.0840454,0.096344,0.101654,0.0974426,0.0837402,0.0697021,0.0604858,0.0517578,0.0444336,0.0343018,0.0219727,0.010437,0.00421143,-0.00280762,-0.00982666,-0.0101318,-0.00671387,-0.00436401,-0.0045166,-0.00592041,-0.00405884,0.00515747,0.0146484,0.0230713,0.0283813,0.0305481,0.0352478,0.0417786,0.0467834,0.0473938,0.0438232,0.0383606,0.0352478,0.0336914,0.0291443,0.0249329,0.0224609,0.0155945,0.00405884,-0.00888062,-0.0219727,-0.035553,-0.0473938,-0.0595703,-0.0717163,-0.0843506,-0.0951233,-0.0966797,-0.0909119,-0.0852966,-0.0760803,-0.0654907,-0.0511475,-0.036499,-0.0271301,-0.0188599,-0.0093689,-0.000610352,0.00360107,0.0045166,0.00482178,0.00405884,0.00125122,-0.00265503,-0.00732422,-0.00888062,-0.0105896,-0.0090332,-0.00546265,-0.00219727,0.00250244,0.00466919,0.00250244,-0.00360107,-0.0105896,-0.0177612,-0.0271301,-0.0371094,-0.0480347,-0.0595703,-0.0706177,-0.0760803,-0.07547,-0.0695496,-0.0576782,-0.0413208,-0.0299377,-0.0195007,-0.0105896,-0.00546265,-0.00778198,-0.0141907,-0.0215149,-0.0328979,-0.0455322,-0.0609741,-0.07547,-0.0843506,-0.0909119,-0.101959,-0.11087,-0.11615,-0.124115,-0.126617,-0.124115,-0.126465,-0.136597,-0.152191,-0.168243,-0.17807,-0.185699,-0.190063,-0.194275,-0.195221,-0.179474,-0.150787,-0.105408,-0.0481873,0.0173035,0.0879517,0.155304,0.215332,0.262726,0.292206,0.297974,0.287354,0.262115,0.223114,0.168854,0.120056,0.0778198,0.0427246,0.0177612,0.00576782,0.00811768,0.0190125,0.0386658,0.0629883,0.088562,0.106018,0.114441,0.114746,0.118195,0.120056,0.118042,0.115082,0.122253,0.132233,0.141113,0.154999,0.16745,0.174316,0.175262,0.172607,0.157623,0.131134,0.0958862,0.0595703,0.0218201,-0.0149536,-0.0505066,-0.08078,-0.105103,-0.12146,-0.129089,-0.13736,-0.146576,-0.149689,-0.152344,-0.157166,-0.159515,-0.157623,-0.156555,-0.151245,-0.136444,-0.118652,-0.0985413,-0.0731201,-0.0455322,-0.0155945,0.00811768,0.025116,0.0361633,0.0445862,0.0517578,0.0480347,0.0394592,0.0289917,0.0174561,0.00201416,-0.0102844,-0.0188599,-0.0261841,-0.0346069,-0.037262,-0.0366516,-0.0346069,-0.0280762,-0.0188599,-0.00872803,-0.000152588,0.00997925,0.0249329,0.0452271,0.065033,0.0804443,0.0977478,0.114288,0.129089,0.143921,0.158722,0.171356,0.179779,0.182129,0.176178,0.16449,0.150299,0.131439,0.110718,0.0865479,0.0622253,0.0363159,0.0152893,-0.00201416,-0.0177612,-0.02948,-0.0394592,-0.0453796,-0.0483398,-0.0467834,-0.0480347,-0.0494385,-0.0506592,-0.0525513,-0.0539551,-0.053009,-0.0492859,-0.0473938,-0.0427246,-0.0366516,-0.0327454,-0.0300903,-0.0274353,-0.0263367,-0.0271301,-0.0322876,-0.0397644,-0.0487976,-0.0625305,-0.0743713,-0.0848083,-0.091217,-0.0999451,-0.104614,-0.106171,-0.107574,-0.107117,-0.100739,-0.0949707,-0.0873108,-0.0820007,-0.0746765,-0.0639343,-0.054718,-0.0448914,-0.0336914,-0.0244751,-0.0138855,-0.00497437,0.00466919,0.0116882,0.0157471,0.0166931,0.0188599,0.0199585,0.0198059,0.0184021,0.0113831,0.00296021,-0.00561523,-0.0121765,-0.0204163,-0.026825,-0.0328979,-0.0377197,-0.0427246,-0.0467834,-0.0480347,-0.0481873,-0.0444336,-0.0422668,-0.0391235,-0.0402222,-0.0413208,-0.0434875,-0.0455322,-0.0483398,-0.047699,-0.04599,-0.0467834,-0.0498962,-0.0536499,-0.0542603,-0.050354,-0.0478821,-0.0500488,-0.0522461,-0.0612793,-0.0708008,-0.0834045,-0.0969849,-0.110382,-0.124573,-0.140472,-0.153595,-0.16217,-0.162476,-0.148285,-0.123016,-0.0895081,-0.0472412,-0.00234985,0.041626,0.0765686,0.108978,0.138611,0.157471,0.169952,0.166046,0.152649,0.135345,0.116302,0.104156,0.102753,0.105103,0.10791,0.111786,0.115845,0.122253,0.127533,0.12738,0.124115,0.110229,0.0952759,0.0812378,0.0662537,0.053009,0.0506592,0.057373,0.0670471,0.0809326,0.094635,0.105255,0.112885,0.118805,0.11911,0.111023,0.100403,0.0830994,0.0609741,0.0444336,0.0313416,0.0235291,0.0238647,0.0254211,0.0205688,0.0155945,0.00967407,0,-0.0109253,-0.0233765,-0.0383606,-0.0567627,-0.0728149,-0.0846558,-0.0969849,-0.103058,-0.1026,-0.0927734,-0.0776367,-0.0603333,-0.0439758,-0.0289917,-0.0126343,0.0015564,0.0119934,0.0213623,0.0283813,0.0316467,0.0313416,0.0285339,0.0275879,0.0299377,0.0297852,0.0271301,0.0227661,0.0177612,0.0160522,0.0151367,0.0165405,0.019165,0.0216675,0.0233765,0.0305481,0.035553,0.0400696,0.0472412,0.0539551,0.0586243,0.0597229,0.0609741,0.0642395,0.0679932,0.0732727,0.0770264,0.0762329,0.0726624,0.0709534,0.0690613,0.0657959,0.0580139,0.0478821,0.0377197,0.0272827,0.0166931,0.00637817,-0.00747681,-0.0180969,-0.0282288,-0.039917,-0.052063,-0.0608215,-0.0671997,-0.0667419,-0.0679932,-0.0686035,-0.069397,-0.0681458,-0.0632935,-0.0575256,-0.0525513,-0.0492859,-0.047699,-0.0466309,-0.0483398,-0.053009,-0.0578613,-0.0581665,-0.0597229,-0.0622253,-0.0622253,-0.0592651,-0.0550537,-0.0522461,-0.0498962,-0.0483398,-0.0462952,-0.0447388,-0.0427246,-0.0441284,-0.0452271,-0.0467834,-0.0458374,-0.0434875,-0.040863,-0.0375671,-0.0310364,-0.0229187,-0.0157471,-0.0093689,-0.00375366,0.00265503,0.00717163,0.00952148,0.0115356,0.00842285,0.00390625,-0.000305176,-0.00405884,-0.0093689,-0.0158997,-0.0233765,-0.0282288,-0.0325928,-0.0322876,-0.0327454,-0.0317993,-0.0271301,-0.0221558,-0.0190125,-0.0149536,-0.0118408,-0.0109253,-0.0105896,-0.0124817,-0.0180969,-0.0232239,-0.0291443,-0.0319519,-0.0322876,-0.0305481,-0.0282288,-0.0283813,-0.0258789,-0.0229187,-0.0215149,-0.0202637,-0.0235291,-0.0324402,-0.0424194,-0.0539551,-0.0670471,-0.079834,-0.0921631,-0.10321,-0.111633,-0.117706,-0.116791,-0.113678,-0.111328,-0.107117,-0.100739,-0.0918274,-0.0813904,-0.0687561,-0.0601807,-0.0531616,-0.0489502,-0.0430298,-0.0377197,-0.0296326,-0.0176086,-0.00561523,0.00515747,0.0171509,0.02948,0.0400696,0.0572205,0.0732727,0.0843506,0.0909119,0.0910645,0.0890198,0.0891724,0.085907,0.0793762,0.073761,0.0720215,0.0712585,0.0734253,0.0809326,0.0887146,0.098999,0.110718,0.120209,0.12442,0.131134,0.134552,0.131592,0.131897,0.130981,0.125061,0.118805,0.113831,0.111176,0.106659,0.103851,0.101959,0.0983887,0.094635,0.0909119,0.0810852,0.0709534,0.0625305,0.0506592,0.0377197,0.0235291,0.013092,0.00311279,-0.00234985,-0.00561523,-0.00997925,-0.0152893,-0.019165,-0.0212097,-0.0246277,-0.0261841,-0.02948,-0.0347595,-0.0379028,-0.0385132,-0.0380554,-0.0383606,-0.0363159,-0.0308838,-0.0272827,-0.0230713,-0.0188599,-0.0133972,-0.010437,-0.00811768,-0.00747681,-0.00717163,-0.00717163,-0.010437,-0.0127869,-0.0165405,-0.0169983,-0.0137329,-0.00952148,-0.00421143,0.00125122,0.00701904,0.0132446,0.0198059,0.0230713,0.0275879,0.0317993,0.0314941,0.0310364,0.0282288,0.0257263,0.0227661,0.0215149,0.0237122,0.0230713,0.0210571,0.0218201,0.0219727,0.0221558,0.0221558,0.0193481,0.013092,0.00390625,-0.00561523,-0.0157471,-0.0232239,-0.0274353,-0.0316467,-0.0360107,-0.0377197,-0.0357056,-0.0330505,-0.0266724,-0.0235291,-0.0202637,-0.0195007,-0.0212097,-0.0235291,-0.0277405,-0.0339966,-0.043335,-0.0519104,-0.0562744,-0.0555115,-0.0534668,-0.0494385,-0.0447388,-0.0410156,-0.0360107,-0.0299377,-0.0282288,-0.0282288,-0.0277405,-0.0286865,-0.0324402,-0.0383606,-0.0447388,-0.0525513,-0.059082,-0.0600281,-0.057373,-0.0533142,-0.0464783,-0.0383606,-0.0299377,-0.0218201,-0.0133972,-0.00762939,-0.00405884,-0.00201416,-0.00421143,-0.00747681,-0.0146484,-0.0218201,-0.0285339,-0.0369568,-0.042572,-0.0494385,-0.0564575,-0.0592651,-0.0586243,-0.0545654,-0.0514526,-0.0489502,-0.046936,-0.0448914,-0.0400696,-0.037262,-0.0366516,-0.031189,-0.0243225,-0.0190125,-0.0124817,-0.0115356,-0.0132446,-0.0149536,-0.0154419,-0.013092,-0.0140381,-0.0168457,-0.0179443,-0.0199585,-0.0168457,-0.0141907,-0.0121765,-0.0102844,-0.00982666,-0.0105896,-0.0102844,-0.00982666,-0.00967407,-0.0090332,-0.0143433,-0.0223083,-0.0333557,-0.0438232,-0.0478821,-0.0492859,-0.048645,-0.0475464,-0.044281,-0.0349121,-0.0252686,-0.0143433,-0.0045166,0.000793457,0.00656128,0.0127869,0.0198059,0.0252686,0.0280762,0.0274353,0.0285339,0.0285339,0.0274353,0.0257263,0.0254211,0.0261841,0.0238647,0.0230713,0.0241699,0.0243225,0.0227661,0.0227661,0.0272827,0.0300903,0.0319519,0.0352478,0.0403748,0.044281,0.0478821,0.0502014,0.0519104,0.0494385,0.0464783,0.0453796,0.043335,0.0407104,0.0427246,0.0462952,0.0514526,0.0544128,0.0569153,0.0601807,0.0615845,0.0628357,0.0642395,0.0632935,0.0611267,0.0576782,0.0536499,0.0509949,0.0453796,0.041626,0.0405273,0.0366516,0.0310364,0.025116,0.0223083,0.0196533,0.0185547,0.0190125,0.0188599,0.0188599,0.0209045,0.0258789,0.02948,0.0330505,0.036499,0.041626,0.044281,0.042572,0.0383606,0.0330505,0.0252686,0.0174561,0.00982666,0.00360107,0.000152588,-0.00219727,-0.000610352,0.00360107,0.00888062,0.0129395,0.0158997,0.019165,0.0215149,0.0255737,0.0300903,0.0327454,0.031189,0.0289917,0.0263367,0.0232239,0.0201111,0.0174561,0.0140381,0.0093689,0.00717163,0.00622559,0.00796509,0.0112305,0.0123291,0.0143433,0.0160522,0.0166931,0.0155945,0.0149536,0.0144958,0.0126343,0.00747681,0.00234985,-0.00375366,-0.00762939,-0.0105896,-0.0121765,-0.0127869,-0.0118408,-0.0121765,-0.010437,-0.00888062,-0.00747681,-0.00701904,-0.00796509,-0.0118408,-0.0149536,-0.0146484,-0.0149536,-0.0151367,-0.0151367,-0.0140381,-0.0126343,-0.0115356,-0.010437,-0.0109253,-0.0141907,-0.0182495,-0.0209045,-0.0223083,-0.0254211,-0.0283813,-0.0291443,-0.0271301,-0.026825,-0.0258789,-0.0255737,-0.0246277,-0.0246277,-0.0230713,-0.0218201,-0.0209045,-0.0227661,-0.0258789,-0.0285339,-0.0317993,-0.0346069,-0.036499,-0.0374146,-0.0394592,-0.0413208,-0.043335,-0.0452271,-0.0453796,-0.0450745,-0.0444336,-0.0431824,-0.0419312,-0.0410156,-0.0403748,-0.0371094,-0.0347595,-0.0314941,-0.0271301,-0.025116,-0.0258789,-0.0283813,-0.0317993,-0.0330505,-0.0347595,-0.0336914,-0.0327454,-0.0325928,-0.0346069,-0.0360107,-0.0369568,-0.0349121,-0.033844,-0.0316467,-0.0289917,-0.0283813,-0.0279236,-0.02948,-0.0313416,-0.0325928,-0.033844,-0.0344543,-0.0325928,-0.0303955,-0.025116,-0.0187073,-0.0133972,-0.00497437,0.00109863,0.00717163,0.0110779,0.0121765,0.0115356,0.0105896,0.00918579,0.00701904,0.00405884,0.000305176,-0.00360107,-0.00732422,-0.006073,-0.00219727,0.00170898,0.00531006,0.00857544,0.0137329,0.0215149,0.0293274,0.0377197,0.044281,0.0473938,0.0497437,0.0500488,0.0506592,0.0519104,0.048645,0.0438232,0.036499,0.0299377,0.0238647,0.0177612,0.0123291,0.00778198,0.00622559,0.00515747,0.00497437,0.00778198,0.00827026,0.0119934,0.0158997,0.0210571,0.0229187,0.0227661,0.0157471,0.0090332,0.00497437,0.000457764,-0.00375366,-0.00982666,-0.0149536,-0.0188599,-0.0212097,-0.0227661,-0.0204163,-0.0157471,-0.0107727,-0.00546265,-0.0015564,0.00466919,0.00888062,0.0126343,0.0127869,0.0110779,0.00827026,0.00466919,-0.000305176,-0.00717163,-0.0132446,-0.0163574,-0.0169983,-0.0141907,-0.0127869,-0.010437,-0.00701904,-0.000793457,0.00576782,0.0105896,0.0137329,0.0154419,0.0176086,0.0158997,0.0146484,0.0133972,0.013092,0.0155945,0.0171509,0.0196533,0.0213623,0.0227661,0.0266724,0.0305481,0.0336914,0.0350952,0.0336914,0.0322876,0.0280762,0.0221558,0.0177612,0.0143433,0.0113831,0.00747681,0.00234985,-0.00311279,-0.006073,-0.00918579,-0.0121765,-0.0149536,-0.0193481,-0.0233765,-0.0274353,-0.0317993,-0.0352478,-0.0383606,-0.0403748,-0.0403748,-0.0394592,-0.0371094,-0.031189,-0.0241699,-0.0160522,-0.0112305,-0.00656128,-0.00280762,0.000793457,0.00109863,-0.000793457,-0.00360107,-0.00857544,-0.0140381,-0.0190125,-0.0238647,-0.02948,-0.0333557,-0.0339966,-0.0313416,-0.0282288,-0.025116,-0.0209045,-0.0149536,-0.0102844,-0.00717163,-0.00421143,-0.00296021,-0.00390625,-0.00576782,-0.00732422,-0.00717163,-0.00872803,-0.010437,-0.0119934,-0.0109253,-0.00982666,-0.006073,-0.00125122,0.0015564,0.00375366,0.00656128,0.010437,0.013092,0.0144958,0.0126343,0.0090332,0.00482178,0.00265503,-0.00125122,-0.00576782,-0.0141907,-0.0230713,-0.0305481,-0.0360107,-0.041626,-0.0428772,-0.041626,-0.0388184,-0.0371094,-0.0347595,-0.0297852,-0.0247803,-0.0198059,-0.0179443,-0.0179443,-0.0166931,-0.0176086,-0.0188599,-0.0226135,-0.0286865,-0.0322876,-0.0352478,-0.0350952,-0.035553,-0.0358582,-0.0385132,-0.0393066,-0.0379028,-0.0344543,-0.031189,-0.0299377,-0.0265198,-0.0221558,-0.0169983,-0.0118408,-0.00686646,-0.00201416,0.0015564,0.00311279,0.00515747,0.00717163,0.00857544,0.0110779,0.010437,0.00967407,0.00952148,0.0115356,0.0163574,0.0210571,0.0238647,0.0241699,0.0254211,0.0275879,0.0321045,0.033844,0.0327454,0.0280762,0.0235291,0.0201111,0.0160522,0.0129395,0.00967407,0.0102844,0.0113831,0.0154419,0.0199585,0.0244751,0.0310364,0.0374146,0.0450745,0.0516052,0.0587769,0.0656433,0.0686035,0.069397,0.0664368,0.0622253,0.0572205,0.0536499,0.0517578,0.0483398,0.0448914,0.039917,0.0383606,0.0377197,0.0394592,0.0413208,0.0441284,0.0462952,0.052063,0.0556641,0.0580139,0.0575256,0.0541077,0.0511475,0.0491028,0.0455322,0.0400696,0.0325928,0.0244751,0.0177612,0.0146484,0.0151367,0.0163574,0.0176086,0.0174561,0.0182495,0.0185547,0.0215149,0.0241699,0.0257263,0.0254211,0.0241699,0.0210571,0.019165,0.0160522,0.0138855,0.0151367,0.0174561,0.0199585,0.0243225,0.0261841,0.0274353,0.0282288,0.0266724,0.0227661,0.0198059,0.0152893,0.00997925,0.00326538,-0.00421143,-0.0102844,-0.013092,-0.0141907,-0.0152893,-0.0157471,-0.0154419,-0.0149536,-0.0113831,-0.00857544,-0.00717163,-0.00592041,-0.00421143,-0.00280762,-0.00311279,-0.00170898,-0.00125122,0.000152588,0.00280762,0.0045166,0.00546265,0.00637817,0.00796509,0.00872803,0.0090332,0.00622559,0.00250244,-0.000946045,-0.00326538,-0.00671387,-0.0093689,-0.0137329,-0.0201111,-0.0246277,-0.0280762,-0.0308838,-0.0335083,-0.0352478,-0.0349121,-0.0325928,-0.02948,-0.0257263,-0.0243225,-0.0226135,-0.0215149,-0.020752,-0.0221558,-0.0240173,-0.0246277,-0.0255737,-0.025116,-0.0261841,-0.0261841,-0.0243225,-0.0209045,-0.0184021,-0.0158997,-0.0162048,-0.0155945,-0.0155945,-0.0141907,-0.014801,-0.0158997,-0.0184021,-0.0216675,-0.0226135,-0.0221558,-0.0205688,-0.0199585,-0.0201111,-0.0188599,-0.0162048,-0.014801,-0.0162048,-0.0173035,-0.0187073,-0.0174561,-0.0173035,-0.0174561,-0.0177612,-0.0168457,-0.0176086,-0.0190125,-0.0190125,-0.0177612,-0.0160522,-0.0155945,-0.0171509,-0.0179443,-0.0195007,-0.0196533,-0.0227661,-0.025116,-0.0266724,-0.0258789,-0.0246277,-0.0249329,-0.0258789,-0.0258789,-0.0226135,-0.0188599,-0.0160522,-0.0144958,-0.0135803,-0.0124817,-0.0112305,-0.0138855,-0.0165405,-0.0179443,-0.0187073,-0.0213623,-0.0265198,-0.031189,-0.0336914,-0.0328979,-0.0316467,-0.0317993,-0.0307312,-0.0289917,-0.0249329,-0.0213623,-0.0204163,-0.0218201,-0.0254211,-0.0254211,-0.0235291,-0.0196533,-0.0199585,-0.0219727,-0.0244751,-0.0218201,-0.0184021,-0.0174561,-0.0185547,-0.0205688,-0.0185547,-0.0137329,-0.00827026,-0.00436401,-0.00405884,-0.00170898,-0.000305176,0.0015564,0.00140381,0.00125122,0.000152588,-0.00311279,-0.00576782,-0.00827026,-0.0112305,-0.0126343,-0.0116882,-0.00857544,-0.00515747,-0.00360107,-0.00341797,-0.00405884,-0.00296021,0.00140381,0.00531006,0.00497437,0.000152588,-0.00280762,0,0.0045166,0.00531006,0.00109863,-0.000946045,0.00341797,0.00888062,0.0105896,0.006073,0.00326538,0.00531006,0.0110779,0.0135803,0.00952148,0.00405884,0.00140381,0.00360107,0.00466919,0.00234985,-0.00219727,-0.00531006,-0.00732422,-0.00778198,-0.00762939,-0.00686646,-0.00811768,-0.00747681,-0.00717163,-0.00671387,-0.00421143,-0.000152588,0.00421143,0.00546265,0.00360107,0.00421143,0.00576782,0.006073,0.00390625,0.00265503,0.000793457,0.00265503,0.00497437,0.00888062,0.00918579,0.0093689,0.00982666,0.00857544,0.0107727,0.0116882,0.00918579,0.00888062,0.00872803,0.0116882,0.014801,0.0184021,0.0198059,0.0210571,0.0221558,0.0249329,0.0265198,0.0263367,0.0271301,0.0241699,0.0199585,0.0157471,0.0119934,0.010437,0.00796509,0.006073,0.00827026,0.0102844,0.0154419,0.0187073,0.0232239,0.0272827,0.0277405,0.0269775,0.0246277,0.0223083,0.0204163,0.0179443,0.0165405,0.0137329,0.0109253,0.00842285,0.00762939,0.00515747,0.00219727,0.0015564,0.00250244,0.00482178,0.00390625,0.00170898,0.00170898,0.00436401,0.00796509,0.00827026,0.00390625,0.000610352,-0.00326538,-0.00421143,-0.00405884,-0.00482178,-0.00796509,-0.0115356,-0.0126343,-0.0123291,-0.0126343,-0.0152893,-0.0133972,-0.00967407,-0.00421143,-0.000610352,0.00140381,0.00170898,0.00201416,0.00405884,0.00747681,0.00827026,0.00857544,0.00982666,0.0127869,0.0127869,0.00918579,0.00656128,0.00671387,0.00872803,0.00762939,0.00622559,0.00515747,0.00482178,0.00296021,0.00326538,0.00311279,0.000946045,-0.00280762,-0.00466919,-0.00436401,-0.00546265,-0.00747681,-0.00888062,-0.00515747,-0.00170898,0.000457764,0.00375366,0.00762939,0.0102844,0.00997925,0.00982666,0.0115356,0.0119934,0.0126343,0.0135803,0.0133972,0.0132446,0.00952148,0.00762939,0.00686646,0.00686646,0.00637817,0.00622559,0.00436401,0.00219727,0.00109863,0.00186157,0.00140381,-0.000305176,-0.00436401,-0.00637817,-0.00466919,-0.00296021,-0.00234985,-0.00326538,-0.00375366,-0.00234985,-0.000152588,0.00280762,0.00482178,0.00656128,0.00546265,0.00747681,0.00857544,0.00701904,0.00531006,0.00265503,0.0045166,0.00686646,0.00811768,0.010437,0.0127869,0.0146484,0.0163574,0.0198059,0.0223083,0.0229187,0.0224609,0.0232239,0.0223083,0.0202637,0.0166931,0.0129395,0.0121765,0.0110779,0.00967407,0.00872803,0.00515747,0.00234985,0.000946045,0,-0.000457764,-0.00265503,-0.00405884,-0.00497437,-0.00686646,-0.00952148,-0.0107727,-0.00997925,-0.00827026,-0.00701904,-0.00561523,-0.00466919,-0.00250244,-0.000305176,0.00375366,0.00671387,0.0090332,0.0102844,0.0113831,0.0123291,0.0127869,0.0123291,0.0093689,0.00497437,0.00234985,0.00140381,-0.000152588,-0.00234985,-0.00592041,-0.00827026,-0.00701904,-0.00375366,-0.00341797,-0.00405884,-0.00622559,-0.00622559,-0.00656128,-0.00436401,-0.00482178,-0.00592041,-0.00778198,-0.00811768,-0.00701904,-0.00341797,0.000152588,0.00125122,0.00186157,0.006073,0.010437,0.0137329,0.014801,0.0121765,0.00872803,0.006073,0.00280762,-0.000610352,-0.00436401,-0.00842285,-0.0113831,-0.0173035,-0.0199585,-0.0204163,-0.0209045,-0.0212097,-0.0176086,-0.0129395,-0.00796509,-0.0045166,-0.00280762,-0.00125122,0.00421143,0.0093689,0.00997925,0.00686646,0.00436401,0.00341797,0.00375366,0.00515747,0.00360107,-0.000793457,-0.00201416,0.00201416,0.00296021,0.000152588,-0.00671387,-0.00997925,-0.00982666,-0.00967407,-0.0124817,-0.0179443,-0.025116,-0.0303955,-0.0325928,-0.0327454,-0.02948,-0.0300903,-0.0313416,-0.0299377,-0.0254211,-0.0193481,-0.0143433,-0.0101318,-0.00717163,-0.00622559,-0.00250244,0.000152588,0.00515747,0.00811768,0.0112305,0.0093689,0.00561523,0.00375366,0.000152588,-0.0015564,-0.00546265,-0.00857544,-0.0138855,-0.0182495,-0.0190125,-0.0187073,-0.0199585,-0.0195007,-0.0198059,-0.0179443,-0.0137329,-0.0102844,-0.0110779,-0.013092,-0.0146484,-0.0124817,-0.0112305,-0.00982666,-0.00982666,-0.00918579,-0.00811768,-0.00515747,-0.000305176,0.00341797,0.00546265,0.00717163,0.00982666,0.0124817,0.0137329,0.00827026,0.00311279,0.000152588,-0.00234985,-0.00515747,-0.00997925,-0.0126343,-0.0160522,-0.0198059,-0.0213623,-0.0196533,-0.0171509,-0.0155945,-0.0151367,-0.0151367,-0.0121765,-0.0090332,-0.00842285,-0.00561523,-0.00546265,-0.00576782,-0.00515747,-0.00341797,-0.00140381,-0.00296021,-0.00390625,-0.00326538,-0.00311279,-0.00421143,-0.00622559,-0.006073,-0.006073,-0.00592041,-0.00796509,-0.0110779,-0.0124817,-0.014801,-0.0146484,-0.0151367,-0.0149536,-0.0154419,-0.0141907,-0.0118408,-0.00857544,-0.00637817,-0.00360107,0,0.000152588,0.000946045,0.00311279,0.006073,0.00842285,0.00732422,0.00701904,0.00732422,0.00656128,0.00561523,0.00250244,0.000610352,0.000793457,-0.00125122,-0.00265503,-0.00390625,-0.00311279,-0.00311279,-0.00140381,-0.000793457,-0.000152588,0.000305176,0.000946045,0.00375366,0.00561523,0.00482178,0.00375366,0.00375366,0.00341797,0.00497437,0.00515747,0.00497437,0.00497437,0.00561523,0.0116882,0.0160522,0.0180969,0.0184021,0.0195007,0.0210571,0.0219727,0.020752,0.0185547,0.0157471,0.013092,0.00952148,0.00796509,0.00497437,0.000793457,-0.00170898,-0.00265503,-0.000793457,-0.00250244,-0.00201416,-0.00186157,-0.0015564,-0.00186157,-0.000793457,0.00170898,0.00219727,0.000152588,0.000793457,-0.000152588,0.00109863,0.00140381,0.00390625,0.006073,0.00686646,0.00778198,0.00888062,0.0123291,0.0129395,0.0135803,0.0123291,0.0112305,0.0113831,0.00827026,0.006073,0.00311279,0.00234985,0.0015564,-0.00140381,-0.00341797,-0.00436401,-0.00497437,-0.00360107,-0.00219727,-0.00436401,-0.00747681,-0.00778198,-0.00622559,-0.00311279,-0.00109863,-0.000305176,-0.000305176,0.0015564,0.00341797,0.00375366,0.00421143,0.00375366,0.00341797,0.00390625,0.0045166,0.00201416,-0.00360107,-0.00515747,-0.00375366,-0.00170898,-0.00250244,-0.00436401,-0.00497437,-0.00421143,-0.00296021,-0.00219727,-0.00311279,-0.00296021,-0.00341797,-0.00280762,-0.00280762,-0.00296021,-0.00405884,-0.00637817,-0.00436401,-0.00360107,-0.00296021,-0.0045166,-0.00686646,-0.00762939,-0.00701904,-0.00762939,-0.00827026,-0.0105896,-0.0127869,-0.0126343,-0.0110779,-0.00857544,-0.00686646,-0.00717163,-0.0045166,-0.00326538,-0.000305176,0.00296021,0.00421143,0.00341797,0.000793457,0.000610352,0.000152588,-0.000152588,-0.00250244,-0.00341797,-0.00561523,-0.00561523,-0.00375366,-0.0015564,-0.00125122,-0.00421143,-0.00436401,-0.00219727,-0.000610352,-0.000152588,-0.00140381,-0.00250244,-0.00436401,-0.00421143,-0.00360107,-0.00280762,-0.00296021,-0.00234985,-0.00219727,-0.00140381,0.00125122,0.00466919,0.00592041,0.00762939,0.00918579,0.00997925,0.0102844,0.0112305,0.0113831,0.00842285,0.00747681,0.00360107,0.00140381,0.000457764,0.000152588,-0.00265503,-0.00671387,-0.00982666,-0.00888062,-0.00686646,-0.00497437,-0.00576782,-0.00576782,-0.00390625,-0.0015564,-0.000946045,-0.000152588,0.00140381,0.00186157,0.00250244,0,-0.00201416,-0.00326538,-0.00201416,-0.00186157,-0.00311279,-0.00637817,-0.00827026,-0.00952148,-0.00842285,-0.00918579,-0.0109253,-0.0118408,-0.0105896,-0.00796509,-0.00436401,-0.00436401,-0.0045166,-0.006073,-0.00622559,-0.00421143,-0.00219727,0,0.000457764,-0.000457764,-0.00140381,-0.00125122,0.00125122,0.00265503,0.00341797,-0.000152588,-0.00219727,-0.00186157,-0.000610352,-0.00186157,-0.00576782,-0.00796509,-0.00827026,-0.00717163,-0.00592041,-0.00686646,-0.00827026,-0.00811768,-0.00546265,-0.00405884,-0.00311279,-0.00170898,0.00186157,0.00686646,0.0107727,0.00888062,0.00796509,0.00872803,0.0113831,0.010437,0.0090332,0.00762939,0.00888062,0.00747681,0.00561523,0.00311279,0.00326538,0.00311279,0.00360107,0.00497437,0.00497437,0.00234985,0.000457764,0.000610352,0.00341797,0.00296021,0.000946045,-0.000610352,-0.000946045,0.000457764,0.00201416,0.00140381,-0.000152588,0.000305176,0.00170898,0.00360107,0.00360107,0.00296021,0.00360107,0.00466919,0.00546265,0.00701904,0.00671387,0.00732422,0.00857544,0.0093689,0.00982666,0.00997925,0.00796509,0.00656128,0.00576782,0.00686646,0.00732422,0.00515747,0.00186157,0.000152588,-0.00109863,-0.00421143,-0.00701904,-0.00997925,-0.0105896,-0.0102844,-0.0118408,-0.010437,-0.00997925,-0.00637817,-0.00326538,-0.000457764,0.000946045,0.00219727,0.00466919,0.00857544,0.010437,0.0109253,0.00967407,0.00918579,0.00952148,0.0102844,0.0110779,0.0107727,0.00952148,0.00857544,0.00827026,0.00967407,0.00888062,0.00762939,0.00747681,0.00827026,0.00918579,0.00857544,0.00717163,0.00531006,0.00466919,0.00546265,0.0045166,0.00375366,0.00436401,0.00546265,0.006073,0.00531006,0.006073,0.00637817,0.00827026,0.00811768,0.00888062,0.00762939,0.00811768,0.00811768,0.00888062,0.0090332,0.00811768,0.00637817,0.00436401,0.00466919,0.00311279,0.00125122,-0.00186157,-0.00341797,-0.00140381,0,0.00170898,0.000457764,-0.000946045,-0.00140381,-0.000610352,-0.00170898,-0.00390625,-0.00622559,-0.00762939,-0.00732422,-0.00778198,-0.00701904,-0.00747681,-0.00592041,-0.00546265,-0.00576782,-0.00747681,-0.00796509,-0.00888062,-0.00888062,-0.00967407,-0.0110779,-0.0118408,-0.0119934,-0.013092,-0.0132446,-0.0129395,-0.00967407,-0.00747681,-0.00732422,-0.0090332,-0.00842285,-0.00827026,-0.00732422,-0.0090332,-0.00952148,-0.00967407,-0.00952148,-0.00967407,-0.00872803,-0.00671387,-0.00576782,-0.00515747,-0.00436401,-0.00140381,-0.000152588,0.000305176,0.000946045,0.000793457,0.0015564,0.000152588,-0.000946045,-0.00250244,-0.00482178,-0.00656128,-0.00842285,-0.0113831,-0.0132446,-0.0149536,-0.0140381,-0.0146484,-0.0140381,-0.0129395,-0.0101318,-0.00637817,-0.00497437,-0.00280762,-0.00125122,0,0.00140381,0.00311279,0.00311279,0.00186157,-0.00265503,-0.00421143,-0.00656128,-0.00778198,-0.00967407,-0.0121765,-0.0146484,-0.0141907,-0.0115356,-0.0109253,-0.00888062,-0.00778198,-0.006073,-0.00375366,-0.00234985,-0.00341797,-0.00546265,-0.00576782,-0.00531006,-0.00576782,-0.00686646,-0.00967407,-0.00952148,-0.00952148,-0.00796509,-0.00778198,-0.00656128,-0.00421143,-0.00125122,0.00201416,0.00360107,0.00531006,0.00576782,0.00637817,0.00546265,0.00497437,0.00296021,0.00109863,-0.0015564,-0.00296021,-0.00390625,-0.00466919,-0.00531006,-0.00671387,-0.00701904,-0.00701904,-0.00622559,-0.0045166,-0.00482178,-0.0045166,-0.00296021,-0.00170898,-0.00280762,-0.00296021,-0.00360107,-0.00250244,-0.00265503,-0.00125122,-0.0015564,-0.00186157,-0.00280762,-0.00341797,-0.00421143,-0.00311279,-0.00421143,-0.00497437,-0.00515747,-0.00671387,-0.00686646,-0.00686646,-0.00561523,-0.00515747,-0.0045166,-0.00546265,-0.00482178,-0.00234985,-0.00125122,0.000305176,0.000152588,-0.00125122,-0.00186157,-0.00296021,-0.00311279,-0.00531006,-0.00671387,-0.0090332,-0.0105896,-0.0115356,-0.0112305,-0.0109253,-0.010437,-0.00842285,-0.00546265,-0.00201416,0.00125122,0.00311279,0.00360107,0.00375366,0.00375366,0.0045166,0.00421143,0.00234985,0.000793457,0,-0.000946045,-0.000946045,-0.000457764,-0.00170898,-0.00125122,-0.0015564,0.00125122,0.00280762,0.00219727,0.00219727,0.00201416,0.00234985,0.00326538,0.00311279,0.00296021,0.00186157,0.000152588,-0.000457764,-0.000946045,-0.00109863,-0.000457764,-0.00125122,-0.000152588,0.000152588,0.00109863,0.00140381,0.00186157,0.00234985,0.00326538,0.00265503,0.00170898,0.000457764,-0.00140381,-0.00326538,-0.00546265,-0.00857544,-0.00967407,-0.0118408,-0.0124817,-0.0146484,-0.0157471,-0.0160522,-0.0137329,-0.0127869,-0.0123291,-0.0123291,-0.0101318,-0.00872803,-0.00686646,-0.006073,-0.00656128,-0.00842285,-0.0107727,-0.00967407,-0.00982666,-0.0107727,-0.0123291,-0.0129395,-0.013092,-0.0113831,-0.00982666,-0.00888062,-0.00778198,-0.00778198,-0.006073,-0.00375366,-0.0015564,-0.00170898,-0.00265503,-0.00405884,-0.00497437,-0.00622559,-0.00747681,-0.00872803,-0.010437,-0.0113831,-0.0137329,-0.0138855,-0.014801,-0.0138855,-0.0129395,-0.0123291,-0.010437,-0.00997925,-0.00762939,-0.00436401,-0.00265503,-0.000946045,0.0015564,0.00360107,0.00515747,0.00436401,0.00390625,0.00296021,0.00375366,0.00515747,0.00466919,0.00390625,0.00436401,0.00546265,0.0093689,0.013092,0.0165405,0.0195007,0.0229187,0.0243225,0.0280762,0.0296326,0.0310364,0.0324402,0.0317993,0.0316467,0.0308838,0.0302429,0.0303955,0.0314941,0.031189,0.0302429,0.0297852,0.0307312,0.0317993,0.0325928,0.0344543,0.0347595,0.0360107,0.035553,0.0343018,0.0344543,0.033844,0.0347595,0.035553,0.0358582,0.0352478,0.0347595,0.0352478,0.0366516,0.037262,0.0386658,0.037262,0.0371094,0.0358582,0.035553,0.0343018,0.0330505,0.0319519,0.02948,0.0266724,0.0249329,0.0235291,0.0212097,0.0199585,0.0179443,0.0162048,0.0158997,0.0146484,0.0133972,0.0118408,0.00888062,0.00888062,0.00671387,0.00405884,0.00250244,0.0015564,0.00186157,0.00280762,0.00234985,0.00280762,0.00250244,0.00296021,0.00360107,0.00515747,0.00497437,0.00546265,0.00375366,0.00296021,0.00201416,0.000457764,0.000305176,-0.00186157,-0.00326538,-0.00497437,-0.00637817,-0.00717163,-0.00747681,-0.00747681,-0.00811768,-0.00952148,-0.00997925,-0.00967407,-0.0102844,-0.0107727,-0.0118408,-0.0132446,-0.0137329,-0.0127869,-0.0126343,-0.0113831,-0.0107727,-0.0102844,-0.00997925,-0.00952148,-0.00982666,-0.00811768,-0.00796509,-0.00796509,-0.00857544,-0.00842285,-0.00872803,-0.00827026,-0.00796509,-0.00796509,-0.00827026,-0.00686646,-0.00717163,-0.00592041,-0.00671387,-0.00762939,-0.00888062,-0.00918579,-0.0102844,-0.0126343,-0.0151367,-0.0174561,-0.0193481,-0.0196533,-0.0205688,-0.0204163,-0.0204163,-0.0198059,-0.0185547,-0.0177612,-0.0165405,-0.0157471,-0.0157471,-0.0158997,-0.0163574,-0.0160522,-0.0155945,-0.0155945,-0.0149536,-0.0155945,-0.014801,-0.0133972,-0.0123291,-0.0107727,-0.0102844,-0.00872803,-0.00857544,-0.00827026,-0.0090332,-0.0109253,-0.0118408,-0.0132446,-0.0149536,-0.0173035,-0.0190125,-0.020752,-0.0216675,-0.0221558,-0.0221558,-0.0218201,-0.0212097,-0.0199585,-0.0188599,-0.0190125,-0.0190125,-0.0188599,-0.0177612,-0.0179443,-0.0188599,-0.0185547,-0.0193481,-0.0180969,-0.0182495,-0.0173035,-0.0171509,-0.0160522,-0.014801,-0.0135803,-0.0116882,-0.0107727,-0.00842285,-0.00811768,-0.00778198,-0.00827026,-0.0093689,-0.0090332,-0.00842285,-0.00918579,-0.00888062,-0.00967407,-0.0107727,-0.0115356,-0.0101318,-0.0101318,-0.00811768,-0.00778198,-0.00872803,-0.00997925,-0.0093689,-0.00872803,-0.00796509,-0.00827026,-0.0093689,-0.00997925,-0.0093689,-0.00857544,-0.00747681,-0.00732422,-0.00686646,-0.00592041,-0.00546265,-0.00497437,-0.00390625,-0.00375366,-0.00296021,-0.00201416,-0.00265503,-0.00311279,-0.00219727,0,0.000793457,0.00170898,0.00125122,0.000946045,0.00234985,0.00375366,0.00482178,0.00219727,0.00125122,-0.000457764,-0.00109863,-0.00170898,-0.00311279,-0.00656128,-0.00842285,-0.00982666,-0.0093689,-0.00888062,-0.00967407,-0.00872803,-0.00857544,-0.00622559,-0.00421143,-0.00436401,-0.00341797,-0.00360107,-0.00375366,-0.00280762,-0.00482178,-0.00546265,-0.00637817,-0.00466919,-0.00326538,-0.00341797,-0.00326538,-0.00360107,-0.00234985,-0.000610352,0.000793457,0.00186157,0.000610352,-0.000793457,-0.00186157,-0.00326538,-0.00390625,-0.00497437,-0.00717163,-0.00842285,-0.0102844,-0.0118408,-0.0118408,-0.0109253,-0.00982666,-0.00982666,-0.0101318,-0.0105896,-0.00982666,-0.00872803,-0.00686646,-0.00686646,-0.00701904,-0.00686646,-0.00637817,-0.00515747,-0.00234985,-0.00125122,-0.000457764,0.000305176,0.00265503,0.00436401,0.0045166,0.0045166,0.00390625,0.00360107,0.00482178,0.00466919,0.00265503,-0.000946045,-0.00375366,-0.00515747,-0.00405884,-0.00482178,-0.00686646,-0.00918579,-0.0102844,-0.00827026,-0.00656128,-0.00561523,-0.00546265,-0.006073,-0.00341797,-0.00201416,0.00186157,0.00405884,0.006073,0.00762939,0.00842285,0.0101318,0.0129395,0.0135803,0.0129395,0.0109253,0.00717163,0.00531006,0.00296021,0.00186157,-0.00140381,-0.00546265,-0.00952148,-0.010437,-0.0110779,-0.0112305,-0.0119934,-0.0138855,-0.0135803,-0.0126343,-0.0109253,-0.00952148,-0.010437,-0.0115356,-0.0135803,-0.0127869,-0.0119934,-0.0113831,-0.0101318,-0.0101318,-0.00686646,-0.00421143,-0.000610352,0.00201416,0.00515747,0.00842285,0.0116882,0.014801,0.0149536,0.0160522,0.0155945,0.0158997,0.0168457,0.0171509,0.0154419,0.0144958,0.0135803,0.0140381,0.0146484,0.0152893,0.0158997,0.0166931,0.0168457,0.0179443,0.0205688,0.0221558,0.0243225,0.0247803,0.026825,0.0285339,0.0308838,0.0336914,0.0354004,0.0374146,0.0383606,0.0391235,0.0413208,0.042572,0.044281,0.0438232,0.0431824,0.0436707,0.0447388,0.0462952,0.0464783,0.0441284,0.0434875,0.0428772,0.0448914,0.0447388,0.042572,0.0400696,0.0375671,0.0363159,0.0354004,0.0346069,0.0316467,0.0288391,0.0269775,0.0261841,0.0252686,0.025116,0.0230713,0.0227661,0.0210571,0.0201111,0.0202637,0.0188599,0.0182495,0.0163574,0.014801,0.0129395,0.0102844,0.00842285,0.00747681,0.006073,0.00497437,0.00234985,0.000946045,0.000305176,0.000793457,0.000305176,-0.00125122,-0.00341797,-0.00421143,-0.00436401,-0.00360107,-0.00531006,-0.00592041,-0.00827026,-0.00872803,-0.00967407,-0.0105896,-0.0110779,-0.0124817,-0.0129395,-0.0129395,-0.0144958,-0.014801,-0.0149536,-0.0149536,-0.0149536,-0.0160522,-0.0174561,-0.0188599,-0.0184021,-0.0180969,-0.0182495,-0.0188599,-0.0201111,-0.0205688,-0.019165,-0.0171509,-0.0163574,-0.0166931,-0.0169983,-0.0155945,-0.0137329,-0.0126343,-0.013092,-0.0126343,-0.0132446,-0.0133972,-0.0135803,-0.0144958,-0.014801,-0.0157471,-0.0151367,-0.0158997,-0.0152893,-0.0154419,-0.014801,-0.0152893,-0.0133972,-0.0140381,-0.0135803,-0.0135803,-0.013092,-0.0118408,-0.0126343,-0.0121765,-0.0124817,-0.0123291,-0.0107727,-0.00967407,-0.00982666,-0.0101318,-0.0101318,-0.00918579,-0.00762939,-0.00857544,-0.00827026,-0.00967407,-0.00952148,-0.0107727,-0.0109253,-0.0115356,-0.0115356,-0.0119934,-0.0107727,-0.0107727,-0.00982666,-0.00952148,-0.00857544,-0.0090332,-0.00888062,-0.00918579,-0.00997925,-0.0105896,-0.0105896,-0.0110779,-0.0124817,-0.0135803,-0.013092,-0.0127869,-0.0118408,-0.0116882,-0.0119934,-0.0118408,-0.0118408,-0.0116882,-0.0119934,-0.0124817,-0.013092,-0.0146484,-0.0146484,-0.0151367,-0.0152893,-0.0163574,-0.0154419,-0.0154419,-0.0141907,-0.0124817,-0.0115356,-0.00982666,-0.00918579,-0.00842285,-0.00701904,-0.00637817,-0.00701904,-0.00592041,-0.00622559,-0.00497437,-0.00576782,-0.00778198,-0.00827026,-0.00967407,-0.00811768,-0.00997925,-0.0110779,-0.0124817,-0.0126343,-0.0129395,-0.0132446,-0.0135803,-0.0133972,-0.0140381,-0.0133972,-0.0129395,-0.0107727,-0.00982666,-0.00888062,-0.00842285,-0.00732422,-0.00592041,-0.00375366,-0.00140381,0.00170898,0.00140381,0.00280762,0.00265503,0.00341797,0.00421143,0.00497437,0.00497437,0.00482178,0.00234985,0.000305176,-0.00201416,-0.00546265,-0.0090332,-0.0107727,-0.0119934,-0.0118408,-0.0112305,-0.00918579,-0.00811768,-0.00531006,-0.00497437,-0.00341797,-0.00125122,0.00219727,0.00546265,0.00561523,0.00482178,0.00421143,0.00341797,0.00311279,0.000610352,-0.00140381,-0.00280762,-0.000610352,0.00109863,0.00201416,0.000457764,-0.00109863,-0.00311279,-0.00390625,-0.00250244,-0.00201416,-0.00265503,-0.00390625,-0.00482178,-0.00375366,-0.00250244,-0.00140381,-0.000610352,-0.000793457,-0.000457764,-0.00109863,-0.00109863,-0.00234985,-0.00466919,-0.00497437,-0.00656128,-0.00671387,-0.00811768,-0.0090332,-0.010437,-0.0101318,-0.00967407,-0.00967407,-0.00778198,-0.00686646,-0.00497437,-0.00466919,-0.00405884,-0.00436401,-0.00497437,-0.00341797,-0.00375366,-0.00234985,-0.00201416,-0.00125122,-0.000305176,0.000793457,0.000457764,0.000457764,-0.00140381,-0.00250244,-0.00170898,-0.00170898,-0.00170898,-0.00265503,-0.00296021,-0.00125122,-0.000305176,-0.000457764,-0.00201416,-0.00296021,-0.000793457,0.00109863,0.00250244,0.00234985,0.00265503,0.00482178,0.00497437,0.00671387,0.00671387,0.00796509,0.00857544,0.00811768,0.00842285,0.00827026,0.00671387,0.00482178,0.00219727,0.000457764,-0.000457764,-0.000946045,-0.00219727,-0.00375366,-0.00436401,-0.00201416,0.000946045,0.00234985,0.00265503,0.00311279,0.00515747,0.00732422,0.00811768,0.00997925,0.0102844,0.0112305,0.0124817,0.0141907,0.0157471,0.0143433,0.0146484,0.0118408,0.0119934,0.0102844,0.0107727,0.00952148,0.0090332,0.00637817,0.00497437,0.00341797,0.00280762,0.00170898,0.00170898,0.00250244,0.00405884,0.0045166,0.00637817,0.00778198,0.010437,0.0115356,0.0135803,0.0149536,0.0163574,0.0180969,0.0188599,0.019165,0.0201111,0.0213623,0.0216675,0.0213623,0.0216675,0.0212097,0.0209045,0.0201111,0.0193481,0.0193481,0.0188599,0.0180969,0.0177612,0.0176086,0.0188599,0.0185547,0.0179443,0.0171509,0.0169983,0.0179443,0.0187073,0.0179443,0.0158997,0.0149536,0.0143433,0.0143433,0.0127869,0.0113831,0.00967407,0.00967407,0.00872803,0.00796509,0.00732422,0.00656128,0.00622559,0.00637817,0.00656128,0.00827026,0.00778198,0.00888062,0.00796509,0.00888062,0.00796509,0.0090332,0.00952148,0.00888062,0.00857544,0.00796509,0.00732422,0.00671387,0.00622559,0.00656128,0.006073,0.00515747,0.00497437,0.00421143,0.0045166,0.00280762,0.00234985,0.0015564,0.00109863,0.000457764,-0.000152588,-0.000305176,-0.000610352,-0.00109863,-0.000457764,0,0,0.000305176,0.000457764,0.000457764,0.00109863,0.000946045,0.000457764,0.000457764,-0.000152588,-0.0015564,-0.00234985,-0.00360107,-0.00546265,-0.00656128,-0.00762939,-0.00952148,-0.00982666,-0.0110779,-0.0110779,-0.0110779,-0.010437,-0.0102844,-0.0102844,-0.00918579,-0.00888062,-0.00872803,-0.00857544,-0.00827026,-0.00811768,-0.00796509,-0.00796509,-0.00857544,-0.0090332,-0.00952148,-0.00857544,-0.00982666,-0.0093689,-0.00997925,-0.010437,-0.0107727,-0.0102844,-0.0110779,-0.0109253,-0.0118408,-0.0118408,-0.0118408,-0.0127869,-0.0115356,-0.0119934,-0.0126343,-0.0119934,-0.0113831,-0.0115356,-0.0102844,-0.00997925,-0.00872803,-0.00778198,-0.00686646,-0.00656128,-0.00466919,-0.00482178,-0.0045166,-0.00360107,-0.00466919,-0.00421143,-0.0045166,-0.00482178,-0.00531006,-0.00622559,-0.00656128,-0.00762939,-0.00671387,-0.00762939,-0.00701904,-0.00778198,-0.00811768,-0.00778198,-0.00811768,-0.00811768,-0.00762939,-0.00778198,-0.00686646,-0.00701904,-0.00637817,-0.00497437,-0.00375366,-0.00311279,-0.00341797,-0.0045166,-0.00375366,-0.00265503,-0.00186157,-0.00234985,-0.00326538,-0.00375366,-0.00421143,-0.00436401,-0.00576782,-0.006073,-0.00592041,-0.00497437,-0.00515747,-0.00436401,-0.00466919,-0.0045166,-0.00375366,-0.00265503,-0.00280762,-0.00234985,-0.00390625,-0.00390625,-0.00405884,-0.00546265,-0.00531006,-0.00576782,-0.00482178,-0.00482178,-0.00466919,-0.00390625,-0.00326538,-0.00311279,-0.00186157,-0.000457764,-0.000793457,-0.000152588,-0.000457764,-0.000946045,-0.00140381,-0.00201416,-0.00326538,-0.00360107,-0.00405884,-0.00482178,-0.00515747,-0.00546265,-0.00531006,-0.00531006,-0.00436401,-0.00482178,-0.00360107,-0.00436401,-0.00311279,-0.00280762,-0.00265503,-0.00201416,-0.00341797,-0.00250244,-0.00375366,-0.00436401,-0.00482178,-0.00515747,-0.00592041,-0.00656128,-0.00622559,-0.00671387,-0.00671387,-0.00762939,-0.00701904,-0.00671387,-0.00701904,-0.00717163,-0.00857544,-0.00762939,-0.00732422,-0.00701904,-0.00576782,-0.00637817,-0.00546265,-0.00576782,-0.00482178,-0.00421143,-0.00326538,-0.00296021,-0.00405884,-0.00421143,-0.0045166,-0.00375366,-0.0045166,-0.00515747,-0.00671387,-0.00622559,-0.00762939,-0.00686646,-0.00747681,-0.00778198,-0.00747681,-0.00778198,-0.00717163,-0.00515747,-0.0045166,-0.00482178,-0.00436401,-0.00436401,-0.00250244,-0.00326538,-0.00311279,-0.00201416,-0.00280762,-0.00296021,-0.00360107,-0.00436401,-0.00375366,-0.00390625,-0.00326538,-0.00360107,-0.00311279,-0.00326538,-0.00296021,-0.00250244,-0.00219727,-0.0015564,-0.000946045,-0.000610352,-0.0015564,-0.00170898,-0.000793457,-0.00140381,-0.000793457,-0.0015564,-0.00219727,-0.00140381,-0.00140381,-0.000152588,-0.000610352,-0.000305176,0.000152588,0.000305176,0.000793457,0.00109863,0.000793457,-0.000457764,-0.00125122,0,-0.000152588,-0.00109863,-0.000946045,-0.0015564,-0.000793457,0.000610352,0.000946045,0.0015564,0.0015564,0.00186157,0.00341797,0.0045166,0.00531006,0.00466919,0.0045166,0.00326538,0.00375366,0.00234985,0.00265503,0.000946045,0.000457764,-0.000305176,-0.000793457,-0.000152588,0,-0.000946045,-0.00125122,-0.00109863,-0.000610352,0.000457764,0.000793457,0.000305176,0.00125122,0.000793457,0.000793457,0.00140381,0.00125122,0.00250244,0.00170898,0.00234985,0.00201416,0.00360107,0.00219727,0.00250244,0.00296021,0.00219727,0.00250244,0.00360107,0.00311279,0.0045166,0.0045166,0.00405884,0.00436401,0.00326538,0.00280762,0.00219727,0.0015564,0.000793457,0,-0.000305176,0.000305176,0.000305176,0.000610352,0.000946045,0.00201416,0.00311279,0.00482178,0.00531006,0.00576782,0.00778198,0.00857544,0.00778198,0.00622559,0.00466919,0.00482178,0.00482178,0.00390625,0.000793457,-0.00170898,-0.00311279,-0.00405884,-0.00405884,-0.0045166,-0.00592041,-0.00592041,-0.00561523,-0.00375366,-0.00250244,-0.00125122,-0.000152588,0.00186157,0.00360107,0.00375366,0.0045166,0.00341797,0.00421143,0.00375366,0.00421143,0.00436401,0.00360107,0.00326538,0.00265503,0.00186157,0.000457764,-0.000457764,-0.00186157,-0.00186157,-0.00280762,-0.00360107,-0.00482178,-0.0045166,-0.00375366,-0.00280762,-0.00219727,-0.00109863,0.000946045,0.00125122,0.0045166,0.00515747,0.006073,0.00656128,0.00622559,0.00592041,0.00546265,0.00561523,0.00497437,0.00326538,0.0015564,0.000946045,-0.000793457,-0.00140381,-0.00326538,-0.00296021,-0.00311279,-0.00390625,-0.00360107,-0.00280762,-0.00170898,-0.00125122,-0.000793457,0,0.000305176,0.00201416,0.00234985,0.00421143,0.00296021,0.00436401,0.00436401,0.00576782,0.00546265,0.00466919,0.00421143,0.00341797,0.00219727,-0.000610352,-0.00201416,-0.00436401,-0.0045166,-0.00546265,-0.00686646,-0.00918579,-0.00857544,-0.00872803,-0.00637817,-0.006073,-0.00561523,-0.00436401,-0.00234985,-0.000305176,0.000610352,0.000946045,0.00109863,0.00125122,0.000793457,0.00109863,-0.000946045,-0.00170898,-0.00250244,-0.00341797,-0.00436401,-0.0045166,-0.00531006,-0.00576782,-0.00497437,-0.00515747,-0.00421143,-0.0045166,-0.00375366,-0.00296021,-0.00311279,-0.00421143,-0.00375366,-0.00250244,-0.00186157,-0.00234985,-0.00234985,-0.00234985,-0.00109863,0,-0.000457764,0.000946045,0.000793457,0.00109863,0.000152588,-0.000457764,-0.0015564,-0.0015564,-0.00296021,-0.00250244,-0.00170898,-0.000457764,-0.00109863,-0.00170898,-0.00250244,-0.00234985,-0.00109863,0,0.00109863,0.00125122,0.0015564,0.00296021,0.00390625,0.00405884,0.00405884,0.00466919,0.00622559,0.00671387,0.00515747,0.00405884,0.00280762,0.00186157,0.00296021,0.00360107,0.00405884,0.00311279,0.00201416,0.00360107,0.00436401,0.00497437,0.0045166,0.00421143,0.00296021,0.00234985,0.00201416,0.00219727,0.00170898,0.000946045,-0.000457764,-0.000793457,-0.000946045,0.000457764,0.000152588,-0.000793457,-0.00219727,-0.000793457,0.000946045,0.000457764,-0.000457764,-0.000610352,0.000305176,0.00219727,0.00280762,0.00280762,0.00170898,0.00219727,0.00201416,0.00265503,0.00201416,0.00265503,0.00326538,0.00140381,0,-0.00201416,-0.0015564,-0.000610352,-0.000457764,-0.000457764,0.00125122,0.00201416,0.00265503,0.00201416,0.00186157,0.00234985,0.00326538,0.00482178,0.00686646,0.00811768,0.00796509,0.00827026,0.00842285,0.0105896,0.0113831,0.0118408,0.010437,0.00918579,0.00701904,0.00546265,0.00482178,0.00546265,0.0045166,0.00405884,0.00311279,0.00311279,0.00360107,0.00311279,0.0045166,0.00341797,0.00360107,0.00280762,0.00311279,0.0015564,0.00170898,0.000305176,-0.000610352,-0.00140381,0,0.000305176,0.00109863,0.00201416,0.00219727,0.00219727,0.00311279,0.00341797,0.00421143,0.00375366,0.00296021,0.00186157,0.00125122,0.000793457,-0.000610352,-0.00186157,-0.00311279,-0.00482178,-0.00421143,-0.00466919,-0.00280762,-0.00515747,-0.00656128,-0.00717163,-0.00637817,-0.00497437,-0.00561523,-0.00592041,-0.006073,-0.00561523,-0.00576782,-0.00701904,-0.00778198,-0.00778198,-0.00747681,-0.00747681,-0.00811768,-0.00842285,-0.00656128,-0.00531006,-0.00515747,-0.00637817,-0.006073,-0.0045166,-0.00234985,-0.00201416,-0.00201416,-0.00250244,-0.00265503,-0.00219727,-0.00280762,-0.00405884,-0.00637817,-0.00656128,-0.00637817,-0.00531006,-0.00637817,-0.006073,-0.00732422,-0.00686646,-0.00686646,-0.00747681,-0.00872803,-0.0093689,-0.00857544,-0.0090332,-0.00888062,-0.0093689,-0.00982666,-0.0093689,-0.00952148,-0.0107727,-0.010437,-0.0105896,-0.00842285,-0.00778198,-0.00576782,-0.00466919,-0.00326538,-0.00265503,-0.00250244,-0.00311279,-0.00360107,-0.00515747,-0.00732422,-0.0093689,-0.0112305,-0.0107727,-0.0116882,-0.0110779,-0.00967407,-0.00701904,-0.00515747,-0.00390625,-0.00219727,-0.000946045,0.000152588,0.000610352,-0.000305176,-0.000946045,-0.00311279,-0.00531006,-0.00827026,-0.010437,-0.0127869,-0.0141907,-0.0127869,-0.0112305,-0.0102844,-0.00982666,-0.0101318,-0.00811768,-0.00701904,-0.00497437,-0.00326538,-0.00234985,-0.000946045,0.00109863,0.000305176,-0.000610352,-0.00265503,-0.00234985,-0.00296021,-0.00390625,-0.00515747,-0.00671387,-0.00622559,-0.00592041,-0.00561523,-0.00561523,-0.00546265,-0.00375366,-0.00265503,-0.00186157,-0.00125122,-0.000946045,-0.000152588,-0.00109863,-0.000793457,-0.00170898,-0.00234985,-0.00326538,-0.00375366,-0.00466919,-0.00546265,-0.00531006,-0.00546265,-0.00436401,-0.00515747,-0.00515747,-0.00515747,-0.00546265,-0.00656128,-0.00576782,-0.00515747,-0.00390625,-0.00296021,-0.00341797,-0.00219727,-0.00109863,0.000793457,0.00140381,0.00201416,0.00219727,0.00250244,0.0015564,0.00125122,0.000610352,0.000152588,-0.000946045,-0.00234985,-0.00250244,-0.00311279,-0.00326538,-0.00405884,-0.00375366,-0.00390625,-0.00280762,-0.00250244,-0.00140381,-0.00186157,-0.00125122,-0.000946045,-0.00170898,-0.000610352,-0.00140381,-0.000946045,-0.00201416,-0.00296021,-0.00421143,-0.00482178,-0.00497437,-0.00482178,-0.00405884,-0.00341797,-0.00375366,-0.00326538,-0.00170898,-0.000793457,0.000152588,0.000305176,-0.000793457,-0.00140381,-0.00170898,-0.00186157,-0.00280762,-0.00436401,-0.00637817,-0.00576782,-0.00515747,-0.00531006,-0.00592041,-0.00671387,-0.00686646,-0.00622559,-0.00561523,-0.00592041,-0.00701904,-0.00796509,-0.00842285,-0.00872803,-0.00952148,-0.0112305,-0.0123291,-0.0135803,-0.0129395,-0.0133972,-0.0140381,-0.0146484,-0.0168457,-0.0168457,-0.019165,-0.020752,-0.0219727,-0.0227661,-0.025116,-0.0275879,-0.0299377,-0.0299377,-0.0266724,-0.0237122,-0.0227661,-0.0221558,-0.0184021,-0.0102844,-0.000946045,0.00762939,0.0127869,0.0176086,0.0233765,0.0308838,0.0371094,0.039917,0.0410156,0.0391235,0.0366516,0.0344543,0.031189,0.0269775,0.0219727,0.0160522,0.0116882,0.00827026,0.00671387,0.00637817,0.00762939,0.00747681,0.00888062,0.0123291,0.0163574,0.0204163,0.0223083,0.0229187,0.0249329,0.0279236,0.031189,0.0319519,0.0321045,0.0313416,0.0333557,0.0360107,0.0396118,0.0414734,0.041626,0.0431824,0.04599,0.0497437,0.0525513,0.0527039,0.0517578,0.0497437,0.048645,0.0467834,0.0453796,0.0414734,0.0358582,0.0293274,0.0247803,0.0204163,0.0165405,0.0129395,0.00842285,0.0045166,0.00140381,0.000305176,-0.000457764,-0.00109863,-0.00140381,-0.00219727,-0.00280762,-0.00125122,-0.00109863,0.000457764,-0.000457764,0,0.000457764,0.00186157,0.00234985,0.00280762,0.00201416,0.00296021,0.00390625,0.00515747,0.00531006,0.00375366,0.00201416,0.00219727,0.0015564,0.00170898,-0.000793457,-0.00326538,-0.00546265,-0.00686646,-0.00717163,-0.00686646,-0.00857544,-0.00982666,-0.0118408,-0.0129395,-0.0126343,-0.0118408,-0.0110779,-0.0126343,-0.0140381,-0.0155945,-0.0152893,-0.0144958,-0.0135803,-0.0137329,-0.0141907,-0.0132446,-0.0127869,-0.00997925,-0.00857544,-0.00671387,-0.00436401,-0.00265503,0.000305176,0.00250244,0.00375366,0.00561523,0.00637817,0.00717163,0.00686646,0.00671387,0.00576782,0.00497437,0.00341797,0.00219727,0.0015564,0.00140381,0.000152588,-0.00140381,-0.00250244,-0.00280762,-0.00219727,-0.00219727,-0.00109863,-0.00265503,-0.00265503,-0.00201416,-0.000152588,0.000793457,0.000793457,0.000457764,-0.000610352,-0.000305176,0.00125122,0.000457764,0.000457764,-0.000152588,-0.000610352,0.000457764,0.000610352,0.0015564,0.00170898,0.00234985,0.00219727,0.00219727,0.00201416,0.00219727,0.000305176,-0.00109863,-0.00390625,-0.00576782,-0.00827026,-0.00967407,-0.0124817,-0.0155945,-0.0187073,-0.0201111,-0.0209045,-0.0226135,-0.0243225,-0.025116,-0.0261841,-0.0255737,-0.0257263,-0.0249329,-0.0263367,-0.0261841,-0.0261841,-0.0252686,-0.0241699,-0.0237122,-0.0235291,-0.0223083,-0.0213623,-0.0202637,-0.0184021,-0.0174561,-0.0158997,-0.0160522,-0.0154419,-0.0151367,-0.0141907,-0.0140381,-0.0143433,-0.0149536,-0.0154419,-0.0165405,-0.0160522,-0.0173035,-0.0177612,-0.0182495,-0.0185547,-0.0185547,-0.0171509,-0.0169983,-0.0155945,-0.0144958,-0.013092,-0.0115356,-0.0101318,-0.00888062,-0.00762939,-0.00701904,-0.00576782,-0.00482178,-0.0045166,-0.00421143,-0.00466919,-0.00375366,-0.00341797,-0.00311279,-0.00234985,-0.00234985,-0.00109863,-0.000305176,0.00125122,0.00186157,0.00405884,0.00531006,0.006073,0.00592041,0.00531006,0.00546265,0.0045166,0.00360107,0.000610352,-0.000610352,-0.00326538,-0.00515747,-0.00592041,-0.00747681,-0.00827026,-0.00952148,-0.0101318,-0.00952148,-0.00857544,-0.00747681,-0.00717163,-0.00637817,-0.00515747,-0.00497437,-0.00436401,-0.00405884,-0.00341797,-0.00265503,-0.00201416,-0.00250244,-0.00170898,-0.00140381,-0.000793457,-0.000610352,-0.00109863,-0.00219727,-0.00250244,-0.00326538,-0.00375366,-0.0045166,-0.00592041,-0.00656128,-0.00732422,-0.00827026,-0.00982666,-0.0102844,-0.0109253,-0.010437,-0.0107727,-0.0107727,-0.0101318,-0.0090332,-0.00918579,-0.00888062,-0.00918579,-0.00952148,-0.00952148,-0.010437,-0.0101318,-0.00982666,-0.00982666,-0.0101318,-0.010437,-0.0105896,-0.00967407,-0.00872803,-0.00762939,-0.00622559,-0.00482178,-0.00375366,-0.00219727,-0.00125122,-0.00125122,-0.000793457,-0.000793457,0.000152588,0.000793457,-0.000152588,-0.00170898,-0.00311279,-0.00326538,-0.00234985,-0.00265503,-0.00296021,-0.00436401,-0.00421143,-0.0045166,-0.00375366,-0.00436401,-0.00482178,-0.00531006,-0.00360107,-0.00360107,-0.00219727,-0.00125122,0.000305176,0.000793457,0.00234985,0.0015564,0.00296021,0.00341797,0.00360107,0.00405884,0.00234985,0.000946045,-0.000305176,0,-0.00125122,-0.00280762,-0.00531006,-0.00701904,-0.00762939,-0.00762939,-0.00811768,-0.00967407,-0.0105896,-0.0107727,-0.0110779,-0.0118408,-0.0133972,-0.014801,-0.0141907,-0.0141907,-0.0137329,-0.0141907,-0.0141907,-0.0123291,-0.0107727,-0.00872803,-0.00747681,-0.00561523,-0.00296021,0.000793457,0.00326538,0.00637817,0.0093689,0.0126343,0.0158997,0.0185547,0.0195007,0.0221558,0.0240173,0.0258789,0.0255737,0.0241699,0.0240173,0.0227661,0.0230713,0.0215149,0.0190125,0.0171509,0.0158997,0.0158997,0.0155945,0.0154419,0.014801,0.0149536,0.0162048,0.0179443,0.019165,0.0202637,0.0229187,0.0258789,0.0275879,0.0299377,0.0316467,0.033844,0.0357056,0.0379028,0.0396118,0.0402222,0.0414734,0.0414734,0.0411682,0.0403748,0.0396118,0.038208,0.0366516,0.0344543,0.0321045,0.02948,0.0285339,0.0260315,0.0224609,0.0199585,0.0173035,0.0158997,0.0146484,0.0126343,0.0110779,0.00918579,0.00778198,0.00656128,0.0045166,0.00326538,0.00219727,0.00140381,0.000152588,-0.00265503,-0.00341797,-0.00466919,-0.00482178,-0.00546265,-0.00592041,-0.00592041,-0.00531006,-0.00390625,-0.00341797,-0.00296021,-0.00109863,-0.000152588,0.00186157,0.00280762,0.00280762,0.00390625,0.00421143,0.0045166,0.00405884,0.00234985,0.0015564,0,-0.00125122,-0.00280762,-0.00405884,-0.00637817,-0.00796509,-0.0090332,-0.00997925,-0.0101318,-0.0101318,-0.0102844,-0.0093689,-0.00997925,-0.00997925,-0.00967407,-0.00967407,-0.00872803,-0.0101318,-0.00952148,-0.0113831,-0.0116882,-0.0113831,-0.0109253,-0.0102844,-0.0093689,-0.00872803,-0.00762939,-0.00576782,-0.0045166,-0.00186157,-0.00234985,-0.000946045,-0.000946045,0,0.000793457,0.000305176,0.000305176,0.000457764,0.000793457,0.000610352,0.000457764,0.000610352,0.000305176,0.000152588,-0.00140381,-0.00170898,-0.00311279,-0.00326538,-0.00390625,-0.00466919,-0.00515747,-0.00531006,-0.00592041,-0.00656128,-0.00732422,-0.00701904,-0.00656128,-0.00436401,-0.00390625,-0.00250244,-0.00170898,-0.00140381,0.000152588,0.000610352,0.000305176,0.000305176,-0.000152588,-0.00109863,-0.00125122,-0.00250244,-0.00265503,-0.00326538,-0.00250244,-0.00296021,-0.00326538,-0.00360107,-0.00405884,-0.00360107,-0.00326538,-0.00421143,-0.00561523,-0.00686646,-0.00778198,-0.00747681,-0.00952148,-0.0105896,-0.0121765,-0.0113831,-0.0112305,-0.0105896,-0.0112305,-0.0121765,-0.0110779,-0.0110779,-0.00997925,-0.0102844,-0.00952148,-0.00857544,-0.00762939,-0.00762939,-0.00656128,-0.00717163,-0.00686646,-0.00637817,-0.00747681,-0.00701904,-0.00762939,-0.00778198,-0.00747681,-0.00796509,-0.00762939,-0.00747681,-0.00561523,-0.0045166,-0.00375366,-0.00390625,-0.00375366,-0.00201416,-0.000457764,0.000457764,0.000610352,-0.00140381,-0.000793457,-0.000946045,-0.000610352,-0.00140381,-0.00326538,-0.00375366,-0.00360107,-0.00390625,-0.00375366,-0.00515747,-0.00466919,-0.00482178,-0.00390625,-0.00311279,-0.00265503,-0.00250244,-0.00280762,-0.00186157,-0.00125122,0.000305176,0.000610352,0.00186157,0.00219727,0.00311279,0.00311279,0.00390625,0.00311279,0.00280762,0.000946045,-0.000457764,-0.00170898,-0.00280762,-0.0045166,-0.006073,-0.00686646,-0.00778198,-0.00811768,-0.00888062,-0.00982666,-0.0107727,-0.0110779,-0.0105896,-0.0110779,-0.00997925,-0.00918579,-0.00842285,-0.00701904,-0.00576782,-0.00436401,-0.00250244,-0.00170898,-0.00125122,-0.000152588,0,0.000610352,-0.000305176,-0.00186157,-0.00265503,-0.00390625,-0.00436401,-0.00515747,-0.00686646,-0.00747681,-0.00888062,-0.00842285,-0.00952148,-0.00918579,-0.0093689,-0.00857544,-0.00778198,-0.00701904,-0.00592041,-0.00561523,-0.0045166,-0.00421143,-0.00341797,-0.00219727,-0.00140381,-0.00201416,-0.00186157,-0.00250244,-0.00201416,-0.00219727,-0.00234985,-0.00326538,-0.00375366,-0.00375366,-0.00390625,-0.00405884,-0.0045166,-0.00482178,-0.00390625,-0.00375366,-0.00311279,-0.00296021,-0.00219727,-0.00186157,-0.00186157,-0.00170898,-0.00170898,-0.000946045,-0.00109863,-0.00140381,-0.00186157,-0.0015564,-0.00125122,-0.000457764,-0.00109863,-0.000946045,-0.00125122,-0.000610352,-0.00109863,-0.000946045,-0.000946045,-0.00219727,-0.00219727,-0.00265503,-0.00219727,-0.00280762,-0.00341797,-0.00390625,-0.00390625,-0.00311279,-0.00311279,-0.00201416,-0.00201416,-0.000793457,0,0.000610352,0.00201416,0.00234985,0.00280762,0.00296021,0.00234985,0.00296021,0.0015564,0.00186157,0.00125122,0.000152588,-0.000457764,-0.00109863,-0.00140381,-0.00250244,-0.00219727,-0.00326538,-0.00280762,-0.00296021,-0.00250244,-0.00265503,-0.00140381,-0.00170898,-0.000793457,-0.000152588,0.000793457,0.000793457,0.00170898,0.00186157,0.00219727,0.00341797,0.00280762,0.00280762,0.00280762,0.00280762,0.00375366,0.00390625,0.00436401,0.00482178,0.00546265,0.00592041,0.00656128,0.00686646,0.00747681,0.00796509,0.0090332,0.00778198,0.00827026,0.00811768,0.00811768,0.00747681,0.00701904,0.00637817,0.00592041,0.00515747,0.0045166,0.00360107,0.00280762,0.00201416,0.0015564,0.000793457,0.000457764,0.000610352,0.000152588,0.000152588,0.000457764,0,0.000946045,0.000946045,0.00109863,0.00219727,0.00186157,0.00280762,0.00219727,0.00280762,0.00201416,0.00186157,0.0015564,0.0015564,0.00125122,0.000946045,0.000457764,0.000152588,0,-0.000152588,-0.000305176,0.000305176,-0.000457764,-0.000305176,-0.000305176,-0.00109863,-0.000610352,-0.00140381,-0.0015564,-0.00265503,-0.00250244,-0.00326538,-0.00296021,-0.00360107,-0.00375366,-0.00421143,-0.00421143,-0.00326538,-0.00296021,-0.00265503,-0.00186157,-0.00265503,-0.00109863,-0.00140381,-0.000946045,-0.000152588,0.000152588,0.000610352,0.000946045,0.00140381,0.000793457,0.00109863,0.00109863,0.000793457,0.00109863,0.000457764,0.00109863,0.000457764,0,-0.000457764,-0.000152588,0,-0.000305176,-0.000457764,-0.000946045,-0.00186157,-0.00125122,-0.0015564,-0.00125122,-0.00234985,-0.00170898,-0.00234985,-0.00109863,-0.00125122,-0.000610352,-0.000610352,0,0,0.000610352,0.000152588,0.000305176,0,0,-0.000305176,-0.000305176,-0.000457764,-0.000610352,0.000305176,-0.000793457,-0.000457764,-0.000152588,0,0.000152588,0,0,0,0.000610352,0.00125122,0.000152588,0.000946045,0.000793457,0.000793457,0.00125122,0.00250244,0.0015564,0.00265503,0.00265503,0.00265503,0.00360107,0.00326538,0.00341797,0.00326538,0.00296021,0.00250244,0.00296021,0.00219727,0.00219727,0.00234985,0.00140381,0.00234985,0.00170898,0.00234985,0.00170898,0.00170898,0.00186157,0.00186157,0.00250244,0.00219727,0.00201416,0.00250244,0.00219727,0.00219727,0.00219727,0.00170898,0.00201416,0.00140381,0.00201416,0.00186157,0.00170898,0.00201416,0.00186157,0.00201416,0.00265503,0.00296021,0.00341797,0.00360107,0.00341797,0.00296021,0.00341797,0.00219727,0.00234985,0.00170898,0.00125122,0.000152588,0.000305176,-0.000152588,-0.000457764,-0.000457764,-0.00109863,-0.000457764,-0.000793457,-0.000305176,-0.000152588,-0.000610352,-0.000457764,-0.000946045,-0.00109863,-0.00109863,-0.00125122,-0.000946045,-0.0015564,-0.000946045,-0.0015564,-0.0015564,-0.00201416,-0.00170898,-0.00170898,-0.00186157,-0.00219727,-0.00186157,-0.00219727,-0.00234985,-0.00201416,-0.00219727,-0.00234985,-0.00250244,-0.00250244,-0.00280762,-0.00234985,-0.00360107,-0.00375366,-0.00341797,-0.00360107,-0.00360107,-0.00405884,-0.00436401,-0.00375366,-0.00390625,-0.00375366,-0.00326538,-0.00375366,-0.00326538,-0.00326538,-0.00341797,-0.00405884,-0.0045166,-0.00561523,-0.00546265,-0.00637817,-0.00701904,-0.00671387,-0.00747681,-0.00686646,-0.00732422,-0.00701904,-0.00656128,-0.00622559,-0.00546265,-0.00466919,-0.00405884,-0.00390625,-0.00311279,-0.00219727,-0.00170898,-0.00125122,-0.00140381,-0.00170898,-0.0015564,-0.00140381,-0.00219727,-0.00296021,-0.00360107,-0.00360107,-0.00296021,-0.00375366,-0.00326538,-0.00466919,-0.00421143,-0.00421143,-0.00421143,-0.00341797,-0.00405884,-0.00311279,-0.00296021,-0.00201416,-0.00201416,-0.00170898,-0.000305176,-0.000457764,0.000793457,0.000457764,0.00125122,0.000793457,0.00201416,0.00125122,0.000457764,0.000793457,0.000610352,0.00125122,0.000610352,0.000793457,0.000152588,0.000610352,0.000946045,0.00201416,0.00201416,0.00201416,0.00280762,0.00296021,0.00375366,0.00280762,0.00296021,0.00280762,0.00421143,0.00375366,0.00375366,0.00250244,0.00201416,0.00234985,0.00280762,0.00219727,0.00140381,0.000610352,0.00170898,0.000946045,0.00125122,0.000305176,0,-0.000793457,-0.000457764,-0.0015564,-0.000793457,-0.00170898,-0.00109863,-0.00109863,-0.00140381,-0.00125122,-0.000610352,0.000457764,0.00125122,0.00125122,0.00109863,0.000305176,0,0.000305176,0.000457764,0,-0.000946045,-0.000793457,-0.000946045,-0.00219727,-0.00170898,-0.00375366,-0.00360107,-0.00466919,-0.0045166,-0.00405884,-0.00341797,-0.00375366,-0.00326538,-0.00234985,-0.00234985,-0.00140381,-0.00170898,-0.00140381,-0.00140381,-0.00219727,-0.00250244,-0.00360107,-0.00390625,-0.00405884,-0.00341797,-0.00360107,-0.00360107,-0.00326538,-0.00360107,-0.00280762,-0.00405884,-0.00421143,-0.00390625,-0.00482178,-0.00515747,-0.00671387,-0.00686646,-0.00717163,-0.00762939,-0.00592041,-0.00637817,-0.00531006,-0.00561523,-0.0045166,-0.00360107,-0.000946045,-0.00109863,-0.00140381,-0.00109863,0,-0.000152588,-0.000946045,-0.00326538,-0.00405884,-0.0045166,-0.00561523,-0.00576782,-0.00701904,-0.00778198,-0.00747681,-0.00811768,-0.00747681,-0.00811768,-0.00732422,-0.00671387,-0.00482178,-0.00421143,-0.0045166,-0.00341797,-0.00265503,-0.000946045,0.000457764,0.0015564,0.0015564,0.00201416,0.00296021,0.00265503,0.00234985,0.000946045,0.000946045,0.000946045,0.00140381,0,-0.0015564,-0.00201416,-0.00201416,-0.00265503,-0.00186157,-0.0015564,-0.000457764,0.000793457,0.00125122,0.000457764,-0.000457764,-0.000610352,-0.0015564,-0.00296021,-0.00280762,-0.00234985,-0.00234985,-0.00219727,-0.00280762,-0.00296021,-0.00405884,-0.00360107,-0.00436401,-0.00311279,-0.00311279,-0.00311279,-0.00280762,-0.00265503,-0.00250244,-0.00140381,-0.00201416,-0.00219727,-0.00219727,-0.00280762,-0.00219727,-0.00186157,-0.00125122,0.000457764,0.00170898,0.00234985,0.00201416,0.00170898,0.000457764,0.000793457,-0.00125122,-0.00201416,-0.00280762,-0.00360107,-0.00341797,-0.00390625,-0.00250244,-0.00265503,-0.00234985,-0.00326538,-0.00311279,-0.00250244,-0.00170898,-0.00265503,-0.00390625,-0.00390625,-0.00375366,-0.00326538,-0.00219727,-0.00219727,-0.0015564,-0.00109863,-0.000305176,0.000152588,0,-0.000152588,-0.000305176,-0.000305176,0.000152588,0.000457764,-0.000610352,-0.00140381,-0.00170898,-0.00109863,-0.00140381,-0.00201416,-0.00280762,-0.00360107,-0.00390625,-0.00436401,-0.0045166,-0.00497437,-0.00546265,-0.00671387,-0.00637817,-0.00686646,-0.00637817,-0.00762939,-0.00842285,-0.0090332,-0.010437,-0.0105896,-0.0110779,-0.0113831,-0.0121765,-0.0121765,-0.0121765,-0.0119934,-0.0118408,-0.0113831,-0.0123291,-0.013092,-0.0127869,-0.0121765,-0.0119934,-0.0118408,-0.0123291,-0.0116882,-0.0102844,-0.00747681,-0.00531006,-0.00296021,-0.000793457,0.00234985,0.00482178,0.00747681,0.00952148,0.0110779,0.0121765,0.0123291,0.0124817,0.0116882,0.0107727,0.00967407,0.00762939,0.00686646,0.00546265,0.00436401,0.00497437,0.00466919,0.00497437,0.00561523,0.00637817,0.00717163,0.00778198,0.00888062,0.00982666,0.010437,0.0107727,0.010437,0.0101318,0.010437,0.010437,0.0113831,0.0115356,0.0121765,0.0135803,0.0146484,0.0157471,0.0173035,0.0187073,0.0210571,0.0218201,0.0226135,0.0230713,0.0232239,0.0229187,0.0224609,0.0213623,0.0199585,0.0182495,0.0166931,0.0163574,0.0151367,0.0143433,0.0141907,0.013092,0.0129395,0.0121765,0.0116882,0.0112305,0.00982666,0.00872803,0.00701904,0.00592041,0.00421143,0.00375366,0.00234985,0.00140381,0.000793457,0.000152588,-0.000457764,0.000152588,0.000305176,0.00140381,0.00234985,0.00341797,0.00421143,0.00497437,0.00576782,0.00592041,0.006073,0.006073,0.00497437,0.00405884,0.00311279,0.00250244,0.00219727,0.00201416,0.00109863,0.000305176,0,-0.00109863,-0.000610352,-0.00140381,-0.00201416,-0.00326538,-0.00360107,-0.00531006,-0.00561523,-0.00717163,-0.00796509,-0.00872803,-0.00967407,-0.0110779,-0.0115356,-0.0119934,-0.0119934,-0.0121765,-0.0115356,-0.0116882,-0.00997925,-0.0093689,-0.00842285,-0.00701904,-0.00561523,-0.0045166,-0.00326538,-0.00170898,-0.00125122,-0.000152588,0.000946045,0.00234985,0.00250244,0.00341797,0.00341797,0.00341797,0.00375366,0.0045166,0.00531006,0.00482178,0.00531006,0.00531006,0.00531006,0.006073,0.00561523,0.006073,0.00576782,0.00531006,0.00466919,0.00466919,0.00390625,0.00405884,0.00326538,0.00296021,0.00234985,0.00250244,0.00219727,0.00326538,0.00326538,0.00360107,0.00390625,0.00482178,0.0045166,0.00622559,0.00515747,0.00576782,0.00531006,0.00515747,0.00466919,0.00436401,0.00360107,0.00341797,0.00296021,0.00265503,0.00250244,0.00140381,0.00109863,0.000793457,0,-0.000457764,-0.00186157,-0.00360107,-0.0045166,-0.00637817,-0.00811768,-0.00888062,-0.0113831,-0.0124817,-0.0135803,-0.0146484,-0.0151367,-0.0152893,-0.0146484,-0.014801,-0.0135803,-0.0137329,-0.0127869,-0.0124817,-0.0116882,-0.0115356,-0.0112305,-0.0112305,-0.0113831,-0.0112305,-0.0116882,-0.0113831,-0.0116882,-0.0110779,-0.0102844,-0.010437,-0.00997925,-0.00982666,-0.00888062,-0.00827026,-0.00872803,-0.00918579,-0.00918579,-0.0101318,-0.00982666,-0.0101318,-0.00967407,-0.0102844,-0.0105896,-0.0109253,-0.0102844,-0.0105896,-0.00997925,-0.00967407,-0.0101318,-0.00967407,-0.0093689,-0.00857544,-0.00732422,-0.00732422,-0.00622559,-0.00592041,-0.00482178,-0.00497437,-0.00405884,-0.00405884,-0.00405884,-0.00360107,-0.00326538,-0.00375366,-0.00375366,-0.00311279,-0.00250244,-0.00125122,-0.00186157,-0.00125122,-0.00170898,-0.00125122,-0.00140381,-0.000946045,-0.00186157,-0.00296021,-0.00360107,-0.00497437,-0.00592041,-0.00686646,-0.00811768,-0.00796509,-0.0090332,-0.00872803,-0.0093689,-0.00918579,-0.00857544,-0.00811768,-0.00811768,-0.00872803,-0.00857544,-0.00762939,-0.00747681,-0.00686646,-0.00656128,-0.00732422,-0.00656128,-0.00656128,-0.00732422,-0.00671387,-0.00762939,-0.00671387,-0.00686646,-0.00686646,-0.00637817,-0.00732422,-0.00637817,-0.00701904,-0.00656128,-0.00747681,-0.00762939,-0.00796509,-0.00796509,-0.00747681,-0.00796509,-0.00762939,-0.00811768,-0.00827026,-0.00872803,-0.00872803,-0.00888062,-0.00778198,-0.00811768,-0.00827026,-0.00811768,-0.00842285,-0.00857544,-0.00811768,-0.00842285,-0.00811768,-0.00762939,-0.00717163,-0.00701904,-0.00671387,-0.00686646,-0.006073,-0.00546265,-0.00497437,-0.00515747,-0.00466919,-0.00497437,-0.00375366,-0.00326538,-0.00421143,-0.00375366,-0.00466919,-0.00390625,-0.00326538,-0.00360107,-0.00341797,-0.00421143,-0.00421143,-0.00360107,-0.00360107,-0.00296021,-0.00296021,-0.00341797,-0.00390625,-0.00421143,-0.00360107,-0.00341797,-0.00341797,-0.00311279,-0.00482178,-0.0045166,-0.00531006,-0.00531006,-0.00686646,-0.00686646,-0.00827026,-0.00732422,-0.00842285,-0.00857544,-0.00997925,-0.0107727,-0.0112305,-0.0113831,-0.0124817,-0.0126343,-0.0143433,-0.0155945,-0.0166931,-0.019165,-0.0210571,-0.0233765,-0.0261841,-0.0286865,-0.0314941,-0.0328979,-0.0339966,-0.0327454,-0.0321045,-0.02948,-0.0263367,-0.0215149,-0.014801,-0.00656128,0.0015564,0.0093689,0.0166931,0.0235291,0.0308838,0.0369568,0.0410156,0.0438232,0.0441284,0.0439758,0.0420837,0.0394592,0.0363159,0.0339966,0.0310364,0.0280762,0.026825,0.0254211,0.025116,0.0255737,0.0271301,0.0280762,0.0285339,0.0299377,0.0296326,0.0300903,0.0286865,0.0286865,0.0277405,0.0274353,0.0254211,0.0247803,0.0249329,0.0258789,0.0285339,0.0308838,0.0324402,0.0354004,0.0380554,0.0431824,0.046936,0.0500488,0.0508423,0.0516052,0.0514526,0.0508423,0.0500488,0.048645,0.0456848,0.0422668,0.0383606,0.0350952,0.0330505,0.0303955,0.0265198,0.0229187,0.0180969,0.0140381,0.00997925,0.00576782,0.00140381,-0.00341797,-0.00857544,-0.0121765,-0.0160522,-0.0182495,-0.0210571,-0.0226135,-0.0237122,-0.0238647,-0.0240173,-0.0227661,-0.0227661,-0.0205688,-0.0196533,-0.0173035,-0.0160522,-0.0151367,-0.0144958,-0.0129395,-0.0112305,-0.0105896,-0.00918579,-0.0090332,-0.00811768,-0.00686646,-0.00482178,-0.00296021,-0.00219727,-0.00170898,-0.00186157,-0.00219727,-0.00265503,-0.00341797,-0.00466919,-0.00656128,-0.0101318,-0.0121765,-0.0143433,-0.0171509,-0.0195007,-0.0219727,-0.0237122,-0.0249329,-0.0252686,-0.0257263,-0.0247803,-0.0249329,-0.0233765,-0.0210571,-0.0190125,-0.0166931,-0.0144958,-0.0121765,-0.0102844,-0.00747681,-0.0045166,-0.00234985,-0.000305176,0.00186157,0.00546265,0.00747681,0.00952148,0.0123291,0.0137329,0.0165405,0.0190125,0.0209045,0.0221558,0.0224609,0.0237122,0.0235291,0.0241699,0.0229187,0.0223083,0.0201111,0.019165,0.0169983,0.0158997,0.0133972,0.0116882,0.00997925,0.00796509,0.00778198,0.00576782,0.00546265,0.00405884,0.00360107,0.00250244,0.00296021,0.00234985,0.00296021,0.00250244,0.00250244,0.00250244,0.00341797,0.00375366,0.00497437,0.00515747,0.00561523,0.00592041,0.00671387,0.00592041,0.00622559,0.00561523,0.00497437,0.00341797,0.00280762,-0.000152588,-0.000793457,-0.00436401,-0.00546265,-0.00762939,-0.00997925,-0.0121765,-0.0141907,-0.0162048,-0.0173035,-0.0188599,-0.0202637,-0.0209045,-0.0221558,-0.0227661,-0.0232239,-0.0230713,-0.0238647,-0.0241699,-0.0244751,-0.0241699,-0.0235291,-0.0233765,-0.0213623,-0.020752,-0.0193481,-0.0173035,-0.0152893,-0.0126343,-0.0109253,-0.00842285,-0.00622559,-0.00405884,-0.00311279,-0.000457764,0,0.00140381,0.00170898,0.00250244,0.00219727,0.00201416,0.00109863,0.000793457,0.000152588,-0.000793457,-0.00109863,-0.00265503,-0.00280762,-0.00405884,-0.00405884,-0.00405884,-0.00421143,-0.00466919,-0.00421143,-0.00515747,-0.00405884,-0.00436401,-0.00360107,-0.00421143,-0.00390625,-0.00421143,-0.00421143,-0.00436401,-0.00405884,-0.00436401,-0.00360107,-0.00405884,-0.00280762,-0.00296021,-0.0015564,-0.00170898,-0.000946045,-0.000610352,-0.000305176,0.000152588,-0.000793457,-0.00109863,-0.0015564,-0.00341797,-0.00405884,-0.00622559,-0.00811768,-0.00997925,-0.0121765,-0.0135803,-0.0154419,-0.0165405,-0.0190125,-0.0201111,-0.0212097,-0.0218201,-0.0229187,-0.0226135,-0.0241699,-0.0240173,-0.0243225,-0.0237122,-0.0238647,-0.0223083,-0.0221558,-0.0212097,-0.0204163,-0.0195007,-0.0190125,-0.0180969,-0.0166931,-0.0162048,-0.0154419,-0.0149536,-0.0141907,-0.0141907,-0.0135803,-0.0124817,-0.0124817,-0.0126343,-0.0113831,-0.0113831,-0.0113831,-0.010437,-0.0105896,-0.00997925,-0.00952148,-0.0090332,-0.00888062,-0.00827026,-0.00888062,-0.00842285,-0.00827026,-0.00857544,-0.00872803,-0.00872803,-0.00872803,-0.00857544,-0.00762939,-0.00717163,-0.00637817,-0.00622559,-0.00466919,-0.00390625,-0.00234985,-0.00140381,-0.000793457,0.000152588,0.0015564,0.00219727,0.00341797,0.00375366,0.00405884,0.00405884,0.0045166,0.00466919,0.00531006,0.00515747,0.00576782,0.00497437,0.00531006,0.00515747,0.00515747,0.00466919,0.00436401,0.00296021,0.00250244,0.00140381,0.000946045,-0.000457764,-0.000946045,-0.00341797,-0.00326538,-0.00466919,-0.006073,-0.00592041,-0.00778198,-0.00872803,-0.00888062,-0.0102844,-0.00982666,-0.0102844,-0.0115356,-0.0113831,-0.0126343,-0.0143433,-0.0146484,-0.0158997,-0.0180969,-0.0195007,-0.0226135,-0.025116,-0.0282288,-0.031189,-0.0354004,-0.0393066,-0.042572,-0.0438232,-0.0436707,-0.0417786,-0.0402222,-0.0379028,-0.0333557,-0.0269775,-0.0162048,-0.00656128,0.00390625,0.0113831,0.0193481,0.0266724,0.0354004,0.0434875,0.047699,0.0491028,0.0484924,0.0466309,0.0453796,0.0428772,0.0402222,0.0375671,0.0349121,0.0332031,0.0325928,0.0327454,0.0347595,0.0366516,0.038208,0.0397644,0.0413208,0.0420837,0.0422668,0.0413208,0.039917,0.0380554,0.0354004,0.0325928,0.0300903,0.0291443,0.0285339,0.0293274,0.031189,0.0325928,0.0339966,0.038208,0.042572,0.0480347,0.0519104,0.0534668,0.053009,0.0531616,0.0533142,0.0536499,0.0527039,0.0506592,0.0464783,0.0427246,0.0402222,0.0386658,0.037262,0.0343018,0.0314941,0.0271301,0.0223083,0.0182495,0.0133972,0.00811768,0.00296021,-0.0045166,-0.0105896,-0.0169983,-0.0218201,-0.0257263,-0.0291443,-0.0313416,-0.0344543,-0.0346069,-0.0344543,-0.033844,-0.0319519,-0.0305481,-0.0286865,-0.0275879,-0.026825,-0.0260315,-0.0247803,-0.0232239,-0.0216675,-0.0210571,-0.0209045,-0.0198059,-0.0177612,-0.0141907,-0.0105896,-0.00778198,-0.00576782,-0.00466919,-0.00201416,-0.000610352,0.000793457,0.00140381,-0.000152588,-0.00140381,-0.00436401,-0.00701904,-0.00997925,-0.0124817,-0.0157471,-0.0182495,-0.0215149,-0.0232239,-0.0255737,-0.0263367,-0.0257263,-0.0258789,-0.0243225,-0.0232239,-0.0218201,-0.0205688,-0.0184021,-0.0165405,-0.0144958,-0.0124817,-0.0110779,-0.00982666,-0.00762939,-0.00482178,-0.0015564,0.00170898,0.0045166,0.00762939,0.0110779,0.0149536,0.0202637,0.0235291,0.0266724,0.0286865,0.0302429,0.0314941,0.0325928,0.0332031,0.0322876,0.0310364,0.0275879,0.025116,0.0224609,0.020752,0.0188599,0.0176086,0.0155945,0.0144958,0.0124817,0.0115356,0.0110779,0.0107727,0.0093689,0.00827026,0.00622559,0.00421143,0.00219727,0.00125122,0.000152588,-0.000305176,-0.00186157,-0.00280762,-0.00280762,-0.00186157,-0.000457764,0.00140381,0.00201416,0.00311279,0.00360107,0.0045166,0.00497437,0.00482178,0.0045166,0.00201416,0.000305176,-0.00219727,-0.00360107,-0.0045166,-0.00576782,-0.00686646,-0.00872803,-0.0093689,-0.00967407,-0.0102844,-0.00997925,-0.0110779,-0.0123291,-0.0140381,-0.0162048,-0.0184021,-0.0199585,-0.0218201,-0.0237122,-0.0254211,-0.0266724,-0.0275879,-0.0274353,-0.0258789,-0.0246277,-0.0216675,-0.0190125,-0.0165405,-0.0133972,-0.0109253,-0.00778198,-0.00497437,-0.00360107,-0.00201416,-0.00109863,-0.000793457,0,0.000793457,0.0015564,0.0015564,0.00201416,0.00265503,0.00375366,0.00421143,0.00637817,0.00592041,0.00717163,0.00622559,0.00656128,0.00671387,0.00531006,0.00561523,0.00375366,0.00265503,0.000610352,-0.00109863,-0.00201416,-0.00326538,-0.00405884,-0.00561523,-0.00592041,-0.00717163,-0.00701904,-0.00762939,-0.00762939,-0.00811768,-0.00796509,-0.00827026,-0.00918579,-0.00918579,-0.0090332,-0.00967407,-0.00918579,-0.00918579,-0.00872803,-0.00888062,-0.00811768,-0.00778198,-0.00778198,-0.00637817,-0.00686646,-0.00637817,-0.00732422,-0.00762939,-0.0090332,-0.00982666,-0.0110779,-0.0132446,-0.0149536,-0.0171509,-0.0190125,-0.0205688,-0.0215149,-0.0224609,-0.0235291,-0.0240173,-0.0237122,-0.0237122,-0.0230713,-0.0227661,-0.0221558,-0.0218201,-0.0216675,-0.0224609,-0.0227661,-0.0224609,-0.0232239,-0.0232239,-0.0233765,-0.0237122,-0.0229187,-0.0219727,-0.0198059,-0.0179443,-0.0155945,-0.0137329,-0.0109253,-0.00952148,-0.00686646,-0.0045166,-0.00326538,-0.00265503,-0.00234985,-0.00360107,-0.00280762,-0.00421143,-0.0045166,-0.00561523,-0.00686646,-0.00747681,-0.00747681,-0.00842285,-0.00671387,-0.00796509,-0.00592041,-0.00592041,-0.00436401,-0.00405884,-0.00360107,-0.00341797,-0.00296021,-0.00326538,-0.00201416,-0.00265503,-0.00219727,-0.00219727,-0.00280762,-0.00234985,-0.00234985,-0.00125122,-0.00125122,-0.000457764,0,0.000610352,0.00125122,0.00201416,0.00109863,0.00140381,0.000457764,0.00140381,0.000946045,0.00186157,0.00170898,0.000946045,0.000946045,-0.000152588,0.000610352,0.000152588,-0.000152588,-0.00186157,-0.00390625,-0.00622559,-0.00857544,-0.0107727,-0.0137329,-0.0169983,-0.0204163,-0.0240173,-0.0274353,-0.0308838,-0.0332031,-0.037262,-0.0413208,-0.0455322,-0.0491028,-0.0527039,-0.0531616,-0.052063,-0.0502014,-0.0480347,-0.0447388,-0.0400696,-0.0322876,-0.0196533,-0.00701904,0.00436401,0.0129395,0.0213623,0.0305481,0.041626,0.0517578,0.0567627,0.0567627,0.0531616,0.0498962,0.0478821,0.0472412,0.0453796,0.0424194,0.0385132,0.036499,0.0366516,0.0403748,0.0444336,0.0470886,0.046936,0.0470886,0.0478821,0.0473938,0.046936,0.0431824,0.0383606,0.0333557,0.0275879,0.0240173,0.0201111,0.0182495,0.0173035,0.0184021,0.0216675,0.0238647,0.0283813,0.0332031,0.0403748,0.0461426,0.0500488,0.0505066,0.0489502,0.0483398,0.0487976,0.0497437,0.0494385,0.046936,0.0444336,0.0417786,0.042572,0.0434875,0.0452271,0.0455322,0.0431824,0.0386658,0.0336914,0.0288391,0.0243225,0.0193481,0.0107727,0.000457764,-0.0093689,-0.0165405,-0.0223083,-0.0261841,-0.0307312,-0.0350952,-0.0388184,-0.0397644,-0.0397644,-0.0388184,-0.0385132,-0.0383606,-0.0388184,-0.0400696,-0.040863,-0.0411682,-0.0402222,-0.0391235,-0.0383606,-0.0366516,-0.0341492,-0.0310364,-0.0241699,-0.0179443,-0.0112305,-0.00592041,-0.00219727,0.00170898,0.00531006,0.00796509,0.010437,0.0112305,0.00997925,0.00732422,0.00466919,0.00170898,0.000457764,-0.00140381,-0.00436401,-0.00701904,-0.010437,-0.0121765,-0.013092,-0.0146484,-0.014801,-0.0163574,-0.0169983,-0.0184021,-0.0201111,-0.0216675,-0.0223083,-0.0229187,-0.0226135,-0.0227661,-0.0227661,-0.0230713,-0.0212097,-0.0173035,-0.0133972,-0.00857544,-0.006073,-0.00186157,0.00311279,0.00857544,0.0154419,0.0209045,0.0252686,0.0274353,0.0307312,0.0341492,0.0375671,0.0393066,0.0397644,0.0383606,0.036499,0.035553,0.0352478,0.0344543,0.033844,0.0314941,0.0296326,0.0283813,0.0266724,0.0247803,0.0237122,0.0201111,0.0173035,0.0135803,0.00918579,0.00497437,0.00109863,-0.00140381,-0.00466919,-0.00701904,-0.00952148,-0.0119934,-0.0118408,-0.0119934,-0.00918579,-0.0093689,-0.00717163,-0.00762939,-0.00717163,-0.00561523,-0.00421143,-0.00265503,-0.00360107,-0.0045166,-0.00561523,-0.00531006,-0.00405884,-0.00201416,-0.00186157,-0.0015564,-0.000793457,0.00109863,0.00311279,0.00341797,0.00421143,0.00234985,-0.000152588,-0.00186157,-0.00515747,-0.00842285,-0.0110779,-0.0146484,-0.0177612,-0.0202637,-0.0218201,-0.0233765,-0.0232239,-0.0224609,-0.0221558,-0.0205688,-0.0199585,-0.0187073,-0.0184021,-0.0169983,-0.0157471,-0.0154419,-0.0152893,-0.0152893,-0.0154419,-0.0137329,-0.0124817,-0.00918579,-0.00747681,-0.00497437,-0.00234985,0.00125122,0.00482178,0.00842285,0.0109253,0.0119934,0.0129395,0.0140381,0.0151367,0.014801,0.0143433,0.0132446,0.0123291,0.0116882,0.0115356,0.0102844,0.00952148,0.00842285,0.00732422,0.00576782,0.00390625,0.0015564,-0.000946045,-0.00421143,-0.00671387,-0.00982666,-0.013092,-0.0155945,-0.0187073,-0.0204163,-0.0218201,-0.0216675,-0.0226135,-0.0223083,-0.0223083,-0.0215149,-0.0196533,-0.0188599,-0.0173035,-0.0176086,-0.0165405,-0.0173035,-0.0165405,-0.0158997,-0.0165405,-0.0165405,-0.0168457,-0.0166931,-0.0165405,-0.0162048,-0.0157471,-0.0163574,-0.0155945,-0.0165405,-0.0157471,-0.0166931,-0.0163574,-0.0179443,-0.0184021,-0.019165,-0.0204163,-0.0221558,-0.0233765,-0.0247803,-0.0260315,-0.0272827,-0.0277405,-0.0296326,-0.0302429,-0.0313416,-0.0305481,-0.0299377,-0.0285339,-0.0277405,-0.0263367,-0.025116,-0.0229187,-0.0201111,-0.0177612,-0.0160522,-0.0140381,-0.0118408,-0.0102844,-0.00778198,-0.00622559,-0.00421143,-0.00341797,-0.00170898,-0.000305176,0.00109863,0.00140381,0.0015564,0.00265503,0.00311279,0.00311279,0.00280762,0.00186157,0.000305176,-0.000946045,-0.00170898,-0.00311279,-0.00466919,-0.00762939,-0.00842285,-0.0109253,-0.0109253,-0.0116882,-0.0124817,-0.0144958,-0.0155945,-0.0173035,-0.0176086,-0.0187073,-0.0201111,-0.0240173,-0.0257263,-0.0280762,-0.0286865,-0.0297852,-0.0321045,-0.0350952,-0.0383606,-0.0405273,-0.0427246,-0.0472412,-0.0533142,-0.0586243,-0.0597229,-0.0572205,-0.052063,-0.0458374,-0.0422668,-0.0363159,-0.0255737,-0.00686646,0.013092,0.0305481,0.043335,0.0514526,0.0609741,0.0731201,0.0845032,0.0899658,0.0854492,0.0748291,0.0625305,0.0544128,0.0509949,0.0467834,0.0419312,0.0363159,0.035553,0.0407104,0.0523987,0.0625305,0.0692139,0.0712585,0.0718689,0.0722046,0.0714111,0.0681458,0.0587769,0.0462952,0.0336914,0.0224609,0.0152893,0.00918579,0.00592041,0.00622559,0.0105896,0.0177612,0.0266724,0.0368042,0.0453796,0.0561218,0.0657959,0.0698547,0.0682983,0.0609741,0.0525513,0.0455322,0.0413208,0.0368042,0.02948,0.0224609,0.0163574,0.0168457,0.0213623,0.0272827,0.0307312,0.0302429,0.0261841,0.0224609,0.0187073,0.0140381,0.00546265,-0.00686646,-0.0210571,-0.0335083,-0.0428772,-0.0502014,-0.0542603,-0.0598755,-0.0623779,-0.0632935,-0.0615845,-0.059082,-0.0566101,-0.0550537,-0.0517578,-0.052063,-0.0533142,-0.0556641,-0.0578613,-0.0555115,-0.0531616,-0.0487976,-0.0466309,-0.0427246,-0.0357056,-0.0249329,-0.0119934,-0.000793457,0.00747681,0.0119934,0.0162048,0.0209045,0.025116,0.0280762,0.0272827,0.0247803,0.0216675,0.0196533,0.0210571,0.0230713,0.0244751,0.0238647,0.0233765,0.0226135,0.0241699,0.0243225,0.0229187,0.0196533,0.014801,0.0105896,0.00686646,0.00201416,-0.00326538,-0.00827026,-0.0116882,-0.0137329,-0.0138855,-0.014801,-0.0140381,-0.0127869,-0.0093689,-0.00482178,-0.00109863,0.00234985,0.00436401,0.00842285,0.0129395,0.0180969,0.0209045,0.0233765,0.025116,0.0271301,0.0307312,0.0330505,0.0346069,0.0335083,0.0322876,0.0308838,0.0302429,0.0289917,0.0277405,0.0244751,0.0223083,0.0196533,0.0174561,0.0146484,0.0115356,0.00762939,0.00326538,-0.00140381,-0.00686646,-0.0124817,-0.0187073,-0.0243225,-0.0296326,-0.0335083,-0.0369568,-0.0394592,-0.041626,-0.0422668,-0.0417786,-0.0400696,-0.0371094,-0.035553,-0.0336914,-0.0314941,-0.0296326,-0.0272827,-0.0243225,-0.0227661,-0.0205688,-0.0179443,-0.0138855,-0.0093689,-0.00515747,-0.000946045,0.00390625,0.00857544,0.0132446,0.0171509,0.0205688,0.0212097,0.0216675,0.0219727,0.0223083,0.0201111,0.0180969,0.0162048,0.0141907,0.0137329,0.0137329,0.0127869,0.0132446,0.0115356,0.0119934,0.0112305,0.010437,0.00872803,0.00546265,0.00250244,-0.000152588,-0.00170898,-0.00326538,-0.00421143,-0.0045166,-0.00482178,-0.00375366,-0.00170898,0.000610352,0.00280762,0.00466919,0.00656128,0.00671387,0.00872803,0.00811768,0.00872803,0.00762939,0.00827026,0.00796509,0.00857544,0.0090332,0.00982666,0.0109253,0.013092,0.0141907,0.014801,0.0140381,0.0123291,0.010437,0.00686646,0.00311279,-0.00186157,-0.00732422,-0.0126343,-0.0174561,-0.0221558,-0.0247803,-0.0285339,-0.0297852,-0.0316467,-0.0324402,-0.0343018,-0.0346069,-0.0368042,-0.0374146,-0.0394592,-0.0403748,-0.0431824,-0.044281,-0.0450745,-0.0450745,-0.0441284,-0.0428772,-0.0410156,-0.0389709,-0.0363159,-0.0332031,-0.0303955,-0.0272827,-0.025116,-0.0233765,-0.0227661,-0.0212097,-0.0202637,-0.0188599,-0.0182495,-0.0173035,-0.0165405,-0.0155945,-0.0137329,-0.0124817,-0.0109253,-0.0101318,-0.00982666,-0.00952148,-0.00997925,-0.0110779,-0.0124817,-0.0140381,-0.0158997,-0.0179443,-0.0190125,-0.0199585,-0.0209045,-0.0204163,-0.0210571,-0.020752,-0.0209045,-0.0209045,-0.0204163,-0.0205688,-0.0210571,-0.0215149,-0.0213623,-0.0204163,-0.0199585,-0.0185547,-0.0180969,-0.0174561,-0.0166931,-0.0163574,-0.0146484,-0.0137329,-0.0141907,-0.0154419,-0.0165405,-0.0190125,-0.0196533,-0.0215149,-0.0235291,-0.0271301,-0.031189,-0.0341492,-0.036499,-0.0394592,-0.0434875,-0.0492859,-0.0572205,-0.0656433,-0.0740662,-0.0805969,-0.0840454,-0.0826416,-0.0757751,-0.0657959,-0.0539551,-0.0397644,-0.0213623,0.00497437,0.0344543,0.0628357,0.081543,0.0921631,0.0966797,0.102295,0.109131,0.112274,0.104767,0.0865479,0.0676575,0.0561218,0.0558167,0.0640869,0.0714111,0.076416,0.0830994,0.0968323,0.117706,0.136749,0.145782,0.141571,0.128632,0.111938,0.0957336,0.0739136,0.0464783,0.0151367,-0.0118408,-0.0296326,-0.0374146,-0.0386658,-0.0352478,-0.0282288,-0.0110779,0.0090332,0.0291443,0.0436707,0.0517578,0.0548706,0.0561218,0.0522461,0.0407104,0.0180969,-0.00531006,-0.0233765,-0.0313416,-0.0308838,-0.0293274,-0.0255737,-0.0198059,-0.00576782,0.0149536,0.0383606,0.0539551,0.0601807,0.0572205,0.0494385,0.0414734,0.0282288,0.0116882,-0.010437,-0.0343018,-0.0534668,-0.0675049,-0.0746765,-0.0793762,-0.0810852,-0.0790405,-0.0743713,-0.0659485,-0.0592651,-0.0548706,-0.0536499,-0.0527039,-0.053009,-0.0555115,-0.0604858,-0.0671997,-0.071106,-0.0701599,-0.0654907,-0.0586243,-0.0528564,-0.0434875,-0.0310364,-0.0138855,0.00421143,0.0205688,0.0322876,0.0414734,0.0514526,0.0614319,0.0706177,0.0767212,0.0788879,0.0790405,0.0785828,0.0799866,0.0793762,0.0791931,0.0760803,0.0718689,0.0676575,0.0640869,0.0604858,0.0559692,0.0505066,0.0447388,0.0396118,0.0343018,0.0283813,0.0195007,0.0102844,0.000946045,-0.00762939,-0.014801,-0.0241699,-0.0333557,-0.042572,-0.047699,-0.0500488,-0.0497437,-0.0481873,-0.0466309,-0.0420837,-0.0354004,-0.0275879,-0.0195007,-0.0137329,-0.00952148,-0.00686646,-0.00265503,-0.000305176,0.0015564,-0.000152588,-0.00109863,-0.000793457,0,0.00341797,0.00497437,0.00656128,0.0093689,0.0115356,0.0146484,0.0171509,0.0165405,0.014801,0.0101318,0.00671387,0.00109863,-0.00622559,-0.0133972,-0.0221558,-0.0300903,-0.0358582,-0.0414734,-0.04599,-0.0502014,-0.0533142,-0.0552063,-0.0550537,-0.0539551,-0.0522461,-0.0509949,-0.0473938,-0.0430298,-0.037262,-0.0313416,-0.0260315,-0.0213623,-0.0152893,-0.00918579,-0.00201416,0.00390625,0.0093689,0.014801,0.0212097,0.0286865,0.0363159,0.0445862,0.0511475,0.0580139,0.0645447,0.0698547,0.073761,0.0768738,0.0776367,0.076416,0.073761,0.0681458,0.0603333,0.0533142,0.0450745,0.0375671,0.0297852,0.0226135,0.0144958,0.00952148,0.00436401,0.0015564,-0.00201416,-0.006073,-0.0110779,-0.0165405,-0.0216675,-0.0274353,-0.0327454,-0.0385132,-0.0427246,-0.0466309,-0.0484924,-0.0484924,-0.0466309,-0.043335,-0.0377197,-0.0317993,-0.0243225,-0.0176086,-0.0102844,-0.00390625,0.00201416,0.00796509,0.0115356,0.0133972,0.0143433,0.0152893,0.0160522,0.0166931,0.0154419,0.014801,0.0132446,0.0126343,0.0107727,0.00997925,0.00717163,0.0045166,-0.000152588,-0.00405884,-0.00872803,-0.0123291,-0.0185547,-0.0237122,-0.0293274,-0.0344543,-0.0394592,-0.0439758,-0.0487976,-0.0527039,-0.0558167,-0.0578613,-0.059082,-0.0587769,-0.0587769,-0.0558167,-0.0539551,-0.0491028,-0.0461426,-0.0413208,-0.0371094,-0.0314941,-0.0265198,-0.0223083,-0.0184021,-0.0152893,-0.0109253,-0.00796509,-0.00421143,-0.00140381,-0.000152588,0.00170898,0.00296021,0.00515747,0.00656128,0.00686646,0.00656128,0.00515747,0.00405884,0.000793457,-0.00170898,-0.00622559,-0.0113831,-0.0154419,-0.0202637,-0.0240173,-0.0286865,-0.033844,-0.0396118,-0.0438232,-0.0480347,-0.0519104,-0.0562744,-0.0620422,-0.0665894,-0.0706177,-0.0732727,-0.07547,-0.0782776,-0.0805969,-0.084198,-0.0873108,-0.0905762,-0.0941772,-0.0969849,-0.0997925,-0.101959,-0.103363,-0.101654,-0.0932312,-0.0790405,-0.0562744,-0.0307312,-0.00250244,0.0249329,0.0533142,0.0838928,0.113342,0.137207,0.151703,0.1539,0.147491,0.138153,0.128479,0.118958,0.108826,0.0955811,0.0843506,0.08078,0.086853,0.10025,0.116943,0.132385,0.144531,0.152191,0.156219,0.152802,0.140656,0.117889,0.0877686,0.0531616,0.0182495,-0.0146484,-0.0424194,-0.0612793,-0.0706177,-0.0692139,-0.0592651,-0.0414734,-0.0187073,0.00701904,0.0324402,0.0516052,0.0631409,0.063446,0.0562744,0.0420837,0.0237122,0.00201416,-0.0226135,-0.0462952,-0.0648499,-0.0726624,-0.0690613,-0.0555115,-0.0366516,-0.014801,0.00842285,0.0317993,0.0527039,0.0667419,0.0712585,0.0640869,0.0467834,0.0224609,-0.00701904,-0.0375671,-0.0676575,-0.0926208,-0.111633,-0.121918,-0.12442,-0.119446,-0.106659,-0.0895081,-0.0697021,-0.0506592,-0.0360107,-0.0255737,-0.0213623,-0.0216675,-0.0258789,-0.0332031,-0.0439758,-0.0534668,-0.0595703,-0.0601807,-0.0531616,-0.0410156,-0.0237122,-0.00280762,0.0218201,0.0495911,0.0770264,0.102295,0.119598,0.132385,0.138916,0.142059,0.140656,0.135193,0.126282,0.115234,0.105865,0.0982361,0.0923157,0.0881042,0.0843506,0.0823364,0.0799866,0.0779724,0.0732727,0.0662537,0.0555115,0.0422668,0.0266724,0.00857544,-0.00982666,-0.0303955,-0.0495911,-0.0665894,-0.0812378,-0.0921631,-0.0999451,-0.104462,-0.10556,-0.104156,-0.100403,-0.0949707,-0.0891724,-0.0830994,-0.0768738,-0.0709534,-0.0653381,-0.0597229,-0.0545654,-0.0497437,-0.0439758,-0.0383606,-0.0317993,-0.0246277,-0.0169983,-0.00888062,-0.00140381,0.006073,0.0123291,0.0193481,0.025116,0.0305481,0.0330505,0.0321045,0.0308838,0.0297852,0.0293274,0.0280762,0.0227661,0.0165405,0.00888062,0.00280762,-0.00436401,-0.0118408,-0.019165,-0.0247803,-0.0279236,-0.0288391,-0.0289917,-0.0269775,-0.0244751,-0.0212097,-0.0169983,-0.0119934,-0.00762939,-0.00341797,0.000152588,0.00296021,0.00701904,0.00918579,0.0129395,0.0163574,0.0210571,0.0279236,0.0350952,0.0445862,0.0536499,0.0608215,0.0656433,0.0697021,0.076416,0.0835876,0.086853,0.0854492,0.0790405,0.0717163,0.0645447,0.0561218,0.0441284,0.0313416,0.0187073,0.0093689,0.00250244,-0.00341797,-0.0102844,-0.0158997,-0.0221558,-0.0272827,-0.0319519,-0.0366516,-0.0430298,-0.0502014,-0.0586243,-0.0675049,-0.0760803,-0.083252,-0.0882568,-0.0916748,-0.0927734,-0.0896606,-0.0840454,-0.0743713,-0.0642395,-0.053009,-0.0397644,-0.0246277,-0.0105896,0.000793457,0.00778198,0.0138855,0.0195007,0.0244751,0.0280762,0.02948,0.031189,0.0327454,0.0354004,0.038208,0.0413208,0.0452271,0.0478821,0.0491028,0.050354,0.0487976,0.0464783,0.0413208,0.0343018,0.0252686,0.0138855,0.00109863,-0.0105896,-0.0232239,-0.0347595,-0.0464783,-0.0555115,-0.0626831,-0.0664368,-0.0670471,-0.0667419,-0.0657959,-0.0657959,-0.063446,-0.0629883,-0.0611267,-0.0611267,-0.0609741,-0.0611267,-0.0601807,-0.0597229,-0.0580139,-0.0566101,-0.0533142,-0.0489502,-0.0419312,-0.0352478,-0.0277405,-0.0215149,-0.0158997,-0.0112305,-0.00811768,-0.00622559,-0.00701904,-0.00952148,-0.0144958,-0.0205688,-0.0286865,-0.0379028,-0.048645,-0.0598755,-0.0701599,-0.0795288,-0.0879517,-0.0957336,-0.105713,-0.113983,-0.120697,-0.123657,-0.123169,-0.118652,-0.109131,-0.0924683,-0.0718689,-0.04599,-0.0184021,0.00762939,0.0317993,0.0531616,0.0723572,0.0856018,0.0940247,0.0960388,0.0958862,0.0951233,0.0971375,0.101807,0.108063,0.116302,0.126282,0.140808,0.159363,0.179138,0.198029,0.213135,0.222351,0.224823,0.220642,0.206909,0.184143,0.152802,0.116943,0.0790405,0.0431824,0.0115356,-0.0137329,-0.0302429,-0.0374146,-0.0357056,-0.0261841,-0.0141907,-0.00186157,0.00827026,0.0140381,0.0140381,0.00405884,-0.0123291,-0.0360107,-0.0626831,-0.0896606,-0.113525,-0.132385,-0.14328,-0.145325,-0.137054,-0.1185,-0.092926,-0.0618896,-0.0300903,-0.00186157,0.0210571,0.0357056,0.041626,0.0377197,0.0240173,0.00265503,-0.0232239,-0.0491028,-0.0701599,-0.0865479,-0.092926,-0.094635,-0.0884094,-0.0746765,-0.0572205,-0.0375671,-0.0185547,-0.00311279,0.00576782,0.00997925,0.00686646,-0.000610352,-0.0132446,-0.0275879,-0.0422668,-0.0539551,-0.0611267,-0.0612793,-0.0544128,-0.0403748,-0.0209045,0.00360107,0.0302429,0.0575256,0.0827942,0.103363,0.118195,0.128021,0.131744,0.131744,0.127533,0.122406,0.117554,0.115082,0.114899,0.11615,0.119904,0.124115,0.129425,0.133301,0.134094,0.130829,0.124573,0.113678,0.0993347,0.0818481,0.0620422,0.041626,0.0205688,0.000946045,-0.0174561,-0.0332031,-0.0478821,-0.0604858,-0.0712585,-0.08078,-0.0890198,-0.0982361,-0.107117,-0.115997,-0.123505,-0.128937,-0.133453,-0.135651,-0.134552,-0.130493,-0.123505,-0.115692,-0.106171,-0.0960388,-0.0854492,-0.0745239,-0.0657959,-0.0575256,-0.0514526,-0.0444336,-0.0375671,-0.0291443,-0.0215149,-0.0126343,-0.00436401,0.00671387,0.0180969,0.0291443,0.0396118,0.0487976,0.0556641,0.0614319,0.0628357,0.0620422,0.0575256,0.0511475,0.0436707,0.0349121,0.0272827,0.0198059,0.0146484,0.0115356,0.0132446,0.0155945,0.0199585,0.0249329,0.0291443,0.0322876,0.033844,0.0325928,0.0293274,0.0247803,0.0177612,0.0110779,0.00637817,0.00341797,0.00390625,0.00592041,0.0109253,0.019165,0.0302429,0.041626,0.0519104,0.0600281,0.0645447,0.0667419,0.0643921,0.0587769,0.0505066,0.0403748,0.0313416,0.0184021,0.006073,-0.00436401,-0.0102844,-0.00778198,-0.00796509,-0.00622559,-0.00732422,-0.00888062,-0.00827026,-0.0124817,-0.0162048,-0.0279236,-0.0413208,-0.0548706,-0.0692139,-0.0785828,-0.0909119,-0.0985413,-0.104004,-0.105865,-0.0974426,-0.0895081,-0.0762329,-0.0639343,-0.0522461,-0.0375671,-0.0255737,-0.0152893,-0.0119934,-0.00918579,-0.00888062,-0.00762939,-0.00732422,-0.00717163,-0.00762939,-0.00622559,0.000793457,0.0102844,0.0230713,0.0325928,0.0422668,0.0500488,0.0555115,0.0594177,0.0584717,0.0523987,0.0427246,0.0297852,0.0158997,0.000946045,-0.0132446,-0.0282288,-0.0405273,-0.0500488,-0.0567627,-0.0604858,-0.0632935,-0.0661011,-0.0654907,-0.0671997,-0.0686035,-0.0715637,-0.0802917,-0.0891724,-0.101654,-0.111786,-0.121918,-0.13208,-0.141113,-0.149689,-0.15451,-0.157471,-0.154663,-0.149384,-0.14267,-0.133942,-0.123962,-0.107574,-0.0852966,-0.0561218,-0.0233765,0.00796509,0.0360107,0.0622253,0.0845032,0.104462,0.120697,0.129578,0.130676,0.125519,0.11911,0.112732,0.111481,0.113831,0.118958,0.123657,0.131592,0.140167,0.152191,0.165131,0.176514,0.184753,0.185699,0.178986,0.164337,0.14328,0.11554,0.0830994,0.0478821,0.0129395,-0.0174561,-0.0389709,-0.0508423,-0.052063,-0.0453796,-0.0328979,-0.0137329,0.00732422,0.0293274,0.0456848,0.0553589,0.054718,0.0434875,0.025116,0.00265503,-0.0216675,-0.0444336,-0.0643921,-0.0805969,-0.0895081,-0.0884094,-0.0774841,-0.0570679,-0.0324402,-0.00622559,0.0157471,0.0319519,0.041626,0.0430298,0.0343018,0.0165405,-0.0093689,-0.0403748,-0.0729675,-0.100891,-0.123016,-0.137207,-0.143433,-0.142059,-0.13269,-0.117401,-0.0993347,-0.0791931,-0.0625305,-0.0508423,-0.0447388,-0.0444336,-0.0487976,-0.0556641,-0.0646973,-0.0751648,-0.0818481,-0.0846558,-0.0796814,-0.0676575,-0.0470886,-0.0229187,0.00482178,0.0336914,0.0622253,0.0891724,0.111633,0.127533,0.137848,0.142212,0.142212,0.140808,0.138611,0.137512,0.136902,0.138,0.140808,0.145325,0.149231,0.153595,0.154053,0.151245,0.144531,0.132843,0.118805,0.10025,0.079834,0.0576782,0.0357056,0.0157471,-0.00265503,-0.0176086,-0.0289917,-0.0394592,-0.0478821,-0.0555115,-0.063446,-0.0712585,-0.0799866,-0.0895081,-0.0993347,-0.109467,-0.118652,-0.124725,-0.127533,-0.125519,-0.118805,-0.108978,-0.0966797,-0.081543,-0.0671997,-0.0514526,-0.0375671,-0.0255737,-0.0187073,-0.0138855,-0.0127869,-0.0119934,-0.0105896,-0.00762939,-0.00311279,0.00311279,0.0119934,0.0226135,0.0347595,0.0464783,0.0558167,0.0629883,0.0654907,0.0643921,0.0587769,0.0497437,0.0358582,0.0210571,0.00531006,-0.00796509,-0.0176086,-0.0244751,-0.0257263,-0.0243225,-0.0185547,-0.0110779,-0.000946045,0.00982666,0.0171509,0.0218201,0.0223083,0.0187073,0.0121765,0.00265503,-0.00622559,-0.0152893,-0.0195007,-0.0210571,-0.0171509,-0.00918579,0.00390625,0.0201111,0.0385132,0.057373,0.0723572,0.0837402,0.0895081,0.0888672,0.0818481,0.0697021,0.0531616,0.0361633,0.0190125,0.00497437,-0.00531006,-0.0118408,-0.0137329,-0.0112305,-0.00592041,0.000793457,0.00701904,0.0102844,0.0090332,0.00326538,-0.00671387,-0.020752,-0.038208,-0.057373,-0.0770264,-0.0941772,-0.106171,-0.11319,-0.113983,-0.110229,-0.100555,-0.085907,-0.0678406,-0.0502014,-0.0347595,-0.0230713,-0.0160522,-0.0118408,-0.0124817,-0.0162048,-0.0230713,-0.0310364,-0.0369568,-0.0407104,-0.0394592,-0.0347595,-0.0269775,-0.0168457,-0.00515747,0.00515747,0.0143433,0.0196533,0.0196533,0.0141907,0.00341797,-0.0119934,-0.0308838,-0.053009,-0.0751648,-0.0969849,-0.116302,-0.132233,-0.145325,-0.1539,-0.15921,-0.159515,-0.157471,-0.151398,-0.140167,-0.124573,-0.101654,-0.0743713,-0.0470886,-0.0212097,0.00140381,0.0210571,0.0385132,0.0527039,0.0651855,0.0718689,0.0736084,0.0736084,0.07547,0.082489,0.0960388,0.112579,0.130676,0.14859,0.167603,0.188354,0.209564,0.228424,0.242462,0.247437,0.243561,0.229828,0.206116,0.174316,0.135956,0.0938721,0.0514526,0.0132446,-0.0166931,-0.0352478,-0.0420837,-0.0383606,-0.0266724,-0.0105896,0.00872803,0.0274353,0.0405273,0.043335,0.0349121,0.0141907,-0.0171509,-0.053009,-0.0898132,-0.123322,-0.15094,-0.169952,-0.177429,-0.170898,-0.150635,-0.117249,-0.0779724,-0.035553,0.00265503,0.0344543,0.0559692,0.0662537,0.0615845,0.0448914,0.0171509,-0.0173035,-0.0528564,-0.085144,-0.109467,-0.123016,-0.125977,-0.11615,-0.0971375,-0.0701599,-0.0394592,-0.00952148,0.0144958,0.031189,0.0361633,0.0321045,0.0168457,-0.00561523,-0.0324402,-0.0597229,-0.0829468,-0.0999451,-0.107117,-0.103058,-0.0874634,-0.0606384,-0.0280762,0.00811768,0.044281,0.0770264,0.103699,0.123016,0.132996,0.133453,0.12677,0.115082,0.101959,0.0901184,0.0818481,0.0782776,0.0793762,0.0843506,0.0947876,0.107422,0.121155,0.131897,0.138,0.137207,0.130035,0.117706,0.0999451,0.0778198,0.053009,0.0272827,0.00234985,-0.0198059,-0.0374146,-0.0527039,-0.0648499,-0.0740662,-0.081543,-0.0867004,-0.0909119,-0.0949707,-0.0986938,-0.101349,-0.10556,-0.107117,-0.107727,-0.106964,-0.103699,-0.0999451,-0.0941772,-0.0874634,-0.0790405,-0.0698547,-0.0595703,-0.0498962,-0.0396118,-0.0297852,-0.0202637,-0.00952148,0.00280762,0.0157471,0.0305481,0.0444336,0.0572205,0.0690613,0.0785828,0.0874634,0.0935669,0.0955811,0.0921631,0.0845032,0.0750122,0.0625305,0.0513,0.0407104,0.0303955,0.0224609,0.0163574,0.0138855,0.0141907,0.0171509,0.0215149,0.0232239,0.0233765,0.0180969,0.0102844,-0.00219727,-0.0165405,-0.0341492,-0.0523987,-0.0676575,-0.0791931,-0.0838928,-0.0826416,-0.0740662,-0.0604858,-0.0422668,-0.0198059,0.00140381,0.0213623,0.035553,0.0439758,0.0467834,0.0414734,0.0336914,0.0201111,0.00778198,-0.00375366,-0.0123291,-0.0163574,-0.0155945,-0.00918579,0.00170898,0.0168457,0.0316467,0.0458374,0.0564575,0.0612793,0.0600281,0.0511475,0.0361633,0.014801,-0.00997925,-0.0368042,-0.0611267,-0.0812378,-0.094635,-0.101349,-0.100891,-0.0941772,-0.0835876,-0.0703125,-0.0581665,-0.0484924,-0.0430298,-0.0428772,-0.0497437,-0.0632935,-0.0812378,-0.1026,-0.122864,-0.14032,-0.154999,-0.163879,-0.169342,-0.169342,-0.164978,-0.156555,-0.144226,-0.132385,-0.122101,-0.109924,-0.0941772,-0.0714111,-0.0436707,-0.0135803,0.0138855,0.0360107,0.0552063,0.0750122,0.0955811,0.113037,0.12085,0.119751,0.112732,0.106964,0.106323,0.112579,0.121307,0.129089,0.134857,0.141571,0.152008,0.168549,0.18634,0.202393,0.210815,0.208771,0.19693,0.176178,0.148743,0.111328,0.0692139,0.0213623,-0.0218201,-0.0562744,-0.0760803,-0.0804443,-0.0709534,-0.0514526,-0.0243225,0.00811768,0.0422668,0.0734253,0.0932312,0.0985413,0.0838928,0.0545654,0.0176086,-0.020752,-0.0581665,-0.0930786,-0.120209,-0.137207,-0.137848,-0.119446,-0.0840454,-0.0396118,0.00732422,0.0495911,0.0856018,0.108215,0.117889,0.108826,0.0820007,0.0397644,-0.0141907,-0.0709534,-0.122711,-0.166382,-0.195068,-0.207672,-0.2052,-0.186646,-0.15686,-0.119446,-0.0802917,-0.0452271,-0.0185547,-0.00622559,-0.00732422,-0.0237122,-0.048645,-0.0801392,-0.11319,-0.142212,-0.165131,-0.174622,-0.168243,-0.144531,-0.104156,-0.0553589,0.000457764,0.0552063,0.106964,0.153412,0.188202,0.210968,0.217834,0.212067,0.196472,0.178986,0.161377,0.146881,0.136108,0.130341,0.131744,0.139862,0.155304,0.171967,0.18866,0.197388,0.199738,0.193176,0.177917,0.155151,0.124573,0.0863953,0.0444336,0.00109863,-0.0391235,-0.0745239,-0.104156,-0.128632,-0.146423,-0.159027,-0.165436,-0.165436,-0.161682,-0.156403,-0.15094,-0.145782,-0.142822,-0.138763,-0.136444,-0.132843,-0.130188,-0.126923,-0.123657,-0.118042,-0.109619,-0.0982361,-0.0816956,-0.0622253,-0.0385132,-0.0144958,0.0110779,0.0343018,0.057373,0.0779724,0.0982361,0.115692,0.128632,0.137054,0.137665,0.133148,0.124725,0.114288,0.101807,0.0871582,0.0717163,0.0555115,0.0402222,0.0310364,0.0266724,0.0274353,0.0300903,0.0333557,0.0350952,0.035553,0.0321045,0.0244751,0.0115356,-0.00732422,-0.0277405,-0.0492859,-0.0690613,-0.084198,-0.0958862,-0.100403,-0.0975952,-0.0873108,-0.0704651,-0.0480347,-0.0246277,-0.00201416,0.0188599,0.0327454,0.0427246,0.0450745,0.0407104,0.0313416,0.0152893,-0.00201416,-0.0202637,-0.0327454,-0.0410156,-0.0417786,-0.037262,-0.0282288,-0.0173035,-0.00326538,0.00997925,0.020752,0.0237122,0.0188599,0.00311279,-0.0202637,-0.0483398,-0.0799866,-0.112732,-0.144684,-0.17337,-0.194733,-0.206299,-0.208466,-0.203491,-0.193817,-0.182434,-0.170105,-0.159668,-0.152496,-0.151855,-0.158875,-0.171356,-0.18634,-0.19754,-0.197876,-0.183044,-0.153412,-0.111176,-0.0606384,-0.00656128,0.0502014,0.106018,0.16217,0.211426,0.243073,0.255554,0.251801,0.237457,0.222656,0.212524,0.206757,0.201141,0.196625,0.19754,0.209412,0.23465,0.267395,0.300934,0.3237,0.332123,0.324799,0.300781,0.260376,0.203156,0.130341,0.0492859,-0.0299377,-0.0991516,-0.148132,-0.17572,-0.18103,-0.168854,-0.142517,-0.105713,-0.063446,-0.0247803,0.00296021,0.0121765,-0.00234985,-0.0369568,-0.0823364,-0.131897,-0.176819,-0.217499,-0.245422,-0.259918,-0.252747,-0.221252,-0.165283,-0.0955811,-0.0210571,0.046936,0.104614,0.146576,0.171204,0.17337,0.1539,0.112732,0.0575256,-0.00186157,-0.0562744,-0.0980835,-0.123962,-0.133148,-0.123016,-0.0966797,-0.0587769,-0.0144958,0.0302429,0.0653381,0.0882568,0.0915222,0.0767212,0.044281,-0.000457764,-0.0509949,-0.102753,-0.149384,-0.184143,-0.202545,-0.201294,-0.178528,-0.137207,-0.0830994,-0.0229187,0.0360107,0.0896606,0.134247,0.165741,0.181793,0.182587,0.169189,0.147491,0.123016,0.102142,0.0888672,0.0840454,0.0879517,0.102295,0.12381,0.152802,0.182892,0.210327,0.229828,0.238251,0.233246,0.217194,0.189453,0.152954,0.109314,0.0600281,0.0109253,-0.035553,-0.0750122,-0.106171,-0.130035,-0.145935,-0.156067,-0.160126,-0.159515,-0.156219,-0.152191,-0.15155,-0.153412,-0.160126,-0.168701,-0.179321,-0.188354,-0.19693,-0.202545,-0.204254,-0.200195,-0.189911,-0.172455,-0.148743,-0.123322,-0.0940247,-0.0642395,-0.0322876,-0.000152588,0.0328979,0.0628357,0.0896606,0.112274,0.130188,0.145477,0.154053,0.157959,0.154205,0.146729,0.136261,0.128479,0.123505,0.121765,0.121613,0.121307,0.123169,0.125519,0.128326,0.129578,0.125977,0.115997,0.0994873,0.0778198,0.0528564,0.0261841,-0.00311279,-0.0308838,-0.0592651,-0.083252,-0.103058,-0.114594,-0.119293,-0.11554,-0.108521,-0.0977478,-0.0852966,-0.0728149,-0.0604858,-0.052063,-0.0492859,-0.0555115,-0.0662537,-0.0809326,-0.094635,-0.107269,-0.115845,-0.122711,-0.124725,-0.121002,-0.11087,-0.0935669,-0.0760803,-0.0595703,-0.0480347,-0.0439758,-0.0472412,-0.0580139,-0.0726624,-0.0935669,-0.120209,-0.148743,-0.177124,-0.200043,-0.213287,-0.212219,-0.193176,-0.161224,-0.119751,-0.0743713,-0.02948,0.0113831,0.0466309,0.0748291,0.0930786,0.0966797,0.0867004,0.0667419,0.04599,0.0299377,0.0258789,0.0346069,0.054718,0.0823364,0.118652,0.162323,0.212372,0.26474,0.311371,0.34552,0.361908,0.360962,0.343353,0.312012,0.267242,0.213135,0.156219,0.103699,0.0643921,0.0417786,0.036499,0.0461426,0.0665894,0.0944824,0.12381,0.150635,0.16684,0.166199,0.146088,0.105103,0.0455322,-0.0227661,-0.0933838,-0.157623,-0.212219,-0.253052,-0.277222,-0.282074,-0.268036,-0.234039,-0.18866,-0.14032,-0.0968323,-0.0639343,-0.0453796,-0.0414734,-0.0514526,-0.0759277,-0.111633,-0.154663,-0.19693,-0.22998,-0.249329,-0.251801,-0.236053,-0.205658,-0.160767,-0.108368,-0.0523987,0.00170898,0.0461426,0.0784302,0.0943298,0.094635,0.0804443,0.0558167,0.0246277,-0.00515747,-0.0313416,-0.0487976,-0.0534668,-0.0455322,-0.0243225,0.00918579,0.0502014,0.0933838,0.133942,0.167145,0.19101,0.202698,0.202545,0.191925,0.170258,0.143433,0.114288,0.0887146,0.0700073,0.0601807,0.0575256,0.0642395,0.0776367,0.0961914,0.117401,0.13736,0.153259,0.161377,0.161987,0.153748,0.139252,0.118347,0.092926,0.065033,0.0352478,0.00747681,-0.0168457,-0.0352478,-0.0480347,-0.0558167,-0.0597229,-0.0606384,-0.0604858,-0.057373,-0.0558167,-0.0552063,-0.057373,-0.0654907,-0.0762329,-0.0898132,-0.103699,-0.116638,-0.128632,-0.139252,-0.149536,-0.157318,-0.160919,-0.159027,-0.152008,-0.14032,-0.124268,-0.107117,-0.0867004,-0.0657959,-0.0438232,-0.0223083,-0.00497437,0.00747681,0.0132446,0.0152893,0.0132446,0.010437,0.00762939,0.00531006,0.00326538,0.00497437,0.0116882,0.0229187,0.0400696,0.0589294,0.0774841,0.0944824,0.108215,0.119904,0.125366,0.12442,0.115082,0.0979309,0.0725098,0.0448914,0.0168457,-0.00842285,-0.0283813,-0.044281,-0.0523987,-0.0552063,-0.048645,-0.038208,-0.0247803,-0.0152893,-0.0124817,-0.0162048,-0.0280762,-0.0441284,-0.0671997,-0.0949707,-0.128937,-0.164795,-0.19693,-0.220947,-0.235748,-0.24231,-0.241821,-0.23465,-0.222046,-0.203003,-0.17807,-0.147034,-0.113831,-0.08078,-0.04599,-0.0151367,0.00952148,0.0254211,0.0328979,0.0346069,0.0346069,0.033844,0.0322876,0.0307312,0.0302429,0.0336914,0.0461426,0.0675049,0.0965271,0.128479,0.156708,0.181946,0.199585,0.214233,0.222046,0.223114,0.214233,0.196777,0.169952,0.135193,0.0957336,0.0581665,0.0252686,0.000793457,-0.0162048,-0.0202637,-0.0149536,0.00311279,0.0314941,0.0664368,0.0996399,0.127533,0.145172,0.152344,0.147034,0.127869,0.0938721,0.0498962,0.00311279,-0.0379028,-0.0695496,-0.0870056,-0.092926,-0.0862122,-0.0679932,-0.0374146,0.00296021,0.0444336,0.0809326,0.104004,0.111786,0.103058,0.0788879,0.0397644,-0.0113831,-0.0678406,-0.125824,-0.176971,-0.216736,-0.241364,-0.248077,-0.238251,-0.21283,-0.176361,-0.137207,-0.0991516,-0.0667419,-0.0448914,-0.0360107,-0.039917,-0.0569153,-0.0843506,-0.114441,-0.14502,-0.166992,-0.178223,-0.175415,-0.15686,-0.12442,-0.078125,-0.0223083,0.0377197,0.0957336,0.147827,0.187256,0.216095,0.22937,0.231232,0.221252,0.204102,0.181641,0.160919,0.143921,0.134247,0.134247,0.141113,0.155151,0.171967,0.189606,0.205505,0.216736,0.219391,0.212982,0.19397,0.165131,0.128632,0.0873108,0.0456848,0.00186157,-0.0383606,-0.0740662,-0.102448,-0.119446,-0.127686,-0.127533,-0.122559,-0.114136,-0.105103,-0.0952759,-0.0863953,-0.0810852,-0.0813904,-0.0873108,-0.09729,-0.106506,-0.114899,-0.117889,-0.118042,-0.115845,-0.109314,-0.0986938,-0.0827942,-0.0608215,-0.035553,-0.00918579,0.0157471,0.035553,0.0548706,0.0709534,0.0830994,0.0899658,0.0881042,0.0770264,0.0617371,0.0434875,0.0258789,0.0105896,-0.00375366,-0.0138855,-0.0204163,-0.0215149,-0.0179443,-0.0124817,-0.00531006,-0.000946045,0.0015564,-0.000457764,-0.00732422,-0.0188599,-0.0347595,-0.0550537,-0.076416,-0.0983887,-0.116791,-0.131287,-0.137207,-0.135803,-0.128784,-0.115692,-0.10025,-0.0820007,-0.0631409,-0.0448914,-0.0317993,-0.0280762,-0.0303955,-0.0407104,-0.0559692,-0.0760803,-0.09729,-0.119293,-0.138763,-0.15155,-0.154205,-0.151398,-0.145172,-0.136108,-0.116486,-0.0867004,-0.0462952,0.000152588,0.0427246,0.0731201,0.0909119,0.100891,0.106812,0.105713,0.0969849,0.0785828,0.0525513,0.0246277,0.00546265,-0.000152588,0.00997925,0.0314941,0.0603333,0.0901184,0.120514,0.149536,0.175415,0.198639,0.21347,0.213287,0.197876,0.170258,0.132233,0.0905762,0.0487976,0.0121765,-0.0223083,-0.0483398,-0.0587769,-0.0497437,-0.0252686,0.0102844,0.0508423,0.0887146,0.120697,0.147491,0.164795,0.164642,0.14328,0.102295,0.0492859,-0.00637817,-0.0555115,-0.0947876,-0.121307,-0.134552,-0.134247,-0.118652,-0.0856018,-0.0420837,0.00576782,0.0478821,0.0782776,0.0890198,0.08078,0.0584717,0.0233765,-0.0249329,-0.0793762,-0.136902,-0.187408,-0.226868,-0.245575,-0.244171,-0.225616,-0.194733,-0.154053,-0.108521,-0.0628357,-0.0215149,0.0110779,0.0269775,0.0265198,0.0121765,-0.0116882,-0.039917,-0.0654907,-0.0881042,-0.101196,-0.10321,-0.0884094,-0.059082,-0.0158997,0.0369568,0.0915222,0.143433,0.187408,0.22171,0.241669,0.24823,0.242004,0.224213,0.195221,0.164642,0.134094,0.109467,0.092926,0.0857544,0.0857544,0.0904236,0.10025,0.112274,0.123962,0.131897,0.133789,0.125671,0.109772,0.0856018,0.0556641,0.0205688,-0.0157471,-0.0522461,-0.0870056,-0.11554,-0.13504,-0.145935,-0.148743,-0.143921,-0.133789,-0.120361,-0.103363,-0.0857544,-0.0690613,-0.0555115,-0.0466309,-0.0414734,-0.0417786,-0.0431824,-0.0461426,-0.0480347,-0.0506592,-0.0498962,-0.0480347,-0.039917,-0.0275879,-0.00967407,0.0105896,0.0332031,0.054718,0.0751648,0.0916748,0.104614,0.11087,0.110077,0.101501,0.087616,0.0689087,0.0478821,0.0238647,0.00125122,-0.0209045,-0.0371094,-0.0487976,-0.0531616,-0.0523987,-0.0467834,-0.0396118,-0.031189,-0.0255737,-0.0235291,-0.0293274,-0.0413208,-0.0615845,-0.087616,-0.117889,-0.147186,-0.173553,-0.193817,-0.204712,-0.208313,-0.201447,-0.186798,-0.165283,-0.140472,-0.116302,-0.0986938,-0.0905762,-0.0879517,-0.0926208,-0.102448,-0.1185,-0.140656,-0.166992,-0.193512,-0.209869,-0.208618,-0.187256,-0.147034,-0.0895081,-0.0224609,0.0480347,0.114899,0.177277,0.227814,0.257751,0.265381,0.249634,0.214874,0.16684,0.11554,0.0718689,0.0431824,0.033844,0.042572,0.0676575,0.10556,0.152954,0.205353,0.259918,0.303436,0.327759,0.325714,0.299377,0.250092,0.180542,0.0986938,0.0132446,-0.0675049,-0.132233,-0.168854,-0.174622,-0.153595,-0.111023,-0.0495911,0.0215149,0.0923157,0.154999,0.195831,0.206604,0.182434,0.131287,0.0615845,-0.0171509,-0.0975952,-0.167145,-0.217987,-0.242615,-0.240417,-0.211426,-0.158417,-0.0895081,-0.013092,0.0595703,0.116791,0.148743,0.147186,0.119446,0.0692139,-0.000152588,-0.08078,-0.163879,-0.238556,-0.295776,-0.324951,-0.323212,-0.296265,-0.249634,-0.186005,-0.115997,-0.0472412,0.0090332,0.0481873,0.0640869,0.0569153,0.0303955,-0.0113831,-0.0594177,-0.107117,-0.143433,-0.165741,-0.165741,-0.142059,-0.0947876,-0.0296326,0.0484924,0.128784,0.203796,0.268951,0.316376,0.343658,0.348785,0.335541,0.307312,0.266479,0.22171,0.181183,0.146576,0.125519,0.1185,0.122101,0.133942,0.152191,0.174164,0.193665,0.204712,0.2052,0.193665,0.168243,0.131897,0.0849915,0.0279236,-0.0319519,-0.091217,-0.143921,-0.18634,-0.217346,-0.238403,-0.24588,-0.242004,-0.227631,-0.2052,-0.178375,-0.150146,-0.125671,-0.105255,-0.0909119,-0.0821838,-0.0791931,-0.0795288,-0.0838928,-0.0909119,-0.0975952,-0.101349,-0.09729,-0.084198,-0.0625305,-0.0317993,0.00515747,0.0452271,0.0870056,0.126465,0.161224,0.187408,0.202545,0.204712,0.194122,0.171509,0.14032,0.104156,0.0661011,0.0285339,-0.00326538,-0.0271301,-0.0403748,-0.043335,-0.0374146,-0.0240173,-0.00888062,0.00576782,0.0154419,0.0166931,0.00686646,-0.0162048,-0.050354,-0.0954285,-0.144531,-0.193817,-0.236053,-0.266937,-0.284698,-0.289398,-0.282379,-0.266327,-0.243866,-0.21814,-0.190521,-0.166687,-0.14859,-0.138916,-0.14267,-0.16153,-0.187103,-0.210815,-0.221252,-0.217041,-0.194733,-0.153748,-0.101349,-0.039917,0.0297852,0.105408,0.176666,0.234344,0.270355,0.282532,0.267242,0.232941,0.190857,0.149689,0.119598,0.0994873,0.092926,0.0983887,0.115845,0.147827,0.192566,0.244019,0.2883,0.315125,0.318237,0.297668,0.254456,0.190857,0.114288,0.0300903,-0.0545654,-0.122406,-0.165894,-0.17868,-0.163879,-0.122253,-0.0592651,0.0132446,0.0882568,0.15686,0.2052,0.22171,0.205353,0.160583,0.0935669,0.0144958,-0.0632935,-0.128784,-0.174774,-0.196777,-0.19397,-0.162933,-0.109467,-0.0368042,0.0445862,0.11911,0.174011,0.195831,0.185394,0.150299,0.0910645,0.0119934,-0.0791931,-0.173859,-0.260864,-0.32666,-0.3591,-0.360809,-0.335693,-0.291718,-0.232178,-0.167297,-0.104156,-0.0516052,-0.0174561,-0.00982666,-0.0266724,-0.0618896,-0.109314,-0.158569,-0.203949,-0.235748,-0.248535,-0.239014,-0.203644,-0.143433,-0.0651855,0.0247803,0.116943,0.201294,0.271759,0.3237,0.353638,0.363922,0.355957,0.331329,0.296722,0.25882,0.22406,0.199738,0.187897,0.190521,0.201904,0.220795,0.243378,0.267548,0.285797,0.293457,0.287506,0.265533,0.22937,0.179138,0.119293,0.0522461,-0.0173035,-0.0838928,-0.142822,-0.189758,-0.224365,-0.24527,-0.251038,-0.245117,-0.229675,-0.209076,-0.18634,-0.163727,-0.146088,-0.133148,-0.12677,-0.126129,-0.130829,-0.136597,-0.142365,-0.142975,-0.141266,-0.13269,-0.118195,-0.0968323,-0.0665894,-0.0293274,0.0137329,0.0575256,0.0996399,0.137207,0.166992,0.188354,0.198029,0.195221,0.178528,0.151398,0.117249,0.0802917,0.0444336,0.0152893,-0.00811768,-0.0212097,-0.0271301,-0.026825,-0.0215149,-0.0138855,-0.00827026,-0.00918579,-0.0173035,-0.0341492,-0.0578613,-0.0887146,-0.12442,-0.16217,-0.200684,-0.234039,-0.263184,-0.286102,-0.300781,-0.30545,-0.300293,-0.285645,-0.263672,-0.238403,-0.217987,-0.205353,-0.19989,-0.193665,-0.183685,-0.16449,-0.133942,-0.0943298,-0.0516052,-0.00326538,0.0502014,0.10791,0.159973,0.205811,0.239197,0.256805,0.254303,0.238251,0.215027,0.193176,0.177582,0.170258,0.172455,0.178375,0.188202,0.206299,0.234039,0.265381,0.290161,0.301239,0.29422,0.264587,0.213135,0.145782,0.0651855,-0.0240173,-0.109619,-0.177277,-0.221558,-0.237793,-0.226868,-0.186157,-0.12381,-0.0500488,0.0282288,0.0994873,0.148285,0.167938,0.157318,0.119904,0.0580139,-0.0169983,-0.0932312,-0.154358,-0.197388,-0.212677,-0.200043,-0.160278,-0.0975952,-0.0146484,0.081543,0.175262,0.246033,0.282532,0.283783,0.252594,0.188965,0.102753,0.00170898,-0.107117,-0.209076,-0.290802,-0.337891,-0.351288,-0.333191,-0.287689,-0.22345,-0.153412,-0.085144,-0.0280762,0.00967407,0.0193481,0.000305176,-0.042572,-0.104309,-0.173553,-0.238556,-0.290314,-0.32135,-0.323395,-0.297821,-0.240906,-0.158722,-0.0586243,0.0483398,0.152954,0.244629,0.314026,0.358765,0.38028,0.377319,0.352692,0.31308,0.266785,0.222046,0.187103,0.168549,0.165283,0.175873,0.199097,0.232941,0.271606,0.306702,0.332886,0.344116,0.335083,0.3078,0.260071,0.196136,0.117401,0.0314941,-0.0541077,-0.133148,-0.19928,-0.25058,-0.282074,-0.294861,-0.28891,-0.270691,-0.240417,-0.205811,-0.17276,-0.145172,-0.124878,-0.114288,-0.114441,-0.123169,-0.140472,-0.160278,-0.181641,-0.19458,-0.199432,-0.190063,-0.168549,-0.130829,-0.0812378,-0.0209045,0.0419312,0.107117,0.165283,0.211273,0.242004,0.252594,0.244171,0.218292,0.179321,0.131134,0.08078,0.0328979,-0.00732422,-0.0343018,-0.0464783,-0.0456848,-0.0344543,-0.0160522,0.00405884,0.0202637,0.0277405,0.0249329,0.00637817,-0.0257263,-0.0695496,-0.123169,-0.182281,-0.243713,-0.301086,-0.34552,-0.373108,-0.383728,-0.375,-0.350983,-0.314484,-0.275818,-0.239349,-0.206451,-0.176025,-0.148285,-0.122406,-0.0955811,-0.0640869,-0.0327454,-0.000610352,0.035553,0.0734253,0.115082,0.159668,0.200836,0.232941,0.249176,0.253998,0.254944,0.257568,0.263184,0.266937,0.268494,0.268341,0.266632,0.266632,0.272552,0.281433,0.287994,0.285034,0.265839,0.231232,0.180237,0.119598,0.0511475,-0.0215149,-0.0943298,-0.157806,-0.205353,-0.231689,-0.22998,-0.202393,-0.156219,-0.103058,-0.0480347,0.00296021,0.0438232,0.0661011,0.0654907,0.0396118,-0.0093689,-0.0689087,-0.124878,-0.164337,-0.188202,-0.194275,-0.179932,-0.143616,-0.0849915,-0.00717163,0.0812378,0.166992,0.231537,0.266785,0.270538,0.246033,0.194733,0.123657,0.0379028,-0.0541077,-0.144836,-0.21875,-0.265991,-0.280334,-0.269592,-0.235138,-0.186646,-0.134247,-0.0827942,-0.037262,-0.00762939,0.000457764,-0.0184021,-0.057373,-0.111786,-0.171204,-0.225159,-0.265991,-0.289246,-0.291107,-0.268036,-0.219543,-0.146576,-0.0580139,0.0374146,0.130035,0.210815,0.274902,0.321503,0.34787,0.354889,0.34317,0.316986,0.284241,0.250732,0.222656,0.204254,0.198639,0.20285,0.216583,0.236847,0.260223,0.281433,0.297028,0.303436,0.295319,0.269745,0.227325,0.169495,0.100739,0.0254211,-0.052063,-0.126465,-0.191467,-0.245575,-0.283142,-0.303436,-0.304199,-0.290955,-0.265533,-0.234802,-0.20224,-0.174011,-0.149384,-0.132233,-0.12442,-0.126129,-0.135345,-0.149048,-0.164337,-0.174469,-0.176819,-0.168091,-0.149536,-0.118347,-0.0762329,-0.0230713,0.0368042,0.0993347,0.156403,0.202698,0.234985,0.249939,0.245422,0.223267,0.185089,0.136597,0.0813904,0.0297852,-0.0151367,-0.0441284,-0.0603333,-0.0611267,-0.0525513,-0.0374146,-0.019165,-0.0045166,0.0045166,0.00140381,-0.0155945,-0.0470886,-0.0937195,-0.150299,-0.212372,-0.274567,-0.331024,-0.375,-0.403839,-0.414764,-0.408966,-0.388092,-0.354889,-0.312012,-0.260376,-0.201599,-0.135803,-0.0704651,-0.0093689,0.04599,0.0916748,0.123169,0.141266,0.15155,0.160583,0.170563,0.175568,0.174316,0.170898,0.175262,0.193024,0.22641,0.271454,0.314636,0.347717,0.370483,0.385437,0.395264,0.395111,0.379517,0.344727,0.287048,0.210815,0.121307,0.0307312,-0.0509949,-0.118652,-0.171509,-0.202545,-0.215942,-0.2052,-0.170105,-0.115082,-0.0491028,0.00842285,0.0467834,0.0620422,0.0572205,0.0357056,-0.00201416,-0.0570679,-0.125824,-0.193329,-0.239655,-0.255096,-0.237793,-0.193817,-0.134094,-0.0643921,0.0163574,0.107727,0.198792,0.270844,0.307617,0.303589,0.263519,0.198639,0.120056,0.0336914,-0.0552063,-0.140808,-0.212677,-0.258514,-0.268646,-0.248077,-0.204895,-0.147644,-0.0896606,-0.041626,-0.00842285,0.00952148,0.00421143,-0.0257263,-0.0767212,-0.145935,-0.221863,-0.290314,-0.338654,-0.360321,-0.354553,-0.323212,-0.268341,-0.193024,-0.098999,0.00482178,0.10791,0.195679,0.263031,0.30545,0.326508,0.330383,0.317932,0.294373,0.263031,0.232941,0.210175,0.198792,0.203003,0.220459,0.247284,0.281586,0.316681,0.345367,0.362518,0.367035,0.357208,0.329773,0.284393,0.2211,0.142059,0.0538025,-0.0336914,-0.114746,-0.185242,-0.243225,-0.285797,-0.311066,-0.31604,-0.302032,-0.275208,-0.241211,-0.209076,-0.181641,-0.161682,-0.14859,-0.144531,-0.148895,-0.162476,-0.181183,-0.198944,-0.212524,-0.213928,-0.201599,-0.17511,-0.136902,-0.0874634,-0.0277405,0.0388184,0.10791,0.172607,0.225006,0.260559,0.27597,0.271912,0.247925,0.208771,0.157471,0.100891,0.0444336,-0.00482178,-0.0410156,-0.0618896,-0.0673523,-0.0623779,-0.0502014,-0.0385132,-0.0261841,-0.0184021,-0.0216675,-0.0407104,-0.0778198,-0.129883,-0.190369,-0.254608,-0.318542,-0.375305,-0.419891,-0.448273,-0.459351,-0.45343,-0.431122,-0.390411,-0.334778,-0.269745,-0.197388,-0.120056,-0.0379028,0.0400696,0.105255,0.150299,0.176819,0.193817,0.207062,0.21579,0.214386,0.200043,0.181946,0.175262,0.187561,0.21814,0.262268,0.313232,0.359406,0.397125,0.429108,0.452332,0.465881,0.460602,0.428009,0.364532,0.274261,0.167786,0.0589294,-0.041626,-0.130341,-0.203644,-0.257111,-0.280975,-0.270996,-0.227631,-0.157959,-0.0829468,-0.0169983,0.0297852,0.0603333,0.0720215,0.0608215,0.0210571,-0.0464783,-0.132843,-0.217651,-0.274109,-0.29657,-0.285797,-0.249786,-0.191162,-0.111786,-0.0143433,0.0991516,0.21283,0.30484,0.358612,0.366425,0.335083,0.275665,0.193329,0.0980835,-0.00436401,-0.10495,-0.192719,-0.251801,-0.274567,-0.262268,-0.222656,-0.166534,-0.103699,-0.0487976,-0.00732422,0.019165,0.0219727,-0.00341797,-0.0555115,-0.128937,-0.213135,-0.292511,-0.352539,-0.388092,-0.396362,-0.378418,-0.333038,-0.261169,-0.166992,-0.0583191,0.050354,0.150299,0.229675,0.287842,0.324005,0.342102,0.341461,0.326965,0.301697,0.274414,0.248993,0.23233,0.229523,0.239349,0.261627,0.289246,0.32074,0.347717,0.36734,0.378113,0.377655,0.360016,0.324005,0.26709,0.194122,0.109131,0.0215149,-0.0665894,-0.148895,-0.222656,-0.28299,-0.325409,-0.345367,-0.343811,-0.323853,-0.29361,-0.25946,-0.22702,-0.198029,-0.177124,-0.163239,-0.161377,-0.169952,-0.185699,-0.205505,-0.222198,-0.230621,-0.224823,-0.204712,-0.168701,-0.118042,-0.0561218,0.0149536,0.0901184,0.164337,0.228882,0.277374,0.303741,0.307312,0.287506,0.247772,0.193817,0.130981,0.0686035,0.0124817,-0.0279236,-0.0513,-0.0592651,-0.0542603,-0.043335,-0.026825,-0.0112305,-0.00326538,-0.00857544,-0.0314941,-0.0739136,-0.131592,-0.201752,-0.276764,-0.352539,-0.418945,-0.468842,-0.499115,-0.511108,-0.504395,-0.477905,-0.433136,-0.369232,-0.288452,-0.19632,-0.10025,-0.0126343,0.063446,0.123016,0.164185,0.189301,0.204895,0.21347,0.21347,0.202393,0.184296,0.170898,0.173553,0.198181,0.241669,0.296082,0.353485,0.403046,0.446075,0.481964,0.507202,0.511719,0.492401,0.441711,0.360016,0.251648,0.132538,0.0151367,-0.0907593,-0.179138,-0.246826,-0.287689,-0.294373,-0.265686,-0.208466,-0.135803,-0.063446,-0.00234985,0.0424194,0.0642395,0.0611267,0.0286865,-0.0321045,-0.115234,-0.203644,-0.276459,-0.317932,-0.325867,-0.304993,-0.253693,-0.177277,-0.0820007,0.0319519,0.154358,0.26474,0.343964,0.380463,0.374847,0.332123,0.261322,0.171967,0.0750122,-0.026825,-0.121307,-0.196472,-0.23761,-0.241669,-0.215942,-0.165894,-0.106964,-0.048645,-0.00109863,0.0319519,0.0434875,0.0293274,-0.0146484,-0.0821838,-0.164337,-0.250732,-0.324799,-0.375763,-0.399933,-0.397278,-0.365173,-0.304993,-0.221252,-0.122711,-0.0165405,0.0837402,0.170563,0.237,0.282074,0.307617,0.313232,0.303894,0.285187,0.263824,0.243713,0.230133,0.226715,0.237457,0.260223,0.290802,0.324951,0.355957,0.378723,0.389648,0.389343,0.374512,0.342255,0.289551,0.22171,0.141876,0.0572205,-0.0266724,-0.104614,-0.176178,-0.237946,-0.285034,-0.314331,-0.324799,-0.31778,-0.299042,-0.273956,-0.245422,-0.220001,-0.198029,-0.183197,-0.177765,-0.182281,-0.195679,-0.211884,-0.22641,-0.233093,-0.227325,-0.209259,-0.179474,-0.135345,-0.0790405,-0.0107727,0.0608215,0.132996,0.195831,0.246521,0.279114,0.294678,0.290161,0.266479,0.22702,0.17511,0.118042,0.0622253,0.0162048,-0.0154419,-0.031189,-0.033844,-0.0277405,-0.0162048,-0.00341797,0.00732422,0.00686646,-0.00811768,-0.0413208,-0.0923157,-0.157166,-0.230133,-0.307159,-0.378418,-0.438446,-0.480072,-0.501923,-0.504089,-0.48819,-0.456543,-0.409454,-0.348328,-0.277863,-0.199585,-0.118805,-0.0402222,0.0275879,0.0830994,0.123962,0.152954,0.173218,0.189911,0.199432,0.200989,0.195831,0.192719,0.198944,0.217987,0.250092,0.296082,0.347076,0.39447,0.431122,0.457642,0.473846,0.47821,0.463409,0.424744,0.354889,0.258362,0.147186,0.0361633,-0.0645447,-0.149384,-0.215332,-0.256958,-0.270844,-0.252747,-0.207855,-0.141876,-0.0708008,-0.00732422,0.0383606,0.0626831,0.0615845,0.036499,-0.0133972,-0.0829468,-0.162933,-0.236053,-0.285187,-0.304504,-0.288757,-0.242462,-0.168549,-0.0801392,0.0202637,0.130035,0.233246,0.314819,0.359253,0.358765,0.318237,0.246033,0.154663,0.0569153,-0.0414734,-0.134552,-0.210175,-0.257416,-0.26944,-0.248993,-0.203156,-0.142059,-0.0820007,-0.0324402,0.000457764,0.0160522,0.00778198,-0.0263367,-0.0840454,-0.158722,-0.238403,-0.307617,-0.354889,-0.374664,-0.368591,-0.334137,-0.274414,-0.191772,-0.0938721,0.0129395,0.115692,0.205811,0.276306,0.322754,0.349274,0.356598,0.350037,0.333374,0.31076,0.286591,0.266937,0.254944,0.257263,0.271606,0.293457,0.317291,0.34021,0.356903,0.363281,0.358459,0.340851,0.305908,0.253998,0.187256,0.10791,0.0219727,-0.063446,-0.144379,-0.217834,-0.280182,-0.328064,-0.359711,-0.371857,-0.365173,-0.34317,-0.310425,-0.274719,-0.239502,-0.21048,-0.188812,-0.174774,-0.170105,-0.175415,-0.186493,-0.198029,-0.205048,-0.20285,-0.186798,-0.157166,-0.112579,-0.0541077,0.0144958,0.0863953,0.157166,0.221558,0.27301,0.307465,0.32431,0.317932,0.290802,0.245728,0.18866,0.12677,0.0673523,0.0160522,-0.0219727,-0.0431824,-0.0487976,-0.0403748,-0.0254211,-0.0093689,0.00219727,0.00311279,-0.00857544,-0.0350952,-0.0791931,-0.138916,-0.209076,-0.282532,-0.352386,-0.411774,-0.456055,-0.48288,-0.483032,-0.464813,-0.433624,-0.394806,-0.345673,-0.285339,-0.217346,-0.147186,-0.0762329,-0.00967407,0.0484924,0.0965271,0.134094,0.159668,0.176666,0.193665,0.210022,0.217987,0.213928,0.200836,0.195526,0.206299,0.235138,0.2724,0.310425,0.341156,0.366577,0.387299,0.408356,0.419128,0.411621,0.377167,0.311523,0.220306,0.114288,0.00762939,-0.0890198,-0.173553,-0.240906,-0.283295,-0.29422,-0.270691,-0.213135,-0.130676,-0.0447388,0.0279236,0.0812378,0.115997,0.127869,0.112427,0.0667419,-0.00717163,-0.0966797,-0.180237,-0.237,-0.256348,-0.244171,-0.207062,-0.14624,-0.0659485,0.0327454,0.141876,0.247772,0.330078,0.368591,0.360321,0.309357,0.231842,0.136108,0.0291443,-0.0795288,-0.18634,-0.275665,-0.33197,-0.345978,-0.324158,-0.275665,-0.214539,-0.149231,-0.0932312,-0.050354,-0.0254211,-0.0237122,-0.0483398,-0.0969849,-0.163086,-0.233429,-0.295013,-0.336487,-0.352539,-0.340851,-0.305908,-0.246979,-0.166534,-0.0676575,0.0402222,0.147186,0.240265,0.315735,0.368286,0.399323,0.414124,0.412872,0.396973,0.372955,0.343506,0.316528,0.293457,0.281586,0.280029,0.284698,0.294861,0.306244,0.312622,0.312927,0.306549,0.290955,0.264282,0.220154,0.161224,0.0882568,0.00827026,-0.0728149,-0.151703,-0.227173,-0.294861,-0.351135,-0.389648,-0.407745,-0.402893,-0.381836,-0.348328,-0.308105,-0.263031,-0.219696,-0.17807,-0.143921,-0.122253,-0.115234,-0.119598,-0.131287,-0.142517,-0.146423,-0.140472,-0.121918,-0.092926,-0.0492859,0.00637817,0.0732727,0.146729,0.214691,0.270538,0.307465,0.324005,0.319794,0.295776,0.253204,0.196136,0.128632,0.0603333,-0.00219727,-0.0508423,-0.0809326,-0.0933838,-0.0891724,-0.07547,-0.0558167,-0.035553,-0.0216675,-0.0187073,-0.0316467,-0.0626831,-0.108978,-0.166199,-0.227966,-0.289062,-0.343964,-0.385742,-0.411469,-0.41568,-0.399933,-0.36673,-0.323853,-0.277527,-0.235138,-0.194122,-0.156708,-0.120697,-0.0829468,-0.043335,-0.00546265,0.0319519,0.069397,0.107269,0.145935,0.182892,0.219391,0.246521,0.259918,0.258667,0.247589,0.23233,0.215485,0.202393,0.195984,0.198181,0.202698,0.21048,0.224823,0.244019,0.26413,0.279266,0.278168,0.252594,0.19989,0.128021,0.0461426,-0.0400696,-0.122406,-0.192871,-0.243713,-0.266144,-0.255554,-0.211731,-0.142059,-0.0587769,0.0275879,0.105103,0.164795,0.200195,0.206757,0.182587,0.128326,0.0505066,-0.0321045,-0.101959,-0.149689,-0.171204,-0.163574,-0.129089,-0.0734253,-0.00234985,0.0856018,0.175568,0.248993,0.290802,0.293274,0.256805,0.186493,0.0927734,-0.0118408,-0.121307,-0.227478,-0.320251,-0.385132,-0.414581,-0.409454,-0.372803,-0.315125,-0.247131,-0.181488,-0.125214,-0.0809326,-0.0542603,-0.0508423,-0.0690613,-0.103851,-0.148132,-0.192566,-0.224213,-0.238861,-0.235138,-0.210968,-0.164795,-0.096344,-0.0138855,0.0810852,0.178833,0.270538,0.348328,0.408356,0.447479,0.469177,0.470428,0.453735,0.42334,0.383423,0.336945,0.290009,0.250732,0.218903,0.195526,0.181641,0.175568,0.174622,0.174469,0.174622,0.171967,0.162628,0.141724,0.107422,0.0580139,-0.00546265,-0.079834,-0.157166,-0.233887,-0.303253,-0.362213,-0.402588,-0.423645,-0.418488,-0.391052,-0.344116,-0.282684,-0.216248,-0.150452,-0.0905762,-0.039917,-0.00671387,0.00778198,0.00497437,-0.0105896,-0.0343018,-0.0583191,-0.0753174,-0.0804443,-0.0718689,-0.047699,-0.00857544,0.0461426,0.109924,0.178375,0.236694,0.279114,0.30014,0.297668,0.274414,0.231842,0.170746,0.0960388,0.0176086,-0.054718,-0.11087,-0.147644,-0.161377,-0.155304,-0.133636,-0.103699,-0.0695496,-0.038208,-0.0160522,-0.00952148,-0.0204163,-0.0500488,-0.0951233,-0.146423,-0.197693,-0.242462,-0.279266,-0.302032,-0.31012,-0.299988,-0.274414,-0.236847,-0.192871,-0.151093,-0.11554,-0.0937195,-0.0874634,-0.0924683,-0.101349,-0.107422,-0.107422,-0.0991516,-0.0805969,-0.047699,0.00170898,0.0604858,0.118958,0.17276,0.21579,0.244171,0.253204,0.242157,0.209259,0.161682,0.108521,0.0626831,0.035553,0.0275879,0.0389709,0.0636292,0.100403,0.147034,0.201141,0.251495,0.286285,0.290466,0.262421,0.202698,0.125061,0.0383606,-0.0458374,-0.118195,-0.168243,-0.193329,-0.186798,-0.146088,-0.0717163,0.0243225,0.124573,0.212524,0.273956,0.306244,0.307465,0.276123,0.212524,0.121307,0.0176086,-0.0799866,-0.155609,-0.199097,-0.207672,-0.186798,-0.142517,-0.0791931,-0.00219727,0.0796814,0.152802,0.19928,0.206909,0.172455,0.1026,0.0109253,-0.0910645,-0.192566,-0.291718,-0.378571,-0.439087,-0.465881,-0.453888,-0.406647,-0.333832,-0.248993,-0.165741,-0.0910645,-0.0302429,0.0132446,0.0354004,0.0307312,0.00375366,-0.040863,-0.090271,-0.133301,-0.160583,-0.167145,-0.152954,-0.116302,-0.0586243,0.0190125,0.108673,0.205353,0.29657,0.375458,0.432526,0.465881,0.475403,0.460266,0.423798,0.368896,0.303436,0.233429,0.16745,0.111633,0.0704651,0.0466309,0.0419312,0.0522461,0.0753174,0.101959,0.128632,0.149231,0.159515,0.152954,0.126617,0.0795288,0.0149536,-0.0614319,-0.140472,-0.216736,-0.282074,-0.33197,-0.361908,-0.368286,-0.349121,-0.306854,-0.246033,-0.174469,-0.100739,-0.033844,0.0202637,0.0603333,0.0818481,0.0829468,0.0665894,0.0325928,-0.0090332,-0.0534668,-0.0898132,-0.111633,-0.114441,-0.0988464,-0.0637817,-0.0135803,0.0473938,0.111176,0.171509,0.216736,0.24292,0.244171,0.222504,0.180542,0.122253,0.0539551,-0.0188599,-0.0863953,-0.140015,-0.174011,-0.186493,-0.178223,-0.153748,-0.117401,-0.0751648,-0.0308838,0.00872803,0.0389709,0.0519104,0.0455322,0.0199585,-0.0213623,-0.0698547,-0.120056,-0.164337,-0.198792,-0.2211,-0.229828,-0.221405,-0.198029,-0.165894,-0.132996,-0.104156,-0.0791931,-0.0645447,-0.0659485,-0.0856018,-0.118805,-0.15451,-0.184937,-0.207062,-0.214081,-0.201141,-0.163391,-0.105713,-0.0405273,0.0247803,0.0820007,0.13736,0.185242,0.217987,0.222198,0.195068,0.148285,0.0975952,0.0536499,0.0221558,0.00747681,0.0133972,0.0346069,0.0708008,0.122711,0.187103,0.258667,0.322754,0.362213,0.365784,0.335846,0.276459,0.198486,0.111938,0.026825,-0.0539551,-0.117249,-0.153412,-0.15155,-0.11319,-0.0445862,0.0380554,0.119598,0.190063,0.243225,0.274567,0.274902,0.238403,0.167297,0.069397,-0.035553,-0.130035,-0.19989,-0.243561,-0.256805,-0.241364,-0.203003,-0.142212,-0.0639343,0.0244751,0.103546,0.154663,0.166687,0.14032,0.0881042,0.0174561,-0.0648499,-0.155457,-0.244629,-0.321991,-0.37326,-0.391998,-0.374512,-0.328064,-0.260712,-0.183838,-0.107422,-0.0420837,0.0121765,0.0500488,0.0656433,0.0556641,0.0235291,-0.0227661,-0.0723572,-0.11319,-0.139252,-0.148438,-0.138916,-0.108826,-0.0609741,0.00531006,0.0821838,0.16217,0.237152,0.297333,0.338348,0.357697,0.358154,0.341614,0.310272,0.267395,0.218292,0.168549,0.12442,0.0904236,0.0720215,0.0682983,0.0782776,0.0965271,0.117401,0.139069,0.157623,0.172913,0.177124,0.164185,0.134552,0.0870056,0.0275879,-0.0358582,-0.10025,-0.158264,-0.208923,-0.245575,-0.266632,-0.26944,-0.251343,-0.217651,-0.172913,-0.125214,-0.079834,-0.0410156,-0.0109253,0.00827026,0.0144958,0.00497437,-0.0180969,-0.0491028,-0.08078,-0.107727,-0.12677,-0.132538,-0.123505,-0.0999451,-0.0606384,-0.00967407,0.0483398,0.106323,0.155304,0.18866,0.204102,0.200043,0.179474,0.141876,0.0944824,0.038208,-0.0182495,-0.0668945,-0.101807,-0.118652,-0.117249,-0.100891,-0.0731201,-0.0393066,-0.00280762,0.0325928,0.0618896,0.0779724,0.0765686,0.057373,0.0237122,-0.0184021,-0.0639343,-0.111328,-0.155609,-0.19162,-0.214874,-0.220306,-0.208008,-0.181793,-0.149384,-0.115234,-0.0852966,-0.0631409,-0.053009,-0.0595703,-0.078125,-0.104004,-0.135803,-0.178986,-0.225464,-0.264282,-0.285187,-0.285339,-0.265839,-0.224213,-0.159027,-0.0809326,0.00421143,0.0881042,0.160278,0.213623,0.247131,0.261627,0.255707,0.222961,0.167938,0.102142,0.0411682,-0.00436401,-0.025116,-0.0121765,0.0260315,0.0779724,0.135651,0.201599,0.274261,0.339142,0.384338,0.392456,0.363922,0.296265,0.203644,0.0991516,-0.00326538,-0.0921631,-0.161835,-0.205353,-0.213287,-0.181946,-0.110535,-0.0166931,0.0834045,0.175415,0.249939,0.296417,0.309021,0.286285,0.227631,0.133148,0.0180969,-0.0954285,-0.186798,-0.246979,-0.272247,-0.261475,-0.220154,-0.155457,-0.073761,0.0226135,0.120056,0.195984,0.231689,0.222809,0.174164,0.0954285,-0.00219727,-0.107727,-0.213623,-0.311676,-0.388702,-0.434387,-0.43924,-0.404938,-0.338959,-0.253357,-0.162476,-0.0788879,-0.00732422,0.0438232,0.0720215,0.0700073,0.0389709,-0.0109253,-0.0725098,-0.13208,-0.17807,-0.205963,-0.208771,-0.187897,-0.141266,-0.0712585,0.0157471,0.111176,0.207855,0.292664,0.357056,0.395416,0.409912,0.403046,0.37561,0.332123,0.276306,0.217499,0.160767,0.114899,0.0848083,0.073761,0.0793762,0.0979309,0.122406,0.148285,0.1698,0.187408,0.195374,0.189117,0.163727,0.119598,0.0604858,-0.00796509,-0.0795288,-0.146881,-0.204712,-0.250397,-0.280975,-0.293121,-0.285797,-0.259613,-0.220306,-0.172607,-0.124878,-0.08078,-0.0452271,-0.0187073,-0.00311279,0.00170898,-0.00576782,-0.0227661,-0.0430298,-0.0617371,-0.0757751,-0.0818481,-0.0778198,-0.0665894,-0.0462952,-0.0185547,0.0198059,0.0614319,0.102142,0.132538,0.153259,0.161377,0.158875,0.143616,0.116638,0.0791931,0.0383606,-0.00296021,-0.0397644,-0.0701599,-0.0901184,-0.0982361,-0.0960388,-0.0856018,-0.0704651,-0.0522461,-0.0330505,-0.0152893,-0.00360107,0.00250244,0.000946045,-0.00872803,-0.0235291,-0.044281,-0.0648499,-0.0881042,-0.107574,-0.122559,-0.130188,-0.128479,-0.118195,-0.0996399,-0.0773315,-0.0533142,-0.0319519,-0.0144958,-0.00280762,0.000457764,-0.010437,-0.0375671,-0.0712585,-0.1026,-0.133453,-0.1698,-0.211884,-0.248077,-0.267242,-0.263824,-0.24231,-0.207214,-0.157318,-0.09198,-0.0155945,0.0586243,0.117249,0.156708,0.178528,0.190369,0.186493,0.156219,0.101196,0.0317993,-0.0277405,-0.0682983,-0.0799866,-0.0609741,-0.0188599,0.0357056,0.0996399,0.173065,0.257111,0.34021,0.403046,0.43158,0.417236,0.366089,0.285034,0.188812,0.0941772,0.006073,-0.0695496,-0.12738,-0.153412,-0.138,-0.0826416,0.00201416,0.0933838,0.177582,0.244019,0.290649,0.312469,0.299988,0.249176,0.159821,0.046936,-0.0697021,-0.169189,-0.24231,-0.283783,-0.295776,-0.281586,-0.245728,-0.186951,-0.105408,-0.0124817,0.0698547,0.120514,0.130035,0.102753,0.0531616,-0.00842285,-0.081543,-0.164795,-0.251648,-0.326355,-0.375458,-0.390259,-0.370636,-0.324799,-0.259918,-0.187561,-0.115387,-0.0472412,0.00982666,0.0522461,0.0728149,0.0704651,0.0484924,0.0123291,-0.0272827,-0.0614319,-0.0849915,-0.0971375,-0.0965271,-0.0785828,-0.0445862,0.00656128,0.0706177,0.141876,0.209717,0.265686,0.307617,0.333191,0.343506,0.341156,0.323212,0.292664,0.251038,0.204102,0.15921,0.12085,0.0940247,0.0785828,0.0725098,0.0746765,0.0801392,0.0898132,0.104156,0.119293,0.129089,0.127075,0.111176,0.0838928,0.0448914,-0.000152588,-0.0498962,-0.1026,-0.15451,-0.200195,-0.232483,-0.247772,-0.245117,-0.228577,-0.200684,-0.165588,-0.12738,-0.0895081,-0.0519104,-0.0212097,-0.000946045,0.00341797,-0.00686646,-0.0269775,-0.0502014,-0.071106,-0.0895081,-0.104004,-0.111481,-0.110229,-0.0941772,-0.0642395,-0.0246277,0.0199585,0.0625305,0.098999,0.125824,0.141266,0.143768,0.131592,0.107422,0.0726624,0.0321045,-0.00762939,-0.0445862,-0.0700073,-0.0848083,-0.0862122,-0.0768738,-0.0575256,-0.0297852,0.00326538,0.036499,0.0629883,0.0790405,0.0849915,0.0809326,0.0659485,0.0422668,0.0123291,-0.0209045,-0.0544128,-0.083252,-0.104004,-0.113831,-0.111633,-0.0982361,-0.0759277,-0.0483398,-0.0224609,-0.00341797,0.00982666,0.0138855,0.00811768,-0.00967407,-0.0422668,-0.085144,-0.137665,-0.189453,-0.234344,-0.271606,-0.30249,-0.32666,-0.337738,-0.328217,-0.29718,-0.25354,-0.197693,-0.131592,-0.0562744,0.0201111,0.0848083,0.131439,0.156403,0.166199,0.161072,0.144073,0.111481,0.0679932,0.0210571,-0.010437,-0.0227661,-0.0116882,0.0237122,0.0810852,0.153412,0.230286,0.305603,0.373108,0.427704,0.460754,0.460266,0.420837,0.34613,0.246368,0.136902,0.0317993,-0.0597229,-0.127533,-0.168549,-0.176971,-0.147339,-0.0816956,0.00671387,0.0997925,0.181641,0.24231,0.273163,0.272095,0.235748,0.16684,0.0682983,-0.048645,-0.162476,-0.255859,-0.317444,-0.341003,-0.327759,-0.283478,-0.216583,-0.132538,-0.0357056,0.0611267,0.140656,0.185242,0.187897,0.151703,0.086853,0.00311279,-0.088562,-0.183838,-0.271606,-0.342255,-0.379669,-0.383728,-0.352844,-0.294678,-0.218445,-0.135345,-0.0586243,0.00686646,0.0550537,0.0823364,0.084198,0.0622253,0.0224609,-0.0291443,-0.0791931,-0.120697,-0.143921,-0.149231,-0.135956,-0.103058,-0.0514526,0.014801,0.0916748,0.170105,0.241821,0.298737,0.335388,0.353302,0.355194,0.341309,0.315887,0.280334,0.239197,0.196136,0.156708,0.12738,0.108826,0.103363,0.105103,0.111786,0.120056,0.12738,0.132843,0.135345,0.130829,0.115082,0.0856018,0.0441284,-0.00436401,-0.0559692,-0.108215,-0.157959,-0.200836,-0.237305,-0.261932,-0.272858,-0.267731,-0.248383,-0.219543,-0.186798,-0.152954,-0.123657,-0.0974426,-0.0773315,-0.0631409,-0.0567627,-0.0598755,-0.0689087,-0.077179,-0.0835876,-0.0837402,-0.0790405,-0.0675049,-0.0502014,-0.0243225,0.00827026,0.04599,0.0854492,0.121918,0.150787,0.169647,0.176361,0.172607,0.161835,0.141724,0.114441,0.0802917,0.0439758,0.0109253,-0.0121765,-0.0249329,-0.0257263,-0.0215149,-0.0126343,-0.00140381,0.0118408,0.0271301,0.0413208,0.0467834,0.0441284,0.0299377,0.0123291,-0.00952148,-0.0327454,-0.0583191,-0.0843506,-0.103546,-0.114594,-0.113525,-0.104614,-0.0865479,-0.0656433,-0.0417786,-0.0177612,0.00390625,0.0184021,0.0254211,0.0223083,0.00686646,-0.0176086,-0.0506592,-0.0849915,-0.118042,-0.147186,-0.172302,-0.19693,-0.214691,-0.22467,-0.225616,-0.223755,-0.221405,-0.220459,-0.217834,-0.209869,-0.19928,-0.18399,-0.163086,-0.133789,-0.0947876,-0.0491028,-0.00515747,0.0303955,0.0569153,0.0835876,0.111633,0.135193,0.144684,0.133453,0.110229,0.0909119,0.0843506,0.0974426,0.12381,0.151703,0.180237,0.214539,0.259613,0.313416,0.365326,0.398529,0.40213,0.373444,0.318542,0.247589,0.171509,0.0947876,0.0187073,-0.050354,-0.10495,-0.12973,-0.117249,-0.0726624,-0.0116882,0.0500488,0.104767,0.147186,0.178986,0.191925,0.179626,0.132996,0.053009,-0.0447388,-0.137848,-0.212219,-0.260712,-0.286285,-0.289856,-0.272095,-0.23233,-0.167145,-0.0826416,0.00515747,0.0768738,0.119598,0.129272,0.110718,0.0703125,0.0162048,-0.0527039,-0.130829,-0.210968,-0.278931,-0.322906,-0.336334,-0.320587,-0.282074,-0.230133,-0.170105,-0.105103,-0.040863,0.0146484,0.0539551,0.0723572,0.0732727,0.0567627,0.0305481,-0.00265503,-0.0317993,-0.0538025,-0.0668945,-0.0686035,-0.0564575,-0.0289917,0.0121765,0.0682983,0.128632,0.189117,0.23996,0.280823,0.309509,0.328674,0.333527,0.324615,0.300629,0.26413,0.219849,0.17337,0.130035,0.09198,0.0606384,0.0375671,0.0205688,0.0126343,0.0141907,0.0237122,0.0379028,0.0502014,0.0553589,0.0517578,0.0383606,0.0163574,-0.0140381,-0.053009,-0.098999,-0.148895,-0.195831,-0.232635,-0.254944,-0.261475,-0.252441,-0.230286,-0.195526,-0.152344,-0.104004,-0.0534668,-0.00827026,0.0271301,0.0480347,0.0541077,0.047699,0.0328979,0.0135803,-0.00997925,-0.0288391,-0.0455322,-0.0514526,-0.0472412,-0.0302429,-0.000152588,0.0344543,0.0706177,0.10495,0.135193,0.158417,0.1698,0.163391,0.142517,0.110382,0.0729675,0.0317993,-0.0102844,-0.0508423,-0.0862122,-0.107574,-0.115234,-0.108063,-0.0913696,-0.0698547,-0.0438232,-0.0182495,0.00637817,0.0257263,0.0388184,0.043335,0.038208,0.0247803,0.00701904,-0.0116882,-0.0277405,-0.0410156,-0.0505066,-0.0527039,-0.046936,-0.0316467,-0.0115356,0.0118408,0.0339966,0.0553589,0.0712585,0.0802917,0.0790405,0.0681458,0.0472412,0.0171509,-0.0209045,-0.0609741,-0.102142,-0.141266,-0.177765,-0.208618,-0.231079,-0.24527,-0.255249,-0.259308,-0.263184,-0.264435,-0.265686,-0.267883,-0.270538,-0.272095,-0.269592,-0.2565,-0.232025,-0.19632,-0.146881,-0.0887146,-0.0272827,0.026825,0.0765686,0.123169,0.171051,0.211426,0.233582,0.228119,0.203003,0.174774,0.162781,0.173218,0.195679,0.215942,0.231689,0.25119,0.2883,0.341766,0.397614,0.431274,0.426758,0.385284,0.319794,0.245728,0.167938,0.0854492,-0.0015564,-0.0843506,-0.149841,-0.181946,-0.174164,-0.134552,-0.0784302,-0.0209045,0.0296326,0.071106,0.103363,0.122253,0.116943,0.0770264,0.00637817,-0.0785828,-0.158722,-0.217651,-0.25058,-0.259918,-0.252594,-0.229034,-0.18335,-0.114441,-0.0279236,0.0584717,0.126923,0.163727,0.167786,0.14267,0.0993347,0.0453796,-0.0195007,-0.0943298,-0.171814,-0.237457,-0.280334,-0.292816,-0.276123,-0.240753,-0.194733,-0.146088,-0.0966797,-0.0505066,-0.0113831,0.00997925,0.0143433,0.000457764,-0.0269775,-0.0612793,-0.096344,-0.124268,-0.142517,-0.147827,-0.138763,-0.114441,-0.0762329,-0.0238647,0.0386658,0.106171,0.170105,0.22345,0.262115,0.287842,0.303101,0.308868,0.304504,0.287994,0.260223,0.22641,0.193665,0.168701,0.153412,0.143768,0.137054,0.131439,0.130341,0.133789,0.14267,0.150299,0.150146,0.138458,0.114899,0.08078,0.041626,-0.00250244,-0.0483398,-0.0980835,-0.145782,-0.189606,-0.220642,-0.236389,-0.236389,-0.22406,-0.203949,-0.178223,-0.149689,-0.117706,-0.0873108,-0.0614319,-0.0455322,-0.0402222,-0.0434875,-0.0519104,-0.0617371,-0.0708008,-0.077179,-0.0791931,-0.0742188,-0.0618896,-0.0420837,-0.0151367,0.0157471,0.0466309,0.0725098,0.0910645,0.102142,0.106506,0.106018,0.0957336,0.0768738,0.0497437,0.0210571,-0.00296021,-0.020752,-0.0343018,-0.0466309,-0.057373,-0.0622253,-0.0600281,-0.0516052,-0.0391235,-0.02948,-0.0201111,-0.0126343,-0.00360107,0.00576782,0.0143433,0.0193481,0.0215149,0.0218201,0.0241699,0.0274353,0.0324402,0.0366516,0.0380554,0.0405273,0.0438232,0.0509949,0.0587769,0.0661011,0.0692139,0.0703125,0.0689087,0.0681458,0.0646973,0.0595703,0.04599,0.0266724,0.000610352,-0.0293274,-0.0612793,-0.0938721,-0.126617,-0.157959,-0.185242,-0.210327,-0.233246,-0.251984,-0.266327,-0.274902,-0.279266,-0.281433,-0.288147,-0.298126,-0.311523,-0.32074,-0.320892,-0.307953,-0.284698,-0.248077,-0.200348,-0.136902,-0.0594177,0.0218201,0.0980835,0.162476,0.214874,0.259918,0.293274,0.306549,0.291107,0.249329,0.200348,0.164032,0.154053,0.16449,0.180542,0.195679,0.216248,0.253998,0.311066,0.373444,0.417236,0.424408,0.390747,0.3237,0.240265,0.14798,0.0491028,-0.0508423,-0.14624,-0.220642,-0.260559,-0.258514,-0.217194,-0.147827,-0.0664368,0.0110779,0.0812378,0.140656,0.184601,0.199097,0.175568,0.111786,0.0252686,-0.0648499,-0.140015,-0.193176,-0.221405,-0.23233,-0.22171,-0.187256,-0.123962,-0.037262,0.0561218,0.135956,0.187256,0.199585,0.180542,0.139709,0.0801392,0.00421143,-0.0877686,-0.185242,-0.275513,-0.343018,-0.379822,-0.384338,-0.364227,-0.326355,-0.275818,-0.217346,-0.156067,-0.0996399,-0.0555115,-0.0280762,-0.0158997,-0.0204163,-0.0361633,-0.0587769,-0.0793762,-0.094635,-0.0996399,-0.0915222,-0.0704651,-0.037262,0.00967407,0.0717163,0.145477,0.217834,0.284393,0.338043,0.378265,0.407745,0.424255,0.428009,0.414429,0.383881,0.340546,0.289551,0.240417,0.197388,0.157959,0.123322,0.0909119,0.0673523,0.0533142,0.0500488,0.0539551,0.0562744,0.0533142,0.0427246,0.0235291,-0.00250244,-0.035553,-0.0753174,-0.123505,-0.173706,-0.223267,-0.262421,-0.287354,-0.295624,-0.285645,-0.26178,-0.22702,-0.183838,-0.134705,-0.0837402,-0.0360107,0.00234985,0.0243225,0.0324402,0.0269775,0.0126343,-0.00592041,-0.0280762,-0.0498962,-0.0703125,-0.0837402,-0.0849915,-0.0718689,-0.0481873,-0.0202637,0.00732422,0.0324402,0.0533142,0.0682983,0.073761,0.0697021,0.0534668,0.0263367,-0.00888062,-0.0456848,-0.0773315,-0.100891,-0.115387,-0.122101,-0.120209,-0.106812,-0.0799866,-0.0431824,-0.00186157,0.036499,0.0717163,0.100891,0.125366,0.142975,0.154205,0.156067,0.150635,0.139252,0.126465,0.116791,0.111633,0.111176,0.112427,0.114288,0.116486,0.121613,0.130188,0.138916,0.139862,0.131744,0.114136,0.0901184,0.0611267,0.0271301,-0.0124817,-0.0586243,-0.106812,-0.155457,-0.196472,-0.230133,-0.253845,-0.270996,-0.281128,-0.28363,-0.275665,-0.258057,-0.238098,-0.220947,-0.208618,-0.201447,-0.199738,-0.204407,-0.217041,-0.235138,-0.255859,-0.27832,-0.300293,-0.322144,-0.337555,-0.335693,-0.305756,-0.247589,-0.17041,-0.0852966,0.0105896,0.113678,0.218903,0.309814,0.375458,0.410706,0.419586,0.404785,0.363617,0.290009,0.195679,0.0975952,0.0254211,-0.00592041,-0.00341797,0.0180969,0.0483398,0.0966797,0.170898,0.268341,0.36673,0.437347,0.456848,0.4263,0.356293,0.263336,0.152496,0.0300903,-0.0949707,-0.205963,-0.286438,-0.319183,-0.300629,-0.23233,-0.131592,-0.0141907,0.103851,0.213928,0.305756,0.369995,0.391357,0.3591,0.27832,0.163239,0.0405273,-0.0718689,-0.167297,-0.238556,-0.285187,-0.301849,-0.281586,-0.223267,-0.135498,-0.0386658,0.0475464,0.106506,0.131592,0.122864,0.0893555,0.0305481,-0.0523987,-0.155609,-0.266785,-0.369385,-0.446869,-0.489136,-0.496307,-0.474152,-0.427063,-0.360504,-0.278931,-0.189453,-0.101349,-0.0272827,0.0272827,0.0623779,0.0796814,0.0813904,0.0720215,0.0556641,0.037262,0.0247803,0.0249329,0.0374146,0.0629883,0.101196,0.148895,0.208923,0.270691,0.329163,0.375916,0.407104,0.424255,0.430176,0.422089,0.399628,0.359711,0.307953,0.248535,0.192566,0.140961,0.0954285,0.0534668,0.0171509,-0.00857544,-0.0216675,-0.0238647,-0.0188599,-0.0133972,-0.0109253,-0.0119934,-0.0188599,-0.0314941,-0.0497437,-0.0756226,-0.10556,-0.139709,-0.172302,-0.198334,-0.215027,-0.219543,-0.211273,-0.192108,-0.163391,-0.129089,-0.0909119,-0.0531616,-0.0212097,0.00186157,0.0149536,0.0174561,0.00997925,-0.00546265,-0.0285339,-0.0548706,-0.0829468,-0.106964,-0.123962,-0.133453,-0.132538,-0.124878,-0.113037,-0.0983887,-0.0834045,-0.0675049,-0.053009,-0.0413208,-0.0360107,-0.0371094,-0.0456848,-0.052063,-0.0555115,-0.0548706,-0.0497437,-0.0445862,-0.033844,-0.0146484,0.0146484,0.0494385,0.0829468,0.112732,0.139862,0.165894,0.188812,0.207062,0.21814,0.222046,0.221405,0.219055,0.214539,0.20816,0.200836,0.194427,0.185547,0.174164,0.160278,0.143127,0.123657,0.102753,0.0779724,0.0497437,0.0174561,-0.0143433,-0.0438232,-0.0714111,-0.0957336,-0.12085,-0.143921,-0.165131,-0.182434,-0.196136,-0.206757,-0.215179,-0.225006,-0.234497,-0.241058,-0.242157,-0.239807,-0.235291,-0.227325,-0.217651,-0.205505,-0.192719,-0.179932,-0.167938,-0.155609,-0.149689,-0.149536,-0.156403,-0.167145,-0.180237,-0.195984,-0.213776,-0.235291,-0.256012,-0.274109,-0.280975,-0.267548,-0.228577,-0.170563,-0.0985413,-0.0176086,0.0704651,0.160767,0.244171,0.311218,0.353638,0.375458,0.37265,0.345673,0.291718,0.217041,0.138611,0.0816956,0.0626831,0.0773315,0.107574,0.14563,0.197876,0.274902,0.373901,0.474945,0.549164,0.573944,0.542603,0.465271,0.36377,0.246033,0.120697,-0.0101318,-0.133789,-0.232941,-0.285797,-0.28363,-0.232941,-0.150787,-0.0553589,0.0405273,0.129883,0.206757,0.256958,0.268799,0.229218,0.141418,0.0215149,-0.106018,-0.220459,-0.314178,-0.383881,-0.430176,-0.447479,-0.425354,-0.363281,-0.266785,-0.155609,-0.0511475,0.0282288,0.0734253,0.0884094,0.078125,0.0430298,-0.0174561,-0.101196,-0.195831,-0.2883,-0.362671,-0.405243,-0.415527,-0.396027,-0.354401,-0.292053,-0.21283,-0.123962,-0.033844,0.044281,0.106018,0.149689,0.173218,0.178375,0.168243,0.150146,0.124878,0.0975952,0.0778198,0.0675049,0.0729675,0.0930786,0.127869,0.174957,0.22998,0.287994,0.341461,0.388855,0.426147,0.452026,0.464478,0.457306,0.431427,0.387939,0.331024,0.267731,0.202545,0.139862,0.0785828,0.0235291,-0.0204163,-0.0481873,-0.0589294,-0.0575256,-0.0495911,-0.0400696,-0.0300903,-0.0249329,-0.0271301,-0.0403748,-0.0657959,-0.102905,-0.15094,-0.203491,-0.254944,-0.299683,-0.333374,-0.353638,-0.356598,-0.343353,-0.316681,-0.278778,-0.232178,-0.182739,-0.136902,-0.098999,-0.0709534,-0.0533142,-0.0456848,-0.0505066,-0.0646973,-0.0871582,-0.112885,-0.134857,-0.149384,-0.154053,-0.149841,-0.137054,-0.115692,-0.087616,-0.0525513,-0.0123291,0.0302429,0.0682983,0.098999,0.121918,0.13736,0.147186,0.15155,0.151398,0.145325,0.133942,0.122711,0.11615,0.117096,0.125214,0.136444,0.149231,0.166046,0.187408,0.212982,0.238556,0.259155,0.27005,0.272552,0.265381,0.251801,0.23233,0.206909,0.174011,0.133789,0.0904236,0.0455322,0.006073,-0.0263367,-0.0494385,-0.0684509,-0.0848083,-0.10025,-0.108521,-0.110535,-0.108978,-0.11087,-0.12085,-0.137207,-0.158875,-0.181488,-0.203949,-0.22641,-0.249176,-0.272705,-0.288605,-0.296875,-0.292511,-0.278015,-0.258057,-0.235291,-0.208923,-0.181641,-0.152496,-0.125824,-0.104462,-0.0952759,-0.0958862,-0.102295,-0.112122,-0.125977,-0.142517,-0.161987,-0.181641,-0.197235,-0.206757,-0.211884,-0.215485,-0.216431,-0.212982,-0.204895,-0.192413,-0.174957,-0.142365,-0.0882568,-0.0154419,0.0668945,0.152191,0.235443,0.314972,0.384979,0.442047,0.479767,0.49707,0.487396,0.447968,0.383575,0.308105,0.239502,0.193329,0.181183,0.188354,0.203003,0.224823,0.264923,0.328217,0.402588,0.46402,0.485382,0.453888,0.375458,0.264923,0.138916,0.00546265,-0.133789,-0.269135,-0.383087,-0.45639,-0.473846,-0.437195,-0.360657,-0.265076,-0.161072,-0.0618896,0.0293274,0.102753,0.142517,0.138458,0.0865479,-0.00170898,-0.107117,-0.204254,-0.282379,-0.336945,-0.36734,-0.373108,-0.346313,-0.284698,-0.192413,-0.0835876,0.0240173,0.112427,0.170898,0.193512,0.187103,0.152191,0.0957336,0.0195007,-0.0671997,-0.154663,-0.232025,-0.28595,-0.311829,-0.307953,-0.279572,-0.23233,-0.17041,-0.100739,-0.0289917,0.0377197,0.0927734,0.135651,0.164337,0.17868,0.179626,0.174164,0.165283,0.156219,0.148132,0.144379,0.14798,0.16153,0.183044,0.214691,0.250244,0.286438,0.319794,0.348328,0.371246,0.386688,0.394165,0.386383,0.362823,0.322754,0.268188,0.20285,0.133636,0.0586243,-0.0151367,-0.0893555,-0.1539,-0.202698,-0.234344,-0.246368,-0.24588,-0.236389,-0.223114,-0.206451,-0.189606,-0.179474,-0.18103,-0.193329,-0.217987,-0.247437,-0.279419,-0.305603,-0.324463,-0.332886,-0.327576,-0.304199,-0.263977,-0.208313,-0.145782,-0.0821838,-0.0226135,0.0280762,0.0675049,0.0941772,0.106506,0.104309,0.0856018,0.0556641,0.0204163,-0.0124817,-0.0394592,-0.0564575,-0.0628357,-0.0589294,-0.0450745,-0.0212097,0.00857544,0.0410156,0.073761,0.105103,0.130035,0.145477,0.151245,0.147186,0.138458,0.127533,0.116791,0.10321,0.090271,0.0849915,0.0887146,0.102905,0.122559,0.14328,0.167145,0.194427,0.22345,0.24884,0.265533,0.272247,0.266937,0.25415,0.231232,0.200989,0.160431,0.116791,0.0681458,0.020752,-0.0261841,-0.0700073,-0.108215,-0.136444,-0.156708,-0.168854,-0.174957,-0.179138,-0.181488,-0.181641,-0.182281,-0.188507,-0.200195,-0.219543,-0.241211,-0.266632,-0.288757,-0.308563,-0.323059,-0.328827,-0.322449,-0.301544,-0.26709,-0.22345,-0.173553,-0.121918,-0.0714111,-0.0254211,0.0118408,0.0389709,0.0525513,0.0508423,0.0361633,0.0154419,-0.00827026,-0.0327454,-0.0556641,-0.0745239,-0.0867004,-0.0938721,-0.0944824,-0.090271,-0.0827942,-0.0760803,-0.0750122,-0.0810852,-0.0933838,-0.109467,-0.126282,-0.142517,-0.150146,-0.142365,-0.111633,-0.0558167,0.0198059,0.110718,0.208008,0.304047,0.3909,0.459503,0.509247,0.535583,0.531677,0.488983,0.410217,0.311371,0.217194,0.153259,0.123322,0.113983,0.110077,0.113983,0.142212,0.200836,0.278168,0.343964,0.367828,0.335236,0.253845,0.14624,0.0282288,-0.0983887,-0.230438,-0.364868,-0.479767,-0.551331,-0.564575,-0.521393,-0.439545,-0.334595,-0.221558,-0.105865,0.00390625,0.0993347,0.162781,0.181946,0.155609,0.0905762,0.0093689,-0.0706177,-0.135956,-0.18335,-0.214691,-0.226562,-0.209076,-0.159515,-0.079834,0.0177612,0.112732,0.189453,0.236206,0.252289,0.242767,0.20816,0.150299,0.0701599,-0.0243225,-0.122864,-0.210815,-0.276459,-0.315277,-0.328064,-0.316528,-0.284546,-0.23465,-0.171204,-0.101501,-0.0350952,0.0235291,0.0703125,0.105255,0.127228,0.139557,0.144684,0.144836,0.139709,0.132996,0.130493,0.135651,0.150452,0.173218,0.201599,0.23233,0.263031,0.293121,0.319,0.341003,0.354706,0.35611,0.342255,0.31012,0.263672,0.20285,0.136902,0.0643921,-0.0090332,-0.085907,-0.158112,-0.218597,-0.260223,-0.281586,-0.285645,-0.278931,-0.267395,-0.250732,-0.22937,-0.206604,-0.188507,-0.179779,-0.183197,-0.196777,-0.214386,-0.227814,-0.234039,-0.230927,-0.220154,-0.197876,-0.162323,-0.115692,-0.0581665,-0.000152588,0.0550537,0.0996399,0.130676,0.147491,0.15155,0.144531,0.122253,0.0905762,0.0531616,0.0168457,-0.0109253,-0.0279236,-0.031189,-0.0247803,-0.0152893,-0.00201416,0.0146484,0.0347595,0.0522461,0.0643921,0.0664368,0.0592651,0.0452271,0.0308838,0.0202637,0.0141907,0.0135803,0.0195007,0.0343018,0.0566101,0.0857544,0.12085,0.15686,0.189911,0.21579,0.231689,0.238403,0.235138,0.223602,0.204254,0.177582,0.14563,0.114136,0.0845032,0.0636292,0.0447388,0.0272827,0.00732422,-0.013092,-0.0330505,-0.054718,-0.0753174,-0.0985413,-0.128021,-0.161377,-0.194275,-0.222351,-0.242767,-0.258972,-0.270691,-0.279114,-0.28363,-0.280823,-0.269897,-0.253693,-0.232941,-0.211426,-0.189758,-0.167297,-0.141876,-0.112274,-0.081543,-0.0516052,-0.0265198,-0.00576782,0.0132446,0.0316467,0.0495911,0.063446,0.071106,0.0692139,0.0603333,0.0492859,0.0377197,0.0279236,0.0155945,0.00219727,-0.0135803,-0.031189,-0.0462952,-0.0595703,-0.0697021,-0.0813904,-0.0971375,-0.115845,-0.140015,-0.165741,-0.187103,-0.2005,-0.2052,-0.201447,-0.179474,-0.13208,-0.0608215,0.0293274,0.130829,0.235901,0.336151,0.425201,0.493347,0.534668,0.547913,0.527496,0.473206,0.385437,0.278625,0.172913,0.0901184,0.0411682,0.0169983,0.00872803,0.0129395,0.039917,0.0909119,0.158112,0.219543,0.247925,0.226868,0.160767,0.0639343,-0.0448914,-0.160583,-0.280182,-0.39743,-0.495667,-0.557587,-0.565826,-0.522339,-0.437042,-0.327118,-0.205048,-0.0805969,0.0396118,0.143433,0.219391,0.256348,0.253693,0.215485,0.155609,0.0907593,0.0286865,-0.0230713,-0.0618896,-0.0837402,-0.0813904,-0.0528564,-0.00280762,0.0595703,0.121002,0.17041,0.198029,0.201141,0.182281,0.141876,0.0830994,0.0093689,-0.0745239,-0.159515,-0.235443,-0.292969,-0.326813,-0.339294,-0.330078,-0.303894,-0.262115,-0.210022,-0.151398,-0.09198,-0.0368042,0.0123291,0.0548706,0.0913696,0.121002,0.146576,0.167603,0.185242,0.198486,0.209564,0.220154,0.230927,0.240906,0.249176,0.255859,0.25882,0.259308,0.258667,0.255402,0.249176,0.23761,0.218903,0.191925,0.155151,0.109314,0.0583191,0.00390625,-0.0539551,-0.113831,-0.173859,-0.225311,-0.265228,-0.288605,-0.295013,-0.288605,-0.275513,-0.255249,-0.228119,-0.19458,-0.16153,-0.134552,-0.115082,-0.104156,-0.09729,-0.0904236,-0.081543,-0.0698547,-0.0569153,-0.0405273,-0.0176086,0.0102844,0.0430298,0.0748291,0.100555,0.116638,0.123657,0.119598,0.106964,0.0857544,0.0569153,0.0237122,-0.0135803,-0.0464783,-0.0728149,-0.0879517,-0.0935669,-0.0910645,-0.0856018,-0.0765686,-0.0648499,-0.0517578,-0.0413208,-0.0327454,-0.0286865,-0.0263367,-0.0238647,-0.0168457,-0.00326538,0.0169983,0.0438232,0.0760803,0.111938,0.15094,0.19162,0.228424,0.255554,0.268951,0.271606,0.263031,0.248077,0.225311,0.194733,0.160431,0.124725,0.0947876,0.0720215,0.0541077,0.0396118,0.0255737,0.0119934,-0.00311279,-0.0221558,-0.0472412,-0.0778198,-0.114746,-0.155457,-0.195374,-0.232178,-0.261322,-0.282684,-0.29187,-0.287689,-0.271301,-0.245575,-0.212067,-0.175568,-0.139069,-0.105713,-0.0756226,-0.0500488,-0.0319519,-0.0205688,-0.0154419,-0.0135803,-0.00952148,-0.00421143,0.00390625,0.0112305,0.0202637,0.0316467,0.0452271,0.0615845,0.0742188,0.0776367,0.0717163,0.0570679,0.0371094,0.0113831,-0.0185547,-0.0522461,-0.0888672,-0.12381,-0.152802,-0.175415,-0.190369,-0.201447,-0.205048,-0.205963,-0.204254,-0.203308,-0.200684,-0.193817,-0.183685,-0.169006,-0.148743,-0.116486,-0.0632935,0.00827026,0.0938721,0.186157,0.279877,0.370483,0.451874,0.511719,0.54541,0.550079,0.526855,0.475403,0.396515,0.297485,0.19162,0.0979309,0.0303955,-0.00952148,-0.0302429,-0.0366516,-0.0303955,-0.00732422,0.0302429,0.0706177,0.096344,0.0893555,0.0464783,-0.0252686,-0.112274,-0.19989,-0.285034,-0.362061,-0.424744,-0.46106,-0.458252,-0.413666,-0.334137,-0.231079,-0.116943,-0.00186157,0.107117,0.203796,0.278778,0.324615,0.334442,0.310425,0.265228,0.208923,0.151855,0.0979309,0.0502014,0.0109253,-0.0141907,-0.0230713,-0.0155945,0.000457764,0.0187073,0.0322876,0.0341492,0.0223083,-0.00360107,-0.0394592,-0.0834045,-0.13504,-0.188202,-0.239349,-0.281128,-0.310608,-0.325104,-0.325104,-0.309967,-0.284241,-0.245117,-0.19693,-0.142365,-0.0867004,-0.0328979,0.0193481,0.0712585,0.121307,0.169006,0.212372,0.251038,0.280823,0.302795,0.314819,0.321991,0.321808,0.314331,0.299835,0.27771,0.249939,0.2211,0.190369,0.162323,0.134857,0.107422,0.0820007,0.0552063,0.0255737,-0.00622559,-0.0397644,-0.0740662,-0.106812,-0.139862,-0.173065,-0.203003,-0.225464,-0.236206,-0.235596,-0.222656,-0.204407,-0.181641,-0.153748,-0.121002,-0.087616,-0.0558167,-0.0303955,-0.0110779,0.00360107,0.0135803,0.0255737,0.0363159,0.047699,0.0548706,0.0623779,0.0684509,0.0746765,0.0788879,0.0773315,0.0678406,0.0492859,0.0209045,-0.0140381,-0.0505066,-0.0865479,-0.11911,-0.148743,-0.171814,-0.187103,-0.190704,-0.183533,-0.166382,-0.141571,-0.113983,-0.0867004,-0.0615845,-0.0419312,-0.0249329,-0.00967407,0.00637817,0.0223083,0.040863,0.0615845,0.085907,0.116943,0.154999,0.197876,0.239349,0.275513,0.302948,0.32074,0.325867,0.316223,0.293457,0.2565,0.212982,0.164642,0.117249,0.0718689,0.0327454,0.00109863,-0.0235291,-0.0414734,-0.0536499,-0.0631409,-0.0708008,-0.0809326,-0.0944824,-0.114594,-0.138458,-0.164795,-0.188965,-0.207855,-0.220001,-0.22406,-0.218903,-0.204559,-0.181335,-0.150299,-0.113678,-0.0734253,-0.0352478,-0.00125122,0.0213623,0.0361633,0.043335,0.042572,0.0369568,0.0282288,0.0163574,0.00421143,-0.00592041,-0.0138855,-0.0195007,-0.0232239,-0.0257263,-0.0269775,-0.0296326,-0.0347595,-0.044281,-0.0580139,-0.0757751,-0.0949707,-0.112579,-0.130035,-0.144684,-0.156555,-0.164337,-0.170258,-0.170898,-0.167297,-0.161224,-0.155151,-0.149841,-0.145935,-0.141876,-0.139709,-0.136902,-0.129425,-0.113678,-0.084198,-0.037262,0.0247803,0.101959,0.189453,0.285645,0.382935,0.470428,0.535736,0.568787,0.570038,0.540894,0.484131,0.397919,0.284546,0.155304,0.0291443,-0.0715637,-0.137207,-0.17041,-0.182129,-0.172455,-0.143768,-0.0916748,-0.0246277,0.040863,0.0816956,0.0860596,0.0533142,-0.00531006,-0.0776367,-0.155609,-0.234497,-0.307465,-0.364227,-0.388397,-0.371399,-0.311371,-0.219055,-0.106171,0.0141907,0.135651,0.248535,0.343658,0.408508,0.435638,0.420044,0.372192,0.299683,0.212524,0.119904,0.0300903,-0.0514526,-0.116638,-0.161224,-0.182587,-0.182587,-0.166992,-0.143768,-0.116791,-0.0952759,-0.0830994,-0.0813904,-0.0923157,-0.113342,-0.143127,-0.178223,-0.213135,-0.246185,-0.267242,-0.279114,-0.275513,-0.257751,-0.226715,-0.181335,-0.127533,-0.0640869,0.00234985,0.0686035,0.132385,0.191772,0.243713,0.287354,0.320099,0.340546,0.345978,0.338501,0.318848,0.289551,0.25415,0.214539,0.174774,0.135956,0.10025,0.0692139,0.0453796,0.0272827,0.0165405,0.00918579,0.00341797,-0.00561523,-0.0188599,-0.0369568,-0.0580139,-0.0787354,-0.100891,-0.124573,-0.148132,-0.165283,-0.171356,-0.164185,-0.145325,-0.118805,-0.0891724,-0.0570679,-0.0243225,0.00732422,0.0354004,0.0534668,0.0620422,0.0600281,0.0514526,0.0413208,0.0302429,0.0219727,0.0143433,0.00762939,0.00466919,0.00170898,0.000793457,-0.00186157,-0.00982666,-0.0244751,-0.0467834,-0.0773315,-0.112427,-0.148743,-0.182739,-0.211121,-0.231842,-0.239655,-0.234039,-0.21579,-0.184448,-0.14267,-0.0943298,-0.0436707,0.0045166,0.0464783,0.0801392,0.105408,0.123322,0.134857,0.14032,0.142822,0.144073,0.149231,0.160126,0.176819,0.198486,0.221863,0.242004,0.257568,0.266327,0.267731,0.259918,0.237793,0.20224,0.157959,0.10556,0.053009,0.00311279,-0.041626,-0.0776367,-0.106964,-0.127686,-0.139252,-0.140808,-0.134552,-0.12381,-0.112732,-0.104156,-0.0977478,-0.0916748,-0.0862122,-0.0813904,-0.0799866,-0.0793762,-0.077179,-0.0725098,-0.0625305,-0.0509949,-0.0388184,-0.0296326,-0.019165,-0.0112305,-0.00360107,0.000305176,-0.000152588,-0.00497437,-0.014801,-0.0246277,-0.0360107,-0.0467834,-0.0587769,-0.0703125,-0.0796814,-0.0884094,-0.0947876,-0.101807,-0.108215,-0.114746,-0.120209,-0.122711,-0.124725,-0.125214,-0.124878,-0.122253,-0.115387,-0.107117,-0.0958862,-0.084198,-0.0732727,-0.063446,-0.0572205,-0.0550537,-0.0562744,-0.063446,-0.0731201,-0.0857544,-0.0955811,-0.0985413,-0.0926208,-0.0701599,-0.0288391,0.0324402,0.11087,0.200684,0.295776,0.383728,0.457001,0.506592,0.525909,0.509705,0.457794,0.371094,0.258362,0.131134,0.00466919,-0.104462,-0.184753,-0.231537,-0.245728,-0.227325,-0.180725,-0.109467,-0.0235291,0.0614319,0.128784,0.165283,0.162476,0.125061,0.0600281,-0.0229187,-0.111481,-0.197235,-0.268341,-0.311829,-0.320251,-0.286102,-0.218903,-0.125214,-0.0182495,0.0927734,0.197083,0.283142,0.341309,0.365936,0.351288,0.304657,0.23233,0.14798,0.0595703,-0.0266724,-0.103058,-0.162476,-0.202545,-0.217194,-0.21283,-0.191772,-0.164978,-0.135498,-0.109772,-0.0921631,-0.085144,-0.0877686,-0.098999,-0.115997,-0.136597,-0.155609,-0.171204,-0.178528,-0.176666,-0.164978,-0.143616,-0.114288,-0.079834,-0.0402222,0.000610352,0.0414734,0.0809326,0.115845,0.148132,0.176819,0.201904,0.221252,0.236053,0.243866,0.244171,0.236053,0.220001,0.199097,0.17215,0.143616,0.112885,0.0804443,0.0497437,0.0237122,0.00296021,-0.010437,-0.0185547,-0.0235291,-0.0263367,-0.02948,-0.0321045,-0.0346069,-0.0380554,-0.042572,-0.0480347,-0.0553589,-0.0583191,-0.0567627,-0.0491028,-0.0358582,-0.019165,-0.00109863,0.0151367,0.0289917,0.0385132,0.0420837,0.0379028,0.0271301,0.00997925,-0.0090332,-0.0279236,-0.0431824,-0.0525513,-0.0562744,-0.0544128,-0.0484924,-0.0386658,-0.0296326,-0.0221558,-0.0237122,-0.0346069,-0.0566101,-0.0862122,-0.123016,-0.160583,-0.197083,-0.226562,-0.245117,-0.250092,-0.235901,-0.205505,-0.159821,-0.103851,-0.0422668,0.0187073,0.0743713,0.118958,0.148438,0.163239,0.161987,0.151855,0.134094,0.115082,0.0991516,0.0879517,0.0865479,0.0960388,0.117249,0.146423,0.17807,0.206909,0.228577,0.239349,0.238098,0.22345,0.193024,0.15094,0.0994873,0.0450745,-0.00576782,-0.0489502,-0.0813904,-0.102448,-0.112122,-0.109619,-0.0966797,-0.0756226,-0.0511475,-0.0303955,-0.0152893,-0.00796509,-0.006073,-0.00717163,-0.0144958,-0.0244751,-0.0375671,-0.0489502,-0.0559692,-0.0572205,-0.0561218,-0.0516052,-0.0467834,-0.0402222,-0.033844,-0.0299377,-0.0291443,-0.0335083,-0.0420837,-0.0552063,-0.0687561,-0.0827942,-0.0947876,-0.106018,-0.114746,-0.12146,-0.123505,-0.122253,-0.116486,-0.110382,-0.103058,-0.09729,-0.092926,-0.0898132,-0.0874634,-0.085144,-0.081543,-0.0785828,-0.07547,-0.0717163,-0.0664368,-0.0606384,-0.0555115,-0.0523987,-0.0531616,-0.059082,-0.0698547,-0.0846558,-0.102295,-0.120056,-0.133301,-0.135956,-0.12381,-0.0924683,-0.0430298,0.0249329,0.111481,0.209259,0.308411,0.394958,0.45871,0.493652,0.496765,0.468079,0.404449,0.308563,0.188965,0.0628357,-0.0502014,-0.133453,-0.18335,-0.199585,-0.187744,-0.148132,-0.0823364,0.00405884,0.094635,0.168549,0.210022,0.210663,0.174316,0.111786,0.0308838,-0.0617371,-0.157806,-0.243073,-0.301697,-0.321503,-0.299225,-0.242767,-0.161377,-0.0639343,0.0397644,0.141571,0.230438,0.293457,0.322906,0.313232,0.272858,0.209259,0.13208,0.0498962,-0.0317993,-0.104614,-0.161377,-0.19693,-0.209259,-0.202393,-0.180878,-0.154053,-0.12442,-0.0982361,-0.0801392,-0.0715637,-0.0745239,-0.087616,-0.107727,-0.131897,-0.151855,-0.167938,-0.177765,-0.177582,-0.168243,-0.149689,-0.123016,-0.0907593,-0.053009,-0.0149536,0.0238647,0.0578613,0.0890198,0.116638,0.142365,0.163574,0.181335,0.195374,0.205658,0.209412,0.206604,0.19989,0.188202,0.171356,0.151703,0.130493,0.109314,0.0871582,0.0679932,0.052063,0.0417786,0.0343018,0.0302429,0.025116,0.0182495,0.0101318,0.000793457,-0.0101318,-0.0205688,-0.0307312,-0.0407104,-0.0464783,-0.0467834,-0.0385132,-0.0232239,-0.00421143,0.0157471,0.0346069,0.0483398,0.0569153,0.0567627,0.0467834,0.0286865,0.00326538,-0.0263367,-0.0539551,-0.0760803,-0.09198,-0.0994873,-0.0993347,-0.0915222,-0.0756226,-0.0587769,-0.0430298,-0.0346069,-0.0360107,-0.0498962,-0.0725098,-0.103851,-0.140961,-0.178528,-0.212372,-0.237305,-0.247772,-0.241058,-0.217651,-0.178528,-0.128937,-0.0706177,-0.0112305,0.0453796,0.0905762,0.125519,0.142365,0.147491,0.14032,0.126465,0.110382,0.0952759,0.0854492,0.0835876,0.0916748,0.111786,0.137848,0.168091,0.196136,0.21814,0.23233,0.234039,0.224213,0.199585,0.162781,0.11911,0.0722046,0.0283813,-0.00918579,-0.0389709,-0.0567627,-0.065033,-0.0615845,-0.0494385,-0.033844,-0.0173035,-0.00390625,0.00341797,0.00515747,0.00170898,-0.00701904,-0.0188599,-0.0346069,-0.0491028,-0.0617371,-0.0675049,-0.0684509,-0.0648499,-0.0586243,-0.0522461,-0.0452271,-0.0407104,-0.039917,-0.0427246,-0.0513,-0.0640869,-0.0802917,-0.0988464,-0.11615,-0.131744,-0.142365,-0.147827,-0.148132,-0.143127,-0.134247,-0.122101,-0.109924,-0.0979309,-0.0881042,-0.0827942,-0.0804443,-0.0818481,-0.0862122,-0.0916748,-0.0980835,-0.104156,-0.106812,-0.107422,-0.104462,-0.101349,-0.0996399,-0.100739,-0.105103,-0.111786,-0.119293,-0.127869,-0.13269,-0.128174,-0.103699,-0.0589294,0.00280762,0.078125,0.165894,0.264435,0.367493,0.45871,0.523285,0.551483,0.539642,0.492249,0.414429,0.310913,0.187897,0.057373,-0.0612793,-0.14798,-0.192719,-0.19632,-0.167297,-0.113525,-0.0400696,0.0484924,0.136444,0.20816,0.242004,0.228271,0.172913,0.0899658,-0.00482178,-0.104614,-0.19928,-0.280823,-0.331787,-0.340851,-0.304047,-0.22998,-0.13208,-0.0238647,0.081543,0.177582,0.255402,0.30545,0.31543,0.285797,0.223602,0.142517,0.0522461,-0.0352478,-0.114746,-0.180725,-0.22641,-0.246674,-0.242004,-0.218597,-0.185699,-0.149384,-0.116486,-0.0916748,-0.0785828,-0.0785828,-0.0901184,-0.111176,-0.137054,-0.160583,-0.179474,-0.187744,-0.185699,-0.171509,-0.145477,-0.110229,-0.0675049,-0.0227661,0.0230713,0.0657959,0.101807,0.130981,0.153595,0.170563,0.182434,0.188049,0.191315,0.193176,0.194275,0.190857,0.185852,0.177429,0.16684,0.153412,0.137512,0.121765,0.105713,0.0915222,0.0768738,0.0637817,0.054718,0.0473938,0.0413208,0.0344543,0.0244751,0.0105896,-0.00656128,-0.0230713,-0.037262,-0.0480347,-0.0566101,-0.0592651,-0.0536499,-0.0366516,-0.0135803,0.0154419,0.0427246,0.0654907,0.0809326,0.0856018,0.0782776,0.0586243,0.0266724,-0.014801,-0.0623779,-0.106506,-0.144531,-0.169006,-0.181183,-0.178833,-0.165131,-0.139557,-0.108063,-0.0751648,-0.0484924,-0.0324402,-0.0302429,-0.0434875,-0.0671997,-0.101959,-0.140656,-0.179779,-0.211884,-0.231232,-0.232788,-0.216736,-0.182434,-0.134094,-0.0750122,-0.0107727,0.0522461,0.110077,0.155304,0.184601,0.200043,0.200348,0.19162,0.17337,0.15155,0.130829,0.114594,0.105408,0.104004,0.109619,0.120514,0.134705,0.148438,0.159515,0.161987,0.157806,0.144684,0.127075,0.103851,0.078125,0.0511475,0.0263367,0.00592041,-0.00656128,-0.0124817,-0.013092,-0.0135803,-0.0143433,-0.0151367,-0.0168457,-0.0182495,-0.0226135,-0.0296326,-0.0375671,-0.0456848,-0.0497437,-0.0498962,-0.0472412,-0.0422668,-0.0386658,-0.0330505,-0.02948,-0.0288391,-0.033844,-0.0466309,-0.0657959,-0.090271,-0.115234,-0.140808,-0.164795,-0.183533,-0.197083,-0.2005,-0.19397,-0.179626,-0.157959,-0.134552,-0.110229,-0.088562,-0.0695496,-0.0584717,-0.0545654,-0.0606384,-0.0718689,-0.0890198,-0.106659,-0.123657,-0.139557,-0.151703,-0.161224,-0.167145,-0.168243,-0.166534,-0.161682,-0.155609,-0.146423,-0.129089,-0.0977478,-0.0508423,0.00967407,0.0801392,0.16153,0.252594,0.346771,0.433319,0.497864,0.535431,0.53949,0.511261,0.45343,0.364227,0.250244,0.123169,0.00125122,-0.0951233,-0.157013,-0.182434,-0.176178,-0.138763,-0.0750122,0.0132446,0.111633,0.199097,0.255402,0.267548,0.239014,0.178986,0.0955811,-0.0045166,-0.112732,-0.215637,-0.293457,-0.330719,-0.322754,-0.27301,-0.193665,-0.092926,0.0182495,0.129089,0.229523,0.302795,0.335999,0.325562,0.274719,0.194427,0.0975952,-0.00918579,-0.112732,-0.207367,-0.280182,-0.322296,-0.331635,-0.312012,-0.273163,-0.22345,-0.169495,-0.118042,-0.0773315,-0.0525513,-0.0464783,-0.0586243,-0.0838928,-0.113983,-0.143433,-0.168854,-0.18399,-0.185852,-0.174164,-0.147644,-0.10791,-0.0594177,-0.00421143,0.0505066,0.0988464,0.138916,0.168854,0.190857,0.201904,0.203308,0.197083,0.186493,0.173859,0.159363,0.144073,0.128937,0.114441,0.1026,0.0915222,0.0834045,0.07547,0.0695496,0.0657959,0.0654907,0.0689087,0.0743713,0.0790405,0.0804443,0.0791931,0.0722046,0.0622253,0.0487976,0.0330505,0.0165405,-0.000610352,-0.0135803,-0.0184021,-0.0144958,-0.000946045,0.0185547,0.0400696,0.0612793,0.0787354,0.0893555,0.0896606,0.0757751,0.047699,0.00686646,-0.0420837,-0.0927734,-0.140961,-0.180237,-0.208923,-0.223114,-0.221252,-0.20224,-0.169006,-0.127075,-0.0845032,-0.0489502,-0.0249329,-0.0135803,-0.0168457,-0.0324402,-0.0606384,-0.09729,-0.137054,-0.172455,-0.196625,-0.205048,-0.195831,-0.170105,-0.130035,-0.0785828,-0.0199585,0.0393066,0.0930786,0.136597,0.165741,0.181488,0.180725,0.167297,0.14328,0.114441,0.0870056,0.0637817,0.047699,0.0417786,0.044281,0.0566101,0.0757751,0.0982361,0.118347,0.133301,0.140808,0.139709,0.132385,0.118652,0.101501,0.0809326,0.0604858,0.0448914,0.035553,0.0322876,0.0352478,0.0397644,0.0431824,0.0461426,0.0455322,0.0424194,0.0325928,0.0180969,-0.00250244,-0.0243225,-0.0452271,-0.0620422,-0.0732727,-0.0813904,-0.0852966,-0.085907,-0.0840454,-0.0823364,-0.0813904,-0.085144,-0.094635,-0.109772,-0.128937,-0.149536,-0.170746,-0.186798,-0.200348,-0.205658,-0.203949,-0.193329,-0.177277,-0.156067,-0.134552,-0.11319,-0.0971375,-0.085144,-0.0821838,-0.0881042,-0.102753,-0.125366,-0.153412,-0.183685,-0.214874,-0.240265,-0.25882,-0.263184,-0.246033,-0.204559,-0.139709,-0.0587769,0.0388184,0.147186,0.263031,0.373749,0.465118,0.526093,0.551331,0.539948,0.497375,0.423157,0.321991,0.203308,0.0805969,-0.0261841,-0.103363,-0.145782,-0.155609,-0.135345,-0.0865479,-0.0113831,0.0796814,0.174622,0.25119,0.298584,0.310608,0.290802,0.244629,0.17807,0.094635,0.00421143,-0.0818481,-0.147827,-0.184143,-0.188507,-0.165436,-0.119904,-0.0569153,0.0157471,0.0915222,0.160767,0.210815,0.235138,0.226868,0.194122,0.139252,0.0673523,-0.0157471,-0.103699,-0.187744,-0.259918,-0.311829,-0.343353,-0.352997,-0.34613,-0.323547,-0.28891,-0.24823,-0.205811,-0.16745,-0.135193,-0.109619,-0.0910645,-0.0790405,-0.0718689,-0.0684509,-0.0665894,-0.0653381,-0.0618896,-0.0555115,-0.0452271,-0.0308838,-0.0137329,0.00531006,0.0252686,0.04599,0.0667419,0.0873108,0.104004,0.117554,0.126465,0.133453,0.136902,0.135956,0.130493,0.12085,0.108368,0.0954285,0.0829468,0.0720215,0.0626831,0.057373,0.0553589,0.0581665,0.0657959,0.0768738,0.0881042,0.0988464,0.107269,0.112885,0.11554,0.115845,0.115234,0.114136,0.111328,0.110077,0.110535,0.113678,0.117401,0.119904,0.118958,0.111938,0.0965271,0.0750122,0.0424194,0.00390625,-0.0411682,-0.0890198,-0.134552,-0.174316,-0.205811,-0.224823,-0.231232,-0.224213,-0.204895,-0.176819,-0.14267,-0.109131,-0.0782776,-0.0559692,-0.0438232,-0.0405273,-0.0484924,-0.0620422,-0.0802917,-0.0994873,-0.11319,-0.121155,-0.118958,-0.107269,-0.0873108,-0.0608215,-0.0299377,0.00296021,0.0333557,0.0569153,0.0714111,0.0765686,0.0736084,0.0645447,0.0491028,0.0305481,0.0124817,-0.00265503,-0.0113831,-0.0143433,-0.0118408,-0.00421143,0.00762939,0.0216675,0.0397644,0.0561218,0.0701599,0.0787354,0.0854492,0.0896606,0.0944824,0.0979309,0.1026,0.105713,0.109467,0.113831,0.118652,0.122101,0.124115,0.119598,0.110077,0.0957336,0.0782776,0.0576782,0.035553,0.0126343,-0.0107727,-0.0307312,-0.0461426,-0.057373,-0.0636292,-0.0689087,-0.0723572,-0.077179,-0.0835876,-0.0921631,-0.105255,-0.12146,-0.141113,-0.16153,-0.181488,-0.19754,-0.20816,-0.214081,-0.214233,-0.206909,-0.195679,-0.181946,-0.167297,-0.157806,-0.156219,-0.162476,-0.174774,-0.189911,-0.207062,-0.220459,-0.226074,-0.21283,-0.179321,-0.125366,-0.0533142,0.0324402,0.126465,0.220459,0.30484,0.367035,0.401337,0.398834,0.362366,0.297333,0.210175,0.110229,0.00918579,-0.0802917,-0.145935,-0.177124,-0.173706,-0.13736,-0.0743713,0.00997925,0.104462,0.19754,0.275055,0.324615,0.340057,0.325714,0.284546,0.226227,0.154816,0.0826416,0.0174561,-0.0271301,-0.0431824,-0.0325928,0.0015564,0.0533142,0.115387,0.179138,0.235443,0.277222,0.29657,0.288605,0.252289,0.190857,0.112274,0.0247803,-0.0632935,-0.147644,-0.218903,-0.274902,-0.307617,-0.319489,-0.313568,-0.295013,-0.268341,-0.236053,-0.204895,-0.178223,-0.159515,-0.14859,-0.143616,-0.142365,-0.142059,-0.142059,-0.138611,-0.130676,-0.117401,-0.100555,-0.079834,-0.0555115,-0.0305481,-0.00515747,0.0173035,0.0347595,0.0464783,0.0541077,0.0580139,0.0564575,0.0513,0.0430298,0.0324402,0.0218201,0.0105896,0.00186157,-0.00637817,-0.0126343,-0.0160522,-0.0140381,-0.00796509,0.00436401,0.0202637,0.0405273,0.0628357,0.0862122,0.108063,0.126617,0.139862,0.14798,0.149536,0.144836,0.138458,0.130981,0.123169,0.119446,0.119598,0.125061,0.135803,0.148132,0.16217,0.171814,0.17511,0.169342,0.152496,0.124725,0.0862122,0.0405273,-0.010437,-0.0594177,-0.104156,-0.138763,-0.161072,-0.168701,-0.162933,-0.145172,-0.119293,-0.0881042,-0.0575256,-0.0325928,-0.0184021,-0.0146484,-0.0219727,-0.039917,-0.0628357,-0.0890198,-0.112579,-0.132385,-0.140656,-0.138458,-0.124573,-0.100739,-0.0706177,-0.0385132,-0.00827026,0.0158997,0.031189,0.0360107,0.02948,0.0124817,-0.0116882,-0.0391235,-0.0645447,-0.0848083,-0.0957336,-0.0975952,-0.0871582,-0.0686035,-0.0411682,-0.00918579,0.0238647,0.0528564,0.0759277,0.0888672,0.0927734,0.0888672,0.0779724,0.0629883,0.0458374,0.0313416,0.0213623,0.0169983,0.0198059,0.0286865,0.0436707,0.0595703,0.0765686,0.0898132,0.0969849,0.0958862,0.0870056,0.0714111,0.0489502,0.0210571,-0.0109253,-0.0439758,-0.0720215,-0.0947876,-0.110229,-0.12085,-0.124878,-0.127075,-0.12381,-0.118347,-0.11087,-0.105713,-0.105103,-0.110229,-0.119751,-0.134399,-0.15094,-0.168854,-0.183197,-0.194275,-0.19458,-0.17868,-0.144379,-0.0927734,-0.0313416,0.0397644,0.11554,0.189301,0.253357,0.295929,0.309021,0.291107,0.242615,0.170746,0.0804443,-0.0215149,-0.122253,-0.212372,-0.277222,-0.309814,-0.307465,-0.273651,-0.212067,-0.129089,-0.0332031,0.0654907,0.153748,0.219055,0.254608,0.264282,0.251038,0.220001,0.17572,0.126282,0.0804443,0.0473938,0.0369568,0.048645,0.0782776,0.120361,0.168701,0.217651,0.262421,0.292816,0.303253,0.287048,0.248077,0.188507,0.115692,0.0358582,-0.0439758,-0.116943,-0.176666,-0.219543,-0.241058,-0.237793,-0.217499,-0.18634,-0.150146,-0.110229,-0.0718689,-0.0414734,-0.0221558,-0.014801,-0.0157471,-0.0229187,-0.0357056,-0.047699,-0.0567627,-0.0597229,-0.0586243,-0.0522461,-0.039917,-0.0241699,-0.00997925,0.00280762,0.0101318,0.0115356,0.00234985,-0.0143433,-0.0349121,-0.0601807,-0.088562,-0.116486,-0.141876,-0.160126,-0.169952,-0.171661,-0.164642,-0.14859,-0.122559,-0.0879517,-0.0473938,-0.00186157,0.0438232,0.088562,0.128784,0.162476,0.186951,0.200836,0.201752,0.192871,0.17511,0.152496,0.125214,0.098999,0.0768738,0.0600281,0.0519104,0.0528564,0.0612793,0.0751648,0.0896606,0.1026,0.11087,0.109924,0.0991516,0.0760803,0.0419312,0,-0.0467834,-0.0924683,-0.130493,-0.158875,-0.17215,-0.169342,-0.148132,-0.11087,-0.0618896,-0.00405884,0.054718,0.108215,0.151093,0.178528,0.188049,0.179321,0.154816,0.116943,0.0700073,0.0199585,-0.0272827,-0.0662537,-0.094635,-0.111023,-0.11554,-0.109924,-0.0996399,-0.0857544,-0.0734253,-0.0643921,-0.0622253,-0.0679932,-0.0790405,-0.0944824,-0.108978,-0.12146,-0.126923,-0.125977,-0.11911,-0.103058,-0.0816956,-0.0553589,-0.0271301,-0.000152588,0.0224609,0.0402222,0.0548706,0.065033,0.0723572,0.0756226,0.0768738,0.0779724,0.0804443,0.0838928,0.0874634,0.0879517,0.0852966,0.0802917,0.0704651,0.0580139,0.0400696,0.0179443,-0.00827026,-0.0347595,-0.0594177,-0.0793762,-0.0947876,-0.105713,-0.110718,-0.107727,-0.098999,-0.0862122,-0.0734253,-0.0592651,-0.0483398,-0.0414734,-0.0403748,-0.0470886,-0.0601807,-0.0804443,-0.108215,-0.138916,-0.17041,-0.197693,-0.219543,-0.234192,-0.232483,-0.210022,-0.166534,-0.103058,-0.0269775,0.0600281,0.151093,0.241058,0.318085,0.37265,0.394623,0.380615,0.330566,0.252289,0.149231,0.0305481,-0.0943298,-0.209564,-0.300781,-0.356598,-0.373901,-0.352844,-0.298279,-0.21579,-0.112122,0.00109863,0.111786,0.200348,0.259155,0.28595,0.284546,0.259308,0.214081,0.157623,0.0974426,0.0441284,0.0123291,0.00341797,0.0202637,0.0538025,0.0991516,0.150299,0.203308,0.24823,0.276306,0.280334,0.260559,0.21579,0.152802,0.0796814,0.00219727,-0.0718689,-0.139709,-0.189911,-0.220642,-0.226868,-0.215179,-0.190857,-0.159668,-0.121002,-0.0829468,-0.0516052,-0.0308838,-0.0190125,-0.0151367,-0.0195007,-0.0283813,-0.0380554,-0.0422668,-0.041626,-0.0377197,-0.0291443,-0.0141907,0.00186157,0.0174561,0.0263367,0.0324402,0.0289917,0.0140381,-0.00811768,-0.036499,-0.0665894,-0.0982361,-0.128632,-0.153595,-0.167786,-0.171814,-0.164032,-0.148895,-0.123505,-0.0921631,-0.0553589,-0.0168457,0.0218201,0.0580139,0.0901184,0.11554,0.134094,0.146729,0.152649,0.150452,0.140808,0.12677,0.110077,0.0940247,0.0773315,0.0617371,0.0513,0.0452271,0.0448914,0.0498962,0.0583191,0.0692139,0.0796814,0.0873108,0.0910645,0.0891724,0.0802917,0.0640869,0.0407104,0.0143433,-0.0144958,-0.0405273,-0.0626831,-0.076416,-0.0790405,-0.0706177,-0.0516052,-0.0233765,0.0110779,0.0491028,0.0849915,0.114441,0.134094,0.141266,0.134247,0.114899,0.0865479,0.0506592,0.0113831,-0.0289917,-0.0651855,-0.094635,-0.114288,-0.126129,-0.128937,-0.128784,-0.124878,-0.120209,-0.114594,-0.110718,-0.110229,-0.111938,-0.114136,-0.113525,-0.106812,-0.0944824,-0.0785828,-0.0581665,-0.0352478,-0.0102844,0.0146484,0.035553,0.0489502,0.0533142,0.0502014,0.0427246,0.0310364,0.0195007,0.00546265,-0.00592041,-0.0123291,-0.0129395,-0.00482178,0.00686646,0.0184021,0.0279236,0.0344543,0.0377197,0.0346069,0.0255737,0.00717163,-0.0177612,-0.0450745,-0.0712585,-0.0924683,-0.107269,-0.11554,-0.116486,-0.107727,-0.088562,-0.0639343,-0.0385132,-0.0158997,0.000305176,0.00857544,0.00592041,-0.0093689,-0.0380554,-0.0757751,-0.118652,-0.159973,-0.192261,-0.207855,-0.202545,-0.170563,-0.111633,-0.02948,0.069397,0.175568,0.280029,0.369995,0.430023,0.451385,0.426453,0.357513,0.254303,0.122406,-0.0229187,-0.171356,-0.30249,-0.39978,-0.452026,-0.458099,-0.419586,-0.340698,-0.232941,-0.111938,0.0113831,0.125366,0.210968,0.258057,0.268646,0.249176,0.206299,0.147827,0.0821838,0.0219727,-0.0195007,-0.0354004,-0.0241699,0.0151367,0.0726624,0.135651,0.198181,0.253693,0.294678,0.310913,0.295166,0.251648,0.183533,0.10025,0.0109253,-0.0776367,-0.156067,-0.217834,-0.254608,-0.266479,-0.253052,-0.217346,-0.167145,-0.113525,-0.059082,-0.00952148,0.0308838,0.0567627,0.0665894,0.0643921,0.0561218,0.0419312,0.0257263,0.0138855,0.0102844,0.0109253,0.0171509,0.0265198,0.0402222,0.0516052,0.0570679,0.0566101,0.0480347,0.0279236,0.00201416,-0.0308838,-0.0640869,-0.0977478,-0.12973,-0.155457,-0.173859,-0.181641,-0.178986,-0.167145,-0.148743,-0.123657,-0.0930786,-0.0570679,-0.0202637,0.0166931,0.0513,0.0812378,0.106018,0.12381,0.136749,0.140015,0.138,0.126129,0.110535,0.09198,0.0743713,0.0578613,0.043335,0.0333557,0.0286865,0.0293274,0.0327454,0.038208,0.0424194,0.0436707,0.0405273,0.0325928,0.0205688,0.00219727,-0.0184021,-0.0396118,-0.0576782,-0.0682983,-0.0708008,-0.0626831,-0.043335,-0.0144958,0.0218201,0.0618896,0.101654,0.136444,0.163574,0.177917,0.178986,0.165894,0.141571,0.108368,0.0701599,0.0321045,-0.00186157,-0.0289917,-0.0483398,-0.0576782,-0.0584717,-0.0536499,-0.0452271,-0.0377197,-0.0341492,-0.0361633,-0.044281,-0.0566101,-0.0731201,-0.0910645,-0.108063,-0.120514,-0.124268,-0.1185,-0.104004,-0.083252,-0.0586243,-0.0316467,-0.00637817,0.0152893,0.0289917,0.0314941,0.0240173,0.00796509,-0.0132446,-0.037262,-0.0600281,-0.0795288,-0.0938721,-0.10025,-0.0971375,-0.085144,-0.0684509,-0.0495911,-0.0317993,-0.0180969,-0.00982666,-0.00842285,-0.0163574,-0.0325928,-0.0545654,-0.0784302,-0.101807,-0.121613,-0.136749,-0.14502,-0.146088,-0.140167,-0.131287,-0.122559,-0.114899,-0.110718,-0.112579,-0.120697,-0.130035,-0.135498,-0.129425,-0.109772,-0.0723572,-0.0157471,0.0617371,0.155457,0.259155,0.358154,0.438751,0.488037,0.500519,0.474792,0.407104,0.29657,0.151855,-0.00747681,-0.159668,-0.287994,-0.382782,-0.435333,-0.4422,-0.400391,-0.314819,-0.19162,-0.0509949,0.0873108,0.202087,0.286438,0.335693,0.354706,0.3396,0.291412,0.218597,0.137665,0.0657959,0.0144958,-0.00952148,-0.0118408,0.00326538,0.0310364,0.0704651,0.116486,0.157318,0.179779,0.174622,0.143768,0.092926,0.0305481,-0.0400696,-0.111938,-0.179779,-0.234039,-0.268188,-0.275665,-0.259308,-0.22406,-0.179321,-0.129089,-0.0791931,-0.0343018,0.0015564,0.0241699,0.0336914,0.0297852,0.0166931,0.00201416,-0.00918579,-0.0140381,-0.0112305,-0.00280762,0.0127869,0.0296326,0.0475464,0.0612793,0.0665894,0.0615845,0.042572,0.0132446,-0.0240173,-0.0636292,-0.102753,-0.138306,-0.165131,-0.180084,-0.180389,-0.165894,-0.140808,-0.10495,-0.0637817,-0.0196533,0.026825,0.0704651,0.111328,0.144379,0.170746,0.189301,0.201752,0.206909,0.201904,0.187744,0.165741,0.137512,0.105865,0.0729675,0.0374146,0.00421143,-0.0233765,-0.0430298,-0.0505066,-0.0473938,-0.0354004,-0.0174561,0.00405884,0.0279236,0.0506592,0.0664368,0.0732727,0.0684509,0.054718,0.0333557,0.00967407,-0.0143433,-0.0346069,-0.0470886,-0.0480347,-0.0385132,-0.0165405,0.0129395,0.0487976,0.0834045,0.115692,0.137207,0.148285,0.144226,0.125519,0.0958862,0.0575256,0.0157471,-0.0265198,-0.0645447,-0.0958862,-0.11615,-0.126465,-0.126129,-0.117706,-0.103546,-0.0871582,-0.0700073,-0.0544128,-0.0402222,-0.0296326,-0.0230713,-0.0193481,-0.0180969,-0.014801,-0.00888062,-0.00201416,0.00497437,0.010437,0.0155945,0.0195007,0.0216675,0.0184021,0.00857544,-0.00918579,-0.0319519,-0.0581665,-0.0834045,-0.108826,-0.13208,-0.152496,-0.162628,-0.164032,-0.153107,-0.133148,-0.107269,-0.0790405,-0.050354,-0.0219727,0.00170898,0.0185547,0.0241699,0.0177612,0.0015564,-0.0204163,-0.0467834,-0.0746765,-0.103851,-0.132538,-0.159973,-0.182281,-0.197235,-0.20816,-0.215332,-0.215027,-0.204712,-0.17807,-0.133301,-0.0726624,0.00326538,0.0916748,0.188507,0.28891,0.37796,0.443604,0.474457,0.466034,0.417389,0.33197,0.211731,0.0675049,-0.0838928,-0.2211,-0.32962,-0.398376,-0.419586,-0.392456,-0.319946,-0.207855,-0.0717163,0.0745239,0.208618,0.315277,0.381531,0.405853,0.394806,0.347076,0.270355,0.177582,0.0835876,0.00421143,-0.0497437,-0.0706177,-0.0612793,-0.031189,0.0171509,0.0739136,0.13208,0.179779,0.204712,0.200043,0.166687,0.106812,0.0328979,-0.0498962,-0.131744,-0.204102,-0.258057,-0.285187,-0.282074,-0.250732,-0.198181,-0.132843,-0.0608215,0.00531006,0.0592651,0.0960388,0.111023,0.105865,0.0810852,0.042572,-0.00186157,-0.0441284,-0.0756226,-0.0985413,-0.106812,-0.1026,-0.0884094,-0.0675049,-0.04599,-0.0282288,-0.0180969,-0.0218201,-0.0354004,-0.0592651,-0.0874634,-0.117249,-0.145172,-0.166199,-0.174622,-0.169189,-0.148895,-0.117249,-0.0745239,-0.0244751,0.0289917,0.0813904,0.129578,0.170746,0.201752,0.221863,0.229675,0.227631,0.216248,0.190857,0.157623,0.118805,0.077179,0.0358582,-0.00436401,-0.0400696,-0.0682983,-0.0882568,-0.0952759,-0.091217,-0.0746765,-0.0500488,-0.0196533,0.0126343,0.0466309,0.0778198,0.104156,0.121002,0.129578,0.127075,0.117096,0.103546,0.086853,0.0708008,0.0597229,0.0513,0.0491028,0.0531616,0.0628357,0.0746765,0.0873108,0.096344,0.0997925,0.0966797,0.084198,0.0637817,0.0368042,0.00592041,-0.0269775,-0.0598755,-0.0895081,-0.111328,-0.12442,-0.128632,-0.123962,-0.111786,-0.092926,-0.0690613,-0.0436707,-0.0185547,0.00466919,0.0230713,0.0366516,0.0447388,0.0475464,0.0473938,0.0411682,0.0319519,0.0223083,0.00952148,-0.0045166,-0.0195007,-0.035553,-0.0517578,-0.0700073,-0.0887146,-0.109314,-0.129089,-0.147491,-0.163879,-0.176819,-0.185547,-0.18866,-0.186646,-0.180084,-0.165741,-0.148895,-0.125214,-0.104004,-0.0830994,-0.0668945,-0.0538025,-0.0444336,-0.0428772,-0.046936,-0.0614319,-0.0802917,-0.101196,-0.122559,-0.144531,-0.16684,-0.18399,-0.190216,-0.182587,-0.158264,-0.114899,-0.0567627,0.0173035,0.102753,0.194733,0.281128,0.352386,0.401031,0.418945,0.40509,0.352692,0.266144,0.152008,0.0257263,-0.0997925,-0.208618,-0.291718,-0.341309,-0.354553,-0.327271,-0.256165,-0.150635,-0.026825,0.0988464,0.208313,0.296722,0.361908,0.399323,0.405396,0.37796,0.324463,0.257263,0.189453,0.135803,0.0993347,0.0757751,0.0656433,0.0629883,0.0736084,0.0888672,0.103851,0.105408,0.0877686,0.0517578,0.00390625,-0.0500488,-0.105408,-0.158569,-0.203003,-0.23233,-0.237946,-0.219238,-0.176971,-0.118958,-0.0522461,0.0124817,0.0681458,0.110718,0.134857,0.137512,0.114441,0.0712585,0.013092,-0.0516052,-0.111328,-0.161987,-0.194916,-0.214081,-0.213928,-0.197083,-0.166534,-0.12738,-0.0874634,-0.054718,-0.0317993,-0.0233765,-0.0279236,-0.0450745,-0.0706177,-0.101654,-0.133789,-0.160278,-0.177277,-0.181183,-0.169006,-0.141571,-0.101349,-0.0492859,0.0090332,0.0709534,0.129883,0.183044,0.225159,0.255096,0.270355,0.268951,0.248993,0.214081,0.16684,0.110229,0.0525513,-0.006073,-0.0587769,-0.104462,-0.136261,-0.151398,-0.147186,-0.127075,-0.0916748,-0.0472412,0.00466919,0.0576782,0.110535,0.157166,0.193024,0.215332,0.222656,0.217194,0.202087,0.180389,0.154663,0.12677,0.101196,0.0791931,0.0632935,0.0531616,0.0497437,0.0467834,0.0455322,0.0436707,0.0379028,0.0293274,0.0166931,0.000305176,-0.0182495,-0.0371094,-0.0555115,-0.0698547,-0.0793762,-0.082489,-0.0796814,-0.0701599,-0.0562744,-0.0385132,-0.0204163,-0.00201416,0.013092,0.0260315,0.0339966,0.0380554,0.0369568,0.0324402,0.0271301,0.0196533,0.0127869,0.00405884,-0.00561523,-0.0158997,-0.0260315,-0.038208,-0.0516052,-0.0681458,-0.088562,-0.110718,-0.134247,-0.155762,-0.175568,-0.190857,-0.201447,-0.2052,-0.203156,-0.191925,-0.174774,-0.152191,-0.127228,-0.1026,-0.0809326,-0.0643921,-0.0534668,-0.0498962,-0.0566101,-0.0718689,-0.0926208,-0.118652,-0.148285,-0.178986,-0.206757,-0.227966,-0.23996,-0.235748,-0.212372,-0.167297,-0.103058,-0.0204163,0.0718689,0.17041,0.264282,0.345215,0.402283,0.42926,0.41568,0.362061,0.271759,0.157623,0.0286865,-0.09729,-0.210327,-0.299683,-0.353638,-0.365021,-0.329315,-0.250397,-0.141113,-0.0157471,0.111023,0.226562,0.324005,0.393219,0.430511,0.430664,0.397614,0.342407,0.275665,0.211273,0.156067,0.117096,0.0938721,0.0867004,0.0949707,0.115845,0.138916,0.157013,0.160583,0.144531,0.110718,0.0611267,0.0015564,-0.0651855,-0.129578,-0.183838,-0.220795,-0.232941,-0.217041,-0.176666,-0.117096,-0.046936,0.0266724,0.0943298,0.145477,0.176361,0.180542,0.158722,0.111023,0.0464783,-0.0296326,-0.105103,-0.171509,-0.222656,-0.257751,-0.268494,-0.258667,-0.233734,-0.196625,-0.157806,-0.120697,-0.0935669,-0.079834,-0.0790405,-0.0916748,-0.114746,-0.143616,-0.17337,-0.196472,-0.210175,-0.209076,-0.193817,-0.162781,-0.118042,-0.0629883,-0.00360107,0.0555115,0.111023,0.157471,0.192871,0.21347,0.219696,0.210175,0.185089,0.14859,0.103363,0.0544128,0.00250244,-0.0453796,-0.0890198,-0.121613,-0.141418,-0.14563,-0.134399,-0.108521,-0.0687561,-0.019165,0.037262,0.0969849,0.15451,0.206299,0.247131,0.273804,0.286102,0.282837,0.26709,0.240753,0.207855,0.171661,0.135956,0.104614,0.0790405,0.0628357,0.0541077,0.0534668,0.057373,0.0643921,0.0695496,0.0714111,0.0697021,0.0628357,0.0517578,0.0344543,0.0137329,-0.00717163,-0.0274353,-0.0410156,-0.0506592,-0.0541077,-0.0523987,-0.0458374,-0.0324402,-0.0169983,-0.000610352,0.0152893,0.025116,0.031189,0.0314941,0.0272827,0.0195007,0.00671387,-0.0109253,-0.0297852,-0.0492859,-0.0678406,-0.0838928,-0.0997925,-0.114441,-0.127869,-0.142059,-0.153259,-0.164337,-0.174011,-0.183197,-0.190704,-0.194916,-0.195679,-0.191162,-0.184448,-0.173706,-0.161987,-0.149994,-0.14032,-0.133636,-0.131744,-0.134857,-0.14328,-0.153412,-0.167786,-0.18399,-0.201447,-0.213287,-0.21875,-0.216431,-0.204407,-0.181335,-0.142975,-0.0895081,-0.0216675,0.0545654,0.133148,0.210022,0.277374,0.328064,0.358612,0.358917,0.328064,0.267395,0.180878,0.0784302,-0.0297852,-0.129425,-0.210815,-0.26474,-0.286438,-0.272552,-0.219696,-0.135498,-0.0319519,0.0812378,0.190704,0.286102,0.357056,0.400574,0.414276,0.399933,0.362823,0.310608,0.25058,0.195068,0.151855,0.125824,0.114746,0.117096,0.128784,0.14563,0.163574,0.175262,0.172302,0.151703,0.114136,0.0637817,0.00466919,-0.0561218,-0.111633,-0.157959,-0.187744,-0.193665,-0.175873,-0.136902,-0.0829468,-0.0168457,0.0481873,0.106506,0.153595,0.180878,0.185852,0.164337,0.122406,0.063446,-0.00671387,-0.078125,-0.144684,-0.202393,-0.24588,-0.271149,-0.278473,-0.270844,-0.25354,-0.229828,-0.204712,-0.181488,-0.163727,-0.154053,-0.151093,-0.153107,-0.158875,-0.162476,-0.163574,-0.160126,-0.148438,-0.128784,-0.100891,-0.0673523,-0.0293274,0.00811768,0.0434875,0.0743713,0.0974426,0.112274,0.117249,0.112274,0.0968323,0.0704651,0.0388184,0.00234985,-0.0346069,-0.0689087,-0.0988464,-0.122101,-0.134094,-0.134399,-0.120056,-0.0932312,-0.0545654,-0.006073,0.0475464,0.102905,0.155914,0.201599,0.237946,0.26178,0.270691,0.26709,0.25119,0.22641,0.196136,0.16449,0.135498,0.111176,0.0941772,0.085907,0.0829468,0.0874634,0.0947876,0.103699,0.109619,0.112274,0.108063,0.0988464,0.0845032,0.0678406,0.0491028,0.0305481,0.0160522,0.00482178,0.000946045,0.00250244,0.00857544,0.019165,0.0310364,0.0441284,0.0544128,0.0618896,0.0648499,0.0617371,0.0544128,0.0417786,0.0254211,0.00592041,-0.0151367,-0.0374146,-0.0592651,-0.0793762,-0.0988464,-0.115387,-0.130341,-0.142822,-0.153748,-0.16217,-0.169342,-0.173859,-0.177765,-0.177124,-0.174622,-0.169006,-0.161072,-0.152496,-0.144226,-0.137512,-0.133301,-0.133148,-0.140656,-0.15451,-0.173218,-0.196625,-0.222198,-0.247772,-0.271759,-0.291718,-0.304993,-0.306549,-0.295471,-0.271606,-0.232483,-0.179626,-0.113983,-0.0371094,0.0447388,0.125977,0.203003,0.266479,0.309021,0.328064,0.320251,0.281891,0.21579,0.126923,0.0240173,-0.081543,-0.178986,-0.252747,-0.297974,-0.311218,-0.286591,-0.225006,-0.133942,-0.0237122,0.0944824,0.209076,0.306244,0.379974,0.425049,0.440155,0.424561,0.385895,0.333832,0.274261,0.219055,0.175873,0.148743,0.138611,0.14267,0.156708,0.176178,0.195374,0.207672,0.205811,0.185547,0.151398,0.103546,0.0497437,-0.00531006,-0.0538025,-0.0923157,-0.113342,-0.110229,-0.0871582,-0.0458374,0.00842285,0.0676575,0.124725,0.170898,0.203949,0.217987,0.208771,0.177917,0.12738,0.0643921,-0.006073,-0.0739136,-0.13269,-0.18103,-0.215332,-0.233093,-0.235748,-0.226715,-0.211426,-0.194916,-0.178833,-0.170258,-0.166687,-0.170898,-0.18103,-0.194733,-0.208771,-0.220001,-0.223907,-0.219391,-0.204254,-0.179321,-0.147644,-0.109467,-0.0701599,-0.0330505,0.000946045,0.0263367,0.0431824,0.0478821,0.0424194,0.0261841,0.00140381,-0.0300903,-0.065033,-0.0993347,-0.131287,-0.157166,-0.176514,-0.184143,-0.180542,-0.165436,-0.137848,-0.0994873,-0.0536499,-0.000793457,0.053009,0.106506,0.155762,0.196136,0.225616,0.243225,0.247131,0.239349,0.221863,0.19754,0.168854,0.14032,0.115692,0.0958862,0.0834045,0.0812378,0.0849915,0.0952759,0.107422,0.121307,0.13269,0.141724,0.145782,0.145782,0.142059,0.135193,0.127533,0.119446,0.11319,0.109467,0.108673,0.109467,0.111328,0.112885,0.111786,0.109619,0.10321,0.0941772,0.0816956,0.0676575,0.0523987,0.037262,0.0218201,0.00701904,-0.00592041,-0.0165405,-0.0255737,-0.035553,-0.046936,-0.0595703,-0.0731201,-0.0874634,-0.104767,-0.123505,-0.142517,-0.160278,-0.174774,-0.184937,-0.190216,-0.191162,-0.186493,-0.17868,-0.167603,-0.156067,-0.145477,-0.140656,-0.142822,-0.153748,-0.171204,-0.194275,-0.222046,-0.253998,-0.286591,-0.316528,-0.34021,-0.354095,-0.357361,-0.347382,-0.320892,-0.276917,-0.217041,-0.143921,-0.0626831,0.0218201,0.104614,0.177429,0.233246,0.26413,0.266144,0.240906,0.186951,0.110229,0.0155945,-0.0843506,-0.177765,-0.251495,-0.29953,-0.315735,-0.298126,-0.245117,-0.165283,-0.0637817,0.0483398,0.161377,0.260376,0.338959,0.3909,0.41507,0.413177,0.388702,0.348328,0.296417,0.246368,0.2052,0.180878,0.169495,0.171051,0.179138,0.195679,0.213776,0.227814,0.228577,0.215485,0.186005,0.146423,0.101349,0.0558167,0.0157471,-0.0157471,-0.0316467,-0.025116,-0.000946045,0.0419312,0.0926208,0.149231,0.200836,0.242462,0.269745,0.276459,0.260223,0.2211,0.165588,0.0966797,0.0237122,-0.0473938,-0.109467,-0.15921,-0.193817,-0.209564,-0.209869,-0.198334,-0.181335,-0.160583,-0.144073,-0.13269,-0.129425,-0.13504,-0.148895,-0.166687,-0.185852,-0.20285,-0.213928,-0.214874,-0.203796,-0.183685,-0.156067,-0.123657,-0.0905762,-0.0595703,-0.0335083,-0.0162048,-0.00952148,-0.0166931,-0.0330505,-0.0594177,-0.0923157,-0.129425,-0.166199,-0.200348,-0.227814,-0.246979,-0.254608,-0.251343,-0.235291,-0.20816,-0.168701,-0.123322,-0.0712585,-0.0187073,0.033844,0.0813904,0.122711,0.152954,0.17215,0.180084,0.175568,0.162628,0.142822,0.12146,0.0982361,0.077179,0.0626831,0.0552063,0.057373,0.0648499,0.0779724,0.0932312,0.107574,0.121307,0.131592,0.138916,0.143616,0.144836,0.144379,0.143616,0.145477,0.150635,0.158875,0.168854,0.177765,0.184448,0.18866,0.18866,0.183685,0.173065,0.157471,0.138763,0.118042,0.098999,0.0830994,0.0703125,0.0598755,0.0505066,0.0428772,0.0360107,0.0286865,0.0196533,0.00811768,-0.00747681,-0.0275879,-0.0466309,-0.0668945,-0.0843506,-0.101501,-0.114746,-0.12442,-0.126923,-0.125366,-0.119598,-0.112885,-0.106323,-0.100891,-0.0979309,-0.101044,-0.110718,-0.127869,-0.154205,-0.186646,-0.223114,-0.258972,-0.292358,-0.321991,-0.34552,-0.361115,-0.364685,-0.355499,-0.332123,-0.29422,-0.245117,-0.18634,-0.120361,-0.0513,0.0144958,0.0718689,0.11615,0.144073,0.149689,0.133148,0.0937195,0.0349121,-0.0396118,-0.121002,-0.19693,-0.260223,-0.302948,-0.322296,-0.314331,-0.281128,-0.220001,-0.137054,-0.0410156,0.0553589,0.14328,0.214539,0.266937,0.299225,0.308105,0.294861,0.264435,0.225769,0.186005,0.154053,0.135345,0.129272,0.135956,0.15155,0.175873,0.202393,0.227325,0.241669,0.241669,0.22641,0.195984,0.158875,0.115845,0.073761,0.0361633,0.0123291,0.00717163,0.0244751,0.059082,0.107422,0.164185,0.222656,0.275818,0.317291,0.339752,0.341461,0.319,0.275665,0.217041,0.148438,0.078125,0.0107727,-0.0467834,-0.09198,-0.120056,-0.129578,-0.123016,-0.106812,-0.085144,-0.0625305,-0.0439758,-0.0310364,-0.025116,-0.02948,-0.043335,-0.0642395,-0.0884094,-0.112427,-0.131897,-0.143433,-0.146729,-0.143433,-0.132843,-0.1185,-0.101959,-0.0849915,-0.0717163,-0.0632935,-0.0643921,-0.0729675,-0.0907593,-0.114899,-0.145935,-0.17868,-0.211884,-0.240601,-0.264587,-0.279114,-0.285034,-0.277863,-0.260559,-0.231232,-0.194733,-0.152344,-0.106323,-0.0620422,-0.0205688,0.0144958,0.040863,0.0576782,0.063446,0.0601807,0.0475464,0.0302429,0.0115356,-0.00466919,-0.0171509,-0.0246277,-0.0252686,-0.0198059,-0.0093689,0.00497437,0.0205688,0.036499,0.0509949,0.0632935,0.073761,0.0827942,0.0907593,0.0993347,0.110535,0.12442,0.139709,0.15921,0.179321,0.200684,0.217041,0.228882,0.233734,0.230774,0.222504,0.206909,0.186157,0.159973,0.132996,0.107422,0.0854492,0.0700073,0.0580139,0.0514526,0.0505066,0.0539551,0.0608215,0.0670471,0.0718689,0.0731201,0.0687561,0.0606384,0.0480347,0.0332031,0.0152893,-0.00390625,-0.0223083,-0.0407104,-0.0550537,-0.0657959,-0.073761,-0.0810852,-0.088562,-0.0971375,-0.107269,-0.119751,-0.137512,-0.158264,-0.18399,-0.21048,-0.236847,-0.258514,-0.273651,-0.276459,-0.265686,-0.239349,-0.19928,-0.147186,-0.0871582,-0.0257263,0.0271301,0.0681458,0.0895081,0.0888672,0.0609741,0.0090332,-0.0653381,-0.152954,-0.243378,-0.322754,-0.384186,-0.420044,-0.425659,-0.398071,-0.339752,-0.25415,-0.149841,-0.0383606,0.0678406,0.158112,0.22467,0.262573,0.271759,0.253052,0.21048,0.150787,0.0843506,0.0223083,-0.0257263,-0.0534668,-0.0611267,-0.0491028,-0.0193481,0.0241699,0.0746765,0.123322,0.162781,0.187561,0.196136,0.188202,0.164185,0.130829,0.0910645,0.0531616,0.0254211,0.0138855,0.0204163,0.044281,0.0838928,0.13504,0.19162,0.249329,0.298279,0.332123,0.34491,0.33493,0.305756,0.259766,0.201447,0.136444,0.0704651,0.0126343,-0.0332031,-0.0611267,-0.0706177,-0.0645447,-0.0464783,-0.0219727,0.00592041,0.0332031,0.0567627,0.0751648,0.0857544,0.0870056,0.0784302,0.0636292,0.0444336,0.0265198,0.0116882,-0.000946045,-0.0105896,-0.0184021,-0.0219727,-0.0227661,-0.0226135,-0.0235291,-0.0272827,-0.0361633,-0.0491028,-0.0659485,-0.0882568,-0.113342,-0.14032,-0.16745,-0.191467,-0.211731,-0.225769,-0.232025,-0.227966,-0.215942,-0.193817,-0.164032,-0.130188,-0.0937195,-0.0576782,-0.0243225,0.00234985,0.0193481,0.0252686,0.0190125,0.00201416,-0.0237122,-0.0542603,-0.0856018,-0.116791,-0.141724,-0.160126,-0.16745,-0.163879,-0.151703,-0.129883,-0.102753,-0.0725098,-0.0428772,-0.0158997,0.00671387,0.0255737,0.0396118,0.0491028,0.0561218,0.0603333,0.065033,0.0703125,0.0788879,0.0891724,0.101501,0.110718,0.118042,0.121613,0.12085,0.116791,0.106018,0.0926208,0.07547,0.0600281,0.0466309,0.0360107,0.0322876,0.0350952,0.043335,0.057373,0.0743713,0.0937195,0.112732,0.129578,0.138763,0.141571,0.136108,0.122559,0.10025,0.0722046,0.041626,0.0112305,-0.0168457,-0.0410156,-0.0601807,-0.0729675,-0.0793762,-0.0796814,-0.0748291,-0.0708008,-0.0679932,-0.0684509,-0.0720215,-0.0799866,-0.0887146,-0.0968323,-0.0966797,-0.086853,-0.0643921,-0.0302429,0.0102844,0.0552063,0.0949707,0.125214,0.142059,0.140656,0.114136,0.0595703,-0.0219727,-0.121765,-0.222809,-0.314331,-0.385132,-0.432678,-0.450623,-0.433319,-0.380768,-0.293121,-0.185547,-0.0687561,0.0397644,0.131592,0.197876,0.237457,0.246979,0.227814,0.183044,0.120697,0.0489502,-0.0190125,-0.0751648,-0.112579,-0.129089,-0.12677,-0.109131,-0.0774841,-0.039917,-0.00405884,0.0274353,0.0491028,0.0598755,0.0553589,0.041626,0.0195007,-0.00360107,-0.0213623,-0.0279236,-0.0223083,-0.00436401,0.026825,0.0676575,0.115997,0.169189,0.217499,0.254944,0.273315,0.272095,0.251648,0.216583,0.171356,0.118652,0.0637817,0.00778198,-0.0393066,-0.071106,-0.0848083,-0.0793762,-0.0606384,-0.0339966,-0.0045166,0.0269775,0.0569153,0.0852966,0.108368,0.121002,0.126617,0.123016,0.114288,0.104614,0.0957336,0.088562,0.081543,0.0731201,0.0642395,0.0552063,0.0483398,0.0402222,0.0310364,0.0182495,0.00280762,-0.0163574,-0.0343018,-0.0541077,-0.0712585,-0.0882568,-0.10321,-0.116791,-0.126923,-0.133636,-0.13269,-0.125671,-0.110382,-0.0895081,-0.0646973,-0.0368042,-0.00762939,0.0226135,0.0494385,0.0703125,0.0801392,0.0773315,0.0620422,0.0360107,0.00250244,-0.0347595,-0.0748291,-0.114136,-0.148895,-0.174164,-0.187561,-0.185852,-0.171204,-0.149231,-0.121918,-0.0927734,-0.0620422,-0.0346069,-0.00967407,0.00857544,0.0216675,0.0282288,0.0310364,0.0316467,0.0303955,0.0300903,0.031189,0.0349121,0.0366516,0.0380554,0.0380554,0.0379028,0.036499,0.0327454,0.0252686,0.014801,0.00375366,-0.00747681,-0.014801,-0.0213623,-0.0238647,-0.0218201,-0.0152893,-0.0045166,0.0093689,0.0265198,0.0462952,0.065033,0.0795288,0.0896606,0.0915222,0.0884094,0.0795288,0.0657959,0.04599,0.0221558,-0.00296021,-0.0272827,-0.0472412,-0.0651855,-0.0790405,-0.0899658,-0.0961914,-0.102295,-0.108521,-0.113525,-0.118195,-0.122711,-0.128479,-0.134552,-0.134705,-0.123505,-0.0933838,-0.0466309,0.0119934,0.0784302,0.145935,0.20752,0.257751,0.288605,0.295776,0.271301,0.20816,0.109772,-0.0149536,-0.149048,-0.275818,-0.381073,-0.457153,-0.498627,-0.500031,-0.454193,-0.363464,-0.236053,-0.0904236,0.0539551,0.182892,0.281738,0.347534,0.37561,0.367828,0.323059,0.251648,0.160583,0.0643921,-0.0218201,-0.084198,-0.120056,-0.131439,-0.122406,-0.0966797,-0.0601807,-0.0187073,0.0209045,0.0514526,0.0671997,0.0642395,0.0439758,0.0124817,-0.0199585,-0.0466309,-0.0601807,-0.0611267,-0.04599,-0.0176086,0.0243225,0.081543,0.145477,0.204895,0.251343,0.27536,0.276123,0.253693,0.214539,0.161987,0.0988464,0.0289917,-0.0410156,-0.104462,-0.148895,-0.170898,-0.169189,-0.151093,-0.123962,-0.0907593,-0.0541077,-0.013092,0.0263367,0.0617371,0.0874634,0.100098,0.104004,0.101044,0.0966797,0.0924683,0.0898132,0.084198,0.0760803,0.0629883,0.0522461,0.0420837,0.0347595,0.0244751,0.0107727,-0.00872803,-0.0310364,-0.0511475,-0.0701599,-0.0854492,-0.100403,-0.115387,-0.128632,-0.139557,-0.142212,-0.138153,-0.124573,-0.104462,-0.0796814,-0.0519104,-0.0176086,0.020752,0.0604858,0.0982361,0.127075,0.144531,0.146423,0.134094,0.107574,0.0692139,0.0230713,-0.0302429,-0.0856018,-0.139709,-0.181641,-0.209076,-0.216888,-0.205658,-0.180389,-0.143127,-0.0988464,-0.0483398,0.00250244,0.0473938,0.083252,0.107269,0.118042,0.116638,0.107117,0.0927734,0.0748291,0.057373,0.040863,0.026825,0.0157471,0.010437,0.00778198,0.00842285,0.00811768,0.00466919,-0.00170898,-0.00827026,-0.0155945,-0.0219727,-0.0263367,-0.0293274,-0.0285339,-0.0223083,-0.0102844,0.00762939,0.0310364,0.0567627,0.0805969,0.0997925,0.114136,0.121307,0.119293,0.108978,0.0907593,0.063446,0.0316467,-0.00265503,-0.035553,-0.0651855,-0.0879517,-0.106659,-0.120056,-0.128326,-0.132233,-0.131287,-0.126923,-0.123962,-0.120697,-0.119293,-0.118195,-0.117889,-0.117706,-0.118195,-0.114899,-0.106018,-0.0871582,-0.0575256,-0.0173035,0.0299377,0.0821838,0.133942,0.176025,0.203949,0.213928,0.203003,0.164337,0.0965271,0.00219727,-0.108673,-0.222961,-0.326508,-0.40741,-0.46167,-0.478821,-0.459045,-0.396515,-0.296082,-0.16745,-0.0255737,0.114136,0.235901,0.329163,0.389343,0.411774,0.39447,0.342712,0.262878,0.165283,0.0645447,-0.0265198,-0.0980835,-0.141724,-0.160583,-0.155304,-0.130188,-0.0909119,-0.0445862,0.00201416,0.0438232,0.0714111,0.0810852,0.07547,0.0589294,0.0389709,0.0232239,0.0133972,0.0135803,0.0265198,0.0528564,0.0930786,0.142365,0.195526,0.245422,0.281128,0.296082,0.289551,0.260071,0.213776,0.151703,0.0788879,0.000457764,-0.0742188,-0.137207,-0.180542,-0.199585,-0.195374,-0.17337,-0.136902,-0.0915222,-0.0393066,0.013092,0.0637817,0.106171,0.135651,0.15155,0.15451,0.148895,0.138611,0.123322,0.106323,0.0857544,0.0656433,0.042572,0.0226135,0.00466919,-0.0121765,-0.0291443,-0.0484924,-0.0700073,-0.091217,-0.110077,-0.124725,-0.135651,-0.143768,-0.149689,-0.150452,-0.145782,-0.132996,-0.113525,-0.088562,-0.0601807,-0.0291443,0.00250244,0.0361633,0.0664368,0.0923157,0.109924,0.116638,0.110382,0.0899658,0.0598755,0.0201111,-0.0254211,-0.0732727,-0.120361,-0.162476,-0.192108,-0.208466,-0.206909,-0.190216,-0.161072,-0.122559,-0.08078,-0.0374146,0.00296021,0.0388184,0.065033,0.081543,0.0877686,0.0845032,0.0762329,0.0662537,0.057373,0.0498962,0.0431824,0.0375671,0.0336914,0.0325928,0.0316467,0.0296326,0.0227661,0.0107727,-0.00421143,-0.0195007,-0.0335083,-0.0438232,-0.0519104,-0.0525513,-0.0467834,-0.031189,-0.00967407,0.0204163,0.0534668,0.0873108,0.116638,0.139862,0.154358,0.157318,0.149689,0.12973,0.10025,0.065033,0.0257263,-0.0138855,-0.0481873,-0.0756226,-0.0969849,-0.109772,-0.115234,-0.114594,-0.109924,-0.103851,-0.0986938,-0.0949707,-0.0932312,-0.0923157,-0.0924683,-0.0926208,-0.0937195,-0.0923157,-0.0877686,-0.0774841,-0.0601807,-0.0349121,-0.00140381,0.0363159,0.0767212,0.115692,0.149689,0.171814,0.177429,0.165741,0.132538,0.0784302,0.00250244,-0.0888672,-0.186951,-0.280029,-0.358154,-0.411163,-0.434387,-0.425659,-0.380127,-0.300781,-0.193176,-0.0682983,0.0626831,0.180389,0.27832,0.347076,0.381836,0.378265,0.338348,0.267883,0.176666,0.0784302,-0.0174561,-0.0988464,-0.156403,-0.188354,-0.19458,-0.176178,-0.138306,-0.0879517,-0.0333557,0.0174561,0.0572205,0.0826416,0.0918274,0.085907,0.0698547,0.0478821,0.0286865,0.0160522,0.0143433,0.0280762,0.0545654,0.0935669,0.140808,0.190704,0.234497,0.26413,0.275665,0.264587,0.233093,0.18103,0.114288,0.0386658,-0.038208,-0.107574,-0.162628,-0.19693,-0.206909,-0.195068,-0.161682,-0.113678,-0.0550537,0.00796509,0.0686035,0.122406,0.163391,0.188965,0.198181,0.192871,0.174164,0.147827,0.114441,0.0804443,0.0472412,0.0162048,-0.00967407,-0.0302429,-0.0445862,-0.0545654,-0.0614319,-0.0675049,-0.0742188,-0.079834,-0.085907,-0.0901184,-0.0957336,-0.0999451,-0.102448,-0.101349,-0.0944824,-0.0840454,-0.0668945,-0.0462952,-0.020752,0.00671387,0.035553,0.0622253,0.0840454,0.0975952,0.103058,0.0957336,0.0784302,0.0489502,0.00997925,-0.0347595,-0.0820007,-0.125214,-0.162628,-0.189911,-0.204559,-0.202087,-0.184937,-0.152802,-0.111481,-0.065033,-0.0173035,0.0263367,0.0654907,0.0940247,0.111938,0.117096,0.110718,0.0955811,0.0751648,0.0542603,0.0349121,0.0165405,0.000152588,-0.0116882,-0.0212097,-0.0255737,-0.0283813,-0.0314941,-0.0352478,-0.0394592,-0.0430298,-0.0452271,-0.0444336,-0.0411682,-0.0324402,-0.0204163,-0.00296021,0.0190125,0.0441284,0.0690613,0.0937195,0.114746,0.128937,0.134705,0.131439,0.11911,0.0993347,0.0709534,0.0388184,0.00341797,-0.0297852,-0.0589294,-0.0829468,-0.0999451,-0.107574,-0.108368,-0.104309,-0.0957336,-0.0845032,-0.0742188,-0.0659485,-0.0612793,-0.0595703,-0.0604858,-0.0626831,-0.0662537,-0.0695496,-0.0742188,-0.0757751,-0.0745239,-0.0670471,-0.0555115,-0.0389709,-0.0155945,0.0140381,0.0495911,0.0827942,0.111023,0.124878,0.128937,0.119904,0.0944824,0.0492859,-0.0155945,-0.0957336,-0.180725,-0.260376,-0.3237,-0.36438,-0.37796,-0.359863,-0.310425,-0.228882,-0.123962,-0.00311279,0.118195,0.226868,0.312927,0.36734,0.38324,0.362518,0.306854,0.225464,0.127869,0.0249329,-0.0704651,-0.14859,-0.199738,-0.219696,-0.21048,-0.175568,-0.123657,-0.0651855,-0.00360107,0.0534668,0.0988464,0.126282,0.133789,0.124725,0.103699,0.0788879,0.0567627,0.0438232,0.0405273,0.0517578,0.0748291,0.108521,0.14859,0.190063,0.223267,0.240601,0.238251,0.215332,0.171356,0.111786,0.0431824,-0.02948,-0.0968323,-0.153107,-0.189301,-0.204102,-0.193665,-0.159363,-0.107422,-0.0436707,0.0226135,0.0849915,0.137512,0.179138,0.202698,0.207855,0.193512,0.162933,0.12442,0.08078,0.0388184,0.0015564,-0.0303955,-0.054718,-0.0698547,-0.0762329,-0.0762329,-0.0715637,-0.0662537,-0.0623779,-0.0608215,-0.0611267,-0.0643921,-0.0703125,-0.0762329,-0.0816956,-0.085144,-0.0845032,-0.0799866,-0.0712585,-0.0572205,-0.0388184,-0.0151367,0.00888062,0.0317993,0.0508423,0.0664368,0.0750122,0.0767212,0.0678406,0.0494385,0.0213623,-0.0123291,-0.0492859,-0.086853,-0.121307,-0.150635,-0.170105,-0.178528,-0.173859,-0.15686,-0.128326,-0.0916748,-0.0502014,-0.00717163,0.0333557,0.0689087,0.0954285,0.110229,0.11554,0.111328,0.0993347,0.0821838,0.0612793,0.0379028,0.0171509,-0.00125122,-0.014801,-0.0254211,-0.0343018,-0.0397644,-0.0422668,-0.041626,-0.0405273,-0.0383606,-0.0344543,-0.0271301,-0.0171509,-0.00311279,0.0132446,0.0314941,0.0513,0.0709534,0.0905762,0.107422,0.11911,0.125214,0.123505,0.115845,0.102295,0.0801392,0.0545654,0.0252686,-0.00390625,-0.0302429,-0.0519104,-0.0690613,-0.0802917,-0.0856018,-0.0830994,-0.0748291,-0.0622253,-0.0478821,-0.035553,-0.0247803,-0.0155945,-0.00918579,-0.00842285,-0.0110779,-0.0158997,-0.020752,-0.0255737,-0.0296326,-0.0346069,-0.040863,-0.0467834,-0.0559692,-0.0676575,-0.0840454,-0.103546,-0.125519,-0.146729,-0.159363,-0.157166,-0.139069,-0.106964,-0.0643921,-0.0133972,0.038208,0.0887146,0.13269,0.158569,0.160767,0.130981,0.0723572,-0.00732422,-0.0940247,-0.177917,-0.251343,-0.306396,-0.336639,-0.33493,-0.297333,-0.225922,-0.127869,-0.019165,0.0877686,0.181335,0.252899,0.295013,0.30484,0.282532,0.233887,0.163086,0.0809326,-0.00436401,-0.0782776,-0.129578,-0.154663,-0.155762,-0.136444,-0.101196,-0.0536499,0.00186157,0.0597229,0.110382,0.144073,0.160126,0.158569,0.144226,0.122559,0.0986938,0.0770264,0.0592651,0.0487976,0.0484924,0.0584717,0.0793762,0.108521,0.135651,0.154816,0.163574,0.158875,0.14267,0.114899,0.082489,0.043335,0.00311279,-0.0344543,-0.0618896,-0.0756226,-0.0736084,-0.0558167,-0.0299377,-0.000610352,0.0300903,0.0575256,0.0830994,0.102905,0.114136,0.112732,0.100555,0.0818481,0.0598755,0.0388184,0.0196533,0.00326538,-0.0109253,-0.0237122,-0.0316467,-0.0360107,-0.0379028,-0.036499,-0.0350952,-0.0363159,-0.0371094,-0.0396118,-0.0444336,-0.0491028,-0.0544128,-0.0601807,-0.0668945,-0.0739136,-0.0805969,-0.085144,-0.0846558,-0.0782776,-0.0679932,-0.0542603,-0.0393066,-0.0212097,-0.00265503,0.0158997,0.0293274,0.0352478,0.0316467,0.0168457,-0.0045166,-0.0314941,-0.0612793,-0.0915222,-0.120209,-0.141724,-0.15451,-0.155609,-0.145477,-0.12442,-0.0930786,-0.0569153,-0.0190125,0.0171509,0.0470886,0.071106,0.0867004,0.0938721,0.0910645,0.0796814,0.0614319,0.0394592,0.0166931,-0.00405884,-0.0230713,-0.0371094,-0.047699,-0.0523987,-0.0506592,-0.0436707,-0.0324402,-0.0180969,-0.00186157,0.0151367,0.0310364,0.0466309,0.0603333,0.0720215,0.08078,0.0867004,0.0893555,0.0899658,0.0871582,0.0840454,0.0784302,0.0709534,0.0618896,0.0498962,0.0358582,0.0201111,0.00561523,-0.00762939,-0.0204163,-0.0317993,-0.0386658,-0.040863,-0.0379028,-0.0314941,-0.0216675,-0.00997925,0.00341797,0.0165405,0.0271301,0.0335083,0.0346069,0.0324402,0.0275879,0.019165,0.00622559,-0.0107727,-0.0277405,-0.0411682,-0.0536499,-0.0673523,-0.0830994,-0.0974426,-0.110077,-0.118652,-0.12381,-0.129425,-0.135498,-0.139404,-0.140015,-0.136749,-0.128021,-0.111023,-0.0840454,-0.0483398,-0.00250244,0.0438232,0.0879517,0.123657,0.149689,0.162628,0.158569,0.133301,0.0826416,0.00918579,-0.077179,-0.163879,-0.241516,-0.301392,-0.341156,-0.355042,-0.337097,-0.285187,-0.204712,-0.10495,0.000610352,0.1026,0.19101,0.256805,0.294861,0.302032,0.279266,0.230621,0.16745,0.0937195,0.0193481,-0.0466309,-0.0951233,-0.119751,-0.122864,-0.108826,-0.0849915,-0.0525513,-0.0146484,0.0235291,0.0562744,0.0788879,0.0888672,0.0865479,0.0751648,0.0665894,0.057373,0.0517578,0.0508423,0.0583191,0.0723572,0.0940247,0.12146,0.149231,0.171509,0.185699,0.188507,0.17807,0.154816,0.122406,0.081543,0.038208,-0.00436401,-0.0445862,-0.077179,-0.0971375,-0.100098,-0.088562,-0.0654907,-0.0343018,-0.00219727,0.031189,0.0640869,0.0947876,0.11911,0.130676,0.129578,0.119904,0.104156,0.0863953,0.0664368,0.0434875,0.0224609,0.00201416,-0.0146484,-0.0263367,-0.0346069,-0.0397644,-0.0436707,-0.0436707,-0.0436707,-0.0456848,-0.0489502,-0.0533142,-0.0562744,-0.0611267,-0.0670471,-0.0732727,-0.0818481,-0.0857544,-0.085144,-0.0795288,-0.0681458,-0.0548706,-0.0366516,-0.0158997,0.00762939,0.0297852,0.04599,0.0550537,0.0531616,0.0413208,0.0210571,-0.00778198,-0.0427246,-0.08078,-0.1185,-0.148743,-0.170258,-0.17868,-0.176178,-0.160126,-0.13269,-0.0977478,-0.0559692,-0.0157471,0.0230713,0.0544128,0.0785828,0.0916748,0.0955811,0.0907593,0.0787354,0.0656433,0.0489502,0.0310364,0.0137329,-0.00109863,-0.0135803,-0.0216675,-0.0279236,-0.0339966,-0.0393066,-0.0436707,-0.0452271,-0.0439758,-0.039917,-0.0322876,-0.0224609,-0.00656128,0.0133972,0.0375671,0.0625305,0.0881042,0.11087,0.127533,0.13736,0.138458,0.131439,0.113983,0.0904236,0.0592651,0.0247803,-0.00918579,-0.0402222,-0.0654907,-0.081543,-0.0884094,-0.087616,-0.0762329,-0.0578613,-0.0335083,-0.00622559,0.0213623,0.0455322,0.0626831,0.0731201,0.0782776,0.0746765,0.0665894,0.0495911,0.0308838,0.0105896,-0.00952148,-0.0266724,-0.0402222,-0.0516052,-0.0595703,-0.0657959,-0.0681458,-0.0686035,-0.0687561,-0.0682983,-0.0679932,-0.0675049,-0.0700073,-0.073761,-0.0787354,-0.0820007,-0.0834045,-0.0835876,-0.087616,-0.0918274,-0.0965271,-0.0961914,-0.0932312,-0.0860596,-0.0717163,-0.0498962,-0.0202637,0.0133972,0.0473938,0.0765686,0.101044,0.116638,0.119904,0.107117,0.0746765,0.0216675,-0.04599,-0.115692,-0.181183,-0.237152,-0.277863,-0.29657,-0.289398,-0.254608,-0.195679,-0.116638,-0.0249329,0.0673523,0.15155,0.220642,0.266785,0.288757,0.28363,0.254303,0.205963,0.143921,0.0740662,0.00656128,-0.050354,-0.0907593,-0.113525,-0.119751,-0.113525,-0.0960388,-0.069397,-0.0350952,-0.00125122,0.0300903,0.0542603,0.0678406,0.0745239,0.0779724,0.0804443,0.0835876,0.0890198,0.096344,0.106323,0.118805,0.136902,0.153412,0.166534,0.171356,0.167786,0.152191,0.125824,0.0905762,0.0502014,0.00622559,-0.0352478,-0.0736084,-0.104156,-0.120697,-0.121155,-0.103851,-0.0734253,-0.0346069,0.00778198,0.0513,0.0933838,0.131439,0.158264,0.171967,0.169342,0.153412,0.126923,0.0944824,0.0572205,0.0201111,-0.0166931,-0.0475464,-0.0709534,-0.0877686,-0.0937195,-0.0918274,-0.0835876,-0.0698547,-0.0553589,-0.0420837,-0.0319519,-0.0229187,-0.0177612,-0.0152893,-0.0176086,-0.0238647,-0.0335083,-0.0411682,-0.0450745,-0.0444336,-0.0407104,-0.0357056,-0.0249329,-0.0129395,0.0015564,0.0146484,0.0224609,0.0252686,0.0201111,0.00827026,-0.010437,-0.0347595,-0.0617371,-0.090271,-0.115234,-0.134399,-0.144226,-0.144684,-0.13504,-0.114899,-0.0870056,-0.0541077,-0.0196533,0.0143433,0.0444336,0.0687561,0.085907,0.0940247,0.0915222,0.0818481,0.0657959,0.0466309,0.026825,0.00637817,-0.0129395,-0.0310364,-0.0455322,-0.0556641,-0.0625305,-0.0657959,-0.0665894,-0.0651855,-0.0603333,-0.052063,-0.0410156,-0.0271301,-0.0116882,0.00686646,0.0269775,0.0481873,0.0684509,0.0867004,0.102448,0.112427,0.11615,0.113037,0.101654,0.0826416,0.0592651,0.0333557,0.00686646,-0.0184021,-0.0419312,-0.0594177,-0.0690613,-0.069397,-0.0611267,-0.0472412,-0.0299377,-0.00888062,0.0129395,0.033844,0.0489502,0.0578613,0.0629883,0.0614319,0.0559692,0.0466309,0.036499,0.0258789,0.0154419,0.00811768,0.00280762,0,-0.00109863,-0.00201416,-0.00546265,-0.0116882,-0.0174561,-0.0263367,-0.0360107,-0.04599,-0.0583191,-0.0682983,-0.0750122,-0.0756226,-0.0712585,-0.0648499,-0.0555115,-0.0439758,-0.0288391,-0.0133972,-0.00170898,0.00360107,0.00482178,0.00201416,-0.00531006,-0.019165,-0.038208,-0.0578613,-0.0782776,-0.0979309,-0.114288,-0.130341,-0.142059,-0.145782,-0.140472,-0.129272,-0.10791,-0.0785828,-0.0427246,-0.000610352,0.0430298,0.0818481,0.112427,0.132233,0.138763,0.12973,0.102142,0.0570679,-0.00219727,-0.0670471,-0.129089,-0.184143,-0.226715,-0.246368,-0.245117,-0.21875,-0.170563,-0.104614,-0.0280762,0.0513,0.126923,0.188049,0.227173,0.244324,0.238556,0.209869,0.164185,0.10791,0.046936,-0.0102844,-0.0567627,-0.0884094,-0.102448,-0.0983887,-0.0770264,-0.0470886,-0.0102844,0.0280762,0.0632935,0.0921631,0.111328,0.116943,0.110718,0.0957336,0.0779724,0.0617371,0.047699,0.0375671,0.0349121,0.0396118,0.0523987,0.0728149,0.0918274,0.108978,0.121918,0.127869,0.123962,0.111023,0.0910645,0.0643921,0.0358582,0.00637817,-0.0193481,-0.0405273,-0.0505066,-0.0509949,-0.0417786,-0.0260315,-0.00497437,0.0174561,0.0407104,0.0637817,0.0826416,0.0955811,0.0999451,0.0975952,0.0893555,0.0774841,0.0626831,0.0461426,0.0289917,0.0113831,-0.00390625,-0.0180969,-0.0286865,-0.0369568,-0.0427246,-0.0464783,-0.0489502,-0.0498962,-0.0494385,-0.048645,-0.0458374,-0.0427246,-0.038208,-0.0350952,-0.0328979,-0.0297852,-0.0263367,-0.020752,-0.0152893,-0.0102844,-0.00576782,-0.00219727,0.00140381,0.00296021,0.00296021,-0.00170898,-0.0109253,-0.0230713,-0.0377197,-0.0539551,-0.0722046,-0.0887146,-0.10321,-0.113678,-0.117706,-0.114594,-0.105408,-0.0901184,-0.0701599,-0.0461426,-0.0219727,0.000152588,0.0187073,0.0324402,0.039917,0.0402222,0.0333557,0.0227661,0.00888062,-0.00515747,-0.0182495,-0.0299377,-0.0393066,-0.0450745,-0.0489502,-0.0489502,-0.0461426,-0.0413208,-0.0374146,-0.0339966,-0.0308838,-0.0263367,-0.0213623,-0.0160522,-0.00778198,0.00280762,0.0169983,0.0321045,0.0487976,0.0654907,0.0802917,0.0904236,0.0958862,0.094635,0.0863953,0.0728149,0.0533142,0.0299377,0.00576782,-0.0168457,-0.0349121,-0.0487976,-0.0553589,-0.0523987,-0.0431824,-0.0288391,-0.00982666,0.0102844,0.0321045,0.0489502,0.0618896,0.069397,0.0709534,0.0681458,0.0592651,0.0492859,0.0361633,0.0235291,0.0124817,0.00482178,0.00125122,-0.000305176,-0.000305176,-0.000305176,0.000457764,0.00140381,0.000305176,-0.00482178,-0.0129395,-0.0218201,-0.0303955,-0.0379028,-0.0448914,-0.0480347,-0.0481873,-0.0419312,-0.0349121,-0.0247803,-0.013092,-0.00170898,0.00732422,0.0151367,0.0168457,0.0138855,0.00436401,-0.00717163,-0.0196533,-0.0349121,-0.0517578,-0.0692139,-0.0827942,-0.0924683,-0.0968323,-0.096344,-0.0952759,-0.0938721,-0.0899658,-0.0843506,-0.0776367,-0.071106,-0.0670471,-0.0654907,-0.065033,-0.0646973,-0.0640869,-0.0632935,-0.0603333,-0.0544128,-0.0452271,-0.0308838,-0.0126343,0.00952148,0.0317993,0.0534668,0.069397,0.0795288,0.0795288,0.0664368,0.041626,0.00762939,-0.0335083,-0.0802917,-0.12973,-0.170258,-0.196625,-0.206116,-0.197083,-0.169495,-0.125214,-0.0667419,0.00140381,0.0734253,0.142822,0.198944,0.236542,0.25415,0.252136,0.230774,0.190704,0.137207,0.0778198,0.0188599,-0.033844,-0.0753174,-0.100403,-0.109619,-0.103058,-0.0820007,-0.0522461,-0.0168457,0.0221558,0.0595703,0.0923157,0.117554,0.133301,0.139557,0.138306,0.133942,0.129578,0.124725,0.119598,0.114746,0.112885,0.113678,0.117706,0.119751,0.117554,0.109131,0.0951233,0.0750122,0.0511475,0.0247803,-0.00326538,-0.0308838,-0.0527039,-0.0676575,-0.0728149,-0.0671997,-0.0502014,-0.0238647,0.00827026,0.043335,0.078125,0.108978,0.132996,0.149841,0.154999,0.148285,0.128784,0.0986938,0.0632935,0.0258789,-0.0113831,-0.047699,-0.0785828,-0.102295,-0.117249,-0.122559,-0.116943,-0.105255,-0.0888672,-0.0718689,-0.0541077,-0.0366516,-0.0212097,-0.0110779,-0.00515747,-0.00405884,-0.00671387,-0.0121765,-0.0173035,-0.0209045,-0.0224609,-0.0219727,-0.0219727,-0.0210571,-0.020752,-0.0213623,-0.0232239,-0.0289917,-0.0383606,-0.0528564,-0.0703125,-0.0890198,-0.105103,-0.117706,-0.126282,-0.128021,-0.124725,-0.112885,-0.0935669,-0.0700073,-0.0439758,-0.0180969,0.0045166,0.0226135,0.0344543,0.0402222,0.040863,0.0354004,0.0241699,0.0090332,-0.00762939,-0.0238647,-0.0380554,-0.0497437,-0.0569153,-0.0595703,-0.0598755,-0.0567627,-0.0509949,-0.0422668,-0.0316467,-0.0193481,-0.00732422,0.00390625,0.0133972,0.0216675,0.0296326,0.0366516,0.0417786,0.04599,0.0478821,0.0483398,0.0487976,0.047699,0.0473938,0.0441284,0.0386658,0.0335083,0.0263367,0.0190125,0.0118408,0.00592041,0.000152588,-0.00405884,-0.00796509,-0.00888062,-0.0101318,-0.00717163,-0.00436401,0.00170898,0.00857544,0.0158997,0.0249329,0.0333557,0.0424194,0.050354,0.0562744,0.0600281,0.0628357,0.0636292,0.0601807,0.0519104,0.0380554,0.0213623,0.00250244,-0.0169983,-0.0335083,-0.0492859,-0.0626831,-0.0726624,-0.0767212,-0.0751648,-0.0661011,-0.0519104,-0.0327454,-0.0133972,0.00515747,0.0205688,0.0341492,0.043335,0.0494385,0.0492859,0.042572,0.0303955,0.0160522,0.00186157,-0.0140381,-0.0277405,-0.042572,-0.0564575,-0.0675049,-0.0768738,-0.0790405,-0.0779724,-0.0740662,-0.0697021,-0.0623779,-0.0548706,-0.0448914,-0.0330505,-0.0195007,-0.0045166,0.00497437,0.0115356,0.0162048,0.0199585,0.0193481,0.0154419,0.00827026,-0.00219727,-0.0163574,-0.0327454,-0.0461426,-0.0583191,-0.0687561,-0.0785828,-0.0862122,-0.0915222,-0.0935669,-0.091217,-0.0857544,-0.0820007,-0.0805969,-0.0784302,-0.0718689,-0.0614319,-0.0466309,-0.0257263,0.00280762,0.0349121,0.0664368,0.0968323,0.125519,0.148743,0.162476,0.160919,0.137848,0.0941772,0.0358582,-0.0271301,-0.0898132,-0.146881,-0.19632,-0.227478,-0.233429,-0.212524,-0.166382,-0.0983887,-0.0155945,0.0718689,0.150787,0.214539,0.258667,0.281738,0.280029,0.250732,0.19754,0.130829,0.0614319,-0.00201416,-0.0527039,-0.0848083,-0.0966797,-0.0888672,-0.0676575,-0.0358582,0.00421143,0.0470886,0.0867004,0.112274,0.121155,0.113525,0.0983887,0.079834,0.0614319,0.0430298,0.0274353,0.0190125,0.0237122,0.0383606,0.0612793,0.0873108,0.113983,0.132233,0.138611,0.134705,0.122559,0.101044,0.0729675,0.0379028,-0.000793457,-0.0369568,-0.0664368,-0.0820007,-0.083252,-0.0745239,-0.0598755,-0.040863,-0.0187073,0.00375366,0.0260315,0.0458374,0.0603333,0.0646973,0.0589294,0.048645,0.039917,0.0314941,0.0216675,0.0118408,0.000152588,-0.0093689,-0.0165405,-0.0199585,-0.0219727,-0.0266724,-0.0344543,-0.0461426,-0.0600281,-0.0722046,-0.0835876,-0.0893555,-0.0923157,-0.0921631,-0.087616,-0.0788879,-0.0626831,-0.0410156,-0.0158997,0.00671387,0.0233765,0.0317993,0.0349121,0.0325928,0.0244751,0.00717163,-0.0162048,-0.0428772,-0.0684509,-0.0907593,-0.106506,-0.114746,-0.116638,-0.114136,-0.105713,-0.0932312,-0.0756226,-0.0553589,-0.0352478,-0.0196533,-0.00778198,0.000946045,0.00732422,0.0121765,0.014801,0.0158997,0.0151367,0.0118408,0.00701904,0.00234985,-0.00296021,-0.006073,-0.0112305,-0.0177612,-0.0258789,-0.0332031,-0.0380554,-0.038208,-0.0389709,-0.0358582,-0.0324402,-0.0257263,-0.0155945,-0.00265503,0.0115356,0.0260315,0.0391235,0.0505066,0.0586243,0.0645447,0.0661011,0.0662537,0.0637817,0.0580139,0.0491028,0.038208,0.0285339,0.0210571,0.0143433,0.00857544,0.00497437,0.0015564,0.000946045,0.000152588,0.0015564,0.00497437,0.00827026,0.0102844,0.0118408,0.0118408,0.0127869,0.0165405,0.0212097,0.0254211,0.0277405,0.0293274,0.0310364,0.0339966,0.0369568,0.0375671,0.0341492,0.0277405,0.0176086,0.00671387,-0.00311279,-0.0124817,-0.0226135,-0.0332031,-0.0456848,-0.0541077,-0.0589294,-0.0559692,-0.0519104,-0.0472412,-0.041626,-0.0336914,-0.0240173,-0.013092,-0.00341797,0.00561523,0.00967407,0.0115356,0.00918579,0.00311279,-0.0045166,-0.0119934,-0.0198059,-0.0310364,-0.0467834,-0.0598755,-0.0695496,-0.0728149,-0.0748291,-0.0748291,-0.0753174,-0.0714111,-0.0679932,-0.0584717,-0.0467834,-0.0343018,-0.0230713,-0.0158997,-0.00888062,-0.00265503,0.00375366,0.00982666,0.0135803,0.0138855,0.00918579,0.00341797,-0.00125122,-0.00515747,-0.00857544,-0.0152893,-0.0221558,-0.0310364,-0.0360107,-0.0386658,-0.0369568,-0.0341492,-0.0297852,-0.0280762,-0.0255737,-0.0216675,-0.0137329,-0.00421143,0.00515747,0.010437,0.013092,0.0143433,0.0151367,0.0176086,0.0168457,0.014801,0.0102844,0.0045166,0,-0.00109863,0.00125122,0.00952148,0.0218201,0.0336914,0.0417786,0.0475464,0.0523987,0.0595703,0.0611267,0.0548706,0.0361633,0.0132446,-0.00842285,-0.0258789,-0.0377197,-0.0422668,-0.0396118,-0.0307312,-0.0160522,0.0090332,0.040863,0.0736084,0.0999451,0.117096,0.121307,0.112579,0.0991516,0.0805969,0.0572205,0.0272827,-0.00390625,-0.0286865,-0.0441284,-0.0505066,-0.044281,-0.0285339,-0.00762939,0.010437,0.0260315,0.0424194,0.0581665,0.0698547,0.0748291,0.0703125,0.0564575,0.0385132,0.0246277,0.0157471,0.0093689,0.00296021,-0.00219727,-0.00531006,-0.00360107,0.000457764,0.0109253,0.0193481,0.0237122,0.0215149,0.0151367,0.0112305,0.00778198,0.00561523,0.0015564,-0.00466919,-0.0127869,-0.0184021,-0.0187073,-0.0126343,-0.00531006,0.000946045,0.00482178,0.00576782,0.00531006,0.006073,0.00982666,0.0113831,0.00701904,-0.00125122,-0.0101318,-0.0158997,-0.0171509,-0.0138855,-0.0112305,-0.0115356,-0.0126343,-0.0129395,-0.00857544,-0.00405884,-0.00109863,-0.00234985,-0.00576782,-0.0115356,-0.0169983,-0.0218201,-0.0226135,-0.0221558,-0.0241699,-0.025116,-0.0265198,-0.0233765,-0.0169983,-0.00888062,-0.00201416,0.000152588,-0.0015564,-0.00296021,-0.00326538,-0.00360107,-0.00421143,-0.00778198,-0.0126343,-0.0190125,-0.0241699,-0.0255737,-0.0233765,-0.0209045,-0.0198059,-0.0196533,-0.0196533,-0.0163574,-0.0112305,-0.00561523,-0.000946045,0,0.00186157,0.00341797,0.00701904,0.0093689,0.0124817,0.0137329,0.0137329,0.0115356,0.00918579,0.00778198,0.00778198,0.006073,0.00375366,-0.00234985,-0.00656128,-0.0102844,-0.010437,-0.0102844,-0.00872803,-0.00778198,-0.00497437,-0.00219727,0.00390625,0.0118408,0.0213623,0.0293274,0.0333557,0.0361633,0.0379028,0.0379028,0.0358582,0.0317993,0.0246277,0.0152893,0.00482178,-0.00405884,-0.0090332,-0.0121765,-0.0129395,-0.0119934,-0.00997925,-0.00482178,0,0.00778198,0.0163574,0.0229187,0.0249329,0.0241699,0.0219727,0.0204163,0.0165405,0.0118408,0.00436401,-0.00421143,-0.0109253,-0.0141907,-0.0163574,-0.0165405,-0.0177612,-0.0174561,-0.0176086,-0.0166931,-0.0154419,-0.0140381,-0.0124817,-0.0129395,-0.0146484,-0.0163574,-0.0177612,-0.0177612,-0.0171509,-0.0162048,-0.0177612,-0.0193481,-0.0210571,-0.0212097,-0.0209045,-0.0218201,-0.0246277,-0.0296326,-0.0344543,-0.0375671,-0.038208,-0.0347595,-0.0332031,-0.0325928,-0.0325928,-0.0314941,-0.0275879,-0.0226135,-0.0185547,-0.0177612,-0.0205688,-0.0237122,-0.0272827,-0.0293274,-0.0289917,-0.0300903,-0.0300903,-0.0319519,-0.0313416,-0.031189,-0.0275879,-0.0219727,-0.0154419,-0.0133972,-0.0133972,-0.0146484,-0.0119934,-0.00888062,-0.00622559,-0.00405884,-0.00637817,-0.00732422,-0.00918579,-0.00732422,-0.00497437,-0.00326538,-0.00466919,-0.00857544,-0.0126343,-0.0149536,-0.0149536,-0.0124817,-0.00918579,-0.00796509,-0.00592041,-0.00250244,0.00482178,0.0140381,0.0216675,0.0274353,0.0302429,0.0293274,0.0271301,0.0230713,0.0219727,0.0168457,0.0109253,0.00436401,-0.00360107,-0.00732422,-0.00717163,-0.00250244,0.00234985,0.0045166,0.00827026,0.0105896,0.0143433,0.0180969,0.0216675,0.0216675,0.0187073,0.0133972,0.00656128,0.00375366,0.00466919,0.010437,0.0166931,0.0218201,0.025116,0.0305481,0.0380554,0.044281,0.0453796,0.0410156,0.0307312,0.0160522,0.000610352,-0.0112305,-0.0205688,-0.0271301,-0.0307312,-0.0299377,-0.0244751,-0.0137329,0.0015564,0.0202637,0.0339966,0.0403748,0.0407104,0.0352478,0.0297852,0.0199585,0.00857544,-0.00466919,-0.0163574,-0.0255737,-0.0307312,-0.0282288,-0.0215149,-0.00952148,0.000610352,0.00857544,0.013092,0.0158997,0.0177612,0.0168457,0.0118408,0.00201416,-0.00842285,-0.019165,-0.0244751,-0.0249329,-0.0219727,-0.0171509,-0.0137329,-0.00952148,-0.00311279,0.00515747,0.0138855,0.0198059,0.0215149,0.0171509,0.0118408,0.00656128,0.00436401,0.00311279,0.000457764,-0.00421143,-0.00857544,-0.0119934,-0.0116882,-0.0109253,-0.00811768,-0.00656128,-0.00622559,-0.00732422,-0.00701904,-0.00436401,0.000946045,0.00732422,0.00952148,0.00967407,0.00982666,0.0112305,0.0154419,0.0168457,0.0168457,0.0151367,0.0109253,0.00762939,0.00671387,0.00717163,0.0090332,0.00717163,0.00482178,0.00201416,0.00311279,0.00531006,0.0093689,0.0141907,0.0184021,0.0202637,0.0205688,0.0233765,0.0279236,0.0307312,0.0305481,0.0260315,0.0195007,0.0132446,0.00796509,0.00546265,0.00421143,0.00219727,0.00125122,0.00296021,0.00952148,0.0174561,0.0279236,0.0354004,0.0405273,0.0405273,0.0396118,0.0366516,0.0330505,0.0260315,0.0184021,0.00967407,0.000610352,-0.00405884,-0.00637817,-0.00405884,-0.000793457,0.00375366,0.00827026,0.0133972,0.0179443,0.0212097,0.0235291,0.0263367,0.0244751,0.0213623,0.0163574,0.013092,0.0101318,0.00701904,0.00341797,0.000152588,-0.0045166,-0.00732422,-0.00888062,-0.00872803,-0.0101318,-0.0109253,-0.0123291,-0.0126343,-0.0105896,-0.00918579,-0.00796509,-0.00592041,-0.00326538,-0.00280762,-0.00311279,-0.00436401,-0.00546265,-0.00732422,-0.0119934,-0.0160522,-0.0212097,-0.0252686,-0.0282288,-0.0313416,-0.0322876,-0.0324402,-0.0321045,-0.0293274,-0.0263367,-0.0223083,-0.0184021,-0.0157471,-0.0144958,-0.0146484,-0.0155945,-0.0185547,-0.0212097,-0.0255737,-0.0317993,-0.0361633,-0.0405273,-0.0430298,-0.0438232,-0.0436707,-0.0428772,-0.0394592,-0.0350952,-0.02948,-0.0263367,-0.0238647,-0.0216675,-0.0188599,-0.0173035,-0.0182495,-0.0193481,-0.0201111,-0.020752,-0.0215149,-0.0229187,-0.0247803,-0.0261841,-0.0272827,-0.0282288,-0.0302429,-0.0317993,-0.0336914,-0.0344543,-0.0347595,-0.0332031,-0.0310364,-0.0286865,-0.0246277,-0.0198059,-0.0154419,-0.0102844,-0.00561523,-0.00109863,0.000793457,0.00186157,0.00140381,0.000793457,-0.00219727,-0.006073,-0.010437,-0.0157471,-0.0176086,-0.0205688,-0.0229187,-0.0246277,-0.0221558,-0.0173035,-0.0121765,-0.00671387,-0.00296021,0.00170898,0.00637817,0.010437,0.0133972,0.0162048,0.0171509,0.0173035,0.0163574,0.0163574,0.0151367,0.0163574,0.0149536,0.0138855,0.0116882,0.00918579,0.00671387,0.00531006,0.0045166,0.00311279,0.00219727,0.00125122,0.0045166,0.00857544,0.0132446,0.0171509,0.0209045,0.0240173,0.0247803,0.0241699,0.0249329,0.0254211,0.0240173,0.0198059,0.0151367,0.0115356,0.0090332,0.00842285,0.00717163,0.00811768,0.00762939,0.00952148,0.00918579,0.00997925,0.0115356,0.0119934,0.0116882,0.0112305,0.0101318,0.00778198,0.00561523,0.0045166,0.00405884,0.00201416,-0.000305176,-0.00311279,-0.00436401,-0.00546265,-0.00546265,-0.00732422,-0.00796509,-0.00952148,-0.00888062,-0.00622559,-0.00201416,0.00219727,0.00515747,0.006073,0.00686646,0.00576782,0.00375366,0.000610352,-0.00671387,-0.0127869,-0.0201111,-0.025116,-0.0296326,-0.0328979,-0.031189,-0.0263367,-0.0193481,-0.0121765,-0.00421143,0.00482178,0.0115356,0.0151367,0.0171509,0.0158997,0.0112305,0.00482178,-0.00201416,-0.00686646,-0.0112305,-0.0143433,-0.0174561,-0.0165405,-0.0141907,-0.010437,-0.00637817,-0.00250244,0.000793457,0.00201416,0.00265503,0.00234985,0.00296021,0.00326538,0.00390625,0.00482178,0.00701904,0.00967407,0.0118408,0.0154419,0.0177612,0.0205688,0.0196533,0.0176086,0.0151367,0.0119934,0.00811768,0.00515747,0.000457764,-0.00250244,-0.00296021,-0.0015564,0.00186157,0.00717163,0.0118408,0.0171509,0.0229187,0.0255737,0.0293274,0.0299377,0.0308838,0.0288391,0.0255737,0.0232239,0.0205688,0.0179443,0.0151367,0.0149536,0.0157471,0.0155945,0.0154419,0.0168457,0.0188599,0.0202637,0.0199585,0.0196533,0.0188599,0.0168457,0.0149536,0.0152893,0.0158997,0.0155945,0.0141907,0.0135803,0.0152893,0.0162048,0.0180969,0.019165,0.0188599,0.019165,0.0171509,0.0173035,0.0160522,0.0144958,0.0129395,0.0105896,0.00811768,0.00732422,0.00546265,0.00421143,0.00250244,0.00125122,-0.00109863,-0.00360107,-0.00576782,-0.00762939,-0.00762939,-0.00888062,-0.00952148,-0.010437,-0.00967407,-0.00701904,-0.00296021,0.000946045,0.00466919,0.00732422,0.00888062,0.00918579,0.00918579,0.00637817,0.00341797,-0.00250244,-0.00762939,-0.0143433,-0.0190125,-0.0224609,-0.0249329,-0.0247803,-0.0240173,-0.0213623,-0.0180969,-0.013092,-0.0090332,-0.00405884,-0.00234985,-0.000610352,-0.000457764,-0.00265503,-0.00405884,-0.00576782,-0.00546265,-0.00561523,-0.00747681,-0.0101318,-0.0116882,-0.0113831,-0.0118408,-0.013092,-0.0151367,-0.0157471,-0.0169983,-0.0146484,-0.0141907,-0.0140381,-0.0126343,-0.00997925,-0.00671387,-0.00405884,-0.00360107,-0.00296021,-0.000946045,0.000305176,0.00170898,0.00186157,0.0015564,0.000152588,-0.00109863,-0.00326538,-0.00561523,-0.00857544,-0.0127869,-0.0151367,-0.0187073,-0.019165,-0.0187073,-0.0163574,-0.0138855,-0.0123291,-0.00857544,-0.00482178,-0.0015564,0.000946045,0.00234985,0.00341797,0.00436401,0.00561523,0.00326538,-0.000152588,-0.00497437,-0.00637817,-0.00827026,-0.0132446,-0.0190125,-0.0215149,-0.0230713,-0.0227661,-0.0210571,-0.0187073,-0.0138855,-0.00762939,-0.00109863,0.00436401,0.0093689,0.0129395,0.0129395,0.0109253,0.00732422,0,-0.00531006,-0.00888062,-0.013092,-0.0166931,-0.0223083,-0.0215149,-0.0184021,-0.0138855,-0.0109253,-0.00732422,-0.00326538,-0.000610352,0.00170898,0.0015564,0.00170898,0.00109863,-0.000305176,-0.00186157,-0.00531006,-0.00732422,-0.00967407,-0.0093689,-0.00997925,-0.0107727,-0.0113831,-0.0101318,-0.00796509,-0.00778198,-0.00762939,-0.00561523,-0.00436401,-0.00497437,-0.00576782,-0.00576782,-0.00546265,-0.00375366,-0.00219727,-0.0015564,-0.00201416,-0.0015564,-0.00109863,0.000610352,-0.00109863,-0.00219727,-0.00341797,-0.00326538,-0.00482178,-0.00656128,-0.00842285,-0.00857544,-0.00796509,-0.00732422,-0.0090332,-0.00747681,-0.00466919,-0.00109863,0.0015564,0.00390625,0.00637817,0.00778198,0.00888062,0.00872803,0.00732422,0.00421143,0.000793457,-0.00265503,-0.00717163,-0.0107727,-0.0129395,-0.0140381,-0.013092,-0.0118408,-0.00811768,-0.00326538,0.00219727,0.00656128,0.010437,0.013092,0.0152893,0.0162048,0.0133972,0.0101318,0.006073,0.00170898,-0.00311279,-0.00842285,-0.0124817,-0.0165405,-0.0165405,-0.0152893,-0.0138855,-0.0102844,-0.00576782,-0.00109863,0.00326538,0.00827026,0.0116882,0.0154419,0.0169983,0.0162048,0.0140381,0.0107727,0.00686646,0.00250244,-0.00280762,-0.00732422,-0.0110779,-0.0135803,-0.014801,-0.0143433,-0.0118408,-0.00952148,-0.00466919,-0.000305176,0.00482178,0.0090332,0.0137329,0.0151367,0.0166931,0.0138855,0.0119934,0.00842285,0.00405884,-0.000152588,-0.00561523,-0.00872803,-0.0115356,-0.0124817,-0.0133972,-0.0124817,-0.0090332,-0.00656128,-0.00280762,0.000305176,0.00265503,0.00531006,0.00717163,0.00747681,0.00717163,0.00686646,0.00482178,0.00250244,-0.000152588,-0.00250244,-0.00637817,-0.00811768,-0.0110779,-0.0129395,-0.0137329,-0.0140381,-0.0126343,-0.0105896,-0.0090332,-0.00576782,-0.00201416,0.00170898,0.00622559,0.00842285,0.0107727,0.0112305,0.0110779,0.0093689,0.00622559,0.00280762,-0.00280762,-0.00656128,-0.0107727,-0.0132446,-0.0154419,-0.0157471,-0.0144958,-0.0121765,-0.0093689,-0.00561523,-0.000793457,0.00234985,0.00656128,0.00872803,0.00997925,0.0109253,0.0105896,0.00967407,0.00811768,0.00637817,0.00405884,0.0015564,-0.000152588,-0.00186157,-0.00265503,-0.00250244,-0.00296021,-0.00125122,-0.000793457,0.000793457,0.00341797,0.00466919,0.00656128,0.00778198,0.0090332,0.00982666,0.0102844,0.0102844,0.0109253,0.0102844,0.010437,0.0102844,0.0105896,0.0107727,0.0110779,0.0119934,0.0123291,0.0124817,0.0123291,0.0119934,0.0118408,0.0113831,0.0110779,0.0107727,0.0109253,0.0102844,0.0101318,0.010437,0.0116882,0.0116882,0.0127869,0.0129395,0.0135803,0.0137329,0.0141907,0.0141907,0.0151367,0.0143433,0.0144958,0.0137329,0.0140381,0.0133972,0.0138855,0.0137329,0.0141907,0.013092,0.0129395,0.0121765,0.0110779,0.0102844,0.00872803,0.00732422,0.00546265,0.00280762,0.00140381,0.000305176,-0.000610352,-0.000305176,0,0.000793457,0.00186157,0.00436401,0.00671387,0.00918579,0.0109253,0.0119934,0.0127869,0.0113831,0.010437,0.00811768,0.00546265,0.00296021,-0.00109863,-0.00405884,-0.00717163,-0.00857544,-0.0093689,-0.00888062,-0.00872803,-0.00762939,-0.00637817,-0.00466919,-0.00170898,-0.000610352,0.000946045,0.00170898,0.00170898,0.00125122,0.000152588,0.000305176,-0.000793457,-0.00234985,-0.00360107,-0.0045166,-0.00482178,-0.00546265,-0.00561523,-0.00531006,-0.00622559,-0.00592041,-0.00701904,-0.00686646,-0.00717163,-0.00747681,-0.00872803,-0.00918579,-0.00967407,-0.0102844,-0.0109253,-0.0101318,-0.0101318,-0.00982666,-0.00997925,-0.00997925,-0.00967407,-0.010437,-0.0105896,-0.0112305,-0.0118408,-0.0121765,-0.0127869,-0.0118408,-0.0109253,-0.010437,-0.00918579,-0.00872803,-0.00747681,-0.00778198,-0.00778198,-0.00827026,-0.00967407,-0.0115356,-0.0129395,-0.0144958,-0.0152893,-0.0162048,-0.0162048,-0.0158997,-0.0144958,-0.0132446,-0.0113831,-0.00888062,-0.00762939,-0.00637817,-0.00546265,-0.00482178,-0.00515747,-0.00576782,-0.00701904,-0.00827026,-0.00842285,-0.0109253,-0.010437,-0.0113831,-0.0105896,-0.0109253,-0.0101318,-0.00997925,-0.00918579,-0.00872803,-0.00827026,-0.00747681,-0.00732422,-0.00762939,-0.00872803,-0.00888062,-0.0093689,-0.010437,-0.0109253,-0.0105896,-0.0109253,-0.010437,-0.00952148,-0.0093689,-0.00762939,-0.00732422,-0.006073,-0.00515747,-0.00482178,-0.00311279,-0.00265503,-0.00109863,-0.00201416,-0.000793457,-0.00186157,-0.00170898,-0.00296021,-0.00360107,-0.00466919,-0.006073,-0.00717163,-0.00778198,-0.00796509,-0.00796509,-0.00671387,-0.006073,-0.00375366,-0.00250244,-0.000305176,0.00186157,0.00405884,0.006073,0.00732422,0.00827026,0.00857544,0.00778198,0.00622559,0.00515747,0.00219727,-0.000305176,-0.00265503,-0.00546265,-0.00796509,-0.00918579,-0.00982666,-0.00952148,-0.00857544,-0.006073,-0.00405884,-0.000793457,0.00125122,0.00497437,0.00686646,0.00872803,0.00857544,0.00872803,0.00732422,0.006073,0.00421143,0.00201416,0,-0.00109863,-0.00341797,-0.00311279,-0.00250244,-0.00125122,0.00109863,0.00280762,0.00576782,0.00762939,0.010437,0.0112305,0.0126343,0.0116882,0.0110779,0.00842285,0.00576782,0.00326538,0.000305176,-0.00201416,-0.00360107,-0.00421143,-0.00326538,-0.00234985,0.000152588,0.00341797,0.00701904,0.00982666,0.0121765,0.0138855,0.0146484,0.0149536,0.013092,0.0113831,0.00842285,0.006073,0.00280762,0.00125122,-0.000152588,-0.00140381,-0.000946045,-0.000946045,-0.000152588,0.00125122,0.00186157,0.00234985,0.00201416,0.00219727,0.000793457,0.000457764,-0.000793457,-0.000946045,-0.0015564,-0.000610352,-0.000305176,0.000946045,0.00311279,0.00515747,0.00717163,0.0093689,0.00997925,0.0101318,0.00918579,0.00811768,0.00546265,0.00265503,-0.00125122,-0.00497437,-0.00842285,-0.0109253,-0.0119934,-0.0127869,-0.0121765,-0.00967407,-0.00717163,-0.00326538,0.000305176,0.00405884,0.00778198,0.0105896,0.0118408,0.0121765,0.0110779,0.00888062,0.00622559,0.00250244,-0.00140381,-0.00546265,-0.00888062,-0.0116882,-0.0138855,-0.0144958,-0.014801,-0.0137329,-0.0121765,-0.0107727,-0.00827026,-0.00576782,-0.00390625,-0.00170898,-0.000152588,0.00125122,0.00170898,0.00250244,0.00219727,0.00201416,0.00186157,0.000610352,-0.000152588,-0.000946045,-0.00219727,-0.00250244,-0.00360107,-0.00421143,-0.0045166,-0.00482178,-0.00561523,-0.00515747,-0.00466919,-0.00421143,-0.00360107,-0.00250244,-0.00219727,-0.000610352,-0.000305176,0.000457764,0.00140381,0.0015564,0.00234985,0.00250244,0.00201416,0.00250244,0.00201416,0.00140381,0.00140381,0.000305176,-0.000305176,-0.0015564,-0.00201416,-0.00265503,-0.00326538,-0.00311279,-0.00360107,-0.00265503,-0.00201416,-0.000793457,0.000793457,0.00140381,0.00201416,0.00250244,0.00219727,0.00125122,0,-0.000946045,-0.00311279,-0.00296021,-0.00405884,-0.00375366,-0.00326538,-0.00186157,0,0.000946045,0.00326538,0.00390625,0.00436401,0.00421143,0.00341797,0.0015564,-0.000152588,-0.00250244,-0.00405884,-0.00576782,-0.00622559,-0.00622559,-0.00546265,-0.00405884,-0.00250244,-0.000457764,0.0015564,0.00265503,0.00436401,0.00390625,0.00421143,0.00311279,0.00201416,0.000946045,-0.000305176,-0.00125122,-0.00140381,-0.0015564,-0.000610352,0.00109863,0.00219727,0.00390625,0.00531006,0.00637817,0.00637817,0.00717163,0.00622559,0.00546265,0.00360107,0.00170898,-0.000457764,-0.00234985,-0.00421143,-0.00561523,-0.00686646,-0.00701904,-0.00671387,-0.00592041,-0.00405884,-0.00170898,0.00186157,0.00405884,0.00762939,0.00982666,0.0119934,0.0127869,0.0135803,0.0116882,0.00967407,0.00656128,0.00234985,-0.00125122,-0.00466919,-0.00857544,-0.0107727,-0.0123291,-0.0129395,-0.0118408,-0.0102844,-0.00732422,-0.00497437,-0.000793457,0.00186157,0.00482178,0.00732422,0.00918579,0.00982666,0.00967407,0.00778198,0.00656128,0.00360107,0.000946045,-0.00219727,-0.00515747,-0.00778198,-0.00967407,-0.0107727,-0.0115356,-0.010437,-0.0090332,-0.00717163,-0.00515747,-0.00234985,-0.000152588,0.0015564,0.00341797,0.00390625,0.00436401,0.00311279,0.00219727,0.00109863,-0.000946045,-0.00265503,-0.00341797,-0.00436401,-0.00466919,-0.00466919,-0.00390625,-0.00326538,-0.00170898,-0.000946045,0.000305176,0.000457764,0.000610352,0.000793457,-0.000946045,-0.00201416,-0.00390625,-0.00546265,-0.00701904,-0.00857544,-0.00918579,-0.0090332,-0.00857544,-0.00671387,-0.00436401,-0.00280762,0.000610352,0.00265503,0.00515747,0.00592041,0.00637817,0.00592041,0.00497437,0.00201416,0,-0.00311279,-0.00592041,-0.00747681,-0.00982666,-0.0093689,-0.00918579,-0.00747681,-0.00515747,-0.00311279,0.000152588,0.00296021,0.0045166,0.00637817,0.00622559,0.00637817,0.00466919,0.00311279,0.00140381,-0.000793457,-0.00201416,-0.00375366,-0.00326538,-0.00375366,-0.00250244,-0.00125122,0.000305176,0.00186157,0.00326538,0.00375366,0.00482178,0.0045166,0.00390625,0.00326538,0.00186157,0.00140381,0,-0.000305176,-0.000946045,-0.00109863,-0.00125122,-0.00125122,-0.00125122,-0.00109863,-0.00125122,-0.00125122,-0.0015564,-0.000946045,-0.000610352,0,0.000610352,0.00140381,0.00265503,0.00326538,0.00360107,0.00390625,0.00360107,0.00234985,0.00140381,-0.000610352,-0.00296021,-0.00421143,-0.00592041,-0.00717163,-0.00811768,-0.00811768,-0.00747681,-0.00622559,-0.00531006,-0.00375366,-0.00125122,0,0.00170898,0.00265503,0.00360107,0.00421143,0.00405884,0.00311279,0.00186157,0.00109863,-0.000793457,-0.00234985,-0.00390625,-0.00561523,-0.00717163,-0.00811768,-0.00872803,-0.00888062,-0.00952148,-0.00762939,-0.00747681,-0.00592041,-0.00421143,-0.00265503,-0.000305176,0.00140381,0.00326538,0.00436401,0.00561523,0.00561523,0.00546265,0.00421143,0.00326538,0.000457764,-0.000946045,-0.00405884,-0.00546265,-0.00671387,-0.00811768,-0.0101318,-0.00982666,-0.0093689,-0.00671387,-0.00546265,-0.00421143,-0.00219727,0.000305176,0.00280762,0.00436401,0.00482178,0.00515747,0.00546265,0.00405884,0.00326538,0.00234985,0.000610352,-0.000610352,-0.00234985,-0.00280762,-0.00360107,-0.00311279,-0.00360107,-0.00296021,-0.00250244,-0.00170898,-0.0015564,-0.000793457,-0.00186157,-0.00201416,-0.0015564,-0.00140381,-0.00170898,-0.00125122,-0.000793457,0.000305176,0.00186157,0.00265503,0.00405884,0.00482178,0.00546265,0.00622559,0.00592041,0.00515747,0.00405884,0.00296021,0.0015564,-0.000305176,-0.00170898,-0.00360107,-0.00482178,-0.00592041,-0.00686646,-0.00637817,-0.00622559,-0.00515747,-0.00421143,-0.00265503,-0.000152588,0.00170898,0.00296021,0.0045166,0.00531006,0.00622559,0.00561523,0.00531006,0.00390625,0.00296021,0.00140381,0,-0.0015564,-0.00265503,-0.00405884,-0.0045166,-0.00482178,-0.00576782,-0.00531006,-0.00497437,-0.00466919,-0.00421143,-0.00360107,-0.00341797,-0.00219727,-0.00234985,-0.00109863,-0.00109863,-0.000305176,-0.000152588,0.000457764,0.00109863,0.00250244,0.00201416,0.00326538,0.00280762,0.00326538,0.00280762,0.0015564,0,-0.00201416,-0.00341797,-0.00592041,-0.00827026,-0.00952148,-0.0107727,-0.0102844,-0.00997925,-0.00811768,-0.00561523,-0.00326538,0.000305176,0.00326538,0.00592041,0.00811768,0.00982666,0.0101318,0.00997925,0.00747681,0.006073,0.00326538,0.000305176,-0.00296021,-0.00531006,-0.00827026,-0.00997925,-0.0113831,-0.0116882,-0.0110779,-0.0102844,-0.00842285,-0.00637817,-0.00390625,-0.000946045,0.0015564,0.00405884,0.00576782,0.00747681,0.00762939,0.00747681,0.00592041,0.00482178,0.00170898,-0.000793457,-0.00360107,-0.00637817,-0.00796509,-0.0093689,-0.00982666,-0.00952148,-0.00796509,-0.00671387,-0.00405884,-0.0015564,0.00125122,0.00311279,0.00497437,0.00622559,0.00637817,0.00637817,0.00497437,0.0045166,0.00234985,0.000946045,-0.00140381,-0.00296021,-0.0045166,-0.00482178,-0.00592041,-0.00546265,-0.00546265,-0.00482178,-0.00390625,-0.00296021,-0.0015564,-0.000610352,0.000305176,0.000457764,0.00109863,0.00125122,0.00125122,0.00109863,0.000946045,-0.000152588,0.000457764,-0.000305176,-0.000152588,0.000305176,-0.000457764,0.000152588,-0.000152588,0.000305176,-0.000457764,0,-0.000793457,-0.0015564,-0.00201416,-0.00311279,-0.00405884,-0.00466919,-0.00466919,-0.00515747,-0.00497437,-0.00466919,-0.00360107,-0.00265503,-0.0015564,0.000793457,0.00140381,0.00390625,0.00421143,0.00482178,0.00531006,0.0045166,0.00436401,0.00250244,0.00125122,-0.00125122,-0.00280762,-0.00405884,-0.00482178,-0.00466919,-0.00466919,-0.00390625,-0.00296021,-0.00140381,0.000793457,0.00234985,0.00360107,0.00405884,0.00390625,0.00360107,0.00326538,0.00186157,0.0015564,-0.000946045,-0.00125122,-0.00186157,-0.00250244,-0.00170898,-0.00186157,-0.000457764,-0.000305176,0.00109863,0.000793457,0.00109863,0.00109863,0.00125122,0.000793457,0,-0.000793457,-0.0015564,-0.00234985,-0.00170898,-0.00234985,-0.00250244,-0.0015564,-0.00201416,-0.00109863,-0.000457764,0.000793457,0.00125122,0.00186157,0.00234985,0.00250244,0.00296021,0.00250244,0.00296021,0.00219727,0.00140381,0.000610352,0,-0.00109863,-0.00140381,-0.00234985,-0.00280762,-0.00280762,-0.00341797,-0.00296021,-0.00311279,-0.00219727,-0.00186157,-0.00109863,-0.000457764,0.000152588,0.000793457,0.000946045,0.00219727,0.00186157,0.00250244,0.00219727,0.0015564,0.00170898,0.000457764,0.000305176,-0.000793457,-0.00219727,-0.00326538,-0.00360107,-0.00436401,-0.0045166,-0.00497437,-0.00405884,-0.00375366,-0.00280762,-0.0015564,-0.000152588,0.000793457,0.00234985,0.00234985,0.00311279,0.00250244,0.00201416,0.000610352,0.000457764,-0.00186157,-0.00250244,-0.00360107,-0.00482178,-0.00466919,-0.00482178,-0.00466919,-0.00311279,-0.00296021,-0.00170898,-0.000305176,-0.000305176,0.00109863,0.0015564,0.00140381,0.00170898,0.000793457,0.000305176,0,-0.00170898,-0.00140381,-0.00341797,-0.00311279,-0.00360107,-0.00375366,-0.00360107,-0.00296021,-0.00234985,-0.00201416,-0.00140381,-0.000610352,-0.000610352,0,-0.000305176,-0.000305176,-0.00109863,-0.00140381,-0.00201416,-0.00201416,-0.00296021,-0.00296021,-0.00280762,-0.00296021,-0.00265503,-0.00170898,-0.0015564,-0.00125122,-0.00109863,-0.000457764,-0.000457764,-0.000152588,0,0,-0.000152588,0,0.000152588,0.000152588,0.000152588,0.000793457,0,0.000610352,-0.000946045,0,-0.00125122,-0.00140381,-0.00219727,-0.00234985,-0.00250244,-0.00234985,-0.00250244,-0.00170898,-0.0015564,-0.000152588,-0.000305176,0.000610352,0.00125122,0.00125122,0.00125122,0.0015564,-0.000152588,0,-0.00125122,-0.00234985,-0.00250244,-0.00280762,-0.00326538,-0.00326538,-0.00234985,-0.00186157,-0.000610352,0,0.00109863,0.00170898,0.00250244,0.00219727,0.00219727,0.00170898,0.000457764,-0.000152588,-0.000946045,-0.00219727,-0.00250244,-0.00311279,-0.00280762,-0.00326538,-0.00265503,-0.0015564,-0.00125122,0.000152588,0.000793457,0.00140381,0.00186157,0.00219727,0.00280762,0.00234985,0.00219727,0.00219727,0.00140381,0.00125122,0.000457764,0.000152588,-0.000305176,-0.00109863,-0.00125122,-0.00201416,-0.00140381,-0.00186157,-0.00186157,-0.00140381,-0.000946045,-0.000152588,0.000152588,0.00125122,0.00140381,0.00219727,0.00234985,0.00234985,0.00219727,0.00186157,0.00109863,0.00109863,-0.000457764,-0.00140381,-0.00219727,-0.00280762,-0.00375366,-0.0045166,-0.00482178,-0.00497437,-0.00546265,-0.00466919,-0.00436401,-0.00360107,-0.00234985,-0.00186157,-0.000457764,0.00125122,0.00125122,0.00265503,0.00296021,0.00311279,0.00326538,0.00186157,0.0015564,0,-0.00109863,-0.00201416,-0.00390625,-0.0045166,-0.00546265,-0.00637817,-0.00576782,-0.006073,-0.00546265,-0.0045166,-0.00296021,-0.00186157,-0.000152588,0.00109863,0.00280762,0.00326538,0.00421143,0.00515747,0.00466919,0.0045166,0.00421143,0.00280762,0.00186157,0.00109863,-0.000946045,-0.00140381,-0.00250244,-0.00341797,-0.00390625,-0.0045166,-0.00436401,-0.00421143,-0.00375366,-0.00296021,-0.00219727,-0.000946045,0.000610352,0.00109863,0.00250244,0.00375366,0.00375366,0.0045166,0.00405884,0.00326538,0.00280762,0.000305176,-0.000152588,-0.00280762,-0.00341797,-0.00531006,-0.00466919,-0.006073,-0.00497437,-0.00466919,-0.00296021,-0.00170898,0,0.000793457,0.00219727,0.00186157,0.00234985,0.000946045,0.000793457,-0.000793457,-0.00234985,-0.00326538,-0.00436401,-0.00436401,-0.0045166,-0.00390625,-0.00265503,-0.0015564,-0.000305176,0.000946045,0.00186157,0.00250244,0.00234985,0.00201416,0.000946045,0.000152588,-0.00125122,-0.00219727,-0.00311279,-0.00360107,-0.00436401,-0.00390625,-0.00375366,-0.00311279,-0.00219727,-0.00170898,-0.00109863,-0.000152588,-0.000457764,-0.000305176,-0.000305176,-0.000610352,-0.000610352,-0.000946045,-0.00109863,-0.000946045,-0.00125122,-0.000946045,-0.000946045,-0.000457764,-0.000793457,-0.000305176,-0.000946045,-0.00125122,-0.00109863,-0.00250244,-0.00186157,-0.00311279,-0.00296021,-0.00341797,-0.00326538,-0.00265503,-0.00296021,-0.00186157,-0.00201416,-0.000946045,-0.000793457,-0.000457764,0.000152588,0.000152588,-0.000152588,0,-0.000793457,-0.000610352,-0.00140381,-0.00219727,-0.0015564,-0.00265503,-0.00296021,-0.00250244,-0.00280762,-0.00296021,-0.00219727,-0.00265503,-0.00219727,-0.00170898,-0.00109863,-0.00109863,-0.000457764,-0.000305176,-0.000152588,0,-0.000152588,-0.000305176,-0.000610352,-0.000610352,-0.000946045,-0.00170898,-0.00140381,-0.00201416,-0.00170898,-0.00140381,-0.000610352,-0.000610352,0.000457764,0.000946045,0.00140381,0.00234985,0.00201416,0.00296021,0.00201416,0.0015564,0.000946045,0.000305176,-0.000946045,-0.00186157,-0.00219727,-0.00311279,-0.00311279,-0.00341797,-0.00280762,-0.00234985,-0.00201416,-0.000793457,-0.000457764,0,0.000610352,0.000946045,0.00125122,0.000610352,0.000152588,0.000305176,-0.000793457,-0.00109863,-0.00170898,-0.00201416,-0.00219727,-0.00250244,-0.00296021,-0.00250244,-0.00250244,-0.00219727,-0.00186157,-0.0015564,-0.000610352,-0.000946045,0.000305176,-0.000152588,0.000305176,0.000305176,0.000152588,0.000152588,0,0.000152588,-0.000610352,-0.000610352,0.000152588,-0.000305176,0,0.000305176,0.000152588,0.000457764,0.000305176,0.000305176,0.000305176,0.000152588,0.000152588,-0.000305176,0,0.000610352,0.000610352,0.000793457,0.00170898,0.00170898,0.00219727,0.00234985,0.00250244,0.00234985,0.00186157,0.00170898,0.000610352,0.000457764,-0.000610352,-0.000946045,-0.00219727,-0.00219727,-0.00296021,-0.00326538,-0.00250244,-0.00311279,-0.00234985,-0.00201416,-0.0015564,-0.000946045,-0.000305176,-0.000152588,0.00140381,0.000457764,0.00140381,0.000457764,0.000793457,0.000305176,-0.000305176,-0.000793457,-0.00125122,-0.00186157,-0.00234985,-0.00201416,-0.00186157,-0.00186157,-0.000946045,-0.000946045,-0.000152588,0.000152588,0.000946045,0.00109863,0.000793457,0.00109863,0,0,-0.00140381,-0.00186157,-0.00265503,-0.00311279,-0.00375366,-0.00421143,-0.00341797,-0.00341797,-0.00280762,-0.00125122,-0.000946045,0.000305176,0.00109863,0.00170898,0.00201416,0.00201416,0.00201416,0.000610352,0.000152588,-0.00140381,-0.00250244,-0.00390625,-0.00482178,-0.00531006,-0.00592041,-0.00592041,-0.00515747,-0.00375366,-0.00311279,-0.000793457,0,0.00186157,0.00234985,0.00341797,0.00326538,0.00326538,0.00201416,0.00140381,-0.000305176,-0.0015564,-0.00360107,-0.00405884,-0.00561523,-0.00497437,-0.00576782,-0.00515747,-0.00436401,-0.00360107,-0.00250244,-0.00125122,-0.000457764,0.000610352,0.000152588,0.000946045,0.000305176,0.000610352,-0.000305176,-0.000152588,-0.000305176,-0.000610352,-0.000305176,0,0.000610352,0.000305176,0.00125122,0.000946045,0.00109863,0.000946045,0.000305176,0,-0.000610352,-0.00109863,-0.00170898,-0.00201416,-0.00186157,-0.00186157,-0.00125122,-0.000793457,0.000457764,0.000457764,0.0015564,0.00234985,0.00234985,0.00296021,0.00265503,0.00265503,0.00219727,0.00186157,0.00109863,0.000793457,-0.000152588,-0.000457764,-0.00140381,-0.00125122,-0.00265503,-0.00186157,-0.00311279,-0.00234985,-0.00250244,-0.00219727,-0.00201416,-0.00109863,-0.000457764,0.000152588,0.00109863,0.0015564,0.00186157,0.00186157,0.0015564,0.00109863,0.000457764,-0.000793457,-0.00125122,-0.00219727,-0.00341797,-0.00311279,-0.00375366,-0.00375366,-0.00296021,-0.00296021,-0.0015564,-0.00140381,-0.000457764,0,0.000305176,0.000610352,0.000610352,0.000457764,0.000152588,0.000305176,-0.000457764,-0.000152588,-0.000457764,-0.000610352,-0.000610352,-0.000946045,-0.000610352,-0.000793457,-0.000793457,-0.0015564,-0.00125122,-0.00170898,-0.0015564,-0.00280762,-0.00234985,-0.00280762,-0.00296021,-0.00311279,-0.00311279,-0.00326538,-0.00280762,-0.00311279,-0.00265503,-0.00250244,-0.00219727,-0.00186157,-0.0015564,-0.00109863,-0.000946045,-0.000457764,-0.000793457,-0.000305176,-0.000457764,-0.000793457,-0.00170898,-0.00140381,-0.00280762,-0.00234985,-0.00360107,-0.00311279,-0.00405884,-0.00360107,-0.00280762,-0.00326538,-0.00186157,-0.00125122,-0.00140381,0.000457764,-0.000305176,0.000610352,0.000946045,0.000457764,0.000793457,0.000152588,-0.000305176,-0.000305176,-0.000946045,-0.00125122,-0.0015564,-0.00219727,-0.00250244,-0.00234985,-0.00280762,-0.00234985,-0.00280762,-0.00219727,-0.00234985,-0.00170898,-0.00140381,-0.000793457,-0.000305176,0.000457764,0.000946045,0.0015564,0.00219727,0.00219727,0.00234985,0.00219727,0.00234985,0.00140381,0.00170898,0.000152588,-0.000152588,-0.00109863,-0.00140381,-0.00234985,-0.00280762,-0.00326538,-0.00341797,-0.00341797,-0.00326538,-0.00296021,-0.00250244,-0.0015564,-0.00125122,-0.000305176,0.000457764,0.000793457,0.00170898,0.00186157,0.00265503,0.00234985,0.00296021,0.00219727,0.00219727,0.00125122,0.000793457,-0.000152588,-0.000946045,-0.00219727,-0.00265503,-0.00375366,-0.00390625,-0.00466919,-0.00482178,-0.00421143,-0.00436401,-0.00326538,-0.00280762,-0.00140381,-0.00109863,0.000305176,0.000946045,0.00125122,0.00170898,0.0015564,0.0015564,0.000610352,0.000457764,-0.000946045,-0.00125122,-0.00234985,-0.00234985,-0.00390625,-0.00375366,-0.00360107,-0.00375366,-0.00360107,-0.00296021,-0.00234985,-0.00170898,-0.00125122,-0.000152588,0.000152588,0.000793457,0.00125122,0.00140381,0.0015564,0.0015564,0.00109863,0.00125122,0.000946045,0.000793457,0.000610352,0.000457764,-0.000152588,0,-0.000610352,-0.000305176,-0.000610352,-0.000610352,-0.000457764,-0.000610352,-0.000305176,-0.000946045,-0.000457764,-0.000946045,-0.000457764,-0.00109863,-0.000793457,-0.000610352,-0.000305176,0.000152588,-0.000152588,0.000457764,0.000305176,0.00125122,0.000946045,0.00109863,0.00125122,0.00109863,0.000457764,0,-0.000457764,-0.000793457,-0.00234985,-0.00234985,-0.00326538,-0.00390625,-0.00326538,-0.00405884,-0.00265503,-0.00265503,-0.00140381,-0.000793457,0.000457764,0.0015564,0.00250244,0.00234985,0.00326538,0.00280762,0.00250244,0.00201416,0.00140381,0.000152588,-0.000305176,-0.00125122,-0.00170898,-0.00250244,-0.00265503,-0.00265503,-0.00296021,-0.00219727,-0.00234985,-0.00140381,-0.00109863,-0.000305176,0.000152588,0.000457764,0.00140381,0.00125122,0.00186157,0.00201416,0.00125122,0.00170898,0.000946045,-0.000152588,-0.000610352,-0.00170898,-0.00250244,-0.00311279,-0.00375366,-0.00360107,-0.00436401,-0.00375366,-0.00360107,-0.00280762,-0.00219727,-0.00186157,-0.00125122,-0.000946045,-0.000793457,-0.000457764,-0.00125122,-0.00109863,-0.00125122,-0.00219727,-0.00234985,-0.00250244,-0.00280762,-0.00250244,-0.00219727,-0.00201416,-0.00125122,-0.00109863,-0.000457764,-0.000152588,0,-0.000152588,0,-0.000946045,-0.00109863,-0.0015564,-0.00219727,-0.00234985,-0.00234985,-0.00326538,-0.00186157,-0.00265503,-0.00186157,-0.00140381,-0.000457764,-0.000793457,0.000152588,0.000457764,0.000946045,0.000610352,0.00125122,0.000946045,0.000793457,0.000793457,0,0,-0.000946045,-0.000946045,-0.00140381,-0.00219727,-0.00201416,-0.00250244,-0.00250244,-0.00234985,-0.00201416,-0.00170898,-0.00140381,-0.00109863,-0.000610352,-0.000305176,-0.000152588,0.000457764,0,0.000610352,-0.000152588,0.000305176,-0.000152588,-0.000305176,-0.000946045,-0.000946045,-0.000946045,-0.00219727,-0.0015564,-0.00186157,-0.0015564,-0.00170898,-0.00186157,-0.00170898,-0.00170898,-0.00109863,-0.00201416,-0.00125122,-0.00109863,-0.00125122,-0.00125122,-0.00109863,-0.00140381,-0.000946045,-0.000946045,-0.00125122,-0.000457764,-0.0015564,-0.000152588,-0.00125122,-0.000457764,-0.000457764,-0.000457764,-0.000305176,-0.000793457,-0.000305176,-0.000946045,-0.000305176,-0.0015564,-0.000946045,-0.0015564,-0.00140381,-0.00201416,-0.00186157,-0.00186157,-0.00265503,-0.00186157,-0.00250244,-0.00170898,-0.00170898,-0.00140381,-0.00109863,-0.000305176,-0.000152588,0.00109863,0.000610352,0.0015564,0.00170898,0.00125122,0.00186157,0.000610352,0.000610352,-0.000152588,-0.00140381,-0.00140381,-0.00250244,-0.00311279,-0.00311279,-0.00311279,-0.00296021,-0.00201416,-0.00219727,-0.000946045,-0.000305176,0,0.000610352,0.000610352,0.000946045,0.000946045,0.000305176,-0.000152588,-0.000457764,-0.000305176,-0.000946045,-0.000793457,-0.000946045,-0.000305176,-0.000610352,-0.000152588,-0.000152588,-0.000457764,-0.000793457,-0.000946045,-0.0015564,-0.00201416,-0.00265503,-0.00311279,-0.00296021,-0.00326538,-0.00234985,-0.00250244,-0.00201416,-0.000946045,-0.000152588,0.000610352,0.00125122,0.00140381,0.00219727,0.00201416,0.00170898,0.00186157,0.000946045,0.000457764,-0.000457764,-0.000946045,-0.00201416,-0.00234985,-0.00296021,-0.00360107,-0.00341797,-0.00405884,-0.00280762,-0.00296021,-0.00234985,-0.0015564,-0.000946045,0.000152588,0.000305176,0.00170898,0.0015564,0.00234985,0.00201416,0.00170898,0.0015564,0.00140381,0.000457764,0,-0.000305176,-0.00125122,-0.000793457,-0.0015564,-0.00170898,-0.00170898,-0.00125122,-0.00140381,-0.0015564,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.000305176,-0.000610352,0,-0.000305176,0.000946045,0.000457764,0.00125122,0.00140381,0.00125122,0.00170898,0.00140381,0.0015564,0.000946045,0.000793457,-0.000305176,-0.000305176,-0.000793457,-0.0015564,-0.00170898,-0.00219727,-0.00219727,-0.00234985,-0.00170898,-0.00219727,-0.000610352,-0.000793457,0.000305176,0.000305176,0.0015564,0.00186157,0.00234985,0.00296021,0.00280762,0.00296021,0.00265503,0.00250244,0.00125122,0.000946045,0,-0.000610352,-0.00186157,-0.00201416,-0.00265503,-0.00280762,-0.00296021,-0.00280762,-0.00219727,-0.00186157,-0.00140381,-0.000793457,0,0.000457764,0.000457764,0.00109863,0.000946045,0.000946045,0.000457764,0.000793457,-0.000305176,0.000305176,-0.000793457,-0.000305176,-0.000793457,-0.000793457,-0.000946045,-0.00125122,-0.00125122,-0.00201416,-0.00219727,-0.00296021,-0.00311279,-0.00405884,-0.00360107,-0.00436401,-0.00375366,-0.00341797,-0.00326538,-0.00234985,-0.00125122,-0.000946045,0.000152588,0.000793457,0.00140381,0.00140381,0.0015564,0.00125122,0.000610352,0.000152588,-0.00125122,-0.00170898,-0.00296021,-0.00311279,-0.00375366,-0.00375366,-0.00360107,-0.00390625,-0.00280762,-0.00265503,-0.0015564,-0.0015564,-0.000610352,-0.000793457,0,-0.000457764,-0.000457764,-0.000152588,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.000305176,-0.000610352,0.000152588,0,0.000610352,0.000457764,0.000793457,0,0.000152588,-0.000793457,-0.000457764,-0.00201416,-0.0015564,-0.00234985,-0.00250244,-0.00265503,-0.00201416,-0.00170898,-0.000793457,-0.000610352,0.00125122,0.00125122,0.00250244,0.00280762,0.00280762,0.00326538,0.00219727,0.00250244,0.000793457,0.000305176,-0.000793457,-0.00186157,-0.00234985,-0.00280762,-0.00296021,-0.00265503,-0.00234985,-0.0015564,-0.00109863,0.000152588,0.000152588,0.00140381,0.0015564,0.00140381,0.00125122,0.00109863,0.000305176,0.000457764,-0.000793457,-0.000793457,-0.00170898,-0.0015564,-0.00170898,-0.00186157,-0.00125122,-0.00109863,-0.000793457,-0.000457764,-0.000610352,0,-0.000305176,0.000152588,-0.000793457,-0.000610352,-0.00109863,-0.0015564,-0.0015564,-0.00186157,-0.00186157,-0.00186157,-0.00170898,-0.0015564,-0.00140381,-0.000946045,-0.000610352,-0.000152588,-0.000610352,-0.000457764,-0.000152588,-0.00125122,-0.00109863,-0.00170898,-0.00170898,-0.00280762,-0.00280762,-0.00280762,-0.00311279,-0.00250244,-0.00280762,-0.00250244,-0.0015564,-0.00201416,-0.00125122,-0.00109863,-0.00109863,-0.000793457,-0.000457764,-0.00109863,-0.000610352,-0.000305176,-0.00109863,-0.000610352,-0.000610352,-0.000793457,-0.000610352,-0.00109863,-0.000946045,-0.00125122,-0.00125122,-0.00125122,-0.00125122,-0.000946045,-0.00170898,-0.000946045,-0.00109863,-0.00140381,-0.000793457,-0.00109863,-0.000152588,-0.000610352,-0.000610352,0.000305176,-0.000305176,-0.000152588,0,-0.000152588,-0.000457764,-0.000610352,-0.00125122,-0.00109863,-0.00140381,-0.00186157,-0.0015564,-0.0015564,-0.0015564,-0.0015564,-0.000946045,-0.000793457,-0.000610352,-0.000457764,-0.000305176,-0.000305176,0,-0.000793457,0,-0.00109863,0.000152588,-0.00140381,0,-0.000946045,-0.000457764,-0.000610352,-0.000610352,-0.000946045,-0.000152588,-0.00125122,-0.000457764,-0.000946045,-0.000610352,-0.00109863,-0.000793457,-0.000610352,-0.00109863,0,-0.000793457,0,-0.000305176,0.000152588,0,0.000610352,0.000610352,0.000610352,0.000457764,0.000610352,-0.000152588,0.000152588,-0.000793457,-0.000793457,-0.0015564,-0.00140381,-0.00234985,-0.00265503,-0.00219727,-0.00280762,-0.00219727,-0.00265503,-0.00219727,-0.00140381,-0.00201416,-0.000305176,-0.00109863,0,-0.000457764,0,-0.000457764,-0.000152588,-0.00125122,-0.000793457,-0.00140381,-0.00186157,-0.00219727,-0.00219727,-0.00219727,-0.00265503,-0.00219727,-0.00219727,-0.00201416,-0.00170898,-0.00125122,-0.00125122,-0.00125122,-0.000793457,-0.000946045,-0.00109863,-0.00140381,-0.00140381,-0.00250244,-0.00201416,-0.00219727,-0.00280762,-0.00234985,-0.00250244,-0.00186157,-0.0015564,-0.00140381,0,-0.000457764,0.000610352,0.000610352,0.00109863,0.000457764,0.000793457,0.000305176,-0.000305176,-0.000946045,-0.00109863,-0.00219727,-0.00250244,-0.00219727,-0.00265503,-0.00234985,-0.00250244,-0.00234985,-0.0015564,-0.000610352,-0.00125122,0.000305176,-0.000152588,0.000610352,0.000457764,0.000793457,0.000457764,0.000946045,0.000305176,0.000457764,-0.000305176,0.000152588,-0.000946045,0.000152588,-0.00125122,-0.000457764,-0.000946045,-0.000610352,-0.000793457,-0.000610352,-0.000457764,-0.000305176,-0.000457764,0.000152588,0,0.000152588,0.000305176,0.000793457,0.000305176,0.000946045,0.000305176,0.00125122,0.000305176,0.00125122,0.000793457,0.000946045,0.000457764,0.000610352,0.000305176,-0.000457764,-0.000610352,-0.0015564,-0.00186157,-0.00219727,-0.00250244,-0.00311279,-0.00250244,-0.00250244,-0.00186157,-0.00170898,-0.000457764,-0.000457764,0.00109863,0.000946045,0.00140381,0.00186157,0.00125122,0.000946045,0.000793457,-0.000457764,-0.000946045,-0.00234985,-0.00265503,-0.00390625,-0.00311279,-0.00375366,-0.00341797,-0.00234985,-0.00280762,-0.000946045,-0.000610352,-0.000152588,0.000610352,0,0.000610352,-0.000305176,-0.000457764,-0.00125122,-0.00219727,-0.00219727,-0.00280762,-0.00219727,-0.00311279,-0.00186157,-0.00219727,-0.000457764,-0.000457764,0.000457764,0.000305176,0.000793457,0.00109863,0.000457764,0.000152588,-0.000305176,-0.000793457,-0.00201416,-0.00219727,-0.00265503,-0.00311279,-0.00296021,-0.00311279,-0.00296021,-0.00250244,-0.00201416,-0.00140381,-0.000305176,-0.000457764,0.000610352,0.000793457,0.00109863,0.00109863,0.00140381,0.00125122,0.000152588,0.00109863,0.000152588,0,-0.000457764,-0.00109863,-0.00109863,-0.00125122,-0.00186157,-0.00170898,-0.00234985,-0.00186157,-0.00250244,-0.00170898,-0.00219727,-0.00109863,-0.00125122,-0.000610352,0,0.000946045,0.000946045,0.00201416,0.00201416,0.00219727,0.00280762,0.00186157,0.0015564,0.000793457,0.000152588,-0.000946045,-0.00170898,-0.00296021,-0.00296021,-0.00421143,-0.00360107,-0.00405884,-0.00360107,-0.00265503,-0.00201416,-0.00125122,0,0.000946045,0.0015564,0.00250244,0.00250244,0.00250244,0.00280762,0.00201416,0.0015564,0.000793457,0.000305176,-0.00109863,-0.0015564,-0.00201416,-0.00311279,-0.00311279,-0.00311279,-0.00326538,-0.00280762,-0.00219727,-0.00186157,-0.00125122,-0.000946045,-0.000610352,0.000152588,-0.000305176,0.000305176,0.000152588,0,0.000305176,-0.000305176,-0.000793457,0,-0.000305176,-0.000946045,-0.000305176,-0.00140381,-0.00109863,-0.0015564,-0.00186157,-0.00186157,-0.00201416,-0.00234985,-0.00201416,-0.00170898,-0.00201416,-0.000610352,-0.00109863,0,-0.000152588,0.000305176,0.000305176,0.000305176,0.000610352,-0.000152588,-0.000152588,-0.00109863,-0.000793457,-0.00140381,-0.00140381,-0.00140381,-0.00201416,-0.00109863,-0.00109863,-0.00125122,-0.000152588,-0.000946045,0,-0.000793457,-0.000305176,-0.000793457,-0.000946045,-0.000793457,-0.000946045,-0.0015564,-0.000793457,-0.00109863,-0.00109863,-0.000946045,0,-0.000457764,0.000152588,0,0.000793457,0.000457764,0.000946045,0.000305176,0.000946045,-0.000152588,0.000152588,-0.000457764,-0.000946045,-0.00109863,-0.00186157,-0.0015564,-0.00280762,-0.00201416,-0.00280762,-0.00250244,-0.00201416,-0.00250244,-0.00140381,-0.0015564,-0.000457764,0,0.000152588,0.0015564,0.00140381,0.00140381,0.00170898,0.00109863,0.000946045,0.000305176,-0.000152588,-0.000793457,-0.00170898,-0.00125122,-0.00234985,-0.00186157,-0.00170898,-0.00186157,-0.00125122,0,0.0015564,0.00341797,0.00390625,0.00326538,0.00326538,0.00140381,0.000610352,0.000305176,-0.00109863,-0.00219727,-0.00234985,-0.00280762,-0.00250244,-0.00201416,-0.00219727,-0.00219727,-0.000793457,0.000610352,0.00125122,0.000610352,0.000946045,-0.000152588,-0.000793457,-0.00125122,-0.0015564,-0.00280762,-0.00250244,-0.00140381,-0.0015564,-0.000457764,0.000457764,0.000610352,0.000457764,0.000457764,0.00125122,0.000152588,-0.000305176,-0.00201416,-0.00341797,-0.00421143,-0.00405884,-0.0045166,-0.00390625,-0.00405884,-0.00311279,-0.00280762,-0.00109863,-0.0015564,-0.00125122,-0.0015564,-0.000946045,0.000152588,0.000610352,0.000610352,-0.000946045,-0.000610352,-0.000457764,-0.00125122,-0.000946045,-0.00341797,-0.00280762,-0.00201416,-0.00186157,-0.00170898,-0.00109863,-0.00109863,-0.000457764,-0.000610352,0,0.00186157,0.00280762,0.00250244,0.00109863,0.000305176,-0.000946045,-0.0015564,-0.00280762,-0.00326538,-0.0045166,-0.00405884,-0.00375366,-0.00375366,-0.00140381,-0.00140381,-0.000457764,0,0.000946045,-0.000610352,-0.0015564,-0.00140381,-0.00170898,-0.00170898,-0.00265503,-0.00109863,-0.000610352,0.00140381,0.000610352,-0.000152588,-0.000946045,-0.000457764,-0.000610352,-0.00125122,-0.00186157,0,0.00201416,0.00186157,0.00201416,0.000946045,0.00219727,0.000946045,-0.000152588,-0.00125122,-0.00311279,-0.00280762,-0.00311279,-0.00201416,-0.00186157,-0.00250244,-0.00109863,-0.00186157,-0.000610352,-0.00125122,-0.0015564,-0.00170898,-0.000457764,-0.000457764,0.000946045,0.00140381,0.0045166,0.00531006,0.00436401,0.00280762,0.00201416,0.00265503,0.00109863,-0.000946045,-0.00250244,-0.00296021,-0.00140381,-0.00219727,-0.00234985,-0.00265503,-0.00170898,-0.00234985,-0.00296021,-0.00296021,-0.00421143,-0.00326538,-0.00265503,-0.00186157,-0.00170898,-0.00170898,-0.00219727,0.000946045,0.00280762,0.00360107,0.00390625,0.00436401,0.00515747,0.00546265,0.0045166,0.00326538,0.00201416,0.00140381,0,0.000305176,0.00219727,0.00421143,0.00576782,0.00482178,0.00280762,0.00219727,0.00170898,0.00201416,0.000305176,-0.00140381,-0.00265503,-0.00250244,-0.00186157,-0.00125122,-0.000305176,-0.00219727,-0.000793457,-0.00170898,-0.000946045,-0.00311279,-0.00341797,-0.00234985,-0.00125122,-0.000305176,-0.00140381,-0.000946045,-0.000457764,0.00109863,-0.000610352,-0.000793457,-0.000305176,0.000946045,-0.000793457,-0.00170898,-0.00186157,-0.000793457,-0.00125122,-0.00170898,-0.00326538,-0.00360107,-0.00311279,-0.00186157,-0.000946045,-0.000152588,0.000152588,-0.000305176,0,-0.000946045,-0.00219727,-0.00311279,-0.00390625,-0.00405884,-0.00482178,-0.00482178,-0.00482178,-0.00326538,-0.0015564,-0.00250244,-0.00326538,-0.00219727,-0.000457764,0,-0.00140381,-0.00170898,-0.00219727,-0.0015564,-0.00326538,-0.00592041,-0.00762939,-0.00701904,-0.00576782,-0.00622559,-0.00546265,-0.00405884,-0.00140381,0.000946045,0.00109863,0.00140381,-0.000610352,-0.000610352,-0.00186157,-0.00219727,-0.00140381,-0.00125122,0.000305176,0.000610352,0.0015564,0.000793457,0.000457764,-0.000152588,-0.000152588,-0.00234985,-0.00140381,0.000610352,0.00280762,0.00219727,0.0015564,0.00186157,0.00375366,0.00656128,0.00482178,0.00360107,0.00109863,0,-0.000152588,-0.00250244,-0.00265503,-0.00341797,-0.00375366,-0.00265503,-0.000793457,-0.000152588,-0.000457764,0.000793457,0.000610352,0.00186157,0.000610352,0,-0.000305176,-0.000152588,-0.000610352,-0.00219727,-0.00201416,-0.00219727,-0.0015564,-0.00234985,-0.00186157,-0.000946045,0.000152588,-0.0015564,-0.00219727,-0.00170898,-0.000305176,0.000152588,0.000305176,-0.00201416,-0.00265503,-0.00296021,-0.00375366,-0.00341797,-0.00531006,-0.00686646,-0.00686646,-0.00717163,-0.00576782,-0.00546265,-0.00421143,-0.00375366,-0.00341797,-0.00390625,-0.00515747,-0.00531006,-0.00466919,-0.00326538,-0.00109863,0,0.000305176,-0.000610352,-0.0015564,-0.000946045,-0.00250244,-0.00375366,-0.00421143,-0.00482178,-0.00405884,-0.00390625,-0.00311279,-0.00186157,-0.00250244,-0.00170898,0,0.00186157,0.00186157,0.00125122,0,-0.00170898,-0.00186157,-0.00234985,-0.0015564,-0.0015564,-0.00125122,0.000457764,0.00109863,0.00219727,0.0015564,-0.000610352,-0.000610352,0,0.000457764,0.00265503,0.00265503,0.00186157,0.00109863,0.000457764,0.00140381,0.00219727,0.00326538,0.00375366,0.00234985,0.000793457,0.000152588,0.000946045,0.000457764,-0.000152588,0,0.000305176,0.000305176,0.000152588,-0.000305176,0,0.000305176,-0.000305176,0.000610352,0.000457764,0,-0.000305176,-0.000152588,0.0015564,0.00125122,0.00109863,-0.00125122,-0.00201416,-0.000793457,-0.000793457,0.000305176,-0.00109863,-0.000946045,-0.00109863,-0.000457764,0,-0.000152588,0,-0.0015564,-0.00280762,-0.00234985,-0.00186157,-0.0015564,-0.00170898,-0.00265503,-0.00311279,-0.00405884,-0.00405884,-0.00436401,-0.00360107,-0.00390625,-0.00375366,-0.00280762,-0.00311279,-0.00234985,-0.00341797,-0.00280762,-0.00280762,-0.00265503,-0.00341797,-0.00515747,-0.00592041,-0.006073,-0.006073,-0.00546265,-0.00576782,-0.00561523,-0.00656128,-0.00482178,-0.00375366,-0.00375366,-0.00326538,-0.00296021,-0.00186157,-0.00170898,-0.0015564,-0.00201416,-0.00186157,-0.00219727,-0.00170898,-0.00326538,-0.00280762,-0.00265503,-0.00201416,-0.00125122,-0.000610352,-0.000793457,0,-0.00140381,-0.000610352,-0.000457764,-0.000610352,-0.000152588,-0.000793457,-0.000457764,-0.000793457,-0.000793457,-0.000457764,0,0.000457764,0.000152588,-0.000457764,0.000305176,0.000152588,0.00109863,0.00125122,0.0015564,0.00296021,0.00280762,0.00280762,0.00170898,0.00125122,0.000946045,0.000946045,0.000457764,0.000152588,0,-0.000457764,-0.000152588,-0.000152588,-0.000152588,-0.000305176,0.000305176,-0.000457764,0.000610352,0.000457764,0.00170898,0.00250244,0.00280762,0.00360107,0.00311279,0.00405884,0.00405884,0.00341797,0.00250244,0.00109863,0.00109863,0.000152588,0.000793457,-0.000305176,-0.000610352,-0.000457764,-0.000793457,0.000305176,0.000305176,0.000152588,0.00140381,0.00125122,0.00140381,0.00140381,0.00109863,0,0.000152588,-0.00109863,-0.000305176,-0.00125122,-0.00140381,-0.00186157,-0.00250244,-0.00250244,-0.00201416,-0.00186157,-0.00201416,-0.00250244,-0.00219727,-0.00326538,-0.00234985,-0.00201416,-0.0015564,-0.00234985,-0.00186157,-0.00109863,-0.00125122,-0.00125122,-0.0015564,-0.0015564,-0.00170898,-0.000946045,-0.00125122,-0.00125122,-0.00170898,-0.00140381,-0.00186157,-0.00186157,-0.00265503,-0.00201416,-0.00296021,-0.00234985,-0.00250244,-0.00219727,-0.00186157,-0.00170898,-0.00140381,-0.00201416,-0.00186157,-0.00219727,-0.00186157,-0.00234985,-0.00250244,-0.00296021,-0.00201416,-0.00170898,-0.000457764,0,0,0.00125122,0.00125122,0.00201416,0.000457764,0.000946045,-0.000305176,0.000152588,0.000305176,0,0.000305176,0.000457764,0,0.000457764,0.000946045,0.000946045,0.00170898,0.000610352,0.000946045,0.00201416,0.0015564,0.00219727,0.00170898,0.0015564,0.00109863,0.00170898,0.00170898,0.0015564,0.00125122,0.000793457,0.000793457,0.0015564,0.00125122,0.00250244,0.00109863,0.00234985,0.00125122,0.0015564,0.000946045,0.000305176,0.000152588,0,-0.000152588,0.000305176,-0.000610352,-0.000793457,-0.00125122,-0.00140381,-0.00140381,-0.0015564,-0.00125122,-0.00125122,-0.000152588,-0.000457764,0.000457764,0,0.000457764,-0.000946045,-0.000152588,-0.000457764,-0.000610352,-0.000457764,-0.00219727,-0.00234985,-0.00296021,-0.00250244,-0.00250244,-0.00201416,-0.00170898,-0.000457764,-0.000152588,0.000152588,-0.000152588,0.000305176,0.000610352,0.000946045,0.000457764,0.000457764,-0.000152588,-0.00140381,-0.00125122,-0.00219727,-0.00265503,-0.00140381,-0.00250244,-0.00265503,-0.00265503,-0.00186157,-0.00201416,-0.00125122,-0.00170898,-0.000793457,-0.00140381,-0.000610352,-0.00125122,-0.000946045,-0.0015564,-0.00170898,-0.00250244,-0.0015564,-0.00201416,-0.00219727,-0.00280762,-0.00219727,-0.00201416,-0.00219727,-0.000946045,-0.000610352,0,0.000152588,0.000305176,0.000152588,0.000457764,0.000305176,0,-0.000152588,-0.000152588,-0.000610352,0,-0.000610352,-0.000610352,-0.000610352,0,0.000152588,0.000152588,0.000305176,0,-0.000305176,0.000305176,0.000610352,0.000457764,0,-0.000946045,-0.00140381,0.000152588,0.00140381,0.00140381,-0.000152588,-0.00140381,-0.00170898,0.000152588,-0.000457764,0.000946045,-0.000610352,-0.000305176,0.000152588,0.00109863,0.00186157,0.000610352,0.000793457,0.000793457,0.000610352,0.000610352,0.000305176,0.000305176,0.000457764,-0.000610352,0.000610352,0,0.000610352,-0.000946045,-0.000152588,-0.000793457,0.000152588,-0.000793457,-0.000305176,-0.000946045,-0.00109863,-0.00109863,-0.000457764,-0.000610352,-0.00140381,-0.0015564,-0.00140381,-0.000793457,0,0.000610352,0.000793457,0.00125122,0.00170898,0.00109863,0.000457764,0.000152588,-0.000946045,-0.00186157,-0.00219727,-0.00219727,-0.00311279,-0.00280762,-0.00234985,-0.00250244,-0.00250244,-0.00265503,-0.0015564,-0.0015564,-0.00125122,-0.00186157,-0.00186157,-0.00201416,-0.00265503,-0.00265503,-0.00280762,-0.00326538,-0.00296021,-0.00311279,-0.00265503,-0.00265503,-0.00170898,-0.00170898,-0.00170898,-0.00140381,-0.00109863,-0.000610352,-0.000946045,-0.0015564,-0.000946045,-0.00201416,-0.00219727,-0.00201416,-0.00326538,-0.00250244,-0.00296021,-0.00234985,-0.00219727,-0.00125122,-0.00170898,-0.000793457,-0.000946045,-0.000457764,-0.000305176,-0.000610352,0,-0.00109863,-0.000610352,-0.000793457,-0.00140381,-0.00201416,-0.00140381,-0.00170898,-0.0015564,-0.00140381,-0.00140381,-0.00125122,-0.00125122,-0.000793457,-0.000457764,0.000305176,0.000457764,0.000457764,0.000305176,0.000457764,-0.000305176,-0.000610352,-0.00109863,-0.00140381,-0.00186157,-0.00109863,-0.00125122,-0.00125122,-0.000152588,-0.000610352,0.000457764,0.000305176,0.00109863,0.000457764,0.000946045,-0.000152588,0,0,-0.000457764,-0.000457764,-0.000305176,-0.000793457,0.000152588,0.000457764,0.000457764,0.000457764,0.000610352,0.000610352,0,0.000457764,-0.000152588,0.000152588,-0.000305176,0.000152588,-0.000610352,-0.000152588,-0.000610352,0.000610352,0,-0.000457764,0,-0.000793457,0,-0.00109863,-0.000610352,-0.000946045,-0.000793457,-0.000610352,-0.000457764,-0.000305176,-0.000610352,-0.000946045,-0.00109863,-0.00109863,-0.0015564,-0.00125122,-0.000946045,-0.00170898,-0.000793457,-0.00140381,-0.000793457,-0.00125122,-0.00109863,-0.00125122,-0.000793457,-0.00109863,-0.000793457,-0.000793457,-0.00140381,-0.00140381,-0.0015564,-0.00186157,-0.00170898,-0.00265503,-0.00280762,-0.00250244,-0.00326538,-0.00219727,-0.00234985,-0.00234985,-0.0015564,-0.000946045,-0.00125122,-0.000946045,-0.000946045,-0.000793457,-0.000793457,-0.00170898,-0.000793457,-0.00234985,-0.00125122,-0.00170898,-0.00201416,-0.00219727,-0.00219727,-0.00201416,-0.00170898,-0.00186157,-0.0015564,-0.00186157,-0.000946045,-0.0015564,-0.00170898,-0.00109863,-0.00140381,-0.000946045,-0.000610352,-0.000610352,-0.000305176,0,0.000457764,0.000152588,-0.000457764,0.000305176,-0.000152588,-0.000305176,0,-0.000152588,-0.000305176,-0.000610352,0,-0.000946045,-0.000610352,-0.000946045,-0.000457764,-0.00125122,-0.000457764,-0.000946045,-0.000305176,-0.000610352,0,-0.000305176,0,0.000305176,0,0.000457764,0.000152588,0,-0.000457764,0.000152588,-0.000793457,-0.000152588,-0.000946045,-0.000457764,-0.000305176,-0.000946045,-0.000305176,-0.000793457,-0.000305176,-0.00109863,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000610352,0.000305176,-0.000457764,0.000305176,-0.000457764,-0.000457764,-0.000457764,-0.000152588,-0.000793457,-0.000457764,-0.000946045,-0.000946045,-0.000946045,-0.000305176,-0.00170898,-0.000946045,-0.00140381,-0.00109863,-0.00140381,-0.0015564,-0.0015564,-0.00109863,-0.00140381,-0.000610352,-0.00140381,-0.000610352,-0.000946045,-0.000305176,-0.00140381,0,-0.00109863,-0.000305176,-0.000793457,-0.000457764,-0.000305176,-0.000610352,-0.00109863,-0.00140381,-0.00201416,-0.00170898,-0.00280762,-0.00234985,-0.00265503,-0.00219727,-0.00186157,-0.00219727,-0.000793457,-0.00140381,0,-0.000793457,0,-0.000152588,0.000305176,-0.000457764,0.000152588,-0.000152588,-0.000152588,0.000152588,-0.000152588,0.000305176,0.000610352,0.000152588,0.000793457,0,0.000610352,0,0,0,-0.000152588,-0.000610352,-0.000457764,-0.000946045,-0.000305176,-0.00125122,-0.000152588,-0.000457764,-0.000305176,-0.000152588,-0.000305176,0.000152588,0.000152588,0.00109863,0.000457764,0.000793457,0.000305176,0.000946045,0.000457764,0.000152588,0,-0.000793457,-0.00125122,-0.00109863,-0.00170898,-0.00125122,-0.0015564,-0.00140381,-0.00186157,-0.00201416,-0.00201416,-0.00170898,-0.00170898,-0.0015564,-0.00140381,-0.00234985,-0.00219727,-0.00250244,-0.00234985,-0.00219727,-0.00186157,-0.0015564,-0.00170898,-0.0015564,-0.000610352,-0.000610352,-0.000946045,-0.000610352,-0.000946045,-0.00109863,-0.000793457,-0.00125122,-0.00109863,-0.00140381,-0.00201416,-0.00170898,-0.00201416,-0.00234985,-0.00234985,-0.00201416,-0.00186157,-0.00170898,-0.0015564,-0.00201416,-0.00125122,-0.00125122,-0.000946045,-0.00109863,-0.00125122,-0.00109863,-0.0015564,-0.000946045,-0.000305176,-0.000610352,-0.000152588,0.000152588,0.000793457,0.000457764,0.000457764,0.000793457,-0.000152588,0,-0.000946045,-0.000610352,-0.00140381,-0.000946045,-0.00186157,-0.00109863,-0.00186157,-0.000946045,-0.000946045,-0.00170898,-0.000305176,-0.00109863,-0.000610352,-0.000305176,-0.000305176,-0.000305176,0.000457764,0.000305176,0.000457764,0.000610352,0.000457764,0.000152588,0.000152588,0,0,-0.000610352,-0.000305176,-0.000793457,0.000457764,-0.000457764,0,0.000152588,-0.000152588,0.000457764,-0.000152588,-0.000305176,-0.000152588,-0.000457764,-0.000457764,-0.000946045,-0.000457764,-0.000793457,-0.000610352,-0.000152588,-0.000305176,0.000305176,0,0.000305176,0.000793457,0.000152588,0.000305176,0.000457764,0.000457764,-0.000305176,-0.000152588,-0.000946045,-0.00109863,-0.000946045,-0.00186157,-0.00125122,-0.00201416,-0.00234985,-0.00186157,-0.00234985,-0.00201416,-0.00201416,-0.00234985,-0.00170898,-0.00109863,-0.0015564,-0.000793457,-0.00140381,-0.00125122,-0.00140381,-0.00170898,-0.00186157,-0.00201416,-0.00201416,-0.0015564,-0.00201416,-0.00109863,-0.00140381,-0.00140381,-0.00186157,-0.00140381,-0.00140381,-0.000946045,-0.00140381,-0.00109863,-0.00125122,-0.000305176,-0.0015564,-0.000152588,-0.000946045,-0.00125122,-0.000946045,-0.00140381,-0.00109863,-0.000946045,-0.000457764,-0.000946045,0.000152588,-0.000457764,0.000305176,0.000152588,-0.000305176,0.000305176,-0.000793457,-0.000305176,-0.00140381,-0.000793457,-0.0015564,-0.00109863,-0.0015564,-0.000946045,-0.0015564,-0.000946045,-0.000305176,-0.000305176,0.000305176,0.000610352,0.000946045,0.000946045,0.000946045,0.000457764,0.000457764,0.000457764,0.000305176,0,-0.000305176,-0.00140381,0,-0.00125122,-0.000152588,-0.000793457,-0.00109863,-0.000793457,-0.00109863,-0.000793457,-0.000793457,-0.000305176,-0.00109863,0,-0.00170898,-0.000610352,-0.00109863,-0.000793457,-0.000946045,-0.0015564,-0.00140381,-0.00109863,-0.00109863,-0.000793457,0.000152588,-0.000152588,0.000305176,0.00109863,0.000305176,0.000457764,0.000457764,0.000305176,0,-0.000610352,-0.000793457,-0.0015564,-0.0015564,-0.00140381,-0.00186157,-0.0015564,-0.00219727,-0.00125122,-0.00186157,-0.000946045,-0.00109863,-0.000457764,-0.000946045,-0.000610352,-0.000457764,-0.000610352,-0.000793457,-0.000610352,-0.000793457,-0.00125122,-0.00140381,-0.00186157,-0.00125122,-0.000946045,-0.000946045,-0.000946045,-0.000305176,-0.000610352,-0.000457764,-0.000610352,0.000152588,-0.000457764,-0.000793457,-0.000946045,-0.000946045,-0.000946045,-0.00109863,-0.000793457,-0.00109863,-0.0015564,-0.0015564,-0.00140381,-0.00219727,-0.000946045,-0.00170898,-0.000946045,-0.00109863,-0.000610352,-0.000793457,-0.000305176,-0.000793457,-0.000305176,-0.000457764,0.000152588,-0.000305176,-0.000152588,-0.000152588,-0.000305176,-0.000305176,-0.000305176,0.000152588,0,0.000457764,0.000152588,0.000457764,0.000610352,0.000152588,0.000305176,-0.000152588,0,-0.000457764,-0.000305176,0,-0.00186157,-0.000610352,-0.00109863,-0.000610352,-0.000793457,-0.000305176,-0.000610352,-0.000946045,-0.000305176,-0.000457764,-0.000946045,-0.000610352,-0.00109863,-0.00125122,-0.000610352,-0.000793457,-0.000457764,-0.00109863,-0.000152588,-0.000793457,-0.000152588,-0.000457764,0.000457764,-0.000305176,0.000152588,-0.000457764,-0.000152588,-0.000152588,-0.00109863,-0.000610352,-0.00125122,-0.000946045,-0.00125122,-0.00140381,-0.00125122,-0.00186157,-0.000793457,-0.00234985,-0.00125122,-0.00140381,-0.00219727,-0.00109863,-0.00170898,-0.00170898,-0.00109863,-0.00170898,-0.00170898,-0.00186157,-0.00219727,-0.00186157,-0.00186157,-0.0015564,-0.0015564,-0.00170898,-0.00140381,-0.00125122,-0.000793457,-0.000610352,-0.000793457,-0.000946045,-0.000946045,-0.000946045,-0.000457764,-0.000610352,-0.000946045,-0.000793457,-0.00109863,-0.00125122,-0.000610352,-0.00109863,-0.00109863,0,-0.000610352,-0.000305176,0.000152588,0.000305176,0.000305176,0.000946045,0.000305176,0.000793457,0.000152588,0,-0.000610352,-0.000305176,-0.000946045,-0.000305176,-0.00109863,-0.000457764,-0.000946045,-0.000793457,-0.000793457,-0.00125122,-0.00140381,-0.00125122,-0.0015564,-0.000793457,-0.000793457,-0.000610352,0,-0.000793457,0.000152588,-0.000793457,0.000457764,0,0.000457764,0.000457764,0.000152588,-0.000152588,0.000152588,-0.000610352,0.000152588,-0.000457764,-0.000946045,-0.000457764,-0.00140381,-0.00109863,-0.00109863,-0.0015564,-0.000457764,-0.00125122,-0.000793457,-0.000610352,-0.000946045,-0.000610352,-0.000610352,-0.00140381,-0.00109863,-0.000946045,-0.00125122,-0.000793457,-0.0015564,-0.00170898,-0.0015564,-0.00170898,-0.00140381,-0.00186157,-0.00170898,-0.000793457,-0.000946045,-0.00109863,0.000152588,-0.000610352,-0.000305176,0.000610352,0,0.000946045,0.000305176,0.000946045,-0.000305176,-0.000610352,-0.00125122,-0.00170898,-0.00140381,-0.00265503,-0.00234985,-0.00250244,-0.00250244,-0.00234985,-0.00219727,-0.00125122,-0.00140381,-0.000305176,-0.000793457,0.000305176,0.000152588,0.000610352,0.000305176,0.000152588,0.000152588,-0.000305176,-0.000793457,-0.000305176,-0.00109863,-0.000457764,-0.00186157,-0.000457764,-0.0015564,-0.000793457,-0.000457764,-0.000152588,-0.000610352,0,-0.00109863,-0.000305176,-0.000610352,-0.000793457,-0.000305176,-0.00140381,-0.000946045,-0.00109863,-0.00140381,-0.00170898,-0.00140381,-0.000793457,-0.00170898,-0.00109863,-0.00109863,-0.000946045,-0.000610352,-0.000793457,-0.000610352,-0.00109863,-0.000946045,-0.00109863,-0.00125122,-0.00125122,-0.00125122,-0.0015564,-0.00140381,-0.00170898,-0.00109863,-0.00125122,-0.000793457,-0.00109863,-0.00125122,-0.000793457,-0.00170898,-0.000610352,-0.00109863,-0.00140381,-0.00125122,-0.00219727,-0.0015564,-0.00125122,-0.0015564,-0.000610352,-0.000610352,-0.000457764,0.000152588,-0.000152588,-0.000152588,-0.000152588,-0.000152588,-0.000305176,-0.00109863,-0.00125122,-0.00170898,-0.00234985,-0.00234985,-0.00296021,-0.00234985,-0.00280762,-0.00170898,-0.0015564,-0.000946045,-0.000152588,0,0.000457764,0.000946045,0.000946045,0.000793457,0.000793457,0,-0.000457764,-0.000946045,-0.00186157,-0.0015564,-0.00170898,-0.00201416,-0.00125122,-0.00125122,-0.000305176,-0.000457764,0.000457764,0.000305176,0.000457764,0.000305176,0.000305176,0.000305176,-0.000793457,-0.000457764,-0.000793457,-0.00219727,-0.0015564,-0.00280762,-0.00140381,-0.00186157,-0.0015564,-0.00109863,-0.00140381,-0.000610352,-0.000793457,0.000305176,-0.000152588,0.000152588,0,0,-0.000152588,-0.000457764,0,-0.000457764,-0.000457764,-0.000946045,-0.000457764,-0.000793457,-0.000610352,-0.000457764,-0.000793457,-0.00109863,-0.0015564,-0.00170898,-0.0015564,-0.00201416,-0.00234985,-0.00186157,-0.00234985,-0.00109863,-0.00140381,-0.000946045,0,0.000152588,0.000305176,0.000152588,0.00109863,0,0.000946045,-0.000610352,-0.000305176,-0.00125122,-0.00170898,-0.00219727,-0.00170898,-0.00140381,-0.00201416,-0.000946045,-0.00170898,-0.00109863,-0.00109863,-0.00109863,-0.000946045,-0.000610352,-0.00125122,-0.000946045,-0.000946045,-0.00140381,-0.00109863,-0.00140381,-0.000946045,-0.00109863,-0.000457764,-0.000152588,-0.000610352,0.000793457,-0.000152588,0.000305176,0,0.000457764,0.000610352,0.000305176,-0.000152588,-0.000152588,-0.000610352,-0.000457764,0,-0.000793457,-0.000457764,-0.000793457,-0.00109863,-0.000610352,-0.000457764,-0.000793457,-0.000457764,-0.000457764,-0.000457764,-0.000457764,-0.000457764,-0.000457764,-0.000610352,-0.000793457,0.000152588,-0.000305176,-0.000152588,0.000457764,-0.000457764,0.000457764,-0.000610352,-0.000610352,-0.000305176,-0.00109863,-0.000610352,-0.00140381,-0.00109863,-0.00201416,-0.0015564,-0.00201416,-0.00186157,-0.0015564,-0.00140381,-0.00109863,-0.000946045,-0.00109863,-0.000946045,-0.00109863,-0.000305176,-0.00109863,-0.000152588,-0.000152588,-0.00109863,0,-0.00109863,-0.000152588,-0.00125122,-0.00109863,-0.00109863,-0.00186157,-0.0015564,-0.0015564,-0.00140381,-0.00170898,-0.0015564,-0.000946045,-0.0015564,-0.000305176,-0.00140381,-0.000793457,-0.000793457,-0.00140381,-0.00125122,-0.00109863,-0.0015564,-0.0015564,-0.00109863,-0.00170898,-0.00140381,-0.0015564,-0.00140381,-0.00186157,-0.00109863,-0.00109863,-0.000793457,-0.00125122,-0.000793457,-0.000610352,-0.000946045,-0.000457764,-0.00125122,-0.00109863,-0.00109863,-0.00140381,-0.000610352,-0.000946045,-0.00109863,-0.000793457,-0.000610352,-0.00109863,-0.000152588,-0.000946045,-0.000793457,-0.000457764,-0.00125122,-0.000152588,-0.000793457,-0.000305176,-0.000793457,-0.000305176,-0.000457764,-0.000152588,0,-0.000305176,-0.000152588,0.000305176,-0.000152588,0.000152588,0.000152588,-0.000305176,-0.000457764,-0.000793457,-0.000793457,-0.000610352,-0.00109863,-0.000793457,-0.000946045,-0.000610352,-0.000610352,-0.000793457,-0.000457764,-0.000457764,-0.000152588,-0.000457764,-0.000305176,0,-0.000152588,0.000152588,0,-0.000305176,-0.000610352,-0.000793457,-0.00125122,-0.00109863,-0.000946045,-0.00109863,-0.000946045,-0.0015564,-0.00109863,-0.0015564,-0.00109863,-0.0015564,-0.00109863,-0.0015564,-0.000946045,-0.00125122,-0.00125122,-0.00170898,-0.000946045,-0.0015564,-0.000946045,-0.00109863,-0.00125122,-0.000610352,-0.00140381,-0.00109863,-0.00109863,-0.00140381,-0.00109863,-0.00109863,-0.00140381,-0.000610352,-0.00170898,-0.000946045,-0.00140381,-0.0015564,-0.00140381,-0.00170898,-0.00125122,-0.0015564,-0.0015564,-0.0015564,-0.00125122,-0.00186157,-0.0015564,-0.00109863,-0.00201416,-0.00125122,-0.0015564,-0.000946045,-0.000946045,-0.000610352,-0.000152588,-0.000152588,-0.000152588,0.000305176,0.000457764,0.000305176,0.00109863,0.000457764,0.000305176,-0.000457764,-0.000610352,-0.00125122,-0.00140381,-0.00125122,-0.00170898,-0.000946045,-0.00170898,-0.000946045,-0.00140381,-0.00109863,-0.000610352,-0.00109863,-0.000457764,-0.000610352,-0.000457764,-0.000946045,-0.000946045,-0.000610352,-0.00109863,-0.00109863,-0.000152588,-0.000793457,-0.000152588,0.000793457,0.000305176,0.000793457,0.000793457,0.000457764,0.000457764,0.00109863,0.000610352,0.000305176,0.000457764,-0.000305176,0.000152588,-0.00109863,-0.000305176,-0.000610352,-0.000793457,-0.000457764,-0.00109863,-0.000152588,-0.000305176,0.000305176,0.000457764,0.000457764,0,0.000152588,0.000610352,-0.000152588,0.000610352,-0.000152588,0.000152588,-0.000793457,0,-0.000793457,-0.000457764,-0.000610352,-0.000793457,-0.000793457,-0.000946045,-0.000793457,-0.000457764,-0.000946045,-0.000793457,-0.00109863,-0.000793457,-0.000946045,-0.000610352,-0.000946045,-0.000610352,-0.0015564,-0.00140381,-0.00170898,-0.0015564,-0.00109863,-0.00125122,-0.000793457,-0.00140381,-0.00125122,-0.00109863,-0.00109863,-0.000946045,-0.0015564,-0.00109863,-0.00170898,-0.00140381,-0.00186157,-0.00125122,-0.00170898,-0.00140381,-0.000793457,-0.00125122,-0.000305176,-0.000793457,-0.000457764,-0.000152588,-0.000152588,0,0.000152588,0.000152588,0.000152588,-0.000610352,0,-0.00109863,-0.00140381,-0.00109863,-0.0015564,-0.00140381,-0.000793457,-0.00140381,-0.000946045,-0.00109863,-0.000610352,-0.000305176,-0.000305176,0,0.000152588,-0.000152588,-0.000793457,-0.000793457,-0.000457764,-0.0015564,-0.000610352,-0.00125122,-0.000610352,-0.000946045,-0.000305176,0.000305176,0.000305176,0.000610352,0.000793457,0.000610352,0.00109863,0.000610352,0,0,-0.000793457,-0.00109863,-0.0015564,-0.00186157,-0.00125122,-0.00186157,-0.0015564,-0.00125122,-0.0015564,-0.000457764,-0.000305176,-0.000793457,0.000152588,-0.000457764,0,-0.000152588,-0.000946045,-0.000946045,-0.000610352,-0.00109863,-0.00125122,-0.000946045,-0.00186157,-0.00109863,-0.0015564,-0.00109863,-0.000610352,-0.00125122,-0.000946045,-0.000946045,-0.000610352,-0.0015564,-0.000793457,-0.00109863,-0.00109863,-0.000793457,-0.000152588,-0.00109863,-0.000152588,-0.000457764,0,0,0.000152588,-0.000610352,0,-0.000152588,-0.000305176,-0.000610352,-0.000305176,-0.000610352,-0.000610352,-0.000793457,-0.000305176,-0.000457764,0,-0.000457764,-0.000610352,-0.000152588,-0.000305176,-0.000305176,-0.000305176,-0.0015564,-0.00109863,-0.00140381,-0.00201416,-0.00140381,-0.00170898,-0.00140381,-0.00140381,-0.0015564,-0.000457764,-0.00170898,0,-0.000152588,0,0.000305176,0.000305176,0.000610352,0.000610352,0,0.000457764,-0.000152588,0,-0.000457764,0,-0.000305176,-0.000457764,0.000305176,-0.000610352,0.000152588,-0.000152588,-0.000152588,0.000152588,-0.000793457,-0.000610352,-0.00140381,-0.00125122,-0.00140381,-0.00201416,-0.00140381,-0.0015564,-0.00125122,-0.00125122,-0.0015564,-0.000946045,-0.000793457,-0.000305176,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000152588,-0.000457764,-0.000946045,-0.00125122,-0.00140381,-0.00109863,-0.0015564,-0.00140381,-0.00186157,-0.0015564,-0.00140381,-0.00201416,-0.0015564,-0.00140381,-0.0015564,-0.00170898,-0.00186157,-0.0015564,-0.00140381,-0.00109863,-0.000793457,-0.000946045,-0.000457764,-0.000305176,-0.000457764,0.000152588,-0.000610352,-0.000610352,-0.00109863,-0.000946045,-0.00125122,-0.00109863,-0.00219727,-0.0015564,-0.00234985,-0.00186157,-0.00201416,-0.00170898,-0.00140381,-0.0015564,-0.0015564,-0.000946045,-0.00125122,-0.00109863,-0.00125122,-0.000946045,-0.0015564,-0.00125122,-0.00140381,-0.00140381,-0.0015564,-0.00140381,-0.00170898,-0.000793457,-0.00140381,-0.00109863,-0.000946045,-0.00125122,-0.000305176,-0.000946045,-0.000457764,-0.00125122,-0.000946045,-0.00109863,-0.00140381,-0.00125122,-0.0015564,-0.00201416,-0.00170898,-0.00201416,-0.00170898,-0.00265503,-0.00186157,-0.00296021,-0.00265503,-0.00219727,-0.00201416,-0.00234985,-0.00250244,-0.00234985,-0.00219727,-0.00186157,-0.00125122,-0.0015564,-0.00109863,-0.00219727,-0.00140381,-0.00170898,-0.00186157,-0.0015564,-0.0015564,-0.00186157,-0.00265503,-0.00311279,-0.00250244,-0.00280762,-0.00265503,-0.00265503,-0.00265503,-0.00280762,-0.00219727,-0.00186157,-0.0015564,-0.000457764,-0.00186157,-0.00125122,-0.00201416,-0.000793457,-0.00170898,-0.00109863,-0.00186157,-0.00170898,-0.00219727,-0.00125122,-0.00170898,0,-0.0015564,-0.000610352,-0.00140381,-0.00125122,-0.00109863,-0.000610352,-0.000793457,-0.000946045,-0.0015564,-0.00109863,-0.00170898,-0.000946045,-0.00140381,-0.00109863,-0.0015564,-0.00170898,-0.00109863,-0.00125122,-0.000946045,-0.000793457,-0.00109863,-0.00140381,-0.000793457,-0.000946045,0.000457764,0.000793457,0.00125122,0.00125122,0.00201416,0.00140381,0.00186157,0.0015564,0.0015564,0.00125122,0.000152588,-0.000610352,-0.00125122,-0.00201416,-0.00201416,-0.00296021,-0.00250244,-0.00250244,-0.00280762,-0.00219727,-0.0015564,-0.0015564,-0.000946045,-0.000305176,-0.000305176,-0.000457764,0.000305176,0.000305176,0.000305176,0.000305176,-0.000152588,-0.000305176,0,0,-0.000152588,0.000305176,0.000152588,0.000305176,0.00109863,0.000793457,0.00140381,0.00109863,0.00109863,0.000610352,0.000610352,0.000152588,-0.000457764,-0.000610352,-0.000946045,-0.00186157,-0.0015564,-0.00219727,-0.00125122,-0.00186157,-0.000457764,-0.00109863,-0.000152588,-0.000305176,0.000793457,0.000610352,0.000793457,0.00140381,0.00109863,0.00125122,0.000946045,0.00125122,0.00140381,0.00140381,0.00109863,0.000793457,0.000946045,0.000152588,0.00109863,0.000152588,0.000457764,0,-0.000610352,-0.000305176,-0.000610352,-0.000152588,-0.000152588,0.000305176,0.000457764,0.000610352,0.0015564,0.0015564,0.00219727,0.00234985,0.00234985,0.00296021,0.00201416,0.00250244,0.00219727,0.0015564,0.00140381,0.0015564,0.00140381,0.00140381,0.00109863,0.000793457,0.000305176,0.00125122,0.000946045,0.00109863,0.00109863,0.00170898,0.000610352,0.00140381,0.000457764,0.000457764,0.000946045,0.000305176,0.00109863,0.000305176,0.000946045,0.000457764,0.000793457,0.00125122,0.000946045,0.00125122,0.00140381,0.000946045,0.00219727,0.00170898,0.00170898,0.00140381,0.000946045,0.000793457,0.000793457,0.000305176,0.000793457,-0.000457764,-0.000793457,-0.000946045,-0.000610352,0,0.000946045,0.0015564,0.00140381,0.00140381,0.00140381,0.00140381,0.00170898,0.00186157,0.00219727,0.00186157,0.00140381,0.00140381,0.000305176,0.000457764,0.000610352,0.000152588,0.000457764,-0.000152588,0.000152588,0.000457764,0.000946045,0.00170898,0.00109863,0.00140381,0.000793457,0.00125122,0.00109863,0.00186157,0.00140381,0.000457764,0.000793457,0.000457764,0.000946045,0.00170898,0.00140381,0.00140381,0.000793457,0.000457764,0.00109863,0.000946045,0.000946045,0.000610352,0.000152588,-0.000610352,-0.000610352,-0.000793457,-0.000793457,-0.000610352,0,0.000610352,0.000152588,-0.000152588,0.000457764,-0.000457764,0.000457764,-0.000610352,-0.00109863,-0.00170898,-0.00234985,-0.00250244,-0.00265503,-0.00219727,-0.00341797,-0.00341797,-0.00390625,-0.00390625,-0.00280762,-0.00375366,-0.00250244,-0.00341797,-0.00341797,-0.00311279,-0.00360107,-0.00265503,-0.00390625,-0.00390625,-0.00497437,-0.00482178,-0.00546265,-0.00561523,-0.00592041,-0.006073,-0.00622559,-0.00592041,-0.00592041,-0.00576782,-0.00592041,-0.00515747,-0.00576782,-0.00561523,-0.00561523,-0.00546265,-0.00546265,-0.00515747,-0.00466919,-0.00497437,-0.00497437,-0.0045166,-0.00405884,-0.00436401,-0.00326538,-0.00296021,-0.00296021,-0.00296021,-0.00296021,-0.00311279,-0.00311279,-0.00360107,-0.00390625,-0.00421143,-0.0045166,-0.00466919,-0.0045166,-0.00497437,-0.00497437,-0.00515747,-0.00531006,-0.00531006,-0.00515747,-0.00546265,-0.00531006,-0.00515747,-0.00497437,-0.00531006,-0.00497437,-0.00497437,-0.00482178,-0.00466919,-0.00405884,-0.00436401,-0.00390625,-0.00436401,-0.00390625,-0.00375366,-0.00390625,-0.00326538,-0.00360107,-0.00421143,-0.00375366,-0.00482178,-0.00390625,-0.00497437,-0.00482178,-0.00531006,-0.00546265,-0.006073,-0.00622559,-0.00576782,-0.006073,-0.006073,-0.00637817,-0.00656128,-0.00701904,-0.00656128,-0.00656128,-0.00622559,-0.006073,-0.006073,-0.00656128,-0.00576782,-0.00561523,-0.00546265,-0.00561523,-0.00686646,-0.00637817,-0.00686646,-0.00637817,-0.00576782,-0.00576782,-0.00637817,-0.00701904,-0.00732422,-0.00701904,-0.00671387,-0.00546265,-0.00637817,-0.00592041,-0.00701904,-0.00671387,-0.00622559,-0.00576782,-0.00482178,-0.00482178,-0.00546265,-0.006073,-0.00622559,-0.00671387,-0.00592041,-0.00637817,-0.00637817,-0.00656128,-0.00656128,-0.006073,-0.00436401,-0.00390625,-0.00326538,-0.00296021,-0.00360107,-0.00311279,-0.00140381,0.000305176,0.0015564,0.0015564,0.00109863,0.00125122,0.000793457,0.00201416,0.00296021,0.00250244,0.00201416,0.0015564,0.000793457,0.0015564,0.0015564,0.00296021,0.00265503,0.00234985,0.00219727,0.00341797,0.00421143,0.00622559,0.00671387,0.00778198,0.00872803,0.00997925,0.0115356,0.0135803,0.0154419,0.0155945,0.0158997,0.0166931,0.0158997,0.0184021,0.0193481,0.0196533,0.0201111,0.0193481,0.0190125,0.0201111,0.0204163,0.0216675,0.0219727,0.0213623,0.0219727,0.0219727,0.0227661,0.0227661,0.0224609,0.0216675,0.0201111,0.0188599,0.0182495,0.0177612,0.0173035,0.0157471,0.0151367,0.0146484,0.0138855,0.0141907,0.0138855,0.0141907,0.0144958,0.014801,0.0144958,0.0140381,0.0133972,0.013092,0.0121765,0.0110779,0.0101318,0.00857544,0.00686646,0.00592041,0.0045166,0.00405884,0.00341797,0.00311279,0.00360107,0.00341797,0.00421143,0.00390625,0.00436401,0.00405884,0.00265503,0.00280762,0.00234985,0.00219727,0.00170898,0.000793457,-0.000457764,-0.000793457,-0.00219727,-0.00280762,-0.00265503,-0.00311279,-0.00280762,-0.00280762,-0.00280762,-0.00341797,-0.00311279,-0.00311279,-0.00311279,-0.00280762,-0.00311279,-0.00405884,-0.00390625,-0.00375366,-0.00360107,-0.00341797,-0.00341797,-0.00311279,-0.00341797,-0.00311279,-0.00326538,-0.00280762,-0.00296021,-0.00326538,-0.00341797,-0.00375366,-0.00375366,-0.00326538,-0.00341797,-0.00375366,-0.00375366,-0.00405884,-0.00390625,-0.00421143,-0.00421143,-0.00546265,-0.00561523,-0.00637817,-0.00762939,-0.00872803,-0.00918579,-0.00982666,-0.0110779,-0.0121765,-0.0133972,-0.0141907,-0.0140381,-0.0144958,-0.0135803,-0.0138855,-0.0133972,-0.0121765,-0.0129395,-0.0112305,-0.0121765,-0.010437,-0.0105896,-0.0105896,-0.00997925,-0.0102844,-0.00997925,-0.0105896,-0.0101318,-0.0110779,-0.0116882,-0.0119934,-0.0126343,-0.0126343,-0.0123291,-0.0132446,-0.0121765,-0.013092,-0.0127869,-0.0132446,-0.0127869,-0.013092,-0.0132446,-0.0133972,-0.0135803,-0.0138855,-0.0137329,-0.0143433,-0.0146484,-0.0141907,-0.0144958,-0.0143433,-0.0141907,-0.0133972,-0.0132446,-0.0126343,-0.0124817,-0.0113831,-0.0105896,-0.0101318,-0.00997925,-0.0093689,-0.0090332,-0.00952148,-0.0110779,-0.0102844,-0.0109253,-0.0107727,-0.0113831,-0.0126343,-0.0119934,-0.0119934,-0.0118408,-0.0124817,-0.0121765,-0.0113831,-0.0119934,-0.0123291,-0.0123291,-0.0121765,-0.0116882,-0.013092,-0.0135803,-0.0140381,-0.0141907,-0.0141907,-0.0151367,-0.0158997,-0.0160522,-0.0171509,-0.0174561,-0.0177612,-0.0166931,-0.0174561,-0.0168457,-0.0176086,-0.0174561,-0.0184021,-0.0182495,-0.0190125,-0.0193481,-0.0205688,-0.0209045,-0.0218201,-0.0230713,-0.0238647,-0.025116,-0.0266724,-0.0280762,-0.0300903,-0.0328979,-0.0352478,-0.0369568,-0.037262,-0.0335083,-0.0252686,-0.0143433,-0.000610352,0.0107727,0.0205688,0.02948,0.0388184,0.0478821,0.0552063,0.0581665,0.0558167,0.0497437,0.0417786,0.033844,0.02948,0.0265198,0.0244751,0.0230713,0.0227661,0.0247803,0.02948,0.0336914,0.0371094,0.0377197,0.0374146,0.0360107,0.0360107,0.0330505,0.0277405,0.0210571,0.0140381,0.00952148,0.00827026,0.0102844,0.0163574,0.0219727,0.0265198,0.02948,0.0321045,0.0363159,0.040863,0.0444336,0.0448914,0.0431824,0.0383606,0.0346069,0.0305481,0.0274353,0.0263367,0.0246277,0.0221558,0.0188599,0.0173035,0.0155945,0.0160522,0.0146484,0.0107727,0.00592041,0.00170898,-0.00140381,-0.00671387,-0.0090332,-0.0152893,-0.019165,-0.0223083,-0.0232239,-0.0227661,-0.0210571,-0.0184021,-0.0140381,-0.0113831,-0.00952148,-0.00717163,-0.00482178,-0.00341797,-0.00326538,-0.00515747,-0.006073,-0.00686646,-0.00592041,-0.0045166,-0.00311279,-0.000793457,0.00296021,0.006073,0.00918579,0.0126343,0.0155945,0.019165,0.0212097,0.0221558,0.0202637,0.0185547,0.0165405,0.0144958,0.0119934,0.0093689,0.00778198,0.00561523,0.00375366,0.00234985,0.00219727,0.00250244,0.00436401,0.00515747,0.00576782,0.0045166,0.00482178,0.00421143,0.00265503,0.00250244,0.000457764,0.00125122,-0.000152588,0.00170898,0.00296021,0.00326538,0.00482178,0.00531006,0.00622559,0.00747681,0.00918579,0.010437,0.00997925,0.00952148,0.00762939,0.00686646,0.00546265,0.00482178,0.00360107,0.00219727,0.000610352,-0.000793457,-0.00219727,-0.00360107,-0.00531006,-0.006073,-0.00842285,-0.010437,-0.0124817,-0.0149536,-0.0168457,-0.0193481,-0.0202637,-0.0204163,-0.0202637,-0.0195007,-0.0176086,-0.0155945,-0.0133972,-0.0116882,-0.00982666,-0.00811768,-0.00747681,-0.00686646,-0.00701904,-0.00656128,-0.00762939,-0.00796509,-0.00982666,-0.0112305,-0.0124817,-0.0132446,-0.0160522,-0.0168457,-0.0190125,-0.0198059,-0.0210571,-0.020752,-0.0213623,-0.0216675,-0.0230713,-0.0237122,-0.0240173,-0.0241699,-0.0244751,-0.0230713,-0.0233765,-0.0230713,-0.0215149,-0.0210571,-0.0195007,-0.0184021,-0.0158997,-0.0158997,-0.0143433,-0.0132446,-0.0132446,-0.0115356,-0.010437,-0.00967407,-0.00827026,-0.00747681,-0.00637817,-0.00576782,-0.00561523,-0.00576782,-0.006073,-0.00701904,-0.00717163,-0.00796509,-0.00952148,-0.00967407,-0.0109253,-0.0113831,-0.0140381,-0.0152893,-0.0163574,-0.0179443,-0.0177612,-0.0184021,-0.0188599,-0.0190125,-0.0201111,-0.0213623,-0.0221558,-0.0237122,-0.0241699,-0.0261841,-0.0275879,-0.02948,-0.0319519,-0.0327454,-0.0336914,-0.0341492,-0.0339966,-0.0349121,-0.0349121,-0.0363159,-0.0386658,-0.0400696,-0.0420837,-0.0452271,-0.0478821,-0.0505066,-0.0506592,-0.0455322,-0.037262,-0.0252686,-0.0116882,0.00186157,0.014801,0.0283813,0.0417786,0.053009,0.0612793,0.0639343,0.0617371,0.0558167,0.0478821,0.0403748,0.0330505,0.0277405,0.0229187,0.0195007,0.019165,0.0223083,0.0277405,0.0330505,0.0371094,0.0405273,0.0427246,0.0439758,0.0436707,0.0411682,0.0350952,0.0275879,0.0199585,0.0141907,0.0118408,0.0129395,0.0163574,0.020752,0.0255737,0.0314941,0.038208,0.0447388,0.0522461,0.0559692,0.0581665,0.0564575,0.0533142,0.048645,0.0438232,0.0386658,0.0333557,0.0289917,0.0230713,0.0199585,0.0160522,0.0140381,0.0124817,0.00918579,0.00622559,0.00219727,-0.00250244,-0.00717163,-0.0124817,-0.0180969,-0.0237122,-0.0299377,-0.0333557,-0.0358582,-0.0369568,-0.0361633,-0.0341492,-0.0325928,-0.0297852,-0.0285339,-0.0266724,-0.0244751,-0.0226135,-0.0216675,-0.0226135,-0.0230713,-0.0238647,-0.0224609,-0.020752,-0.0165405,-0.0110779,-0.00561523,0.00109863,0.00747681,0.0135803,0.0188599,0.0246277,0.0283813,0.0310364,0.0307312,0.0274353,0.0246277,0.0210571,0.0174561,0.0146484,0.0110779,0.00888062,0.00671387,0.00637817,0.00717163,0.00796509,0.0107727,0.0121765,0.0132446,0.0138855,0.0146484,0.0166931,0.0163574,0.0146484,0.0110779,0.00747681,0.00592041,0.00561523,0.00576782,0.00592041,0.00561523,0.00592041,0.00762939,0.0102844,0.0132446,0.0165405,0.0187073,0.0193481,0.0177612,0.0158997,0.0154419,0.0138855,0.0116882,0.00842285,0.00497437,0.000793457,-0.000793457,-0.00341797,-0.00482178,-0.006073,-0.00747681,-0.00982666,-0.0105896,-0.0123291,-0.0132446,-0.0126343,-0.013092,-0.0135803,-0.0144958,-0.0138855,-0.0123291,-0.00997925,-0.00967407,-0.00811768,-0.00701904,-0.00561523,-0.00497437,-0.00341797,-0.00326538,-0.00280762,-0.00311279,-0.00375366,-0.006073,-0.00747681,-0.00827026,-0.00888062,-0.0105896,-0.0124817,-0.0158997,-0.0180969,-0.0201111,-0.0218201,-0.0246277,-0.0269775,-0.0289917,-0.0319519,-0.0339966,-0.0361633,-0.0375671,-0.037262,-0.0377197,-0.0369568,-0.036499,-0.0354004,-0.0310364,-0.0288391,-0.0254211,-0.0241699,-0.0226135,-0.0209045,-0.0196533,-0.0182495,-0.0173035,-0.0182495,-0.0184021,-0.019165,-0.0205688,-0.020752,-0.0209045,-0.0204163,-0.0213623,-0.0223083,-0.0232239,-0.0246277,-0.0238647,-0.0254211,-0.026825,-0.0297852,-0.0324402,-0.0354004,-0.0369568,-0.0407104,-0.0430298,-0.0472412,-0.0500488,-0.0522461,-0.0542603,-0.0559692,-0.059082,-0.0612793,-0.0626831,-0.0628357,-0.0611267,-0.0594177,-0.0556641,-0.0508423,-0.0424194,-0.0303955,-0.0138855,0.00546265,0.0257263,0.0467834,0.0654907,0.0821838,0.0960388,0.106964,0.112579,0.114136,0.108826,0.0999451,0.0879517,0.0751648,0.0625305,0.0511475,0.042572,0.037262,0.0350952,0.033844,0.033844,0.0363159,0.0383606,0.0397644,0.0397644,0.0371094,0.0324402,0.0263367,0.019165,0.0093689,0.0015564,-0.00546265,-0.00747681,-0.00732422,-0.00326538,0.00576782,0.0151367,0.0271301,0.037262,0.0478821,0.0572205,0.0654907,0.0708008,0.071106,0.0678406,0.0612793,0.0542603,0.0456848,0.0383606,0.0288391,0.0216675,0.0154419,0.00747681,0.00125122,-0.00592041,-0.00997925,-0.0151367,-0.0210571,-0.0291443,-0.0357056,-0.0431824,-0.0495911,-0.0553589,-0.0614319,-0.0659485,-0.0682983,-0.0679932,-0.0673523,-0.0636292,-0.0597229,-0.054718,-0.0495911,-0.0447388,-0.0402222,-0.0346069,-0.0299377,-0.0247803,-0.0215149,-0.0184021,-0.0140381,-0.00796509,-0.00250244,0.00341797,0.00952148,0.0155945,0.0212097,0.0260315,0.0282288,0.0307312,0.0322876,0.0324402,0.0308838,0.0272827,0.0227661,0.0190125,0.0162048,0.0140381,0.0112305,0.00888062,0.00732422,0.00717163,0.00778198,0.00967407,0.0123291,0.0149536,0.0166931,0.0190125,0.0195007,0.0221558,0.0243225,0.0261841,0.0258789,0.0257263,0.0244751,0.0249329,0.0263367,0.0282288,0.02948,0.0299377,0.0313416,0.0316467,0.0332031,0.0339966,0.0339966,0.0322876,0.0283813,0.0237122,0.0195007,0.0152893,0.010437,0.00482178,-0.00280762,-0.00982666,-0.0163574,-0.0204163,-0.0240173,-0.0271301,-0.0310364,-0.0341492,-0.0349121,-0.0360107,-0.0350952,-0.033844,-0.0322876,-0.0316467,-0.0313416,-0.02948,-0.0275879,-0.0230713,-0.0196533,-0.0160522,-0.0126343,-0.0102844,-0.00637817,-0.00219727,0.00186157,0.00375366,0.00482178,0.00497437,0.00390625,0.00296021,0.00170898,-0.000152588,-0.00280762,-0.00622559,-0.010437,-0.0141907,-0.0163574,-0.0185547,-0.020752,-0.0238647,-0.026825,-0.0296326,-0.0313416,-0.0314941,-0.0324402,-0.0335083,-0.0343018,-0.0350952,-0.0352478,-0.033844,-0.0322876,-0.0289917,-0.0265198,-0.0243225,-0.0223083,-0.0193481,-0.0171509,-0.0144958,-0.0137329,-0.0146484,-0.0173035,-0.0188599,-0.0216675,-0.0240173,-0.0271301,-0.0316467,-0.0352478,-0.0385132,-0.0407104,-0.0436707,-0.0455322,-0.0494385,-0.0536499,-0.0598755,-0.0643921,-0.0690613,-0.0732727,-0.0782776,-0.0834045,-0.0891724,-0.0926208,-0.0924683,-0.0907593,-0.0867004,-0.0820007,-0.0743713,-0.0620422,-0.0455322,-0.0243225,-0.00125122,0.0240173,0.0500488,0.0748291,0.0974426,0.117249,0.132233,0.142822,0.14563,0.142822,0.133942,0.122864,0.108063,0.0941772,0.077179,0.0643921,0.0545654,0.0491028,0.046936,0.0461426,0.0487976,0.052063,0.0556641,0.0569153,0.0564575,0.0522461,0.0470886,0.0380554,0.0266724,0.0138855,0.00360107,-0.00405884,-0.00671387,-0.006073,-0.000457764,0.00918579,0.0227661,0.0369568,0.0513,0.0646973,0.0774841,0.085907,0.0888672,0.0860596,0.0784302,0.0692139,0.0566101,0.042572,0.0260315,0.0115356,-0.00170898,-0.0133972,-0.0237122,-0.0341492,-0.0414734,-0.047699,-0.0533142,-0.0609741,-0.0692139,-0.0759277,-0.0830994,-0.0891724,-0.0969849,-0.102295,-0.106018,-0.105713,-0.104004,-0.10025,-0.094635,-0.0874634,-0.078125,-0.0687561,-0.0595703,-0.0506592,-0.0410156,-0.0310364,-0.0229187,-0.0154419,-0.00732422,0.000946045,0.0110779,0.0196533,0.0282288,0.0358582,0.0434875,0.0497437,0.0548706,0.0572205,0.0589294,0.0587769,0.0561218,0.052063,0.0452271,0.0394592,0.0324402,0.0263367,0.0195007,0.013092,0.00872803,0.00622559,0.00592041,0.00576782,0.00717163,0.0107727,0.0154419,0.0213623,0.0279236,0.0332031,0.0389709,0.0441284,0.0481873,0.0514526,0.0544128,0.0558167,0.0566101,0.054718,0.0527039,0.0492859,0.047699,0.0452271,0.0422668,0.0397644,0.036499,0.0339966,0.0322876,0.0288391,0.0244751,0.0182495,0.0119934,0.00436401,-0.00405884,-0.0144958,-0.0249329,-0.0360107,-0.0462952,-0.0545654,-0.0620422,-0.0668945,-0.0690613,-0.0706177,-0.0700073,-0.0686035,-0.0643921,-0.0583191,-0.0525513,-0.0461426,-0.0411682,-0.036499,-0.0310364,-0.0275879,-0.0237122,-0.020752,-0.0184021,-0.014801,-0.0116882,-0.00888062,-0.00656128,-0.00375366,-0.00170898,0.000946045,0.000793457,0.000305176,-0.000457764,-0.00296021,-0.00561523,-0.0102844,-0.0152893,-0.0195007,-0.0232239,-0.0266724,-0.0302429,-0.0327454,-0.0349121,-0.0366516,-0.0371094,-0.0380554,-0.0379028,-0.0361633,-0.0347595,-0.0327454,-0.0307312,-0.0283813,-0.0252686,-0.0216675,-0.0195007,-0.0173035,-0.0157471,-0.0138855,-0.0116882,-0.0110779,-0.0123291,-0.0144958,-0.0190125,-0.0229187,-0.0299377,-0.0374146,-0.0452271,-0.0552063,-0.065033,-0.0760803,-0.0879517,-0.09729,-0.1026,-0.10495,-0.102905,-0.0983887,-0.0882568,-0.0731201,-0.0511475,-0.0246277,0.00671387,0.0386658,0.0708008,0.0969849,0.117889,0.131287,0.139069,0.139862,0.132996,0.116638,0.0951233,0.0715637,0.0506592,0.0344543,0.0218201,0.0149536,0.0144958,0.0188599,0.0286865,0.0417786,0.0558167,0.0682983,0.0742188,0.0746765,0.0676575,0.0566101,0.0431824,0.026825,0.00656128,-0.0126343,-0.0274353,-0.0349121,-0.0316467,-0.0226135,-0.00531006,0.0140381,0.0369568,0.0594177,0.081543,0.100739,0.115082,0.12085,0.117249,0.106506,0.0899658,0.0723572,0.0533142,0.0349121,0.0141907,-0.00234985,-0.0165405,-0.0265198,-0.0339966,-0.0397644,-0.0430298,-0.047699,-0.0545654,-0.0622253,-0.0708008,-0.0787354,-0.0871582,-0.0955811,-0.105255,-0.111786,-0.115692,-0.114288,-0.111481,-0.104004,-0.0961914,-0.0863953,-0.0751648,-0.0615845,-0.048645,-0.0344543,-0.0213623,-0.00982666,0.000793457,0.0107727,0.0215149,0.0319519,0.042572,0.0509949,0.0595703,0.0645447,0.0690613,0.0725098,0.0740662,0.0732727,0.0704651,0.0651855,0.0580139,0.0498962,0.0410156,0.0321045,0.0223083,0.0135803,0.00375366,-0.0045166,-0.0116882,-0.0162048,-0.019165,-0.0196533,-0.0184021,-0.0146484,-0.00778198,0.000793457,0.010437,0.0215149,0.0321045,0.0420837,0.0502014,0.0559692,0.0609741,0.0629883,0.0631409,0.0603333,0.0559692,0.0509949,0.0464783,0.0436707,0.043335,0.0427246,0.0447388,0.0444336,0.0441284,0.0430298,0.039917,0.0349121,0.0265198,0.0149536,-0.000946045,-0.0174561,-0.0349121,-0.0508423,-0.0653381,-0.0770264,-0.0852966,-0.0909119,-0.0905762,-0.0873108,-0.0802917,-0.0709534,-0.0609741,-0.0497437,-0.039917,-0.0302429,-0.0230713,-0.0169983,-0.0141907,-0.0133972,-0.0140381,-0.0157471,-0.0160522,-0.0154419,-0.0133972,-0.0121765,-0.00967407,-0.00762939,-0.00546265,-0.00170898,0.000457764,0.0015564,0.000946045,-0.00125122,-0.00466919,-0.0093689,-0.0137329,-0.0184021,-0.0224609,-0.0265198,-0.0300903,-0.0335083,-0.0358582,-0.0377197,-0.0385132,-0.0397644,-0.0405273,-0.0417786,-0.0424194,-0.0427246,-0.0411682,-0.0396118,-0.0371094,-0.0336914,-0.031189,-0.0277405,-0.0243225,-0.0216675,-0.0198059,-0.0212097,-0.0247803,-0.0299377,-0.0363159,-0.0434875,-0.0522461,-0.0606384,-0.0698547,-0.0804443,-0.0895081,-0.0968323,-0.100739,-0.0985413,-0.0904236,-0.0770264,-0.0594177,-0.0335083,-0.00375366,0.031189,0.0657959,0.0979309,0.124115,0.14267,0.153412,0.153107,0.142822,0.123322,0.096344,0.0645447,0.0335083,0.00531006,-0.0166931,-0.0296326,-0.0346069,-0.0300903,-0.0174561,0.00390625,0.0302429,0.0567627,0.079834,0.0958862,0.101959,0.0988464,0.085907,0.0664368,0.0405273,0.0129395,-0.0127869,-0.033844,-0.0447388,-0.0458374,-0.0346069,-0.0149536,0.0121765,0.0445862,0.0795288,0.111023,0.136444,0.151855,0.15686,0.15155,0.135498,0.111023,0.0813904,0.0478821,0.0157471,-0.0129395,-0.038208,-0.0570679,-0.0689087,-0.0739136,-0.073761,-0.0708008,-0.0687561,-0.0646973,-0.0637817,-0.0636292,-0.0678406,-0.0731201,-0.08078,-0.0881042,-0.0952759,-0.100403,-0.102448,-0.100403,-0.0958862,-0.0877686,-0.0773315,-0.0651855,-0.0514526,-0.0377197,-0.0232239,-0.0109253,0.00125122,0.0113831,0.0210571,0.0293274,0.0358582,0.0413208,0.04599,0.0483398,0.0484924,0.0484924,0.046936,0.0445862,0.0407104,0.0360107,0.0308838,0.0265198,0.0219727,0.0184021,0.0135803,0.00982666,0.00576782,0.00234985,-0.000305176,-0.00296021,-0.00360107,-0.00326538,-0.00201416,0.00170898,0.00686646,0.0137329,0.0244751,0.0357056,0.0483398,0.0608215,0.0718689,0.0809326,0.0874634,0.0898132,0.0871582,0.0823364,0.0729675,0.0625305,0.0497437,0.0369568,0.0269775,0.019165,0.0138855,0.0112305,0.0123291,0.0158997,0.0205688,0.025116,0.0260315,0.0229187,0.0155945,0.00497437,-0.00796509,-0.0235291,-0.0397644,-0.0576782,-0.0743713,-0.0860596,-0.0924683,-0.0915222,-0.0852966,-0.0745239,-0.0614319,-0.0461426,-0.0310364,-0.0154419,-0.00375366,0.00390625,0.00656128,0.00360107,-0.00140381,-0.00888062,-0.0166931,-0.025116,-0.0327454,-0.0394592,-0.0430298,-0.0431824,-0.0393066,-0.0341492,-0.0289917,-0.0258789,-0.0233765,-0.0215149,-0.0218201,-0.0218201,-0.025116,-0.0300903,-0.035553,-0.0420837,-0.0452271,-0.0470886,-0.0455322,-0.0445862,-0.0414734,-0.0383606,-0.0341492,-0.0308838,-0.0285339,-0.026825,-0.0266724,-0.0266724,-0.0277405,-0.0288391,-0.0308838,-0.0321045,-0.0336914,-0.0352478,-0.0379028,-0.0417786,-0.0456848,-0.0516052,-0.0604858,-0.0722046,-0.085907,-0.100891,-0.112885,-0.118652,-0.114746,-0.101807,-0.0787354,-0.0473938,-0.00747681,0.0375671,0.0863953,0.134094,0.175568,0.205963,0.220306,0.217041,0.19754,0.163879,0.121918,0.0751648,0.0282288,-0.0152893,-0.0494385,-0.0706177,-0.0756226,-0.0664368,-0.0445862,-0.0126343,0.0230713,0.0584717,0.0888672,0.108368,0.113983,0.104767,0.0818481,0.0484924,0.0109253,-0.0258789,-0.0562744,-0.0793762,-0.0899658,-0.0863953,-0.0662537,-0.0339966,0.00717163,0.0548706,0.100555,0.139862,0.168091,0.180725,0.182281,0.17041,0.14798,0.11554,0.0765686,0.0363159,-0.00170898,-0.0324402,-0.0552063,-0.0714111,-0.0804443,-0.0826416,-0.0799866,-0.076416,-0.0722046,-0.069397,-0.0673523,-0.071106,-0.0770264,-0.0854492,-0.0926208,-0.0991516,-0.10321,-0.105713,-0.105255,-0.0991516,-0.091217,-0.0784302,-0.0639343,-0.048645,-0.0322876,-0.0180969,-0.00326538,0.00982666,0.0232239,0.0349121,0.0453796,0.0522461,0.0570679,0.0600281,0.0617371,0.0628357,0.0600281,0.0555115,0.0495911,0.0417786,0.0352478,0.0288391,0.0226135,0.0176086,0.0137329,0.00952148,0.00546265,0.0015564,-0.00125122,-0.00405884,-0.00686646,-0.00888062,-0.0112305,-0.0110779,-0.00857544,-0.00341797,0.00515747,0.0151367,0.0300903,0.0456848,0.0637817,0.0802917,0.0957336,0.106323,0.111328,0.111633,0.104004,0.0923157,0.0779724,0.0604858,0.042572,0.0247803,0.0093689,0.0015564,-0.00390625,-0.00234985,0.00140381,0.00811768,0.0143433,0.0216675,0.0247803,0.0221558,0.0146484,0.000457764,-0.0166931,-0.036499,-0.0566101,-0.0753174,-0.0913696,-0.102295,-0.105255,-0.101501,-0.0884094,-0.0700073,-0.0483398,-0.0260315,-0.00747681,0.0093689,0.0199585,0.0263367,0.0258789,0.0190125,0.00686646,-0.00732422,-0.020752,-0.0324402,-0.0420837,-0.0484924,-0.0522461,-0.0517578,-0.0473938,-0.040863,-0.0339966,-0.0296326,-0.0282288,-0.0307312,-0.0343018,-0.0400696,-0.0464783,-0.0542603,-0.0639343,-0.071106,-0.0757751,-0.0753174,-0.071106,-0.0662537,-0.0580139,-0.048645,-0.0411682,-0.0352478,-0.0310364,-0.0300903,-0.0300903,-0.0327454,-0.0377197,-0.0445862,-0.0527039,-0.0595703,-0.065033,-0.0692139,-0.0729675,-0.0759277,-0.0805969,-0.0838928,-0.087616,-0.0830994,-0.071106,-0.0508423,-0.0257263,0.00186157,0.0339966,0.0698547,0.108673,0.145782,0.176971,0.19632,0.202087,0.19397,0.173218,0.143127,0.107422,0.0673523,0.0258789,-0.0129395,-0.0420837,-0.057373,-0.0566101,-0.0417786,-0.019165,0.0101318,0.0424194,0.0765686,0.10556,0.12381,0.125977,0.11087,0.0821838,0.0455322,0.00671387,-0.0299377,-0.059082,-0.079834,-0.0901184,-0.0848083,-0.063446,-0.026825,0.0184021,0.0661011,0.108521,0.142822,0.161835,0.167786,0.159668,0.139557,0.107117,0.0648499,0.0184021,-0.0263367,-0.0625305,-0.0893555,-0.104156,-0.111328,-0.110382,-0.103546,-0.0901184,-0.0760803,-0.063446,-0.0567627,-0.0553589,-0.0600281,-0.0695496,-0.0809326,-0.0909119,-0.0993347,-0.105713,-0.108521,-0.107117,-0.098999,-0.0854492,-0.0676575,-0.0484924,-0.0288391,-0.0124817,0.00201416,0.0160522,0.0286865,0.0407104,0.0494385,0.0558167,0.0594177,0.0623779,0.0642395,0.0661011,0.0675049,0.0656433,0.0615845,0.0567627,0.0497437,0.0436707,0.0383606,0.0321045,0.0274353,0.0219727,0.0190125,0.0155945,0.0144958,0.0143433,0.0140381,0.0144958,0.0135803,0.0132446,0.0135803,0.0149536,0.0174561,0.0227661,0.0293274,0.0394592,0.0513,0.0657959,0.0796814,0.0932312,0.102295,0.107422,0.107269,0.100739,0.0898132,0.0748291,0.0564575,0.0369568,0.0158997,-0.00170898,-0.0143433,-0.0221558,-0.0227661,-0.0202637,-0.0137329,-0.00701904,-0.0015564,0.00219727,0.00390625,0.00140381,-0.00592041,-0.0179443,-0.0344543,-0.0516052,-0.0678406,-0.0793762,-0.085907,-0.0862122,-0.0813904,-0.0704651,-0.0564575,-0.037262,-0.0176086,-0.000305176,0.0133972,0.0213623,0.0227661,0.0195007,0.0109253,-0.00109863,-0.0151367,-0.0308838,-0.0444336,-0.0552063,-0.0603333,-0.0601807,-0.0580139,-0.0522461,-0.0464783,-0.0403748,-0.0360107,-0.0333557,-0.0336914,-0.0386658,-0.0466309,-0.0587769,-0.0714111,-0.0834045,-0.0930786,-0.0985413,-0.100403,-0.0996399,-0.0951233,-0.0881042,-0.0774841,-0.0682983,-0.0594177,-0.052063,-0.0475464,-0.047699,-0.0527039,-0.0615845,-0.0746765,-0.0899658,-0.107727,-0.125519,-0.139709,-0.143921,-0.137207,-0.114746,-0.0793762,-0.0322876,0.0232239,0.082489,0.144836,0.205505,0.255859,0.292206,0.304657,0.29187,0.257751,0.206757,0.145325,0.0787354,0.0118408,-0.0500488,-0.10025,-0.130341,-0.138,-0.119904,-0.0826416,-0.0302429,0.0266724,0.0826416,0.133148,0.170746,0.190857,0.186157,0.158112,0.109924,0.053009,-0.00296021,-0.0522461,-0.0918274,-0.11554,-0.119598,-0.102448,-0.0628357,-0.00436401,0.0623779,0.129425,0.184601,0.22406,0.244781,0.245422,0.226227,0.186951,0.130493,0.063446,-0.00842285,-0.073761,-0.128479,-0.167786,-0.19101,-0.199585,-0.19397,-0.179626,-0.157623,-0.130035,-0.1026,-0.0820007,-0.0717163,-0.0692139,-0.0723572,-0.079834,-0.0879517,-0.0969849,-0.10495,-0.109924,-0.110229,-0.103851,-0.0899658,-0.071106,-0.0506592,-0.0297852,-0.00967407,0.0090332,0.0261841,0.0419312,0.0553589,0.0640869,0.0676575,0.0681458,0.0659485,0.0628357,0.0587769,0.0541077,0.0484924,0.0414734,0.0352478,0.0291443,0.0269775,0.0258789,0.0263367,0.026825,0.0255737,0.0254211,0.0263367,0.0283813,0.02948,0.0313416,0.0302429,0.0321045,0.0325928,0.0361633,0.0420837,0.0514526,0.0626831,0.0767212,0.0923157,0.108673,0.123505,0.136749,0.14267,0.143433,0.135956,0.121918,0.101349,0.0760803,0.047699,0.0196533,-0.00576782,-0.0257263,-0.0386658,-0.0444336,-0.0424194,-0.0322876,-0.0195007,-0.00656128,0.0045166,0.0109253,0.0116882,0.00717163,-0.00436401,-0.0212097,-0.0430298,-0.0656433,-0.0862122,-0.100098,-0.105865,-0.103058,-0.0905762,-0.0725098,-0.048645,-0.0223083,0.00405884,0.0283813,0.047699,0.0564575,0.0559692,0.0467834,0.0302429,0.00982666,-0.0126343,-0.0363159,-0.0583191,-0.0753174,-0.0860596,-0.087616,-0.0845032,-0.07547,-0.0662537,-0.0566101,-0.0491028,-0.042572,-0.0396118,-0.0413208,-0.0492859,-0.0611267,-0.0765686,-0.090271,-0.101654,-0.109772,-0.116302,-0.118195,-0.119598,-0.116638,-0.11087,-0.1026,-0.0943298,-0.0895081,-0.0882568,-0.0905762,-0.0982361,-0.106323,-0.115387,-0.126282,-0.13504,-0.140167,-0.130188,-0.107574,-0.0668945,-0.0158997,0.0419312,0.101044,0.161072,0.219055,0.270844,0.307465,0.319641,0.303436,0.263519,0.208008,0.14502,0.0799866,0.0151367,-0.044281,-0.0947876,-0.126617,-0.131287,-0.111328,-0.0700073,-0.0190125,0.0354004,0.0863953,0.129883,0.16217,0.176971,0.169495,0.138458,0.0890198,0.0307312,-0.0229187,-0.0625305,-0.0893555,-0.100098,-0.0943298,-0.0678406,-0.0185547,0.0467834,0.119751,0.18634,0.237457,0.268341,0.27597,0.264282,0.23233,0.182281,0.116943,0.0393066,-0.0383606,-0.109314,-0.164185,-0.19928,-0.216736,-0.219543,-0.211731,-0.192413,-0.166382,-0.138,-0.11087,-0.0918274,-0.0840454,-0.0870056,-0.0966797,-0.108978,-0.121613,-0.132996,-0.142822,-0.147491,-0.144531,-0.134552,-0.114594,-0.0867004,-0.0556641,-0.0247803,0.00390625,0.0317993,0.057373,0.078125,0.0943298,0.103058,0.103699,0.0974426,0.085144,0.0714111,0.0567627,0.0420837,0.0263367,0.0115356,-0.00201416,-0.00982666,-0.0119934,-0.00982666,-0.00234985,0.006073,0.0146484,0.0247803,0.0347595,0.0450745,0.0533142,0.059082,0.0608215,0.0600281,0.0580139,0.0559692,0.0583191,0.0626831,0.0712585,0.082489,0.0975952,0.114899,0.133301,0.150635,0.163086,0.168854,0.164978,0.152954,0.130493,0.102753,0.0708008,0.0368042,0.00436401,-0.0252686,-0.0489502,-0.0622253,-0.0656433,-0.0597229,-0.0487976,-0.0379028,-0.0265198,-0.0177612,-0.0110779,-0.00982666,-0.0152893,-0.0283813,-0.0464783,-0.0662537,-0.0838928,-0.0961914,-0.10025,-0.0969849,-0.0857544,-0.0692139,-0.0475464,-0.0219727,0.00561523,0.0302429,0.0480347,0.0559692,0.0541077,0.044281,0.0285339,0.0090332,-0.0140381,-0.0379028,-0.0595703,-0.0762329,-0.0845032,-0.0854492,-0.0805969,-0.0728149,-0.0629883,-0.0533142,-0.0447388,-0.0385132,-0.0371094,-0.0407104,-0.0508423,-0.0640869,-0.0790405,-0.0927734,-0.104004,-0.112122,-0.116486,-0.119293,-0.11911,-0.118805,-0.11615,-0.113037,-0.111481,-0.114288,-0.123169,-0.134857,-0.148438,-0.160583,-0.168091,-0.165283,-0.149536,-0.117096,-0.0690613,-0.00857544,0.0597229,0.129883,0.2005,0.265076,0.317444,0.347717,0.349121,0.32135,0.26944,0.200195,0.123505,0.0478821,-0.0246277,-0.0852966,-0.129089,-0.14798,-0.138916,-0.105255,-0.0528564,0.00857544,0.0712585,0.12381,0.164795,0.185699,0.18335,0.157166,0.109314,0.04599,-0.0174561,-0.0732727,-0.112274,-0.131744,-0.12973,-0.10791,-0.0622253,0.00466919,0.0870056,0.170258,0.241211,0.290802,0.316223,0.318542,0.298126,0.255402,0.192108,0.115234,0.031189,-0.0506592,-0.122711,-0.176514,-0.211884,-0.228577,-0.230438,-0.220459,-0.202087,-0.175415,-0.146088,-0.11911,-0.101807,-0.092926,-0.0927734,-0.0975952,-0.105865,-0.115082,-0.125977,-0.135956,-0.142822,-0.143921,-0.137054,-0.121002,-0.0991516,-0.0753174,-0.0483398,-0.0193481,0.0109253,0.0410156,0.0695496,0.0924683,0.107269,0.113678,0.112122,0.105255,0.0910645,0.0729675,0.0514526,0.0272827,0.00280762,-0.0184021,-0.0336914,-0.039917,-0.0396118,-0.0332031,-0.0227661,-0.00827026,0.0101318,0.0293274,0.0478821,0.0643921,0.0753174,0.0830994,0.0863953,0.0865479,0.0865479,0.0871582,0.0896606,0.0951233,0.102905,0.114594,0.127686,0.141571,0.153259,0.159821,0.158875,0.15155,0.135345,0.112427,0.085144,0.0545654,0.0246277,-0.00405884,-0.0272827,-0.0428772,-0.0519104,-0.0527039,-0.048645,-0.0424194,-0.0358582,-0.0316467,-0.0288391,-0.0300903,-0.0358582,-0.0452271,-0.0587769,-0.0731201,-0.0856018,-0.0921631,-0.0926208,-0.0852966,-0.0720215,-0.0544128,-0.0333557,-0.00967407,0.0127869,0.0327454,0.0439758,0.0484924,0.0431824,0.0305481,0.0123291,-0.00827026,-0.0305481,-0.052063,-0.0706177,-0.0829468,-0.0905762,-0.0895081,-0.0849915,-0.0760803,-0.0671997,-0.059082,-0.0527039,-0.0497437,-0.0478821,-0.0511475,-0.0576782,-0.0673523,-0.076416,-0.0848083,-0.0904236,-0.0937195,-0.0960388,-0.0982361,-0.100098,-0.101349,-0.103363,-0.107727,-0.116486,-0.13208,-0.15094,-0.169189,-0.182434,-0.190704,-0.191467,-0.179932,-0.149841,-0.09729,-0.0280762,0.0513,0.130981,0.208618,0.279419,0.337402,0.375305,0.386383,0.362061,0.309021,0.231384,0.144073,0.0561218,-0.0254211,-0.0930786,-0.142517,-0.167938,-0.165588,-0.13208,-0.0731201,0.00250244,0.0799866,0.145325,0.191772,0.216431,0.220306,0.198486,0.148132,0.0765686,-0.00637817,-0.0816956,-0.137054,-0.165131,-0.167786,-0.14859,-0.105408,-0.0379028,0.0509949,0.148285,0.236206,0.302185,0.340851,0.348938,0.329468,0.284882,0.217987,0.138153,0.0467834,-0.0434875,-0.126923,-0.192413,-0.233887,-0.249786,-0.246979,-0.23233,-0.210022,-0.182129,-0.149384,-0.117249,-0.0937195,-0.0818481,-0.0827942,-0.0930786,-0.105103,-0.116943,-0.127533,-0.135956,-0.143768,-0.145477,-0.140015,-0.122864,-0.0996399,-0.0736084,-0.0447388,-0.0174561,0.0101318,0.0352478,0.0600281,0.0793762,0.0932312,0.101044,0.100403,0.0943298,0.0805969,0.0667419,0.0495911,0.0319519,0.0123291,-0.00701904,-0.0237122,-0.0339966,-0.0363159,-0.0322876,-0.0232239,-0.0121765,0.00250244,0.0180969,0.0354004,0.0528564,0.0676575,0.0785828,0.0852966,0.0896606,0.0927734,0.0965271,0.1026,0.111786,0.12146,0.134094,0.146423,0.158722,0.168396,0.174622,0.173553,0.163574,0.14563,0.118805,0.086853,0.0522461,0.0188599,-0.0115356,-0.0375671,-0.057373,-0.0698547,-0.0732727,-0.069397,-0.0604858,-0.0513,-0.0447388,-0.042572,-0.042572,-0.046936,-0.0539551,-0.0646973,-0.0776367,-0.0884094,-0.0961914,-0.0955811,-0.0877686,-0.0722046,-0.0519104,-0.0283813,-0.00482178,0.0174561,0.0350952,0.0466309,0.0506592,0.0447388,0.0293274,0.00796509,-0.0173035,-0.0405273,-0.0611267,-0.0770264,-0.0871582,-0.0918274,-0.090271,-0.08078,-0.0687561,-0.0553589,-0.0456848,-0.0411682,-0.0417786,-0.0478821,-0.0570679,-0.0709534,-0.0840454,-0.0979309,-0.109131,-0.117096,-0.119598,-0.117889,-0.111786,-0.102142,-0.0935669,-0.0863953,-0.0852966,-0.0896606,-0.101501,-0.117554,-0.136902,-0.156403,-0.177582,-0.190704,-0.191162,-0.164795,-0.11615,-0.046936,0.0310364,0.113678,0.196625,0.277374,0.349731,0.402283,0.42099,0.39978,0.342255,0.260376,0.169647,0.0765686,-0.0137329,-0.0940247,-0.159027,-0.194733,-0.196136,-0.160767,-0.0940247,-0.0116882,0.0717163,0.144226,0.199097,0.235443,0.24823,0.231842,0.180389,0.0999451,0.00747681,-0.0765686,-0.135956,-0.168549,-0.177277,-0.165436,-0.126129,-0.0569153,0.0417786,0.149231,0.247437,0.319641,0.360657,0.370636,0.351135,0.303894,0.233429,0.144531,0.0414734,-0.0623779,-0.157166,-0.228271,-0.27005,-0.283295,-0.27771,-0.259766,-0.230927,-0.194427,-0.151398,-0.110382,-0.0795288,-0.0668945,-0.0701599,-0.084198,-0.100555,-0.116638,-0.129883,-0.144073,-0.156219,-0.163239,-0.155762,-0.135498,-0.10556,-0.0712585,-0.0371094,-0.00405884,0.0283813,0.0572205,0.0856018,0.105255,0.117554,0.120056,0.113037,0.0975952,0.0793762,0.0600281,0.0410156,0.0209045,-0.000946045,-0.0219727,-0.0368042,-0.0428772,-0.0400696,-0.0333557,-0.0229187,-0.0115356,0.00436401,0.0237122,0.0428772,0.0609741,0.0745239,0.0837402,0.0882568,0.0910645,0.0940247,0.09729,0.103546,0.111786,0.122711,0.136902,0.150299,0.165131,0.176819,0.182281,0.180389,0.170105,0.151398,0.124878,0.0918274,0.0545654,0.0182495,-0.0154419,-0.0424194,-0.0623779,-0.0748291,-0.0790405,-0.0779724,-0.0715637,-0.0629883,-0.0553589,-0.0500488,-0.0506592,-0.054718,-0.0643921,-0.07547,-0.087616,-0.0974426,-0.103058,-0.101959,-0.0938721,-0.0774841,-0.0564575,-0.0308838,-0.00637817,0.0177612,0.0346069,0.0456848,0.0480347,0.041626,0.0269775,0.00531006,-0.0199585,-0.0445862,-0.0667419,-0.0818481,-0.0909119,-0.0923157,-0.0882568,-0.0793762,-0.0675049,-0.0541077,-0.0431824,-0.0363159,-0.0361633,-0.0424194,-0.052063,-0.0668945,-0.0816956,-0.0960388,-0.106812,-0.113525,-0.115234,-0.113678,-0.107422,-0.0982361,-0.0879517,-0.0805969,-0.0782776,-0.0845032,-0.0960388,-0.11319,-0.13208,-0.153259,-0.176666,-0.195374,-0.202545,-0.185242,-0.14267,-0.0782776,0.000457764,0.0838928,0.168396,0.251343,0.329773,0.39386,0.430176,0.426453,0.381073,0.305908,0.213928,0.119751,0.026825,-0.0606384,-0.135193,-0.188507,-0.206299,-0.187408,-0.130981,-0.0517578,0.033844,0.113983,0.180389,0.228424,0.256165,0.254761,0.217194,0.145782,0.0527039,-0.0403748,-0.115234,-0.164032,-0.18634,-0.186157,-0.160767,-0.103851,-0.014801,0.096344,0.208008,0.301697,0.363464,0.389954,0.385895,0.351288,0.290649,0.205353,0.100739,-0.0140381,-0.123657,-0.214539,-0.27536,-0.305298,-0.307312,-0.292816,-0.263519,-0.223755,-0.173706,-0.122711,-0.0784302,-0.0514526,-0.0456848,-0.0555115,-0.0753174,-0.0958862,-0.1185,-0.139404,-0.161072,-0.177277,-0.180878,-0.168396,-0.140472,-0.103546,-0.0628357,-0.0230713,0.0163574,0.0531616,0.0879517,0.116302,0.13504,0.141876,0.134857,0.118652,0.0960388,0.0714111,0.0470886,0.0221558,-0.00390625,-0.0291443,-0.048645,-0.0575256,-0.0556641,-0.0466309,-0.0325928,-0.0165405,0.00280762,0.0246277,0.0487976,0.0700073,0.0882568,0.098999,0.103851,0.105713,0.104462,0.103546,0.102448,0.103058,0.108826,0.11554,0.127075,0.140656,0.1539,0.165131,0.170898,0.167603,0.156219,0.138,0.113525,0.082489,0.0492859,0.0132446,-0.0199585,-0.048645,-0.0679932,-0.0785828,-0.0820007,-0.0820007,-0.0787354,-0.0736084,-0.0684509,-0.0637817,-0.0615845,-0.0625305,-0.0682983,-0.0756226,-0.0837402,-0.0882568,-0.0877686,-0.0820007,-0.0703125,-0.0558167,-0.0368042,-0.0179443,0.00140381,0.0195007,0.031189,0.0343018,0.0303955,0.0177612,0.0015564,-0.0182495,-0.0385132,-0.0595703,-0.0756226,-0.0879517,-0.0905762,-0.0865479,-0.0770264,-0.065033,-0.0533142,-0.043335,-0.0357056,-0.0335083,-0.0349121,-0.0428772,-0.0550537,-0.0695496,-0.0849915,-0.0966797,-0.104004,-0.106659,-0.102295,-0.0951233,-0.0852966,-0.0746765,-0.0651855,-0.0569153,-0.0552063,-0.0612793,-0.0750122,-0.0961914,-0.123016,-0.15155,-0.176819,-0.196625,-0.210815,-0.213928,-0.200836,-0.160919,-0.0958862,-0.0123291,0.076416,0.160431,0.237793,0.307953,0.36673,0.406006,0.411011,0.377319,0.309357,0.221405,0.129272,0.0420837,-0.0366516,-0.1026,-0.152649,-0.174164,-0.165436,-0.121307,-0.052063,0.0296326,0.109131,0.172913,0.215942,0.237793,0.235138,0.207672,0.150635,0.0690613,-0.0244751,-0.10495,-0.157623,-0.17807,-0.174011,-0.146423,-0.098999,-0.0223083,0.0782776,0.187256,0.28363,0.350342,0.38092,0.376709,0.342712,0.28363,0.200836,0.102448,-0.00405884,-0.109314,-0.199097,-0.263672,-0.295013,-0.29657,-0.275513,-0.242615,-0.20285,-0.160278,-0.11554,-0.0750122,-0.0508423,-0.0448914,-0.0598755,-0.085907,-0.114899,-0.138611,-0.158722,-0.174957,-0.185242,-0.184937,-0.168243,-0.134552,-0.0905762,-0.0452271,-0.00250244,0.0344543,0.0675049,0.094635,0.114594,0.123016,0.122101,0.111176,0.0943298,0.0720215,0.0491028,0.0274353,0.0107727,-0.00140381,-0.0129395,-0.0227661,-0.0282288,-0.0271301,-0.0184021,-0.00482178,0.00762939,0.0195007,0.0289917,0.0410156,0.0536499,0.0653381,0.0746765,0.0796814,0.0834045,0.0863953,0.0907593,0.0951233,0.103546,0.113983,0.126129,0.138,0.150299,0.161377,0.171051,0.174774,0.17041,0.155304,0.132843,0.104309,0.0728149,0.0394592,0.00497437,-0.0282288,-0.0572205,-0.0787354,-0.0921631,-0.0944824,-0.0893555,-0.079834,-0.0700073,-0.0614319,-0.0544128,-0.0478821,-0.0430298,-0.0424194,-0.0456848,-0.0536499,-0.0620422,-0.0681458,-0.0686035,-0.0632935,-0.0544128,-0.0428772,-0.0307312,-0.0180969,-0.00515747,0.00546265,0.0138855,0.0152893,0.0093689,-0.000152588,-0.0137329,-0.0261841,-0.0389709,-0.0500488,-0.0589294,-0.0646973,-0.0656433,-0.0631409,-0.0578613,-0.0522461,-0.0475464,-0.0462952,-0.0478821,-0.0544128,-0.0614319,-0.069397,-0.0757751,-0.0821838,-0.0879517,-0.0884094,-0.0849915,-0.073761,-0.0597229,-0.0455322,-0.0347595,-0.026825,-0.0218201,-0.0240173,-0.0335083,-0.0525513,-0.077179,-0.105103,-0.133148,-0.160431,-0.188507,-0.210968,-0.226074,-0.229828,-0.222351,-0.198334,-0.158264,-0.0991516,-0.0269775,0.0498962,0.12677,0.198181,0.26709,0.323212,0.365479,0.379517,0.363129,0.317139,0.252136,0.176514,0.0996399,0.0229187,-0.0470886,-0.106171,-0.143616,-0.152954,-0.132996,-0.0887146,-0.0274353,0.0405273,0.106171,0.161224,0.200989,0.216431,0.20816,0.172302,0.115234,0.040863,-0.0330505,-0.0924683,-0.12973,-0.14328,-0.136444,-0.106659,-0.050354,0.0316467,0.127533,0.222351,0.29657,0.343658,0.360504,0.349884,0.311676,0.24823,0.162323,0.0632935,-0.0393066,-0.131592,-0.2052,-0.254303,-0.275208,-0.274902,-0.256348,-0.22702,-0.190857,-0.150299,-0.113342,-0.0857544,-0.0731201,-0.0765686,-0.0915222,-0.112122,-0.131287,-0.147034,-0.158569,-0.166046,-0.163879,-0.152191,-0.125671,-0.090271,-0.0514526,-0.0143433,0.0155945,0.042572,0.0631409,0.0804443,0.0895081,0.0898132,0.0835876,0.0726624,0.0600281,0.0484924,0.0360107,0.0272827,0.0196533,0.0126343,0.00701904,0.00186157,-0.000610352,-0.000793457,0.00109863,0.00341797,0.00436401,0.006073,0.0118408,0.0201111,0.0314941,0.043335,0.054718,0.0670471,0.079834,0.0937195,0.105713,0.118652,0.130676,0.144836,0.157471,0.167603,0.174011,0.176514,0.173706,0.165741,0.150452,0.126617,0.0979309,0.0645447,0.0296326,-0.00421143,-0.0350952,-0.0594177,-0.0778198,-0.0870056,-0.0888672,-0.081543,-0.0676575,-0.0511475,-0.0361633,-0.0244751,-0.0187073,-0.0180969,-0.0216675,-0.0289917,-0.0411682,-0.0556641,-0.0712585,-0.0837402,-0.0867004,-0.082489,-0.0695496,-0.053009,-0.033844,-0.014801,0.00592041,0.0240173,0.0389709,0.0439758,0.0407104,0.0293274,0.0126343,-0.00717163,-0.0279236,-0.0478821,-0.0668945,-0.0820007,-0.0932312,-0.0994873,-0.0986938,-0.0933838,-0.085144,-0.0779724,-0.0722046,-0.0648499,-0.0564575,-0.0466309,-0.0393066,-0.0354004,-0.0339966,-0.0322876,-0.0288391,-0.025116,-0.0216675,-0.0229187,-0.0260315,-0.0317993,-0.039917,-0.0494385,-0.0594177,-0.0712585,-0.083252,-0.098999,-0.116943,-0.133301,-0.147491,-0.156708,-0.165283,-0.17337,-0.181946,-0.189606,-0.191162,-0.181335,-0.153107,-0.108215,-0.0509949,0.0116882,0.0765686,0.144836,0.21579,0.286591,0.346313,0.381378,0.385132,0.354401,0.300781,0.231384,0.155762,0.0740662,-0.0105896,-0.0887146,-0.149048,-0.177917,-0.17041,-0.131287,-0.0723572,-0.00311279,0.0665894,0.131439,0.185699,0.220947,0.22702,0.198792,0.138306,0.0587769,-0.0218201,-0.085144,-0.129089,-0.152954,-0.158264,-0.140656,-0.088562,-0.00170898,0.105103,0.212067,0.297821,0.355499,0.38028,0.378265,0.34613,0.286896,0.200043,0.09198,-0.0226135,-0.127686,-0.211273,-0.263672,-0.286896,-0.285797,-0.266937,-0.236847,-0.19458,-0.14563,-0.0974426,-0.0631409,-0.0487976,-0.0566101,-0.0768738,-0.104004,-0.127075,-0.150299,-0.169647,-0.186646,-0.192566,-0.182281,-0.152008,-0.108368,-0.0604858,-0.0138855,0.0247803,0.0572205,0.0837402,0.103546,0.113983,0.11319,0.101044,0.0826416,0.0598755,0.0397644,0.025116,0.0155945,0.0093689,0.00234985,-0.00576782,-0.0102844,-0.00967407,-0.00436401,0.00140381,0.00436401,0.00466919,0.00436401,0.0090332,0.0166931,0.0293274,0.0410156,0.0523987,0.0637817,0.078125,0.0937195,0.110077,0.124878,0.13736,0.147491,0.154358,0.158417,0.160278,0.159668,0.153259,0.141113,0.121307,0.0975952,0.0708008,0.0448914,0.0190125,-0.00671387,-0.0307312,-0.0498962,-0.0611267,-0.065033,-0.0626831,-0.0558167,-0.0450745,-0.0325928,-0.0218201,-0.0154419,-0.0144958,-0.019165,-0.0277405,-0.0383606,-0.0525513,-0.0656433,-0.0773315,-0.0834045,-0.0802917,-0.0697021,-0.0508423,-0.0275879,-0.000152588,0.0261841,0.0497437,0.0678406,0.0768738,0.0768738,0.0651855,0.0439758,0.014801,-0.0198059,-0.0545654,-0.0879517,-0.11615,-0.137848,-0.149231,-0.150635,-0.140015,-0.120209,-0.0940247,-0.0668945,-0.0407104,-0.0182495,0.000457764,0.0126343,0.0185547,0.0149536,0.00421143,-0.0119934,-0.0307312,-0.0489502,-0.0629883,-0.0742188,-0.0802917,-0.0834045,-0.0804443,-0.0746765,-0.0626831,-0.0505066,-0.0400696,-0.0349121,-0.0357056,-0.0431824,-0.0552063,-0.0723572,-0.0935669,-0.119598,-0.147644,-0.177765,-0.203491,-0.225922,-0.241058,-0.245575,-0.23233,-0.196625,-0.139252,-0.0646973,0.0199585,0.108826,0.19928,0.287994,0.36908,0.433472,0.46402,0.453735,0.403198,0.324005,0.230133,0.129272,0.0254211,-0.0753174,-0.163086,-0.221405,-0.241516,-0.218445,-0.160278,-0.0782776,0.0137329,0.10321,0.179626,0.236542,0.265228,0.259308,0.216248,0.139404,0.0448914,-0.0492859,-0.122864,-0.171814,-0.195831,-0.195221,-0.164185,-0.0955811,0.00762939,0.126129,0.239197,0.326355,0.379822,0.401337,0.391205,0.348022,0.276306,0.177582,0.0651855,-0.0505066,-0.15094,-0.227173,-0.26944,-0.283142,-0.273499,-0.25119,-0.217987,-0.177124,-0.132843,-0.094635,-0.0723572,-0.0715637,-0.0882568,-0.11319,-0.137665,-0.157013,-0.172455,-0.180878,-0.182587,-0.171204,-0.142365,-0.0985413,-0.0484924,-0.00109863,0.0374146,0.0648499,0.083252,0.0944824,0.0974426,0.0927734,0.0779724,0.0594177,0.040863,0.0258789,0.0162048,0.014801,0.0176086,0.0246277,0.0300903,0.0324402,0.0333557,0.0343018,0.0358582,0.0341492,0.0257263,0.0124817,0.000793457,-0.00656128,-0.00717163,-0.00280762,0.00360107,0.0121765,0.0260315,0.043335,0.0645447,0.0849915,0.10495,0.122253,0.136597,0.147827,0.1539,0.157471,0.157471,0.152191,0.139404,0.11911,0.0941772,0.0678406,0.0427246,0.0168457,-0.0102844,-0.0350952,-0.0558167,-0.0665894,-0.0681458,-0.0629883,-0.0522461,-0.0407104,-0.0272827,-0.0169983,-0.00918579,-0.00421143,-0.00360107,-0.00842285,-0.0187073,-0.0322876,-0.0458374,-0.0558167,-0.0592651,-0.0559692,-0.0462952,-0.0314941,-0.0144958,0.00375366,0.0213623,0.0354004,0.0453796,0.048645,0.0427246,0.0266724,0.00390625,-0.020752,-0.0427246,-0.0629883,-0.0801392,-0.0932312,-0.0991516,-0.0965271,-0.0852966,-0.0697021,-0.0527039,-0.0389709,-0.0266724,-0.0182495,-0.0163574,-0.0182495,-0.0244751,-0.0328979,-0.0452271,-0.0589294,-0.0712585,-0.0778198,-0.0774841,-0.0701599,-0.059082,-0.0447388,-0.0285339,-0.0110779,0.00671387,0.0196533,0.0277405,0.0282288,0.0209045,0.00637817,-0.0155945,-0.0427246,-0.0734253,-0.10321,-0.129578,-0.149689,-0.165436,-0.176178,-0.181946,-0.184296,-0.182739,-0.177917,-0.172913,-0.170105,-0.166687,-0.153259,-0.123962,-0.0776367,-0.0213623,0.0386658,0.101501,0.168396,0.240265,0.312317,0.372192,0.403687,0.396362,0.355957,0.290802,0.213776,0.130035,0.0400696,-0.0511475,-0.135651,-0.197083,-0.222809,-0.207062,-0.156067,-0.085907,-0.00857544,0.065033,0.132538,0.184937,0.217834,0.218292,0.182739,0.113525,0.0280762,-0.0531616,-0.113983,-0.151703,-0.171356,-0.171204,-0.143921,-0.0779724,0.0204163,0.136597,0.247772,0.334442,0.389038,0.410553,0.403687,0.367493,0.301697,0.20752,0.0927734,-0.0272827,-0.136261,-0.218903,-0.268036,-0.288757,-0.288605,-0.271606,-0.242462,-0.200043,-0.149994,-0.102142,-0.0687561,-0.0552063,-0.0628357,-0.0804443,-0.101196,-0.118958,-0.134857,-0.148743,-0.160919,-0.163239,-0.147827,-0.116943,-0.0746765,-0.0307312,0.00637817,0.0375671,0.0615845,0.083252,0.101349,0.112885,0.114746,0.109772,0.100403,0.0898132,0.0804443,0.0736084,0.0670471,0.0561218,0.0386658,0.0166931,-0.006073,-0.0255737,-0.0414734,-0.0548706,-0.0695496,-0.0821838,-0.0891724,-0.0846558,-0.0678406,-0.0438232,-0.0165405,0.0116882,0.0396118,0.0686035,0.0951233,0.116638,0.132233,0.141266,0.144531,0.143768,0.139709,0.136261,0.133942,0.129272,0.122864,0.113678,0.102753,0.0916748,0.079834,0.0664368,0.0491028,0.0296326,0.00888062,-0.00952148,-0.0238647,-0.033844,-0.0403748,-0.0434875,-0.0472412,-0.050354,-0.0536499,-0.0548706,-0.0558167,-0.0564575,-0.0583191,-0.0614319,-0.0626831,-0.0611267,-0.054718,-0.0431824,-0.0252686,-0.00466919,0.0184021,0.0407104,0.0612793,0.0765686,0.0865479,0.0896606,0.0821838,0.0673523,0.0403748,0.0115356,-0.0201111,-0.050354,-0.0765686,-0.0991516,-0.114899,-0.122864,-0.123169,-0.114746,-0.101044,-0.0865479,-0.0736084,-0.0639343,-0.0566101,-0.0516052,-0.0508423,-0.0538025,-0.0584717,-0.0664368,-0.0722046,-0.0742188,-0.0697021,-0.059082,-0.0441284,-0.0252686,-0.00360107,0.0196533,0.0424194,0.0615845,0.0768738,0.0820007,0.0782776,0.0651855,0.0450745,0.0219727,-0.006073,-0.0361633,-0.0671997,-0.0949707,-0.116638,-0.130188,-0.136749,-0.138458,-0.139557,-0.142517,-0.147034,-0.154358,-0.161224,-0.17215,-0.186798,-0.206757,-0.223755,-0.228882,-0.211121,-0.168549,-0.105713,-0.0293274,0.0556641,0.146423,0.241058,0.336334,0.419128,0.471344,0.479919,0.445007,0.373108,0.279724,0.174316,0.0625305,-0.0494385,-0.154816,-0.234344,-0.27536,-0.271759,-0.226074,-0.154816,-0.0703125,0.0154419,0.0940247,0.157166,0.198486,0.209564,0.182129,0.11911,0.0344543,-0.0509949,-0.118958,-0.16153,-0.180237,-0.176025,-0.145325,-0.0784302,0.0201111,0.143433,0.266144,0.36734,0.431732,0.461853,0.456238,0.418488,0.349579,0.252136,0.135498,0.00918579,-0.109131,-0.203308,-0.263824,-0.291565,-0.294678,-0.279877,-0.253693,-0.215485,-0.169006,-0.123657,-0.0901184,-0.0768738,-0.085144,-0.103851,-0.123505,-0.139404,-0.151398,-0.160278,-0.161377,-0.152649,-0.127686,-0.0865479,-0.0325928,0.0232239,0.0704651,0.106171,0.131439,0.147491,0.153748,0.150146,0.132996,0.104767,0.0728149,0.0393066,0.0123291,-0.0105896,-0.0271301,-0.0422668,-0.0533142,-0.0626831,-0.0689087,-0.0712585,-0.0704651,-0.0682983,-0.0671997,-0.0682983,-0.0678406,-0.0640869,-0.0538025,-0.0403748,-0.0247803,-0.00561523,0.0180969,0.0455322,0.0773315,0.108215,0.138306,0.164978,0.188507,0.206604,0.221405,0.228424,0.228577,0.220795,0.20224,0.176025,0.141571,0.10321,0.0628357,0.0209045,-0.019165,-0.0533142,-0.0820007,-0.0996399,-0.10791,-0.10556,-0.0944824,-0.0767212,-0.057373,-0.0377197,-0.0215149,-0.00827026,0.000305176,0.0015564,-0.00326538,-0.0127869,-0.0226135,-0.0313416,-0.0339966,-0.0327454,-0.0233765,-0.00686646,0.0157471,0.0411682,0.0671997,0.0882568,0.103851,0.109314,0.104767,0.0867004,0.057373,0.0198059,-0.0224609,-0.0654907,-0.106506,-0.142212,-0.170105,-0.188202,-0.19397,-0.189911,-0.176666,-0.158722,-0.137207,-0.113678,-0.0916748,-0.0704651,-0.0498962,-0.0325928,-0.0187073,-0.00982666,-0.00186157,0.00717163,0.0187073,0.0313416,0.0444336,0.0555115,0.0640869,0.0718689,0.0784302,0.0818481,0.0823364,0.0760803,0.0643921,0.0470886,0.0275879,0.00656128,-0.0133972,-0.0332031,-0.0509949,-0.0671997,-0.0821838,-0.0952759,-0.104767,-0.112122,-0.119904,-0.12973,-0.141266,-0.154053,-0.169006,-0.18335,-0.197876,-0.214233,-0.227631,-0.236389,-0.240601,-0.236389,-0.221558,-0.188965,-0.133453,-0.0583191,0.0283813,0.119904,0.210327,0.295929,0.376556,0.443451,0.486786,0.490051,0.448883,0.368134,0.261169,0.141418,0.0177612,-0.103699,-0.215942,-0.306061,-0.360016,-0.368896,-0.331329,-0.255402,-0.156067,-0.0480347,0.057373,0.14859,0.217834,0.254761,0.254456,0.213623,0.136749,0.0431824,-0.0473938,-0.116302,-0.158417,-0.174316,-0.163727,-0.117889,-0.0330505,0.0863953,0.225616,0.356445,0.455139,0.514526,0.533417,0.515778,0.45871,0.363129,0.232788,0.0821838,-0.0697021,-0.203644,-0.306061,-0.36969,-0.39621,-0.391998,-0.36142,-0.31012,-0.242462,-0.165131,-0.0937195,-0.0388184,-0.00857544,-0.00311279,-0.0151367,-0.0322876,-0.0522461,-0.0745239,-0.0979309,-0.116791,-0.121918,-0.107727,-0.0739136,-0.0286865,0.0182495,0.0589294,0.090271,0.113342,0.128784,0.135345,0.127533,0.106323,0.0745239,0.0394592,0.00497437,-0.0244751,-0.0473938,-0.0662537,-0.0826416,-0.0951233,-0.103851,-0.106812,-0.104309,-0.0977478,-0.0901184,-0.0810852,-0.0729675,-0.0620422,-0.04599,-0.0219727,0.00360107,0.031189,0.0581665,0.086853,0.116943,0.145782,0.171661,0.190063,0.200836,0.204895,0.202545,0.196136,0.183838,0.1698,0.149994,0.125824,0.0977478,0.0668945,0.0366516,0.00857544,-0.0165405,-0.040863,-0.0625305,-0.079834,-0.0882568,-0.0895081,-0.0818481,-0.0706177,-0.054718,-0.036499,-0.0169983,0.00234985,0.019165,0.0319519,0.0396118,0.0427246,0.0394592,0.0332031,0.0249329,0.0169983,0.0116882,0.00997925,0.0115356,0.0157471,0.0230713,0.0319519,0.0424194,0.0480347,0.0473938,0.0402222,0.0232239,0.00125122,-0.026825,-0.0561218,-0.0887146,-0.121613,-0.152008,-0.173859,-0.187561,-0.190857,-0.185394,-0.171814,-0.15094,-0.122711,-0.0907593,-0.0569153,-0.0249329,0.00515747,0.0307312,0.0497437,0.0640869,0.0718689,0.0760803,0.0765686,0.0736084,0.0671997,0.0589294,0.0502014,0.0428772,0.0371094,0.0277405,0.0190125,0.00778198,-0.0015564,-0.0102844,-0.0173035,-0.0255737,-0.0368042,-0.0491028,-0.0609741,-0.0726624,-0.0805969,-0.0891724,-0.0971375,-0.105713,-0.113342,-0.119598,-0.122253,-0.123505,-0.120697,-0.1185,-0.114441,-0.109772,-0.101044,-0.091217,-0.0821838,-0.0768738,-0.0785828,-0.0873108,-0.100403,-0.113525,-0.122101,-0.120697,-0.105255,-0.0739136,-0.031189,0.0233765,0.0863953,0.155914,0.232025,0.301849,0.352539,0.369995,0.349121,0.29187,0.210663,0.112274,0.00234985,-0.112427,-0.2211,-0.31012,-0.363464,-0.37265,-0.337097,-0.262878,-0.158722,-0.0403748,0.0799866,0.188965,0.274567,0.329468,0.34491,0.316223,0.249481,0.159973,0.0686035,-0.00952148,-0.0676575,-0.106506,-0.12146,-0.100555,-0.0397644,0.0552063,0.16745,0.2724,0.353485,0.405396,0.423645,0.406799,0.354248,0.266327,0.15155,0.0227661,-0.104767,-0.215637,-0.295471,-0.337738,-0.343811,-0.320404,-0.276123,-0.217499,-0.147644,-0.0740662,-0.00872803,0.0366516,0.0538025,0.046936,0.0233765,-0.00671387,-0.0371094,-0.0668945,-0.0921631,-0.111176,-0.114441,-0.0988464,-0.0646973,-0.0204163,0.0219727,0.0542603,0.0729675,0.0810852,0.0779724,0.0642395,0.0368042,-0.00170898,-0.0444336,-0.0837402,-0.114288,-0.133453,-0.138916,-0.132385,-0.11615,-0.0949707,-0.0708008,-0.0444336,-0.0155945,0.0113831,0.0305481,0.0400696,0.0400696,0.0357056,0.0310364,0.0279236,0.025116,0.0240173,0.0271301,0.037262,0.0559692,0.0791931,0.104156,0.12738,0.150299,0.168549,0.182434,0.190704,0.190704,0.182892,0.165894,0.138153,0.10495,0.0659485,0.0266724,-0.0133972,-0.0502014,-0.0805969,-0.102905,-0.114594,-0.112885,-0.100098,-0.0756226,-0.0431824,-0.006073,0.0319519,0.0664368,0.094635,0.115387,0.125366,0.124268,0.111328,0.0882568,0.0595703,0.0272827,-0.00296021,-0.02948,-0.0455322,-0.0536499,-0.0506592,-0.0422668,-0.0286865,-0.0118408,0.00170898,0.0109253,0.0102844,-0.00140381,-0.0221558,-0.0500488,-0.0827942,-0.115997,-0.148132,-0.175415,-0.193329,-0.198181,-0.188965,-0.168243,-0.137848,-0.103058,-0.0642395,-0.0243225,0.0144958,0.0461426,0.0698547,0.0821838,0.0827942,0.0751648,0.0601807,0.0438232,0.0285339,0.0157471,0.00341797,-0.00561523,-0.0110779,-0.0107727,-0.00466919,0.00466919,0.0119934,0.0160522,0.0152893,0.0113831,0.006073,-0.00265503,-0.0151367,-0.0330505,-0.0495911,-0.0654907,-0.0762329,-0.0816956,-0.0816956,-0.0748291,-0.0640869,-0.0498962,-0.0322876,-0.0133972,0.00561523,0.0223083,0.0327454,0.0349121,0.0300903,0.0199585,0.00778198,-0.00857544,-0.0285339,-0.053009,-0.0801392,-0.109619,-0.138611,-0.16745,-0.195221,-0.223267,-0.247925,-0.265839,-0.268494,-0.247925,-0.204712,-0.148132,-0.0821838,-0.0110779,0.0682983,0.155304,0.241364,0.312775,0.353943,0.354248,0.318237,0.252747,0.172455,0.0802917,-0.0166931,-0.114441,-0.200836,-0.259766,-0.279266,-0.254303,-0.189301,-0.0980835,0.00515747,0.107422,0.200195,0.27536,0.324615,0.336334,0.305603,0.23465,0.138458,0.0369568,-0.0514526,-0.121002,-0.168091,-0.195221,-0.187103,-0.139862,-0.050354,0.0675049,0.18866,0.292816,0.368744,0.414276,0.430023,0.414581,0.365173,0.281738,0.173859,0.0572205,-0.052063,-0.138611,-0.195526,-0.222198,-0.225159,-0.212219,-0.186646,-0.14798,-0.0985413,-0.0500488,-0.0149536,-0.00546265,-0.0180969,-0.0445862,-0.0742188,-0.100098,-0.12442,-0.147034,-0.166199,-0.17337,-0.16153,-0.12973,-0.0863953,-0.042572,-0.00872803,0.0140381,0.0286865,0.0366516,0.0403748,0.0360107,0.0221558,0.0015564,-0.0179443,-0.0314941,-0.0335083,-0.0285339,-0.0166931,-0.00515747,0.00515747,0.010437,0.0152893,0.0193481,0.0195007,0.0132446,-0.00201416,-0.0230713,-0.0453796,-0.0604858,-0.0659485,-0.0629883,-0.053009,-0.0386658,-0.0152893,0.0182495,0.0581665,0.0994873,0.134399,0.162476,0.181641,0.193176,0.197693,0.195831,0.187408,0.171661,0.14798,0.120697,0.0918274,0.0653381,0.0424194,0.0215149,0.00421143,-0.010437,-0.0209045,-0.025116,-0.0212097,-0.0141907,-0.00326538,0.00592041,0.0143433,0.0195007,0.0209045,0.0204163,0.0141907,0.00186157,-0.0169983,-0.0400696,-0.0620422,-0.0818481,-0.0975952,-0.108826,-0.112122,-0.10556,-0.087616,-0.0622253,-0.0324402,-0.00125122,0.0257263,0.0447388,0.0556641,0.0536499,0.0417786,0.0196533,-0.00778198,-0.0386658,-0.0706177,-0.0988464,-0.120361,-0.131134,-0.129883,-0.118958,-0.0993347,-0.0743713,-0.0458374,-0.0177612,0.00637817,0.0247803,0.0339966,0.0357056,0.0303955,0.0173035,-0.00186157,-0.0215149,-0.0379028,-0.0484924,-0.0502014,-0.0450745,-0.033844,-0.0166931,0.0045166,0.0280762,0.0506592,0.0681458,0.0809326,0.085907,0.0840454,0.076416,0.0620422,0.0445862,0.0254211,0.00531006,-0.0118408,-0.0241699,-0.0303955,-0.0307312,-0.025116,-0.0179443,-0.0102844,-0.0045166,0.000610352,0.00265503,0.00219727,-0.00482178,-0.0162048,-0.0314941,-0.047699,-0.0618896,-0.0743713,-0.0865479,-0.0960388,-0.105408,-0.114899,-0.125671,-0.138,-0.15155,-0.169342,-0.189606,-0.211884,-0.235291,-0.258209,-0.27597,-0.284698,-0.273163,-0.23761,-0.176666,-0.0985413,-0.0105896,0.0821838,0.177124,0.271149,0.3591,0.423645,0.449677,0.429871,0.365936,0.273804,0.164978,0.0491028,-0.0687561,-0.180878,-0.27301,-0.330872,-0.344574,-0.312775,-0.239807,-0.139557,-0.0260315,0.0857544,0.184937,0.263184,0.311218,0.322601,0.292206,0.223602,0.13269,0.0386658,-0.0407104,-0.0966797,-0.130981,-0.142517,-0.120697,-0.0601807,0.0380554,0.158569,0.27771,0.375763,0.444855,0.481781,0.484772,0.454346,0.387299,0.28891,0.164795,0.0328979,-0.0930786,-0.195679,-0.268799,-0.308716,-0.32135,-0.313873,-0.287689,-0.244019,-0.18399,-0.120209,-0.0686035,-0.0374146,-0.0255737,-0.0272827,-0.0344543,-0.04599,-0.0595703,-0.076416,-0.0937195,-0.102295,-0.0958862,-0.0734253,-0.0383606,-0.00296021,0.0271301,0.0494385,0.0648499,0.0740662,0.0785828,0.0722046,0.0552063,0.0302429,0.00125122,-0.0238647,-0.044281,-0.0559692,-0.0622253,-0.0643921,-0.0661011,-0.0659485,-0.0626831,-0.054718,-0.0461426,-0.039917,-0.0400696,-0.0439758,-0.0480347,-0.0489502,-0.0441284,-0.0368042,-0.0265198,-0.0127869,0.00671387,0.0339966,0.0667419,0.0988464,0.129425,0.154053,0.172913,0.185394,0.192261,0.193024,0.187561,0.171661,0.146576,0.114594,0.08078,0.0472412,0.0141907,-0.0176086,-0.0461426,-0.069397,-0.086853,-0.094635,-0.092926,-0.0838928,-0.0695496,-0.0511475,-0.0330505,-0.0135803,0.00390625,0.0190125,0.0288391,0.0321045,0.0258789,0.0132446,-0.00125122,-0.0171509,-0.0339966,-0.0498962,-0.0612793,-0.0643921,-0.0603333,-0.0452271,-0.0237122,0.00109863,0.025116,0.0450745,0.0601807,0.0689087,0.0690613,0.0584717,0.0393066,0.0119934,-0.0185547,-0.0498962,-0.0773315,-0.0991516,-0.112427,-0.119904,-0.116791,-0.106018,-0.0865479,-0.0632935,-0.0380554,-0.0146484,0.00576782,0.0199585,0.0297852,0.0341492,0.0352478,0.0322876,0.0263367,0.0209045,0.0185547,0.0198059,0.0237122,0.0280762,0.0321045,0.0343018,0.0347595,0.0352478,0.0328979,0.0296326,0.0209045,0.00872803,-0.00390625,-0.014801,-0.0224609,-0.0265198,-0.0263367,-0.0233765,-0.0185547,-0.00982666,0.000610352,0.0112305,0.0182495,0.019165,0.0129395,0.0015564,-0.0154419,-0.0360107,-0.0572205,-0.0784302,-0.0960388,-0.108368,-0.113342,-0.109619,-0.0968323,-0.0795288,-0.0598755,-0.0417786,-0.0260315,-0.0157471,-0.0116882,-0.0180969,-0.036499,-0.0661011,-0.106812,-0.151245,-0.196625,-0.240417,-0.279266,-0.310913,-0.331024,-0.335083,-0.313568,-0.264282,-0.191772,-0.103363,-0.00778198,0.0899658,0.185394,0.277374,0.359711,0.422089,0.449219,0.435028,0.379517,0.295319,0.195984,0.091217,-0.0168457,-0.119904,-0.21048,-0.270691,-0.290649,-0.266479,-0.204254,-0.116638,-0.014801,0.0874634,0.182587,0.262573,0.317139,0.339294,0.321808,0.266327,0.184448,0.0923157,0.00701904,-0.0626831,-0.116791,-0.151703,-0.158417,-0.127228,-0.0558167,0.046936,0.157959,0.259766,0.343353,0.403198,0.437347,0.442657,0.411957,0.344421,0.24588,0.129883,0.00842285,-0.101807,-0.189758,-0.249939,-0.285187,-0.299835,-0.294525,-0.268036,-0.216736,-0.152649,-0.0910645,-0.0453796,-0.0182495,-0.00531006,-0.00326538,-0.0090332,-0.0243225,-0.0480347,-0.0785828,-0.106812,-0.124115,-0.125671,-0.112885,-0.0927734,-0.0714111,-0.0508423,-0.0313416,-0.010437,0.00997925,0.0261841,0.0330505,0.0305481,0.0216675,0.00857544,-0.00421143,-0.0138855,-0.0235291,-0.0330505,-0.0450745,-0.0561218,-0.0645447,-0.069397,-0.0684509,-0.0665894,-0.0664368,-0.0675049,-0.0676575,-0.0628357,-0.0531616,-0.038208,-0.0216675,-0.00466919,0.0163574,0.0405273,0.0687561,0.0965271,0.122101,0.141113,0.15451,0.16217,0.16449,0.164185,0.160583,0.150452,0.134247,0.11319,0.0895081,0.0661011,0.0441284,0.0224609,0.00296021,-0.0149536,-0.0289917,-0.0389709,-0.0430298,-0.0428772,-0.0386658,-0.0325928,-0.0255737,-0.0162048,-0.00701904,0.00326538,0.0112305,0.0162048,0.0168457,0.0107727,0.00341797,-0.00671387,-0.0187073,-0.0313416,-0.0441284,-0.0516052,-0.0517578,-0.0441284,-0.0305481,-0.0129395,0.00637817,0.0272827,0.046936,0.063446,0.0739136,0.0717163,0.0604858,0.0403748,0.0151367,-0.0140381,-0.04599,-0.0767212,-0.104462,-0.126129,-0.137207,-0.137207,-0.12442,-0.102905,-0.0768738,-0.0461426,-0.0158997,0.0135803,0.0369568,0.054718,0.0626831,0.0601807,0.0478821,0.0305481,0.0123291,-0.00561523,-0.0232239,-0.0360107,-0.0458374,-0.0480347,-0.0427246,-0.0288391,-0.00918579,0.0112305,0.0319519,0.0491028,0.0623779,0.0700073,0.0709534,0.0637817,0.0483398,0.0272827,0.00390625,-0.0193481,-0.0379028,-0.0516052,-0.0611267,-0.0676575,-0.0692139,-0.0653381,-0.0564575,-0.0438232,-0.0324402,-0.0224609,-0.0160522,-0.0121765,-0.00827026,-0.00466919,-0.0015564,-0.00125122,-0.00311279,-0.00686646,-0.0119934,-0.0176086,-0.0224609,-0.02948,-0.0397644,-0.0533142,-0.0708008,-0.0863953,-0.1026,-0.117096,-0.131287,-0.145477,-0.158722,-0.166046,-0.170746,-0.171967,-0.174622,-0.178986,-0.182129,-0.176025,-0.157623,-0.124573,-0.0802917,-0.0308838,0.0241699,0.0843506,0.150299,0.220947,0.284882,0.331635,0.35083,0.338196,0.298279,0.237152,0.163727,0.0816956,-0.00656128,-0.0933838,-0.167938,-0.217987,-0.232635,-0.211578,-0.16153,-0.0932312,-0.0162048,0.0615845,0.135651,0.197876,0.238861,0.249329,0.224365,0.171967,0.105713,0.0400696,-0.0154419,-0.0578613,-0.0877686,-0.09729,-0.0784302,-0.0261841,0.0556641,0.149536,0.238556,0.310425,0.359558,0.383728,0.382629,0.351135,0.290161,0.201141,0.096344,-0.0112305,-0.107574,-0.179138,-0.224213,-0.242157,-0.241211,-0.225616,-0.195374,-0.150787,-0.0966797,-0.0491028,-0.0201111,-0.0127869,-0.0237122,-0.0420837,-0.0639343,-0.0879517,-0.11087,-0.134552,-0.149689,-0.15094,-0.13269,-0.0993347,-0.0595703,-0.0201111,0.0112305,0.0346069,0.0498962,0.0576782,0.0559692,0.0417786,0.0182495,-0.0101318,-0.0394592,-0.0623779,-0.077179,-0.0821838,-0.0838928,-0.0804443,-0.0740662,-0.0639343,-0.0522461,-0.0403748,-0.0313416,-0.0282288,-0.0313416,-0.0369568,-0.042572,-0.0439758,-0.0431824,-0.0385132,-0.0293274,-0.0152893,0.00747681,0.037262,0.0714111,0.105713,0.135345,0.158875,0.173859,0.183197,0.184937,0.180542,0.166687,0.144531,0.116791,0.087616,0.0580139,0.0322876,0.00857544,-0.0115356,-0.0280762,-0.0391235,-0.0450745,-0.0445862,-0.0397644,-0.0330505,-0.0254211,-0.0158997,-0.00622559,0.00482178,0.0137329,0.0195007,0.0212097,0.0182495,0.0110779,0.00140381,-0.00857544,-0.0180969,-0.0277405,-0.0375671,-0.0448914,-0.0438232,-0.0343018,-0.0179443,0.00326538,0.0238647,0.0431824,0.0597229,0.0717163,0.0773315,0.0731201,0.0583191,0.0339966,0.00280762,-0.0322876,-0.0668945,-0.0985413,-0.123657,-0.140167,-0.147034,-0.141876,-0.127228,-0.104004,-0.0750122,-0.042572,-0.0119934,0.0141907,0.033844,0.0475464,0.0523987,0.0495911,0.0386658,0.0237122,0.00701904,-0.0090332,-0.0219727,-0.0296326,-0.0321045,-0.0285339,-0.0196533,-0.00656128,0.00842285,0.0260315,0.0411682,0.053009,0.0583191,0.0566101,0.0478821,0.033844,0.0157471,-0.00280762,-0.0209045,-0.0369568,-0.0492859,-0.0580139,-0.0592651,-0.0545654,-0.044281,-0.0293274,-0.0144958,-0.000793457,0.00997925,0.0184021,0.0229187,0.0258789,0.0241699,0.0190125,0.0123291,0.006073,0.00201416,0.000457764,0,0.000457764,0.00234985,0.00296021,0.00140381,-0.00265503,-0.0102844,-0.0215149,-0.0344543,-0.052063,-0.0712585,-0.0924683,-0.113342,-0.130829,-0.14502,-0.158264,-0.1698,-0.180878,-0.189453,-0.198486,-0.207062,-0.212524,-0.211121,-0.19458,-0.161987,-0.116638,-0.0622253,0.000152588,0.0681458,0.143768,0.224213,0.298279,0.353302,0.376709,0.368286,0.32666,0.26413,0.184601,0.09198,-0.00811768,-0.107117,-0.191162,-0.24823,-0.269287,-0.254303,-0.208466,-0.142212,-0.0614319,0.0223083,0.102905,0.170563,0.216736,0.231384,0.212982,0.169006,0.109619,0.0487976,-0.00576782,-0.0502014,-0.0823364,-0.0918274,-0.0736084,-0.0233765,0.0583191,0.149231,0.238708,0.313873,0.370636,0.403381,0.409607,0.386688,0.331635,0.247772,0.144684,0.0346069,-0.0670471,-0.150299,-0.209869,-0.247437,-0.265991,-0.268188,-0.253693,-0.219055,-0.172913,-0.127686,-0.0955811,-0.0765686,-0.0678406,-0.0643921,-0.0643921,-0.0678406,-0.0740662,-0.0816956,-0.0856018,-0.0782776,-0.0604858,-0.0336914,-0.00405884,0.0216675,0.0383606,0.0473938,0.0494385,0.0455322,0.036499,0.0182495,-0.00561523,-0.0321045,-0.0567627,-0.0742188,-0.081543,-0.0818481,-0.0779724,-0.0726624,-0.0668945,-0.0586243,-0.0505066,-0.044281,-0.0407104,-0.0445862,-0.0527039,-0.0636292,-0.0712585,-0.0748291,-0.0728149,-0.0656433,-0.0523987,-0.0313416,-0.000793457,0.0379028,0.0791931,0.120697,0.157318,0.184937,0.204254,0.215027,0.217834,0.212067,0.195374,0.169342,0.13504,0.0982361,0.0612793,0.026825,-0.00360107,-0.0317993,-0.0559692,-0.0723572,-0.083252,-0.0846558,-0.081543,-0.0732727,-0.0629883,-0.0513,-0.0375671,-0.0219727,-0.00592041,0.0093689,0.0201111,0.0277405,0.0314941,0.0339966,0.0335083,0.0293274,0.0226135,0.0152893,0.00982666,0.00888062,0.0119934,0.0195007,0.0291443,0.040863,0.0517578,0.0584717,0.0626831,0.0606384,0.0523987,0.0361633,0.0110779,-0.0180969,-0.0495911,-0.0788879,-0.105408,-0.126465,-0.141724,-0.148438,-0.145782,-0.130981,-0.110535,-0.085144,-0.0586243,-0.0324402,-0.00952148,0.00778198,0.0196533,0.0241699,0.0249329,0.0204163,0.0138855,0.00762939,0.00326538,0.00421143,0.0090332,0.0174561,0.0277405,0.0377197,0.0502014,0.0587769,0.065033,0.0646973,0.0575256,0.0445862,0.0265198,0.00686646,-0.0151367,-0.0371094,-0.0562744,-0.0700073,-0.0768738,-0.0751648,-0.0651855,-0.0492859,-0.0289917,-0.00827026,0.0118408,0.0297852,0.042572,0.0497437,0.0491028,0.0427246,0.0328979,0.0213623,0.0101318,0.00140381,-0.00436401,-0.00622559,-0.00421143,0.00341797,0.013092,0.0241699,0.0328979,0.038208,0.038208,0.0327454,0.0195007,-0.00140381,-0.026825,-0.0566101,-0.0877686,-0.119446,-0.147644,-0.171051,-0.189453,-0.202545,-0.211578,-0.219543,-0.226074,-0.231689,-0.233246,-0.225922,-0.205505,-0.170258,-0.12677,-0.0731201,-0.0115356,0.0598755,0.138458,0.221252,0.295319,0.352234,0.380615,0.377655,0.343964,0.284393,0.204254,0.107574,0.000457764,-0.107727,-0.200989,-0.268341,-0.300446,-0.297668,-0.261017,-0.198792,-0.116486,-0.0237122,0.0664368,0.14502,0.201141,0.226562,0.220795,0.186005,0.131744,0.0690613,0.00918579,-0.0438232,-0.0823364,-0.100098,-0.0871582,-0.0417786,0.0360107,0.130341,0.225006,0.307617,0.374664,0.419128,0.436096,0.419586,0.364868,0.277222,0.168854,0.0533142,-0.0562744,-0.150635,-0.222198,-0.268494,-0.290955,-0.290009,-0.265839,-0.225311,-0.170563,-0.115082,-0.0706177,-0.0428772,-0.0285339,-0.0243225,-0.0279236,-0.0396118,-0.0567627,-0.0745239,-0.0888672,-0.0921631,-0.08078,-0.0576782,-0.0271301,0.00341797,0.0303955,0.0516052,0.0668945,0.073761,0.0732727,0.0595703,0.0363159,0.00482178,-0.0271301,-0.0553589,-0.0774841,-0.09198,-0.101654,-0.108215,-0.109314,-0.106018,-0.09729,-0.0857544,-0.0760803,-0.0703125,-0.0682983,-0.0675049,-0.0667419,-0.0629883,-0.0569153,-0.0470886,-0.0344543,-0.0169983,0.00747681,0.0388184,0.073761,0.108368,0.139557,0.163727,0.18103,0.190857,0.193024,0.188354,0.17572,0.153412,0.125366,0.0933838,0.0606384,0.031189,0.00466919,-0.0182495,-0.0391235,-0.0578613,-0.0690613,-0.0743713,-0.0734253,-0.0697021,-0.0643921,-0.0552063,-0.0453796,-0.0313416,-0.0169983,-0.000610352,0.013092,0.0254211,0.0343018,0.0407104,0.0439758,0.043335,0.0397644,0.0350952,0.0302429,0.0263367,0.0263367,0.0297852,0.0371094,0.0453796,0.0533142,0.0578613,0.0587769,0.0561218,0.0480347,0.0317993,0.00778198,-0.0219727,-0.0545654,-0.0856018,-0.110718,-0.129272,-0.139252,-0.140961,-0.133301,-0.113831,-0.0865479,-0.0544128,-0.0209045,0.00857544,0.0319519,0.0456848,0.052063,0.0495911,0.0407104,0.0244751,0.00546265,-0.0143433,-0.0291443,-0.0388184,-0.0386658,-0.0314941,-0.0179443,0.000305176,0.0209045,0.0422668,0.0608215,0.0742188,0.0813904,0.0768738,0.0653381,0.0453796,0.0196533,-0.00982666,-0.0386658,-0.0661011,-0.0873108,-0.100891,-0.104614,-0.0975952,-0.0818481,-0.0580139,-0.0282288,0.00201416,0.0316467,0.0576782,0.0779724,0.091217,0.0971375,0.0949707,0.0845032,0.069397,0.0491028,0.0289917,0.00952148,-0.00717163,-0.0212097,-0.0324402,-0.0405273,-0.0444336,-0.0453796,-0.0438232,-0.040863,-0.040863,-0.0430298,-0.0475464,-0.053009,-0.0608215,-0.0708008,-0.0838928,-0.100403,-0.121002,-0.143616,-0.168396,-0.193512,-0.219391,-0.241669,-0.256653,-0.257568,-0.239655,-0.202698,-0.147491,-0.0773315,0.00360107,0.0938721,0.185547,0.276123,0.351929,0.402283,0.416168,0.393066,0.334442,0.249481,0.146423,0.0296326,-0.0893555,-0.199585,-0.287506,-0.341461,-0.354706,-0.326813,-0.263672,-0.175415,-0.0731201,0.0317993,0.128937,0.208466,0.261627,0.279724,0.260376,0.211884,0.14328,0.0706177,0.000793457,-0.0589294,-0.101349,-0.117096,-0.0991516,-0.0473938,0.0317993,0.124573,0.217499,0.302948,0.368896,0.408508,0.416321,0.389648,0.330383,0.242767,0.135803,0.0213623,-0.0871582,-0.177277,-0.243866,-0.285187,-0.303894,-0.300446,-0.273804,-0.227966,-0.172607,-0.11554,-0.0695496,-0.0363159,-0.0126343,0.000305176,0.00466919,0.00265503,-0.0045166,-0.0152893,-0.0246277,-0.0258789,-0.0182495,-0.0045166,0.0093689,0.0223083,0.0293274,0.0325928,0.031189,0.0255737,0.0137329,-0.00341797,-0.0243225,-0.0464783,-0.0664368,-0.0804443,-0.0871582,-0.0884094,-0.0871582,-0.0848083,-0.0818481,-0.0762329,-0.0700073,-0.0648499,-0.0632935,-0.0668945,-0.0725098,-0.0776367,-0.0782776,-0.0734253,-0.0629883,-0.0462952,-0.0244751,0.00421143,0.0380554,0.0779724,0.116943,0.153748,0.182739,0.201447,0.21048,0.209259,0.199432,0.180542,0.153595,0.117889,0.0790405,0.0394592,0.00375366,-0.0282288,-0.0538025,-0.0729675,-0.0860596,-0.0927734,-0.0923157,-0.0843506,-0.0715637,-0.0572205,-0.0410156,-0.0244751,-0.00747681,0.00997925,0.0266724,0.0397644,0.0492859,0.0534668,0.0553589,0.0516052,0.0447388,0.0341492,0.0240173,0.0141907,0.00762939,0.00592041,0.00717163,0.0149536,0.0261841,0.0400696,0.0528564,0.0622253,0.0664368,0.0640869,0.0533142,0.0330505,0.00515747,-0.0277405,-0.0626831,-0.0955811,-0.125977,-0.147827,-0.159668,-0.159515,-0.145935,-0.121002,-0.0910645,-0.0570679,-0.0224609,0.0115356,0.0385132,0.0578613,0.0671997,0.0671997,0.059082,0.04599,0.031189,0.0163574,0.00482178,-0.00360107,-0.00717163,-0.00531006,0.00186157,0.0121765,0.0254211,0.0374146,0.0456848,0.0489502,0.046936,0.0394592,0.0283813,0.0115356,-0.00827026,-0.0300903,-0.0498962,-0.0648499,-0.0715637,-0.0703125,-0.0626831,-0.0502014,-0.0324402,-0.00967407,0.0146484,0.0377197,0.0567627,0.0695496,0.0767212,0.0765686,0.0712585,0.0609741,0.0473938,0.0319519,0.0165405,0.00326538,-0.00778198,-0.0149536,-0.0193481,-0.0188599,-0.0190125,-0.0171509,-0.0190125,-0.0216675,-0.0280762,-0.0371094,-0.0491028,-0.0639343,-0.0818481,-0.0983887,-0.114746,-0.126129,-0.136444,-0.144379,-0.152954,-0.161072,-0.171356,-0.181946,-0.193024,-0.200989,-0.201904,-0.194916,-0.174316,-0.142822,-0.0969849,-0.0403748,0.0279236,0.102753,0.180237,0.252136,0.310608,0.344574,0.350677,0.324615,0.269287,0.19101,0.0947876,-0.00918579,-0.11319,-0.205505,-0.27536,-0.314331,-0.315735,-0.282684,-0.217987,-0.132843,-0.0346069,0.0609741,0.146088,0.211731,0.251648,0.262268,0.241516,0.197235,0.136261,0.0709534,0.0105896,-0.036499,-0.065033,-0.0673523,-0.0420837,0.0105896,0.0837402,0.163239,0.239502,0.302185,0.348175,0.367035,0.357849,0.316833,0.247925,0.159515,0.0608215,-0.0383606,-0.127533,-0.198181,-0.246521,-0.270996,-0.273651,-0.256958,-0.223114,-0.177429,-0.128326,-0.0804443,-0.0441284,-0.0199585,-0.00701904,-0.00326538,-0.00656128,-0.0146484,-0.0249329,-0.033844,-0.037262,-0.0325928,-0.0209045,-0.00341797,0.0143433,0.0285339,0.0386658,0.0431824,0.0391235,0.02948,0.0119934,-0.0118408,-0.0388184,-0.065033,-0.087616,-0.104156,-0.11319,-0.11615,-0.114136,-0.108215,-0.09729,-0.0865479,-0.0731201,-0.0625305,-0.0538025,-0.0481873,-0.0447388,-0.040863,-0.0349121,-0.0252686,-0.0116882,0.00561523,0.0272827,0.0531616,0.0826416,0.113831,0.14267,0.166046,0.181793,0.188049,0.186157,0.176971,0.160583,0.136749,0.108673,0.0759277,0.043335,0.0113831,-0.0152893,-0.0368042,-0.0534668,-0.0653381,-0.0732727,-0.076416,-0.0753174,-0.0703125,-0.0628357,-0.0538025,-0.0455322,-0.0358582,-0.0258789,-0.0110779,0.00326538,0.0188599,0.0322876,0.0439758,0.0525513,0.0595703,0.0636292,0.0648499,0.0631409,0.0575256,0.0506592,0.0434875,0.0374146,0.0335083,0.0308838,0.0275879,0.0254211,0.0205688,0.0152893,0.00827026,-0.00311279,-0.0158997,-0.0322876,-0.0514526,-0.0714111,-0.0895081,-0.103699,-0.111938,-0.115082,-0.111023,-0.102142,-0.0870056,-0.0665894,-0.0407104,-0.0158997,0.00762939,0.0261841,0.0411682,0.0498962,0.0542603,0.0544128,0.0506592,0.043335,0.0346069,0.026825,0.0215149,0.0165405,0.0158997,0.0154419,0.0177612,0.0205688,0.0227661,0.0224609,0.0224609,0.019165,0.0135803,0.00482178,-0.00778198,-0.0221558,-0.0352478,-0.0466309,-0.0541077,-0.0592651,-0.0606384,-0.0581665,-0.0487976,-0.035553,-0.0185547,-0.00140381,0.0163574,0.0324402,0.0461426,0.0558167,0.0620422,0.0637817,0.0606384,0.0539551,0.0439758,0.0313416,0.0180969,0.00482178,-0.00857544,-0.0215149,-0.0339966,-0.0453796,-0.057373,-0.0667419,-0.0770264,-0.0862122,-0.0965271,-0.104462,-0.111176,-0.116791,-0.120209,-0.123505,-0.12738,-0.131592,-0.139557,-0.149689,-0.16217,-0.171051,-0.17511,-0.170105,-0.155609,-0.128784,-0.0893555,-0.040863,0.0199585,0.0891724,0.164337,0.233734,0.289062,0.322754,0.329926,0.313568,0.268646,0.201752,0.11554,0.0202637,-0.0748291,-0.161987,-0.230774,-0.272552,-0.280334,-0.256165,-0.206116,-0.138916,-0.0600281,0.0223083,0.101349,0.162933,0.201447,0.211121,0.197693,0.166046,0.124573,0.0757751,0.0275879,-0.0118408,-0.0354004,-0.0346069,-0.00982666,0.0335083,0.0921631,0.156403,0.217041,0.266327,0.298431,0.310272,0.298126,0.260376,0.197083,0.116791,0.0277405,-0.0564575,-0.130035,-0.188049,-0.228271,-0.249481,-0.251648,-0.231689,-0.198486,-0.155914,-0.111938,-0.0715637,-0.0402222,-0.0221558,-0.0132446,-0.00982666,-0.0115356,-0.0188599,-0.0303955,-0.0380554,-0.037262,-0.0272827,-0.0112305,0.00982666,0.0314941,0.050354,0.0629883,0.0704651,0.0701599,0.0626831,0.0458374,0.0210571,-0.0105896,-0.0430298,-0.0718689,-0.0958862,-0.112122,-0.122864,-0.12738,-0.123505,-0.113983,-0.0975952,-0.0804443,-0.0615845,-0.044281,-0.0302429,-0.0177612,-0.00842285,0.00140381,0.0109253,0.0190125,0.0274353,0.0368042,0.0497437,0.065033,0.0820007,0.0997925,0.115692,0.129272,0.137848,0.142822,0.144684,0.139862,0.130829,0.111481,0.0895081,0.0614319,0.0330505,0.00341797,-0.0243225,-0.0514526,-0.0742188,-0.0940247,-0.106812,-0.112427,-0.110718,-0.10321,-0.0873108,-0.0676575,-0.0445862,-0.0184021,0.0093689,0.035553,0.0584717,0.0736084,0.0827942,0.0852966,0.0801392,0.0698547,0.0539551,0.0361633,0.0190125,0.00497437,-0.00421143,-0.00686646,-0.00375366,0.00421143,0.0152893,0.0277405,0.0389709,0.0466309,0.0472412,0.0397644,0.0243225,0.0015564,-0.0275879,-0.0584717,-0.0881042,-0.113678,-0.131287,-0.138153,-0.132233,-0.11554,-0.0890198,-0.0559692,-0.0196533,0.0174561,0.0513,0.078125,0.0961914,0.102142,0.096344,0.0823364,0.0618896,0.0386658,0.0157471,-0.00576782,-0.0229187,-0.0344543,-0.038208,-0.0330505,-0.0221558,-0.00637817,0.0090332,0.0230713,0.0322876,0.037262,0.0363159,0.0299377,0.0168457,0.000305176,-0.0199585,-0.0388184,-0.0539551,-0.0643921,-0.0684509,-0.0670471,-0.0609741,-0.0483398,-0.0322876,-0.0132446,0.00747681,0.0244751,0.0386658,0.0466309,0.0495911,0.0484924,0.0436707,0.0344543,0.0221558,0.0090332,-0.006073,-0.0185547,-0.0303955,-0.0405273,-0.0500488,-0.0603333,-0.071106,-0.0818481,-0.0915222,-0.100403,-0.108826,-0.116791,-0.125061,-0.134094,-0.142365,-0.149384,-0.155304,-0.159515,-0.161072,-0.157471,-0.14563,-0.126617,-0.0971375,-0.0587769,-0.013092,0.0368042,0.0921631,0.147827,0.200195,0.242157,0.265991,0.27005,0.252747,0.216431,0.163239,0.0960388,0.0226135,-0.050354,-0.116486,-0.168091,-0.19989,-0.204254,-0.18335,-0.142059,-0.088562,-0.0279236,0.0335083,0.0901184,0.135345,0.160767,0.165436,0.150146,0.120697,0.0829468,0.0431824,0.00637817,-0.0202637,-0.0322876,-0.026825,-0.00265503,0.0386658,0.0890198,0.148285,0.203949,0.247589,0.273163,0.280823,0.269897,0.237152,0.184937,0.116302,0.0397644,-0.0344543,-0.100403,-0.152649,-0.190521,-0.211426,-0.216888,-0.205963,-0.181183,-0.148743,-0.115082,-0.0821838,-0.0544128,-0.0358582,-0.0285339,-0.0257263,-0.0254211,-0.0282288,-0.0346069,-0.0410156,-0.0407104,-0.0327454,-0.0215149,-0.00576782,0.0101318,0.0257263,0.037262,0.0411682,0.0414734,0.0352478,0.0247803,0.00796509,-0.0132446,-0.0360107,-0.0545654,-0.0681458,-0.0778198,-0.0829468,-0.0829468,-0.079834,-0.0732727,-0.0645447,-0.0531616,-0.0441284,-0.0360107,-0.0314941,-0.026825,-0.0226135,-0.0184021,-0.0112305,-0.000610352,0.0110779,0.0237122,0.0393066,0.0604858,0.0823364,0.104462,0.122711,0.138306,0.147827,0.152496,0.151093,0.144836,0.131439,0.111023,0.085144,0.0569153,0.0271301,-0.000946045,-0.0277405,-0.0513,-0.0704651,-0.084198,-0.0918274,-0.0930786,-0.0867004,-0.0759277,-0.0601807,-0.0417786,-0.0215149,0.000610352,0.0212097,0.0396118,0.0542603,0.0636292,0.0642395,0.0603333,0.0509949,0.039917,0.0246277,0.00701904,-0.00888062,-0.0212097,-0.0274353,-0.0285339,-0.0227661,-0.0115356,0.00170898,0.0157471,0.0285339,0.0386658,0.0439758,0.0410156,0.0296326,0.00997925,-0.0158997,-0.0445862,-0.0723572,-0.0951233,-0.112885,-0.122101,-0.12085,-0.109467,-0.088562,-0.0575256,-0.0229187,0.0123291,0.0445862,0.0704651,0.0891724,0.0982361,0.0985413,0.0899658,0.073761,0.0511475,0.0266724,0.00360107,-0.0141907,-0.0275879,-0.035553,-0.0358582,-0.0314941,-0.0233765,-0.0121765,0.000946045,0.0112305,0.0195007,0.0213623,0.0190125,0.0132446,0.00296021,-0.00872803,-0.0202637,-0.0300903,-0.0377197,-0.0427246,-0.0431824,-0.0386658,-0.0308838,-0.0201111,-0.0107727,-0.0015564,0.00592041,0.00952148,0.00967407,0.00622559,0.000793457,-0.00762939,-0.0160522,-0.025116,-0.0316467,-0.0385132,-0.0444336,-0.0495911,-0.054718,-0.0604858,-0.0676575,-0.0767212,-0.0896606,-0.104767,-0.124268,-0.14624,-0.168549,-0.188965,-0.201447,-0.204102,-0.192108,-0.168091,-0.131592,-0.0816956,-0.0198059,0.0492859,0.121918,0.189606,0.247284,0.285187,0.299835,0.290649,0.258667,0.204407,0.133301,0.0495911,-0.036499,-0.115387,-0.177582,-0.217834,-0.231079,-0.214691,-0.174164,-0.112579,-0.0393066,0.0375671,0.110382,0.169495,0.207367,0.218292,0.205048,0.17276,0.12677,0.0715637,0.0160522,-0.0352478,-0.0708008,-0.0843506,-0.0722046,-0.0396118,0.0105896,0.0689087,0.134247,0.196472,0.246368,0.276764,0.284882,0.27005,0.233887,0.17572,0.103851,0.0263367,-0.0462952,-0.108673,-0.157623,-0.191467,-0.20816,-0.206451,-0.186005,-0.152344,-0.115234,-0.0810852,-0.0513,-0.0249329,-0.00622559,-0.00125122,-0.00561523,-0.0157471,-0.0282288,-0.0439758,-0.0572205,-0.0639343,-0.0623779,-0.0550537,-0.0447388,-0.0314941,-0.0140381,0.000946045,0.0118408,0.0174561,0.0173035,0.0118408,0.0015564,-0.0143433,-0.0314941,-0.0478821,-0.0603333,-0.0701599,-0.0762329,-0.0785828,-0.0742188,-0.0665894,-0.0559692,-0.0439758,-0.0313416,-0.0205688,-0.0110779,-0.00109863,0.00827026,0.0146484,0.0199585,0.0257263,0.0335083,0.0410156,0.0492859,0.0580139,0.0679932,0.0785828,0.0865479,0.094635,0.101807,0.106964,0.109772,0.109131,0.106659,0.0991516,0.0884094,0.0753174,0.0600281,0.0428772,0.0224609,0.00109863,-0.0184021,-0.0360107,-0.0491028,-0.0597229,-0.0643921,-0.063446,-0.0548706,-0.0420837,-0.0233765,-0.00280762,0.0193481,0.0394592,0.0559692,0.0682983,0.0739136,0.0712585,0.0611267,0.0438232,0.0233765,-0.000305176,-0.0226135,-0.041626,-0.0536499,-0.0595703,-0.0581665,-0.0513,-0.037262,-0.0190125,-0.00250244,0.0121765,0.0218201,0.0244751,0.0188599,0.00592041,-0.0129395,-0.0349121,-0.059082,-0.0793762,-0.0952759,-0.103546,-0.10321,-0.0924683,-0.0745239,-0.0513,-0.0229187,0.00531006,0.033844,0.0555115,0.0706177,0.0785828,0.0782776,0.0708008,0.0572205,0.0411682,0.0238647,0.00531006,-0.0090332,-0.0202637,-0.0272827,-0.0305481,-0.0282288,-0.0221558,-0.0154419,-0.00717163,-0.000793457,0.00561523,0.00811768,0.0090332,0.00778198,0.00497437,0,-0.00656128,-0.0123291,-0.0165405,-0.0193481,-0.0202637,-0.019165,-0.0158997,-0.0126343,-0.0093689,-0.00732422,-0.00622559,-0.00576782,-0.00762939,-0.0116882,-0.0180969,-0.0260315,-0.0347595,-0.0445862,-0.0545654,-0.0637817,-0.073761,-0.0837402,-0.094635,-0.105865,-0.117889,-0.132233,-0.147491,-0.163574,-0.173065,-0.176971,-0.169495,-0.15155,-0.12085,-0.0779724,-0.0243225,0.0358582,0.101959,0.165894,0.222656,0.264435,0.283936,0.280029,0.250885,0.201752,0.134247,0.0544128,-0.0279236,-0.10495,-0.169647,-0.213623,-0.232025,-0.220154,-0.181488,-0.123016,-0.0548706,0.0184021,0.0882568,0.14798,0.18866,0.203949,0.194275,0.16449,0.122101,0.0731201,0.0227661,-0.0212097,-0.0519104,-0.0611267,-0.048645,-0.0163574,0.0319519,0.0890198,0.151703,0.208771,0.253052,0.274902,0.275665,0.2565,0.217651,0.160431,0.086853,0.00747681,-0.0643921,-0.124878,-0.169952,-0.2005,-0.215485,-0.213623,-0.19458,-0.163086,-0.124725,-0.088562,-0.0542603,-0.0255737,-0.00280762,0.0093689,0.0143433,0.0155945,0.0129395,0.006073,-0.00405884,-0.0112305,-0.014801,-0.0177612,-0.0196533,-0.0213623,-0.0212097,-0.0227661,-0.0269775,-0.0314941,-0.0363159,-0.039917,-0.0438232,-0.0497437,-0.0556641,-0.057373,-0.0559692,-0.0528564,-0.0511475,-0.0502014,-0.0502014,-0.0481873,-0.0487976,-0.0484924,-0.050354,-0.0508423,-0.0505066,-0.0456848,-0.0363159,-0.0233765,-0.00701904,0.0126343,0.0371094,0.0611267,0.0843506,0.104309,0.121002,0.134399,0.140656,0.139404,0.131592,0.120514,0.104767,0.088562,0.0700073,0.0517578,0.0336914,0.0187073,0.00561523,-0.00341797,-0.0118408,-0.0176086,-0.0229187,-0.0255737,-0.0258789,-0.025116,-0.0230713,-0.0174561,-0.0102844,0.000305176,0.0129395,0.0258789,0.0410156,0.0525513,0.0620422,0.0682983,0.0701599,0.0665894,0.0584717,0.0456848,0.0308838,0.0138855,-0.00234985,-0.0185547,-0.0297852,-0.0371094,-0.0391235,-0.0379028,-0.0350952,-0.0283813,-0.0227661,-0.0188599,-0.0171509,-0.0190125,-0.0255737,-0.0352478,-0.0445862,-0.0550537,-0.0637817,-0.0704651,-0.0739136,-0.0720215,-0.0648499,-0.0528564,-0.0391235,-0.0237122,-0.00762939,0.00842285,0.0224609,0.0325928,0.0385132,0.0400696,0.0391235,0.0339966,0.0263367,0.0177612,0.00997925,0.00250244,-0.00546265,-0.0113831,-0.0163574,-0.0198059,-0.0223083,-0.0232239,-0.0238647,-0.0252686,-0.0265198,-0.0274353,-0.0265198,-0.0269775,-0.0260315,-0.0246277,-0.0240173,-0.0218201,-0.0199585,-0.0160522,-0.0129395,-0.00982666,-0.00762939,-0.00701904,-0.00796509,-0.00997925,-0.0135803,-0.0177612,-0.0246277,-0.0343018,-0.0462952,-0.0583191,-0.0703125,-0.0809326,-0.09198,-0.103546,-0.117401,-0.131744,-0.148132,-0.160278,-0.167297,-0.162476,-0.152008,-0.131287,-0.0997925,-0.0553589,-0.000610352,0.0604858,0.126465,0.188354,0.240112,0.273499,0.286102,0.276611,0.246368,0.194122,0.123169,0.0420837,-0.0388184,-0.110077,-0.166992,-0.201904,-0.209717,-0.188965,-0.143921,-0.0827942,-0.0124817,0.0598755,0.125061,0.174469,0.19928,0.198486,0.174957,0.134857,0.0845032,0.0289917,-0.0240173,-0.0659485,-0.0888672,-0.085144,-0.0597229,-0.0140381,0.0428772,0.108368,0.173218,0.229218,0.265686,0.281586,0.272552,0.241058,0.18634,0.115387,0.0358582,-0.043335,-0.111023,-0.164337,-0.201599,-0.221405,-0.222809,-0.205505,-0.17276,-0.132385,-0.0933838,-0.0595703,-0.0332031,-0.0112305,-0.00201416,-0.00219727,-0.00857544,-0.0163574,-0.0269775,-0.0386658,-0.0434875,-0.0410156,-0.0322876,-0.0223083,-0.00967407,0.00576782,0.0188599,0.0274353,0.0300903,0.0265198,0.0184021,0.00747681,-0.00811768,-0.0261841,-0.0434875,-0.0544128,-0.0617371,-0.0661011,-0.0689087,-0.0670471,-0.0615845,-0.053009,-0.0458374,-0.0385132,-0.0313416,-0.0252686,-0.0187073,-0.0101318,-0.00125122,0.00796509,0.0171509,0.02948,0.0427246,0.0559692,0.0686035,0.079834,0.0910645,0.100403,0.105408,0.106506,0.104004,0.0999451,0.0943298,0.0852966,0.0742188,0.0611267,0.0472412,0.0321045,0.0176086,0.00296021,-0.0116882,-0.0258789,-0.0377197,-0.0467834,-0.0527039,-0.0548706,-0.0509949,-0.0419312,-0.0291443,-0.0132446,0.00592041,0.0255737,0.044281,0.0592651,0.0708008,0.0774841,0.0778198,0.0723572,0.0604858,0.0450745,0.0286865,0.0129395,-0.000610352,-0.0119934,-0.0182495,-0.0213623,-0.0190125,-0.0154419,-0.00872803,-0.00375366,-0.00341797,-0.00811768,-0.0166931,-0.0283813,-0.041626,-0.0589294,-0.0751648,-0.0888672,-0.096344,-0.0966797,-0.0899658,-0.0757751,-0.0566101,-0.0346069,-0.00982666,0.0146484,0.0375671,0.0534668,0.0623779,0.0636292,0.0581665,0.0467834,0.0336914,0.0177612,0.00311279,-0.0101318,-0.0196533,-0.0240173,-0.0232239,-0.0199585,-0.0146484,-0.00842285,-0.00375366,-0.00311279,-0.00622559,-0.0116882,-0.0235291,-0.0380554,-0.0550537,-0.0726624,-0.0877686,-0.0986938,-0.104767,-0.102753,-0.0947876,-0.08078,-0.0617371,-0.0413208,-0.0195007,-0.00140381,0.0112305,0.0160522,0.0123291,0.000152588,-0.0185547,-0.0461426,-0.0788879,-0.114288,-0.150787,-0.183838,-0.203796,-0.207672,-0.195679,-0.167145,-0.124878,-0.0684509,-0.000946045,0.0739136,0.149689,0.216431,0.268494,0.296417,0.299988,0.277374,0.232788,0.167297,0.0862122,-0.00280762,-0.0887146,-0.161072,-0.211884,-0.236053,-0.229523,-0.194122,-0.133789,-0.0558167,0.0313416,0.117096,0.193512,0.249329,0.277222,0.274719,0.246185,0.195831,0.131897,0.0628357,-0.00497437,-0.0615845,-0.0971375,-0.107117,-0.0915222,-0.0513,0.00466919,0.0726624,0.141266,0.200348,0.243866,0.266632,0.266327,0.239655,0.189301,0.120209,0.040863,-0.0377197,-0.108368,-0.164978,-0.206909,-0.228729,-0.231537,-0.215332,-0.181946,-0.140656,-0.09729,-0.0584717,-0.0254211,0.000152588,0.0127869,0.0157471,0.00982666,-0.0015564,-0.0157471,-0.0328979,-0.0455322,-0.0528564,-0.0556641,-0.0539551,-0.0483398,-0.039917,-0.0321045,-0.0255737,-0.0212097,-0.0205688,-0.0226135,-0.0279236,-0.0347595,-0.0424194,-0.0466309,-0.0484924,-0.0456848,-0.0414734,-0.0354004,-0.0277405,-0.0165405,-0.00622559,0.00201416,0.00701904,0.00982666,0.0116882,0.0132446,0.0151367,0.0166931,0.0195007,0.0237122,0.0316467,0.0411682,0.053009,0.065033,0.0773315,0.0884094,0.0974426,0.10321,0.105103,0.103851,0.0994873,0.0932312,0.083252,0.0709534,0.0562744,0.0414734,0.0260315,0.0109253,-0.00466919,-0.0193481,-0.0319519,-0.041626,-0.047699,-0.050354,-0.0483398,-0.0405273,-0.0269775,-0.00997925,0.00982666,0.0305481,0.0513,0.0689087,0.082489,0.0890198,0.0879517,0.0788879,0.0626831,0.040863,0.0154419,-0.0110779,-0.0357056,-0.0559692,-0.069397,-0.0760803,-0.07547,-0.0678406,-0.0539551,-0.0371094,-0.0204163,-0.00827026,-0.00109863,0.000457764,-0.00466919,-0.0151367,-0.031189,-0.0492859,-0.0682983,-0.0840454,-0.0923157,-0.0918274,-0.0848083,-0.0687561,-0.0472412,-0.0204163,0.00857544,0.0377197,0.0626831,0.0802917,0.0893555,0.0893555,0.0810852,0.0659485,0.0464783,0.0240173,0.000457764,-0.0213623,-0.0386658,-0.0528564,-0.0595703,-0.0608215,-0.0580139,-0.0511475,-0.04599,-0.0396118,-0.0332031,-0.0279236,-0.0260315,-0.0283813,-0.0327454,-0.0383606,-0.0448914,-0.0492859,-0.0531616,-0.0552063,-0.0576782,-0.0592651,-0.0592651,-0.0587769,-0.0609741,-0.0637817,-0.0701599,-0.0805969,-0.0971375,-0.119598,-0.139252,-0.152802,-0.158112,-0.153259,-0.136597,-0.106171,-0.0608215,-0.00405884,0.0631409,0.131439,0.194916,0.245575,0.27536,0.281281,0.261932,0.217987,0.149384,0.0640869,-0.0265198,-0.115234,-0.190369,-0.244476,-0.269897,-0.263672,-0.225159,-0.158875,-0.0742188,0.0195007,0.111328,0.191772,0.251495,0.28067,0.278931,0.247925,0.197235,0.133453,0.0631409,-0.00497437,-0.0583191,-0.0874634,-0.090271,-0.0654907,-0.0199585,0.0424194,0.112885,0.183838,0.242767,0.282379,0.298584,0.287842,0.249939,0.187744,0.108673,0.0205688,-0.0645447,-0.137665,-0.196472,-0.235443,-0.251495,-0.24527,-0.218292,-0.174469,-0.125214,-0.0723572,-0.0246277,0.0179443,0.0467834,0.0623779,0.065033,0.0589294,0.0419312,0.0199585,-0.00515747,-0.0272827,-0.0464783,-0.0615845,-0.0700073,-0.0732727,-0.0706177,-0.0662537,-0.0587769,-0.0522461,-0.0455322,-0.0410156,-0.0388184,-0.039917,-0.0428772,-0.0472412,-0.0497437,-0.0545654,-0.0584717,-0.0640869,-0.0675049,-0.069397,-0.0670471,-0.0629883,-0.0556641,-0.0452271,-0.0291443,-0.00918579,0.0124817,0.0349121,0.0575256,0.0801392,0.0993347,0.115082,0.124878,0.128479,0.128021,0.121918,0.112579,0.0988464,0.0835876,0.0700073,0.0578613,0.048645,0.0407104,0.0344543,0.0288391,0.0241699,0.019165,0.0121765,0.00311279,-0.00827026,-0.0205688,-0.0325928,-0.043335,-0.0491028,-0.0491028,-0.0413208,-0.0271301,-0.00531006,0.020752,0.0505066,0.0793762,0.106171,0.127228,0.139709,0.141113,0.131744,0.110535,0.083252,0.048645,0.0141907,-0.0199585,-0.0481873,-0.0697021,-0.0818481,-0.084198,-0.0799866,-0.0686035,-0.0545654,-0.041626,-0.0297852,-0.0254211,-0.0260315,-0.0339966,-0.046936,-0.0631409,-0.0801392,-0.0961914,-0.10791,-0.112885,-0.109924,-0.0996399,-0.0799866,-0.0555115,-0.0257263,0.00311279,0.0321045,0.0553589,0.0725098,0.08078,0.0802917,0.0731201,0.0586243,0.0400696,0.0176086,-0.00497437,-0.0266724,-0.0455322,-0.0615845,-0.0739136,-0.0810852,-0.085907,-0.0871582,-0.0863953,-0.0857544,-0.0835876,-0.0810852,-0.077179,-0.0748291,-0.0715637,-0.0690613,-0.0659485,-0.0622253,-0.0587769,-0.0567627,-0.0559692,-0.0569153,-0.0597229,-0.0682983,-0.0835876,-0.101654,-0.117249,-0.12738,-0.127075,-0.115692,-0.0895081,-0.0498962,0.00201416,0.0678406,0.140656,0.214386,0.277374,0.322296,0.341003,0.332123,0.291107,0.223755,0.132843,0.0280762,-0.083252,-0.185547,-0.269897,-0.322906,-0.34021,-0.318695,-0.261322,-0.177277,-0.0739136,0.0360107,0.14267,0.231079,0.291412,0.316223,0.304993,0.263519,0.200684,0.125519,0.0481873,-0.0205688,-0.0701599,-0.0958862,-0.0921631,-0.0601807,-0.00497437,0.0636292,0.135651,0.198486,0.246521,0.271301,0.271454,0.241364,0.18634,0.108521,0.0190125,-0.0709534,-0.150635,-0.213135,-0.254944,-0.273956,-0.269592,-0.244171,-0.200989,-0.146576,-0.0891724,-0.0343018,0.00982666,0.0420837,0.0601807,0.0687561,0.069397,0.0611267,0.0447388,0.0275879,0.0123291,-0.000305176,-0.00952148,-0.0141907,-0.0154419,-0.0160522,-0.0193481,-0.0240173,-0.0305481,-0.0374146,-0.0473938,-0.0583191,-0.071106,-0.0827942,-0.0893555,-0.0904236,-0.0862122,-0.0788879,-0.071106,-0.0612793,-0.0509949,-0.0386658,-0.0258789,-0.0138855,-0.00219727,0.00952148,0.0221558,0.0366516,0.0525513,0.0706177,0.0901184,0.106506,0.119446,0.12973,0.135956,0.13736,0.132233,0.121918,0.105408,0.0860596,0.0643921,0.0444336,0.0257263,0.0105896,-0.000793457,-0.00888062,-0.0140381,-0.0168457,-0.0185547,-0.0195007,-0.0213623,-0.0247803,-0.0296326,-0.0343018,-0.0377197,-0.0377197,-0.0328979,-0.0227661,-0.00717163,0.0135803,0.0400696,0.0671997,0.0943298,0.118042,0.134399,0.141571,0.138306,0.124573,0.101959,0.0722046,0.0368042,0.00234985,-0.0302429,-0.0552063,-0.0739136,-0.0840454,-0.0877686,-0.084198,-0.076416,-0.0653381,-0.0558167,-0.0491028,-0.0492859,-0.0544128,-0.063446,-0.0762329,-0.0865479,-0.0958862,-0.101044,-0.101196,-0.0933838,-0.0770264,-0.0542603,-0.0260315,0.00280762,0.0303955,0.0534668,0.0692139,0.0779724,0.0774841,0.0675049,0.0528564,0.0308838,0.00592041,-0.019165,-0.040863,-0.057373,-0.0704651,-0.0788879,-0.0838928,-0.0846558,-0.0838928,-0.0810852,-0.0813904,-0.0838928,-0.0896606,-0.0968323,-0.10495,-0.113678,-0.121613,-0.127075,-0.129272,-0.128937,-0.125061,-0.118652,-0.113342,-0.108978,-0.104004,-0.0997925,-0.0937195,-0.0827942,-0.0622253,-0.0327454,0.00466919,0.0506592,0.106323,0.168243,0.229828,0.282532,0.321991,0.338501,0.330383,0.293121,0.229523,0.146576,0.0481873,-0.0550537,-0.155151,-0.237305,-0.292511,-0.312317,-0.295929,-0.247284,-0.171204,-0.0773315,0.0254211,0.12442,0.205505,0.259155,0.28067,0.270355,0.231842,0.17276,0.102295,0.0350952,-0.0210571,-0.0581665,-0.071106,-0.0556641,-0.0146484,0.0473938,0.118042,0.187561,0.244171,0.281433,0.292969,0.273651,0.227814,0.155151,0.0659485,-0.0310364,-0.124878,-0.204254,-0.263031,-0.298126,-0.305298,-0.289703,-0.253998,-0.204712,-0.147034,-0.0881042,-0.035553,0.00326538,0.0272827,0.0389709,0.0411682,0.035553,0.0218201,0.00717163,-0.00546265,-0.0132446,-0.0171509,-0.0162048,-0.00888062,0.00109863,0.010437,0.0154419,0.0163574,0.0109253,0.00125122,-0.0135803,-0.0324402,-0.0513,-0.0703125,-0.0835876,-0.0926208,-0.0955811,-0.0932312,-0.0857544,-0.0753174,-0.0640869,-0.0491028,-0.0347595,-0.0188599,-0.00360107,0.0119934,0.0279236,0.0436707,0.0626831,0.0816956,0.101196,0.116791,0.131287,0.141571,0.148895,0.149994,0.145477,0.136444,0.123169,0.10791,0.091217,0.0751648,0.0609741,0.0489502,0.0380554,0.0296326,0.020752,0.0113831,0.00125122,-0.0112305,-0.0257263,-0.0411682,-0.0580139,-0.0714111,-0.0790405,-0.0795288,-0.071106,-0.0531616,-0.0246277,0.0102844,0.0497437,0.0899658,0.125519,0.154999,0.171204,0.173065,0.161682,0.137848,0.104614,0.0632935,0.0198059,-0.0215149,-0.0569153,-0.0834045,-0.0986938,-0.104004,-0.0997925,-0.088562,-0.0745239,-0.0606384,-0.0487976,-0.0439758,-0.0467834,-0.0567627,-0.0700073,-0.0879517,-0.104767,-0.117401,-0.123016,-0.120514,-0.107422,-0.0865479,-0.0581665,-0.0254211,0.00778198,0.0368042,0.0609741,0.0742188,0.0770264,0.0695496,0.0523987,0.0282288,-0.000457764,-0.0310364,-0.0589294,-0.081543,-0.098999,-0.10791,-0.110535,-0.106659,-0.0994873,-0.091217,-0.0830994,-0.0791931,-0.0782776,-0.0835876,-0.0941772,-0.108368,-0.125977,-0.141571,-0.157166,-0.168701,-0.178223,-0.182892,-0.180542,-0.17215,-0.150299,-0.11615,-0.0690613,-0.013092,0.0516052,0.120697,0.193512,0.263031,0.324799,0.36969,0.3909,0.383575,0.347717,0.285339,0.200989,0.101501,-0.00466919,-0.109314,-0.202698,-0.271149,-0.307953,-0.308258,-0.273499,-0.208466,-0.122101,-0.0240173,0.0753174,0.164978,0.234344,0.273163,0.278778,0.252136,0.200684,0.134094,0.0639343,0.00250244,-0.0438232,-0.0692139,-0.0670471,-0.0375671,0.0190125,0.0933838,0.170898,0.241821,0.294067,0.322906,0.322449,0.289551,0.226227,0.137207,0.0319519,-0.0796814,-0.186005,-0.271606,-0.332733,-0.362518,-0.363129,-0.338959,-0.29126,-0.228119,-0.15451,-0.0812378,-0.0162048,0.0316467,0.0611267,0.0731201,0.0726624,0.0603333,0.0393066,0.013092,-0.0121765,-0.0343018,-0.0505066,-0.0570679,-0.0541077,-0.0452271,-0.0341492,-0.0237122,-0.0144958,-0.0090332,-0.00482178,-0.00686646,-0.0143433,-0.0263367,-0.040863,-0.0534668,-0.0646973,-0.0726624,-0.0762329,-0.0778198,-0.076416,-0.0734253,-0.0664368,-0.0525513,-0.0363159,-0.0157471,0.00561523,0.0305481,0.0570679,0.0867004,0.116486,0.14502,0.16745,0.182434,0.190216,0.190521,0.182129,0.167297,0.145477,0.118347,0.0887146,0.0603333,0.0343018,0.0152893,0.00234985,-0.00497437,-0.00762939,-0.00811768,-0.00436401,0.000946045,0.00375366,0.00466919,0.000152588,-0.00637817,-0.0133972,-0.0199585,-0.0230713,-0.0196533,-0.0112305,0.00515747,0.0246277,0.0478821,0.0720215,0.094635,0.11319,0.123657,0.124725,0.11615,0.100555,0.0795288,0.0548706,0.0263367,-0.00186157,-0.0283813,-0.0480347,-0.0611267,-0.0671997,-0.0695496,-0.0697021,-0.0708008,-0.0704651,-0.0728149,-0.0759277,-0.0826416,-0.0898132,-0.0994873,-0.107422,-0.111328,-0.107574,-0.09729,-0.0801392,-0.0576782,-0.0336914,-0.00747681,0.0169983,0.0380554,0.0531616,0.0595703,0.0548706,0.039917,0.0187073,-0.00811768,-0.0371094,-0.0662537,-0.0952759,-0.119598,-0.138611,-0.147186,-0.147644,-0.141113,-0.131134,-0.11911,-0.106506,-0.0968323,-0.0891724,-0.086853,-0.0895081,-0.0997925,-0.11615,-0.135651,-0.156555,-0.173859,-0.187408,-0.196472,-0.197235,-0.185547,-0.153748,-0.104767,-0.0363159,0.0419312,0.12677,0.211884,0.294678,0.365784,0.418335,0.440155,0.428772,0.379364,0.299988,0.196777,0.0804443,-0.0385132,-0.152954,-0.249176,-0.317596,-0.349731,-0.338043,-0.286285,-0.19989,-0.0924683,0.0223083,0.13269,0.227631,0.300293,0.338348,0.339142,0.301239,0.233246,0.149841,0.0661011,-0.00592041,-0.0586243,-0.086853,-0.0871582,-0.0572205,0.00311279,0.0809326,0.165894,0.245117,0.302795,0.335236,0.332123,0.298431,0.233887,0.14502,0.0375671,-0.077179,-0.189911,-0.284882,-0.352081,-0.38559,-0.3909,-0.372192,-0.331177,-0.272705,-0.200348,-0.125214,-0.0528564,0.00390625,0.0448914,0.0698547,0.0816956,0.0826416,0.0757751,0.0606384,0.0402222,0.0152893,-0.00686646,-0.0235291,-0.0322876,-0.0389709,-0.0448914,-0.0513,-0.0587769,-0.0667419,-0.0728149,-0.0782776,-0.0820007,-0.087616,-0.0918274,-0.0943298,-0.0927734,-0.0854492,-0.0750122,-0.0615845,-0.0502014,-0.0396118,-0.0274353,-0.0127869,0.00531006,0.0240173,0.0431824,0.0609741,0.0802917,0.101654,0.125977,0.149231,0.168396,0.182434,0.188965,0.189606,0.185089,0.175262,0.161224,0.139709,0.113831,0.0874634,0.0604858,0.0380554,0.0193481,0.000305176,-0.0137329,-0.0291443,-0.0389709,-0.04599,-0.050354,-0.0514526,-0.0508423,-0.0480347,-0.0403748,-0.0277405,-0.00778198,0.0168457,0.0452271,0.0732727,0.0994873,0.123169,0.141113,0.150452,0.151703,0.141724,0.121918,0.0937195,0.0606384,0.0280762,-0.00341797,-0.0307312,-0.0542603,-0.071106,-0.0809326,-0.0835876,-0.0805969,-0.0753174,-0.0706177,-0.0686035,-0.0692139,-0.0734253,-0.0793762,-0.0882568,-0.0961914,-0.102753,-0.106171,-0.10321,-0.0927734,-0.0753174,-0.0508423,-0.0241699,0.00436401,0.0310364,0.0533142,0.069397,0.0768738,0.0742188,0.0625305,0.0411682,0.013092,-0.0177612,-0.0513,-0.082489,-0.112274,-0.135345,-0.154053,-0.165283,-0.171204,-0.171051,-0.166687,-0.161224,-0.154053,-0.148285,-0.143127,-0.140961,-0.142212,-0.145325,-0.151855,-0.157806,-0.16449,-0.169006,-0.170105,-0.160767,-0.136261,-0.0954285,-0.0396118,0.0293274,0.106964,0.190216,0.271912,0.346619,0.406342,0.439545,0.43924,0.401642,0.331635,0.236694,0.121918,-0.00109863,-0.123505,-0.231384,-0.314972,-0.361572,-0.366577,-0.331024,-0.258667,-0.158264,-0.0458374,0.0675049,0.169647,0.253052,0.307007,0.327423,0.310608,0.262115,0.195374,0.125214,0.0642395,0.0187073,-0.00857544,-0.0127869,0.0102844,0.0594177,0.12442,0.193176,0.255707,0.29953,0.318085,0.304352,0.260223,0.190216,0.0994873,-0.00390625,-0.112427,-0.215179,-0.298126,-0.353485,-0.375763,-0.369537,-0.341949,-0.297028,-0.239502,-0.173065,-0.10556,-0.0458374,-0.000152588,0.0282288,0.0407104,0.0438232,0.0400696,0.0327454,0.0237122,0.0124817,-0.000793457,-0.0102844,-0.0146484,-0.0121765,-0.00982666,-0.0105896,-0.0165405,-0.0274353,-0.0428772,-0.0600281,-0.0790405,-0.09729,-0.113983,-0.130493,-0.142059,-0.146088,-0.141418,-0.127075,-0.10791,-0.0870056,-0.0653381,-0.0410156,-0.013092,0.0184021,0.0500488,0.0784302,0.104004,0.126282,0.147644,0.166534,0.182892,0.192261,0.194733,0.190521,0.178528,0.164337,0.149048,0.133453,0.116302,0.0982361,0.0799866,0.0653381,0.0550537,0.0466309,0.0379028,0.0258789,0.0118408,-0.00656128,-0.0257263,-0.0455322,-0.0632935,-0.0773315,-0.0873108,-0.0890198,-0.0793762,-0.0578613,-0.0233765,0.0204163,0.0703125,0.119446,0.162781,0.197235,0.218445,0.223907,0.212219,0.182281,0.138,0.083252,0.0254211,-0.0308838,-0.078125,-0.116638,-0.14267,-0.155304,-0.155914,-0.144379,-0.125977,-0.104004,-0.0835876,-0.0678406,-0.0594177,-0.0572205,-0.0608215,-0.0681458,-0.0774841,-0.0852966,-0.0901184,-0.088562,-0.0787354,-0.0600281,-0.0347595,-0.00546265,0.0241699,0.0509949,0.0717163,0.0843506,0.0874634,0.0802917,0.0637817,0.0375671,0.00482178,-0.0307312,-0.0661011,-0.0994873,-0.12738,-0.151093,-0.169495,-0.182281,-0.189301,-0.190369,-0.188202,-0.182739,-0.177582,-0.17215,-0.165436,-0.160583,-0.154999,-0.149231,-0.142822,-0.137665,-0.13269,-0.126282,-0.114441,-0.0895081,-0.0508423,-0.000457764,0.0584717,0.121918,0.19101,0.260864,0.326172,0.381226,0.413361,0.414429,0.382324,0.320099,0.234344,0.130981,0.0173035,-0.0991516,-0.206116,-0.292053,-0.346924,-0.360962,-0.335693,-0.272247,-0.18335,-0.0795288,0.0274353,0.127686,0.213287,0.276306,0.30484,0.298126,0.258362,0.199585,0.138611,0.085144,0.0466309,0.0230713,0.0184021,0.0389709,0.0845032,0.146729,0.214233,0.272095,0.308716,0.31839,0.29657,0.244781,0.167938,0.0709534,-0.0386658,-0.153107,-0.260071,-0.343658,-0.395111,-0.40976,-0.392761,-0.351929,-0.294067,-0.222961,-0.144836,-0.0656433,0.00326538,0.0522461,0.0790405,0.084198,0.0751648,0.0586243,0.0396118,0.0179443,-0.0045166,-0.0263367,-0.0422668,-0.0461426,-0.038208,-0.0254211,-0.0129395,-0.00717163,-0.00796509,-0.0157471,-0.0291443,-0.0470886,-0.0687561,-0.0960388,-0.126282,-0.154999,-0.176666,-0.186646,-0.182129,-0.168549,-0.147644,-0.121002,-0.0873108,-0.0430298,0.00717163,0.0595703,0.108978,0.151093,0.186646,0.215637,0.238251,0.252899,0.256805,0.247589,0.226868,0.19754,0.164795,0.132843,0.103851,0.07547,0.047699,0.0237122,0.00576782,-0.00360107,-0.00701904,-0.00717163,-0.00796509,-0.0110779,-0.0177612,-0.0241699,-0.0300903,-0.035553,-0.0405273,-0.0438232,-0.0450745,-0.038208,-0.0230713,0.00405884,0.0385132,0.076416,0.112274,0.142975,0.167938,0.183838,0.189301,0.183685,0.163574,0.130981,0.0901184,0.0466309,0.00592041,-0.0308838,-0.0636292,-0.0913696,-0.114136,-0.128479,-0.135956,-0.136902,-0.135498,-0.134705,-0.135651,-0.138611,-0.140961,-0.140167,-0.135498,-0.127075,-0.114441,-0.0969849,-0.0736084,-0.0422668,-0.00686646,0.031189,0.0657959,0.0933838,0.111481,0.1185,0.11615,0.103851,0.0810852,0.0502014,0.0105896,-0.0300903,-0.0698547,-0.104462,-0.131439,-0.153259,-0.168396,-0.177429,-0.180237,-0.176819,-0.169647,-0.160583,-0.154358,-0.15155,-0.150452,-0.151245,-0.151093,-0.150146,-0.148285,-0.147034,-0.145935,-0.141876,-0.135651,-0.12146,-0.098999,-0.0645447,-0.0198059,0.035553,0.0994873,0.170105,0.244324,0.315582,0.374664,0.416321,0.430328,0.414124,0.364868,0.286591,0.18399,0.0645447,-0.0597229,-0.180878,-0.282227,-0.355347,-0.390411,-0.382477,-0.333191,-0.24823,-0.138,-0.0160522,0.104614,0.210327,0.291412,0.337097,0.343964,0.313873,0.254761,0.179779,0.103699,0.0397644,-0.00436401,-0.0238647,-0.0154419,0.0235291,0.0863953,0.16153,0.235138,0.296265,0.332275,0.335693,0.303436,0.237,0.142059,0.0280762,-0.0951233,-0.215027,-0.318085,-0.393066,-0.431915,-0.432068,-0.399475,-0.341003,-0.263977,-0.176178,-0.0879517,-0.00561523,0.059082,0.103851,0.123962,0.124115,0.107117,0.0818481,0.050354,0.0204163,-0.00918579,-0.0346069,-0.0519104,-0.0592651,-0.0569153,-0.0517578,-0.04599,-0.044281,-0.04599,-0.0527039,-0.0651855,-0.0816956,-0.0991516,-0.119446,-0.137054,-0.154053,-0.160919,-0.160278,-0.148285,-0.128937,-0.104004,-0.0736084,-0.038208,0.00201416,0.0453796,0.090271,0.130981,0.166382,0.195221,0.217651,0.232788,0.238861,0.235138,0.221405,0.199432,0.170258,0.139252,0.108368,0.0805969,0.0555115,0.0324402,0.0138855,0.00201416,-0.00515747,-0.00827026,-0.0112305,-0.0152893,-0.0196533,-0.0269775,-0.0352478,-0.043335,-0.0500488,-0.0522461,-0.0484924,-0.0380554,-0.0184021,0.010437,0.046936,0.0867004,0.125977,0.160431,0.185547,0.200043,0.200195,0.186493,0.15921,0.120209,0.0728149,0.0229187,-0.0261841,-0.0687561,-0.1026,-0.127533,-0.141724,-0.146088,-0.141724,-0.130493,-0.118195,-0.105713,-0.0958862,-0.0905762,-0.090271,-0.0927734,-0.0961914,-0.10025,-0.100555,-0.0971375,-0.0862122,-0.0698547,-0.04599,-0.0193481,0.0110779,0.0400696,0.0656433,0.0854492,0.0968323,0.098999,0.0909119,0.0739136,0.0475464,0.0158997,-0.0205688,-0.0583191,-0.0951233,-0.127075,-0.152649,-0.171967,-0.18335,-0.189117,-0.186951,-0.181641,-0.169647,-0.156219,-0.14032,-0.125977,-0.113983,-0.100739,-0.0879517,-0.0742188,-0.0623779,-0.0552063,-0.0536499,-0.0562744,-0.0615845,-0.0675049,-0.0753174,-0.0791931,-0.0732727,-0.0514526,-0.0129395,0.0413208,0.107269,0.181183,0.255859,0.322754,0.375153,0.402893,0.399475,0.357056,0.280029,0.171661,0.0461426,-0.0849915,-0.207672,-0.309357,-0.379822,-0.41037,-0.39386,-0.327423,-0.218903,-0.0823364,0.0623779,0.196472,0.305145,0.381836,0.418488,0.411316,0.361115,0.276917,0.173553,0.0708008,-0.0146484,-0.0714111,-0.0961914,-0.0882568,-0.0513,0.010437,0.0873108,0.166992,0.236847,0.28299,0.294678,0.266785,0.204895,0.117249,0.0168457,-0.086853,-0.188049,-0.275818,-0.340363,-0.372498,-0.365784,-0.326813,-0.268494,-0.198486,-0.126282,-0.0569153,0.00561523,0.0564575,0.0927734,0.108978,0.105865,0.0898132,0.0671997,0.0434875,0.0215149,0.00250244,-0.0171509,-0.0379028,-0.0552063,-0.0668945,-0.073761,-0.0799866,-0.086853,-0.0994873,-0.113678,-0.12738,-0.137054,-0.140015,-0.136108,-0.127686,-0.115997,-0.10321,-0.0838928,-0.0580139,-0.0263367,0.00265503,0.0297852,0.0519104,0.0722046,0.0921631,0.114899,0.137054,0.154053,0.163727,0.166687,0.16684,0.164642,0.159668,0.149994,0.132996,0.111633,0.0899658,0.0714111,0.0575256,0.0491028,0.0419312,0.0357056,0.02948,0.0229187,0.0184021,0.0113831,0.00296021,-0.00952148,-0.0244751,-0.0402222,-0.0523987,-0.0567627,-0.0514526,-0.0352478,-0.0119934,0.0193481,0.0564575,0.096344,0.136749,0.170105,0.192108,0.198639,0.187408,0.159668,0.120697,0.0723572,0.0198059,-0.0336914,-0.0821838,-0.12146,-0.149536,-0.161682,-0.160583,-0.146729,-0.127533,-0.103546,-0.0816956,-0.0618896,-0.0483398,-0.040863,-0.0403748,-0.0458374,-0.0564575,-0.0687561,-0.0795288,-0.0846558,-0.0829468,-0.0743713,-0.0583191,-0.0389709,-0.0140381,0.00952148,0.0352478,0.0553589,0.0698547,0.073761,0.0667419,0.0514526,0.0282288,0.00140381,-0.0289917,-0.0606384,-0.0921631,-0.119446,-0.141113,-0.154358,-0.159027,-0.156219,-0.148132,-0.136108,-0.121765,-0.103058,-0.0821838,-0.0595703,-0.0388184,-0.0219727,-0.00857544,0.00109863,0.00872803,0.0126343,0.0144958,0.0101318,0.00250244,-0.0129395,-0.0328979,-0.0567627,-0.0862122,-0.116302,-0.147034,-0.172913,-0.187897,-0.184601,-0.156067,-0.103851,-0.0321045,0.0519104,0.143127,0.231842,0.312927,0.375153,0.409302,0.403534,0.354889,0.268646,0.15686,0.0330505,-0.0904236,-0.203003,-0.291412,-0.346619,-0.358154,-0.321198,-0.238556,-0.120209,0.0155945,0.150787,0.267242,0.352539,0.400726,0.405548,0.366577,0.28595,0.175873,0.0527039,-0.0615845,-0.149689,-0.200195,-0.212219,-0.189911,-0.133301,-0.0484924,0.0553589,0.161682,0.256958,0.325867,0.35675,0.34552,0.29657,0.220001,0.123962,0.0169983,-0.0907593,-0.19162,-0.272247,-0.322601,-0.335999,-0.319336,-0.279572,-0.224518,-0.161682,-0.09729,-0.0341492,0.0243225,0.0697021,0.0949707,0.0994873,0.0898132,0.0684509,0.0417786,0.0127869,-0.0168457,-0.0492859,-0.0810852,-0.107574,-0.121918,-0.125824,-0.119293,-0.106506,-0.0918274,-0.077179,-0.0618896,-0.0413208,-0.0223083,-0.00482178,0.00671387,0.0126343,0.0110779,0.00717163,0.00296021,0.000946045,-0.00360107,-0.00762939,-0.00967407,-0.00778198,0.000152588,0.0171509,0.0402222,0.0626831,0.0820007,0.0971375,0.109619,0.118042,0.123322,0.122711,0.115387,0.101807,0.0874634,0.0753174,0.0681458,0.0643921,0.0628357,0.0620422,0.0600281,0.0583191,0.0561218,0.0513,0.0438232,0.0330505,0.0198059,0.00405884,-0.00827026,-0.0158997,-0.0165405,-0.00997925,0.00186157,0.0185547,0.0380554,0.0583191,0.0779724,0.0943298,0.102142,0.0991516,0.0856018,0.0618896,0.0333557,0.00375366,-0.0265198,-0.0527039,-0.0742188,-0.0879517,-0.0932312,-0.0890198,-0.077179,-0.0611267,-0.0447388,-0.0305481,-0.0224609,-0.0187073,-0.0216675,-0.0285339,-0.0400696,-0.0550537,-0.0703125,-0.0830994,-0.0915222,-0.0915222,-0.0860596,-0.0731201,-0.057373,-0.0393066,-0.0224609,-0.00576782,0.00622559,0.0124817,0.0115356,0.00341797,-0.0109253,-0.0303955,-0.0502014,-0.0697021,-0.0865479,-0.098999,-0.107269,-0.108368,-0.101196,-0.086853,-0.0668945,-0.0456848,-0.025116,-0.00671387,0.00888062,0.0205688,0.0288391,0.0319519,0.0289917,0.0235291,0.0137329,0.00561523,-0.00311279,-0.0112305,-0.0182495,-0.025116,-0.0297852,-0.0336914,-0.0375671,-0.0424194,-0.0475464,-0.0545654,-0.0632935,-0.0748291,-0.0863953,-0.0975952,-0.108521,-0.12146,-0.138611,-0.158264,-0.178528,-0.187561,-0.181335,-0.1539,-0.109924,-0.0484924,0.0261841,0.109772,0.197388,0.28299,0.357697,0.409607,0.425201,0.401489,0.337555,0.243713,0.131439,0.0101318,-0.108673,-0.217987,-0.303253,-0.349884,-0.34787,-0.298126,-0.210175,-0.100098,0.0166931,0.124878,0.212219,0.270996,0.29422,0.27771,0.222656,0.138,0.041626,-0.0470886,-0.108978,-0.137848,-0.13208,-0.0938721,-0.0277405,0.0597229,0.15921,0.25882,0.343658,0.396362,0.404602,0.368286,0.295776,0.198944,0.0871582,-0.0299377,-0.14328,-0.243073,-0.316223,-0.350525,-0.34787,-0.312164,-0.2565,-0.19101,-0.122864,-0.0608215,-0.00546265,0.0389709,0.0690613,0.0784302,0.0703125,0.0506592,0.0246277,0.00421143,-0.00967407,-0.0184021,-0.0240173,-0.0279236,-0.0240173,-0.0123291,0.0045166,0.0209045,0.0327454,0.0366516,0.0299377,0.0168457,-0.00234985,-0.0237122,-0.0480347,-0.0720215,-0.0982361,-0.122864,-0.138916,-0.143127,-0.137848,-0.127533,-0.110077,-0.085144,-0.0552063,-0.0188599,0.0237122,0.0670471,0.103363,0.131744,0.149841,0.158875,0.15921,0.153595,0.143616,0.128784,0.111633,0.0969849,0.0871582,0.0843506,0.0870056,0.0921631,0.0952759,0.0930786,0.0865479,0.0736084,0.0533142,0.0266724,-0.00466919,-0.0385132,-0.0720215,-0.0983887,-0.115387,-0.117096,-0.106506,-0.0812378,-0.0484924,-0.00778198,0.036499,0.0812378,0.119751,0.147034,0.159027,0.156403,0.139709,0.113037,0.08078,0.0470886,0.0169983,-0.0090332,-0.0260315,-0.0369568,-0.0393066,-0.036499,-0.0322876,-0.0293274,-0.0299377,-0.0377197,-0.0497437,-0.0667419,-0.0857544,-0.10556,-0.125824,-0.142975,-0.155914,-0.160278,-0.154999,-0.139709,-0.117706,-0.0907593,-0.0612793,-0.0321045,-0.0045166,0.0174561,0.0333557,0.0403748,0.0396118,0.0330505,0.0237122,0.0135803,0.00546265,0.000793457,-0.00280762,-0.00561523,-0.00796509,-0.00701904,-0.00546265,-0.00515747,-0.00827026,-0.0162048,-0.0293274,-0.0434875,-0.0564575,-0.0679932,-0.0785828,-0.087616,-0.0910645,-0.0867004,-0.07547,-0.0562744,-0.0307312,-0.00360107,0.0227661,0.0447388,0.0631409,0.0743713,0.079834,0.0765686,0.0667419,0.0491028,0.0293274,0.00796509,-0.00778198,-0.0204163,-0.0266724,-0.0324402,-0.0335083,-0.0324402,-0.0255737,-0.0179443,-0.00997925,-0.00671387,-0.00701904,-0.0133972,-0.0227661,-0.0361633,-0.0533142,-0.0740662,-0.0957336,-0.115845,-0.129425,-0.136902,-0.140015,-0.138763,-0.130981,-0.118805,-0.101044,-0.0745239,-0.0377197,0.00762939,0.0525513,0.09198,0.126129,0.153748,0.173553,0.181946,0.176361,0.152649,0.115387,0.0687561,0.0195007,-0.0266724,-0.0678406,-0.101349,-0.12381,-0.135345,-0.132538,-0.11319,-0.0809326,-0.0391235,0.00186157,0.0360107,0.0587769,0.0736084,0.082489,0.0834045,0.0734253,0.0541077,0.0327454,0.0154419,0.00842285,0.0116882,0.0263367,0.0492859,0.0750122,0.101654,0.125977,0.149048,0.165741,0.171967,0.165894,0.14563,0.117401,0.084198,0.050354,0.0176086,-0.0119934,-0.0375671,-0.0598755,-0.073761,-0.077179,-0.0690613,-0.0561218,-0.0448914,-0.0341492,-0.0224609,-0.00857544,0.00390625,0.0158997,0.0252686,0.0325928,0.039917,0.0484924,0.0566101,0.0631409,0.0684509,0.0715637,0.0701599,0.0609741,0.0464783,0.0291443,0.0127869,-0.00622559,-0.0286865,-0.0528564,-0.0745239,-0.0887146,-0.0951233,-0.0958862,-0.0937195,-0.0870056,-0.0773315,-0.0642395,-0.0516052,-0.0400696,-0.0317993,-0.0275879,-0.0266724,-0.0277405,-0.0275879,-0.0258789,-0.0177612,-0.00656128,0.00918579,0.0254211,0.0431824,0.0615845,0.0799866,0.0958862,0.104462,0.104767,0.0955811,0.0813904,0.0618896,0.0400696,0.0163574,-0.00796509,-0.0296326,-0.0447388,-0.053009,-0.0538025,-0.0506592,-0.0413208,-0.0289917,-0.0151367,-0.00360107,0.00671387,0.0157471,0.0230713,0.0288391,0.0310364,0.0314941,0.031189,0.0336914,0.0383606,0.0430298,0.0461426,0.0505066,0.0545654,0.0586243,0.0600281,0.0604858,0.0572205,0.050354,0.0414734,0.0305481,0.0171509,0.00125122,-0.0152893,-0.0314941,-0.0464783,-0.0614319,-0.0743713,-0.0846558,-0.090271,-0.090271,-0.0856018,-0.0778198,-0.0670471,-0.0498962,-0.0303955,-0.0093689,0.0105896,0.0300903,0.0467834,0.0581665,0.0651855,0.0632935,0.0548706,0.0411682,0.0244751,0.00436401,-0.0193481,-0.0430298,-0.0623779,-0.076416,-0.0835876,-0.0849915,-0.0818481,-0.0715637,-0.0597229,-0.0453796,-0.0319519,-0.0196533,-0.013092,-0.0124817,-0.0171509,-0.0260315,-0.0374146,-0.0487976,-0.0575256,-0.0628357,-0.0637817,-0.0578613,-0.0438232,-0.0240173,0.00109863,0.0265198,0.050354,0.0673523,0.0756226,0.0762329,0.0689087,0.0519104,0.0288391,-0.00140381,-0.033844,-0.063446,-0.086853,-0.103699,-0.111938,-0.111786,-0.105103,-0.0930786,-0.0770264,-0.0589294,-0.0397644,-0.0255737,-0.0152893,-0.0121765,-0.0113831,-0.0129395,-0.0157471,-0.0177612,-0.0210571,-0.0202637,-0.0171509,-0.00997925,-0.00219727,0.00796509,0.0193481,0.0300903,0.0354004,0.0366516,0.0335083,0.0285339,0.0226135,0.0121765,-0.000305176,-0.0127869,-0.0229187,-0.0313416,-0.0389709,-0.0430298,-0.0445862,-0.0434875,-0.0441284,-0.0455322,-0.046936,-0.046936,-0.0430298,-0.038208,-0.0325928,-0.0272827,-0.0226135,-0.0173035,-0.0121765,-0.00762939,-0.00186157,0.00421143,0.0127869,0.0227661,0.0346069,0.046936,0.057373,0.0646973,0.0675049,0.0665894,0.0629883,0.0570679,0.050354,0.0400696,0.0283813,0.0138855,0.000946045,-0.00686646,-0.0109253,-0.0105896,-0.0090332,-0.006073,-0.00219727,0.00671387,0.0171509,0.0249329,0.0271301,0.0258789,0.0226135,0.0176086,0.0127869,0.00952148,0.0101318,0.0141907,0.0216675,0.0302429,0.0430298,0.0606384,0.0799866,0.0982361,0.106018,0.106506,0.103546,0.0988464,0.0905762,0.077179,0.057373,0.0361633,0.0144958,-0.00250244,-0.0154419,-0.025116,-0.0305481,-0.0314941,-0.0286865,-0.0212097,-0.0110779,0.00341797,0.0184021,0.0296326,0.0377197,0.043335,0.0444336,0.0448914,0.0441284,0.0414734,0.0358582,0.0238647,0.0121765,0.00360107,-0.000793457,-0.00219727,-0.00375366,-0.006073,-0.00918579,-0.00622559,-0.000152588,0.00436401,0.00405884,0.000152588,-0.00405884,-0.0102844,-0.0169983,-0.0240173,-0.0289917,-0.0343018,-0.0391235,-0.0420837,-0.0438232,-0.0430298,-0.0363159,-0.0274353,-0.0173035,-0.00982666,-0.00265503,0.00576782,0.0151367,0.0221558,0.0286865,0.0296326,0.0271301,0.0230713,0.0209045,0.019165,0.0155945,0.0109253,0.00531006,-0.00125122,-0.00701904,-0.0116882,-0.0132446,-0.0152893,-0.0180969,-0.020752,-0.0215149,-0.0238647,-0.0241699,-0.0240173,-0.0229187,-0.0232239,-0.0218201,-0.0190125,-0.0137329,-0.00701904,0.00375366,0.0144958,0.0238647,0.0297852,0.0363159,0.042572,0.0461426,0.0467834,0.042572,0.0358582,0.0279236,0.0199585,0.0135803,0.00671387,0.000793457,-0.00201416,-0.00390625,-0.00497437,-0.00375366,0.000946045,0.00592041,0.0107727,0.0133972,0.0151367,0.0144958,0.010437,0.00747681,0.00265503,-0.00201416,-0.006073,-0.00888062,-0.0101318,-0.0107727,-0.00637817,-0.00186157,0.00436401,0.00811768,0.010437,0.0116882,0.013092,0.0112305,0.00686646,-0.0015564,-0.0121765,-0.0229187,-0.0350952,-0.0466309,-0.0562744,-0.0620422,-0.0651855,-0.0659485,-0.0645447,-0.0618896,-0.0566101,-0.0492859,-0.042572,-0.0377197,-0.0330505,-0.0297852,-0.0279236,-0.0265198,-0.0260315,-0.0252686,-0.0261841,-0.0257263,-0.0261841,-0.0255737,-0.0254211,-0.0254211,-0.0258789,-0.0271301,-0.0297852,-0.0328979,-0.036499,-0.0396118,-0.0417786,-0.043335,-0.0441284,-0.0439758,-0.0420837,-0.0391235,-0.0347595,-0.0310364,-0.0271301,-0.0223083,-0.0180969,-0.0133972,-0.0115356,-0.00857544,-0.00576782,-0.00109863,0.00390625,0.00811768,0.0121765,0.0168457,0.020752,0.0216675,0.0224609,0.0205688,0.0182495,0.0144958,0.00796509,-0.000305176,-0.00656128,-0.0129395,-0.0166931,-0.0179443,-0.0173035,-0.0124817,-0.00466919,0.00732422,0.0185547,0.0325928,0.0430298,0.0528564,0.0597229,0.0642395,0.0657959,0.0645447,0.0615845,0.0567627,0.0489502,0.0385132,0.0286865,0.0188599,0.0107727,0.00311279,-0.0015564,-0.00515747,-0.00656128,-0.00888062,-0.010437,-0.0110779,-0.0112305,-0.0135803,-0.0143433,-0.0168457,-0.019165,-0.020752,-0.0221558,-0.0227661,-0.0240173,-0.0233765,-0.0204163,-0.0152893,-0.010437,-0.00421143,0.006073,0.0151367,0.0230713,0.0282288,0.0302429,0.0291443,0.026825,0.0199585,0.00732422,-0.00778198,-0.0224609,-0.0335083,-0.044281,-0.0566101,-0.0646973,-0.0653381,-0.0611267,-0.0542603,-0.04599,-0.037262,-0.026825,-0.0169983,-0.00842285,-0.00375366,-0.00170898,-0.00125122,-0.00482178,-0.0113831,-0.0199585,-0.0246277,-0.0238647,-0.0230713,-0.0223083,-0.0213623,-0.0177612,-0.0105896,-0.00250244,0.00546265,0.0126343,0.0204163,0.0271301,0.0333557,0.0360107,0.0371094,0.0366516,0.0341492,0.026825,0.0166931,0.00872803,0.00546265,0.00201416,-0.000793457,-0.00265503,-0.00186157,0.00280762,0.0113831,0.0226135,0.0363159,0.04599,0.0542603,0.0594177,0.0642395,0.0687561,0.0695496,0.0646973,0.0538025,0.0413208,0.0310364,0.0243225,0.0171509,0.0115356,0.00747681,0.00701904,0.00762939,0.0110779,0.0166931,0.0244751,0.0305481,0.0319519,0.0282288,0.025116,0.0263367,0.0302429,0.031189,0.025116,0.0152893,0.00701904,0.00250244,-0.000305176,-0.00482178,-0.00952148,-0.0124817,-0.0124817,-0.0105896,-0.00686646,-0.00170898,0.00515747,0.0090332,0.00982666,0.00827026,0.00717163,0.00827026,0.00872803,0.00842285,0.00311279,-0.00219727,-0.00671387,-0.00622559,-0.006073,-0.00390625,-0.00234985,-0.00125122,-0.000793457,0.00201416,0.00436401,0.00717163,0.00872803,0.0093689,0.010437,0.0102844,0.010437,0.0101318,0.0102844,0.010437,0.010437,0.0107727,0.00872803,0.00531006,0.0015564,-0.000305176,-0.00375366,-0.00872803,-0.0135803,-0.0140381,-0.0132446,-0.0105896,-0.0093689,-0.00732422,-0.00421143,0.000152588,0.00375366,0.00656128,0.00717163,0.00888062,0.0123291,0.0141907,0.0140381,0.0115356,0.00857544,0.00561523,0.00186157,-0.00265503,-0.00811768,-0.0126343,-0.0163574,-0.0201111,-0.0233765,-0.025116,-0.0249329,-0.0232239,-0.0196533,-0.0146484,-0.00842285,-0.000793457,0.00622559,0.0109253,0.0133972,0.0141907,0.0124817,0.00952148,0.00436401,-0.00140381,-0.0090332,-0.0180969,-0.0260315,-0.0328979,-0.0366516,-0.0393066,-0.0380554,-0.0375671,-0.0346069,-0.0305481,-0.0257263,-0.0219727,-0.0176086,-0.013092,-0.00982666,-0.00872803,-0.0109253,-0.0121765,-0.0127869,-0.0132446,-0.0135803,-0.0154419,-0.0141907,-0.0121765,-0.00762939,-0.00311279,0.00125122,0.00482178,0.00888062,0.0105896,0.010437,0.00842285,0.00637817,0.00405884,-0.000152588,-0.00747681,-0.0151367,-0.0216675,-0.0257263,-0.0296326,-0.0317993,-0.0341492,-0.0341492,-0.033844,-0.0321045,-0.0300903,-0.0282288,-0.0238647,-0.0187073,-0.0141907,-0.00982666,-0.00671387,-0.00326538,-0.00219727,-0.000793457,0,0.000305176,-0.000946045,-0.00360107,-0.00576782,-0.00732422,-0.00857544,-0.0101318,-0.0118408,-0.0138855,-0.0143433,-0.0135803,-0.0110779,-0.0107727,-0.0113831,-0.0109253,-0.0113831,-0.0121765,-0.0141907,-0.0144958,-0.0154419,-0.0157471,-0.0162048,-0.0158997,-0.0152893,-0.0121765,-0.00872803,-0.00576782,-0.0045166,-0.00140381,0.0015564,0.00686646,0.00888062,0.0109253,0.0101318,0.0113831,0.0102844,0.0110779,0.010437,0.00982666,0.00747681,0.00360107,-0.000793457,-0.00405884,-0.00576782,-0.00796509,-0.0105896,-0.0160522,-0.020752,-0.0227661,-0.0224609,-0.0199585,-0.0155945,-0.0109253,-0.00857544,-0.00341797,0.00421143,0.0135803,0.0210571,0.0266724,0.0275879,0.0282288,0.0283813,0.0280762,0.0252686,0.0188599,0.0093689,-0.00170898,-0.0115356,-0.0190125,-0.0246277,-0.0272827,-0.0291443,-0.0300903,-0.0299377,-0.0258789,-0.0171509,-0.00747681,0.00140381,0.00497437,0.00686646,0.00732422,0.00717163,0.00857544,0.00656128,0.00140381,-0.00390625,-0.00918579,-0.0118408,-0.0144958,-0.0138855,-0.0137329,-0.0143433,-0.014801,-0.0146484,-0.0132446,-0.0113831,-0.0112305,-0.0129395,-0.0179443,-0.0216675,-0.0241699,-0.0254211,-0.0257263,-0.025116,-0.0244751,-0.0249329,-0.0244751,-0.0212097,-0.0154419,-0.00982666,-0.00531006,-0.00360107,-0.00170898,0.00140381,0.00701904,0.0154419,0.0227661,0.0307312,0.0379028,0.046936,0.0562744,0.0636292,0.0679932,0.0675049,0.0659485,0.0609741,0.0528564,0.0445862,0.0341492,0.0235291,0.013092,0.0045166,0.000793457,0.00201416,0.00967407,0.0201111,0.0319519,0.0419312,0.0525513,0.0618896,0.0701599,0.0762329,0.0768738,0.0745239,0.0675049,0.0617371,0.0528564,0.044281,0.0363159,0.0299377,0.0263367,0.0244751,0.0221558,0.0215149,0.0215149,0.0221558,0.0210571,0.0198059,0.0176086,0.0163574,0.0174561,0.0198059,0.020752,0.0202637,0.0213623,0.0205688,0.0213623,0.0188599,0.0179443,0.0140381,0.00982666,0.00405884,-0.000793457,-0.00482178,-0.00592041,-0.00622559,-0.00421143,-0.00109863,0.0045166,0.0090332,0.0123291,0.0129395,0.0124817,0.00952148,0.00341797,-0.00466919,-0.0157471,-0.0255737,-0.0360107,-0.0455322,-0.0525513,-0.0575256,-0.0562744,-0.0502014,-0.0397644,-0.0260315,-0.0118408,0.00265503,0.0162048,0.0260315,0.0336914,0.0344543,0.0333557,0.0275879,0.0185547,0.00717163,-0.00482178,-0.0152893,-0.0238647,-0.02948,-0.0327454,-0.0324402,-0.0302429,-0.0249329,-0.0174561,-0.0115356,-0.00671387,-0.00326538,-0.0015564,-0.00360107,-0.00701904,-0.0116882,-0.0149536,-0.0190125,-0.0223083,-0.0263367,-0.0280762,-0.0266724,-0.0232239,-0.0185547,-0.0143433,-0.00997925,-0.00515747,-0.000793457,0.000305176,0.00109863,0,0,-0.0015564,-0.00561523,-0.010437,-0.0162048,-0.0202637,-0.0246277,-0.0288391,-0.0333557,-0.036499,-0.0369568,-0.0347595,-0.0302429,-0.0233765,-0.0158997,-0.00811768,-0.000610352,0.00515747,0.010437,0.0152893,0.0196533,0.0199585,0.0185547,0.0133972,0.00482178,-0.00326538,-0.0101318,-0.014801,-0.0202637,-0.0249329,-0.0288391,-0.0300903,-0.0302429,-0.0285339,-0.0260315,-0.0237122,-0.0224609,-0.0213623,-0.0213623,-0.0209045,-0.020752,-0.0210571,-0.0219727,-0.0258789,-0.0289917,-0.0296326,-0.0285339,-0.0261841,-0.0246277,-0.0229187,-0.0199585,-0.0155945,-0.0101318,-0.00531006,-0.00265503,-0.00109863,-0.00109863,-0.00375366,-0.00701904,-0.0112305,-0.0155945,-0.0213623,-0.0257263,-0.0297852,-0.0307312,-0.0299377,-0.0266724,-0.0215149,-0.0157471,-0.0101318,-0.00405884,0.00140381,0.00701904,0.0123291,0.0146484,0.0155945,0.0126343,0.00842285,0.00656128,0.00561523,0.006073,0.00671387,0.00796509,0.00778198,0.00811768,0.00918579,0.0121765,0.0158997,0.0210571,0.0219727,0.0230713,0.0227661,0.0226135,0.0223083,0.0179443,0.0115356,0.00497437,-0.00140381,-0.00717163,-0.0137329,-0.0155945,-0.0141907,-0.010437,-0.00796509,-0.00637817,-0.00170898,0.00637817,0.0165405,0.0241699,0.0260315,0.0247803,0.0216675,0.0187073,0.0124817,0.00326538,-0.00421143,-0.00872803,-0.0116882,-0.0149536,-0.0160522,-0.0116882,-0.00360107,0.00546265,0.0109253,0.0121765,0.0119934,0.0118408,0.0124817,0.0105896,0.00405884,-0.00561523,-0.0143433,-0.0221558,-0.0257263,-0.0277405,-0.0272827,-0.0252686,-0.0223083,-0.0196533,-0.0137329,-0.00656128,0.00170898,0.00827026,0.0116882,0.0113831,0.00952148,0.00656128,0.00436401,0.00265503,0.000457764,-0.00265503,-0.00576782,-0.00888062,-0.00762939,-0.00576782,-0.00390625,-0.00311279,-0.00390625,-0.00531006,-0.00326538,-0.00109863,0.0045166,0.00778198,0.00872803,0.00796509,0.00497437,0.00561523,0.00686646,0.0090332,0.0109253,0.00982666,0.00747681,0.00466919,0.00234985,0.00186157,0.000946045,0.00125122,0.00109863,0,0.00234985,0.00778198,0.0146484,0.0196533,0.0219727,0.0223083,0.0233765,0.0230713,0.0227661,0.0215149,0.0177612,0.0115356,0.00531006,0.000793457,-0.00234985,-0.00219727,0,0.00265503,0.00421143,0.00497437,0.00686646,0.0121765,0.0163574,0.019165,0.019165,0.0182495,0.0176086,0.0171509,0.0157471,0.013092,0.00827026,0.00576782,0.00265503,0,-0.000610352,-0.000152588,0.0015564,0.00326538,0.00436401,0.00546265,0.00827026,0.0127869,0.0162048,0.0171509,0.0177612,0.0155945,0.0126343,0.00872803,0.0045166,-0.00170898,-0.00686646,-0.0119934,-0.0165405,-0.0190125,-0.0196533,-0.0168457,-0.0146484,-0.0102844,-0.00421143,0.00515747,0.0133972,0.0202637,0.0246277,0.0280762,0.0297852,0.0291443,0.0246277,0.0179443,0.0102844,0.00326538,-0.00311279,-0.0113831,-0.0176086,-0.0219727,-0.0238647,-0.025116,-0.0241699,-0.0201111,-0.0138855,-0.00561523,0.0015564,0.00762939,0.0141907,0.019165,0.0246277,0.0280762,0.0282288,0.0247803,0.0190125,0.0137329,0.00796509,0.00219727,-0.00296021,-0.00857544,-0.0121765,-0.0138855,-0.013092,-0.00888062,-0.00219727,0.00296021,0.00686646,0.0118408,0.0143433,0.0184021,0.0185547,0.0174561,0.0141907,0.00717163,-0.00125122,-0.0093689,-0.0169983,-0.0223083,-0.0260315,-0.0272827,-0.0277405,-0.0272827,-0.0233765,-0.0155945,-0.00637817,0.00186157,0.00842285,0.0141907,0.0179443,0.0205688,0.0199585,0.0165405,0.00967407,0.00341797,-0.0045166,-0.0109253,-0.0162048,-0.019165,-0.0199585,-0.0215149,-0.0199585,-0.0165405,-0.0102844,-0.00405884,0.00265503,0.00701904,0.010437,0.0109253,0.0121765,0.0116882,0.0090332,0.0045166,-0.00186157,-0.00747681,-0.0123291,-0.0158997,-0.0180969,-0.0199585,-0.0212097,-0.0221558,-0.0204163,-0.0171509,-0.0135803,-0.00982666,-0.00717163,-0.00686646,-0.00656128,-0.00732422,-0.00827026,-0.00872803,-0.0113831,-0.0149536,-0.0201111,-0.0227661,-0.0232239,-0.0227661,-0.0216675,-0.020752,-0.0179443,-0.0152893,-0.0113831,-0.00717163,-0.00296021,0,0.000152588,-0.000793457,-0.00234985,-0.00280762,-0.00341797,-0.00515747,-0.00778198,-0.0109253,-0.0119934,-0.0116882,-0.00918579,-0.00701904,-0.00436401,-0.00140381,0.00109863,0.00234985,0.00341797,0.00360107,0.00531006,0.00482178,0.00186157,-0.00311279,-0.00671387,-0.00637817,-0.00466919,-0.00265503,-0.000946045,0.00109863,0.00497437,0.00918579,0.0118408,0.0123291,0.010437,0.00717163,0.00201416,-0.00326538,-0.00796509,-0.0118408,-0.0127869,-0.0140381,-0.0137329,-0.0138855,-0.0113831,-0.00747681,-0.00234985,0.00326538,0.00732422,0.0101318,0.00982666,0.00982666,0.00842285,0.0090332,0.00671387,0.00390625,-0.00170898,-0.006073,-0.00982666,-0.0115356,-0.0129395,-0.0123291,-0.0113831,-0.00888062,-0.00637817,-0.00341797,-0.000152588,0.00375366,0.006073,0.00497437,0.00125122,-0.00405884,-0.00747681,-0.00997925,-0.0112305,-0.0141907,-0.0176086,-0.0187073,-0.0173035,-0.0119934,-0.00497437,0.00250244,0.00827026,0.0119934,0.0154419,0.0166931,0.0166931,0.0152893,0.0123291,0.00701904,0.00109863,-0.00482178,-0.00952148,-0.0110779,-0.0112305,-0.0115356,-0.0126343,-0.0135803,-0.0124817,-0.00857544,-0.00466919,-0.00140381,-0.00109863,-0.00186157,-0.000610352,0.00219727,0.00592041,0.00872803,0.00997925,0.00967407,0.00656128,0.00265503,-0.000305176,-0.00140381,-0.00219727,-0.00341797,-0.00531006,-0.00656128,-0.00561523,-0.00326538,0.0015564,0.00497437,0.00778198,0.00888062,0.00888062,0.00918579,0.0110779,0.0105896,0.00827026,0.00326538,-0.000610352,-0.00311279,-0.00326538,-0.00296021,-0.00109863,-0.00125122,0,0.00140381,0.00296021,0.00360107,0.00466919,0.00561523,0.00421143,0.00170898,-0.00280762,-0.00436401,-0.00436401,-0.00326538,-0.00201416,-0.00170898,0.000305176,0.00265503,0.00762939,0.0124817,0.0169983,0.0196533,0.0202637,0.0205688,0.0195007,0.0166931,0.0126343,0.00872803,0.00482178,-0.000305176,-0.00497437,-0.00842285,-0.0109253,-0.0101318,-0.00701904,-0.00390625,-0.000305176,0.00341797,0.00796509,0.0116882,0.0144958,0.0160522,0.0162048,0.0151367,0.0121765,0.00842285,0.00296021,-0.00125122,-0.00515747,-0.00686646,-0.00762939,-0.006073,-0.00436401,-0.000946045,0.00326538,0.00872803,0.0143433,0.0169983,0.0184021,0.0171509,0.0157471,0.013092,0.00762939,0.000793457,-0.00637817,-0.0135803,-0.0185547,-0.0216675,-0.0227661,-0.020752,-0.0177612,-0.0116882,-0.00622559,0.000793457,0.00732422,0.014801,0.0202637,0.0230713,0.0230713,0.020752,0.0184021,0.0138855,0.0090332,0.00326538,-0.00280762,-0.00842285,-0.0127869,-0.0149536,-0.0146484,-0.0124817,-0.00982666,-0.00717163,-0.00360107,-0.000457764,0.00201416,0.00375366,0.0045166,0.00405884,0.00265503,-0.000457764,-0.00265503,-0.00360107,-0.00360107,-0.00280762,-0.00311279,-0.00201416,-0.00109863,0.00219727,0.00592041,0.010437,0.0129395,0.0149536,0.0160522,0.0157471,0.0151367,0.0143433,0.0119934,0.0090332,0.00421143,-0.000610352,-0.00531006,-0.00888062,-0.0110779,-0.0123291,-0.0135803,-0.014801,-0.0143433,-0.0119934,-0.00857544,-0.00466919,-0.000305176,0.00296021,0.00576782,0.00811768,0.00982666,0.0119934,0.0124817,0.0113831,0.0105896,0.00842285,0.00827026,0.00762939,0.00747681,0.006073,0.0045166,0.00234985,-0.000457764,-0.00201416,-0.00421143,-0.00592041,-0.0101318,-0.0137329,-0.0173035,-0.0198059,-0.0204163,-0.0210571,-0.0212097,-0.020752,-0.0196533,-0.0163574,-0.0126343,-0.00811768,-0.00360107,-0.000457764,0.00234985,0.0045166,0.006073,0.00637817,0.00531006,0.00341797,-0.000305176,-0.00375366,-0.00656128,-0.00811768,-0.00918579,-0.0093689,-0.00888062,-0.00762939,-0.006073,-0.00421143,-0.00219727,-0.00219727,-0.00170898,-0.00341797,-0.00515747,-0.00857544,-0.0126343,-0.0165405,-0.0184021,-0.0209045,-0.0215149,-0.0212097,-0.0177612,-0.0129395,-0.00811768,-0.00234985,0.00186157,0.00622559,0.0105896,0.0137329,0.0144958,0.0141907,0.0129395,0.0115356,0.00918579,0.00701904,0.00466919,0.00219727,0.000152588,-0.00109863,-0.00311279,-0.00497437,-0.00686646,-0.00811768,-0.00872803,-0.010437,-0.0123291,-0.0129395,-0.0124817,-0.0123291,-0.0112305,-0.00952148,-0.00592041,-0.00341797,-0.000457764,0.00140381,0.00326538,0.00405884,0.00436401,0.00326538,0.000793457,-0.00186157,-0.00326538,-0.00497437,-0.00778198,-0.00827026,-0.00857544,-0.00827026,-0.00747681,-0.00637817,-0.00421143,-0.00311279,-0.00250244,-0.00250244,-0.00296021,-0.00421143,-0.00515747,-0.00592041,-0.00576782,-0.00732422,-0.00717163,-0.00701904,-0.006073,-0.00311279,-0.00250244,-0.00125122,-0.000305176,-0.000152588,0.000610352,0.000305176,0.000457764,0.000457764,-0.000457764,-0.000305176,0,0.000946045,0.00201416,0.00250244,0.00375366,0.00390625,0.00421143,0.00466919,0.00405884,0.00390625,0.00326538,0.00250244,0.00201416,0.00201416,0.00201416,0.00265503,0.00311279,0.00341797,0.00421143,0.00482178,0.00515747,0.00405884,0.00311279,0.00201416,0.000457764,-0.000152588,-0.00201416,-0.00234985,-0.00341797,-0.00360107,-0.00296021,-0.000457764,0.00265503,0.00622559,0.00967407,0.0121765,0.0133972,0.0144958,0.0163574,0.0168457,0.014801,0.0124817,0.00872803,0.00421143,0.000457764,-0.00265503,-0.00515747,-0.00717163,-0.00918579,-0.00888062,-0.00811768,-0.00546265,-0.00341797,-0.000793457,0.000152588,0.000610352,0.000610352,0.00170898,0.00201416,0.00186157,0.00280762,0.00186157,0.00109863,0.000305176,0.00109863,0.00234985,0.00482178,0.0045166,0.0045166,0.00375366,0.00341797,0.00326538,0.00326538,0.00186157,-0.000305176,-0.000946045,-0.00234985,-0.00375366,-0.00390625,-0.00360107,-0.00341797,-0.00341797,-0.00375366,-0.00280762,-0.00186157,-0.00140381,-0.00109863,-0.00140381,-0.00109863,-0.0015564,-0.0015564,0,0.000305176,0.00140381,0.00201416,0.00250244,0.00360107,0.00531006,0.00656128,0.00747681,0.00827026,0.00827026,0.00747681,0.00762939,0.00622559,0.00592041,0.00341797,0.00201416,-0.000793457,-0.00311279,-0.00405884,-0.00622559,-0.00762939,-0.00872803,-0.00967407,-0.00952148,-0.00967407,-0.00872803,-0.00811768,-0.00637817,-0.00546265,-0.00360107,-0.00219727,0,0.00170898,0.00265503,0.00250244,0.00170898,0.00140381,0.000946045,0.000305176,-0.0015564,-0.00280762,-0.00360107,-0.00515747,-0.00561523,-0.00531006,-0.00421143,-0.00311279,-0.00265503,-0.00186157,-0.0015564,-0.000457764,-0.000305176,0.000152588,0.000457764,0,-0.000793457,-0.00170898,-0.00125122,-0.00140381,-0.000946045,-0.00109863,0.000152588,0.00140381,0.00326538,0.00515747,0.00701904,0.00827026,0.00857544,0.00857544,0.00827026,0.00811768,0.00637817,0.00482178,0.00360107,0.00140381,-0.000793457,-0.00375366,-0.00482178,-0.00637817,-0.00732422,-0.00857544,-0.00827026,-0.00778198,-0.00576782,-0.0045166,-0.00280762,-0.00125122,-0.000305176,0.000793457,0.00125122,0.00186157,0.00170898,0.00170898,0.00140381,0.00140381,0.00109863,0.000457764,0.00170898,0.00140381,0.00296021,0.00250244,0.00265503,0.00360107,0.00375366,0.00326538,0.000793457,-0.000457764,-0.00311279,-0.00436401,-0.00592041,-0.00811768,-0.00842285,-0.00982666,-0.00952148,-0.0093689,-0.00842285,-0.00656128,-0.00482178,-0.00341797,-0.0015564,-0.000610352,0.00140381,0.00234985,0.00341797,0.00360107,0.00311279,0.00265503,0.00234985,0.00250244,0.00234985,0.00234985,0.00265503,0.00311279,0.00341797,0.00341797,0.00436401,0.00497437,0.00466919,0.00326538,0.00140381,0.000305176,-0.0015564,-0.00326538,-0.00482178,-0.006073,-0.00811768,-0.00827026,-0.0090332,-0.00888062,-0.00888062,-0.00842285,-0.00717163,-0.00637817,-0.00436401,-0.00296021,-0.00140381,0.000305176,0.000946045,0.00125122,0.000946045,0.00170898,0.00219727,0.00201416,0.00186157,0.000946045,-0.000152588,0.000305176,0.000305176,0.000946045,0.000793457,0.00170898,0.00201416,0.00326538,0.00436401,0.00576782,0.00592041,0.00592041,0.00421143,0.00296021,0.000946045,-0.00219727,-0.00390625,-0.006073,-0.00872803,-0.0102844,-0.0105896,-0.00982666,-0.00732422,-0.00436401,-0.000152588,0.00360107,0.00732422,0.0107727,0.0138855,0.0157471,0.0157471,0.0152893,0.0127869,0.00918579,0.00515747,0.00125122,-0.00201416,-0.00531006,-0.00857544,-0.010437,-0.0115356,-0.0115356,-0.0102844,-0.00857544,-0.00637817,-0.00436401,-0.00170898,-0.000457764,0.0015564,0.00265503,0.00326538,0.00296021,0.00140381,-0.0015564,-0.00311279,-0.00592041,-0.00717163,-0.00918579,-0.0101318,-0.0107727,-0.00997925,-0.00918579,-0.00762939,-0.00515747,-0.00219727,0.000793457,0.00311279,0.00576782,0.00762939,0.00842285,0.00888062,0.00732422,0.00546265,0.00280762,-0.000946045,-0.00341797,-0.00622559,-0.00827026,-0.0090332,-0.0093689,-0.00796509,-0.006073,-0.00296021,0.000457764,0.00326538,0.006073,0.00701904,0.00842285,0.00796509,0.00732422,0.00515747,0.00360107,0.000946045,-0.000457764,-0.00186157,-0.00280762,-0.00296021,-0.0015564,-0.000793457,0.00170898,0.00326538,0.00482178,0.00637817,0.00747681,0.00796509,0.00762939,0.00656128,0.00360107,0.00140381,-0.00186157,-0.00405884,-0.00637817,-0.00827026,-0.00997925,-0.0107727,-0.010437,-0.00967407,-0.00796509,-0.00546265,-0.00375366,-0.00280762,-0.00186157,-0.0015564,-0.000793457,-0.000610352,-0.000946045,-0.00201416,-0.00405884,-0.006073,-0.00686646,-0.00796509,-0.00796509,-0.00796509,-0.00762939,-0.00762939,-0.00656128,-0.00515747,-0.00311279,-0.00170898,-0.000152588,0.00125122,0.00201416,0.00311279,0.00390625,0.00436401,0.00436401,0.00326538,0.000457764,-0.000610352,-0.00219727,-0.00360107,-0.00360107,-0.00546265,-0.00561523,-0.00656128,-0.006073,-0.00561523,-0.00421143,-0.00250244,-0.000305176,0.000305176,0.00186157,0.00219727,0.0045166,0.00576782,0.00747681,0.00778198,0.00732422,0.00717163,0.00717163,0.00717163,0.00671387,0.00546265,0.00360107,0.00125122,-0.00109863,-0.00219727,-0.00234985,-0.00390625,-0.00482178,-0.00592041,-0.00592041,-0.00561523,-0.00405884,-0.00311279,-0.00125122,-0.000305176,0.000457764,0.000793457,0.00125122,0.00109863,0.000152588,-0.00109863,-0.00296021,-0.00497437,-0.00622559,-0.00686646,-0.00686646,-0.00637817,-0.00515747,-0.00360107,-0.00109863,0.00219727,0.00561523,0.00842285,0.0118408,0.0119934,0.0123291,0.0107727,0.00857544,0.00576782,0.00186157,-0.00250244,-0.00622559,-0.00967407,-0.0119934,-0.0127869,-0.0133972,-0.0121765,-0.0101318,-0.00701904,-0.00421143,-0.000793457,0.00170898,0.00482178,0.00622559,0.00762939,0.00701904,0.00656128,0.00531006,0.00421143,0.00250244,0.000946045,-0.000305176,-0.00109863,-0.000946045,-0.00109863,0,0.00140381,0.00250244,0.00421143,0.00546265,0.00592041,0.00576782,0.00546265,0.00360107,0.00186157,-0.000946045,-0.00375366,-0.00747681,-0.0102844,-0.013092,-0.0149536,-0.0155945,-0.0154419,-0.0140381,-0.0115356,-0.00796509,-0.00466919,-0.000610352,0.00234985,0.00576782,0.00778198,0.0093689,0.00872803,0.00717163,0.00561523,0.00265503,0.000610352,-0.00186157,-0.00341797,-0.00466919,-0.00436401,-0.0045166,-0.00280762,-0.00125122,0.000610352,0.00250244,0.00390625,0.00375366,0.00360107,0.00234985,0.000610352,-0.00140381,-0.00390625,-0.00561523,-0.00747681,-0.00811768,-0.00778198,-0.006073,-0.00436401,-0.00170898,0.000610352,0.00375366,0.00637817,0.00827026,0.00982666,0.0105896,0.010437,0.00952148,0.00796509,0.00561523,0.00436401,0.00170898,0,-0.00109863,-0.00390625,-0.00375366,-0.00531006,-0.00515747,-0.00531006,-0.00466919,-0.0045166,-0.00326538,-0.00360107,-0.00201416,-0.00109863,0.000152588,0.000793457,0.00140381,0.0015564,0.00125122,0.000946045,0.000793457,-0.000457764,-0.00170898,-0.00341797,-0.00421143,-0.00531006,-0.00515747,-0.00546265,-0.00482178,-0.00375366,-0.00250244,-0.0015564,-0.000152588,0.00170898,0.00341797,0.00421143,0.00421143,0.00360107,0.00234985,0.000610352,-0.00140381,-0.00341797,-0.00515747,-0.00686646,-0.00796509,-0.00762939,-0.00656128,-0.00497437,-0.00280762,-0.00109863,0.00186157,0.00341797,0.00576782,0.00656128,0.00827026,0.00778198,0.00747681,0.00576782,0.00390625,0.00201416,0.000457764,-0.00109863,-0.00265503,-0.00296021,-0.00280762,-0.00219727,-0.00109863,0.000457764,0.00140381,0.00341797,0.00436401,0.00561523,0.00671387,0.00686646,0.00762939,0.00686646,0.00622559,0.00326538,0.00219727,-0.000457764,-0.00201416,-0.00311279,-0.00497437,-0.00466919,-0.00531006,-0.00405884,-0.00311279,-0.00109863,0.000793457,0.00311279,0.0045166,0.00592041,0.006073,0.00656128,0.00637817,0.00515747,0.00265503,0.00109863,-0.0015564,-0.00296021,-0.00546265,-0.00637817,-0.00778198,-0.00778198,-0.00747681,-0.006073,-0.00390625,-0.00170898,0.000793457,0.00296021,0.00421143,0.00592041,0.00622559,0.00622559,0.00466919,0.00390625,0.0015564,-0.000610352,-0.00326538,-0.00531006,-0.00686646,-0.00872803,-0.00918579,-0.00888062,-0.00778198,-0.00622559,-0.00421143,-0.00280762,-0.000946045,0,0.0015564,0.00186157,0.00201416,0.00186157,0.00125122,-0.000457764,-0.00186157,-0.00265503,-0.0045166,-0.00561523,-0.006073,-0.00637817,-0.00561523,-0.00482178,-0.00375366,-0.00265503,-0.00125122,-0.000457764,0.000610352,0.00170898,0.00186157,0.00234985,0.00250244,0.00186157,0.00140381,0.000152588,-0.000793457,-0.00170898,-0.00280762,-0.00390625,-0.00436401,-0.00405884,-0.00405884,-0.00265503,-0.00250244,-0.000610352,-0.000457764,0.000793457,0.00186157,0.00250244,0.00296021,0.00265503,0.00186157,0.00109863,0.000152588,-0.000610352,-0.00170898,-0.00265503,-0.00234985,-0.00341797,-0.00219727,-0.00265503,-0.00125122,-0.000793457,-0.000793457,0.000305176,0.000793457,0.00109863,0.00170898,0.00125122,0.000793457,0.000152588,-0.000610352,-0.00125122,-0.00170898,-0.00250244,-0.00265503,-0.00326538,-0.00341797,-0.00405884,-0.00390625,-0.0045166,-0.00390625,-0.00326538,-0.00280762,-0.00140381,0.000305176,0.00219727,0.00360107,0.00466919,0.00531006,0.00576782,0.00546265,0.00482178,0.00375366,0.00201416,0.000610352,-0.00186157,-0.00390625,-0.00531006,-0.006073,-0.00637817,-0.00576782,-0.00546265,-0.00497437,-0.00326538,-0.00201416,-0.00140381,-0.000305176,0.000152588,0.000457764,0.000305176,0.000305176,-0.000610352,-0.000610352,-0.0015564,-0.00234985,-0.00311279,-0.00296021,-0.00296021,-0.00234985,-0.00125122,-0.000610352,0.000457764,0.00170898,0.00250244,0.00326538,0.00360107,0.00421143,0.00341797,0.00280762,0.00109863,-0.000457764,-0.00201416,-0.00390625,-0.00466919,-0.00576782,-0.00656128,-0.006073,-0.00515747,-0.00436401,-0.00280762,-0.00170898,0,0.00109863,0.00250244,0.00326538,0.00326538,0.00326538,0.00296021,0.00170898,0.0015564,0,0,-0.000610352,-0.000793457,-0.000793457,-0.000305176,-0.000152588,0.000946045,0.00140381,0.00170898,0.00186157,0.00140381,0.000305176,-0.000793457,-0.00250244,-0.00341797,-0.00515747,-0.00622559,-0.00701904,-0.00732422,-0.00686646,-0.00561523,-0.00421143,-0.00234985,-0.000305176,0.0015564,0.00436401,0.00561523,0.00701904,0.00747681,0.00717163,0.00546265,0.00436401,0.00250244,0.000793457,-0.0015564,-0.00341797,-0.00531006,-0.00656128,-0.00656128,-0.00656128,-0.00671387,-0.00592041,-0.00497437,-0.00390625,-0.00201416,-0.000457764,0.000305176,0.0015564,0.00219727,0.00265503,0.00311279,0.00296021,0.00234985,0.0015564,0.00109863,-0.000610352,-0.000946045,-0.00201416,-0.00250244,-0.00311279,-0.00326538,-0.00326538,-0.00250244,-0.0015564,-0.000793457,0.000457764,0.000946045,0.00234985,0.00280762,0.00280762,0.00201416,0.00125122,0.000946045,-0.00109863,-0.00170898,-0.00375366,-0.00482178,-0.00592041,-0.00622559,-0.00622559,-0.00622559,-0.00482178,-0.00390625,-0.00140381,-0.000457764,0.00125122,0.00296021,0.00421143,0.00482178,0.00592041,0.00576782,0.00561523,0.00497437,0.00390625,0.00265503,0.00109863,0.000152588,-0.00109863,-0.00186157,-0.00219727,-0.00219727,-0.00140381,-0.000946045,-0.000152588,0.00125122,0.00234985,0.00296021,0.00341797,0.00405884,0.00311279,0.00265503,0.00219727,0.000152588,0.000152588,-0.00186157,-0.00234985,-0.00265503,-0.00296021,-0.00250244,-0.00186157,-0.00125122,-0.000152588,0.000305176,0.00170898,0.00186157,0.00234985,0.00280762,0.00250244,0.00234985,0.00170898,0.000610352,0,-0.000946045,-0.00170898,-0.00219727,-0.00219727,-0.00311279,-0.00311279,-0.00390625,-0.00311279,-0.00375366,-0.00234985,-0.00250244,-0.00186157,-0.00186157,-0.00109863,-0.00125122,-0.00186157,-0.00201416,-0.00234985,-0.00250244,-0.00296021,-0.00234985,-0.00280762,-0.00201416,-0.00250244,-0.00250244,-0.00219727,-0.00219727,-0.00219727,-0.00219727,-0.00234985,-0.00311279,-0.00250244,-0.00265503,-0.0015564,-0.00140381,-0.000457764,0.000946045,0.0015564,0.00311279,0.00360107,0.00390625,0.00421143,0.00405884,0.00296021,0.00201416,0.000457764,-0.000305176,-0.00186157,-0.00280762,-0.00311279,-0.00375366,-0.00360107,-0.00326538,-0.00296021,-0.0015564,-0.000946045,-0.000305176,0.000305176,0.000610352,0.000305176,-0.000152588,-0.000457764,-0.00186157,-0.00201416,-0.00311279,-0.00311279,-0.00390625,-0.00390625,-0.00311279,-0.00265503,-0.00201416,-0.000793457,-0.000152588,0.000610352,0.00186157,0.00170898,0.00201416,0.00219727,0.00140381,0.000946045,-0.000610352,-0.000946045,-0.00265503,-0.00326538,-0.00482178,-0.00515747,-0.00561523,-0.00592041,-0.00515747,-0.0045166,-0.00311279,-0.00219727,-0.000946045,0.000152588,0.00170898,0.00234985,0.00265503,0.00326538,0.00296021,0.00296021,0.0015564,0.00140381,0,-0.000793457,-0.00234985,-0.00250244,-0.00326538,-0.00265503,-0.00234985,-0.00186157,-0.000793457,0.000457764,0.00125122,0.00250244,0.00296021,0.00341797,0.00326538,0.00311279,0.00234985,0.00170898,0.00125122,0.000457764,-0.000610352,-0.00125122,-0.00186157,-0.00280762,-0.00265503,-0.00311279,-0.00360107,-0.00326538,-0.00390625,-0.00250244,-0.00265503,-0.00125122,-0.00140381,0.000152588,0.000152588,0.000946045,0.00109863,0.00170898,0.00140381,0.00234985,0.00186157,0.00219727,0.00140381,0.00125122,0.0015564,0.00125122,0.000946045,0.000610352,0.000457764,0,0.000152588,-0.000305176,-0.000610352,-0.000946045,-0.000610352,-0.00109863,-0.000946045,-0.00186157,-0.000946045,-0.0015564,-0.00170898,-0.00201416,-0.00219727,-0.00219727,-0.00201416,-0.00201416,-0.0015564,-0.00125122,-0.000610352,-0.000946045,-0.000457764,-0.000457764,0.000152588,0.000793457,0.00109863,0.00170898,0.00250244,0.00296021,0.00375366,0.00375366,0.00360107,0.00326538,0.00280762,0.00170898,0.00125122,-0.000793457,-0.00109863,-0.00250244,-0.00311279,-0.00375366,-0.00360107,-0.00311279,-0.00296021,-0.00201416,-0.000946045,0.000946045,0.00186157,0.00296021,0.00375366,0.00390625,0.00390625,0.00341797,0.0015564,0.000305176,-0.00109863,-0.00360107,-0.00421143,-0.00576782,-0.00546265,-0.00576782,-0.00375366,-0.00296021,-0.000457764,0.00125122,0.00296021,0.00360107,0.00482178,0.0045166,0.00296021,0.00186157,0,-0.00219727,-0.00375366,-0.00622559,-0.00701904,-0.00778198,-0.00778198,-0.00637817,-0.00466919,-0.00234985,-0.000610352,0.00186157,0.00311279,0.00515747,0.00531006,0.00531006,0.00421143,0.00250244,0.00109863,-0.00109863,-0.00250244,-0.00405884,-0.00436401,-0.00497437,-0.00436401,-0.00436401,-0.00250244,-0.00140381,0.000152588,0.0015564,0.00234985,0.00326538,0.00360107,0.00390625,0.00296021,0.00265503,0.00125122,-0.000793457,-0.00109863,-0.00234985,-0.00280762,-0.00296021,-0.00311279,-0.00280762,-0.00186157,-0.0015564,-0.00109863,-0.000152588,0.000946045,0.00109863,0.000793457,0.00109863,0.000152588,0.000305176,-0.000305176,-0.000946045,-0.000457764,-0.00140381,-0.000946045,-0.00125122,-0.000946045,-0.000793457,-0.000305176,-0.000305176,0.000152588,0.000152588,0.00109863,0.00125122,0.00125122,0.000793457,0.00125122,0.000152588,-0.000610352,-0.00125122,-0.00201416,-0.00250244,-0.00280762,-0.00280762,-0.00326538,-0.00250244,-0.00296021,-0.00186157,-0.00170898,-0.00109863,-0.000946045,-0.000610352,-0.000610352,-0.000305176,-0.000946045,-0.00125122,-0.00170898,-0.00170898,-0.00186157,-0.00280762,-0.00201416,-0.00296021,-0.00186157,-0.00234985,-0.00140381,-0.00109863,-0.000457764,0.000305176,0.000793457,0.0015564,0.00170898,0.00186157,0.0015564,0.000946045,-0.000152588,-0.0015564,-0.00250244,-0.00341797,-0.0045166,-0.00576782,-0.00637817,-0.00686646,-0.00592041,-0.00531006,-0.00390625,-0.00280762,-0.0015564,0.000457764,0.00125122,0.00265503,0.00311279,0.00341797,0.00311279,0.00201416,0.0015564,0.000793457,-0.000305176,-0.0015564,-0.00234985,-0.00280762,-0.00296021,-0.00265503,-0.00186157,-0.00170898,0.000152588,0.00109863,0.00201416,0.00311279,0.00341797,0.00341797,0.00250244,0.00186157,0.000793457,-0.000305176,-0.0015564,-0.00265503,-0.00265503,-0.00405884,-0.00421143,-0.0045166,-0.00341797,-0.00326538,-0.00201416,-0.00140381,-0.000152588,0.000610352,0.00201416,0.00265503,0.00311279,0.00296021,0.00265503,0.00250244,0.00170898,0.000610352,-0.000457764,-0.00186157,-0.00265503,-0.00405884,-0.00405884,-0.00466919,-0.00466919,-0.00390625,-0.00405884,-0.00265503,-0.00170898,-0.000793457,-0.000457764,0.000793457,0.000610352,0.000946045,0.00109863,0.000946045,0.000152588,-0.000793457,-0.000946045,-0.00140381,-0.00234985,-0.00296021,-0.00341797,-0.00375366,-0.00405884,-0.00405884,-0.00360107,-0.00280762,-0.00250244,-0.00125122,-0.00109863,0.000305176,0.000793457,0.00140381,0.00140381,0.0015564,0.00109863,-0.000152588,-0.000305176,-0.000946045,-0.00109863,-0.00219727,-0.00280762,-0.00296021,-0.00296021,-0.00296021,-0.00186157,-0.00125122,-0.000793457,0.000152588,0.00109863,0.00109863,0.00250244,0.00341797,0.00326538,0.00341797,0.00360107,0.00296021,0.00265503,0.00234985,0.000793457,0.000305176,-0.000457764,-0.00140381,-0.00186157,-0.00234985,-0.00265503,-0.00265503,-0.00296021,-0.00234985,-0.00125122,-0.000457764,0,0.000457764,0.00125122,0.00109863,0.00186157,0.0015564,0.00201416,0.00140381,0.00140381,0.000610352,0.000793457,0,0.000305176,-0.000305176,0.000305176,0.000305176,0.00125122,0.00170898,0.00265503,0.00234985,0.00326538,0.00265503,0.00296021,0.00234985,0.0015564,0.000793457,-0.000610352,-0.00201416,-0.00341797,-0.00405884,-0.00497437,-0.00482178,-0.00466919,-0.00405884,-0.00341797,-0.00250244,-0.0015564,-0.000457764,0.000305176,0.00140381,0.0015564,0.00219727,0.00219727,0.00170898,0.00140381,0.00109863,0.00109863,0.000610352,0,0.000152588,-0.000457764,-0.000152588,-0.000305176,-0.000457764,0.000152588,0,0.000457764,0.000457764,0.00109863,0.00125122,0.000305176,0.000610352,0.000457764,0,-0.000305176,-0.000946045,-0.00186157,-0.00234985,-0.00265503,-0.00234985,-0.00265503,-0.00201416,-0.00170898,-0.000793457,-0.000610352,0.000152588,0.00140381,0.00219727,0.00265503,0.00280762,0.00326538,0.00250244,0.00219727,0.00170898,0.00125122,0.000610352,-0.000152588,-0.00140381,-0.00170898,-0.00186157,-0.00219727,-0.00201416,-0.00219727,-0.00186157,-0.00170898,-0.00140381,-0.000610352,-0.000457764,-0.000946045,-0.00109863,-0.00125122,-0.00125122,-0.00170898,-0.00201416,-0.00234985,-0.00234985,-0.00250244,-0.00250244,-0.00201416,-0.00125122,-0.000610352,-0.000152588,0.000152588,0.00125122,0.000946045,0.00109863,0.00170898,0.00125122,0.00109863,0.000793457,0.000457764,0.000457764,0.000305176,-0.000305176,0,-0.000793457,-0.000610352,-0.000457764,-0.000793457,-0.00109863,-0.00140381,-0.00125122,-0.0015564,-0.00109863,-0.00186157,-0.00125122,-0.00186157,-0.00125122,-0.00125122,-0.000793457,-0.000305176,0.000457764,0,0.000946045,0.00109863,0.00125122,0.00109863,0.00140381,0,0.000305176,-0.000457764,-0.000946045,-0.000793457,-0.00125122,-0.000793457,-0.000793457,-0.000152588,0.000152588,0.000793457,0.00109863,0.00125122,0.00109863,0.00125122,0.000610352,0.000457764,-0.000305176,-0.000793457,-0.0015564,-0.00109863,-0.00125122,-0.00109863,-0.0015564,-0.0015564,-0.000946045,-0.000152588,-0.000610352,-0.000610352,-0.000305176,-0.00125122,-0.000610352,-0.00125122,-0.00109863,-0.00234985,-0.00140381,-0.00234985,-0.00170898,-0.00186157,-0.00170898,-0.00170898,-0.00170898,-0.00109863,-0.00170898,-0.00140381,-0.00170898,-0.00186157,-0.00170898,-0.00311279,-0.00296021,-0.00390625,-0.00375366,-0.00360107,-0.0045166,-0.00390625,-0.00421143,-0.00311279,-0.00234985,-0.00186157,-0.0015564,0,0,0.000610352,0.000305176,0.000152588,0,-0.000457764,-0.00109863,-0.00201416,-0.00296021,-0.00341797,-0.00375366,-0.00375366,-0.00375366,-0.00311279,-0.00250244,-0.00186157,-0.000946045,-0.000610352,0.000305176,0.000793457,0.00109863,0.000305176,0.000610352,-0.000457764,-0.000946045,-0.00170898,-0.00234985,-0.00234985,-0.00250244,-0.00186157,-0.00201416,-0.00109863,-0.000305176,0.000305176,0.00125122,0.00140381,0.00186157,0.00186157,0.00186157,0.00186157,0.00109863,0.000610352,-0.000457764,-0.000610352,-0.00140381,-0.00170898,-0.00140381,-0.00170898,-0.00109863,-0.000946045,-0.000610352,0,0.000152588,-0.000305176,0.000152588,-0.000793457,-0.000793457,-0.00170898,-0.00219727,-0.00234985,-0.00311279,-0.00280762,-0.00360107,-0.00280762,-0.00250244,-0.00125122,-0.00109863,0,0.000946045,0.00125122,0.00170898,0.00186157,0.00186157,0.0015564,0.00125122,0.00109863,0.000152588,-0.000152588,-0.000946045,-0.00170898,-0.00201416,-0.00265503,-0.00170898,-0.00265503,-0.00170898,-0.00250244,-0.0015564,-0.00125122,-0.000793457,-0.000457764,0,0.000305176,0.000793457,0.000305176,0.000152588,-0.000152588,-0.000610352,-0.000457764,-0.000152588,-0.000305176,-0.000457764,0.000610352,0.000152588,0.00125122,0.0015564,0.00170898,0.0015564,0.00234985,0.00219727,0.00186157,0.00234985,0.00170898,0.00109863,0.000793457,-0.000152588,-0.000610352,-0.000793457,-0.00170898,-0.00186157,-0.00219727,-0.00186157,-0.00219727,-0.00125122,-0.00125122,-0.000457764,-0.000457764,0.000610352,0.00109863,0.000946045,0.00125122,0.00140381,0.00140381,0.000946045,0.00109863,0.000152588,-0.000305176,-0.000152588,-0.000793457,-0.000793457,-0.000457764,-0.00125122,-0.000793457,-0.000152588,-0.000305176,0.000305176,-0.000152588,0,-0.000152588,-0.000610352,-0.000152588,-0.00125122,-0.00109863,-0.00186157,-0.00186157,-0.00265503,-0.00219727,-0.00201416,-0.00170898,-0.00109863,-0.000946045,0.000305176,0,0.000946045,0.000457764,0.000946045,0.000610352,0.000457764,0.000152588,-0.000152588,-0.000793457,-0.00125122,-0.00125122,-0.00170898,-0.0015564,-0.0015564,-0.0015564,-0.00125122,-0.0015564,-0.000946045,-0.000793457,-0.00109863,-0.000305176,-0.00140381,-0.00125122,-0.00109863,-0.000793457,-0.000793457,-0.000457764,0.000457764,0.000305176,0.000793457,0.0015564,0.00109863,0.00140381,0.00125122,0.000946045,0.000793457,-0.000152588,0,-0.00109863,-0.00109863,-0.00170898,-0.00219727,-0.00186157,-0.00170898,-0.00109863,-0.00125122,-0.000457764,-0.000610352,0.000305176,-0.000152588,0.000610352,0.000610352,0.000793457,0.000793457,0.000152588,0.000305176,-0.000152588,-0.000305176,-0.000457764,-0.000793457,0,-0.000305176,-0.000152588,0,0,-0.000457764,-0.000793457,-0.000793457,-0.00125122,-0.000793457,-0.000610352,-0.00109863,-0.00125122,-0.00109863,-0.000610352,-0.000152588,-0.000457764,0.000152588,-0.000152588,-0.000305176,-0.000305176,-0.000457764,-0.000793457,-0.00125122,-0.00125122,-0.00234985,-0.00201416,-0.00234985,-0.00250244,-0.00201416,-0.00219727,-0.00140381,-0.00186157,-0.00109863,-0.000793457,-0.000793457,-0.000457764,-0.000793457,-0.000793457,-0.000610352,-0.000610352,-0.000610352,-0.000152588,-0.000610352,-0.000152588,-0.000152588,-0.000305176,-0.000152588,-0.000457764,-0.000457764,-0.000946045,-0.000946045,-0.000946045,-0.000946045,-0.000793457,-0.000305176,-0.000305176,-0.000152588,0,0.000457764,0.000152588,0.000610352,0.000305176,0.000305176,-0.000305176,-0.000305176,-0.000946045,-0.00140381,-0.0015564,-0.00170898,-0.00219727,-0.00170898,-0.00140381,-0.000610352,-0.000457764,0.000457764,0.000946045,0.00109863,0.00170898,0.0015564,0.00140381,0.0015564,0.000457764,-0.000152588,-0.000793457,-0.000946045,-0.0015564,-0.0015564,-0.00186157,-0.00219727,-0.00109863,-0.0015564,-0.000610352,-0.000457764,0,0,0.000793457,0.000305176,0.000152588,0,-0.000152588,-0.000305176,-0.00125122,-0.00109863,-0.0015564,-0.00186157,-0.00170898,-0.0015564,-0.0015564,-0.000946045,-0.000946045,-0.000305176,0,0,0.000610352,0.000457764,0.000457764,0.000457764,0,-0.000152588,-0.000610352,-0.00109863,-0.0015564,-0.00170898,-0.00250244,-0.00186157,-0.00250244,-0.00201416,-0.00234985,-0.0015564,-0.00140381,-0.00109863,-0.000152588,-0.000793457,0.000152588,-0.000152588,0.000305176,0.000305176,-0.000152588,0.000610352,-0.000946045,-0.000152588,-0.000152588,-0.000946045,-0.000793457,-0.000946045,-0.00125122,-0.00170898,-0.00186157,-0.00170898,-0.00186157,-0.00201416,-0.00234985,-0.00201416,-0.00234985,-0.00201416,-0.00186157,-0.00201416,-0.00109863,-0.00170898,-0.000152588,-0.000610352,0.000610352,0.000610352,0.000946045,0.00125122,0.00186157,0.0015564,0.00219727,0.00201416,0.00140381,0.0015564,0.000793457,0.000457764,-0.000152588,-0.000793457,-0.00125122,-0.0015564,-0.00186157,-0.00186157,-0.00201416,-0.00219727,-0.00186157,-0.00170898,-0.00201416,-0.00125122,-0.00109863,-0.000946045,-0.000946045,-0.000305176,-0.000457764,-0.000793457,0,-0.000946045,-0.000610352,-0.000793457,-0.000793457,-0.00125122,-0.000610352,-0.000946045,-0.000457764,0.000152588,0.000457764,0.000610352,0.00109863,0.000610352,0.000610352,0.000457764,0.000152588,-0.000793457,-0.000946045,-0.00170898,-0.00201416,-0.00265503,-0.00296021,-0.00265503,-0.00280762,-0.00186157,-0.00125122,-0.000793457,0.000305176,0.000946045,0.00170898,0.00170898,0.00186157,0.00219727,0.00125122,0.00125122,0.000610352,-0.000610352,-0.000610352,-0.00125122,-0.00170898,-0.00125122,-0.00170898,-0.000946045,-0.000152588,0,0.000793457,0.00109863,0.00170898,0.00186157,0.00140381,0.0015564,0.00140381,0.000305176,0,-0.000305176,-0.00140381,-0.00109863,-0.0015564,-0.0015564,-0.00125122,-0.000305176,-0.000152588,0.000305176,0.00125122,0.0015564,0.00170898,0.00170898,0.00125122,0.000946045,-0.000152588,-0.000457764,-0.00140381,-0.00219727,-0.00280762,-0.00326538,-0.00311279,-0.00311279,-0.00250244,-0.00219727,-0.0015564,-0.00125122,-0.000152588,0.000305176,0.000610352,0.000793457,0.000946045,0.000152588,0.000152588,-0.000610352,-0.00109863,-0.00201416,-0.0015564,-0.00234985,-0.00250244,-0.00201416,-0.00170898,-0.00125122,-0.00109863,-0.000457764,-0.000457764,-0.000305176,0.000152588,-0.000305176,-0.000305176,-0.000457764,-0.00125122,-0.00186157,-0.00219727,-0.00280762,-0.00341797,-0.00341797,-0.00360107,-0.00296021,-0.00265503,-0.00170898,-0.0015564,-0.000457764,0.000152588,0.000610352,0.000793457,0.000946045,0.00140381,0.000793457,0.000793457,-0.000305176,-0.000305176,-0.00140381,-0.00219727,-0.00219727,-0.00234985,-0.00296021,-0.00280762,-0.00234985,-0.00186157,-0.0015564,-0.000610352,-0.000152588,0.000305176,0.000793457,0.000946045,0.00109863,0.00109863,0.000610352,0.000152588,-0.000152588,-0.000946045,-0.000793457,-0.00186157,-0.00170898,-0.00201416,-0.00125122,-0.0015564,-0.000946045,-0.000457764,0.000793457,0.000610352,0.00125122,0.00125122,0.0015564,0.000793457,0.000946045,-0.000152588,-0.000793457,-0.00109863,-0.00201416,-0.00234985,-0.00201416,-0.00219727,-0.0015564,-0.00125122,-0.000457764,-0.000457764,0.000457764,0.000610352,0.000946045,0.00109863,0.000946045,0.000793457,0.000610352,0.000152588,0,-0.000610352,-0.000152588,-0.000793457,-0.000457764,-0.000793457,-0.000305176,-0.000793457,0.000152588,-0.000610352,-0.000793457,-0.000610352,-0.000305176,-0.00109863,-0.000946045,-0.0015564,-0.00170898,-0.00186157,-0.00170898,-0.00186157,-0.00170898,-0.00140381,-0.00125122,-0.000610352,-0.000610352,0.000457764,0,0.000457764,0.000457764,0,0.000305176,-0.000457764,-0.000457764,-0.000946045,-0.000946045,-0.00109863,-0.00140381,-0.000946045,-0.000793457,-0.000793457,-0.000457764,-0.000457764,-0.000305176,-0.000610352,-0.00109863,-0.000793457,-0.00186157,-0.00170898,-0.00234985,-0.00219727,-0.00265503,-0.00186157,-0.00186157,-0.00109863,-0.00109863,0,-0.000305176,0,0,0.000610352,0,0,-0.000152588,-0.000610352,-0.000457764,-0.000793457,-0.000946045,-0.000610352,-0.00109863,-0.000610352,-0.000946045,-0.000610352,-0.000305176,-0.000152588,-0.000457764,0.000305176,-0.000305176,-0.000305176,0.000152588,-0.000946045,-0.00125122,-0.000946045,-0.00170898,-0.00140381,-0.0015564,-0.00125122,-0.00140381,-0.000793457,-0.000457764,-0.000152588,-0.000305176,0.000610352,0,0.000610352,0.000610352,0.000793457,0.000457764,0.000793457,0.000793457,0.000152588,0.000152588,-0.000152588,-0.000946045,-0.000793457,-0.00170898,-0.00125122,-0.0015564,-0.00186157,-0.000946045,-0.00170898,-0.000610352,-0.000946045,0.000152588,0.000152588,0.000152588,0.000305176,0.000152588,0.000610352,0,0,-0.000793457,-0.000457764,-0.000793457,-0.00109863,-0.00125122,-0.00109863,-0.00125122,-0.000793457,-0.000610352,-0.000152588,-0.000305176,0.000152588,0,0.000457764,0,0.000152588,0,-0.000457764,-0.000793457,-0.000946045,-0.0015564,-0.00125122,-0.00201416,-0.00125122,-0.0015564,-0.00125122,-0.000946045,-0.000793457,-0.000152588,0.000305176,0.000305176,0.000610352,0.000610352,0.000305176,0.000457764,0,-0.000457764,-0.000457764,-0.000946045,-0.000793457,-0.00125122,-0.00125122,-0.00125122,-0.000946045,-0.00109863,-0.00109863,-0.000457764,-0.000793457,-0.000946045,-0.000457764,-0.000793457,-0.000610352,-0.00109863,-0.000610352,-0.00109863,-0.000793457,-0.000793457,-0.000793457,-0.00109863,-0.000305176,0,-0.000305176,0.000457764,0.000305176,0.000305176,0.000152588,0.000305176,0,0.000152588,-0.000457764,-0.000457764,-0.000946045,-0.000305176,-0.000946045,-0.000610352,-0.000305176,-0.000610352,0.000152588,-0.000305176,0.000305176,0.000152588,0.000946045,0.000610352,0.000610352,0.000152588,0.000946045,0.000152588,-0.000152588,-0.000305176,-0.00109863,-0.0015564,-0.0015564,-0.00186157,-0.00250244,-0.00201416,-0.00219727,-0.0015564,-0.0015564,-0.00109863,-0.000305176,0.000152588,0.000457764,0.00109863,0.00140381,0.00125122,0.00125122,0.00109863,0.000610352,0.000152588,-0.000305176,-0.000793457,-0.000793457,-0.00140381,-0.00170898,-0.00186157,-0.00170898,-0.00125122,-0.00109863,-0.00109863,-0.00109863,-0.000946045,-0.00109863,-0.00109863,-0.00125122,-0.0015564,-0.00201416,-0.00219727,-0.00234985,-0.00234985,-0.00234985,-0.00234985,-0.00234985,-0.00140381,-0.00109863,-0.00109863,-0.000305176,-0.000305176,0.000152588,0.000457764,0,0.000305176,-0.000457764,0,-0.000610352,-0.000610352,-0.00125122,-0.0015564,-0.00109863,-0.0015564,-0.00125122,-0.00109863,-0.00109863,-0.000610352,-0.000457764,0.000152588,0.000152588,0,0.000457764,-0.000152588,0,-0.000457764,-0.000793457,-0.00109863,-0.00170898,-0.00125122,-0.00186157,-0.0015564,-0.0015564,-0.000610352,-0.000152588,0.000457764,0.00109863,0.0015564,0.00201416,0.00219727,0.00250244,0.00186157,0.00140381,0.00140381,0.000152588,-0.000305176,-0.00109863,-0.00170898,-0.0015564,-0.00280762,-0.00186157,-0.00234985,-0.00170898,-0.00125122,-0.00109863,-0.000793457,-0.000305176,0,-0.000305176,0,-0.000152588,-0.000457764,-0.000793457,-0.00109863,-0.0015564,-0.0015564,-0.00170898,-0.0015564,-0.00186157,-0.00125122,-0.00125122,-0.000457764,-0.000305176,0.000152588,0.000305176,0.000793457,0.000610352,0.000793457,0.000152588,0,-0.000610352,-0.000305176,-0.00170898,-0.00170898,-0.00201416,-0.00219727,-0.00234985,-0.00186157,-0.00170898,-0.0015564,-0.000946045,-0.000610352,-0.000457764,-0.000152588,0.000305176,-0.000152588,0.000457764,-0.000305176,-0.000305176,-0.000152588,-0.000305176,-0.000457764,-0.000610352,-0.000457764,-0.000457764,-0.000457764,-0.000152588,-0.000305176,-0.000305176,-0.000457764,-0.000305176,-0.000610352,-0.000152588,-0.000610352,-0.000457764,-0.000457764,-0.00109863,-0.000457764,-0.000946045,-0.000305176,-0.000610352,0,-0.000457764,0.000305176,0.000152588,0.000457764,0.000610352,0.000610352,0.000457764,0.000305176,0.000305176,0.000152588,-0.000152588,-0.000152588,-0.00109863,-0.000305176,-0.000793457,-0.000457764,-0.000457764,-0.000457764,0,0.000305176,0.000793457,0.000305176,0.000946045,0.000793457,0.000457764,0.000793457,0,-0.000457764,-0.000793457,-0.00125122,-0.00125122,-0.00201416,-0.00170898,-0.00201416,-0.00201416,-0.00170898,-0.00140381,-0.00109863,-0.000457764,-0.000305176,-0.000457764,0.000152588,0,-0.000152588,0.000152588,0,-0.000457764,-0.000305176,-0.000457764,-0.000946045,0,-0.000610352,0,-0.000305176,-0.000152588,-0.000305176,-0.000457764,-0.000305176,-0.00109863,-0.000946045,-0.0015564,-0.00201416,-0.00170898,-0.00250244,-0.00234985,-0.00201416,-0.00219727,-0.0015564,-0.000946045,-0.00125122,-0.000152588,-0.000457764,0.000457764,0.000610352,0.000305176,0.000457764,0.000152588,0.000305176,-0.000305176,-0.000152588,-0.000610352,-0.000457764,-0.000457764,-0.000610352,0,0,0,0,0,0.000305176,0.000152588,-0.000152588,-0.000610352,-0.000457764,-0.00109863,-0.00125122,-0.000946045,-0.00140381,-0.00140381,-0.00140381,-0.00140381,-0.00140381,-0.00140381,-0.000946045,-0.00140381,-0.000946045,-0.00109863,-0.000610352,-0.000610352,-0.000152588,0,0.000305176,0.000457764,0.000793457,0.000946045,0.000305176,0.000610352,-0.000152588,-0.000152588,-0.000610352,-0.000946045,-0.00125122,-0.0015564,-0.00140381,-0.00186157,-0.00125122,-0.00125122,-0.00109863,-0.000457764,-0.000305176,-0.000457764,-0.000305176,0,-0.000457764,-0.000152588,-0.000946045,-0.000610352,-0.00140381,-0.00140381,-0.00125122,-0.0015564,-0.00109863,-0.00125122,-0.000610352,-0.000457764,-0.000152588,0,0.000305176,0.000793457,0.000152588,0.000457764,-0.000305176,-0.000152588,-0.000946045,-0.000946045,-0.00170898,-0.00140381,-0.00170898,-0.00140381,-0.00125122,-0.00109863,-0.00125122,-0.000610352,-0.000610352,-0.000793457,-0.000610352,-0.000610352,-0.000946045,-0.000793457,-0.000610352,-0.000946045,-0.000793457,-0.000793457,-0.000610352,-0.000305176,-0.000457764,0.000152588,-0.000610352,0.000152588,0,-0.000610352,-0.000305176,-0.000946045,-0.000793457,-0.0015564,-0.00125122,-0.0015564,-0.0015564,-0.00125122,-0.00125122,-0.000946045,-0.000610352,-0.000305176,-0.000457764,0.000305176,0,0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000793457,-0.00125122,-0.000946045,-0.000946045,-0.00125122,-0.000793457,-0.000610352,-0.000152588,0,0.000305176,0.000610352,0.000610352,0.000793457,0.000793457,0.000152588,0.000152588,0,-0.000610352,-0.000793457,-0.0015564,-0.0015564,-0.00219727,-0.00234985,-0.00250244,-0.00219727,-0.00250244,-0.0015564,-0.00186157,-0.000946045,-0.000610352,-0.000457764,0.000305176,0.000305176,0.000457764,0.000793457,0.000305176,0,0,-0.000610352,-0.000946045,-0.00125122,-0.00140381,-0.00170898,-0.00170898,-0.0015564,-0.00125122,-0.000793457,-0.00109863,-0.000457764,-0.000305176,-0.000152588,0.000457764,0,0,-0.000610352,-0.000793457,-0.00140381,-0.00186157,-0.00201416,-0.00186157,-0.00219727,-0.00201416,-0.00186157,-0.00125122,-0.000793457,-0.000305176,0,0.000152588,0.000610352,0.000610352,0.000946045,0.000610352,0.000457764,0.000305176,-0.000152588,0,-0.000793457,-0.000610352,-0.000946045,-0.000946045,-0.00109863,-0.000610352,-0.000946045,-0.000610352,-0.000793457,-0.000457764,-0.000457764,-0.000946045,-0.000457764,-0.000946045,-0.00109863,-0.000946045,-0.00140381,-0.00109863,-0.000946045,-0.0015564,-0.000793457,-0.00170898,-0.000793457,-0.00125122,-0.000946045,-0.000946045,-0.000946045,0.000152588,-0.000793457,0.000305176,-0.000152588,0,-0.000152588,-0.000152588,-0.000305176,-0.000610352,-0.000457764,-0.000793457,-0.00109863,-0.00125122,-0.00109863,-0.00109863,-0.00109863,-0.000946045,-0.000793457,-0.000457764,-0.000305176,0.000457764,-0.000305176,0.000457764,0.000152588,0.000305176,-0.000457764,-0.000152588,-0.000610352,-0.000610352,-0.000457764,-0.00125122,-0.000610352,-0.000793457,-0.000305176,0,0,0.000152588,0.000610352,0.000946045,0.000457764,0.000610352,0.000457764,-0.000152588,0.000152588,-0.000457764,-0.000305176,-0.00109863,-0.00125122,-0.00125122,-0.000946045,-0.00125122,-0.000946045,-0.00125122,-0.00109863,-0.000793457,-0.000610352,-0.000305176,-0.000305176,-0.000457764,-0.000946045,-0.000152588,-0.000610352,-0.000457764,-0.000610352,-0.000793457,-0.000793457,-0.00109863,-0.000610352,-0.000610352,-0.000946045,-0.000946045,-0.000305176,-0.00109863,-0.000610352,-0.000610352,-0.000305176,-0.000457764,-0.000457764,-0.000457764,-0.000457764,-0.000793457,-0.000152588,-0.000457764,-0.000946045,-0.000946045,-0.000946045,-0.00170898,-0.00109863,-0.00170898,-0.00170898,-0.00125122,-0.0015564,-0.0015564,-0.00125122,-0.000793457,-0.000457764,-0.000305176,0,0.000457764,0.000305176,0.000610352,0.000610352,0.000610352,0.000457764,0.000610352,0,-0.000152588,-0.000610352,-0.000793457,-0.000457764,-0.00109863,-0.00125122,-0.00140381,-0.00140381,-0.000793457,-0.00109863,-0.000946045,-0.000793457,-0.00109863,-0.000946045,-0.00125122,-0.000793457,-0.00125122,-0.00140381,-0.00109863,-0.00140381,-0.00125122,-0.000793457,-0.000457764,-0.000610352,0.000152588,-0.000152588,0.000610352,0.000152588,0.000457764,0.000457764,0.000305176,0.000305176,0,-0.000152588,0,-0.000610352,-0.000457764,-0.000610352,-0.000793457,-0.000793457,-0.000793457,-0.000946045,-0.000793457,-0.000946045,-0.000946045,-0.000946045,-0.000793457,-0.00109863,-0.00125122,-0.000946045,-0.00140381,-0.000610352,-0.00140381,-0.000610352,-0.00125122,-0.000305176,-0.000793457,-0.000457764,-0.000305176,0,-0.000152588,0.000457764,0,0.000152588,0.000457764,0,0.000305176,-0.000457764,0,-0.000793457,-0.000610352,-0.00109863,-0.00109863,-0.00109863,-0.00109863,-0.00125122,-0.00109863,-0.000793457,-0.00109863,-0.00125122,-0.000152588,-0.000793457,-0.000305176,-0.000610352,-0.000457764,-0.000305176,-0.000457764,-0.000305176,-0.000305176,-0.000610352,-0.000305176,-0.000152588,-0.000152588,0.000152588,-0.000457764,0,0.000152588,0.000152588,0.000152588,0,-0.000305176,-0.000305176,-0.000457764,-0.000305176,-0.00109863,-0.00109863,-0.000946045,-0.00125122,-0.000946045,-0.00109863,-0.00125122,-0.000457764,-0.000946045,-0.000610352,-0.000305176,-0.000946045,-0.00125122,-0.000457764,-0.000946045,-0.00109863,-0.00125122,-0.00109863,-0.000305176,-0.000610352,-0.000152588,0.000152588,0.000305176,0.000457764,0.000946045,0.00109863,0.000305176,0.000457764,0.000152588,-0.000305176,-0.000305176,-0.000793457,-0.00125122,-0.00125122,-0.00125122,-0.00170898,-0.000793457,-0.00109863,-0.00140381,-0.000457764,-0.000610352,0.000152588,-0.000305176,0,0.000305176,-0.000152588,-0.000152588,0,-0.000305176,-0.000152588,-0.000793457,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000152588,-0.000305176,0,0.000152588,0.000152588,0.000457764,0.000152588,0.000152588,0,-0.000946045,-0.000793457,-0.000793457,-0.00140381,-0.00140381,-0.00186157,-0.00170898,-0.0015564,-0.00109863,-0.00170898,-0.00109863,-0.000610352,-0.000610352,-0.000457764,-0.000152588,-0.000305176,0.000152588,0,0.000305176,-0.000305176,0.000152588,-0.000152588,0.000152588,0,0.000305176,0.000457764,0.000305176,0.000457764,0.000305176,0.000305176,0.000152588,0,-0.000946045,-0.000610352,-0.00125122,-0.000793457,-0.00140381,-0.00170898,-0.00140381,-0.00140381,-0.00125122,-0.00125122,-0.000457764,-0.000946045,-0.000152588,-0.000152588,0.000457764,0.000305176,0.000610352,0.000305176,0.000305176,0.000610352,-0.000152588,0.000152588,-0.000457764,-0.000610352,-0.000793457,-0.000946045,-0.000946045,-0.000946045,-0.000793457,-0.000946045,-0.000457764,-0.00109863,0,-0.000305176,-0.000457764,-0.000457764,-0.000793457,-0.000946045,-0.00125122,-0.0015564,-0.00186157,-0.00234985,-0.00234985,-0.00234985,-0.00186157,-0.00170898,-0.0015564,-0.000610352,-0.000457764,0.000305176,0.000457764,0.000793457,0.00125122,0.00140381,0.000610352,0.000457764,0.000152588,-0.000305176,-0.000946045,-0.00109863,-0.00170898,-0.00170898,-0.00140381,-0.00140381,-0.00140381,-0.000946045,-0.000793457,-0.000305176,-0.000305176,0.000152588,0,0.000152588,-0.000152588,0,-0.000457764,-0.000610352,-0.00109863,-0.000793457,-0.00109863,-0.00109863,-0.000793457,-0.00109863,-0.000305176,-0.000152588,0.000152588,-0.000152588,0.000457764,0.000305176,0.000457764,0.000305176,0,-0.000305176,-0.000610352,-0.000793457,-0.00125122,-0.00170898,-0.0015564,-0.00201416,-0.0015564,-0.00219727,-0.0015564,-0.00140381,-0.000946045,-0.000793457,0,-0.000610352,0.000152588,0,0,-0.000152588,0,-0.000793457,-0.000793457,-0.000793457,-0.00125122,-0.000946045,-0.00125122,-0.00109863,-0.00125122,-0.000457764,-0.000305176,-0.000305176,0,0.000152588,0.000305176,0,0,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.0015564,-0.00109863,-0.0015564,-0.00125122,-0.00109863,-0.00109863,-0.000946045,-0.000610352,-0.000305176,-0.000946045,-0.000305176,-0.000610352,-0.000152588,-0.000610352,-0.000457764,-0.000457764,-0.000305176,-0.000793457,-0.000610352,-0.000305176,-0.000305176,-0.000305176,0,-0.000457764,-0.000610352,-0.000305176,-0.000152588,-0.000793457,-0.00125122,-0.000793457,-0.00125122,-0.0015564,-0.000793457,-0.00201416,-0.00109863,-0.0015564,-0.00140381,-0.000793457,-0.000946045,-0.000946045,-0.000457764,-0.000305176,-0.000610352,-0.000152588,0,-0.000457764,-0.000610352,-0.000305176,-0.000793457,-0.000610352,-0.000793457,-0.000610352,-0.000793457,-0.000457764,-0.000610352,-0.000793457,-0.000457764,-0.000457764,-0.000305176,-0.000305176,-0.000457764,-0.000457764,-0.00109863,-0.000305176,-0.00109863,-0.00109863,-0.00109863,-0.00140381,-0.0015564,-0.00170898,-0.00125122,-0.0015564,-0.00140381,-0.00109863,-0.00109863,-0.000610352,-0.000305176,0.000152588,0.000305176,0.000152588,0.000793457,0.000457764,0.000793457,0.000457764,-0.000152588,-0.000152588,-0.000610352,-0.000610352,-0.000610352,-0.00109863,-0.00109863,-0.00109863,-0.00109863,-0.000946045,-0.00125122,-0.000457764,-0.000793457,-0.000946045,-0.000610352,-0.000457764,-0.000946045,-0.000457764,-0.000946045,-0.000610352,-0.000610352,-0.00109863,-0.000610352,-0.000610352,-0.000946045,-0.000793457,-0.000610352,-0.000610352,-0.000305176,-0.000305176,-0.000457764,-0.000305176,-0.000305176,-0.000305176,-0.000305176,-0.000793457,-0.000457764,-0.000793457,-0.000793457,-0.000457764,-0.000793457,-0.000793457,-0.000305176,-0.000946045,-0.000305176,-0.000610352,-0.000457764,-0.000946045,-0.000152588,-0.000793457,-0.000152588,-0.000305176,-0.000457764,-0.000305176,-0.000305176,0,-0.000457764,0,0.000152588,0.000152588,-0.000152588,0.000152588,-0.000610352,-0.000305176,-0.000305176,-0.000305176,-0.000457764,0,-0.00109863,-0.000305176,-0.000946045,-0.000610352,-0.000610352,-0.00109863,-0.000793457,-0.000457764,-0.000793457,-0.00109863,-0.000610352,-0.000610352,-0.000793457,-0.000793457,-0.000152588,-0.000305176,-0.000152588,0,-0.000152588,0.000152588,0.000152588,-0.000457764,-0.000152588,0,-0.000946045,-0.000610352,-0.000946045,-0.00109863,-0.000946045,-0.000946045,-0.00109863,-0.000457764,-0.000610352,-0.000457764,0.000152588,-0.000152588,0.000152588,0.000152588,0,0,-0.000305176,-0.000305176,-0.00109863,-0.000793457,-0.00170898,-0.00125122,-0.0015564,-0.00109863,-0.00125122,-0.000946045,-0.00109863,-0.000457764,-0.000152588,-0.000793457,0.000457764,0,0.000152588,0.000305176,0,-0.000152588,-0.000152588,-0.000152588,-0.000946045,-0.000457764,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.000457764,-0.000457764,-0.000152588,0.000152588,0.000610352,0.000457764,0,0.000305176,-0.000305176,-0.000152588,-0.000457764,-0.00140381,-0.00125122,-0.00186157,-0.00125122,-0.00219727,-0.00186157,-0.00186157,-0.00109863,-0.00140381,-0.000793457,-0.000610352,-0.000610352,-0.000457764,-0.000152588,0,-0.000457764,0,-0.000457764,-0.000610352,-0.000610352,-0.000610352,-0.000946045,-0.000793457,-0.00140381,-0.000610352,-0.00125122,-0.000457764,-0.000610352,-0.000610352,-0.000793457,-0.000305176,-0.000793457,0,-0.000946045,-0.000610352,-0.000793457,-0.00109863,-0.00109863,-0.000946045,-0.00125122,-0.000946045,-0.00125122,-0.000793457,-0.000793457,-0.000946045,-0.000457764,-0.000610352,-0.000152588,-0.000152588,-0.000152588,0.000305176,0,0.000305176,0.000305176,0.000610352,-0.000152588,0.000610352,0,0,0.000152588,-0.000457764,-0.000946045,-0.000793457,-0.000946045,-0.00109863,-0.00125122,-0.00109863,-0.00140381,-0.000946045,-0.00125122,-0.000793457,-0.000305176,-0.000457764,0.000152588,-0.000152588,-0.000305176,0,0,0,-0.000305176,-0.000457764,-0.000152588,-0.000305176,-0.000610352,-0.000305176,-0.000305176,-0.000152588,-0.000610352,-0.000305176,-0.000305176,-0.000152588,-0.000305176,-0.000610352,-0.000305176,-0.000946045,-0.00125122,-0.000946045,-0.00125122,-0.00109863,-0.000946045,-0.000946045,-0.00140381,-0.000457764,-0.000793457,-0.000610352,-0.000457764,0,0,0,-0.000305176,0.000152588,-0.000305176,0.000152588,-0.000152588,0,-0.000305176,0.000152588,-0.000610352,0.000457764,0.000152588,0.000152588,-0.000152588,-0.000152588,-0.000152588,-0.000152588,-0.000946045,-0.000793457,-0.00170898,-0.00125122,-0.00170898,-0.00125122,-0.00186157,-0.00140381,-0.00140381,-0.00125122,-0.000946045,-0.000457764,-0.000457764,-0.000610352,0,-0.000305176,0,-0.000305176,-0.000457764,-0.000457764,-0.000457764,-0.000457764,-0.000610352,-0.000305176,-0.000305176,-0.000610352,-0.000305176,-0.000305176,-0.000610352,-0.000305176,-0.00109863,-0.000610352,-0.00109863,-0.00109863,-0.00170898,-0.0015564,-0.00186157,-0.00234985,-0.00219727,-0.00170898,-0.00186157,-0.0015564,-0.00125122,-0.000946045,-0.00109863,-0.000457764,-0.000610352,-0.000152588,-0.000152588,-0.000152588,0,-0.000305176,0,-0.000457764,-0.000305176,-0.000457764,-0.000610352,-0.000152588,-0.000610352,-0.000152588,-0.000610352,-0.000610352,-0.000610352,-0.000610352,-0.000457764,-0.000793457,-0.000305176,-0.000946045,-0.000610352,-0.000610352,-0.00125122,-0.00125122,-0.00109863,-0.00109863,-0.00109863,-0.00109863,-0.0015564,-0.000793457,-0.000946045,-0.00109863,-0.000305176,-0.000610352,-0.000152588,0,0.000457764,0.000457764,0.000152588,0.000305176,0.000305176,0,-0.000610352,-0.000610352,-0.00109863,-0.00125122,-0.00170898,-0.00170898,-0.00170898,-0.00170898,-0.00201416,-0.0015564,-0.00109863,-0.00109863,-0.00109863,-0.000457764,-0.000457764,-0.000152588,-0.000610352,0,-0.000305176,-0.000457764,-0.000457764,-0.000793457,-0.000793457,-0.000946045,-0.00109863,-0.00109863,-0.00109863,-0.000793457,-0.000793457,-0.00109863,0,-0.000457764,-0.000457764,0,-0.000152588,0,0.000305176,-0.000457764,-0.000457764,-0.000152588,-0.00109863,-0.000457764,-0.000946045,-0.000946045,-0.00125122,-0.000946045,-0.00109863,-0.00109863,-0.000610352,-0.000793457,-0.000457764,-0.000610352,-0.000152588,-0.000152588,-0.000305176,0.000152588,0.000305176,0.000305176,0.000305176,0,0.000305176,-0.000152588,0.000152588,-0.000305176,-0.000305176,-0.000457764,-0.000946045,-0.000946045,-0.000946045,-0.00125122,-0.000946045,-0.00109863,-0.000610352,-0.00109863,-0.000457764,-0.000610352,-0.00109863,-0.000305176,-0.000457764,0,-0.000457764,-0.000305176,-0.000610352,-0.000793457,-0.000457764,-0.000457764,-0.000610352,-0.000610352,-0.000457764,-0.000793457,-0.000610352,-0.000152588,0.000152588,0.000152588,0.000152588,0,-0.000152588,0.000305176,-0.000152588,0.000152588,0,-0.000610352,-0.000457764,-0.000946045,-0.000946045,-0.000946045,-0.00109863,-0.00125122,-0.000610352,-0.000946045,-0.000152588,-0.000457764,0.000152588,-0.000457764,0,-0.000152588,-0.000305176,-0.000152588,-0.000305176,-0.000946045,-0.000457764,-0.00109863,-0.000946045,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000305176,-0.000305176,-0.000305176,0,-0.000610352,0.000457764,-0.000793457,-0.000946045,-0.000793457,-0.0015564,-0.00140381,-0.0015564,-0.0015564,-0.00140381,-0.00170898,-0.0015564,-0.00125122,-0.00125122,-0.000457764,-0.000457764,-0.000152588,-0.000457764,-0.000946045,-0.000152588,-0.000610352,0,-0.000457764,-0.000457764,-0.000946045,-0.000610352,-0.000610352,-0.000946045,-0.000152588,-0.000610352,-0.000305176,-0.000610352,-0.000793457,-0.000793457,-0.00125122,-0.000305176,-0.00109863,-0.000793457,-0.000946045,-0.00140381,-0.000793457,-0.00125122,-0.000457764,-0.00109863,-0.000946045,-0.00109863,-0.000946045,-0.000610352,-0.000610352,-0.00109863,-0.000152588,-0.000610352,-0.000610352,-0.000610352,-0.000305176,-0.000305176,-0.000305176,-0.000152588,-0.000152588,-0.000610352,-0.000793457,-0.000305176,-0.000610352,-0.000946045,-0.000305176,-0.00125122,-0.000610352,-0.00109863,-0.00109863,-0.00109863,-0.00109863,-0.000793457,-0.000946045,-0.000793457,-0.000793457,-0.000946045,-0.000610352,-0.000305176,-0.000305176,0,-0.000610352,-0.000152588,-0.000305176,-0.000457764,-0.000152588,-0.000457764,-0.000305176,-0.000793457,-0.000946045,-0.00109863,-0.000457764,-0.000946045,-0.00109863,-0.000946045,-0.000793457,-0.000610352,-0.000793457,-0.000152588,-0.000457764,-0.000793457,-0.000152588,-0.000793457,0,-0.000610352,-0.000610352,-0.000457764,-0.00125122,-0.00109863,-0.00140381,-0.000793457,-0.00109863,-0.000610352,-0.000610352,-0.000946045,0.000152588,-0.000152588,0.000305176,0.000305176,-0.000152588,0.000457764,0,0.000152588,-0.000457764,-0.000610352,-0.000610352,-0.00109863,-0.00125122,-0.00125122,-0.00125122,-0.00125122,-0.00140381,-0.000946045,-0.000946045,-0.000457764,-0.000152588,-0.000946045,0.000305176,-0.000610352,0.000152588,-0.000152588,-0.000457764,-0.000610352,-0.000152588,-0.000793457,-0.000946045,-0.00109863,-0.00125122,-0.00125122,-0.000946045,-0.00125122,-0.000610352,-0.00125122,-0.000610352,-0.000793457,0,-0.000305176,-0.000305176,-0.000305176,0.000152588,-0.000305176,-0.000457764,-0.000152588,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.000305176,-0.000610352,0,-0.000152588,0,-0.000152588,0.000457764,-0.000152588,-0.000152588,0,-0.000457764,-0.000610352,-0.000793457,-0.000793457,-0.00125122,-0.00140381,-0.00140381,-0.00125122,-0.00125122,-0.000946045,-0.000610352,-0.000610352,-0.000152588,0,0.000457764,0.000305176,0.000610352,0.000610352,0.000457764,0.000610352,0.000152588,-0.000305176,-0.000610352,-0.000457764,-0.000946045,-0.00125122,-0.000946045,-0.00140381,-0.0015564,-0.00125122,-0.00125122,-0.000793457,-0.000946045,-0.000793457,-0.000793457,-0.000610352,-0.000610352,-0.000610352,-0.000305176,-0.000946045,-0.000946045,-0.00109863,-0.000610352,-0.000610352,-0.000793457,-0.000610352,-0.000610352,-0.000152588,0,-0.000152588,-0.000305176,0.000457764,-0.000152588,-0.000152588,0,-0.000457764,-0.000305176,-0.000610352,-0.000610352,-0.000305176,-0.00109863,-0.000793457,-0.000793457,-0.00125122,-0.000793457,-0.000946045,-0.000793457,-0.00140381,-0.000793457,-0.000946045,-0.000793457,-0.000457764,-0.000793457,-0.000305176,-0.000305176,0,-0.000152588,0,0,0.000152588,0,-0.000305176,-0.000610352,0,-0.000457764,-0.000305176,-0.000610352,-0.000793457,-0.000793457,-0.000610352,-0.000610352,-0.000457764,-0.000793457,-0.000457764,-0.000793457,-0.000946045,-0.000793457,-0.000793457,-0.000793457,-0.000946045,-0.000793457,-0.00125122,-0.00109863,-0.000610352,-0.000610352,-0.000457764,-0.000610352,-0.000457764,-0.000457764,-0.000610352,0,-0.000457764,-0.000305176,-0.000457764,-0.000305176,-0.000457764,-0.000610352,-0.000305176,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.000946045,-0.000946045,-0.00125122,-0.00140381,-0.000793457,-0.000946045,-0.000946045,-0.00109863,-0.000946045,-0.000610352,-0.000946045,-0.000610352,-0.000152588,-0.000946045,-0.000457764,-0.000793457,0,-0.000152588,0,-0.000152588,-0.000610352,-0.000305176,-0.000152588,0.000305176,-0.000305176,-0.000305176,-0.000305176,-0.000457764,-0.000457764,-0.000457764,-0.000793457,-0.000793457,-0.00109863,-0.000793457,-0.000946045,-0.00140381,-0.000152588,-0.00140381,-0.000610352,-0.000610352,-0.000946045,-0.000152588,-0.000946045,-0.000152588,-0.000793457,-0.000610352,-0.000305176,-0.000457764,-0.000457764,-0.000793457,-0.000457764,0,-0.000610352,-0.000152588,0,0,0,-0.000305176,-0.000152588,-0.000152588,-0.000305176,-0.000457764,-0.000793457,-0.00109863,-0.00140381,-0.00125122,-0.0015564,-0.00125122,-0.00109863,-0.00140381,-0.000457764,-0.000610352,-0.000793457,-0.000610352,-0.000457764,-0.000152588,-0.000457764,0,-0.000152588,0,-0.000152588,-0.000305176,-0.000305176,-0.000152588,-0.000610352,-0.000152588,-0.000793457,0,-0.000610352,-0.000457764,-0.000457764,-0.000793457,-0.000457764,-0.000946045,-0.000457764,-0.000793457,-0.000793457,-0.000457764,-0.00109863,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.000946045,-0.000946045,-0.00109863,-0.000793457,-0.000946045,-0.000946045,-0.000793457,-0.00125122,-0.000457764,-0.00125122,-0.000305176,0,0,-0.000152588,0,-0.000152588,0.000152588,-0.000610352,-0.000457764,-0.000946045,-0.000793457,-0.00125122,-0.000946045,-0.00125122,-0.00140381,-0.00125122,-0.00170898,-0.000946045,-0.000610352,-0.000946045,-0.000457764,-0.00125122,-0.000305176,-0.000610352,-0.000152588,-0.000305176,-0.000152588,-0.000457764,-0.000305176,-0.000152588,-0.000305176,-0.000152588,-0.000305176,-0.000305176,-0.000305176,-0.000152588,0.000152588,-0.000305176,-0.000152588,0,-0.000610352,-0.000305176,-0.000457764,-0.000305176,-0.000610352,-0.000793457,-0.000946045,-0.00109863,-0.000793457,-0.00109863,-0.000610352,-0.000946045,-0.000610352,-0.00109863,-0.000457764,-0.000946045,-0.000457764,-0.000305176,-0.000610352,-0.000305176,-0.000457764,0,-0.000305176,-0.000305176,-0.000610352,-0.000305176,-0.000457764,-0.000305176,-0.000305176,-0.000305176,-0.000305176,-0.000946045,-0.000610352,-0.000610352,-0.000610352,-0.000793457,-0.000305176,-0.000946045,-0.000457764,-0.000946045,-0.000610352,-0.000610352,-0.000946045,-0.000610352,-0.000305176,-0.000946045,-0.000610352,-0.000793457,-0.000610352,-0.00109863,-0.000610352,-0.000610352,-0.000305176,-0.000457764,-0.000305176,-0.000305176,0.000152588,0,-0.000152588,-0.000305176,0,-0.000152588,0,-0.000305176,-0.000610352,-0.00125122,-0.000793457,-0.00109863,-0.00140381,-0.000946045,-0.00170898,-0.000793457,-0.00125122,-0.000946045,-0.000946045,-0.000793457,-0.00109863,0,-0.000793457,0,-0.000946045,-0.000152588,-0.000946045,-0.000946045,-0.000946045,-0.00109863,-0.000946045,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000152588,-0.000793457,0,-0.000152588,-0.000457764,-0.000152588,-0.000305176,-0.000793457,-0.000610352,-0.000946045,-0.000946045,-0.00109863,-0.0015564,-0.000946045,-0.000946045,-0.0015564,-0.000610352,-0.00109863,-0.000793457,-0.000305176,-0.000610352,-0.000152588,-0.000305176,-0.000152588,-0.000457764,-0.000610352,-0.000457764,-0.000457764,-0.000610352,-0.000457764,-0.000946045,-0.000610352,-0.000793457,-0.000793457,-0.000305176,0,-0.000152588,0.000305176,-0.000946045,0.000152588,-0.000305176,-0.000152588,-0.000610352,-0.000457764,-0.000793457,-0.00109863,-0.00109863,-0.00109863,-0.000946045,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000610352,-0.000152588,-0.000152588,0,0.000152588,-0.000457764,-0.000152588,0.000152588,-0.000152588,-0.000305176,-0.000457764,-0.000793457,-0.000946045,-0.000610352,-0.000946045,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.00109863,-0.000793457,-0.000610352,-0.00109863,-0.000457764,-0.00109863,-0.000610352,-0.000793457,-0.000946045,-0.000793457,-0.000610352,-0.00125122,-0.000793457,-0.000793457,-0.000946045,-0.000793457,-0.000610352,-0.000610352,-0.000457764,-0.000457764,-0.000152588,-0.000457764,-0.000152588,-0.000457764,-0.000152588,-0.000610352,-0.000457764,-0.000946045,-0.000610352,-0.000946045,-0.000305176,-0.000610352,-0.000305176,-0.000793457,-0.000610352,-0.000305176,0.000152588,0,-0.000152588,-0.000457764,-0.000610352,-0.000610352,-0.000457764,-0.000946045,-0.000793457,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.000457764,-0.000305176,-0.000457764,-0.000946045,-0.000305176,-0.000610352,-0.000152588,-0.000305176,-0.000610352,-0.000793457,-0.000793457,-0.000610352,-0.000946045,-0.000793457,-0.00109863,-0.000610352,-0.000610352,-0.000793457,-0.000793457,-0.000793457,-0.00125122,-0.000793457,-0.000610352,-0.000610352,-0.000610352,-0.000610352,-0.000946045,-0.000457764,-0.000946045,-0.000457764,-0.00109863,-0.000793457,-0.00125122,-0.000793457,-0.00170898,-0.000946045,-0.00109863,-0.000946045,-0.00125122,-0.00125122,-0.000946045,-0.000946045,-0.000457764,-0.000610352,-0.000610352,-0.000457764,-0.000305176,-0.000152588,-0.000152588,-0.000305176,-0.000305176,-0.000152588,-0.000152588,-0.000610352,-0.000305176,-0.000793457,-0.000793457,-0.000610352,-0.00109863,-0.000305176,-0.00109863,-0.000610352,-0.00109863,-0.000152588,-0.000793457,-0.000305176,-0.000457764,-0.000793457,-0.000793457,-0.000457764,-0.000610352,-0.000610352,-0.000793457,-0.000610352,-0.000457764,-0.000946045,-0.000305176,-0.000610352,-0.000457764,-0.000152588,0,0,0.000305176,-0.000305176,0,0.000152588,-0.000152588,-0.000152588,-0.000457764,-0.000457764,-0.000946045,-0.000793457,-0.000946045,-0.000946045,-0.000946045,-0.000946045,-0.00140381,-0.000610352,-0.00109863,-0.000946045,-0.000457764,-0.000610352,-0.000610352,-0.000610352,-0.000457764,-0.000152588,-0.000305176,0,0,0.000152588,-0.000152588,0,-0.000152588,-0.000152588,-0.000305176,-0.000305176,0,-0.000457764,-0.000793457,-0.000610352,-0.00125122,-0.000457764,-0.000946045,-0.000946045,-0.000610352,-0.000305176,-0.000946045,-0.000457764,-0.000946045,-0.000152588,0,0,-0.000610352,-0.000457764,-0.000457764,-0.000610352,-0.000610352,-0.000610352,-0.000152588,-0.000457764,-0.000305176,-0.000457764,0,-0.000457764,0,0,0,0.000305176,0.000305176,-0.000457764,0,-0.000610352,0.000152588,-0.000457764,-0.000610352,-0.00125122,-0.00125122,-0.00140381,-0.00125122,-0.00125122,-0.00186157,-0.000793457,-0.00140381,-0.000946045,-0.000946045,-0.000793457,-0.000305176,-0.000305176,-0.000152588,0,-0.000152588,-0.000152588,-0.000610352,-0.000457764,-0.000793457,-0.000457764,-0.000610352,-0.000793457,-0.000793457,-0.00109863,-0.000946045,-0.000457764,-0.000793457,-0.000610352,-0.000457764,-0.000610352,-0.000457764,-0.000457764,-0.000610352,-0.000152588,-0.00109863,-0.000946045,-0.00109863,-0.000946045,-0.000946045,-0.00125122,-0.000793457,-0.00140381,-0.00109863,-0.00109863,-0.000946045,-0.000610352,-0.000793457,-0.000152588,-0.000457764,0.000152588,-0.000305176,0.000305176,0,0,0.000793457,-0.000305176,-0.000152588,-0.000152588,-0.000305176,-0.000610352,-0.000946045,-0.000610352,-0.00109863,-0.000946045,-0.00125122,-0.000946045,-0.0015564,-0.000946045,-0.0015564,-0.000793457,-0.000946045,-0.000793457,-0.00109863,-0.000610352,-0.000946045,-0.000793457,-0.000793457,-0.000152588,-0.000946045,-0.000793457,-0.000793457,-0.000946045,-0.000946045,-0.000457764,-0.000946045,-0.000610352,-0.000610352,-0.000305176,-0.000610352,-0.000152588,-0.000457764,-0.000610352,-0.000610352,-0.000946045,-0.000793457,-0.00125122,-0.000793457,-0.00140381,-0.000610352,-0.00140381,-0.0015564,-0.00109863,-0.00125122,-0.00125122,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000457764,-0.000457764,0.000152588,-0.000305176,0,-0.000152588,-0.000152588,-0.000152588,0,-0.000457764,-0.000152588,-0.000610352,-0.000610352,-0.000610352,-0.000610352,-0.000610352,-0.000305176,-0.000152588,-0.000793457,-0.000610352,-0.000610352,-0.000305176,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.00109863,-0.00109863,-0.00109863,-0.00109863,-0.00140381,-0.00125122,-0.00140381,-0.00109863,-0.000793457,-0.000793457,-0.000610352,-0.000457764,-0.000457764,0,0,-0.000152588,0.000457764,-0.000152588,0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000793457,-0.000946045,-0.000946045,-0.00109863,-0.00109863,-0.000946045,-0.00109863,-0.000610352,-0.00109863,0,-0.000793457,0.000152588,-0.000610352,0.000152588,0,-0.000457764,-0.000152588,-0.000457764,-0.000610352,-0.000152588,-0.000305176,-0.000152588,-0.000457764,-0.000152588,-0.000152588,0.000152588,-0.000152588,0.000305176,-0.000305176,0,-0.000152588,-0.000152588,-0.000152588,-0.000793457,-0.000152588,-0.000946045,-0.000610352,-0.000610352,-0.000793457,-0.000457764,-0.000946045,-0.000610352,-0.000610352,-0.000793457,-0.000610352,-0.000305176,-0.00109863,-0.000610352,-0.000610352,-0.000610352,-0.000457764,-0.000457764,-0.000457764,-0.000152588,-0.000610352,-0.000152588,-0.000152588,-0.000305176,-0.000457764,-0.000305176,-0.000610352,-0.000457764,-0.000610352,-0.000793457,-0.000610352,-0.000610352,-0.000457764,-0.000946045,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.000152588,-0.000946045,-0.000610352,-0.000610352,-0.000610352,-0.000152588,-0.00109863,0,-0.000610352,-0.000457764,-0.000152588,-0.000610352,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.000610352,-0.000793457,-0.000610352,-0.00109863,-0.000793457,-0.000946045,-0.000946045,-0.000610352,-0.000946045,-0.000946045,-0.000793457,-0.000793457,-0.000457764,-0.000793457,-0.000610352,-0.000457764,-0.000610352,-0.000793457,-0.000457764,-0.000946045,-0.00109863,-0.000946045,-0.00109863,-0.00125122,-0.000793457,-0.00125122,-0.000793457,-0.000793457,-0.000946045,-0.000305176,-0.000793457,-0.000305176,-0.000305176,-0.000152588,-0.000305176,-0.000457764,-0.000793457,-0.000305176,-0.000793457,-0.000793457,-0.000793457,-0.00109863,-0.000610352,-0.00109863,-0.000946045,-0.000610352,-0.000457764,-0.000610352,-0.000305176,-0.000305176,-0.000457764,-0.000305176,-0.000457764,-0.000152588,-0.000610352,-0.000457764,-0.000305176,-0.000793457,-0.000305176,-0.00109863,-0.000946045,-0.000457764,-0.000610352,-0.000793457,-0.000457764,-0.000793457,-0.000305176,-0.000793457,-0.000305176,-0.000793457,-0.000152588,-0.000946045,-0.000457764,-0.000457764,-0.000457764,-0.000610352,-0.000457764,-0.000610352,-0.000793457,-0.000610352,-0.000610352,-0.000610352,-0.000457764,-0.000457764,-0.000610352,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.000946045,-0.000457764,-0.00109863,-0.000305176,-0.000793457,-0.000610352,-0.000457764,-0.000457764,-0.000305176,-0.000610352,-0.000152588,-0.000610352,-0.000305176,-0.000305176,-0.000610352,-0.000610352,-0.000457764,-0.000946045,-0.000305176,-0.000793457,-0.000457764,-0.000946045,-0.000305176,-0.000610352,-0.000305176,-0.000305176,-0.000305176,-0.000305176,-0.000610352,0,-0.000793457,-0.000457764,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.000457764,-0.000457764,-0.000457764,-0.000305176,-0.000793457,-0.000152588,-0.000457764,-0.000152588,-0.000152588,-0.000152588,0,0,0,-0.000152588,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000457764,-0.000610352,-0.000457764,-0.000793457,-0.000610352,-0.000152588,-0.000610352,-0.000305176,-0.000610352,-0.000305176,-0.000793457,-0.000152588,-0.000610352,-0.000305176,-0.000457764,-0.000152588,-0.000793457,-0.000457764,-0.000457764,-0.000793457,-0.000305176,-0.000610352,-0.000946045,-0.000610352,-0.000610352,-0.000793457,-0.000305176,-0.000793457,-0.000457764,-0.000305176,-0.000610352,-0.000457764,-0.000457764,-0.000457764,-0.000610352,-0.000610352,-0.000946045,-0.000457764,-0.00109863,-0.000610352,-0.000946045,-0.000793457,-0.000946045,-0.000793457,-0.000946045,-0.000793457,-0.000793457,-0.000946045,-0.000610352,-0.000457764,-0.000793457,-0.000457764,-0.000457764,-0.000610352,-0.000305176,-0.000305176,-0.000457764,-0.000610352,-0.000305176,-0.000610352,-0.000457764,-0.000610352,-0.000305176,-0.000946045,-0.000305176,-0.000946045,-0.000152588,-0.000793457,-0.000610352,-0.000457764,-0.000793457,-0.000946045,-0.000610352,-0.000946045,-0.00109863,-0.000793457,-0.000946045,-0.00109863,-0.000946045,-0.000793457,-0.000946045,-0.000946045,-0.000457764,-0.000610352,-0.000152588,-0.000610352,-0.000305176,-0.000152588,-0.000610352,-0.000152588,-0.000793457,-0.000610352,-0.000610352,-0.000610352,-0.000946045,-0.000793457,-0.000457764,-0.00109863,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.000793457,-0.000793457,-0.000610352,-0.000946045,-0.000793457,-0.00109863,-0.000793457,-0.000610352,-0.00109863,-0.000457764,-0.000457764,-0.000457764,-0.000610352,-0.000305176,-0.000152588,0,-0.000305176,0,-0.000457764,-0.000305176,-0.000152588,-0.000457764,-0.000305176,-0.000610352,-0.000793457,-0.000305176,-0.000305176,-0.000610352,-0.000610352,-0.000305176,-0.000457764,-0.000793457,-0.000610352,-0.000457764,-0.000793457,-0.000457764,-0.000457764,-0.00109863,-0.000457764,-0.000946045,-0.000610352,-0.000457764,-0.000793457,-0.000610352,-0.000457764,-0.000152588,-0.000610352,-0.000305176,-0.000152588,-0.000305176,-0.000305176,-0.000152588,-0.000305176,-0.000152588,-0.000610352,-0.000457764,-0.000457764,-0.000305176,-0.000610352,-0.000305176,-0.000305176,-0.000946045,-0.000305176,-0.000946045,-0.000610352,-0.000946045,-0.000457764,-0.00125122,-0.000305176,-0.000946045,-0.000305176,-0.000610352,-0.000457764,-0.000457764,-0.000457764,-0.000305176,-0.000457764,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000457764,-0.000305176,0,-0.000305176,-0.000152588,-0.000305176,-0.000152588,-0.000152588,-0.000152588,-0.000305176,-0.000457764,-0.000457764,-0.000793457,-0.000305176,-0.000793457,-0.000946045,-0.000610352,-0.000946045,-0.000793457,-0.000610352,-0.000610352,-0.000610352,0,-0.000305176,0,-0.000152588,0.000305176,-0.000457764,0.000152588,0,-0.000305176,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000305176,-0.000457764,-0.000610352,-0.000152588,-0.000457764,-0.000152588,-0.000610352,0,-0.000610352,-0.000457764,-0.000457764,-0.000946045,-0.000793457,-0.000946045,-0.000946045,-0.000946045,-0.00125122,-0.000946045,-0.000610352,-0.000793457,-0.000946045,-0.000457764,-0.000457764,-0.000305176,-0.000152588,-0.000457764,0.000152588,-0.000305176,-0.000305176,0,-0.000457764,-0.000610352,-0.000305176,-0.000610352,-0.000457764,-0.000793457,-0.000305176,-0.000793457,-0.000457764,-0.000610352,-0.000610352,-0.000305176,-0.000457764,-0.000793457,-0.000457764,-0.000457764,-0.000793457,-0.000152588,-0.000305176,-0.000610352,-0.000305176,-0.000793457,-0.000305176,-0.000793457,-0.000305176,-0.000610352,-0.000793457,-0.000305176,-0.000457764,-0.000610352,-0.000305176,-0.000610352,-0.000457764,-0.000152588,-0.000610352,-0.000305176,-0.000457764,-0.000457764,-0.000457764,-0.000610352,-0.000457764,-0.000793457,-0.000610352,-0.000457764,-0.000610352,-0.000152588,-0.000793457,-0.000457764,-0.000457764,-0.000610352,-0.000457764,-0.000946045,-0.000457764,-0.00109863,-0.000793457,-0.000946045,-0.000793457,-0.000793457,-0.000946045,-0.000457764,-0.000610352,-0.000305176,-0.000457764,-0.000305176,-0.000457764,-0.000152588,-0.000305176,-0.000152588,-0.000152588,-0.000610352,-0.000152588,-0.000610352,-0.000610352,-0.000793457,-0.000305176,-0.00125122,-0.000457764,-0.000793457,-0.000793457,-0.000305176,-0.000793457,-0.000152588,-0.000610352,-0.000152588,-0.000305176,-0.000610352,0,-0.000457764,-0.000793457,-0.000305176,-0.000946045,-0.000457764,-0.000610352,-0.000793457,-0.000457764,-0.000610352,-0.000152588,-0.000457764,-0.000457764,-0.000152588,-0.000305176,-0.000793457,-0.000305176,-0.000457764,-0.000793457,-0.000457764,0,-0.00125122,-0.000152588,-0.000793457,-0.000793457,-0.000610352,-0.000793457,-0.000457764,-0.000946045,-0.000457764,-0.000305176,-0.000793457,-0.000305176,-0.000457764,-0.000305176,-0.000457764,0,-0.000457764,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000305176,-0.000457764,-0.000610352,-0.000793457,-0.000610352,-0.000152588,-0.000610352,-0.000305176,-0.000305176,-0.000305176,0,-0.000305176,-0.000457764,0.000152588,-0.000610352,0,-0.000793457,-0.000610352,-0.000305176,-0.000946045,-0.000610352,-0.000946045,-0.000793457,-0.000610352,-0.000946045,-0.000793457,-0.000152588,-0.000610352,-0.000305176,-0.000457764,-0.000305176,-0.000305176,-0.000610352,-0.000305176,-0.000610352,-0.000793457,-0.000793457,-0.00109863,-0.00125122,-0.00109863,-0.00109863,-0.00125122,-0.00109863,-0.00109863,-0.000946045,-0.000793457,-0.000946045,-0.000793457,-0.000793457,-0.000457764,-0.000793457,-0.000793457,-0.000793457,-0.00109863,-0.000457764,-0.00140381,-0.000457764,-0.0015564,-0.000946045,-0.00125122,-0.00109863,-0.000946045,-0.000946045,-0.00109863,-0.000610352,-0.000793457,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.000793457,-0.000457764,-0.00109863,-0.00109863,-0.000946045,-0.00125122,-0.00109863,-0.00140381,-0.00109863,-0.000946045,-0.00109863,-0.000305176,-0.00109863,-0.000305176,-0.000793457,-0.000305176,-0.000793457,-0.000610352,-0.000610352,-0.000457764,-0.000793457,-0.000793457,-0.000457764,-0.00109863,-0.000457764,-0.000793457,-0.000457764,-0.000793457,-0.000610352,-0.000305176,-0.000457764,-0.000610352,-0.000305176,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.000946045,-0.000946045,-0.00109863,-0.000946045,-0.000946045,-0.000793457,-0.000610352,-0.000793457,-0.000610352,-0.000457764,-0.000610352,-0.000305176,-0.000793457,-0.000305176,-0.000793457,-0.000457764,-0.000946045,-0.000457764,-0.000793457,-0.000610352,-0.000610352,-0.000793457,-0.000793457,-0.000152588,-0.000946045,-0.000610352,-0.000610352,-0.000305176,-0.000793457,-0.000457764,-0.000946045,-0.000793457,-0.000610352,-0.000946045,-0.000793457,-0.000457764,-0.00125122,-0.000152588,-0.00109863,-0.000305176,-0.000457764,-0.000610352,-0.000457764,-0.000793457,-0.000305176,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000610352,-0.000610352,-0.000793457,-0.000457764,-0.000457764,-0.000793457,0,-0.000610352,0,-0.000610352,-0.000305176,-0.000152588,-0.000793457,0,-0.000793457,-0.000610352,-0.000305176,-0.000793457,-0.000610352,-0.000457764,-0.000946045,-0.000152588,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.000305176,-0.000457764,-0.000610352,-0.000305176,-0.000793457,-0.000152588,-0.000457764,-0.000457764,-0.000305176,-0.000305176,-0.000457764,-0.000610352,-0.000152588,-0.000457764,-0.000152588,-0.000457764,-0.000457764,-0.000305176,-0.000457764,-0.000457764,-0.000610352,0,-0.000793457,-0.000610352,-0.000457764,-0.000305176,-0.000946045,-0.000457764,-0.000610352,-0.000610352,-0.000610352,-0.000305176,-0.000610352,-0.000305176,-0.000457764,-0.000793457,-0.000152588,-0.000793457,-0.000305176};
freunde_baryton = (freunde_baryton_0):((!,_));
freunde_baryton_rtable_0(r) = (freunde_baryton_0,r):rdtable;
| https://raw.githubusercontent.com/grame-cncm/GeekBagatelles/d09ed1362a79707d1687ed92cf0482ced2509035/freunde_baryton_waveform.dsp | faust | freunde_baryton_0 = waveform{0.00219727,0.00296021,0.00280762,0.00234985,0.00186157,0.00140381,-0.000305176,-0.000793457,-0.000946045,-0.000793457,-0.00109863,-0.000152588,-0.000305176,-0.000610352,-0.000305176,-0.000793457,-0.00140381,-0.00125122,-0.000793457,-0.000793457,-0.0015564,-0.00140381,-0.00125122,-0.00201416,-0.00140381,0.000152588,0.00201416,0.00234985,0.00219727,0.00109863,0.00186157,0.00265503,0.00360107,0.00311279,0.00250244,0.00170898,0.00186157,0.000793457,-0.000946045,-0.0015564,-0.00234985,-0.00296021,-0.00341797,-0.00326538,-0.00265503,-0.0015564,-0.00125122,-0.00296021,-0.00311279,-0.00390625,-0.00405884,-0.00436401,-0.00436401,-0.00576782,-0.00531006,-0.00466919,-0.0045166,-0.00390625,-0.00375366,-0.00234985,-0.000610352,-0.000305176,0,-0.000152588,-0.000152588,0.000793457,0.00265503,0.00234985,0.00250244,0.00250244,0.00326538,0.00405884,0.00375366,0.0045166,0.00341797,0.00280762,0.00234985,0.00201416,0.000793457,0.000610352,-0.000305176,-0.000610352,-0.000152588,-0.00201416,-0.00296021,-0.00360107,-0.00341797,-0.00375366,-0.00390625,-0.00311279,-0.00250244,-0.00219727,-0.000793457,-0.000457764,0.000305176,0.000152588,-0.000457764,-0.0015564,-0.00140381,-0.00170898,-0.00265503,-0.00250244,-0.00265503,-0.00326538,-0.00265503,-0.00234985,-0.0015564,-0.000946045,0,0.000946045,0.000610352,0.00170898,0.000793457,0.00140381,0.000946045,0.00140381,0.00186157,0.00219727,0.00186157,0.0015564,0.00170898,0.00125122,0.000457764,0.000152588,-0.000152588,0.000152588,0.000152588,0.000946045,0,0.000305176,0.000152588,-0.000610352,-0.00170898,-0.00201416,-0.00234985,-0.00280762,-0.0015564,-0.0015564,-0.00140381,-0.000946045,-0.000946045,-0.000946045,-0.00109863,-0.000946045,-0.000946045,-0.000946045,-0.000793457,-0.000305176,0.000793457,0.00125122,0.00234985,0.00296021,0.00326538,0.00265503,0.00250244,0.00296021,0.00234985,0.00280762,0.00170898,0.00201416,0.00219727,0.00296021,0.000793457,-0.000457764,-0.0015564,-0.0015564,-0.00140381,-0.00140381,-0.0015564,-0.00140381,-0.00125122,-0.000610352,-0.000610352,-0.000152588,-0.000152588,-0.000457764,-0.000457764,-0.00170898,-0.00201416,-0.0015564,-0.00186157,-0.00219727,-0.00250244,-0.000946045,-0.000305176,0.000457764,0.000305176,-0.000457764,0.000457764,0.000946045,0.00140381,0.000793457,0.000152588,0,0.000152588,0.000152588,0.000152588,-0.000457764,-0.000152588,-0.000457764,0,-0.000610352,-0.00125122,-0.0015564,-0.00170898,-0.000946045,-0.000457764,-0.000610352,-0.000946045,-0.00170898,-0.00186157,-0.00186157,-0.0015564,-0.0015564,-0.000793457,-0.000457764,-0.000457764,-0.000457764,0.000152588,-0.000152588,-0.000457764,-0.000946045,-0.000457764,-0.000793457,-0.000793457,-0.00186157,-0.00219727,-0.00265503,-0.00125122,-0.00125122,-0.000152588,0.000305176,-0.000152588,0.000946045,0.00140381,0.00140381,0.00170898,0.00201416,0,-0.000793457,-0.00265503,-0.00250244,-0.00250244,-0.00186157,-0.00234985,-0.00250244,-0.00201416,-0.000457764,-0.000152588,0.000152588,-0.000457764,-0.000457764,-0.000793457,-0.000793457,-0.000457764,0.000457764,0,0.00125122,0.00125122,0.00125122,0.0015564,0.0015564,0.00250244,0.00234985,0.00311279,0.00311279,0.00390625,0.00421143,0.00497437,0.00436401,0.00466919,0.00341797,0.00250244,0.00125122,0.000457764,0,-0.000305176,-0.000152588,-0.000610352,-0.000610352,-0.000793457,-0.000152588,-0.000610352,-0.000793457,-0.00109863,-0.00140381,-0.00219727,-0.00186157,-0.00265503,-0.00234985,-0.00219727,-0.00234985,-0.0015564,-0.00109863,-0.00109863,-0.000610352,-0.000946045,-0.000946045,-0.00170898,-0.00219727,-0.00250244,-0.00219727,-0.00140381,-0.00219727,-0.00234985,-0.00219727,-0.000946045,0.000152588,0.000610352,0.00140381,0.000946045,0.00219727,0.00280762,0.00234985,0.00201416,0.00140381,0.000946045,0.000457764,-0.000152588,-0.00109863,-0.00234985,-0.00250244,-0.00280762,-0.00186157,-0.00140381,-0.000152588,-0.000152588,-0.000610352,-0.000610352,-0.000457764,-0.000457764,-0.000152588,0.000152588,0.000152588,0.000152588,-0.000152588,0,0.000152588,0.0015564,0.00326538,0.00436401,0.00497437,0.00546265,0.00466919,0.00546265,0.00561523,0.00482178,0.00421143,0.00421143,0.00466919,0.00466919,0.00421143,0.00390625,0.00265503,0.00219727,0.00170898,0.00140381,0.000610352,-0.000152588,0.000793457,0.00109863,0.00140381,0.000457764,0.000305176,-0.000152588,0.000457764,0.000457764,0.000305176,-0.000152588,0.000457764,0.000457764,0.000946045,0.000946045,0.00140381,0.00170898,0.00201416,0.00265503,0.00201416,0.00186157,0.00170898,0.00170898,0.00109863,0.000152588,0.000152588,0.00109863,0.00125122,0.00219727,0.00234985,0.00280762,0.00296021,0.00296021,0.00280762,0.00125122,0.00125122,0.000305176,0.000457764,0.000610352,0.000946045,-0.000152588,0.000610352,-0.000305176,0.000457764,-0.000946045,-0.000946045,-0.00140381,0,0.000152588,0.000152588,0.000305176,-0.000305176,0,-0.00140381,-0.00280762,-0.00311279,-0.00326538,-0.00280762,-0.00280762,-0.00170898,-0.00109863,0.000457764,0.00140381,0.00219727,0.00219727,0.00280762,0.00234985,0.00326538,0.00405884,0.00326538,0.00265503,0.0015564,0.00170898,0.00186157,0.00201416,0.00311279,0.00341797,0.00326538,0.00311279,0.00326538,0.00311279,0.00201416,0.00140381,0.000793457,0.000610352,0.000305176,0.000152588,0.000305176,-0.000305176,-0.000793457,-0.0015564,-0.00250244,-0.00296021,-0.00326538,-0.00296021,-0.00341797,-0.00375366,-0.00390625,-0.00436401,-0.0045166,-0.00421143,-0.00360107,-0.00390625,-0.00296021,-0.00311279,-0.00219727,-0.00234985,-0.0015564,-0.00186157,-0.0015564,-0.00109863,0,0,-0.000152588,-0.00125122,-0.00109863,-0.00170898,-0.00265503,-0.00341797,-0.00360107,-0.00436401,-0.00405884,-0.00466919,-0.00546265,-0.00515747,-0.00482178,-0.00482178,-0.00592041,-0.00637817,-0.00732422,-0.00811768,-0.00796509,-0.00888062,-0.00857544,-0.00811768,-0.00637817,-0.00546265,-0.00497437,-0.00341797,-0.00250244,-0.00109863,-0.00125122,-0.00186157,-0.0015564,-0.0015564,-0.0015564,-0.00234985,-0.00234985,-0.00341797,-0.00390625,-0.00482178,-0.00482178,-0.00436401,-0.00405884,-0.00360107,-0.00390625,-0.00436401,-0.00375366,-0.00326538,-0.00375366,-0.00466919,-0.00561523,-0.00637817,-0.006073,-0.00622559,-0.00656128,-0.00592041,-0.00546265,-0.00436401,-0.00390625,-0.00360107,-0.00360107,-0.00405884,-0.00360107,-0.00405884,-0.00405884,-0.00341797,-0.0045166,-0.00405884,-0.00375366,-0.00265503,-0.00170898,-0.000610352,0.000457764,0.000610352,0.00125122,0.00109863,0.00186157,0.00280762,0.00280762,0.00265503,0.00125122,0.000793457,0.000457764,0.000305176,0.00109863,0.000610352,0.00125122,0.000946045,0.00219727,0.00265503,0.00296021,0.00296021,0.00265503,0.00250244,0.00186157,0.000793457,-0.000305176,-0.00109863,-0.00219727,-0.00265503,-0.00375366,-0.00405884,-0.00390625,-0.00311279,-0.00265503,-0.00201416,-0.00109863,0.000152588,0.000152588,0.000793457,0.000305176,0,-0.000305176,-0.000610352,-0.000305176,-0.000793457,0,0.000457764,0.000793457,0.00140381,0.00125122,0.00219727,0.00109863,0.000946045,0,-0.000610352,-0.00109863,-0.0015564,-0.000946045,-0.00109863,-0.00140381,-0.00219727,-0.00250244,-0.00250244,-0.00219727,-0.00186157,-0.00201416,-0.00234985,-0.00170898,-0.0015564,-0.00125122,-0.000946045,-0.00125122,-0.000793457,-0.000305176,-0.000305176,0.000152588,0.000305176,0,0.000793457,-0.000457764,0,-0.000305176,0.000152588,0.00109863,0.00109863,0.000946045,0.000946045,0.000457764,-0.000152588,-0.000457764,0.000152588,0,0.000457764,0,0,-0.000457764,0,0.000946045,0.0015564,0.00125122,0.00140381,0.00125122,0.00201416,0.00234985,0.00234985,0.00234985,0.00170898,0.00140381,0.00109863,0.000946045,0.000152588,-0.000305176,0.000305176,0.000305176,0.00109863,-0.000152588,-0.000152588,0,0.000152588,0.000152588,0.000946045,0.00219727,0.00311279,0.00390625,0.00360107,0.00421143,0.00421143,0.00515747,0.00546265,0.00531006,0.00546265,0.0045166,0.00466919,0.00421143,0.00375366,0.00341797,0.00341797,0.00311279,0.00186157,0.00170898,0.00109863,0.000946045,-0.000457764,-0.000793457,-0.00140381,-0.0015564,-0.00170898,-0.00170898,-0.00125122,-0.000793457,0.000793457,0.00140381,0.0015564,0.00250244,0.00311279,0.00360107,0.00421143,0.00466919,0.00360107,0.00421143,0.00390625,0.00482178,0.00546265,0.00546265,0.00466919,0.00405884,0.0045166,0.00466919,0.00561523,0.00546265,0.00576782,0.00531006,0.00466919,0.00482178,0.00497437,0.00515747,0.00497437,0.00482178,0.00466919,0.00592041,0.006073,0.006073,0.00637817,0.00671387,0.00671387,0.00811768,0.00857544,0.0090332,0.00888062,0.00857544,0.00952148,0.0093689,0.0101318,0.00967407,0.0101318,0.0093689,0.0093689,0.00918579,0.0101318,0.0101318,0.00997925,0.00952148,0.0093689,0.00967407,0.00997925,0.0105896,0.0102844,0.0110779,0.0105896,0.0110779,0.00997925,0.00997925,0.00997925,0.00918579,0.00997925,0.0101318,0.010437,0.0107727,0.0110779,0.0109253,0.0102844,0.00967407,0.00967407,0.00888062,0.00842285,0.00732422,0.00656128,0.006073,0.00531006,0.00497437,0.00546265,0.006073,0.00497437,0.00531006,0.00436401,0.00390625,0.00375366,0.00341797,0.00311279,0.00186157,0,-0.00140381,-0.00201416,-0.00201416,-0.00234985,-0.00201416,-0.00201416,-0.00219727,-0.00201416,-0.00296021,-0.00296021,-0.00375366,-0.00326538,-0.00341797,-0.00405884,-0.00466919,-0.00576782,-0.006073,-0.00656128,-0.00732422,-0.00686646,-0.00732422,-0.00561523,-0.006073,-0.00576782,-0.006073,-0.00561523,-0.00531006,-0.00482178,-0.00466919,-0.00515747,-0.00497437,-0.00637817,-0.00717163,-0.00827026,-0.00888062,-0.00967407,-0.00918579,-0.00982666,-0.0109253,-0.0107727,-0.0101318,-0.0093689,-0.00827026,-0.00842285,-0.00732422,-0.00827026,-0.00811768,-0.0090332,-0.0102844,-0.0102844,-0.0107727,-0.0105896,-0.010437,-0.0105896,-0.00918579,-0.0090332,-0.00918579,-0.00857544,-0.00796509,-0.00717163,-0.00686646,-0.00686646,-0.00701904,-0.00811768,-0.00778198,-0.00811768,-0.00888062,-0.00888062,-0.0093689,-0.00888062,-0.0090332,-0.00827026,-0.00857544,-0.00857544,-0.00888062,-0.0090332,-0.00888062,-0.0090332,-0.00967407,-0.00982666,-0.0105896,-0.010437,-0.010437,-0.0102844,-0.0107727,-0.0107727,-0.0105896,-0.0101318,-0.00967407,-0.00918579,-0.00872803,-0.00857544,-0.00888062,-0.00842285,-0.00888062,-0.00888062,-0.00888062,-0.00952148,-0.00888062,-0.00872803,-0.00811768,-0.0093689,-0.00872803,-0.00811768,-0.00637817,-0.00576782,-0.00515747,-0.00531006,-0.00497437,-0.00405884,-0.00390625,-0.00421143,-0.00531006,-0.00515747,-0.00466919,-0.00436401,-0.00466919,-0.00546265,-0.00546265,-0.00686646,-0.00656128,-0.00701904,-0.00732422,-0.00656128,-0.00686646,-0.00686646,-0.00686646,-0.00796509,-0.00701904,-0.00686646,-0.00686646,-0.00717163,-0.00732422,-0.00762939,-0.00717163,-0.00701904,-0.00637817,-0.00561523,-0.00390625,-0.0015564,-0.000457764,0.000946045,0.00170898,0.00250244,0.00311279,0.00326538,0.00311279,0.00250244,0.00201416,0.00140381,0.00125122,0.000610352,0.000793457,0,0.000946045,0.000793457,0.00109863,0.0015564,0.000152588,0.000793457,-0.000457764,-0.000793457,-0.00140381,-0.00280762,-0.00360107,-0.00515747,-0.00466919,-0.00482178,-0.00436401,-0.00436401,-0.00421143,-0.00405884,-0.00234985,-0.000793457,0,0.000305176,0.000457764,0.000793457,0.00109863,0.000793457,0.000793457,-0.000305176,-0.000152588,-0.000457764,-0.000946045,-0.0015564,-0.00170898,-0.0015564,-0.00109863,-0.000610352,-0.000152588,0.000793457,0.000457764,0.000152588,0,0.000457764,0.000457764,0.000152588,0,-0.000610352,-0.00109863,-0.00125122,-0.0015564,-0.00170898,-0.0015564,-0.00186157,-0.00125122,-0.00125122,-0.00109863,-0.00109863,-0.00140381,-0.000793457,-0.000305176,0.000152588,0,0.000305176,-0.000305176,-0.000152588,0.000610352,0.000946045,0.00125122,0.00186157,0.00170898,0.00265503,0.00265503,0.00296021,0.00296021,0.00341797,0.00326538,0.00405884,0.00360107,0.00311279,0.00170898,0.000457764,0,-0.000793457,-0.000610352,-0.000610352,-0.000305176,-0.000610352,-0.000305176,-0.000610352,-0.000793457,0.000457764,0.00201416,0.00296021,0.00390625,0.00360107,0.00405884,0.00421143,0.00497437,0.00656128,0.00732422,0.00778198,0.00747681,0.00622559,0.006073,0.00576782,0.00656128,0.00656128,0.00732422,0.00811768,0.00857544,0.0093689,0.0101318,0.0109253,0.013092,0.0149536,0.0169983,0.0177612,0.0174561,0.0177612,0.0187073,0.0185547,0.0177612,0.0174561,0.0169983,0.0174561,0.0177612,0.0173035,0.0168457,0.0165405,0.0174561,0.0182495,0.0201111,0.0193481,0.0201111,0.019165,0.0198059,0.0212097,0.0218201,0.0227661,0.0223083,0.0218201,0.020752,0.0212097,0.0213623,0.0210571,0.0215149,0.0215149,0.020752,0.0218201,0.0215149,0.0221558,0.0221558,0.0223083,0.0226135,0.0232239,0.0227661,0.0219727,0.0213623,0.0202637,0.0199585,0.0195007,0.0198059,0.019165,0.0184021,0.0171509,0.0157471,0.0155945,0.0157471,0.0158997,0.0149536,0.0132446,0.0118408,0.0102844,0.00997925,0.00872803,0.00796509,0.00637817,0.00515747,0.0045166,0.00265503,0.00170898,0.000946045,0,-0.000610352,-0.00201416,-0.00326538,-0.00405884,-0.00482178,-0.00592041,-0.006073,-0.00717163,-0.00686646,-0.00671387,-0.00701904,-0.00732422,-0.00762939,-0.00778198,-0.00811768,-0.00796509,-0.00717163,-0.00732422,-0.00796509,-0.00778198,-0.00888062,-0.00842285,-0.00872803,-0.00888062,-0.00918579,-0.0101318,-0.0113831,-0.0119934,-0.0123291,-0.0124817,-0.0138855,-0.0149536,-0.0155945,-0.0155945,-0.0155945,-0.0158997,-0.0157471,-0.0155945,-0.0158997,-0.0154419,-0.0151367,-0.0143433,-0.0144958,-0.0149536,-0.0146484,-0.0141907,-0.0135803,-0.0129395,-0.0127869,-0.0126343,-0.0126343,-0.0126343,-0.0121765,-0.0124817,-0.0116882,-0.0116882,-0.0113831,-0.0116882,-0.0113831,-0.0109253,-0.0112305,-0.0115356,-0.0112305,-0.0112305,-0.010437,-0.0107727,-0.0107727,-0.0101318,-0.0101318,-0.010437,-0.0102844,-0.0107727,-0.0110779,-0.013092,-0.0141907,-0.0141907,-0.0141907,-0.0141907,-0.0137329,-0.0144958,-0.0137329,-0.0140381,-0.0135803,-0.0135803,-0.0132446,-0.0133972,-0.0124817,-0.0123291,-0.0124817,-0.013092,-0.0137329,-0.013092,-0.0119934,-0.0105896,-0.0105896,-0.010437,-0.0110779,-0.0101318,-0.0101318,-0.0102844,-0.0101318,-0.0101318,-0.00967407,-0.0102844,-0.0113831,-0.0121765,-0.0121765,-0.0124817,-0.0119934,-0.0118408,-0.0115356,-0.0109253,-0.0112305,-0.0121765,-0.0124817,-0.0112305,-0.0109253,-0.00967407,-0.00918579,-0.00952148,-0.00982666,-0.0093689,-0.00827026,-0.00796509,-0.00811768,-0.00952148,-0.0102844,-0.0112305,-0.0115356,-0.0112305,-0.0102844,-0.0093689,-0.00811768,-0.00717163,-0.00482178,-0.00405884,-0.00250244,-0.00219727,-0.00125122,-0.00109863,-0.000457764,-0.000457764,-0.000946045,-0.00186157,-0.00186157,-0.00140381,-0.00201416,-0.00265503,-0.00405884,-0.00515747,-0.00531006,-0.00497437,-0.00421143,-0.00421143,-0.00436401,-0.00375366,-0.00280762,-0.00186157,0.000305176,0.000610352,0.00109863,0.00109863,0.00140381,0.00326538,0.00360107,0.00436401,0.00326538,0.00219727,0.0015564,0.000946045,-0.000457764,0,0.000610352,0.000946045,0.000152588,-0.000457764,0.000457764,0.00201416,0.00280762,0.00250244,0.00125122,0.00140381,0.00109863,0.0015564,0.00265503,0.00250244,0.00265503,0.00186157,0.0015564,0.00201416,0.00201416,0.00326538,0.00326538,0.00360107,0.00326538,0.00265503,0.00170898,0.0015564,0.00186157,0.000610352,-0.000305176,-0.000457764,-0.00109863,-0.000305176,0.000305176,0.00170898,0.00311279,0.00405884,0.00531006,0.006073,0.00592041,0.00497437,0.00390625,0.00341797,0.00280762,0.00360107,0.00311279,0.00186157,0.000946045,-0.000793457,-0.000457764,0.000305176,0.000305176,-0.000610352,-0.000946045,-0.000457764,0.000305176,0.0015564,0.000305176,0.000152588,-0.000610352,0.0015564,0.00341797,0.00497437,0.00375366,0.00234985,0.00125122,0.000793457,0.000610352,0.0015564,0.00170898,0.00186157,0.000793457,0.00140381,0.00170898,0.00296021,0.00360107,0.00576782,0.00747681,0.00952148,0.00997925,0.0126343,0.0133972,0.0129395,0.0123291,0.0113831,0.010437,0.0105896,0.0090332,0.00747681,0.00546265,0.00515747,0.00546265,0.00466919,0.00360107,0.00375366,0.00405884,0.00531006,0.00637817,0.00842285,0.00997925,0.0124817,0.0146484,0.0169983,0.0188599,0.0213623,0.0224609,0.0243225,0.0254211,0.026825,0.0261841,0.0255737,0.0241699,0.0232239,0.0210571,0.0202637,0.0182495,0.0162048,0.0138855,0.0124817,0.0123291,0.0126343,0.013092,0.0140381,0.0149536,0.0160522,0.0177612,0.0190125,0.0199585,0.020752,0.0218201,0.0216675,0.0216675,0.0216675,0.020752,0.0209045,0.0199585,0.0190125,0.0190125,0.0177612,0.0165405,0.0146484,0.0124817,0.0107727,0.0101318,0.00842285,0.00827026,0.00686646,0.00482178,0.0045166,0.00482178,0.00546265,0.00622559,0.00686646,0.00686646,0.00747681,0.00717163,0.00842285,0.00918579,0.010437,0.0105896,0.0110779,0.0112305,0.0101318,0.00842285,0.00637817,0.00311279,0.000457764,-0.0015564,-0.00280762,-0.00390625,-0.00637817,-0.0090332,-0.00888062,-0.00686646,-0.00466919,-0.00219727,-0.00125122,-0.00219727,-0.00497437,-0.00701904,-0.00872803,-0.00967407,-0.00857544,-0.0090332,-0.0101318,-0.0113831,-0.0116882,-0.0119934,-0.0123291,-0.0118408,-0.00982666,-0.00918579,-0.00778198,-0.00842285,-0.0112305,-0.013092,-0.0133972,-0.0119934,-0.0123291,-0.0129395,-0.0135803,-0.0144958,-0.0133972,-0.0133972,-0.0135803,-0.0116882,-0.0093689,-0.00872803,-0.0109253,-0.0138855,-0.0141907,-0.0137329,-0.0154419,-0.0165405,-0.0179443,-0.0204163,-0.0218201,-0.020752,-0.0187073,-0.0182495,-0.0177612,-0.0157471,-0.0137329,-0.0126343,-0.0119934,-0.0110779,-0.00827026,-0.00436401,-0.00311279,-0.00405884,-0.00466919,-0.00531006,-0.006073,-0.00796509,-0.0109253,-0.0126343,-0.0140381,-0.0154419,-0.0169983,-0.0182495,-0.0185547,-0.0180969,-0.0177612,-0.0155945,-0.0166931,-0.0151367,-0.0121765,-0.00842285,-0.00561523,-0.00497437,-0.00466919,-0.00360107,0.00201416,0.00280762,0.00326538,0.00405884,0.00140381,-0.000946045,-0.0015564,-0.000610352,0.000457764,-0.00109863,-0.00296021,-0.00686646,-0.00967407,-0.0121765,-0.013092,-0.0119934,-0.0133972,-0.0127869,-0.0101318,-0.00997925,-0.0112305,-0.00872803,-0.00592041,-0.00466919,-0.00296021,0.000305176,-0.00109863,-0.000946045,0.000305176,0.00280762,0.00592041,0.00796509,0.00952148,0.0116882,0.0121765,0.0102844,0.00997925,0.00888062,0.00622559,0.00515747,0.00482178,0.00296021,0.000152588,-0.0015564,-0.00390625,-0.00592041,-0.006073,-0.00390625,-0.00311279,-0.00296021,-0.00405884,-0.00436401,-0.00436401,-0.00140381,0.00250244,0.00531006,0.00701904,0.00796509,0.00967407,0.0113831,0.0113831,0.0127869,0.0146484,0.0155945,0.0169983,0.0168457,0.0160522,0.0143433,0.0109253,0.0105896,0.00872803,0.00686646,0.00421143,0.00280762,-0.00109863,-0.00360107,-0.00531006,-0.00515747,-0.00405884,-0.00360107,-0.00390625,-0.00326538,0,0.00186157,0.00360107,0.00405884,0.006073,0.00778198,0.0102844,0.0119934,0.0121765,0.0132446,0.0158997,0.0180969,0.0187073,0.0185547,0.014801,0.0102844,0.00732422,0.00576782,0.00296021,-0.00219727,-0.006073,-0.00762939,-0.00952148,-0.00997925,-0.0121765,-0.0124817,-0.0118408,-0.010437,-0.00842285,-0.00796509,-0.00778198,-0.00622559,-0.00466919,-0.00219727,-0.000152588,0.0015564,0.00421143,0.00531006,0.00656128,0.00827026,0.00952148,0.0102844,0.00997925,0.0090332,0.00796509,0.00747681,0.00622559,0.00360107,0.00109863,-0.00201416,-0.00436401,-0.00546265,-0.00778198,-0.0093689,-0.00997925,-0.0126343,-0.0129395,-0.0123291,-0.00888062,-0.00546265,-0.00497437,-0.00732422,-0.00515747,0.000457764,0.00592041,0.00515747,0.00405884,0.00436401,0.00592041,0.00671387,0.00482178,0.000946045,0.000793457,0.00186157,0.00326538,0.00436401,0.00375366,0.000610352,-0.00201416,-0.00170898,-0.00219727,-0.00341797,-0.00497437,-0.00592041,-0.00546265,-0.0045166,-0.00482178,-0.00515747,-0.00576782,-0.00592041,-0.00656128,-0.00561523,-0.00497437,-0.0045166,-0.00405884,-0.00326538,-0.00219727,-0.000457764,0.000457764,0.000457764,0,0.000946045,0.000946045,0.000793457,0.00125122,0.000305176,-0.000610352,-0.000793457,-0.000305176,-0.000793457,-0.00140381,-0.00186157,-0.00219727,-0.00201416,-0.00219727,-0.00219727,-0.00265503,-0.00360107,-0.00390625,-0.00375366,-0.00326538,-0.00311279,-0.00436401,-0.00466919,-0.0045166,-0.0045166,-0.00360107,-0.00326538,-0.00296021,-0.00326538,-0.00250244,-0.00219727,-0.00250244,-0.00219727,-0.00201416,-0.0015564,-0.00170898,-0.000793457,-0.000457764,-0.00186157,-0.00219727,-0.00311279,-0.00250244,-0.00219727,-0.00186157,-0.00186157,-0.00140381,-0.000305176,0.000793457,0.00219727,0.00296021,0.00341797,0.00296021,0.00326538,0.00280762,0.00201416,0.00186157,0.000457764,0.000152588,-0.000610352,-0.000610352,-0.000793457,-0.000793457,-0.00109863,-0.00109863,0.000457764,0.0015564,0.000610352,0.00109863,0.00280762,0.00375366,0.00109863,0.00109863,0.00311279,0.0045166,0.00466919,0.00360107,0.00341797,0.00421143,0.00375366,0.00280762,0.0015564,0.000793457,-0.000793457,-0.00170898,-0.00201416,-0.00326538,-0.00250244,-0.00250244,-0.00280762,-0.00311279,-0.00326538,-0.00311279,-0.00219727,-0.00125122,0,0.000305176,0.000457764,0.00140381,0.00125122,0.00280762,0.00296021,0.00280762,0.00311279,0.00250244,0.00186157,0.00109863,-0.000152588,-0.00109863,-0.00140381,-0.00250244,-0.00326538,-0.00311279,-0.00311279,-0.00280762,-0.00201416,-0.00186157,-0.00280762,-0.00265503,-0.0015564,-0.00170898,-0.00280762,-0.00280762,-0.00234985,-0.00109863,-0.00201416,-0.00234985,-0.00125122,-0.00125122,-0.00140381,-0.000457764,-0.0015564,-0.00265503,-0.00265503,-0.00250244,-0.00326538,-0.00326538,-0.00360107,-0.00405884,-0.00360107,-0.00201416,-0.00109863,0.000610352,0.00125122,0.00201416,0.00250244,0.00280762,0.00296021,0.00140381,0.000946045,0.000793457,0,0.00125122,0.000946045,0.00140381,0.000946045,0.000305176,-0.000457764,-0.00109863,-0.00405884,-0.00405884,-0.00390625,-0.0045166,-0.00341797,-0.00341797,-0.00515747,-0.00637817,-0.00656128,-0.00405884,-0.00311279,-0.00219727,-0.00140381,-0.000610352,-0.000610352,-0.000152588,0.000457764,0.000793457,0.00201416,0.00265503,0.00265503,0.00296021,0.00280762,0.00250244,0.00219727,0.00436401,0.0045166,0.00296021,0.000610352,-0.0015564,-0.0015564,-0.00201416,-0.000610352,0.000610352,0.000946045,0.000457764,0.000152588,0.0015564,0.00186157,0.00280762,0.00250244,0.00201416,0.000946045,0.000457764,-0.000793457,-0.00170898,-0.000946045,0.000152588,-0.000305176,0.000610352,0.000793457,0.000457764,0.00109863,0.00234985,0.00186157,0.00280762,0.00375366,0.00360107,0.00109863,-0.00170898,-0.00219727,-0.00186157,-0.000793457,-0.0015564,-0.00219727,-0.00250244,-0.00219727,-0.00170898,-0.0015564,-0.000946045,-0.000793457,0.000610352,0.00140381,0.00326538,0.00234985,0.00201416,0.00201416,0.00125122,-0.000793457,-0.000305176,0.000793457,0.00125122,0.00109863,0.0015564,0.000152588,-0.000457764,-0.000946045,-0.00109863,-0.000457764,-0.000610352,-0.00219727,-0.00326538,-0.00311279,-0.00250244,-0.000152588,0.000152588,0.00170898,0.00311279,0.00546265,0.00515747,0.00531006,0.00592041,0.00482178,0.00186157,0,0.000457764,0.000305176,-0.00109863,-0.00250244,-0.00326538,-0.00341797,-0.0045166,-0.00405884,-0.00326538,-0.00375366,-0.00466919,-0.00421143,-0.00125122,0,0.00125122,0.00170898,0.00201416,0.00234985,0.00311279,0.00280762,0.00234985,0,-0.00341797,-0.00592041,-0.00592041,-0.00436401,-0.00421143,-0.00576782,-0.00576782,-0.0045166,-0.00250244,-0.00140381,-0.00140381,-0.00140381,-0.000946045,0.000793457,0.00186157,0.00250244,0.000946045,0.000305176,0.0015564,0.00109863,-0.000610352,-0.00390625,-0.00405884,-0.00482178,-0.00341797,-0.00421143,-0.00515747,-0.00531006,-0.00482178,-0.00390625,-0.00390625,-0.0045166,-0.0045166,-0.00375366,-0.00234985,0.000457764,0.0015564,0.00326538,0.00296021,0.00234985,0.000610352,-0.00170898,-0.00341797,-0.00576782,-0.00686646,-0.00717163,-0.00732422,-0.00686646,-0.00436401,-0.00186157,0.00109863,0.00311279,0.00341797,0.00375366,0.00390625,0.00360107,0.00234985,0.000152588,-0.00219727,-0.000946045,-0.000457764,-0.000152588,-0.000610352,-0.000152588,-0.000946045,-0.00186157,-0.00250244,-0.00170898,-0.000610352,-0.000946045,-0.00170898,-0.00219727,-0.00201416,-0.00201416,-0.00326538,-0.00592041,-0.00717163,-0.00671387,-0.00622559,-0.006073,-0.00622559,-0.00421143,-0.00360107,-0.00280762,-0.00109863,0.000610352,0.0015564,0.00296021,0.00390625,0.00436401,0.00436401,0.00405884,0.0015564,-0.00125122,-0.00311279,-0.00405884,-0.0045166,-0.00531006,-0.00637817,-0.00811768,-0.00827026,-0.006073,-0.00421143,-0.00311279,-0.000946045,0.000610352,0.0015564,0.00170898,0.00109863,-0.000457764,0.000610352,0.00140381,0.00234985,0.000152588,-0.000457764,-0.00250244,-0.00360107,-0.00576782,-0.00592041,-0.00592041,-0.00531006,-0.00497437,-0.00482178,-0.00341797,-0.000946045,-0.00109863,-0.00234985,-0.00265503,-0.00219727,-0.00186157,0,0,-0.000305176,-0.000457764,0.000610352,0.00186157,0.00311279,0.00326538,0.00280762,0.00234985,0.00201416,0.000793457,-0.0015564,-0.00326538,-0.00265503,-0.00326538,-0.00405884,-0.00405884,-0.00375366,-0.00265503,-0.00109863,0.000946045,0.00326538,0.00482178,0.00515747,0.00497437,0.00497437,0.00466919,0.00515747,0.00576782,0.00622559,0.006073,0.00622559,0.00671387,0.00701904,0.00717163,0.00686646,0.00592041,0.00497437,0.00576782,0.006073,0.00637817,0.00717163,0.00952148,0.00997925,0.0110779,0.0102844,0.0115356,0.0109253,0.0113831,0.0115356,0.0113831,0.0107727,0.0102844,0.0102844,0.00982666,0.00997925,0.0102844,0.00997925,0.00872803,0.00888062,0.0093689,0.00918579,0.00967407,0.0090332,0.0090332,0.00982666,0.0102844,0.0113831,0.0115356,0.0121765,0.0121765,0.0124817,0.0133972,0.0140381,0.0133972,0.0138855,0.0138855,0.0140381,0.0141907,0.0135803,0.0123291,0.0109253,0.0102844,0.00952148,0.00827026,0.00701904,0.00592041,0.00390625,0.00311279,0.00219727,0.00250244,0.00250244,0.00311279,0.00360107,0.00421143,0.00497437,0.00637817,0.00701904,0.00762939,0.00827026,0.00762939,0.00701904,0.00622559,0.0045166,0.00405884,0.00219727,0.0015564,0.000305176,-0.000305176,-0.0015564,-0.00250244,-0.00234985,-0.00201416,-0.00250244,-0.00125122,-0.00140381,0,0.000946045,0.000610352,0.000610352,0.000457764,0.000946045,0.000152588,-0.00109863,-0.00250244,-0.00390625,-0.00497437,-0.00531006,-0.00531006,-0.00561523,-0.00671387,-0.00637817,-0.006073,-0.00561523,-0.00497437,-0.00497437,-0.00546265,-0.00546265,-0.00592041,-0.00576782,-0.00637817,-0.00592041,-0.00656128,-0.00686646,-0.00686646,-0.00732422,-0.00637817,-0.00515747,-0.00546265,-0.00546265,-0.00622559,-0.00637817,-0.00622559,-0.00592041,-0.00622559,-0.00686646,-0.00686646,-0.00747681,-0.00762939,-0.0090332,-0.00918579,-0.00888062,-0.00918579,-0.00952148,-0.00952148,-0.00967407,-0.00952148,-0.0093689,-0.00857544,-0.00747681,-0.00686646,-0.00686646,-0.00671387,-0.00747681,-0.00796509,-0.00762939,-0.00811768,-0.00827026,-0.0090332,-0.00967407,-0.00967407,-0.00982666,-0.00888062,-0.00842285,-0.00762939,-0.00778198,-0.00732422,-0.00827026,-0.00811768,-0.00888062,-0.00811768,-0.0090332,-0.00857544,-0.00857544,-0.00827026,-0.00842285,-0.00857544,-0.0090332,-0.0090332,-0.00967407,-0.00967407,-0.0105896,-0.0113831,-0.0113831,-0.0121765,-0.0110779,-0.0118408,-0.0115356,-0.0123291,-0.0116882,-0.0109253,-0.00967407,-0.0093689,-0.0101318,-0.0107727,-0.0109253,-0.0110779,-0.0101318,-0.00982666,-0.0102844,-0.00997925,-0.00857544,-0.00762939,-0.00686646,-0.00717163,-0.00732422,-0.00732422,-0.00747681,-0.00811768,-0.00872803,-0.0090332,-0.00967407,-0.00967407,-0.0101318,-0.0101318,-0.00982666,-0.010437,-0.00982666,-0.00967407,-0.00982666,-0.0102844,-0.0093689,-0.0090332,-0.00952148,-0.00842285,-0.00842285,-0.00811768,-0.00762939,-0.00811768,-0.00747681,-0.00701904,-0.00637817,-0.00592041,-0.00576782,-0.00515747,-0.00561523,-0.00515747,-0.00531006,-0.00436401,-0.00360107,-0.00186157,-0.0015564,-0.000793457,-0.00109863,-0.000457764,-0.000610352,-0.000946045,-0.00109863,-0.00219727,-0.00250244,-0.00390625,-0.00515747,-0.00576782,-0.00637817,-0.00732422,-0.00778198,-0.00872803,-0.0093689,-0.00872803,-0.00842285,-0.00717163,-0.00637817,-0.00466919,-0.00482178,-0.00311279,-0.00265503,-0.000946045,0.000305176,0.000152588,-0.000152588,-0.00109863,-0.00219727,-0.00186157,-0.00280762,-0.00311279,-0.00390625,-0.0045166,-0.00592041,-0.00622559,-0.00561523,-0.00436401,-0.00341797,-0.00234985,-0.00250244,-0.00125122,0,0.00219727,0.00311279,0.00531006,0.00762939,0.0101318,0.0133972,0.0151367,0.0187073,0.0215149,0.0252686,0.0286865,0.0316467,0.0343018,0.0360107,0.036499,0.0371094,0.0371094,0.0380554,0.0380554,0.037262,0.0360107,0.0343018,0.0332031,0.0325928,0.0330505,0.0333557,0.0343018,0.0352478,0.036499,0.0383606,0.0396118,0.0417786,0.0439758,0.0461426,0.0473938,0.0481873,0.0481873,0.0481873,0.0473938,0.0467834,0.0458374,0.0448914,0.0436707,0.0422668,0.0411682,0.0407104,0.0397644,0.0386658,0.0383606,0.0374146,0.0374146,0.0379028,0.037262,0.035553,0.0339966,0.0324402,0.0314941,0.0310364,0.0291443,0.0272827,0.0240173,0.0210571,0.0182495,0.0165405,0.0143433,0.0137329,0.0121765,0.0101318,0.00842285,0.00637817,0.00531006,0.00436401,0.00341797,0.00250244,0.000305176,-0.00234985,-0.00466919,-0.00671387,-0.00842285,-0.00967407,-0.0115356,-0.0129395,-0.0151367,-0.0165405,-0.0174561,-0.0190125,-0.0193481,-0.0201111,-0.0205688,-0.020752,-0.0218201,-0.0230713,-0.0241699,-0.0254211,-0.0254211,-0.0258789,-0.0260315,-0.0275879,-0.0291443,-0.0305481,-0.0314941,-0.0319519,-0.0322876,-0.0332031,-0.0336914,-0.0344543,-0.0346069,-0.0350952,-0.0344543,-0.0344543,-0.0339966,-0.0330505,-0.0328979,-0.0321045,-0.0310364,-0.0302429,-0.0299377,-0.02948,-0.0285339,-0.0282288,-0.0269775,-0.0271301,-0.0254211,-0.0249329,-0.0232239,-0.0215149,-0.0196533,-0.0180969,-0.0158997,-0.0140381,-0.0121765,-0.010437,-0.00918579,-0.00796509,-0.00778198,-0.00717163,-0.00747681,-0.00778198,-0.00857544,-0.00857544,-0.00796509,-0.00857544,-0.00842285,-0.00811768,-0.00796509,-0.00827026,-0.00796509,-0.00778198,-0.00671387,-0.00561523,-0.00592041,-0.00466919,-0.00497437,-0.00421143,-0.00375366,-0.00250244,-0.00234985,-0.00201416,-0.00280762,-0.00390625,-0.00482178,-0.00531006,-0.00546265,-0.00592041,-0.00576782,-0.00637817,-0.00762939,-0.00857544,-0.00888062,-0.00872803,-0.00827026,-0.00842285,-0.00967407,-0.0112305,-0.0129395,-0.0140381,-0.0144958,-0.0154419,-0.0166931,-0.0187073,-0.0199585,-0.0212097,-0.0218201,-0.0219727,-0.0226135,-0.0229187,-0.0235291,-0.0241699,-0.0249329,-0.0246277,-0.0240173,-0.0238647,-0.0243225,-0.0246277,-0.0246277,-0.0254211,-0.0249329,-0.0246277,-0.0249329,-0.0261841,-0.0257263,-0.026825,-0.0265198,-0.0263367,-0.0257263,-0.0254211,-0.0247803,-0.0243225,-0.0233765,-0.0229187,-0.0221558,-0.0216675,-0.0205688,-0.0202637,-0.0193481,-0.0190125,-0.0177612,-0.0177612,-0.0177612,-0.0180969,-0.0188599,-0.0193481,-0.0188599,-0.0184021,-0.0173035,-0.0171509,-0.0166931,-0.0154419,-0.0137329,-0.0118408,-0.0105896,-0.00872803,-0.00686646,-0.00622559,-0.00531006,-0.00405884,-0.00265503,-0.000793457,0.00109863,0.00250244,0.00341797,0.00546265,0.00717163,0.010437,0.0137329,0.0160522,0.0182495,0.0196533,0.0215149,0.0235291,0.0263367,0.0282288,0.02948,0.031189,0.0332031,0.0357056,0.0374146,0.0393066,0.0414734,0.0436707,0.0467834,0.0495911,0.052063,0.0534668,0.0544128,0.0556641,0.0567627,0.0580139,0.0580139,0.0583191,0.0562744,0.054718,0.0528564,0.0517578,0.0508423,0.0492859,0.0475464,0.0456848,0.0445862,0.0434875,0.0431824,0.0439758,0.043335,0.0436707,0.0431824,0.0431824,0.0431824,0.0439758,0.0448914,0.0447388,0.0438232,0.0420837,0.0413208,0.0400696,0.0391235,0.0379028,0.0358582,0.033844,0.0324402,0.0308838,0.0297852,0.0275879,0.0255737,0.0243225,0.0227661,0.0215149,0.0195007,0.0176086,0.0154419,0.0140381,0.0126343,0.0112305,0.00952148,0.00686646,0.00497437,0.00234985,0.000793457,-0.000793457,-0.00296021,-0.00421143,-0.00622559,-0.00701904,-0.00796509,-0.00857544,-0.00827026,-0.00857544,-0.00778198,-0.00717163,-0.00592041,-0.0045166,-0.00390625,-0.00265503,-0.00250244,-0.00250244,-0.00219727,-0.00296021,-0.00280762,-0.00436401,-0.00622559,-0.00842285,-0.0102844,-0.0121765,-0.0138855,-0.0155945,-0.0179443,-0.0201111,-0.0213623,-0.0219727,-0.0219727,-0.0221558,-0.0219727,-0.0226135,-0.0223083,-0.0216675,-0.0205688,-0.0195007,-0.0195007,-0.0190125,-0.0193481,-0.0193481,-0.0184021,-0.0177612,-0.0173035,-0.0184021,-0.0188599,-0.0195007,-0.0188599,-0.0188599,-0.0182495,-0.0179443,-0.0168457,-0.0165405,-0.0157471,-0.0144958,-0.0132446,-0.0121765,-0.0113831,-0.010437,-0.010437,-0.00918579,-0.0093689,-0.00857544,-0.00872803,-0.00857544,-0.00872803,-0.00857544,-0.00918579,-0.00888062,-0.00967407,-0.0093689,-0.00967407,-0.0102844,-0.0102844,-0.0105896,-0.0105896,-0.0110779,-0.0124817,-0.0132446,-0.0141907,-0.014801,-0.0157471,-0.0162048,-0.0165405,-0.0176086,-0.0182495,-0.0174561,-0.0168457,-0.0158997,-0.0155945,-0.0152893,-0.0152893,-0.014801,-0.0141907,-0.0135803,-0.0143433,-0.0146484,-0.0155945,-0.0160522,-0.0165405,-0.0166931,-0.0182495,-0.0185547,-0.0195007,-0.0209045,-0.0213623,-0.0224609,-0.0226135,-0.0219727,-0.0218201,-0.0202637,-0.0210571,-0.0215149,-0.0210571,-0.0209045,-0.0202637,-0.0209045,-0.0212097,-0.0229187,-0.0229187,-0.0235291,-0.0241699,-0.0247803,-0.0237122,-0.0226135,-0.0215149,-0.0215149,-0.0209045,-0.0195007,-0.0171509,-0.014801,-0.0138855,-0.013092,-0.0133972,-0.0138855,-0.0133972,-0.013092,-0.0109253,-0.0110779,-0.00967407,-0.00918579,-0.00952148,-0.0102844,-0.0102844,-0.0102844,-0.0101318,-0.0109253,-0.0118408,-0.0133972,-0.0135803,-0.0137329,-0.0138855,-0.0146484,-0.0138855,-0.013092,-0.0115356,-0.0101318,-0.00796509,-0.00686646,-0.00561523,-0.00576782,-0.00375366,-0.00219727,0.000457764,0.000793457,-0.000305176,0,0.000305176,0.00201416,0.00311279,0.00341797,0.00390625,0.00280762,0.00375366,0.00360107,0.00421143,0.00436401,0.00482178,0.00436401,0.00482178,0.00561523,0.00592041,0.00671387,0.00796509,0.00967407,0.0110779,0.0124817,0.013092,0.0127869,0.0138855,0.014801,0.0162048,0.0177612,0.0179443,0.0184021,0.0199585,0.0221558,0.0255737,0.0269775,0.0297852,0.0310364,0.0341492,0.0369568,0.039917,0.0410156,0.0419312,0.0414734,0.0405273,0.0391235,0.0375671,0.0360107,0.033844,0.0317993,0.02948,0.0277405,0.0257263,0.0249329,0.0240173,0.0235291,0.0230713,0.0224609,0.0227661,0.0232239,0.0246277,0.0252686,0.0261841,0.0260315,0.0257263,0.0263367,0.026825,0.0275879,0.0271301,0.0271301,0.0254211,0.0254211,0.0249329,0.0241699,0.0229187,0.0212097,0.0195007,0.0177612,0.0174561,0.0168457,0.0157471,0.0149536,0.0144958,0.0132446,0.0129395,0.0124817,0.0119934,0.0118408,0.0113831,0.0107727,0.00952148,0.00796509,0.00701904,0.00561523,0.00466919,0.00326538,0.00170898,0.000610352,-0.000457764,-0.00125122,-0.00265503,-0.00341797,-0.00421143,-0.00436401,-0.00405884,-0.00375366,-0.00280762,-0.00280762,-0.00186157,-0.00109863,-0.000152588,0.00140381,0.000793457,0.0015564,0.0015564,0.00170898,0.000793457,-0.000457764,-0.00170898,-0.00390625,-0.00531006,-0.00701904,-0.00796509,-0.0090332,-0.00967407,-0.0113831,-0.0119934,-0.0129395,-0.0124817,-0.0129395,-0.0126343,-0.0126343,-0.0121765,-0.0123291,-0.0110779,-0.0116882,-0.0113831,-0.0112305,-0.0105896,-0.0109253,-0.0113831,-0.0132446,-0.0138855,-0.0141907,-0.0137329,-0.0140381,-0.0144958,-0.0158997,-0.0158997,-0.0163574,-0.0160522,-0.0155945,-0.0138855,-0.00982666,-0.00656128,-0.006073,-0.00497437,-0.00482178,-0.00466919,-0.00466919,-0.00341797,-0.00140381,-0.000610352,0.000610352,0,-0.00109863,-0.00201416,-0.00219727,-0.00341797,-0.00515747,-0.00592041,-0.00592041,-0.00637817,-0.00531006,-0.00515747,-0.00421143,-0.00466919,-0.00466919,-0.00234985,-0.000793457,-0.000946045,-0.00296021,-0.00109863,0,-0.00201416,-0.00109863,-0.000793457,-0.00140381,0.000793457,0.00140381,0.00201416,0.00186157,0.00265503,0.000946045,0.00311279,0.00637817,0.00811768,0.00762939,0.00686646,0.00827026,0.00717163,0.00686646,0.00546265,0.00436401,0.00311279,0.00201416,0,0,-0.000152588,-0.000457764,-0.00170898,-0.00170898,-0.00311279,-0.00405884,-0.00436401,-0.00497437,-0.00466919,-0.00311279,-0.00280762,-0.00296021,-0.00219727,-0.00170898,-0.000610352,-0.000946045,-0.000457764,0.000457764,0.000457764,0.00109863,0.000457764,-0.000610352,-0.00125122,-0.00140381,-0.00265503,-0.00296021,-0.00341797,-0.00482178,-0.00561523,-0.00531006,-0.00561523,-0.00561523,-0.00561523,-0.00637817,-0.00637817,-0.00546265,-0.00561523,-0.00515747,-0.00497437,-0.00421143,-0.00375366,-0.00341797,-0.00265503,-0.00265503,-0.00326538,-0.00311279,-0.00421143,-0.00405884,-0.00546265,-0.006073,-0.00747681,-0.00778198,-0.00857544,-0.00888062,-0.00888062,-0.00918579,-0.00888062,-0.0093689,-0.0090332,-0.00872803,-0.00747681,-0.00811768,-0.00686646,-0.00671387,-0.00592041,-0.00561523,-0.00546265,-0.00497437,-0.00515747,-0.00515747,-0.00546265,-0.00561523,-0.006073,-0.00622559,-0.00686646,-0.00732422,-0.00732422,-0.00778198,-0.00811768,-0.00811768,-0.00811768,-0.00811768,-0.00762939,-0.00827026,-0.00778198,-0.00732422,-0.00717163,-0.00671387,-0.00637817,-0.006073,-0.00592041,-0.00531006,-0.00515747,-0.00482178,-0.0045166,-0.00466919,-0.00466919,-0.00531006,-0.00482178,-0.00482178,-0.00482178,-0.00515747,-0.00497437,-0.00515747,-0.00546265,-0.00515747,-0.00515747,-0.00497437,-0.00482178,-0.00466919,-0.00466919,-0.00421143,-0.00436401,-0.00375366,-0.00360107,-0.00296021,-0.00296021,-0.00250244,-0.00201416,-0.0015564,-0.00201416,-0.00170898,-0.0015564,-0.00201416,-0.00170898,-0.00219727,-0.0015564,-0.00201416,-0.00186157,-0.0015564,-0.00186157,-0.00140381,-0.00125122,-0.00125122,-0.0015564,-0.00109863,-0.00140381,-0.000946045,-0.000946045,-0.000457764,0,0.000305176,0.000305176,0.000793457,0.000946045,0.0015564,0.00140381,0.00201416,0.00186157,0.00201416,0.00201416,0.00186157,0.00186157,0.00250244,0.00234985,0.00280762,0.00280762,0.00265503,0.00296021,0.00296021,0.00311279,0.00341797,0.00311279,0.00390625,0.00375366,0.00405884,0.00390625,0.00421143,0.00405884,0.00466919,0.00466919,0.00482178,0.00497437,0.00531006,0.00531006,0.00546265,0.00546265,0.00561523,0.00592041,0.00637817,0.00671387,0.00701904,0.00717163,0.00717163,0.00732422,0.00762939,0.00778198,0.00842285,0.00811768,0.00872803,0.00857544,0.00872803,0.00888062,0.00857544,0.0090332,0.00918579,0.00918579,0.0093689,0.00888062,0.00967407,0.00967407,0.0101318,0.0107727,0.0112305,0.0113831,0.0119934,0.0119934,0.0119934,0.0129395,0.0123291,0.0127869,0.0126343,0.0123291,0.0124817,0.0123291,0.0121765,0.0119934,0.0115356,0.0113831,0.0105896,0.00967407,0.00997925,0.00888062,0.00857544,0.00811768,0.00827026,0.00778198,0.00762939,0.00778198,0.00747681,0.00796509,0.00778198,0.00778198,0.00762939,0.00717163,0.00701904,0.00732422,0.00671387,0.00671387,0.00656128,0.006073,0.006073,0.00637817,0.00576782,0.00531006,0.00497437,0.00466919,0.00341797,0.00311279,0.00250244,0.00170898,0.00219727,0.00170898,0.00201416,0.00109863,0.000946045,0.000946045,0.000152588,0.000152588,0.000305176,-0.000305176,-0.000610352,-0.00186157,-0.00201416,-0.00311279,-0.00280762,-0.00341797,-0.00311279,-0.00341797,-0.00326538,-0.00311279,-0.00234985,-0.000946045,-0.00125122,-0.000946045,-0.00219727,-0.00360107,-0.00436401,-0.00405884,-0.00375366,-0.00326538,-0.00546265,-0.00686646,-0.00811768,-0.00827026,-0.00811768,-0.0093689,-0.0105896,-0.0112305,-0.0118408,-0.0123291,-0.0115356,-0.0126343,-0.0119934,-0.013092,-0.0121765,-0.0109253,-0.00982666,-0.00982666,-0.00918579,-0.0093689,-0.00827026,-0.00762939,-0.00717163,-0.00762939,-0.00811768,-0.00842285,-0.00888062,-0.0093689,-0.00967407,-0.0105896,-0.0102844,-0.0112305,-0.0124817,-0.0132446,-0.0143433,-0.0149536,-0.0157471,-0.0158997,-0.014801,-0.0137329,-0.0126343,-0.010437,-0.00857544,-0.00671387,-0.0045166,-0.00296021,-0.000793457,-0.000305176,-0.00109863,-0.000793457,-0.00250244,-0.00360107,-0.00561523,-0.00732422,-0.00982666,-0.0119934,-0.0141907,-0.0158997,-0.0174561,-0.0169983,-0.0171509,-0.0154419,-0.0135803,-0.0121765,-0.0101318,-0.00888062,-0.00732422,-0.00561523,-0.00436401,-0.00234985,-0.0015564,-0.000610352,0.000793457,-0.000305176,0.000457764,-0.000305176,-0.000305176,-0.00109863,-0.00140381,-0.00280762,-0.00421143,-0.00482178,-0.00515747,-0.00561523,-0.006073,-0.00747681,-0.00857544,-0.00796509,-0.00732422,-0.00686646,-0.00546265,-0.00531006,-0.00375366,-0.00250244,-0.000793457,-0.000457764,0.00170898,0.00201416,0.00390625,0.0045166,0.0045166,0.00482178,0.00466919,0.00482178,0.00360107,0.00296021,0.00186157,0.00125122,0.000610352,0.000305176,0.000457764,0.000152588,-0.000610352,-0.000305176,-0.000152588,0.000457764,0.0015564,0.00234985,0.00280762,0.00341797,0.00326538,0.00296021,0.00341797,0.00311279,0.00265503,0.00311279,0.00250244,0.00201416,0.00219727,0.00250244,0.00234985,0.00250244,0.00201416,0.0015564,0.00219727,0.00219727,0.00265503,0.00234985,0.00280762,0.00311279,0.00311279,0.00326538,0.00265503,0.00250244,0.00265503,0.00201416,0.00265503,0.00186157,0.00219727,0.00311279,0.00360107,0.00421143,0.00326538,0.00265503,0.00280762,0.00405884,0.00390625,0.00280762,0.00250244,0.00234985,0.00234985,0.00265503,0.00405884,0.00311279,0.00375366,0.00375366,0.00436401,0.00546265,0.00561523,0.006073,0.00576782,0.00592041,0.00515747,0.00561523,0.00515747,0.00497437,0.00497437,0.00576782,0.00637817,0.00717163,0.00778198,0.00842285,0.00872803,0.00982666,0.0105896,0.0112305,0.0118408,0.0119934,0.0118408,0.0123291,0.0116882,0.0105896,0.0093689,0.00857544,0.00778198,0.00717163,0.006073,0.00531006,0.0045166,0.00421143,0.00390625,0.00466919,0.00421143,0.00482178,0.00497437,0.00576782,0.00732422,0.00796509,0.00872803,0.0090332,0.0090332,0.00888062,0.00872803,0.0101318,0.00997925,0.0093689,0.00842285,0.00811768,0.00872803,0.00967407,0.00967407,0.0093689,0.00967407,0.0102844,0.0124817,0.0137329,0.0146484,0.0152893,0.0143433,0.0154419,0.014801,0.0151367,0.0146484,0.013092,0.0112305,0.0102844,0.00827026,0.00762939,0.00637817,0.00497437,0.00421143,0.00296021,0.00311279,0.00375366,0.0045166,0.00546265,0.006073,0.00656128,0.00732422,0.00671387,0.00732422,0.00686646,0.00622559,0.0045166,0.00219727,0.0015564,0.00170898,0.00140381,0.000152588,-0.00250244,-0.00421143,-0.00436401,-0.00280762,-0.00265503,-0.00265503,-0.00531006,-0.00576782,-0.00576782,-0.00686646,-0.00686646,-0.00827026,-0.00857544,-0.00811768,-0.00811768,-0.00778198,-0.00811768,-0.00778198,-0.00671387,-0.00561523,-0.00497437,-0.00561523,-0.00531006,-0.00561523,-0.00576782,-0.00701904,-0.00918579,-0.0112305,-0.0107727,-0.0112305,-0.0127869,-0.0144958,-0.0135803,-0.0123291,-0.0121765,-0.0119934,-0.0118408,-0.0124817,-0.0135803,-0.0141907,-0.0143433,-0.0124817,-0.0115356,-0.0115356,-0.0107727,-0.0109253,-0.013092,-0.0144958,-0.0138855,-0.0135803,-0.0121765,-0.0113831,-0.0118408,-0.0113831,-0.0115356,-0.0102844,-0.0109253,-0.0115356,-0.0102844,-0.0101318,-0.00967407,-0.0101318,-0.00982666,-0.0118408,-0.0132446,-0.014801,-0.0144958,-0.0135803,-0.0141907,-0.0149536,-0.0165405,-0.0155945,-0.0135803,-0.0126343,-0.0110779,-0.0101318,-0.00842285,-0.00857544,-0.00686646,-0.00762939,-0.00717163,-0.00686646,-0.00732422,-0.00967407,-0.0109253,-0.010437,-0.00997925,-0.010437,-0.0112305,-0.0121765,-0.0110779,-0.00842285,-0.00811768,-0.00857544,-0.00888062,-0.00762939,-0.00717163,-0.00671387,-0.00671387,-0.006073,-0.00637817,-0.006073,-0.00717163,-0.00732422,-0.00842285,-0.00888062,-0.00982666,-0.0109253,-0.0137329,-0.0154419,-0.0176086,-0.0184021,-0.0188599,-0.0185547,-0.0176086,-0.0158997,-0.0146484,-0.0140381,-0.0137329,-0.0141907,-0.0135803,-0.0152893,-0.0155945,-0.0160522,-0.0152893,-0.0154419,-0.0166931,-0.0187073,-0.019165,-0.019165,-0.0174561,-0.0154419,-0.0129395,-0.0093689,-0.00561523,-0.000152588,0.0045166,0.00811768,0.0110779,0.0138855,0.0174561,0.020752,0.0238647,0.0247803,0.0241699,0.0232239,0.0213623,0.0193481,0.0168457,0.0141907,0.0123291,0.0109253,0.010437,0.00888062,0.00872803,0.00918579,0.0109253,0.0137329,0.0162048,0.019165,0.0209045,0.0229187,0.025116,0.0272827,0.0286865,0.0302429,0.0308838,0.0308838,0.0308838,0.0305481,0.0303955,0.0296326,0.0296326,0.0285339,0.0288391,0.0286865,0.0291443,0.0297852,0.0307312,0.0317993,0.0325928,0.0344543,0.0349121,0.0358582,0.0361633,0.0363159,0.0358582,0.0344543,0.0327454,0.0299377,0.0282288,0.0244751,0.0215149,0.0179443,0.014801,0.0119934,0.00952148,0.00762939,0.006073,0.00497437,0.0045166,0.00482178,0.00576782,0.00686646,0.00811768,0.00952148,0.0105896,0.0119934,0.0132446,0.0149536,0.0152893,0.0157471,0.0149536,0.0144958,0.0141907,0.0127869,0.0118408,0.00997925,0.00827026,0.00686646,0.00531006,0.00390625,0.00280762,0.00201416,0.00125122,0.00140381,0.000946045,0.000610352,0.000610352,-0.000152588,-0.000152588,-0.00125122,-0.00186157,-0.00360107,-0.00561523,-0.00827026,-0.00982666,-0.0113831,-0.0121765,-0.0129395,-0.0141907,-0.0143433,-0.0140381,-0.0141907,-0.0129395,-0.0118408,-0.00982666,-0.00918579,-0.00796509,-0.00656128,-0.006073,-0.00466919,-0.00375366,-0.00280762,-0.00250244,-0.00219727,-0.00250244,-0.00170898,-0.00250244,-0.00326538,-0.00390625,-0.00515747,-0.00546265,-0.00637817,-0.00701904,-0.00872803,-0.00997925,-0.0116882,-0.0129395,-0.0138855,-0.0138855,-0.0143433,-0.0140381,-0.014801,-0.0155945,-0.0158997,-0.0163574,-0.0168457,-0.0171509,-0.0176086,-0.0182495,-0.0195007,-0.0204163,-0.0202637,-0.0209045,-0.0188599,-0.0188599,-0.0180969,-0.0174561,-0.0165405,-0.0155945,-0.0154419,-0.0143433,-0.0144958,-0.0137329,-0.0121765,-0.0129395,-0.0127869,-0.0141907,-0.0144958,-0.0165405,-0.0188599,-0.0215149,-0.0237122,-0.025116,-0.0263367,-0.026825,-0.0297852,-0.0308838,-0.0322876,-0.0319519,-0.0328979,-0.0327454,-0.0349121,-0.0358582,-0.036499,-0.0361633,-0.0358582,-0.0366516,-0.036499,-0.0369568,-0.0375671,-0.037262,-0.0366516,-0.0357056,-0.0346069,-0.0333557,-0.0333557,-0.0327454,-0.0322876,-0.0335083,-0.0346069,-0.0352478,-0.0361633,-0.036499,-0.0377197,-0.0380554,-0.0388184,-0.038208,-0.036499,-0.0352478,-0.0333557,-0.0307312,-0.0282288,-0.0255737,-0.0204163,-0.0151367,-0.00827026,-0.00125122,0.00592041,0.0138855,0.0210571,0.0286865,0.0358582,0.0407104,0.0448914,0.046936,0.0484924,0.0480347,0.0467834,0.0450745,0.0414734,0.0379028,0.0347595,0.0317993,0.0299377,0.0293274,0.0293274,0.0305481,0.0321045,0.0343018,0.0374146,0.0407104,0.0438232,0.0472412,0.0497437,0.0523987,0.0545654,0.0548706,0.0556641,0.0552063,0.0548706,0.0538025,0.0533142,0.0525513,0.052063,0.0505066,0.0497437,0.0498962,0.0494385,0.050354,0.0509949,0.0516052,0.0527039,0.0527039,0.0541077,0.0533142,0.0539551,0.0516052,0.0492859,0.0466309,0.0430298,0.0388184,0.0335083,0.0279236,0.0213623,0.0144958,0.00888062,0.00326538,-0.00125122,-0.00515747,-0.00827026,-0.0107727,-0.0121765,-0.0126343,-0.0127869,-0.0121765,-0.0113831,-0.0107727,-0.0102844,-0.00997925,-0.0102844,-0.0107727,-0.0113831,-0.0123291,-0.0137329,-0.0154419,-0.0168457,-0.0185547,-0.0193481,-0.0204163,-0.0204163,-0.0205688,-0.0202637,-0.0193481,-0.0185547,-0.0169983,-0.0149536,-0.0137329,-0.0119934,-0.0101318,-0.00827026,-0.00637817,-0.00497437,-0.00405884,-0.00421143,-0.0045166,-0.00592041,-0.00637817,-0.00842285,-0.0102844,-0.0124817,-0.0149536,-0.0158997,-0.0176086,-0.0176086,-0.0171509,-0.0165405,-0.0152893,-0.013092,-0.0105896,-0.00778198,-0.00421143,-0.000457764,0.00326538,0.00686646,0.00982666,0.0119934,0.0140381,0.0152893,0.0162048,0.0168457,0.0169983,0.0166931,0.0152893,0.0137329,0.0123291,0.010437,0.0090332,0.00762939,0.00686646,0.00531006,0.0045166,0.00360107,0.00311279,0.00234985,0.00140381,0.000610352,-0.000457764,-0.00170898,-0.00219727,-0.00360107,-0.00482178,-0.00717163,-0.00967407,-0.0118408,-0.0138855,-0.0162048,-0.0180969,-0.0199585,-0.0210571,-0.020752,-0.0213623,-0.0213623,-0.0210571,-0.0196533,-0.0188599,-0.0177612,-0.0169983,-0.0168457,-0.0168457,-0.0168457,-0.0179443,-0.0179443,-0.0182495,-0.0204163,-0.0238647,-0.0274353,-0.0305481,-0.0341492,-0.0375671,-0.040863,-0.0448914,-0.0481873,-0.0506592,-0.053009,-0.0552063,-0.0564575,-0.0576782,-0.0576782,-0.0566101,-0.0552063,-0.0528564,-0.0533142,-0.0528564,-0.052063,-0.0522461,-0.0517578,-0.0523987,-0.053009,-0.0534668,-0.0541077,-0.0544128,-0.0545654,-0.0553589,-0.0552063,-0.0564575,-0.0559692,-0.0548706,-0.0544128,-0.0508423,-0.0475464,-0.0445862,-0.0403748,-0.0344543,-0.0272827,-0.0187073,-0.0093689,0,0.00872803,0.0184021,0.0274353,0.037262,0.0455322,0.0531616,0.0569153,0.059082,0.0581665,0.0567627,0.0548706,0.0514526,0.0480347,0.0431824,0.0391235,0.0357056,0.0335083,0.0327454,0.0330505,0.0354004,0.0383606,0.0422668,0.0461426,0.0498962,0.0539551,0.0595703,0.0639343,0.0679932,0.0697021,0.0708008,0.0700073,0.0701599,0.0697021,0.0692139,0.0678406,0.0654907,0.0636292,0.0620422,0.0612793,0.0611267,0.0608215,0.0614319,0.0615845,0.0623779,0.0631409,0.0646973,0.0656433,0.0659485,0.0646973,0.0625305,0.0592651,0.0542603,0.0494385,0.0430298,0.0363159,0.0280762,0.0202637,0.0112305,0.00311279,-0.00405884,-0.010437,-0.0149536,-0.0193481,-0.0223083,-0.0246277,-0.0254211,-0.025116,-0.0235291,-0.0215149,-0.0199585,-0.0185547,-0.0177612,-0.0173035,-0.0169983,-0.0169983,-0.0179443,-0.0185547,-0.0213623,-0.0232239,-0.0260315,-0.0280762,-0.0300903,-0.0317993,-0.0332031,-0.0344543,-0.0350952,-0.0347595,-0.0336914,-0.0319519,-0.0300903,-0.026825,-0.0246277,-0.0218201,-0.0199585,-0.0177612,-0.0165405,-0.0143433,-0.0137329,-0.0141907,-0.0149536,-0.0168457,-0.0182495,-0.019165,-0.0196533,-0.0199585,-0.0210571,-0.0205688,-0.0196533,-0.0174561,-0.0143433,-0.0107727,-0.00686646,-0.00296021,0.00125122,0.00482178,0.00918579,0.0126343,0.0166931,0.0196533,0.0221558,0.0227661,0.0226135,0.0229187,0.0226135,0.0221558,0.0213623,0.0196533,0.0180969,0.0162048,0.0149536,0.0144958,0.0135803,0.0124817,0.0123291,0.0110779,0.00997925,0.0093689,0.0093689,0.00918579,0.00918579,0.00762939,0.00671387,0.00531006,0.00375366,0.0015564,-0.000457764,-0.00296021,-0.00546265,-0.00857544,-0.00997925,-0.0118408,-0.0121765,-0.0132446,-0.0140381,-0.0140381,-0.0144958,-0.0137329,-0.013092,-0.0112305,-0.0118408,-0.0110779,-0.0119934,-0.0133972,-0.0144958,-0.0140381,-0.0155945,-0.0166931,-0.0188599,-0.0210571,-0.0244751,-0.0272827,-0.0305481,-0.0333557,-0.0343018,-0.0360107,-0.0371094,-0.037262,-0.0393066,-0.0402222,-0.0422668,-0.0428772,-0.0427246,-0.0420837,-0.0419312,-0.0413208,-0.0405273,-0.040863,-0.039917,-0.0400696,-0.0400696,-0.040863,-0.040863,-0.0417786,-0.041626,-0.0402222,-0.0403748,-0.040863,-0.0411682,-0.039917,-0.0388184,-0.037262,-0.037262,-0.0352478,-0.0328979,-0.0319519,-0.0303955,-0.0277405,-0.0255737,-0.0216675,-0.0196533,-0.0163574,-0.0129395,-0.00747681,-0.00296021,0.00265503,0.00762939,0.0123291,0.0166931,0.0212097,0.0260315,0.0300903,0.0330505,0.0346069,0.0352478,0.035553,0.0344543,0.0341492,0.0332031,0.0317993,0.02948,0.0277405,0.0260315,0.0244751,0.0232239,0.0227661,0.0224609,0.0241699,0.025116,0.0265198,0.0279236,0.0296326,0.0316467,0.0336914,0.0350952,0.0360107,0.0366516,0.0369568,0.0375671,0.0374146,0.0369568,0.0358582,0.0347595,0.0335083,0.0330505,0.0319519,0.0324402,0.0319519,0.0333557,0.0333557,0.0346069,0.0357056,0.036499,0.0380554,0.0379028,0.0388184,0.0383606,0.0380554,0.0366516,0.0349121,0.0317993,0.0286865,0.0244751,0.0198059,0.0154419,0.0107727,0.00656128,0.00250244,-0.0015564,-0.00482178,-0.00656128,-0.00762939,-0.00778198,-0.00717163,-0.00637817,-0.00466919,-0.00280762,-0.000610352,0.0015564,0.00341797,0.00497437,0.00592041,0.00637817,0.00656128,0.00561523,0.00390625,0.00296021,0.000793457,-0.000793457,-0.00201416,-0.00390625,-0.00482178,-0.00637817,-0.00686646,-0.00732422,-0.00701904,-0.00701904,-0.00576782,-0.00592041,-0.006073,-0.00531006,-0.00531006,-0.0045166,-0.00482178,-0.00531006,-0.006073,-0.00671387,-0.00717163,-0.00888062,-0.0102844,-0.0110779,-0.0113831,-0.013092,-0.0140381,-0.0141907,-0.0135803,-0.0119934,-0.0109253,-0.00827026,-0.00656128,-0.0045166,-0.00234985,0.000305176,0.00234985,0.00436401,0.00497437,0.006073,0.00576782,0.00576782,0.00531006,0.00515747,0.00436401,0.00311279,0.00125122,-0.000610352,-0.00201416,-0.00296021,-0.00390625,-0.00466919,-0.00531006,-0.00531006,-0.00546265,-0.0045166,-0.00405884,-0.00311279,-0.00265503,-0.00201416,-0.00170898,-0.00125122,-0.00140381,-0.00125122,-0.00140381,-0.00201416,-0.00234985,-0.00280762,-0.00201416,-0.00186157,-0.00219727,-0.00296021,-0.00341797,-0.00421143,-0.00311279,-0.00341797,-0.00296021,-0.00234985,-0.00219727,-0.00125122,-0.00109863,-0.00109863,-0.000946045,-0.00140381,-0.00109863,-0.00219727,-0.00234985,-0.00326538,-0.00421143,-0.0045166,-0.00546265,-0.006073,-0.00671387,-0.00701904,-0.00686646,-0.00686646,-0.00686646,-0.00671387,-0.00747681,-0.00701904,-0.00747681,-0.00762939,-0.00842285,-0.00967407,-0.00997925,-0.0105896,-0.00952148,-0.00997925,-0.0101318,-0.0107727,-0.0113831,-0.0105896,-0.0105896,-0.0110779,-0.0113831,-0.0119934,-0.0113831,-0.0112305,-0.0105896,-0.0112305,-0.0112305,-0.0109253,-0.00997925,-0.00982666,-0.00872803,-0.00872803,-0.00918579,-0.00872803,-0.0093689,-0.00888062,-0.00967407,-0.0102844,-0.010437,-0.0107727,-0.0112305,-0.0112305,-0.0118408,-0.0119934,-0.0126343,-0.0123291,-0.0113831,-0.0115356,-0.0105896,-0.0107727,-0.00982666,-0.00952148,-0.00888062,-0.00872803,-0.00857544,-0.00717163,-0.00762939,-0.00637817,-0.00686646,-0.00671387,-0.00717163,-0.00778198,-0.00778198,-0.00778198,-0.00811768,-0.00842285,-0.00842285,-0.00888062,-0.00811768,-0.00811768,-0.00747681,-0.00622559,-0.006073,-0.00482178,-0.00405884,-0.00326538,-0.00219727,-0.00170898,-0.000610352,-0.000793457,0.000152588,0.000457764,0.000610352,0.000610352,0.000793457,0.000946045,0.00125122,0.00140381,0.00201416,0.00219727,0.00311279,0.00360107,0.00466919,0.00592041,0.00637817,0.00778198,0.00872803,0.00967407,0.0107727,0.0112305,0.0121765,0.0121765,0.0132446,0.0129395,0.013092,0.013092,0.0127869,0.0121765,0.0119934,0.0112305,0.0110779,0.0105896,0.0102844,0.0102844,0.00967407,0.0102844,0.00982666,0.0102844,0.0107727,0.0113831,0.0113831,0.0119934,0.0126343,0.0121765,0.0129395,0.0126343,0.0127869,0.0126343,0.0124817,0.0119934,0.0116882,0.0113831,0.0112305,0.0107727,0.0109253,0.0107727,0.0105896,0.0107727,0.0105896,0.0110779,0.0107727,0.0115356,0.0109253,0.0112305,0.0113831,0.0112305,0.0110779,0.0107727,0.00997925,0.00997925,0.00888062,0.00872803,0.00762939,0.00732422,0.00637817,0.00576782,0.00546265,0.00466919,0.00436401,0.0045166,0.00375366,0.00421143,0.00341797,0.00421143,0.00341797,0.00375366,0.00360107,0.00375366,0.00311279,0.00311279,0.00234985,0.00186157,0.00170898,0.00125122,0.00360107,0.00546265,0.00762939,0.00967407,0.00918579,0.00421143,0.0015564,0.00109863,0.00234985,0.0015564,-0.000457764,-0.000457764,0.000152588,0.000793457,-0.000610352,-0.00125122,-0.000610352,0.000152588,0.000610352,0.00109863,0.000152588,-0.00186157,-0.00201416,-0.00201416,-0.00201416,-0.00201416,-0.00265503,-0.00265503,-0.00421143,-0.00360107,-0.00421143,-0.0045166,-0.00375366,-0.00280762,-0.00250244,-0.00219727,-0.00296021,-0.00186157,-0.00140381,-0.000610352,0.000457764,0.00234985,0.00234985,0.00311279,0.00250244,0.00109863,-0.000152588,-0.000793457,-0.00219727,-0.00341797,-0.00341797,-0.0045166,-0.00497437,-0.00546265,-0.00515747,-0.00561523,-0.00576782,-0.00576782,-0.00497437,-0.00421143,-0.00186157,0,0.00296021,0.00390625,0.00576782,0.00637817,0.00466919,0.00390625,0.00140381,-0.000457764,-0.000793457,-0.00125122,-0.00341797,-0.00561523,-0.0090332,-0.0127869,-0.0157471,-0.0171509,-0.0185547,-0.0202637,-0.0218201,-0.0224609,-0.0227661,-0.0233765,-0.0232239,-0.0232239,-0.0232239,-0.0229187,-0.0254211,-0.0257263,-0.0260315,-0.0263367,-0.0266724,-0.0274353,-0.0286865,-0.0291443,-0.0300903,-0.0314941,-0.0330505,-0.0335083,-0.0339966,-0.0335083,-0.0335083,-0.0330505,-0.0324402,-0.0324402,-0.0332031,-0.0325928,-0.0303955,-0.0272827,-0.0246277,-0.0199585,-0.0179443,-0.0143433,-0.0090332,-0.00497437,-0.00280762,-0.00109863,0,0.00201416,0.00341797,0.0045166,0.00341797,0.00170898,-0.000305176,-0.000946045,-0.00201416,-0.00375366,-0.00482178,-0.00436401,-0.0045166,-0.00341797,-0.00326538,-0.00219727,-0.0015564,0.000457764,0.00360107,0.00622559,0.00747681,0.00827026,0.00796509,0.00747681,0.00747681,0.00747681,0.00827026,0.00888062,0.00982666,0.00982666,0.0101318,0.0115356,0.0129395,0.0155945,0.0176086,0.0199585,0.0227661,0.0272827,0.0296326,0.0324402,0.0350952,0.037262,0.0397644,0.0410156,0.0419312,0.041626,0.0407104,0.0391235,0.0371094,0.0343018,0.0316467,0.0282288,0.0249329,0.0221558,0.0193481,0.0169983,0.0152893,0.0140381,0.0140381,0.0137329,0.0129395,0.0140381,0.0133972,0.0140381,0.0135803,0.0132446,0.0132446,0.0126343,0.0110779,0.010437,0.00918579,0.00796509,0.00747681,0.00732422,0.00671387,0.00732422,0.00747681,0.00811768,0.00888062,0.00952148,0.010437,0.0118408,0.013092,0.0133972,0.0137329,0.0133972,0.013092,0.0119934,0.0107727,0.00811768,0.00576782,0.00280762,-0.000152588,-0.00219727,-0.00515747,-0.00622559,-0.00842285,-0.00967407,-0.0107727,-0.0102844,-0.00967407,-0.00888062,-0.00747681,-0.006073,-0.00421143,-0.00265503,-0.000793457,0.00140381,0.00186157,0.00250244,0.00201416,0.00201416,0.00186157,0.000946045,0,-0.00170898,-0.00201416,-0.00234985,-0.0015564,-0.00109863,-0.000457764,-0.000457764,0.000793457,0.00234985,0.00360107,0.00482178,0.00561523,0.00531006,0.00531006,0.00531006,0.00421143,0.00421143,0.00375366,0.00280762,0.00109863,-0.00109863,-0.00219727,-0.00311279,-0.00360107,-0.0045166,-0.00482178,-0.00561523,-0.00436401,-0.00405884,-0.00296021,-0.00360107,-0.00421143,-0.00360107,-0.00311279,-0.00250244,-0.00234985,-0.00280762,-0.00341797,-0.00390625,-0.00622559,-0.00796509,-0.00918579,-0.0102844,-0.0124817,-0.0144958,-0.0155945,-0.0157471,-0.0173035,-0.0195007,-0.0219727,-0.0232239,-0.0232239,-0.0233765,-0.0241699,-0.0249329,-0.0254211,-0.0274353,-0.0299377,-0.0303955,-0.0302429,-0.0300903,-0.0324402,-0.0363159,-0.0403748,-0.042572,-0.0434875,-0.0450745,-0.0481873,-0.0509949,-0.0541077,-0.0572205,-0.059082,-0.0598755,-0.0612793,-0.0622253,-0.0612793,-0.0592651,-0.0556641,-0.0519104,-0.0498962,-0.0484924,-0.0461426,-0.0397644,-0.0316467,-0.0218201,-0.0119934,-0.00436401,0.00375366,0.0119934,0.0205688,0.0279236,0.0332031,0.0369568,0.0391235,0.0383606,0.0361633,0.0325928,0.0280762,0.0237122,0.0202637,0.0168457,0.0158997,0.0143433,0.0151367,0.0155945,0.0177612,0.0209045,0.0247803,0.0272827,0.0296326,0.0316467,0.0317993,0.0319519,0.0308838,0.0288391,0.026825,0.0240173,0.0216675,0.0212097,0.0201111,0.0215149,0.0218201,0.0233765,0.0257263,0.0296326,0.0344543,0.0397644,0.0448914,0.0494385,0.0541077,0.0586243,0.0631409,0.0662537,0.0682983,0.0684509,0.0670471,0.0643921,0.0601807,0.0556641,0.0494385,0.042572,0.0347595,0.0269775,0.0196533,0.0135803,0.00872803,0.00515747,0.00265503,0.000946045,-0.00109863,-0.00186157,-0.00250244,-0.00296021,-0.00421143,-0.00561523,-0.00811768,-0.0116882,-0.0144958,-0.0171509,-0.0199585,-0.0227661,-0.0244751,-0.0263367,-0.0277405,-0.0269775,-0.0252686,-0.0221558,-0.019165,-0.0157471,-0.0124817,-0.0090332,-0.00515747,-0.0015564,0.00234985,0.00482178,0.00671387,0.00747681,0.00717163,0.00622559,0.00531006,0.00360107,0.0015564,-0.000793457,-0.00421143,-0.00717163,-0.0090332,-0.0105896,-0.0107727,-0.0121765,-0.0132446,-0.0146484,-0.0146484,-0.0135803,-0.0123291,-0.0109253,-0.0107727,-0.00997925,-0.00982666,-0.00888062,-0.00656128,-0.00436401,-0.00219727,0.000152588,0.00170898,0.00405884,0.00747681,0.0113831,0.0151367,0.0182495,0.0202637,0.0219727,0.0238647,0.0258789,0.0274353,0.0288391,0.0288391,0.0275879,0.0261841,0.0258789,0.0261841,0.0263367,0.0258789,0.0254211,0.0227661,0.0201111,0.0166931,0.0138855,0.00997925,0.00732422,0.00201416,-0.00234985,-0.00686646,-0.0110779,-0.0143433,-0.0168457,-0.0188599,-0.0205688,-0.0223083,-0.0229187,-0.0235291,-0.0244751,-0.0252686,-0.026825,-0.0289917,-0.0297852,-0.0296326,-0.02948,-0.0307312,-0.0321045,-0.0352478,-0.0380554,-0.041626,-0.0448914,-0.047699,-0.0505066,-0.0525513,-0.0553589,-0.0592651,-0.0640869,-0.0681458,-0.0722046,-0.0756226,-0.0787354,-0.084198,-0.0884094,-0.0926208,-0.0957336,-0.0980835,-0.10025,-0.101807,-0.104767,-0.106506,-0.106964,-0.10556,-0.101959,-0.0960388,-0.0884094,-0.0787354,-0.0682983,-0.0558167,-0.0413208,-0.0261841,-0.0093689,0.00576782,0.0201111,0.0324402,0.0439758,0.0533142,0.0598755,0.0628357,0.0618896,0.0597229,0.0558167,0.0522461,0.0494385,0.0467834,0.0462952,0.0462952,0.0478821,0.0511475,0.0564575,0.0618896,0.0686035,0.0751648,0.0796814,0.0821838,0.0820007,0.0805969,0.077179,0.0732727,0.0676575,0.0612793,0.0544128,0.0489502,0.0450745,0.0431824,0.0439758,0.0461426,0.048645,0.0533142,0.0589294,0.0665894,0.0745239,0.08078,0.085907,0.0898132,0.0921631,0.0937195,0.092926,0.0916748,0.087616,0.0823364,0.0751648,0.0661011,0.0567627,0.046936,0.0375671,0.0285339,0.0195007,0.0110779,0.00341797,-0.00219727,-0.00671387,-0.0105896,-0.0138855,-0.0177612,-0.0219727,-0.0258789,-0.0300903,-0.0352478,-0.0402222,-0.04599,-0.0534668,-0.0611267,-0.0690613,-0.0748291,-0.0790405,-0.0818481,-0.0829468,-0.0830994,-0.08078,-0.0762329,-0.0706177,-0.0626831,-0.0556641,-0.0475464,-0.0400696,-0.0325928,-0.0258789,-0.0195007,-0.014801,-0.00982666,-0.00671387,-0.00390625,-0.00234985,-0.000457764,0.000152588,0.000793457,0.000946045,0,-0.000457764,0,0,0.000305176,0.000793457,0.00250244,0.00405884,0.00762939,0.0105896,0.014801,0.0179443,0.0218201,0.0255737,0.0291443,0.0324402,0.0350952,0.0368042,0.0375671,0.0380554,0.038208,0.0389709,0.0400696,0.0414734,0.0431824,0.0441284,0.0461426,0.048645,0.0517578,0.0548706,0.0580139,0.0587769,0.0606384,0.0604858,0.0609741,0.0598755,0.057373,0.0542603,0.0489502,0.0427246,0.0360107,0.0280762,0.0212097,0.0124817,0.00421143,-0.0045166,-0.0135803,-0.0213623,-0.0283813,-0.0341492,-0.0397644,-0.0441284,-0.048645,-0.0519104,-0.054718,-0.0569153,-0.059082,-0.0617371,-0.0645447,-0.0692139,-0.0729675,-0.078125,-0.0830994,-0.0887146,-0.0949707,-0.101654,-0.107422,-0.112732,-0.117249,-0.121155,-0.12381,-0.12677,-0.129578,-0.131897,-0.133148,-0.134399,-0.134399,-0.134399,-0.13504,-0.135803,-0.136902,-0.135956,-0.131744,-0.125671,-0.116791,-0.106171,-0.0932312,-0.0782776,-0.0601807,-0.0405273,-0.0193481,0.00201416,0.0201111,0.0371094,0.0516052,0.0631409,0.0712585,0.0756226,0.0757751,0.0728149,0.0684509,0.0632935,0.0604858,0.059082,0.0598755,0.0629883,0.0676575,0.0739136,0.082489,0.0921631,0.102142,0.111023,0.117889,0.121613,0.122253,0.119598,0.115234,0.108826,0.101196,0.0921631,0.083252,0.0767212,0.0728149,0.0718689,0.073761,0.0765686,0.0804443,0.0843506,0.0910645,0.0966797,0.103058,0.107269,0.110382,0.110382,0.109131,0.105103,0.0997925,0.0930786,0.0848083,0.07547,0.0642395,0.0525513,0.0397644,0.0277405,0.0162048,0.0045166,-0.00576782,-0.0160522,-0.0233765,-0.0308838,-0.0347595,-0.0386658,-0.0419312,-0.0453796,-0.0494385,-0.0536499,-0.0592651,-0.065033,-0.0725098,-0.0805969,-0.0895081,-0.0996399,-0.10791,-0.114288,-0.118347,-0.120056,-0.119293,-0.116943,-0.111176,-0.103699,-0.0932312,-0.0829468,-0.0720215,-0.0623779,-0.0538025,-0.0467834,-0.0402222,-0.0350952,-0.0302429,-0.0257263,-0.0223083,-0.019165,-0.0162048,-0.0132446,-0.00982666,-0.00546265,-0.0015564,0.00296021,0.00762939,0.0133972,0.0184021,0.0237122,0.0279236,0.0321045,0.037262,0.0424194,0.047699,0.0528564,0.0578613,0.0629883,0.0675049,0.071106,0.0736084,0.0750122,0.0757751,0.0759277,0.0759277,0.07547,0.0751648,0.0751648,0.0751648,0.07547,0.0760803,0.076416,0.0767212,0.0773315,0.0773315,0.0778198,0.0770264,0.0750122,0.0722046,0.0671997,0.0608215,0.0542603,0.0462952,0.0385132,0.0297852,0.0205688,0.0123291,0.00360107,-0.00482178,-0.0135803,-0.0216675,-0.0299377,-0.0368042,-0.0439758,-0.0492859,-0.054718,-0.0594177,-0.0643921,-0.0684509,-0.0736084,-0.078125,-0.0829468,-0.0874634,-0.0924683,-0.0985413,-0.104767,-0.112274,-0.120056,-0.127075,-0.134857,-0.141571,-0.14859,-0.1539,-0.158875,-0.163086,-0.164978,-0.16745,-0.167786,-0.168243,-0.169189,-0.169006,-0.168091,-0.163727,-0.157013,-0.146576,-0.134247,-0.119598,-0.103363,-0.0843506,-0.0628357,-0.0385132,-0.0129395,0.0109253,0.0321045,0.0497437,0.0643921,0.07547,0.0818481,0.0852966,0.0826416,0.0784302,0.0728149,0.0690613,0.0684509,0.069397,0.0750122,0.0812378,0.0899658,0.100891,0.112274,0.12442,0.135345,0.144226,0.149689,0.150452,0.146729,0.139709,0.130188,0.118805,0.106659,0.0947876,0.0845032,0.0779724,0.0740662,0.0753174,0.0774841,0.0820007,0.0873108,0.0935669,0.0996399,0.106812,0.111786,0.11554,0.115997,0.113831,0.108368,0.101807,0.0935669,0.0849915,0.0750122,0.0628357,0.0498962,0.0357056,0.0218201,0.00918579,-0.00296021,-0.0138855,-0.0241699,-0.0333557,-0.040863,-0.0462952,-0.0502014,-0.0539551,-0.0581665,-0.0631409,-0.0681458,-0.0746765,-0.0810852,-0.0891724,-0.0986938,-0.109314,-0.120514,-0.13208,-0.140472,-0.147339,-0.150452,-0.150452,-0.147644,-0.141724,-0.132538,-0.120697,-0.107422,-0.0941772,-0.0805969,-0.069397,-0.0587769,-0.0505066,-0.042572,-0.0369568,-0.0307312,-0.0257263,-0.0201111,-0.0169983,-0.0118408,-0.00857544,-0.00265503,0.00405884,0.0121765,0.0201111,0.0277405,0.0354004,0.0413208,0.047699,0.0534668,0.059082,0.0643921,0.0698547,0.0742188,0.0791931,0.0835876,0.088562,0.0927734,0.0955811,0.0975952,0.09729,0.0971375,0.0958862,0.094635,0.092926,0.091217,0.0895081,0.088562,0.0873108,0.0871582,0.086853,0.0863953,0.085907,0.0848083,0.0840454,0.0812378,0.0778198,0.0723572,0.0648499,0.0566101,0.0472412,0.037262,0.0265198,0.0157471,0.00482178,-0.00561523,-0.0158997,-0.0247803,-0.0335083,-0.0413208,-0.0484924,-0.0541077,-0.0606384,-0.0659485,-0.0718689,-0.0773315,-0.0827942,-0.0882568,-0.0924683,-0.0979309,-0.102753,-0.108826,-0.115082,-0.121918,-0.128632,-0.135498,-0.14267,-0.149841,-0.157318,-0.16449,-0.169952,-0.17511,-0.178986,-0.181946,-0.184448,-0.186157,-0.187561,-0.186157,-0.181793,-0.174011,-0.161835,-0.147186,-0.130493,-0.112885,-0.0930786,-0.0714111,-0.0462952,-0.0216675,0.00326538,0.0249329,0.043335,0.0586243,0.069397,0.0773315,0.0809326,0.0810852,0.0787354,0.0753174,0.0729675,0.0731201,0.0774841,0.0849915,0.0951233,0.106812,0.119446,0.133301,0.146881,0.160919,0.171051,0.17807,0.179626,0.176819,0.169952,0.158264,0.144226,0.128326,0.113342,0.0985413,0.087616,0.079834,0.0767212,0.0778198,0.0818481,0.0873108,0.0933838,0.0988464,0.10556,0.110535,0.114746,0.114899,0.111481,0.104309,0.0955811,0.0843506,0.0728149,0.0600281,0.046936,0.0327454,0.0188599,0.00561523,-0.00637817,-0.0162048,-0.0254211,-0.0336914,-0.040863,-0.0470886,-0.0513,-0.0541077,-0.0575256,-0.0615845,-0.0664368,-0.0732727,-0.0796814,-0.0874634,-0.0958862,-0.106171,-0.118042,-0.129883,-0.141724,-0.152649,-0.160767,-0.165436,-0.167297,-0.16449,-0.159515,-0.150787,-0.139709,-0.125214,-0.111023,-0.0954285,-0.0823364,-0.069397,-0.0597229,-0.0502014,-0.043335,-0.0366516,-0.031189,-0.0260315,-0.0209045,-0.0154419,-0.00967407,-0.00250244,0.00637817,0.0169983,0.0286865,0.0403748,0.0528564,0.0639343,0.073761,0.0813904,0.0877686,0.0933838,0.098999,0.103699,0.108368,0.111176,0.114136,0.115845,0.117889,0.118652,0.117889,0.11554,0.112427,0.108215,0.104156,0.10025,0.0957336,0.0907593,0.0854492,0.08078,0.0765686,0.0745239,0.0722046,0.0706177,0.0675049,0.0648499,0.0604858,0.0558167,0.0500488,0.0417786,0.0324402,0.0213623,0.00967407,-0.00201416,-0.0124817,-0.0232239,-0.0324402,-0.0407104,-0.0483398,-0.0555115,-0.0606384,-0.0659485,-0.0695496,-0.0739136,-0.0782776,-0.0835876,-0.0901184,-0.0965271,-0.10321,-0.109772,-0.116791,-0.123016,-0.130981,-0.13736,-0.144531,-0.149994,-0.155914,-0.161224,-0.168243,-0.174774,-0.181488,-0.186951,-0.192108,-0.196777,-0.201294,-0.203949,-0.203491,-0.195831,-0.182739,-0.165131,-0.144836,-0.124268,-0.101501,-0.0770264,-0.0502014,-0.0221558,0.0045166,0.0263367,0.0434875,0.0559692,0.0651855,0.0726624,0.0774841,0.0801392,0.0802917,0.0796814,0.0820007,0.0887146,0.0993347,0.111633,0.126282,0.140167,0.155457,0.170563,0.184753,0.196625,0.203949,0.205963,0.202698,0.195526,0.184601,0.170746,0.1539,0.136749,0.119293,0.103851,0.0916748,0.0835876,0.0796814,0.0799866,0.0827942,0.0862122,0.0895081,0.0921631,0.0951233,0.0979309,0.098999,0.0971375,0.0907593,0.0810852,0.0698547,0.0581665,0.0466309,0.0350952,0.0243225,0.0121765,0.000457764,-0.00967407,-0.0182495,-0.0233765,-0.0286865,-0.0330505,-0.038208,-0.042572,-0.04599,-0.0480347,-0.0514526,-0.0564575,-0.0637817,-0.0734253,-0.0821838,-0.0915222,-0.101959,-0.113831,-0.127228,-0.140656,-0.153259,-0.162933,-0.169647,-0.17276,-0.173065,-0.1698,-0.163879,-0.155151,-0.143433,-0.131134,-0.117249,-0.103699,-0.0923157,-0.0813904,-0.0726624,-0.0651855,-0.0592651,-0.0533142,-0.0472412,-0.0402222,-0.0319519,-0.0218201,-0.00967407,0.00326538,0.0187073,0.0335083,0.0502014,0.0662537,0.0829468,0.0974426,0.110229,0.119446,0.124725,0.128174,0.130188,0.132385,0.134857,0.137054,0.138306,0.139069,0.138153,0.13736,0.135498,0.133789,0.130035,0.124573,0.117249,0.108978,0.100098,0.0901184,0.0801392,0.0709534,0.0625305,0.0556641,0.0491028,0.0441284,0.0383606,0.0333557,0.0279236,0.0233765,0.0177612,0.0105896,0.00250244,-0.00701904,-0.0171509,-0.0274353,-0.0377197,-0.04599,-0.0528564,-0.0580139,-0.0623779,-0.0665894,-0.071106,-0.07547,-0.0787354,-0.0821838,-0.085144,-0.0899658,-0.0958862,-0.103058,-0.111481,-0.120056,-0.128479,-0.135651,-0.14267,-0.149689,-0.156067,-0.162781,-0.169006,-0.174622,-0.18103,-0.187256,-0.19397,-0.200195,-0.205658,-0.209412,-0.209076,-0.204407,-0.194427,-0.178833,-0.160126,-0.139069,-0.115845,-0.0898132,-0.0611267,-0.0314941,-0.0045166,0.0177612,0.0357056,0.047699,0.0580139,0.0648499,0.0701599,0.0728149,0.0748291,0.0767212,0.083252,0.0941772,0.109314,0.12677,0.144073,0.163086,0.181335,0.200195,0.216095,0.227173,0.231079,0.228271,0.2211,0.210327,0.196777,0.180389,0.161682,0.142822,0.12677,0.113831,0.104309,0.098999,0.096344,0.0960388,0.0971375,0.0975952,0.0983887,0.0965271,0.0944824,0.0909119,0.0848083,0.0759277,0.0640869,0.050354,0.0368042,0.0237122,0.0126343,0.00170898,-0.00762939,-0.0174561,-0.0261841,-0.0332031,-0.037262,-0.0394592,-0.039917,-0.0414734,-0.043335,-0.0447388,-0.0453796,-0.046936,-0.0494385,-0.0545654,-0.0622253,-0.0704651,-0.0790405,-0.0881042,-0.0985413,-0.110718,-0.123016,-0.135345,-0.144531,-0.151703,-0.154663,-0.155151,-0.153107,-0.14859,-0.142822,-0.13504,-0.125977,-0.116486,-0.107117,-0.0988464,-0.0910645,-0.0843506,-0.0788879,-0.0739136,-0.0698547,-0.0645447,-0.0575256,-0.0489502,-0.0383606,-0.0257263,-0.0101318,0.00671387,0.0254211,0.0438232,0.0628357,0.0801392,0.0980835,0.11319,0.125977,0.134552,0.140472,0.144531,0.148285,0.150452,0.152954,0.153595,0.15451,0.1539,0.153107,0.152344,0.151093,0.148132,0.143616,0.136749,0.128326,0.117706,0.106964,0.0943298,0.0823364,0.0689087,0.0570679,0.04599,0.0352478,0.025116,0.0151367,0.006073,-0.00201416,-0.00888062,-0.0162048,-0.0233765,-0.0313416,-0.0403748,-0.0491028,-0.0569153,-0.0645447,-0.0703125,-0.0753174,-0.0796814,-0.083252,-0.0871582,-0.0899658,-0.0927734,-0.0940247,-0.0957336,-0.0979309,-0.101654,-0.106171,-0.112427,-0.118805,-0.125061,-0.132385,-0.139557,-0.147034,-0.154358,-0.161072,-0.16745,-0.173218,-0.178986,-0.185699,-0.192719,-0.198486,-0.201599,-0.19928,-0.193329,-0.18335,-0.170746,-0.155457,-0.138458,-0.116486,-0.0926208,-0.0662537,-0.0405273,-0.0171509,0.00186157,0.0176086,0.0291443,0.0386658,0.0461426,0.0516052,0.0561218,0.0606384,0.0679932,0.0784302,0.0935669,0.110718,0.129425,0.149994,0.171204,0.191772,0.210022,0.22406,0.231842,0.234039,0.230927,0.223267,0.212982,0.199097,0.18335,0.167786,0.152008,0.138916,0.128937,0.121613,0.117249,0.114288,0.111938,0.108978,0.104309,0.0988464,0.0923157,0.085144,0.076416,0.0651855,0.0514526,0.0363159,0.0223083,0.00888062,-0.00170898,-0.0124817,-0.0218201,-0.0310364,-0.0396118,-0.047699,-0.0552063,-0.0595703,-0.0632935,-0.0646973,-0.065033,-0.0646973,-0.0631409,-0.0615845,-0.0612793,-0.0622253,-0.065033,-0.0692139,-0.0750122,-0.081543,-0.0895081,-0.0982361,-0.107727,-0.117249,-0.12442,-0.129425,-0.130981,-0.128784,-0.124878,-0.11911,-0.113037,-0.105103,-0.0974426,-0.0898132,-0.0843506,-0.0799866,-0.0774841,-0.0748291,-0.0731201,-0.071106,-0.0676575,-0.0632935,-0.0558167,-0.0461426,-0.0336914,-0.0193481,-0.00360107,0.0138855,0.0303955,0.0464783,0.0601807,0.0739136,0.0865479,0.0991516,0.110718,0.119751,0.127228,0.13269,0.139252,0.146881,0.155457,0.163574,0.169006,0.171661,0.171967,0.170898,0.170258,0.16684,0.160278,0.149536,0.135498,0.12085,0.106018,0.0923157,0.0793762,0.0648499,0.0513,0.0389709,0.0280762,0.0180969,0.00811768,-0.00265503,-0.0140381,-0.0255737,-0.0350952,-0.0447388,-0.0538025,-0.0642395,-0.0740662,-0.0834045,-0.0898132,-0.0935669,-0.0954285,-0.0968323,-0.0996399,-0.101959,-0.103851,-0.105713,-0.106964,-0.10791,-0.108826,-0.110229,-0.113037,-0.117249,-0.122101,-0.126465,-0.130829,-0.134857,-0.139557,-0.145782,-0.152649,-0.159363,-0.165741,-0.172607,-0.179626,-0.187103,-0.192108,-0.193176,-0.186798,-0.174469,-0.157623,-0.138306,-0.11911,-0.0980835,-0.073761,-0.0458374,-0.0198059,0.00201416,0.0166931,0.0247803,0.0305481,0.0349121,0.0388184,0.0410156,0.0434875,0.0483398,0.0578613,0.0728149,0.0933838,0.118195,0.144226,0.169006,0.192719,0.210175,0.225006,0.231689,0.231232,0.223755,0.211731,0.197693,0.185699,0.173706,0.162933,0.153412,0.147339,0.143433,0.142517,0.141571,0.140167,0.136261,0.129425,0.117706,0.101196,0.0813904,0.0618896,0.0436707,0.0291443,0.014801,0.00341797,-0.00686646,-0.0133972,-0.0169983,-0.0198059,-0.0213623,-0.0263367,-0.0341492,-0.04599,-0.0601807,-0.0765686,-0.0899658,-0.101807,-0.110718,-0.115234,-0.115845,-0.111328,-0.103058,-0.0932312,-0.0838928,-0.0765686,-0.0712585,-0.0689087,-0.0704651,-0.0768738,-0.0871582,-0.100098,-0.113678,-0.124725,-0.130676,-0.130829,-0.125061,-0.113525,-0.0996399,-0.083252,-0.0665894,-0.0505066,-0.0375671,-0.0286865,-0.0252686,-0.0263367,-0.0305481,-0.0352478,-0.039917,-0.0417786,-0.0394592,-0.0321045,-0.0202637,-0.00341797,0.0158997,0.0368042,0.0587769,0.0785828,0.0955811,0.107422,0.115692,0.120056,0.122101,0.123322,0.124725,0.125366,0.129425,0.135498,0.143768,0.154358,0.165131,0.17337,0.178375,0.179779,0.177124,0.171509,0.161072,0.145477,0.126465,0.105103,0.0846558,0.0662537,0.0494385,0.0347595,0.0218201,0.0118408,0.0045166,-0.00219727,-0.00967407,-0.019165,-0.0303955,-0.0436707,-0.0570679,-0.0712585,-0.085907,-0.0996399,-0.111633,-0.120056,-0.125061,-0.126282,-0.124115,-0.119904,-0.114136,-0.109467,-0.10495,-0.103546,-0.103851,-0.107117,-0.111786,-0.116486,-0.122406,-0.128174,-0.133636,-0.139252,-0.141876,-0.143127,-0.14267,-0.142822,-0.143768,-0.145477,-0.147827,-0.152191,-0.159668,-0.166199,-0.170746,-0.169006,-0.159515,-0.143433,-0.123657,-0.102753,-0.0795288,-0.0534668,-0.0237122,0.00515747,0.0300903,0.0478821,0.0567627,0.059082,0.0584717,0.0572205,0.0559692,0.0566101,0.0620422,0.0731201,0.0913696,0.115082,0.144073,0.172607,0.2005,0.225464,0.242462,0.249329,0.246185,0.233582,0.214081,0.19101,0.168701,0.148743,0.134247,0.125061,0.122101,0.12381,0.128937,0.134552,0.138763,0.138763,0.134094,0.121918,0.102142,0.0742188,0.0407104,0.00842285,-0.0184021,-0.0383606,-0.0516052,-0.0595703,-0.0623779,-0.0606384,-0.0550537,-0.0489502,-0.0452271,-0.0462952,-0.0536499,-0.0668945,-0.0860596,-0.108368,-0.130341,-0.146881,-0.157318,-0.158417,-0.152191,-0.138,-0.118958,-0.0977478,-0.0776367,-0.0611267,-0.0514526,-0.0475464,-0.0506592,-0.0603333,-0.0748291,-0.0909119,-0.105255,-0.114746,-0.116486,-0.109619,-0.0943298,-0.0729675,-0.0478821,-0.0238647,-0.00234985,0.0141907,0.0240173,0.0265198,0.0227661,0.0121765,-0.000610352,-0.0137329,-0.0229187,-0.025116,-0.0184021,-0.00341797,0.0190125,0.0458374,0.0728149,0.0968323,0.117249,0.132538,0.142365,0.14502,0.140472,0.130829,0.119446,0.110535,0.108368,0.11319,0.122711,0.136261,0.150635,0.164337,0.176025,0.18335,0.184143,0.176514,0.160126,0.137848,0.110718,0.0845032,0.0578613,0.0357056,0.0171509,0.00405884,-0.00436401,-0.00997925,-0.0138855,-0.0190125,-0.0258789,-0.0350952,-0.0481873,-0.0642395,-0.0830994,-0.102142,-0.120361,-0.134399,-0.144684,-0.148895,-0.14859,-0.142059,-0.133942,-0.122864,-0.113342,-0.104767,-0.0996399,-0.0971375,-0.0982361,-0.101196,-0.106171,-0.11319,-0.118958,-0.122101,-0.122406,-0.119904,-0.115387,-0.111481,-0.108521,-0.10791,-0.109131,-0.114136,-0.121155,-0.132385,-0.144379,-0.157166,-0.165588,-0.167603,-0.157959,-0.137665,-0.108215,-0.0742188,-0.0405273,-0.00778198,0.0238647,0.0531616,0.0753174,0.088562,0.0882568,0.0784302,0.065033,0.054718,0.0511475,0.0544128,0.0659485,0.085907,0.113983,0.148285,0.186493,0.222809,0.250092,0.266479,0.27005,0.259918,0.239197,0.210175,0.177277,0.14563,0.118652,0.101196,0.0944824,0.0974426,0.105103,0.115692,0.124878,0.130341,0.128632,0.11615,0.0938721,0.0620422,0.0247803,-0.0141907,-0.0505066,-0.0834045,-0.104767,-0.114746,-0.11319,-0.103546,-0.0887146,-0.0748291,-0.0648499,-0.0597229,-0.0608215,-0.0701599,-0.0870056,-0.110382,-0.134857,-0.157959,-0.175415,-0.182587,-0.177917,-0.163879,-0.139404,-0.111328,-0.0802917,-0.0531616,-0.0319519,-0.0185547,-0.014801,-0.0196533,-0.0303955,-0.0453796,-0.0609741,-0.0728149,-0.0799866,-0.0778198,-0.0678406,-0.050354,-0.0263367,-0.0015564,0.0232239,0.0430298,0.0555115,0.0604858,0.0564575,0.0481873,0.0360107,0.0227661,0.0124817,0.00671387,0.00701904,0.0152893,0.0308838,0.0513,0.073761,0.0961914,0.114288,0.125671,0.129578,0.126617,0.120697,0.114899,0.110229,0.107574,0.106171,0.106964,0.111786,0.121765,0.135956,0.151398,0.161072,0.162323,0.154999,0.14032,0.122711,0.102905,0.0823364,0.0592651,0.0354004,0.0151367,0.00109863,-0.00732422,-0.0121765,-0.0168457,-0.0238647,-0.0332031,-0.0450745,-0.0580139,-0.0751648,-0.094635,-0.114441,-0.131287,-0.142517,-0.14798,-0.147644,-0.144073,-0.137207,-0.127869,-0.117554,-0.106812,-0.0991516,-0.0957336,-0.0955811,-0.0986938,-0.102295,-0.104614,-0.105103,-0.103058,-0.0983887,-0.0915222,-0.0827942,-0.0743713,-0.0671997,-0.0631409,-0.0643921,-0.0722046,-0.085144,-0.101501,-0.11911,-0.136261,-0.150635,-0.16153,-0.165588,-0.159515,-0.139252,-0.106506,-0.0673523,-0.0269775,0.00701904,0.0346069,0.057373,0.0751648,0.0856018,0.086853,0.0776367,0.0617371,0.0467834,0.0397644,0.0436707,0.0569153,0.079834,0.111633,0.148285,0.188507,0.226562,0.256012,0.272858,0.273804,0.260712,0.235596,0.201294,0.164032,0.127869,0.0977478,0.0784302,0.0714111,0.07547,0.0877686,0.101196,0.111786,0.115845,0.11087,0.0952759,0.0682983,0.031189,-0.0109253,-0.0548706,-0.0938721,-0.12442,-0.14563,-0.153259,-0.149994,-0.137512,-0.120514,-0.101807,-0.0874634,-0.0788879,-0.0787354,-0.085907,-0.0999451,-0.118042,-0.136902,-0.154205,-0.166534,-0.171967,-0.16684,-0.151245,-0.128174,-0.100098,-0.0701599,-0.0427246,-0.0196533,-0.00234985,0.00778198,0.0115356,0.00872803,0.00326538,-0.0045166,-0.0121765,-0.0179443,-0.0184021,-0.014801,-0.00515747,0.00762939,0.0224609,0.038208,0.0519104,0.0625305,0.0684509,0.0697021,0.0668945,0.0608215,0.0541077,0.0470886,0.0411682,0.0388184,0.0385132,0.043335,0.0500488,0.0595703,0.0709534,0.0826416,0.0918274,0.0986938,0.101349,0.101959,0.100403,0.0997925,0.101044,0.102753,0.105255,0.108215,0.110382,0.113342,0.116302,0.119293,0.1185,0.11319,0.101501,0.0862122,0.0686035,0.0517578,0.0358582,0.0210571,0.00637817,-0.00637817,-0.0176086,-0.0263367,-0.0347595,-0.0428772,-0.0539551,-0.0671997,-0.0830994,-0.0999451,-0.116302,-0.131592,-0.142059,-0.14859,-0.148285,-0.143433,-0.133789,-0.121918,-0.110535,-0.0991516,-0.0907593,-0.0852966,-0.0834045,-0.0854492,-0.0891724,-0.092926,-0.0940247,-0.0913696,-0.0854492,-0.0773315,-0.0679932,-0.0576782,-0.0500488,-0.044281,-0.0438232,-0.0506592,-0.0645447,-0.0834045,-0.103058,-0.119293,-0.130341,-0.137512,-0.139862,-0.133453,-0.116486,-0.0849915,-0.0447388,-0.00341797,0.0307312,0.0533142,0.0682983,0.0793762,0.085907,0.0888672,0.0821838,0.0670471,0.0506592,0.0434875,0.0494385,0.0675049,0.0957336,0.125977,0.158112,0.190369,0.222656,0.247925,0.260559,0.255096,0.233734,0.200348,0.162476,0.125671,0.0930786,0.0684509,0.0511475,0.04599,0.0519104,0.0661011,0.0834045,0.0947876,0.0975952,0.0871582,0.0662537,0.0350952,-0.00515747,-0.0497437,-0.0958862,-0.133942,-0.162476,-0.177124,-0.178986,-0.170258,-0.154816,-0.135803,-0.114441,-0.0979309,-0.0856018,-0.0830994,-0.0881042,-0.101807,-0.118347,-0.134399,-0.147186,-0.153748,-0.154358,-0.146576,-0.131134,-0.107727,-0.079834,-0.0500488,-0.0221558,0.000946045,0.0202637,0.0335083,0.041626,0.0441284,0.0424194,0.037262,0.0313416,0.0255737,0.0227661,0.0237122,0.0277405,0.0344543,0.0444336,0.0556641,0.0681458,0.079834,0.0890198,0.0940247,0.0941772,0.0891724,0.0821838,0.0725098,0.0623779,0.0522461,0.0448914,0.0389709,0.0383606,0.0422668,0.0516052,0.0640869,0.0773315,0.0888672,0.0960388,0.098999,0.0982361,0.0951233,0.0907593,0.084198,0.077179,0.0697021,0.0656433,0.0646973,0.0670471,0.0700073,0.0704651,0.0679932,0.0609741,0.0514526,0.0391235,0.0246277,0.00717163,-0.0116882,-0.0288391,-0.0428772,-0.0517578,-0.0575256,-0.0631409,-0.0701599,-0.0785828,-0.0887146,-0.0986938,-0.108673,-0.120056,-0.130493,-0.138611,-0.141266,-0.137848,-0.12973,-0.117249,-0.104614,-0.090271,-0.0793762,-0.0701599,-0.0648499,-0.0640869,-0.0671997,-0.0712585,-0.0745239,-0.0756226,-0.0742188,-0.0704651,-0.0657959,-0.0598755,-0.0538025,-0.048645,-0.0470886,-0.0519104,-0.0628357,-0.0778198,-0.0935669,-0.105103,-0.113342,-0.11615,-0.111328,-0.0943298,-0.0653381,-0.0261841,0.014801,0.0487976,0.0739136,0.0909119,0.101044,0.105713,0.104767,0.09729,0.082489,0.0689087,0.0623779,0.0673523,0.0852966,0.111633,0.141724,0.172913,0.203308,0.22702,0.242004,0.242615,0.227478,0.200348,0.16684,0.129883,0.0960388,0.0654907,0.0434875,0.0280762,0.0243225,0.0302429,0.0422668,0.0558167,0.0623779,0.0589294,0.0434875,0.0177612,-0.0154419,-0.0533142,-0.092926,-0.130341,-0.160278,-0.18103,-0.191162,-0.190704,-0.182587,-0.166687,-0.146088,-0.124878,-0.105713,-0.0944824,-0.0899658,-0.092926,-0.100555,-0.110718,-0.12085,-0.129578,-0.134247,-0.134552,-0.127075,-0.112274,-0.0895081,-0.0628357,-0.0330505,-0.00326538,0.0238647,0.046936,0.0639343,0.0745239,0.0784302,0.0782776,0.0739136,0.0679932,0.0603333,0.0522461,0.047699,0.0461426,0.050354,0.0589294,0.0709534,0.0848083,0.0993347,0.110718,0.119904,0.122711,0.119751,0.112427,0.100098,0.0857544,0.0690613,0.0548706,0.043335,0.0389709,0.0413208,0.0500488,0.0617371,0.0745239,0.0845032,0.0905762,0.0937195,0.092926,0.0901184,0.0829468,0.0728149,0.0614319,0.0494385,0.0407104,0.0349121,0.0314941,0.0279236,0.0233765,0.0184021,0.0107727,0.00186157,-0.0093689,-0.0212097,-0.0347595,-0.0473938,-0.0597229,-0.0704651,-0.0805969,-0.0905762,-0.101044,-0.111786,-0.122101,-0.131287,-0.139069,-0.145782,-0.15094,-0.152191,-0.149231,-0.140472,-0.128021,-0.112885,-0.0971375,-0.0821838,-0.0701599,-0.0626831,-0.0589294,-0.0581665,-0.0595703,-0.0618896,-0.0643921,-0.0665894,-0.0675049,-0.0659485,-0.0614319,-0.0541077,-0.0466309,-0.0411682,-0.0420837,-0.0480347,-0.0580139,-0.0684509,-0.0760803,-0.0810852,-0.0845032,-0.0812378,-0.0686035,-0.0434875,-0.00622559,0.0349121,0.0708008,0.0965271,0.113678,0.122559,0.127686,0.129272,0.124115,0.11087,0.0949707,0.0856018,0.0879517,0.10556,0.134705,0.167297,0.19928,0.227325,0.248688,0.259613,0.257751,0.238861,0.205658,0.164032,0.119751,0.0768738,0.040863,0.0138855,-0.00201416,-0.00747681,0.000793457,0.0151367,0.0314941,0.0396118,0.0361633,0.019165,-0.00982666,-0.0455322,-0.0863953,-0.128326,-0.169495,-0.204559,-0.228882,-0.240753,-0.238251,-0.225769,-0.205048,-0.179779,-0.15451,-0.129578,-0.111176,-0.0991516,-0.096344,-0.101501,-0.110718,-0.122711,-0.131287,-0.137054,-0.138,-0.131287,-0.116943,-0.0930786,-0.0626831,-0.0257263,0.0115356,0.0445862,0.0728149,0.0926208,0.106171,0.112885,0.113525,0.10791,0.0980835,0.0860596,0.0750122,0.0679932,0.0668945,0.0715637,0.0805969,0.0941772,0.109314,0.125366,0.139404,0.149384,0.153595,0.150146,0.140656,0.126129,0.108368,0.0904236,0.0736084,0.0623779,0.0561218,0.0572205,0.0631409,0.071106,0.079834,0.0860596,0.0890198,0.0898132,0.0881042,0.0846558,0.0782776,0.0684509,0.0580139,0.04599,0.0377197,0.0303955,0.0226135,0.0121765,-0.0015564,-0.0158997,-0.0291443,-0.0397644,-0.0495911,-0.0594177,-0.0717163,-0.0823364,-0.0907593,-0.0960388,-0.100403,-0.107269,-0.118805,-0.132843,-0.146423,-0.157013,-0.165436,-0.170898,-0.175873,-0.176514,-0.171204,-0.159027,-0.141724,-0.123505,-0.106323,-0.0916748,-0.0787354,-0.0687561,-0.0609741,-0.0575256,-0.0586243,-0.0637817,-0.0698547,-0.0745239,-0.0748291,-0.0729675,-0.0689087,-0.0654907,-0.0631409,-0.0617371,-0.0606384,-0.0584717,-0.0564575,-0.0558167,-0.0561218,-0.0544128,-0.0458374,-0.0263367,0.00326538,0.0385132,0.0717163,0.0982361,0.116638,0.130493,0.141571,0.150452,0.153748,0.149048,0.137665,0.126129,0.121002,0.126129,0.142517,0.165894,0.191772,0.218597,0.24231,0.261322,0.270844,0.267395,0.249329,0.217651,0.176666,0.130341,0.083252,0.0391235,0.0015564,-0.0258789,-0.0393066,-0.0368042,-0.025116,-0.00952148,0.00125122,0.00390625,-0.00219727,-0.0168457,-0.0405273,-0.0725098,-0.113831,-0.160126,-0.205963,-0.24588,-0.274109,-0.290009,-0.291718,-0.279419,-0.253357,-0.217499,-0.176178,-0.135193,-0.101044,-0.0776367,-0.0664368,-0.0665894,-0.0757751,-0.0926208,-0.113525,-0.132843,-0.146576,-0.147034,-0.133942,-0.105865,-0.0670471,-0.0213623,0.0252686,0.0698547,0.109772,0.140808,0.161377,0.169006,0.163239,0.146881,0.12442,0.10025,0.0791931,0.0646973,0.0587769,0.0623779,0.0748291,0.0952759,0.119293,0.143768,0.164978,0.179626,0.186157,0.184448,0.173218,0.154358,0.131897,0.10791,0.087616,0.0709534,0.0606384,0.0544128,0.0528564,0.0552063,0.0606384,0.0695496,0.079834,0.090271,0.0980835,0.101654,0.0982361,0.0884094,0.073761,0.0559692,0.0341492,0.0112305,-0.0112305,-0.0328979,-0.0514526,-0.0667419,-0.0787354,-0.0874634,-0.0937195,-0.0980835,-0.101501,-0.104462,-0.109131,-0.115082,-0.12381,-0.132233,-0.140961,-0.148743,-0.156403,-0.164795,-0.173706,-0.181183,-0.184601,-0.182892,-0.176178,-0.166534,-0.152954,-0.137512,-0.11911,-0.100891,-0.0827942,-0.0668945,-0.0558167,-0.0502014,-0.0497437,-0.0534668,-0.0600281,-0.0676575,-0.0778198,-0.0898132,-0.102142,-0.112274,-0.116638,-0.113342,-0.102142,-0.0867004,-0.0675049,-0.0439758,-0.0132446,0.0257263,0.069397,0.110382,0.140656,0.156403,0.158875,0.156219,0.152008,0.149841,0.142822,0.131897,0.120514,0.11615,0.126923,0.15155,0.188354,0.224518,0.257568,0.284882,0.304504,0.314819,0.310272,0.286438,0.244476,0.191467,0.133148,0.0782776,0.0288391,-0.0113831,-0.039917,-0.0544128,-0.0517578,-0.0328979,-0.00717163,0.0155945,0.0271301,0.0255737,0.0113831,-0.0141907,-0.0509949,-0.0994873,-0.157623,-0.21814,-0.271759,-0.310425,-0.32962,-0.330383,-0.31308,-0.282227,-0.238098,-0.189117,-0.137848,-0.094635,-0.065033,-0.0523987,-0.0561218,-0.0717163,-0.0954285,-0.121765,-0.148132,-0.166992,-0.174774,-0.165436,-0.138611,-0.0974426,-0.0462952,0.00686646,0.0597229,0.106323,0.14563,0.174164,0.188049,0.187103,0.171356,0.14563,0.11554,0.087616,0.0656433,0.0538025,0.0516052,0.0603333,0.0787354,0.104309,0.133636,0.162476,0.186005,0.201752,0.207672,0.203491,0.188812,0.166534,0.14032,0.112732,0.0874634,0.0651855,0.048645,0.037262,0.0336914,0.0363159,0.0475464,0.0636292,0.0829468,0.101044,0.113831,0.119598,0.117096,0.106964,0.0884094,0.0632935,0.0317993,-0.00265503,-0.0358582,-0.0651855,-0.0896606,-0.105713,-0.115997,-0.119293,-0.116791,-0.111176,-0.104004,-0.0977478,-0.094635,-0.0960388,-0.102142,-0.112732,-0.127228,-0.145477,-0.16745,-0.188354,-0.206299,-0.216431,-0.219238,-0.21283,-0.199738,-0.178986,-0.154358,-0.126617,-0.100098,-0.0762329,-0.0595703,-0.0509949,-0.0505066,-0.0566101,-0.069397,-0.0857544,-0.10495,-0.125061,-0.144379,-0.157623,-0.16153,-0.153595,-0.136108,-0.112732,-0.0840454,-0.048645,-0.0045166,0.0483398,0.103363,0.149231,0.176666,0.184448,0.178833,0.170258,0.163574,0.156403,0.143921,0.125214,0.109924,0.108063,0.128174,0.165588,0.212677,0.255096,0.290009,0.319489,0.342255,0.352539,0.342712,0.309357,0.255402,0.188965,0.122711,0.0597229,0.00637817,-0.0357056,-0.0625305,-0.0712585,-0.0592651,-0.0305481,0.0015564,0.0274353,0.0396118,0.0360107,0.0188599,-0.0093689,-0.0516052,-0.108215,-0.175415,-0.243378,-0.300629,-0.336945,-0.35144,-0.345215,-0.322144,-0.282837,-0.233093,-0.176361,-0.12146,-0.0773315,-0.0495911,-0.0430298,-0.053009,-0.0746765,-0.1026,-0.133453,-0.162628,-0.18335,-0.190063,-0.177124,-0.144531,-0.0968323,-0.0424194,0.0133972,0.0661011,0.114136,0.153748,0.181641,0.194122,0.188049,0.167145,0.137054,0.103851,0.0760803,0.0567627,0.0478821,0.0495911,0.0623779,0.085144,0.11554,0.149536,0.181335,0.206116,0.2211,0.226074,0.218903,0.202698,0.177582,0.148743,0.118805,0.0899658,0.065033,0.0445862,0.0324402,0.0300903,0.0369568,0.0517578,0.0708008,0.0907593,0.10791,0.120361,0.125671,0.122101,0.106812,0.082489,0.0492859,0.0129395,-0.0237122,-0.0578613,-0.0874634,-0.11087,-0.128174,-0.135651,-0.135803,-0.128326,-0.118347,-0.108368,-0.0997925,-0.0951233,-0.0941772,-0.0996399,-0.110718,-0.128937,-0.151245,-0.174316,-0.195221,-0.210175,-0.21814,-0.217834,-0.208618,-0.190521,-0.165131,-0.136597,-0.108063,-0.083252,-0.0648499,-0.0541077,-0.0508423,-0.0552063,-0.0656433,-0.0834045,-0.104309,-0.128326,-0.15155,-0.168701,-0.177765,-0.174316,-0.159821,-0.13504,-0.101196,-0.0592651,-0.00796509,0.0497437,0.106964,0.155304,0.188049,0.203308,0.200989,0.192719,0.179321,0.163391,0.143433,0.123962,0.11087,0.111633,0.130676,0.166534,0.212219,0.260559,0.304352,0.34021,0.365326,0.373444,0.359711,0.320099,0.260712,0.18634,0.109772,0.0383606,-0.0202637,-0.0617371,-0.085144,-0.0881042,-0.0708008,-0.0386658,-0.00109863,0.0303955,0.0484924,0.0473938,0.0282288,-0.00857544,-0.0611267,-0.127228,-0.19989,-0.2724,-0.330872,-0.367981,-0.378876,-0.365326,-0.330872,-0.279877,-0.219543,-0.156403,-0.098999,-0.0558167,-0.0313416,-0.0302429,-0.046936,-0.0760803,-0.111176,-0.145935,-0.174957,-0.191772,-0.193512,-0.173218,-0.135345,-0.0834045,-0.0226135,0.0368042,0.0915222,0.138458,0.173706,0.194916,0.199738,0.187408,0.161682,0.127686,0.0937195,0.0657959,0.0491028,0.0438232,0.0502014,0.0676575,0.0933838,0.125977,0.159821,0.189911,0.213623,0.225616,0.226868,0.217651,0.198334,0.173553,0.143768,0.113342,0.0845032,0.059082,0.0407104,0.0314941,0.0327454,0.0431824,0.0594177,0.078125,0.0957336,0.109619,0.118958,0.120209,0.113037,0.0960388,0.0684509,0.0352478,-0.00125122,-0.0368042,-0.0697021,-0.0979309,-0.121002,-0.136261,-0.143127,-0.141571,-0.132843,-0.121002,-0.109314,-0.0999451,-0.0938721,-0.0933838,-0.0997925,-0.113983,-0.134247,-0.159668,-0.18335,-0.203491,-0.215332,-0.218445,-0.213287,-0.198944,-0.177124,-0.150146,-0.120056,-0.0924683,-0.0703125,-0.0567627,-0.0513,-0.0536499,-0.0629883,-0.0776367,-0.0974426,-0.122253,-0.148895,-0.171814,-0.184601,-0.184296,-0.169495,-0.145782,-0.115387,-0.0779724,-0.0310364,0.0299377,0.0958862,0.157166,0.198792,0.217651,0.214874,0.203644,0.191772,0.179321,0.160767,0.136444,0.11319,0.103058,0.115234,0.152649,0.204102,0.256165,0.303253,0.341766,0.369995,0.384033,0.37561,0.340698,0.278015,0.199585,0.114899,0.0380554,-0.0263367,-0.0731201,-0.102753,-0.11087,-0.0958862,-0.0615845,-0.0177612,0.020752,0.0447388,0.0466309,0.02948,-0.00482178,-0.0538025,-0.117889,-0.192871,-0.269287,-0.333984,-0.375305,-0.386047,-0.370636,-0.33429,-0.282684,-0.22171,-0.158112,-0.096344,-0.0492859,-0.0205688,-0.0169983,-0.0344543,-0.065033,-0.100891,-0.136749,-0.165894,-0.184601,-0.18866,-0.17215,-0.135803,-0.0829468,-0.0215149,0.0397644,0.0949707,0.141418,0.175568,0.197083,0.203308,0.191925,0.165283,0.128784,0.0909119,0.0598755,0.0424194,0.0369568,0.0436707,0.0597229,0.0846558,0.116791,0.15155,0.185394,0.211731,0.226715,0.229034,0.21875,0.199432,0.17337,0.143921,0.111633,0.0802917,0.0517578,0.0322876,0.0237122,0.0275879,0.0417786,0.0611267,0.0818481,0.101196,0.116638,0.126923,0.128174,0.117889,0.0957336,0.0637817,0.0260315,-0.0121765,-0.0481873,-0.08078,-0.109314,-0.132233,-0.145477,-0.149536,-0.143768,-0.130981,-0.117706,-0.105103,-0.0960388,-0.091217,-0.092926,-0.100555,-0.117554,-0.140808,-0.167145,-0.190216,-0.207367,-0.214233,-0.212982,-0.202545,-0.185852,-0.161224,-0.133636,-0.104004,-0.0793762,-0.0626831,-0.0542603,-0.0536499,-0.0592651,-0.0692139,-0.0867004,-0.109619,-0.135803,-0.161377,-0.179138,-0.186951,-0.181946,-0.167786,-0.14328,-0.111328,-0.0657959,-0.00637817,0.0611267,0.127533,0.179626,0.211578,0.222504,0.220306,0.212982,0.199738,0.179321,0.150787,0.120697,0.101501,0.104309,0.131592,0.177917,0.232941,0.284698,0.331482,0.369232,0.395416,0.399323,0.374847,0.31839,0.238556,0.149231,0.0632935,-0.0118408,-0.069397,-0.107269,-0.122864,-0.114288,-0.0837402,-0.040863,0.00360107,0.0349121,0.0475464,0.0377197,0.00796509,-0.0389709,-0.102448,-0.177277,-0.256653,-0.327576,-0.377655,-0.397278,-0.388855,-0.355194,-0.305145,-0.243561,-0.177124,-0.111786,-0.0570679,-0.0198059,-0.00656128,-0.0173035,-0.0439758,-0.0809326,-0.117554,-0.148743,-0.17041,-0.178528,-0.169189,-0.140167,-0.0937195,-0.0344543,0.0280762,0.0873108,0.137848,0.178223,0.204254,0.215179,0.208923,0.185699,0.150299,0.109924,0.0726624,0.0461426,0.0325928,0.0324402,0.0431824,0.063446,0.0921631,0.127869,0.164795,0.197693,0.220154,0.229034,0.225006,0.209076,0.185242,0.154358,0.118652,0.0816956,0.0472412,0.0213623,0.00842285,0.00918579,0.0221558,0.0420837,0.0645447,0.0871582,0.10791,0.125214,0.133942,0.129883,0.110077,0.0770264,0.0369568,-0.00405884,-0.0428772,-0.0778198,-0.110077,-0.136597,-0.154358,-0.15921,-0.15155,-0.134552,-0.11615,-0.100098,-0.0898132,-0.0848083,-0.0852966,-0.0933838,-0.109314,-0.133453,-0.16217,-0.189117,-0.20752,-0.21579,-0.213776,-0.203156,-0.184937,-0.160278,-0.131744,-0.101654,-0.07547,-0.0575256,-0.0497437,-0.0498962,-0.0564575,-0.0682983,-0.0835876,-0.103851,-0.127686,-0.152802,-0.172302,-0.180542,-0.175568,-0.159515,-0.137665,-0.110382,-0.0731201,-0.0210571,0.0464783,0.117554,0.177765,0.215637,0.227478,0.224365,0.214874,0.205963,0.190063,0.163239,0.128021,0.0997925,0.0915222,0.113525,0.160767,0.219238,0.274567,0.322144,0.361725,0.39151,0.40274,0.38559,0.335388,0.254944,0.160583,0.0671997,-0.014801,-0.0757751,-0.116638,-0.135651,-0.129883,-0.1026,-0.0558167,-0.00482178,0.0357056,0.0533142,0.04599,0.0155945,-0.0313416,-0.0924683,-0.167297,-0.248383,-0.326355,-0.382477,-0.408813,-0.401337,-0.366089,-0.314636,-0.252441,-0.186951,-0.121307,-0.0636292,-0.0216675,-0.00219727,-0.00747681,-0.0344543,-0.0720215,-0.108978,-0.140808,-0.16153,-0.170563,-0.163574,-0.140015,-0.0975952,-0.0419312,0.020752,0.0812378,0.135498,0.177582,0.207214,0.222961,0.221863,0.204559,0.173218,0.13269,0.091217,0.0586243,0.0388184,0.0335083,0.0389709,0.0552063,0.0799866,0.113037,0.15155,0.188049,0.21814,0.234497,0.236694,0.224213,0.199432,0.165588,0.125977,0.0834045,0.043335,0.0116882,-0.00622559,-0.00701904,0.00686646,0.0316467,0.0606384,0.0899658,0.116486,0.137512,0.14798,0.141724,0.118652,0.0804443,0.0341492,-0.013092,-0.0576782,-0.0968323,-0.129425,-0.154358,-0.168091,-0.168091,-0.155457,-0.135803,-0.113831,-0.0969849,-0.0860596,-0.0829468,-0.0871582,-0.0996399,-0.120361,-0.147491,-0.176971,-0.201752,-0.218597,-0.22345,-0.219238,-0.204712,-0.184601,-0.158264,-0.130493,-0.102448,-0.0801392,-0.0639343,-0.0572205,-0.0564575,-0.0628357,-0.0743713,-0.0927734,-0.116791,-0.142059,-0.164978,-0.17868,-0.181335,-0.174011,-0.159668,-0.139404,-0.104614,-0.0506592,0.0213623,0.10025,0.169952,0.218445,0.244171,0.249329,0.247437,0.240753,0.22345,0.192108,0.14859,0.107269,0.0877686,0.0974426,0.137848,0.195221,0.253845,0.307617,0.354889,0.393402,0.416626,0.411469,0.370636,0.29422,0.195526,0.0940247,0.0015564,-0.0728149,-0.12381,-0.149994,-0.151093,-0.125519,-0.0805969,-0.0247803,0.0230713,0.0528564,0.0559692,0.0350952,-0.00592041,-0.0636292,-0.136749,-0.219849,-0.301849,-0.366882,-0.402893,-0.405701,-0.378571,-0.332581,-0.274902,-0.211731,-0.146576,-0.085144,-0.0366516,-0.00732422,-0.00265503,-0.0219727,-0.0558167,-0.0940247,-0.12738,-0.151855,-0.165588,-0.16684,-0.152649,-0.121307,-0.0736084,-0.0155945,0.0456848,0.104614,0.154358,0.193176,0.217041,0.226868,0.21814,0.193817,0.157806,0.115082,0.0767212,0.0484924,0.0336914,0.0328979,0.0422668,0.0626831,0.0937195,0.132233,0.174622,0.211426,0.237457,0.247437,0.241211,0.219849,0.186646,0.146088,0.101501,0.0566101,0.0193481,-0.00656128,-0.0141907,-0.00592041,0.0157471,0.0450745,0.0762329,0.105255,0.129272,0.144226,0.144073,0.126617,0.0915222,0.0470886,-0.00250244,-0.0487976,-0.0905762,-0.125824,-0.152954,-0.1698,-0.173859,-0.162933,-0.141571,-0.116486,-0.094635,-0.0804443,-0.07547,-0.0773315,-0.0865479,-0.103699,-0.127228,-0.156403,-0.184753,-0.205505,-0.215637,-0.213776,-0.201447,-0.182587,-0.158569,-0.13208,-0.10495,-0.0809326,-0.0620422,-0.0516052,-0.0492859,-0.0555115,-0.0676575,-0.0857544,-0.108978,-0.137207,-0.167603,-0.190369,-0.200348,-0.193817,-0.17868,-0.15686,-0.128479,-0.0846558,-0.020752,0.0608215,0.143127,0.209869,0.246826,0.253845,0.246521,0.235443,0.221863,0.199097,0.160278,0.115997,0.0826416,0.0779724,0.110535,0.170258,0.240112,0.302643,0.354401,0.393707,0.420197,0.422546,0.393219,0.326965,0.230774,0.122253,0.019165,-0.0637817,-0.119293,-0.148895,-0.154663,-0.136902,-0.0979309,-0.0439758,0.0118408,0.0509949,0.0622253,0.0439758,0.00250244,-0.0542603,-0.121765,-0.198029,-0.276917,-0.347229,-0.392303,-0.404449,-0.382782,-0.335236,-0.275513,-0.213287,-0.152008,-0.0947876,-0.044281,-0.00872803,0.00686646,-0.00201416,-0.0319519,-0.0709534,-0.107727,-0.134552,-0.150299,-0.153595,-0.145172,-0.123962,-0.0862122,-0.0350952,0.0238647,0.0845032,0.138,0.179626,0.207062,0.219849,0.217651,0.200348,0.169647,0.127869,0.0845032,0.0478821,0.0252686,0.0184021,0.0243225,0.042572,0.0692139,0.105865,0.146729,0.188812,0.222198,0.242615,0.243378,0.226074,0.193817,0.152008,0.106812,0.0617371,0.0216675,-0.00918579,-0.0238647,-0.0212097,-0.00186157,0.0297852,0.0668945,0.101807,0.130676,0.147827,0.149689,0.135498,0.104767,0.0643921,0.0168457,-0.0319519,-0.0778198,-0.117706,-0.14859,-0.16684,-0.171967,-0.163727,-0.145477,-0.124115,-0.101196,-0.0849915,-0.0742188,-0.0718689,-0.0774841,-0.090271,-0.112732,-0.138306,-0.166199,-0.189453,-0.202545,-0.206299,-0.198486,-0.183838,-0.162628,-0.139252,-0.113983,-0.0898132,-0.0687561,-0.0533142,-0.0447388,-0.0436707,-0.0498962,-0.0639343,-0.0871582,-0.120697,-0.157166,-0.187897,-0.204102,-0.202698,-0.191315,-0.175415,-0.152802,-0.113678,-0.0498962,0.0375671,0.131439,0.209259,0.252747,0.261627,0.252899,0.242462,0.229523,0.205811,0.164032,0.109772,0.0659485,0.0545654,0.0835876,0.145172,0.219696,0.288147,0.346466,0.391815,0.423004,0.430511,0.40509,0.341156,0.244965,0.131897,0.0226135,-0.0659485,-0.126465,-0.158569,-0.166382,-0.151093,-0.111786,-0.054718,0.00622559,0.0531616,0.0700073,0.0553589,0.0157471,-0.0400696,-0.105408,-0.180725,-0.258972,-0.332733,-0.384644,-0.403046,-0.385132,-0.338196,-0.277222,-0.214081,-0.154816,-0.098999,-0.0472412,-0.00497437,0.0182495,0.0171509,-0.00827026,-0.047699,-0.0882568,-0.119293,-0.139252,-0.145782,-0.143433,-0.127869,-0.0982361,-0.0522461,0.00732422,0.0712585,0.130493,0.176971,0.208313,0.222504,0.22345,0.209412,0.179779,0.138306,0.0896606,0.0467834,0.0169983,0.00561523,0.00997925,0.0272827,0.054718,0.0910645,0.133942,0.178833,0.218292,0.243561,0.248688,0.231537,0.197235,0.153107,0.106018,0.0606384,0.0190125,-0.0129395,-0.0317993,-0.0316467,-0.0143433,0.0173035,0.0552063,0.0916748,0.121765,0.141571,0.147339,0.136261,0.109314,0.0703125,0.0229187,-0.0263367,-0.0732727,-0.113678,-0.145325,-0.164795,-0.172455,-0.166992,-0.150787,-0.128021,-0.105713,-0.0871582,-0.0757751,-0.0717163,-0.0759277,-0.0860596,-0.10321,-0.125519,-0.149689,-0.172607,-0.187897,-0.194427,-0.189911,-0.177124,-0.158569,-0.137665,-0.114594,-0.0930786,-0.0718689,-0.0539551,-0.0413208,-0.0368042,-0.0414734,-0.0553589,-0.0805969,-0.114746,-0.152649,-0.183838,-0.202698,-0.206451,-0.201294,-0.189117,-0.167297,-0.125366,-0.0556641,0.0349121,0.12973,0.208313,0.254303,0.267548,0.261017,0.25058,0.233582,0.203308,0.156067,0.100098,0.0570679,0.046936,0.0779724,0.140961,0.21579,0.287048,0.347534,0.39621,0.428162,0.435638,0.406006,0.338501,0.238403,0.124115,0.0143433,-0.0748291,-0.135498,-0.167786,-0.173553,-0.155304,-0.113983,-0.0553589,0.00515747,0.0498962,0.0678406,0.0533142,0.014801,-0.0419312,-0.108063,-0.182434,-0.260071,-0.330719,-0.379517,-0.396667,-0.379364,-0.333527,-0.271912,-0.207855,-0.147186,-0.0907593,-0.0391235,0.00326538,0.0286865,0.0293274,0.00622559,-0.0336914,-0.0746765,-0.108978,-0.130188,-0.138153,-0.136108,-0.122864,-0.0944824,-0.0502014,0.00778198,0.0736084,0.133453,0.182587,0.213287,0.226868,0.224518,0.208008,0.175873,0.13269,0.082489,0.0369568,0.00561523,-0.00717163,-0.00170898,0.0177612,0.0484924,0.0874634,0.132233,0.17807,0.217499,0.243073,0.247284,0.228729,0.192108,0.14563,0.0955811,0.0494385,0.00842285,-0.0223083,-0.0386658,-0.0375671,-0.0187073,0.0146484,0.0538025,0.0918274,0.12146,0.138306,0.139709,0.125671,0.0965271,0.0575256,0.0113831,-0.0369568,-0.0823364,-0.12085,-0.147827,-0.163239,-0.165436,-0.158569,-0.142517,-0.123505,-0.1026,-0.0834045,-0.0706177,-0.0651855,-0.0690613,-0.0804443,-0.0982361,-0.11911,-0.140808,-0.160126,-0.174164,-0.180237,-0.177124,-0.164978,-0.145172,-0.122253,-0.0996399,-0.078125,-0.0592651,-0.0434875,-0.0302429,-0.0243225,-0.0286865,-0.04599,-0.0768738,-0.114746,-0.15451,-0.185242,-0.203156,-0.208923,-0.207672,-0.200684,-0.178986,-0.133453,-0.0580139,0.0360107,0.128326,0.201599,0.242004,0.254944,0.253998,0.246368,0.22937,0.194427,0.139252,0.0804443,0.0403748,0.0374146,0.0743713,0.138458,0.210175,0.277863,0.336487,0.386688,0.422089,0.431732,0.402588,0.332275,0.229675,0.116791,0.0110779,-0.0739136,-0.13208,-0.165436,-0.174622,-0.158569,-0.118958,-0.0598755,0.000793457,0.0455322,0.063446,0.0519104,0.0165405,-0.0354004,-0.0993347,-0.171356,-0.248993,-0.319336,-0.367828,-0.38559,-0.370148,-0.327271,-0.270355,-0.207672,-0.146576,-0.0870056,-0.0313416,0.0140381,0.0424194,0.0452271,0.0232239,-0.0140381,-0.0552063,-0.0893555,-0.113037,-0.126282,-0.128479,-0.11911,-0.0930786,-0.0498962,0.00952148,0.0743713,0.135498,0.184296,0.215942,0.230621,0.229034,0.211884,0.179626,0.134552,0.082489,0.0344543,-0.000152588,-0.0152893,-0.013092,0.0045166,0.0335083,0.0723572,0.117249,0.163391,0.204712,0.230438,0.236847,0.220001,0.185852,0.139709,0.0904236,0.043335,0.00109863,-0.0310364,-0.0483398,-0.0491028,-0.0310364,0.000457764,0.0388184,0.077179,0.108521,0.129578,0.136902,0.128326,0.103363,0.0653381,0.0184021,-0.0321045,-0.0796814,-0.119293,-0.148285,-0.165283,-0.170258,-0.164185,-0.147644,-0.124878,-0.0991516,-0.0762329,-0.0614319,-0.0556641,-0.0594177,-0.0703125,-0.0871582,-0.107422,-0.131134,-0.153259,-0.171051,-0.179138,-0.176025,-0.162476,-0.141724,-0.117096,-0.0943298,-0.0720215,-0.0517578,-0.0316467,-0.0171509,-0.0109253,-0.0180969,-0.0411682,-0.0767212,-0.116791,-0.154205,-0.185547,-0.207367,-0.219391,-0.22406,-0.218445,-0.188507,-0.128479,-0.0424194,0.0541077,0.144531,0.21347,0.253845,0.270844,0.271301,0.258667,0.227966,0.177582,0.114594,0.0564575,0.0216675,0.0279236,0.0715637,0.139252,0.213928,0.284882,0.347534,0.398834,0.431427,0.434082,0.396362,0.315735,0.206299,0.0898132,-0.0154419,-0.100891,-0.158875,-0.187561,-0.190521,-0.167603,-0.121155,-0.0592651,0.0015564,0.0450745,0.0645447,0.0562744,0.0212097,-0.0325928,-0.101959,-0.180389,-0.260712,-0.329773,-0.374359,-0.388397,-0.370148,-0.326813,-0.268341,-0.201599,-0.13269,-0.0648499,-0.00390625,0.0424194,0.0668945,0.0645447,0.0379028,-0.00360107,-0.0470886,-0.0846558,-0.113342,-0.129425,-0.13269,-0.120361,-0.0898132,-0.0393066,0.0229187,0.0909119,0.151855,0.200836,0.231842,0.244476,0.238556,0.214691,0.175873,0.126465,0.0723572,0.0254211,-0.00857544,-0.0226135,-0.0190125,0.00109863,0.0339966,0.077179,0.125977,0.174164,0.213135,0.236206,0.239014,0.220001,0.18399,0.136749,0.0840454,0.0325928,-0.0124817,-0.0447388,-0.0611267,-0.0592651,-0.0388184,-0.00671387,0.0325928,0.071106,0.103699,0.125061,0.13208,0.122253,0.094635,0.0538025,0.00390625,-0.0473938,-0.0961914,-0.135193,-0.164978,-0.182281,-0.186951,-0.177917,-0.158569,-0.130341,-0.101196,-0.0750122,-0.0580139,-0.0495911,-0.0511475,-0.0617371,-0.0785828,-0.101501,-0.127869,-0.152496,-0.170563,-0.178986,-0.174469,-0.15921,-0.135498,-0.108673,-0.0812378,-0.0545654,-0.0300903,-0.00796509,0.00497437,0.00686646,-0.00637817,-0.0325928,-0.0714111,-0.113678,-0.155457,-0.190063,-0.215485,-0.230133,-0.231842,-0.219391,-0.183533,-0.118347,-0.0305481,0.0640869,0.153259,0.22406,0.265381,0.27771,0.272247,0.253357,0.216431,0.164795,0.1026,0.0475464,0.0168457,0.0260315,0.0748291,0.146088,0.223907,0.295929,0.356293,0.403046,0.42926,0.425812,0.384186,0.301849,0.191925,0.07547,-0.0302429,-0.114594,-0.169647,-0.194733,-0.193024,-0.170898,-0.124878,-0.0654907,-0.00546265,0.0383606,0.0572205,0.0498962,0.0149536,-0.041626,-0.111481,-0.189606,-0.268799,-0.335236,-0.378418,-0.390594,-0.373444,-0.32962,-0.267883,-0.197693,-0.125214,-0.0548706,0.00656128,0.052063,0.0748291,0.0720215,0.0448914,0.00265503,-0.0420837,-0.081543,-0.111176,-0.127228,-0.127686,-0.111481,-0.0767212,-0.0255737,0.0385132,0.105408,0.165588,0.21347,0.242462,0.251984,0.241669,0.215027,0.174316,0.125214,0.0723572,0.0265198,-0.00637817,-0.0205688,-0.0162048,0.0045166,0.0386658,0.0826416,0.131134,0.176025,0.212982,0.233582,0.235748,0.216095,0.178986,0.130981,0.0778198,0.0269775,-0.0160522,-0.0462952,-0.0608215,-0.0581665,-0.0394592,-0.00732422,0.0316467,0.0695496,0.100555,0.119598,0.122559,0.111023,0.0845032,0.0466309,-0.000610352,-0.0511475,-0.100098,-0.142365,-0.172607,-0.189301,-0.191925,-0.183197,-0.165283,-0.139404,-0.111328,-0.0826416,-0.0612793,-0.0502014,-0.0509949,-0.0622253,-0.0812378,-0.10495,-0.130188,-0.154999,-0.173706,-0.182434,-0.17868,-0.163727,-0.139069,-0.111023,-0.081543,-0.0542603,-0.0275879,-0.00531006,0.00842285,0.00982666,-0.00592041,-0.0385132,-0.0818481,-0.126617,-0.167145,-0.2005,-0.22345,-0.235748,-0.238556,-0.220001,-0.167297,-0.084198,0.0174561,0.1185,0.203156,0.261017,0.290314,0.298279,0.291107,0.264923,0.213776,0.14502,0.0746765,0.0240173,0.0127869,0.0462952,0.108673,0.182281,0.256348,0.325256,0.384979,0.428162,0.443909,0.421143,0.354248,0.250244,0.131592,0.0180969,-0.0795288,-0.153412,-0.199432,-0.216736,-0.207062,-0.17215,-0.113342,-0.0473938,0.00747681,0.0414734,0.050354,0.0336914,-0.00622559,-0.0665894,-0.142059,-0.224823,-0.303894,-0.365326,-0.395721,-0.396027,-0.365021,-0.31308,-0.246979,-0.172302,-0.0944824,-0.0204163,0.0411682,0.081543,0.0941772,0.0785828,0.0410156,-0.00747681,-0.0536499,-0.0940247,-0.123016,-0.137207,-0.133789,-0.108521,-0.0642395,-0.00170898,0.0692139,0.138611,0.196472,0.237793,0.25946,0.259766,0.240753,0.204559,0.155609,0.100555,0.046936,0.00421143,-0.0202637,-0.0252686,-0.0107727,0.0188599,0.0604858,0.110718,0.160919,0.205505,0.237305,0.249939,0.241364,0.212372,0.16745,0.114288,0.0597229,0.0090332,-0.0308838,-0.0562744,-0.0645447,-0.0545654,-0.02948,0.00747681,0.0475464,0.0848083,0.112579,0.125214,0.120514,0.0988464,0.0618896,0.0141907,-0.0379028,-0.0899658,-0.135498,-0.171661,-0.195374,-0.205811,-0.202545,-0.187256,-0.162781,-0.134247,-0.104767,-0.079834,-0.0629883,-0.0556641,-0.0578613,-0.0679932,-0.0860596,-0.108826,-0.133942,-0.158569,-0.176025,-0.181946,-0.174164,-0.155914,-0.128937,-0.0991516,-0.0681458,-0.0368042,-0.00762939,0.0135803,0.0230713,0.0158997,-0.00918579,-0.0508423,-0.09729,-0.143616,-0.185089,-0.218445,-0.23996,-0.251801,-0.242767,-0.2005,-0.123169,-0.0230713,0.0840454,0.180389,0.254608,0.298584,0.314026,0.310913,0.28595,0.237152,0.166199,0.0913696,0.02948,0.00280762,0.0209045,0.0782776,0.154205,0.232788,0.306854,0.372498,0.421936,0.447174,0.437042,0.383728,0.290161,0.171967,0.0523987,-0.0539551,-0.138,-0.195221,-0.22171,-0.2211,-0.194122,-0.144531,-0.0795288,-0.0179443,0.0265198,0.0472412,0.0417786,0.0109253,-0.0417786,-0.112427,-0.193024,-0.275055,-0.344574,-0.388702,-0.402435,-0.385132,-0.342102,-0.279572,-0.206299,-0.125824,-0.0456848,0.0252686,0.0784302,0.104767,0.102142,0.0715637,0.0247803,-0.0266724,-0.0739136,-0.111176,-0.13504,-0.14032,-0.12442,-0.0874634,-0.0291443,0.0419312,0.116302,0.181946,0.231842,0.261932,0.269897,0.255707,0.22406,0.176361,0.120514,0.0631409,0.0135803,-0.0199585,-0.0333557,-0.0254211,0.000152588,0.0394592,0.0887146,0.141113,0.189606,0.227631,0.247925,0.24823,0.226227,0.187103,0.136261,0.082489,0.0291443,-0.0149536,-0.0464783,-0.0612793,-0.0581665,-0.0371094,-0.00360107,0.0377197,0.0753174,0.105865,0.122406,0.122559,0.107269,0.0773315,0.0358582,-0.013092,-0.0645447,-0.113037,-0.15451,-0.185547,-0.203156,-0.207855,-0.200836,-0.184448,-0.160431,-0.13269,-0.104614,-0.0809326,-0.0653381,-0.0589294,-0.0632935,-0.0759277,-0.0974426,-0.123657,-0.15155,-0.174164,-0.188354,-0.189911,-0.178375,-0.157013,-0.128174,-0.0951233,-0.059082,-0.0244751,0.00360107,0.0196533,0.0177612,-0.00436401,-0.0441284,-0.0915222,-0.140472,-0.184937,-0.220947,-0.244781,-0.255859,-0.241669,-0.192108,-0.107574,0.000457764,0.11319,0.213776,0.28891,0.329315,0.3396,0.328827,0.296082,0.238403,0.164185,0.0873108,0.0271301,0.00686646,0.0321045,0.0958862,0.17511,0.2565,0.328979,0.389038,0.430176,0.445923,0.424896,0.360962,0.258667,0.138458,0.019165,-0.0827942,-0.160583,-0.209564,-0.22998,-0.22467,-0.19397,-0.141266,-0.0767212,-0.0184021,0.0212097,0.0369568,0.0263367,-0.00778198,-0.0612793,-0.130188,-0.206909,-0.284393,-0.34787,-0.386383,-0.395111,-0.37265,-0.325714,-0.262115,-0.188049,-0.109467,-0.0325928,0.0346069,0.0827942,0.106018,0.0991516,0.0671997,0.0185547,-0.0322876,-0.0787354,-0.114136,-0.132843,-0.134552,-0.114899,-0.0748291,-0.0166931,0.0541077,0.125671,0.187256,0.232941,0.256805,0.259766,0.241211,0.207062,0.160126,0.106171,0.0534668,0.00982666,-0.0176086,-0.0240173,-0.0102844,0.019165,0.0603333,0.108826,0.157806,0.201599,0.232635,0.247437,0.241364,0.215942,0.174957,0.12677,0.0767212,0.0308838,-0.00701904,-0.0325928,-0.0434875,-0.0386658,-0.0188599,0.0129395,0.0481873,0.0802917,0.102142,0.110229,0.104156,0.0849915,0.0555115,0.0174561,-0.0274353,-0.0739136,-0.121613,-0.161987,-0.192719,-0.208923,-0.211884,-0.204102,-0.189301,-0.169342,-0.146576,-0.120514,-0.0965271,-0.0767212,-0.0671997,-0.0687561,-0.0826416,-0.105103,-0.131744,-0.155914,-0.17511,-0.186951,-0.189758,-0.183044,-0.165283,-0.135345,-0.0968323,-0.0566101,-0.0246277,-0.00311279,0.00405884,-0.00686646,-0.0350952,-0.0748291,-0.121765,-0.171356,-0.214539,-0.243378,-0.254608,-0.237305,-0.185852,-0.102448,0.00219727,0.113342,0.219849,0.302643,0.348938,0.360962,0.347229,0.308105,0.247131,0.172302,0.101196,0.0466309,0.0283813,0.0552063,0.116791,0.196625,0.275513,0.346771,0.401794,0.433777,0.436737,0.405853,0.335693,0.233093,0.115234,0.00109863,-0.0955811,-0.168549,-0.212067,-0.226868,-0.217987,-0.187103,-0.13736,-0.0785828,-0.0282288,0.00466919,0.0143433,-0.000152588,-0.038208,-0.092926,-0.157959,-0.228119,-0.295166,-0.347382,-0.376556,-0.377167,-0.351288,-0.300934,-0.235443,-0.163574,-0.088562,-0.0199585,0.0388184,0.0778198,0.0944824,0.0854492,0.0531616,0.00701904,-0.0407104,-0.0834045,-0.11319,-0.125824,-0.118042,-0.09198,-0.0481873,0.00918579,0.0751648,0.138306,0.191315,0.227325,0.242004,0.234344,0.21048,0.172913,0.128326,0.0812378,0.0377197,0.00436401,-0.0112305,-0.00747681,0.0155945,0.0513,0.0941772,0.138916,0.179138,0.211121,0.229523,0.23233,0.217834,0.187897,0.147034,0.103851,0.0639343,0.0303955,0.00717163,-0.0045166,-0.00531006,0.00482178,0.0238647,0.0478821,0.0700073,0.0843506,0.0898132,0.0835876,0.0692139,0.0475464,0.0212097,-0.0105896,-0.0462952,-0.0837402,-0.120361,-0.151855,-0.177124,-0.193329,-0.201447,-0.201599,-0.194427,-0.180389,-0.161224,-0.138153,-0.115387,-0.0966797,-0.0863953,-0.0857544,-0.0947876,-0.112579,-0.133148,-0.155304,-0.17276,-0.183533,-0.185699,-0.178223,-0.159821,-0.131134,-0.0951233,-0.0600281,-0.0325928,-0.0176086,-0.0195007,-0.0396118,-0.0731201,-0.112274,-0.154663,-0.192566,-0.224213,-0.244324,-0.239197,-0.195679,-0.115387,-0.00952148,0.107727,0.217651,0.302338,0.352081,0.371399,0.363922,0.331787,0.274902,0.19754,0.11615,0.0527039,0.0291443,0.0561218,0.120697,0.203003,0.284393,0.354248,0.408661,0.442047,0.447662,0.415527,0.341309,0.232025,0.108063,-0.0123291,-0.112427,-0.185089,-0.225769,-0.238708,-0.227173,-0.192108,-0.138611,-0.0765686,-0.0252686,0.00671387,0.0123291,-0.00622559,-0.0470886,-0.102753,-0.168854,-0.239349,-0.305145,-0.355499,-0.381226,-0.377655,-0.345825,-0.292664,-0.22406,-0.149536,-0.0742188,-0.00326538,0.0552063,0.0940247,0.108978,0.0955811,0.0583191,0.00857544,-0.0438232,-0.0888672,-0.121918,-0.136261,-0.128937,-0.100739,-0.0528564,0.0110779,0.0816956,0.149384,0.204407,0.239502,0.25058,0.236206,0.203003,0.156219,0.103546,0.0513,0.00622559,-0.0261841,-0.0379028,-0.0279236,0.00515747,0.0533142,0.109131,0.164337,0.211273,0.242767,0.255707,0.248993,0.224213,0.184448,0.135498,0.0860596,0.0436707,0.0113831,-0.00360107,-0.00466919,0.00888062,0.0310364,0.0595703,0.0877686,0.108063,0.116638,0.112122,0.0937195,0.0668945,0.0341492,-0.00170898,-0.0377197,-0.0736084,-0.106171,-0.13504,-0.158722,-0.176971,-0.189453,-0.195679,-0.197693,-0.192566,-0.181641,-0.165741,-0.147827,-0.12973,-0.115387,-0.105713,-0.105103,-0.112732,-0.127869,-0.147339,-0.168243,-0.184753,-0.195984,-0.19693,-0.186646,-0.163727,-0.130341,-0.0949707,-0.0636292,-0.042572,-0.035553,-0.0461426,-0.0720215,-0.106506,-0.145935,-0.184937,-0.216431,-0.233246,-0.227814,-0.187256,-0.108826,-0.00546265,0.110077,0.219696,0.31012,0.364868,0.385437,0.376251,0.342407,0.285645,0.212219,0.135651,0.0740662,0.0489502,0.0715637,0.135803,0.220306,0.301849,0.369537,0.41803,0.442963,0.440948,0.40213,0.324158,0.213135,0.0890198,-0.0285339,-0.123657,-0.188965,-0.224213,-0.231689,-0.217651,-0.186005,-0.138153,-0.0843506,-0.0380554,-0.0115356,-0.0109253,-0.0327454,-0.0740662,-0.125977,-0.184143,-0.244171,-0.299835,-0.343658,-0.365021,-0.360657,-0.331024,-0.278778,-0.214233,-0.143616,-0.0729675,-0.00531006,0.0525513,0.0930786,0.109619,0.100098,0.0659485,0.0169983,-0.0346069,-0.0791931,-0.112885,-0.128632,-0.125671,-0.0996399,-0.054718,0.00717163,0.0782776,0.146423,0.201447,0.237,0.247772,0.233734,0.199738,0.150635,0.0951233,0.0402222,-0.00778198,-0.0402222,-0.0519104,-0.0396118,-0.0045166,0.047699,0.106964,0.166199,0.216736,0.254303,0.270691,0.264923,0.238556,0.195374,0.142365,0.0901184,0.0452271,0.0127869,-0.00482178,-0.00622559,0.00796509,0.0333557,0.0657959,0.098999,0.122559,0.132538,0.125824,0.105713,0.0753174,0.0393066,-0.000152588,-0.041626,-0.0820007,-0.121155,-0.154053,-0.178375,-0.19458,-0.203796,-0.206604,-0.205658,-0.198792,-0.185547,-0.165436,-0.143127,-0.123016,-0.110535,-0.106506,-0.112579,-0.125671,-0.144379,-0.166687,-0.188202,-0.20752,-0.217834,-0.215179,-0.19693,-0.165741,-0.127869,-0.0918274,-0.0625305,-0.0481873,-0.0523987,-0.0720215,-0.104004,-0.141113,-0.179138,-0.211884,-0.233734,-0.232941,-0.196472,-0.121002,-0.0152893,0.105865,0.224213,0.32074,0.38092,0.403381,0.396667,0.365936,0.310608,0.23465,0.150787,0.0820007,0.0525513,0.0779724,0.146729,0.233582,0.317291,0.384644,0.435486,0.461853,0.456696,0.41272,0.324005,0.203003,0.0709534,-0.0505066,-0.145325,-0.208313,-0.239349,-0.241821,-0.223755,-0.18634,-0.13504,-0.0778198,-0.0332031,-0.0123291,-0.0184021,-0.0475464,-0.0927734,-0.147644,-0.207367,-0.266632,-0.319489,-0.35611,-0.368896,-0.355347,-0.317932,-0.261627,-0.194427,-0.125824,-0.0572205,0.006073,0.0597229,0.0971375,0.111786,0.100098,0.0653381,0.0182495,-0.0299377,-0.0715637,-0.101807,-0.116486,-0.112732,-0.0877686,-0.0439758,0.0149536,0.0810852,0.14502,0.196472,0.228882,0.237946,0.223267,0.188507,0.141113,0.0871582,0.0335083,-0.0118408,-0.044281,-0.0545654,-0.0420837,-0.00686646,0.0438232,0.101196,0.157013,0.206909,0.241669,0.25882,0.254456,0.231079,0.192261,0.14563,0.0983887,0.0584717,0.0303955,0.0173035,0.019165,0.0344543,0.0586243,0.0862122,0.110535,0.125366,0.125366,0.113525,0.0916748,0.0639343,0.0333557,0.000946045,-0.0325928,-0.0675049,-0.1026,-0.134705,-0.162933,-0.187408,-0.206909,-0.222961,-0.232941,-0.232483,-0.220154,-0.196777,-0.168091,-0.140808,-0.120361,-0.110382,-0.11319,-0.125671,-0.149048,-0.17807,-0.209412,-0.235291,-0.248993,-0.244629,-0.22171,-0.184448,-0.142822,-0.106171,-0.0821838,-0.073761,-0.0796814,-0.0966797,-0.125824,-0.164032,-0.200989,-0.228271,-0.231689,-0.192566,-0.107269,0.00888062,0.132843,0.249786,0.340851,0.400879,0.430817,0.43222,0.399475,0.330566,0.238098,0.145325,0.0804443,0.0637817,0.102753,0.177277,0.263977,0.344421,0.412262,0.464813,0.49176,0.4776,0.41507,0.305756,0.166992,0.0249329,-0.0965271,-0.186493,-0.244965,-0.270996,-0.268951,-0.241058,-0.191315,-0.126923,-0.0628357,-0.0177612,-0.00326538,-0.0169983,-0.054718,-0.106964,-0.169495,-0.237152,-0.30249,-0.35675,-0.387299,-0.38855,-0.360504,-0.309662,-0.242004,-0.168549,-0.0937195,-0.0232239,0.0417786,0.0930786,0.121155,0.121918,0.0951233,0.0487976,-0.00466919,-0.0531616,-0.0909119,-0.114288,-0.12146,-0.107269,-0.0731201,-0.0193481,0.0481873,0.118958,0.181335,0.224823,0.243866,0.237152,0.208618,0.163727,0.109131,0.0514526,-0.00140381,-0.042572,-0.0629883,-0.0594177,-0.0303955,0.0176086,0.0765686,0.137512,0.192719,0.235596,0.262573,0.266479,0.248535,0.211731,0.163574,0.113525,0.0703125,0.0386658,0.0227661,0.0215149,0.0360107,0.0611267,0.0913696,0.120361,0.139862,0.143921,0.131897,0.106171,0.0743713,0.0396118,0.00466919,-0.0313416,-0.0673523,-0.101044,-0.130981,-0.154053,-0.174011,-0.19162,-0.20816,-0.219696,-0.225464,-0.220795,-0.205963,-0.184448,-0.161835,-0.142975,-0.130829,-0.128479,-0.135651,-0.152802,-0.179626,-0.210968,-0.239655,-0.258057,-0.25946,-0.244324,-0.213623,-0.175568,-0.138153,-0.109314,-0.0926208,-0.0918274,-0.108978,-0.136597,-0.169189,-0.201141,-0.223602,-0.219696,-0.175415,-0.0932312,0.0190125,0.147186,0.271606,0.371704,0.433136,0.458862,0.449524,0.408966,0.341156,0.256165,0.168701,0.102905,0.0821838,0.118347,0.192261,0.282074,0.366577,0.435791,0.484589,0.502991,0.480865,0.411621,0.295471,0.152802,0.00796509,-0.117096,-0.212524,-0.272858,-0.295776,-0.289551,-0.257904,-0.20752,-0.142212,-0.0785828,-0.0328979,-0.0162048,-0.0308838,-0.0704651,-0.12738,-0.19101,-0.258209,-0.320251,-0.371399,-0.399323,-0.399017,-0.368439,-0.312469,-0.237946,-0.157318,-0.0760803,-0.00186157,0.063446,0.111938,0.138306,0.136444,0.106964,0.0564575,-0.000793457,-0.0517578,-0.0916748,-0.114899,-0.118652,-0.101044,-0.0617371,-0.00265503,0.0682983,0.141266,0.204559,0.247589,0.265533,0.255707,0.2211,0.168243,0.105255,0.0402222,-0.0179443,-0.0623779,-0.0835876,-0.0788879,-0.0464783,0.0093689,0.0751648,0.142517,0.202545,0.249329,0.275818,0.27771,0.255096,0.212219,0.158264,0.102753,0.0564575,0.0226135,0.00701904,0.010437,0.0302429,0.0614319,0.0955811,0.12442,0.142822,0.144073,0.131897,0.107117,0.0770264,0.0434875,0.00762939,-0.0300903,-0.0700073,-0.108673,-0.144226,-0.175415,-0.203949,-0.229034,-0.248993,-0.257111,-0.252594,-0.233246,-0.203003,-0.169189,-0.136902,-0.113831,-0.103546,-0.108826,-0.129089,-0.161987,-0.203796,-0.245575,-0.279724,-0.297333,-0.293915,-0.269287,-0.229218,-0.185089,-0.146881,-0.119904,-0.106659,-0.108063,-0.122406,-0.146423,-0.171051,-0.187103,-0.179474,-0.136902,-0.0586243,0.0483398,0.16684,0.279572,0.366882,0.417236,0.435333,0.4263,0.389954,0.330078,0.256653,0.186646,0.142365,0.143127,0.190216,0.262573,0.341309,0.406494,0.453583,0.477753,0.470581,0.424896,0.338043,0.217834,0.0834045,-0.044281,-0.145172,-0.214539,-0.250732,-0.257751,-0.24292,-0.211578,-0.167297,-0.116943,-0.0734253,-0.0519104,-0.0580139,-0.0891724,-0.137054,-0.194275,-0.25058,-0.303741,-0.347717,-0.377014,-0.382782,-0.363281,-0.319794,-0.256348,-0.184296,-0.11087,-0.044281,0.0146484,0.0626831,0.0961914,0.108673,0.096344,0.0639343,0.0182495,-0.0257263,-0.0615845,-0.0840454,-0.09198,-0.0834045,-0.0550537,-0.0109253,0.0470886,0.111023,0.169952,0.216248,0.24231,0.244629,0.222504,0.181335,0.128784,0.0718689,0.0193481,-0.0237122,-0.050354,-0.0555115,-0.0368042,0.00360107,0.0583191,0.117401,0.171661,0.214691,0.241516,0.249329,0.237,0.205505,0.163086,0.116943,0.0757751,0.046936,0.033844,0.038208,0.0541077,0.0788879,0.1026,0.12146,0.130676,0.128632,0.115387,0.0918274,0.0632935,0.0330505,0.00405884,-0.0241699,-0.053009,-0.0820007,-0.111023,-0.142365,-0.174164,-0.204895,-0.231384,-0.249176,-0.25415,-0.247284,-0.229034,-0.203156,-0.172607,-0.146576,-0.129425,-0.127228,-0.139252,-0.163574,-0.195374,-0.229034,-0.258667,-0.276611,-0.280029,-0.268646,-0.246185,-0.217346,-0.188812,-0.167297,-0.15686,-0.158112,-0.165741,-0.177429,-0.184937,-0.174164,-0.134552,-0.0632935,0.0305481,0.137848,0.245117,0.337097,0.399323,0.429108,0.428314,0.395111,0.337891,0.267883,0.201599,0.156219,0.149689,0.186157,0.254456,0.334778,0.408966,0.467285,0.503632,0.50769,0.470734,0.390259,0.269897,0.129272,-0.00842285,-0.12442,-0.208466,-0.257568,-0.272858,-0.25946,-0.225922,-0.176819,-0.119904,-0.0686035,-0.0386658,-0.0360107,-0.0631409,-0.112122,-0.174622,-0.241058,-0.303894,-0.357208,-0.394012,-0.407104,-0.392151,-0.350525,-0.2883,-0.211731,-0.130829,-0.0556641,0.0107727,0.0628357,0.0983887,0.112122,0.102142,0.0709534,0.0241699,-0.025116,-0.0673523,-0.0957336,-0.106018,-0.0974426,-0.0690613,-0.0233765,0.0350952,0.101807,0.164337,0.216095,0.247925,0.2565,0.239807,0.202087,0.149231,0.0915222,0.0327454,-0.0146484,-0.0470886,-0.0586243,-0.046936,-0.0109253,0.0420837,0.104767,0.165131,0.214874,0.248077,0.261169,0.251495,0.222504,0.179474,0.129272,0.0796814,0.0403748,0.0184021,0.0158997,0.0310364,0.0567627,0.0846558,0.107269,0.121002,0.124878,0.118652,0.102905,0.0796814,0.0506592,0.0188599,-0.0138855,-0.0472412,-0.0779724,-0.111328,-0.14563,-0.183044,-0.219238,-0.246368,-0.26178,-0.262421,-0.249481,-0.22641,-0.195221,-0.163086,-0.134247,-0.115082,-0.111633,-0.125977,-0.154816,-0.192719,-0.233887,-0.268951,-0.290314,-0.295776,-0.286102,-0.265381,-0.238251,-0.210815,-0.187897,-0.17337,-0.166382,-0.165894,-0.167938,-0.161835,-0.135498,-0.0823364,-0.00265503,0.0944824,0.198639,0.292206,0.361115,0.397919,0.408356,0.390594,0.349274,0.292053,0.231079,0.180725,0.162323,0.185852,0.248383,0.328369,0.407104,0.467621,0.503784,0.510651,0.479767,0.407745,0.295471,0.158264,0.0160522,-0.106018,-0.196472,-0.248383,-0.26474,-0.250885,-0.217651,-0.171356,-0.118805,-0.069397,-0.0363159,-0.0307312,-0.0558167,-0.106323,-0.17215,-0.24292,-0.306702,-0.362061,-0.399323,-0.41568,-0.403839,-0.36377,-0.30014,-0.220459,-0.135498,-0.0553589,0.0123291,0.0646973,0.100891,0.115082,0.106659,0.0736084,0.0249329,-0.0297852,-0.0759277,-0.10495,-0.115082,-0.103851,-0.073761,-0.025116,0.0369568,0.106171,0.173218,0.226868,0.259613,0.266479,0.24823,0.207062,0.152191,0.0916748,0.0330505,-0.0154419,-0.0470886,-0.0576782,-0.0450745,-0.00857544,0.0448914,0.106964,0.165283,0.21283,0.243713,0.255707,0.247437,0.220459,0.17868,0.130188,0.083252,0.0455322,0.0255737,0.0210571,0.0308838,0.048645,0.0686035,0.0856018,0.0975952,0.102448,0.0996399,0.0890198,0.0717163,0.0491028,0.0241699,-0.00341797,-0.0330505,-0.0668945,-0.106323,-0.151703,-0.19693,-0.235901,-0.26178,-0.274567,-0.271454,-0.256012,-0.229218,-0.193176,-0.155762,-0.124268,-0.107269,-0.109467,-0.130829,-0.165741,-0.207062,-0.247284,-0.278473,-0.29657,-0.300629,-0.290802,-0.272247,-0.248688,-0.221863,-0.197876,-0.177765,-0.168701,-0.161987,-0.150635,-0.124878,-0.0723572,0.00360107,0.0980835,0.200348,0.29422,0.362213,0.395416,0.403687,0.387299,0.350037,0.299835,0.238556,0.18399,0.157471,0.177277,0.242462,0.331482,0.418335,0.481964,0.517822,0.524689,0.494904,0.424103,0.308868,0.163239,0.00997925,-0.126129,-0.224365,-0.278625,-0.290802,-0.271149,-0.230621,-0.17868,-0.120514,-0.0642395,-0.025116,-0.0155945,-0.0424194,-0.0985413,-0.171967,-0.24823,-0.315582,-0.371552,-0.411011,-0.42691,-0.416321,-0.375153,-0.308563,-0.225464,-0.136749,-0.0538025,0.0160522,0.0692139,0.10556,0.125061,0.119446,0.0895081,0.0403748,-0.0184021,-0.0703125,-0.106659,-0.12146,-0.114288,-0.0870056,-0.0391235,0.0252686,0.098999,0.173706,0.234802,0.275513,0.290009,0.275513,0.234802,0.175262,0.107422,0.0411682,-0.0132446,-0.0497437,-0.0640869,-0.0523987,-0.0163574,0.0411682,0.10791,0.17276,0.22467,0.257904,0.269287,0.259308,0.229034,0.183838,0.132843,0.0827942,0.0431824,0.0205688,0.0149536,0.0223083,0.0374146,0.0528564,0.0648499,0.0722046,0.0723572,0.0682983,0.0608215,0.0484924,0.033844,0.0157471,-0.00296021,-0.0269775,-0.0597229,-0.101349,-0.152496,-0.206604,-0.253204,-0.286285,-0.302032,-0.299042,-0.278931,-0.244476,-0.198334,-0.152008,-0.112732,-0.092926,-0.0938721,-0.116302,-0.155609,-0.203308,-0.249634,-0.287506,-0.312164,-0.323395,-0.319489,-0.301697,-0.27536,-0.244019,-0.214539,-0.186493,-0.164337,-0.140472,-0.102448,-0.0419312,0.0366516,0.124878,0.218903,0.307465,0.372803,0.406342,0.411621,0.391663,0.350525,0.293915,0.235291,0.185852,0.162781,0.182892,0.247589,0.338348,0.43158,0.505951,0.551025,0.56366,0.533875,0.454346,0.328674,0.169189,0.00125122,-0.146729,-0.257416,-0.322144,-0.339142,-0.316833,-0.265381,-0.198944,-0.126465,-0.059082,-0.0133972,-0.00186157,-0.0299377,-0.0904236,-0.171661,-0.258667,-0.337097,-0.39978,-0.441101,-0.455902,-0.43924,-0.390259,-0.315582,-0.227325,-0.135193,-0.0495911,0.0221558,0.0756226,0.111633,0.127869,0.122253,0.0927734,0.0464783,-0.00717163,-0.0575256,-0.0935669,-0.112732,-0.110718,-0.088562,-0.0455322,0.0137329,0.0852966,0.158264,0.22345,0.268799,0.29126,0.286591,0.255707,0.203003,0.138763,0.0734253,0.0151367,-0.026825,-0.0470886,-0.042572,-0.0126343,0.039917,0.104767,0.17041,0.224365,0.259918,0.275208,0.267731,0.241821,0.200043,0.151093,0.10321,0.0651855,0.0410156,0.0321045,0.0336914,0.0397644,0.0456848,0.0481873,0.044281,0.0358582,0.025116,0.0152893,0.00360107,-0.00637817,-0.0155945,-0.025116,-0.0413208,-0.0681458,-0.106506,-0.155914,-0.208466,-0.258514,-0.297485,-0.319794,-0.323853,-0.308411,-0.276306,-0.232483,-0.185394,-0.14502,-0.118042,-0.110718,-0.121307,-0.148743,-0.185242,-0.22345,-0.258514,-0.2883,-0.308716,-0.318848,-0.317291,-0.305145,-0.284882,-0.256958,-0.222198,-0.176819,-0.11554,-0.0322876,0.0679932,0.174011,0.276306,0.366882,0.427216,0.452484,0.44577,0.411316,0.352692,0.284088,0.217834,0.167603,0.147827,0.173859,0.242004,0.338959,0.443756,0.532013,0.590149,0.610748,0.583771,0.501129,0.369537,0.200043,0.0195007,-0.145782,-0.271759,-0.35083,-0.379822,-0.363922,-0.31076,-0.236847,-0.153595,-0.0748291,-0.019165,0.00109863,-0.019165,-0.0757751,-0.158417,-0.251984,-0.342102,-0.416473,-0.469025,-0.490387,-0.477417,-0.428619,-0.351929,-0.255249,-0.153107,-0.0558167,0.0261841,0.0873108,0.125977,0.142517,0.131439,0.0974426,0.0467834,-0.0102844,-0.0615845,-0.0991516,-0.115845,-0.112427,-0.0854492,-0.0393066,0.0240173,0.0955811,0.1698,0.231842,0.275055,0.294373,0.289246,0.257751,0.206909,0.144836,0.0804443,0.0241699,-0.0149536,-0.0308838,-0.0232239,0.0093689,0.0608215,0.122559,0.184753,0.236389,0.271301,0.285492,0.280029,0.255707,0.217041,0.171356,0.12677,0.0893555,0.0631409,0.0458374,0.0354004,0.0286865,0.0229187,0.0198059,0.0157471,0.0129395,0.0093689,0.0045166,-0.00250244,-0.0121765,-0.0235291,-0.040863,-0.0676575,-0.108215,-0.159363,-0.214233,-0.265381,-0.305603,-0.328674,-0.335236,-0.324463,-0.299988,-0.261932,-0.21875,-0.179138,-0.149689,-0.138,-0.143433,-0.164642,-0.195374,-0.227631,-0.257904,-0.284241,-0.304657,-0.319183,-0.323212,-0.317596,-0.302185,-0.276123,-0.241058,-0.192871,-0.121765,-0.0277405,0.0818481,0.19632,0.308258,0.402893,0.463715,0.484924,0.472748,0.428772,0.362366,0.286438,0.215637,0.165436,0.149689,0.183044,0.261475,0.366425,0.474152,0.563507,0.620728,0.637726,0.603424,0.511414,0.368439,0.189606,0.00170898,-0.165131,-0.289062,-0.363281,-0.38623,-0.363922,-0.306702,-0.227325,-0.139862,-0.0601807,-0.00732422,0.00546265,-0.0246277,-0.0918274,-0.183197,-0.282379,-0.374512,-0.449677,-0.497223,-0.512207,-0.489441,-0.429718,-0.342712,-0.23996,-0.135956,-0.0411682,0.0347595,0.0862122,0.114594,0.120209,0.101044,0.0612793,0.00967407,-0.0417786,-0.0827942,-0.105865,-0.109314,-0.0926208,-0.0592651,-0.00967407,0.0494385,0.115234,0.178986,0.229675,0.261932,0.272858,0.263672,0.23465,0.192566,0.14267,0.0927734,0.048645,0.0184021,0.00686646,0.0160522,0.0450745,0.0896606,0.140656,0.19101,0.231537,0.25882,0.271454,0.269287,0.25119,0.222198,0.187897,0.154663,0.125366,0.100403,0.0778198,0.0555115,0.0321045,0.00967407,-0.00778198,-0.0201111,-0.0246277,-0.0226135,-0.0174561,-0.0121765,-0.0116882,-0.0166931,-0.0343018,-0.0679932,-0.119446,-0.182129,-0.247131,-0.305298,-0.345825,-0.365326,-0.363617,-0.342712,-0.307953,-0.263672,-0.218292,-0.18103,-0.157166,-0.152649,-0.16449,-0.191315,-0.22406,-0.257416,-0.289398,-0.316986,-0.338806,-0.352386,-0.352386,-0.340363,-0.312775,-0.270203,-0.209076,-0.122711,-0.0135803,0.111176,0.236206,0.35379,0.444366,0.495514,0.50473,0.481476,0.429108,0.360016,0.28363,0.216095,0.170258,0.165131,0.212982,0.300293,0.41037,0.513916,0.591248,0.633362,0.632416,0.582977,0.4776,0.324615,0.14328,-0.0379028,-0.190521,-0.297028,-0.351593,-0.358612,-0.325256,-0.266632,-0.192871,-0.116791,-0.0533142,-0.0182495,-0.0226135,-0.0657959,-0.139709,-0.229218,-0.317596,-0.393707,-0.449677,-0.479156,-0.479767,-0.447327,-0.383728,-0.297974,-0.201599,-0.109467,-0.02948,0.0300903,0.0682983,0.0873108,0.0860596,0.065033,0.0271301,-0.0188599,-0.0620422,-0.0926208,-0.104767,-0.0974426,-0.0729675,-0.033844,0.0154419,0.0709534,0.127686,0.179626,0.217194,0.238251,0.23996,0.224365,0.193665,0.154999,0.114746,0.079834,0.0544128,0.041626,0.0431824,0.0587769,0.0877686,0.127228,0.168701,0.207062,0.235901,0.253204,0.260071,0.257568,0.247589,0.230927,0.208771,0.182739,0.152649,0.119293,0.0845032,0.0498962,0.0168457,-0.0115356,-0.031189,-0.0428772,-0.0441284,-0.0379028,-0.0260315,-0.0154419,-0.013092,-0.0237122,-0.0534668,-0.100403,-0.160767,-0.225616,-0.286102,-0.334442,-0.366272,-0.377014,-0.366089,-0.336151,-0.293121,-0.245728,-0.203491,-0.17337,-0.160126,-0.164642,-0.182587,-0.210815,-0.247284,-0.287048,-0.325409,-0.3591,-0.381836,-0.390594,-0.379364,-0.348022,-0.292969,-0.211578,-0.101807,0.0272827,0.162781,0.292206,0.401794,0.477905,0.510651,0.501282,0.45871,0.387299,0.306549,0.231842,0.178833,0.160767,0.187561,0.260864,0.365479,0.480408,0.583313,0.650024,0.672943,0.642242,0.556335,0.41803,0.242462,0.0541077,-0.119598,-0.253998,-0.336792,-0.367188,-0.348022,-0.292053,-0.213135,-0.128784,-0.0544128,-0.00622559,0.00515747,-0.0257263,-0.0924683,-0.183533,-0.282532,-0.374512,-0.444855,-0.486786,-0.495514,-0.46933,-0.411774,-0.327759,-0.231232,-0.133789,-0.0462952,0.0215149,0.0654907,0.0848083,0.083252,0.0622253,0.0258789,-0.0187073,-0.0606384,-0.0941772,-0.111176,-0.108673,-0.0871582,-0.0498962,-0.00265503,0.050354,0.104156,0.154053,0.19162,0.214081,0.220154,0.209717,0.187897,0.156708,0.123169,0.0932312,0.0689087,0.0572205,0.0580139,0.0698547,0.0924683,0.121765,0.1539,0.184601,0.210022,0.227325,0.236694,0.240906,0.240112,0.236694,0.228271,0.213928,0.192261,0.162323,0.124573,0.081543,0.0358582,-0.00576782,-0.039917,-0.0615845,-0.0708008,-0.0668945,-0.0525513,-0.0354004,-0.0246277,-0.0260315,-0.0472412,-0.085907,-0.139069,-0.199585,-0.258667,-0.309662,-0.347229,-0.364868,-0.362671,-0.342255,-0.309814,-0.272095,-0.235138,-0.207367,-0.191467,-0.187408,-0.194427,-0.21048,-0.235138,-0.265991,-0.300629,-0.335541,-0.365631,-0.384491,-0.384491,-0.358917,-0.304504,-0.215027,-0.0951233,0.0452271,0.189606,0.325104,0.4375,0.512512,0.53949,0.518127,0.456543,0.36673,0.273804,0.19632,0.149536,0.144379,0.186005,0.2724,0.387787,0.510162,0.61557,0.679504,0.688538,0.637878,0.52655,0.366577,0.177582,-0.0141907,-0.180389,-0.300446,-0.367035,-0.378265,-0.340363,-0.267731,-0.178223,-0.0916748,-0.0240173,0.0118408,0.00497437,-0.043335,-0.124573,-0.224213,-0.32431,-0.411621,-0.471191,-0.498474,-0.488983,-0.44577,-0.372498,-0.278931,-0.177429,-0.0821838,-0.0015564,0.0558167,0.0857544,0.091217,0.07547,0.0427246,0.000152588,-0.044281,-0.0816956,-0.10495,-0.109619,-0.0935669,-0.0601807,-0.0149536,0.0379028,0.0898132,0.138611,0.175568,0.200043,0.208008,0.201294,0.183044,0.157013,0.127533,0.101044,0.0804443,0.069397,0.0692139,0.0804443,0.100891,0.12677,0.156403,0.184601,0.208466,0.22702,0.236847,0.241516,0.24231,0.240112,0.232941,0.219238,0.195984,0.163239,0.121918,0.0760803,0.0282288,-0.0163574,-0.0517578,-0.0753174,-0.0845032,-0.082489,-0.0684509,-0.0491028,-0.0360107,-0.0357056,-0.0569153,-0.0980835,-0.152008,-0.21347,-0.269897,-0.317444,-0.352234,-0.366577,-0.360962,-0.333984,-0.295471,-0.252899,-0.214081,-0.187256,-0.173706,-0.175415,-0.186005,-0.20752,-0.236694,-0.272552,-0.310608,-0.345062,-0.371704,-0.382477,-0.373596,-0.339447,-0.275665,-0.176971,-0.050354,0.0926208,0.234192,0.363281,0.461517,0.51532,0.526245,0.49411,0.426758,0.33725,0.249481,0.180389,0.144073,0.155457,0.21579,0.313721,0.432678,0.547119,0.633667,0.676849,0.664215,0.591095,0.460449,0.288452,0.0986938,-0.0837402,-0.22998,-0.325714,-0.366577,-0.354889,-0.301544,-0.220795,-0.132538,-0.0556641,-0.00531006,0.00497437,-0.0258789,-0.0952759,-0.188812,-0.290009,-0.381226,-0.449982,-0.488037,-0.489746,-0.457794,-0.394958,-0.309021,-0.212982,-0.120361,-0.0405273,0.019165,0.0541077,0.0657959,0.0601807,0.0393066,0.00717163,-0.0275879,-0.0587769,-0.0788879,-0.0848083,-0.0736084,-0.0472412,-0.010437,0.0321045,0.0756226,0.114594,0.14859,0.171814,0.182434,0.183044,0.174622,0.158875,0.14032,0.121765,0.108063,0.0980835,0.0954285,0.101196,0.112885,0.129272,0.14798,0.167603,0.187256,0.205658,0.2211,0.233582,0.244629,0.252594,0.254761,0.249176,0.233734,0.205658,0.164642,0.114288,0.0576782,-0.000793457,-0.0538025,-0.0933838,-0.116302,-0.121155,-0.111633,-0.0940247,-0.0774841,-0.0700073,-0.0776367,-0.103363,-0.145325,-0.19989,-0.258209,-0.312927,-0.35611,-0.382172,-0.387634,-0.372192,-0.342865,-0.303589,-0.263031,-0.227325,-0.2005,-0.186005,-0.185089,-0.198944,-0.225922,-0.261932,-0.301086,-0.337738,-0.365173,-0.374359,-0.358307,-0.311371,-0.232178,-0.120514,0.0162048,0.16217,0.30249,0.421753,0.50238,0.536682,0.526093,0.476959,0.401337,0.315582,0.239197,0.186005,0.167938,0.197388,0.270538,0.37265,0.486786,0.584717,0.64505,0.656891,0.612,0.513306,0.36673,0.191162,0.00952148,-0.153748,-0.274261,-0.343506,-0.359253,-0.327576,-0.26178,-0.180389,-0.100739,-0.0400696,-0.0113831,-0.0216675,-0.0723572,-0.152954,-0.249329,-0.342712,-0.418488,-0.465576,-0.479462,-0.459351,-0.408966,-0.335541,-0.246368,-0.155304,-0.0745239,-0.0121765,0.0272827,0.0427246,0.0396118,0.0226135,-0.00186157,-0.0302429,-0.0562744,-0.0731201,-0.0778198,-0.0657959,-0.0396118,-0.00360107,0.0374146,0.077179,0.111328,0.136902,0.152008,0.157318,0.154205,0.146576,0.136902,0.128326,0.121613,0.121002,0.123657,0.130188,0.140472,0.15094,0.162628,0.170746,0.178528,0.184753,0.192566,0.201599,0.214386,0.229034,0.245422,0.258362,0.264435,0.25882,0.238403,0.202393,0.151245,0.0893555,0.0235291,-0.0393066,-0.091217,-0.125671,-0.140015,-0.136108,-0.123322,-0.106812,-0.0968323,-0.101349,-0.121002,-0.157166,-0.206604,-0.26178,-0.316833,-0.362061,-0.390594,-0.39978,-0.387634,-0.360657,-0.323212,-0.28299,-0.246674,-0.218597,-0.201599,-0.198792,-0.210968,-0.237152,-0.272858,-0.314484,-0.354889,-0.384338,-0.392151,-0.369843,-0.309509,-0.208923,-0.0732727,0.0830994,0.239349,0.379364,0.490387,0.556335,0.575195,0.54184,0.46637,0.365631,0.263184,0.18634,0.148438,0.158722,0.220795,0.320404,0.44281,0.568176,0.66687,0.717865,0.703522,0.622742,0.480865,0.295166,0.092926,-0.098999,-0.255554,-0.359863,-0.404297,-0.390594,-0.326355,-0.229828,-0.124878,-0.0361633,0.0201111,0.0310364,-0.00656128,-0.0865479,-0.194916,-0.31076,-0.41803,-0.496613,-0.537781,-0.532013,-0.484283,-0.40274,-0.297485,-0.186157,-0.0826416,0.000305176,0.0566101,0.0820007,0.0779724,0.0513,0.0102844,-0.0347595,-0.0770264,-0.106964,-0.118958,-0.110535,-0.0823364,-0.0361633,0.0177612,0.0748291,0.124115,0.161224,0.183197,0.187897,0.179321,0.160919,0.138458,0.117706,0.102905,0.09729,0.101501,0.113037,0.133636,0.157318,0.183533,0.205505,0.223602,0.234802,0.240265,0.242767,0.243561,0.245422,0.247131,0.24884,0.246033,0.23761,0.219238,0.19162,0.151093,0.100098,0.0407104,-0.020752,-0.0773315,-0.12442,-0.152344,-0.164642,-0.164795,-0.158112,-0.154358,-0.154816,-0.167145,-0.189911,-0.222198,-0.262573,-0.304504,-0.343353,-0.371094,-0.384338,-0.382324,-0.364227,-0.337555,-0.304199,-0.271912,-0.243073,-0.223114,-0.213928,-0.21814,-0.236206,-0.26709,-0.303101,-0.340363,-0.367188,-0.374054,-0.347382,-0.282227,-0.17572,-0.035553,0.125519,0.281738,0.416779,0.516876,0.572693,0.576599,0.535126,0.454193,0.353638,0.255096,0.185089,0.157471,0.184601,0.263336,0.375305,0.499268,0.611664,0.689789,0.715515,0.676086,0.57489,0.415527,0.219391,0.0195007,-0.159668,-0.293274,-0.36969,-0.389648,-0.355652,-0.284241,-0.189758,-0.0952759,-0.0223083,0.0127869,-0.000610352,-0.0595703,-0.154663,-0.266632,-0.375458,-0.464172,-0.521881,-0.5401,-0.516571,-0.453735,-0.362518,-0.256165,-0.149841,-0.0586243,0.00872803,0.0484924,0.0625305,0.0544128,0.0299377,-0.00405884,-0.0422668,-0.0743713,-0.0965271,-0.100739,-0.0867004,-0.0531616,-0.00811768,0.0427246,0.0926208,0.136749,0.169952,0.187897,0.192413,0.184601,0.167603,0.146088,0.126129,0.112579,0.10791,0.112427,0.125824,0.148285,0.175415,0.203949,0.230438,0.25058,0.266632,0.274414,0.280029,0.282837,0.28363,0.282532,0.275208,0.261017,0.237946,0.202545,0.156067,0.100403,0.0386658,-0.0280762,-0.090271,-0.140808,-0.17215,-0.186493,-0.185699,-0.179321,-0.176361,-0.179321,-0.194122,-0.222198,-0.260712,-0.308411,-0.35675,-0.398376,-0.427216,-0.434235,-0.423798,-0.393402,-0.350037,-0.301086,-0.252441,-0.213623,-0.188202,-0.180878,-0.194275,-0.224365,-0.269287,-0.318695,-0.363281,-0.391205,-0.391998,-0.352386,-0.266327,-0.136108,0.0286865,0.203003,0.366577,0.497864,0.586731,0.62384,0.604828,0.537628,0.435181,0.317139,0.213928,0.150299,0.137207,0.184937,0.282684,0.411469,0.546021,0.661255,0.735321,0.744202,0.682465,0.555695,0.372345,0.16153,-0.0447388,-0.219543,-0.343964,-0.407745,-0.412872,-0.364227,-0.278931,-0.174957,-0.0784302,-0.00952148,0.0166931,-0.00671387,-0.0762329,-0.177582,-0.293762,-0.401978,-0.488647,-0.5401,-0.551025,-0.518127,-0.446869,-0.349121,-0.241516,-0.135956,-0.0492859,0.0129395,0.0483398,0.0583191,0.0470886,0.0205688,-0.0132446,-0.0475464,-0.0756226,-0.0909119,-0.0888672,-0.0687561,-0.0324402,0.0140381,0.0632935,0.110382,0.148438,0.174316,0.186951,0.187744,0.179474,0.164185,0.148743,0.135498,0.128479,0.12973,0.138,0.154358,0.177277,0.203308,0.228882,0.250732,0.268646,0.28299,0.293274,0.300446,0.303894,0.302338,0.296875,0.284882,0.266937,0.239807,0.200195,0.147827,0.0834045,0.00827026,-0.0678406,-0.134247,-0.184937,-0.218292,-0.234192,-0.238556,-0.235901,-0.230286,-0.227631,-0.235138,-0.258362,-0.295471,-0.341766,-0.387634,-0.424561,-0.447662,-0.45343,-0.443451,-0.415527,-0.372955,-0.32074,-0.267731,-0.223755,-0.198486,-0.194122,-0.211578,-0.244324,-0.287689,-0.332275,-0.363129,-0.368591,-0.336945,-0.258362,-0.129272,0.0386658,0.216248,0.381073,0.513763,0.600311,0.63678,0.620728,0.556,0.454987,0.337402,0.235596,0.168243,0.157471,0.211731,0.314178,0.442657,0.573639,0.678253,0.738586,0.735779,0.664703,0.527649,0.336792,0.124878,-0.0773315,-0.242767,-0.351746,-0.399933,-0.393219,-0.338959,-0.255249,-0.157471,-0.0709534,-0.0133972,-0.000793457,-0.0380554,-0.118195,-0.22702,-0.341461,-0.441254,-0.513458,-0.548828,-0.542908,-0.496918,-0.417236,-0.314484,-0.207367,-0.111023,-0.0389709,0.00531006,0.0243225,0.0223083,0.00637817,-0.0160522,-0.040863,-0.0618896,-0.0757751,-0.0768738,-0.0614319,-0.0317993,0.00747681,0.0495911,0.0895081,0.124268,0.149384,0.165131,0.17215,0.17276,0.168854,0.161377,0.153259,0.147827,0.148285,0.154816,0.16684,0.185242,0.208618,0.233246,0.253693,0.269592,0.28067,0.288605,0.29361,0.297028,0.30014,0.300293,0.297485,0.287201,0.269135,0.239655,0.196472,0.138916,0.0665894,-0.0135803,-0.0926208,-0.160919,-0.213928,-0.24588,-0.259766,-0.260864,-0.255707,-0.252289,-0.25354,-0.266785,-0.293274,-0.329163,-0.373108,-0.414917,-0.448273,-0.467285,-0.468231,-0.450775,-0.416779,-0.371094,-0.320404,-0.271759,-0.235748,-0.218292,-0.222809,-0.248077,-0.288147,-0.330383,-0.363464,-0.371094,-0.341614,-0.265076,-0.140472,0.0224609,0.203308,0.374359,0.518738,0.613861,0.65564,0.642395,0.580658,0.482727,0.364685,0.258362,0.185394,0.165436,0.212219,0.314484,0.446564,0.584229,0.693695,0.757782,0.755127,0.684021,0.546021,0.35083,0.12973,-0.0823364,-0.257416,-0.370789,-0.418488,-0.405701,-0.34613,-0.256958,-0.157013,-0.0682983,-0.0093689,0.00265503,-0.0377197,-0.124268,-0.240417,-0.361267,-0.463409,-0.533722,-0.562103,-0.546661,-0.493011,-0.406006,-0.298431,-0.187408,-0.0905762,-0.0215149,0.0158997,0.0247803,0.0112305,-0.0133972,-0.041626,-0.0673523,-0.0871582,-0.0943298,-0.0871582,-0.0620422,-0.0218201,0.0272827,0.0768738,0.11911,0.150146,0.167603,0.173065,0.168854,0.158417,0.145477,0.132843,0.124725,0.121307,0.127686,0.144531,0.170258,0.201752,0.237152,0.269592,0.295929,0.311371,0.319336,0.319641,0.314178,0.30484,0.294373,0.285034,0.275208,0.266144,0.25354,0.231842,0.197693,0.146881,0.0805969,0.0045166,-0.0723572,-0.141418,-0.19928,-0.239655,-0.265991,-0.279419,-0.284393,-0.287689,-0.292969,-0.308563,-0.334442,-0.365631,-0.401337,-0.431427,-0.454193,-0.464966,-0.462616,-0.447479,-0.417542,-0.377655,-0.333679,-0.292664,-0.265839,-0.257904,-0.271149,-0.300293,-0.337738,-0.370483,-0.382782,-0.362213,-0.29953,-0.190063,-0.0377197,0.138916,0.316223,0.472595,0.591095,0.655334,0.664368,0.619324,0.530609,0.416321,0.302948,0.220795,0.183685,0.21048,0.298737,0.422241,0.562866,0.689026,0.772888,0.796295,0.743744,0.620239,0.432831,0.208466,-0.0127869,-0.204895,-0.34256,-0.413818,-0.423492,-0.377319,-0.294678,-0.193665,-0.09729,-0.0285339,-0.00341797,-0.0317993,-0.109619,-0.222198,-0.34848,-0.462311,-0.546356,-0.590485,-0.585632,-0.536835,-0.451233,-0.339142,-0.220001,-0.110535,-0.0271301,0.0229187,0.0422668,0.0328979,0.00686646,-0.0274353,-0.0600281,-0.0854492,-0.0966797,-0.0923157,-0.0686035,-0.0285339,0.0218201,0.076416,0.123169,0.159515,0.180878,0.187256,0.181641,0.168549,0.152191,0.135956,0.122711,0.115845,0.117889,0.130676,0.1539,0.184937,0.2211,0.256958,0.288452,0.310913,0.324951,0.330078,0.328369,0.319946,0.308105,0.295624,0.282684,0.268494,0.251495,0.227478,0.192108,0.142822,0.0787354,0.00561523,-0.0678406,-0.134094,-0.189301,-0.228882,-0.254761,-0.268341,-0.275055,-0.279266,-0.286438,-0.30249,-0.328522,-0.362671,-0.39917,-0.432983,-0.457458,-0.46994,-0.469482,-0.456055,-0.429718,-0.393219,-0.350189,-0.31012,-0.281586,-0.271759,-0.28363,-0.312775,-0.348175,-0.377319,-0.383728,-0.357697,-0.289398,-0.173218,-0.0169983,0.158264,0.331177,0.483032,0.593445,0.650818,0.652527,0.602173,0.511261,0.402435,0.299988,0.226715,0.2005,0.239349,0.332886,0.460907,0.600464,0.716614,0.786011,0.790222,0.719879,0.582672,0.388092,0.166534,-0.046936,-0.225922,-0.345825,-0.401337,-0.394806,-0.340057,-0.255554,-0.161072,-0.0785828,-0.0282288,-0.0218201,-0.0661011,-0.155457,-0.272858,-0.396667,-0.50174,-0.57254,-0.599823,-0.578613,-0.516266,-0.42334,-0.311066,-0.198486,-0.0999451,-0.0289917,0.0105896,0.020752,0.00827026,-0.0193481,-0.0472412,-0.0704651,-0.085144,-0.0863953,-0.0726624,-0.0419312,0.0015564,0.0534668,0.103851,0.146729,0.177429,0.193665,0.196777,0.190216,0.178528,0.165131,0.151245,0.139557,0.134247,0.137207,0.150452,0.174469,0.207214,0.245117,0.282227,0.312927,0.332123,0.337891,0.332886,0.319489,0.301544,0.284088,0.269135,0.258209,0.246185,0.227966,0.200195,0.157959,0.103058,0.0366516,-0.0371094,-0.109924,-0.176819,-0.228577,-0.263336,-0.281433,-0.287354,-0.29126,-0.297485,-0.311066,-0.332428,-0.358307,-0.387299,-0.413361,-0.436432,-0.450623,-0.454041,-0.444366,-0.422699,-0.391663,-0.353943,-0.321503,-0.298126,-0.288757,-0.298126,-0.321808,-0.355957,-0.384644,-0.392761,-0.368134,-0.299988,-0.187744,-0.035553,0.137054,0.306244,0.456848,0.571442,0.637726,0.650818,0.612,0.52887,0.418488,0.311829,0.234985,0.20224,0.23233,0.320587,0.441254,0.577057,0.698212,0.780396,0.800964,0.751373,0.630219,0.445312,0.225464,0.00827026,-0.180542,-0.316376,-0.387787,-0.399017,-0.359406,-0.284393,-0.192413,-0.104156,-0.0414734,-0.0212097,-0.053009,-0.132843,-0.246674,-0.373901,-0.487732,-0.572693,-0.615723,-0.612457,-0.564423,-0.480713,-0.372192,-0.256348,-0.150146,-0.0682983,-0.0169983,0.00622559,0.006073,-0.0102844,-0.0325928,-0.0533142,-0.0679932,-0.0726624,-0.0629883,-0.0386658,0.000457764,0.0470886,0.0965271,0.138,0.172607,0.193665,0.2052,0.206909,0.204895,0.199738,0.192413,0.184601,0.177765,0.175873,0.181793,0.196777,0.219543,0.24884,0.27832,0.304993,0.323395,0.332733,0.33197,0.323395,0.310913,0.295624,0.282532,0.269745,0.257751,0.23761,0.204895,0.155609,0.0909119,0.0165405,-0.0637817,-0.141571,-0.207062,-0.261322,-0.291565,-0.305603,-0.304352,-0.299988,-0.299835,-0.307007,-0.327118,-0.355347,-0.385895,-0.417725,-0.443909,-0.462006,-0.469177,-0.462158,-0.442047,-0.406006,-0.364227,-0.325409,-0.297485,-0.284882,-0.29126,-0.312927,-0.344116,-0.371246,-0.379059,-0.354889,-0.289856,-0.18103,-0.031189,0.13736,0.301697,0.446869,0.554779,0.619629,0.63443,0.600464,0.524994,0.425659,0.327576,0.258514,0.233734,0.270996,0.361908,0.481018,0.610901,0.719421,0.787415,0.796753,0.734863,0.607147,0.420532,0.203003,-0.00622559,-0.181641,-0.301239,-0.356598,-0.357361,-0.311371,-0.239502,-0.155609,-0.0799866,-0.033844,-0.0305481,-0.0802917,-0.173553,-0.294525,-0.42334,-0.530762,-0.604187,-0.634277,-0.618225,-0.56131,-0.471649,-0.362366,-0.251343,-0.154205,-0.0845032,-0.04599,-0.0339966,-0.042572,-0.0620422,-0.084198,-0.100098,-0.106659,-0.100555,-0.0790405,-0.0414734,0.00872803,0.0654907,0.118958,0.164032,0.198029,0.217499,0.225159,0.223755,0.21875,0.212982,0.206604,0.19989,0.197235,0.198639,0.209869,0.228119,0.254944,0.287842,0.319336,0.34613,0.362976,0.36734,0.362823,0.348633,0.328827,0.308716,0.287506,0.26944,0.249481,0.222809,0.18399,0.128632,0.0600281,-0.0182495,-0.0988464,-0.174164,-0.235748,-0.281891,-0.308411,-0.318542,-0.316986,-0.312775,-0.314484,-0.324158,-0.347229,-0.379364,-0.41272,-0.446564,-0.471039,-0.485992,-0.486938,-0.472748,-0.443451,-0.401184,-0.354553,-0.314636,-0.289551,-0.285645,-0.302948,-0.335693,-0.37326,-0.397614,-0.393402,-0.349579,-0.257416,-0.12085,0.0470886,0.222504,0.384338,0.518127,0.606384,0.642242,0.625702,0.562561,0.466034,0.359406,0.27301,0.229034,0.24231,0.316528,0.433777,0.569427,0.698517,0.793945,0.835724,0.804565,0.701477,0.533722,0.318085,0.0954285,-0.101196,-0.24823,-0.331635,-0.352539,-0.321045,-0.253693,-0.168701,-0.0834045,-0.0218201,0.000152588,-0.0299377,-0.111328,-0.229828,-0.366089,-0.492706,-0.590149,-0.643494,-0.649719,-0.607635,-0.527649,-0.421448,-0.307159,-0.200684,-0.119598,-0.0714111,-0.054718,-0.0631409,-0.0863953,-0.115387,-0.138611,-0.150635,-0.147034,-0.12677,-0.0870056,-0.0324402,0.0310364,0.0935669,0.149231,0.190521,0.21579,0.226562,0.225006,0.218597,0.209412,0.2005,0.194427,0.193512,0.198944,0.213287,0.237793,0.269592,0.306061,0.342255,0.37265,0.39151,0.397278,0.389343,0.370483,0.343353,0.316223,0.291718,0.273651,0.258514,0.240112,0.213135,0.169189,0.109772,0.0385132,-0.0422668,-0.122101,-0.195526,-0.25415,-0.297028,-0.319794,-0.325867,-0.327759,-0.331024,-0.341461,-0.362061,-0.390259,-0.420837,-0.448273,-0.471039,-0.484436,-0.487244,-0.475403,-0.44873,-0.409912,-0.365631,-0.327423,-0.303741,-0.299835,-0.316223,-0.349426,-0.389038,-0.420197,-0.42691,-0.395874,-0.315735,-0.185547,-0.0146484,0.170898,0.345978,0.493164,0.596405,0.647369,0.641144,0.582977,0.4888,0.37326,0.271301,0.210968,0.206909,0.269287,0.388855,0.535889,0.68277,0.800507,0.870209,0.862701,0.778656,0.625244,0.412262,0.176819,-0.0394592,-0.211426,-0.31778,-0.357361,-0.33429,-0.26944,-0.182892,-0.0901184,-0.0163574,0.0210571,0.00857544,-0.0603333,-0.17276,-0.311829,-0.451538,-0.566467,-0.639893,-0.663757,-0.637726,-0.569122,-0.467438,-0.352234,-0.240753,-0.146881,-0.0860596,-0.0594177,-0.0608215,-0.0829468,-0.114441,-0.144073,-0.162781,-0.167603,-0.155762,-0.124878,-0.0765686,-0.0166931,0.0467834,0.106171,0.154205,0.187744,0.206299,0.21347,0.21347,0.210815,0.209076,0.207214,0.20816,0.212982,0.224213,0.24292,0.269135,0.301392,0.335388,0.365784,0.387939,0.397125,0.395874,0.38623,0.369537,0.350342,0.332581,0.315582,0.300293,0.27832,0.246368,0.197235,0.131744,0.053009,-0.033844,-0.12146,-0.198639,-0.25882,-0.299042,-0.320099,-0.324158,-0.320099,-0.318085,-0.321655,-0.336487,-0.362671,-0.396667,-0.433929,-0.468384,-0.494904,-0.508606,-0.505493,-0.485535,-0.450623,-0.405853,-0.359406,-0.323853,-0.304657,-0.307159,-0.329926,-0.365631,-0.39978,-0.414429,-0.395874,-0.332733,-0.220001,-0.0665894,0.108521,0.28067,0.436584,0.556488,0.624634,0.637085,0.597168,0.511719,0.402435,0.301544,0.232483,0.212067,0.2565,0.359406,0.495667,0.646149,0.776184,0.859741,0.872223,0.807678,0.671875,0.473053,0.24231,0.020752,-0.164337,-0.290466,-0.34787,-0.340057,-0.281586,-0.192719,-0.0955811,-0.0126343,0.0357056,0.0346069,-0.0227661,-0.130188,-0.269287,-0.417236,-0.545563,-0.635529,-0.675293,-0.660156,-0.598114,-0.500183,-0.384491,-0.266632,-0.165588,-0.0935669,-0.0576782,-0.0528564,-0.0732727,-0.108215,-0.143127,-0.169006,-0.180725,-0.174957,-0.147491,-0.101349,-0.0419312,0.0249329,0.087616,0.139862,0.177277,0.198181,0.206116,0.204407,0.200195,0.195831,0.193817,0.197235,0.204895,0.219238,0.240753,0.269592,0.304199,0.340851,0.373444,0.395874,0.404785,0.399933,0.38623,0.36673,0.347717,0.331482,0.320251,0.308258,0.293457,0.264923,0.220001,0.157013,0.078125,-0.0090332,-0.101349,-0.184601,-0.254944,-0.30249,-0.328827,-0.335846,-0.330566,-0.324158,-0.322754,-0.328827,-0.347382,-0.373596,-0.404297,-0.435486,-0.464478,-0.485992,-0.494568,-0.485077,-0.459503,-0.420044,-0.37796,-0.343018,-0.322449,-0.318695,-0.332886,-0.360321,-0.387939,-0.40274,-0.388245,-0.336151,-0.237793,-0.0975952,0.0692139,0.237305,0.391205,0.512207,0.584717,0.607941,0.582214,0.510956,0.412567,0.313721,0.238708,0.210022,0.242615,0.338501,0.470734,0.618378,0.751221,0.841034,0.868011,0.821869,0.704437,0.522949,0.300629,0.0773315,-0.116486,-0.255249,-0.325867,-0.329926,-0.282532,-0.20224,-0.108215,-0.0227661,0.0352478,0.0483398,0.00482178,-0.0905762,-0.226227,-0.376251,-0.514526,-0.616364,-0.66983,-0.669525,-0.621338,-0.534821,-0.424896,-0.306549,-0.198181,-0.116638,-0.0681458,-0.0544128,-0.0675049,-0.0980835,-0.134247,-0.162933,-0.180542,-0.180389,-0.160278,-0.120514,-0.0646973,0.00125122,0.0675049,0.126282,0.172302,0.201904,0.216431,0.219543,0.21579,0.21048,0.204895,0.202087,0.202698,0.208923,0.222656,0.24588,0.276459,0.313232,0.349579,0.379822,0.399323,0.405548,0.400085,0.384979,0.363464,0.341156,0.319,0.301392,0.283142,0.257751,0.219543,0.167145,0.0986938,0.0182495,-0.0686035,-0.150146,-0.221405,-0.275055,-0.310913,-0.329315,-0.333832,-0.331635,-0.329773,-0.333679,-0.347076,-0.369843,-0.397614,-0.428162,-0.454193,-0.473846,-0.482422,-0.478363,-0.461365,-0.430664,-0.392151,-0.355499,-0.325867,-0.314819,-0.323395,-0.349579,-0.380615,-0.400879,-0.396973,-0.357849,-0.275818,-0.152344,0.00622559,0.175568,0.339142,0.479004,0.575806,0.62323,0.612457,0.553223,0.46106,0.357697,0.268951,0.217499,0.21814,0.280487,0.392609,0.534821,0.679504,0.794586,0.857086,0.845398,0.759033,0.602936,0.395874,0.1698,-0.0386658,-0.204559,-0.309021,-0.346313,-0.323212,-0.253052,-0.159027,-0.0628357,0.0140381,0.0511475,0.0360107,-0.0343018,-0.151398,-0.294861,-0.440308,-0.563202,-0.643799,-0.673584,-0.649414,-0.580017,-0.478058,-0.361725,-0.24823,-0.154663,-0.0909119,-0.0603333,-0.0600281,-0.0818481,-0.116486,-0.149384,-0.174469,-0.183533,-0.174774,-0.144379,-0.0958862,-0.033844,0.0327454,0.0960388,0.150146,0.188812,0.213623,0.223907,0.22467,0.220795,0.215179,0.21048,0.209869,0.215027,0.227478,0.248383,0.279114,0.314819,0.352844,0.386688,0.409912,0.418488,0.412415,0.395416,0.369537,0.343658,0.32074,0.302185,0.286591,0.265076,0.233582,0.184143,0.118652,0.0400696,-0.0458374,-0.131592,-0.209259,-0.272247,-0.315735,-0.338806,-0.345367,-0.341309,-0.338654,-0.341309,-0.353149,-0.374359,-0.400238,-0.426605,-0.449829,-0.468231,-0.478821,-0.476807,-0.459961,-0.430328,-0.391663,-0.354889,-0.327759,-0.317139,-0.324158,-0.347534,-0.376404,-0.401031,-0.405396,-0.379364,-0.311829,-0.198944,-0.0453796,0.127869,0.298584,0.447479,0.559296,0.621643,0.628998,0.587677,0.506592,0.400726,0.300293,0.230774,0.21048,0.252747,0.353149,0.489594,0.635376,0.760895,0.843536,0.85849,0.798462,0.668579,0.477264,0.250732,0.0297852,-0.155151,-0.284241,-0.34613,-0.341461,-0.288757,-0.203796,-0.107269,-0.0218201,0.0333557,0.0422668,-0.00421143,-0.103363,-0.238403,-0.38559,-0.519379,-0.616516,-0.665314,-0.660645,-0.608398,-0.517822,-0.404449,-0.287994,-0.18335,-0.106659,-0.0639343,-0.0552063,-0.0731201,-0.107422,-0.14624,-0.176361,-0.193176,-0.191467,-0.167786,-0.123322,-0.0632935,0.00497437,0.0740662,0.134399,0.180542,0.209412,0.223114,0.22406,0.219543,0.212372,0.206604,0.203949,0.206299,0.215027,0.232025,0.258362,0.292053,0.331177,0.36969,0.40274,0.424744,0.43222,0.42691,0.409149,0.383575,0.355652,0.327271,0.301239,0.276764,0.247131,0.207672,0.153595,0.0860596,0.00686646,-0.076416,-0.156555,-0.226868,-0.281281,-0.317291,-0.336334,-0.341461,-0.341614,-0.343811,-0.351929,-0.36969,-0.396362,-0.425812,-0.455139,-0.478363,-0.493347,-0.497375,-0.486328,-0.462921,-0.426453,-0.382172,-0.341949,-0.313232,-0.302643,-0.312622,-0.338501,-0.373596,-0.402893,-0.413177,-0.387939,-0.318695,-0.204559,-0.0497437,0.129425,0.31012,0.46933,0.586884,0.653168,0.66156,0.617767,0.535278,0.427063,0.322601,0.249176,0.221558,0.256653,0.352234,0.488647,0.637726,0.766052,0.850555,0.866913,0.806885,0.678558,0.48584,0.257751,0.033844,-0.158875,-0.295319,-0.362061,-0.361908,-0.308258,-0.226562,-0.131897,-0.0483398,0.00546265,0.0169983,-0.0249329,-0.117889,-0.248535,-0.391815,-0.5242,-0.620087,-0.666565,-0.661255,-0.610107,-0.522339,-0.413177,-0.299225,-0.194733,-0.115692,-0.0698547,-0.0564575,-0.069397,-0.0988464,-0.131439,-0.158569,-0.172607,-0.170898,-0.148285,-0.109314,-0.0552063,0.00796509,0.0715637,0.129883,0.174164,0.203949,0.21875,0.2211,0.217194,0.212372,0.209564,0.208771,0.21283,0.220459,0.236389,0.260223,0.292664,0.329926,0.366577,0.397919,0.416168,0.420685,0.413513,0.39743,0.376556,0.35379,0.331177,0.31012,0.288605,0.260864,0.223907,0.171051,0.104767,0.0269775,-0.0601807,-0.142822,-0.215942,-0.270691,-0.307312,-0.326508,-0.332428,-0.334442,-0.336151,-0.344421,-0.361908,-0.388855,-0.419128,-0.449677,-0.475861,-0.493164,-0.497559,-0.490387,-0.469482,-0.43689,-0.395721,-0.356903,-0.324951,-0.309204,-0.311523,-0.330719,-0.362976,-0.395264,-0.413971,-0.40509,-0.358002,-0.270203,-0.135193,0.033844,0.217194,0.391815,0.539185,0.637085,0.679504,0.664703,0.601074,0.504089,0.395416,0.306396,0.25058,0.247284,0.306549,0.416626,0.556,0.69635,0.805786,0.861786,0.844299,0.754669,0.598114,0.386383,0.159363,-0.0538025,-0.224823,-0.335693,-0.378876,-0.3591,-0.296722,-0.209076,-0.117401,-0.047699,-0.0093689,-0.0210571,-0.082489,-0.187744,-0.321198,-0.455292,-0.569122,-0.641144,-0.6633,-0.637238,-0.568634,-0.471039,-0.360962,-0.252441,-0.160278,-0.0966797,-0.0631409,-0.0584717,-0.0751648,-0.1026,-0.12973,-0.14624,-0.15094,-0.140167,-0.110535,-0.069397,-0.0160522,0.041626,0.0982361,0.147491,0.184601,0.20752,0.217194,0.215942,0.213135,0.210327,0.209564,0.212524,0.218445,0.228577,0.244019,0.266144,0.294678,0.326965,0.358765,0.384979,0.401031,0.406647,0.401184,0.388397,0.370789,0.35144,0.33197,0.309814,0.28595,0.254303,0.209717,0.151855,0.0791931,-0.0015564,-0.0857544,-0.162933,-0.229218,-0.27832,-0.309021,-0.322449,-0.325409,-0.324615,-0.327118,-0.338654,-0.360657,-0.39151,-0.426758,-0.457153,-0.48288,-0.498627,-0.501923,-0.494415,-0.472748,-0.437988,-0.39621,-0.354095,-0.322144,-0.306244,-0.309814,-0.330231,-0.359558,-0.389954,-0.408508,-0.400726,-0.354248,-0.263672,-0.128632,0.0417786,0.226868,0.405701,0.552734,0.651428,0.694458,0.682312,0.621826,0.526703,0.418488,0.32431,0.263519,0.256012,0.310913,0.415375,0.551178,0.687134,0.793182,0.844635,0.829346,0.741882,0.588745,0.381073,0.155304,-0.057373,-0.230927,-0.343811,-0.388855,-0.37326,-0.316528,-0.234497,-0.149689,-0.08078,-0.042572,-0.046936,-0.100891,-0.197693,-0.321655,-0.448578,-0.557251,-0.624786,-0.643799,-0.619019,-0.554626,-0.46463,-0.361115,-0.257416,-0.168854,-0.10321,-0.0670471,-0.0572205,-0.0684509,-0.0887146,-0.108215,-0.120056,-0.122711,-0.111786,-0.0882568,-0.0539551,-0.0101318,0.0396118,0.0899658,0.135345,0.170105,0.193329,0.204712,0.207062,0.207672,0.208923,0.212219,0.219055,0.225769,0.235291,0.247437,0.264587,0.285797,0.310913,0.337402,0.359406,0.375916,0.386047,0.390411,0.389496,0.382172,0.368439,0.349274,0.325562,0.295929,0.259613,0.215942,0.16217,0.0955811,0.0174561,-0.0645447,-0.142365,-0.208771,-0.259613,-0.295013,-0.315735,-0.328217,-0.33493,-0.339142,-0.347076,-0.362671,-0.385284,-0.415833,-0.448578,-0.477417,-0.496307,-0.502228,-0.495209,-0.476013,-0.446075,-0.410065,-0.367981,-0.327911,-0.299042,-0.286285,-0.29187,-0.313721,-0.346466,-0.379059,-0.394318,-0.379059,-0.324158,-0.223907,-0.08078,0.0935669,0.282532,0.46167,0.606232,0.695557,0.730011,0.707733,0.636475,0.531372,0.417389,0.321991,0.257751,0.25058,0.308105,0.412109,0.547607,0.681702,0.784454,0.832001,0.808777,0.71582,0.55368,0.340546,0.114136,-0.10025,-0.273163,-0.383423,-0.428162,-0.414124,-0.357513,-0.273315,-0.186157,-0.114746,-0.0718689,-0.0736084,-0.120514,-0.207855,-0.32135,-0.4375,-0.536377,-0.599365,-0.620728,-0.603271,-0.546509,-0.464966,-0.366882,-0.265381,-0.175568,-0.106323,-0.0600281,-0.037262,-0.0322876,-0.0394592,-0.0495911,-0.0608215,-0.0709534,-0.0726624,-0.0648499,-0.0480347,-0.0180969,0.0212097,0.0661011,0.110535,0.151245,0.184753,0.208313,0.22406,0.235901,0.243073,0.248383,0.25119,0.251038,0.251984,0.254761,0.262878,0.277527,0.298889,0.324463,0.348785,0.369385,0.382019,0.387451,0.382477,0.372345,0.356445,0.33725,0.314026,0.286102,0.250092,0.204102,0.146576,0.0756226,-0.00592041,-0.0904236,-0.170563,-0.239807,-0.29422,-0.327423,-0.342712,-0.344421,-0.341003,-0.339142,-0.343018,-0.358154,-0.381683,-0.411621,-0.444855,-0.474457,-0.496918,-0.507843,-0.503632,-0.484131,-0.448578,-0.403381,-0.352844,-0.306061,-0.2724,-0.254944,-0.256653,-0.277527,-0.312164,-0.34848,-0.369843,-0.362518,-0.31839,-0.229034,-0.0918274,0.0812378,0.268799,0.449829,0.602783,0.707886,0.756531,0.745148,0.675446,0.567719,0.445465,0.339142,0.263184,0.240265,0.280975,0.370148,0.495819,0.629303,0.742035,0.804565,0.799408,0.722229,0.57489,0.370941,0.146423,-0.0725098,-0.255859,-0.384491,-0.452332,-0.460754,-0.419891,-0.3396,-0.248535,-0.165588,-0.105865,-0.0862122,-0.111786,-0.178833,-0.27771,-0.38623,-0.487091,-0.561157,-0.602173,-0.604675,-0.565826,-0.497223,-0.40741,-0.304993,-0.206604,-0.120361,-0.0534668,-0.00967407,0.0124817,0.0155945,0.006073,-0.0093689,-0.0314941,-0.050354,-0.0609741,-0.0603333,-0.0428772,-0.00982666,0.0347595,0.0860596,0.136108,0.18399,0.219849,0.244781,0.261322,0.266785,0.266144,0.262268,0.254303,0.248077,0.244629,0.248077,0.259308,0.278931,0.304199,0.330566,0.352844,0.370941,0.378723,0.379517,0.374207,0.363617,0.346466,0.3237,0.292969,0.254303,0.204712,0.144836,0.0746765,-0.00421143,-0.0857544,-0.164337,-0.234497,-0.290466,-0.326355,-0.345215,-0.351746,-0.351929,-0.351135,-0.354248,-0.365173,-0.382172,-0.405853,-0.434387,-0.462158,-0.485229,-0.497864,-0.495361,-0.478058,-0.444061,-0.400391,-0.348785,-0.29718,-0.253693,-0.223602,-0.213776,-0.220306,-0.246033,-0.284393,-0.321991,-0.34317,-0.336487,-0.290009,-0.194733,-0.0487976,0.129578,0.32074,0.505341,0.654083,0.752167,0.789886,0.7659,0.682159,0.561157,0.428009,0.309021,0.226562,0.202698,0.247284,0.342865,0.475555,0.613251,0.725647,0.787231,0.780548,0.701324,0.547607,0.336487,0.102448,-0.127228,-0.318848,-0.452179,-0.519836,-0.521545,-0.470581,-0.381378,-0.276917,-0.178986,-0.104614,-0.0739136,-0.091217,-0.155914,-0.257111,-0.371552,-0.480072,-0.562256,-0.609192,-0.612915,-0.573944,-0.499573,-0.398071,-0.281281,-0.16745,-0.0673523,0.00686646,0.0519104,0.0676575,0.0604858,0.0388184,0.00842285,-0.0261841,-0.0539551,-0.0678406,-0.0659485,-0.0431824,-0.00140381,0.0519104,0.110718,0.165588,0.211884,0.244629,0.262878,0.271149,0.268799,0.262421,0.252594,0.243073,0.237305,0.238861,0.247437,0.26413,0.287506,0.312469,0.335236,0.351929,0.360809,0.360809,0.352997,0.340363,0.323212,0.30249,0.281586,0.2565,0.225769,0.185547,0.13269,0.0664368,-0.0137329,-0.0991516,-0.184448,-0.261627,-0.322601,-0.363281,-0.38324,-0.387634,-0.380463,-0.367676,-0.35675,-0.354095,-0.36142,-0.379974,-0.406189,-0.434082,-0.457458,-0.470245,-0.469025,-0.451538,-0.41803,-0.372192,-0.317291,-0.259766,-0.210663,-0.178528,-0.170258,-0.182281,-0.212524,-0.254944,-0.297485,-0.324005,-0.325409,-0.288605,-0.206299,-0.0748291,0.0971375,0.290649,0.482727,0.641602,0.747162,0.789581,0.769775,0.689941,0.574402,0.440643,0.318237,0.225159,0.181335,0.206909,0.290009,0.416779,0.560699,0.680908,0.754822,0.7612,0.694641,0.558502,0.362061,0.133942,-0.0965271,-0.30249,-0.454651,-0.542755,-0.559601,-0.514374,-0.427216,-0.318085,-0.214386,-0.132843,-0.0865479,-0.0860596,-0.131439,-0.217834,-0.327271,-0.437195,-0.526398,-0.581116,-0.592194,-0.559753,-0.4888,-0.391815,-0.282227,-0.169495,-0.0703125,0.00918579,0.0608215,0.0830994,0.0820007,0.0651855,0.0380554,0.00872803,-0.0173035,-0.0327454,-0.0360107,-0.0233765,0.006073,0.047699,0.0971375,0.147491,0.190857,0.224213,0.244476,0.253204,0.255402,0.252289,0.247437,0.244019,0.241058,0.243073,0.24884,0.261017,0.277374,0.293915,0.309021,0.317139,0.319489,0.314178,0.305908,0.295319,0.286743,0.276611,0.266327,0.25354,0.230774,0.198639,0.151245,0.0871582,0.00872803,-0.0812378,-0.170563,-0.255096,-0.324615,-0.370941,-0.396362,-0.400238,-0.389954,-0.370789,-0.350037,-0.337891,-0.334137,-0.341614,-0.358154,-0.378723,-0.400879,-0.415222,-0.42099,-0.411957,-0.386688,-0.34848,-0.298889,-0.246185,-0.198486,-0.161987,-0.143921,-0.141876,-0.15451,-0.183197,-0.222198,-0.263184,-0.292511,-0.297485,-0.263977,-0.185852,-0.0562744,0.110382,0.290466,0.464172,0.609497,0.707733,0.753876,0.740479,0.670776,0.558044,0.423645,0.29953,0.205658,0.165131,0.189758,0.266937,0.379974,0.503784,0.612457,0.684814,0.695404,0.639435,0.51532,0.329926,0.110382,-0.111786,-0.306702,-0.450928,-0.534821,-0.554779,-0.522491,-0.44812,-0.349121,-0.250092,-0.16449,-0.110382,-0.098999,-0.131287,-0.200684,-0.289246,-0.379517,-0.455597,-0.504883,-0.519989,-0.498169,-0.443298,-0.365173,-0.269745,-0.167603,-0.0746765,0.00531006,0.0629883,0.0986938,0.113983,0.110382,0.0954285,0.0698547,0.041626,0.0168457,-0.000793457,-0.00466919,0.00656128,0.0322876,0.0673523,0.106018,0.14502,0.18103,0.208771,0.231537,0.248077,0.256012,0.25946,0.257111,0.252289,0.248077,0.245575,0.246033,0.24823,0.252899,0.256958,0.25946,0.262878,0.26413,0.262573,0.25882,0.254761,0.249939,0.244965,0.238098,0.224365,0.19693,0.152802,0.087616,0.00637817,-0.0867004,-0.180084,-0.266479,-0.338043,-0.387299,-0.410858,-0.409302,-0.387451,-0.35379,-0.317139,-0.289398,-0.276459,-0.278168,-0.295471,-0.320587,-0.34848,-0.37265,-0.386993,-0.387451,-0.369843,-0.335541,-0.287201,-0.23233,-0.178528,-0.13504,-0.106323,-0.09729,-0.105408,-0.13208,-0.171356,-0.215485,-0.254944,-0.27832,-0.271301,-0.222656,-0.128326,0.00686646,0.169342,0.34552,0.508942,0.635223,0.71521,0.734711,0.696045,0.607941,0.487396,0.358154,0.245575,0.168091,0.143433,0.172607,0.249939,0.360657,0.47525,0.571777,0.622894,0.615265,0.545715,0.407593,0.223114,0.0154419,-0.189758,-0.36377,-0.492401,-0.560059,-0.56427,-0.520294,-0.43454,-0.329926,-0.226868,-0.139709,-0.090271,-0.0750122,-0.104309,-0.168854,-0.250885,-0.338654,-0.410553,-0.455139,-0.470093,-0.445923,-0.389954,-0.309204,-0.211273,-0.111786,-0.0154419,0.0648499,0.120056,0.152649,0.160126,0.147491,0.120209,0.0799866,0.0397644,0.0045166,-0.0193481,-0.0275879,-0.0184021,0.00778198,0.0458374,0.088562,0.132996,0.17215,0.204102,0.227966,0.241669,0.249329,0.249176,0.244629,0.237,0.227173,0.21875,0.21283,0.208923,0.209412,0.213623,0.219055,0.22702,0.23465,0.242767,0.249786,0.25415,0.256165,0.250397,0.235596,0.208008,0.162323,0.0999451,0.0226135,-0.0645447,-0.153259,-0.237,-0.306061,-0.354248,-0.379211,-0.378723,-0.360016,-0.328979,-0.292664,-0.262878,-0.245575,-0.243561,-0.257751,-0.281586,-0.309814,-0.335846,-0.353302,-0.356903,-0.343811,-0.314331,-0.270538,-0.218292,-0.166046,-0.120361,-0.0888672,-0.0734253,-0.0746765,-0.0966797,-0.132385,-0.178375,-0.227966,-0.268036,-0.287048,-0.276123,-0.22641,-0.129883,0.00701904,0.169647,0.3396,0.501129,0.622742,0.694305,0.710846,0.6633,0.567566,0.4422,0.310913,0.198334,0.119446,0.094635,0.125366,0.206116,0.324158,0.447021,0.548065,0.603577,0.595612,0.523743,0.384827,0.198639,-0.006073,-0.20752,-0.376862,-0.498627,-0.559753,-0.558807,-0.503632,-0.408661,-0.29953,-0.193024,-0.106171,-0.0552063,-0.0413208,-0.0697021,-0.130829,-0.213623,-0.29718,-0.367493,-0.414276,-0.423798,-0.399323,-0.345367,-0.267242,-0.17807,-0.0852966,0.00341797,0.0765686,0.128479,0.156067,0.161224,0.147491,0.117096,0.0770264,0.0352478,-0.00219727,-0.0302429,-0.0430298,-0.0402222,-0.0195007,0.0121765,0.0531616,0.0986938,0.139252,0.175262,0.205353,0.224823,0.236694,0.239197,0.232483,0.220154,0.204407,0.189301,0.178375,0.173218,0.176819,0.186646,0.199585,0.214081,0.225616,0.235138,0.238403,0.238708,0.232788,0.223907,0.205505,0.178833,0.139404,0.0887146,0.0275879,-0.0424194,-0.11615,-0.187103,-0.249786,-0.297028,-0.325714,-0.333832,-0.324951,-0.302338,-0.27301,-0.246979,-0.230621,-0.224213,-0.22998,-0.243073,-0.262573,-0.279266,-0.29187,-0.296265,-0.287689,-0.266632,-0.234344,-0.197876,-0.160126,-0.125824,-0.1026,-0.0887146,-0.0865479,-0.094635,-0.117706,-0.152649,-0.195679,-0.240906,-0.274414,-0.284882,-0.269897,-0.21814,-0.12442,0.00576782,0.157166,0.319794,0.470734,0.585022,0.652374,0.663452,0.612305,0.51828,0.401489,0.283783,0.182434,0.115082,0.0943298,0.124725,0.199738,0.308411,0.421143,0.512207,0.556335,0.543854,0.470734,0.338654,0.168549,-0.0184021,-0.198944,-0.35379,-0.466675,-0.525604,-0.527313,-0.476196,-0.389343,-0.286591,-0.185394,-0.102753,-0.0487976,-0.0285339,-0.0445862,-0.091217,-0.158875,-0.232178,-0.298737,-0.346466,-0.362518,-0.346771,-0.303436,-0.237152,-0.160278,-0.0762329,0.00561523,0.0746765,0.126465,0.156403,0.162323,0.148438,0.114594,0.0704651,0.0230713,-0.0204163,-0.0538025,-0.0720215,-0.0731201,-0.0567627,-0.0272827,0.014801,0.0598755,0.102905,0.140808,0.170898,0.191315,0.202545,0.2052,0.199738,0.190521,0.180389,0.172913,0.170258,0.173553,0.183197,0.196625,0.209869,0.220001,0.225464,0.227631,0.227478,0.225311,0.222504,0.218292,0.210663,0.192566,0.163574,0.121002,0.0625305,-0.00747681,-0.0829468,-0.159363,-0.227814,-0.281281,-0.314819,-0.328369,-0.322754,-0.301086,-0.269745,-0.238708,-0.212677,-0.199432,-0.19693,-0.20752,-0.224518,-0.242615,-0.259766,-0.270203,-0.267395,-0.253845,-0.22937,-0.198639,-0.164978,-0.132843,-0.108368,-0.0932312,-0.0887146,-0.0966797,-0.11911,-0.156067,-0.204895,-0.258514,-0.302643,-0.327423,-0.321198,-0.274719,-0.181793,-0.0484924,0.110077,0.279724,0.438904,0.563812,0.641296,0.660339,0.618378,0.527649,0.406494,0.281433,0.16684,0.0899658,0.0636292,0.0915222,0.168854,0.282379,0.405701,0.51001,0.571442,0.574249,0.516418,0.391815,0.221863,0.0265198,-0.164978,-0.328217,-0.450775,-0.512512,-0.515015,-0.465729,-0.376862,-0.270203,-0.161835,-0.0676575,-0.00466919,0.0210571,0.00671387,-0.0436707,-0.116486,-0.200195,-0.273651,-0.327911,-0.351746,-0.346466,-0.31012,-0.251984,-0.176514,-0.0941772,-0.0127869,0.0564575,0.109314,0.137207,0.141724,0.12381,0.0871582,0.0397644,-0.0121765,-0.0598755,-0.0960388,-0.116638,-0.120361,-0.105103,-0.0746765,-0.031189,0.0151367,0.0626831,0.106018,0.143768,0.173553,0.19458,0.206299,0.209717,0.206604,0.198334,0.189606,0.183685,0.182281,0.187103,0.197388,0.211578,0.226074,0.239197,0.249786,0.256958,0.258209,0.255859,0.247589,0.233246,0.209564,0.177277,0.134247,0.0796814,0.0154419,-0.0559692,-0.128326,-0.197876,-0.255096,-0.294373,-0.31308,-0.312469,-0.29361,-0.26413,-0.230438,-0.202087,-0.182281,-0.176025,-0.182739,-0.198944,-0.221405,-0.242615,-0.256653,-0.25946,-0.246826,-0.223602,-0.192719,-0.158569,-0.130493,-0.108673,-0.0968323,-0.0966797,-0.107727,-0.130676,-0.168091,-0.217041,-0.270355,-0.319183,-0.35379,-0.362823,-0.341003,-0.282074,-0.179138,-0.041626,0.113678,0.279724,0.434875,0.552887,0.622894,0.637726,0.5961,0.505188,0.392151,0.278168,0.176178,0.111938,0.0991516,0.131744,0.209259,0.318695,0.432068,0.527008,0.574738,0.56958,0.504547,0.378418,0.210815,0.0238647,-0.156067,-0.308563,-0.422546,-0.479614,-0.481171,-0.437836,-0.354095,-0.254761,-0.153595,-0.0642395,-0.00717163,0.0163574,0.00311279,-0.0444336,-0.112122,-0.188965,-0.25946,-0.308563,-0.333374,-0.327271,-0.295319,-0.241364,-0.168701,-0.0940247,-0.0199585,0.0438232,0.0884094,0.108978,0.105865,0.0812378,0.0419312,-0.00747681,-0.0581665,-0.103546,-0.136902,-0.153412,-0.152649,-0.133301,-0.0977478,-0.0492859,0.00234985,0.0527039,0.0991516,0.139557,0.171967,0.193817,0.205963,0.21048,0.207214,0.201141,0.196472,0.198181,0.208313,0.224518,0.245728,0.267242,0.284698,0.294373,0.296265,0.289703,0.276306,0.256653,0.234039,0.209564,0.181946,0.152954,0.118195,0.0751648,0.0233765,-0.036499,-0.101959,-0.167297,-0.226074,-0.271301,-0.297974,-0.307617,-0.29953,-0.277374,-0.248077,-0.215942,-0.191772,-0.176025,-0.17276,-0.180389,-0.195221,-0.211121,-0.224213,-0.228577,-0.222198,-0.205658,-0.182434,-0.157013,-0.13504,-0.121613,-0.114746,-0.117249,-0.129089,-0.148743,-0.176025,-0.214081,-0.258209,-0.303436,-0.34256,-0.368286,-0.369995,-0.343964,-0.281433,-0.177917,-0.0441284,0.112579,0.279114,0.430664,0.549011,0.622894,0.642853,0.603882,0.525757,0.425812,0.316986,0.219055,0.156555,0.137054,0.160126,0.229218,0.327576,0.43158,0.515472,0.555847,0.547424,0.480713,0.360504,0.200989,0.0244751,-0.146088,-0.29361,-0.403687,-0.459961,-0.46637,-0.4263,-0.351746,-0.263824,-0.171661,-0.0921631,-0.0379028,-0.0107727,-0.0184021,-0.053009,-0.108215,-0.174164,-0.232635,-0.275818,-0.294067,-0.287842,-0.263336,-0.217346,-0.163574,-0.104462,-0.0467834,0.00219727,0.0374146,0.0534668,0.0483398,0.0286865,-0.00390625,-0.041626,-0.0793762,-0.113983,-0.135345,-0.144226,-0.14032,-0.121155,-0.090271,-0.0498962,-0.00671387,0.0357056,0.0778198,0.117249,0.153748,0.185089,0.210663,0.229675,0.242767,0.249634,0.254944,0.26178,0.270844,0.282227,0.294067,0.303589,0.307465,0.306244,0.296417,0.277527,0.252899,0.222504,0.190063,0.156219,0.126282,0.0997925,0.0728149,0.043335,0.00857544,-0.0344543,-0.0840454,-0.140656,-0.196472,-0.247589,-0.287506,-0.310272,-0.314484,-0.299377,-0.267242,-0.227325,-0.185242,-0.150787,-0.128784,-0.121918,-0.128784,-0.146088,-0.165741,-0.181335,-0.189606,-0.188354,-0.17572,-0.154663,-0.132843,-0.114899,-0.101654,-0.0996399,-0.108063,-0.129089,-0.159027,-0.195526,-0.238403,-0.283142,-0.324615,-0.360168,-0.382782,-0.382935,-0.361908,-0.317139,-0.232483,-0.107117,0.0450745,0.207062,0.371399,0.510315,0.605133,0.655029,0.654724,0.603729,0.52063,0.421753,0.318237,0.226227,0.171204,0.160767,0.192871,0.265533,0.354401,0.434875,0.488342,0.499115,0.463562,0.382477,0.259308,0.106171,-0.0575256,-0.212067,-0.341461,-0.432831,-0.470734,-0.464813,-0.421448,-0.354889,-0.27771,-0.198334,-0.125214,-0.0704651,-0.0383606,-0.0343018,-0.0539551,-0.0907593,-0.137665,-0.18103,-0.209564,-0.219696,-0.214691,-0.19754,-0.171204,-0.136749,-0.0974426,-0.0587769,-0.0247803,0.000610352,0.0135803,0.0140381,0.00265503,-0.0176086,-0.0405273,-0.0667419,-0.0916748,-0.110535,-0.121613,-0.123962,-0.114136,-0.0937195,-0.0637817,-0.026825,0.0180969,0.0681458,0.120209,0.175262,0.222351,0.259918,0.286438,0.301697,0.307617,0.307159,0.304047,0.300629,0.295776,0.293274,0.289398,0.285797,0.277863,0.264923,0.240753,0.208466,0.171204,0.131592,0.0924683,0.0583191,0.0288391,0.00311279,-0.0223083,-0.0509949,-0.0838928,-0.122559,-0.163879,-0.205658,-0.246033,-0.277374,-0.29361,-0.292511,-0.271149,-0.235443,-0.190704,-0.14563,-0.108063,-0.0821838,-0.0718689,-0.0748291,-0.0884094,-0.106812,-0.123016,-0.13504,-0.139557,-0.134247,-0.120361,-0.106812,-0.0986938,-0.0996399,-0.108063,-0.125366,-0.149994,-0.18103,-0.217651,-0.256805,-0.298126,-0.337097,-0.368591,-0.390594,-0.399628,-0.387451,-0.349426,-0.287201,-0.18399,-0.0380554,0.12738,0.295776,0.456238,0.584381,0.663757,0.692902,0.67514,0.610748,0.514374,0.405396,0.295929,0.206757,0.15921,0.157318,0.200195,0.276611,0.358002,0.425659,0.464325,0.462158,0.411957,0.316986,0.182739,0.0198059,-0.14859,-0.30249,-0.427856,-0.507202,-0.533875,-0.514862,-0.457001,-0.374512,-0.278168,-0.175568,-0.0835876,-0.0119934,0.0293274,0.0386658,0.0180969,-0.0247803,-0.0793762,-0.130188,-0.169342,-0.190369,-0.197083,-0.187561,-0.163879,-0.127075,-0.0829468,-0.0369568,0.00186157,0.0272827,0.0366516,0.0299377,0.00762939,-0.0249329,-0.0629883,-0.10321,-0.139252,-0.166046,-0.17807,-0.174469,-0.152802,-0.118042,-0.0725098,-0.0195007,0.0419312,0.105408,0.16745,0.225769,0.269897,0.298584,0.31308,0.317596,0.313721,0.30545,0.29657,0.287048,0.277527,0.271454,0.266785,0.264282,0.258667,0.244476,0.219238,0.185089,0.145325,0.102448,0.0622253,0.0254211,-0.00762939,-0.0385132,-0.0686035,-0.098999,-0.128326,-0.157166,-0.185852,-0.21347,-0.237457,-0.251495,-0.249329,-0.230774,-0.198029,-0.157623,-0.11554,-0.0793762,-0.0541077,-0.0428772,-0.0444336,-0.0569153,-0.0768738,-0.0980835,-0.115692,-0.127075,-0.128326,-0.120361,-0.109131,-0.10025,-0.101044,-0.111633,-0.132385,-0.161835,-0.197388,-0.236206,-0.278473,-0.32074,-0.361115,-0.39447,-0.423492,-0.438599,-0.43454,-0.413666,-0.368286,-0.281891,-0.156219,0.00296021,0.178223,0.363129,0.524689,0.648468,0.730804,0.75592,0.722992,0.644592,0.537628,0.414581,0.295013,0.209564,0.164642,0.163574,0.206451,0.276459,0.350525,0.409149,0.43454,0.419739,0.357361,0.248688,0.104004,-0.0592651,-0.220001,-0.36438,-0.471832,-0.531525,-0.541504,-0.506897,-0.436432,-0.339752,-0.232483,-0.124268,-0.0288391,0.0396118,0.0774841,0.085144,0.0617371,0.0196533,-0.0341492,-0.0848083,-0.122101,-0.147186,-0.157471,-0.152802,-0.137848,-0.111328,-0.0812378,-0.0522461,-0.0285339,-0.0199585,-0.0237122,-0.0419312,-0.0703125,-0.1026,-0.139069,-0.171967,-0.198029,-0.21283,-0.21347,-0.196777,-0.165894,-0.123322,-0.0714111,-0.0112305,0.0528564,0.11911,0.184937,0.243073,0.286285,0.315887,0.332275,0.337555,0.33725,0.33493,0.330719,0.324951,0.319489,0.312775,0.306244,0.296265,0.279419,0.250885,0.208923,0.160767,0.108978,0.0600281,0.0182495,-0.0163574,-0.0439758,-0.065033,-0.0845032,-0.101959,-0.119293,-0.137207,-0.157806,-0.181335,-0.203796,-0.218597,-0.221863,-0.207672,-0.180542,-0.144226,-0.104462,-0.0682983,-0.039917,-0.0221558,-0.0158997,-0.0226135,-0.0389709,-0.0598755,-0.0834045,-0.103546,-0.118958,-0.128326,-0.13736,-0.149048,-0.165436,-0.186646,-0.211273,-0.240265,-0.274414,-0.310608,-0.347534,-0.384644,-0.419586,-0.444855,-0.46106,-0.465576,-0.453583,-0.419434,-0.360809,-0.26474,-0.118042,0.0559692,0.243866,0.431427,0.596252,0.722534,0.80127,0.826538,0.794586,0.710052,0.593597,0.459045,0.327423,0.22998,0.173065,0.157623,0.189606,0.245117,0.305145,0.354248,0.37561,0.360809,0.300781,0.19754,0.0615845,-0.0952759,-0.24884,-0.38324,-0.482422,-0.530609,-0.532166,-0.49115,-0.411621,-0.309814,-0.192108,-0.0756226,0.0230713,0.0952759,0.134247,0.141724,0.117554,0.0697021,0.0102844,-0.0484924,-0.0974426,-0.131897,-0.151703,-0.159515,-0.15451,-0.140808,-0.123505,-0.104614,-0.0933838,-0.0944824,-0.106812,-0.133789,-0.167297,-0.203156,-0.236847,-0.261932,-0.276306,-0.274109,-0.254761,-0.220306,-0.169342,-0.108826,-0.0428772,0.0291443,0.101959,0.173553,0.242157,0.301239,0.34491,0.372803,0.389038,0.393707,0.39386,0.3909,0.38559,0.376556,0.365784,0.353302,0.339294,0.322906,0.297028,0.258362,0.206451,0.147034,0.0843506,0.0235291,-0.0282288,-0.0686035,-0.0977478,-0.116943,-0.129089,-0.137665,-0.141724,-0.144379,-0.149231,-0.158569,-0.169006,-0.175873,-0.174622,-0.158264,-0.131592,-0.0975952,-0.0625305,-0.0316467,-0.00888062,-0.000610352,-0.00360107,-0.0195007,-0.0462952,-0.0793762,-0.114288,-0.146088,-0.171967,-0.193024,-0.209564,-0.225464,-0.241669,-0.257904,-0.276459,-0.299988,-0.331482,-0.365936,-0.400085,-0.435486,-0.461853,-0.480408,-0.492401,-0.48819,-0.459351,-0.410553,-0.328217,-0.201447,-0.0325928,0.156403,0.355957,0.548523,0.709747,0.827332,0.900757,0.913849,0.862854,0.760284,0.623047,0.467438,0.318542,0.206299,0.138153,0.116943,0.140167,0.18634,0.247284,0.299377,0.322754,0.311829,0.252594,0.150635,0.0166931,-0.132843,-0.275055,-0.395721,-0.477753,-0.512207,-0.502533,-0.450287,-0.362213,-0.25058,-0.129089,-0.0113831,0.0860596,0.152496,0.185394,0.18335,0.151245,0.0979309,0.0324402,-0.0327454,-0.0901184,-0.137207,-0.171356,-0.195374,-0.206757,-0.209259,-0.208008,-0.204712,-0.205353,-0.214386,-0.232025,-0.2565,-0.28299,-0.30484,-0.31839,-0.31839,-0.304352,-0.275055,-0.229675,-0.171661,-0.105865,-0.035553,0.036499,0.110718,0.183685,0.252289,0.317932,0.37204,0.412415,0.43985,0.456238,0.463257,0.465118,0.460754,0.44873,0.428162,0.401642,0.370789,0.335999,0.297821,0.250397,0.19397,0.130341,0.0637817,0.000793457,-0.052063,-0.0932312,-0.121155,-0.137848,-0.142517,-0.138458,-0.128326,-0.113831,-0.101959,-0.0975952,-0.100098,-0.110382,-0.117554,-0.119598,-0.111328,-0.0949707,-0.0731201,-0.048645,-0.0286865,-0.0154419,-0.0101318,-0.0169983,-0.0363159,-0.0667419,-0.10791,-0.152802,-0.196625,-0.235596,-0.268036,-0.294067,-0.315887,-0.332428,-0.34491,-0.358307,-0.373749,-0.391815,-0.410858,-0.429871,-0.447815,-0.457947,-0.462006,-0.45575,-0.433777,-0.393707,-0.331482,-0.238403,-0.103546,0.0665894,0.261169,0.461365,0.649872,0.806274,0.916199,0.974182,0.970612,0.902161,0.776947,0.614655,0.438293,0.271149,0.142365,0.0618896,0.0307312,0.0497437,0.0991516,0.166534,0.222809,0.256348,0.254761,0.20752,0.119293,0.00109863,-0.132233,-0.258972,-0.365173,-0.430817,-0.454193,-0.43454,-0.376556,-0.289062,-0.177917,-0.0583191,0.0539551,0.146088,0.204712,0.228577,0.215942,0.174011,0.109924,0.0314941,-0.0489502,-0.12442,-0.189453,-0.241211,-0.280334,-0.306702,-0.321198,-0.327271,-0.32666,-0.324005,-0.324463,-0.328674,-0.336639,-0.342865,-0.342865,-0.333679,-0.310913,-0.274261,-0.224213,-0.161224,-0.0904236,-0.0132446,0.0643921,0.141418,0.215942,0.285797,0.350525,0.407898,0.451874,0.481171,0.49411,0.494415,0.485077,0.46933,0.44873,0.421753,0.389648,0.352844,0.312622,0.271149,0.226715,0.176819,0.120209,0.0597229,-0.00234985,-0.0597229,-0.106964,-0.138763,-0.153259,-0.150787,-0.133148,-0.107269,-0.0767212,-0.044281,-0.0171509,-0.00250244,-0.000152588,-0.0101318,-0.0261841,-0.0417786,-0.0491028,-0.050354,-0.0447388,-0.0380554,-0.0325928,-0.0314941,-0.0407104,-0.057373,-0.0882568,-0.130035,-0.179779,-0.234497,-0.285492,-0.329468,-0.364075,-0.387787,-0.401978,-0.404938,-0.403381,-0.399323,-0.39682,-0.398376,-0.401642,-0.408508,-0.413666,-0.415833,-0.414581,-0.403534,-0.378265,-0.332733,-0.267883,-0.17041,-0.0317993,0.140808,0.333374,0.532318,0.7146,0.857574,0.954712,0.999969,0.979187,0.889374,0.743439,0.56131,0.364227,0.183838,0.0483398,-0.036499,-0.0675049,-0.0452271,0.0127869,0.0927734,0.167603,0.22406,0.243378,0.215485,0.14563,0.0430298,-0.0750122,-0.188354,-0.282684,-0.340363,-0.360321,-0.3396,-0.280823,-0.192108,-0.0809326,0.0310364,0.132996,0.208466,0.245575,0.248688,0.216431,0.153748,0.0695496,-0.0272827,-0.125366,-0.211884,-0.282684,-0.334442,-0.372498,-0.39743,-0.411621,-0.416626,-0.411621,-0.403046,-0.394806,-0.389038,-0.385284,-0.377808,-0.361115,-0.32962,-0.28299,-0.224823,-0.154816,-0.0773315,0.00326538,0.084198,0.161835,0.234344,0.299988,0.355957,0.404449,0.442047,0.467438,0.480225,0.478668,0.466522,0.446564,0.420685,0.391663,0.355652,0.315277,0.272552,0.229034,0.186951,0.144684,0.102448,0.0592651,0.0165405,-0.0213623,-0.0517578,-0.0704651,-0.0762329,-0.0684509,-0.0500488,-0.0243225,0.00671387,0.0388184,0.0675049,0.0857544,0.090271,0.0799866,0.0584717,0.0321045,0.00842285,-0.0112305,-0.0257263,-0.0371094,-0.0478821,-0.0618896,-0.0829468,-0.109467,-0.14563,-0.192566,-0.246033,-0.302795,-0.355957,-0.400574,-0.432373,-0.451385,-0.460114,-0.455902,-0.440948,-0.421448,-0.402283,-0.386047,-0.376068,-0.372192,-0.371552,-0.374054,-0.378571,-0.377808,-0.366882,-0.343353,-0.29953,-0.228424,-0.118347,0.0349121,0.215332,0.414429,0.608093,0.774933,0.900909,0.978241,0.99057,0.931,0.802673,0.621185,0.41507,0.211121,0.0434875,-0.0718689,-0.129425,-0.126465,-0.0700073,0.0230713,0.128937,0.225922,0.294373,0.316528,0.289551,0.218445,0.117554,0.00405884,-0.102448,-0.185852,-0.236847,-0.249481,-0.22171,-0.160431,-0.0708008,0.0308838,0.126465,0.201447,0.241516,0.244019,0.212372,0.14859,0.0581665,-0.0478821,-0.159821,-0.261475,-0.345825,-0.405701,-0.445312,-0.469788,-0.479309,-0.479919,-0.469025,-0.452637,-0.43689,-0.424561,-0.41568,-0.406952,-0.389496,-0.358307,-0.311523,-0.246826,-0.170258,-0.0840454,0.0045166,0.0916748,0.172607,0.245575,0.305908,0.35379,0.388245,0.412109,0.421448,0.420349,0.407898,0.387451,0.36438,0.339752,0.315582,0.291107,0.265686,0.23996,0.216248,0.192413,0.171356,0.146423,0.121307,0.0944824,0.0673523,0.0462952,0.0314941,0.0272827,0.0347595,0.054718,0.085907,0.121155,0.156555,0.185699,0.203949,0.204254,0.188812,0.154358,0.109131,0.0581665,0.00967407,-0.0333557,-0.0708008,-0.102905,-0.134705,-0.165283,-0.200348,-0.236389,-0.278625,-0.32666,-0.374054,-0.422394,-0.458405,-0.483032,-0.495209,-0.490845,-0.476654,-0.449677,-0.417389,-0.386383,-0.36142,-0.344727,-0.333191,-0.329163,-0.328827,-0.336334,-0.349579,-0.358765,-0.354553,-0.332428,-0.289856,-0.21814,-0.113525,0.0282288,0.20285,0.393402,0.579254,0.737671,0.851318,0.913696,0.913544,0.846344,0.716919,0.539185,0.34021,0.149384,-0.000305176,-0.0954285,-0.132538,-0.104767,-0.0277405,0.083252,0.206909,0.316528,0.395111,0.427856,0.409607,0.34613,0.249939,0.136108,0.0263367,-0.0620422,-0.121155,-0.143768,-0.132538,-0.09198,-0.0271301,0.0472412,0.119446,0.17041,0.188354,0.171509,0.120697,0.0450745,-0.0494385,-0.154358,-0.260071,-0.355957,-0.432678,-0.483032,-0.510162,-0.519989,-0.516571,-0.501923,-0.482117,-0.457794,-0.435944,-0.41864,-0.405396,-0.393219,-0.374359,-0.342255,-0.295013,-0.230927,-0.154358,-0.0687561,0.0179443,0.101349,0.177277,0.244171,0.295319,0.332275,0.352081,0.356903,0.35083,0.333038,0.308716,0.282227,0.258057,0.238556,0.225311,0.217834,0.215179,0.216431,0.220459,0.225769,0.230286,0.229218,0.225159,0.215332,0.203796,0.191925,0.184601,0.182739,0.187897,0.200195,0.218597,0.239014,0.258667,0.272552,0.270355,0.251343,0.212067,0.156403,0.0913696,0.0241699,-0.0407104,-0.0991516,-0.149536,-0.194122,-0.233246,-0.267731,-0.299988,-0.331177,-0.366272,-0.404602,-0.442352,-0.476349,-0.499115,-0.508301,-0.504883,-0.488983,-0.460907,-0.423798,-0.382172,-0.343658,-0.312775,-0.294678,-0.289398,-0.295776,-0.311829,-0.333191,-0.355957,-0.374847,-0.384491,-0.377808,-0.35144,-0.292969,-0.192261,-0.0495911,0.12442,0.31076,0.48819,0.643188,0.763397,0.839172,0.858032,0.808289,0.694153,0.531677,0.351288,0.180237,0.0453796,-0.0385132,-0.0687561,-0.0405273,0.0379028,0.154053,0.2883,0.413177,0.504547,0.546204,0.531219,0.466217,0.366577,0.249939,0.13269,0.0296326,-0.0513,-0.101654,-0.114746,-0.09198,-0.0386658,0.0265198,0.0865479,0.123322,0.129272,0.105255,0.0564575,-0.0135803,-0.100891,-0.200043,-0.299683,-0.38623,-0.449829,-0.488983,-0.505188,-0.508606,-0.50238,-0.488647,-0.470428,-0.447968,-0.42926,-0.416779,-0.409912,-0.405243,-0.395416,-0.372345,-0.332581,-0.27301,-0.199585,-0.117401,-0.0330505,0.0458374,0.118195,0.178986,0.22641,0.25882,0.274261,0.273315,0.260864,0.239655,0.215942,0.195831,0.185547,0.184937,0.19397,0.208466,0.228577,0.252899,0.281128,0.307312,0.327911,0.338043,0.339447,0.33429,0.327118,0.319946,0.314026,0.309814,0.308105,0.309967,0.31604,0.323853,0.328827,0.324615,0.302795,0.261627,0.204895,0.132843,0.0572205,-0.0171509,-0.0870056,-0.147491,-0.201294,-0.245575,-0.282227,-0.31076,-0.33493,-0.357697,-0.384338,-0.414764,-0.446869,-0.475555,-0.493805,-0.498962,-0.491943,-0.470734,-0.440002,-0.401184,-0.360321,-0.323547,-0.295013,-0.281433,-0.282532,-0.299377,-0.330719,-0.369385,-0.40976,-0.442963,-0.459503,-0.45871,-0.437195,-0.383881,-0.291565,-0.155304,0.0160522,0.20285,0.380615,0.538391,0.662964,0.747345,0.787079,0.765717,0.685425,0.555847,0.401031,0.250244,0.131439,0.0578613,0.0330505,0.0595703,0.129425,0.232788,0.355042,0.473053,0.564758,0.611206,0.600128,0.538544,0.438293,0.32135,0.204712,0.0999451,0.0173035,-0.0424194,-0.0679932,-0.059082,-0.0199585,0.0354004,0.0890198,0.119904,0.12146,0.0957336,0.0461426,-0.0193481,-0.0994873,-0.188812,-0.280487,-0.362213,-0.423798,-0.462616,-0.477753,-0.48056,-0.475555,-0.464478,-0.454193,-0.44281,-0.436279,-0.43689,-0.442657,-0.450287,-0.452179,-0.442352,-0.41507,-0.368591,-0.303436,-0.22467,-0.140015,-0.0570679,0.0187073,0.0840454,0.135345,0.171509,0.190521,0.195831,0.187408,0.17215,0.153412,0.142059,0.140808,0.152802,0.176178,0.204895,0.237793,0.273163,0.31076,0.350037,0.384033,0.408813,0.421753,0.426605,0.427521,0.42926,0.43158,0.430969,0.424744,0.412872,0.400879,0.389038,0.375763,0.356445,0.321991,0.270996,0.206757,0.135193,0.0636292,-0.00390625,-0.0676575,-0.129578,-0.184937,-0.231842,-0.269135,-0.296082,-0.318085,-0.340546,-0.366882,-0.397919,-0.427856,-0.452179,-0.466034,-0.469177,-0.465881,-0.453094,-0.431915,-0.400879,-0.366425,-0.332886,-0.311066,-0.304352,-0.315125,-0.341003,-0.378265,-0.422394,-0.467438,-0.509552,-0.540741,-0.551971,-0.53949,-0.4935,-0.404602,-0.273804,-0.109772,0.0686035,0.244324,0.406952,0.545563,0.652985,0.715668,0.722229,0.669525,0.56897,0.442047,0.313721,0.207672,0.13736,0.106812,0.121155,0.177124,0.268341,0.382477,0.501282,0.598267,0.654236,0.656128,0.607483,0.522186,0.417236,0.309204,0.204254,0.114746,0.0475464,0.0119934,0.0138855,0.0473938,0.0965271,0.140961,0.163727,0.159027,0.128784,0.0793762,0.0157471,-0.0611267,-0.147827,-0.236389,-0.315887,-0.377014,-0.415985,-0.435181,-0.443756,-0.447968,-0.449829,-0.450928,-0.454193,-0.460449,-0.473206,-0.490204,-0.508148,-0.521881,-0.522949,-0.505493,-0.467773,-0.409149,-0.33725,-0.256653,-0.17572,-0.098999,-0.0296326,0.0293274,0.0736084,0.100891,0.110382,0.10556,0.092926,0.078125,0.0704651,0.0751648,0.0924683,0.11911,0.153748,0.196136,0.245117,0.30014,0.35675,0.405853,0.446075,0.473053,0.493958,0.509552,0.522034,0.530762,0.528412,0.519073,0.504242,0.486786,0.46933,0.447021,0.416321,0.37204,0.315735,0.251038,0.183685,0.117706,0.0544128,-0.00778198,-0.0668945,-0.120209,-0.164642,-0.202087,-0.234344,-0.263031,-0.294373,-0.325562,-0.354401,-0.378571,-0.400574,-0.41803,-0.431122,-0.437683,-0.432678,-0.416626,-0.393555,-0.371704,-0.355194,-0.349884,-0.354401,-0.368744,-0.394318,-0.432373,-0.479919,-0.534485,-0.582214,-0.615875,-0.628998,-0.619324,-0.582672,-0.51236,-0.401642,-0.255249,-0.0862122,0.0843506,0.244324,0.382477,0.493011,0.571777,0.606384,0.592499,0.535736,0.448273,0.351288,0.265839,0.206451,0.179138,0.186951,0.22998,0.299377,0.393066,0.495056,0.588135,0.65332,0.671875,0.644897,0.582672,0.50174,0.417725,0.333679,0.254944,0.188965,0.146576,0.135803,0.153259,0.187561,0.219849,0.232788,0.222809,0.190704,0.142059,0.08078,0.00732422,-0.0743713,-0.15686,-0.231384,-0.290955,-0.333832,-0.361115,-0.381683,-0.398071,-0.413361,-0.429565,-0.44812,-0.470734,-0.499268,-0.527649,-0.554291,-0.574402,-0.582367,-0.574554,-0.547607,-0.501282,-0.439545,-0.368591,-0.296265,-0.226562,-0.163391,-0.108368,-0.0632935,-0.0322876,-0.0155945,-0.0112305,-0.0165405,-0.0246277,-0.0265198,-0.0177612,0.00436401,0.0360107,0.0759277,0.122406,0.175568,0.237946,0.301544,0.362518,0.414917,0.457153,0.493652,0.526093,0.556793,0.581268,0.594696,0.597015,0.5914,0.578613,0.562561,0.541199,0.509247,0.464478,0.408508,0.344574,0.27771,0.212677,0.150787,0.0898132,0.031189,-0.0219727,-0.0684509,-0.109619,-0.142212,-0.173065,-0.203003,-0.234039,-0.263977,-0.293762,-0.322449,-0.346313,-0.368134,-0.384644,-0.394165,-0.39682,-0.392914,-0.386688,-0.379059,-0.376251,-0.381836,-0.39682,-0.423798,-0.462616,-0.508148,-0.558807,-0.607941,-0.648315,-0.672791,-0.680298,-0.663147,-0.611847,-0.522491,-0.395569,-0.248383,-0.094635,0.0506592,0.181335,0.293915,0.38324,0.437836,0.449219,0.41803,0.358307,0.289246,0.231689,0.193512,0.17807,0.188965,0.227814,0.29187,0.378723,0.478668,0.575043,0.647369,0.681213,0.674042,0.634277,0.574738,0.508942,0.438751,0.37204,0.31308,0.272095,0.255096,0.265228,0.291718,0.321198,0.335541,0.326965,0.296722,0.247772,0.186157,0.115082,0.0366516,-0.0444336,-0.121307,-0.185852,-0.235291,-0.268494,-0.291565,-0.311371,-0.330078,-0.352539,-0.378418,-0.410065,-0.447021,-0.485382,-0.5242,-0.558807,-0.585327,-0.597168,-0.590332,-0.564117,-0.520142,-0.465271,-0.407593,-0.351288,-0.299377,-0.251495,-0.210815,-0.179779,-0.163391,-0.157013,-0.160767,-0.163727,-0.160919,-0.146576,-0.120514,-0.0843506,-0.043335,0.00515747,0.0601807,0.122406,0.190063,0.257111,0.318237,0.374207,0.425812,0.474792,0.522034,0.564423,0.598907,0.623047,0.633026,0.631805,0.619781,0.599976,0.568481,0.527496,0.476013,0.416626,0.355652,0.299377,0.247284,0.201447,0.155609,0.11087,0.0678406,0.0255737,-0.0109253,-0.0487976,-0.0840454,-0.117401,-0.153595,-0.186157,-0.216431,-0.243378,-0.261932,-0.277527,-0.288605,-0.298737,-0.307953,-0.316833,-0.326508,-0.341461,-0.364227,-0.396515,-0.438141,-0.485535,-0.539032,-0.590149,-0.636322,-0.671722,-0.689026,-0.684967,-0.649414,-0.580811,-0.485687,-0.370636,-0.25119,-0.136108,-0.0339966,0.0514526,0.114136,0.146881,0.148132,0.122253,0.0812378,0.0407104,0.0152893,0.0105896,0.0280762,0.0723572,0.138306,0.223267,0.322449,0.423798,0.516418,0.582825,0.616821,0.61853,0.594513,0.557098,0.514862,0.471039,0.430969,0.399933,0.38324,0.38623,0.405548,0.433319,0.456696,0.462769,0.450134,0.414917,0.365631,0.302948,0.233429,0.161377,0.0893555,0.0244751,-0.026825,-0.0617371,-0.0835876,-0.0966797,-0.110077,-0.127869,-0.153107,-0.18634,-0.229523,-0.279266,-0.333984,-0.391052,-0.444519,-0.489288,-0.519226,-0.529358,-0.520935,-0.498779,-0.467926,-0.436279,-0.404144,-0.376404,-0.351929,-0.334778,-0.327759,-0.328674,-0.337402,-0.347229,-0.351929,-0.348175,-0.331329,-0.302032,-0.263184,-0.216248,-0.163086,-0.105713,-0.0428772,0.0195007,0.0812378,0.138306,0.192719,0.24588,0.299225,0.351288,0.403839,0.452332,0.493652,0.528412,0.552277,0.564575,0.564117,0.552277,0.529816,0.496613,0.457306,0.412109,0.364532,0.320404,0.281128,0.246826,0.21283,0.179932,0.144836,0.108673,0.08078,0.0538025,0.0307312,0.0093689,-0.0154419,-0.0389709,-0.0622253,-0.0770264,-0.0874634,-0.0982361,-0.111023,-0.13504,-0.16449,-0.193024,-0.228271,-0.263184,-0.307465,-0.362061,-0.417084,-0.470734,-0.504547,-0.515167,-0.507202,-0.480713,-0.443909,-0.399323,-0.341461,-0.28299,-0.226562,-0.184937,-0.173218,-0.188049,-0.225769,-0.272247,-0.31076,-0.341461,-0.35611,-0.349884,-0.322601,-0.264587,-0.176361,-0.0662537,0.0587769,0.175415,0.2724,0.343353,0.385895,0.408661,0.413971,0.40274,0.384186,0.356445,0.331329,0.318695,0.3237,0.350525,0.387939,0.424255,0.452942,0.465271,0.463562,0.450287,0.42334,0.388092,0.343658,0.289551,0.237457,0.192871,0.16449,0.153595,0.1539,0.159363,0.163574,0.162476,0.157623,0.14502,0.123657,0.0898132,0.0400696,-0.0209045,-0.0834045,-0.140808,-0.186798,-0.222504,-0.249939,-0.271912,-0.287994,-0.300446,-0.307465,-0.313568,-0.320892,-0.333374,-0.353149,-0.376251,-0.401184,-0.422089,-0.435486,-0.440002,-0.4375,-0.426605,-0.409302,-0.382324,-0.344727,-0.299988,-0.250732,-0.201447,-0.1539,-0.107727,-0.0620422,-0.0163574,0.0282288,0.0703125,0.106812,0.140656,0.171509,0.200684,0.229218,0.252594,0.27005,0.280182,0.283142,0.279724,0.274902,0.269287,0.261627,0.252136,0.239502,0.225311,0.207855,0.189911,0.172455,0.150787,0.130035,0.111938,0.0949707,0.0840454,0.0768738,0.0714111,0.0706177,0.071106,0.0732727,0.0750122,0.0698547,0.054718,0.0325928,0.00546265,-0.0151367,-0.020752,-0.00888062,0.0171509,0.0489502,0.0816956,0.112579,0.136902,0.151398,0.138,0.0874634,-0.00170898,-0.124115,-0.258667,-0.389343,-0.502838,-0.586731,-0.640198,-0.65799,-0.630402,-0.561005,-0.449982,-0.316681,-0.185394,-0.0739136,0.00421143,0.0513,0.0765686,0.0823364,0.0757751,0.0559692,0.0282288,0.0045166,-0.00390625,0.0110779,0.0483398,0.0974426,0.145477,0.182281,0.199585,0.19989,0.18634,0.161072,0.127869,0.0865479,0.0428772,0.00482178,-0.0173035,-0.0169983,0.00375366,0.041626,0.0881042,0.136597,0.182739,0.223267,0.257751,0.283295,0.296082,0.293915,0.278473,0.2565,0.236847,0.226227,0.224518,0.227478,0.228119,0.22171,0.20752,0.185394,0.156403,0.11554,0.0625305,-0.00732422,-0.0852966,-0.163574,-0.231079,-0.280823,-0.309662,-0.319946,-0.314819,-0.29657,-0.267731,-0.227325,-0.183197,-0.140167,-0.106812,-0.087616,-0.0785828,-0.0765686,-0.0750122,-0.0700073,-0.0623779,-0.053009,-0.0431824,-0.0335083,-0.0201111,-0.00482178,0.00811768,0.0137329,0.00637817,-0.0133972,-0.0419312,-0.0739136,-0.102753,-0.125977,-0.142365,-0.15094,-0.152496,-0.14502,-0.125366,-0.0991516,-0.0679932,-0.0427246,-0.0252686,-0.0163574,-0.0174561,-0.0224609,-0.0280762,-0.0360107,-0.0447388,-0.0533142,-0.059082,-0.0623779,-0.0646973,-0.0623779,-0.0629883,-0.0640869,-0.0505066,-0.0168457,0.0439758,0.130676,0.221558,0.308258,0.38559,0.453094,0.505341,0.523438,0.492401,0.400726,0.252289,0.077179,-0.0941772,-0.242004,-0.358154,-0.441101,-0.481628,-0.471344,-0.403992,-0.27832,-0.119293,0.0380554,0.16684,0.247772,0.285797,0.29361,0.276764,0.239349,0.178528,0.103546,0.0328979,-0.0155945,-0.0260315,0.00186157,0.0462952,0.0901184,0.113525,0.109619,0.0884094,0.0550537,0.0116882,-0.0389709,-0.103546,-0.172455,-0.234985,-0.27597,-0.284241,-0.26474,-0.224213,-0.172913,-0.123016,-0.0732727,-0.0274353,0.0126343,0.0466309,0.0681458,0.0712585,0.0604858,0.0419312,0.0297852,0.031189,0.0466309,0.0700073,0.0896606,0.101654,0.110382,0.115387,0.119751,0.115082,0.0916748,0.0489502,-0.00888062,-0.0708008,-0.124725,-0.163391,-0.182739,-0.187897,-0.181641,-0.164337,-0.134552,-0.0901184,-0.0319519,0.0317993,0.0926208,0.142059,0.179626,0.210175,0.239502,0.268036,0.289703,0.296722,0.2883,0.266479,0.239349,0.208313,0.173859,0.130676,0.0787354,0.0223083,-0.0316467,-0.0774841,-0.111176,-0.132843,-0.145782,-0.151855,-0.154999,-0.152191,-0.147186,-0.14032,-0.133789,-0.129883,-0.127869,-0.128021,-0.130676,-0.133148,-0.134705,-0.133148,-0.127686,-0.122864,-0.124878,-0.136444,-0.155762,-0.180389,-0.208313,-0.237457,-0.260071,-0.270538,-0.256012,-0.21283,-0.143433,-0.0562744,0.0361633,0.126129,0.205963,0.264435,0.289856,0.271912,0.203949,0.0969849,-0.0321045,-0.163727,-0.277374,-0.360168,-0.406647,-0.406647,-0.356903,-0.255402,-0.112427,0.0494385,0.201904,0.327576,0.411316,0.453278,0.455292,0.424744,0.369385,0.29422,0.213776,0.145935,0.102753,0.092926,0.113983,0.152344,0.19397,0.225769,0.240112,0.236694,0.214874,0.17868,0.127533,0.0642395,-0.00170898,-0.0611267,-0.1026,-0.118347,-0.110718,-0.0830994,-0.0439758,-0.00421143,0.0341492,0.0654907,0.0879517,0.0965271,0.085907,0.0578613,0.0168457,-0.0266724,-0.0626831,-0.086853,-0.0979309,-0.0996399,-0.0949707,-0.0862122,-0.0756226,-0.0659485,-0.0604858,-0.0661011,-0.0882568,-0.126465,-0.175262,-0.225464,-0.268951,-0.299683,-0.314178,-0.312775,-0.294373,-0.260712,-0.211731,-0.149231,-0.0805969,-0.0129395,0.0455322,0.0896606,0.121918,0.144531,0.16153,0.172302,0.175415,0.171509,0.161682,0.152496,0.148438,0.148285,0.150299,0.146088,0.13504,0.118805,0.0993347,0.0782776,0.0559692,0.0321045,0.00546265,-0.0223083,-0.0487976,-0.0665894,-0.0745239,-0.0714111,-0.0608215,-0.0487976,-0.0352478,-0.0213623,-0.0119934,-0.00311279,0.000610352,-0.00592041,-0.0199585,-0.0434875,-0.0736084,-0.106018,-0.136597,-0.160126,-0.167145,-0.148285,-0.105865,-0.0430298,0.0305481,0.104614,0.176666,0.238403,0.280975,0.294525,0.263184,0.179626,0.0623779,-0.0739136,-0.211273,-0.335083,-0.439545,-0.513611,-0.548676,-0.535278,-0.465271,-0.347534,-0.198486,-0.0450745,0.0888672,0.197693,0.275055,0.319794,0.333374,0.312317,0.261017,0.188507,0.112885,0.0533142,0.0218201,0.0199585,0.0419312,0.0742188,0.104767,0.129883,0.145782,0.152802,0.146576,0.12146,0.0788879,0.0212097,-0.039917,-0.0893555,-0.119446,-0.120056,-0.0982361,-0.0586243,-0.00982666,0.044281,0.100891,0.154999,0.196472,0.21875,0.215179,0.18634,0.144836,0.101044,0.0653381,0.0413208,0.0252686,0.0158997,0.0124817,0.0163574,0.0271301,0.0375671,0.0411682,0.0300903,0.000610352,-0.0452271,-0.0993347,-0.150452,-0.192261,-0.221558,-0.23761,-0.241669,-0.229218,-0.201294,-0.156219,-0.0988464,-0.0360107,0.0213623,0.0679932,0.10025,0.12381,0.141724,0.152802,0.15686,0.14798,0.127686,0.100739,0.0739136,0.0517578,0.0343018,0.0166931,-0.00375366,-0.0265198,-0.047699,-0.0628357,-0.0708008,-0.0753174,-0.0787354,-0.085144,-0.0907593,-0.0933838,-0.0910645,-0.0854492,-0.0791931,-0.0762329,-0.0745239,-0.0732727,-0.0717163,-0.073761,-0.0799866,-0.0901184,-0.101196,-0.117706,-0.140472,-0.166382,-0.192871,-0.215942,-0.224518,-0.211884,-0.170258,-0.102448,-0.0196533,0.0709534,0.164032,0.253845,0.332733,0.386536,0.397919,0.354095,0.255249,0.123016,-0.0213623,-0.162933,-0.290802,-0.393219,-0.456696,-0.475708,-0.438446,-0.340363,-0.199585,-0.0402222,0.110382,0.233734,0.322754,0.376251,0.39447,0.378571,0.330383,0.257751,0.175873,0.106018,0.0640869,0.053009,0.0695496,0.102753,0.137848,0.161072,0.170258,0.166534,0.15155,0.118958,0.0698547,0.00546265,-0.0631409,-0.122864,-0.158722,-0.163239,-0.138458,-0.0932312,-0.0407104,0.0135803,0.0632935,0.107117,0.138763,0.151398,0.142365,0.107574,0.0559692,0.000152588,-0.0478821,-0.0770264,-0.0910645,-0.0935669,-0.0884094,-0.0779724,-0.0601807,-0.038208,-0.0213623,-0.0151367,-0.026825,-0.0566101,-0.101349,-0.150452,-0.195068,-0.227814,-0.24884,-0.258514,-0.25354,-0.232025,-0.190704,-0.130829,-0.0584717,0.0174561,0.0884094,0.149689,0.198792,0.235901,0.260071,0.268646,0.25882,0.232025,0.191925,0.14624,0.102448,0.0643921,0.0332031,0.00888062,-0.00982666,-0.0215149,-0.0286865,-0.0288391,-0.025116,-0.0221558,-0.0204163,-0.0213623,-0.0272827,-0.036499,-0.0434875,-0.0453796,-0.0422668,-0.0343018,-0.0246277,-0.0168457,-0.0146484,-0.0155945,-0.0169983,-0.0240173,-0.0434875,-0.0765686,-0.122253,-0.171814,-0.214539,-0.23761,-0.230621,-0.192108,-0.131287,-0.0570679,0.0249329,0.111176,0.19162,0.256653,0.289856,0.271912,0.194275,0.0750122,-0.0629883,-0.204102,-0.335846,-0.44281,-0.514526,-0.546204,-0.524048,-0.440155,-0.304199,-0.14032,0.0233765,0.166199,0.273163,0.344116,0.379211,0.378418,0.344574,0.279724,0.195831,0.116486,0.0576782,0.0266724,0.0238647,0.0431824,0.0722046,0.0954285,0.109772,0.117889,0.119293,0.111176,0.0907593,0.0572205,0.0158997,-0.0254211,-0.0525513,-0.0536499,-0.0303955,0.013092,0.0631409,0.113831,0.158722,0.196625,0.225616,0.243866,0.243225,0.219849,0.177277,0.124115,0.0742188,0.0352478,0.00997925,-0.00637817,-0.019165,-0.0296326,-0.035553,-0.0363159,-0.0350952,-0.0389709,-0.0533142,-0.0804443,-0.118195,-0.161072,-0.200195,-0.228882,-0.246033,-0.253357,-0.250092,-0.235901,-0.207672,-0.163086,-0.105865,-0.0422668,0.0193481,0.0726624,0.115387,0.147186,0.169189,0.17868,0.173065,0.152191,0.116791,0.0732727,0.0254211,-0.0182495,-0.0561218,-0.0835876,-0.103058,-0.112579,-0.11319,-0.106506,-0.0930786,-0.0753174,-0.0556641,-0.0391235,-0.0297852,-0.0254211,-0.0265198,-0.0297852,-0.0317993,-0.0317993,-0.0291443,-0.0257263,-0.0255737,-0.0283813,-0.0317993,-0.0402222,-0.054718,-0.0782776,-0.109772,-0.14267,-0.16684,-0.166046,-0.133942,-0.0731201,0.00888062,0.100555,0.193665,0.278625,0.349731,0.393066,0.3909,0.332886,0.217834,0.0632935,-0.10025,-0.255554,-0.387939,-0.482117,-0.529053,-0.524841,-0.463409,-0.345978,-0.190063,-0.0260315,0.123657,0.242157,0.319489,0.352081,0.347076,0.310913,0.247772,0.171051,0.0991516,0.0441284,0.0169983,0.0177612,0.038208,0.0679932,0.096344,0.111023,0.109772,0.0927734,0.0645447,0.0244751,-0.0249329,-0.0770264,-0.123962,-0.155762,-0.16153,-0.137848,-0.0898132,-0.0279236,0.0388184,0.098999,0.146088,0.182281,0.2052,0.211273,0.199097,0.167603,0.125824,0.0837402,0.0475464,0.0247803,0.0137329,0.0101318,0.0107727,0.0107727,0.0121765,0.0110779,0.00732422,-0.00622559,-0.0289917,-0.0614319,-0.098999,-0.135651,-0.165894,-0.187256,-0.197388,-0.19632,-0.185547,-0.163574,-0.131134,-0.086853,-0.0361633,0.0168457,0.0681458,0.115082,0.153595,0.183044,0.199097,0.201599,0.18866,0.16153,0.121002,0.0722046,0.019165,-0.0313416,-0.0745239,-0.10791,-0.12973,-0.139709,-0.137848,-0.126465,-0.107117,-0.0827942,-0.0561218,-0.0347595,-0.0221558,-0.0179443,-0.0201111,-0.0246277,-0.0299377,-0.0310364,-0.0347595,-0.0407104,-0.0489502,-0.0556641,-0.0643921,-0.0768738,-0.0974426,-0.128784,-0.164337,-0.194733,-0.207367,-0.193024,-0.148438,-0.0778198,0.00747681,0.0993347,0.189606,0.269897,0.331024,0.356445,0.332428,0.253693,0.131439,-0.0158997,-0.165436,-0.299683,-0.403046,-0.465576,-0.477264,-0.435944,-0.342865,-0.209869,-0.0555115,0.0954285,0.222961,0.313232,0.359863,0.364532,0.33197,0.269897,0.189453,0.107269,0.0386658,-0.00375366,-0.0174561,-0.00561523,0.0229187,0.0583191,0.0879517,0.106018,0.107727,0.0961914,0.0706177,0.0321045,-0.0157471,-0.063446,-0.102295,-0.121002,-0.114746,-0.0829468,-0.0314941,0.02948,0.0882568,0.139709,0.177765,0.202545,0.209717,0.196625,0.164978,0.119904,0.0684509,0.0210571,-0.0140381,-0.0344543,-0.041626,-0.0403748,-0.0347595,-0.0244751,-0.0115356,0.000457764,0.00515747,-0.00140381,-0.0199585,-0.0480347,-0.0809326,-0.113037,-0.138916,-0.155609,-0.161987,-0.158417,-0.144836,-0.118195,-0.079834,-0.0313416,0.0221558,0.0751648,0.123505,0.162933,0.189911,0.201752,0.198181,0.179626,0.146088,0.0986938,0.0438232,-0.0146484,-0.0692139,-0.11319,-0.14502,-0.161377,-0.163574,-0.152802,-0.130829,-0.100555,-0.0662537,-0.0333557,-0.00857544,0.006073,0.00762939,0.000610352,-0.0109253,-0.0230713,-0.0360107,-0.0491028,-0.0631409,-0.0770264,-0.0888672,-0.101501,-0.115387,-0.135498,-0.161682,-0.191162,-0.21048,-0.206909,-0.174774,-0.115387,-0.0375671,0.0502014,0.138,0.220947,0.292206,0.334778,0.337097,0.286896,0.187103,0.050354,-0.100739,-0.246185,-0.367676,-0.450623,-0.48584,-0.466675,-0.393402,-0.273804,-0.125824,0.0324402,0.176178,0.292969,0.368896,0.400085,0.386993,0.336334,0.25946,0.174316,0.0965271,0.0400696,0.00997925,0.00656128,0.0221558,0.0494385,0.0778198,0.101501,0.113342,0.109131,0.0884094,0.0523987,0.00762939,-0.041626,-0.0835876,-0.110718,-0.115082,-0.0952759,-0.0542603,0.00109863,0.0617371,0.118195,0.165894,0.19754,0.211731,0.206757,0.182281,0.14328,0.0941772,0.0470886,0.00622559,-0.0219727,-0.0386658,-0.0453796,-0.0444336,-0.0371094,-0.0299377,-0.0224609,-0.0212097,-0.0289917,-0.0458374,-0.0734253,-0.104309,-0.134399,-0.159973,-0.177124,-0.184143,-0.180878,-0.164978,-0.13736,-0.0980835,-0.0489502,0.00515747,0.0601807,0.111328,0.155304,0.187561,0.205811,0.205811,0.188965,0.155609,0.109467,0.0544128,-0.00341797,-0.0581665,-0.104309,-0.139862,-0.161377,-0.167145,-0.158112,-0.135803,-0.104309,-0.0684509,-0.0343018,-0.00717163,0.0090332,0.0149536,0.0115356,0.00546265,-0.00561523,-0.0171509,-0.0297852,-0.0402222,-0.0527039,-0.0640869,-0.07547,-0.0888672,-0.108521,-0.137207,-0.169952,-0.198029,-0.207062,-0.184753,-0.132843,-0.0575256,0.031189,0.12085,0.205963,0.277374,0.326019,0.340057,0.30545,0.220001,0.0916748,-0.0625305,-0.217499,-0.352234,-0.449829,-0.496765,-0.486786,-0.421936,-0.313568,-0.173553,-0.0184021,0.133301,0.264923,0.359406,0.406647,0.401489,0.35144,0.272858,0.181183,0.0952759,0.02948,-0.0133972,-0.0319519,-0.0279236,-0.00576782,0.0280762,0.0656433,0.096344,0.111328,0.107422,0.085907,0.0514526,0.0115356,-0.0263367,-0.0553589,-0.0690613,-0.0675049,-0.0473938,-0.00997925,0.0396118,0.0940247,0.141113,0.175568,0.192413,0.192413,0.175262,0.14502,0.107574,0.0670471,0.0271301,-0.00732422,-0.0346069,-0.0495911,-0.0522461,-0.0473938,-0.0379028,-0.0308838,-0.0277405,-0.0314941,-0.0431824,-0.0606384,-0.0816956,-0.103851,-0.124878,-0.142975,-0.154816,-0.154205,-0.144073,-0.121002,-0.088562,-0.0470886,-0.00170898,0.0444336,0.0888672,0.128174,0.158569,0.174957,0.174774,0.156219,0.12381,0.0791931,0.0265198,-0.0288391,-0.0809326,-0.123322,-0.152344,-0.165283,-0.161835,-0.143127,-0.113037,-0.0743713,-0.0343018,0.00296021,0.0314941,0.0487976,0.0544128,0.047699,0.0332031,0.0143433,-0.00405884,-0.0212097,-0.0339966,-0.0464783,-0.0572205,-0.0697021,-0.0849915,-0.103699,-0.131439,-0.164642,-0.197083,-0.219391,-0.21814,-0.185242,-0.12381,-0.0389709,0.054718,0.147034,0.227966,0.289398,0.324005,0.318848,0.267242,0.170563,0.0357056,-0.11615,-0.266632,-0.387146,-0.459198,-0.474945,-0.433472,-0.348022,-0.231384,-0.0952759,0.0462952,0.179779,0.290161,0.360168,0.377808,0.342712,0.269135,0.176819,0.0873108,0.0157471,-0.0319519,-0.0561218,-0.0597229,-0.0427246,-0.00811768,0.0386658,0.0867004,0.124268,0.141724,0.134552,0.106323,0.0659485,0.0244751,-0.0115356,-0.0374146,-0.0506592,-0.0497437,-0.031189,0.00466919,0.0538025,0.108215,0.157166,0.192719,0.208771,0.205811,0.188202,0.159027,0.125519,0.086853,0.0480347,0.00952148,-0.0204163,-0.0402222,-0.0472412,-0.0445862,-0.0374146,-0.0308838,-0.0316467,-0.0385132,-0.0492859,-0.0626831,-0.0770264,-0.0924683,-0.108978,-0.123322,-0.13269,-0.132843,-0.120361,-0.0947876,-0.0598755,-0.0193481,0.0213623,0.0615845,0.09729,0.127869,0.14859,0.156403,0.145325,0.117096,0.0739136,0.0209045,-0.0347595,-0.0862122,-0.130188,-0.163086,-0.183533,-0.188049,-0.176819,-0.152344,-0.117889,-0.078125,-0.0374146,-0.00234985,0.0227661,0.035553,0.0369568,0.0277405,0.0154419,-0.000305176,-0.0146484,-0.0280762,-0.039917,-0.0508423,-0.0592651,-0.0703125,-0.0834045,-0.10321,-0.128479,-0.158722,-0.184601,-0.195526,-0.183044,-0.144226,-0.0816956,-0.00109863,0.0835876,0.16153,0.227631,0.273956,0.291718,0.276459,0.217041,0.118042,-0.0116882,-0.15155,-0.278168,-0.37326,-0.420685,-0.416473,-0.366272,-0.278168,-0.166046,-0.0369568,0.0957336,0.218292,0.312164,0.361725,0.362213,0.317139,0.239807,0.151855,0.0728149,0.010437,-0.0335083,-0.0559692,-0.0578613,-0.037262,0.000457764,0.0481873,0.0958862,0.130981,0.142975,0.131744,0.102448,0.0628357,0.0219727,-0.014801,-0.0413208,-0.0570679,-0.057373,-0.0388184,-0.00234985,0.0478821,0.1026,0.153412,0.190216,0.210968,0.212982,0.199738,0.173859,0.139069,0.0979309,0.053009,0.0109253,-0.0247803,-0.047699,-0.0584717,-0.0589294,-0.0531616,-0.0473938,-0.0439758,-0.0444336,-0.0489502,-0.0561218,-0.0661011,-0.0802917,-0.096344,-0.111633,-0.123657,-0.124725,-0.11615,-0.0947876,-0.0646973,-0.0277405,0.0121765,0.0519104,0.088562,0.118958,0.13736,0.140656,0.125366,0.0933838,0.048645,-0.00576782,-0.0615845,-0.112885,-0.153259,-0.180542,-0.193665,-0.190369,-0.172607,-0.142212,-0.102448,-0.0586243,-0.0166931,0.0179443,0.0394592,0.0483398,0.0441284,0.0316467,0.0135803,-0.00531006,-0.0241699,-0.0397644,-0.0534668,-0.0646973,-0.0743713,-0.0838928,-0.0944824,-0.10791,-0.123962,-0.143616,-0.157959,-0.160583,-0.145782,-0.110229,-0.0539551,0.0179443,0.096344,0.167938,0.227325,0.267883,0.281891,0.263672,0.209869,0.123505,0.0132446,-0.107269,-0.219849,-0.309967,-0.364075,-0.374054,-0.341003,-0.269897,-0.17337,-0.0601807,0.0553589,0.161987,0.244324,0.295471,0.307465,0.281891,0.224213,0.151093,0.0773315,0.0141907,-0.0344543,-0.0608215,-0.0646973,-0.0478821,-0.0155945,0.0258789,0.0706177,0.108521,0.131134,0.135193,0.120514,0.0896606,0.0500488,0.00811768,-0.0277405,-0.0544128,-0.0668945,-0.0636292,-0.0427246,-0.00857544,0.0352478,0.0820007,0.125977,0.160919,0.182129,0.189301,0.181641,0.160919,0.130676,0.0937195,0.0569153,0.0219727,-0.00671387,-0.0260315,-0.0366516,-0.0402222,-0.0385132,-0.0352478,-0.0322876,-0.0308838,-0.0339966,-0.0402222,-0.0495911,-0.0606384,-0.0717163,-0.0790405,-0.081543,-0.0773315,-0.0640869,-0.0430298,-0.0146484,0.0180969,0.0522461,0.0848083,0.110718,0.125519,0.127533,0.11319,0.0849915,0.0434875,-0.006073,-0.0570679,-0.104309,-0.142822,-0.169189,-0.181946,-0.180084,-0.164032,-0.135956,-0.100403,-0.0609741,-0.0229187,0.00796509,0.0271301,0.033844,0.0296326,0.014801,-0.00622559,-0.0283813,-0.0484924,-0.0667419,-0.0818481,-0.0916748,-0.096344,-0.0993347,-0.0991516,-0.102448,-0.110382,-0.121765,-0.134247,-0.14563,-0.150452,-0.146576,-0.126282,-0.0905762,-0.0438232,0.0154419,0.0784302,0.140167,0.188507,0.220306,0.226227,0.206757,0.158264,0.0881042,0.00311279,-0.0860596,-0.171051,-0.240417,-0.284088,-0.29187,-0.263336,-0.204102,-0.121765,-0.0246277,0.0729675,0.157623,0.223755,0.265076,0.278931,0.262115,0.220154,0.161072,0.0969849,0.035553,-0.0107727,-0.037262,-0.040863,-0.025116,0.00421143,0.0411682,0.0804443,0.114441,0.137207,0.145325,0.136444,0.109619,0.0701599,0.0252686,-0.0187073,-0.0517578,-0.0709534,-0.0709534,-0.0545654,-0.0238647,0.0160522,0.0629883,0.109467,0.150787,0.180878,0.19458,0.189911,0.167297,0.131134,0.0881042,0.0417786,-0.00170898,-0.0386658,-0.0664368,-0.0834045,-0.0910645,-0.0899658,-0.0809326,-0.069397,-0.0578613,-0.0505066,-0.0448914,-0.0445862,-0.0464783,-0.0500488,-0.0513,-0.0508423,-0.0450745,-0.0343018,-0.0171509,0.00421143,0.0296326,0.0556641,0.0795288,0.0980835,0.107269,0.103363,0.0874634,0.0584717,0.0198059,-0.0240173,-0.0651855,-0.1026,-0.131134,-0.14798,-0.154358,-0.148285,-0.132233,-0.104767,-0.0712585,-0.0339966,-0.000610352,0.0252686,0.0385132,0.041626,0.0349121,0.0230713,0.00466919,-0.0151367,-0.0366516,-0.0556641,-0.0703125,-0.0788879,-0.0816956,-0.0799866,-0.078125,-0.0757751,-0.0793762,-0.085144,-0.0957336,-0.108673,-0.121918,-0.136261,-0.14798,-0.153595,-0.147491,-0.125519,-0.0846558,-0.0328979,0.0252686,0.0820007,0.133148,0.171204,0.193024,0.193817,0.173706,0.128937,0.0600281,-0.0233765,-0.108368,-0.184601,-0.240112,-0.266937,-0.260559,-0.225769,-0.168243,-0.0932312,-0.00686646,0.0812378,0.161377,0.223907,0.261322,0.268646,0.247772,0.205505,0.153595,0.101044,0.0567627,0.0247803,0.00686646,0.00311279,0.013092,0.0343018,0.0640869,0.0954285,0.119446,0.131592,0.126923,0.107269,0.0748291,0.0393066,0.00375366,-0.0263367,-0.0456848,-0.0534668,-0.0464783,-0.0265198,0.00622559,0.0505066,0.0983887,0.142517,0.176514,0.194733,0.195374,0.179321,0.150635,0.11087,0.0653381,0.0166931,-0.0297852,-0.0697021,-0.0977478,-0.113983,-0.118347,-0.114136,-0.10495,-0.0927734,-0.0816956,-0.0717163,-0.0631409,-0.0555115,-0.0502014,-0.0453796,-0.0407104,-0.0335083,-0.0240173,-0.00888062,0.00747681,0.025116,0.0417786,0.0534668,0.0617371,0.0646973,0.0615845,0.0519104,0.0325928,0.00622559,-0.0263367,-0.0598755,-0.0887146,-0.109131,-0.120697,-0.124573,-0.121307,-0.112274,-0.09729,-0.0750122,-0.0467834,-0.0180969,0.0093689,0.0313416,0.0445862,0.0491028,0.046936,0.0400696,0.0310364,0.0166931,-0.00109863,-0.0223083,-0.0438232,-0.0609741,-0.0715637,-0.0770264,-0.0787354,-0.0796814,-0.0816956,-0.0826416,-0.0820007,-0.0805969,-0.0795288,-0.083252,-0.0887146,-0.0999451,-0.112274,-0.119293,-0.116791,-0.101654,-0.0732727,-0.035553,0.0093689,0.057373,0.104767,0.146881,0.178223,0.192871,0.184448,0.148285,0.0873108,0.00811768,-0.0782776,-0.161072,-0.227966,-0.272095,-0.289062,-0.275055,-0.23233,-0.160126,-0.0687561,0.0332031,0.13208,0.215485,0.274109,0.302643,0.300934,0.2724,0.224823,0.165894,0.104309,0.0462952,0.000457764,-0.0303955,-0.0414734,-0.0336914,-0.0110779,0.0195007,0.0498962,0.0736084,0.0877686,0.0891724,0.0809326,0.0639343,0.0396118,0.0155945,-0.00637817,-0.0198059,-0.0226135,-0.0118408,0.0127869,0.0475464,0.0888672,0.129272,0.162323,0.183685,0.190704,0.182739,0.158722,0.120697,0.0722046,0.0184021,-0.0349121,-0.0804443,-0.116302,-0.138153,-0.146423,-0.141724,-0.12677,-0.104004,-0.0778198,-0.0516052,-0.0274353,-0.00842285,0.00466919,0.0132446,0.0158997,0.0160522,0.0143433,0.0121765,0.0116882,0.0124817,0.0132446,0.0143433,0.014801,0.0144958,0.0124817,0.0090332,0.00296021,-0.0102844,-0.0266724,-0.04599,-0.0651855,-0.0809326,-0.0935669,-0.0991516,-0.101349,-0.09729,-0.086853,-0.0712585,-0.0516052,-0.0280762,-0.00482178,0.0171509,0.0341492,0.0467834,0.0505066,0.0467834,0.0393066,0.0274353,0.0115356,-0.00717163,-0.026825,-0.0458374,-0.0636292,-0.0734253,-0.0773315,-0.0774841,-0.0796814,-0.0810852,-0.0837402,-0.081543,-0.0791931,-0.0759277,-0.0742188,-0.0726624,-0.0726624,-0.0734253,-0.0743713,-0.0731201,-0.0679932,-0.0606384,-0.0483398,-0.02948,-0.00637817,0.0219727,0.052063,0.0835876,0.110718,0.129425,0.135956,0.127869,0.104156,0.0639343,0.0127869,-0.0461426,-0.105865,-0.160431,-0.201904,-0.221863,-0.216248,-0.186951,-0.13736,-0.0712585,0.00466919,0.0835876,0.157166,0.217194,0.257568,0.272705,0.263824,0.232788,0.186157,0.131592,0.0765686,0.0274353,-0.0115356,-0.0380554,-0.0500488,-0.0480347,-0.0343018,-0.0115356,0.0140381,0.0380554,0.0545654,0.0609741,0.0581665,0.0502014,0.0386658,0.0260315,0.0158997,0.00857544,0.0090332,0.0177612,0.0363159,0.0608215,0.0887146,0.115234,0.134857,0.147034,0.145477,0.131134,0.103699,0.0673523,0.025116,-0.0196533,-0.0631409,-0.100555,-0.127228,-0.139862,-0.137665,-0.121765,-0.0969849,-0.0661011,-0.035553,-0.00576782,0.0188599,0.0375671,0.0470886,0.0500488,0.0458374,0.0388184,0.02948,0.0198059,0.0116882,0.00576782,0.00234985,0.00170898,0.00265503,0.00265503,0.000457764,-0.00497437,-0.0123291,-0.0227661,-0.036499,-0.0511475,-0.0656433,-0.078125,-0.0877686,-0.0915222,-0.0881042,-0.0790405,-0.0642395,-0.04599,-0.0246277,-0.00311279,0.0162048,0.0317993,0.0413208,0.04599,0.0431824,0.0346069,0.0202637,0.00341797,-0.0158997,-0.0354004,-0.0542603,-0.0708008,-0.0848083,-0.0927734,-0.096344,-0.0940247,-0.0849915,-0.0756226,-0.0668945,-0.0589294,-0.0516052,-0.0430298,-0.0332031,-0.0252686,-0.0179443,-0.0143433,-0.0166931,-0.0240173,-0.0324402,-0.0405273,-0.0473938,-0.0553589,-0.0609741,-0.0632935,-0.0589294,-0.0466309,-0.0240173,0.0101318,0.0491028,0.0849915,0.113037,0.128937,0.132233,0.119293,0.0910645,0.0498962,-0.00296021,-0.0614319,-0.121307,-0.168701,-0.197083,-0.19928,-0.17511,-0.128174,-0.0632935,0.0112305,0.0877686,0.159515,0.220642,0.262573,0.279877,0.269287,0.233734,0.17868,0.113678,0.0475464,-0.0116882,-0.0580139,-0.0895081,-0.103546,-0.101044,-0.0821838,-0.0505066,-0.0132446,0.0258789,0.0581665,0.0816956,0.0926208,0.0923157,0.083252,0.0681458,0.0505066,0.0319519,0.0166931,0.00701904,0.00671387,0.0144958,0.0289917,0.0475464,0.0662537,0.0813904,0.0895081,0.0896606,0.0801392,0.0618896,0.035553,0.00497437,-0.0271301,-0.0566101,-0.0801392,-0.0927734,-0.0954285,-0.0862122,-0.0695496,-0.0473938,-0.0230713,0.000946045,0.0218201,0.038208,0.048645,0.0511475,0.0473938,0.0389709,0.0282288,0.0176086,0.00811768,0.00109863,-0.00341797,-0.00717163,-0.00982666,-0.0123291,-0.0157471,-0.0202637,-0.0263367,-0.0332031,-0.041626,-0.0506592,-0.0589294,-0.065033,-0.0662537,-0.0629883,-0.0558167,-0.044281,-0.031189,-0.0179443,-0.00515747,0.00637817,0.0155945,0.0209045,0.0216675,0.0169983,0.00796509,-0.00326538,-0.0168457,-0.02948,-0.0413208,-0.0497437,-0.0562744,-0.0600281,-0.0615845,-0.0587769,-0.0541077,-0.0484924,-0.0411682,-0.0324402,-0.0240173,-0.0166931,-0.0113831,-0.0093689,-0.00888062,-0.00918579,-0.00967407,-0.00997925,-0.0093689,-0.00967407,-0.0144958,-0.0212097,-0.0313416,-0.0427246,-0.0555115,-0.0654907,-0.0745239,-0.0835876,-0.090271,-0.0905762,-0.0787354,-0.0561218,-0.0232239,0.0190125,0.0628357,0.1026,0.131744,0.148743,0.153748,0.142822,0.114899,0.0708008,0.0141907,-0.0478821,-0.106964,-0.15451,-0.180542,-0.183197,-0.163391,-0.124573,-0.0709534,-0.00952148,0.0555115,0.116638,0.168091,0.200989,0.211426,0.197876,0.163727,0.116943,0.0646973,0.0151367,-0.0271301,-0.0578613,-0.0757751,-0.079834,-0.0687561,-0.0438232,-0.0113831,0.0255737,0.059082,0.0837402,0.0980835,0.0994873,0.0915222,0.0750122,0.0525513,0.0289917,0.00637817,-0.0119934,-0.0230713,-0.0237122,-0.0140381,0.00375366,0.0258789,0.0494385,0.071106,0.0888672,0.0980835,0.0988464,0.0910645,0.0736084,0.0509949,0.0237122,-0.0015564,-0.0237122,-0.0396118,-0.0494385,-0.0531616,-0.0508423,-0.0448914,-0.0361633,-0.0261841,-0.0168457,-0.00952148,-0.00531006,-0.00436401,-0.00592041,-0.00762939,-0.00701904,-0.00436401,0.00109863,0.00732422,0.0133972,0.0180969,0.0216675,0.0219727,0.0198059,0.0118408,0,-0.0157471,-0.031189,-0.0470886,-0.0595703,-0.0682983,-0.0732727,-0.0717163,-0.0659485,-0.0556641,-0.0434875,-0.0285339,-0.0149536,-0.00234985,0.00656128,0.0140381,0.0179443,0.0176086,0.0132446,0.00762939,0.00109863,-0.00592041,-0.0112305,-0.0155945,-0.0209045,-0.0254211,-0.0286865,-0.0302429,-0.0303955,-0.0289917,-0.0255737,-0.0240173,-0.0224609,-0.0224609,-0.0218201,-0.0235291,-0.0233765,-0.0210571,-0.0184021,-0.0177612,-0.0185547,-0.0187073,-0.0176086,-0.0163574,-0.0127869,-0.00918579,-0.00747681,-0.00967407,-0.0151367,-0.0212097,-0.0277405,-0.0328979,-0.0397644,-0.0489502,-0.0589294,-0.0662537,-0.0695496,-0.0643921,-0.0514526,-0.02948,-0.000793457,0.0269775,0.0536499,0.0757751,0.0954285,0.107574,0.107269,0.09198,0.0623779,0.0209045,-0.0272827,-0.0750122,-0.113831,-0.138916,-0.149841,-0.146729,-0.12738,-0.0923157,-0.0448914,0.00967407,0.065033,0.115082,0.152496,0.170563,0.169952,0.15451,0.127869,0.0932312,0.0550537,0.0179443,-0.0152893,-0.040863,-0.054718,-0.0539551,-0.0402222,-0.0177612,0.00656128,0.0300903,0.0509949,0.0662537,0.0742188,0.0751648,0.0686035,0.0564575,0.0389709,0.0187073,0.00186157,-0.00952148,-0.0127869,-0.00827026,0.00109863,0.0149536,0.0319519,0.0484924,0.0628357,0.0743713,0.0813904,0.0799866,0.0690613,0.0511475,0.0299377,0.00701904,-0.0149536,-0.0341492,-0.0481873,-0.0578613,-0.0615845,-0.0597229,-0.0523987,-0.0411682,-0.0279236,-0.0146484,-0.00311279,0.00515747,0.0112305,0.0160522,0.0201111,0.0229187,0.0260315,0.0282288,0.0296326,0.0289917,0.0283813,0.0257263,0.0209045,0.0116882,-0.000152588,-0.0138855,-0.0300903,-0.0445862,-0.054718,-0.0597229,-0.0612793,-0.0600281,-0.0536499,-0.0419312,-0.0282288,-0.013092,0.00140381,0.0137329,0.0219727,0.0254211,0.0246277,0.0219727,0.0165405,0.00952148,0.000946045,-0.00701904,-0.0126343,-0.0169983,-0.0199585,-0.0212097,-0.0229187,-0.0230713,-0.0216675,-0.0216675,-0.0215149,-0.020752,-0.020752,-0.0243225,-0.0288391,-0.0300903,-0.0305481,-0.0305481,-0.0291443,-0.0265198,-0.0263367,-0.0260315,-0.0219727,-0.0140381,-0.00531006,0.0015564,0.006073,0.00796509,0.00637817,0.00170898,-0.00375366,-0.00872803,-0.0152893,-0.0246277,-0.0366516,-0.0484924,-0.0576782,-0.0642395,-0.0678406,-0.0679932,-0.0648499,-0.0618896,-0.0567627,-0.0487976,-0.0335083,-0.0133972,0.0105896,0.0357056,0.0595703,0.0799866,0.0951233,0.10556,0.107574,0.0999451,0.0801392,0.0495911,0.00967407,-0.0349121,-0.078125,-0.113831,-0.136902,-0.147491,-0.142822,-0.124268,-0.09198,-0.0492859,0.000457764,0.0500488,0.0952759,0.129578,0.149231,0.152191,0.142212,0.121155,0.0927734,0.0601807,0.0274353,-0.00311279,-0.0266724,-0.041626,-0.0462952,-0.0424194,-0.0314941,-0.0177612,-0.0045166,0.00686646,0.0152893,0.020752,0.0224609,0.0212097,0.0169983,0.00982666,0.00280762,0.000305176,0.00311279,0.00997925,0.020752,0.0349121,0.0489502,0.0615845,0.0717163,0.0799866,0.0849915,0.0843506,0.0753174,0.0617371,0.0419312,0.0195007,-0.000946045,-0.0199585,-0.0346069,-0.0455322,-0.0517578,-0.0534668,-0.0508423,-0.0430298,-0.0307312,-0.0165405,-0.00201416,0.00952148,0.0187073,0.0258789,0.0316467,0.0358582,0.0391235,0.0422668,0.0431824,0.0434875,0.0420837,0.0402222,0.037262,0.0332031,0.0258789,0.0137329,-0.00201416,-0.0190125,-0.0360107,-0.0514526,-0.0639343,-0.0698547,-0.0725098,-0.0692139,-0.0623779,-0.0502014,-0.0343018,-0.0166931,0.00125122,0.0163574,0.0279236,0.0341492,0.037262,0.0349121,0.0303955,0.0244751,0.0179443,0.00872803,0.000793457,-0.00592041,-0.0116882,-0.0163574,-0.0212097,-0.0258789,-0.0314941,-0.035553,-0.0403748,-0.0436707,-0.0458374,-0.0456848,-0.0430298,-0.0385132,-0.031189,-0.0230713,-0.0140381,-0.00390625,0.00576782,0.0141907,0.0196533,0.0223083,0.0238647,0.0218201,0.0176086,0.0129395,0.00622559,-0.00250244,-0.0119934,-0.0215149,-0.0289917,-0.0361633,-0.0445862,-0.0502014,-0.0534668,-0.0552063,-0.0575256,-0.0556641,-0.0514526,-0.04599,-0.0393066,-0.0332031,-0.0246277,-0.0179443,-0.0135803,-0.0109253,-0.00888062,-0.00967407,-0.0137329,-0.0180969,-0.0201111,-0.0185547,-0.0135803,-0.00592041,0.00482178,0.0168457,0.0293274,0.0397644,0.0464783,0.048645,0.0419312,0.0266724,0.00296021,-0.0258789,-0.0566101,-0.085144,-0.106171,-0.117401,-0.117889,-0.106018,-0.0820007,-0.0467834,-0.00436401,0.0419312,0.0863953,0.123016,0.146423,0.156219,0.152649,0.135345,0.10791,0.0723572,0.0330505,-0.00482178,-0.0393066,-0.0639343,-0.0768738,-0.0782776,-0.0684509,-0.0508423,-0.0275879,-0.00296021,0.020752,0.0419312,0.0587769,0.0695496,0.0725098,0.0697021,0.0612793,0.0502014,0.0394592,0.0308838,0.0249329,0.0226135,0.0237122,0.0271301,0.0327454,0.0385132,0.0448914,0.0481873,0.0483398,0.0439758,0.0347595,0.0232239,0.00952148,-0.00466919,-0.0168457,-0.0261841,-0.0324402,-0.0335083,-0.02948,-0.0215149,-0.00997925,0.00421143,0.0169983,0.0291443,0.037262,0.043335,0.0461426,0.04599,0.0430298,0.0379028,0.0316467,0.0255737,0.0196533,0.0155945,0.0124817,0.0101318,0.00796509,0.00375366,-0.0015564,-0.00827026,-0.0165405,-0.0244751,-0.0324402,-0.0380554,-0.0417786,-0.0413208,-0.0377197,-0.02948,-0.0173035,-0.00326538,0.0112305,0.0240173,0.0344543,0.0405273,0.040863,0.0371094,0.0279236,0.0154419,0.000152588,-0.0155945,-0.0291443,-0.0393066,-0.0461426,-0.0489502,-0.0473938,-0.0420837,-0.036499,-0.0285339,-0.0216675,-0.0163574,-0.013092,-0.0127869,-0.0144958,-0.0188599,-0.0230713,-0.0271301,-0.0302429,-0.0314941,-0.0300903,-0.0271301,-0.020752,-0.0138855,-0.00436401,0.00375366,0.0102844,0.0129395,0.0137329,0.0115356,0.00531006,-0.00375366,-0.0146484,-0.0271301,-0.0393066,-0.0506592,-0.059082,-0.0617371,-0.0608215,-0.057373,-0.0494385,-0.0374146,-0.0247803,-0.0143433,-0.00234985,0.00842285,0.0154419,0.0182495,0.0169983,0.0143433,0.00857544,-0.000152588,-0.010437,-0.0201111,-0.0293274,-0.0380554,-0.0462952,-0.0509949,-0.0556641,-0.0589294,-0.0572205,-0.0517578,-0.0420837,-0.0289917,-0.010437,0.0101318,0.02948,0.0487976,0.0668945,0.0795288,0.0823364,0.0757751,0.0597229,0.0349121,0.00140381,-0.0343018,-0.0667419,-0.0923157,-0.111481,-0.119446,-0.113037,-0.0933838,-0.0623779,-0.0221558,0.0219727,0.063446,0.0977478,0.121002,0.131592,0.128937,0.11319,0.0888672,0.0581665,0.0249329,-0.00671387,-0.0308838,-0.0456848,-0.0492859,-0.0431824,-0.0272827,-0.00656128,0.0154419,0.0366516,0.0545654,0.0667419,0.0712585,0.0679932,0.0583191,0.044281,0.0277405,0.0129395,0.000946045,-0.00686646,-0.0101318,-0.00592041,0.00265503,0.014801,0.0282288,0.0419312,0.0534668,0.0611267,0.0645447,0.0620422,0.0564575,0.0467834,0.0347595,0.0218201,0.0093689,-0.00170898,-0.00997925,-0.0138855,-0.0151367,-0.0132446,-0.0101318,-0.006073,-0.00280762,-0.000793457,0.000457764,0.000457764,0,-0.00201416,-0.00296021,-0.00341797,-0.00109863,0.00234985,0.00827026,0.0155945,0.0244751,0.0303955,0.0347595,0.0347595,0.0316467,0.0247803,0.0143433,0.00219727,-0.0105896,-0.0241699,-0.0347595,-0.0419312,-0.0445862,-0.041626,-0.0354004,-0.0261841,-0.0154419,-0.00497437,0.00375366,0.0107727,0.0138855,0.0143433,0.0105896,0.00482178,-0.00250244,-0.00888062,-0.0143433,-0.0171509,-0.0187073,-0.0173035,-0.0149536,-0.0112305,-0.00637817,-0.00250244,0.000793457,0.0015564,-0.000793457,-0.00637817,-0.0112305,-0.0180969,-0.0255737,-0.0313416,-0.035553,-0.0397644,-0.0411682,-0.0394592,-0.0349121,-0.0288391,-0.0213623,-0.0137329,-0.00701904,-0.00219727,0.00234985,0.00515747,0.00656128,0.00561523,0.00201416,-0.00375366,-0.00967407,-0.0158997,-0.0216675,-0.0258789,-0.0280762,-0.0297852,-0.0297852,-0.0291443,-0.0249329,-0.020752,-0.0152893,-0.00967407,-0.00515747,-0.00125122,0.0015564,0.00375366,0.00576782,0.00701904,0.00827026,0.00857544,0.00778198,0.00717163,0.00592041,0.00531006,0.00311279,0.00109863,-0.00140381,-0.00436401,-0.00842285,-0.0121765,-0.0144958,-0.0166931,-0.0193481,-0.0196533,-0.0196533,-0.0187073,-0.0169983,-0.0143433,-0.0115356,-0.00778198,-0.00405884,0.000457764,0.00561523,0.0121765,0.0174561,0.0237122,0.0296326,0.0350952,0.0379028,0.0383606,0.0361633,0.0296326,0.0187073,0.00436401,-0.0126343,-0.0288391,-0.0448914,-0.0584717,-0.0656433,-0.0670471,-0.0628357,-0.0516052,-0.033844,-0.0127869,0.0093689,0.0305481,0.0478821,0.0598755,0.0651855,0.0629883,0.0545654,0.0405273,0.0241699,0.006073,-0.0093689,-0.020752,-0.0279236,-0.0285339,-0.0244751,-0.0163574,-0.00497437,0.00762939,0.0187073,0.0266724,0.031189,0.0300903,0.0255737,0.0171509,0.00796509,-0.00234985,-0.0093689,-0.0154419,-0.0165405,-0.013092,-0.00671387,0.00341797,0.0152893,0.0279236,0.0377197,0.0444336,0.0481873,0.0467834,0.0419312,0.033844,0.0227661,0.0119934,0.000946045,-0.00811768,-0.014801,-0.0171509,-0.0169983,-0.0132446,-0.00796509,-0.0015564,0.00482178,0.00982666,0.0135803,0.0137329,0.013092,0.0093689,0.00482178,-0.000152588,-0.00482178,-0.00747681,-0.00888062,-0.00747681,-0.00436401,0.000946045,0.00701904,0.0119934,0.0165405,0.0190125,0.0182495,0.0157471,0.010437,0.00360107,-0.00341797,-0.0112305,-0.0171509,-0.0216675,-0.0215149,-0.0204163,-0.0154419,-0.00778198,0.000305176,0.00872803,0.0160522,0.0216675,0.0246277,0.0247803,0.0221558,0.0173035,0.0102844,0.00280762,-0.00390625,-0.0093689,-0.0129395,-0.0135803,-0.0123291,-0.00982666,-0.00436401,-0.000152588,0.00546265,0.0105896,0.0141907,0.0157471,0.0144958,0.0126343,0.00952148,0.00637817,0.00296021,-0.00125122,-0.00311279,-0.00436401,-0.0045166,-0.00341797,-0.0015564,0.000152588,0.00234985,0.00375366,0.00405884,0.00375366,0.00234985,0.000305176,-0.00219727,-0.00421143,-0.00622559,-0.00717163,-0.00762939,-0.00811768,-0.00686646,-0.00546265,-0.00421143,-0.00280762,-0.00219727,-0.00186157,-0.00280762,-0.00360107,-0.00497437,-0.00671387,-0.00762939,-0.0090332,-0.00982666,-0.010437,-0.00982666,-0.0102844,-0.00872803,-0.00842285,-0.00811768,-0.00842285,-0.0090332,-0.00982666,-0.0115356,-0.0127869,-0.0138855,-0.0154419,-0.0157471,-0.0166931,-0.0152893,-0.0143433,-0.0118408,-0.00952148,-0.00656128,-0.00482178,-0.00265503,-0.00219727,-0.00170898,-0.00265503,-0.00421143,-0.00576782,-0.00811768,-0.00997925,-0.0118408,-0.0135803,-0.0135803,-0.0143433,-0.0141907,-0.0138855,-0.0132446,-0.0123291,-0.0113831,-0.0112305,-0.010437,-0.0093689,-0.0090332,-0.00762939,-0.00671387,-0.00546265,-0.00311279,-0.00140381,0.00109863,0.00265503,0.00341797,0.00341797,0.00234985,0.000152588,-0.00311279,-0.00732422,-0.0121765,-0.0168457,-0.0204163,-0.0232239,-0.0235291,-0.0218201,-0.0182495,-0.0126343,-0.00576782,0.00186157,0.00872803,0.0141907,0.0173035,0.0182495,0.0157471,0.0112305,0.00405884,-0.00341797,-0.0116882,-0.0179443,-0.0224609,-0.0241699,-0.0224609,-0.0184021,-0.0113831,-0.00311279,0.00515747,0.0129395,0.0193481,0.0229187,0.0230713,0.0218201,0.0163574,0.0112305,0.00405884,-0.00234985,-0.00778198,-0.0110779,-0.0124817,-0.0119934,-0.00872803,-0.00421143,0.000946045,0.00622559,0.0115356,0.0155945,0.0187073,0.0198059,0.0202637,0.019165,0.0173035,0.0154419,0.0129395,0.0112305,0.0093689,0.00872803,0.00778198,0.00827026,0.00842285,0.0090332,0.00888062,0.00967407,0.00952148,0.00982666,0.00967407,0.00982666,0.00982666,0.00967407,0.00952148,0.00918579,0.00857544,0.00827026,0.00778198,0.00717163,0.00656128,0.00531006,0.00497437,0.00375366,0.00341797,0.00360107,0.00405884,0.00436401,0.00482178,0.00546265,0.00592041,0.006073,0.00686646,0.00656128,0.00637817,0.00546265,0.00466919,0.00311279,0.00234985,0.00140381,0.00109863,0.000152588,0,-0.000610352,0.000457764,0.000946045,0.00201416,0.00265503,0.00326538,0.00341797,0.00390625,0.00360107,0.00341797,0.00280762,0.00311279,0.00311279,0.00341797,0.00390625,0.00466919,0.006073,0.00686646,0.00888062,0.0093689,0.0101318,0.0102844,0.0093689,0.00857544,0.00747681,0.00515747,0.00390625,0.00170898,0.000610352,-0.000305176,-0.000305176,0.000610352,0.00234985,0.00421143,0.00671387,0.0090332,0.0110779,0.0119934,0.0129395,0.0119934,0.0107727,0.00827026,0.0045166,0.00186157,-0.00170898,-0.00421143,-0.00592041,-0.00762939,-0.00811768,-0.00872803,-0.00747681,-0.006073,-0.0045166,-0.00234985,-0.00186157,-0.00109863,-0.00140381,-0.00140381,-0.00265503,-0.00390625,-0.00497437,-0.00561523,-0.00637817,-0.006073,-0.00622559,-0.00592041,-0.00576782,-0.00576782,-0.00592041,-0.00717163,-0.00796509,-0.00997925,-0.0109253,-0.0124817,-0.0124817,-0.0123291,-0.0121765,-0.0105896,-0.00872803,-0.00747681,-0.00436401,-0.00311279,-0.00109863,-0.000152588,-0.000152588,0,-0.000946045,-0.00170898,-0.00265503,-0.00341797,-0.00296021,-0.00375366,-0.00280762,-0.00201416,-0.0015564,-0.000793457,-0.000610352,-0.00125122,-0.00219727,-0.00390625,-0.00576782,-0.00762939,-0.00967407,-0.0112305,-0.0121765,-0.0119934,-0.0115356,-0.00982666,-0.00827026,-0.006073,-0.0045166,-0.00311279,-0.00280762,-0.00265503,-0.00375366,-0.00497437,-0.00747681,-0.00918579,-0.0116882,-0.0135803,-0.0143433,-0.014801,-0.0138855,-0.013092,-0.0110779,-0.00997925,-0.00762939,-0.00717163,-0.006073,-0.00732422,-0.00811768,-0.0102844,-0.0129395,-0.0146484,-0.0166931,-0.0180969,-0.0185547,-0.0179443,-0.0165405,-0.0143433,-0.0115356,-0.00857544,-0.00515747,-0.00311279,-0.000793457,-0.000152588,0.000610352,0,-0.000610352,-0.00140381,-0.00311279,-0.00375366,-0.00515747,-0.00531006,-0.00546265,-0.00436401,-0.00326538,-0.00219727,-0.000152588,0.00109863,0.00265503,0.00436401,0.00515747,0.00671387,0.00701904,0.00762939,0.00762939,0.00732422,0.00778198,0.00796509,0.00762939,0.00796509,0.00717163,0.00656128,0.00576782,0.00497437,0.00421143,0.00265503,0.00234985,0.000610352,0.000610352,0.000305176,0.00125122,0.00234985,0.0045166,0.006073,0.00796509,0.00997925,0.0113831,0.0121765,0.0126343,0.0119934,0.0105896,0.00811768,0.00531006,0.00219727,-0.000305176,-0.00250244,-0.00341797,-0.00405884,-0.00375366,-0.00234985,-0.000152588,0.00234985,0.00592041,0.00842285,0.0109253,0.0121765,0.013092,0.013092,0.0123291,0.0119934,0.0109253,0.00952148,0.00857544,0.00701904,0.00671387,0.00622559,0.00671387,0.00671387,0.00732422,0.00732422,0.00762939,0.00796509,0.00762939,0.00796509,0.00796509,0.00811768,0.00778198,0.00888062,0.00842285,0.0093689,0.00952148,0.00967407,0.00888062,0.00857544,0.00762939,0.00671387,0.00592041,0.00515747,0.00482178,0.00482178,0.00466919,0.00656128,0.00671387,0.00888062,0.0101318,0.0110779,0.0118408,0.0116882,0.0110779,0.0090332,0.00701904,0.00436401,0.00109863,-0.00170898,-0.00421143,-0.00671387,-0.00762939,-0.00811768,-0.00717163,-0.00531006,-0.00265503,0.000305176,0.00280762,0.006073,0.00857544,0.0109253,0.0118408,0.0113831,0.0102844,0.00811768,0.00531006,0.00219727,-0.000305176,-0.00326538,-0.00531006,-0.00686646,-0.00717163,-0.00686646,-0.00592041,-0.00436401,-0.00265503,-0.00140381,0.000152588,0.000946045,0.00186157,0.00201416,0.00219727,0.00201416,0.00186157,0.00186157,0.00201416,0.00219727,0.00234985,0.00265503,0.00234985,0.00170898,0.00109863,-0.000152588,-0.00170898,-0.00341797,-0.00546265,-0.00637817,-0.00762939,-0.00857544,-0.00778198,-0.00717163,-0.00576782,-0.0045166,-0.00280762,-0.0015564,-0.000457764,0.000457764,0,-0.00219727,-0.00686646,-0.00982666,-0.0115356,-0.0118408,-0.0123291,-0.0129395,-0.0127869,-0.0126343,-0.0107727,-0.00811768,-0.00546265,-0.00375366,-0.00186157,-0.00186157,-0.00219727,-0.00311279,-0.00482178,-0.00686646,-0.00842285,-0.010437,-0.0110779,-0.0119934,-0.0124817,-0.0126343,-0.0121765,-0.0112305,-0.00997925,-0.00872803,-0.00671387,-0.00576782,-0.00482178,-0.00497437,-0.00546265,-0.00546265,-0.00622559,-0.00622559,-0.00701904,-0.00747681,-0.00857544,-0.00952148,-0.00888062,-0.00811768,-0.00762939,-0.00796509,-0.00701904,-0.00796509,-0.00811768,-0.00872803,-0.00952148,-0.010437,-0.0102844,-0.00997925,-0.00872803,-0.00656128,-0.00466919,-0.00265503,-0.000793457,0,0,-0.000793457,-0.00170898,-0.00421143,-0.00637817,-0.00872803,-0.010437,-0.0123291,-0.0127869,-0.013092,-0.0119934,-0.00997925,-0.00827026,-0.00531006,-0.00296021,-0.0015564,0.000457764,0.000793457,0.00125122,0.000793457,0.000793457,-0.000152588,-0.000946045,-0.00201416,-0.00250244,-0.00311279,-0.00311279,-0.00375366,-0.00296021,-0.00265503,-0.00219727,-0.00140381,-0.000946045,-0.000793457,-0.000305176,-0.00109863,-0.00109863,-0.00219727,-0.00250244,-0.00311279,-0.00360107,-0.00280762,-0.00326538,-0.00170898,-0.000610352,0.000946045,0.00201416,0.00466919,0.00561523,0.00637817,0.00656128,0.00622559,0.00482178,0.00341797,0.00201416,0.000457764,-0.0015564,-0.00265503,-0.00375366,-0.00405884,-0.00375366,-0.00250244,-0.00109863,0.000610352,0.00250244,0.00405884,0.00515747,0.00561523,0.00546265,0.00515747,0.00421143,0.00296021,0.00186157,0.00109863,0.000305176,0.000305176,0.000793457,0.00201416,0.00296021,0.00515747,0.00656128,0.00827026,0.00952148,0.010437,0.0107727,0.0105896,0.0101318,0.00918579,0.00732422,0.00622559,0.00405884,0.00280762,0.00201416,0.00201416,0.00265503,0.00326538,0.00531006,0.00701904,0.00967407,0.0126343,0.0143433,0.0171509,0.0184021,0.0188599,0.0184021,0.0168457,0.0146484,0.0121765,0.0090332,0.00576782,0.00280762,0.000305176,-0.0015564,-0.00201416,-0.00186157,0.000152588,0.00234985,0.00466919,0.00827026,0.0107727,0.0132446,0.0154419,0.0162048,0.0166931,0.0158997,0.0141907,0.0123291,0.00982666,0.00717163,0.00546265,0.00375366,0.00170898,0.00186157,0.00125122,0.00186157,0.00296021,0.00390625,0.00546265,0.00637817,0.00732422,0.00762939,0.00778198,0.00762939,0.00747681,0.00656128,0.00592041,0.00515747,0.00497437,0.00390625,0.00436401,0.00482178,0.00482178,0.00576782,0.006073,0.00717163,0.00762939,0.00811768,0.00872803,0.00857544,0.00872803,0.00762939,0.00732422,0.00592041,0.0045166,0.00341797,0.00219727,0.00109863,0,-0.000457764,-0.000610352,-0.000305176,0.000457764,0.0015564,0.00296021,0.00405884,0.00497437,0.00592041,0.00622559,0.00592041,0.00561523,0.00482178,0.00375366,0.00219727,0.000946045,-0.000457764,-0.00140381,-0.00186157,-0.00201416,-0.00234985,-0.00219727,-0.00219727,-0.00234985,-0.00234985,-0.00219727,-0.00280762,-0.00341797,-0.00311279,-0.0045166,-0.00421143,-0.00482178,-0.00497437,-0.00466919,-0.00497437,-0.00466919,-0.00436401,-0.00390625,-0.00405884,-0.00390625,-0.00390625,-0.00436401,-0.00466919,-0.00546265,-0.006073,-0.00671387,-0.00732422,-0.00811768,-0.00827026,-0.00842285,-0.00827026,-0.00796509,-0.00732422,-0.00686646,-0.00622559,-0.00531006,-0.00515747,-0.00466919,-0.0045166,-0.00546265,-0.00546265,-0.00732422,-0.00762939,-0.00952148,-0.0101318,-0.0115356,-0.0116882,-0.0118408,-0.0118408,-0.0105896,-0.0093689,-0.00796509,-0.00686646,-0.00561523,-0.00546265,-0.00497437,-0.00592041,-0.00656128,-0.00778198,-0.00952148,-0.0105896,-0.0123291,-0.013092,-0.0132446,-0.0133972,-0.0119934,-0.0115356,-0.00952148,-0.00762939,-0.00656128,-0.00466919,-0.00390625,-0.00341797,-0.00326538,-0.00421143,-0.00436401,-0.00576782,-0.00686646,-0.00842285,-0.00857544,-0.00967407,-0.00952148,-0.0090332,-0.00842285,-0.00747681,-0.00671387,-0.00531006,-0.00482178,-0.00421143,-0.00341797,-0.00375366,-0.00390625,-0.00405884,-0.00482178,-0.00546265,-0.00531006,-0.00546265,-0.00531006,-0.00482178,-0.00390625,-0.00326538,-0.00234985,-0.00186157,-0.00109863,-0.000610352,-0.00109863,-0.00140381,-0.00234985,-0.00326538,-0.00421143,-0.00515747,-0.00592041,-0.006073,-0.00622559,-0.00531006,-0.0045166,-0.00326538,-0.00125122,0.000152588,0.00186157,0.00341797,0.00390625,0.0045166,0.00405884,0.00311279,0.00201416,0.000457764,-0.00140381,-0.00265503,-0.00390625,-0.00482178,-0.00515747,-0.00497437,-0.00436401,-0.00326538,-0.00186157,-0.000610352,0.00125122,0.00234985,0.00341797,0.00436401,0.00466919,0.00466919,0.00436401,0.00341797,0.00265503,0.00125122,0.000457764,-0.00125122,-0.00140381,-0.00234985,-0.00234985,-0.00234985,-0.00109863,-0.000946045,0.000793457,0.00186157,0.00311279,0.00405884,0.00482178,0.00466919,0.00515747,0.00375366,0.00326538,0.00170898,0.000152588,-0.00109863,-0.00265503,-0.00311279,-0.00375366,-0.00375366,-0.00280762,-0.00186157,-0.000457764,0.000793457,0.00201416,0.00311279,0.00341797,0.00375366,0.00280762,0.00186157,0.000610352,-0.00125122,-0.00219727,-0.00375366,-0.00421143,-0.00436401,-0.00375366,-0.00296021,-0.00125122,0.000305176,0.00170898,0.00326538,0.00436401,0.00421143,0.00515747,0.00375366,0.00375366,0.00234985,0.0015564,0.000457764,0,-0.000610352,0,0,0.000946045,0.00201416,0.00219727,0.00360107,0.00375366,0.00436401,0.00482178,0.00466919,0.00466919,0.00515747,0.0045166,0.00482178,0.00482178,0.00531006,0.00546265,0.006073,0.00592041,0.006073,0.006073,0.00546265,0.0045166,0.00390625,0.00265503,0.0015564,0.000793457,0,0.000152588,0.000946045,0.00170898,0.00326538,0.00482178,0.00701904,0.00811768,0.00997925,0.0101318,0.010437,0.00982666,0.00827026,0.00686646,0.00497437,0.00280762,0.00170898,0.000457764,-0.000152588,0.000152588,0.000793457,0.00219727,0.00360107,0.00576782,0.00747681,0.00827026,0.00997925,0.00888062,0.00952148,0.00811768,0.00686646,0.00515747,0.00390625,0.00250244,0.00125122,0.00109863,0.00125122,0.00140381,0.00265503,0.00375366,0.00515747,0.00622559,0.00732422,0.00827026,0.00888062,0.00842285,0.00888062,0.00827026,0.00778198,0.00778198,0.00701904,0.00671387,0.00622559,0.00576782,0.00497437,0.00466919,0.00360107,0.00296021,0.00186157,0.00140381,0.000457764,0.000305176,0.000152588,0.000946045,0.00170898,0.00250244,0.00405884,0.00531006,0.00686646,0.00717163,0.00811768,0.00762939,0.00717163,0.00622559,0.00482178,0.00296021,0.00109863,-0.000610352,-0.00219727,-0.00375366,-0.00436401,-0.00482178,-0.0045166,-0.00405884,-0.00311279,-0.00140381,-0.000457764,0.000610352,0.00234985,0.00296021,0.00341797,0.00341797,0.00311279,0.00280762,0.00219727,0.000946045,0,-0.000793457,-0.0015564,-0.00250244,-0.00265503,-0.00326538,-0.00326538,-0.00360107,-0.00360107,-0.00326538,-0.00311279,-0.00234985,-0.00201416,-0.00125122,-0.000793457,-0.000152588,0.000152588,0.000610352,0.000793457,0.000946045,0.000457764,0,-0.00140381,-0.00201416,-0.00360107,-0.00466919,-0.00592041,-0.00671387,-0.00778198,-0.00778198,-0.00778198,-0.00701904,-0.00622559,-0.00497437,-0.00390625,-0.00250244,-0.00186157,-0.00109863,-0.000946045,-0.00125122,-0.00219727,-0.00326538,-0.00466919,-0.00637817,-0.00732422,-0.00888062,-0.00918579,-0.00997925,-0.00997925,-0.00918579,-0.00888062,-0.00762939,-0.00656128,-0.00546265,-0.00466919,-0.00375366,-0.00390625,-0.00326538,-0.00436401,-0.0045166,-0.00622559,-0.00686646,-0.00857544,-0.00952148,-0.0105896,-0.0115356,-0.0113831,-0.0113831,-0.0110779,-0.0102844,-0.00918579,-0.00811768,-0.00686646,-0.00576782,-0.00466919,-0.00390625,-0.00341797,-0.00311279,-0.00311279,-0.00375366,-0.00405884,-0.00531006,-0.00576782,-0.00701904,-0.00811768,-0.00827026,-0.00918579,-0.00888062,-0.00918579,-0.00811768,-0.00796509,-0.00717163,-0.00592041,-0.00531006,-0.00421143,-0.00360107,-0.00311279,-0.00296021,-0.00326538,-0.00311279,-0.00390625,-0.00421143,-0.00436401,-0.00482178,-0.00497437,-0.00497437,-0.00531006,-0.00482178,-0.00421143,-0.00390625,-0.00296021,-0.00201416,-0.00186157,-0.000457764,-0.000457764,0.000457764,0.000457764,0.000610352,0.000152588,0.000152588,-0.00125122,-0.00125122,-0.00234985,-0.00265503,-0.00311279,-0.00341797,-0.00341797,-0.00280762,-0.00234985,-0.00109863,0.000305176,0.00125122,0.00326538,0.00421143,0.00561523,0.00671387,0.00701904,0.00796509,0.00732422,0.00747681,0.006073,0.00515747,0.00375366,0.00250244,0.00109863,0,-0.000793457,-0.00125122,-0.00140381,-0.00109863,0,0.00140381,0.00265503,0.0045166,0.00561523,0.00732422,0.00778198,0.00842285,0.00842285,0.00827026,0.00717163,0.00637817,0.00497437,0.00405884,0.00265503,0.00265503,0.00170898,0.00219727,0.00250244,0.00311279,0.00375366,0.0045166,0.00561523,0.00576782,0.00622559,0.006073,0.00592041,0.00531006,0.00466919,0.00390625,0.00360107,0.00296021,0.00250244,0.00265503,0.00219727,0.00201416,0.00201416,0.00250244,0.00219727,0.00250244,0.00250244,0.00265503,0.00296021,0.00311279,0.00360107,0.00375366,0.00436401,0.0045166,0.00466919,0.0045166,0.00436401,0.00375366,0.00296021,0.00201416,0.000610352,-0.000305176,-0.0015564,-0.00219727,-0.00311279,-0.00296021,-0.00311279,-0.00250244,-0.00170898,-0.000793457,0.000305176,0.0015564,0.00201416,0.00280762,0.00360107,0.00311279,0.00296021,0.00201416,0.00125122,-0.000305176,-0.00125122,-0.00280762,-0.00375366,-0.00482178,-0.00561523,-0.00592041,-0.006073,-0.00561523,-0.00515747,-0.00405884,-0.00296021,-0.00186157,-0.000610352,0.000305176,0.00125122,0.00140381,0.00186157,0.00140381,0.000793457,0.000152588,-0.0015564,-0.00219727,-0.00375366,-0.0045166,-0.00466919,-0.00576782,-0.00466919,-0.00497437,-0.00390625,-0.00296021,-0.00219727,-0.00109863,0.000457764,0.000305176,0.0015564,0.0015564,0.0015564,0.00170898,0.00140381,0.00125122,0.000793457,0.000305176,0.000305176,-0.000305176,-0.000793457,-0.000610352,-0.000793457,-0.00140381,-0.00109863,-0.00109863,-0.000946045,-0.000610352,-0.000152588,0.000152588,0.000610352,0.000793457,0.00140381,0.0015564,0.00186157,0.00201416,0.00219727,0.00186157,0.00201416,0.00140381,0.00125122,0.000946045,0.000610352,0.000793457,0,0.000305176,0.000152588,0,0.000610352,0.000610352,0.00109863,0.00170898,0.0015564,0.00234985,0.00219727,0.00265503,0.00234985,0.00234985,0.00219727,0.00186157,0.00125122,0.00125122,0.000457764,0.000793457,0.000457764,0.000152588,0.000793457,0.000457764,0.00140381,0.000793457,0.00219727,0.0015564,0.00234985,0.00234985,0.00219727,0.00234985,0.00201416,0.00219727,0.0015564,0.00140381,0.00125122,0.00125122,0.000457764,0.000946045,0.000457764,0.000152588,0.000152588,-0.000457764,-0.000457764,-0.000946045,-0.00109863,-0.00140381,-0.00109863,-0.00109863,-0.000946045,-0.000610352,0.000152588,0.000152588,0.00109863,0.00140381,0.00140381,0.00170898,0.00125122,0.000793457,-0.000152588,-0.000946045,-0.00186157,-0.00296021,-0.00341797,-0.00390625,-0.00405884,-0.00390625,-0.00311279,-0.00296021,-0.00125122,-0.00109863,-0.000152588,0.000305176,0.000152588,-0.000152588,-0.000610352,-0.00170898,-0.00265503,-0.00375366,-0.00405884,-0.00576782,-0.00466919,-0.00515747,-0.0045166,-0.00375366,-0.00234985,-0.0015564,-0.000305176,0.000610352,0.00125122,0.00201416,0.00125122,0.00170898,0.000946045,0,-0.000610352,-0.00125122,-0.00219727,-0.00250244,-0.00296021,-0.00280762,-0.00265503,-0.00280762,-0.00170898,-0.00219727,-0.00109863,-0.00140381,-0.000610352,-0.000946045,-0.000793457,-0.000457764,-0.000457764,-0.000305176,-0.000152588,0.000152588,0.000457764,0.000610352,0.000946045,0.00109863,0.000946045,0.00109863,0.000610352,0.000305176,0.000305176,-0.000946045,-0.000793457,-0.00140381,-0.00170898,-0.00170898,-0.00140381,-0.00140381,-0.000793457,-0.000610352,0.000152588,0.000457764,0.000793457,0.00125122,0.00125122,0.00125122,0.00109863,0.000457764,0.000793457,0,-0.000152588,-0.000305176,-0.000610352,0.000152588,-0.000793457,-0.000152588,0.000152588,0.000152588,0.000457764,0.000793457,0.000793457,0.00109863,0.00125122,0.00125122,0.00170898,0.00140381,0.00170898,0.00170898,0.000946045,0.0015564,0.000152588,0.000152588,-0.000946045,-0.0015564,-0.00201416,-0.00265503,-0.00265503,-0.00280762,-0.00201416,-0.00186157,-0.000457764,0.000793457,0.00234985,0.00311279,0.00436401,0.00482178,0.00482178,0.0045166,0.00326538,0.00250244,0.000305176,-0.00125122,-0.00250244,-0.00405884,-0.00466919,-0.00421143,-0.00405884,-0.00280762,-0.0015564,0.000152588,0.00140381,0.00296021,0.00326538,0.00390625,0.00360107,0.00219727,0.00109863,-0.000946045,-0.00186157,-0.00405884,-0.0045166,-0.00546265,-0.00515747,-0.00497437,-0.00405884,-0.00265503,-0.00125122,0.000152588,0.00186157,0.00234985,0.00326538,0.00341797,0.00311279,0.00280762,0.00186157,0.00109863,0.000152588,-0.000946045,-0.00170898,-0.00219727,-0.00265503,-0.00280762,-0.00296021,-0.00250244,-0.00234985,-0.00201416,-0.00170898,-0.000946045,-0.000457764,0.000152588,0.000610352,0.000946045,0.0015564,0.0015564,0.00201416,0.00170898,0.00201416,0.0015564,0.00140381,0.000610352,0.000305176,-0.000457764,-0.00125122,-0.00140381,-0.00201416,-0.00186157,-0.00201416,-0.00186157,-0.000610352,-0.000457764,0.000610352,0.0015564,0.00219727,0.00265503,0.00296021,0.00250244,0.00201416,0.00140381,0,-0.000946045,-0.00170898,-0.00250244,-0.00265503,-0.00265503,-0.00170898,-0.00109863,0.000457764,0.00140381,0.00311279,0.00360107,0.00436401,0.00405884,0.00360107,0.00250244,0.00125122,-0.000152588,-0.00140381,-0.00296021,-0.00375366,-0.00405884,-0.00390625,-0.00311279,-0.00219727,-0.00109863,0.000152588,0.000946045,0.00186157,0.00219727,0.00234985,0.00186157,0.0015564,0.000457764,-0.000457764,-0.00109863,-0.00140381,-0.00201416,-0.0015564,-0.00170898,-0.000946045,-0.000793457,0,0,0.000946045,0.000610352,0.00109863,0.000610352,0.000457764,0.000305176,-0.000152588,-0.000152588,-0.000305176,-0.000305176,-0.000457764,-0.000152588,-0.000793457,-0.000305176,-0.000610352,-0.000610352,-0.000610352,-0.000946045,-0.00109863,-0.00125122,-0.00125122,-0.00109863,-0.00109863,-0.000946045,-0.000457764,-0.000610352,0,-0.000610352,0,-0.000793457,-0.000457764,-0.00109863,-0.00109863,-0.00170898,-0.0015564,-0.00186157,-0.00109863,-0.00186157,-0.000457764,-0.00109863,0,-0.000305176,0.000152588,0,-0.000152588,-0.000152588,-0.00109863,-0.000946045,-0.00170898,-0.00201416,-0.00201416,-0.00234985,-0.00186157,-0.00170898,-0.00125122,-0.000793457,-0.000152588,0.000152588,0.000610352,0.000793457,0.000610352,0.000793457,-0.000152588,0,-0.000457764,-0.00109863,-0.00140381,-0.00140381,-0.00140381,-0.00125122,-0.00109863,-0.000610352,-0.000152588,0.000152588,0.000152588,0.000793457,0.000152588,0.000610352,-0.000610352,0.000152588,-0.000793457,-0.000793457,-0.00109863,-0.000946045,-0.000152588,0.000152588,0.00125122,0.00170898,0.00311279,0.00341797,0.00360107,0.00375366,0.00341797,0.00265503,0.00170898,0.000457764,-0.000457764,-0.00186157,-0.00250244,-0.00296021,-0.00375366,-0.00311279,-0.00250244,-0.00219727,-0.000946045,-0.000457764,0.000793457,0.000946045,0.00140381,0.00170898,0.00125122,0.00140381,0.000793457,0.000610352,0,-0.000152588,-0.000457764,-0.00109863,-0.00125122,-0.00140381,-0.00186157,-0.00265503,-0.00219727,-0.00265503,-0.00280762,-0.00186157,-0.00201416,-0.000946045,-0.000457764,0.000457764,0.00125122,0.00219727,0.00219727,0.00265503,0.00234985,0.00170898,0.000610352,0,-0.00140381,-0.00234985,-0.00296021,-0.00375366,-0.00341797,-0.00341797,-0.00234985,-0.0015564,0,0.000946045,0.00234985,0.00265503,0.00311279,0.00326538,0.00280762,0.00186157,0.00109863,0,-0.000946045,-0.00186157,-0.00234985,-0.00280762,-0.00234985,-0.00219727,-0.00109863,-0.000305176,0.000610352,0.00140381,0.00219727,0.00296021,0.00265503,0.0045166,0.00701904,0.00778198,0.00561523,0.00390625,0.00219727,0.00109863,-0.000457764,-0.000610352,-0.00109863,-0.00170898,-0.00186157,-0.000793457,-0.000457764,-0.000610352,-0.000610352,-0.000946045,-0.000946045,-0.0015564,-0.00140381,-0.00201416,-0.00186157,-0.00109863,-0.000305176,-0.000457764,-0.000457764,-0.000152588,-0.000457764,0,-0.000305176,-0.000457764,-0.00125122,-0.00219727,-0.00219727,-0.00234985,-0.00234985,-0.00265503,-0.00186157,-0.000946045,-0.000793457,-0.00109863,0,0.000946045,0.00140381,0.00170898,0.0015564,0,-0.000610352,-0.00109863,-0.000457764,-0.000946045,-0.00201416,-0.00390625,-0.00265503,-0.00201416,-0.000793457,-0.00109863,0,0.0015564,0.00234985,0.00140381,0.00170898,0.000793457,0.000610352,-0.00109863,-0.000946045,-0.00234985,-0.00125122,-0.000152588,0,-0.00125122,-0.000610352,-0.00125122,-0.00186157,-0.000793457,0.000610352,0.00125122,0.00170898,0.00250244,0.00296021,0.00265503,0.00219727,0.00140381,0.000457764,-0.000946045,-0.00186157,-0.00296021,-0.00296021,-0.00170898,-0.000457764,-0.000152588,0.000610352,0.00326538,0.00482178,0.00576782,0.00576782,0.00405884,0.00326538,0.00326538,0.00280762,0.00296021,0.0015564,0.00140381,0.00170898,0.00234985,0.00341797,0.00296021,0.00201416,0.00234985,0.00170898,0.000610352,0.000152588,-0.000152588,-0.000946045,-0.00186157,-0.00265503,-0.0015564,-0.00109863,-0.00186157,-0.00265503,-0.00140381,0.000457764,0.00109863,0.000793457,0.00170898,0.00280762,0.00341797,0.00421143,0.0045166,0.00311279,0.0015564,-0.000305176,-0.000152588,-0.0015564,-0.00219727,-0.00341797,-0.00390625,-0.00296021,-0.00140381,-0.00140381,-0.00390625,-0.00250244,-0.00109863,-0.0015564,-0.00265503,-0.00234985,-0.000946045,-0.00186157,-0.00326538,-0.00311279,-0.00311279,-0.00296021,-0.00375366,-0.00296021,-0.00219727,-0.00326538,-0.00482178,-0.00482178,-0.00296021,-0.00265503,-0.00280762,-0.00375366,-0.00405884,-0.00390625,-0.00201416,-0.00186157,-0.00250244,-0.00341797,-0.000793457,0.00140381,-0.000793457,-0.00375366,-0.00531006,-0.00531006,-0.00326538,-0.00250244,-0.00170898,-0.000152588,0.00436401,0.00796509,0.00671387,0.00311279,0.00140381,0.0015564,0.00186157,0.0015564,0.000152588,-0.00219727,-0.00125122,0.0015564,0.00390625,0.00390625,0.00390625,0.00405884,0.00576782,0.00827026,0.00778198,0.00466919,0.00201416,0.000946045,0.000793457,0.0015564,0.00186157,0.00375366,0.00656128,0.00701904,0.00671387,0.00762939,0.00531006,0.00140381,-0.00125122,0.000152588,0.000457764,-0.00219727,-0.00311279,-0.00201416,-0.00186157,-0.00296021,-0.00296021,-0.00326538,-0.00576782,-0.00717163,-0.00637817,-0.00497437,-0.00515747,-0.00592041,-0.00515747,-0.00280762,0.00326538,0.00515747,0.00671387,0.00637817,0.00592041,0.00311279,0.00125122,0.000946045,-0.00125122,-0.00280762,-0.00311279,-0.00125122,-0.000793457,-0.00234985,-0.00311279,-0.00311279,-0.00186157,-0.00170898,-0.00375366,-0.006073,-0.00546265,-0.00375366,-0.00280762,-0.00311279,-0.00375366,-0.00421143,-0.00265503,0.00186157,0.00531006,0.00311279,-0.00140381,-0.00497437,-0.00637817,-0.006073,-0.00375366,-0.00125122,0.000305176,0.00250244,0.00234985,0.00234985,0.0015564,0.000457764,-0.000457764,0.00186157,0.00421143,0.00421143,0.0015564,0.00234985,0.006073,0.00576782,0.00421143,0.0015564,0.000946045,0.00219727,0.00140381,0,-0.00234985,-0.00296021,-0.000610352,0.00170898,0.00109863,-0.000305176,0.00125122,0.00436401,0.00360107,0.000457764,0.00170898,0.00466919,0.00360107,0.0015564,0.00186157,0.0045166,0.00265503,0.00219727,0.00250244,0.00360107,0.00311279,0.00234985,0.00421143,0.00436401,0.00671387,0.006073,0.00482178,0.00280762,0.00140381,0,-0.000305176,-0.000152588,-0.000305176,0.00140381,0.00390625,0.00265503,0,-0.000305176,0.00296021,0.00497437,0.00515747,0.00436401,0.00436401,0.00219727,-0.00140381,-0.00405884,-0.00390625,-0.00466919,-0.00531006,-0.00482178,-0.00375366,-0.00296021,-0.00326538,-0.00390625,-0.00390625,-0.00390625,-0.00311279,-0.00482178,-0.006073,-0.00637817,-0.00546265,-0.00515747,-0.00482178,-0.00421143,-0.00375366,-0.00405884,-0.00515747,-0.00656128,-0.00576782,-0.00265503,-0.00326538,-0.00531006,-0.00265503,0.000793457,0.000152588,-0.00326538,-0.00482178,-0.00466919,-0.00466919,-0.00546265,-0.00842285,-0.0093689,-0.0090332,-0.00732422,-0.00622559,-0.00686646,-0.00576782,-0.00421143,-0.00219727,-0.00186157,-0.00341797,-0.00311279,-0.00186157,-0.000152588,0.000457764,-0.00125122,-0.00170898,-0.00170898,-0.0015564,-0.00375366,-0.00405884,-0.00311279,-0.00219727,-0.00125122,0.000305176,0.00125122,-0.000152588,-0.00109863,-0.0015564,-0.0015564,-0.000946045,0,0.000946045,0,-0.00109863,-0.00109863,-0.00140381,-0.00170898,-0.00280762,-0.00311279,-0.00234985,-0.00341797,-0.00360107,-0.00234985,0.000305176,0.00109863,-0.000793457,-0.00125122,0.000457764,0.000457764,0.0015564,0.00311279,0.00390625,0.00234985,0.00140381,0.000793457,0.000610352,0.00125122,-0.000610352,-0.00201416,-0.00341797,-0.00201416,0.000610352,0.000793457,0,0.00125122,0.00219727,0.00390625,0.00436401,0.00296021,0.00140381,-0.00170898,-0.00234985,-0.00280762,-0.00201416,-0.000793457,-0.000793457,-0.000152588,-0.000457764,-0.000946045,-0.00250244,-0.00421143,-0.00326538,-0.00201416,-0.00125122,-0.000946045,-0.00201416,-0.00375366,-0.00296021,-0.00341797,-0.00375366,-0.00234985,0.000305176,0.00125122,0.0015564,0.00234985,0.00219727,0.000457764,-0.00234985,-0.00375366,-0.00341797,-0.00405884,-0.00482178,-0.00466919,-0.00326538,-0.00234985,-0.00170898,-0.00186157,-0.00140381,-0.00109863,-0.000457764,-0.000305176,0,-0.000152588,-0.000152588,-0.000152588,-0.000457764,-0.00125122,-0.00170898,-0.00109863,-0.000457764,-0.000793457,-0.000610352,-0.000305176,-0.000457764,-0.000946045,-0.000152588,0,0.000610352,0,-0.00125122,-0.000793457,-0.000457764,0.000946045,0.000793457,0.0015564,0.000610352,-0.000457764,-0.000305176,0.000946045,0.000793457,0.00109863,0.000457764,0.000152588,-0.000946045,-0.000793457,0.000305176,0.000610352,0.000946045,0.00109863,0.000610352,0.00109863,0.00250244,0.00390625,0.00405884,0.00296021,0.00360107,0.00375366,0.00326538,0.00170898,0.000793457,0.00109863,0.000305176,0.000457764,0.000305176,0,0,0.000610352,0.00170898,0.00234985,0.00296021,0.00341797,0.00390625,0.00482178,0.0045166,0.00515747,0.00497437,0.00341797,0.00201416,0.000457764,-0.000152588,-0.000305176,-0.00109863,-0.000610352,-0.000793457,-0.00109863,-0.000305176,0.000946045,0.00265503,0.00219727,0.00219727,0.00250244,0.00201416,0.00109863,0.000305176,0.00109863,0.00140381,0.00234985,0.00280762,0.00296021,0.00296021,0.00186157,0.00201416,0.00250244,0.00250244,0.00219727,0.00125122,0.000610352,0.000610352,0.00140381,0.0015564,0.00125122,0,0,0.000305176,0.000793457,0.00125122,0.00125122,0.000946045,0.00170898,0.0015564,0.00109863,0.00125122,-0.000457764,-0.000793457,-0.0015564,-0.000610352,-0.000152588,0.000946045,0.000305176,0.0015564,0.00280762,0.00497437,0.00482178,0.00405884,0.00405884,0.00390625,0.0045166,0.00405884,0.00201416,0.00125122,0.000793457,0.000946045,0.000457764,-0.000152588,-0.00109863,-0.00125122,-0.000610352,0.000305176,0.000152588,-0.000610352,-0.000457764,-0.000152588,0.00109863,0.00234985,0.00280762,0.00250244,0.00170898,0.00201416,0.000457764,0.000457764,-0.00109863,-0.000793457,-0.000793457,-0.000793457,0.000610352,0.0015564,0.00265503,0.00390625,0.00360107,0.00201416,0.00140381,0.00109863,0.0015564,0.000793457,0.000305176,-0.000305176,-0.000793457,-0.000457764,0.000610352,0.0015564,0.00170898,0.000610352,0,0.000152588,-0.000152588,0,0,0.000793457,0.000457764,0.000610352,0.000305176,0.000457764,0,0,0.000152588,0.000305176,0.000793457,0,-0.00125122,-0.00186157,-0.00219727,-0.00186157,-0.00170898,-0.000946045,-0.0015564,-0.00170898,-0.00140381,-0.00186157,-0.00250244,-0.00219727,-0.0015564,-0.000946045,0.000305176,-0.000610352,0.000610352,0.000793457,0.000305176,0.000793457,-0.000793457,-0.00201416,-0.00296021,-0.00234985,-0.000946045,-0.000305176,-0.000152588,-0.000610352,-0.000610352,-0.000610352,-0.000610352,0.000946045,-0.000305176,0.000793457,0.000305176,0.000610352,0,-0.000152588,0.000305176,0.000457764,0.000610352,0.00140381,0.0015564,0.00201416,0.00186157,0.00109863,0.000946045,0.00125122,0.00125122,0.00250244,0.00234985,0.00234985,0.00186157,0.000610352,0.000152588,0.000457764,0.000152588,0,0,-0.000457764,-0.000305176,-0.000152588,0.000610352,0.00109863,0.000946045,0.00109863,0.000793457,0.00109863,0.00125122,0.000793457,0.000305176,0.000305176,-0.000457764,-0.000610352,-0.000946045,-0.00140381,-0.00250244,-0.00326538,-0.00436401,-0.00405884,-0.00436401,-0.00497437,-0.00546265,-0.00546265,-0.00531006,-0.00531006,-0.00497437,-0.00515747,-0.00515747,-0.00531006,-0.00561523,-0.00656128,-0.006073,-0.00592041,-0.00561523,-0.00482178,-0.00576782,-0.00546265,-0.006073,-0.00592041,-0.00622559,-0.00656128,-0.00561523,-0.00561523,-0.00531006,-0.00546265,-0.00531006,-0.00576782,-0.00497437,-0.00546265,-0.00405884,-0.00375366,-0.00375366,-0.00341797,-0.00375366,-0.00405884,-0.00375366,-0.00360107,-0.00296021,-0.00360107,-0.00405884,-0.00436401,-0.00497437,-0.0045166,-0.00390625,-0.00265503,-0.00234985,-0.00280762,-0.0015564,-0.00234985,-0.000610352,-0.000457764,-0.000457764,-0.000946045,-0.00186157,-0.00219727,-0.00265503,-0.0015564,-0.000305176,-0.000305176,0.000305176,0.000610352,0.000793457,0.000946045,0.000152588,0.000305176,-0.000305176,-0.000457764,-0.000610352,-0.000946045,-0.00125122,-0.00125122,-0.00219727,-0.00170898,-0.00186157,-0.00170898,-0.0015564,-0.00201416,-0.00186157,-0.00186157,-0.00186157,-0.00234985,-0.00201416,-0.00140381,-0.000946045,-0.000457764,-0.00109863,-0.00109863,-0.00125122,-0.00125122,-0.00109863,-0.00125122,-0.000946045,-0.000946045,-0.000793457,0.000152588,0.000152588,0.000610352,-0.000305176,-0.00125122,-0.00234985,-0.0015564,-0.00234985,-0.00296021,-0.00341797,-0.00280762,-0.00250244,-0.0015564,-0.000305176,0.000457764,0.000610352,0.00109863,0.00125122,0.00186157,0.00170898,0.000946045,0.000152588,-0.000457764,-0.00170898,-0.00109863,-0.00201416,-0.00186157,-0.000946045,-0.000610352,-0.000152588,-0.000152588,-0.000152588,-0.000152588,0.00109863,0.00109863,0.00170898,0.00186157,0.000457764,0.000793457,0.000457764,0.000305176,0.000793457,0.000610352,-0.000457764,0.000152588,0.000457764,0.000793457,0.000946045,0.00109863,0.00186157,0.00265503,0.00326538,0.00375366,0.00436401,0.00405884,0.00436401,0.00436401,0.00466919,0.00482178,0.00561523,0.00622559,0.00656128,0.00762939,0.00811768,0.00997925,0.0107727,0.0112305,0.0110779,0.0109253,0.0102844,0.0107727,0.0109253,0.0116882,0.0118408,0.0116882,0.0113831,0.0129395,0.0144958,0.0157471,0.0158997,0.0154419,0.0149536,0.0154419,0.0154419,0.0154419,0.0144958,0.0144958,0.0135803,0.0135803,0.0146484,0.0151367,0.0155945,0.0157471,0.0162048,0.0163574,0.0171509,0.0176086,0.0177612,0.0179443,0.0173035,0.0163574,0.0154419,0.0144958,0.0141907,0.0129395,0.0123291,0.0118408,0.0109253,0.0107727,0.00967407,0.00952148,0.00888062,0.00827026,0.00747681,0.00656128,0.00576782,0.0045166,0.00360107,0.00296021,0.00280762,0.00186157,0.00125122,0.00109863,0.000610352,0.00109863,0.00186157,0.00250244,0.00341797,0.00219727,0.00201416,0.000946045,0,-0.000610352,-0.00125122,-0.00234985,-0.00360107,-0.00497437,-0.00561523,-0.00592041,-0.00637817,-0.00686646,-0.00717163,-0.00778198,-0.00842285,-0.00762939,-0.00701904,-0.00717163,-0.00732422,-0.00811768,-0.00857544,-0.00888062,-0.00918579,-0.00952148,-0.00952148,-0.0102844,-0.00997925,-0.010437,-0.0101318,-0.0102844,-0.0102844,-0.0102844,-0.010437,-0.0101318,-0.00997925,-0.00997925,-0.00982666,-0.0101318,-0.0109253,-0.0110779,-0.0121765,-0.0121765,-0.0123291,-0.0121765,-0.0123291,-0.0118408,-0.0119934,-0.0112305,-0.0112305,-0.0107727,-0.0107727,-0.010437,-0.0105896,-0.0105896,-0.00997925,-0.00997925,-0.00952148,-0.0093689,-0.00918579,-0.00918579,-0.00872803,-0.0090332,-0.00857544,-0.00918579,-0.0093689,-0.00952148,-0.00982666,-0.0102844,-0.010437,-0.0102844,-0.00997925,-0.00952148,-0.00872803,-0.00778198,-0.00732422,-0.00671387,-0.00671387,-0.00531006,-0.00531006,-0.00497437,-0.00546265,-0.006073,-0.00717163,-0.00747681,-0.00796509,-0.00842285,-0.0090332,-0.00888062,-0.00918579,-0.00872803,-0.00762939,-0.00827026,-0.00778198,-0.00827026,-0.00796509,-0.00811768,-0.00747681,-0.00732422,-0.00717163,-0.00671387,-0.00778198,-0.00778198,-0.00762939,-0.00701904,-0.00717163,-0.00656128,-0.00762939,-0.00732422,-0.00811768,-0.00778198,-0.00811768,-0.00857544,-0.00918579,-0.0101318,-0.0112305,-0.0105896,-0.0101318,-0.00918579,-0.00888062,-0.00918579,-0.00982666,-0.0105896,-0.0109253,-0.0110779,-0.0110779,-0.0107727,-0.00997925,-0.0102844,-0.0105896,-0.0116882,-0.0119934,-0.0119934,-0.0121765,-0.0118408,-0.0123291,-0.0133972,-0.0135803,-0.0133972,-0.0129395,-0.0121765,-0.0115356,-0.0101318,-0.0105896,-0.00982666,-0.0101318,-0.00918579,-0.00857544,-0.00827026,-0.00842285,-0.00918579,-0.010437,-0.0110779,-0.0118408,-0.0113831,-0.0115356,-0.0118408,-0.0126343,-0.0133972,-0.0133972,-0.0127869,-0.0137329,-0.0143433,-0.0165405,-0.0173035,-0.0180969,-0.0166931,-0.0151367,-0.0123291,-0.0090332,-0.00671387,-0.00436401,-0.00201416,0.000610352,0.00531006,0.00952148,0.0135803,0.014801,0.0146484,0.0138855,0.0137329,0.0140381,0.0152893,0.0154419,0.0144958,0.0135803,0.0133972,0.0135803,0.014801,0.0160522,0.0185547,0.0195007,0.020752,0.0210571,0.0219727,0.0229187,0.025116,0.0266724,0.0279236,0.0286865,0.0289917,0.0299377,0.0314941,0.033844,0.0350952,0.037262,0.0385132,0.040863,0.0414734,0.0422668,0.041626,0.0407104,0.0391235,0.0389709,0.0375671,0.0374146,0.0379028,0.0375671,0.0371094,0.0358582,0.0339966,0.0332031,0.0319519,0.0319519,0.0305481,0.0291443,0.0269775,0.0263367,0.0261841,0.0255737,0.0254211,0.0243225,0.0232239,0.0235291,0.0233765,0.0237122,0.0232239,0.0230713,0.0221558,0.0205688,0.0190125,0.0171509,0.0160522,0.0146484,0.0132446,0.0124817,0.0107727,0.00982666,0.00952148,0.00857544,0.00762939,0.00576782,0.00515747,0.00390625,0.00421143,0.00311279,0.00170898,-0.000793457,-0.00265503,-0.00390625,-0.00436401,-0.00436401,-0.00466919,-0.00531006,-0.006073,-0.00671387,-0.00747681,-0.00701904,-0.00732422,-0.00717163,-0.00842285,-0.00888062,-0.010437,-0.0109253,-0.0119934,-0.0119934,-0.0123291,-0.0123291,-0.0127869,-0.0123291,-0.0121765,-0.0112305,-0.0102844,-0.0102844,-0.00952148,-0.00967407,-0.00952148,-0.00982666,-0.0102844,-0.0105896,-0.0109253,-0.0105896,-0.010437,-0.00997925,-0.00967407,-0.0090332,-0.0090332,-0.00811768,-0.00717163,-0.00686646,-0.00576782,-0.00656128,-0.00637817,-0.00671387,-0.00701904,-0.00637817,-0.00637817,-0.00561523,-0.00531006,-0.00466919,-0.0045166,-0.00390625,-0.00265503,-0.00219727,-0.0015564,-0.000793457,-0.000457764,-0.000152588,-0.000946045,-0.00125122,-0.00140381,-0.00234985,-0.00311279,-0.00421143,-0.00482178,-0.00531006,-0.00622559,-0.00717163,-0.00872803,-0.00952148,-0.0107727,-0.0107727,-0.0121765,-0.0124817,-0.0133972,-0.0144958,-0.0146484,-0.0154419,-0.0151367,-0.0157471,-0.0155945,-0.0163574,-0.0162048,-0.0162048,-0.0160522,-0.0155945,-0.0158997,-0.0158997,-0.0165405,-0.0173035,-0.0182495,-0.0187073,-0.019165,-0.0199585,-0.0202637,-0.0205688,-0.0215149,-0.0219727,-0.0224609,-0.0232239,-0.0235291,-0.0244751,-0.0244751,-0.0249329,-0.0249329,-0.025116,-0.0249329,-0.0249329,-0.0243225,-0.0235291,-0.0224609,-0.0216675,-0.0209045,-0.0204163,-0.0195007,-0.0187073,-0.0179443,-0.0174561,-0.0173035,-0.0165405,-0.0163574,-0.0157471,-0.0160522,-0.0158997,-0.0158997,-0.0149536,-0.0144958,-0.0137329,-0.0140381,-0.0140381,-0.0137329,-0.0129395,-0.0113831,-0.0107727,-0.0107727,-0.0118408,-0.0116882,-0.0112305,-0.00997925,-0.00872803,-0.00827026,-0.00857544,-0.00888062,-0.00842285,-0.00747681,-0.00592041,-0.00561523,-0.00531006,-0.00592041,-0.006073,-0.00576782,-0.00592041,-0.00592041,-0.00701904,-0.00872803,-0.00997925,-0.0113831,-0.010437,-0.0109253,-0.0112305,-0.0121765,-0.0135803,-0.0140381,-0.0137329,-0.0133972,-0.013092,-0.0132446,-0.0140381,-0.0133972,-0.013092,-0.0115356,-0.00967407,-0.00811768,-0.00796509,-0.00686646,-0.00622559,-0.0045166,-0.00250244,0.000457764,0.00360107,0.00671387,0.00872803,0.0110779,0.0135803,0.0152893,0.0185547,0.0202637,0.0213623,0.0213623,0.0209045,0.020752,0.0212097,0.0221558,0.0227661,0.0221558,0.0226135,0.0233765,0.0254211,0.0271301,0.0282288,0.0279236,0.0277405,0.0285339,0.0302429,0.0324402,0.0350952,0.0363159,0.0380554,0.0377197,0.0380554,0.0383606,0.0391235,0.0405273,0.0397644,0.0403748,0.0389709,0.037262,0.0377197,0.0368042,0.0371094,0.0371094,0.0363159,0.0358582,0.0350952,0.033844,0.0325928,0.0321045,0.0300903,0.0283813,0.0265198,0.0255737,0.0244751,0.0235291,0.0221558,0.0201111,0.0176086,0.0158997,0.0143433,0.0127869,0.0116882,0.0102844,0.00872803,0.00732422,0.00622559,0.00546265,0.00531006,0.00341797,0.00234985,0.000946045,-0.000152588,-0.000793457,-0.000610352,-0.00140381,-0.00234985,-0.0045166,-0.00701904,-0.00827026,-0.00778198,-0.00762939,-0.00637817,-0.00656128,-0.00656128,-0.00732422,-0.00701904,-0.00762939,-0.00827026,-0.00918579,-0.010437,-0.0102844,-0.0105896,-0.00952148,-0.00918579,-0.00811768,-0.00717163,-0.00656128,-0.00592041,-0.00405884,-0.00341797,-0.00280762,-0.00219727,-0.00280762,-0.0015564,-0.000457764,0.000457764,0.00170898,0.00265503,0.00341797,0.00436401,0.00531006,0.00637817,0.00842285,0.010437,0.0119934,0.0129395,0.013092,0.0135803,0.0137329,0.0149536,0.0154419,0.0155945,0.0144958,0.0144958,0.0135803,0.0141907,0.0132446,0.0127869,0.0113831,0.0105896,0.00997925,0.0090332,0.00827026,0.00796509,0.00827026,0.00857544,0.00857544,0.00842285,0.00778198,0.00747681,0.00732422,0.00732422,0.00717163,0.00701904,0.00778198,0.00717163,0.00732422,0.00576782,0.0045166,0.00296021,0.000946045,-0.000152588,-0.00170898,-0.00421143,-0.00592041,-0.00827026,-0.0093689,-0.0109253,-0.0126343,-0.0133972,-0.014801,-0.0160522,-0.0173035,-0.0187073,-0.0199585,-0.0210571,-0.0219727,-0.0232239,-0.0246277,-0.0260315,-0.0271301,-0.0277405,-0.0277405,-0.0285339,-0.0277405,-0.0285339,-0.0283813,-0.0285339,-0.0291443,-0.02948,-0.0291443,-0.0297852,-0.0291443,-0.0299377,-0.0299377,-0.0299377,-0.0299377,-0.0296326,-0.0297852,-0.0299377,-0.0297852,-0.02948,-0.0291443,-0.0289917,-0.0291443,-0.0291443,-0.0280762,-0.0271301,-0.0266724,-0.0257263,-0.0252686,-0.0243225,-0.0226135,-0.0209045,-0.0198059,-0.0176086,-0.0163574,-0.0151367,-0.0132446,-0.013092,-0.0119934,-0.0116882,-0.0109253,-0.0102844,-0.00952148,-0.00888062,-0.00796509,-0.00762939,-0.00747681,-0.00637817,-0.00686646,-0.00576782,-0.00546265,-0.00531006,-0.00546265,-0.00671387,-0.00732422,-0.00811768,-0.00811768,-0.00842285,-0.0093689,-0.010437,-0.0119934,-0.0124817,-0.013092,-0.0123291,-0.0127869,-0.0129395,-0.0146484,-0.0157471,-0.0169983,-0.0176086,-0.0188599,-0.0201111,-0.0209045,-0.0216675,-0.0224609,-0.0229187,-0.0237122,-0.0246277,-0.0238647,-0.0232239,-0.0226135,-0.0223083,-0.0230713,-0.0224609,-0.0227661,-0.0218201,-0.0218201,-0.0213623,-0.0210571,-0.0188599,-0.0132446,-0.00561523,0.00201416,0.00888062,0.0137329,0.0187073,0.0238647,0.0286865,0.0322876,0.0335083,0.0319519,0.0289917,0.0265198,0.0240173,0.0229187,0.0227661,0.0218201,0.0219727,0.0226135,0.0244751,0.0274353,0.0308838,0.0346069,0.0361633,0.038208,0.0389709,0.0393066,0.041626,0.0419312,0.0420837,0.0405273,0.0414734,0.042572,0.0456848,0.0478821,0.0491028,0.0491028,0.0489502,0.0483398,0.0489502,0.0495911,0.0481873,0.0456848,0.042572,0.0391235,0.0375671,0.0357056,0.0346069,0.0324402,0.0299377,0.0261841,0.0237122,0.0212097,0.0202637,0.0180969,0.0160522,0.0124817,0.00967407,0.00686646,0.00421143,0.000793457,-0.000793457,-0.00326538,-0.00360107,-0.00482178,-0.00390625,-0.0045166,-0.00390625,-0.00360107,-0.00311279,-0.00341797,-0.00375366,-0.00390625,-0.0045166,-0.006073,-0.00842285,-0.0113831,-0.0140381,-0.0160522,-0.0179443,-0.0184021,-0.0199585,-0.020752,-0.0216675,-0.0210571,-0.0195007,-0.0177612,-0.0173035,-0.0163574,-0.0166931,-0.0168457,-0.0168457,-0.0163574,-0.0162048,-0.0154419,-0.0154419,-0.0149536,-0.0140381,-0.0133972,-0.0113831,-0.00918579,-0.00671387,-0.00390625,-0.00140381,0.000610352,0.00326538,0.00497437,0.00747681,0.00952148,0.0124817,0.014801,0.0176086,0.0199585,0.0215149,0.0226135,0.0243225,0.0265198,0.0293274,0.031189,0.0317993,0.031189,0.0300903,0.0299377,0.0303955,0.0310364,0.0305481,0.0302429,0.0288391,0.0286865,0.0285339,0.0296326,0.0293274,0.0283813,0.0275879,0.0260315,0.0252686,0.0247803,0.0232239,0.0216675,0.0193481,0.0168457,0.0152893,0.0138855,0.0116882,0.0101318,0.00762939,0.00592041,0.00466919,0.00390625,0.00341797,0.0015564,-0.000305176,-0.00250244,-0.00576782,-0.00747681,-0.00982666,-0.0121765,-0.014801,-0.0180969,-0.020752,-0.0232239,-0.0252686,-0.0260315,-0.0280762,-0.0293274,-0.0300903,-0.0313416,-0.0317993,-0.0325928,-0.0330505,-0.0333557,-0.0346069,-0.0349121,-0.0350952,-0.0352478,-0.0354004,-0.0358582,-0.0360107,-0.0357056,-0.0357056,-0.0344543,-0.0341492,-0.0336914,-0.0341492,-0.0339966,-0.0339966,-0.033844,-0.0332031,-0.0336914,-0.0328979,-0.0330505,-0.0322876,-0.0316467,-0.0307312,-0.0288391,-0.0269775,-0.0257263,-0.0247803,-0.0237122,-0.0227661,-0.0210571,-0.0198059,-0.0185547,-0.0180969,-0.0173035,-0.0168457,-0.0162048,-0.0152893,-0.0144958,-0.0137329,-0.0137329,-0.0132446,-0.0121765,-0.0110779,-0.00997925,-0.00967407,-0.00967407,-0.00997925,-0.0102844,-0.0101318,-0.0105896,-0.0113831,-0.0127869,-0.0146484,-0.0166931,-0.0185547,-0.0195007,-0.0215149,-0.0232239,-0.0255737,-0.0279236,-0.0300903,-0.0321045,-0.033844,-0.0369568,-0.0386658,-0.040863,-0.0413208,-0.040863,-0.0414734,-0.0411682,-0.0413208,-0.0414734,-0.040863,-0.0400696,-0.0397644,-0.0394592,-0.0363159,-0.0286865,-0.0166931,-0.00219727,0.0124817,0.0254211,0.0352478,0.0434875,0.0536499,0.0623779,0.0670471,0.0664368,0.0614319,0.0527039,0.0447388,0.0405273,0.037262,0.0343018,0.0313416,0.0280762,0.0260315,0.026825,0.0291443,0.0322876,0.0344543,0.0349121,0.0354004,0.037262,0.0405273,0.0434875,0.0455322,0.0447388,0.0447388,0.0453796,0.0478821,0.0508423,0.0536499,0.0534668,0.0522461,0.052063,0.052063,0.0545654,0.0562744,0.0552063,0.0538025,0.0511475,0.0475464,0.044281,0.0407104,0.0358582,0.0288391,0.0213623,0.0141907,0.00811768,0.00341797,0.000610352,-0.00375366,-0.00762939,-0.0126343,-0.0174561,-0.0215149,-0.0237122,-0.0255737,-0.0266724,-0.0275879,-0.0277405,-0.0254211,-0.0226135,-0.0184021,-0.0155945,-0.0121765,-0.00982666,-0.00747681,-0.00531006,-0.00405884,-0.00405884,-0.00576782,-0.0090332,-0.0119934,-0.0155945,-0.0169983,-0.0187073,-0.0188599,-0.0199585,-0.020752,-0.0199585,-0.0187073,-0.0160522,-0.0133972,-0.0126343,-0.0124817,-0.0123291,-0.0121765,-0.0105896,-0.00982666,-0.00811768,-0.00796509,-0.00637817,-0.0045166,-0.00186157,0.000793457,0.00296021,0.00497437,0.00622559,0.00872803,0.0121765,0.0165405,0.0212097,0.025116,0.0282288,0.0299377,0.0324402,0.0343018,0.035553,0.0349121,0.0332031,0.0313416,0.0299377,0.0300903,0.0310364,0.0303955,0.0293274,0.0279236,0.026825,0.0263367,0.0260315,0.0249329,0.0237122,0.0213623,0.020752,0.0195007,0.0202637,0.0202637,0.0196533,0.0190125,0.0185547,0.0180969,0.0180969,0.0177612,0.0157471,0.0137329,0.010437,0.00842285,0.00656128,0.00482178,0.00360107,0.00109863,0.000152588,-0.00219727,-0.00250244,-0.00421143,-0.00515747,-0.00701904,-0.0090332,-0.0115356,-0.0135803,-0.0155945,-0.0168457,-0.0185547,-0.0199585,-0.0215149,-0.0227661,-0.0244751,-0.0252686,-0.0266724,-0.0274353,-0.02948,-0.0293274,-0.0307312,-0.0307312,-0.0314941,-0.0317993,-0.0327454,-0.0333557,-0.0354004,-0.0357056,-0.0369568,-0.0379028,-0.0388184,-0.0397644,-0.0402222,-0.0403748,-0.0402222,-0.0386658,-0.037262,-0.0357056,-0.0330505,-0.0302429,-0.0274353,-0.0240173,-0.0219727,-0.0202637,-0.0204163,-0.0210571,-0.0218201,-0.0232239,-0.0244751,-0.0263367,-0.0285339,-0.0313416,-0.0333557,-0.0352478,-0.035553,-0.0369568,-0.0377197,-0.0394592,-0.0396118,-0.0402222,-0.0400696,-0.0400696,-0.0405273,-0.0413208,-0.0419312,-0.0417786,-0.0420837,-0.0436707,-0.0445862,-0.0472412,-0.0502014,-0.0517578,-0.0539551,-0.0559692,-0.0584717,-0.0598755,-0.0606384,-0.0608215,-0.0608215,-0.0600281,-0.057373,-0.0519104,-0.0414734,-0.0269775,-0.00747681,0.0127869,0.0336914,0.052063,0.069397,0.0838928,0.0954285,0.105103,0.10791,0.10495,0.0975952,0.087616,0.0765686,0.0676575,0.0611267,0.0556641,0.0523987,0.0491028,0.0466309,0.0464783,0.0489502,0.052063,0.0550537,0.057373,0.0581665,0.0587769,0.0589294,0.0592651,0.0578613,0.0564575,0.0541077,0.0533142,0.0519104,0.0508423,0.0495911,0.0481873,0.0470886,0.0475464,0.0481873,0.0502014,0.0522461,0.0523987,0.0509949,0.047699,0.0434875,0.0379028,0.0313416,0.0227661,0.0137329,0.00375366,-0.006073,-0.0157471,-0.0226135,-0.0291443,-0.0336914,-0.0386658,-0.0430298,-0.0475464,-0.0511475,-0.0533142,-0.0552063,-0.0561218,-0.0561218,-0.0550537,-0.0525513,-0.0483398,-0.0436707,-0.0377197,-0.0321045,-0.0261841,-0.0204163,-0.0155945,-0.0129395,-0.0121765,-0.0133972,-0.0149536,-0.0173035,-0.0187073,-0.0198059,-0.0201111,-0.0195007,-0.0182495,-0.0149536,-0.0112305,-0.00686646,-0.00219727,0.0015564,0.00390625,0.006073,0.00732422,0.00872803,0.0102844,0.0126343,0.0140381,0.0163574,0.0169983,0.0188599,0.0201111,0.0202637,0.0219727,0.0229187,0.0249329,0.0272827,0.0300903,0.0335083,0.0383606,0.0422668,0.0461426,0.0492859,0.052063,0.053009,0.053009,0.0498962,0.0461426,0.041626,0.0371094,0.0332031,0.0300903,0.0275879,0.0244751,0.0221558,0.0195007,0.0182495,0.0163574,0.0152893,0.0126343,0.00967407,0.00576782,0.00250244,0,-0.00201416,-0.00436401,-0.00592041,-0.0090332,-0.0107727,-0.0126343,-0.0138855,-0.0149536,-0.0169983,-0.0177612,-0.0195007,-0.0187073,-0.0184021,-0.0179443,-0.0169983,-0.0160522,-0.0149536,-0.0144958,-0.0121765,-0.0118408,-0.0109253,-0.0116882,-0.0124817,-0.0141907,-0.014801,-0.0163574,-0.0174561,-0.0185547,-0.0210571,-0.0229187,-0.0243225,-0.0257263,-0.0258789,-0.0272827,-0.0283813,-0.0308838,-0.0322876,-0.0352478,-0.037262,-0.0393066,-0.0413208,-0.0428772,-0.0444336,-0.0450745,-0.0438232,-0.0419312,-0.0394592,-0.037262,-0.0343018,-0.0319519,-0.02948,-0.0266724,-0.0243225,-0.0237122,-0.0235291,-0.0243225,-0.0247803,-0.0263367,-0.0279236,-0.0300903,-0.0333557,-0.037262,-0.041626,-0.0467834,-0.0516052,-0.0566101,-0.0623779,-0.0671997,-0.0728149,-0.0784302,-0.0834045,-0.0881042,-0.0923157,-0.0961914,-0.0999451,-0.103058,-0.104614,-0.104462,-0.100403,-0.0940247,-0.083252,-0.069397,-0.0527039,-0.0322876,-0.00811768,0.0184021,0.0473938,0.0760803,0.100098,0.119446,0.132385,0.140472,0.14563,0.14624,0.142517,0.132538,0.12085,0.106323,0.0951233,0.0871582,0.0820007,0.0776367,0.0728149,0.0679932,0.0642395,0.0629883,0.0629883,0.0628357,0.0603333,0.0558167,0.0511475,0.0480347,0.0475464,0.0466309,0.0448914,0.0431824,0.0414734,0.0413208,0.043335,0.04599,0.0484924,0.0502014,0.0517578,0.0536499,0.0572205,0.0598755,0.0604858,0.0587769,0.0531616,0.0462952,0.0374146,0.0275879,0.0171509,0.00421143,-0.0093689,-0.0238647,-0.0366516,-0.0473938,-0.0566101,-0.063446,-0.0708008,-0.0762329,-0.0826416,-0.086853,-0.0890198,-0.0904236,-0.090271,-0.088562,-0.0867004,-0.0827942,-0.0767212,-0.0687561,-0.0600281,-0.0506592,-0.042572,-0.0352478,-0.0285339,-0.0227661,-0.0179443,-0.0144958,-0.0123291,-0.010437,-0.00827026,-0.00436401,0,0.00515747,0.0102844,0.0154419,0.020752,0.0255737,0.0299377,0.033844,0.0349121,0.0350952,0.0339966,0.0324402,0.0314941,0.0305481,0.0293274,0.0285339,0.026825,0.0261841,0.0258789,0.0258789,0.0271301,0.0280762,0.0291443,0.0313416,0.0335083,0.0388184,0.0428772,0.0483398,0.0533142,0.057373,0.0600281,0.0618896,0.0618896,0.0606384,0.0578613,0.0536499,0.0484924,0.0439758,0.0394592,0.0363159,0.0327454,0.0299377,0.0263367,0.0227661,0.0190125,0.0141907,0.00857544,0.00311279,-0.00405884,-0.0109253,-0.0176086,-0.0232239,-0.0288391,-0.033844,-0.0374146,-0.041626,-0.0439758,-0.04599,-0.0472412,-0.0472412,-0.0466309,-0.044281,-0.0420837,-0.0391235,-0.0350952,-0.0307312,-0.0265198,-0.0218201,-0.0190125,-0.0158997,-0.0137329,-0.0124817,-0.0115356,-0.0110779,-0.0123291,-0.0132446,-0.0141907,-0.0157471,-0.0176086,-0.0210571,-0.0240173,-0.0274353,-0.0310364,-0.0358582,-0.0393066,-0.0447388,-0.0487976,-0.0525513,-0.0569153,-0.0592651,-0.0614319,-0.0623779,-0.0622253,-0.0622253,-0.0606384,-0.0589294,-0.0572205,-0.0555115,-0.0534668,-0.0527039,-0.0517578,-0.0517578,-0.0522461,-0.0533142,-0.0552063,-0.0583191,-0.0623779,-0.0657959,-0.0690613,-0.0731201,-0.0762329,-0.0793762,-0.082489,-0.085144,-0.0882568,-0.0901184,-0.0905762,-0.0879517,-0.083252,-0.0760803,-0.0662537,-0.0527039,-0.0379028,-0.0177612,0.0045166,0.0317993,0.0587769,0.084198,0.106018,0.121918,0.133453,0.141418,0.145325,0.145782,0.138763,0.128479,0.11554,0.104309,0.0941772,0.0887146,0.0856018,0.0835876,0.0820007,0.08078,0.0820007,0.0834045,0.085144,0.0845032,0.0809326,0.0765686,0.0704651,0.0637817,0.0592651,0.0519104,0.0445862,0.0377197,0.0335083,0.0300903,0.02948,0.0297852,0.0288391,0.0293274,0.0297852,0.0325928,0.0347595,0.0374146,0.0360107,0.0316467,0.025116,0.0165405,0.00732422,-0.00296021,-0.0146484,-0.0274353,-0.0411682,-0.0544128,-0.0645447,-0.0725098,-0.0776367,-0.0812378,-0.0840454,-0.0857544,-0.0873108,-0.087616,-0.086853,-0.0860596,-0.0849915,-0.085907,-0.0840454,-0.0818481,-0.0788879,-0.0734253,-0.0686035,-0.0611267,-0.054718,-0.0464783,-0.038208,-0.0299377,-0.0223083,-0.0165405,-0.0102844,-0.0045166,0.00250244,0.0093689,0.0168457,0.0249329,0.0322876,0.039917,0.0472412,0.054718,0.0609741,0.0659485,0.0695496,0.0709534,0.0728149,0.0731201,0.0734253,0.0729675,0.0720215,0.0704651,0.0681458,0.0675049,0.0653381,0.0632935,0.0601807,0.0564575,0.053009,0.0500488,0.0497437,0.0489502,0.0483398,0.0473938,0.0470886,0.0470886,0.0473938,0.0456848,0.0447388,0.040863,0.036499,0.031189,0.0260315,0.0215149,0.0190125,0.0149536,0.0113831,0.00747681,0.00390625,0.000610352,-0.00375366,-0.00747681,-0.0124817,-0.0185547,-0.0241699,-0.02948,-0.0349121,-0.0397644,-0.0439758,-0.0481873,-0.0516052,-0.0541077,-0.0559692,-0.0567627,-0.0575256,-0.0570679,-0.0564575,-0.0541077,-0.0505066,-0.046936,-0.0430298,-0.0386658,-0.0346069,-0.0314941,-0.0274353,-0.0247803,-0.0223083,-0.0193481,-0.0180969,-0.0169983,-0.0168457,-0.0171509,-0.0177612,-0.0199585,-0.0229187,-0.026825,-0.0317993,-0.0363159,-0.0414734,-0.0458374,-0.0517578,-0.0561218,-0.0606384,-0.0654907,-0.0690613,-0.0740662,-0.078125,-0.0818481,-0.0856018,-0.0879517,-0.0909119,-0.0927734,-0.0954285,-0.0965271,-0.0975952,-0.0985413,-0.0985413,-0.0988464,-0.0969849,-0.0960388,-0.0944824,-0.0932312,-0.0907593,-0.0846558,-0.0767212,-0.0637817,-0.0491028,-0.0321045,-0.0116882,0.0126343,0.0417786,0.0731201,0.101044,0.124268,0.139709,0.149231,0.151855,0.150452,0.142517,0.127228,0.106964,0.0848083,0.0657959,0.0506592,0.0424194,0.0386658,0.0383606,0.0389709,0.043335,0.0497437,0.0569153,0.0653381,0.0681458,0.0690613,0.0662537,0.0639343,0.0604858,0.0589294,0.0564575,0.0527039,0.0500488,0.0473938,0.0475464,0.0505066,0.0548706,0.0581665,0.0601807,0.0623779,0.0640869,0.0670471,0.0690613,0.0667419,0.0608215,0.050354,0.0374146,0.0227661,0.00778198,-0.0090332,-0.0277405,-0.0473938,-0.0648499,-0.0820007,-0.0940247,-0.102448,-0.107269,-0.110718,-0.112122,-0.112579,-0.111176,-0.107574,-0.102295,-0.0983887,-0.0949707,-0.0916748,-0.0870056,-0.0793762,-0.0701599,-0.059082,-0.0484924,-0.0369568,-0.0247803,-0.0113831,0.000946045,0.0113831,0.0198059,0.0258789,0.0302429,0.0339966,0.0360107,0.0375671,0.0389709,0.0402222,0.0422668,0.0445862,0.047699,0.0505066,0.0539551,0.0559692,0.0555115,0.054718,0.0523987,0.0508423,0.0492859,0.0467834,0.0452271,0.0430298,0.0430298,0.0450745,0.0487976,0.0531616,0.0583191,0.0625305,0.0654907,0.0689087,0.0706177,0.0731201,0.073761,0.0729675,0.0708008,0.0667419,0.0620422,0.057373,0.0522461,0.0470886,0.0411682,0.0330505,0.0258789,0.0180969,0.0109253,0.00360107,-0.00341797,-0.0119934,-0.0198059,-0.0269775,-0.0336914,-0.0394592,-0.0441284,-0.0500488,-0.0552063,-0.0586243,-0.0611267,-0.0618896,-0.0623779,-0.0620422,-0.0608215,-0.0576782,-0.0538025,-0.0480347,-0.0428772,-0.0354004,-0.0302429,-0.0240173,-0.0199585,-0.0157471,-0.0118408,-0.0090332,-0.00686646,-0.00671387,-0.00888062,-0.0109253,-0.0135803,-0.0174561,-0.0201111,-0.0254211,-0.0305481,-0.0360107,-0.0419312,-0.0478821,-0.0539551,-0.0614319,-0.0686035,-0.0773315,-0.085144,-0.0947876,-0.10321,-0.111633,-0.119598,-0.128174,-0.134705,-0.140167,-0.142975,-0.144684,-0.143768,-0.141266,-0.13736,-0.129578,-0.121613,-0.112579,-0.102142,-0.0909119,-0.0765686,-0.0586243,-0.0366516,-0.0118408,0.0177612,0.0497437,0.0849915,0.119293,0.149994,0.174316,0.189301,0.195526,0.194122,0.182892,0.163239,0.137054,0.109131,0.0812378,0.0564575,0.0396118,0.0275879,0.0219727,0.0219727,0.0243225,0.0286865,0.0363159,0.0430298,0.0478821,0.0495911,0.0487976,0.0450745,0.0411682,0.0393066,0.038208,0.0375671,0.0389709,0.041626,0.0452271,0.0519104,0.0598755,0.0679932,0.0760803,0.0830994,0.088562,0.0926208,0.0937195,0.092926,0.0871582,0.0776367,0.0618896,0.0434875,0.0219727,-0.000793457,-0.0265198,-0.0528564,-0.0791931,-0.103363,-0.123657,-0.138763,-0.148743,-0.154053,-0.155609,-0.153595,-0.148895,-0.140167,-0.131897,-0.122406,-0.114594,-0.107117,-0.101044,-0.0927734,-0.0834045,-0.0714111,-0.0580139,-0.0439758,-0.0272827,-0.010437,0.00796509,0.0258789,0.0419312,0.0555115,0.0640869,0.0720215,0.0756226,0.076416,0.0756226,0.0722046,0.0692139,0.0648499,0.0615845,0.0589294,0.0558167,0.0542603,0.0525513,0.0505066,0.0489502,0.0470886,0.0447388,0.0428772,0.0411682,0.040863,0.0414734,0.0436707,0.0478821,0.0536499,0.0597229,0.0678406,0.07547,0.083252,0.0898132,0.0941772,0.0971375,0.0985413,0.0985413,0.0954285,0.0905762,0.0846558,0.0762329,0.0687561,0.0608215,0.0522461,0.0420837,0.0313416,0.0185547,0.00546265,-0.00872803,-0.0243225,-0.0403748,-0.0561218,-0.0701599,-0.0827942,-0.0927734,-0.0993347,-0.103851,-0.106018,-0.105713,-0.103851,-0.100739,-0.0951233,-0.0898132,-0.0830994,-0.076416,-0.0687561,-0.0598755,-0.050354,-0.0393066,-0.0288391,-0.0193481,-0.0101318,-0.00311279,0.00234985,0.00482178,0.00466919,0.00109863,-0.006073,-0.0144958,-0.0249329,-0.0354004,-0.0456848,-0.0572205,-0.0690613,-0.0812378,-0.0938721,-0.108063,-0.121613,-0.136444,-0.149536,-0.161835,-0.17215,-0.182129,-0.186493,-0.188354,-0.184601,-0.177429,-0.166046,-0.155304,-0.141724,-0.124268,-0.101654,-0.0722046,-0.0347595,0.00811768,0.0550537,0.10321,0.151093,0.19693,0.237,0.265991,0.282532,0.285339,0.27301,0.248077,0.213928,0.175262,0.137848,0.102295,0.0723572,0.0502014,0.0339966,0.0258789,0.0226135,0.0229187,0.0240173,0.0226135,0.0190125,0.0115356,0.00421143,-0.00546265,-0.0143433,-0.0213623,-0.0263367,-0.0254211,-0.0218201,-0.0135803,-0.00280762,0.00982666,0.0247803,0.0405273,0.0558167,0.0717163,0.0848083,0.0952759,0.102448,0.105255,0.104156,0.0994873,0.0901184,0.07547,0.0561218,0.0308838,0.00170898,-0.0303955,-0.0625305,-0.0947876,-0.124725,-0.15155,-0.173859,-0.188354,-0.197235,-0.198944,-0.198181,-0.192413,-0.183197,-0.17337,-0.161224,-0.149841,-0.137207,-0.123505,-0.108368,-0.0905762,-0.0708008,-0.0492859,-0.0257263,0.000152588,0.0258789,0.052063,0.0762329,0.0977478,0.11615,0.129883,0.138763,0.142517,0.142212,0.137848,0.132843,0.126129,0.118805,0.111176,0.102142,0.094635,0.0857544,0.0784302,0.0695496,0.0601807,0.0494385,0.0386658,0.0280762,0.0202637,0.0137329,0.00952148,0.00762939,0.00997925,0.0154419,0.0244751,0.0374146,0.0513,0.0648499,0.0776367,0.0898132,0.0979309,0.104004,0.106964,0.104309,0.0982361,0.0901184,0.0812378,0.0736084,0.0636292,0.0536499,0.0414734,0.0282288,0.0146484,-0.00201416,-0.0205688,-0.0413208,-0.063446,-0.085907,-0.105865,-0.123505,-0.137848,-0.14798,-0.154053,-0.15451,-0.150787,-0.144836,-0.135956,-0.126465,-0.115234,-0.104156,-0.0924683,-0.0795288,-0.0673523,-0.0541077,-0.040863,-0.0285339,-0.0171509,-0.00811768,-0.00250244,0.000152588,-0.00109863,-0.00701904,-0.0168457,-0.031189,-0.0464783,-0.0608215,-0.0745239,-0.0881042,-0.103546,-0.117889,-0.130188,-0.139709,-0.149536,-0.159515,-0.171051,-0.179138,-0.183685,-0.182892,-0.178223,-0.1698,-0.153259,-0.126282,-0.0873108,-0.0335083,0.0274353,0.0905762,0.14859,0.201141,0.248535,0.284882,0.309509,0.315735,0.303741,0.275513,0.23996,0.203796,0.170746,0.142212,0.1185,0.0996399,0.0870056,0.0801392,0.076416,0.0734253,0.0682983,0.0575256,0.039917,0.0168457,-0.00842285,-0.0317993,-0.0506592,-0.0656433,-0.0773315,-0.085144,-0.0846558,-0.0767212,-0.0615845,-0.0434875,-0.0249329,-0.00592041,0.0137329,0.0349121,0.0556641,0.0739136,0.0884094,0.096344,0.0986938,0.09729,0.0907593,0.08078,0.0653381,0.043335,0.0155945,-0.0179443,-0.0505066,-0.0801392,-0.106812,-0.130676,-0.152802,-0.171509,-0.182434,-0.185242,-0.184143,-0.179932,-0.177429,-0.173859,-0.168549,-0.161682,-0.152802,-0.143127,-0.13208,-0.117249,-0.0993347,-0.077179,-0.050354,-0.020752,0.0113831,0.0441284,0.0757751,0.104004,0.128632,0.148132,0.16153,0.168549,0.168701,0.163574,0.156067,0.147491,0.139069,0.130981,0.122253,0.114594,0.107117,0.0993347,0.0905762,0.0802917,0.0682983,0.0548706,0.039917,0.0233765,0.00778198,-0.00561523,-0.0163574,-0.0210571,-0.0212097,-0.0157471,-0.00482178,0.0109253,0.0293274,0.0489502,0.0684509,0.0852966,0.0974426,0.103699,0.104004,0.10025,0.0935669,0.084198,0.0751648,0.0662537,0.0569153,0.0470886,0.0357056,0.0218201,0.00671387,-0.0112305,-0.0319519,-0.0553589,-0.0809326,-0.104614,-0.127075,-0.14267,-0.153412,-0.157806,-0.159027,-0.156067,-0.150452,-0.143921,-0.13736,-0.132233,-0.127686,-0.124725,-0.119751,-0.115387,-0.108521,-0.100098,-0.0915222,-0.0818481,-0.0732727,-0.0653381,-0.0589294,-0.0567627,-0.0595703,-0.0667419,-0.0748291,-0.0870056,-0.100891,-0.114288,-0.128784,-0.144226,-0.15686,-0.164337,-0.167297,-0.166199,-0.16449,-0.157013,-0.139069,-0.104767,-0.0552063,0.00250244,0.0622253,0.117249,0.167938,0.213776,0.252441,0.280823,0.289856,0.28067,0.252136,0.215942,0.182129,0.153748,0.132843,0.116638,0.107117,0.104767,0.111328,0.125519,0.142975,0.156219,0.159363,0.148285,0.126923,0.100891,0.071106,0.0403748,0.0101318,-0.020752,-0.04599,-0.0643921,-0.0712585,-0.0682983,-0.0589294,-0.0467834,-0.0332031,-0.0177612,0.00170898,0.0229187,0.0414734,0.0534668,0.0589294,0.0576782,0.0544128,0.0472412,0.0393066,0.0246277,0.00436401,-0.0238647,-0.0542603,-0.0820007,-0.105713,-0.125366,-0.143616,-0.159027,-0.1698,-0.172607,-0.167603,-0.157623,-0.146088,-0.138611,-0.132538,-0.128632,-0.124268,-0.11911,-0.11554,-0.111938,-0.108978,-0.1026,-0.0904236,-0.0720215,-0.0481873,-0.0204163,0.0090332,0.039917,0.0700073,0.0994873,0.126282,0.146423,0.159515,0.164337,0.163239,0.159515,0.152649,0.147034,0.139069,0.133301,0.126617,0.122711,0.119293,0.116791,0.115234,0.109772,0.101349,0.0888672,0.073761,0.0553589,0.0380554,0.0223083,0.0119934,0.00827026,0.0090332,0.0166931,0.0293274,0.0467834,0.0645447,0.08078,0.088562,0.0909119,0.0848083,0.0723572,0.0567627,0.0388184,0.0237122,0.0093689,-0.000457764,-0.00717163,-0.0102844,-0.0119934,-0.0165405,-0.0237122,-0.0369568,-0.0544128,-0.07547,-0.0980835,-0.121155,-0.139709,-0.153412,-0.159363,-0.159515,-0.153412,-0.145325,-0.136902,-0.130829,-0.126129,-0.12677,-0.128784,-0.134094,-0.137665,-0.140808,-0.141724,-0.139069,-0.133789,-0.126129,-0.118042,-0.110535,-0.107422,-0.108368,-0.113342,-0.123016,-0.136261,-0.152649,-0.169189,-0.181335,-0.187103,-0.186951,-0.180389,-0.164642,-0.132996,-0.0812378,-0.0144958,0.0570679,0.128479,0.194733,0.250092,0.291565,0.321808,0.336487,0.331482,0.303741,0.258667,0.207214,0.162476,0.129883,0.111023,0.101501,0.0968323,0.0996399,0.109619,0.129272,0.150787,0.161682,0.157623,0.140808,0.114899,0.0862122,0.0570679,0.0269775,-0.00250244,-0.0300903,-0.0519104,-0.0668945,-0.0717163,-0.0671997,-0.0556641,-0.043335,-0.0313416,-0.0195007,-0.00311279,0.0143433,0.0296326,0.0377197,0.0374146,0.031189,0.0235291,0.0135803,0.0015564,-0.0177612,-0.0456848,-0.0791931,-0.113831,-0.144531,-0.169495,-0.190063,-0.204102,-0.214233,-0.216888,-0.210815,-0.19754,-0.175415,-0.153595,-0.134399,-0.119751,-0.109314,-0.0979309,-0.0873108,-0.0787354,-0.073761,-0.0703125,-0.0626831,-0.0492859,-0.0260315,0.000793457,0.0324402,0.0636292,0.0957336,0.127228,0.156067,0.179779,0.19632,0.203003,0.20285,0.197235,0.189117,0.182281,0.173859,0.166687,0.157959,0.149841,0.142517,0.136444,0.132233,0.126465,0.116791,0.104462,0.0891724,0.0748291,0.0626831,0.0536499,0.0492859,0.0489502,0.0538025,0.0636292,0.0770264,0.0926208,0.108063,0.116791,0.117706,0.108978,0.0924683,0.0706177,0.0445862,0.0168457,-0.010437,-0.0350952,-0.0544128,-0.0679932,-0.076416,-0.0809326,-0.0867004,-0.0951233,-0.108978,-0.125671,-0.146881,-0.1698,-0.19162,-0.210968,-0.226868,-0.235443,-0.236694,-0.229034,-0.216095,-0.201141,-0.187103,-0.175262,-0.164795,-0.155609,-0.147186,-0.140015,-0.134247,-0.129578,-0.125061,-0.12085,-0.116486,-0.113342,-0.113037,-0.117096,-0.127869,-0.144073,-0.16449,-0.180237,-0.191467,-0.194733,-0.193329,-0.178528,-0.138153,-0.073761,0.00857544,0.0974426,0.184601,0.265381,0.328522,0.37561,0.404938,0.410858,0.389343,0.340698,0.276917,0.214081,0.164795,0.133942,0.122711,0.121765,0.130829,0.149536,0.180725,0.21875,0.247925,0.257111,0.241364,0.207672,0.164642,0.118195,0.0714111,0.0219727,-0.0243225,-0.0626831,-0.0907593,-0.106018,-0.108673,-0.10025,-0.0862122,-0.0739136,-0.0629883,-0.0509949,-0.0366516,-0.0229187,-0.0152893,-0.0151367,-0.0237122,-0.0363159,-0.0483398,-0.0592651,-0.0736084,-0.0968323,-0.128632,-0.164032,-0.19632,-0.222046,-0.240601,-0.254608,-0.263031,-0.266479,-0.261475,-0.246979,-0.222961,-0.195831,-0.168701,-0.147827,-0.132233,-0.118042,-0.104156,-0.0913696,-0.081543,-0.0773315,-0.0720215,-0.0609741,-0.0405273,-0.0109253,0.025116,0.063446,0.102905,0.142517,0.180878,0.215179,0.241211,0.256348,0.261169,0.256958,0.247589,0.237305,0.227966,0.218292,0.209259,0.202087,0.195984,0.192108,0.189606,0.187897,0.181488,0.170105,0.153259,0.135345,0.117096,0.101044,0.0881042,0.0810852,0.08078,0.0865479,0.0974426,0.110535,0.119904,0.124268,0.120697,0.109131,0.0887146,0.0609741,0.0280762,-0.00762939,-0.044281,-0.0767212,-0.100891,-0.117401,-0.12738,-0.134705,-0.140961,-0.147491,-0.15686,-0.168854,-0.184937,-0.205353,-0.229218,-0.253052,-0.272858,-0.286743,-0.29361,-0.293121,-0.286743,-0.275818,-0.261169,-0.244965,-0.225311,-0.206116,-0.188202,-0.17276,-0.159668,-0.148743,-0.14032,-0.136444,-0.13736,-0.142822,-0.153595,-0.167938,-0.184296,-0.200348,-0.208313,-0.20816,-0.197083,-0.166046,-0.110077,-0.0277405,0.0678406,0.17041,0.270844,0.358765,0.427063,0.474945,0.497559,0.491608,0.450775,0.382324,0.305145,0.231689,0.178986,0.144836,0.129272,0.128174,0.142822,0.173065,0.21875,0.264282,0.298279,0.306854,0.292969,0.258972,0.213928,0.160919,0.104309,0.0438232,-0.0133972,-0.0601807,-0.092926,-0.108368,-0.109314,-0.0986938,-0.0829468,-0.0682983,-0.0517578,-0.0343018,-0.0182495,-0.00888062,-0.00982666,-0.0216675,-0.0405273,-0.0646973,-0.0896606,-0.117096,-0.150299,-0.189301,-0.231232,-0.271149,-0.302795,-0.325562,-0.337738,-0.342712,-0.34021,-0.33197,-0.313873,-0.287506,-0.255249,-0.22345,-0.196472,-0.176025,-0.160767,-0.147339,-0.133453,-0.120697,-0.112885,-0.104004,-0.0910645,-0.0682983,-0.0352478,0.00622559,0.0522461,0.0991516,0.147186,0.192871,0.235138,0.269287,0.292358,0.303101,0.30249,0.296082,0.284088,0.272552,0.260376,0.247772,0.237457,0.229034,0.227814,0.229218,0.235138,0.237,0.235291,0.22702,0.215485,0.202087,0.187561,0.172302,0.158722,0.149048,0.144073,0.145935,0.152496,0.159668,0.161682,0.154053,0.137054,0.109619,0.0745239,0.0324402,-0.0137329,-0.0612793,-0.10791,-0.145782,-0.174316,-0.190369,-0.199585,-0.205505,-0.213287,-0.224518,-0.239502,-0.257263,-0.278473,-0.303589,-0.329773,-0.355652,-0.373444,-0.381378,-0.378418,-0.365021,-0.346466,-0.324615,-0.300293,-0.275055,-0.248535,-0.225159,-0.205658,-0.192261,-0.184601,-0.18399,-0.188049,-0.195374,-0.204407,-0.215179,-0.225769,-0.233093,-0.233093,-0.22345,-0.19397,-0.136597,-0.0508423,0.0492859,0.152191,0.253204,0.347076,0.429718,0.497559,0.541199,0.554932,0.527161,0.469635,0.396667,0.327576,0.276917,0.243866,0.219849,0.205963,0.20816,0.22998,0.274109,0.325409,0.364227,0.376709,0.364532,0.336945,0.298126,0.252594,0.196777,0.128937,0.0581665,-0.00546265,-0.0531616,-0.0835876,-0.0951233,-0.0944824,-0.0871582,-0.0768738,-0.0642395,-0.0455322,-0.0247803,-0.0109253,-0.0113831,-0.0269775,-0.0538025,-0.0845032,-0.11554,-0.150787,-0.194275,-0.247437,-0.304657,-0.353485,-0.389343,-0.409454,-0.419281,-0.420837,-0.41803,-0.406006,-0.384338,-0.351135,-0.311676,-0.275818,-0.249329,-0.231842,-0.219391,-0.205353,-0.188507,-0.171356,-0.159363,-0.148438,-0.130829,-0.100403,-0.0566101,-0.00280762,0.0523987,0.106659,0.157013,0.207855,0.254608,0.295624,0.324615,0.341003,0.343506,0.338196,0.327423,0.316681,0.304993,0.292511,0.281128,0.27301,0.272552,0.278931,0.288605,0.299225,0.30484,0.303436,0.296722,0.286285,0.27301,0.255402,0.236053,0.214081,0.195374,0.181488,0.174622,0.171814,0.166199,0.153595,0.130829,0.0986938,0.0600281,0.0157471,-0.0308838,-0.0799866,-0.128937,-0.173553,-0.206451,-0.227325,-0.236053,-0.242615,-0.25415,-0.270203,-0.291565,-0.313416,-0.334442,-0.359558,-0.385132,-0.411316,-0.430511,-0.43689,-0.430176,-0.413666,-0.391357,-0.367035,-0.34317,-0.319336,-0.297668,-0.277527,-0.262268,-0.252441,-0.250092,-0.254456,-0.263824,-0.274414,-0.28299,-0.286591,-0.284241,-0.275513,-0.25354,-0.203644,-0.124115,-0.0210571,0.0910645,0.2052,0.314484,0.408813,0.4888,0.547424,0.580811,0.579407,0.540588,0.477264,0.407898,0.348328,0.311066,0.285645,0.270996,0.266785,0.278015,0.311218,0.3591,0.403534,0.42691,0.424744,0.40274,0.368134,0.324463,0.270538,0.205048,0.134705,0.0659485,0.00827026,-0.0360107,-0.0628357,-0.0709534,-0.0686035,-0.0604858,-0.0511475,-0.0391235,-0.0205688,-0.00561523,0.00186157,-0.00466919,-0.0258789,-0.0564575,-0.0916748,-0.131592,-0.178375,-0.234802,-0.298737,-0.360809,-0.414429,-0.45108,-0.474457,-0.482117,-0.479919,-0.470734,-0.451874,-0.42334,-0.385284,-0.34317,-0.306702,-0.280487,-0.266327,-0.256958,-0.247284,-0.235901,-0.225159,-0.21579,-0.201447,-0.174622,-0.132538,-0.0748291,-0.00842285,0.0612793,0.128937,0.192871,0.25058,0.300629,0.338348,0.362976,0.374054,0.371094,0.358307,0.341309,0.326508,0.315887,0.309662,0.308105,0.313721,0.324158,0.340057,0.3591,0.374664,0.383881,0.382019,0.372345,0.35611,0.336334,0.314026,0.289703,0.261932,0.236206,0.210663,0.188965,0.170258,0.152191,0.127869,0.09198,0.0483398,0.000457764,-0.0467834,-0.0905762,-0.134552,-0.174622,-0.210175,-0.237457,-0.254944,-0.266327,-0.275818,-0.288452,-0.308716,-0.33429,-0.361115,-0.386993,-0.411163,-0.430969,-0.445923,-0.454651,-0.454346,-0.442047,-0.420532,-0.391998,-0.36377,-0.339142,-0.32135,-0.308563,-0.300781,-0.30014,-0.307953,-0.323547,-0.340851,-0.357208,-0.368591,-0.368591,-0.353302,-0.320251,-0.256958,-0.161224,-0.0455322,0.0788879,0.203156,0.321198,0.424896,0.507996,0.569122,0.597015,0.587982,0.547119,0.486633,0.422394,0.374054,0.34256,0.323547,0.311676,0.313232,0.330719,0.367981,0.416473,0.457794,0.474792,0.465576,0.441101,0.404602,0.356293,0.29953,0.229523,0.150787,0.0773315,0.0127869,-0.0350952,-0.0646973,-0.0746765,-0.0725098,-0.0645447,-0.0506592,-0.0327454,-0.00982666,0.0127869,0.0232239,0.0169983,-0.00436401,-0.038208,-0.078125,-0.126282,-0.184448,-0.251801,-0.325714,-0.393066,-0.446075,-0.48056,-0.498016,-0.50238,-0.494751,-0.479004,-0.453583,-0.422089,-0.381836,-0.344116,-0.314972,-0.298126,-0.29126,-0.2883,-0.284088,-0.27771,-0.271759,-0.265381,-0.249939,-0.219238,-0.17041,-0.105865,-0.031189,0.0439758,0.118195,0.188965,0.254608,0.311829,0.357056,0.386688,0.399323,0.397278,0.386536,0.373108,0.360657,0.351593,0.34552,0.343658,0.34787,0.360016,0.377014,0.394318,0.406006,0.408813,0.402283,0.390259,0.374359,0.354889,0.329926,0.303589,0.273315,0.243073,0.21347,0.186493,0.160126,0.125824,0.0849915,0.0385132,-0.0113831,-0.0578613,-0.10025,-0.139069,-0.172455,-0.200989,-0.221558,-0.236053,-0.245422,-0.252441,-0.265839,-0.286591,-0.314331,-0.345825,-0.377319,-0.404144,-0.426453,-0.446411,-0.460907,-0.467285,-0.462921,-0.446869,-0.422394,-0.39743,-0.377167,-0.360168,-0.347534,-0.339142,-0.338654,-0.343964,-0.355347,-0.371857,-0.389038,-0.400238,-0.400879,-0.38324,-0.338196,-0.26178,-0.157318,-0.0354004,0.094635,0.22467,0.348633,0.459351,0.54776,0.604828,0.624939,0.607147,0.559601,0.497559,0.438599,0.393707,0.362823,0.341156,0.331482,0.333832,0.358765,0.400879,0.447968,0.480225,0.487244,0.472443,0.440155,0.398834,0.344421,0.278015,0.200043,0.118805,0.0450745,-0.0149536,-0.057373,-0.0790405,-0.0852966,-0.0776367,-0.0653381,-0.0453796,-0.0216675,0.00686646,0.0296326,0.038208,0.0299377,0.00280762,-0.0358582,-0.0830994,-0.139862,-0.206757,-0.28299,-0.360504,-0.427216,-0.476196,-0.505951,-0.517517,-0.516724,-0.505188,-0.485535,-0.459045,-0.424255,-0.386841,-0.355194,-0.332886,-0.323395,-0.320587,-0.317291,-0.309662,-0.300293,-0.286285,-0.268951,-0.239807,-0.193512,-0.130676,-0.0550537,0.0232239,0.100555,0.171661,0.239014,0.297821,0.34787,0.383423,0.40274,0.408356,0.405396,0.397614,0.391357,0.387451,0.385742,0.386688,0.389648,0.397125,0.408203,0.421143,0.429413,0.428467,0.418793,0.401489,0.38028,0.355652,0.328064,0.29718,0.266785,0.236847,0.209076,0.18335,0.156219,0.123016,0.081543,0.033844,-0.0162048,-0.0646973,-0.110718,-0.152802,-0.188507,-0.214691,-0.231842,-0.239014,-0.241669,-0.247437,-0.257568,-0.27597,-0.300293,-0.32962,-0.362976,-0.397614,-0.429413,-0.457153,-0.475708,-0.484589,-0.479614,-0.465424,-0.443115,-0.422699,-0.39978,-0.380127,-0.363922,-0.354889,-0.354706,-0.36438,-0.381226,-0.401794,-0.417084,-0.425964,-0.421448,-0.396362,-0.340546,-0.250397,-0.134247,-0.00201416,0.137512,0.27536,0.400726,0.51001,0.591736,0.640381,0.650513,0.625854,0.576447,0.513306,0.454651,0.409607,0.375916,0.354248,0.346771,0.354889,0.381683,0.424103,0.466217,0.493164,0.498627,0.48288,0.44812,0.400391,0.338348,0.261169,0.176025,0.0910645,0.0143433,-0.0480347,-0.0913696,-0.11087,-0.109924,-0.0971375,-0.0753174,-0.0491028,-0.0169983,0.0163574,0.0411682,0.0502014,0.0385132,0.00762939,-0.0391235,-0.0966797,-0.163239,-0.238098,-0.319183,-0.394958,-0.457153,-0.49942,-0.522034,-0.527161,-0.518738,-0.502228,-0.481018,-0.454834,-0.424255,-0.39386,-0.369537,-0.355194,-0.349426,-0.348785,-0.346771,-0.337097,-0.322906,-0.30249,-0.274902,-0.234802,-0.17868,-0.108215,-0.0289917,0.052063,0.131287,0.203796,0.269135,0.325714,0.371552,0.40274,0.420044,0.424255,0.420349,0.41272,0.408203,0.408051,0.411621,0.418182,0.42691,0.438141,0.450928,0.460449,0.463074,0.45639,0.438293,0.412567,0.379059,0.342712,0.305756,0.270355,0.238556,0.20816,0.18103,0.152191,0.119598,0.081543,0.0380554,-0.0105896,-0.0611267,-0.11087,-0.157013,-0.195068,-0.222656,-0.239197,-0.247925,-0.251343,-0.25415,-0.260864,-0.271912,-0.288605,-0.311371,-0.3396,-0.371399,-0.402588,-0.432373,-0.453888,-0.469025,-0.472748,-0.468231,-0.457001,-0.441254,-0.424561,-0.407898,-0.394623,-0.385895,-0.383087,-0.389496,-0.402283,-0.419739,-0.434235,-0.442963,-0.440948,-0.418335,-0.364532,-0.277222,-0.160583,-0.0263367,0.117249,0.262421,0.39743,0.519226,0.612152,0.672028,0.69104,0.673279,0.627258,0.565216,0.503326,0.449524,0.408813,0.379822,0.365021,0.368286,0.391998,0.430969,0.47525,0.505188,0.511261,0.494415,0.457794,0.406952,0.338959,0.254761,0.160126,0.0656433,-0.0179443,-0.0845032,-0.130676,-0.15094,-0.150787,-0.133636,-0.105408,-0.0695496,-0.0291443,0.00967407,0.0402222,0.0534668,0.0455322,0.014801,-0.0336914,-0.0951233,-0.164032,-0.241516,-0.322906,-0.399933,-0.462158,-0.503937,-0.525146,-0.528107,-0.517975,-0.498627,-0.476959,-0.45108,-0.422546,-0.394012,-0.3703,-0.356445,-0.349579,-0.349731,-0.347229,-0.337402,-0.32135,-0.297333,-0.265991,-0.22345,-0.166687,-0.0960388,-0.0155945,0.0681458,0.148895,0.22345,0.290314,0.348022,0.394958,0.428009,0.447479,0.454346,0.452484,0.44516,0.436737,0.432373,0.429871,0.42926,0.430328,0.435486,0.442505,0.44812,0.450287,0.441406,0.4216,0.394165,0.359558,0.323212,0.285034,0.249634,0.21579,0.186005,0.156555,0.127869,0.0971375,0.0608215,0.019165,-0.0302429,-0.0809326,-0.131439,-0.176971,-0.214081,-0.241058,-0.257751,-0.266144,-0.268494,-0.270996,-0.27597,-0.285797,-0.299988,-0.319794,-0.34552,-0.375153,-0.406342,-0.434387,-0.454987,-0.469482,-0.473389,-0.471649,-0.462311,-0.449219,-0.432983,-0.417725,-0.404144,-0.393707,-0.388397,-0.389038,-0.397766,-0.408356,-0.416931,-0.418182,-0.41037,-0.382782,-0.321198,-0.226715,-0.106812,0.0261841,0.164978,0.301697,0.430664,0.54541,0.635071,0.690582,0.706177,0.685425,0.638336,0.577698,0.520294,0.472443,0.429565,0.397614,0.376556,0.374054,0.394165,0.431274,0.46994,0.493164,0.493958,0.471832,0.433624,0.381531,0.312622,0.225159,0.127228,0.0319519,-0.052063,-0.118347,-0.162323,-0.179779,-0.174469,-0.152802,-0.119751,-0.0799866,-0.0358582,0.00531006,0.0361633,0.0466309,0.035553,-0.000610352,-0.0544128,-0.121307,-0.194122,-0.272247,-0.352386,-0.425201,-0.481018,-0.514069,-0.527161,-0.523438,-0.507538,-0.485382,-0.463074,-0.439697,-0.414917,-0.389801,-0.369385,-0.357513,-0.353638,-0.351746,-0.34552,-0.330231,-0.304993,-0.27301,-0.232178,-0.183044,-0.119446,-0.0455322,0.036499,0.118805,0.196777,0.268494,0.330078,0.382172,0.423157,0.450287,0.466827,0.473053,0.470093,0.463074,0.455597,0.451385,0.450134,0.449371,0.448578,0.449524,0.450623,0.449066,0.441711,0.425507,0.39917,0.365326,0.327576,0.289856,0.250244,0.213776,0.181183,0.151245,0.122101,0.0932312,0.0601807,0.0238647,-0.0182495,-0.0657959,-0.116486,-0.164978,-0.204559,-0.235748,-0.255249,-0.266632,-0.270996,-0.270355,-0.269897,-0.273651,-0.283936,-0.300781,-0.323212,-0.349884,-0.379974,-0.410065,-0.436432,-0.455902,-0.466217,-0.467621,-0.462921,-0.454651,-0.442963,-0.428619,-0.413361,-0.39978,-0.389496,-0.386047,-0.387146,-0.397278,-0.410858,-0.421936,-0.425812,-0.416931,-0.38559,-0.321808,-0.225311,-0.101501,0.0377197,0.189117,0.339752,0.483673,0.609497,0.706329,0.762146,0.776184,0.751221,0.694794,0.622742,0.549011,0.481323,0.421936,0.375916,0.350525,0.348328,0.372803,0.412415,0.454346,0.482117,0.490204,0.476013,0.440643,0.383087,0.302795,0.200836,0.0893555,-0.0173035,-0.110382,-0.182434,-0.229523,-0.246674,-0.237,-0.2052,-0.157166,-0.101654,-0.0441284,0.00732422,0.0436707,0.0584717,0.0472412,0.0124817,-0.0461426,-0.120361,-0.20224,-0.28891,-0.373108,-0.446259,-0.498962,-0.530609,-0.539032,-0.531372,-0.509552,-0.481476,-0.453888,-0.425659,-0.399475,-0.375153,-0.356903,-0.348022,-0.345367,-0.344116,-0.339142,-0.324005,-0.298584,-0.26413,-0.218292,-0.161224,-0.0916748,-0.0112305,0.0743713,0.159515,0.240417,0.313873,0.376709,0.428772,0.466827,0.493011,0.504547,0.506744,0.499573,0.487732,0.474945,0.464478,0.45639,0.448273,0.441406,0.435944,0.43158,0.422852,0.410706,0.391205,0.364532,0.332886,0.29657,0.258667,0.221863,0.187256,0.156708,0.128784,0.1026,0.0750122,0.0430298,0.006073,-0.0369568,-0.0820007,-0.128937,-0.173553,-0.211884,-0.242462,-0.261169,-0.270538,-0.271454,-0.268341,-0.266632,-0.268341,-0.279572,-0.297485,-0.321045,-0.349274,-0.380768,-0.413361,-0.440491,-0.462616,-0.476807,-0.479462,-0.473389,-0.461517,-0.445465,-0.427856,-0.410065,-0.393066,-0.377808,-0.368591,-0.368439,-0.377014,-0.3909,-0.404785,-0.411469,-0.407745,-0.381531,-0.320892,-0.22406,-0.0977478,0.04599,0.203003,0.360504,0.510498,0.644897,0.749817,0.812347,0.827942,0.799561,0.736725,0.651917,0.564911,0.483521,0.411011,0.35083,0.311676,0.299988,0.319946,0.365173,0.414581,0.452026,0.467621,0.46106,0.433624,0.382935,0.305145,0.19928,0.0788879,-0.0374146,-0.138916,-0.219849,-0.271149,-0.290466,-0.279572,-0.239807,-0.18103,-0.112732,-0.0420837,0.0198059,0.0661011,0.0863953,0.077179,0.0374146,-0.0269775,-0.110077,-0.201141,-0.295624,-0.38623,-0.463257,-0.519989,-0.549927,-0.554626,-0.540588,-0.512665,-0.477905,-0.446259,-0.417542,-0.391052,-0.366425,-0.34787,-0.338348,-0.336334,-0.337097,-0.331177,-0.314026,-0.285187,-0.245728,-0.195831,-0.13736,-0.0659485,0.0160522,0.102142,0.186951,0.266632,0.338043,0.39917,0.448273,0.485229,0.508606,0.520142,0.521698,0.513458,0.500031,0.483673,0.469635,0.457794,0.445465,0.432373,0.41803,0.403839,0.386841,0.366577,0.341461,0.31308,0.282684,0.251801,0.223602,0.195679,0.169342,0.14563,0.125214,0.104156,0.08078,0.0511475,0.0140381,-0.0286865,-0.07547,-0.123169,-0.168396,-0.208771,-0.239197,-0.260071,-0.270691,-0.272247,-0.268036,-0.262878,-0.261017,-0.268188,-0.283142,-0.304993,-0.333527,-0.364227,-0.396515,-0.427521,-0.454346,-0.473694,-0.481018,-0.476807,-0.465729,-0.44873,-0.430023,-0.408051,-0.386993,-0.367035,-0.352234,-0.345367,-0.345673,-0.354095,-0.36734,-0.379059,-0.383728,-0.370636,-0.327911,-0.244171,-0.130493,0.00546265,0.15451,0.314178,0.4729,0.619781,0.744049,0.827484,0.860992,0.844788,0.789124,0.700867,0.601227,0.504089,0.412872,0.331177,0.271149,0.241516,0.245117,0.28363,0.338806,0.391663,0.425812,0.438599,0.427063,0.3909,0.327576,0.232635,0.112579,-0.0126343,-0.12738,-0.223602,-0.291107,-0.321991,-0.319,-0.283295,-0.22406,-0.146729,-0.0651855,0.0112305,0.0734253,0.107727,0.112274,0.0823364,0.0246277,-0.0559692,-0.15094,-0.25058,-0.348328,-0.435486,-0.502991,-0.543243,-0.555847,-0.545715,-0.519379,-0.481781,-0.442657,-0.408661,-0.378571,-0.35083,-0.32962,-0.317291,-0.315277,-0.317444,-0.316681,-0.305756,-0.283295,-0.246521,-0.19928,-0.141113,-0.0731201,0.00671387,0.0927734,0.180389,0.26178,0.336151,0.397919,0.447327,0.483521,0.507355,0.51767,0.51593,0.505341,0.487885,0.466827,0.44873,0.432983,0.419434,0.40509,0.3909,0.376862,0.361572,0.34317,0.318542,0.289703,0.256958,0.223602,0.191925,0.164185,0.140167,0.118958,0.100891,0.0838928,0.0684509,0.0487976,0.0229187,-0.00967407,-0.0489502,-0.0913696,-0.133301,-0.1698,-0.2005,-0.222656,-0.236389,-0.241364,-0.242004,-0.240601,-0.240265,-0.246826,-0.260071,-0.280334,-0.305603,-0.335693,-0.366577,-0.397125,-0.42334,-0.443756,-0.454834,-0.457306,-0.45047,-0.435791,-0.415833,-0.395111,-0.372192,-0.349884,-0.329926,-0.318542,-0.31543,-0.322906,-0.338501,-0.354401,-0.364227,-0.367981,-0.356445,-0.312622,-0.225922,-0.104156,0.0428772,0.202698,0.367035,0.526245,0.673279,0.792694,0.866608,0.887177,0.85849,0.786011,0.679352,0.560852,0.445465,0.342255,0.25882,0.200348,0.171967,0.178833,0.223907,0.2883,0.352539,0.398224,0.414276,0.401642,0.362976,0.29657,0.197235,0.0709534,-0.0581665,-0.175568,-0.270538,-0.332733,-0.358307,-0.347229,-0.299835,-0.224365,-0.132233,-0.038208,0.0473938,0.113342,0.149994,0.152802,0.117401,0.0497437,-0.0413208,-0.146576,-0.253204,-0.355652,-0.443604,-0.508759,-0.545715,-0.551971,-0.536072,-0.502228,-0.457153,-0.412415,-0.372803,-0.343018,-0.320404,-0.302338,-0.292053,-0.289551,-0.292969,-0.293457,-0.284393,-0.259613,-0.218597,-0.164642,-0.101654,-0.0307312,0.0497437,0.135345,0.221252,0.299835,0.367828,0.423492,0.465881,0.49411,0.509857,0.512817,0.505341,0.490387,0.467621,0.441895,0.416931,0.395264,0.375763,0.356903,0.337097,0.317596,0.29718,0.27597,0.250732,0.223755,0.195374,0.1698,0.148438,0.130981,0.117401,0.104156,0.09198,0.0810852,0.0675049,0.0513,0.0254211,-0.00656128,-0.04599,-0.0865479,-0.12738,-0.163239,-0.190216,-0.209412,-0.220459,-0.224213,-0.22345,-0.2211,-0.220947,-0.225769,-0.23996,-0.263184,-0.290314,-0.322296,-0.354095,-0.386536,-0.414764,-0.437836,-0.450134,-0.45108,-0.4422,-0.423798,-0.39917,-0.367981,-0.336334,-0.303436,-0.27832,-0.262115,-0.256165,-0.258972,-0.27597,-0.298279,-0.322296,-0.3396,-0.347382,-0.329468,-0.269592,-0.165131,-0.0238647,0.138,0.307465,0.478058,0.63382,0.772125,0.870972,0.914642,0.899048,0.83136,0.718475,0.58313,0.443298,0.316833,0.212219,0.133636,0.0896606,0.0837402,0.118805,0.189117,0.273499,0.348938,0.395721,0.407593,0.383881,0.329163,0.242462,0.122253,-0.0160522,-0.149841,-0.265991,-0.350525,-0.394806,-0.396667,-0.35675,-0.283142,-0.182587,-0.0712585,0.033844,0.120361,0.177582,0.197083,0.175873,0.114594,0.0237122,-0.0893555,-0.207214,-0.320251,-0.420197,-0.498322,-0.545715,-0.561157,-0.544952,-0.506134,-0.452942,-0.395569,-0.344727,-0.30545,-0.279419,-0.260864,-0.249634,-0.248383,-0.254608,-0.263824,-0.265839,-0.253357,-0.222198,-0.171509,-0.109131,-0.0389709,0.0388184,0.121765,0.208923,0.290314,0.360168,0.416779,0.457458,0.483673,0.495056,0.494263,0.482727,0.46463,0.440948,0.415222,0.389191,0.365479,0.346619,0.32962,0.312622,0.293762,0.271912,0.24823,0.221558,0.19162,0.159668,0.130829,0.105713,0.0895081,0.0796814,0.0779724,0.0760803,0.07547,0.0732727,0.0671997,0.0545654,0.0324402,0.00421143,-0.0325928,-0.0723572,-0.111938,-0.147644,-0.175415,-0.195221,-0.204895,-0.20816,-0.209259,-0.210022,-0.21347,-0.222656,-0.236389,-0.257263,-0.282532,-0.312622,-0.34317,-0.371857,-0.395416,-0.412109,-0.420044,-0.419281,-0.408661,-0.389496,-0.36438,-0.331635,-0.294525,-0.257904,-0.227966,-0.205048,-0.195068,-0.198029,-0.211121,-0.231232,-0.25354,-0.275818,-0.294861,-0.303589,-0.2883,-0.226562,-0.114288,0.0316467,0.193817,0.362213,0.523743,0.665771,0.787567,0.870026,0.898743,0.864746,0.776184,0.644257,0.489594,0.344727,0.22171,0.124878,0.0545654,0.0190125,0.0195007,0.0646973,0.148743,0.246826,0.325409,0.368744,0.374512,0.348022,0.29187,0.205048,0.083252,-0.0552063,-0.186798,-0.295776,-0.371399,-0.405396,-0.394623,-0.347229,-0.267883,-0.160583,-0.0439758,0.0640869,0.148285,0.200348,0.209869,0.177429,0.106171,0.00497437,-0.112579,-0.232178,-0.342255,-0.433624,-0.500824,-0.536682,-0.539795,-0.513123,-0.462311,-0.398376,-0.33429,-0.282227,-0.249176,-0.228729,-0.216248,-0.209259,-0.212219,-0.223267,-0.237305,-0.241516,-0.226074,-0.189117,-0.131592,-0.0646973,0.00857544,0.0846558,0.165588,0.246979,0.321045,0.378571,0.421295,0.448425,0.459045,0.457458,0.44516,0.4263,0.40509,0.380768,0.357697,0.335999,0.32074,0.308411,0.29718,0.283783,0.265533,0.243073,0.216248,0.184601,0.149994,0.112732,0.0776367,0.0494385,0.0313416,0.0257263,0.0285339,0.0368042,0.0487976,0.0597229,0.0692139,0.0686035,0.0576782,0.0386658,0.010437,-0.025116,-0.0642395,-0.103058,-0.135651,-0.160767,-0.176819,-0.183197,-0.186005,-0.186951,-0.191772,-0.202545,-0.217651,-0.237946,-0.260376,-0.287201,-0.317139,-0.346466,-0.36969,-0.384338,-0.388702,-0.383423,-0.371857,-0.35379,-0.330872,-0.299988,-0.262726,-0.224823,-0.191162,-0.166199,-0.148285,-0.137054,-0.140167,-0.15451,-0.17868,-0.207855,-0.237946,-0.263672,-0.275513,-0.26474,-0.217499,-0.12442,0.00250244,0.150299,0.309021,0.468536,0.611847,0.728302,0.807037,0.837769,0.809235,0.730804,0.611664,0.466827,0.318695,0.187408,0.0826416,0.00827026,-0.0316467,-0.0317993,0.00326538,0.0759277,0.169006,0.255859,0.313873,0.340698,0.333984,0.292664,0.220001,0.116638,-0.010437,-0.139252,-0.247131,-0.329926,-0.373749,-0.376862,-0.341156,-0.272858,-0.179779,-0.0668945,0.0414734,0.130676,0.189758,0.208618,0.186005,0.124573,0.0333557,-0.0753174,-0.191162,-0.298126,-0.3909,-0.45575,-0.49054,-0.495819,-0.473694,-0.42926,-0.370148,-0.307159,-0.253052,-0.214874,-0.195068,-0.186798,-0.184601,-0.189758,-0.200043,-0.211121,-0.215942,-0.203949,-0.17041,-0.117554,-0.0528564,0.0169983,0.0887146,0.161377,0.232941,0.296417,0.344574,0.376556,0.394318,0.400085,0.394165,0.381836,0.366089,0.348785,0.330872,0.314484,0.301086,0.292358,0.288605,0.283295,0.274109,0.257416,0.232941,0.201447,0.165436,0.128479,0.088562,0.0502014,0.0179443,-0.00375366,-0.0127869,-0.00796509,0.00656128,0.0282288,0.0514526,0.0728149,0.0848083,0.0862122,0.0765686,0.0570679,0.0266724,-0.0110779,-0.0525513,-0.0895081,-0.120514,-0.140961,-0.151093,-0.1539,-0.151398,-0.153259,-0.160126,-0.174164,-0.192566,-0.216583,-0.244324,-0.276123,-0.3078,-0.337402,-0.358154,-0.367981,-0.367188,-0.35611,-0.340363,-0.316376,-0.28891,-0.255096,-0.21875,-0.184296,-0.152954,-0.12973,-0.114594,-0.106964,-0.109467,-0.120209,-0.139404,-0.162628,-0.192566,-0.219543,-0.237946,-0.240753,-0.220306,-0.166534,-0.0717163,0.0514526,0.186493,0.324951,0.456696,0.571594,0.664368,0.723785,0.735779,0.693542,0.61026,0.495972,0.366272,0.239807,0.126923,0.0374146,-0.0254211,-0.0553589,-0.0489502,-0.00857544,0.0631409,0.14798,0.225006,0.280182,0.310425,0.308258,0.275665,0.214386,0.12442,0.013092,-0.0982361,-0.192719,-0.26474,-0.306061,-0.313873,-0.289398,-0.235596,-0.156555,-0.0592651,0.0357056,0.114288,0.164032,0.179321,0.158112,0.103058,0.020752,-0.0778198,-0.181488,-0.278778,-0.361572,-0.420685,-0.452332,-0.456238,-0.435181,-0.393219,-0.341309,-0.285645,-0.238251,-0.201294,-0.178375,-0.166382,-0.161682,-0.163727,-0.17041,-0.17868,-0.179626,-0.166534,-0.133942,-0.0893555,-0.0333557,0.0263367,0.087616,0.149689,0.208313,0.260559,0.298889,0.323212,0.336639,0.341309,0.338959,0.330566,0.318237,0.303894,0.290649,0.279572,0.270996,0.265533,0.259918,0.25354,0.243866,0.227814,0.204712,0.175415,0.142975,0.108673,0.0756226,0.0455322,0.0219727,0.00747681,0.00201416,0.00637817,0.0185547,0.0358582,0.0556641,0.0742188,0.0890198,0.0932312,0.0873108,0.0723572,0.050354,0.0223083,-0.0109253,-0.043335,-0.0714111,-0.0930786,-0.106506,-0.115692,-0.123505,-0.133789,-0.14859,-0.170258,-0.194733,-0.223114,-0.25119,-0.278778,-0.304352,-0.325104,-0.338348,-0.341766,-0.33493,-0.321045,-0.302948,-0.281433,-0.257111,-0.231689,-0.205811,-0.180542,-0.157318,-0.138153,-0.120697,-0.110077,-0.102753,-0.101196,-0.106812,-0.115845,-0.129272,-0.148895,-0.174164,-0.193176,-0.2005,-0.192261,-0.159973,-0.0952759,0.00109863,0.112732,0.230438,0.347717,0.454498,0.544312,0.610748,0.64209,0.626343,0.570831,0.485229,0.378571,0.263672,0.156067,0.0636292,-0.006073,-0.0473938,-0.054718,-0.0293274,0.026825,0.10321,0.185089,0.257263,0.311523,0.33493,0.323547,0.277222,0.203949,0.101044,-0.0118408,-0.118652,-0.206909,-0.273163,-0.306396,-0.302795,-0.266144,-0.19928,-0.109619,-0.0132446,0.0745239,0.140015,0.17215,0.16684,0.12381,0.0484924,-0.0472412,-0.151703,-0.251984,-0.336945,-0.400726,-0.435486,-0.442963,-0.422699,-0.381378,-0.325409,-0.266785,-0.213287,-0.170898,-0.143616,-0.133789,-0.135956,-0.14624,-0.161224,-0.176819,-0.188812,-0.186005,-0.165741,-0.125824,-0.0725098,-0.00857544,0.0583191,0.123016,0.182739,0.236206,0.278015,0.304352,0.31543,0.315582,0.307465,0.294678,0.278778,0.262878,0.247284,0.237152,0.231232,0.231232,0.235138,0.240112,0.24231,0.239502,0.228119,0.208771,0.18103,0.14798,0.110718,0.0736084,0.0405273,0.0157471,0.000793457,-0.00326538,0.00140381,0.0140381,0.0297852,0.0481873,0.0690613,0.0867004,0.0985413,0.0993347,0.0870056,0.0637817,0.0347595,0.000610352,-0.0322876,-0.0612793,-0.0874634,-0.106323,-0.123016,-0.136597,-0.150452,-0.166199,-0.182281,-0.201599,-0.223755,-0.246521,-0.267731,-0.284088,-0.295624,-0.301544,-0.302338,-0.297974,-0.288452,-0.272705,-0.253204,-0.231384,-0.207214,-0.182281,-0.157166,-0.13269,-0.109467,-0.0884094,-0.0715637,-0.0587769,-0.053009,-0.0548706,-0.0631409,-0.0782776,-0.0982361,-0.121307,-0.146423,-0.17041,-0.190857,-0.19928,-0.186005,-0.14502,-0.0681458,0.0285339,0.134705,0.242462,0.346313,0.438293,0.516571,0.569427,0.587524,0.563507,0.504395,0.416473,0.313416,0.209869,0.11554,0.0394592,-0.0169983,-0.0458374,-0.0413208,-0.00341797,0.0623779,0.146423,0.226074,0.287689,0.325104,0.33197,0.304199,0.243225,0.153259,0.040863,-0.073761,-0.174316,-0.25415,-0.307465,-0.325562,-0.311829,-0.266632,-0.193817,-0.104309,-0.0116882,0.0657959,0.115845,0.133301,0.115692,0.0665894,-0.00436401,-0.0890198,-0.174011,-0.251495,-0.311523,-0.352539,-0.370148,-0.367676,-0.345825,-0.307617,-0.262421,-0.216888,-0.18103,-0.156555,-0.144684,-0.140808,-0.140808,-0.144226,-0.149536,-0.153748,-0.149994,-0.13208,-0.0986938,-0.0527039,0.000152588,0.0541077,0.105255,0.152344,0.19162,0.222656,0.241058,0.248383,0.249329,0.246979,0.243561,0.241364,0.240753,0.242157,0.247284,0.253357,0.260559,0.267242,0.27005,0.266479,0.254456,0.233582,0.204254,0.168854,0.129425,0.0901184,0.0536499,0.025116,0.00531006,-0.00234985,0.00170898,0.0123291,0.0296326,0.0473938,0.0631409,0.0760803,0.082489,0.0813904,0.0722046,0.0542603,0.0279236,-0.00515747,-0.0405273,-0.0728149,-0.0986938,-0.116791,-0.125366,-0.126282,-0.122864,-0.119598,-0.119751,-0.126465,-0.138763,-0.156067,-0.179779,-0.206909,-0.236542,-0.261475,-0.281281,-0.293457,-0.294861,-0.287994,-0.271606,-0.248993,-0.2211,-0.188354,-0.153748,-0.118195,-0.0860596,-0.0595703,-0.0402222,-0.0291443,-0.0269775,-0.0286865,-0.0354004,-0.047699,-0.0643921,-0.0865479,-0.108978,-0.130676,-0.149384,-0.166046,-0.179779,-0.185852,-0.181793,-0.16449,-0.123169,-0.0541077,0.036499,0.130981,0.226868,0.318085,0.402283,0.474152,0.526855,0.548523,0.532928,0.484283,0.408966,0.316681,0.219238,0.128784,0.0522461,-0.00576782,-0.0379028,-0.0396118,-0.00857544,0.0470886,0.12085,0.194733,0.253052,0.287354,0.291412,0.262573,0.204102,0.118195,0.0116882,-0.0999451,-0.199097,-0.276764,-0.329773,-0.34848,-0.333374,-0.287354,-0.213623,-0.124878,-0.0291443,0.0522461,0.108368,0.133148,0.123657,0.0838928,0.0193481,-0.0581665,-0.138458,-0.211884,-0.272705,-0.313873,-0.334442,-0.335083,-0.314484,-0.279419,-0.23465,-0.189758,-0.15155,-0.124268,-0.108978,-0.103851,-0.103851,-0.108368,-0.115845,-0.12381,-0.125977,-0.114899,-0.088562,-0.0497437,-0.00375366,0.04599,0.0941772,0.138306,0.17572,0.207214,0.228119,0.238403,0.241058,0.241516,0.239502,0.239502,0.239502,0.241364,0.244476,0.249481,0.253998,0.257111,0.2565,0.249329,0.235443,0.212982,0.184601,0.149841,0.115234,0.0802917,0.0508423,0.025116,0.00747681,-0.00234985,-0.0045166,-0.000946045,0.00656128,0.0126343,0.0169983,0.0158997,0.0124817,0.006073,-0.00250244,-0.0123291,-0.0240173,-0.036499,-0.0528564,-0.0684509,-0.0796814,-0.0849915,-0.0852966,-0.0827942,-0.0812378,-0.0805969,-0.0865479,-0.098999,-0.117554,-0.140656,-0.166534,-0.193329,-0.218445,-0.238403,-0.251343,-0.253052,-0.244781,-0.228577,-0.206757,-0.182587,-0.155762,-0.128937,-0.102753,-0.0809326,-0.0664368,-0.0564575,-0.0519104,-0.0497437,-0.0514526,-0.0553589,-0.0592651,-0.0603333,-0.0609741,-0.059082,-0.0595703,-0.0625305,-0.0657959,-0.0723572,-0.0845032,-0.10321,-0.123962,-0.144379,-0.157471,-0.154205,-0.12442,-0.0622253,0.0162048,0.104767,0.198486,0.294373,0.387146,0.470245,0.528717,0.548676,0.527313,0.470093,0.382935,0.279114,0.170746,0.0682983,-0.0174561,-0.0778198,-0.106812,-0.101959,-0.059082,0.00888062,0.0923157,0.1698,0.231079,0.265991,0.268646,0.237946,0.173065,0.0801392,-0.0314941,-0.144073,-0.239014,-0.31308,-0.359253,-0.368134,-0.344574,-0.287689,-0.203003,-0.103363,-0.00250244,0.0799866,0.135651,0.159027,0.149689,0.110077,0.0483398,-0.0272827,-0.106018,-0.178833,-0.238251,-0.27832,-0.298279,-0.296082,-0.276917,-0.241669,-0.198334,-0.154358,-0.116943,-0.0899658,-0.073761,-0.0654907,-0.0631409,-0.0656433,-0.0728149,-0.082489,-0.0863953,-0.0784302,-0.057373,-0.0260315,0.00952148,0.0481873,0.0852966,0.12085,0.153107,0.181793,0.202545,0.21579,0.223602,0.230621,0.236053,0.242004,0.245728,0.247589,0.247131,0.243713,0.238098,0.227966,0.214539,0.196136,0.171814,0.144379,0.113342,0.081543,0.0514526,0.0249329,0.00341797,-0.0126343,-0.0216675,-0.0223083,-0.0188599,-0.0112305,-0.00326538,0.000946045,0.00186157,-0.00109863,-0.00561523,-0.013092,-0.0229187,-0.0332031,-0.0439758,-0.0525513,-0.0606384,-0.0673523,-0.0732727,-0.076416,-0.0745239,-0.0695496,-0.0642395,-0.0589294,-0.0586243,-0.0648499,-0.0759277,-0.0921631,-0.111481,-0.132538,-0.153107,-0.17215,-0.188507,-0.198639,-0.198944,-0.190857,-0.176178,-0.157623,-0.137848,-0.113678,-0.0873108,-0.0606384,-0.0366516,-0.0195007,-0.00762939,0,0.00311279,0.00125122,-0.00637817,-0.0168457,-0.0271301,-0.0354004,-0.043335,-0.0508423,-0.059082,-0.0676575,-0.0812378,-0.0975952,-0.115692,-0.135956,-0.152496,-0.164642,-0.168701,-0.156708,-0.118347,-0.0545654,0.0218201,0.106812,0.194427,0.281738,0.359406,0.423492,0.461517,0.467773,0.439545,0.38028,0.298431,0.202087,0.10556,0.0196533,-0.0492859,-0.0932312,-0.108368,-0.0944824,-0.0536499,0.00747681,0.0801392,0.144531,0.191925,0.215485,0.209076,0.172913,0.111786,0.0260315,-0.0712585,-0.165588,-0.243713,-0.300934,-0.331177,-0.327271,-0.292816,-0.229218,-0.146088,-0.0519104,0.0389709,0.111938,0.161377,0.182434,0.17215,0.134552,0.0756226,0.00561523,-0.065033,-0.130981,-0.182892,-0.218445,-0.236694,-0.235596,-0.21875,-0.188354,-0.148285,-0.109314,-0.0782776,-0.0564575,-0.0456848,-0.0405273,-0.0428772,-0.0502014,-0.0636292,-0.0760803,-0.0846558,-0.0804443,-0.0636292,-0.0386658,-0.00732422,0.0269775,0.063446,0.0999451,0.134094,0.16449,0.185242,0.195526,0.201141,0.20285,0.20224,0.198486,0.193512,0.186646,0.180542,0.174957,0.170746,0.165436,0.157623,0.146088,0.130035,0.110718,0.0871582,0.0611267,0.0339966,0.00686646,-0.0152893,-0.0333557,-0.0422668,-0.0420837,-0.0360107,-0.0260315,-0.0140381,-0.00360107,0.00436401,0.00857544,0.00872803,0.00531006,-0.00421143,-0.0154419,-0.0271301,-0.0368042,-0.044281,-0.0491028,-0.0505066,-0.0484924,-0.0436707,-0.0352478,-0.0258789,-0.0187073,-0.0165405,-0.0213623,-0.0308838,-0.0478821,-0.0682983,-0.09198,-0.11554,-0.137512,-0.155304,-0.167297,-0.170258,-0.163574,-0.149048,-0.128632,-0.105255,-0.08078,-0.0555115,-0.0324402,-0.0113831,0.00265503,0.0090332,0.0093689,0.00405884,-0.00796509,-0.0224609,-0.0400696,-0.0536499,-0.0620422,-0.0639343,-0.0646973,-0.0656433,-0.0675049,-0.0697021,-0.0762329,-0.0884094,-0.10791,-0.133636,-0.161377,-0.186493,-0.204712,-0.205048,-0.178833,-0.123962,-0.0505066,0.0314941,0.124115,0.217499,0.306549,0.382477,0.434387,0.452332,0.435181,0.38324,0.306244,0.211273,0.112427,0.0216675,-0.0514526,-0.100555,-0.121918,-0.111328,-0.0731201,-0.0107727,0.0622253,0.132996,0.186005,0.219391,0.223114,0.196777,0.141418,0.0612793,-0.0344543,-0.127075,-0.206116,-0.264923,-0.297821,-0.300293,-0.270355,-0.21283,-0.133301,-0.0417786,0.0473938,0.122864,0.175262,0.199738,0.193512,0.159515,0.102753,0.036499,-0.0313416,-0.0924683,-0.141113,-0.17572,-0.192261,-0.193512,-0.179779,-0.154053,-0.121613,-0.092926,-0.0723572,-0.063446,-0.0631409,-0.0686035,-0.0779724,-0.0907593,-0.104462,-0.116638,-0.120361,-0.111328,-0.0898132,-0.0584717,-0.0243225,0.0126343,0.0487976,0.081543,0.110229,0.13208,0.144684,0.148438,0.146423,0.14328,0.142212,0.142059,0.144379,0.147827,0.152802,0.160278,0.166534,0.172607,0.173218,0.168243,0.155457,0.133789,0.105713,0.0731201,0.038208,0.00515747,-0.0241699,-0.0462952,-0.0584717,-0.0598755,-0.0491028,-0.0316467,-0.00918579,0.0149536,0.0354004,0.0519104,0.0603333,0.0615845,0.0544128,0.0400696,0.0213623,-0.000305176,-0.0205688,-0.0396118,-0.0517578,-0.0587769,-0.0580139,-0.0541077,-0.0448914,-0.0339966,-0.0238647,-0.0179443,-0.0166931,-0.0219727,-0.0336914,-0.0506592,-0.0717163,-0.0951233,-0.115845,-0.132996,-0.144684,-0.149689,-0.147827,-0.139252,-0.122864,-0.101349,-0.0768738,-0.0516052,-0.0291443,-0.00842285,0.00671387,0.0165405,0.0180969,0.0115356,-0.0015564,-0.0179443,-0.037262,-0.057373,-0.0732727,-0.083252,-0.0848083,-0.0857544,-0.0874634,-0.0913696,-0.0969849,-0.10495,-0.119293,-0.138763,-0.166199,-0.191162,-0.212067,-0.219391,-0.207062,-0.16684,-0.101349,-0.0223083,0.0662537,0.157623,0.247589,0.330231,0.397278,0.4375,0.441711,0.410706,0.349426,0.267395,0.17572,0.0852966,0.00546265,-0.0558167,-0.092926,-0.101044,-0.08078,-0.0354004,0.0272827,0.0960388,0.155609,0.196777,0.213287,0.200989,0.158569,0.0921631,0.00701904,-0.0862122,-0.17276,-0.241058,-0.28595,-0.301392,-0.284241,-0.236206,-0.164185,-0.073761,0.0227661,0.111328,0.182739,0.227478,0.241821,0.22345,0.175415,0.108826,0.0344543,-0.0377197,-0.102448,-0.155304,-0.192871,-0.212219,-0.213135,-0.196136,-0.168549,-0.136261,-0.107727,-0.0877686,-0.0773315,-0.0739136,-0.0774841,-0.086853,-0.10025,-0.116638,-0.129883,-0.134857,-0.127075,-0.106323,-0.0782776,-0.0452271,-0.00717163,0.0303955,0.0690613,0.102905,0.13208,0.152954,0.165588,0.17215,0.177429,0.179474,0.179626,0.17807,0.174011,0.170258,0.164337,0.160583,0.154053,0.146088,0.133301,0.117706,0.0980835,0.0757751,0.0508423,0.0279236,0.00671387,-0.00918579,-0.0215149,-0.0260315,-0.0254211,-0.0169983,-0.00497437,0.00918579,0.0230713,0.0346069,0.0420837,0.0448914,0.0439758,0.0374146,0.0257263,0.0121765,-0.00311279,-0.0163574,-0.0265198,-0.033844,-0.0368042,-0.0350952,-0.0328979,-0.0291443,-0.0255737,-0.0219727,-0.0238647,-0.0288391,-0.0402222,-0.0556641,-0.0756226,-0.0961914,-0.116486,-0.133453,-0.145477,-0.15155,-0.151703,-0.145325,-0.13269,-0.114441,-0.0924683,-0.0686035,-0.0456848,-0.0246277,-0.00842285,0.00405884,0.0107727,0.0129395,0.00872803,0.000457764,-0.0116882,-0.0246277,-0.0371094,-0.0473938,-0.0566101,-0.0575256,-0.0556641,-0.0527039,-0.0553589,-0.0626831,-0.0760803,-0.0944824,-0.118805,-0.150146,-0.185089,-0.215179,-0.23761,-0.241516,-0.219849,-0.168396,-0.0958862,-0.00747681,0.0884094,0.189117,0.284393,0.368286,0.430817,0.46167,0.455292,0.411774,0.341309,0.250092,0.151855,0.0572205,-0.0246277,-0.0871582,-0.122253,-0.126465,-0.0993347,-0.0464783,0.0224609,0.0921631,0.152496,0.193176,0.208923,0.195068,0.152802,0.0837402,-0.00421143,-0.0982361,-0.183533,-0.251648,-0.29422,-0.307465,-0.287201,-0.237457,-0.162781,-0.0708008,0.0269775,0.115234,0.18335,0.225769,0.237305,0.217346,0.169189,0.103699,0.0291443,-0.044281,-0.108978,-0.161987,-0.19754,-0.215485,-0.215637,-0.198181,-0.168396,-0.134399,-0.104462,-0.0818481,-0.0687561,-0.0623779,-0.0631409,-0.0692139,-0.0802917,-0.0937195,-0.104614,-0.107422,-0.0971375,-0.0767212,-0.050354,-0.0198059,0.0141907,0.0483398,0.0810852,0.111023,0.134247,0.15094,0.158875,0.164795,0.167603,0.171051,0.17215,0.173218,0.173065,0.17215,0.171204,0.169952,0.165588,0.15686,0.142365,0.12146,0.0966797,0.0671997,0.0363159,0.00622559,-0.0196533,-0.0394592,-0.0533142,-0.0566101,-0.0509949,-0.0380554,-0.0199585,0,0.019165,0.0347595,0.0439758,0.0484924,0.0450745,0.0349121,0.0187073,0,-0.0196533,-0.036499,-0.0500488,-0.0572205,-0.0587769,-0.0548706,-0.046936,-0.0379028,-0.0266724,-0.020752,-0.019165,-0.0260315,-0.0385132,-0.0566101,-0.078125,-0.100739,-0.12381,-0.140656,-0.151093,-0.153259,-0.145325,-0.13208,-0.111328,-0.084198,-0.0552063,-0.025116,0.000457764,0.0205688,0.0343018,0.0411682,0.0422668,0.036499,0.0235291,0.00762939,-0.00827026,-0.0216675,-0.033844,-0.0427246,-0.0481873,-0.0478821,-0.044281,-0.0417786,-0.0445862,-0.0555115,-0.0722046,-0.0943298,-0.124725,-0.161072,-0.2005,-0.233093,-0.255096,-0.257904,-0.234039,-0.182739,-0.108368,-0.0190125,0.0812378,0.185547,0.283936,0.368896,0.429565,0.458405,0.452484,0.410065,0.339294,0.248383,0.149994,0.053009,-0.0322876,-0.0975952,-0.135345,-0.144531,-0.121613,-0.0751648,-0.0115356,0.0553589,0.113983,0.155914,0.174957,0.163879,0.126129,0.0640869,-0.0166931,-0.103699,-0.182587,-0.246979,-0.286743,-0.30014,-0.28067,-0.232788,-0.159973,-0.0706177,0.0240173,0.111786,0.181946,0.227814,0.245422,0.23233,0.190857,0.130493,0.0618896,-0.00732422,-0.0708008,-0.122864,-0.160583,-0.180084,-0.183044,-0.17041,-0.146088,-0.116943,-0.0901184,-0.0703125,-0.0576782,-0.0517578,-0.0528564,-0.0615845,-0.0750122,-0.0893555,-0.102753,-0.106812,-0.10025,-0.0835876,-0.0589294,-0.0289917,0.00515747,0.0411682,0.0757751,0.106659,0.132538,0.150787,0.16153,0.166199,0.169189,0.169952,0.169647,0.167297,0.165436,0.161377,0.157471,0.153412,0.14798,0.138763,0.122559,0.102448,0.0770264,0.0487976,0.0182495,-0.0109253,-0.0368042,-0.0592651,-0.0746765,-0.0813904,-0.079834,-0.0686035,-0.0536499,-0.035553,-0.0154419,0.00219727,0.0155945,0.0265198,0.0317993,0.0317993,0.0261841,0.0173035,0.00576782,-0.006073,-0.0158997,-0.0218201,-0.0246277,-0.0243225,-0.0213623,-0.0176086,-0.013092,-0.0113831,-0.0138855,-0.0205688,-0.0308838,-0.0455322,-0.0622253,-0.0791931,-0.0938721,-0.104767,-0.111176,-0.111176,-0.106323,-0.0952759,-0.0810852,-0.0629883,-0.0431824,-0.0249329,-0.0090332,0.00341797,0.0113831,0.0154419,0.0163574,0.014801,0.00918579,0.00311279,-0.00326538,-0.00701904,-0.0090332,-0.0116882,-0.0132446,-0.014801,-0.0160522,-0.0196533,-0.0286865,-0.0455322,-0.0714111,-0.103851,-0.140015,-0.180878,-0.220642,-0.256805,-0.278625,-0.284546,-0.264923,-0.218292,-0.144684,-0.0545654,0.0448914,0.146576,0.244781,0.328979,0.393402,0.427521,0.427521,0.392914,0.327576,0.23996,0.14328,0.0483398,-0.0360107,-0.103058,-0.142365,-0.153595,-0.132233,-0.085144,-0.0188599,0.0522461,0.117401,0.166992,0.192719,0.189453,0.156403,0.0974426,0.0176086,-0.0701599,-0.156067,-0.226562,-0.274902,-0.295471,-0.284393,-0.241516,-0.172455,-0.0843506,0.0123291,0.105713,0.185242,0.240906,0.268951,0.266144,0.234039,0.177429,0.108521,0.0368042,-0.0296326,-0.0862122,-0.129425,-0.157166,-0.166382,-0.161835,-0.144073,-0.119446,-0.0944824,-0.0770264,-0.0671997,-0.0637817,-0.0664368,-0.0760803,-0.088562,-0.102905,-0.114746,-0.119751,-0.113831,-0.0960388,-0.0698547,-0.0388184,-0.00546265,0.02948,0.0620422,0.0909119,0.113342,0.128784,0.136597,0.138458,0.138153,0.137848,0.137665,0.138763,0.139557,0.141266,0.142212,0.142365,0.140167,0.133942,0.12085,0.100555,0.0740662,0.044281,0.0119934,-0.0199585,-0.0483398,-0.0687561,-0.0829468,-0.0863953,-0.0787354,-0.0625305,-0.0402222,-0.0152893,0.00918579,0.0317993,0.0480347,0.0575256,0.0614319,0.0559692,0.04599,0.0305481,0.0144958,-0.000946045,-0.0124817,-0.0188599,-0.019165,-0.0143433,-0.00701904,0.0015564,0.00982666,0.0141907,0.014801,0.00686646,-0.00671387,-0.0266724,-0.0498962,-0.0753174,-0.09729,-0.114594,-0.125214,-0.128479,-0.122253,-0.108521,-0.0893555,-0.0654907,-0.0407104,-0.0162048,0.00360107,0.0188599,0.0282288,0.0302429,0.0279236,0.0212097,0.010437,-0.00234985,-0.0137329,-0.0230713,-0.02948,-0.0354004,-0.038208,-0.040863,-0.0431824,-0.0450745,-0.0516052,-0.065033,-0.0873108,-0.116638,-0.150787,-0.18866,-0.226227,-0.260071,-0.285187,-0.292816,-0.277374,-0.232635,-0.16217,-0.0745239,0.0237122,0.124725,0.224213,0.312164,0.382477,0.424255,0.43222,0.405853,0.349121,0.267548,0.174957,0.081543,-0.00466919,-0.0736084,-0.120056,-0.138,-0.12738,-0.0884094,-0.0289917,0.0397644,0.102295,0.152191,0.180542,0.18335,0.157959,0.107422,0.0357056,-0.047699,-0.130676,-0.19989,-0.249329,-0.2724,-0.265686,-0.228424,-0.164032,-0.0810852,0.0137329,0.106506,0.18634,0.245117,0.275513,0.276123,0.246979,0.193024,0.123169,0.0480347,-0.0226135,-0.0852966,-0.13504,-0.168549,-0.186005,-0.185394,-0.171814,-0.14798,-0.121155,-0.0993347,-0.0843506,-0.0756226,-0.0720215,-0.07547,-0.0840454,-0.0968323,-0.110382,-0.120056,-0.120056,-0.109619,-0.0901184,-0.0646973,-0.0358582,-0.00360107,0.0300903,0.0623779,0.0915222,0.114899,0.132843,0.144684,0.153748,0.160126,0.165283,0.167603,0.167297,0.164642,0.158722,0.151398,0.140808,0.126923,0.109131,0.0865479,0.0603333,0.0332031,0.00546265,-0.0198059,-0.0414734,-0.0564575,-0.0640869,-0.0657959,-0.057373,-0.0430298,-0.0235291,-0.00280762,0.0179443,0.0354004,0.0492859,0.0570679,0.0603333,0.0572205,0.0502014,0.0394592,0.0279236,0.0171509,0.00918579,0.00497437,0.00280762,0.00311279,0.00482178,0.00747681,0.00982666,0.00952148,0.00421143,-0.006073,-0.020752,-0.0377197,-0.0595703,-0.0809326,-0.101196,-0.116302,-0.12677,-0.130493,-0.128479,-0.120514,-0.106171,-0.0873108,-0.0675049,-0.0472412,-0.02948,-0.014801,-0.00265503,0.00497437,0.00872803,0.00872803,0.00497437,-0.0015564,-0.00872803,-0.0168457,-0.0254211,-0.0341492,-0.0428772,-0.0500488,-0.0570679,-0.0645447,-0.0742188,-0.0901184,-0.111633,-0.136902,-0.166992,-0.196472,-0.224365,-0.244324,-0.253204,-0.248077,-0.218597,-0.164337,-0.0907593,-0.0045166,0.0877686,0.183685,0.271149,0.34491,0.395874,0.419891,0.412872,0.374054,0.3078,0.223114,0.131897,0.0452271,-0.0303955,-0.0856018,-0.116791,-0.121002,-0.0977478,-0.0506592,0.0116882,0.0742188,0.127533,0.162476,0.176819,0.165283,0.126923,0.0679932,-0.00762939,-0.087616,-0.160431,-0.217346,-0.251038,-0.25946,-0.237457,-0.187408,-0.11554,-0.0303955,0.0575256,0.138763,0.200348,0.239014,0.250092,0.233429,0.190216,0.128174,0.0567627,-0.0137329,-0.076416,-0.127869,-0.165283,-0.187256,-0.19397,-0.186646,-0.167297,-0.140167,-0.114594,-0.0957336,-0.0848083,-0.0796814,-0.0787354,-0.0843506,-0.0927734,-0.102142,-0.108368,-0.110229,-0.102142,-0.082489,-0.0558167,-0.0254211,0.00717163,0.0394592,0.0714111,0.10025,0.12442,0.142822,0.154663,0.160431,0.163391,0.164032,0.162781,0.160919,0.155914,0.150146,0.142365,0.132843,0.123016,0.110077,0.0935669,0.0732727,0.0502014,0.0255737,0.00250244,-0.0188599,-0.0343018,-0.044281,-0.0492859,-0.046936,-0.0371094,-0.0233765,-0.00592041,0.0119934,0.0279236,0.0413208,0.0497437,0.0538025,0.0534668,0.0483398,0.0394592,0.0274353,0.0155945,0.00482178,-0.00234985,-0.00701904,-0.0093689,-0.00842285,-0.00656128,-0.00576782,-0.00497437,-0.00967407,-0.0176086,-0.0307312,-0.0495911,-0.0695496,-0.0915222,-0.108826,-0.122711,-0.132385,-0.135651,-0.13269,-0.120361,-0.10495,-0.0838928,-0.0625305,-0.0403748,-0.0196533,-0.00436401,0.00671387,0.0140381,0.0141907,0.010437,0.00326538,-0.00701904,-0.0188599,-0.0302429,-0.039917,-0.0481873,-0.0544128,-0.059082,-0.0608215,-0.0629883,-0.0671997,-0.0785828,-0.0974426,-0.12146,-0.148438,-0.177917,-0.204407,-0.227325,-0.240265,-0.235138,-0.204254,-0.144531,-0.0681458,0.0180969,0.111176,0.206451,0.292206,0.361572,0.407593,0.423157,0.406494,0.357849,0.283783,0.193176,0.0991516,0.013092,-0.0578613,-0.107574,-0.133301,-0.130829,-0.100403,-0.0453796,0.0213623,0.0840454,0.134094,0.166046,0.175415,0.158569,0.116638,0.0522461,-0.0241699,-0.10321,-0.169952,-0.219543,-0.247284,-0.249176,-0.220642,-0.165894,-0.0915222,-0.00656128,0.0762329,0.147827,0.199432,0.227814,0.231842,0.208313,0.160126,0.0947876,0.0258789,-0.0400696,-0.0957336,-0.139557,-0.170898,-0.187744,-0.191925,-0.181641,-0.159363,-0.13269,-0.109131,-0.0944824,-0.087616,-0.0816956,-0.0810852,-0.083252,-0.0884094,-0.0943298,-0.0974426,-0.0938721,-0.079834,-0.0550537,-0.0277405,0.00186157,0.031189,0.0612793,0.086853,0.111328,0.129272,0.141571,0.149048,0.150299,0.151245,0.150452,0.149048,0.147827,0.145782,0.14328,0.138306,0.131592,0.123169,0.112427,0.0965271,0.0762329,0.0514526,0.0238647,-0.00265503,-0.0258789,-0.0436707,-0.0544128,-0.0603333,-0.0581665,-0.0480347,-0.0317993,-0.0107727,0.0113831,0.0332031,0.0505066,0.0626831,0.0695496,0.071106,0.0659485,0.0558167,0.0413208,0.0247803,0.00732422,-0.00747681,-0.0187073,-0.0258789,-0.0305481,-0.0313416,-0.031189,-0.0307312,-0.0308838,-0.0347595,-0.042572,-0.0531616,-0.0678406,-0.0845032,-0.0993347,-0.114441,-0.125519,-0.132385,-0.131287,-0.12442,-0.111786,-0.0938721,-0.0720215,-0.046936,-0.0224609,-0.00125122,0.0152893,0.0266724,0.0310364,0.0300903,0.0227661,0.00967407,-0.00811768,-0.0265198,-0.0445862,-0.0597229,-0.0709534,-0.0799866,-0.0852966,-0.0913696,-0.10025,-0.112274,-0.12677,-0.144379,-0.165894,-0.188812,-0.206604,-0.219849,-0.216736,-0.190063,-0.139404,-0.0708008,0.00811768,0.0938721,0.184296,0.270538,0.342865,0.393555,0.414581,0.404938,0.362366,0.296722,0.212067,0.122406,0.036499,-0.037262,-0.0901184,-0.118652,-0.120697,-0.0944824,-0.0438232,0.0171509,0.0785828,0.128784,0.160767,0.172913,0.157959,0.118958,0.0576782,-0.0165405,-0.0932312,-0.160278,-0.210327,-0.239349,-0.245117,-0.219696,-0.169189,-0.0977478,-0.0160522,0.0640869,0.133789,0.184143,0.213135,0.21814,0.197388,0.152649,0.091217,0.025116,-0.0374146,-0.0913696,-0.134705,-0.166687,-0.185547,-0.191315,-0.183197,-0.164795,-0.140167,-0.119751,-0.106659,-0.0991516,-0.0930786,-0.0893555,-0.0888672,-0.0910645,-0.0943298,-0.0941772,-0.087616,-0.0706177,-0.046936,-0.0202637,0.00747681,0.0335083,0.0606384,0.0860596,0.108521,0.126465,0.140015,0.147827,0.152191,0.156403,0.158722,0.159668,0.158875,0.156219,0.152008,0.145477,0.136597,0.124725,0.109619,0.0913696,0.0700073,0.0461426,0.0205688,-0.00311279,-0.0224609,-0.035553,-0.042572,-0.0439758,-0.0389709,-0.0288391,-0.0144958,0.00296021,0.0202637,0.0369568,0.0497437,0.0575256,0.0611267,0.0598755,0.0550537,0.0453796,0.0335083,0.0201111,0.00762939,-0.00265503,-0.00997925,-0.0157471,-0.0196533,-0.0240173,-0.0271301,-0.0305481,-0.0357056,-0.0430298,-0.0552063,-0.069397,-0.0863953,-0.10025,-0.114594,-0.126282,-0.133942,-0.137054,-0.131897,-0.125214,-0.110077,-0.0921631,-0.0703125,-0.0473938,-0.0265198,-0.0093689,0.00390625,0.0113831,0.013092,0.00842285,-0.00109863,-0.0152893,-0.0330505,-0.0505066,-0.0665894,-0.0776367,-0.0863953,-0.0932312,-0.0991516,-0.106506,-0.115234,-0.128632,-0.145935,-0.165131,-0.182739,-0.195374,-0.203003,-0.195374,-0.165588,-0.111633,-0.0420837,0.0363159,0.121765,0.209869,0.291412,0.358002,0.402588,0.41864,0.404449,0.358307,0.288605,0.205505,0.116791,0.0347595,-0.0360107,-0.0838928,-0.107269,-0.104004,-0.0736084,-0.0223083,0.0396118,0.096344,0.141571,0.168549,0.174774,0.155914,0.111023,0.0466309,-0.02948,-0.104767,-0.169189,-0.215637,-0.240906,-0.239807,-0.212067,-0.158722,-0.0877686,-0.00778198,0.0689087,0.131134,0.173065,0.19397,0.19101,0.164978,0.116302,0.054718,-0.0102844,-0.0697021,-0.12085,-0.160431,-0.187256,-0.201447,-0.20285,-0.193665,-0.172913,-0.148132,-0.128479,-0.115692,-0.107574,-0.100403,-0.0958862,-0.0944824,-0.092926,-0.091217,-0.0845032,-0.0718689,-0.0500488,-0.0240173,0.00466919,0.0319519,0.059082,0.0829468,0.10556,0.122711,0.137207,0.146423,0.152344,0.155609,0.157166,0.159821,0.160126,0.160431,0.15921,0.156219,0.151855,0.144226,0.133148,0.118042,0.098999,0.0776367,0.053009,0.0279236,0.00466919,-0.0140381,-0.0266724,-0.0325928,-0.0335083,-0.026825,-0.0152893,0,0.0173035,0.0344543,0.0489502,0.0606384,0.0651855,0.0664368,0.0598755,0.0498962,0.0358582,0.0210571,0.00515747,-0.00857544,-0.0213623,-0.0314941,-0.0380554,-0.0428772,-0.0453796,-0.047699,-0.0509949,-0.0564575,-0.0642395,-0.0751648,-0.0879517,-0.101349,-0.11554,-0.129089,-0.139557,-0.146576,-0.148438,-0.143616,-0.133453,-0.118042,-0.098999,-0.0760803,-0.0538025,-0.0322876,-0.0146484,-0.0015564,0.00531006,0.00515747,-0.00296021,-0.0169983,-0.0352478,-0.0562744,-0.0740662,-0.0910645,-0.103851,-0.11615,-0.125671,-0.13504,-0.144684,-0.154358,-0.163086,-0.168854,-0.170898,-0.1698,-0.157959,-0.125366,-0.0732727,-0.00747681,0.0648499,0.141418,0.219055,0.292053,0.351593,0.392914,0.409454,0.399628,0.358459,0.29718,0.220459,0.139557,0.0637817,-0.00201416,-0.0500488,-0.0762329,-0.0778198,-0.0548706,-0.0121765,0.0427246,0.0935669,0.132843,0.155457,0.158112,0.140808,0.101044,0.0431824,-0.0265198,-0.0968323,-0.15686,-0.2005,-0.22406,-0.223755,-0.19989,-0.154205,-0.0918274,-0.0210571,0.0473938,0.102295,0.136749,0.151093,0.144684,0.117706,0.0726624,0.0158997,-0.0419312,-0.0952759,-0.139557,-0.171814,-0.191162,-0.2005,-0.2005,-0.191467,-0.174316,-0.152954,-0.135498,-0.125061,-0.120361,-0.116943,-0.113037,-0.109619,-0.10321,-0.0951233,-0.0830994,-0.0640869,-0.0361633,-0.00250244,0.0325928,0.0643921,0.0927734,0.115845,0.13504,0.150146,0.160767,0.164978,0.165894,0.163391,0.160126,0.158264,0.157166,0.157471,0.157806,0.155609,0.154053,0.148132,0.140472,0.128326,0.111786,0.0926208,0.0698547,0.0452271,0.0230713,0.00390625,-0.0090332,-0.0158997,-0.0195007,-0.0162048,-0.00872803,0.00326538,0.0176086,0.0313416,0.044281,0.0533142,0.0570679,0.0561218,0.0509949,0.0410156,0.0280762,0.0141907,-0.00140381,-0.0160522,-0.0299377,-0.042572,-0.0531616,-0.0608215,-0.0671997,-0.0731201,-0.0787354,-0.0852966,-0.0926208,-0.101501,-0.111176,-0.121307,-0.130829,-0.140015,-0.146576,-0.149994,-0.148895,-0.143768,-0.133301,-0.118652,-0.101349,-0.0830994,-0.0636292,-0.0447388,-0.0285339,-0.0155945,-0.00918579,-0.00872803,-0.0133972,-0.0226135,-0.0350952,-0.0497437,-0.0665894,-0.0837402,-0.101196,-0.117249,-0.135193,-0.152954,-0.17041,-0.184937,-0.191467,-0.188812,-0.175568,-0.145477,-0.0935669,-0.0244751,0.0531616,0.134094,0.21579,0.292358,0.355957,0.400391,0.418335,0.410065,0.374512,0.31604,0.240906,0.159668,0.0809326,0.0149536,-0.0341492,-0.0594177,-0.0608215,-0.0410156,0.000610352,0.0544128,0.110718,0.155762,0.181793,0.185394,0.164978,0.123322,0.0626831,-0.0093689,-0.085907,-0.155609,-0.210175,-0.241211,-0.246979,-0.225769,-0.18103,-0.119598,-0.0478821,0.0229187,0.0835876,0.124725,0.142517,0.13736,0.110382,0.0651855,0.00622559,-0.0548706,-0.111786,-0.156555,-0.189911,-0.208008,-0.212524,-0.205963,-0.190521,-0.1698,-0.145325,-0.123505,-0.111023,-0.108063,-0.109772,-0.112122,-0.115997,-0.117096,-0.114594,-0.106506,-0.0909119,-0.0646973,-0.0293274,0.0123291,0.0522461,0.0891724,0.119904,0.146423,0.16745,0.182129,0.189758,0.190704,0.186005,0.17868,0.17276,0.16745,0.162933,0.158875,0.154816,0.151093,0.147186,0.141113,0.132996,0.12085,0.104767,0.0862122,0.0661011,0.0462952,0.0282288,0.014801,0.00576782,0.000305176,-0.000152588,0.00326538,0.0109253,0.0213623,0.0289917,0.0366516,0.040863,0.040863,0.0389709,0.0327454,0.025116,0.0173035,0.00811768,-0.000946045,-0.0116882,-0.0213623,-0.02948,-0.0368042,-0.0450745,-0.0536499,-0.0657959,-0.0790405,-0.094635,-0.110077,-0.126282,-0.141113,-0.154999,-0.165741,-0.172607,-0.173218,-0.169495,-0.159668,-0.14624,-0.128174,-0.111023,-0.0935669,-0.0778198,-0.0632935,-0.0508423,-0.0434875,-0.0427246,-0.0452271,-0.0508423,-0.0570679,-0.0636292,-0.0690613,-0.0768738,-0.0834045,-0.0913696,-0.101044,-0.112427,-0.128784,-0.147644,-0.164642,-0.175873,-0.177124,-0.167603,-0.137665,-0.0852966,-0.0127869,0.0673523,0.153412,0.239807,0.321503,0.386688,0.428162,0.440796,0.424255,0.378723,0.31076,0.225311,0.134705,0.0513,-0.0195007,-0.0643921,-0.0834045,-0.0762329,-0.044281,0.00857544,0.0745239,0.14032,0.191315,0.220795,0.22406,0.201904,0.154663,0.0881042,0.00717163,-0.076416,-0.152191,-0.208771,-0.241058,-0.246033,-0.223755,-0.178833,-0.114594,-0.0427246,0.0285339,0.0849915,0.119446,0.129272,0.115387,0.081543,0.0296326,-0.0325928,-0.09729,-0.156555,-0.202393,-0.233887,-0.246674,-0.246674,-0.235443,-0.216248,-0.190216,-0.159668,-0.13269,-0.11554,-0.106659,-0.103546,-0.101959,-0.0999451,-0.096344,-0.0895081,-0.0784302,-0.0620422,-0.0366516,-0.00390625,0.0317993,0.0662537,0.0961914,0.12146,0.142212,0.158264,0.170563,0.176666,0.179138,0.176971,0.173859,0.171509,0.170898,0.170563,0.1698,0.167938,0.165588,0.160431,0.153595,0.142517,0.12738,0.108978,0.0893555,0.0682983,0.0481873,0.0325928,0.0205688,0.0154419,0.0144958,0.0179443,0.025116,0.0341492,0.0431824,0.0519104,0.0567627,0.057373,0.054718,0.0455322,0.035553,0.0221558,0.00967407,-0.0045166,-0.0188599,-0.0332031,-0.0456848,-0.0564575,-0.0629883,-0.0698547,-0.0776367,-0.0865479,-0.0954285,-0.106323,-0.117706,-0.133453,-0.147186,-0.16153,-0.172913,-0.181793,-0.185852,-0.184143,-0.177277,-0.164032,-0.149048,-0.131592,-0.113831,-0.0955811,-0.0799866,-0.0697021,-0.0653381,-0.0667419,-0.0708008,-0.0759277,-0.0810852,-0.0873108,-0.0971375,-0.10791,-0.120209,-0.130829,-0.14267,-0.154816,-0.165588,-0.168701,-0.162933,-0.14267,-0.104462,-0.0452271,0.0293274,0.11087,0.191925,0.273804,0.347717,0.403839,0.435638,0.438141,0.414764,0.364685,0.294861,0.213287,0.128174,0.0527039,-0.0101318,-0.0502014,-0.0656433,-0.0576782,-0.0255737,0.0235291,0.0820007,0.138916,0.182129,0.205505,0.206909,0.185394,0.142059,0.0816956,0.0113831,-0.0611267,-0.122406,-0.165436,-0.186798,-0.186493,-0.162781,-0.120361,-0.0642395,-0.00482178,0.0492859,0.0873108,0.10321,0.0955811,0.0678406,0.0244751,-0.0325928,-0.0979309,-0.160126,-0.212067,-0.248383,-0.267883,-0.273499,-0.266785,-0.249176,-0.224518,-0.196625,-0.169006,-0.146881,-0.135956,-0.131439,-0.130493,-0.129272,-0.123657,-0.115387,-0.102295,-0.0827942,-0.0552063,-0.0180969,0.0246277,0.0667419,0.105103,0.136749,0.16217,0.18103,0.193512,0.199097,0.198181,0.191315,0.181488,0.17215,0.165436,0.160919,0.157318,0.154816,0.152802,0.150787,0.146729,0.14267,0.135803,0.127686,0.116943,0.104156,0.0907593,0.0779724,0.0673523,0.0608215,0.0550537,0.0511475,0.0480347,0.0458374,0.0448914,0.0445862,0.043335,0.0411682,0.0380554,0.0379028,0.0374146,0.0375671,0.0344543,0.0280762,0.0188599,0.00732422,-0.00872803,-0.0258789,-0.042572,-0.0617371,-0.0812378,-0.101654,-0.122101,-0.14267,-0.16153,-0.180084,-0.196136,-0.210175,-0.217834,-0.219238,-0.21579,-0.206757,-0.194427,-0.180725,-0.164032,-0.148895,-0.136108,-0.128326,-0.124268,-0.122559,-0.122101,-0.122253,-0.121918,-0.122559,-0.122101,-0.121307,-0.121918,-0.128174,-0.138611,-0.149689,-0.157959,-0.161835,-0.161682,-0.151245,-0.122559,-0.0682983,0.00811768,0.0968323,0.189453,0.280823,0.364868,0.433136,0.478058,0.492401,0.475708,0.425812,0.35083,0.261475,0.165894,0.0785828,0.00561523,-0.0448914,-0.0682983,-0.0661011,-0.0371094,0.0140381,0.0787354,0.145325,0.198944,0.230927,0.23996,0.224213,0.183197,0.122711,0.0444336,-0.0360107,-0.108368,-0.164032,-0.192566,-0.197388,-0.176666,-0.134247,-0.0759277,-0.00671387,0.0586243,0.109924,0.136108,0.13504,0.110382,0.0643921,-0.000305176,-0.0765686,-0.157013,-0.229675,-0.2883,-0.326508,-0.344421,-0.344727,-0.330719,-0.304504,-0.270355,-0.231079,-0.195679,-0.168091,-0.15155,-0.14267,-0.135498,-0.129089,-0.119751,-0.108521,-0.0932312,-0.071106,-0.0402222,-0.00170898,0.0430298,0.0852966,0.125061,0.158264,0.185547,0.207062,0.222198,0.229218,0.228882,0.22406,0.214691,0.205811,0.197235,0.19101,0.185547,0.179932,0.174469,0.168091,0.161072,0.152496,0.141418,0.128632,0.112885,0.0961914,0.0801392,0.0648499,0.0541077,0.0448914,0.0410156,0.0402222,0.041626,0.0478821,0.0548706,0.0640869,0.0729675,0.0801392,0.0860596,0.0867004,0.0805969,0.0687561,0.0500488,0.0260315,-0.00140381,-0.031189,-0.0578613,-0.082489,-0.102905,-0.119904,-0.135193,-0.147186,-0.160431,-0.17276,-0.185242,-0.197693,-0.211273,-0.22345,-0.234192,-0.240906,-0.24527,-0.246368,-0.242462,-0.235901,-0.225922,-0.215942,-0.204407,-0.191162,-0.175568,-0.157959,-0.140808,-0.125214,-0.11615,-0.110229,-0.110535,-0.11615,-0.128632,-0.145477,-0.160431,-0.165741,-0.164642,-0.144226,-0.0983887,-0.0226135,0.0712585,0.171204,0.272858,0.36969,0.451874,0.511902,0.539642,0.529205,0.482422,0.406647,0.312469,0.210815,0.11319,0.0293274,-0.0324402,-0.0632935,-0.0637817,-0.0363159,0.0152893,0.0820007,0.155151,0.215332,0.255859,0.270203,0.256805,0.218903,0.158112,0.0810852,-0.00234985,-0.0821838,-0.143127,-0.181488,-0.193024,-0.177917,-0.138916,-0.084198,-0.0212097,0.0405273,0.0910645,0.116486,0.114441,0.0871582,0.0391235,-0.0243225,-0.101044,-0.180084,-0.253693,-0.312927,-0.351288,-0.368896,-0.367188,-0.350342,-0.322601,-0.2883,-0.247589,-0.209259,-0.180542,-0.162628,-0.154999,-0.151398,-0.148285,-0.140656,-0.128326,-0.114136,-0.0926208,-0.0632935,-0.0218201,0.0258789,0.0756226,0.122559,0.163239,0.196136,0.22345,0.242615,0.254608,0.256012,0.248993,0.234985,0.219055,0.203796,0.190369,0.180084,0.172455,0.166687,0.163239,0.161987,0.162476,0.16217,0.161682,0.159363,0.153748,0.143433,0.129425,0.115234,0.101807,0.0881042,0.0745239,0.0620422,0.0544128,0.0508423,0.0519104,0.0569153,0.0639343,0.0715637,0.0742188,0.0717163,0.0628357,0.046936,0.0249329,-0.00296021,-0.0343018,-0.0665894,-0.0979309,-0.125061,-0.14859,-0.167786,-0.187408,-0.205963,-0.223907,-0.238403,-0.249634,-0.258667,-0.264587,-0.268646,-0.269135,-0.267242,-0.262726,-0.256165,-0.247589,-0.238403,-0.226562,-0.21579,-0.204407,-0.190521,-0.174469,-0.160583,-0.154358,-0.1539,-0.159973,-0.170563,-0.181946,-0.192566,-0.197693,-0.19397,-0.173065,-0.12442,-0.0462952,0.0552063,0.16745,0.280487,0.392303,0.492096,0.565369,0.603577,0.598267,0.55304,0.474609,0.370789,0.258209,0.14502,0.0473938,-0.0254211,-0.0664368,-0.0709534,-0.0434875,0.0124817,0.0865479,0.166382,0.237793,0.288757,0.311066,0.30249,0.263184,0.197693,0.111938,0.0168457,-0.0745239,-0.145477,-0.192413,-0.20816,-0.194427,-0.151855,-0.090271,-0.0174561,0.0555115,0.11615,0.15155,0.153748,0.126282,0.0732727,0.0015564,-0.0867004,-0.180542,-0.271149,-0.345825,-0.400726,-0.429108,-0.435333,-0.422394,-0.394623,-0.355042,-0.308716,-0.262726,-0.223907,-0.196472,-0.179626,-0.168396,-0.158112,-0.147491,-0.132843,-0.115845,-0.0927734,-0.0617371,-0.0224609,0.0240173,0.0726624,0.119598,0.161987,0.19693,0.227814,0.250397,0.266479,0.27301,0.270355,0.261932,0.250397,0.238708,0.228271,0.218445,0.208771,0.198792,0.189911,0.181946,0.172302,0.162933,0.152191,0.141266,0.126923,0.111023,0.0983887,0.0893555,0.083252,0.0801392,0.0796814,0.0862122,0.0958862,0.109924,0.124115,0.134857,0.139252,0.13504,0.124268,0.104004,0.0762329,0.0424194,0.00497437,-0.0333557,-0.0700073,-0.102905,-0.132385,-0.156219,-0.175262,-0.19458,-0.215179,-0.234802,-0.253845,-0.271912,-0.289062,-0.305908,-0.32074,-0.329773,-0.334442,-0.332733,-0.328369,-0.319641,-0.305298,-0.286102,-0.264435,-0.240417,-0.217346,-0.196777,-0.179932,-0.166687,-0.161987,-0.167145,-0.180878,-0.19754,-0.207672,-0.206299,-0.188202,-0.149689,-0.0805969,0.0157471,0.130981,0.252441,0.373444,0.485077,0.571136,0.62384,0.635376,0.603729,0.533569,0.433136,0.317139,0.198029,0.0893555,0.00561523,-0.04599,-0.0608215,-0.0366516,0.0149536,0.0879517,0.169952,0.24823,0.308105,0.337891,0.333832,0.298737,0.23465,0.152191,0.0558167,-0.0386658,-0.121002,-0.178528,-0.203796,-0.19458,-0.155304,-0.0924683,-0.0205688,0.0511475,0.113831,0.154816,0.165588,0.140961,0.0871582,0.0121765,-0.0790405,-0.175262,-0.266479,-0.34848,-0.410217,-0.450928,-0.465576,-0.457794,-0.430664,-0.392761,-0.350342,-0.306549,-0.26709,-0.235138,-0.213623,-0.197235,-0.18634,-0.174164,-0.15921,-0.138611,-0.113831,-0.0820007,-0.0428772,0.00360107,0.0527039,0.102295,0.148743,0.191162,0.226227,0.254456,0.274719,0.285797,0.288452,0.282074,0.271149,0.258972,0.247589,0.236206,0.226074,0.21579,0.206299,0.198029,0.189911,0.183838,0.176666,0.167145,0.157318,0.14563,0.133636,0.121918,0.113983,0.110382,0.111023,0.117401,0.126617,0.138916,0.148743,0.153748,0.152008,0.142975,0.123657,0.0955811,0.0589294,0.0173035,-0.0272827,-0.0701599,-0.109314,-0.144226,-0.173553,-0.199585,-0.219055,-0.235748,-0.249786,-0.26178,-0.275055,-0.287048,-0.300934,-0.31604,-0.328979,-0.342865,-0.350983,-0.356903,-0.358002,-0.353485,-0.34317,-0.325562,-0.304199,-0.279114,-0.255707,-0.235443,-0.219055,-0.211884,-0.214081,-0.225464,-0.234192,-0.233887,-0.22171,-0.189453,-0.126923,-0.0343018,0.0809326,0.206909,0.338196,0.460907,0.56662,0.644409,0.679047,0.668915,0.613251,0.52359,0.410706,0.287689,0.167938,0.0671997,-0.00360107,-0.0391235,-0.0346069,0.00515747,0.0734253,0.157318,0.238251,0.304993,0.346619,0.357208,0.334137,0.278931,0.2005,0.101654,-0.000152588,-0.09198,-0.160583,-0.199432,-0.203796,-0.17511,-0.119751,-0.0489502,0.0274353,0.0958862,0.145935,0.164337,0.150635,0.106171,0.0363159,-0.0514526,-0.148438,-0.246979,-0.334595,-0.406189,-0.453094,-0.476654,-0.478363,-0.460266,-0.42926,-0.388397,-0.345367,-0.306061,-0.274567,-0.252136,-0.232635,-0.217834,-0.2005,-0.180725,-0.157806,-0.12973,-0.094635,-0.0514526,-0.00421143,0.0491028,0.102142,0.151703,0.195984,0.232483,0.263336,0.287201,0.300446,0.303589,0.298737,0.289062,0.278168,0.268036,0.256012,0.243378,0.22998,0.215637,0.204407,0.194122,0.187561,0.181488,0.17572,0.167297,0.159515,0.152191,0.147491,0.149048,0.154358,0.160767,0.16745,0.174469,0.179474,0.18335,0.181488,0.168854,0.145477,0.114899,0.0760803,0.0324402,-0.0168457,-0.0659485,-0.112579,-0.154816,-0.194122,-0.225922,-0.249634,-0.266937,-0.281281,-0.292816,-0.307465,-0.32135,-0.336151,-0.349579,-0.360962,-0.371094,-0.378723,-0.384033,-0.383728,-0.377472,-0.367493,-0.351593,-0.333527,-0.315735,-0.296875,-0.281586,-0.270844,-0.26709,-0.270203,-0.272705,-0.267548,-0.249481,-0.208771,-0.142365,-0.0484924,0.0659485,0.188965,0.314484,0.434082,0.538849,0.616364,0.658447,0.658295,0.617462,0.543854,0.447662,0.339752,0.233887,0.143433,0.0778198,0.044281,0.0462952,0.0779724,0.135193,0.201752,0.269592,0.322296,0.353302,0.358154,0.33429,0.283478,0.208771,0.120361,0.0272827,-0.059082,-0.125214,-0.165283,-0.171661,-0.149994,-0.102142,-0.0420837,0.0202637,0.0756226,0.112732,0.122559,0.104004,0.0584717,-0.00762939,-0.0874634,-0.175568,-0.263824,-0.344116,-0.404449,-0.44577,-0.468231,-0.471191,-0.457947,-0.431915,-0.400574,-0.368134,-0.340363,-0.317596,-0.300781,-0.286743,-0.271454,-0.248383,-0.220795,-0.186005,-0.14798,-0.1026,-0.0513,0.00436401,0.0623779,0.11911,0.168396,0.209869,0.244324,0.272552,0.294678,0.308563,0.313568,0.312622,0.306854,0.299042,0.293457,0.286591,0.27771,0.264923,0.253052,0.241669,0.234039,0.227966,0.221863,0.214081,0.204895,0.194916,0.185242,0.179321,0.174774,0.173065,0.173706,0.172302,0.172607,0.172607,0.169342,0.159515,0.142822,0.118042,0.0857544,0.0458374,0.00109863,-0.046936,-0.0951233,-0.140808,-0.183533,-0.218903,-0.249634,-0.274109,-0.294678,-0.313721,-0.329468,-0.346771,-0.363281,-0.378876,-0.388397,-0.395264,-0.398834,-0.399628,-0.398224,-0.392609,-0.382477,-0.368591,-0.355042,-0.339752,-0.326508,-0.318237,-0.316833,-0.320251,-0.327576,-0.331024,-0.323212,-0.299988,-0.253998,-0.176514,-0.0657959,0.0670471,0.209717,0.348022,0.477112,0.585785,0.665771,0.70462,0.700409,0.650818,0.568481,0.462158,0.344421,0.234039,0.145782,0.0870056,0.0637817,0.073761,0.115845,0.183685,0.260864,0.335236,0.388855,0.415985,0.410065,0.376404,0.31604,0.231689,0.130035,0.0240173,-0.0697021,-0.139862,-0.176819,-0.179932,-0.151398,-0.0999451,-0.0366516,0.02948,0.0837402,0.116943,0.121002,0.0916748,0.0358582,-0.0411682,-0.130035,-0.226074,-0.321198,-0.40509,-0.468231,-0.507202,-0.521698,-0.514374,-0.49054,-0.456238,-0.416321,-0.376404,-0.343353,-0.319641,-0.30545,-0.296417,-0.285339,-0.268188,-0.244629,-0.215027,-0.177765,-0.132385,-0.078125,-0.0144958,0.0531616,0.11911,0.180542,0.233734,0.274902,0.309662,0.335236,0.350677,0.354706,0.35083,0.341156,0.330566,0.320251,0.308411,0.296722,0.286743,0.277222,0.271149,0.268646,0.268646,0.269135,0.267395,0.26413,0.254608,0.243713,0.231384,0.21814,0.206909,0.195221,0.182892,0.17041,0.157623,0.143921,0.124878,0.101501,0.0695496,0.0316467,-0.00872803,-0.0527039,-0.0966797,-0.141113,-0.182434,-0.220795,-0.254456,-0.28363,-0.308716,-0.333374,-0.35675,-0.378265,-0.397919,-0.414581,-0.427216,-0.433929,-0.436584,-0.435638,-0.429108,-0.419128,-0.406494,-0.394012,-0.382172,-0.3703,-0.360321,-0.355957,-0.358002,-0.364685,-0.369995,-0.365173,-0.343811,-0.299988,-0.223267,-0.112885,0.0165405,0.155304,0.295166,0.429108,0.546204,0.63678,0.688538,0.694794,0.657196,0.586578,0.492554,0.385742,0.281281,0.193512,0.131744,0.106171,0.115234,0.154999,0.218903,0.294678,0.367828,0.420685,0.450623,0.451385,0.421936,0.361908,0.276764,0.17337,0.0645447,-0.0366516,-0.114288,-0.159973,-0.171051,-0.148285,-0.100891,-0.0377197,0.0291443,0.0898132,0.130981,0.140015,0.117096,0.0665894,-0.0093689,-0.101959,-0.206909,-0.314331,-0.41037,-0.484589,-0.534485,-0.560547,-0.561615,-0.541656,-0.506744,-0.462616,-0.416931,-0.378265,-0.348785,-0.329468,-0.316223,-0.304352,-0.293457,-0.276764,-0.253998,-0.223907,-0.184753,-0.135956,-0.0759277,-0.00497437,0.0679932,0.139557,0.201904,0.258514,0.306854,0.344421,0.371857,0.385895,0.384827,0.375305,0.362823,0.352386,0.3396,0.324463,0.308411,0.296722,0.292206,0.29361,0.296265,0.29953,0.304047,0.305298,0.302338,0.289398,0.271912,0.254761,0.239014,0.21875,0.197693,0.176025,0.157013,0.13504,0.110229,0.0809326,0.0419312,-0.000457764,-0.0445862,-0.0873108,-0.126465,-0.160431,-0.191925,-0.220459,-0.241516,-0.260376,-0.279724,-0.301849,-0.324005,-0.347717,-0.374054,-0.400879,-0.424103,-0.446259,-0.458557,-0.465576,-0.465729,-0.458099,-0.445618,-0.429413,-0.412109,-0.395721,-0.388245,-0.388245,-0.391815,-0.398071,-0.399628,-0.389496,-0.362061,-0.307007,-0.219055,-0.0994873,0.0414734,0.187744,0.332428,0.471985,0.592499,0.677643,0.718811,0.712708,0.666107,0.589386,0.490845,0.382629,0.278473,0.197235,0.147644,0.135193,0.154999,0.204712,0.268799,0.337402,0.401031,0.445007,0.463257,0.446259,0.398834,0.323547,0.22702,0.118958,0.0127869,-0.0765686,-0.142822,-0.174774,-0.171204,-0.132843,-0.0762329,-0.0109253,0.0541077,0.108215,0.139252,0.139862,0.106018,0.0453796,-0.0377197,-0.137207,-0.243713,-0.347382,-0.436432,-0.504089,-0.544952,-0.560394,-0.555695,-0.532928,-0.498474,-0.459808,-0.423645,-0.39386,-0.370941,-0.352844,-0.339447,-0.328522,-0.315887,-0.294678,-0.265533,-0.227173,-0.174622,-0.112274,-0.0445862,0.0274353,0.101959,0.171204,0.235138,0.285645,0.325104,0.357361,0.380768,0.392609,0.391998,0.38623,0.380127,0.37561,0.371399,0.365936,0.358002,0.34848,0.343811,0.341003,0.338348,0.333679,0.325104,0.308716,0.290009,0.265076,0.238556,0.215179,0.194733,0.180542,0.165283,0.149231,0.130188,0.11319,0.0955811,0.0671997,0.0247803,-0.0235291,-0.0715637,-0.11615,-0.157013,-0.197876,-0.231689,-0.260223,-0.279419,-0.296875,-0.310608,-0.320251,-0.332123,-0.348633,-0.371704,-0.39386,-0.415985,-0.434082,-0.446259,-0.456543,-0.465576,-0.468079,-0.462158,-0.450623,-0.439392,-0.432068,-0.42691,-0.422546,-0.418488,-0.411621,-0.401978,-0.38324,-0.3396,-0.264587,-0.153412,-0.019165,0.125671,0.270996,0.416626,0.548523,0.651917,0.718964,0.748108,0.732971,0.673584,0.583923,0.479614,0.379211,0.28891,0.220642,0.180389,0.176025,0.207672,0.261932,0.323059,0.382629,0.425964,0.445923,0.441559,0.41272,0.355957,0.268799,0.159668,0.0420837,-0.0639343,-0.142822,-0.191467,-0.204407,-0.182281,-0.133453,-0.0676575,-0.000305176,0.0626831,0.106018,0.118347,0.102142,0.0584717,-0.00997925,-0.0991516,-0.200195,-0.307007,-0.404938,-0.483521,-0.537445,-0.566925,-0.571777,-0.554138,-0.525299,-0.488037,-0.450287,-0.419586,-0.394958,-0.371704,-0.35083,-0.337738,-0.32962,-0.318542,-0.295776,-0.257263,-0.210968,-0.156219,-0.0947876,-0.0190125,0.0631409,0.144531,0.221863,0.286285,0.335083,0.372345,0.405853,0.429718,0.441711,0.440002,0.427704,0.419128,0.412109,0.401489,0.389496,0.381378,0.379517,0.380463,0.379822,0.371552,0.362518,0.352997,0.334137,0.300293,0.261627,0.222809,0.189117,0.162323,0.139709,0.115845,0.0913696,0.0676575,0.0513,0.0333557,0.00842285,-0.0286865,-0.0698547,-0.106171,-0.144073,-0.180542,-0.216431,-0.248383,-0.275208,-0.299683,-0.323853,-0.348175,-0.361267,-0.376068,-0.396027,-0.415833,-0.432526,-0.445007,-0.455902,-0.45871,-0.459808,-0.462158,-0.462463,-0.458557,-0.454193,-0.455902,-0.458099,-0.462311,-0.467133,-0.462921,-0.449982,-0.425354,-0.380463,-0.301697,-0.186951,-0.0492859,0.106018,0.270691,0.431122,0.571136,0.682007,0.756531,0.787567,0.772736,0.71521,0.62915,0.525604,0.417542,0.315277,0.241211,0.200684,0.198944,0.226562,0.273163,0.332275,0.396362,0.451233,0.482574,0.485687,0.452026,0.385437,0.294678,0.189453,0.0776367,-0.0349121,-0.128632,-0.189117,-0.207062,-0.188202,-0.144226,-0.086853,-0.020752,0.0427246,0.0909119,0.115234,0.107269,0.0698547,-0.000946045,-0.0896606,-0.188507,-0.293762,-0.397278,-0.484131,-0.54776,-0.589233,-0.602936,-0.592346,-0.564575,-0.536682,-0.506897,-0.474152,-0.442505,-0.414917,-0.392456,-0.37326,-0.356445,-0.337555,-0.308105,-0.268341,-0.222961,-0.168396,-0.10321,-0.0282288,0.0548706,0.13504,0.208313,0.273315,0.329468,0.373596,0.408661,0.432678,0.446869,0.446075,0.444061,0.441254,0.4375,0.428009,0.417084,0.406189,0.403839,0.403046,0.398682,0.392151,0.385132,0.373108,0.352081,0.318695,0.278015,0.235443,0.195831,0.168243,0.146088,0.127869,0.107422,0.0843506,0.0637817,0.040863,0.0141907,-0.0149536,-0.0517578,-0.0971375,-0.144836,-0.187561,-0.217194,-0.243378,-0.271912,-0.298431,-0.320251,-0.337402,-0.353485,-0.371704,-0.389191,-0.411163,-0.432831,-0.450287,-0.464325,-0.4729,-0.484131,-0.485382,-0.483826,-0.483521,-0.481171,-0.4776,-0.472443,-0.468536,-0.46698,-0.45871,-0.442352,-0.416321,-0.381073,-0.320404,-0.222809,-0.096344,0.053009,0.210815,0.370636,0.516266,0.637238,0.729553,0.785065,0.795807,0.764313,0.698669,0.602478,0.495056,0.388397,0.301392,0.252289,0.225006,0.222504,0.241516,0.285492,0.344116,0.400238,0.441254,0.45047,0.429108,0.383575,0.316376,0.229828,0.122864,0.0163574,-0.0750122,-0.140015,-0.171356,-0.174774,-0.14859,-0.0955811,-0.0324402,0.0314941,0.0785828,0.103699,0.108063,0.079834,0.0255737,-0.054718,-0.152191,-0.257263,-0.362976,-0.453735,-0.526093,-0.576752,-0.603577,-0.607635,-0.591705,-0.56662,-0.535889,-0.499573,-0.466827,-0.437347,-0.414124,-0.395874,-0.379059,-0.35379,-0.322906,-0.285339,-0.24231,-0.192719,-0.12973,-0.0502014,0.0366516,0.117249,0.189911,0.259766,0.324005,0.379974,0.419434,0.444366,0.457001,0.46402,0.460754,0.449219,0.430328,0.412262,0.396362,0.382935,0.373749,0.369385,0.368744,0.369843,0.374054,0.372192,0.358002,0.334778,0.29953,0.261627,0.21875,0.182281,0.152649,0.129578,0.106812,0.0809326,0.057373,0.0341492,0.0110779,-0.0133972,-0.0439758,-0.076416,-0.108215,-0.138916,-0.170746,-0.203003,-0.231842,-0.256012,-0.279877,-0.309967,-0.342255,-0.367188,-0.393707,-0.418945,-0.441895,-0.466827,-0.484283,-0.490845,-0.485687,-0.481781,-0.482269,-0.483521,-0.479919,-0.473389,-0.463074,-0.454987,-0.451691,-0.448273,-0.443604,-0.425659,-0.398529,-0.352844,-0.274719,-0.157959,-0.0176086,0.139069,0.299683,0.455902,0.597015,0.709595,0.782715,0.813141,0.795654,0.741882,0.653168,0.542755,0.428619,0.331329,0.258057,0.209869,0.192871,0.207672,0.248535,0.306549,0.364075,0.410553,0.435791,0.435333,0.402283,0.34256,0.261169,0.158112,0.0500488,-0.0523987,-0.130341,-0.175873,-0.18634,-0.165436,-0.117096,-0.0475464,0.0247803,0.085907,0.131134,0.146881,0.12738,0.078125,0.00375366,-0.0896606,-0.200348,-0.316681,-0.423645,-0.511719,-0.578766,-0.61557,-0.622589,-0.609192,-0.586578,-0.555695,-0.519226,-0.479919,-0.444855,-0.419434,-0.39917,-0.376862,-0.355347,-0.329773,-0.29657,-0.25882,-0.208923,-0.147491,-0.0715637,0.0107727,0.0961914,0.179138,0.254761,0.320892,0.376404,0.423645,0.45639,0.476349,0.481171,0.476349,0.464966,0.446564,0.425659,0.402435,0.38028,0.360321,0.349274,0.345673,0.344116,0.338043,0.326172,0.306854,0.283295,0.256348,0.225769,0.19632,0.171509,0.151855,0.133301,0.118347,0.107422,0.0944824,0.0791931,0.0601807,0.0319519,-0.000457764,-0.0393066,-0.0813904,-0.120514,-0.158417,-0.19101,-0.219543,-0.241821,-0.267548,-0.293762,-0.320251,-0.346771,-0.372192,-0.401642,-0.430176,-0.448425,-0.467133,-0.481018,-0.489746,-0.498962,-0.505341,-0.505493,-0.495667,-0.479309,-0.464966,-0.449677,-0.433929,-0.418793,-0.407745,-0.393555,-0.372345,-0.341614,-0.297668,-0.225616,-0.112579,0.0271301,0.182739,0.338806,0.484772,0.617126,0.7258,0.793488,0.819061,0.801605,0.744537,0.649109,0.533875,0.413666,0.30484,0.225311,0.17511,0.159027,0.17337,0.209412,0.264435,0.322449,0.37265,0.405243,0.411316,0.385895,0.327576,0.245422,0.14328,0.038208,-0.0519104,-0.125977,-0.173553,-0.184753,-0.160767,-0.107727,-0.038208,0.0333557,0.0966797,0.135498,0.146881,0.123322,0.0692139,-0.00982666,-0.111481,-0.219849,-0.334595,-0.446564,-0.532928,-0.592804,-0.621338,-0.624298,-0.612152,-0.589539,-0.553375,-0.514862,-0.477264,-0.439697,-0.406006,-0.376556,-0.358612,-0.338348,-0.307617,-0.266144,-0.216736,-0.160767,-0.0980835,-0.0252686,0.0570679,0.140961,0.222351,0.28595,0.341614,0.391998,0.428467,0.449982,0.457458,0.462921,0.462311,0.451233,0.434387,0.40976,0.384033,0.365784,0.354401,0.342407,0.330872,0.319,0.307007,0.294525,0.273315,0.246826,0.213928,0.185547,0.165283,0.143616,0.133789,0.130981,0.12677,0.121765,0.109619,0.0957336,0.0774841,0.050354,0.0155945,-0.0265198,-0.0709534,-0.114899,-0.159515,-0.197693,-0.230621,-0.260712,-0.28595,-0.3078,-0.327423,-0.355499,-0.384186,-0.405701,-0.423798,-0.440155,-0.463257,-0.478363,-0.49115,-0.496155,-0.495361,-0.490051,-0.478516,-0.464813,-0.443604,-0.418793,-0.394623,-0.370941,-0.354095,-0.34552,-0.333679,-0.318085,-0.287506,-0.235291,-0.149689,-0.0324402,0.108826,0.263672,0.42099,0.563019,0.682922,0.774475,0.83075,0.841492,0.800201,0.716309,0.602478,0.472137,0.339447,0.225922,0.145477,0.106323,0.102142,0.127533,0.177429,0.244019,0.313568,0.375153,0.411957,0.414429,0.381836,0.321198,0.234497,0.127533,0.0137329,-0.092926,-0.165283,-0.202087,-0.200836,-0.168243,-0.111481,-0.0391235,0.0346069,0.0960388,0.128632,0.128937,0.100403,0.0428772,-0.0407104,-0.147491,-0.271149,-0.392151,-0.499573,-0.576904,-0.62915,-0.65332,-0.648315,-0.626648,-0.587982,-0.545105,-0.494415,-0.447479,-0.406189,-0.372192,-0.3396,-0.310272,-0.278015,-0.239807,-0.194916,-0.143921,-0.0862122,-0.0238647,0.0491028,0.121155,0.193329,0.261627,0.31778,0.368439,0.410553,0.440491,0.455902,0.454651,0.45047,0.438141,0.42395,0.401184,0.381073,0.36377,0.348938,0.33429,0.319489,0.310913,0.303894,0.291412,0.26944,0.240753,0.211884,0.187103,0.162323,0.143921,0.131287,0.128479,0.130341,0.132233,0.12973,0.117706,0.100098,0.0796814,0.0539551,0.0190125,-0.0300903,-0.0827942,-0.134552,-0.178986,-0.216248,-0.252594,-0.281891,-0.312012,-0.333984,-0.349884,-0.368439,-0.387451,-0.410553,-0.427704,-0.439087,-0.450134,-0.462158,-0.474304,-0.478363,-0.473846,-0.46402,-0.45343,-0.437683,-0.408813,-0.375458,-0.341461,-0.315582,-0.299377,-0.293457,-0.287048,-0.278625,-0.265991,-0.236053,-0.177765,-0.0838928,0.0374146,0.181946,0.338806,0.489136,0.625397,0.743591,0.829346,0.868958,0.854126,0.786163,0.678711,0.547424,0.408356,0.274261,0.161224,0.082489,0.0448914,0.0506592,0.0957336,0.163391,0.238708,0.314484,0.377167,0.409302,0.403198,0.358154,0.282532,0.180725,0.0676575,-0.0417786,-0.132385,-0.193512,-0.220947,-0.209869,-0.169495,-0.105103,-0.0280762,0.0431824,0.0930786,0.112885,0.100891,0.0576782,-0.0137329,-0.106964,-0.214386,-0.329926,-0.442963,-0.537445,-0.600128,-0.632111,-0.640381,-0.627106,-0.592804,-0.548523,-0.503326,-0.461365,-0.416626,-0.375305,-0.341003,-0.307312,-0.274414,-0.23465,-0.192719,-0.14624,-0.0927734,-0.0317993,0.039917,0.115387,0.188965,0.256165,0.314819,0.361267,0.399323,0.42395,0.435181,0.435333,0.429413,0.415375,0.394958,0.37265,0.350677,0.33429,0.323547,0.317139,0.306549,0.295776,0.289856,0.283783,0.275665,0.257111,0.232941,0.204407,0.180878,0.164032,0.152649,0.151093,0.149689,0.148285,0.148895,0.146881,0.135345,0.109131,0.076416,0.038208,-0.00778198,-0.0639343,-0.118347,-0.169495,-0.210815,-0.249481,-0.283783,-0.312927,-0.332581,-0.343964,-0.357208,-0.373596,-0.387787,-0.402283,-0.416473,-0.428314,-0.438293,-0.448578,-0.45343,-0.447479,-0.438446,-0.420044,-0.395874,-0.368591,-0.331024,-0.290649,-0.25354,-0.229218,-0.213135,-0.208008,-0.212677,-0.222046,-0.231689,-0.240112,-0.231689,-0.198639,-0.128479,-0.0233765,0.113525,0.271606,0.433472,0.579254,0.70694,0.805634,0.861938,0.870026,0.822174,0.726593,0.597656,0.444214,0.29422,0.167145,0.0779724,0.0291443,0.020752,0.0538025,0.114746,0.193512,0.274414,0.341003,0.384186,0.394165,0.362823,0.294678,0.195526,0.0782776,-0.0419312,-0.145782,-0.21875,-0.258972,-0.262421,-0.233246,-0.18103,-0.106506,-0.0252686,0.0397644,0.0743713,0.0736084,0.0439758,-0.0113831,-0.0896606,-0.18335,-0.287506,-0.396027,-0.4888,-0.555389,-0.589996,-0.597961,-0.58548,-0.556946,-0.514709,-0.471191,-0.431427,-0.392914,-0.355957,-0.32135,-0.286438,-0.251984,-0.214691,-0.175568,-0.127228,-0.0723572,-0.0121765,0.0497437,0.118347,0.189117,0.251495,0.309662,0.358612,0.395264,0.419739,0.432068,0.435028,0.422394,0.404785,0.384491,0.363617,0.34256,0.322144,0.305298,0.291412,0.281281,0.272095,0.264435,0.264282,0.263672,0.255859,0.235443,0.212067,0.193512,0.17868,0.161377,0.148438,0.143127,0.138153,0.13269,0.125214,0.110077,0.085907,0.0531616,0.0182495,-0.0202637,-0.0643921,-0.111328,-0.159515,-0.200684,-0.238708,-0.266937,-0.29126,-0.315887,-0.339752,-0.360962,-0.376556,-0.389191,-0.401642,-0.413177,-0.423157,-0.427856,-0.427216,-0.418945,-0.400391,-0.37796,-0.352081,-0.329926,-0.3078,-0.282227,-0.251495,-0.222656,-0.201599,-0.189117,-0.181488,-0.181641,-0.188812,-0.203003,-0.224518,-0.236206,-0.229828,-0.205048,-0.149841,-0.0645447,0.0491028,0.189301,0.345215,0.503784,0.64566,0.757935,0.831207,0.858032,0.841339,0.771179,0.659088,0.519989,0.374512,0.239349,0.122864,0.042572,0.00857544,0.0166931,0.0581665,0.120514,0.195068,0.272095,0.332886,0.361267,0.346313,0.293121,0.212982,0.112732,0.00360107,-0.112732,-0.212982,-0.28067,-0.301392,-0.282684,-0.239655,-0.17868,-0.108521,-0.0352478,0.0235291,0.0525513,0.0489502,0.0162048,-0.042572,-0.12381,-0.21347,-0.308258,-0.399475,-0.474945,-0.528717,-0.555389,-0.555847,-0.532471,-0.501129,-0.464325,-0.424561,-0.383087,-0.345215,-0.308411,-0.274414,-0.247437,-0.216583,-0.177277,-0.128021,-0.0728149,-0.0188599,0.0319519,0.090271,0.154358,0.222961,0.281738,0.327423,0.363129,0.391052,0.409454,0.416931,0.41037,0.395416,0.378876,0.360016,0.336151,0.318085,0.300446,0.286102,0.272552,0.265228,0.269135,0.268799,0.265839,0.258362,0.249176,0.233093,0.209869,0.184753,0.160431,0.141113,0.128174,0.121918,0.118805,0.108521,0.0947876,0.0840454,0.0704651,0.0438232,0.00622559,-0.0344543,-0.0757751,-0.121155,-0.167297,-0.211884,-0.255554,-0.295319,-0.328827,-0.355499,-0.379517,-0.400574,-0.414429,-0.415375,-0.412109,-0.403046,-0.390259,-0.376404,-0.358612,-0.342865,-0.330566,-0.317291,-0.29953,-0.277069,-0.25415,-0.234985,-0.217041,-0.199432,-0.172607,-0.145325,-0.131287,-0.129883,-0.133453,-0.134705,-0.136597,-0.152191,-0.168396,-0.17337,-0.169006,-0.144684,-0.0952759,-0.0190125,0.0887146,0.219391,0.375916,0.529358,0.654724,0.748413,0.811737,0.838379,0.814209,0.738922,0.629456,0.49411,0.350189,0.213623,0.100403,0.0244751,-0.00827026,-0.00390625,0.0336914,0.0985413,0.168854,0.233734,0.270996,0.280487,0.263031,0.216583,0.141418,0.0374146,-0.0809326,-0.191315,-0.274414,-0.322906,-0.339905,-0.320892,-0.272705,-0.203644,-0.133789,-0.0603333,0.00390625,0.0358582,0.0322876,-0.000457764,-0.053009,-0.122253,-0.205963,-0.289246,-0.367188,-0.434387,-0.480225,-0.496918,-0.491455,-0.470581,-0.440948,-0.407745,-0.370941,-0.333679,-0.296082,-0.263184,-0.233246,-0.199432,-0.164032,-0.12085,-0.0715637,-0.0223083,0.0282288,0.0884094,0.153107,0.21579,0.268646,0.312317,0.348785,0.376709,0.399017,0.407745,0.408661,0.397125,0.378876,0.363281,0.345215,0.320099,0.295166,0.276459,0.26413,0.25415,0.243561,0.229828,0.217987,0.215637,0.217651,0.210663,0.18866,0.164978,0.145325,0.131287,0.121918,0.117889,0.118958,0.118958,0.111633,0.0997925,0.083252,0.0592651,0.0296326,-0.00561523,-0.0497437,-0.107422,-0.16684,-0.215485,-0.255249,-0.292816,-0.32666,-0.350525,-0.360962,-0.367035,-0.373596,-0.376709,-0.375763,-0.368744,-0.35611,-0.341614,-0.333832,-0.324615,-0.309204,-0.287048,-0.265381,-0.244781,-0.221405,-0.192413,-0.161377,-0.128326,-0.094635,-0.0654907,-0.0424194,-0.0263367,-0.0223083,-0.0252686,-0.0368042,-0.0569153,-0.08078,-0.111176,-0.139709,-0.165436,-0.177124,-0.181946,-0.179321,-0.160431,-0.120697,-0.0456848,0.0614319,0.18634,0.333832,0.489746,0.62619,0.727692,0.793945,0.822021,0.811584,0.755737,0.654083,0.523285,0.374512,0.222809,0.0854492,-0.0157471,-0.0805969,-0.104156,-0.0856018,-0.043335,0.00967407,0.0692139,0.118347,0.146423,0.147034,0.110718,0.0436707,-0.0489502,-0.148895,-0.240906,-0.322449,-0.377808,-0.397766,-0.375305,-0.320251,-0.243073,-0.148285,-0.0552063,0.0274353,0.0877686,0.105255,0.0954285,0.0612793,0.00234985,-0.0676575,-0.146423,-0.224365,-0.29953,-0.358307,-0.392151,-0.405701,-0.399323,-0.375916,-0.345978,-0.31308,-0.279724,-0.25058,-0.230286,-0.211426,-0.18399,-0.151703,-0.113678,-0.0714111,-0.0229187,0.033844,0.0974426,0.163727,0.228577,0.290161,0.341949,0.379364,0.404785,0.418945,0.418182,0.409302,0.396973,0.378876,0.357513,0.335388,0.310272,0.286102,0.260864,0.234802,0.204407,0.174469,0.147491,0.117554,0.0909119,0.0689087,0.0492859,0.0330505,0.0157471,0.00842285,0.0126343,0.0224609,0.0358582,0.0531616,0.0698547,0.08078,0.0823364,0.0736084,0.0562744,0.0332031,0.0015564,-0.0358582,-0.078125,-0.122559,-0.160431,-0.192108,-0.22171,-0.244476,-0.26178,-0.273956,-0.28363,-0.295319,-0.304047,-0.307159,-0.312012,-0.31543,-0.314972,-0.308105,-0.297028,-0.286896,-0.267883,-0.239807,-0.210022,-0.178375,-0.141876,-0.101807,-0.0629883,-0.0269775,0.00201416,0.0257263,0.0411682,0.0506592,0.0522461,0.050354,0.0462952,0.0346069,0.0196533,0.00717163,-0.00967407,-0.0307312,-0.0513,-0.0709534,-0.0818481,-0.0932312,-0.101959,-0.101044,-0.0955811,-0.0845032,-0.0645447,-0.0243225,0.0458374,0.141876,0.251343,0.362976,0.465271,0.548218,0.6073,0.638641,0.636932,0.59671,0.51767,0.409607,0.280182,0.142212,0.0093689,-0.101349,-0.174164,-0.208466,-0.212067,-0.192566,-0.156067,-0.104004,-0.0586243,-0.0275879,-0.013092,-0.0177612,-0.0427246,-0.0874634,-0.141724,-0.193817,-0.240112,-0.26474,-0.262268,-0.236542,-0.190216,-0.127686,-0.050354,0.0274353,0.0916748,0.135956,0.149384,0.133453,0.0952759,0.0447388,-0.0138855,-0.0743713,-0.134705,-0.188507,-0.22937,-0.256958,-0.265686,-0.258057,-0.237457,-0.215332,-0.194916,-0.176025,-0.160919,-0.153259,-0.146576,-0.131134,-0.106323,-0.0742188,-0.0357056,0.0121765,0.0697021,0.128784,0.189301,0.247131,0.299988,0.347229,0.381683,0.396027,0.392761,0.377472,0.356293,0.325104,0.286591,0.240906,0.189606,0.141724,0.0997925,0.0684509,0.0424194,0.0224609,0.00952148,0.00375366,-0.00250244,-0.00982666,-0.0133972,-0.0124817,-0.00778198,-0.00811768,-0.00762939,-0.00686646,-0.00326538,0.0090332,0.0291443,0.0458374,0.0569153,0.0608215,0.0648499,0.0700073,0.0671997,0.0517578,0.0317993,0.00656128,-0.0213623,-0.0525513,-0.088562,-0.126129,-0.159515,-0.18866,-0.212372,-0.235291,-0.256653,-0.270538,-0.278931,-0.280029,-0.27536,-0.265533,-0.25354,-0.235748,-0.211884,-0.190857,-0.165588,-0.135803,-0.1026,-0.0659485,-0.0282288,0.00732422,0.0363159,0.0609741,0.081543,0.0935669,0.100739,0.102753,0.0949707,0.0826416,0.0684509,0.0487976,0.0296326,0.0135803,0.00219727,-0.00125122,-0.00234985,-0.0093689,-0.0205688,-0.0325928,-0.0424194,-0.0489502,-0.0502014,-0.0559692,-0.0726624,-0.0947876,-0.110718,-0.12677,-0.144684,-0.157471,-0.160126,-0.149231,-0.120056,-0.0689087,-0.000793457,0.0896606,0.200195,0.310913,0.405396,0.475708,0.520782,0.536682,0.51236,0.443909,0.343018,0.222198,0.082489,-0.0570679,-0.17572,-0.271301,-0.331329,-0.34491,-0.319336,-0.2724,-0.204895,-0.13208,-0.0609741,0.00671387,0.0569153,0.076416,0.0595703,0.0293274,-0.00778198,-0.0489502,-0.0838928,-0.0971375,-0.0895081,-0.0684509,-0.0269775,0.0319519,0.0980835,0.15921,0.20752,0.232635,0.235901,0.218597,0.173065,0.113831,0.0506592,-0.0201111,-0.0882568,-0.143127,-0.183197,-0.215027,-0.229675,-0.227814,-0.219849,-0.209076,-0.200043,-0.190857,-0.184143,-0.176178,-0.159363,-0.134552,-0.0993347,-0.0506592,0.00296021,0.0622253,0.128326,0.192566,0.249634,0.293762,0.323059,0.334778,0.321991,0.292969,0.249329,0.198334,0.14502,0.0961914,0.0494385,0.00686646,-0.0313416,-0.0534668,-0.0620422,-0.0604858,-0.0572205,-0.0522461,-0.046936,-0.0407104,-0.0339966,-0.0280762,-0.0226135,-0.0162048,-0.00515747,0.00576782,0.0229187,0.0472412,0.0742188,0.106323,0.138,0.160767,0.17215,0.176666,0.17511,0.164337,0.146088,0.120056,0.0849915,0.040863,-0.00637817,-0.0494385,-0.0913696,-0.130676,-0.161072,-0.184601,-0.203644,-0.217987,-0.222961,-0.22345,-0.217987,-0.214233,-0.209717,-0.200348,-0.189301,-0.174316,-0.153748,-0.129272,-0.0997925,-0.069397,-0.0366516,-0.00405884,0.0261841,0.0534668,0.0778198,0.0980835,0.108215,0.106659,0.0949707,0.0774841,0.0569153,0.0357056,0.00918579,-0.0198059,-0.0470886,-0.0695496,-0.0856018,-0.0985413,-0.106964,-0.108063,-0.108673,-0.104004,-0.0932312,-0.0791931,-0.0626831,-0.0502014,-0.0347595,-0.0180969,-0.000152588,0.0173035,0.0339966,0.0481873,0.0564575,0.0544128,0.0483398,0.041626,0.0366516,0.0257263,0.00842285,-0.0121765,-0.0347595,-0.0558167,-0.0742188,-0.0896606,-0.111633,-0.139404,-0.160919,-0.164978,-0.146576,-0.112427,-0.063446,0.00250244,0.0739136,0.138916,0.190704,0.227966,0.257904,0.267883,0.25354,0.216431,0.15921,0.081543,-0.000457764,-0.0654907,-0.109772,-0.133942,-0.134705,-0.121307,-0.0940247,-0.0508423,-0.00561523,0.035553,0.0712585,0.0955811,0.0957336,0.0732727,0.040863,0.010437,-0.0177612,-0.0389709,-0.0481873,-0.0430298,-0.0305481,-0.00280762,0.0371094,0.0816956,0.118652,0.141266,0.150146,0.149384,0.135345,0.110229,0.08078,0.0536499,0.0232239,-0.0090332,-0.0314941,-0.0455322,-0.0522461,-0.0561218,-0.0545654,-0.0481873,-0.0462952,-0.0484924,-0.0541077,-0.0592651,-0.0628357,-0.0620422,-0.0545654,-0.0419312,-0.0219727,-0.00375366,0.0138855,0.0314941,0.0497437,0.0684509,0.0840454,0.096344,0.101654,0.0974426,0.0837402,0.0697021,0.0604858,0.0517578,0.0444336,0.0343018,0.0219727,0.010437,0.00421143,-0.00280762,-0.00982666,-0.0101318,-0.00671387,-0.00436401,-0.0045166,-0.00592041,-0.00405884,0.00515747,0.0146484,0.0230713,0.0283813,0.0305481,0.0352478,0.0417786,0.0467834,0.0473938,0.0438232,0.0383606,0.0352478,0.0336914,0.0291443,0.0249329,0.0224609,0.0155945,0.00405884,-0.00888062,-0.0219727,-0.035553,-0.0473938,-0.0595703,-0.0717163,-0.0843506,-0.0951233,-0.0966797,-0.0909119,-0.0852966,-0.0760803,-0.0654907,-0.0511475,-0.036499,-0.0271301,-0.0188599,-0.0093689,-0.000610352,0.00360107,0.0045166,0.00482178,0.00405884,0.00125122,-0.00265503,-0.00732422,-0.00888062,-0.0105896,-0.0090332,-0.00546265,-0.00219727,0.00250244,0.00466919,0.00250244,-0.00360107,-0.0105896,-0.0177612,-0.0271301,-0.0371094,-0.0480347,-0.0595703,-0.0706177,-0.0760803,-0.07547,-0.0695496,-0.0576782,-0.0413208,-0.0299377,-0.0195007,-0.0105896,-0.00546265,-0.00778198,-0.0141907,-0.0215149,-0.0328979,-0.0455322,-0.0609741,-0.07547,-0.0843506,-0.0909119,-0.101959,-0.11087,-0.11615,-0.124115,-0.126617,-0.124115,-0.126465,-0.136597,-0.152191,-0.168243,-0.17807,-0.185699,-0.190063,-0.194275,-0.195221,-0.179474,-0.150787,-0.105408,-0.0481873,0.0173035,0.0879517,0.155304,0.215332,0.262726,0.292206,0.297974,0.287354,0.262115,0.223114,0.168854,0.120056,0.0778198,0.0427246,0.0177612,0.00576782,0.00811768,0.0190125,0.0386658,0.0629883,0.088562,0.106018,0.114441,0.114746,0.118195,0.120056,0.118042,0.115082,0.122253,0.132233,0.141113,0.154999,0.16745,0.174316,0.175262,0.172607,0.157623,0.131134,0.0958862,0.0595703,0.0218201,-0.0149536,-0.0505066,-0.08078,-0.105103,-0.12146,-0.129089,-0.13736,-0.146576,-0.149689,-0.152344,-0.157166,-0.159515,-0.157623,-0.156555,-0.151245,-0.136444,-0.118652,-0.0985413,-0.0731201,-0.0455322,-0.0155945,0.00811768,0.025116,0.0361633,0.0445862,0.0517578,0.0480347,0.0394592,0.0289917,0.0174561,0.00201416,-0.0102844,-0.0188599,-0.0261841,-0.0346069,-0.037262,-0.0366516,-0.0346069,-0.0280762,-0.0188599,-0.00872803,-0.000152588,0.00997925,0.0249329,0.0452271,0.065033,0.0804443,0.0977478,0.114288,0.129089,0.143921,0.158722,0.171356,0.179779,0.182129,0.176178,0.16449,0.150299,0.131439,0.110718,0.0865479,0.0622253,0.0363159,0.0152893,-0.00201416,-0.0177612,-0.02948,-0.0394592,-0.0453796,-0.0483398,-0.0467834,-0.0480347,-0.0494385,-0.0506592,-0.0525513,-0.0539551,-0.053009,-0.0492859,-0.0473938,-0.0427246,-0.0366516,-0.0327454,-0.0300903,-0.0274353,-0.0263367,-0.0271301,-0.0322876,-0.0397644,-0.0487976,-0.0625305,-0.0743713,-0.0848083,-0.091217,-0.0999451,-0.104614,-0.106171,-0.107574,-0.107117,-0.100739,-0.0949707,-0.0873108,-0.0820007,-0.0746765,-0.0639343,-0.054718,-0.0448914,-0.0336914,-0.0244751,-0.0138855,-0.00497437,0.00466919,0.0116882,0.0157471,0.0166931,0.0188599,0.0199585,0.0198059,0.0184021,0.0113831,0.00296021,-0.00561523,-0.0121765,-0.0204163,-0.026825,-0.0328979,-0.0377197,-0.0427246,-0.0467834,-0.0480347,-0.0481873,-0.0444336,-0.0422668,-0.0391235,-0.0402222,-0.0413208,-0.0434875,-0.0455322,-0.0483398,-0.047699,-0.04599,-0.0467834,-0.0498962,-0.0536499,-0.0542603,-0.050354,-0.0478821,-0.0500488,-0.0522461,-0.0612793,-0.0708008,-0.0834045,-0.0969849,-0.110382,-0.124573,-0.140472,-0.153595,-0.16217,-0.162476,-0.148285,-0.123016,-0.0895081,-0.0472412,-0.00234985,0.041626,0.0765686,0.108978,0.138611,0.157471,0.169952,0.166046,0.152649,0.135345,0.116302,0.104156,0.102753,0.105103,0.10791,0.111786,0.115845,0.122253,0.127533,0.12738,0.124115,0.110229,0.0952759,0.0812378,0.0662537,0.053009,0.0506592,0.057373,0.0670471,0.0809326,0.094635,0.105255,0.112885,0.118805,0.11911,0.111023,0.100403,0.0830994,0.0609741,0.0444336,0.0313416,0.0235291,0.0238647,0.0254211,0.0205688,0.0155945,0.00967407,0,-0.0109253,-0.0233765,-0.0383606,-0.0567627,-0.0728149,-0.0846558,-0.0969849,-0.103058,-0.1026,-0.0927734,-0.0776367,-0.0603333,-0.0439758,-0.0289917,-0.0126343,0.0015564,0.0119934,0.0213623,0.0283813,0.0316467,0.0313416,0.0285339,0.0275879,0.0299377,0.0297852,0.0271301,0.0227661,0.0177612,0.0160522,0.0151367,0.0165405,0.019165,0.0216675,0.0233765,0.0305481,0.035553,0.0400696,0.0472412,0.0539551,0.0586243,0.0597229,0.0609741,0.0642395,0.0679932,0.0732727,0.0770264,0.0762329,0.0726624,0.0709534,0.0690613,0.0657959,0.0580139,0.0478821,0.0377197,0.0272827,0.0166931,0.00637817,-0.00747681,-0.0180969,-0.0282288,-0.039917,-0.052063,-0.0608215,-0.0671997,-0.0667419,-0.0679932,-0.0686035,-0.069397,-0.0681458,-0.0632935,-0.0575256,-0.0525513,-0.0492859,-0.047699,-0.0466309,-0.0483398,-0.053009,-0.0578613,-0.0581665,-0.0597229,-0.0622253,-0.0622253,-0.0592651,-0.0550537,-0.0522461,-0.0498962,-0.0483398,-0.0462952,-0.0447388,-0.0427246,-0.0441284,-0.0452271,-0.0467834,-0.0458374,-0.0434875,-0.040863,-0.0375671,-0.0310364,-0.0229187,-0.0157471,-0.0093689,-0.00375366,0.00265503,0.00717163,0.00952148,0.0115356,0.00842285,0.00390625,-0.000305176,-0.00405884,-0.0093689,-0.0158997,-0.0233765,-0.0282288,-0.0325928,-0.0322876,-0.0327454,-0.0317993,-0.0271301,-0.0221558,-0.0190125,-0.0149536,-0.0118408,-0.0109253,-0.0105896,-0.0124817,-0.0180969,-0.0232239,-0.0291443,-0.0319519,-0.0322876,-0.0305481,-0.0282288,-0.0283813,-0.0258789,-0.0229187,-0.0215149,-0.0202637,-0.0235291,-0.0324402,-0.0424194,-0.0539551,-0.0670471,-0.079834,-0.0921631,-0.10321,-0.111633,-0.117706,-0.116791,-0.113678,-0.111328,-0.107117,-0.100739,-0.0918274,-0.0813904,-0.0687561,-0.0601807,-0.0531616,-0.0489502,-0.0430298,-0.0377197,-0.0296326,-0.0176086,-0.00561523,0.00515747,0.0171509,0.02948,0.0400696,0.0572205,0.0732727,0.0843506,0.0909119,0.0910645,0.0890198,0.0891724,0.085907,0.0793762,0.073761,0.0720215,0.0712585,0.0734253,0.0809326,0.0887146,0.098999,0.110718,0.120209,0.12442,0.131134,0.134552,0.131592,0.131897,0.130981,0.125061,0.118805,0.113831,0.111176,0.106659,0.103851,0.101959,0.0983887,0.094635,0.0909119,0.0810852,0.0709534,0.0625305,0.0506592,0.0377197,0.0235291,0.013092,0.00311279,-0.00234985,-0.00561523,-0.00997925,-0.0152893,-0.019165,-0.0212097,-0.0246277,-0.0261841,-0.02948,-0.0347595,-0.0379028,-0.0385132,-0.0380554,-0.0383606,-0.0363159,-0.0308838,-0.0272827,-0.0230713,-0.0188599,-0.0133972,-0.010437,-0.00811768,-0.00747681,-0.00717163,-0.00717163,-0.010437,-0.0127869,-0.0165405,-0.0169983,-0.0137329,-0.00952148,-0.00421143,0.00125122,0.00701904,0.0132446,0.0198059,0.0230713,0.0275879,0.0317993,0.0314941,0.0310364,0.0282288,0.0257263,0.0227661,0.0215149,0.0237122,0.0230713,0.0210571,0.0218201,0.0219727,0.0221558,0.0221558,0.0193481,0.013092,0.00390625,-0.00561523,-0.0157471,-0.0232239,-0.0274353,-0.0316467,-0.0360107,-0.0377197,-0.0357056,-0.0330505,-0.0266724,-0.0235291,-0.0202637,-0.0195007,-0.0212097,-0.0235291,-0.0277405,-0.0339966,-0.043335,-0.0519104,-0.0562744,-0.0555115,-0.0534668,-0.0494385,-0.0447388,-0.0410156,-0.0360107,-0.0299377,-0.0282288,-0.0282288,-0.0277405,-0.0286865,-0.0324402,-0.0383606,-0.0447388,-0.0525513,-0.059082,-0.0600281,-0.057373,-0.0533142,-0.0464783,-0.0383606,-0.0299377,-0.0218201,-0.0133972,-0.00762939,-0.00405884,-0.00201416,-0.00421143,-0.00747681,-0.0146484,-0.0218201,-0.0285339,-0.0369568,-0.042572,-0.0494385,-0.0564575,-0.0592651,-0.0586243,-0.0545654,-0.0514526,-0.0489502,-0.046936,-0.0448914,-0.0400696,-0.037262,-0.0366516,-0.031189,-0.0243225,-0.0190125,-0.0124817,-0.0115356,-0.0132446,-0.0149536,-0.0154419,-0.013092,-0.0140381,-0.0168457,-0.0179443,-0.0199585,-0.0168457,-0.0141907,-0.0121765,-0.0102844,-0.00982666,-0.0105896,-0.0102844,-0.00982666,-0.00967407,-0.0090332,-0.0143433,-0.0223083,-0.0333557,-0.0438232,-0.0478821,-0.0492859,-0.048645,-0.0475464,-0.044281,-0.0349121,-0.0252686,-0.0143433,-0.0045166,0.000793457,0.00656128,0.0127869,0.0198059,0.0252686,0.0280762,0.0274353,0.0285339,0.0285339,0.0274353,0.0257263,0.0254211,0.0261841,0.0238647,0.0230713,0.0241699,0.0243225,0.0227661,0.0227661,0.0272827,0.0300903,0.0319519,0.0352478,0.0403748,0.044281,0.0478821,0.0502014,0.0519104,0.0494385,0.0464783,0.0453796,0.043335,0.0407104,0.0427246,0.0462952,0.0514526,0.0544128,0.0569153,0.0601807,0.0615845,0.0628357,0.0642395,0.0632935,0.0611267,0.0576782,0.0536499,0.0509949,0.0453796,0.041626,0.0405273,0.0366516,0.0310364,0.025116,0.0223083,0.0196533,0.0185547,0.0190125,0.0188599,0.0188599,0.0209045,0.0258789,0.02948,0.0330505,0.036499,0.041626,0.044281,0.042572,0.0383606,0.0330505,0.0252686,0.0174561,0.00982666,0.00360107,0.000152588,-0.00219727,-0.000610352,0.00360107,0.00888062,0.0129395,0.0158997,0.019165,0.0215149,0.0255737,0.0300903,0.0327454,0.031189,0.0289917,0.0263367,0.0232239,0.0201111,0.0174561,0.0140381,0.0093689,0.00717163,0.00622559,0.00796509,0.0112305,0.0123291,0.0143433,0.0160522,0.0166931,0.0155945,0.0149536,0.0144958,0.0126343,0.00747681,0.00234985,-0.00375366,-0.00762939,-0.0105896,-0.0121765,-0.0127869,-0.0118408,-0.0121765,-0.010437,-0.00888062,-0.00747681,-0.00701904,-0.00796509,-0.0118408,-0.0149536,-0.0146484,-0.0149536,-0.0151367,-0.0151367,-0.0140381,-0.0126343,-0.0115356,-0.010437,-0.0109253,-0.0141907,-0.0182495,-0.0209045,-0.0223083,-0.0254211,-0.0283813,-0.0291443,-0.0271301,-0.026825,-0.0258789,-0.0255737,-0.0246277,-0.0246277,-0.0230713,-0.0218201,-0.0209045,-0.0227661,-0.0258789,-0.0285339,-0.0317993,-0.0346069,-0.036499,-0.0374146,-0.0394592,-0.0413208,-0.043335,-0.0452271,-0.0453796,-0.0450745,-0.0444336,-0.0431824,-0.0419312,-0.0410156,-0.0403748,-0.0371094,-0.0347595,-0.0314941,-0.0271301,-0.025116,-0.0258789,-0.0283813,-0.0317993,-0.0330505,-0.0347595,-0.0336914,-0.0327454,-0.0325928,-0.0346069,-0.0360107,-0.0369568,-0.0349121,-0.033844,-0.0316467,-0.0289917,-0.0283813,-0.0279236,-0.02948,-0.0313416,-0.0325928,-0.033844,-0.0344543,-0.0325928,-0.0303955,-0.025116,-0.0187073,-0.0133972,-0.00497437,0.00109863,0.00717163,0.0110779,0.0121765,0.0115356,0.0105896,0.00918579,0.00701904,0.00405884,0.000305176,-0.00360107,-0.00732422,-0.006073,-0.00219727,0.00170898,0.00531006,0.00857544,0.0137329,0.0215149,0.0293274,0.0377197,0.044281,0.0473938,0.0497437,0.0500488,0.0506592,0.0519104,0.048645,0.0438232,0.036499,0.0299377,0.0238647,0.0177612,0.0123291,0.00778198,0.00622559,0.00515747,0.00497437,0.00778198,0.00827026,0.0119934,0.0158997,0.0210571,0.0229187,0.0227661,0.0157471,0.0090332,0.00497437,0.000457764,-0.00375366,-0.00982666,-0.0149536,-0.0188599,-0.0212097,-0.0227661,-0.0204163,-0.0157471,-0.0107727,-0.00546265,-0.0015564,0.00466919,0.00888062,0.0126343,0.0127869,0.0110779,0.00827026,0.00466919,-0.000305176,-0.00717163,-0.0132446,-0.0163574,-0.0169983,-0.0141907,-0.0127869,-0.010437,-0.00701904,-0.000793457,0.00576782,0.0105896,0.0137329,0.0154419,0.0176086,0.0158997,0.0146484,0.0133972,0.013092,0.0155945,0.0171509,0.0196533,0.0213623,0.0227661,0.0266724,0.0305481,0.0336914,0.0350952,0.0336914,0.0322876,0.0280762,0.0221558,0.0177612,0.0143433,0.0113831,0.00747681,0.00234985,-0.00311279,-0.006073,-0.00918579,-0.0121765,-0.0149536,-0.0193481,-0.0233765,-0.0274353,-0.0317993,-0.0352478,-0.0383606,-0.0403748,-0.0403748,-0.0394592,-0.0371094,-0.031189,-0.0241699,-0.0160522,-0.0112305,-0.00656128,-0.00280762,0.000793457,0.00109863,-0.000793457,-0.00360107,-0.00857544,-0.0140381,-0.0190125,-0.0238647,-0.02948,-0.0333557,-0.0339966,-0.0313416,-0.0282288,-0.025116,-0.0209045,-0.0149536,-0.0102844,-0.00717163,-0.00421143,-0.00296021,-0.00390625,-0.00576782,-0.00732422,-0.00717163,-0.00872803,-0.010437,-0.0119934,-0.0109253,-0.00982666,-0.006073,-0.00125122,0.0015564,0.00375366,0.00656128,0.010437,0.013092,0.0144958,0.0126343,0.0090332,0.00482178,0.00265503,-0.00125122,-0.00576782,-0.0141907,-0.0230713,-0.0305481,-0.0360107,-0.041626,-0.0428772,-0.041626,-0.0388184,-0.0371094,-0.0347595,-0.0297852,-0.0247803,-0.0198059,-0.0179443,-0.0179443,-0.0166931,-0.0176086,-0.0188599,-0.0226135,-0.0286865,-0.0322876,-0.0352478,-0.0350952,-0.035553,-0.0358582,-0.0385132,-0.0393066,-0.0379028,-0.0344543,-0.031189,-0.0299377,-0.0265198,-0.0221558,-0.0169983,-0.0118408,-0.00686646,-0.00201416,0.0015564,0.00311279,0.00515747,0.00717163,0.00857544,0.0110779,0.010437,0.00967407,0.00952148,0.0115356,0.0163574,0.0210571,0.0238647,0.0241699,0.0254211,0.0275879,0.0321045,0.033844,0.0327454,0.0280762,0.0235291,0.0201111,0.0160522,0.0129395,0.00967407,0.0102844,0.0113831,0.0154419,0.0199585,0.0244751,0.0310364,0.0374146,0.0450745,0.0516052,0.0587769,0.0656433,0.0686035,0.069397,0.0664368,0.0622253,0.0572205,0.0536499,0.0517578,0.0483398,0.0448914,0.039917,0.0383606,0.0377197,0.0394592,0.0413208,0.0441284,0.0462952,0.052063,0.0556641,0.0580139,0.0575256,0.0541077,0.0511475,0.0491028,0.0455322,0.0400696,0.0325928,0.0244751,0.0177612,0.0146484,0.0151367,0.0163574,0.0176086,0.0174561,0.0182495,0.0185547,0.0215149,0.0241699,0.0257263,0.0254211,0.0241699,0.0210571,0.019165,0.0160522,0.0138855,0.0151367,0.0174561,0.0199585,0.0243225,0.0261841,0.0274353,0.0282288,0.0266724,0.0227661,0.0198059,0.0152893,0.00997925,0.00326538,-0.00421143,-0.0102844,-0.013092,-0.0141907,-0.0152893,-0.0157471,-0.0154419,-0.0149536,-0.0113831,-0.00857544,-0.00717163,-0.00592041,-0.00421143,-0.00280762,-0.00311279,-0.00170898,-0.00125122,0.000152588,0.00280762,0.0045166,0.00546265,0.00637817,0.00796509,0.00872803,0.0090332,0.00622559,0.00250244,-0.000946045,-0.00326538,-0.00671387,-0.0093689,-0.0137329,-0.0201111,-0.0246277,-0.0280762,-0.0308838,-0.0335083,-0.0352478,-0.0349121,-0.0325928,-0.02948,-0.0257263,-0.0243225,-0.0226135,-0.0215149,-0.020752,-0.0221558,-0.0240173,-0.0246277,-0.0255737,-0.025116,-0.0261841,-0.0261841,-0.0243225,-0.0209045,-0.0184021,-0.0158997,-0.0162048,-0.0155945,-0.0155945,-0.0141907,-0.014801,-0.0158997,-0.0184021,-0.0216675,-0.0226135,-0.0221558,-0.0205688,-0.0199585,-0.0201111,-0.0188599,-0.0162048,-0.014801,-0.0162048,-0.0173035,-0.0187073,-0.0174561,-0.0173035,-0.0174561,-0.0177612,-0.0168457,-0.0176086,-0.0190125,-0.0190125,-0.0177612,-0.0160522,-0.0155945,-0.0171509,-0.0179443,-0.0195007,-0.0196533,-0.0227661,-0.025116,-0.0266724,-0.0258789,-0.0246277,-0.0249329,-0.0258789,-0.0258789,-0.0226135,-0.0188599,-0.0160522,-0.0144958,-0.0135803,-0.0124817,-0.0112305,-0.0138855,-0.0165405,-0.0179443,-0.0187073,-0.0213623,-0.0265198,-0.031189,-0.0336914,-0.0328979,-0.0316467,-0.0317993,-0.0307312,-0.0289917,-0.0249329,-0.0213623,-0.0204163,-0.0218201,-0.0254211,-0.0254211,-0.0235291,-0.0196533,-0.0199585,-0.0219727,-0.0244751,-0.0218201,-0.0184021,-0.0174561,-0.0185547,-0.0205688,-0.0185547,-0.0137329,-0.00827026,-0.00436401,-0.00405884,-0.00170898,-0.000305176,0.0015564,0.00140381,0.00125122,0.000152588,-0.00311279,-0.00576782,-0.00827026,-0.0112305,-0.0126343,-0.0116882,-0.00857544,-0.00515747,-0.00360107,-0.00341797,-0.00405884,-0.00296021,0.00140381,0.00531006,0.00497437,0.000152588,-0.00280762,0,0.0045166,0.00531006,0.00109863,-0.000946045,0.00341797,0.00888062,0.0105896,0.006073,0.00326538,0.00531006,0.0110779,0.0135803,0.00952148,0.00405884,0.00140381,0.00360107,0.00466919,0.00234985,-0.00219727,-0.00531006,-0.00732422,-0.00778198,-0.00762939,-0.00686646,-0.00811768,-0.00747681,-0.00717163,-0.00671387,-0.00421143,-0.000152588,0.00421143,0.00546265,0.00360107,0.00421143,0.00576782,0.006073,0.00390625,0.00265503,0.000793457,0.00265503,0.00497437,0.00888062,0.00918579,0.0093689,0.00982666,0.00857544,0.0107727,0.0116882,0.00918579,0.00888062,0.00872803,0.0116882,0.014801,0.0184021,0.0198059,0.0210571,0.0221558,0.0249329,0.0265198,0.0263367,0.0271301,0.0241699,0.0199585,0.0157471,0.0119934,0.010437,0.00796509,0.006073,0.00827026,0.0102844,0.0154419,0.0187073,0.0232239,0.0272827,0.0277405,0.0269775,0.0246277,0.0223083,0.0204163,0.0179443,0.0165405,0.0137329,0.0109253,0.00842285,0.00762939,0.00515747,0.00219727,0.0015564,0.00250244,0.00482178,0.00390625,0.00170898,0.00170898,0.00436401,0.00796509,0.00827026,0.00390625,0.000610352,-0.00326538,-0.00421143,-0.00405884,-0.00482178,-0.00796509,-0.0115356,-0.0126343,-0.0123291,-0.0126343,-0.0152893,-0.0133972,-0.00967407,-0.00421143,-0.000610352,0.00140381,0.00170898,0.00201416,0.00405884,0.00747681,0.00827026,0.00857544,0.00982666,0.0127869,0.0127869,0.00918579,0.00656128,0.00671387,0.00872803,0.00762939,0.00622559,0.00515747,0.00482178,0.00296021,0.00326538,0.00311279,0.000946045,-0.00280762,-0.00466919,-0.00436401,-0.00546265,-0.00747681,-0.00888062,-0.00515747,-0.00170898,0.000457764,0.00375366,0.00762939,0.0102844,0.00997925,0.00982666,0.0115356,0.0119934,0.0126343,0.0135803,0.0133972,0.0132446,0.00952148,0.00762939,0.00686646,0.00686646,0.00637817,0.00622559,0.00436401,0.00219727,0.00109863,0.00186157,0.00140381,-0.000305176,-0.00436401,-0.00637817,-0.00466919,-0.00296021,-0.00234985,-0.00326538,-0.00375366,-0.00234985,-0.000152588,0.00280762,0.00482178,0.00656128,0.00546265,0.00747681,0.00857544,0.00701904,0.00531006,0.00265503,0.0045166,0.00686646,0.00811768,0.010437,0.0127869,0.0146484,0.0163574,0.0198059,0.0223083,0.0229187,0.0224609,0.0232239,0.0223083,0.0202637,0.0166931,0.0129395,0.0121765,0.0110779,0.00967407,0.00872803,0.00515747,0.00234985,0.000946045,0,-0.000457764,-0.00265503,-0.00405884,-0.00497437,-0.00686646,-0.00952148,-0.0107727,-0.00997925,-0.00827026,-0.00701904,-0.00561523,-0.00466919,-0.00250244,-0.000305176,0.00375366,0.00671387,0.0090332,0.0102844,0.0113831,0.0123291,0.0127869,0.0123291,0.0093689,0.00497437,0.00234985,0.00140381,-0.000152588,-0.00234985,-0.00592041,-0.00827026,-0.00701904,-0.00375366,-0.00341797,-0.00405884,-0.00622559,-0.00622559,-0.00656128,-0.00436401,-0.00482178,-0.00592041,-0.00778198,-0.00811768,-0.00701904,-0.00341797,0.000152588,0.00125122,0.00186157,0.006073,0.010437,0.0137329,0.014801,0.0121765,0.00872803,0.006073,0.00280762,-0.000610352,-0.00436401,-0.00842285,-0.0113831,-0.0173035,-0.0199585,-0.0204163,-0.0209045,-0.0212097,-0.0176086,-0.0129395,-0.00796509,-0.0045166,-0.00280762,-0.00125122,0.00421143,0.0093689,0.00997925,0.00686646,0.00436401,0.00341797,0.00375366,0.00515747,0.00360107,-0.000793457,-0.00201416,0.00201416,0.00296021,0.000152588,-0.00671387,-0.00997925,-0.00982666,-0.00967407,-0.0124817,-0.0179443,-0.025116,-0.0303955,-0.0325928,-0.0327454,-0.02948,-0.0300903,-0.0313416,-0.0299377,-0.0254211,-0.0193481,-0.0143433,-0.0101318,-0.00717163,-0.00622559,-0.00250244,0.000152588,0.00515747,0.00811768,0.0112305,0.0093689,0.00561523,0.00375366,0.000152588,-0.0015564,-0.00546265,-0.00857544,-0.0138855,-0.0182495,-0.0190125,-0.0187073,-0.0199585,-0.0195007,-0.0198059,-0.0179443,-0.0137329,-0.0102844,-0.0110779,-0.013092,-0.0146484,-0.0124817,-0.0112305,-0.00982666,-0.00982666,-0.00918579,-0.00811768,-0.00515747,-0.000305176,0.00341797,0.00546265,0.00717163,0.00982666,0.0124817,0.0137329,0.00827026,0.00311279,0.000152588,-0.00234985,-0.00515747,-0.00997925,-0.0126343,-0.0160522,-0.0198059,-0.0213623,-0.0196533,-0.0171509,-0.0155945,-0.0151367,-0.0151367,-0.0121765,-0.0090332,-0.00842285,-0.00561523,-0.00546265,-0.00576782,-0.00515747,-0.00341797,-0.00140381,-0.00296021,-0.00390625,-0.00326538,-0.00311279,-0.00421143,-0.00622559,-0.006073,-0.006073,-0.00592041,-0.00796509,-0.0110779,-0.0124817,-0.014801,-0.0146484,-0.0151367,-0.0149536,-0.0154419,-0.0141907,-0.0118408,-0.00857544,-0.00637817,-0.00360107,0,0.000152588,0.000946045,0.00311279,0.006073,0.00842285,0.00732422,0.00701904,0.00732422,0.00656128,0.00561523,0.00250244,0.000610352,0.000793457,-0.00125122,-0.00265503,-0.00390625,-0.00311279,-0.00311279,-0.00140381,-0.000793457,-0.000152588,0.000305176,0.000946045,0.00375366,0.00561523,0.00482178,0.00375366,0.00375366,0.00341797,0.00497437,0.00515747,0.00497437,0.00497437,0.00561523,0.0116882,0.0160522,0.0180969,0.0184021,0.0195007,0.0210571,0.0219727,0.020752,0.0185547,0.0157471,0.013092,0.00952148,0.00796509,0.00497437,0.000793457,-0.00170898,-0.00265503,-0.000793457,-0.00250244,-0.00201416,-0.00186157,-0.0015564,-0.00186157,-0.000793457,0.00170898,0.00219727,0.000152588,0.000793457,-0.000152588,0.00109863,0.00140381,0.00390625,0.006073,0.00686646,0.00778198,0.00888062,0.0123291,0.0129395,0.0135803,0.0123291,0.0112305,0.0113831,0.00827026,0.006073,0.00311279,0.00234985,0.0015564,-0.00140381,-0.00341797,-0.00436401,-0.00497437,-0.00360107,-0.00219727,-0.00436401,-0.00747681,-0.00778198,-0.00622559,-0.00311279,-0.00109863,-0.000305176,-0.000305176,0.0015564,0.00341797,0.00375366,0.00421143,0.00375366,0.00341797,0.00390625,0.0045166,0.00201416,-0.00360107,-0.00515747,-0.00375366,-0.00170898,-0.00250244,-0.00436401,-0.00497437,-0.00421143,-0.00296021,-0.00219727,-0.00311279,-0.00296021,-0.00341797,-0.00280762,-0.00280762,-0.00296021,-0.00405884,-0.00637817,-0.00436401,-0.00360107,-0.00296021,-0.0045166,-0.00686646,-0.00762939,-0.00701904,-0.00762939,-0.00827026,-0.0105896,-0.0127869,-0.0126343,-0.0110779,-0.00857544,-0.00686646,-0.00717163,-0.0045166,-0.00326538,-0.000305176,0.00296021,0.00421143,0.00341797,0.000793457,0.000610352,0.000152588,-0.000152588,-0.00250244,-0.00341797,-0.00561523,-0.00561523,-0.00375366,-0.0015564,-0.00125122,-0.00421143,-0.00436401,-0.00219727,-0.000610352,-0.000152588,-0.00140381,-0.00250244,-0.00436401,-0.00421143,-0.00360107,-0.00280762,-0.00296021,-0.00234985,-0.00219727,-0.00140381,0.00125122,0.00466919,0.00592041,0.00762939,0.00918579,0.00997925,0.0102844,0.0112305,0.0113831,0.00842285,0.00747681,0.00360107,0.00140381,0.000457764,0.000152588,-0.00265503,-0.00671387,-0.00982666,-0.00888062,-0.00686646,-0.00497437,-0.00576782,-0.00576782,-0.00390625,-0.0015564,-0.000946045,-0.000152588,0.00140381,0.00186157,0.00250244,0,-0.00201416,-0.00326538,-0.00201416,-0.00186157,-0.00311279,-0.00637817,-0.00827026,-0.00952148,-0.00842285,-0.00918579,-0.0109253,-0.0118408,-0.0105896,-0.00796509,-0.00436401,-0.00436401,-0.0045166,-0.006073,-0.00622559,-0.00421143,-0.00219727,0,0.000457764,-0.000457764,-0.00140381,-0.00125122,0.00125122,0.00265503,0.00341797,-0.000152588,-0.00219727,-0.00186157,-0.000610352,-0.00186157,-0.00576782,-0.00796509,-0.00827026,-0.00717163,-0.00592041,-0.00686646,-0.00827026,-0.00811768,-0.00546265,-0.00405884,-0.00311279,-0.00170898,0.00186157,0.00686646,0.0107727,0.00888062,0.00796509,0.00872803,0.0113831,0.010437,0.0090332,0.00762939,0.00888062,0.00747681,0.00561523,0.00311279,0.00326538,0.00311279,0.00360107,0.00497437,0.00497437,0.00234985,0.000457764,0.000610352,0.00341797,0.00296021,0.000946045,-0.000610352,-0.000946045,0.000457764,0.00201416,0.00140381,-0.000152588,0.000305176,0.00170898,0.00360107,0.00360107,0.00296021,0.00360107,0.00466919,0.00546265,0.00701904,0.00671387,0.00732422,0.00857544,0.0093689,0.00982666,0.00997925,0.00796509,0.00656128,0.00576782,0.00686646,0.00732422,0.00515747,0.00186157,0.000152588,-0.00109863,-0.00421143,-0.00701904,-0.00997925,-0.0105896,-0.0102844,-0.0118408,-0.010437,-0.00997925,-0.00637817,-0.00326538,-0.000457764,0.000946045,0.00219727,0.00466919,0.00857544,0.010437,0.0109253,0.00967407,0.00918579,0.00952148,0.0102844,0.0110779,0.0107727,0.00952148,0.00857544,0.00827026,0.00967407,0.00888062,0.00762939,0.00747681,0.00827026,0.00918579,0.00857544,0.00717163,0.00531006,0.00466919,0.00546265,0.0045166,0.00375366,0.00436401,0.00546265,0.006073,0.00531006,0.006073,0.00637817,0.00827026,0.00811768,0.00888062,0.00762939,0.00811768,0.00811768,0.00888062,0.0090332,0.00811768,0.00637817,0.00436401,0.00466919,0.00311279,0.00125122,-0.00186157,-0.00341797,-0.00140381,0,0.00170898,0.000457764,-0.000946045,-0.00140381,-0.000610352,-0.00170898,-0.00390625,-0.00622559,-0.00762939,-0.00732422,-0.00778198,-0.00701904,-0.00747681,-0.00592041,-0.00546265,-0.00576782,-0.00747681,-0.00796509,-0.00888062,-0.00888062,-0.00967407,-0.0110779,-0.0118408,-0.0119934,-0.013092,-0.0132446,-0.0129395,-0.00967407,-0.00747681,-0.00732422,-0.0090332,-0.00842285,-0.00827026,-0.00732422,-0.0090332,-0.00952148,-0.00967407,-0.00952148,-0.00967407,-0.00872803,-0.00671387,-0.00576782,-0.00515747,-0.00436401,-0.00140381,-0.000152588,0.000305176,0.000946045,0.000793457,0.0015564,0.000152588,-0.000946045,-0.00250244,-0.00482178,-0.00656128,-0.00842285,-0.0113831,-0.0132446,-0.0149536,-0.0140381,-0.0146484,-0.0140381,-0.0129395,-0.0101318,-0.00637817,-0.00497437,-0.00280762,-0.00125122,0,0.00140381,0.00311279,0.00311279,0.00186157,-0.00265503,-0.00421143,-0.00656128,-0.00778198,-0.00967407,-0.0121765,-0.0146484,-0.0141907,-0.0115356,-0.0109253,-0.00888062,-0.00778198,-0.006073,-0.00375366,-0.00234985,-0.00341797,-0.00546265,-0.00576782,-0.00531006,-0.00576782,-0.00686646,-0.00967407,-0.00952148,-0.00952148,-0.00796509,-0.00778198,-0.00656128,-0.00421143,-0.00125122,0.00201416,0.00360107,0.00531006,0.00576782,0.00637817,0.00546265,0.00497437,0.00296021,0.00109863,-0.0015564,-0.00296021,-0.00390625,-0.00466919,-0.00531006,-0.00671387,-0.00701904,-0.00701904,-0.00622559,-0.0045166,-0.00482178,-0.0045166,-0.00296021,-0.00170898,-0.00280762,-0.00296021,-0.00360107,-0.00250244,-0.00265503,-0.00125122,-0.0015564,-0.00186157,-0.00280762,-0.00341797,-0.00421143,-0.00311279,-0.00421143,-0.00497437,-0.00515747,-0.00671387,-0.00686646,-0.00686646,-0.00561523,-0.00515747,-0.0045166,-0.00546265,-0.00482178,-0.00234985,-0.00125122,0.000305176,0.000152588,-0.00125122,-0.00186157,-0.00296021,-0.00311279,-0.00531006,-0.00671387,-0.0090332,-0.0105896,-0.0115356,-0.0112305,-0.0109253,-0.010437,-0.00842285,-0.00546265,-0.00201416,0.00125122,0.00311279,0.00360107,0.00375366,0.00375366,0.0045166,0.00421143,0.00234985,0.000793457,0,-0.000946045,-0.000946045,-0.000457764,-0.00170898,-0.00125122,-0.0015564,0.00125122,0.00280762,0.00219727,0.00219727,0.00201416,0.00234985,0.00326538,0.00311279,0.00296021,0.00186157,0.000152588,-0.000457764,-0.000946045,-0.00109863,-0.000457764,-0.00125122,-0.000152588,0.000152588,0.00109863,0.00140381,0.00186157,0.00234985,0.00326538,0.00265503,0.00170898,0.000457764,-0.00140381,-0.00326538,-0.00546265,-0.00857544,-0.00967407,-0.0118408,-0.0124817,-0.0146484,-0.0157471,-0.0160522,-0.0137329,-0.0127869,-0.0123291,-0.0123291,-0.0101318,-0.00872803,-0.00686646,-0.006073,-0.00656128,-0.00842285,-0.0107727,-0.00967407,-0.00982666,-0.0107727,-0.0123291,-0.0129395,-0.013092,-0.0113831,-0.00982666,-0.00888062,-0.00778198,-0.00778198,-0.006073,-0.00375366,-0.0015564,-0.00170898,-0.00265503,-0.00405884,-0.00497437,-0.00622559,-0.00747681,-0.00872803,-0.010437,-0.0113831,-0.0137329,-0.0138855,-0.014801,-0.0138855,-0.0129395,-0.0123291,-0.010437,-0.00997925,-0.00762939,-0.00436401,-0.00265503,-0.000946045,0.0015564,0.00360107,0.00515747,0.00436401,0.00390625,0.00296021,0.00375366,0.00515747,0.00466919,0.00390625,0.00436401,0.00546265,0.0093689,0.013092,0.0165405,0.0195007,0.0229187,0.0243225,0.0280762,0.0296326,0.0310364,0.0324402,0.0317993,0.0316467,0.0308838,0.0302429,0.0303955,0.0314941,0.031189,0.0302429,0.0297852,0.0307312,0.0317993,0.0325928,0.0344543,0.0347595,0.0360107,0.035553,0.0343018,0.0344543,0.033844,0.0347595,0.035553,0.0358582,0.0352478,0.0347595,0.0352478,0.0366516,0.037262,0.0386658,0.037262,0.0371094,0.0358582,0.035553,0.0343018,0.0330505,0.0319519,0.02948,0.0266724,0.0249329,0.0235291,0.0212097,0.0199585,0.0179443,0.0162048,0.0158997,0.0146484,0.0133972,0.0118408,0.00888062,0.00888062,0.00671387,0.00405884,0.00250244,0.0015564,0.00186157,0.00280762,0.00234985,0.00280762,0.00250244,0.00296021,0.00360107,0.00515747,0.00497437,0.00546265,0.00375366,0.00296021,0.00201416,0.000457764,0.000305176,-0.00186157,-0.00326538,-0.00497437,-0.00637817,-0.00717163,-0.00747681,-0.00747681,-0.00811768,-0.00952148,-0.00997925,-0.00967407,-0.0102844,-0.0107727,-0.0118408,-0.0132446,-0.0137329,-0.0127869,-0.0126343,-0.0113831,-0.0107727,-0.0102844,-0.00997925,-0.00952148,-0.00982666,-0.00811768,-0.00796509,-0.00796509,-0.00857544,-0.00842285,-0.00872803,-0.00827026,-0.00796509,-0.00796509,-0.00827026,-0.00686646,-0.00717163,-0.00592041,-0.00671387,-0.00762939,-0.00888062,-0.00918579,-0.0102844,-0.0126343,-0.0151367,-0.0174561,-0.0193481,-0.0196533,-0.0205688,-0.0204163,-0.0204163,-0.0198059,-0.0185547,-0.0177612,-0.0165405,-0.0157471,-0.0157471,-0.0158997,-0.0163574,-0.0160522,-0.0155945,-0.0155945,-0.0149536,-0.0155945,-0.014801,-0.0133972,-0.0123291,-0.0107727,-0.0102844,-0.00872803,-0.00857544,-0.00827026,-0.0090332,-0.0109253,-0.0118408,-0.0132446,-0.0149536,-0.0173035,-0.0190125,-0.020752,-0.0216675,-0.0221558,-0.0221558,-0.0218201,-0.0212097,-0.0199585,-0.0188599,-0.0190125,-0.0190125,-0.0188599,-0.0177612,-0.0179443,-0.0188599,-0.0185547,-0.0193481,-0.0180969,-0.0182495,-0.0173035,-0.0171509,-0.0160522,-0.014801,-0.0135803,-0.0116882,-0.0107727,-0.00842285,-0.00811768,-0.00778198,-0.00827026,-0.0093689,-0.0090332,-0.00842285,-0.00918579,-0.00888062,-0.00967407,-0.0107727,-0.0115356,-0.0101318,-0.0101318,-0.00811768,-0.00778198,-0.00872803,-0.00997925,-0.0093689,-0.00872803,-0.00796509,-0.00827026,-0.0093689,-0.00997925,-0.0093689,-0.00857544,-0.00747681,-0.00732422,-0.00686646,-0.00592041,-0.00546265,-0.00497437,-0.00390625,-0.00375366,-0.00296021,-0.00201416,-0.00265503,-0.00311279,-0.00219727,0,0.000793457,0.00170898,0.00125122,0.000946045,0.00234985,0.00375366,0.00482178,0.00219727,0.00125122,-0.000457764,-0.00109863,-0.00170898,-0.00311279,-0.00656128,-0.00842285,-0.00982666,-0.0093689,-0.00888062,-0.00967407,-0.00872803,-0.00857544,-0.00622559,-0.00421143,-0.00436401,-0.00341797,-0.00360107,-0.00375366,-0.00280762,-0.00482178,-0.00546265,-0.00637817,-0.00466919,-0.00326538,-0.00341797,-0.00326538,-0.00360107,-0.00234985,-0.000610352,0.000793457,0.00186157,0.000610352,-0.000793457,-0.00186157,-0.00326538,-0.00390625,-0.00497437,-0.00717163,-0.00842285,-0.0102844,-0.0118408,-0.0118408,-0.0109253,-0.00982666,-0.00982666,-0.0101318,-0.0105896,-0.00982666,-0.00872803,-0.00686646,-0.00686646,-0.00701904,-0.00686646,-0.00637817,-0.00515747,-0.00234985,-0.00125122,-0.000457764,0.000305176,0.00265503,0.00436401,0.0045166,0.0045166,0.00390625,0.00360107,0.00482178,0.00466919,0.00265503,-0.000946045,-0.00375366,-0.00515747,-0.00405884,-0.00482178,-0.00686646,-0.00918579,-0.0102844,-0.00827026,-0.00656128,-0.00561523,-0.00546265,-0.006073,-0.00341797,-0.00201416,0.00186157,0.00405884,0.006073,0.00762939,0.00842285,0.0101318,0.0129395,0.0135803,0.0129395,0.0109253,0.00717163,0.00531006,0.00296021,0.00186157,-0.00140381,-0.00546265,-0.00952148,-0.010437,-0.0110779,-0.0112305,-0.0119934,-0.0138855,-0.0135803,-0.0126343,-0.0109253,-0.00952148,-0.010437,-0.0115356,-0.0135803,-0.0127869,-0.0119934,-0.0113831,-0.0101318,-0.0101318,-0.00686646,-0.00421143,-0.000610352,0.00201416,0.00515747,0.00842285,0.0116882,0.014801,0.0149536,0.0160522,0.0155945,0.0158997,0.0168457,0.0171509,0.0154419,0.0144958,0.0135803,0.0140381,0.0146484,0.0152893,0.0158997,0.0166931,0.0168457,0.0179443,0.0205688,0.0221558,0.0243225,0.0247803,0.026825,0.0285339,0.0308838,0.0336914,0.0354004,0.0374146,0.0383606,0.0391235,0.0413208,0.042572,0.044281,0.0438232,0.0431824,0.0436707,0.0447388,0.0462952,0.0464783,0.0441284,0.0434875,0.0428772,0.0448914,0.0447388,0.042572,0.0400696,0.0375671,0.0363159,0.0354004,0.0346069,0.0316467,0.0288391,0.0269775,0.0261841,0.0252686,0.025116,0.0230713,0.0227661,0.0210571,0.0201111,0.0202637,0.0188599,0.0182495,0.0163574,0.014801,0.0129395,0.0102844,0.00842285,0.00747681,0.006073,0.00497437,0.00234985,0.000946045,0.000305176,0.000793457,0.000305176,-0.00125122,-0.00341797,-0.00421143,-0.00436401,-0.00360107,-0.00531006,-0.00592041,-0.00827026,-0.00872803,-0.00967407,-0.0105896,-0.0110779,-0.0124817,-0.0129395,-0.0129395,-0.0144958,-0.014801,-0.0149536,-0.0149536,-0.0149536,-0.0160522,-0.0174561,-0.0188599,-0.0184021,-0.0180969,-0.0182495,-0.0188599,-0.0201111,-0.0205688,-0.019165,-0.0171509,-0.0163574,-0.0166931,-0.0169983,-0.0155945,-0.0137329,-0.0126343,-0.013092,-0.0126343,-0.0132446,-0.0133972,-0.0135803,-0.0144958,-0.014801,-0.0157471,-0.0151367,-0.0158997,-0.0152893,-0.0154419,-0.014801,-0.0152893,-0.0133972,-0.0140381,-0.0135803,-0.0135803,-0.013092,-0.0118408,-0.0126343,-0.0121765,-0.0124817,-0.0123291,-0.0107727,-0.00967407,-0.00982666,-0.0101318,-0.0101318,-0.00918579,-0.00762939,-0.00857544,-0.00827026,-0.00967407,-0.00952148,-0.0107727,-0.0109253,-0.0115356,-0.0115356,-0.0119934,-0.0107727,-0.0107727,-0.00982666,-0.00952148,-0.00857544,-0.0090332,-0.00888062,-0.00918579,-0.00997925,-0.0105896,-0.0105896,-0.0110779,-0.0124817,-0.0135803,-0.013092,-0.0127869,-0.0118408,-0.0116882,-0.0119934,-0.0118408,-0.0118408,-0.0116882,-0.0119934,-0.0124817,-0.013092,-0.0146484,-0.0146484,-0.0151367,-0.0152893,-0.0163574,-0.0154419,-0.0154419,-0.0141907,-0.0124817,-0.0115356,-0.00982666,-0.00918579,-0.00842285,-0.00701904,-0.00637817,-0.00701904,-0.00592041,-0.00622559,-0.00497437,-0.00576782,-0.00778198,-0.00827026,-0.00967407,-0.00811768,-0.00997925,-0.0110779,-0.0124817,-0.0126343,-0.0129395,-0.0132446,-0.0135803,-0.0133972,-0.0140381,-0.0133972,-0.0129395,-0.0107727,-0.00982666,-0.00888062,-0.00842285,-0.00732422,-0.00592041,-0.00375366,-0.00140381,0.00170898,0.00140381,0.00280762,0.00265503,0.00341797,0.00421143,0.00497437,0.00497437,0.00482178,0.00234985,0.000305176,-0.00201416,-0.00546265,-0.0090332,-0.0107727,-0.0119934,-0.0118408,-0.0112305,-0.00918579,-0.00811768,-0.00531006,-0.00497437,-0.00341797,-0.00125122,0.00219727,0.00546265,0.00561523,0.00482178,0.00421143,0.00341797,0.00311279,0.000610352,-0.00140381,-0.00280762,-0.000610352,0.00109863,0.00201416,0.000457764,-0.00109863,-0.00311279,-0.00390625,-0.00250244,-0.00201416,-0.00265503,-0.00390625,-0.00482178,-0.00375366,-0.00250244,-0.00140381,-0.000610352,-0.000793457,-0.000457764,-0.00109863,-0.00109863,-0.00234985,-0.00466919,-0.00497437,-0.00656128,-0.00671387,-0.00811768,-0.0090332,-0.010437,-0.0101318,-0.00967407,-0.00967407,-0.00778198,-0.00686646,-0.00497437,-0.00466919,-0.00405884,-0.00436401,-0.00497437,-0.00341797,-0.00375366,-0.00234985,-0.00201416,-0.00125122,-0.000305176,0.000793457,0.000457764,0.000457764,-0.00140381,-0.00250244,-0.00170898,-0.00170898,-0.00170898,-0.00265503,-0.00296021,-0.00125122,-0.000305176,-0.000457764,-0.00201416,-0.00296021,-0.000793457,0.00109863,0.00250244,0.00234985,0.00265503,0.00482178,0.00497437,0.00671387,0.00671387,0.00796509,0.00857544,0.00811768,0.00842285,0.00827026,0.00671387,0.00482178,0.00219727,0.000457764,-0.000457764,-0.000946045,-0.00219727,-0.00375366,-0.00436401,-0.00201416,0.000946045,0.00234985,0.00265503,0.00311279,0.00515747,0.00732422,0.00811768,0.00997925,0.0102844,0.0112305,0.0124817,0.0141907,0.0157471,0.0143433,0.0146484,0.0118408,0.0119934,0.0102844,0.0107727,0.00952148,0.0090332,0.00637817,0.00497437,0.00341797,0.00280762,0.00170898,0.00170898,0.00250244,0.00405884,0.0045166,0.00637817,0.00778198,0.010437,0.0115356,0.0135803,0.0149536,0.0163574,0.0180969,0.0188599,0.019165,0.0201111,0.0213623,0.0216675,0.0213623,0.0216675,0.0212097,0.0209045,0.0201111,0.0193481,0.0193481,0.0188599,0.0180969,0.0177612,0.0176086,0.0188599,0.0185547,0.0179443,0.0171509,0.0169983,0.0179443,0.0187073,0.0179443,0.0158997,0.0149536,0.0143433,0.0143433,0.0127869,0.0113831,0.00967407,0.00967407,0.00872803,0.00796509,0.00732422,0.00656128,0.00622559,0.00637817,0.00656128,0.00827026,0.00778198,0.00888062,0.00796509,0.00888062,0.00796509,0.0090332,0.00952148,0.00888062,0.00857544,0.00796509,0.00732422,0.00671387,0.00622559,0.00656128,0.006073,0.00515747,0.00497437,0.00421143,0.0045166,0.00280762,0.00234985,0.0015564,0.00109863,0.000457764,-0.000152588,-0.000305176,-0.000610352,-0.00109863,-0.000457764,0,0,0.000305176,0.000457764,0.000457764,0.00109863,0.000946045,0.000457764,0.000457764,-0.000152588,-0.0015564,-0.00234985,-0.00360107,-0.00546265,-0.00656128,-0.00762939,-0.00952148,-0.00982666,-0.0110779,-0.0110779,-0.0110779,-0.010437,-0.0102844,-0.0102844,-0.00918579,-0.00888062,-0.00872803,-0.00857544,-0.00827026,-0.00811768,-0.00796509,-0.00796509,-0.00857544,-0.0090332,-0.00952148,-0.00857544,-0.00982666,-0.0093689,-0.00997925,-0.010437,-0.0107727,-0.0102844,-0.0110779,-0.0109253,-0.0118408,-0.0118408,-0.0118408,-0.0127869,-0.0115356,-0.0119934,-0.0126343,-0.0119934,-0.0113831,-0.0115356,-0.0102844,-0.00997925,-0.00872803,-0.00778198,-0.00686646,-0.00656128,-0.00466919,-0.00482178,-0.0045166,-0.00360107,-0.00466919,-0.00421143,-0.0045166,-0.00482178,-0.00531006,-0.00622559,-0.00656128,-0.00762939,-0.00671387,-0.00762939,-0.00701904,-0.00778198,-0.00811768,-0.00778198,-0.00811768,-0.00811768,-0.00762939,-0.00778198,-0.00686646,-0.00701904,-0.00637817,-0.00497437,-0.00375366,-0.00311279,-0.00341797,-0.0045166,-0.00375366,-0.00265503,-0.00186157,-0.00234985,-0.00326538,-0.00375366,-0.00421143,-0.00436401,-0.00576782,-0.006073,-0.00592041,-0.00497437,-0.00515747,-0.00436401,-0.00466919,-0.0045166,-0.00375366,-0.00265503,-0.00280762,-0.00234985,-0.00390625,-0.00390625,-0.00405884,-0.00546265,-0.00531006,-0.00576782,-0.00482178,-0.00482178,-0.00466919,-0.00390625,-0.00326538,-0.00311279,-0.00186157,-0.000457764,-0.000793457,-0.000152588,-0.000457764,-0.000946045,-0.00140381,-0.00201416,-0.00326538,-0.00360107,-0.00405884,-0.00482178,-0.00515747,-0.00546265,-0.00531006,-0.00531006,-0.00436401,-0.00482178,-0.00360107,-0.00436401,-0.00311279,-0.00280762,-0.00265503,-0.00201416,-0.00341797,-0.00250244,-0.00375366,-0.00436401,-0.00482178,-0.00515747,-0.00592041,-0.00656128,-0.00622559,-0.00671387,-0.00671387,-0.00762939,-0.00701904,-0.00671387,-0.00701904,-0.00717163,-0.00857544,-0.00762939,-0.00732422,-0.00701904,-0.00576782,-0.00637817,-0.00546265,-0.00576782,-0.00482178,-0.00421143,-0.00326538,-0.00296021,-0.00405884,-0.00421143,-0.0045166,-0.00375366,-0.0045166,-0.00515747,-0.00671387,-0.00622559,-0.00762939,-0.00686646,-0.00747681,-0.00778198,-0.00747681,-0.00778198,-0.00717163,-0.00515747,-0.0045166,-0.00482178,-0.00436401,-0.00436401,-0.00250244,-0.00326538,-0.00311279,-0.00201416,-0.00280762,-0.00296021,-0.00360107,-0.00436401,-0.00375366,-0.00390625,-0.00326538,-0.00360107,-0.00311279,-0.00326538,-0.00296021,-0.00250244,-0.00219727,-0.0015564,-0.000946045,-0.000610352,-0.0015564,-0.00170898,-0.000793457,-0.00140381,-0.000793457,-0.0015564,-0.00219727,-0.00140381,-0.00140381,-0.000152588,-0.000610352,-0.000305176,0.000152588,0.000305176,0.000793457,0.00109863,0.000793457,-0.000457764,-0.00125122,0,-0.000152588,-0.00109863,-0.000946045,-0.0015564,-0.000793457,0.000610352,0.000946045,0.0015564,0.0015564,0.00186157,0.00341797,0.0045166,0.00531006,0.00466919,0.0045166,0.00326538,0.00375366,0.00234985,0.00265503,0.000946045,0.000457764,-0.000305176,-0.000793457,-0.000152588,0,-0.000946045,-0.00125122,-0.00109863,-0.000610352,0.000457764,0.000793457,0.000305176,0.00125122,0.000793457,0.000793457,0.00140381,0.00125122,0.00250244,0.00170898,0.00234985,0.00201416,0.00360107,0.00219727,0.00250244,0.00296021,0.00219727,0.00250244,0.00360107,0.00311279,0.0045166,0.0045166,0.00405884,0.00436401,0.00326538,0.00280762,0.00219727,0.0015564,0.000793457,0,-0.000305176,0.000305176,0.000305176,0.000610352,0.000946045,0.00201416,0.00311279,0.00482178,0.00531006,0.00576782,0.00778198,0.00857544,0.00778198,0.00622559,0.00466919,0.00482178,0.00482178,0.00390625,0.000793457,-0.00170898,-0.00311279,-0.00405884,-0.00405884,-0.0045166,-0.00592041,-0.00592041,-0.00561523,-0.00375366,-0.00250244,-0.00125122,-0.000152588,0.00186157,0.00360107,0.00375366,0.0045166,0.00341797,0.00421143,0.00375366,0.00421143,0.00436401,0.00360107,0.00326538,0.00265503,0.00186157,0.000457764,-0.000457764,-0.00186157,-0.00186157,-0.00280762,-0.00360107,-0.00482178,-0.0045166,-0.00375366,-0.00280762,-0.00219727,-0.00109863,0.000946045,0.00125122,0.0045166,0.00515747,0.006073,0.00656128,0.00622559,0.00592041,0.00546265,0.00561523,0.00497437,0.00326538,0.0015564,0.000946045,-0.000793457,-0.00140381,-0.00326538,-0.00296021,-0.00311279,-0.00390625,-0.00360107,-0.00280762,-0.00170898,-0.00125122,-0.000793457,0,0.000305176,0.00201416,0.00234985,0.00421143,0.00296021,0.00436401,0.00436401,0.00576782,0.00546265,0.00466919,0.00421143,0.00341797,0.00219727,-0.000610352,-0.00201416,-0.00436401,-0.0045166,-0.00546265,-0.00686646,-0.00918579,-0.00857544,-0.00872803,-0.00637817,-0.006073,-0.00561523,-0.00436401,-0.00234985,-0.000305176,0.000610352,0.000946045,0.00109863,0.00125122,0.000793457,0.00109863,-0.000946045,-0.00170898,-0.00250244,-0.00341797,-0.00436401,-0.0045166,-0.00531006,-0.00576782,-0.00497437,-0.00515747,-0.00421143,-0.0045166,-0.00375366,-0.00296021,-0.00311279,-0.00421143,-0.00375366,-0.00250244,-0.00186157,-0.00234985,-0.00234985,-0.00234985,-0.00109863,0,-0.000457764,0.000946045,0.000793457,0.00109863,0.000152588,-0.000457764,-0.0015564,-0.0015564,-0.00296021,-0.00250244,-0.00170898,-0.000457764,-0.00109863,-0.00170898,-0.00250244,-0.00234985,-0.00109863,0,0.00109863,0.00125122,0.0015564,0.00296021,0.00390625,0.00405884,0.00405884,0.00466919,0.00622559,0.00671387,0.00515747,0.00405884,0.00280762,0.00186157,0.00296021,0.00360107,0.00405884,0.00311279,0.00201416,0.00360107,0.00436401,0.00497437,0.0045166,0.00421143,0.00296021,0.00234985,0.00201416,0.00219727,0.00170898,0.000946045,-0.000457764,-0.000793457,-0.000946045,0.000457764,0.000152588,-0.000793457,-0.00219727,-0.000793457,0.000946045,0.000457764,-0.000457764,-0.000610352,0.000305176,0.00219727,0.00280762,0.00280762,0.00170898,0.00219727,0.00201416,0.00265503,0.00201416,0.00265503,0.00326538,0.00140381,0,-0.00201416,-0.0015564,-0.000610352,-0.000457764,-0.000457764,0.00125122,0.00201416,0.00265503,0.00201416,0.00186157,0.00234985,0.00326538,0.00482178,0.00686646,0.00811768,0.00796509,0.00827026,0.00842285,0.0105896,0.0113831,0.0118408,0.010437,0.00918579,0.00701904,0.00546265,0.00482178,0.00546265,0.0045166,0.00405884,0.00311279,0.00311279,0.00360107,0.00311279,0.0045166,0.00341797,0.00360107,0.00280762,0.00311279,0.0015564,0.00170898,0.000305176,-0.000610352,-0.00140381,0,0.000305176,0.00109863,0.00201416,0.00219727,0.00219727,0.00311279,0.00341797,0.00421143,0.00375366,0.00296021,0.00186157,0.00125122,0.000793457,-0.000610352,-0.00186157,-0.00311279,-0.00482178,-0.00421143,-0.00466919,-0.00280762,-0.00515747,-0.00656128,-0.00717163,-0.00637817,-0.00497437,-0.00561523,-0.00592041,-0.006073,-0.00561523,-0.00576782,-0.00701904,-0.00778198,-0.00778198,-0.00747681,-0.00747681,-0.00811768,-0.00842285,-0.00656128,-0.00531006,-0.00515747,-0.00637817,-0.006073,-0.0045166,-0.00234985,-0.00201416,-0.00201416,-0.00250244,-0.00265503,-0.00219727,-0.00280762,-0.00405884,-0.00637817,-0.00656128,-0.00637817,-0.00531006,-0.00637817,-0.006073,-0.00732422,-0.00686646,-0.00686646,-0.00747681,-0.00872803,-0.0093689,-0.00857544,-0.0090332,-0.00888062,-0.0093689,-0.00982666,-0.0093689,-0.00952148,-0.0107727,-0.010437,-0.0105896,-0.00842285,-0.00778198,-0.00576782,-0.00466919,-0.00326538,-0.00265503,-0.00250244,-0.00311279,-0.00360107,-0.00515747,-0.00732422,-0.0093689,-0.0112305,-0.0107727,-0.0116882,-0.0110779,-0.00967407,-0.00701904,-0.00515747,-0.00390625,-0.00219727,-0.000946045,0.000152588,0.000610352,-0.000305176,-0.000946045,-0.00311279,-0.00531006,-0.00827026,-0.010437,-0.0127869,-0.0141907,-0.0127869,-0.0112305,-0.0102844,-0.00982666,-0.0101318,-0.00811768,-0.00701904,-0.00497437,-0.00326538,-0.00234985,-0.000946045,0.00109863,0.000305176,-0.000610352,-0.00265503,-0.00234985,-0.00296021,-0.00390625,-0.00515747,-0.00671387,-0.00622559,-0.00592041,-0.00561523,-0.00561523,-0.00546265,-0.00375366,-0.00265503,-0.00186157,-0.00125122,-0.000946045,-0.000152588,-0.00109863,-0.000793457,-0.00170898,-0.00234985,-0.00326538,-0.00375366,-0.00466919,-0.00546265,-0.00531006,-0.00546265,-0.00436401,-0.00515747,-0.00515747,-0.00515747,-0.00546265,-0.00656128,-0.00576782,-0.00515747,-0.00390625,-0.00296021,-0.00341797,-0.00219727,-0.00109863,0.000793457,0.00140381,0.00201416,0.00219727,0.00250244,0.0015564,0.00125122,0.000610352,0.000152588,-0.000946045,-0.00234985,-0.00250244,-0.00311279,-0.00326538,-0.00405884,-0.00375366,-0.00390625,-0.00280762,-0.00250244,-0.00140381,-0.00186157,-0.00125122,-0.000946045,-0.00170898,-0.000610352,-0.00140381,-0.000946045,-0.00201416,-0.00296021,-0.00421143,-0.00482178,-0.00497437,-0.00482178,-0.00405884,-0.00341797,-0.00375366,-0.00326538,-0.00170898,-0.000793457,0.000152588,0.000305176,-0.000793457,-0.00140381,-0.00170898,-0.00186157,-0.00280762,-0.00436401,-0.00637817,-0.00576782,-0.00515747,-0.00531006,-0.00592041,-0.00671387,-0.00686646,-0.00622559,-0.00561523,-0.00592041,-0.00701904,-0.00796509,-0.00842285,-0.00872803,-0.00952148,-0.0112305,-0.0123291,-0.0135803,-0.0129395,-0.0133972,-0.0140381,-0.0146484,-0.0168457,-0.0168457,-0.019165,-0.020752,-0.0219727,-0.0227661,-0.025116,-0.0275879,-0.0299377,-0.0299377,-0.0266724,-0.0237122,-0.0227661,-0.0221558,-0.0184021,-0.0102844,-0.000946045,0.00762939,0.0127869,0.0176086,0.0233765,0.0308838,0.0371094,0.039917,0.0410156,0.0391235,0.0366516,0.0344543,0.031189,0.0269775,0.0219727,0.0160522,0.0116882,0.00827026,0.00671387,0.00637817,0.00762939,0.00747681,0.00888062,0.0123291,0.0163574,0.0204163,0.0223083,0.0229187,0.0249329,0.0279236,0.031189,0.0319519,0.0321045,0.0313416,0.0333557,0.0360107,0.0396118,0.0414734,0.041626,0.0431824,0.04599,0.0497437,0.0525513,0.0527039,0.0517578,0.0497437,0.048645,0.0467834,0.0453796,0.0414734,0.0358582,0.0293274,0.0247803,0.0204163,0.0165405,0.0129395,0.00842285,0.0045166,0.00140381,0.000305176,-0.000457764,-0.00109863,-0.00140381,-0.00219727,-0.00280762,-0.00125122,-0.00109863,0.000457764,-0.000457764,0,0.000457764,0.00186157,0.00234985,0.00280762,0.00201416,0.00296021,0.00390625,0.00515747,0.00531006,0.00375366,0.00201416,0.00219727,0.0015564,0.00170898,-0.000793457,-0.00326538,-0.00546265,-0.00686646,-0.00717163,-0.00686646,-0.00857544,-0.00982666,-0.0118408,-0.0129395,-0.0126343,-0.0118408,-0.0110779,-0.0126343,-0.0140381,-0.0155945,-0.0152893,-0.0144958,-0.0135803,-0.0137329,-0.0141907,-0.0132446,-0.0127869,-0.00997925,-0.00857544,-0.00671387,-0.00436401,-0.00265503,0.000305176,0.00250244,0.00375366,0.00561523,0.00637817,0.00717163,0.00686646,0.00671387,0.00576782,0.00497437,0.00341797,0.00219727,0.0015564,0.00140381,0.000152588,-0.00140381,-0.00250244,-0.00280762,-0.00219727,-0.00219727,-0.00109863,-0.00265503,-0.00265503,-0.00201416,-0.000152588,0.000793457,0.000793457,0.000457764,-0.000610352,-0.000305176,0.00125122,0.000457764,0.000457764,-0.000152588,-0.000610352,0.000457764,0.000610352,0.0015564,0.00170898,0.00234985,0.00219727,0.00219727,0.00201416,0.00219727,0.000305176,-0.00109863,-0.00390625,-0.00576782,-0.00827026,-0.00967407,-0.0124817,-0.0155945,-0.0187073,-0.0201111,-0.0209045,-0.0226135,-0.0243225,-0.025116,-0.0261841,-0.0255737,-0.0257263,-0.0249329,-0.0263367,-0.0261841,-0.0261841,-0.0252686,-0.0241699,-0.0237122,-0.0235291,-0.0223083,-0.0213623,-0.0202637,-0.0184021,-0.0174561,-0.0158997,-0.0160522,-0.0154419,-0.0151367,-0.0141907,-0.0140381,-0.0143433,-0.0149536,-0.0154419,-0.0165405,-0.0160522,-0.0173035,-0.0177612,-0.0182495,-0.0185547,-0.0185547,-0.0171509,-0.0169983,-0.0155945,-0.0144958,-0.013092,-0.0115356,-0.0101318,-0.00888062,-0.00762939,-0.00701904,-0.00576782,-0.00482178,-0.0045166,-0.00421143,-0.00466919,-0.00375366,-0.00341797,-0.00311279,-0.00234985,-0.00234985,-0.00109863,-0.000305176,0.00125122,0.00186157,0.00405884,0.00531006,0.006073,0.00592041,0.00531006,0.00546265,0.0045166,0.00360107,0.000610352,-0.000610352,-0.00326538,-0.00515747,-0.00592041,-0.00747681,-0.00827026,-0.00952148,-0.0101318,-0.00952148,-0.00857544,-0.00747681,-0.00717163,-0.00637817,-0.00515747,-0.00497437,-0.00436401,-0.00405884,-0.00341797,-0.00265503,-0.00201416,-0.00250244,-0.00170898,-0.00140381,-0.000793457,-0.000610352,-0.00109863,-0.00219727,-0.00250244,-0.00326538,-0.00375366,-0.0045166,-0.00592041,-0.00656128,-0.00732422,-0.00827026,-0.00982666,-0.0102844,-0.0109253,-0.010437,-0.0107727,-0.0107727,-0.0101318,-0.0090332,-0.00918579,-0.00888062,-0.00918579,-0.00952148,-0.00952148,-0.010437,-0.0101318,-0.00982666,-0.00982666,-0.0101318,-0.010437,-0.0105896,-0.00967407,-0.00872803,-0.00762939,-0.00622559,-0.00482178,-0.00375366,-0.00219727,-0.00125122,-0.00125122,-0.000793457,-0.000793457,0.000152588,0.000793457,-0.000152588,-0.00170898,-0.00311279,-0.00326538,-0.00234985,-0.00265503,-0.00296021,-0.00436401,-0.00421143,-0.0045166,-0.00375366,-0.00436401,-0.00482178,-0.00531006,-0.00360107,-0.00360107,-0.00219727,-0.00125122,0.000305176,0.000793457,0.00234985,0.0015564,0.00296021,0.00341797,0.00360107,0.00405884,0.00234985,0.000946045,-0.000305176,0,-0.00125122,-0.00280762,-0.00531006,-0.00701904,-0.00762939,-0.00762939,-0.00811768,-0.00967407,-0.0105896,-0.0107727,-0.0110779,-0.0118408,-0.0133972,-0.014801,-0.0141907,-0.0141907,-0.0137329,-0.0141907,-0.0141907,-0.0123291,-0.0107727,-0.00872803,-0.00747681,-0.00561523,-0.00296021,0.000793457,0.00326538,0.00637817,0.0093689,0.0126343,0.0158997,0.0185547,0.0195007,0.0221558,0.0240173,0.0258789,0.0255737,0.0241699,0.0240173,0.0227661,0.0230713,0.0215149,0.0190125,0.0171509,0.0158997,0.0158997,0.0155945,0.0154419,0.014801,0.0149536,0.0162048,0.0179443,0.019165,0.0202637,0.0229187,0.0258789,0.0275879,0.0299377,0.0316467,0.033844,0.0357056,0.0379028,0.0396118,0.0402222,0.0414734,0.0414734,0.0411682,0.0403748,0.0396118,0.038208,0.0366516,0.0344543,0.0321045,0.02948,0.0285339,0.0260315,0.0224609,0.0199585,0.0173035,0.0158997,0.0146484,0.0126343,0.0110779,0.00918579,0.00778198,0.00656128,0.0045166,0.00326538,0.00219727,0.00140381,0.000152588,-0.00265503,-0.00341797,-0.00466919,-0.00482178,-0.00546265,-0.00592041,-0.00592041,-0.00531006,-0.00390625,-0.00341797,-0.00296021,-0.00109863,-0.000152588,0.00186157,0.00280762,0.00280762,0.00390625,0.00421143,0.0045166,0.00405884,0.00234985,0.0015564,0,-0.00125122,-0.00280762,-0.00405884,-0.00637817,-0.00796509,-0.0090332,-0.00997925,-0.0101318,-0.0101318,-0.0102844,-0.0093689,-0.00997925,-0.00997925,-0.00967407,-0.00967407,-0.00872803,-0.0101318,-0.00952148,-0.0113831,-0.0116882,-0.0113831,-0.0109253,-0.0102844,-0.0093689,-0.00872803,-0.00762939,-0.00576782,-0.0045166,-0.00186157,-0.00234985,-0.000946045,-0.000946045,0,0.000793457,0.000305176,0.000305176,0.000457764,0.000793457,0.000610352,0.000457764,0.000610352,0.000305176,0.000152588,-0.00140381,-0.00170898,-0.00311279,-0.00326538,-0.00390625,-0.00466919,-0.00515747,-0.00531006,-0.00592041,-0.00656128,-0.00732422,-0.00701904,-0.00656128,-0.00436401,-0.00390625,-0.00250244,-0.00170898,-0.00140381,0.000152588,0.000610352,0.000305176,0.000305176,-0.000152588,-0.00109863,-0.00125122,-0.00250244,-0.00265503,-0.00326538,-0.00250244,-0.00296021,-0.00326538,-0.00360107,-0.00405884,-0.00360107,-0.00326538,-0.00421143,-0.00561523,-0.00686646,-0.00778198,-0.00747681,-0.00952148,-0.0105896,-0.0121765,-0.0113831,-0.0112305,-0.0105896,-0.0112305,-0.0121765,-0.0110779,-0.0110779,-0.00997925,-0.0102844,-0.00952148,-0.00857544,-0.00762939,-0.00762939,-0.00656128,-0.00717163,-0.00686646,-0.00637817,-0.00747681,-0.00701904,-0.00762939,-0.00778198,-0.00747681,-0.00796509,-0.00762939,-0.00747681,-0.00561523,-0.0045166,-0.00375366,-0.00390625,-0.00375366,-0.00201416,-0.000457764,0.000457764,0.000610352,-0.00140381,-0.000793457,-0.000946045,-0.000610352,-0.00140381,-0.00326538,-0.00375366,-0.00360107,-0.00390625,-0.00375366,-0.00515747,-0.00466919,-0.00482178,-0.00390625,-0.00311279,-0.00265503,-0.00250244,-0.00280762,-0.00186157,-0.00125122,0.000305176,0.000610352,0.00186157,0.00219727,0.00311279,0.00311279,0.00390625,0.00311279,0.00280762,0.000946045,-0.000457764,-0.00170898,-0.00280762,-0.0045166,-0.006073,-0.00686646,-0.00778198,-0.00811768,-0.00888062,-0.00982666,-0.0107727,-0.0110779,-0.0105896,-0.0110779,-0.00997925,-0.00918579,-0.00842285,-0.00701904,-0.00576782,-0.00436401,-0.00250244,-0.00170898,-0.00125122,-0.000152588,0,0.000610352,-0.000305176,-0.00186157,-0.00265503,-0.00390625,-0.00436401,-0.00515747,-0.00686646,-0.00747681,-0.00888062,-0.00842285,-0.00952148,-0.00918579,-0.0093689,-0.00857544,-0.00778198,-0.00701904,-0.00592041,-0.00561523,-0.0045166,-0.00421143,-0.00341797,-0.00219727,-0.00140381,-0.00201416,-0.00186157,-0.00250244,-0.00201416,-0.00219727,-0.00234985,-0.00326538,-0.00375366,-0.00375366,-0.00390625,-0.00405884,-0.0045166,-0.00482178,-0.00390625,-0.00375366,-0.00311279,-0.00296021,-0.00219727,-0.00186157,-0.00186157,-0.00170898,-0.00170898,-0.000946045,-0.00109863,-0.00140381,-0.00186157,-0.0015564,-0.00125122,-0.000457764,-0.00109863,-0.000946045,-0.00125122,-0.000610352,-0.00109863,-0.000946045,-0.000946045,-0.00219727,-0.00219727,-0.00265503,-0.00219727,-0.00280762,-0.00341797,-0.00390625,-0.00390625,-0.00311279,-0.00311279,-0.00201416,-0.00201416,-0.000793457,0,0.000610352,0.00201416,0.00234985,0.00280762,0.00296021,0.00234985,0.00296021,0.0015564,0.00186157,0.00125122,0.000152588,-0.000457764,-0.00109863,-0.00140381,-0.00250244,-0.00219727,-0.00326538,-0.00280762,-0.00296021,-0.00250244,-0.00265503,-0.00140381,-0.00170898,-0.000793457,-0.000152588,0.000793457,0.000793457,0.00170898,0.00186157,0.00219727,0.00341797,0.00280762,0.00280762,0.00280762,0.00280762,0.00375366,0.00390625,0.00436401,0.00482178,0.00546265,0.00592041,0.00656128,0.00686646,0.00747681,0.00796509,0.0090332,0.00778198,0.00827026,0.00811768,0.00811768,0.00747681,0.00701904,0.00637817,0.00592041,0.00515747,0.0045166,0.00360107,0.00280762,0.00201416,0.0015564,0.000793457,0.000457764,0.000610352,0.000152588,0.000152588,0.000457764,0,0.000946045,0.000946045,0.00109863,0.00219727,0.00186157,0.00280762,0.00219727,0.00280762,0.00201416,0.00186157,0.0015564,0.0015564,0.00125122,0.000946045,0.000457764,0.000152588,0,-0.000152588,-0.000305176,0.000305176,-0.000457764,-0.000305176,-0.000305176,-0.00109863,-0.000610352,-0.00140381,-0.0015564,-0.00265503,-0.00250244,-0.00326538,-0.00296021,-0.00360107,-0.00375366,-0.00421143,-0.00421143,-0.00326538,-0.00296021,-0.00265503,-0.00186157,-0.00265503,-0.00109863,-0.00140381,-0.000946045,-0.000152588,0.000152588,0.000610352,0.000946045,0.00140381,0.000793457,0.00109863,0.00109863,0.000793457,0.00109863,0.000457764,0.00109863,0.000457764,0,-0.000457764,-0.000152588,0,-0.000305176,-0.000457764,-0.000946045,-0.00186157,-0.00125122,-0.0015564,-0.00125122,-0.00234985,-0.00170898,-0.00234985,-0.00109863,-0.00125122,-0.000610352,-0.000610352,0,0,0.000610352,0.000152588,0.000305176,0,0,-0.000305176,-0.000305176,-0.000457764,-0.000610352,0.000305176,-0.000793457,-0.000457764,-0.000152588,0,0.000152588,0,0,0,0.000610352,0.00125122,0.000152588,0.000946045,0.000793457,0.000793457,0.00125122,0.00250244,0.0015564,0.00265503,0.00265503,0.00265503,0.00360107,0.00326538,0.00341797,0.00326538,0.00296021,0.00250244,0.00296021,0.00219727,0.00219727,0.00234985,0.00140381,0.00234985,0.00170898,0.00234985,0.00170898,0.00170898,0.00186157,0.00186157,0.00250244,0.00219727,0.00201416,0.00250244,0.00219727,0.00219727,0.00219727,0.00170898,0.00201416,0.00140381,0.00201416,0.00186157,0.00170898,0.00201416,0.00186157,0.00201416,0.00265503,0.00296021,0.00341797,0.00360107,0.00341797,0.00296021,0.00341797,0.00219727,0.00234985,0.00170898,0.00125122,0.000152588,0.000305176,-0.000152588,-0.000457764,-0.000457764,-0.00109863,-0.000457764,-0.000793457,-0.000305176,-0.000152588,-0.000610352,-0.000457764,-0.000946045,-0.00109863,-0.00109863,-0.00125122,-0.000946045,-0.0015564,-0.000946045,-0.0015564,-0.0015564,-0.00201416,-0.00170898,-0.00170898,-0.00186157,-0.00219727,-0.00186157,-0.00219727,-0.00234985,-0.00201416,-0.00219727,-0.00234985,-0.00250244,-0.00250244,-0.00280762,-0.00234985,-0.00360107,-0.00375366,-0.00341797,-0.00360107,-0.00360107,-0.00405884,-0.00436401,-0.00375366,-0.00390625,-0.00375366,-0.00326538,-0.00375366,-0.00326538,-0.00326538,-0.00341797,-0.00405884,-0.0045166,-0.00561523,-0.00546265,-0.00637817,-0.00701904,-0.00671387,-0.00747681,-0.00686646,-0.00732422,-0.00701904,-0.00656128,-0.00622559,-0.00546265,-0.00466919,-0.00405884,-0.00390625,-0.00311279,-0.00219727,-0.00170898,-0.00125122,-0.00140381,-0.00170898,-0.0015564,-0.00140381,-0.00219727,-0.00296021,-0.00360107,-0.00360107,-0.00296021,-0.00375366,-0.00326538,-0.00466919,-0.00421143,-0.00421143,-0.00421143,-0.00341797,-0.00405884,-0.00311279,-0.00296021,-0.00201416,-0.00201416,-0.00170898,-0.000305176,-0.000457764,0.000793457,0.000457764,0.00125122,0.000793457,0.00201416,0.00125122,0.000457764,0.000793457,0.000610352,0.00125122,0.000610352,0.000793457,0.000152588,0.000610352,0.000946045,0.00201416,0.00201416,0.00201416,0.00280762,0.00296021,0.00375366,0.00280762,0.00296021,0.00280762,0.00421143,0.00375366,0.00375366,0.00250244,0.00201416,0.00234985,0.00280762,0.00219727,0.00140381,0.000610352,0.00170898,0.000946045,0.00125122,0.000305176,0,-0.000793457,-0.000457764,-0.0015564,-0.000793457,-0.00170898,-0.00109863,-0.00109863,-0.00140381,-0.00125122,-0.000610352,0.000457764,0.00125122,0.00125122,0.00109863,0.000305176,0,0.000305176,0.000457764,0,-0.000946045,-0.000793457,-0.000946045,-0.00219727,-0.00170898,-0.00375366,-0.00360107,-0.00466919,-0.0045166,-0.00405884,-0.00341797,-0.00375366,-0.00326538,-0.00234985,-0.00234985,-0.00140381,-0.00170898,-0.00140381,-0.00140381,-0.00219727,-0.00250244,-0.00360107,-0.00390625,-0.00405884,-0.00341797,-0.00360107,-0.00360107,-0.00326538,-0.00360107,-0.00280762,-0.00405884,-0.00421143,-0.00390625,-0.00482178,-0.00515747,-0.00671387,-0.00686646,-0.00717163,-0.00762939,-0.00592041,-0.00637817,-0.00531006,-0.00561523,-0.0045166,-0.00360107,-0.000946045,-0.00109863,-0.00140381,-0.00109863,0,-0.000152588,-0.000946045,-0.00326538,-0.00405884,-0.0045166,-0.00561523,-0.00576782,-0.00701904,-0.00778198,-0.00747681,-0.00811768,-0.00747681,-0.00811768,-0.00732422,-0.00671387,-0.00482178,-0.00421143,-0.0045166,-0.00341797,-0.00265503,-0.000946045,0.000457764,0.0015564,0.0015564,0.00201416,0.00296021,0.00265503,0.00234985,0.000946045,0.000946045,0.000946045,0.00140381,0,-0.0015564,-0.00201416,-0.00201416,-0.00265503,-0.00186157,-0.0015564,-0.000457764,0.000793457,0.00125122,0.000457764,-0.000457764,-0.000610352,-0.0015564,-0.00296021,-0.00280762,-0.00234985,-0.00234985,-0.00219727,-0.00280762,-0.00296021,-0.00405884,-0.00360107,-0.00436401,-0.00311279,-0.00311279,-0.00311279,-0.00280762,-0.00265503,-0.00250244,-0.00140381,-0.00201416,-0.00219727,-0.00219727,-0.00280762,-0.00219727,-0.00186157,-0.00125122,0.000457764,0.00170898,0.00234985,0.00201416,0.00170898,0.000457764,0.000793457,-0.00125122,-0.00201416,-0.00280762,-0.00360107,-0.00341797,-0.00390625,-0.00250244,-0.00265503,-0.00234985,-0.00326538,-0.00311279,-0.00250244,-0.00170898,-0.00265503,-0.00390625,-0.00390625,-0.00375366,-0.00326538,-0.00219727,-0.00219727,-0.0015564,-0.00109863,-0.000305176,0.000152588,0,-0.000152588,-0.000305176,-0.000305176,0.000152588,0.000457764,-0.000610352,-0.00140381,-0.00170898,-0.00109863,-0.00140381,-0.00201416,-0.00280762,-0.00360107,-0.00390625,-0.00436401,-0.0045166,-0.00497437,-0.00546265,-0.00671387,-0.00637817,-0.00686646,-0.00637817,-0.00762939,-0.00842285,-0.0090332,-0.010437,-0.0105896,-0.0110779,-0.0113831,-0.0121765,-0.0121765,-0.0121765,-0.0119934,-0.0118408,-0.0113831,-0.0123291,-0.013092,-0.0127869,-0.0121765,-0.0119934,-0.0118408,-0.0123291,-0.0116882,-0.0102844,-0.00747681,-0.00531006,-0.00296021,-0.000793457,0.00234985,0.00482178,0.00747681,0.00952148,0.0110779,0.0121765,0.0123291,0.0124817,0.0116882,0.0107727,0.00967407,0.00762939,0.00686646,0.00546265,0.00436401,0.00497437,0.00466919,0.00497437,0.00561523,0.00637817,0.00717163,0.00778198,0.00888062,0.00982666,0.010437,0.0107727,0.010437,0.0101318,0.010437,0.010437,0.0113831,0.0115356,0.0121765,0.0135803,0.0146484,0.0157471,0.0173035,0.0187073,0.0210571,0.0218201,0.0226135,0.0230713,0.0232239,0.0229187,0.0224609,0.0213623,0.0199585,0.0182495,0.0166931,0.0163574,0.0151367,0.0143433,0.0141907,0.013092,0.0129395,0.0121765,0.0116882,0.0112305,0.00982666,0.00872803,0.00701904,0.00592041,0.00421143,0.00375366,0.00234985,0.00140381,0.000793457,0.000152588,-0.000457764,0.000152588,0.000305176,0.00140381,0.00234985,0.00341797,0.00421143,0.00497437,0.00576782,0.00592041,0.006073,0.006073,0.00497437,0.00405884,0.00311279,0.00250244,0.00219727,0.00201416,0.00109863,0.000305176,0,-0.00109863,-0.000610352,-0.00140381,-0.00201416,-0.00326538,-0.00360107,-0.00531006,-0.00561523,-0.00717163,-0.00796509,-0.00872803,-0.00967407,-0.0110779,-0.0115356,-0.0119934,-0.0119934,-0.0121765,-0.0115356,-0.0116882,-0.00997925,-0.0093689,-0.00842285,-0.00701904,-0.00561523,-0.0045166,-0.00326538,-0.00170898,-0.00125122,-0.000152588,0.000946045,0.00234985,0.00250244,0.00341797,0.00341797,0.00341797,0.00375366,0.0045166,0.00531006,0.00482178,0.00531006,0.00531006,0.00531006,0.006073,0.00561523,0.006073,0.00576782,0.00531006,0.00466919,0.00466919,0.00390625,0.00405884,0.00326538,0.00296021,0.00234985,0.00250244,0.00219727,0.00326538,0.00326538,0.00360107,0.00390625,0.00482178,0.0045166,0.00622559,0.00515747,0.00576782,0.00531006,0.00515747,0.00466919,0.00436401,0.00360107,0.00341797,0.00296021,0.00265503,0.00250244,0.00140381,0.00109863,0.000793457,0,-0.000457764,-0.00186157,-0.00360107,-0.0045166,-0.00637817,-0.00811768,-0.00888062,-0.0113831,-0.0124817,-0.0135803,-0.0146484,-0.0151367,-0.0152893,-0.0146484,-0.014801,-0.0135803,-0.0137329,-0.0127869,-0.0124817,-0.0116882,-0.0115356,-0.0112305,-0.0112305,-0.0113831,-0.0112305,-0.0116882,-0.0113831,-0.0116882,-0.0110779,-0.0102844,-0.010437,-0.00997925,-0.00982666,-0.00888062,-0.00827026,-0.00872803,-0.00918579,-0.00918579,-0.0101318,-0.00982666,-0.0101318,-0.00967407,-0.0102844,-0.0105896,-0.0109253,-0.0102844,-0.0105896,-0.00997925,-0.00967407,-0.0101318,-0.00967407,-0.0093689,-0.00857544,-0.00732422,-0.00732422,-0.00622559,-0.00592041,-0.00482178,-0.00497437,-0.00405884,-0.00405884,-0.00405884,-0.00360107,-0.00326538,-0.00375366,-0.00375366,-0.00311279,-0.00250244,-0.00125122,-0.00186157,-0.00125122,-0.00170898,-0.00125122,-0.00140381,-0.000946045,-0.00186157,-0.00296021,-0.00360107,-0.00497437,-0.00592041,-0.00686646,-0.00811768,-0.00796509,-0.0090332,-0.00872803,-0.0093689,-0.00918579,-0.00857544,-0.00811768,-0.00811768,-0.00872803,-0.00857544,-0.00762939,-0.00747681,-0.00686646,-0.00656128,-0.00732422,-0.00656128,-0.00656128,-0.00732422,-0.00671387,-0.00762939,-0.00671387,-0.00686646,-0.00686646,-0.00637817,-0.00732422,-0.00637817,-0.00701904,-0.00656128,-0.00747681,-0.00762939,-0.00796509,-0.00796509,-0.00747681,-0.00796509,-0.00762939,-0.00811768,-0.00827026,-0.00872803,-0.00872803,-0.00888062,-0.00778198,-0.00811768,-0.00827026,-0.00811768,-0.00842285,-0.00857544,-0.00811768,-0.00842285,-0.00811768,-0.00762939,-0.00717163,-0.00701904,-0.00671387,-0.00686646,-0.006073,-0.00546265,-0.00497437,-0.00515747,-0.00466919,-0.00497437,-0.00375366,-0.00326538,-0.00421143,-0.00375366,-0.00466919,-0.00390625,-0.00326538,-0.00360107,-0.00341797,-0.00421143,-0.00421143,-0.00360107,-0.00360107,-0.00296021,-0.00296021,-0.00341797,-0.00390625,-0.00421143,-0.00360107,-0.00341797,-0.00341797,-0.00311279,-0.00482178,-0.0045166,-0.00531006,-0.00531006,-0.00686646,-0.00686646,-0.00827026,-0.00732422,-0.00842285,-0.00857544,-0.00997925,-0.0107727,-0.0112305,-0.0113831,-0.0124817,-0.0126343,-0.0143433,-0.0155945,-0.0166931,-0.019165,-0.0210571,-0.0233765,-0.0261841,-0.0286865,-0.0314941,-0.0328979,-0.0339966,-0.0327454,-0.0321045,-0.02948,-0.0263367,-0.0215149,-0.014801,-0.00656128,0.0015564,0.0093689,0.0166931,0.0235291,0.0308838,0.0369568,0.0410156,0.0438232,0.0441284,0.0439758,0.0420837,0.0394592,0.0363159,0.0339966,0.0310364,0.0280762,0.026825,0.0254211,0.025116,0.0255737,0.0271301,0.0280762,0.0285339,0.0299377,0.0296326,0.0300903,0.0286865,0.0286865,0.0277405,0.0274353,0.0254211,0.0247803,0.0249329,0.0258789,0.0285339,0.0308838,0.0324402,0.0354004,0.0380554,0.0431824,0.046936,0.0500488,0.0508423,0.0516052,0.0514526,0.0508423,0.0500488,0.048645,0.0456848,0.0422668,0.0383606,0.0350952,0.0330505,0.0303955,0.0265198,0.0229187,0.0180969,0.0140381,0.00997925,0.00576782,0.00140381,-0.00341797,-0.00857544,-0.0121765,-0.0160522,-0.0182495,-0.0210571,-0.0226135,-0.0237122,-0.0238647,-0.0240173,-0.0227661,-0.0227661,-0.0205688,-0.0196533,-0.0173035,-0.0160522,-0.0151367,-0.0144958,-0.0129395,-0.0112305,-0.0105896,-0.00918579,-0.0090332,-0.00811768,-0.00686646,-0.00482178,-0.00296021,-0.00219727,-0.00170898,-0.00186157,-0.00219727,-0.00265503,-0.00341797,-0.00466919,-0.00656128,-0.0101318,-0.0121765,-0.0143433,-0.0171509,-0.0195007,-0.0219727,-0.0237122,-0.0249329,-0.0252686,-0.0257263,-0.0247803,-0.0249329,-0.0233765,-0.0210571,-0.0190125,-0.0166931,-0.0144958,-0.0121765,-0.0102844,-0.00747681,-0.0045166,-0.00234985,-0.000305176,0.00186157,0.00546265,0.00747681,0.00952148,0.0123291,0.0137329,0.0165405,0.0190125,0.0209045,0.0221558,0.0224609,0.0237122,0.0235291,0.0241699,0.0229187,0.0223083,0.0201111,0.019165,0.0169983,0.0158997,0.0133972,0.0116882,0.00997925,0.00796509,0.00778198,0.00576782,0.00546265,0.00405884,0.00360107,0.00250244,0.00296021,0.00234985,0.00296021,0.00250244,0.00250244,0.00250244,0.00341797,0.00375366,0.00497437,0.00515747,0.00561523,0.00592041,0.00671387,0.00592041,0.00622559,0.00561523,0.00497437,0.00341797,0.00280762,-0.000152588,-0.000793457,-0.00436401,-0.00546265,-0.00762939,-0.00997925,-0.0121765,-0.0141907,-0.0162048,-0.0173035,-0.0188599,-0.0202637,-0.0209045,-0.0221558,-0.0227661,-0.0232239,-0.0230713,-0.0238647,-0.0241699,-0.0244751,-0.0241699,-0.0235291,-0.0233765,-0.0213623,-0.020752,-0.0193481,-0.0173035,-0.0152893,-0.0126343,-0.0109253,-0.00842285,-0.00622559,-0.00405884,-0.00311279,-0.000457764,0,0.00140381,0.00170898,0.00250244,0.00219727,0.00201416,0.00109863,0.000793457,0.000152588,-0.000793457,-0.00109863,-0.00265503,-0.00280762,-0.00405884,-0.00405884,-0.00405884,-0.00421143,-0.00466919,-0.00421143,-0.00515747,-0.00405884,-0.00436401,-0.00360107,-0.00421143,-0.00390625,-0.00421143,-0.00421143,-0.00436401,-0.00405884,-0.00436401,-0.00360107,-0.00405884,-0.00280762,-0.00296021,-0.0015564,-0.00170898,-0.000946045,-0.000610352,-0.000305176,0.000152588,-0.000793457,-0.00109863,-0.0015564,-0.00341797,-0.00405884,-0.00622559,-0.00811768,-0.00997925,-0.0121765,-0.0135803,-0.0154419,-0.0165405,-0.0190125,-0.0201111,-0.0212097,-0.0218201,-0.0229187,-0.0226135,-0.0241699,-0.0240173,-0.0243225,-0.0237122,-0.0238647,-0.0223083,-0.0221558,-0.0212097,-0.0204163,-0.0195007,-0.0190125,-0.0180969,-0.0166931,-0.0162048,-0.0154419,-0.0149536,-0.0141907,-0.0141907,-0.0135803,-0.0124817,-0.0124817,-0.0126343,-0.0113831,-0.0113831,-0.0113831,-0.010437,-0.0105896,-0.00997925,-0.00952148,-0.0090332,-0.00888062,-0.00827026,-0.00888062,-0.00842285,-0.00827026,-0.00857544,-0.00872803,-0.00872803,-0.00872803,-0.00857544,-0.00762939,-0.00717163,-0.00637817,-0.00622559,-0.00466919,-0.00390625,-0.00234985,-0.00140381,-0.000793457,0.000152588,0.0015564,0.00219727,0.00341797,0.00375366,0.00405884,0.00405884,0.0045166,0.00466919,0.00531006,0.00515747,0.00576782,0.00497437,0.00531006,0.00515747,0.00515747,0.00466919,0.00436401,0.00296021,0.00250244,0.00140381,0.000946045,-0.000457764,-0.000946045,-0.00341797,-0.00326538,-0.00466919,-0.006073,-0.00592041,-0.00778198,-0.00872803,-0.00888062,-0.0102844,-0.00982666,-0.0102844,-0.0115356,-0.0113831,-0.0126343,-0.0143433,-0.0146484,-0.0158997,-0.0180969,-0.0195007,-0.0226135,-0.025116,-0.0282288,-0.031189,-0.0354004,-0.0393066,-0.042572,-0.0438232,-0.0436707,-0.0417786,-0.0402222,-0.0379028,-0.0333557,-0.0269775,-0.0162048,-0.00656128,0.00390625,0.0113831,0.0193481,0.0266724,0.0354004,0.0434875,0.047699,0.0491028,0.0484924,0.0466309,0.0453796,0.0428772,0.0402222,0.0375671,0.0349121,0.0332031,0.0325928,0.0327454,0.0347595,0.0366516,0.038208,0.0397644,0.0413208,0.0420837,0.0422668,0.0413208,0.039917,0.0380554,0.0354004,0.0325928,0.0300903,0.0291443,0.0285339,0.0293274,0.031189,0.0325928,0.0339966,0.038208,0.042572,0.0480347,0.0519104,0.0534668,0.053009,0.0531616,0.0533142,0.0536499,0.0527039,0.0506592,0.0464783,0.0427246,0.0402222,0.0386658,0.037262,0.0343018,0.0314941,0.0271301,0.0223083,0.0182495,0.0133972,0.00811768,0.00296021,-0.0045166,-0.0105896,-0.0169983,-0.0218201,-0.0257263,-0.0291443,-0.0313416,-0.0344543,-0.0346069,-0.0344543,-0.033844,-0.0319519,-0.0305481,-0.0286865,-0.0275879,-0.026825,-0.0260315,-0.0247803,-0.0232239,-0.0216675,-0.0210571,-0.0209045,-0.0198059,-0.0177612,-0.0141907,-0.0105896,-0.00778198,-0.00576782,-0.00466919,-0.00201416,-0.000610352,0.000793457,0.00140381,-0.000152588,-0.00140381,-0.00436401,-0.00701904,-0.00997925,-0.0124817,-0.0157471,-0.0182495,-0.0215149,-0.0232239,-0.0255737,-0.0263367,-0.0257263,-0.0258789,-0.0243225,-0.0232239,-0.0218201,-0.0205688,-0.0184021,-0.0165405,-0.0144958,-0.0124817,-0.0110779,-0.00982666,-0.00762939,-0.00482178,-0.0015564,0.00170898,0.0045166,0.00762939,0.0110779,0.0149536,0.0202637,0.0235291,0.0266724,0.0286865,0.0302429,0.0314941,0.0325928,0.0332031,0.0322876,0.0310364,0.0275879,0.025116,0.0224609,0.020752,0.0188599,0.0176086,0.0155945,0.0144958,0.0124817,0.0115356,0.0110779,0.0107727,0.0093689,0.00827026,0.00622559,0.00421143,0.00219727,0.00125122,0.000152588,-0.000305176,-0.00186157,-0.00280762,-0.00280762,-0.00186157,-0.000457764,0.00140381,0.00201416,0.00311279,0.00360107,0.0045166,0.00497437,0.00482178,0.0045166,0.00201416,0.000305176,-0.00219727,-0.00360107,-0.0045166,-0.00576782,-0.00686646,-0.00872803,-0.0093689,-0.00967407,-0.0102844,-0.00997925,-0.0110779,-0.0123291,-0.0140381,-0.0162048,-0.0184021,-0.0199585,-0.0218201,-0.0237122,-0.0254211,-0.0266724,-0.0275879,-0.0274353,-0.0258789,-0.0246277,-0.0216675,-0.0190125,-0.0165405,-0.0133972,-0.0109253,-0.00778198,-0.00497437,-0.00360107,-0.00201416,-0.00109863,-0.000793457,0,0.000793457,0.0015564,0.0015564,0.00201416,0.00265503,0.00375366,0.00421143,0.00637817,0.00592041,0.00717163,0.00622559,0.00656128,0.00671387,0.00531006,0.00561523,0.00375366,0.00265503,0.000610352,-0.00109863,-0.00201416,-0.00326538,-0.00405884,-0.00561523,-0.00592041,-0.00717163,-0.00701904,-0.00762939,-0.00762939,-0.00811768,-0.00796509,-0.00827026,-0.00918579,-0.00918579,-0.0090332,-0.00967407,-0.00918579,-0.00918579,-0.00872803,-0.00888062,-0.00811768,-0.00778198,-0.00778198,-0.00637817,-0.00686646,-0.00637817,-0.00732422,-0.00762939,-0.0090332,-0.00982666,-0.0110779,-0.0132446,-0.0149536,-0.0171509,-0.0190125,-0.0205688,-0.0215149,-0.0224609,-0.0235291,-0.0240173,-0.0237122,-0.0237122,-0.0230713,-0.0227661,-0.0221558,-0.0218201,-0.0216675,-0.0224609,-0.0227661,-0.0224609,-0.0232239,-0.0232239,-0.0233765,-0.0237122,-0.0229187,-0.0219727,-0.0198059,-0.0179443,-0.0155945,-0.0137329,-0.0109253,-0.00952148,-0.00686646,-0.0045166,-0.00326538,-0.00265503,-0.00234985,-0.00360107,-0.00280762,-0.00421143,-0.0045166,-0.00561523,-0.00686646,-0.00747681,-0.00747681,-0.00842285,-0.00671387,-0.00796509,-0.00592041,-0.00592041,-0.00436401,-0.00405884,-0.00360107,-0.00341797,-0.00296021,-0.00326538,-0.00201416,-0.00265503,-0.00219727,-0.00219727,-0.00280762,-0.00234985,-0.00234985,-0.00125122,-0.00125122,-0.000457764,0,0.000610352,0.00125122,0.00201416,0.00109863,0.00140381,0.000457764,0.00140381,0.000946045,0.00186157,0.00170898,0.000946045,0.000946045,-0.000152588,0.000610352,0.000152588,-0.000152588,-0.00186157,-0.00390625,-0.00622559,-0.00857544,-0.0107727,-0.0137329,-0.0169983,-0.0204163,-0.0240173,-0.0274353,-0.0308838,-0.0332031,-0.037262,-0.0413208,-0.0455322,-0.0491028,-0.0527039,-0.0531616,-0.052063,-0.0502014,-0.0480347,-0.0447388,-0.0400696,-0.0322876,-0.0196533,-0.00701904,0.00436401,0.0129395,0.0213623,0.0305481,0.041626,0.0517578,0.0567627,0.0567627,0.0531616,0.0498962,0.0478821,0.0472412,0.0453796,0.0424194,0.0385132,0.036499,0.0366516,0.0403748,0.0444336,0.0470886,0.046936,0.0470886,0.0478821,0.0473938,0.046936,0.0431824,0.0383606,0.0333557,0.0275879,0.0240173,0.0201111,0.0182495,0.0173035,0.0184021,0.0216675,0.0238647,0.0283813,0.0332031,0.0403748,0.0461426,0.0500488,0.0505066,0.0489502,0.0483398,0.0487976,0.0497437,0.0494385,0.046936,0.0444336,0.0417786,0.042572,0.0434875,0.0452271,0.0455322,0.0431824,0.0386658,0.0336914,0.0288391,0.0243225,0.0193481,0.0107727,0.000457764,-0.0093689,-0.0165405,-0.0223083,-0.0261841,-0.0307312,-0.0350952,-0.0388184,-0.0397644,-0.0397644,-0.0388184,-0.0385132,-0.0383606,-0.0388184,-0.0400696,-0.040863,-0.0411682,-0.0402222,-0.0391235,-0.0383606,-0.0366516,-0.0341492,-0.0310364,-0.0241699,-0.0179443,-0.0112305,-0.00592041,-0.00219727,0.00170898,0.00531006,0.00796509,0.010437,0.0112305,0.00997925,0.00732422,0.00466919,0.00170898,0.000457764,-0.00140381,-0.00436401,-0.00701904,-0.010437,-0.0121765,-0.013092,-0.0146484,-0.014801,-0.0163574,-0.0169983,-0.0184021,-0.0201111,-0.0216675,-0.0223083,-0.0229187,-0.0226135,-0.0227661,-0.0227661,-0.0230713,-0.0212097,-0.0173035,-0.0133972,-0.00857544,-0.006073,-0.00186157,0.00311279,0.00857544,0.0154419,0.0209045,0.0252686,0.0274353,0.0307312,0.0341492,0.0375671,0.0393066,0.0397644,0.0383606,0.036499,0.035553,0.0352478,0.0344543,0.033844,0.0314941,0.0296326,0.0283813,0.0266724,0.0247803,0.0237122,0.0201111,0.0173035,0.0135803,0.00918579,0.00497437,0.00109863,-0.00140381,-0.00466919,-0.00701904,-0.00952148,-0.0119934,-0.0118408,-0.0119934,-0.00918579,-0.0093689,-0.00717163,-0.00762939,-0.00717163,-0.00561523,-0.00421143,-0.00265503,-0.00360107,-0.0045166,-0.00561523,-0.00531006,-0.00405884,-0.00201416,-0.00186157,-0.0015564,-0.000793457,0.00109863,0.00311279,0.00341797,0.00421143,0.00234985,-0.000152588,-0.00186157,-0.00515747,-0.00842285,-0.0110779,-0.0146484,-0.0177612,-0.0202637,-0.0218201,-0.0233765,-0.0232239,-0.0224609,-0.0221558,-0.0205688,-0.0199585,-0.0187073,-0.0184021,-0.0169983,-0.0157471,-0.0154419,-0.0152893,-0.0152893,-0.0154419,-0.0137329,-0.0124817,-0.00918579,-0.00747681,-0.00497437,-0.00234985,0.00125122,0.00482178,0.00842285,0.0109253,0.0119934,0.0129395,0.0140381,0.0151367,0.014801,0.0143433,0.0132446,0.0123291,0.0116882,0.0115356,0.0102844,0.00952148,0.00842285,0.00732422,0.00576782,0.00390625,0.0015564,-0.000946045,-0.00421143,-0.00671387,-0.00982666,-0.013092,-0.0155945,-0.0187073,-0.0204163,-0.0218201,-0.0216675,-0.0226135,-0.0223083,-0.0223083,-0.0215149,-0.0196533,-0.0188599,-0.0173035,-0.0176086,-0.0165405,-0.0173035,-0.0165405,-0.0158997,-0.0165405,-0.0165405,-0.0168457,-0.0166931,-0.0165405,-0.0162048,-0.0157471,-0.0163574,-0.0155945,-0.0165405,-0.0157471,-0.0166931,-0.0163574,-0.0179443,-0.0184021,-0.019165,-0.0204163,-0.0221558,-0.0233765,-0.0247803,-0.0260315,-0.0272827,-0.0277405,-0.0296326,-0.0302429,-0.0313416,-0.0305481,-0.0299377,-0.0285339,-0.0277405,-0.0263367,-0.025116,-0.0229187,-0.0201111,-0.0177612,-0.0160522,-0.0140381,-0.0118408,-0.0102844,-0.00778198,-0.00622559,-0.00421143,-0.00341797,-0.00170898,-0.000305176,0.00109863,0.00140381,0.0015564,0.00265503,0.00311279,0.00311279,0.00280762,0.00186157,0.000305176,-0.000946045,-0.00170898,-0.00311279,-0.00466919,-0.00762939,-0.00842285,-0.0109253,-0.0109253,-0.0116882,-0.0124817,-0.0144958,-0.0155945,-0.0173035,-0.0176086,-0.0187073,-0.0201111,-0.0240173,-0.0257263,-0.0280762,-0.0286865,-0.0297852,-0.0321045,-0.0350952,-0.0383606,-0.0405273,-0.0427246,-0.0472412,-0.0533142,-0.0586243,-0.0597229,-0.0572205,-0.052063,-0.0458374,-0.0422668,-0.0363159,-0.0255737,-0.00686646,0.013092,0.0305481,0.043335,0.0514526,0.0609741,0.0731201,0.0845032,0.0899658,0.0854492,0.0748291,0.0625305,0.0544128,0.0509949,0.0467834,0.0419312,0.0363159,0.035553,0.0407104,0.0523987,0.0625305,0.0692139,0.0712585,0.0718689,0.0722046,0.0714111,0.0681458,0.0587769,0.0462952,0.0336914,0.0224609,0.0152893,0.00918579,0.00592041,0.00622559,0.0105896,0.0177612,0.0266724,0.0368042,0.0453796,0.0561218,0.0657959,0.0698547,0.0682983,0.0609741,0.0525513,0.0455322,0.0413208,0.0368042,0.02948,0.0224609,0.0163574,0.0168457,0.0213623,0.0272827,0.0307312,0.0302429,0.0261841,0.0224609,0.0187073,0.0140381,0.00546265,-0.00686646,-0.0210571,-0.0335083,-0.0428772,-0.0502014,-0.0542603,-0.0598755,-0.0623779,-0.0632935,-0.0615845,-0.059082,-0.0566101,-0.0550537,-0.0517578,-0.052063,-0.0533142,-0.0556641,-0.0578613,-0.0555115,-0.0531616,-0.0487976,-0.0466309,-0.0427246,-0.0357056,-0.0249329,-0.0119934,-0.000793457,0.00747681,0.0119934,0.0162048,0.0209045,0.025116,0.0280762,0.0272827,0.0247803,0.0216675,0.0196533,0.0210571,0.0230713,0.0244751,0.0238647,0.0233765,0.0226135,0.0241699,0.0243225,0.0229187,0.0196533,0.014801,0.0105896,0.00686646,0.00201416,-0.00326538,-0.00827026,-0.0116882,-0.0137329,-0.0138855,-0.014801,-0.0140381,-0.0127869,-0.0093689,-0.00482178,-0.00109863,0.00234985,0.00436401,0.00842285,0.0129395,0.0180969,0.0209045,0.0233765,0.025116,0.0271301,0.0307312,0.0330505,0.0346069,0.0335083,0.0322876,0.0308838,0.0302429,0.0289917,0.0277405,0.0244751,0.0223083,0.0196533,0.0174561,0.0146484,0.0115356,0.00762939,0.00326538,-0.00140381,-0.00686646,-0.0124817,-0.0187073,-0.0243225,-0.0296326,-0.0335083,-0.0369568,-0.0394592,-0.041626,-0.0422668,-0.0417786,-0.0400696,-0.0371094,-0.035553,-0.0336914,-0.0314941,-0.0296326,-0.0272827,-0.0243225,-0.0227661,-0.0205688,-0.0179443,-0.0138855,-0.0093689,-0.00515747,-0.000946045,0.00390625,0.00857544,0.0132446,0.0171509,0.0205688,0.0212097,0.0216675,0.0219727,0.0223083,0.0201111,0.0180969,0.0162048,0.0141907,0.0137329,0.0137329,0.0127869,0.0132446,0.0115356,0.0119934,0.0112305,0.010437,0.00872803,0.00546265,0.00250244,-0.000152588,-0.00170898,-0.00326538,-0.00421143,-0.0045166,-0.00482178,-0.00375366,-0.00170898,0.000610352,0.00280762,0.00466919,0.00656128,0.00671387,0.00872803,0.00811768,0.00872803,0.00762939,0.00827026,0.00796509,0.00857544,0.0090332,0.00982666,0.0109253,0.013092,0.0141907,0.014801,0.0140381,0.0123291,0.010437,0.00686646,0.00311279,-0.00186157,-0.00732422,-0.0126343,-0.0174561,-0.0221558,-0.0247803,-0.0285339,-0.0297852,-0.0316467,-0.0324402,-0.0343018,-0.0346069,-0.0368042,-0.0374146,-0.0394592,-0.0403748,-0.0431824,-0.044281,-0.0450745,-0.0450745,-0.0441284,-0.0428772,-0.0410156,-0.0389709,-0.0363159,-0.0332031,-0.0303955,-0.0272827,-0.025116,-0.0233765,-0.0227661,-0.0212097,-0.0202637,-0.0188599,-0.0182495,-0.0173035,-0.0165405,-0.0155945,-0.0137329,-0.0124817,-0.0109253,-0.0101318,-0.00982666,-0.00952148,-0.00997925,-0.0110779,-0.0124817,-0.0140381,-0.0158997,-0.0179443,-0.0190125,-0.0199585,-0.0209045,-0.0204163,-0.0210571,-0.020752,-0.0209045,-0.0209045,-0.0204163,-0.0205688,-0.0210571,-0.0215149,-0.0213623,-0.0204163,-0.0199585,-0.0185547,-0.0180969,-0.0174561,-0.0166931,-0.0163574,-0.0146484,-0.0137329,-0.0141907,-0.0154419,-0.0165405,-0.0190125,-0.0196533,-0.0215149,-0.0235291,-0.0271301,-0.031189,-0.0341492,-0.036499,-0.0394592,-0.0434875,-0.0492859,-0.0572205,-0.0656433,-0.0740662,-0.0805969,-0.0840454,-0.0826416,-0.0757751,-0.0657959,-0.0539551,-0.0397644,-0.0213623,0.00497437,0.0344543,0.0628357,0.081543,0.0921631,0.0966797,0.102295,0.109131,0.112274,0.104767,0.0865479,0.0676575,0.0561218,0.0558167,0.0640869,0.0714111,0.076416,0.0830994,0.0968323,0.117706,0.136749,0.145782,0.141571,0.128632,0.111938,0.0957336,0.0739136,0.0464783,0.0151367,-0.0118408,-0.0296326,-0.0374146,-0.0386658,-0.0352478,-0.0282288,-0.0110779,0.0090332,0.0291443,0.0436707,0.0517578,0.0548706,0.0561218,0.0522461,0.0407104,0.0180969,-0.00531006,-0.0233765,-0.0313416,-0.0308838,-0.0293274,-0.0255737,-0.0198059,-0.00576782,0.0149536,0.0383606,0.0539551,0.0601807,0.0572205,0.0494385,0.0414734,0.0282288,0.0116882,-0.010437,-0.0343018,-0.0534668,-0.0675049,-0.0746765,-0.0793762,-0.0810852,-0.0790405,-0.0743713,-0.0659485,-0.0592651,-0.0548706,-0.0536499,-0.0527039,-0.053009,-0.0555115,-0.0604858,-0.0671997,-0.071106,-0.0701599,-0.0654907,-0.0586243,-0.0528564,-0.0434875,-0.0310364,-0.0138855,0.00421143,0.0205688,0.0322876,0.0414734,0.0514526,0.0614319,0.0706177,0.0767212,0.0788879,0.0790405,0.0785828,0.0799866,0.0793762,0.0791931,0.0760803,0.0718689,0.0676575,0.0640869,0.0604858,0.0559692,0.0505066,0.0447388,0.0396118,0.0343018,0.0283813,0.0195007,0.0102844,0.000946045,-0.00762939,-0.014801,-0.0241699,-0.0333557,-0.042572,-0.047699,-0.0500488,-0.0497437,-0.0481873,-0.0466309,-0.0420837,-0.0354004,-0.0275879,-0.0195007,-0.0137329,-0.00952148,-0.00686646,-0.00265503,-0.000305176,0.0015564,-0.000152588,-0.00109863,-0.000793457,0,0.00341797,0.00497437,0.00656128,0.0093689,0.0115356,0.0146484,0.0171509,0.0165405,0.014801,0.0101318,0.00671387,0.00109863,-0.00622559,-0.0133972,-0.0221558,-0.0300903,-0.0358582,-0.0414734,-0.04599,-0.0502014,-0.0533142,-0.0552063,-0.0550537,-0.0539551,-0.0522461,-0.0509949,-0.0473938,-0.0430298,-0.037262,-0.0313416,-0.0260315,-0.0213623,-0.0152893,-0.00918579,-0.00201416,0.00390625,0.0093689,0.014801,0.0212097,0.0286865,0.0363159,0.0445862,0.0511475,0.0580139,0.0645447,0.0698547,0.073761,0.0768738,0.0776367,0.076416,0.073761,0.0681458,0.0603333,0.0533142,0.0450745,0.0375671,0.0297852,0.0226135,0.0144958,0.00952148,0.00436401,0.0015564,-0.00201416,-0.006073,-0.0110779,-0.0165405,-0.0216675,-0.0274353,-0.0327454,-0.0385132,-0.0427246,-0.0466309,-0.0484924,-0.0484924,-0.0466309,-0.043335,-0.0377197,-0.0317993,-0.0243225,-0.0176086,-0.0102844,-0.00390625,0.00201416,0.00796509,0.0115356,0.0133972,0.0143433,0.0152893,0.0160522,0.0166931,0.0154419,0.014801,0.0132446,0.0126343,0.0107727,0.00997925,0.00717163,0.0045166,-0.000152588,-0.00405884,-0.00872803,-0.0123291,-0.0185547,-0.0237122,-0.0293274,-0.0344543,-0.0394592,-0.0439758,-0.0487976,-0.0527039,-0.0558167,-0.0578613,-0.059082,-0.0587769,-0.0587769,-0.0558167,-0.0539551,-0.0491028,-0.0461426,-0.0413208,-0.0371094,-0.0314941,-0.0265198,-0.0223083,-0.0184021,-0.0152893,-0.0109253,-0.00796509,-0.00421143,-0.00140381,-0.000152588,0.00170898,0.00296021,0.00515747,0.00656128,0.00686646,0.00656128,0.00515747,0.00405884,0.000793457,-0.00170898,-0.00622559,-0.0113831,-0.0154419,-0.0202637,-0.0240173,-0.0286865,-0.033844,-0.0396118,-0.0438232,-0.0480347,-0.0519104,-0.0562744,-0.0620422,-0.0665894,-0.0706177,-0.0732727,-0.07547,-0.0782776,-0.0805969,-0.084198,-0.0873108,-0.0905762,-0.0941772,-0.0969849,-0.0997925,-0.101959,-0.103363,-0.101654,-0.0932312,-0.0790405,-0.0562744,-0.0307312,-0.00250244,0.0249329,0.0533142,0.0838928,0.113342,0.137207,0.151703,0.1539,0.147491,0.138153,0.128479,0.118958,0.108826,0.0955811,0.0843506,0.08078,0.086853,0.10025,0.116943,0.132385,0.144531,0.152191,0.156219,0.152802,0.140656,0.117889,0.0877686,0.0531616,0.0182495,-0.0146484,-0.0424194,-0.0612793,-0.0706177,-0.0692139,-0.0592651,-0.0414734,-0.0187073,0.00701904,0.0324402,0.0516052,0.0631409,0.063446,0.0562744,0.0420837,0.0237122,0.00201416,-0.0226135,-0.0462952,-0.0648499,-0.0726624,-0.0690613,-0.0555115,-0.0366516,-0.014801,0.00842285,0.0317993,0.0527039,0.0667419,0.0712585,0.0640869,0.0467834,0.0224609,-0.00701904,-0.0375671,-0.0676575,-0.0926208,-0.111633,-0.121918,-0.12442,-0.119446,-0.106659,-0.0895081,-0.0697021,-0.0506592,-0.0360107,-0.0255737,-0.0213623,-0.0216675,-0.0258789,-0.0332031,-0.0439758,-0.0534668,-0.0595703,-0.0601807,-0.0531616,-0.0410156,-0.0237122,-0.00280762,0.0218201,0.0495911,0.0770264,0.102295,0.119598,0.132385,0.138916,0.142059,0.140656,0.135193,0.126282,0.115234,0.105865,0.0982361,0.0923157,0.0881042,0.0843506,0.0823364,0.0799866,0.0779724,0.0732727,0.0662537,0.0555115,0.0422668,0.0266724,0.00857544,-0.00982666,-0.0303955,-0.0495911,-0.0665894,-0.0812378,-0.0921631,-0.0999451,-0.104462,-0.10556,-0.104156,-0.100403,-0.0949707,-0.0891724,-0.0830994,-0.0768738,-0.0709534,-0.0653381,-0.0597229,-0.0545654,-0.0497437,-0.0439758,-0.0383606,-0.0317993,-0.0246277,-0.0169983,-0.00888062,-0.00140381,0.006073,0.0123291,0.0193481,0.025116,0.0305481,0.0330505,0.0321045,0.0308838,0.0297852,0.0293274,0.0280762,0.0227661,0.0165405,0.00888062,0.00280762,-0.00436401,-0.0118408,-0.019165,-0.0247803,-0.0279236,-0.0288391,-0.0289917,-0.0269775,-0.0244751,-0.0212097,-0.0169983,-0.0119934,-0.00762939,-0.00341797,0.000152588,0.00296021,0.00701904,0.00918579,0.0129395,0.0163574,0.0210571,0.0279236,0.0350952,0.0445862,0.0536499,0.0608215,0.0656433,0.0697021,0.076416,0.0835876,0.086853,0.0854492,0.0790405,0.0717163,0.0645447,0.0561218,0.0441284,0.0313416,0.0187073,0.0093689,0.00250244,-0.00341797,-0.0102844,-0.0158997,-0.0221558,-0.0272827,-0.0319519,-0.0366516,-0.0430298,-0.0502014,-0.0586243,-0.0675049,-0.0760803,-0.083252,-0.0882568,-0.0916748,-0.0927734,-0.0896606,-0.0840454,-0.0743713,-0.0642395,-0.053009,-0.0397644,-0.0246277,-0.0105896,0.000793457,0.00778198,0.0138855,0.0195007,0.0244751,0.0280762,0.02948,0.031189,0.0327454,0.0354004,0.038208,0.0413208,0.0452271,0.0478821,0.0491028,0.050354,0.0487976,0.0464783,0.0413208,0.0343018,0.0252686,0.0138855,0.00109863,-0.0105896,-0.0232239,-0.0347595,-0.0464783,-0.0555115,-0.0626831,-0.0664368,-0.0670471,-0.0667419,-0.0657959,-0.0657959,-0.063446,-0.0629883,-0.0611267,-0.0611267,-0.0609741,-0.0611267,-0.0601807,-0.0597229,-0.0580139,-0.0566101,-0.0533142,-0.0489502,-0.0419312,-0.0352478,-0.0277405,-0.0215149,-0.0158997,-0.0112305,-0.00811768,-0.00622559,-0.00701904,-0.00952148,-0.0144958,-0.0205688,-0.0286865,-0.0379028,-0.048645,-0.0598755,-0.0701599,-0.0795288,-0.0879517,-0.0957336,-0.105713,-0.113983,-0.120697,-0.123657,-0.123169,-0.118652,-0.109131,-0.0924683,-0.0718689,-0.04599,-0.0184021,0.00762939,0.0317993,0.0531616,0.0723572,0.0856018,0.0940247,0.0960388,0.0958862,0.0951233,0.0971375,0.101807,0.108063,0.116302,0.126282,0.140808,0.159363,0.179138,0.198029,0.213135,0.222351,0.224823,0.220642,0.206909,0.184143,0.152802,0.116943,0.0790405,0.0431824,0.0115356,-0.0137329,-0.0302429,-0.0374146,-0.0357056,-0.0261841,-0.0141907,-0.00186157,0.00827026,0.0140381,0.0140381,0.00405884,-0.0123291,-0.0360107,-0.0626831,-0.0896606,-0.113525,-0.132385,-0.14328,-0.145325,-0.137054,-0.1185,-0.092926,-0.0618896,-0.0300903,-0.00186157,0.0210571,0.0357056,0.041626,0.0377197,0.0240173,0.00265503,-0.0232239,-0.0491028,-0.0701599,-0.0865479,-0.092926,-0.094635,-0.0884094,-0.0746765,-0.0572205,-0.0375671,-0.0185547,-0.00311279,0.00576782,0.00997925,0.00686646,-0.000610352,-0.0132446,-0.0275879,-0.0422668,-0.0539551,-0.0611267,-0.0612793,-0.0544128,-0.0403748,-0.0209045,0.00360107,0.0302429,0.0575256,0.0827942,0.103363,0.118195,0.128021,0.131744,0.131744,0.127533,0.122406,0.117554,0.115082,0.114899,0.11615,0.119904,0.124115,0.129425,0.133301,0.134094,0.130829,0.124573,0.113678,0.0993347,0.0818481,0.0620422,0.041626,0.0205688,0.000946045,-0.0174561,-0.0332031,-0.0478821,-0.0604858,-0.0712585,-0.08078,-0.0890198,-0.0982361,-0.107117,-0.115997,-0.123505,-0.128937,-0.133453,-0.135651,-0.134552,-0.130493,-0.123505,-0.115692,-0.106171,-0.0960388,-0.0854492,-0.0745239,-0.0657959,-0.0575256,-0.0514526,-0.0444336,-0.0375671,-0.0291443,-0.0215149,-0.0126343,-0.00436401,0.00671387,0.0180969,0.0291443,0.0396118,0.0487976,0.0556641,0.0614319,0.0628357,0.0620422,0.0575256,0.0511475,0.0436707,0.0349121,0.0272827,0.0198059,0.0146484,0.0115356,0.0132446,0.0155945,0.0199585,0.0249329,0.0291443,0.0322876,0.033844,0.0325928,0.0293274,0.0247803,0.0177612,0.0110779,0.00637817,0.00341797,0.00390625,0.00592041,0.0109253,0.019165,0.0302429,0.041626,0.0519104,0.0600281,0.0645447,0.0667419,0.0643921,0.0587769,0.0505066,0.0403748,0.0313416,0.0184021,0.006073,-0.00436401,-0.0102844,-0.00778198,-0.00796509,-0.00622559,-0.00732422,-0.00888062,-0.00827026,-0.0124817,-0.0162048,-0.0279236,-0.0413208,-0.0548706,-0.0692139,-0.0785828,-0.0909119,-0.0985413,-0.104004,-0.105865,-0.0974426,-0.0895081,-0.0762329,-0.0639343,-0.0522461,-0.0375671,-0.0255737,-0.0152893,-0.0119934,-0.00918579,-0.00888062,-0.00762939,-0.00732422,-0.00717163,-0.00762939,-0.00622559,0.000793457,0.0102844,0.0230713,0.0325928,0.0422668,0.0500488,0.0555115,0.0594177,0.0584717,0.0523987,0.0427246,0.0297852,0.0158997,0.000946045,-0.0132446,-0.0282288,-0.0405273,-0.0500488,-0.0567627,-0.0604858,-0.0632935,-0.0661011,-0.0654907,-0.0671997,-0.0686035,-0.0715637,-0.0802917,-0.0891724,-0.101654,-0.111786,-0.121918,-0.13208,-0.141113,-0.149689,-0.15451,-0.157471,-0.154663,-0.149384,-0.14267,-0.133942,-0.123962,-0.107574,-0.0852966,-0.0561218,-0.0233765,0.00796509,0.0360107,0.0622253,0.0845032,0.104462,0.120697,0.129578,0.130676,0.125519,0.11911,0.112732,0.111481,0.113831,0.118958,0.123657,0.131592,0.140167,0.152191,0.165131,0.176514,0.184753,0.185699,0.178986,0.164337,0.14328,0.11554,0.0830994,0.0478821,0.0129395,-0.0174561,-0.0389709,-0.0508423,-0.052063,-0.0453796,-0.0328979,-0.0137329,0.00732422,0.0293274,0.0456848,0.0553589,0.054718,0.0434875,0.025116,0.00265503,-0.0216675,-0.0444336,-0.0643921,-0.0805969,-0.0895081,-0.0884094,-0.0774841,-0.0570679,-0.0324402,-0.00622559,0.0157471,0.0319519,0.041626,0.0430298,0.0343018,0.0165405,-0.0093689,-0.0403748,-0.0729675,-0.100891,-0.123016,-0.137207,-0.143433,-0.142059,-0.13269,-0.117401,-0.0993347,-0.0791931,-0.0625305,-0.0508423,-0.0447388,-0.0444336,-0.0487976,-0.0556641,-0.0646973,-0.0751648,-0.0818481,-0.0846558,-0.0796814,-0.0676575,-0.0470886,-0.0229187,0.00482178,0.0336914,0.0622253,0.0891724,0.111633,0.127533,0.137848,0.142212,0.142212,0.140808,0.138611,0.137512,0.136902,0.138,0.140808,0.145325,0.149231,0.153595,0.154053,0.151245,0.144531,0.132843,0.118805,0.10025,0.079834,0.0576782,0.0357056,0.0157471,-0.00265503,-0.0176086,-0.0289917,-0.0394592,-0.0478821,-0.0555115,-0.063446,-0.0712585,-0.0799866,-0.0895081,-0.0993347,-0.109467,-0.118652,-0.124725,-0.127533,-0.125519,-0.118805,-0.108978,-0.0966797,-0.081543,-0.0671997,-0.0514526,-0.0375671,-0.0255737,-0.0187073,-0.0138855,-0.0127869,-0.0119934,-0.0105896,-0.00762939,-0.00311279,0.00311279,0.0119934,0.0226135,0.0347595,0.0464783,0.0558167,0.0629883,0.0654907,0.0643921,0.0587769,0.0497437,0.0358582,0.0210571,0.00531006,-0.00796509,-0.0176086,-0.0244751,-0.0257263,-0.0243225,-0.0185547,-0.0110779,-0.000946045,0.00982666,0.0171509,0.0218201,0.0223083,0.0187073,0.0121765,0.00265503,-0.00622559,-0.0152893,-0.0195007,-0.0210571,-0.0171509,-0.00918579,0.00390625,0.0201111,0.0385132,0.057373,0.0723572,0.0837402,0.0895081,0.0888672,0.0818481,0.0697021,0.0531616,0.0361633,0.0190125,0.00497437,-0.00531006,-0.0118408,-0.0137329,-0.0112305,-0.00592041,0.000793457,0.00701904,0.0102844,0.0090332,0.00326538,-0.00671387,-0.020752,-0.038208,-0.057373,-0.0770264,-0.0941772,-0.106171,-0.11319,-0.113983,-0.110229,-0.100555,-0.085907,-0.0678406,-0.0502014,-0.0347595,-0.0230713,-0.0160522,-0.0118408,-0.0124817,-0.0162048,-0.0230713,-0.0310364,-0.0369568,-0.0407104,-0.0394592,-0.0347595,-0.0269775,-0.0168457,-0.00515747,0.00515747,0.0143433,0.0196533,0.0196533,0.0141907,0.00341797,-0.0119934,-0.0308838,-0.053009,-0.0751648,-0.0969849,-0.116302,-0.132233,-0.145325,-0.1539,-0.15921,-0.159515,-0.157471,-0.151398,-0.140167,-0.124573,-0.101654,-0.0743713,-0.0470886,-0.0212097,0.00140381,0.0210571,0.0385132,0.0527039,0.0651855,0.0718689,0.0736084,0.0736084,0.07547,0.082489,0.0960388,0.112579,0.130676,0.14859,0.167603,0.188354,0.209564,0.228424,0.242462,0.247437,0.243561,0.229828,0.206116,0.174316,0.135956,0.0938721,0.0514526,0.0132446,-0.0166931,-0.0352478,-0.0420837,-0.0383606,-0.0266724,-0.0105896,0.00872803,0.0274353,0.0405273,0.043335,0.0349121,0.0141907,-0.0171509,-0.053009,-0.0898132,-0.123322,-0.15094,-0.169952,-0.177429,-0.170898,-0.150635,-0.117249,-0.0779724,-0.035553,0.00265503,0.0344543,0.0559692,0.0662537,0.0615845,0.0448914,0.0171509,-0.0173035,-0.0528564,-0.085144,-0.109467,-0.123016,-0.125977,-0.11615,-0.0971375,-0.0701599,-0.0394592,-0.00952148,0.0144958,0.031189,0.0361633,0.0321045,0.0168457,-0.00561523,-0.0324402,-0.0597229,-0.0829468,-0.0999451,-0.107117,-0.103058,-0.0874634,-0.0606384,-0.0280762,0.00811768,0.044281,0.0770264,0.103699,0.123016,0.132996,0.133453,0.12677,0.115082,0.101959,0.0901184,0.0818481,0.0782776,0.0793762,0.0843506,0.0947876,0.107422,0.121155,0.131897,0.138,0.137207,0.130035,0.117706,0.0999451,0.0778198,0.053009,0.0272827,0.00234985,-0.0198059,-0.0374146,-0.0527039,-0.0648499,-0.0740662,-0.081543,-0.0867004,-0.0909119,-0.0949707,-0.0986938,-0.101349,-0.10556,-0.107117,-0.107727,-0.106964,-0.103699,-0.0999451,-0.0941772,-0.0874634,-0.0790405,-0.0698547,-0.0595703,-0.0498962,-0.0396118,-0.0297852,-0.0202637,-0.00952148,0.00280762,0.0157471,0.0305481,0.0444336,0.0572205,0.0690613,0.0785828,0.0874634,0.0935669,0.0955811,0.0921631,0.0845032,0.0750122,0.0625305,0.0513,0.0407104,0.0303955,0.0224609,0.0163574,0.0138855,0.0141907,0.0171509,0.0215149,0.0232239,0.0233765,0.0180969,0.0102844,-0.00219727,-0.0165405,-0.0341492,-0.0523987,-0.0676575,-0.0791931,-0.0838928,-0.0826416,-0.0740662,-0.0604858,-0.0422668,-0.0198059,0.00140381,0.0213623,0.035553,0.0439758,0.0467834,0.0414734,0.0336914,0.0201111,0.00778198,-0.00375366,-0.0123291,-0.0163574,-0.0155945,-0.00918579,0.00170898,0.0168457,0.0316467,0.0458374,0.0564575,0.0612793,0.0600281,0.0511475,0.0361633,0.014801,-0.00997925,-0.0368042,-0.0611267,-0.0812378,-0.094635,-0.101349,-0.100891,-0.0941772,-0.0835876,-0.0703125,-0.0581665,-0.0484924,-0.0430298,-0.0428772,-0.0497437,-0.0632935,-0.0812378,-0.1026,-0.122864,-0.14032,-0.154999,-0.163879,-0.169342,-0.169342,-0.164978,-0.156555,-0.144226,-0.132385,-0.122101,-0.109924,-0.0941772,-0.0714111,-0.0436707,-0.0135803,0.0138855,0.0360107,0.0552063,0.0750122,0.0955811,0.113037,0.12085,0.119751,0.112732,0.106964,0.106323,0.112579,0.121307,0.129089,0.134857,0.141571,0.152008,0.168549,0.18634,0.202393,0.210815,0.208771,0.19693,0.176178,0.148743,0.111328,0.0692139,0.0213623,-0.0218201,-0.0562744,-0.0760803,-0.0804443,-0.0709534,-0.0514526,-0.0243225,0.00811768,0.0422668,0.0734253,0.0932312,0.0985413,0.0838928,0.0545654,0.0176086,-0.020752,-0.0581665,-0.0930786,-0.120209,-0.137207,-0.137848,-0.119446,-0.0840454,-0.0396118,0.00732422,0.0495911,0.0856018,0.108215,0.117889,0.108826,0.0820007,0.0397644,-0.0141907,-0.0709534,-0.122711,-0.166382,-0.195068,-0.207672,-0.2052,-0.186646,-0.15686,-0.119446,-0.0802917,-0.0452271,-0.0185547,-0.00622559,-0.00732422,-0.0237122,-0.048645,-0.0801392,-0.11319,-0.142212,-0.165131,-0.174622,-0.168243,-0.144531,-0.104156,-0.0553589,0.000457764,0.0552063,0.106964,0.153412,0.188202,0.210968,0.217834,0.212067,0.196472,0.178986,0.161377,0.146881,0.136108,0.130341,0.131744,0.139862,0.155304,0.171967,0.18866,0.197388,0.199738,0.193176,0.177917,0.155151,0.124573,0.0863953,0.0444336,0.00109863,-0.0391235,-0.0745239,-0.104156,-0.128632,-0.146423,-0.159027,-0.165436,-0.165436,-0.161682,-0.156403,-0.15094,-0.145782,-0.142822,-0.138763,-0.136444,-0.132843,-0.130188,-0.126923,-0.123657,-0.118042,-0.109619,-0.0982361,-0.0816956,-0.0622253,-0.0385132,-0.0144958,0.0110779,0.0343018,0.057373,0.0779724,0.0982361,0.115692,0.128632,0.137054,0.137665,0.133148,0.124725,0.114288,0.101807,0.0871582,0.0717163,0.0555115,0.0402222,0.0310364,0.0266724,0.0274353,0.0300903,0.0333557,0.0350952,0.035553,0.0321045,0.0244751,0.0115356,-0.00732422,-0.0277405,-0.0492859,-0.0690613,-0.084198,-0.0958862,-0.100403,-0.0975952,-0.0873108,-0.0704651,-0.0480347,-0.0246277,-0.00201416,0.0188599,0.0327454,0.0427246,0.0450745,0.0407104,0.0313416,0.0152893,-0.00201416,-0.0202637,-0.0327454,-0.0410156,-0.0417786,-0.037262,-0.0282288,-0.0173035,-0.00326538,0.00997925,0.020752,0.0237122,0.0188599,0.00311279,-0.0202637,-0.0483398,-0.0799866,-0.112732,-0.144684,-0.17337,-0.194733,-0.206299,-0.208466,-0.203491,-0.193817,-0.182434,-0.170105,-0.159668,-0.152496,-0.151855,-0.158875,-0.171356,-0.18634,-0.19754,-0.197876,-0.183044,-0.153412,-0.111176,-0.0606384,-0.00656128,0.0502014,0.106018,0.16217,0.211426,0.243073,0.255554,0.251801,0.237457,0.222656,0.212524,0.206757,0.201141,0.196625,0.19754,0.209412,0.23465,0.267395,0.300934,0.3237,0.332123,0.324799,0.300781,0.260376,0.203156,0.130341,0.0492859,-0.0299377,-0.0991516,-0.148132,-0.17572,-0.18103,-0.168854,-0.142517,-0.105713,-0.063446,-0.0247803,0.00296021,0.0121765,-0.00234985,-0.0369568,-0.0823364,-0.131897,-0.176819,-0.217499,-0.245422,-0.259918,-0.252747,-0.221252,-0.165283,-0.0955811,-0.0210571,0.046936,0.104614,0.146576,0.171204,0.17337,0.1539,0.112732,0.0575256,-0.00186157,-0.0562744,-0.0980835,-0.123962,-0.133148,-0.123016,-0.0966797,-0.0587769,-0.0144958,0.0302429,0.0653381,0.0882568,0.0915222,0.0767212,0.044281,-0.000457764,-0.0509949,-0.102753,-0.149384,-0.184143,-0.202545,-0.201294,-0.178528,-0.137207,-0.0830994,-0.0229187,0.0360107,0.0896606,0.134247,0.165741,0.181793,0.182587,0.169189,0.147491,0.123016,0.102142,0.0888672,0.0840454,0.0879517,0.102295,0.12381,0.152802,0.182892,0.210327,0.229828,0.238251,0.233246,0.217194,0.189453,0.152954,0.109314,0.0600281,0.0109253,-0.035553,-0.0750122,-0.106171,-0.130035,-0.145935,-0.156067,-0.160126,-0.159515,-0.156219,-0.152191,-0.15155,-0.153412,-0.160126,-0.168701,-0.179321,-0.188354,-0.19693,-0.202545,-0.204254,-0.200195,-0.189911,-0.172455,-0.148743,-0.123322,-0.0940247,-0.0642395,-0.0322876,-0.000152588,0.0328979,0.0628357,0.0896606,0.112274,0.130188,0.145477,0.154053,0.157959,0.154205,0.146729,0.136261,0.128479,0.123505,0.121765,0.121613,0.121307,0.123169,0.125519,0.128326,0.129578,0.125977,0.115997,0.0994873,0.0778198,0.0528564,0.0261841,-0.00311279,-0.0308838,-0.0592651,-0.083252,-0.103058,-0.114594,-0.119293,-0.11554,-0.108521,-0.0977478,-0.0852966,-0.0728149,-0.0604858,-0.052063,-0.0492859,-0.0555115,-0.0662537,-0.0809326,-0.094635,-0.107269,-0.115845,-0.122711,-0.124725,-0.121002,-0.11087,-0.0935669,-0.0760803,-0.0595703,-0.0480347,-0.0439758,-0.0472412,-0.0580139,-0.0726624,-0.0935669,-0.120209,-0.148743,-0.177124,-0.200043,-0.213287,-0.212219,-0.193176,-0.161224,-0.119751,-0.0743713,-0.02948,0.0113831,0.0466309,0.0748291,0.0930786,0.0966797,0.0867004,0.0667419,0.04599,0.0299377,0.0258789,0.0346069,0.054718,0.0823364,0.118652,0.162323,0.212372,0.26474,0.311371,0.34552,0.361908,0.360962,0.343353,0.312012,0.267242,0.213135,0.156219,0.103699,0.0643921,0.0417786,0.036499,0.0461426,0.0665894,0.0944824,0.12381,0.150635,0.16684,0.166199,0.146088,0.105103,0.0455322,-0.0227661,-0.0933838,-0.157623,-0.212219,-0.253052,-0.277222,-0.282074,-0.268036,-0.234039,-0.18866,-0.14032,-0.0968323,-0.0639343,-0.0453796,-0.0414734,-0.0514526,-0.0759277,-0.111633,-0.154663,-0.19693,-0.22998,-0.249329,-0.251801,-0.236053,-0.205658,-0.160767,-0.108368,-0.0523987,0.00170898,0.0461426,0.0784302,0.0943298,0.094635,0.0804443,0.0558167,0.0246277,-0.00515747,-0.0313416,-0.0487976,-0.0534668,-0.0455322,-0.0243225,0.00918579,0.0502014,0.0933838,0.133942,0.167145,0.19101,0.202698,0.202545,0.191925,0.170258,0.143433,0.114288,0.0887146,0.0700073,0.0601807,0.0575256,0.0642395,0.0776367,0.0961914,0.117401,0.13736,0.153259,0.161377,0.161987,0.153748,0.139252,0.118347,0.092926,0.065033,0.0352478,0.00747681,-0.0168457,-0.0352478,-0.0480347,-0.0558167,-0.0597229,-0.0606384,-0.0604858,-0.057373,-0.0558167,-0.0552063,-0.057373,-0.0654907,-0.0762329,-0.0898132,-0.103699,-0.116638,-0.128632,-0.139252,-0.149536,-0.157318,-0.160919,-0.159027,-0.152008,-0.14032,-0.124268,-0.107117,-0.0867004,-0.0657959,-0.0438232,-0.0223083,-0.00497437,0.00747681,0.0132446,0.0152893,0.0132446,0.010437,0.00762939,0.00531006,0.00326538,0.00497437,0.0116882,0.0229187,0.0400696,0.0589294,0.0774841,0.0944824,0.108215,0.119904,0.125366,0.12442,0.115082,0.0979309,0.0725098,0.0448914,0.0168457,-0.00842285,-0.0283813,-0.044281,-0.0523987,-0.0552063,-0.048645,-0.038208,-0.0247803,-0.0152893,-0.0124817,-0.0162048,-0.0280762,-0.0441284,-0.0671997,-0.0949707,-0.128937,-0.164795,-0.19693,-0.220947,-0.235748,-0.24231,-0.241821,-0.23465,-0.222046,-0.203003,-0.17807,-0.147034,-0.113831,-0.08078,-0.04599,-0.0151367,0.00952148,0.0254211,0.0328979,0.0346069,0.0346069,0.033844,0.0322876,0.0307312,0.0302429,0.0336914,0.0461426,0.0675049,0.0965271,0.128479,0.156708,0.181946,0.199585,0.214233,0.222046,0.223114,0.214233,0.196777,0.169952,0.135193,0.0957336,0.0581665,0.0252686,0.000793457,-0.0162048,-0.0202637,-0.0149536,0.00311279,0.0314941,0.0664368,0.0996399,0.127533,0.145172,0.152344,0.147034,0.127869,0.0938721,0.0498962,0.00311279,-0.0379028,-0.0695496,-0.0870056,-0.092926,-0.0862122,-0.0679932,-0.0374146,0.00296021,0.0444336,0.0809326,0.104004,0.111786,0.103058,0.0788879,0.0397644,-0.0113831,-0.0678406,-0.125824,-0.176971,-0.216736,-0.241364,-0.248077,-0.238251,-0.21283,-0.176361,-0.137207,-0.0991516,-0.0667419,-0.0448914,-0.0360107,-0.039917,-0.0569153,-0.0843506,-0.114441,-0.14502,-0.166992,-0.178223,-0.175415,-0.15686,-0.12442,-0.078125,-0.0223083,0.0377197,0.0957336,0.147827,0.187256,0.216095,0.22937,0.231232,0.221252,0.204102,0.181641,0.160919,0.143921,0.134247,0.134247,0.141113,0.155151,0.171967,0.189606,0.205505,0.216736,0.219391,0.212982,0.19397,0.165131,0.128632,0.0873108,0.0456848,0.00186157,-0.0383606,-0.0740662,-0.102448,-0.119446,-0.127686,-0.127533,-0.122559,-0.114136,-0.105103,-0.0952759,-0.0863953,-0.0810852,-0.0813904,-0.0873108,-0.09729,-0.106506,-0.114899,-0.117889,-0.118042,-0.115845,-0.109314,-0.0986938,-0.0827942,-0.0608215,-0.035553,-0.00918579,0.0157471,0.035553,0.0548706,0.0709534,0.0830994,0.0899658,0.0881042,0.0770264,0.0617371,0.0434875,0.0258789,0.0105896,-0.00375366,-0.0138855,-0.0204163,-0.0215149,-0.0179443,-0.0124817,-0.00531006,-0.000946045,0.0015564,-0.000457764,-0.00732422,-0.0188599,-0.0347595,-0.0550537,-0.076416,-0.0983887,-0.116791,-0.131287,-0.137207,-0.135803,-0.128784,-0.115692,-0.10025,-0.0820007,-0.0631409,-0.0448914,-0.0317993,-0.0280762,-0.0303955,-0.0407104,-0.0559692,-0.0760803,-0.09729,-0.119293,-0.138763,-0.15155,-0.154205,-0.151398,-0.145172,-0.136108,-0.116486,-0.0867004,-0.0462952,0.000152588,0.0427246,0.0731201,0.0909119,0.100891,0.106812,0.105713,0.0969849,0.0785828,0.0525513,0.0246277,0.00546265,-0.000152588,0.00997925,0.0314941,0.0603333,0.0901184,0.120514,0.149536,0.175415,0.198639,0.21347,0.213287,0.197876,0.170258,0.132233,0.0905762,0.0487976,0.0121765,-0.0223083,-0.0483398,-0.0587769,-0.0497437,-0.0252686,0.0102844,0.0508423,0.0887146,0.120697,0.147491,0.164795,0.164642,0.14328,0.102295,0.0492859,-0.00637817,-0.0555115,-0.0947876,-0.121307,-0.134552,-0.134247,-0.118652,-0.0856018,-0.0420837,0.00576782,0.0478821,0.0782776,0.0890198,0.08078,0.0584717,0.0233765,-0.0249329,-0.0793762,-0.136902,-0.187408,-0.226868,-0.245575,-0.244171,-0.225616,-0.194733,-0.154053,-0.108521,-0.0628357,-0.0215149,0.0110779,0.0269775,0.0265198,0.0121765,-0.0116882,-0.039917,-0.0654907,-0.0881042,-0.101196,-0.10321,-0.0884094,-0.059082,-0.0158997,0.0369568,0.0915222,0.143433,0.187408,0.22171,0.241669,0.24823,0.242004,0.224213,0.195221,0.164642,0.134094,0.109467,0.092926,0.0857544,0.0857544,0.0904236,0.10025,0.112274,0.123962,0.131897,0.133789,0.125671,0.109772,0.0856018,0.0556641,0.0205688,-0.0157471,-0.0522461,-0.0870056,-0.11554,-0.13504,-0.145935,-0.148743,-0.143921,-0.133789,-0.120361,-0.103363,-0.0857544,-0.0690613,-0.0555115,-0.0466309,-0.0414734,-0.0417786,-0.0431824,-0.0461426,-0.0480347,-0.0506592,-0.0498962,-0.0480347,-0.039917,-0.0275879,-0.00967407,0.0105896,0.0332031,0.054718,0.0751648,0.0916748,0.104614,0.11087,0.110077,0.101501,0.087616,0.0689087,0.0478821,0.0238647,0.00125122,-0.0209045,-0.0371094,-0.0487976,-0.0531616,-0.0523987,-0.0467834,-0.0396118,-0.031189,-0.0255737,-0.0235291,-0.0293274,-0.0413208,-0.0615845,-0.087616,-0.117889,-0.147186,-0.173553,-0.193817,-0.204712,-0.208313,-0.201447,-0.186798,-0.165283,-0.140472,-0.116302,-0.0986938,-0.0905762,-0.0879517,-0.0926208,-0.102448,-0.1185,-0.140656,-0.166992,-0.193512,-0.209869,-0.208618,-0.187256,-0.147034,-0.0895081,-0.0224609,0.0480347,0.114899,0.177277,0.227814,0.257751,0.265381,0.249634,0.214874,0.16684,0.11554,0.0718689,0.0431824,0.033844,0.042572,0.0676575,0.10556,0.152954,0.205353,0.259918,0.303436,0.327759,0.325714,0.299377,0.250092,0.180542,0.0986938,0.0132446,-0.0675049,-0.132233,-0.168854,-0.174622,-0.153595,-0.111023,-0.0495911,0.0215149,0.0923157,0.154999,0.195831,0.206604,0.182434,0.131287,0.0615845,-0.0171509,-0.0975952,-0.167145,-0.217987,-0.242615,-0.240417,-0.211426,-0.158417,-0.0895081,-0.013092,0.0595703,0.116791,0.148743,0.147186,0.119446,0.0692139,-0.000152588,-0.08078,-0.163879,-0.238556,-0.295776,-0.324951,-0.323212,-0.296265,-0.249634,-0.186005,-0.115997,-0.0472412,0.0090332,0.0481873,0.0640869,0.0569153,0.0303955,-0.0113831,-0.0594177,-0.107117,-0.143433,-0.165741,-0.165741,-0.142059,-0.0947876,-0.0296326,0.0484924,0.128784,0.203796,0.268951,0.316376,0.343658,0.348785,0.335541,0.307312,0.266479,0.22171,0.181183,0.146576,0.125519,0.1185,0.122101,0.133942,0.152191,0.174164,0.193665,0.204712,0.2052,0.193665,0.168243,0.131897,0.0849915,0.0279236,-0.0319519,-0.091217,-0.143921,-0.18634,-0.217346,-0.238403,-0.24588,-0.242004,-0.227631,-0.2052,-0.178375,-0.150146,-0.125671,-0.105255,-0.0909119,-0.0821838,-0.0791931,-0.0795288,-0.0838928,-0.0909119,-0.0975952,-0.101349,-0.09729,-0.084198,-0.0625305,-0.0317993,0.00515747,0.0452271,0.0870056,0.126465,0.161224,0.187408,0.202545,0.204712,0.194122,0.171509,0.14032,0.104156,0.0661011,0.0285339,-0.00326538,-0.0271301,-0.0403748,-0.043335,-0.0374146,-0.0240173,-0.00888062,0.00576782,0.0154419,0.0166931,0.00686646,-0.0162048,-0.050354,-0.0954285,-0.144531,-0.193817,-0.236053,-0.266937,-0.284698,-0.289398,-0.282379,-0.266327,-0.243866,-0.21814,-0.190521,-0.166687,-0.14859,-0.138916,-0.14267,-0.16153,-0.187103,-0.210815,-0.221252,-0.217041,-0.194733,-0.153748,-0.101349,-0.039917,0.0297852,0.105408,0.176666,0.234344,0.270355,0.282532,0.267242,0.232941,0.190857,0.149689,0.119598,0.0994873,0.092926,0.0983887,0.115845,0.147827,0.192566,0.244019,0.2883,0.315125,0.318237,0.297668,0.254456,0.190857,0.114288,0.0300903,-0.0545654,-0.122406,-0.165894,-0.17868,-0.163879,-0.122253,-0.0592651,0.0132446,0.0882568,0.15686,0.2052,0.22171,0.205353,0.160583,0.0935669,0.0144958,-0.0632935,-0.128784,-0.174774,-0.196777,-0.19397,-0.162933,-0.109467,-0.0368042,0.0445862,0.11911,0.174011,0.195831,0.185394,0.150299,0.0910645,0.0119934,-0.0791931,-0.173859,-0.260864,-0.32666,-0.3591,-0.360809,-0.335693,-0.291718,-0.232178,-0.167297,-0.104156,-0.0516052,-0.0174561,-0.00982666,-0.0266724,-0.0618896,-0.109314,-0.158569,-0.203949,-0.235748,-0.248535,-0.239014,-0.203644,-0.143433,-0.0651855,0.0247803,0.116943,0.201294,0.271759,0.3237,0.353638,0.363922,0.355957,0.331329,0.296722,0.25882,0.22406,0.199738,0.187897,0.190521,0.201904,0.220795,0.243378,0.267548,0.285797,0.293457,0.287506,0.265533,0.22937,0.179138,0.119293,0.0522461,-0.0173035,-0.0838928,-0.142822,-0.189758,-0.224365,-0.24527,-0.251038,-0.245117,-0.229675,-0.209076,-0.18634,-0.163727,-0.146088,-0.133148,-0.12677,-0.126129,-0.130829,-0.136597,-0.142365,-0.142975,-0.141266,-0.13269,-0.118195,-0.0968323,-0.0665894,-0.0293274,0.0137329,0.0575256,0.0996399,0.137207,0.166992,0.188354,0.198029,0.195221,0.178528,0.151398,0.117249,0.0802917,0.0444336,0.0152893,-0.00811768,-0.0212097,-0.0271301,-0.026825,-0.0215149,-0.0138855,-0.00827026,-0.00918579,-0.0173035,-0.0341492,-0.0578613,-0.0887146,-0.12442,-0.16217,-0.200684,-0.234039,-0.263184,-0.286102,-0.300781,-0.30545,-0.300293,-0.285645,-0.263672,-0.238403,-0.217987,-0.205353,-0.19989,-0.193665,-0.183685,-0.16449,-0.133942,-0.0943298,-0.0516052,-0.00326538,0.0502014,0.10791,0.159973,0.205811,0.239197,0.256805,0.254303,0.238251,0.215027,0.193176,0.177582,0.170258,0.172455,0.178375,0.188202,0.206299,0.234039,0.265381,0.290161,0.301239,0.29422,0.264587,0.213135,0.145782,0.0651855,-0.0240173,-0.109619,-0.177277,-0.221558,-0.237793,-0.226868,-0.186157,-0.12381,-0.0500488,0.0282288,0.0994873,0.148285,0.167938,0.157318,0.119904,0.0580139,-0.0169983,-0.0932312,-0.154358,-0.197388,-0.212677,-0.200043,-0.160278,-0.0975952,-0.0146484,0.081543,0.175262,0.246033,0.282532,0.283783,0.252594,0.188965,0.102753,0.00170898,-0.107117,-0.209076,-0.290802,-0.337891,-0.351288,-0.333191,-0.287689,-0.22345,-0.153412,-0.085144,-0.0280762,0.00967407,0.0193481,0.000305176,-0.042572,-0.104309,-0.173553,-0.238556,-0.290314,-0.32135,-0.323395,-0.297821,-0.240906,-0.158722,-0.0586243,0.0483398,0.152954,0.244629,0.314026,0.358765,0.38028,0.377319,0.352692,0.31308,0.266785,0.222046,0.187103,0.168549,0.165283,0.175873,0.199097,0.232941,0.271606,0.306702,0.332886,0.344116,0.335083,0.3078,0.260071,0.196136,0.117401,0.0314941,-0.0541077,-0.133148,-0.19928,-0.25058,-0.282074,-0.294861,-0.28891,-0.270691,-0.240417,-0.205811,-0.17276,-0.145172,-0.124878,-0.114288,-0.114441,-0.123169,-0.140472,-0.160278,-0.181641,-0.19458,-0.199432,-0.190063,-0.168549,-0.130829,-0.0812378,-0.0209045,0.0419312,0.107117,0.165283,0.211273,0.242004,0.252594,0.244171,0.218292,0.179321,0.131134,0.08078,0.0328979,-0.00732422,-0.0343018,-0.0464783,-0.0456848,-0.0344543,-0.0160522,0.00405884,0.0202637,0.0277405,0.0249329,0.00637817,-0.0257263,-0.0695496,-0.123169,-0.182281,-0.243713,-0.301086,-0.34552,-0.373108,-0.383728,-0.375,-0.350983,-0.314484,-0.275818,-0.239349,-0.206451,-0.176025,-0.148285,-0.122406,-0.0955811,-0.0640869,-0.0327454,-0.000610352,0.035553,0.0734253,0.115082,0.159668,0.200836,0.232941,0.249176,0.253998,0.254944,0.257568,0.263184,0.266937,0.268494,0.268341,0.266632,0.266632,0.272552,0.281433,0.287994,0.285034,0.265839,0.231232,0.180237,0.119598,0.0511475,-0.0215149,-0.0943298,-0.157806,-0.205353,-0.231689,-0.22998,-0.202393,-0.156219,-0.103058,-0.0480347,0.00296021,0.0438232,0.0661011,0.0654907,0.0396118,-0.0093689,-0.0689087,-0.124878,-0.164337,-0.188202,-0.194275,-0.179932,-0.143616,-0.0849915,-0.00717163,0.0812378,0.166992,0.231537,0.266785,0.270538,0.246033,0.194733,0.123657,0.0379028,-0.0541077,-0.144836,-0.21875,-0.265991,-0.280334,-0.269592,-0.235138,-0.186646,-0.134247,-0.0827942,-0.037262,-0.00762939,0.000457764,-0.0184021,-0.057373,-0.111786,-0.171204,-0.225159,-0.265991,-0.289246,-0.291107,-0.268036,-0.219543,-0.146576,-0.0580139,0.0374146,0.130035,0.210815,0.274902,0.321503,0.34787,0.354889,0.34317,0.316986,0.284241,0.250732,0.222656,0.204254,0.198639,0.20285,0.216583,0.236847,0.260223,0.281433,0.297028,0.303436,0.295319,0.269745,0.227325,0.169495,0.100739,0.0254211,-0.052063,-0.126465,-0.191467,-0.245575,-0.283142,-0.303436,-0.304199,-0.290955,-0.265533,-0.234802,-0.20224,-0.174011,-0.149384,-0.132233,-0.12442,-0.126129,-0.135345,-0.149048,-0.164337,-0.174469,-0.176819,-0.168091,-0.149536,-0.118347,-0.0762329,-0.0230713,0.0368042,0.0993347,0.156403,0.202698,0.234985,0.249939,0.245422,0.223267,0.185089,0.136597,0.0813904,0.0297852,-0.0151367,-0.0441284,-0.0603333,-0.0611267,-0.0525513,-0.0374146,-0.019165,-0.0045166,0.0045166,0.00140381,-0.0155945,-0.0470886,-0.0937195,-0.150299,-0.212372,-0.274567,-0.331024,-0.375,-0.403839,-0.414764,-0.408966,-0.388092,-0.354889,-0.312012,-0.260376,-0.201599,-0.135803,-0.0704651,-0.0093689,0.04599,0.0916748,0.123169,0.141266,0.15155,0.160583,0.170563,0.175568,0.174316,0.170898,0.175262,0.193024,0.22641,0.271454,0.314636,0.347717,0.370483,0.385437,0.395264,0.395111,0.379517,0.344727,0.287048,0.210815,0.121307,0.0307312,-0.0509949,-0.118652,-0.171509,-0.202545,-0.215942,-0.2052,-0.170105,-0.115082,-0.0491028,0.00842285,0.0467834,0.0620422,0.0572205,0.0357056,-0.00201416,-0.0570679,-0.125824,-0.193329,-0.239655,-0.255096,-0.237793,-0.193817,-0.134094,-0.0643921,0.0163574,0.107727,0.198792,0.270844,0.307617,0.303589,0.263519,0.198639,0.120056,0.0336914,-0.0552063,-0.140808,-0.212677,-0.258514,-0.268646,-0.248077,-0.204895,-0.147644,-0.0896606,-0.041626,-0.00842285,0.00952148,0.00421143,-0.0257263,-0.0767212,-0.145935,-0.221863,-0.290314,-0.338654,-0.360321,-0.354553,-0.323212,-0.268341,-0.193024,-0.098999,0.00482178,0.10791,0.195679,0.263031,0.30545,0.326508,0.330383,0.317932,0.294373,0.263031,0.232941,0.210175,0.198792,0.203003,0.220459,0.247284,0.281586,0.316681,0.345367,0.362518,0.367035,0.357208,0.329773,0.284393,0.2211,0.142059,0.0538025,-0.0336914,-0.114746,-0.185242,-0.243225,-0.285797,-0.311066,-0.31604,-0.302032,-0.275208,-0.241211,-0.209076,-0.181641,-0.161682,-0.14859,-0.144531,-0.148895,-0.162476,-0.181183,-0.198944,-0.212524,-0.213928,-0.201599,-0.17511,-0.136902,-0.0874634,-0.0277405,0.0388184,0.10791,0.172607,0.225006,0.260559,0.27597,0.271912,0.247925,0.208771,0.157471,0.100891,0.0444336,-0.00482178,-0.0410156,-0.0618896,-0.0673523,-0.0623779,-0.0502014,-0.0385132,-0.0261841,-0.0184021,-0.0216675,-0.0407104,-0.0778198,-0.129883,-0.190369,-0.254608,-0.318542,-0.375305,-0.419891,-0.448273,-0.459351,-0.45343,-0.431122,-0.390411,-0.334778,-0.269745,-0.197388,-0.120056,-0.0379028,0.0400696,0.105255,0.150299,0.176819,0.193817,0.207062,0.21579,0.214386,0.200043,0.181946,0.175262,0.187561,0.21814,0.262268,0.313232,0.359406,0.397125,0.429108,0.452332,0.465881,0.460602,0.428009,0.364532,0.274261,0.167786,0.0589294,-0.041626,-0.130341,-0.203644,-0.257111,-0.280975,-0.270996,-0.227631,-0.157959,-0.0829468,-0.0169983,0.0297852,0.0603333,0.0720215,0.0608215,0.0210571,-0.0464783,-0.132843,-0.217651,-0.274109,-0.29657,-0.285797,-0.249786,-0.191162,-0.111786,-0.0143433,0.0991516,0.21283,0.30484,0.358612,0.366425,0.335083,0.275665,0.193329,0.0980835,-0.00436401,-0.10495,-0.192719,-0.251801,-0.274567,-0.262268,-0.222656,-0.166534,-0.103699,-0.0487976,-0.00732422,0.019165,0.0219727,-0.00341797,-0.0555115,-0.128937,-0.213135,-0.292511,-0.352539,-0.388092,-0.396362,-0.378418,-0.333038,-0.261169,-0.166992,-0.0583191,0.050354,0.150299,0.229675,0.287842,0.324005,0.342102,0.341461,0.326965,0.301697,0.274414,0.248993,0.23233,0.229523,0.239349,0.261627,0.289246,0.32074,0.347717,0.36734,0.378113,0.377655,0.360016,0.324005,0.26709,0.194122,0.109131,0.0215149,-0.0665894,-0.148895,-0.222656,-0.28299,-0.325409,-0.345367,-0.343811,-0.323853,-0.29361,-0.25946,-0.22702,-0.198029,-0.177124,-0.163239,-0.161377,-0.169952,-0.185699,-0.205505,-0.222198,-0.230621,-0.224823,-0.204712,-0.168701,-0.118042,-0.0561218,0.0149536,0.0901184,0.164337,0.228882,0.277374,0.303741,0.307312,0.287506,0.247772,0.193817,0.130981,0.0686035,0.0124817,-0.0279236,-0.0513,-0.0592651,-0.0542603,-0.043335,-0.026825,-0.0112305,-0.00326538,-0.00857544,-0.0314941,-0.0739136,-0.131592,-0.201752,-0.276764,-0.352539,-0.418945,-0.468842,-0.499115,-0.511108,-0.504395,-0.477905,-0.433136,-0.369232,-0.288452,-0.19632,-0.10025,-0.0126343,0.063446,0.123016,0.164185,0.189301,0.204895,0.21347,0.21347,0.202393,0.184296,0.170898,0.173553,0.198181,0.241669,0.296082,0.353485,0.403046,0.446075,0.481964,0.507202,0.511719,0.492401,0.441711,0.360016,0.251648,0.132538,0.0151367,-0.0907593,-0.179138,-0.246826,-0.287689,-0.294373,-0.265686,-0.208466,-0.135803,-0.063446,-0.00234985,0.0424194,0.0642395,0.0611267,0.0286865,-0.0321045,-0.115234,-0.203644,-0.276459,-0.317932,-0.325867,-0.304993,-0.253693,-0.177277,-0.0820007,0.0319519,0.154358,0.26474,0.343964,0.380463,0.374847,0.332123,0.261322,0.171967,0.0750122,-0.026825,-0.121307,-0.196472,-0.23761,-0.241669,-0.215942,-0.165894,-0.106964,-0.048645,-0.00109863,0.0319519,0.0434875,0.0293274,-0.0146484,-0.0821838,-0.164337,-0.250732,-0.324799,-0.375763,-0.399933,-0.397278,-0.365173,-0.304993,-0.221252,-0.122711,-0.0165405,0.0837402,0.170563,0.237,0.282074,0.307617,0.313232,0.303894,0.285187,0.263824,0.243713,0.230133,0.226715,0.237457,0.260223,0.290802,0.324951,0.355957,0.378723,0.389648,0.389343,0.374512,0.342255,0.289551,0.22171,0.141876,0.0572205,-0.0266724,-0.104614,-0.176178,-0.237946,-0.285034,-0.314331,-0.324799,-0.31778,-0.299042,-0.273956,-0.245422,-0.220001,-0.198029,-0.183197,-0.177765,-0.182281,-0.195679,-0.211884,-0.22641,-0.233093,-0.227325,-0.209259,-0.179474,-0.135345,-0.0790405,-0.0107727,0.0608215,0.132996,0.195831,0.246521,0.279114,0.294678,0.290161,0.266479,0.22702,0.17511,0.118042,0.0622253,0.0162048,-0.0154419,-0.031189,-0.033844,-0.0277405,-0.0162048,-0.00341797,0.00732422,0.00686646,-0.00811768,-0.0413208,-0.0923157,-0.157166,-0.230133,-0.307159,-0.378418,-0.438446,-0.480072,-0.501923,-0.504089,-0.48819,-0.456543,-0.409454,-0.348328,-0.277863,-0.199585,-0.118805,-0.0402222,0.0275879,0.0830994,0.123962,0.152954,0.173218,0.189911,0.199432,0.200989,0.195831,0.192719,0.198944,0.217987,0.250092,0.296082,0.347076,0.39447,0.431122,0.457642,0.473846,0.47821,0.463409,0.424744,0.354889,0.258362,0.147186,0.0361633,-0.0645447,-0.149384,-0.215332,-0.256958,-0.270844,-0.252747,-0.207855,-0.141876,-0.0708008,-0.00732422,0.0383606,0.0626831,0.0615845,0.036499,-0.0133972,-0.0829468,-0.162933,-0.236053,-0.285187,-0.304504,-0.288757,-0.242462,-0.168549,-0.0801392,0.0202637,0.130035,0.233246,0.314819,0.359253,0.358765,0.318237,0.246033,0.154663,0.0569153,-0.0414734,-0.134552,-0.210175,-0.257416,-0.26944,-0.248993,-0.203156,-0.142059,-0.0820007,-0.0324402,0.000457764,0.0160522,0.00778198,-0.0263367,-0.0840454,-0.158722,-0.238403,-0.307617,-0.354889,-0.374664,-0.368591,-0.334137,-0.274414,-0.191772,-0.0938721,0.0129395,0.115692,0.205811,0.276306,0.322754,0.349274,0.356598,0.350037,0.333374,0.31076,0.286591,0.266937,0.254944,0.257263,0.271606,0.293457,0.317291,0.34021,0.356903,0.363281,0.358459,0.340851,0.305908,0.253998,0.187256,0.10791,0.0219727,-0.063446,-0.144379,-0.217834,-0.280182,-0.328064,-0.359711,-0.371857,-0.365173,-0.34317,-0.310425,-0.274719,-0.239502,-0.21048,-0.188812,-0.174774,-0.170105,-0.175415,-0.186493,-0.198029,-0.205048,-0.20285,-0.186798,-0.157166,-0.112579,-0.0541077,0.0144958,0.0863953,0.157166,0.221558,0.27301,0.307465,0.32431,0.317932,0.290802,0.245728,0.18866,0.12677,0.0673523,0.0160522,-0.0219727,-0.0431824,-0.0487976,-0.0403748,-0.0254211,-0.0093689,0.00219727,0.00311279,-0.00857544,-0.0350952,-0.0791931,-0.138916,-0.209076,-0.282532,-0.352386,-0.411774,-0.456055,-0.48288,-0.483032,-0.464813,-0.433624,-0.394806,-0.345673,-0.285339,-0.217346,-0.147186,-0.0762329,-0.00967407,0.0484924,0.0965271,0.134094,0.159668,0.176666,0.193665,0.210022,0.217987,0.213928,0.200836,0.195526,0.206299,0.235138,0.2724,0.310425,0.341156,0.366577,0.387299,0.408356,0.419128,0.411621,0.377167,0.311523,0.220306,0.114288,0.00762939,-0.0890198,-0.173553,-0.240906,-0.283295,-0.29422,-0.270691,-0.213135,-0.130676,-0.0447388,0.0279236,0.0812378,0.115997,0.127869,0.112427,0.0667419,-0.00717163,-0.0966797,-0.180237,-0.237,-0.256348,-0.244171,-0.207062,-0.14624,-0.0659485,0.0327454,0.141876,0.247772,0.330078,0.368591,0.360321,0.309357,0.231842,0.136108,0.0291443,-0.0795288,-0.18634,-0.275665,-0.33197,-0.345978,-0.324158,-0.275665,-0.214539,-0.149231,-0.0932312,-0.050354,-0.0254211,-0.0237122,-0.0483398,-0.0969849,-0.163086,-0.233429,-0.295013,-0.336487,-0.352539,-0.340851,-0.305908,-0.246979,-0.166534,-0.0676575,0.0402222,0.147186,0.240265,0.315735,0.368286,0.399323,0.414124,0.412872,0.396973,0.372955,0.343506,0.316528,0.293457,0.281586,0.280029,0.284698,0.294861,0.306244,0.312622,0.312927,0.306549,0.290955,0.264282,0.220154,0.161224,0.0882568,0.00827026,-0.0728149,-0.151703,-0.227173,-0.294861,-0.351135,-0.389648,-0.407745,-0.402893,-0.381836,-0.348328,-0.308105,-0.263031,-0.219696,-0.17807,-0.143921,-0.122253,-0.115234,-0.119598,-0.131287,-0.142517,-0.146423,-0.140472,-0.121918,-0.092926,-0.0492859,0.00637817,0.0732727,0.146729,0.214691,0.270538,0.307465,0.324005,0.319794,0.295776,0.253204,0.196136,0.128632,0.0603333,-0.00219727,-0.0508423,-0.0809326,-0.0933838,-0.0891724,-0.07547,-0.0558167,-0.035553,-0.0216675,-0.0187073,-0.0316467,-0.0626831,-0.108978,-0.166199,-0.227966,-0.289062,-0.343964,-0.385742,-0.411469,-0.41568,-0.399933,-0.36673,-0.323853,-0.277527,-0.235138,-0.194122,-0.156708,-0.120697,-0.0829468,-0.043335,-0.00546265,0.0319519,0.069397,0.107269,0.145935,0.182892,0.219391,0.246521,0.259918,0.258667,0.247589,0.23233,0.215485,0.202393,0.195984,0.198181,0.202698,0.21048,0.224823,0.244019,0.26413,0.279266,0.278168,0.252594,0.19989,0.128021,0.0461426,-0.0400696,-0.122406,-0.192871,-0.243713,-0.266144,-0.255554,-0.211731,-0.142059,-0.0587769,0.0275879,0.105103,0.164795,0.200195,0.206757,0.182587,0.128326,0.0505066,-0.0321045,-0.101959,-0.149689,-0.171204,-0.163574,-0.129089,-0.0734253,-0.00234985,0.0856018,0.175568,0.248993,0.290802,0.293274,0.256805,0.186493,0.0927734,-0.0118408,-0.121307,-0.227478,-0.320251,-0.385132,-0.414581,-0.409454,-0.372803,-0.315125,-0.247131,-0.181488,-0.125214,-0.0809326,-0.0542603,-0.0508423,-0.0690613,-0.103851,-0.148132,-0.192566,-0.224213,-0.238861,-0.235138,-0.210968,-0.164795,-0.096344,-0.0138855,0.0810852,0.178833,0.270538,0.348328,0.408356,0.447479,0.469177,0.470428,0.453735,0.42334,0.383423,0.336945,0.290009,0.250732,0.218903,0.195526,0.181641,0.175568,0.174622,0.174469,0.174622,0.171967,0.162628,0.141724,0.107422,0.0580139,-0.00546265,-0.079834,-0.157166,-0.233887,-0.303253,-0.362213,-0.402588,-0.423645,-0.418488,-0.391052,-0.344116,-0.282684,-0.216248,-0.150452,-0.0905762,-0.039917,-0.00671387,0.00778198,0.00497437,-0.0105896,-0.0343018,-0.0583191,-0.0753174,-0.0804443,-0.0718689,-0.047699,-0.00857544,0.0461426,0.109924,0.178375,0.236694,0.279114,0.30014,0.297668,0.274414,0.231842,0.170746,0.0960388,0.0176086,-0.054718,-0.11087,-0.147644,-0.161377,-0.155304,-0.133636,-0.103699,-0.0695496,-0.038208,-0.0160522,-0.00952148,-0.0204163,-0.0500488,-0.0951233,-0.146423,-0.197693,-0.242462,-0.279266,-0.302032,-0.31012,-0.299988,-0.274414,-0.236847,-0.192871,-0.151093,-0.11554,-0.0937195,-0.0874634,-0.0924683,-0.101349,-0.107422,-0.107422,-0.0991516,-0.0805969,-0.047699,0.00170898,0.0604858,0.118958,0.17276,0.21579,0.244171,0.253204,0.242157,0.209259,0.161682,0.108521,0.0626831,0.035553,0.0275879,0.0389709,0.0636292,0.100403,0.147034,0.201141,0.251495,0.286285,0.290466,0.262421,0.202698,0.125061,0.0383606,-0.0458374,-0.118195,-0.168243,-0.193329,-0.186798,-0.146088,-0.0717163,0.0243225,0.124573,0.212524,0.273956,0.306244,0.307465,0.276123,0.212524,0.121307,0.0176086,-0.0799866,-0.155609,-0.199097,-0.207672,-0.186798,-0.142517,-0.0791931,-0.00219727,0.0796814,0.152802,0.19928,0.206909,0.172455,0.1026,0.0109253,-0.0910645,-0.192566,-0.291718,-0.378571,-0.439087,-0.465881,-0.453888,-0.406647,-0.333832,-0.248993,-0.165741,-0.0910645,-0.0302429,0.0132446,0.0354004,0.0307312,0.00375366,-0.040863,-0.090271,-0.133301,-0.160583,-0.167145,-0.152954,-0.116302,-0.0586243,0.0190125,0.108673,0.205353,0.29657,0.375458,0.432526,0.465881,0.475403,0.460266,0.423798,0.368896,0.303436,0.233429,0.16745,0.111633,0.0704651,0.0466309,0.0419312,0.0522461,0.0753174,0.101959,0.128632,0.149231,0.159515,0.152954,0.126617,0.0795288,0.0149536,-0.0614319,-0.140472,-0.216736,-0.282074,-0.33197,-0.361908,-0.368286,-0.349121,-0.306854,-0.246033,-0.174469,-0.100739,-0.033844,0.0202637,0.0603333,0.0818481,0.0829468,0.0665894,0.0325928,-0.0090332,-0.0534668,-0.0898132,-0.111633,-0.114441,-0.0988464,-0.0637817,-0.0135803,0.0473938,0.111176,0.171509,0.216736,0.24292,0.244171,0.222504,0.180542,0.122253,0.0539551,-0.0188599,-0.0863953,-0.140015,-0.174011,-0.186493,-0.178223,-0.153748,-0.117401,-0.0751648,-0.0308838,0.00872803,0.0389709,0.0519104,0.0455322,0.0199585,-0.0213623,-0.0698547,-0.120056,-0.164337,-0.198792,-0.2211,-0.229828,-0.221405,-0.198029,-0.165894,-0.132996,-0.104156,-0.0791931,-0.0645447,-0.0659485,-0.0856018,-0.118805,-0.15451,-0.184937,-0.207062,-0.214081,-0.201141,-0.163391,-0.105713,-0.0405273,0.0247803,0.0820007,0.13736,0.185242,0.217987,0.222198,0.195068,0.148285,0.0975952,0.0536499,0.0221558,0.00747681,0.0133972,0.0346069,0.0708008,0.122711,0.187103,0.258667,0.322754,0.362213,0.365784,0.335846,0.276459,0.198486,0.111938,0.026825,-0.0539551,-0.117249,-0.153412,-0.15155,-0.11319,-0.0445862,0.0380554,0.119598,0.190063,0.243225,0.274567,0.274902,0.238403,0.167297,0.069397,-0.035553,-0.130035,-0.19989,-0.243561,-0.256805,-0.241364,-0.203003,-0.142212,-0.0639343,0.0244751,0.103546,0.154663,0.166687,0.14032,0.0881042,0.0174561,-0.0648499,-0.155457,-0.244629,-0.321991,-0.37326,-0.391998,-0.374512,-0.328064,-0.260712,-0.183838,-0.107422,-0.0420837,0.0121765,0.0500488,0.0656433,0.0556641,0.0235291,-0.0227661,-0.0723572,-0.11319,-0.139252,-0.148438,-0.138916,-0.108826,-0.0609741,0.00531006,0.0821838,0.16217,0.237152,0.297333,0.338348,0.357697,0.358154,0.341614,0.310272,0.267395,0.218292,0.168549,0.12442,0.0904236,0.0720215,0.0682983,0.0782776,0.0965271,0.117401,0.139069,0.157623,0.172913,0.177124,0.164185,0.134552,0.0870056,0.0275879,-0.0358582,-0.10025,-0.158264,-0.208923,-0.245575,-0.266632,-0.26944,-0.251343,-0.217651,-0.172913,-0.125214,-0.079834,-0.0410156,-0.0109253,0.00827026,0.0144958,0.00497437,-0.0180969,-0.0491028,-0.08078,-0.107727,-0.12677,-0.132538,-0.123505,-0.0999451,-0.0606384,-0.00967407,0.0483398,0.106323,0.155304,0.18866,0.204102,0.200043,0.179474,0.141876,0.0944824,0.038208,-0.0182495,-0.0668945,-0.101807,-0.118652,-0.117249,-0.100891,-0.0731201,-0.0393066,-0.00280762,0.0325928,0.0618896,0.0779724,0.0765686,0.057373,0.0237122,-0.0184021,-0.0639343,-0.111328,-0.155609,-0.19162,-0.214874,-0.220306,-0.208008,-0.181793,-0.149384,-0.115234,-0.0852966,-0.0631409,-0.053009,-0.0595703,-0.078125,-0.104004,-0.135803,-0.178986,-0.225464,-0.264282,-0.285187,-0.285339,-0.265839,-0.224213,-0.159027,-0.0809326,0.00421143,0.0881042,0.160278,0.213623,0.247131,0.261627,0.255707,0.222961,0.167938,0.102142,0.0411682,-0.00436401,-0.025116,-0.0121765,0.0260315,0.0779724,0.135651,0.201599,0.274261,0.339142,0.384338,0.392456,0.363922,0.296265,0.203644,0.0991516,-0.00326538,-0.0921631,-0.161835,-0.205353,-0.213287,-0.181946,-0.110535,-0.0166931,0.0834045,0.175415,0.249939,0.296417,0.309021,0.286285,0.227631,0.133148,0.0180969,-0.0954285,-0.186798,-0.246979,-0.272247,-0.261475,-0.220154,-0.155457,-0.073761,0.0226135,0.120056,0.195984,0.231689,0.222809,0.174164,0.0954285,-0.00219727,-0.107727,-0.213623,-0.311676,-0.388702,-0.434387,-0.43924,-0.404938,-0.338959,-0.253357,-0.162476,-0.0788879,-0.00732422,0.0438232,0.0720215,0.0700073,0.0389709,-0.0109253,-0.0725098,-0.13208,-0.17807,-0.205963,-0.208771,-0.187897,-0.141266,-0.0712585,0.0157471,0.111176,0.207855,0.292664,0.357056,0.395416,0.409912,0.403046,0.37561,0.332123,0.276306,0.217499,0.160767,0.114899,0.0848083,0.073761,0.0793762,0.0979309,0.122406,0.148285,0.1698,0.187408,0.195374,0.189117,0.163727,0.119598,0.0604858,-0.00796509,-0.0795288,-0.146881,-0.204712,-0.250397,-0.280975,-0.293121,-0.285797,-0.259613,-0.220306,-0.172607,-0.124878,-0.08078,-0.0452271,-0.0187073,-0.00311279,0.00170898,-0.00576782,-0.0227661,-0.0430298,-0.0617371,-0.0757751,-0.0818481,-0.0778198,-0.0665894,-0.0462952,-0.0185547,0.0198059,0.0614319,0.102142,0.132538,0.153259,0.161377,0.158875,0.143616,0.116638,0.0791931,0.0383606,-0.00296021,-0.0397644,-0.0701599,-0.0901184,-0.0982361,-0.0960388,-0.0856018,-0.0704651,-0.0522461,-0.0330505,-0.0152893,-0.00360107,0.00250244,0.000946045,-0.00872803,-0.0235291,-0.044281,-0.0648499,-0.0881042,-0.107574,-0.122559,-0.130188,-0.128479,-0.118195,-0.0996399,-0.0773315,-0.0533142,-0.0319519,-0.0144958,-0.00280762,0.000457764,-0.010437,-0.0375671,-0.0712585,-0.1026,-0.133453,-0.1698,-0.211884,-0.248077,-0.267242,-0.263824,-0.24231,-0.207214,-0.157318,-0.09198,-0.0155945,0.0586243,0.117249,0.156708,0.178528,0.190369,0.186493,0.156219,0.101196,0.0317993,-0.0277405,-0.0682983,-0.0799866,-0.0609741,-0.0188599,0.0357056,0.0996399,0.173065,0.257111,0.34021,0.403046,0.43158,0.417236,0.366089,0.285034,0.188812,0.0941772,0.006073,-0.0695496,-0.12738,-0.153412,-0.138,-0.0826416,0.00201416,0.0933838,0.177582,0.244019,0.290649,0.312469,0.299988,0.249176,0.159821,0.046936,-0.0697021,-0.169189,-0.24231,-0.283783,-0.295776,-0.281586,-0.245728,-0.186951,-0.105408,-0.0124817,0.0698547,0.120514,0.130035,0.102753,0.0531616,-0.00842285,-0.081543,-0.164795,-0.251648,-0.326355,-0.375458,-0.390259,-0.370636,-0.324799,-0.259918,-0.187561,-0.115387,-0.0472412,0.00982666,0.0522461,0.0728149,0.0704651,0.0484924,0.0123291,-0.0272827,-0.0614319,-0.0849915,-0.0971375,-0.0965271,-0.0785828,-0.0445862,0.00656128,0.0706177,0.141876,0.209717,0.265686,0.307617,0.333191,0.343506,0.341156,0.323212,0.292664,0.251038,0.204102,0.15921,0.12085,0.0940247,0.0785828,0.0725098,0.0746765,0.0801392,0.0898132,0.104156,0.119293,0.129089,0.127075,0.111176,0.0838928,0.0448914,-0.000152588,-0.0498962,-0.1026,-0.15451,-0.200195,-0.232483,-0.247772,-0.245117,-0.228577,-0.200684,-0.165588,-0.12738,-0.0895081,-0.0519104,-0.0212097,-0.000946045,0.00341797,-0.00686646,-0.0269775,-0.0502014,-0.071106,-0.0895081,-0.104004,-0.111481,-0.110229,-0.0941772,-0.0642395,-0.0246277,0.0199585,0.0625305,0.098999,0.125824,0.141266,0.143768,0.131592,0.107422,0.0726624,0.0321045,-0.00762939,-0.0445862,-0.0700073,-0.0848083,-0.0862122,-0.0768738,-0.0575256,-0.0297852,0.00326538,0.036499,0.0629883,0.0790405,0.0849915,0.0809326,0.0659485,0.0422668,0.0123291,-0.0209045,-0.0544128,-0.083252,-0.104004,-0.113831,-0.111633,-0.0982361,-0.0759277,-0.0483398,-0.0224609,-0.00341797,0.00982666,0.0138855,0.00811768,-0.00967407,-0.0422668,-0.085144,-0.137665,-0.189453,-0.234344,-0.271606,-0.30249,-0.32666,-0.337738,-0.328217,-0.29718,-0.25354,-0.197693,-0.131592,-0.0562744,0.0201111,0.0848083,0.131439,0.156403,0.166199,0.161072,0.144073,0.111481,0.0679932,0.0210571,-0.010437,-0.0227661,-0.0116882,0.0237122,0.0810852,0.153412,0.230286,0.305603,0.373108,0.427704,0.460754,0.460266,0.420837,0.34613,0.246368,0.136902,0.0317993,-0.0597229,-0.127533,-0.168549,-0.176971,-0.147339,-0.0816956,0.00671387,0.0997925,0.181641,0.24231,0.273163,0.272095,0.235748,0.16684,0.0682983,-0.048645,-0.162476,-0.255859,-0.317444,-0.341003,-0.327759,-0.283478,-0.216583,-0.132538,-0.0357056,0.0611267,0.140656,0.185242,0.187897,0.151703,0.086853,0.00311279,-0.088562,-0.183838,-0.271606,-0.342255,-0.379669,-0.383728,-0.352844,-0.294678,-0.218445,-0.135345,-0.0586243,0.00686646,0.0550537,0.0823364,0.084198,0.0622253,0.0224609,-0.0291443,-0.0791931,-0.120697,-0.143921,-0.149231,-0.135956,-0.103058,-0.0514526,0.014801,0.0916748,0.170105,0.241821,0.298737,0.335388,0.353302,0.355194,0.341309,0.315887,0.280334,0.239197,0.196136,0.156708,0.12738,0.108826,0.103363,0.105103,0.111786,0.120056,0.12738,0.132843,0.135345,0.130829,0.115082,0.0856018,0.0441284,-0.00436401,-0.0559692,-0.108215,-0.157959,-0.200836,-0.237305,-0.261932,-0.272858,-0.267731,-0.248383,-0.219543,-0.186798,-0.152954,-0.123657,-0.0974426,-0.0773315,-0.0631409,-0.0567627,-0.0598755,-0.0689087,-0.077179,-0.0835876,-0.0837402,-0.0790405,-0.0675049,-0.0502014,-0.0243225,0.00827026,0.04599,0.0854492,0.121918,0.150787,0.169647,0.176361,0.172607,0.161835,0.141724,0.114441,0.0802917,0.0439758,0.0109253,-0.0121765,-0.0249329,-0.0257263,-0.0215149,-0.0126343,-0.00140381,0.0118408,0.0271301,0.0413208,0.0467834,0.0441284,0.0299377,0.0123291,-0.00952148,-0.0327454,-0.0583191,-0.0843506,-0.103546,-0.114594,-0.113525,-0.104614,-0.0865479,-0.0656433,-0.0417786,-0.0177612,0.00390625,0.0184021,0.0254211,0.0223083,0.00686646,-0.0176086,-0.0506592,-0.0849915,-0.118042,-0.147186,-0.172302,-0.19693,-0.214691,-0.22467,-0.225616,-0.223755,-0.221405,-0.220459,-0.217834,-0.209869,-0.19928,-0.18399,-0.163086,-0.133789,-0.0947876,-0.0491028,-0.00515747,0.0303955,0.0569153,0.0835876,0.111633,0.135193,0.144684,0.133453,0.110229,0.0909119,0.0843506,0.0974426,0.12381,0.151703,0.180237,0.214539,0.259613,0.313416,0.365326,0.398529,0.40213,0.373444,0.318542,0.247589,0.171509,0.0947876,0.0187073,-0.050354,-0.10495,-0.12973,-0.117249,-0.0726624,-0.0116882,0.0500488,0.104767,0.147186,0.178986,0.191925,0.179626,0.132996,0.053009,-0.0447388,-0.137848,-0.212219,-0.260712,-0.286285,-0.289856,-0.272095,-0.23233,-0.167145,-0.0826416,0.00515747,0.0768738,0.119598,0.129272,0.110718,0.0703125,0.0162048,-0.0527039,-0.130829,-0.210968,-0.278931,-0.322906,-0.336334,-0.320587,-0.282074,-0.230133,-0.170105,-0.105103,-0.040863,0.0146484,0.0539551,0.0723572,0.0732727,0.0567627,0.0305481,-0.00265503,-0.0317993,-0.0538025,-0.0668945,-0.0686035,-0.0564575,-0.0289917,0.0121765,0.0682983,0.128632,0.189117,0.23996,0.280823,0.309509,0.328674,0.333527,0.324615,0.300629,0.26413,0.219849,0.17337,0.130035,0.09198,0.0606384,0.0375671,0.0205688,0.0126343,0.0141907,0.0237122,0.0379028,0.0502014,0.0553589,0.0517578,0.0383606,0.0163574,-0.0140381,-0.053009,-0.098999,-0.148895,-0.195831,-0.232635,-0.254944,-0.261475,-0.252441,-0.230286,-0.195526,-0.152344,-0.104004,-0.0534668,-0.00827026,0.0271301,0.0480347,0.0541077,0.047699,0.0328979,0.0135803,-0.00997925,-0.0288391,-0.0455322,-0.0514526,-0.0472412,-0.0302429,-0.000152588,0.0344543,0.0706177,0.10495,0.135193,0.158417,0.1698,0.163391,0.142517,0.110382,0.0729675,0.0317993,-0.0102844,-0.0508423,-0.0862122,-0.107574,-0.115234,-0.108063,-0.0913696,-0.0698547,-0.0438232,-0.0182495,0.00637817,0.0257263,0.0388184,0.043335,0.038208,0.0247803,0.00701904,-0.0116882,-0.0277405,-0.0410156,-0.0505066,-0.0527039,-0.046936,-0.0316467,-0.0115356,0.0118408,0.0339966,0.0553589,0.0712585,0.0802917,0.0790405,0.0681458,0.0472412,0.0171509,-0.0209045,-0.0609741,-0.102142,-0.141266,-0.177765,-0.208618,-0.231079,-0.24527,-0.255249,-0.259308,-0.263184,-0.264435,-0.265686,-0.267883,-0.270538,-0.272095,-0.269592,-0.2565,-0.232025,-0.19632,-0.146881,-0.0887146,-0.0272827,0.026825,0.0765686,0.123169,0.171051,0.211426,0.233582,0.228119,0.203003,0.174774,0.162781,0.173218,0.195679,0.215942,0.231689,0.25119,0.2883,0.341766,0.397614,0.431274,0.426758,0.385284,0.319794,0.245728,0.167938,0.0854492,-0.0015564,-0.0843506,-0.149841,-0.181946,-0.174164,-0.134552,-0.0784302,-0.0209045,0.0296326,0.071106,0.103363,0.122253,0.116943,0.0770264,0.00637817,-0.0785828,-0.158722,-0.217651,-0.25058,-0.259918,-0.252594,-0.229034,-0.18335,-0.114441,-0.0279236,0.0584717,0.126923,0.163727,0.167786,0.14267,0.0993347,0.0453796,-0.0195007,-0.0943298,-0.171814,-0.237457,-0.280334,-0.292816,-0.276123,-0.240753,-0.194733,-0.146088,-0.0966797,-0.0505066,-0.0113831,0.00997925,0.0143433,0.000457764,-0.0269775,-0.0612793,-0.096344,-0.124268,-0.142517,-0.147827,-0.138763,-0.114441,-0.0762329,-0.0238647,0.0386658,0.106171,0.170105,0.22345,0.262115,0.287842,0.303101,0.308868,0.304504,0.287994,0.260223,0.22641,0.193665,0.168701,0.153412,0.143768,0.137054,0.131439,0.130341,0.133789,0.14267,0.150299,0.150146,0.138458,0.114899,0.08078,0.041626,-0.00250244,-0.0483398,-0.0980835,-0.145782,-0.189606,-0.220642,-0.236389,-0.236389,-0.22406,-0.203949,-0.178223,-0.149689,-0.117706,-0.0873108,-0.0614319,-0.0455322,-0.0402222,-0.0434875,-0.0519104,-0.0617371,-0.0708008,-0.077179,-0.0791931,-0.0742188,-0.0618896,-0.0420837,-0.0151367,0.0157471,0.0466309,0.0725098,0.0910645,0.102142,0.106506,0.106018,0.0957336,0.0768738,0.0497437,0.0210571,-0.00296021,-0.020752,-0.0343018,-0.0466309,-0.057373,-0.0622253,-0.0600281,-0.0516052,-0.0391235,-0.02948,-0.0201111,-0.0126343,-0.00360107,0.00576782,0.0143433,0.0193481,0.0215149,0.0218201,0.0241699,0.0274353,0.0324402,0.0366516,0.0380554,0.0405273,0.0438232,0.0509949,0.0587769,0.0661011,0.0692139,0.0703125,0.0689087,0.0681458,0.0646973,0.0595703,0.04599,0.0266724,0.000610352,-0.0293274,-0.0612793,-0.0938721,-0.126617,-0.157959,-0.185242,-0.210327,-0.233246,-0.251984,-0.266327,-0.274902,-0.279266,-0.281433,-0.288147,-0.298126,-0.311523,-0.32074,-0.320892,-0.307953,-0.284698,-0.248077,-0.200348,-0.136902,-0.0594177,0.0218201,0.0980835,0.162476,0.214874,0.259918,0.293274,0.306549,0.291107,0.249329,0.200348,0.164032,0.154053,0.16449,0.180542,0.195679,0.216248,0.253998,0.311066,0.373444,0.417236,0.424408,0.390747,0.3237,0.240265,0.14798,0.0491028,-0.0508423,-0.14624,-0.220642,-0.260559,-0.258514,-0.217194,-0.147827,-0.0664368,0.0110779,0.0812378,0.140656,0.184601,0.199097,0.175568,0.111786,0.0252686,-0.0648499,-0.140015,-0.193176,-0.221405,-0.23233,-0.22171,-0.187256,-0.123962,-0.037262,0.0561218,0.135956,0.187256,0.199585,0.180542,0.139709,0.0801392,0.00421143,-0.0877686,-0.185242,-0.275513,-0.343018,-0.379822,-0.384338,-0.364227,-0.326355,-0.275818,-0.217346,-0.156067,-0.0996399,-0.0555115,-0.0280762,-0.0158997,-0.0204163,-0.0361633,-0.0587769,-0.0793762,-0.094635,-0.0996399,-0.0915222,-0.0704651,-0.037262,0.00967407,0.0717163,0.145477,0.217834,0.284393,0.338043,0.378265,0.407745,0.424255,0.428009,0.414429,0.383881,0.340546,0.289551,0.240417,0.197388,0.157959,0.123322,0.0909119,0.0673523,0.0533142,0.0500488,0.0539551,0.0562744,0.0533142,0.0427246,0.0235291,-0.00250244,-0.035553,-0.0753174,-0.123505,-0.173706,-0.223267,-0.262421,-0.287354,-0.295624,-0.285645,-0.26178,-0.22702,-0.183838,-0.134705,-0.0837402,-0.0360107,0.00234985,0.0243225,0.0324402,0.0269775,0.0126343,-0.00592041,-0.0280762,-0.0498962,-0.0703125,-0.0837402,-0.0849915,-0.0718689,-0.0481873,-0.0202637,0.00732422,0.0324402,0.0533142,0.0682983,0.073761,0.0697021,0.0534668,0.0263367,-0.00888062,-0.0456848,-0.0773315,-0.100891,-0.115387,-0.122101,-0.120209,-0.106812,-0.0799866,-0.0431824,-0.00186157,0.036499,0.0717163,0.100891,0.125366,0.142975,0.154205,0.156067,0.150635,0.139252,0.126465,0.116791,0.111633,0.111176,0.112427,0.114288,0.116486,0.121613,0.130188,0.138916,0.139862,0.131744,0.114136,0.0901184,0.0611267,0.0271301,-0.0124817,-0.0586243,-0.106812,-0.155457,-0.196472,-0.230133,-0.253845,-0.270996,-0.281128,-0.28363,-0.275665,-0.258057,-0.238098,-0.220947,-0.208618,-0.201447,-0.199738,-0.204407,-0.217041,-0.235138,-0.255859,-0.27832,-0.300293,-0.322144,-0.337555,-0.335693,-0.305756,-0.247589,-0.17041,-0.0852966,0.0105896,0.113678,0.218903,0.309814,0.375458,0.410706,0.419586,0.404785,0.363617,0.290009,0.195679,0.0975952,0.0254211,-0.00592041,-0.00341797,0.0180969,0.0483398,0.0966797,0.170898,0.268341,0.36673,0.437347,0.456848,0.4263,0.356293,0.263336,0.152496,0.0300903,-0.0949707,-0.205963,-0.286438,-0.319183,-0.300629,-0.23233,-0.131592,-0.0141907,0.103851,0.213928,0.305756,0.369995,0.391357,0.3591,0.27832,0.163239,0.0405273,-0.0718689,-0.167297,-0.238556,-0.285187,-0.301849,-0.281586,-0.223267,-0.135498,-0.0386658,0.0475464,0.106506,0.131592,0.122864,0.0893555,0.0305481,-0.0523987,-0.155609,-0.266785,-0.369385,-0.446869,-0.489136,-0.496307,-0.474152,-0.427063,-0.360504,-0.278931,-0.189453,-0.101349,-0.0272827,0.0272827,0.0623779,0.0796814,0.0813904,0.0720215,0.0556641,0.037262,0.0247803,0.0249329,0.0374146,0.0629883,0.101196,0.148895,0.208923,0.270691,0.329163,0.375916,0.407104,0.424255,0.430176,0.422089,0.399628,0.359711,0.307953,0.248535,0.192566,0.140961,0.0954285,0.0534668,0.0171509,-0.00857544,-0.0216675,-0.0238647,-0.0188599,-0.0133972,-0.0109253,-0.0119934,-0.0188599,-0.0314941,-0.0497437,-0.0756226,-0.10556,-0.139709,-0.172302,-0.198334,-0.215027,-0.219543,-0.211273,-0.192108,-0.163391,-0.129089,-0.0909119,-0.0531616,-0.0212097,0.00186157,0.0149536,0.0174561,0.00997925,-0.00546265,-0.0285339,-0.0548706,-0.0829468,-0.106964,-0.123962,-0.133453,-0.132538,-0.124878,-0.113037,-0.0983887,-0.0834045,-0.0675049,-0.053009,-0.0413208,-0.0360107,-0.0371094,-0.0456848,-0.052063,-0.0555115,-0.0548706,-0.0497437,-0.0445862,-0.033844,-0.0146484,0.0146484,0.0494385,0.0829468,0.112732,0.139862,0.165894,0.188812,0.207062,0.21814,0.222046,0.221405,0.219055,0.214539,0.20816,0.200836,0.194427,0.185547,0.174164,0.160278,0.143127,0.123657,0.102753,0.0779724,0.0497437,0.0174561,-0.0143433,-0.0438232,-0.0714111,-0.0957336,-0.12085,-0.143921,-0.165131,-0.182434,-0.196136,-0.206757,-0.215179,-0.225006,-0.234497,-0.241058,-0.242157,-0.239807,-0.235291,-0.227325,-0.217651,-0.205505,-0.192719,-0.179932,-0.167938,-0.155609,-0.149689,-0.149536,-0.156403,-0.167145,-0.180237,-0.195984,-0.213776,-0.235291,-0.256012,-0.274109,-0.280975,-0.267548,-0.228577,-0.170563,-0.0985413,-0.0176086,0.0704651,0.160767,0.244171,0.311218,0.353638,0.375458,0.37265,0.345673,0.291718,0.217041,0.138611,0.0816956,0.0626831,0.0773315,0.107574,0.14563,0.197876,0.274902,0.373901,0.474945,0.549164,0.573944,0.542603,0.465271,0.36377,0.246033,0.120697,-0.0101318,-0.133789,-0.232941,-0.285797,-0.28363,-0.232941,-0.150787,-0.0553589,0.0405273,0.129883,0.206757,0.256958,0.268799,0.229218,0.141418,0.0215149,-0.106018,-0.220459,-0.314178,-0.383881,-0.430176,-0.447479,-0.425354,-0.363281,-0.266785,-0.155609,-0.0511475,0.0282288,0.0734253,0.0884094,0.078125,0.0430298,-0.0174561,-0.101196,-0.195831,-0.2883,-0.362671,-0.405243,-0.415527,-0.396027,-0.354401,-0.292053,-0.21283,-0.123962,-0.033844,0.044281,0.106018,0.149689,0.173218,0.178375,0.168243,0.150146,0.124878,0.0975952,0.0778198,0.0675049,0.0729675,0.0930786,0.127869,0.174957,0.22998,0.287994,0.341461,0.388855,0.426147,0.452026,0.464478,0.457306,0.431427,0.387939,0.331024,0.267731,0.202545,0.139862,0.0785828,0.0235291,-0.0204163,-0.0481873,-0.0589294,-0.0575256,-0.0495911,-0.0400696,-0.0300903,-0.0249329,-0.0271301,-0.0403748,-0.0657959,-0.102905,-0.15094,-0.203491,-0.254944,-0.299683,-0.333374,-0.353638,-0.356598,-0.343353,-0.316681,-0.278778,-0.232178,-0.182739,-0.136902,-0.098999,-0.0709534,-0.0533142,-0.0456848,-0.0505066,-0.0646973,-0.0871582,-0.112885,-0.134857,-0.149384,-0.154053,-0.149841,-0.137054,-0.115692,-0.087616,-0.0525513,-0.0123291,0.0302429,0.0682983,0.098999,0.121918,0.13736,0.147186,0.15155,0.151398,0.145325,0.133942,0.122711,0.11615,0.117096,0.125214,0.136444,0.149231,0.166046,0.187408,0.212982,0.238556,0.259155,0.27005,0.272552,0.265381,0.251801,0.23233,0.206909,0.174011,0.133789,0.0904236,0.0455322,0.006073,-0.0263367,-0.0494385,-0.0684509,-0.0848083,-0.10025,-0.108521,-0.110535,-0.108978,-0.11087,-0.12085,-0.137207,-0.158875,-0.181488,-0.203949,-0.22641,-0.249176,-0.272705,-0.288605,-0.296875,-0.292511,-0.278015,-0.258057,-0.235291,-0.208923,-0.181641,-0.152496,-0.125824,-0.104462,-0.0952759,-0.0958862,-0.102295,-0.112122,-0.125977,-0.142517,-0.161987,-0.181641,-0.197235,-0.206757,-0.211884,-0.215485,-0.216431,-0.212982,-0.204895,-0.192413,-0.174957,-0.142365,-0.0882568,-0.0154419,0.0668945,0.152191,0.235443,0.314972,0.384979,0.442047,0.479767,0.49707,0.487396,0.447968,0.383575,0.308105,0.239502,0.193329,0.181183,0.188354,0.203003,0.224823,0.264923,0.328217,0.402588,0.46402,0.485382,0.453888,0.375458,0.264923,0.138916,0.00546265,-0.133789,-0.269135,-0.383087,-0.45639,-0.473846,-0.437195,-0.360657,-0.265076,-0.161072,-0.0618896,0.0293274,0.102753,0.142517,0.138458,0.0865479,-0.00170898,-0.107117,-0.204254,-0.282379,-0.336945,-0.36734,-0.373108,-0.346313,-0.284698,-0.192413,-0.0835876,0.0240173,0.112427,0.170898,0.193512,0.187103,0.152191,0.0957336,0.0195007,-0.0671997,-0.154663,-0.232025,-0.28595,-0.311829,-0.307953,-0.279572,-0.23233,-0.17041,-0.100739,-0.0289917,0.0377197,0.0927734,0.135651,0.164337,0.17868,0.179626,0.174164,0.165283,0.156219,0.148132,0.144379,0.14798,0.16153,0.183044,0.214691,0.250244,0.286438,0.319794,0.348328,0.371246,0.386688,0.394165,0.386383,0.362823,0.322754,0.268188,0.20285,0.133636,0.0586243,-0.0151367,-0.0893555,-0.1539,-0.202698,-0.234344,-0.246368,-0.24588,-0.236389,-0.223114,-0.206451,-0.189606,-0.179474,-0.18103,-0.193329,-0.217987,-0.247437,-0.279419,-0.305603,-0.324463,-0.332886,-0.327576,-0.304199,-0.263977,-0.208313,-0.145782,-0.0821838,-0.0226135,0.0280762,0.0675049,0.0941772,0.106506,0.104309,0.0856018,0.0556641,0.0204163,-0.0124817,-0.0394592,-0.0564575,-0.0628357,-0.0589294,-0.0450745,-0.0212097,0.00857544,0.0410156,0.073761,0.105103,0.130035,0.145477,0.151245,0.147186,0.138458,0.127533,0.116791,0.10321,0.090271,0.0849915,0.0887146,0.102905,0.122559,0.14328,0.167145,0.194427,0.22345,0.24884,0.265533,0.272247,0.266937,0.25415,0.231232,0.200989,0.160431,0.116791,0.0681458,0.020752,-0.0261841,-0.0700073,-0.108215,-0.136444,-0.156708,-0.168854,-0.174957,-0.179138,-0.181488,-0.181641,-0.182281,-0.188507,-0.200195,-0.219543,-0.241211,-0.266632,-0.288757,-0.308563,-0.323059,-0.328827,-0.322449,-0.301544,-0.26709,-0.22345,-0.173553,-0.121918,-0.0714111,-0.0254211,0.0118408,0.0389709,0.0525513,0.0508423,0.0361633,0.0154419,-0.00827026,-0.0327454,-0.0556641,-0.0745239,-0.0867004,-0.0938721,-0.0944824,-0.090271,-0.0827942,-0.0760803,-0.0750122,-0.0810852,-0.0933838,-0.109467,-0.126282,-0.142517,-0.150146,-0.142365,-0.111633,-0.0558167,0.0198059,0.110718,0.208008,0.304047,0.3909,0.459503,0.509247,0.535583,0.531677,0.488983,0.410217,0.311371,0.217194,0.153259,0.123322,0.113983,0.110077,0.113983,0.142212,0.200836,0.278168,0.343964,0.367828,0.335236,0.253845,0.14624,0.0282288,-0.0983887,-0.230438,-0.364868,-0.479767,-0.551331,-0.564575,-0.521393,-0.439545,-0.334595,-0.221558,-0.105865,0.00390625,0.0993347,0.162781,0.181946,0.155609,0.0905762,0.0093689,-0.0706177,-0.135956,-0.18335,-0.214691,-0.226562,-0.209076,-0.159515,-0.079834,0.0177612,0.112732,0.189453,0.236206,0.252289,0.242767,0.20816,0.150299,0.0701599,-0.0243225,-0.122864,-0.210815,-0.276459,-0.315277,-0.328064,-0.316528,-0.284546,-0.23465,-0.171204,-0.101501,-0.0350952,0.0235291,0.0703125,0.105255,0.127228,0.139557,0.144684,0.144836,0.139709,0.132996,0.130493,0.135651,0.150452,0.173218,0.201599,0.23233,0.263031,0.293121,0.319,0.341003,0.354706,0.35611,0.342255,0.31012,0.263672,0.20285,0.136902,0.0643921,-0.0090332,-0.085907,-0.158112,-0.218597,-0.260223,-0.281586,-0.285645,-0.278931,-0.267395,-0.250732,-0.22937,-0.206604,-0.188507,-0.179779,-0.183197,-0.196777,-0.214386,-0.227814,-0.234039,-0.230927,-0.220154,-0.197876,-0.162323,-0.115692,-0.0581665,-0.000152588,0.0550537,0.0996399,0.130676,0.147491,0.15155,0.144531,0.122253,0.0905762,0.0531616,0.0168457,-0.0109253,-0.0279236,-0.031189,-0.0247803,-0.0152893,-0.00201416,0.0146484,0.0347595,0.0522461,0.0643921,0.0664368,0.0592651,0.0452271,0.0308838,0.0202637,0.0141907,0.0135803,0.0195007,0.0343018,0.0566101,0.0857544,0.12085,0.15686,0.189911,0.21579,0.231689,0.238403,0.235138,0.223602,0.204254,0.177582,0.14563,0.114136,0.0845032,0.0636292,0.0447388,0.0272827,0.00732422,-0.013092,-0.0330505,-0.054718,-0.0753174,-0.0985413,-0.128021,-0.161377,-0.194275,-0.222351,-0.242767,-0.258972,-0.270691,-0.279114,-0.28363,-0.280823,-0.269897,-0.253693,-0.232941,-0.211426,-0.189758,-0.167297,-0.141876,-0.112274,-0.081543,-0.0516052,-0.0265198,-0.00576782,0.0132446,0.0316467,0.0495911,0.063446,0.071106,0.0692139,0.0603333,0.0492859,0.0377197,0.0279236,0.0155945,0.00219727,-0.0135803,-0.031189,-0.0462952,-0.0595703,-0.0697021,-0.0813904,-0.0971375,-0.115845,-0.140015,-0.165741,-0.187103,-0.2005,-0.2052,-0.201447,-0.179474,-0.13208,-0.0608215,0.0293274,0.130829,0.235901,0.336151,0.425201,0.493347,0.534668,0.547913,0.527496,0.473206,0.385437,0.278625,0.172913,0.0901184,0.0411682,0.0169983,0.00872803,0.0129395,0.039917,0.0909119,0.158112,0.219543,0.247925,0.226868,0.160767,0.0639343,-0.0448914,-0.160583,-0.280182,-0.39743,-0.495667,-0.557587,-0.565826,-0.522339,-0.437042,-0.327118,-0.205048,-0.0805969,0.0396118,0.143433,0.219391,0.256348,0.253693,0.215485,0.155609,0.0907593,0.0286865,-0.0230713,-0.0618896,-0.0837402,-0.0813904,-0.0528564,-0.00280762,0.0595703,0.121002,0.17041,0.198029,0.201141,0.182281,0.141876,0.0830994,0.0093689,-0.0745239,-0.159515,-0.235443,-0.292969,-0.326813,-0.339294,-0.330078,-0.303894,-0.262115,-0.210022,-0.151398,-0.09198,-0.0368042,0.0123291,0.0548706,0.0913696,0.121002,0.146576,0.167603,0.185242,0.198486,0.209564,0.220154,0.230927,0.240906,0.249176,0.255859,0.25882,0.259308,0.258667,0.255402,0.249176,0.23761,0.218903,0.191925,0.155151,0.109314,0.0583191,0.00390625,-0.0539551,-0.113831,-0.173859,-0.225311,-0.265228,-0.288605,-0.295013,-0.288605,-0.275513,-0.255249,-0.228119,-0.19458,-0.16153,-0.134552,-0.115082,-0.104156,-0.09729,-0.0904236,-0.081543,-0.0698547,-0.0569153,-0.0405273,-0.0176086,0.0102844,0.0430298,0.0748291,0.100555,0.116638,0.123657,0.119598,0.106964,0.0857544,0.0569153,0.0237122,-0.0135803,-0.0464783,-0.0728149,-0.0879517,-0.0935669,-0.0910645,-0.0856018,-0.0765686,-0.0648499,-0.0517578,-0.0413208,-0.0327454,-0.0286865,-0.0263367,-0.0238647,-0.0168457,-0.00326538,0.0169983,0.0438232,0.0760803,0.111938,0.15094,0.19162,0.228424,0.255554,0.268951,0.271606,0.263031,0.248077,0.225311,0.194733,0.160431,0.124725,0.0947876,0.0720215,0.0541077,0.0396118,0.0255737,0.0119934,-0.00311279,-0.0221558,-0.0472412,-0.0778198,-0.114746,-0.155457,-0.195374,-0.232178,-0.261322,-0.282684,-0.29187,-0.287689,-0.271301,-0.245575,-0.212067,-0.175568,-0.139069,-0.105713,-0.0756226,-0.0500488,-0.0319519,-0.0205688,-0.0154419,-0.0135803,-0.00952148,-0.00421143,0.00390625,0.0112305,0.0202637,0.0316467,0.0452271,0.0615845,0.0742188,0.0776367,0.0717163,0.0570679,0.0371094,0.0113831,-0.0185547,-0.0522461,-0.0888672,-0.12381,-0.152802,-0.175415,-0.190369,-0.201447,-0.205048,-0.205963,-0.204254,-0.203308,-0.200684,-0.193817,-0.183685,-0.169006,-0.148743,-0.116486,-0.0632935,0.00827026,0.0938721,0.186157,0.279877,0.370483,0.451874,0.511719,0.54541,0.550079,0.526855,0.475403,0.396515,0.297485,0.19162,0.0979309,0.0303955,-0.00952148,-0.0302429,-0.0366516,-0.0303955,-0.00732422,0.0302429,0.0706177,0.096344,0.0893555,0.0464783,-0.0252686,-0.112274,-0.19989,-0.285034,-0.362061,-0.424744,-0.46106,-0.458252,-0.413666,-0.334137,-0.231079,-0.116943,-0.00186157,0.107117,0.203796,0.278778,0.324615,0.334442,0.310425,0.265228,0.208923,0.151855,0.0979309,0.0502014,0.0109253,-0.0141907,-0.0230713,-0.0155945,0.000457764,0.0187073,0.0322876,0.0341492,0.0223083,-0.00360107,-0.0394592,-0.0834045,-0.13504,-0.188202,-0.239349,-0.281128,-0.310608,-0.325104,-0.325104,-0.309967,-0.284241,-0.245117,-0.19693,-0.142365,-0.0867004,-0.0328979,0.0193481,0.0712585,0.121307,0.169006,0.212372,0.251038,0.280823,0.302795,0.314819,0.321991,0.321808,0.314331,0.299835,0.27771,0.249939,0.2211,0.190369,0.162323,0.134857,0.107422,0.0820007,0.0552063,0.0255737,-0.00622559,-0.0397644,-0.0740662,-0.106812,-0.139862,-0.173065,-0.203003,-0.225464,-0.236206,-0.235596,-0.222656,-0.204407,-0.181641,-0.153748,-0.121002,-0.087616,-0.0558167,-0.0303955,-0.0110779,0.00360107,0.0135803,0.0255737,0.0363159,0.047699,0.0548706,0.0623779,0.0684509,0.0746765,0.0788879,0.0773315,0.0678406,0.0492859,0.0209045,-0.0140381,-0.0505066,-0.0865479,-0.11911,-0.148743,-0.171814,-0.187103,-0.190704,-0.183533,-0.166382,-0.141571,-0.113983,-0.0867004,-0.0615845,-0.0419312,-0.0249329,-0.00967407,0.00637817,0.0223083,0.040863,0.0615845,0.085907,0.116943,0.154999,0.197876,0.239349,0.275513,0.302948,0.32074,0.325867,0.316223,0.293457,0.2565,0.212982,0.164642,0.117249,0.0718689,0.0327454,0.00109863,-0.0235291,-0.0414734,-0.0536499,-0.0631409,-0.0708008,-0.0809326,-0.0944824,-0.114594,-0.138458,-0.164795,-0.188965,-0.207855,-0.220001,-0.22406,-0.218903,-0.204559,-0.181335,-0.150299,-0.113678,-0.0734253,-0.0352478,-0.00125122,0.0213623,0.0361633,0.043335,0.042572,0.0369568,0.0282288,0.0163574,0.00421143,-0.00592041,-0.0138855,-0.0195007,-0.0232239,-0.0257263,-0.0269775,-0.0296326,-0.0347595,-0.044281,-0.0580139,-0.0757751,-0.0949707,-0.112579,-0.130035,-0.144684,-0.156555,-0.164337,-0.170258,-0.170898,-0.167297,-0.161224,-0.155151,-0.149841,-0.145935,-0.141876,-0.139709,-0.136902,-0.129425,-0.113678,-0.084198,-0.037262,0.0247803,0.101959,0.189453,0.285645,0.382935,0.470428,0.535736,0.568787,0.570038,0.540894,0.484131,0.397919,0.284546,0.155304,0.0291443,-0.0715637,-0.137207,-0.17041,-0.182129,-0.172455,-0.143768,-0.0916748,-0.0246277,0.040863,0.0816956,0.0860596,0.0533142,-0.00531006,-0.0776367,-0.155609,-0.234497,-0.307465,-0.364227,-0.388397,-0.371399,-0.311371,-0.219055,-0.106171,0.0141907,0.135651,0.248535,0.343658,0.408508,0.435638,0.420044,0.372192,0.299683,0.212524,0.119904,0.0300903,-0.0514526,-0.116638,-0.161224,-0.182587,-0.182587,-0.166992,-0.143768,-0.116791,-0.0952759,-0.0830994,-0.0813904,-0.0923157,-0.113342,-0.143127,-0.178223,-0.213135,-0.246185,-0.267242,-0.279114,-0.275513,-0.257751,-0.226715,-0.181335,-0.127533,-0.0640869,0.00234985,0.0686035,0.132385,0.191772,0.243713,0.287354,0.320099,0.340546,0.345978,0.338501,0.318848,0.289551,0.25415,0.214539,0.174774,0.135956,0.10025,0.0692139,0.0453796,0.0272827,0.0165405,0.00918579,0.00341797,-0.00561523,-0.0188599,-0.0369568,-0.0580139,-0.0787354,-0.100891,-0.124573,-0.148132,-0.165283,-0.171356,-0.164185,-0.145325,-0.118805,-0.0891724,-0.0570679,-0.0243225,0.00732422,0.0354004,0.0534668,0.0620422,0.0600281,0.0514526,0.0413208,0.0302429,0.0219727,0.0143433,0.00762939,0.00466919,0.00170898,0.000793457,-0.00186157,-0.00982666,-0.0244751,-0.0467834,-0.0773315,-0.112427,-0.148743,-0.182739,-0.211121,-0.231842,-0.239655,-0.234039,-0.21579,-0.184448,-0.14267,-0.0943298,-0.0436707,0.0045166,0.0464783,0.0801392,0.105408,0.123322,0.134857,0.14032,0.142822,0.144073,0.149231,0.160126,0.176819,0.198486,0.221863,0.242004,0.257568,0.266327,0.267731,0.259918,0.237793,0.20224,0.157959,0.10556,0.053009,0.00311279,-0.041626,-0.0776367,-0.106964,-0.127686,-0.139252,-0.140808,-0.134552,-0.12381,-0.112732,-0.104156,-0.0977478,-0.0916748,-0.0862122,-0.0813904,-0.0799866,-0.0793762,-0.077179,-0.0725098,-0.0625305,-0.0509949,-0.0388184,-0.0296326,-0.019165,-0.0112305,-0.00360107,0.000305176,-0.000152588,-0.00497437,-0.014801,-0.0246277,-0.0360107,-0.0467834,-0.0587769,-0.0703125,-0.0796814,-0.0884094,-0.0947876,-0.101807,-0.108215,-0.114746,-0.120209,-0.122711,-0.124725,-0.125214,-0.124878,-0.122253,-0.115387,-0.107117,-0.0958862,-0.084198,-0.0732727,-0.063446,-0.0572205,-0.0550537,-0.0562744,-0.063446,-0.0731201,-0.0857544,-0.0955811,-0.0985413,-0.0926208,-0.0701599,-0.0288391,0.0324402,0.11087,0.200684,0.295776,0.383728,0.457001,0.506592,0.525909,0.509705,0.457794,0.371094,0.258362,0.131134,0.00466919,-0.104462,-0.184753,-0.231537,-0.245728,-0.227325,-0.180725,-0.109467,-0.0235291,0.0614319,0.128784,0.165283,0.162476,0.125061,0.0600281,-0.0229187,-0.111481,-0.197235,-0.268341,-0.311829,-0.320251,-0.286102,-0.218903,-0.125214,-0.0182495,0.0927734,0.197083,0.283142,0.341309,0.365936,0.351288,0.304657,0.23233,0.14798,0.0595703,-0.0266724,-0.103058,-0.162476,-0.202545,-0.217194,-0.21283,-0.191772,-0.164978,-0.135498,-0.109772,-0.0921631,-0.085144,-0.0877686,-0.098999,-0.115997,-0.136597,-0.155609,-0.171204,-0.178528,-0.176666,-0.164978,-0.143616,-0.114288,-0.079834,-0.0402222,0.000610352,0.0414734,0.0809326,0.115845,0.148132,0.176819,0.201904,0.221252,0.236053,0.243866,0.244171,0.236053,0.220001,0.199097,0.17215,0.143616,0.112885,0.0804443,0.0497437,0.0237122,0.00296021,-0.010437,-0.0185547,-0.0235291,-0.0263367,-0.02948,-0.0321045,-0.0346069,-0.0380554,-0.042572,-0.0480347,-0.0553589,-0.0583191,-0.0567627,-0.0491028,-0.0358582,-0.019165,-0.00109863,0.0151367,0.0289917,0.0385132,0.0420837,0.0379028,0.0271301,0.00997925,-0.0090332,-0.0279236,-0.0431824,-0.0525513,-0.0562744,-0.0544128,-0.0484924,-0.0386658,-0.0296326,-0.0221558,-0.0237122,-0.0346069,-0.0566101,-0.0862122,-0.123016,-0.160583,-0.197083,-0.226562,-0.245117,-0.250092,-0.235901,-0.205505,-0.159821,-0.103851,-0.0422668,0.0187073,0.0743713,0.118958,0.148438,0.163239,0.161987,0.151855,0.134094,0.115082,0.0991516,0.0879517,0.0865479,0.0960388,0.117249,0.146423,0.17807,0.206909,0.228577,0.239349,0.238098,0.22345,0.193024,0.15094,0.0994873,0.0450745,-0.00576782,-0.0489502,-0.0813904,-0.102448,-0.112122,-0.109619,-0.0966797,-0.0756226,-0.0511475,-0.0303955,-0.0152893,-0.00796509,-0.006073,-0.00717163,-0.0144958,-0.0244751,-0.0375671,-0.0489502,-0.0559692,-0.0572205,-0.0561218,-0.0516052,-0.0467834,-0.0402222,-0.033844,-0.0299377,-0.0291443,-0.0335083,-0.0420837,-0.0552063,-0.0687561,-0.0827942,-0.0947876,-0.106018,-0.114746,-0.12146,-0.123505,-0.122253,-0.116486,-0.110382,-0.103058,-0.09729,-0.092926,-0.0898132,-0.0874634,-0.085144,-0.081543,-0.0785828,-0.07547,-0.0717163,-0.0664368,-0.0606384,-0.0555115,-0.0523987,-0.0531616,-0.059082,-0.0698547,-0.0846558,-0.102295,-0.120056,-0.133301,-0.135956,-0.12381,-0.0924683,-0.0430298,0.0249329,0.111481,0.209259,0.308411,0.394958,0.45871,0.493652,0.496765,0.468079,0.404449,0.308563,0.188965,0.0628357,-0.0502014,-0.133453,-0.18335,-0.199585,-0.187744,-0.148132,-0.0823364,0.00405884,0.094635,0.168549,0.210022,0.210663,0.174316,0.111786,0.0308838,-0.0617371,-0.157806,-0.243073,-0.301697,-0.321503,-0.299225,-0.242767,-0.161377,-0.0639343,0.0397644,0.141571,0.230438,0.293457,0.322906,0.313232,0.272858,0.209259,0.13208,0.0498962,-0.0317993,-0.104614,-0.161377,-0.19693,-0.209259,-0.202393,-0.180878,-0.154053,-0.12442,-0.0982361,-0.0801392,-0.0715637,-0.0745239,-0.087616,-0.107727,-0.131897,-0.151855,-0.167938,-0.177765,-0.177582,-0.168243,-0.149689,-0.123016,-0.0907593,-0.053009,-0.0149536,0.0238647,0.0578613,0.0890198,0.116638,0.142365,0.163574,0.181335,0.195374,0.205658,0.209412,0.206604,0.19989,0.188202,0.171356,0.151703,0.130493,0.109314,0.0871582,0.0679932,0.052063,0.0417786,0.0343018,0.0302429,0.025116,0.0182495,0.0101318,0.000793457,-0.0101318,-0.0205688,-0.0307312,-0.0407104,-0.0464783,-0.0467834,-0.0385132,-0.0232239,-0.00421143,0.0157471,0.0346069,0.0483398,0.0569153,0.0567627,0.0467834,0.0286865,0.00326538,-0.0263367,-0.0539551,-0.0760803,-0.09198,-0.0994873,-0.0993347,-0.0915222,-0.0756226,-0.0587769,-0.0430298,-0.0346069,-0.0360107,-0.0498962,-0.0725098,-0.103851,-0.140961,-0.178528,-0.212372,-0.237305,-0.247772,-0.241058,-0.217651,-0.178528,-0.128937,-0.0706177,-0.0112305,0.0453796,0.0905762,0.125519,0.142365,0.147491,0.14032,0.126465,0.110382,0.0952759,0.0854492,0.0835876,0.0916748,0.111786,0.137848,0.168091,0.196136,0.21814,0.23233,0.234039,0.224213,0.199585,0.162781,0.11911,0.0722046,0.0283813,-0.00918579,-0.0389709,-0.0567627,-0.065033,-0.0615845,-0.0494385,-0.033844,-0.0173035,-0.00390625,0.00341797,0.00515747,0.00170898,-0.00701904,-0.0188599,-0.0346069,-0.0491028,-0.0617371,-0.0675049,-0.0684509,-0.0648499,-0.0586243,-0.0522461,-0.0452271,-0.0407104,-0.039917,-0.0427246,-0.0513,-0.0640869,-0.0802917,-0.0988464,-0.11615,-0.131744,-0.142365,-0.147827,-0.148132,-0.143127,-0.134247,-0.122101,-0.109924,-0.0979309,-0.0881042,-0.0827942,-0.0804443,-0.0818481,-0.0862122,-0.0916748,-0.0980835,-0.104156,-0.106812,-0.107422,-0.104462,-0.101349,-0.0996399,-0.100739,-0.105103,-0.111786,-0.119293,-0.127869,-0.13269,-0.128174,-0.103699,-0.0589294,0.00280762,0.078125,0.165894,0.264435,0.367493,0.45871,0.523285,0.551483,0.539642,0.492249,0.414429,0.310913,0.187897,0.057373,-0.0612793,-0.14798,-0.192719,-0.19632,-0.167297,-0.113525,-0.0400696,0.0484924,0.136444,0.20816,0.242004,0.228271,0.172913,0.0899658,-0.00482178,-0.104614,-0.19928,-0.280823,-0.331787,-0.340851,-0.304047,-0.22998,-0.13208,-0.0238647,0.081543,0.177582,0.255402,0.30545,0.31543,0.285797,0.223602,0.142517,0.0522461,-0.0352478,-0.114746,-0.180725,-0.22641,-0.246674,-0.242004,-0.218597,-0.185699,-0.149384,-0.116486,-0.0916748,-0.0785828,-0.0785828,-0.0901184,-0.111176,-0.137054,-0.160583,-0.179474,-0.187744,-0.185699,-0.171509,-0.145477,-0.110229,-0.0675049,-0.0227661,0.0230713,0.0657959,0.101807,0.130981,0.153595,0.170563,0.182434,0.188049,0.191315,0.193176,0.194275,0.190857,0.185852,0.177429,0.16684,0.153412,0.137512,0.121765,0.105713,0.0915222,0.0768738,0.0637817,0.054718,0.0473938,0.0413208,0.0344543,0.0244751,0.0105896,-0.00656128,-0.0230713,-0.037262,-0.0480347,-0.0566101,-0.0592651,-0.0536499,-0.0366516,-0.0135803,0.0154419,0.0427246,0.0654907,0.0809326,0.0856018,0.0782776,0.0586243,0.0266724,-0.014801,-0.0623779,-0.106506,-0.144531,-0.169006,-0.181183,-0.178833,-0.165131,-0.139557,-0.108063,-0.0751648,-0.0484924,-0.0324402,-0.0302429,-0.0434875,-0.0671997,-0.101959,-0.140656,-0.179779,-0.211884,-0.231232,-0.232788,-0.216736,-0.182434,-0.134094,-0.0750122,-0.0107727,0.0522461,0.110077,0.155304,0.184601,0.200043,0.200348,0.19162,0.17337,0.15155,0.130829,0.114594,0.105408,0.104004,0.109619,0.120514,0.134705,0.148438,0.159515,0.161987,0.157806,0.144684,0.127075,0.103851,0.078125,0.0511475,0.0263367,0.00592041,-0.00656128,-0.0124817,-0.013092,-0.0135803,-0.0143433,-0.0151367,-0.0168457,-0.0182495,-0.0226135,-0.0296326,-0.0375671,-0.0456848,-0.0497437,-0.0498962,-0.0472412,-0.0422668,-0.0386658,-0.0330505,-0.02948,-0.0288391,-0.033844,-0.0466309,-0.0657959,-0.090271,-0.115234,-0.140808,-0.164795,-0.183533,-0.197083,-0.2005,-0.19397,-0.179626,-0.157959,-0.134552,-0.110229,-0.088562,-0.0695496,-0.0584717,-0.0545654,-0.0606384,-0.0718689,-0.0890198,-0.106659,-0.123657,-0.139557,-0.151703,-0.161224,-0.167145,-0.168243,-0.166534,-0.161682,-0.155609,-0.146423,-0.129089,-0.0977478,-0.0508423,0.00967407,0.0801392,0.16153,0.252594,0.346771,0.433319,0.497864,0.535431,0.53949,0.511261,0.45343,0.364227,0.250244,0.123169,0.00125122,-0.0951233,-0.157013,-0.182434,-0.176178,-0.138763,-0.0750122,0.0132446,0.111633,0.199097,0.255402,0.267548,0.239014,0.178986,0.0955811,-0.0045166,-0.112732,-0.215637,-0.293457,-0.330719,-0.322754,-0.27301,-0.193665,-0.092926,0.0182495,0.129089,0.229523,0.302795,0.335999,0.325562,0.274719,0.194427,0.0975952,-0.00918579,-0.112732,-0.207367,-0.280182,-0.322296,-0.331635,-0.312012,-0.273163,-0.22345,-0.169495,-0.118042,-0.0773315,-0.0525513,-0.0464783,-0.0586243,-0.0838928,-0.113983,-0.143433,-0.168854,-0.18399,-0.185852,-0.174164,-0.147644,-0.10791,-0.0594177,-0.00421143,0.0505066,0.0988464,0.138916,0.168854,0.190857,0.201904,0.203308,0.197083,0.186493,0.173859,0.159363,0.144073,0.128937,0.114441,0.1026,0.0915222,0.0834045,0.07547,0.0695496,0.0657959,0.0654907,0.0689087,0.0743713,0.0790405,0.0804443,0.0791931,0.0722046,0.0622253,0.0487976,0.0330505,0.0165405,-0.000610352,-0.0135803,-0.0184021,-0.0144958,-0.000946045,0.0185547,0.0400696,0.0612793,0.0787354,0.0893555,0.0896606,0.0757751,0.047699,0.00686646,-0.0420837,-0.0927734,-0.140961,-0.180237,-0.208923,-0.223114,-0.221252,-0.20224,-0.169006,-0.127075,-0.0845032,-0.0489502,-0.0249329,-0.0135803,-0.0168457,-0.0324402,-0.0606384,-0.09729,-0.137054,-0.172455,-0.196625,-0.205048,-0.195831,-0.170105,-0.130035,-0.0785828,-0.0199585,0.0393066,0.0930786,0.136597,0.165741,0.181488,0.180725,0.167297,0.14328,0.114441,0.0870056,0.0637817,0.047699,0.0417786,0.044281,0.0566101,0.0757751,0.0982361,0.118347,0.133301,0.140808,0.139709,0.132385,0.118652,0.101501,0.0809326,0.0604858,0.0448914,0.035553,0.0322876,0.0352478,0.0397644,0.0431824,0.0461426,0.0455322,0.0424194,0.0325928,0.0180969,-0.00250244,-0.0243225,-0.0452271,-0.0620422,-0.0732727,-0.0813904,-0.0852966,-0.085907,-0.0840454,-0.0823364,-0.0813904,-0.085144,-0.094635,-0.109772,-0.128937,-0.149536,-0.170746,-0.186798,-0.200348,-0.205658,-0.203949,-0.193329,-0.177277,-0.156067,-0.134552,-0.11319,-0.0971375,-0.085144,-0.0821838,-0.0881042,-0.102753,-0.125366,-0.153412,-0.183685,-0.214874,-0.240265,-0.25882,-0.263184,-0.246033,-0.204559,-0.139709,-0.0587769,0.0388184,0.147186,0.263031,0.373749,0.465118,0.526093,0.551331,0.539948,0.497375,0.423157,0.321991,0.203308,0.0805969,-0.0261841,-0.103363,-0.145782,-0.155609,-0.135345,-0.0865479,-0.0113831,0.0796814,0.174622,0.25119,0.298584,0.310608,0.290802,0.244629,0.17807,0.094635,0.00421143,-0.0818481,-0.147827,-0.184143,-0.188507,-0.165436,-0.119904,-0.0569153,0.0157471,0.0915222,0.160767,0.210815,0.235138,0.226868,0.194122,0.139252,0.0673523,-0.0157471,-0.103699,-0.187744,-0.259918,-0.311829,-0.343353,-0.352997,-0.34613,-0.323547,-0.28891,-0.24823,-0.205811,-0.16745,-0.135193,-0.109619,-0.0910645,-0.0790405,-0.0718689,-0.0684509,-0.0665894,-0.0653381,-0.0618896,-0.0555115,-0.0452271,-0.0308838,-0.0137329,0.00531006,0.0252686,0.04599,0.0667419,0.0873108,0.104004,0.117554,0.126465,0.133453,0.136902,0.135956,0.130493,0.12085,0.108368,0.0954285,0.0829468,0.0720215,0.0626831,0.057373,0.0553589,0.0581665,0.0657959,0.0768738,0.0881042,0.0988464,0.107269,0.112885,0.11554,0.115845,0.115234,0.114136,0.111328,0.110077,0.110535,0.113678,0.117401,0.119904,0.118958,0.111938,0.0965271,0.0750122,0.0424194,0.00390625,-0.0411682,-0.0890198,-0.134552,-0.174316,-0.205811,-0.224823,-0.231232,-0.224213,-0.204895,-0.176819,-0.14267,-0.109131,-0.0782776,-0.0559692,-0.0438232,-0.0405273,-0.0484924,-0.0620422,-0.0802917,-0.0994873,-0.11319,-0.121155,-0.118958,-0.107269,-0.0873108,-0.0608215,-0.0299377,0.00296021,0.0333557,0.0569153,0.0714111,0.0765686,0.0736084,0.0645447,0.0491028,0.0305481,0.0124817,-0.00265503,-0.0113831,-0.0143433,-0.0118408,-0.00421143,0.00762939,0.0216675,0.0397644,0.0561218,0.0701599,0.0787354,0.0854492,0.0896606,0.0944824,0.0979309,0.1026,0.105713,0.109467,0.113831,0.118652,0.122101,0.124115,0.119598,0.110077,0.0957336,0.0782776,0.0576782,0.035553,0.0126343,-0.0107727,-0.0307312,-0.0461426,-0.057373,-0.0636292,-0.0689087,-0.0723572,-0.077179,-0.0835876,-0.0921631,-0.105255,-0.12146,-0.141113,-0.16153,-0.181488,-0.19754,-0.20816,-0.214081,-0.214233,-0.206909,-0.195679,-0.181946,-0.167297,-0.157806,-0.156219,-0.162476,-0.174774,-0.189911,-0.207062,-0.220459,-0.226074,-0.21283,-0.179321,-0.125366,-0.0533142,0.0324402,0.126465,0.220459,0.30484,0.367035,0.401337,0.398834,0.362366,0.297333,0.210175,0.110229,0.00918579,-0.0802917,-0.145935,-0.177124,-0.173706,-0.13736,-0.0743713,0.00997925,0.104462,0.19754,0.275055,0.324615,0.340057,0.325714,0.284546,0.226227,0.154816,0.0826416,0.0174561,-0.0271301,-0.0431824,-0.0325928,0.0015564,0.0533142,0.115387,0.179138,0.235443,0.277222,0.29657,0.288605,0.252289,0.190857,0.112274,0.0247803,-0.0632935,-0.147644,-0.218903,-0.274902,-0.307617,-0.319489,-0.313568,-0.295013,-0.268341,-0.236053,-0.204895,-0.178223,-0.159515,-0.14859,-0.143616,-0.142365,-0.142059,-0.142059,-0.138611,-0.130676,-0.117401,-0.100555,-0.079834,-0.0555115,-0.0305481,-0.00515747,0.0173035,0.0347595,0.0464783,0.0541077,0.0580139,0.0564575,0.0513,0.0430298,0.0324402,0.0218201,0.0105896,0.00186157,-0.00637817,-0.0126343,-0.0160522,-0.0140381,-0.00796509,0.00436401,0.0202637,0.0405273,0.0628357,0.0862122,0.108063,0.126617,0.139862,0.14798,0.149536,0.144836,0.138458,0.130981,0.123169,0.119446,0.119598,0.125061,0.135803,0.148132,0.16217,0.171814,0.17511,0.169342,0.152496,0.124725,0.0862122,0.0405273,-0.010437,-0.0594177,-0.104156,-0.138763,-0.161072,-0.168701,-0.162933,-0.145172,-0.119293,-0.0881042,-0.0575256,-0.0325928,-0.0184021,-0.0146484,-0.0219727,-0.039917,-0.0628357,-0.0890198,-0.112579,-0.132385,-0.140656,-0.138458,-0.124573,-0.100739,-0.0706177,-0.0385132,-0.00827026,0.0158997,0.031189,0.0360107,0.02948,0.0124817,-0.0116882,-0.0391235,-0.0645447,-0.0848083,-0.0957336,-0.0975952,-0.0871582,-0.0686035,-0.0411682,-0.00918579,0.0238647,0.0528564,0.0759277,0.0888672,0.0927734,0.0888672,0.0779724,0.0629883,0.0458374,0.0313416,0.0213623,0.0169983,0.0198059,0.0286865,0.0436707,0.0595703,0.0765686,0.0898132,0.0969849,0.0958862,0.0870056,0.0714111,0.0489502,0.0210571,-0.0109253,-0.0439758,-0.0720215,-0.0947876,-0.110229,-0.12085,-0.124878,-0.127075,-0.12381,-0.118347,-0.11087,-0.105713,-0.105103,-0.110229,-0.119751,-0.134399,-0.15094,-0.168854,-0.183197,-0.194275,-0.19458,-0.17868,-0.144379,-0.0927734,-0.0313416,0.0397644,0.11554,0.189301,0.253357,0.295929,0.309021,0.291107,0.242615,0.170746,0.0804443,-0.0215149,-0.122253,-0.212372,-0.277222,-0.309814,-0.307465,-0.273651,-0.212067,-0.129089,-0.0332031,0.0654907,0.153748,0.219055,0.254608,0.264282,0.251038,0.220001,0.17572,0.126282,0.0804443,0.0473938,0.0369568,0.048645,0.0782776,0.120361,0.168701,0.217651,0.262421,0.292816,0.303253,0.287048,0.248077,0.188507,0.115692,0.0358582,-0.0439758,-0.116943,-0.176666,-0.219543,-0.241058,-0.237793,-0.217499,-0.18634,-0.150146,-0.110229,-0.0718689,-0.0414734,-0.0221558,-0.014801,-0.0157471,-0.0229187,-0.0357056,-0.047699,-0.0567627,-0.0597229,-0.0586243,-0.0522461,-0.039917,-0.0241699,-0.00997925,0.00280762,0.0101318,0.0115356,0.00234985,-0.0143433,-0.0349121,-0.0601807,-0.088562,-0.116486,-0.141876,-0.160126,-0.169952,-0.171661,-0.164642,-0.14859,-0.122559,-0.0879517,-0.0473938,-0.00186157,0.0438232,0.088562,0.128784,0.162476,0.186951,0.200836,0.201752,0.192871,0.17511,0.152496,0.125214,0.098999,0.0768738,0.0600281,0.0519104,0.0528564,0.0612793,0.0751648,0.0896606,0.1026,0.11087,0.109924,0.0991516,0.0760803,0.0419312,0,-0.0467834,-0.0924683,-0.130493,-0.158875,-0.17215,-0.169342,-0.148132,-0.11087,-0.0618896,-0.00405884,0.054718,0.108215,0.151093,0.178528,0.188049,0.179321,0.154816,0.116943,0.0700073,0.0199585,-0.0272827,-0.0662537,-0.094635,-0.111023,-0.11554,-0.109924,-0.0996399,-0.0857544,-0.0734253,-0.0643921,-0.0622253,-0.0679932,-0.0790405,-0.0944824,-0.108978,-0.12146,-0.126923,-0.125977,-0.11911,-0.103058,-0.0816956,-0.0553589,-0.0271301,-0.000152588,0.0224609,0.0402222,0.0548706,0.065033,0.0723572,0.0756226,0.0768738,0.0779724,0.0804443,0.0838928,0.0874634,0.0879517,0.0852966,0.0802917,0.0704651,0.0580139,0.0400696,0.0179443,-0.00827026,-0.0347595,-0.0594177,-0.0793762,-0.0947876,-0.105713,-0.110718,-0.107727,-0.098999,-0.0862122,-0.0734253,-0.0592651,-0.0483398,-0.0414734,-0.0403748,-0.0470886,-0.0601807,-0.0804443,-0.108215,-0.138916,-0.17041,-0.197693,-0.219543,-0.234192,-0.232483,-0.210022,-0.166534,-0.103058,-0.0269775,0.0600281,0.151093,0.241058,0.318085,0.37265,0.394623,0.380615,0.330566,0.252289,0.149231,0.0305481,-0.0943298,-0.209564,-0.300781,-0.356598,-0.373901,-0.352844,-0.298279,-0.21579,-0.112122,0.00109863,0.111786,0.200348,0.259155,0.28595,0.284546,0.259308,0.214081,0.157623,0.0974426,0.0441284,0.0123291,0.00341797,0.0202637,0.0538025,0.0991516,0.150299,0.203308,0.24823,0.276306,0.280334,0.260559,0.21579,0.152802,0.0796814,0.00219727,-0.0718689,-0.139709,-0.189911,-0.220642,-0.226868,-0.215179,-0.190857,-0.159668,-0.121002,-0.0829468,-0.0516052,-0.0308838,-0.0190125,-0.0151367,-0.0195007,-0.0283813,-0.0380554,-0.0422668,-0.041626,-0.0377197,-0.0291443,-0.0141907,0.00186157,0.0174561,0.0263367,0.0324402,0.0289917,0.0140381,-0.00811768,-0.036499,-0.0665894,-0.0982361,-0.128632,-0.153595,-0.167786,-0.171814,-0.164032,-0.148895,-0.123505,-0.0921631,-0.0553589,-0.0168457,0.0218201,0.0580139,0.0901184,0.11554,0.134094,0.146729,0.152649,0.150452,0.140808,0.12677,0.110077,0.0940247,0.0773315,0.0617371,0.0513,0.0452271,0.0448914,0.0498962,0.0583191,0.0692139,0.0796814,0.0873108,0.0910645,0.0891724,0.0802917,0.0640869,0.0407104,0.0143433,-0.0144958,-0.0405273,-0.0626831,-0.076416,-0.0790405,-0.0706177,-0.0516052,-0.0233765,0.0110779,0.0491028,0.0849915,0.114441,0.134094,0.141266,0.134247,0.114899,0.0865479,0.0506592,0.0113831,-0.0289917,-0.0651855,-0.094635,-0.114288,-0.126129,-0.128937,-0.128784,-0.124878,-0.120209,-0.114594,-0.110718,-0.110229,-0.111938,-0.114136,-0.113525,-0.106812,-0.0944824,-0.0785828,-0.0581665,-0.0352478,-0.0102844,0.0146484,0.035553,0.0489502,0.0533142,0.0502014,0.0427246,0.0310364,0.0195007,0.00546265,-0.00592041,-0.0123291,-0.0129395,-0.00482178,0.00686646,0.0184021,0.0279236,0.0344543,0.0377197,0.0346069,0.0255737,0.00717163,-0.0177612,-0.0450745,-0.0712585,-0.0924683,-0.107269,-0.11554,-0.116486,-0.107727,-0.088562,-0.0639343,-0.0385132,-0.0158997,0.000305176,0.00857544,0.00592041,-0.0093689,-0.0380554,-0.0757751,-0.118652,-0.159973,-0.192261,-0.207855,-0.202545,-0.170563,-0.111633,-0.02948,0.069397,0.175568,0.280029,0.369995,0.430023,0.451385,0.426453,0.357513,0.254303,0.122406,-0.0229187,-0.171356,-0.30249,-0.39978,-0.452026,-0.458099,-0.419586,-0.340698,-0.232941,-0.111938,0.0113831,0.125366,0.210968,0.258057,0.268646,0.249176,0.206299,0.147827,0.0821838,0.0219727,-0.0195007,-0.0354004,-0.0241699,0.0151367,0.0726624,0.135651,0.198181,0.253693,0.294678,0.310913,0.295166,0.251648,0.183533,0.10025,0.0109253,-0.0776367,-0.156067,-0.217834,-0.254608,-0.266479,-0.253052,-0.217346,-0.167145,-0.113525,-0.059082,-0.00952148,0.0308838,0.0567627,0.0665894,0.0643921,0.0561218,0.0419312,0.0257263,0.0138855,0.0102844,0.0109253,0.0171509,0.0265198,0.0402222,0.0516052,0.0570679,0.0566101,0.0480347,0.0279236,0.00201416,-0.0308838,-0.0640869,-0.0977478,-0.12973,-0.155457,-0.173859,-0.181641,-0.178986,-0.167145,-0.148743,-0.123657,-0.0930786,-0.0570679,-0.0202637,0.0166931,0.0513,0.0812378,0.106018,0.12381,0.136749,0.140015,0.138,0.126129,0.110535,0.09198,0.0743713,0.0578613,0.043335,0.0333557,0.0286865,0.0293274,0.0327454,0.038208,0.0424194,0.0436707,0.0405273,0.0325928,0.0205688,0.00219727,-0.0184021,-0.0396118,-0.0576782,-0.0682983,-0.0708008,-0.0626831,-0.043335,-0.0144958,0.0218201,0.0618896,0.101654,0.136444,0.163574,0.177917,0.178986,0.165894,0.141571,0.108368,0.0701599,0.0321045,-0.00186157,-0.0289917,-0.0483398,-0.0576782,-0.0584717,-0.0536499,-0.0452271,-0.0377197,-0.0341492,-0.0361633,-0.044281,-0.0566101,-0.0731201,-0.0910645,-0.108063,-0.120514,-0.124268,-0.1185,-0.104004,-0.083252,-0.0586243,-0.0316467,-0.00637817,0.0152893,0.0289917,0.0314941,0.0240173,0.00796509,-0.0132446,-0.037262,-0.0600281,-0.0795288,-0.0938721,-0.10025,-0.0971375,-0.085144,-0.0684509,-0.0495911,-0.0317993,-0.0180969,-0.00982666,-0.00842285,-0.0163574,-0.0325928,-0.0545654,-0.0784302,-0.101807,-0.121613,-0.136749,-0.14502,-0.146088,-0.140167,-0.131287,-0.122559,-0.114899,-0.110718,-0.112579,-0.120697,-0.130035,-0.135498,-0.129425,-0.109772,-0.0723572,-0.0157471,0.0617371,0.155457,0.259155,0.358154,0.438751,0.488037,0.500519,0.474792,0.407104,0.29657,0.151855,-0.00747681,-0.159668,-0.287994,-0.382782,-0.435333,-0.4422,-0.400391,-0.314819,-0.19162,-0.0509949,0.0873108,0.202087,0.286438,0.335693,0.354706,0.3396,0.291412,0.218597,0.137665,0.0657959,0.0144958,-0.00952148,-0.0118408,0.00326538,0.0310364,0.0704651,0.116486,0.157318,0.179779,0.174622,0.143768,0.092926,0.0305481,-0.0400696,-0.111938,-0.179779,-0.234039,-0.268188,-0.275665,-0.259308,-0.22406,-0.179321,-0.129089,-0.0791931,-0.0343018,0.0015564,0.0241699,0.0336914,0.0297852,0.0166931,0.00201416,-0.00918579,-0.0140381,-0.0112305,-0.00280762,0.0127869,0.0296326,0.0475464,0.0612793,0.0665894,0.0615845,0.042572,0.0132446,-0.0240173,-0.0636292,-0.102753,-0.138306,-0.165131,-0.180084,-0.180389,-0.165894,-0.140808,-0.10495,-0.0637817,-0.0196533,0.026825,0.0704651,0.111328,0.144379,0.170746,0.189301,0.201752,0.206909,0.201904,0.187744,0.165741,0.137512,0.105865,0.0729675,0.0374146,0.00421143,-0.0233765,-0.0430298,-0.0505066,-0.0473938,-0.0354004,-0.0174561,0.00405884,0.0279236,0.0506592,0.0664368,0.0732727,0.0684509,0.054718,0.0333557,0.00967407,-0.0143433,-0.0346069,-0.0470886,-0.0480347,-0.0385132,-0.0165405,0.0129395,0.0487976,0.0834045,0.115692,0.137207,0.148285,0.144226,0.125519,0.0958862,0.0575256,0.0157471,-0.0265198,-0.0645447,-0.0958862,-0.11615,-0.126465,-0.126129,-0.117706,-0.103546,-0.0871582,-0.0700073,-0.0544128,-0.0402222,-0.0296326,-0.0230713,-0.0193481,-0.0180969,-0.014801,-0.00888062,-0.00201416,0.00497437,0.010437,0.0155945,0.0195007,0.0216675,0.0184021,0.00857544,-0.00918579,-0.0319519,-0.0581665,-0.0834045,-0.108826,-0.13208,-0.152496,-0.162628,-0.164032,-0.153107,-0.133148,-0.107269,-0.0790405,-0.050354,-0.0219727,0.00170898,0.0185547,0.0241699,0.0177612,0.0015564,-0.0204163,-0.0467834,-0.0746765,-0.103851,-0.132538,-0.159973,-0.182281,-0.197235,-0.20816,-0.215332,-0.215027,-0.204712,-0.17807,-0.133301,-0.0726624,0.00326538,0.0916748,0.188507,0.28891,0.37796,0.443604,0.474457,0.466034,0.417389,0.33197,0.211731,0.0675049,-0.0838928,-0.2211,-0.32962,-0.398376,-0.419586,-0.392456,-0.319946,-0.207855,-0.0717163,0.0745239,0.208618,0.315277,0.381531,0.405853,0.394806,0.347076,0.270355,0.177582,0.0835876,0.00421143,-0.0497437,-0.0706177,-0.0612793,-0.031189,0.0171509,0.0739136,0.13208,0.179779,0.204712,0.200043,0.166687,0.106812,0.0328979,-0.0498962,-0.131744,-0.204102,-0.258057,-0.285187,-0.282074,-0.250732,-0.198181,-0.132843,-0.0608215,0.00531006,0.0592651,0.0960388,0.111023,0.105865,0.0810852,0.042572,-0.00186157,-0.0441284,-0.0756226,-0.0985413,-0.106812,-0.1026,-0.0884094,-0.0675049,-0.04599,-0.0282288,-0.0180969,-0.0218201,-0.0354004,-0.0592651,-0.0874634,-0.117249,-0.145172,-0.166199,-0.174622,-0.169189,-0.148895,-0.117249,-0.0745239,-0.0244751,0.0289917,0.0813904,0.129578,0.170746,0.201752,0.221863,0.229675,0.227631,0.216248,0.190857,0.157623,0.118805,0.077179,0.0358582,-0.00436401,-0.0400696,-0.0682983,-0.0882568,-0.0952759,-0.091217,-0.0746765,-0.0500488,-0.0196533,0.0126343,0.0466309,0.0778198,0.104156,0.121002,0.129578,0.127075,0.117096,0.103546,0.086853,0.0708008,0.0597229,0.0513,0.0491028,0.0531616,0.0628357,0.0746765,0.0873108,0.096344,0.0997925,0.0966797,0.084198,0.0637817,0.0368042,0.00592041,-0.0269775,-0.0598755,-0.0895081,-0.111328,-0.12442,-0.128632,-0.123962,-0.111786,-0.092926,-0.0690613,-0.0436707,-0.0185547,0.00466919,0.0230713,0.0366516,0.0447388,0.0475464,0.0473938,0.0411682,0.0319519,0.0223083,0.00952148,-0.0045166,-0.0195007,-0.035553,-0.0517578,-0.0700073,-0.0887146,-0.109314,-0.129089,-0.147491,-0.163879,-0.176819,-0.185547,-0.18866,-0.186646,-0.180084,-0.165741,-0.148895,-0.125214,-0.104004,-0.0830994,-0.0668945,-0.0538025,-0.0444336,-0.0428772,-0.046936,-0.0614319,-0.0802917,-0.101196,-0.122559,-0.144531,-0.16684,-0.18399,-0.190216,-0.182587,-0.158264,-0.114899,-0.0567627,0.0173035,0.102753,0.194733,0.281128,0.352386,0.401031,0.418945,0.40509,0.352692,0.266144,0.152008,0.0257263,-0.0997925,-0.208618,-0.291718,-0.341309,-0.354553,-0.327271,-0.256165,-0.150635,-0.026825,0.0988464,0.208313,0.296722,0.361908,0.399323,0.405396,0.37796,0.324463,0.257263,0.189453,0.135803,0.0993347,0.0757751,0.0656433,0.0629883,0.0736084,0.0888672,0.103851,0.105408,0.0877686,0.0517578,0.00390625,-0.0500488,-0.105408,-0.158569,-0.203003,-0.23233,-0.237946,-0.219238,-0.176971,-0.118958,-0.0522461,0.0124817,0.0681458,0.110718,0.134857,0.137512,0.114441,0.0712585,0.013092,-0.0516052,-0.111328,-0.161987,-0.194916,-0.214081,-0.213928,-0.197083,-0.166534,-0.12738,-0.0874634,-0.054718,-0.0317993,-0.0233765,-0.0279236,-0.0450745,-0.0706177,-0.101654,-0.133789,-0.160278,-0.177277,-0.181183,-0.169006,-0.141571,-0.101349,-0.0492859,0.0090332,0.0709534,0.129883,0.183044,0.225159,0.255096,0.270355,0.268951,0.248993,0.214081,0.16684,0.110229,0.0525513,-0.006073,-0.0587769,-0.104462,-0.136261,-0.151398,-0.147186,-0.127075,-0.0916748,-0.0472412,0.00466919,0.0576782,0.110535,0.157166,0.193024,0.215332,0.222656,0.217194,0.202087,0.180389,0.154663,0.12677,0.101196,0.0791931,0.0632935,0.0531616,0.0497437,0.0467834,0.0455322,0.0436707,0.0379028,0.0293274,0.0166931,0.000305176,-0.0182495,-0.0371094,-0.0555115,-0.0698547,-0.0793762,-0.082489,-0.0796814,-0.0701599,-0.0562744,-0.0385132,-0.0204163,-0.00201416,0.013092,0.0260315,0.0339966,0.0380554,0.0369568,0.0324402,0.0271301,0.0196533,0.0127869,0.00405884,-0.00561523,-0.0158997,-0.0260315,-0.038208,-0.0516052,-0.0681458,-0.088562,-0.110718,-0.134247,-0.155762,-0.175568,-0.190857,-0.201447,-0.2052,-0.203156,-0.191925,-0.174774,-0.152191,-0.127228,-0.1026,-0.0809326,-0.0643921,-0.0534668,-0.0498962,-0.0566101,-0.0718689,-0.0926208,-0.118652,-0.148285,-0.178986,-0.206757,-0.227966,-0.23996,-0.235748,-0.212372,-0.167297,-0.103058,-0.0204163,0.0718689,0.17041,0.264282,0.345215,0.402283,0.42926,0.41568,0.362061,0.271759,0.157623,0.0286865,-0.09729,-0.210327,-0.299683,-0.353638,-0.365021,-0.329315,-0.250397,-0.141113,-0.0157471,0.111023,0.226562,0.324005,0.393219,0.430511,0.430664,0.397614,0.342407,0.275665,0.211273,0.156067,0.117096,0.0938721,0.0867004,0.0949707,0.115845,0.138916,0.157013,0.160583,0.144531,0.110718,0.0611267,0.0015564,-0.0651855,-0.129578,-0.183838,-0.220795,-0.232941,-0.217041,-0.176666,-0.117096,-0.046936,0.0266724,0.0943298,0.145477,0.176361,0.180542,0.158722,0.111023,0.0464783,-0.0296326,-0.105103,-0.171509,-0.222656,-0.257751,-0.268494,-0.258667,-0.233734,-0.196625,-0.157806,-0.120697,-0.0935669,-0.079834,-0.0790405,-0.0916748,-0.114746,-0.143616,-0.17337,-0.196472,-0.210175,-0.209076,-0.193817,-0.162781,-0.118042,-0.0629883,-0.00360107,0.0555115,0.111023,0.157471,0.192871,0.21347,0.219696,0.210175,0.185089,0.14859,0.103363,0.0544128,0.00250244,-0.0453796,-0.0890198,-0.121613,-0.141418,-0.14563,-0.134399,-0.108521,-0.0687561,-0.019165,0.037262,0.0969849,0.15451,0.206299,0.247131,0.273804,0.286102,0.282837,0.26709,0.240753,0.207855,0.171661,0.135956,0.104614,0.0790405,0.0628357,0.0541077,0.0534668,0.057373,0.0643921,0.0695496,0.0714111,0.0697021,0.0628357,0.0517578,0.0344543,0.0137329,-0.00717163,-0.0274353,-0.0410156,-0.0506592,-0.0541077,-0.0523987,-0.0458374,-0.0324402,-0.0169983,-0.000610352,0.0152893,0.025116,0.031189,0.0314941,0.0272827,0.0195007,0.00671387,-0.0109253,-0.0297852,-0.0492859,-0.0678406,-0.0838928,-0.0997925,-0.114441,-0.127869,-0.142059,-0.153259,-0.164337,-0.174011,-0.183197,-0.190704,-0.194916,-0.195679,-0.191162,-0.184448,-0.173706,-0.161987,-0.149994,-0.14032,-0.133636,-0.131744,-0.134857,-0.14328,-0.153412,-0.167786,-0.18399,-0.201447,-0.213287,-0.21875,-0.216431,-0.204407,-0.181335,-0.142975,-0.0895081,-0.0216675,0.0545654,0.133148,0.210022,0.277374,0.328064,0.358612,0.358917,0.328064,0.267395,0.180878,0.0784302,-0.0297852,-0.129425,-0.210815,-0.26474,-0.286438,-0.272552,-0.219696,-0.135498,-0.0319519,0.0812378,0.190704,0.286102,0.357056,0.400574,0.414276,0.399933,0.362823,0.310608,0.25058,0.195068,0.151855,0.125824,0.114746,0.117096,0.128784,0.14563,0.163574,0.175262,0.172302,0.151703,0.114136,0.0637817,0.00466919,-0.0561218,-0.111633,-0.157959,-0.187744,-0.193665,-0.175873,-0.136902,-0.0829468,-0.0168457,0.0481873,0.106506,0.153595,0.180878,0.185852,0.164337,0.122406,0.063446,-0.00671387,-0.078125,-0.144684,-0.202393,-0.24588,-0.271149,-0.278473,-0.270844,-0.25354,-0.229828,-0.204712,-0.181488,-0.163727,-0.154053,-0.151093,-0.153107,-0.158875,-0.162476,-0.163574,-0.160126,-0.148438,-0.128784,-0.100891,-0.0673523,-0.0293274,0.00811768,0.0434875,0.0743713,0.0974426,0.112274,0.117249,0.112274,0.0968323,0.0704651,0.0388184,0.00234985,-0.0346069,-0.0689087,-0.0988464,-0.122101,-0.134094,-0.134399,-0.120056,-0.0932312,-0.0545654,-0.006073,0.0475464,0.102905,0.155914,0.201599,0.237946,0.26178,0.270691,0.26709,0.25119,0.22641,0.196136,0.16449,0.135498,0.111176,0.0941772,0.085907,0.0829468,0.0874634,0.0947876,0.103699,0.109619,0.112274,0.108063,0.0988464,0.0845032,0.0678406,0.0491028,0.0305481,0.0160522,0.00482178,0.000946045,0.00250244,0.00857544,0.019165,0.0310364,0.0441284,0.0544128,0.0618896,0.0648499,0.0617371,0.0544128,0.0417786,0.0254211,0.00592041,-0.0151367,-0.0374146,-0.0592651,-0.0793762,-0.0988464,-0.115387,-0.130341,-0.142822,-0.153748,-0.16217,-0.169342,-0.173859,-0.177765,-0.177124,-0.174622,-0.169006,-0.161072,-0.152496,-0.144226,-0.137512,-0.133301,-0.133148,-0.140656,-0.15451,-0.173218,-0.196625,-0.222198,-0.247772,-0.271759,-0.291718,-0.304993,-0.306549,-0.295471,-0.271606,-0.232483,-0.179626,-0.113983,-0.0371094,0.0447388,0.125977,0.203003,0.266479,0.309021,0.328064,0.320251,0.281891,0.21579,0.126923,0.0240173,-0.081543,-0.178986,-0.252747,-0.297974,-0.311218,-0.286591,-0.225006,-0.133942,-0.0237122,0.0944824,0.209076,0.306244,0.379974,0.425049,0.440155,0.424561,0.385895,0.333832,0.274261,0.219055,0.175873,0.148743,0.138611,0.14267,0.156708,0.176178,0.195374,0.207672,0.205811,0.185547,0.151398,0.103546,0.0497437,-0.00531006,-0.0538025,-0.0923157,-0.113342,-0.110229,-0.0871582,-0.0458374,0.00842285,0.0676575,0.124725,0.170898,0.203949,0.217987,0.208771,0.177917,0.12738,0.0643921,-0.006073,-0.0739136,-0.13269,-0.18103,-0.215332,-0.233093,-0.235748,-0.226715,-0.211426,-0.194916,-0.178833,-0.170258,-0.166687,-0.170898,-0.18103,-0.194733,-0.208771,-0.220001,-0.223907,-0.219391,-0.204254,-0.179321,-0.147644,-0.109467,-0.0701599,-0.0330505,0.000946045,0.0263367,0.0431824,0.0478821,0.0424194,0.0261841,0.00140381,-0.0300903,-0.065033,-0.0993347,-0.131287,-0.157166,-0.176514,-0.184143,-0.180542,-0.165436,-0.137848,-0.0994873,-0.0536499,-0.000793457,0.053009,0.106506,0.155762,0.196136,0.225616,0.243225,0.247131,0.239349,0.221863,0.19754,0.168854,0.14032,0.115692,0.0958862,0.0834045,0.0812378,0.0849915,0.0952759,0.107422,0.121307,0.13269,0.141724,0.145782,0.145782,0.142059,0.135193,0.127533,0.119446,0.11319,0.109467,0.108673,0.109467,0.111328,0.112885,0.111786,0.109619,0.10321,0.0941772,0.0816956,0.0676575,0.0523987,0.037262,0.0218201,0.00701904,-0.00592041,-0.0165405,-0.0255737,-0.035553,-0.046936,-0.0595703,-0.0731201,-0.0874634,-0.104767,-0.123505,-0.142517,-0.160278,-0.174774,-0.184937,-0.190216,-0.191162,-0.186493,-0.17868,-0.167603,-0.156067,-0.145477,-0.140656,-0.142822,-0.153748,-0.171204,-0.194275,-0.222046,-0.253998,-0.286591,-0.316528,-0.34021,-0.354095,-0.357361,-0.347382,-0.320892,-0.276917,-0.217041,-0.143921,-0.0626831,0.0218201,0.104614,0.177429,0.233246,0.26413,0.266144,0.240906,0.186951,0.110229,0.0155945,-0.0843506,-0.177765,-0.251495,-0.29953,-0.315735,-0.298126,-0.245117,-0.165283,-0.0637817,0.0483398,0.161377,0.260376,0.338959,0.3909,0.41507,0.413177,0.388702,0.348328,0.296417,0.246368,0.2052,0.180878,0.169495,0.171051,0.179138,0.195679,0.213776,0.227814,0.228577,0.215485,0.186005,0.146423,0.101349,0.0558167,0.0157471,-0.0157471,-0.0316467,-0.025116,-0.000946045,0.0419312,0.0926208,0.149231,0.200836,0.242462,0.269745,0.276459,0.260223,0.2211,0.165588,0.0966797,0.0237122,-0.0473938,-0.109467,-0.15921,-0.193817,-0.209564,-0.209869,-0.198334,-0.181335,-0.160583,-0.144073,-0.13269,-0.129425,-0.13504,-0.148895,-0.166687,-0.185852,-0.20285,-0.213928,-0.214874,-0.203796,-0.183685,-0.156067,-0.123657,-0.0905762,-0.0595703,-0.0335083,-0.0162048,-0.00952148,-0.0166931,-0.0330505,-0.0594177,-0.0923157,-0.129425,-0.166199,-0.200348,-0.227814,-0.246979,-0.254608,-0.251343,-0.235291,-0.20816,-0.168701,-0.123322,-0.0712585,-0.0187073,0.033844,0.0813904,0.122711,0.152954,0.17215,0.180084,0.175568,0.162628,0.142822,0.12146,0.0982361,0.077179,0.0626831,0.0552063,0.057373,0.0648499,0.0779724,0.0932312,0.107574,0.121307,0.131592,0.138916,0.143616,0.144836,0.144379,0.143616,0.145477,0.150635,0.158875,0.168854,0.177765,0.184448,0.18866,0.18866,0.183685,0.173065,0.157471,0.138763,0.118042,0.098999,0.0830994,0.0703125,0.0598755,0.0505066,0.0428772,0.0360107,0.0286865,0.0196533,0.00811768,-0.00747681,-0.0275879,-0.0466309,-0.0668945,-0.0843506,-0.101501,-0.114746,-0.12442,-0.126923,-0.125366,-0.119598,-0.112885,-0.106323,-0.100891,-0.0979309,-0.101044,-0.110718,-0.127869,-0.154205,-0.186646,-0.223114,-0.258972,-0.292358,-0.321991,-0.34552,-0.361115,-0.364685,-0.355499,-0.332123,-0.29422,-0.245117,-0.18634,-0.120361,-0.0513,0.0144958,0.0718689,0.11615,0.144073,0.149689,0.133148,0.0937195,0.0349121,-0.0396118,-0.121002,-0.19693,-0.260223,-0.302948,-0.322296,-0.314331,-0.281128,-0.220001,-0.137054,-0.0410156,0.0553589,0.14328,0.214539,0.266937,0.299225,0.308105,0.294861,0.264435,0.225769,0.186005,0.154053,0.135345,0.129272,0.135956,0.15155,0.175873,0.202393,0.227325,0.241669,0.241669,0.22641,0.195984,0.158875,0.115845,0.073761,0.0361633,0.0123291,0.00717163,0.0244751,0.059082,0.107422,0.164185,0.222656,0.275818,0.317291,0.339752,0.341461,0.319,0.275665,0.217041,0.148438,0.078125,0.0107727,-0.0467834,-0.09198,-0.120056,-0.129578,-0.123016,-0.106812,-0.085144,-0.0625305,-0.0439758,-0.0310364,-0.025116,-0.02948,-0.043335,-0.0642395,-0.0884094,-0.112427,-0.131897,-0.143433,-0.146729,-0.143433,-0.132843,-0.1185,-0.101959,-0.0849915,-0.0717163,-0.0632935,-0.0643921,-0.0729675,-0.0907593,-0.114899,-0.145935,-0.17868,-0.211884,-0.240601,-0.264587,-0.279114,-0.285034,-0.277863,-0.260559,-0.231232,-0.194733,-0.152344,-0.106323,-0.0620422,-0.0205688,0.0144958,0.040863,0.0576782,0.063446,0.0601807,0.0475464,0.0302429,0.0115356,-0.00466919,-0.0171509,-0.0246277,-0.0252686,-0.0198059,-0.0093689,0.00497437,0.0205688,0.036499,0.0509949,0.0632935,0.073761,0.0827942,0.0907593,0.0993347,0.110535,0.12442,0.139709,0.15921,0.179321,0.200684,0.217041,0.228882,0.233734,0.230774,0.222504,0.206909,0.186157,0.159973,0.132996,0.107422,0.0854492,0.0700073,0.0580139,0.0514526,0.0505066,0.0539551,0.0608215,0.0670471,0.0718689,0.0731201,0.0687561,0.0606384,0.0480347,0.0332031,0.0152893,-0.00390625,-0.0223083,-0.0407104,-0.0550537,-0.0657959,-0.073761,-0.0810852,-0.088562,-0.0971375,-0.107269,-0.119751,-0.137512,-0.158264,-0.18399,-0.21048,-0.236847,-0.258514,-0.273651,-0.276459,-0.265686,-0.239349,-0.19928,-0.147186,-0.0871582,-0.0257263,0.0271301,0.0681458,0.0895081,0.0888672,0.0609741,0.0090332,-0.0653381,-0.152954,-0.243378,-0.322754,-0.384186,-0.420044,-0.425659,-0.398071,-0.339752,-0.25415,-0.149841,-0.0383606,0.0678406,0.158112,0.22467,0.262573,0.271759,0.253052,0.21048,0.150787,0.0843506,0.0223083,-0.0257263,-0.0534668,-0.0611267,-0.0491028,-0.0193481,0.0241699,0.0746765,0.123322,0.162781,0.187561,0.196136,0.188202,0.164185,0.130829,0.0910645,0.0531616,0.0254211,0.0138855,0.0204163,0.044281,0.0838928,0.13504,0.19162,0.249329,0.298279,0.332123,0.34491,0.33493,0.305756,0.259766,0.201447,0.136444,0.0704651,0.0126343,-0.0332031,-0.0611267,-0.0706177,-0.0645447,-0.0464783,-0.0219727,0.00592041,0.0332031,0.0567627,0.0751648,0.0857544,0.0870056,0.0784302,0.0636292,0.0444336,0.0265198,0.0116882,-0.000946045,-0.0105896,-0.0184021,-0.0219727,-0.0227661,-0.0226135,-0.0235291,-0.0272827,-0.0361633,-0.0491028,-0.0659485,-0.0882568,-0.113342,-0.14032,-0.16745,-0.191467,-0.211731,-0.225769,-0.232025,-0.227966,-0.215942,-0.193817,-0.164032,-0.130188,-0.0937195,-0.0576782,-0.0243225,0.00234985,0.0193481,0.0252686,0.0190125,0.00201416,-0.0237122,-0.0542603,-0.0856018,-0.116791,-0.141724,-0.160126,-0.16745,-0.163879,-0.151703,-0.129883,-0.102753,-0.0725098,-0.0428772,-0.0158997,0.00671387,0.0255737,0.0396118,0.0491028,0.0561218,0.0603333,0.065033,0.0703125,0.0788879,0.0891724,0.101501,0.110718,0.118042,0.121613,0.12085,0.116791,0.106018,0.0926208,0.07547,0.0600281,0.0466309,0.0360107,0.0322876,0.0350952,0.043335,0.057373,0.0743713,0.0937195,0.112732,0.129578,0.138763,0.141571,0.136108,0.122559,0.10025,0.0722046,0.041626,0.0112305,-0.0168457,-0.0410156,-0.0601807,-0.0729675,-0.0793762,-0.0796814,-0.0748291,-0.0708008,-0.0679932,-0.0684509,-0.0720215,-0.0799866,-0.0887146,-0.0968323,-0.0966797,-0.086853,-0.0643921,-0.0302429,0.0102844,0.0552063,0.0949707,0.125214,0.142059,0.140656,0.114136,0.0595703,-0.0219727,-0.121765,-0.222809,-0.314331,-0.385132,-0.432678,-0.450623,-0.433319,-0.380768,-0.293121,-0.185547,-0.0687561,0.0397644,0.131592,0.197876,0.237457,0.246979,0.227814,0.183044,0.120697,0.0489502,-0.0190125,-0.0751648,-0.112579,-0.129089,-0.12677,-0.109131,-0.0774841,-0.039917,-0.00405884,0.0274353,0.0491028,0.0598755,0.0553589,0.041626,0.0195007,-0.00360107,-0.0213623,-0.0279236,-0.0223083,-0.00436401,0.026825,0.0676575,0.115997,0.169189,0.217499,0.254944,0.273315,0.272095,0.251648,0.216583,0.171356,0.118652,0.0637817,0.00778198,-0.0393066,-0.071106,-0.0848083,-0.0793762,-0.0606384,-0.0339966,-0.0045166,0.0269775,0.0569153,0.0852966,0.108368,0.121002,0.126617,0.123016,0.114288,0.104614,0.0957336,0.088562,0.081543,0.0731201,0.0642395,0.0552063,0.0483398,0.0402222,0.0310364,0.0182495,0.00280762,-0.0163574,-0.0343018,-0.0541077,-0.0712585,-0.0882568,-0.10321,-0.116791,-0.126923,-0.133636,-0.13269,-0.125671,-0.110382,-0.0895081,-0.0646973,-0.0368042,-0.00762939,0.0226135,0.0494385,0.0703125,0.0801392,0.0773315,0.0620422,0.0360107,0.00250244,-0.0347595,-0.0748291,-0.114136,-0.148895,-0.174164,-0.187561,-0.185852,-0.171204,-0.149231,-0.121918,-0.0927734,-0.0620422,-0.0346069,-0.00967407,0.00857544,0.0216675,0.0282288,0.0310364,0.0316467,0.0303955,0.0300903,0.031189,0.0349121,0.0366516,0.0380554,0.0380554,0.0379028,0.036499,0.0327454,0.0252686,0.014801,0.00375366,-0.00747681,-0.014801,-0.0213623,-0.0238647,-0.0218201,-0.0152893,-0.0045166,0.0093689,0.0265198,0.0462952,0.065033,0.0795288,0.0896606,0.0915222,0.0884094,0.0795288,0.0657959,0.04599,0.0221558,-0.00296021,-0.0272827,-0.0472412,-0.0651855,-0.0790405,-0.0899658,-0.0961914,-0.102295,-0.108521,-0.113525,-0.118195,-0.122711,-0.128479,-0.134552,-0.134705,-0.123505,-0.0933838,-0.0466309,0.0119934,0.0784302,0.145935,0.20752,0.257751,0.288605,0.295776,0.271301,0.20816,0.109772,-0.0149536,-0.149048,-0.275818,-0.381073,-0.457153,-0.498627,-0.500031,-0.454193,-0.363464,-0.236053,-0.0904236,0.0539551,0.182892,0.281738,0.347534,0.37561,0.367828,0.323059,0.251648,0.160583,0.0643921,-0.0218201,-0.084198,-0.120056,-0.131439,-0.122406,-0.0966797,-0.0601807,-0.0187073,0.0209045,0.0514526,0.0671997,0.0642395,0.0439758,0.0124817,-0.0199585,-0.0466309,-0.0601807,-0.0611267,-0.04599,-0.0176086,0.0243225,0.081543,0.145477,0.204895,0.251343,0.27536,0.276123,0.253693,0.214539,0.161987,0.0988464,0.0289917,-0.0410156,-0.104462,-0.148895,-0.170898,-0.169189,-0.151093,-0.123962,-0.0907593,-0.0541077,-0.013092,0.0263367,0.0617371,0.0874634,0.100098,0.104004,0.101044,0.0966797,0.0924683,0.0898132,0.084198,0.0760803,0.0629883,0.0522461,0.0420837,0.0347595,0.0244751,0.0107727,-0.00872803,-0.0310364,-0.0511475,-0.0701599,-0.0854492,-0.100403,-0.115387,-0.128632,-0.139557,-0.142212,-0.138153,-0.124573,-0.104462,-0.0796814,-0.0519104,-0.0176086,0.020752,0.0604858,0.0982361,0.127075,0.144531,0.146423,0.134094,0.107574,0.0692139,0.0230713,-0.0302429,-0.0856018,-0.139709,-0.181641,-0.209076,-0.216888,-0.205658,-0.180389,-0.143127,-0.0988464,-0.0483398,0.00250244,0.0473938,0.083252,0.107269,0.118042,0.116638,0.107117,0.0927734,0.0748291,0.057373,0.040863,0.026825,0.0157471,0.010437,0.00778198,0.00842285,0.00811768,0.00466919,-0.00170898,-0.00827026,-0.0155945,-0.0219727,-0.0263367,-0.0293274,-0.0285339,-0.0223083,-0.0102844,0.00762939,0.0310364,0.0567627,0.0805969,0.0997925,0.114136,0.121307,0.119293,0.108978,0.0907593,0.063446,0.0316467,-0.00265503,-0.035553,-0.0651855,-0.0879517,-0.106659,-0.120056,-0.128326,-0.132233,-0.131287,-0.126923,-0.123962,-0.120697,-0.119293,-0.118195,-0.117889,-0.117706,-0.118195,-0.114899,-0.106018,-0.0871582,-0.0575256,-0.0173035,0.0299377,0.0821838,0.133942,0.176025,0.203949,0.213928,0.203003,0.164337,0.0965271,0.00219727,-0.108673,-0.222961,-0.326508,-0.40741,-0.46167,-0.478821,-0.459045,-0.396515,-0.296082,-0.16745,-0.0255737,0.114136,0.235901,0.329163,0.389343,0.411774,0.39447,0.342712,0.262878,0.165283,0.0645447,-0.0265198,-0.0980835,-0.141724,-0.160583,-0.155304,-0.130188,-0.0909119,-0.0445862,0.00201416,0.0438232,0.0714111,0.0810852,0.07547,0.0589294,0.0389709,0.0232239,0.0133972,0.0135803,0.0265198,0.0528564,0.0930786,0.142365,0.195526,0.245422,0.281128,0.296082,0.289551,0.260071,0.213776,0.151703,0.0788879,0.000457764,-0.0742188,-0.137207,-0.180542,-0.199585,-0.195374,-0.17337,-0.136902,-0.0915222,-0.0393066,0.013092,0.0637817,0.106171,0.135651,0.15155,0.15451,0.148895,0.138611,0.123322,0.106323,0.0857544,0.0656433,0.042572,0.0226135,0.00466919,-0.0121765,-0.0291443,-0.0484924,-0.0700073,-0.091217,-0.110077,-0.124725,-0.135651,-0.143768,-0.149689,-0.150452,-0.145782,-0.132996,-0.113525,-0.088562,-0.0601807,-0.0291443,0.00250244,0.0361633,0.0664368,0.0923157,0.109924,0.116638,0.110382,0.0899658,0.0598755,0.0201111,-0.0254211,-0.0732727,-0.120361,-0.162476,-0.192108,-0.208466,-0.206909,-0.190216,-0.161072,-0.122559,-0.08078,-0.0374146,0.00296021,0.0388184,0.065033,0.081543,0.0877686,0.0845032,0.0762329,0.0662537,0.057373,0.0498962,0.0431824,0.0375671,0.0336914,0.0325928,0.0316467,0.0296326,0.0227661,0.0107727,-0.00421143,-0.0195007,-0.0335083,-0.0438232,-0.0519104,-0.0525513,-0.0467834,-0.031189,-0.00967407,0.0204163,0.0534668,0.0873108,0.116638,0.139862,0.154358,0.157318,0.149689,0.12973,0.10025,0.065033,0.0257263,-0.0138855,-0.0481873,-0.0756226,-0.0969849,-0.109772,-0.115234,-0.114594,-0.109924,-0.103851,-0.0986938,-0.0949707,-0.0932312,-0.0923157,-0.0924683,-0.0926208,-0.0937195,-0.0923157,-0.0877686,-0.0774841,-0.0601807,-0.0349121,-0.00140381,0.0363159,0.0767212,0.115692,0.149689,0.171814,0.177429,0.165741,0.132538,0.0784302,0.00250244,-0.0888672,-0.186951,-0.280029,-0.358154,-0.411163,-0.434387,-0.425659,-0.380127,-0.300781,-0.193176,-0.0682983,0.0626831,0.180389,0.27832,0.347076,0.381836,0.378265,0.338348,0.267883,0.176666,0.0784302,-0.0174561,-0.0988464,-0.156403,-0.188354,-0.19458,-0.176178,-0.138306,-0.0879517,-0.0333557,0.0174561,0.0572205,0.0826416,0.0918274,0.085907,0.0698547,0.0478821,0.0286865,0.0160522,0.0143433,0.0280762,0.0545654,0.0935669,0.140808,0.190704,0.234497,0.26413,0.275665,0.264587,0.233093,0.18103,0.114288,0.0386658,-0.038208,-0.107574,-0.162628,-0.19693,-0.206909,-0.195068,-0.161682,-0.113678,-0.0550537,0.00796509,0.0686035,0.122406,0.163391,0.188965,0.198181,0.192871,0.174164,0.147827,0.114441,0.0804443,0.0472412,0.0162048,-0.00967407,-0.0302429,-0.0445862,-0.0545654,-0.0614319,-0.0675049,-0.0742188,-0.079834,-0.085907,-0.0901184,-0.0957336,-0.0999451,-0.102448,-0.101349,-0.0944824,-0.0840454,-0.0668945,-0.0462952,-0.020752,0.00671387,0.035553,0.0622253,0.0840454,0.0975952,0.103058,0.0957336,0.0784302,0.0489502,0.00997925,-0.0347595,-0.0820007,-0.125214,-0.162628,-0.189911,-0.204559,-0.202087,-0.184937,-0.152802,-0.111481,-0.065033,-0.0173035,0.0263367,0.0654907,0.0940247,0.111938,0.117096,0.110718,0.0955811,0.0751648,0.0542603,0.0349121,0.0165405,0.000152588,-0.0116882,-0.0212097,-0.0255737,-0.0283813,-0.0314941,-0.0352478,-0.0394592,-0.0430298,-0.0452271,-0.0444336,-0.0411682,-0.0324402,-0.0204163,-0.00296021,0.0190125,0.0441284,0.0690613,0.0937195,0.114746,0.128937,0.134705,0.131439,0.11911,0.0993347,0.0709534,0.0388184,0.00341797,-0.0297852,-0.0589294,-0.0829468,-0.0999451,-0.107574,-0.108368,-0.104309,-0.0957336,-0.0845032,-0.0742188,-0.0659485,-0.0612793,-0.0595703,-0.0604858,-0.0626831,-0.0662537,-0.0695496,-0.0742188,-0.0757751,-0.0745239,-0.0670471,-0.0555115,-0.0389709,-0.0155945,0.0140381,0.0495911,0.0827942,0.111023,0.124878,0.128937,0.119904,0.0944824,0.0492859,-0.0155945,-0.0957336,-0.180725,-0.260376,-0.3237,-0.36438,-0.37796,-0.359863,-0.310425,-0.228882,-0.123962,-0.00311279,0.118195,0.226868,0.312927,0.36734,0.38324,0.362518,0.306854,0.225464,0.127869,0.0249329,-0.0704651,-0.14859,-0.199738,-0.219696,-0.21048,-0.175568,-0.123657,-0.0651855,-0.00360107,0.0534668,0.0988464,0.126282,0.133789,0.124725,0.103699,0.0788879,0.0567627,0.0438232,0.0405273,0.0517578,0.0748291,0.108521,0.14859,0.190063,0.223267,0.240601,0.238251,0.215332,0.171356,0.111786,0.0431824,-0.02948,-0.0968323,-0.153107,-0.189301,-0.204102,-0.193665,-0.159363,-0.107422,-0.0436707,0.0226135,0.0849915,0.137512,0.179138,0.202698,0.207855,0.193512,0.162933,0.12442,0.08078,0.0388184,0.0015564,-0.0303955,-0.054718,-0.0698547,-0.0762329,-0.0762329,-0.0715637,-0.0662537,-0.0623779,-0.0608215,-0.0611267,-0.0643921,-0.0703125,-0.0762329,-0.0816956,-0.085144,-0.0845032,-0.0799866,-0.0712585,-0.0572205,-0.0388184,-0.0151367,0.00888062,0.0317993,0.0508423,0.0664368,0.0750122,0.0767212,0.0678406,0.0494385,0.0213623,-0.0123291,-0.0492859,-0.086853,-0.121307,-0.150635,-0.170105,-0.178528,-0.173859,-0.15686,-0.128326,-0.0916748,-0.0502014,-0.00717163,0.0333557,0.0689087,0.0954285,0.110229,0.11554,0.111328,0.0993347,0.0821838,0.0612793,0.0379028,0.0171509,-0.00125122,-0.014801,-0.0254211,-0.0343018,-0.0397644,-0.0422668,-0.041626,-0.0405273,-0.0383606,-0.0344543,-0.0271301,-0.0171509,-0.00311279,0.0132446,0.0314941,0.0513,0.0709534,0.0905762,0.107422,0.11911,0.125214,0.123505,0.115845,0.102295,0.0801392,0.0545654,0.0252686,-0.00390625,-0.0302429,-0.0519104,-0.0690613,-0.0802917,-0.0856018,-0.0830994,-0.0748291,-0.0622253,-0.0478821,-0.035553,-0.0247803,-0.0155945,-0.00918579,-0.00842285,-0.0110779,-0.0158997,-0.020752,-0.0255737,-0.0296326,-0.0346069,-0.040863,-0.0467834,-0.0559692,-0.0676575,-0.0840454,-0.103546,-0.125519,-0.146729,-0.159363,-0.157166,-0.139069,-0.106964,-0.0643921,-0.0133972,0.038208,0.0887146,0.13269,0.158569,0.160767,0.130981,0.0723572,-0.00732422,-0.0940247,-0.177917,-0.251343,-0.306396,-0.336639,-0.33493,-0.297333,-0.225922,-0.127869,-0.019165,0.0877686,0.181335,0.252899,0.295013,0.30484,0.282532,0.233887,0.163086,0.0809326,-0.00436401,-0.0782776,-0.129578,-0.154663,-0.155762,-0.136444,-0.101196,-0.0536499,0.00186157,0.0597229,0.110382,0.144073,0.160126,0.158569,0.144226,0.122559,0.0986938,0.0770264,0.0592651,0.0487976,0.0484924,0.0584717,0.0793762,0.108521,0.135651,0.154816,0.163574,0.158875,0.14267,0.114899,0.082489,0.043335,0.00311279,-0.0344543,-0.0618896,-0.0756226,-0.0736084,-0.0558167,-0.0299377,-0.000610352,0.0300903,0.0575256,0.0830994,0.102905,0.114136,0.112732,0.100555,0.0818481,0.0598755,0.0388184,0.0196533,0.00326538,-0.0109253,-0.0237122,-0.0316467,-0.0360107,-0.0379028,-0.036499,-0.0350952,-0.0363159,-0.0371094,-0.0396118,-0.0444336,-0.0491028,-0.0544128,-0.0601807,-0.0668945,-0.0739136,-0.0805969,-0.085144,-0.0846558,-0.0782776,-0.0679932,-0.0542603,-0.0393066,-0.0212097,-0.00265503,0.0158997,0.0293274,0.0352478,0.0316467,0.0168457,-0.0045166,-0.0314941,-0.0612793,-0.0915222,-0.120209,-0.141724,-0.15451,-0.155609,-0.145477,-0.12442,-0.0930786,-0.0569153,-0.0190125,0.0171509,0.0470886,0.071106,0.0867004,0.0938721,0.0910645,0.0796814,0.0614319,0.0394592,0.0166931,-0.00405884,-0.0230713,-0.0371094,-0.047699,-0.0523987,-0.0506592,-0.0436707,-0.0324402,-0.0180969,-0.00186157,0.0151367,0.0310364,0.0466309,0.0603333,0.0720215,0.08078,0.0867004,0.0893555,0.0899658,0.0871582,0.0840454,0.0784302,0.0709534,0.0618896,0.0498962,0.0358582,0.0201111,0.00561523,-0.00762939,-0.0204163,-0.0317993,-0.0386658,-0.040863,-0.0379028,-0.0314941,-0.0216675,-0.00997925,0.00341797,0.0165405,0.0271301,0.0335083,0.0346069,0.0324402,0.0275879,0.019165,0.00622559,-0.0107727,-0.0277405,-0.0411682,-0.0536499,-0.0673523,-0.0830994,-0.0974426,-0.110077,-0.118652,-0.12381,-0.129425,-0.135498,-0.139404,-0.140015,-0.136749,-0.128021,-0.111023,-0.0840454,-0.0483398,-0.00250244,0.0438232,0.0879517,0.123657,0.149689,0.162628,0.158569,0.133301,0.0826416,0.00918579,-0.077179,-0.163879,-0.241516,-0.301392,-0.341156,-0.355042,-0.337097,-0.285187,-0.204712,-0.10495,0.000610352,0.1026,0.19101,0.256805,0.294861,0.302032,0.279266,0.230621,0.16745,0.0937195,0.0193481,-0.0466309,-0.0951233,-0.119751,-0.122864,-0.108826,-0.0849915,-0.0525513,-0.0146484,0.0235291,0.0562744,0.0788879,0.0888672,0.0865479,0.0751648,0.0665894,0.057373,0.0517578,0.0508423,0.0583191,0.0723572,0.0940247,0.12146,0.149231,0.171509,0.185699,0.188507,0.17807,0.154816,0.122406,0.081543,0.038208,-0.00436401,-0.0445862,-0.077179,-0.0971375,-0.100098,-0.088562,-0.0654907,-0.0343018,-0.00219727,0.031189,0.0640869,0.0947876,0.11911,0.130676,0.129578,0.119904,0.104156,0.0863953,0.0664368,0.0434875,0.0224609,0.00201416,-0.0146484,-0.0263367,-0.0346069,-0.0397644,-0.0436707,-0.0436707,-0.0436707,-0.0456848,-0.0489502,-0.0533142,-0.0562744,-0.0611267,-0.0670471,-0.0732727,-0.0818481,-0.0857544,-0.085144,-0.0795288,-0.0681458,-0.0548706,-0.0366516,-0.0158997,0.00762939,0.0297852,0.04599,0.0550537,0.0531616,0.0413208,0.0210571,-0.00778198,-0.0427246,-0.08078,-0.1185,-0.148743,-0.170258,-0.17868,-0.176178,-0.160126,-0.13269,-0.0977478,-0.0559692,-0.0157471,0.0230713,0.0544128,0.0785828,0.0916748,0.0955811,0.0907593,0.0787354,0.0656433,0.0489502,0.0310364,0.0137329,-0.00109863,-0.0135803,-0.0216675,-0.0279236,-0.0339966,-0.0393066,-0.0436707,-0.0452271,-0.0439758,-0.039917,-0.0322876,-0.0224609,-0.00656128,0.0133972,0.0375671,0.0625305,0.0881042,0.11087,0.127533,0.13736,0.138458,0.131439,0.113983,0.0904236,0.0592651,0.0247803,-0.00918579,-0.0402222,-0.0654907,-0.081543,-0.0884094,-0.087616,-0.0762329,-0.0578613,-0.0335083,-0.00622559,0.0213623,0.0455322,0.0626831,0.0731201,0.0782776,0.0746765,0.0665894,0.0495911,0.0308838,0.0105896,-0.00952148,-0.0266724,-0.0402222,-0.0516052,-0.0595703,-0.0657959,-0.0681458,-0.0686035,-0.0687561,-0.0682983,-0.0679932,-0.0675049,-0.0700073,-0.073761,-0.0787354,-0.0820007,-0.0834045,-0.0835876,-0.087616,-0.0918274,-0.0965271,-0.0961914,-0.0932312,-0.0860596,-0.0717163,-0.0498962,-0.0202637,0.0133972,0.0473938,0.0765686,0.101044,0.116638,0.119904,0.107117,0.0746765,0.0216675,-0.04599,-0.115692,-0.181183,-0.237152,-0.277863,-0.29657,-0.289398,-0.254608,-0.195679,-0.116638,-0.0249329,0.0673523,0.15155,0.220642,0.266785,0.288757,0.28363,0.254303,0.205963,0.143921,0.0740662,0.00656128,-0.050354,-0.0907593,-0.113525,-0.119751,-0.113525,-0.0960388,-0.069397,-0.0350952,-0.00125122,0.0300903,0.0542603,0.0678406,0.0745239,0.0779724,0.0804443,0.0835876,0.0890198,0.096344,0.106323,0.118805,0.136902,0.153412,0.166534,0.171356,0.167786,0.152191,0.125824,0.0905762,0.0502014,0.00622559,-0.0352478,-0.0736084,-0.104156,-0.120697,-0.121155,-0.103851,-0.0734253,-0.0346069,0.00778198,0.0513,0.0933838,0.131439,0.158264,0.171967,0.169342,0.153412,0.126923,0.0944824,0.0572205,0.0201111,-0.0166931,-0.0475464,-0.0709534,-0.0877686,-0.0937195,-0.0918274,-0.0835876,-0.0698547,-0.0553589,-0.0420837,-0.0319519,-0.0229187,-0.0177612,-0.0152893,-0.0176086,-0.0238647,-0.0335083,-0.0411682,-0.0450745,-0.0444336,-0.0407104,-0.0357056,-0.0249329,-0.0129395,0.0015564,0.0146484,0.0224609,0.0252686,0.0201111,0.00827026,-0.010437,-0.0347595,-0.0617371,-0.090271,-0.115234,-0.134399,-0.144226,-0.144684,-0.13504,-0.114899,-0.0870056,-0.0541077,-0.0196533,0.0143433,0.0444336,0.0687561,0.085907,0.0940247,0.0915222,0.0818481,0.0657959,0.0466309,0.026825,0.00637817,-0.0129395,-0.0310364,-0.0455322,-0.0556641,-0.0625305,-0.0657959,-0.0665894,-0.0651855,-0.0603333,-0.052063,-0.0410156,-0.0271301,-0.0116882,0.00686646,0.0269775,0.0481873,0.0684509,0.0867004,0.102448,0.112427,0.11615,0.113037,0.101654,0.0826416,0.0592651,0.0333557,0.00686646,-0.0184021,-0.0419312,-0.0594177,-0.0690613,-0.069397,-0.0611267,-0.0472412,-0.0299377,-0.00888062,0.0129395,0.033844,0.0489502,0.0578613,0.0629883,0.0614319,0.0559692,0.0466309,0.036499,0.0258789,0.0154419,0.00811768,0.00280762,0,-0.00109863,-0.00201416,-0.00546265,-0.0116882,-0.0174561,-0.0263367,-0.0360107,-0.04599,-0.0583191,-0.0682983,-0.0750122,-0.0756226,-0.0712585,-0.0648499,-0.0555115,-0.0439758,-0.0288391,-0.0133972,-0.00170898,0.00360107,0.00482178,0.00201416,-0.00531006,-0.019165,-0.038208,-0.0578613,-0.0782776,-0.0979309,-0.114288,-0.130341,-0.142059,-0.145782,-0.140472,-0.129272,-0.10791,-0.0785828,-0.0427246,-0.000610352,0.0430298,0.0818481,0.112427,0.132233,0.138763,0.12973,0.102142,0.0570679,-0.00219727,-0.0670471,-0.129089,-0.184143,-0.226715,-0.246368,-0.245117,-0.21875,-0.170563,-0.104614,-0.0280762,0.0513,0.126923,0.188049,0.227173,0.244324,0.238556,0.209869,0.164185,0.10791,0.046936,-0.0102844,-0.0567627,-0.0884094,-0.102448,-0.0983887,-0.0770264,-0.0470886,-0.0102844,0.0280762,0.0632935,0.0921631,0.111328,0.116943,0.110718,0.0957336,0.0779724,0.0617371,0.047699,0.0375671,0.0349121,0.0396118,0.0523987,0.0728149,0.0918274,0.108978,0.121918,0.127869,0.123962,0.111023,0.0910645,0.0643921,0.0358582,0.00637817,-0.0193481,-0.0405273,-0.0505066,-0.0509949,-0.0417786,-0.0260315,-0.00497437,0.0174561,0.0407104,0.0637817,0.0826416,0.0955811,0.0999451,0.0975952,0.0893555,0.0774841,0.0626831,0.0461426,0.0289917,0.0113831,-0.00390625,-0.0180969,-0.0286865,-0.0369568,-0.0427246,-0.0464783,-0.0489502,-0.0498962,-0.0494385,-0.048645,-0.0458374,-0.0427246,-0.038208,-0.0350952,-0.0328979,-0.0297852,-0.0263367,-0.020752,-0.0152893,-0.0102844,-0.00576782,-0.00219727,0.00140381,0.00296021,0.00296021,-0.00170898,-0.0109253,-0.0230713,-0.0377197,-0.0539551,-0.0722046,-0.0887146,-0.10321,-0.113678,-0.117706,-0.114594,-0.105408,-0.0901184,-0.0701599,-0.0461426,-0.0219727,0.000152588,0.0187073,0.0324402,0.039917,0.0402222,0.0333557,0.0227661,0.00888062,-0.00515747,-0.0182495,-0.0299377,-0.0393066,-0.0450745,-0.0489502,-0.0489502,-0.0461426,-0.0413208,-0.0374146,-0.0339966,-0.0308838,-0.0263367,-0.0213623,-0.0160522,-0.00778198,0.00280762,0.0169983,0.0321045,0.0487976,0.0654907,0.0802917,0.0904236,0.0958862,0.094635,0.0863953,0.0728149,0.0533142,0.0299377,0.00576782,-0.0168457,-0.0349121,-0.0487976,-0.0553589,-0.0523987,-0.0431824,-0.0288391,-0.00982666,0.0102844,0.0321045,0.0489502,0.0618896,0.069397,0.0709534,0.0681458,0.0592651,0.0492859,0.0361633,0.0235291,0.0124817,0.00482178,0.00125122,-0.000305176,-0.000305176,-0.000305176,0.000457764,0.00140381,0.000305176,-0.00482178,-0.0129395,-0.0218201,-0.0303955,-0.0379028,-0.0448914,-0.0480347,-0.0481873,-0.0419312,-0.0349121,-0.0247803,-0.013092,-0.00170898,0.00732422,0.0151367,0.0168457,0.0138855,0.00436401,-0.00717163,-0.0196533,-0.0349121,-0.0517578,-0.0692139,-0.0827942,-0.0924683,-0.0968323,-0.096344,-0.0952759,-0.0938721,-0.0899658,-0.0843506,-0.0776367,-0.071106,-0.0670471,-0.0654907,-0.065033,-0.0646973,-0.0640869,-0.0632935,-0.0603333,-0.0544128,-0.0452271,-0.0308838,-0.0126343,0.00952148,0.0317993,0.0534668,0.069397,0.0795288,0.0795288,0.0664368,0.041626,0.00762939,-0.0335083,-0.0802917,-0.12973,-0.170258,-0.196625,-0.206116,-0.197083,-0.169495,-0.125214,-0.0667419,0.00140381,0.0734253,0.142822,0.198944,0.236542,0.25415,0.252136,0.230774,0.190704,0.137207,0.0778198,0.0188599,-0.033844,-0.0753174,-0.100403,-0.109619,-0.103058,-0.0820007,-0.0522461,-0.0168457,0.0221558,0.0595703,0.0923157,0.117554,0.133301,0.139557,0.138306,0.133942,0.129578,0.124725,0.119598,0.114746,0.112885,0.113678,0.117706,0.119751,0.117554,0.109131,0.0951233,0.0750122,0.0511475,0.0247803,-0.00326538,-0.0308838,-0.0527039,-0.0676575,-0.0728149,-0.0671997,-0.0502014,-0.0238647,0.00827026,0.043335,0.078125,0.108978,0.132996,0.149841,0.154999,0.148285,0.128784,0.0986938,0.0632935,0.0258789,-0.0113831,-0.047699,-0.0785828,-0.102295,-0.117249,-0.122559,-0.116943,-0.105255,-0.0888672,-0.0718689,-0.0541077,-0.0366516,-0.0212097,-0.0110779,-0.00515747,-0.00405884,-0.00671387,-0.0121765,-0.0173035,-0.0209045,-0.0224609,-0.0219727,-0.0219727,-0.0210571,-0.020752,-0.0213623,-0.0232239,-0.0289917,-0.0383606,-0.0528564,-0.0703125,-0.0890198,-0.105103,-0.117706,-0.126282,-0.128021,-0.124725,-0.112885,-0.0935669,-0.0700073,-0.0439758,-0.0180969,0.0045166,0.0226135,0.0344543,0.0402222,0.040863,0.0354004,0.0241699,0.0090332,-0.00762939,-0.0238647,-0.0380554,-0.0497437,-0.0569153,-0.0595703,-0.0598755,-0.0567627,-0.0509949,-0.0422668,-0.0316467,-0.0193481,-0.00732422,0.00390625,0.0133972,0.0216675,0.0296326,0.0366516,0.0417786,0.04599,0.0478821,0.0483398,0.0487976,0.047699,0.0473938,0.0441284,0.0386658,0.0335083,0.0263367,0.0190125,0.0118408,0.00592041,0.000152588,-0.00405884,-0.00796509,-0.00888062,-0.0101318,-0.00717163,-0.00436401,0.00170898,0.00857544,0.0158997,0.0249329,0.0333557,0.0424194,0.050354,0.0562744,0.0600281,0.0628357,0.0636292,0.0601807,0.0519104,0.0380554,0.0213623,0.00250244,-0.0169983,-0.0335083,-0.0492859,-0.0626831,-0.0726624,-0.0767212,-0.0751648,-0.0661011,-0.0519104,-0.0327454,-0.0133972,0.00515747,0.0205688,0.0341492,0.043335,0.0494385,0.0492859,0.042572,0.0303955,0.0160522,0.00186157,-0.0140381,-0.0277405,-0.042572,-0.0564575,-0.0675049,-0.0768738,-0.0790405,-0.0779724,-0.0740662,-0.0697021,-0.0623779,-0.0548706,-0.0448914,-0.0330505,-0.0195007,-0.0045166,0.00497437,0.0115356,0.0162048,0.0199585,0.0193481,0.0154419,0.00827026,-0.00219727,-0.0163574,-0.0327454,-0.0461426,-0.0583191,-0.0687561,-0.0785828,-0.0862122,-0.0915222,-0.0935669,-0.091217,-0.0857544,-0.0820007,-0.0805969,-0.0784302,-0.0718689,-0.0614319,-0.0466309,-0.0257263,0.00280762,0.0349121,0.0664368,0.0968323,0.125519,0.148743,0.162476,0.160919,0.137848,0.0941772,0.0358582,-0.0271301,-0.0898132,-0.146881,-0.19632,-0.227478,-0.233429,-0.212524,-0.166382,-0.0983887,-0.0155945,0.0718689,0.150787,0.214539,0.258667,0.281738,0.280029,0.250732,0.19754,0.130829,0.0614319,-0.00201416,-0.0527039,-0.0848083,-0.0966797,-0.0888672,-0.0676575,-0.0358582,0.00421143,0.0470886,0.0867004,0.112274,0.121155,0.113525,0.0983887,0.079834,0.0614319,0.0430298,0.0274353,0.0190125,0.0237122,0.0383606,0.0612793,0.0873108,0.113983,0.132233,0.138611,0.134705,0.122559,0.101044,0.0729675,0.0379028,-0.000793457,-0.0369568,-0.0664368,-0.0820007,-0.083252,-0.0745239,-0.0598755,-0.040863,-0.0187073,0.00375366,0.0260315,0.0458374,0.0603333,0.0646973,0.0589294,0.048645,0.039917,0.0314941,0.0216675,0.0118408,0.000152588,-0.0093689,-0.0165405,-0.0199585,-0.0219727,-0.0266724,-0.0344543,-0.0461426,-0.0600281,-0.0722046,-0.0835876,-0.0893555,-0.0923157,-0.0921631,-0.087616,-0.0788879,-0.0626831,-0.0410156,-0.0158997,0.00671387,0.0233765,0.0317993,0.0349121,0.0325928,0.0244751,0.00717163,-0.0162048,-0.0428772,-0.0684509,-0.0907593,-0.106506,-0.114746,-0.116638,-0.114136,-0.105713,-0.0932312,-0.0756226,-0.0553589,-0.0352478,-0.0196533,-0.00778198,0.000946045,0.00732422,0.0121765,0.014801,0.0158997,0.0151367,0.0118408,0.00701904,0.00234985,-0.00296021,-0.006073,-0.0112305,-0.0177612,-0.0258789,-0.0332031,-0.0380554,-0.038208,-0.0389709,-0.0358582,-0.0324402,-0.0257263,-0.0155945,-0.00265503,0.0115356,0.0260315,0.0391235,0.0505066,0.0586243,0.0645447,0.0661011,0.0662537,0.0637817,0.0580139,0.0491028,0.038208,0.0285339,0.0210571,0.0143433,0.00857544,0.00497437,0.0015564,0.000946045,0.000152588,0.0015564,0.00497437,0.00827026,0.0102844,0.0118408,0.0118408,0.0127869,0.0165405,0.0212097,0.0254211,0.0277405,0.0293274,0.0310364,0.0339966,0.0369568,0.0375671,0.0341492,0.0277405,0.0176086,0.00671387,-0.00311279,-0.0124817,-0.0226135,-0.0332031,-0.0456848,-0.0541077,-0.0589294,-0.0559692,-0.0519104,-0.0472412,-0.041626,-0.0336914,-0.0240173,-0.013092,-0.00341797,0.00561523,0.00967407,0.0115356,0.00918579,0.00311279,-0.0045166,-0.0119934,-0.0198059,-0.0310364,-0.0467834,-0.0598755,-0.0695496,-0.0728149,-0.0748291,-0.0748291,-0.0753174,-0.0714111,-0.0679932,-0.0584717,-0.0467834,-0.0343018,-0.0230713,-0.0158997,-0.00888062,-0.00265503,0.00375366,0.00982666,0.0135803,0.0138855,0.00918579,0.00341797,-0.00125122,-0.00515747,-0.00857544,-0.0152893,-0.0221558,-0.0310364,-0.0360107,-0.0386658,-0.0369568,-0.0341492,-0.0297852,-0.0280762,-0.0255737,-0.0216675,-0.0137329,-0.00421143,0.00515747,0.010437,0.013092,0.0143433,0.0151367,0.0176086,0.0168457,0.014801,0.0102844,0.0045166,0,-0.00109863,0.00125122,0.00952148,0.0218201,0.0336914,0.0417786,0.0475464,0.0523987,0.0595703,0.0611267,0.0548706,0.0361633,0.0132446,-0.00842285,-0.0258789,-0.0377197,-0.0422668,-0.0396118,-0.0307312,-0.0160522,0.0090332,0.040863,0.0736084,0.0999451,0.117096,0.121307,0.112579,0.0991516,0.0805969,0.0572205,0.0272827,-0.00390625,-0.0286865,-0.0441284,-0.0505066,-0.044281,-0.0285339,-0.00762939,0.010437,0.0260315,0.0424194,0.0581665,0.0698547,0.0748291,0.0703125,0.0564575,0.0385132,0.0246277,0.0157471,0.0093689,0.00296021,-0.00219727,-0.00531006,-0.00360107,0.000457764,0.0109253,0.0193481,0.0237122,0.0215149,0.0151367,0.0112305,0.00778198,0.00561523,0.0015564,-0.00466919,-0.0127869,-0.0184021,-0.0187073,-0.0126343,-0.00531006,0.000946045,0.00482178,0.00576782,0.00531006,0.006073,0.00982666,0.0113831,0.00701904,-0.00125122,-0.0101318,-0.0158997,-0.0171509,-0.0138855,-0.0112305,-0.0115356,-0.0126343,-0.0129395,-0.00857544,-0.00405884,-0.00109863,-0.00234985,-0.00576782,-0.0115356,-0.0169983,-0.0218201,-0.0226135,-0.0221558,-0.0241699,-0.025116,-0.0265198,-0.0233765,-0.0169983,-0.00888062,-0.00201416,0.000152588,-0.0015564,-0.00296021,-0.00326538,-0.00360107,-0.00421143,-0.00778198,-0.0126343,-0.0190125,-0.0241699,-0.0255737,-0.0233765,-0.0209045,-0.0198059,-0.0196533,-0.0196533,-0.0163574,-0.0112305,-0.00561523,-0.000946045,0,0.00186157,0.00341797,0.00701904,0.0093689,0.0124817,0.0137329,0.0137329,0.0115356,0.00918579,0.00778198,0.00778198,0.006073,0.00375366,-0.00234985,-0.00656128,-0.0102844,-0.010437,-0.0102844,-0.00872803,-0.00778198,-0.00497437,-0.00219727,0.00390625,0.0118408,0.0213623,0.0293274,0.0333557,0.0361633,0.0379028,0.0379028,0.0358582,0.0317993,0.0246277,0.0152893,0.00482178,-0.00405884,-0.0090332,-0.0121765,-0.0129395,-0.0119934,-0.00997925,-0.00482178,0,0.00778198,0.0163574,0.0229187,0.0249329,0.0241699,0.0219727,0.0204163,0.0165405,0.0118408,0.00436401,-0.00421143,-0.0109253,-0.0141907,-0.0163574,-0.0165405,-0.0177612,-0.0174561,-0.0176086,-0.0166931,-0.0154419,-0.0140381,-0.0124817,-0.0129395,-0.0146484,-0.0163574,-0.0177612,-0.0177612,-0.0171509,-0.0162048,-0.0177612,-0.0193481,-0.0210571,-0.0212097,-0.0209045,-0.0218201,-0.0246277,-0.0296326,-0.0344543,-0.0375671,-0.038208,-0.0347595,-0.0332031,-0.0325928,-0.0325928,-0.0314941,-0.0275879,-0.0226135,-0.0185547,-0.0177612,-0.0205688,-0.0237122,-0.0272827,-0.0293274,-0.0289917,-0.0300903,-0.0300903,-0.0319519,-0.0313416,-0.031189,-0.0275879,-0.0219727,-0.0154419,-0.0133972,-0.0133972,-0.0146484,-0.0119934,-0.00888062,-0.00622559,-0.00405884,-0.00637817,-0.00732422,-0.00918579,-0.00732422,-0.00497437,-0.00326538,-0.00466919,-0.00857544,-0.0126343,-0.0149536,-0.0149536,-0.0124817,-0.00918579,-0.00796509,-0.00592041,-0.00250244,0.00482178,0.0140381,0.0216675,0.0274353,0.0302429,0.0293274,0.0271301,0.0230713,0.0219727,0.0168457,0.0109253,0.00436401,-0.00360107,-0.00732422,-0.00717163,-0.00250244,0.00234985,0.0045166,0.00827026,0.0105896,0.0143433,0.0180969,0.0216675,0.0216675,0.0187073,0.0133972,0.00656128,0.00375366,0.00466919,0.010437,0.0166931,0.0218201,0.025116,0.0305481,0.0380554,0.044281,0.0453796,0.0410156,0.0307312,0.0160522,0.000610352,-0.0112305,-0.0205688,-0.0271301,-0.0307312,-0.0299377,-0.0244751,-0.0137329,0.0015564,0.0202637,0.0339966,0.0403748,0.0407104,0.0352478,0.0297852,0.0199585,0.00857544,-0.00466919,-0.0163574,-0.0255737,-0.0307312,-0.0282288,-0.0215149,-0.00952148,0.000610352,0.00857544,0.013092,0.0158997,0.0177612,0.0168457,0.0118408,0.00201416,-0.00842285,-0.019165,-0.0244751,-0.0249329,-0.0219727,-0.0171509,-0.0137329,-0.00952148,-0.00311279,0.00515747,0.0138855,0.0198059,0.0215149,0.0171509,0.0118408,0.00656128,0.00436401,0.00311279,0.000457764,-0.00421143,-0.00857544,-0.0119934,-0.0116882,-0.0109253,-0.00811768,-0.00656128,-0.00622559,-0.00732422,-0.00701904,-0.00436401,0.000946045,0.00732422,0.00952148,0.00967407,0.00982666,0.0112305,0.0154419,0.0168457,0.0168457,0.0151367,0.0109253,0.00762939,0.00671387,0.00717163,0.0090332,0.00717163,0.00482178,0.00201416,0.00311279,0.00531006,0.0093689,0.0141907,0.0184021,0.0202637,0.0205688,0.0233765,0.0279236,0.0307312,0.0305481,0.0260315,0.0195007,0.0132446,0.00796509,0.00546265,0.00421143,0.00219727,0.00125122,0.00296021,0.00952148,0.0174561,0.0279236,0.0354004,0.0405273,0.0405273,0.0396118,0.0366516,0.0330505,0.0260315,0.0184021,0.00967407,0.000610352,-0.00405884,-0.00637817,-0.00405884,-0.000793457,0.00375366,0.00827026,0.0133972,0.0179443,0.0212097,0.0235291,0.0263367,0.0244751,0.0213623,0.0163574,0.013092,0.0101318,0.00701904,0.00341797,0.000152588,-0.0045166,-0.00732422,-0.00888062,-0.00872803,-0.0101318,-0.0109253,-0.0123291,-0.0126343,-0.0105896,-0.00918579,-0.00796509,-0.00592041,-0.00326538,-0.00280762,-0.00311279,-0.00436401,-0.00546265,-0.00732422,-0.0119934,-0.0160522,-0.0212097,-0.0252686,-0.0282288,-0.0313416,-0.0322876,-0.0324402,-0.0321045,-0.0293274,-0.0263367,-0.0223083,-0.0184021,-0.0157471,-0.0144958,-0.0146484,-0.0155945,-0.0185547,-0.0212097,-0.0255737,-0.0317993,-0.0361633,-0.0405273,-0.0430298,-0.0438232,-0.0436707,-0.0428772,-0.0394592,-0.0350952,-0.02948,-0.0263367,-0.0238647,-0.0216675,-0.0188599,-0.0173035,-0.0182495,-0.0193481,-0.0201111,-0.020752,-0.0215149,-0.0229187,-0.0247803,-0.0261841,-0.0272827,-0.0282288,-0.0302429,-0.0317993,-0.0336914,-0.0344543,-0.0347595,-0.0332031,-0.0310364,-0.0286865,-0.0246277,-0.0198059,-0.0154419,-0.0102844,-0.00561523,-0.00109863,0.000793457,0.00186157,0.00140381,0.000793457,-0.00219727,-0.006073,-0.010437,-0.0157471,-0.0176086,-0.0205688,-0.0229187,-0.0246277,-0.0221558,-0.0173035,-0.0121765,-0.00671387,-0.00296021,0.00170898,0.00637817,0.010437,0.0133972,0.0162048,0.0171509,0.0173035,0.0163574,0.0163574,0.0151367,0.0163574,0.0149536,0.0138855,0.0116882,0.00918579,0.00671387,0.00531006,0.0045166,0.00311279,0.00219727,0.00125122,0.0045166,0.00857544,0.0132446,0.0171509,0.0209045,0.0240173,0.0247803,0.0241699,0.0249329,0.0254211,0.0240173,0.0198059,0.0151367,0.0115356,0.0090332,0.00842285,0.00717163,0.00811768,0.00762939,0.00952148,0.00918579,0.00997925,0.0115356,0.0119934,0.0116882,0.0112305,0.0101318,0.00778198,0.00561523,0.0045166,0.00405884,0.00201416,-0.000305176,-0.00311279,-0.00436401,-0.00546265,-0.00546265,-0.00732422,-0.00796509,-0.00952148,-0.00888062,-0.00622559,-0.00201416,0.00219727,0.00515747,0.006073,0.00686646,0.00576782,0.00375366,0.000610352,-0.00671387,-0.0127869,-0.0201111,-0.025116,-0.0296326,-0.0328979,-0.031189,-0.0263367,-0.0193481,-0.0121765,-0.00421143,0.00482178,0.0115356,0.0151367,0.0171509,0.0158997,0.0112305,0.00482178,-0.00201416,-0.00686646,-0.0112305,-0.0143433,-0.0174561,-0.0165405,-0.0141907,-0.010437,-0.00637817,-0.00250244,0.000793457,0.00201416,0.00265503,0.00234985,0.00296021,0.00326538,0.00390625,0.00482178,0.00701904,0.00967407,0.0118408,0.0154419,0.0177612,0.0205688,0.0196533,0.0176086,0.0151367,0.0119934,0.00811768,0.00515747,0.000457764,-0.00250244,-0.00296021,-0.0015564,0.00186157,0.00717163,0.0118408,0.0171509,0.0229187,0.0255737,0.0293274,0.0299377,0.0308838,0.0288391,0.0255737,0.0232239,0.0205688,0.0179443,0.0151367,0.0149536,0.0157471,0.0155945,0.0154419,0.0168457,0.0188599,0.0202637,0.0199585,0.0196533,0.0188599,0.0168457,0.0149536,0.0152893,0.0158997,0.0155945,0.0141907,0.0135803,0.0152893,0.0162048,0.0180969,0.019165,0.0188599,0.019165,0.0171509,0.0173035,0.0160522,0.0144958,0.0129395,0.0105896,0.00811768,0.00732422,0.00546265,0.00421143,0.00250244,0.00125122,-0.00109863,-0.00360107,-0.00576782,-0.00762939,-0.00762939,-0.00888062,-0.00952148,-0.010437,-0.00967407,-0.00701904,-0.00296021,0.000946045,0.00466919,0.00732422,0.00888062,0.00918579,0.00918579,0.00637817,0.00341797,-0.00250244,-0.00762939,-0.0143433,-0.0190125,-0.0224609,-0.0249329,-0.0247803,-0.0240173,-0.0213623,-0.0180969,-0.013092,-0.0090332,-0.00405884,-0.00234985,-0.000610352,-0.000457764,-0.00265503,-0.00405884,-0.00576782,-0.00546265,-0.00561523,-0.00747681,-0.0101318,-0.0116882,-0.0113831,-0.0118408,-0.013092,-0.0151367,-0.0157471,-0.0169983,-0.0146484,-0.0141907,-0.0140381,-0.0126343,-0.00997925,-0.00671387,-0.00405884,-0.00360107,-0.00296021,-0.000946045,0.000305176,0.00170898,0.00186157,0.0015564,0.000152588,-0.00109863,-0.00326538,-0.00561523,-0.00857544,-0.0127869,-0.0151367,-0.0187073,-0.019165,-0.0187073,-0.0163574,-0.0138855,-0.0123291,-0.00857544,-0.00482178,-0.0015564,0.000946045,0.00234985,0.00341797,0.00436401,0.00561523,0.00326538,-0.000152588,-0.00497437,-0.00637817,-0.00827026,-0.0132446,-0.0190125,-0.0215149,-0.0230713,-0.0227661,-0.0210571,-0.0187073,-0.0138855,-0.00762939,-0.00109863,0.00436401,0.0093689,0.0129395,0.0129395,0.0109253,0.00732422,0,-0.00531006,-0.00888062,-0.013092,-0.0166931,-0.0223083,-0.0215149,-0.0184021,-0.0138855,-0.0109253,-0.00732422,-0.00326538,-0.000610352,0.00170898,0.0015564,0.00170898,0.00109863,-0.000305176,-0.00186157,-0.00531006,-0.00732422,-0.00967407,-0.0093689,-0.00997925,-0.0107727,-0.0113831,-0.0101318,-0.00796509,-0.00778198,-0.00762939,-0.00561523,-0.00436401,-0.00497437,-0.00576782,-0.00576782,-0.00546265,-0.00375366,-0.00219727,-0.0015564,-0.00201416,-0.0015564,-0.00109863,0.000610352,-0.00109863,-0.00219727,-0.00341797,-0.00326538,-0.00482178,-0.00656128,-0.00842285,-0.00857544,-0.00796509,-0.00732422,-0.0090332,-0.00747681,-0.00466919,-0.00109863,0.0015564,0.00390625,0.00637817,0.00778198,0.00888062,0.00872803,0.00732422,0.00421143,0.000793457,-0.00265503,-0.00717163,-0.0107727,-0.0129395,-0.0140381,-0.013092,-0.0118408,-0.00811768,-0.00326538,0.00219727,0.00656128,0.010437,0.013092,0.0152893,0.0162048,0.0133972,0.0101318,0.006073,0.00170898,-0.00311279,-0.00842285,-0.0124817,-0.0165405,-0.0165405,-0.0152893,-0.0138855,-0.0102844,-0.00576782,-0.00109863,0.00326538,0.00827026,0.0116882,0.0154419,0.0169983,0.0162048,0.0140381,0.0107727,0.00686646,0.00250244,-0.00280762,-0.00732422,-0.0110779,-0.0135803,-0.014801,-0.0143433,-0.0118408,-0.00952148,-0.00466919,-0.000305176,0.00482178,0.0090332,0.0137329,0.0151367,0.0166931,0.0138855,0.0119934,0.00842285,0.00405884,-0.000152588,-0.00561523,-0.00872803,-0.0115356,-0.0124817,-0.0133972,-0.0124817,-0.0090332,-0.00656128,-0.00280762,0.000305176,0.00265503,0.00531006,0.00717163,0.00747681,0.00717163,0.00686646,0.00482178,0.00250244,-0.000152588,-0.00250244,-0.00637817,-0.00811768,-0.0110779,-0.0129395,-0.0137329,-0.0140381,-0.0126343,-0.0105896,-0.0090332,-0.00576782,-0.00201416,0.00170898,0.00622559,0.00842285,0.0107727,0.0112305,0.0110779,0.0093689,0.00622559,0.00280762,-0.00280762,-0.00656128,-0.0107727,-0.0132446,-0.0154419,-0.0157471,-0.0144958,-0.0121765,-0.0093689,-0.00561523,-0.000793457,0.00234985,0.00656128,0.00872803,0.00997925,0.0109253,0.0105896,0.00967407,0.00811768,0.00637817,0.00405884,0.0015564,-0.000152588,-0.00186157,-0.00265503,-0.00250244,-0.00296021,-0.00125122,-0.000793457,0.000793457,0.00341797,0.00466919,0.00656128,0.00778198,0.0090332,0.00982666,0.0102844,0.0102844,0.0109253,0.0102844,0.010437,0.0102844,0.0105896,0.0107727,0.0110779,0.0119934,0.0123291,0.0124817,0.0123291,0.0119934,0.0118408,0.0113831,0.0110779,0.0107727,0.0109253,0.0102844,0.0101318,0.010437,0.0116882,0.0116882,0.0127869,0.0129395,0.0135803,0.0137329,0.0141907,0.0141907,0.0151367,0.0143433,0.0144958,0.0137329,0.0140381,0.0133972,0.0138855,0.0137329,0.0141907,0.013092,0.0129395,0.0121765,0.0110779,0.0102844,0.00872803,0.00732422,0.00546265,0.00280762,0.00140381,0.000305176,-0.000610352,-0.000305176,0,0.000793457,0.00186157,0.00436401,0.00671387,0.00918579,0.0109253,0.0119934,0.0127869,0.0113831,0.010437,0.00811768,0.00546265,0.00296021,-0.00109863,-0.00405884,-0.00717163,-0.00857544,-0.0093689,-0.00888062,-0.00872803,-0.00762939,-0.00637817,-0.00466919,-0.00170898,-0.000610352,0.000946045,0.00170898,0.00170898,0.00125122,0.000152588,0.000305176,-0.000793457,-0.00234985,-0.00360107,-0.0045166,-0.00482178,-0.00546265,-0.00561523,-0.00531006,-0.00622559,-0.00592041,-0.00701904,-0.00686646,-0.00717163,-0.00747681,-0.00872803,-0.00918579,-0.00967407,-0.0102844,-0.0109253,-0.0101318,-0.0101318,-0.00982666,-0.00997925,-0.00997925,-0.00967407,-0.010437,-0.0105896,-0.0112305,-0.0118408,-0.0121765,-0.0127869,-0.0118408,-0.0109253,-0.010437,-0.00918579,-0.00872803,-0.00747681,-0.00778198,-0.00778198,-0.00827026,-0.00967407,-0.0115356,-0.0129395,-0.0144958,-0.0152893,-0.0162048,-0.0162048,-0.0158997,-0.0144958,-0.0132446,-0.0113831,-0.00888062,-0.00762939,-0.00637817,-0.00546265,-0.00482178,-0.00515747,-0.00576782,-0.00701904,-0.00827026,-0.00842285,-0.0109253,-0.010437,-0.0113831,-0.0105896,-0.0109253,-0.0101318,-0.00997925,-0.00918579,-0.00872803,-0.00827026,-0.00747681,-0.00732422,-0.00762939,-0.00872803,-0.00888062,-0.0093689,-0.010437,-0.0109253,-0.0105896,-0.0109253,-0.010437,-0.00952148,-0.0093689,-0.00762939,-0.00732422,-0.006073,-0.00515747,-0.00482178,-0.00311279,-0.00265503,-0.00109863,-0.00201416,-0.000793457,-0.00186157,-0.00170898,-0.00296021,-0.00360107,-0.00466919,-0.006073,-0.00717163,-0.00778198,-0.00796509,-0.00796509,-0.00671387,-0.006073,-0.00375366,-0.00250244,-0.000305176,0.00186157,0.00405884,0.006073,0.00732422,0.00827026,0.00857544,0.00778198,0.00622559,0.00515747,0.00219727,-0.000305176,-0.00265503,-0.00546265,-0.00796509,-0.00918579,-0.00982666,-0.00952148,-0.00857544,-0.006073,-0.00405884,-0.000793457,0.00125122,0.00497437,0.00686646,0.00872803,0.00857544,0.00872803,0.00732422,0.006073,0.00421143,0.00201416,0,-0.00109863,-0.00341797,-0.00311279,-0.00250244,-0.00125122,0.00109863,0.00280762,0.00576782,0.00762939,0.010437,0.0112305,0.0126343,0.0116882,0.0110779,0.00842285,0.00576782,0.00326538,0.000305176,-0.00201416,-0.00360107,-0.00421143,-0.00326538,-0.00234985,0.000152588,0.00341797,0.00701904,0.00982666,0.0121765,0.0138855,0.0146484,0.0149536,0.013092,0.0113831,0.00842285,0.006073,0.00280762,0.00125122,-0.000152588,-0.00140381,-0.000946045,-0.000946045,-0.000152588,0.00125122,0.00186157,0.00234985,0.00201416,0.00219727,0.000793457,0.000457764,-0.000793457,-0.000946045,-0.0015564,-0.000610352,-0.000305176,0.000946045,0.00311279,0.00515747,0.00717163,0.0093689,0.00997925,0.0101318,0.00918579,0.00811768,0.00546265,0.00265503,-0.00125122,-0.00497437,-0.00842285,-0.0109253,-0.0119934,-0.0127869,-0.0121765,-0.00967407,-0.00717163,-0.00326538,0.000305176,0.00405884,0.00778198,0.0105896,0.0118408,0.0121765,0.0110779,0.00888062,0.00622559,0.00250244,-0.00140381,-0.00546265,-0.00888062,-0.0116882,-0.0138855,-0.0144958,-0.014801,-0.0137329,-0.0121765,-0.0107727,-0.00827026,-0.00576782,-0.00390625,-0.00170898,-0.000152588,0.00125122,0.00170898,0.00250244,0.00219727,0.00201416,0.00186157,0.000610352,-0.000152588,-0.000946045,-0.00219727,-0.00250244,-0.00360107,-0.00421143,-0.0045166,-0.00482178,-0.00561523,-0.00515747,-0.00466919,-0.00421143,-0.00360107,-0.00250244,-0.00219727,-0.000610352,-0.000305176,0.000457764,0.00140381,0.0015564,0.00234985,0.00250244,0.00201416,0.00250244,0.00201416,0.00140381,0.00140381,0.000305176,-0.000305176,-0.0015564,-0.00201416,-0.00265503,-0.00326538,-0.00311279,-0.00360107,-0.00265503,-0.00201416,-0.000793457,0.000793457,0.00140381,0.00201416,0.00250244,0.00219727,0.00125122,0,-0.000946045,-0.00311279,-0.00296021,-0.00405884,-0.00375366,-0.00326538,-0.00186157,0,0.000946045,0.00326538,0.00390625,0.00436401,0.00421143,0.00341797,0.0015564,-0.000152588,-0.00250244,-0.00405884,-0.00576782,-0.00622559,-0.00622559,-0.00546265,-0.00405884,-0.00250244,-0.000457764,0.0015564,0.00265503,0.00436401,0.00390625,0.00421143,0.00311279,0.00201416,0.000946045,-0.000305176,-0.00125122,-0.00140381,-0.0015564,-0.000610352,0.00109863,0.00219727,0.00390625,0.00531006,0.00637817,0.00637817,0.00717163,0.00622559,0.00546265,0.00360107,0.00170898,-0.000457764,-0.00234985,-0.00421143,-0.00561523,-0.00686646,-0.00701904,-0.00671387,-0.00592041,-0.00405884,-0.00170898,0.00186157,0.00405884,0.00762939,0.00982666,0.0119934,0.0127869,0.0135803,0.0116882,0.00967407,0.00656128,0.00234985,-0.00125122,-0.00466919,-0.00857544,-0.0107727,-0.0123291,-0.0129395,-0.0118408,-0.0102844,-0.00732422,-0.00497437,-0.000793457,0.00186157,0.00482178,0.00732422,0.00918579,0.00982666,0.00967407,0.00778198,0.00656128,0.00360107,0.000946045,-0.00219727,-0.00515747,-0.00778198,-0.00967407,-0.0107727,-0.0115356,-0.010437,-0.0090332,-0.00717163,-0.00515747,-0.00234985,-0.000152588,0.0015564,0.00341797,0.00390625,0.00436401,0.00311279,0.00219727,0.00109863,-0.000946045,-0.00265503,-0.00341797,-0.00436401,-0.00466919,-0.00466919,-0.00390625,-0.00326538,-0.00170898,-0.000946045,0.000305176,0.000457764,0.000610352,0.000793457,-0.000946045,-0.00201416,-0.00390625,-0.00546265,-0.00701904,-0.00857544,-0.00918579,-0.0090332,-0.00857544,-0.00671387,-0.00436401,-0.00280762,0.000610352,0.00265503,0.00515747,0.00592041,0.00637817,0.00592041,0.00497437,0.00201416,0,-0.00311279,-0.00592041,-0.00747681,-0.00982666,-0.0093689,-0.00918579,-0.00747681,-0.00515747,-0.00311279,0.000152588,0.00296021,0.0045166,0.00637817,0.00622559,0.00637817,0.00466919,0.00311279,0.00140381,-0.000793457,-0.00201416,-0.00375366,-0.00326538,-0.00375366,-0.00250244,-0.00125122,0.000305176,0.00186157,0.00326538,0.00375366,0.00482178,0.0045166,0.00390625,0.00326538,0.00186157,0.00140381,0,-0.000305176,-0.000946045,-0.00109863,-0.00125122,-0.00125122,-0.00125122,-0.00109863,-0.00125122,-0.00125122,-0.0015564,-0.000946045,-0.000610352,0,0.000610352,0.00140381,0.00265503,0.00326538,0.00360107,0.00390625,0.00360107,0.00234985,0.00140381,-0.000610352,-0.00296021,-0.00421143,-0.00592041,-0.00717163,-0.00811768,-0.00811768,-0.00747681,-0.00622559,-0.00531006,-0.00375366,-0.00125122,0,0.00170898,0.00265503,0.00360107,0.00421143,0.00405884,0.00311279,0.00186157,0.00109863,-0.000793457,-0.00234985,-0.00390625,-0.00561523,-0.00717163,-0.00811768,-0.00872803,-0.00888062,-0.00952148,-0.00762939,-0.00747681,-0.00592041,-0.00421143,-0.00265503,-0.000305176,0.00140381,0.00326538,0.00436401,0.00561523,0.00561523,0.00546265,0.00421143,0.00326538,0.000457764,-0.000946045,-0.00405884,-0.00546265,-0.00671387,-0.00811768,-0.0101318,-0.00982666,-0.0093689,-0.00671387,-0.00546265,-0.00421143,-0.00219727,0.000305176,0.00280762,0.00436401,0.00482178,0.00515747,0.00546265,0.00405884,0.00326538,0.00234985,0.000610352,-0.000610352,-0.00234985,-0.00280762,-0.00360107,-0.00311279,-0.00360107,-0.00296021,-0.00250244,-0.00170898,-0.0015564,-0.000793457,-0.00186157,-0.00201416,-0.0015564,-0.00140381,-0.00170898,-0.00125122,-0.000793457,0.000305176,0.00186157,0.00265503,0.00405884,0.00482178,0.00546265,0.00622559,0.00592041,0.00515747,0.00405884,0.00296021,0.0015564,-0.000305176,-0.00170898,-0.00360107,-0.00482178,-0.00592041,-0.00686646,-0.00637817,-0.00622559,-0.00515747,-0.00421143,-0.00265503,-0.000152588,0.00170898,0.00296021,0.0045166,0.00531006,0.00622559,0.00561523,0.00531006,0.00390625,0.00296021,0.00140381,0,-0.0015564,-0.00265503,-0.00405884,-0.0045166,-0.00482178,-0.00576782,-0.00531006,-0.00497437,-0.00466919,-0.00421143,-0.00360107,-0.00341797,-0.00219727,-0.00234985,-0.00109863,-0.00109863,-0.000305176,-0.000152588,0.000457764,0.00109863,0.00250244,0.00201416,0.00326538,0.00280762,0.00326538,0.00280762,0.0015564,0,-0.00201416,-0.00341797,-0.00592041,-0.00827026,-0.00952148,-0.0107727,-0.0102844,-0.00997925,-0.00811768,-0.00561523,-0.00326538,0.000305176,0.00326538,0.00592041,0.00811768,0.00982666,0.0101318,0.00997925,0.00747681,0.006073,0.00326538,0.000305176,-0.00296021,-0.00531006,-0.00827026,-0.00997925,-0.0113831,-0.0116882,-0.0110779,-0.0102844,-0.00842285,-0.00637817,-0.00390625,-0.000946045,0.0015564,0.00405884,0.00576782,0.00747681,0.00762939,0.00747681,0.00592041,0.00482178,0.00170898,-0.000793457,-0.00360107,-0.00637817,-0.00796509,-0.0093689,-0.00982666,-0.00952148,-0.00796509,-0.00671387,-0.00405884,-0.0015564,0.00125122,0.00311279,0.00497437,0.00622559,0.00637817,0.00637817,0.00497437,0.0045166,0.00234985,0.000946045,-0.00140381,-0.00296021,-0.0045166,-0.00482178,-0.00592041,-0.00546265,-0.00546265,-0.00482178,-0.00390625,-0.00296021,-0.0015564,-0.000610352,0.000305176,0.000457764,0.00109863,0.00125122,0.00125122,0.00109863,0.000946045,-0.000152588,0.000457764,-0.000305176,-0.000152588,0.000305176,-0.000457764,0.000152588,-0.000152588,0.000305176,-0.000457764,0,-0.000793457,-0.0015564,-0.00201416,-0.00311279,-0.00405884,-0.00466919,-0.00466919,-0.00515747,-0.00497437,-0.00466919,-0.00360107,-0.00265503,-0.0015564,0.000793457,0.00140381,0.00390625,0.00421143,0.00482178,0.00531006,0.0045166,0.00436401,0.00250244,0.00125122,-0.00125122,-0.00280762,-0.00405884,-0.00482178,-0.00466919,-0.00466919,-0.00390625,-0.00296021,-0.00140381,0.000793457,0.00234985,0.00360107,0.00405884,0.00390625,0.00360107,0.00326538,0.00186157,0.0015564,-0.000946045,-0.00125122,-0.00186157,-0.00250244,-0.00170898,-0.00186157,-0.000457764,-0.000305176,0.00109863,0.000793457,0.00109863,0.00109863,0.00125122,0.000793457,0,-0.000793457,-0.0015564,-0.00234985,-0.00170898,-0.00234985,-0.00250244,-0.0015564,-0.00201416,-0.00109863,-0.000457764,0.000793457,0.00125122,0.00186157,0.00234985,0.00250244,0.00296021,0.00250244,0.00296021,0.00219727,0.00140381,0.000610352,0,-0.00109863,-0.00140381,-0.00234985,-0.00280762,-0.00280762,-0.00341797,-0.00296021,-0.00311279,-0.00219727,-0.00186157,-0.00109863,-0.000457764,0.000152588,0.000793457,0.000946045,0.00219727,0.00186157,0.00250244,0.00219727,0.0015564,0.00170898,0.000457764,0.000305176,-0.000793457,-0.00219727,-0.00326538,-0.00360107,-0.00436401,-0.0045166,-0.00497437,-0.00405884,-0.00375366,-0.00280762,-0.0015564,-0.000152588,0.000793457,0.00234985,0.00234985,0.00311279,0.00250244,0.00201416,0.000610352,0.000457764,-0.00186157,-0.00250244,-0.00360107,-0.00482178,-0.00466919,-0.00482178,-0.00466919,-0.00311279,-0.00296021,-0.00170898,-0.000305176,-0.000305176,0.00109863,0.0015564,0.00140381,0.00170898,0.000793457,0.000305176,0,-0.00170898,-0.00140381,-0.00341797,-0.00311279,-0.00360107,-0.00375366,-0.00360107,-0.00296021,-0.00234985,-0.00201416,-0.00140381,-0.000610352,-0.000610352,0,-0.000305176,-0.000305176,-0.00109863,-0.00140381,-0.00201416,-0.00201416,-0.00296021,-0.00296021,-0.00280762,-0.00296021,-0.00265503,-0.00170898,-0.0015564,-0.00125122,-0.00109863,-0.000457764,-0.000457764,-0.000152588,0,0,-0.000152588,0,0.000152588,0.000152588,0.000152588,0.000793457,0,0.000610352,-0.000946045,0,-0.00125122,-0.00140381,-0.00219727,-0.00234985,-0.00250244,-0.00234985,-0.00250244,-0.00170898,-0.0015564,-0.000152588,-0.000305176,0.000610352,0.00125122,0.00125122,0.00125122,0.0015564,-0.000152588,0,-0.00125122,-0.00234985,-0.00250244,-0.00280762,-0.00326538,-0.00326538,-0.00234985,-0.00186157,-0.000610352,0,0.00109863,0.00170898,0.00250244,0.00219727,0.00219727,0.00170898,0.000457764,-0.000152588,-0.000946045,-0.00219727,-0.00250244,-0.00311279,-0.00280762,-0.00326538,-0.00265503,-0.0015564,-0.00125122,0.000152588,0.000793457,0.00140381,0.00186157,0.00219727,0.00280762,0.00234985,0.00219727,0.00219727,0.00140381,0.00125122,0.000457764,0.000152588,-0.000305176,-0.00109863,-0.00125122,-0.00201416,-0.00140381,-0.00186157,-0.00186157,-0.00140381,-0.000946045,-0.000152588,0.000152588,0.00125122,0.00140381,0.00219727,0.00234985,0.00234985,0.00219727,0.00186157,0.00109863,0.00109863,-0.000457764,-0.00140381,-0.00219727,-0.00280762,-0.00375366,-0.0045166,-0.00482178,-0.00497437,-0.00546265,-0.00466919,-0.00436401,-0.00360107,-0.00234985,-0.00186157,-0.000457764,0.00125122,0.00125122,0.00265503,0.00296021,0.00311279,0.00326538,0.00186157,0.0015564,0,-0.00109863,-0.00201416,-0.00390625,-0.0045166,-0.00546265,-0.00637817,-0.00576782,-0.006073,-0.00546265,-0.0045166,-0.00296021,-0.00186157,-0.000152588,0.00109863,0.00280762,0.00326538,0.00421143,0.00515747,0.00466919,0.0045166,0.00421143,0.00280762,0.00186157,0.00109863,-0.000946045,-0.00140381,-0.00250244,-0.00341797,-0.00390625,-0.0045166,-0.00436401,-0.00421143,-0.00375366,-0.00296021,-0.00219727,-0.000946045,0.000610352,0.00109863,0.00250244,0.00375366,0.00375366,0.0045166,0.00405884,0.00326538,0.00280762,0.000305176,-0.000152588,-0.00280762,-0.00341797,-0.00531006,-0.00466919,-0.006073,-0.00497437,-0.00466919,-0.00296021,-0.00170898,0,0.000793457,0.00219727,0.00186157,0.00234985,0.000946045,0.000793457,-0.000793457,-0.00234985,-0.00326538,-0.00436401,-0.00436401,-0.0045166,-0.00390625,-0.00265503,-0.0015564,-0.000305176,0.000946045,0.00186157,0.00250244,0.00234985,0.00201416,0.000946045,0.000152588,-0.00125122,-0.00219727,-0.00311279,-0.00360107,-0.00436401,-0.00390625,-0.00375366,-0.00311279,-0.00219727,-0.00170898,-0.00109863,-0.000152588,-0.000457764,-0.000305176,-0.000305176,-0.000610352,-0.000610352,-0.000946045,-0.00109863,-0.000946045,-0.00125122,-0.000946045,-0.000946045,-0.000457764,-0.000793457,-0.000305176,-0.000946045,-0.00125122,-0.00109863,-0.00250244,-0.00186157,-0.00311279,-0.00296021,-0.00341797,-0.00326538,-0.00265503,-0.00296021,-0.00186157,-0.00201416,-0.000946045,-0.000793457,-0.000457764,0.000152588,0.000152588,-0.000152588,0,-0.000793457,-0.000610352,-0.00140381,-0.00219727,-0.0015564,-0.00265503,-0.00296021,-0.00250244,-0.00280762,-0.00296021,-0.00219727,-0.00265503,-0.00219727,-0.00170898,-0.00109863,-0.00109863,-0.000457764,-0.000305176,-0.000152588,0,-0.000152588,-0.000305176,-0.000610352,-0.000610352,-0.000946045,-0.00170898,-0.00140381,-0.00201416,-0.00170898,-0.00140381,-0.000610352,-0.000610352,0.000457764,0.000946045,0.00140381,0.00234985,0.00201416,0.00296021,0.00201416,0.0015564,0.000946045,0.000305176,-0.000946045,-0.00186157,-0.00219727,-0.00311279,-0.00311279,-0.00341797,-0.00280762,-0.00234985,-0.00201416,-0.000793457,-0.000457764,0,0.000610352,0.000946045,0.00125122,0.000610352,0.000152588,0.000305176,-0.000793457,-0.00109863,-0.00170898,-0.00201416,-0.00219727,-0.00250244,-0.00296021,-0.00250244,-0.00250244,-0.00219727,-0.00186157,-0.0015564,-0.000610352,-0.000946045,0.000305176,-0.000152588,0.000305176,0.000305176,0.000152588,0.000152588,0,0.000152588,-0.000610352,-0.000610352,0.000152588,-0.000305176,0,0.000305176,0.000152588,0.000457764,0.000305176,0.000305176,0.000305176,0.000152588,0.000152588,-0.000305176,0,0.000610352,0.000610352,0.000793457,0.00170898,0.00170898,0.00219727,0.00234985,0.00250244,0.00234985,0.00186157,0.00170898,0.000610352,0.000457764,-0.000610352,-0.000946045,-0.00219727,-0.00219727,-0.00296021,-0.00326538,-0.00250244,-0.00311279,-0.00234985,-0.00201416,-0.0015564,-0.000946045,-0.000305176,-0.000152588,0.00140381,0.000457764,0.00140381,0.000457764,0.000793457,0.000305176,-0.000305176,-0.000793457,-0.00125122,-0.00186157,-0.00234985,-0.00201416,-0.00186157,-0.00186157,-0.000946045,-0.000946045,-0.000152588,0.000152588,0.000946045,0.00109863,0.000793457,0.00109863,0,0,-0.00140381,-0.00186157,-0.00265503,-0.00311279,-0.00375366,-0.00421143,-0.00341797,-0.00341797,-0.00280762,-0.00125122,-0.000946045,0.000305176,0.00109863,0.00170898,0.00201416,0.00201416,0.00201416,0.000610352,0.000152588,-0.00140381,-0.00250244,-0.00390625,-0.00482178,-0.00531006,-0.00592041,-0.00592041,-0.00515747,-0.00375366,-0.00311279,-0.000793457,0,0.00186157,0.00234985,0.00341797,0.00326538,0.00326538,0.00201416,0.00140381,-0.000305176,-0.0015564,-0.00360107,-0.00405884,-0.00561523,-0.00497437,-0.00576782,-0.00515747,-0.00436401,-0.00360107,-0.00250244,-0.00125122,-0.000457764,0.000610352,0.000152588,0.000946045,0.000305176,0.000610352,-0.000305176,-0.000152588,-0.000305176,-0.000610352,-0.000305176,0,0.000610352,0.000305176,0.00125122,0.000946045,0.00109863,0.000946045,0.000305176,0,-0.000610352,-0.00109863,-0.00170898,-0.00201416,-0.00186157,-0.00186157,-0.00125122,-0.000793457,0.000457764,0.000457764,0.0015564,0.00234985,0.00234985,0.00296021,0.00265503,0.00265503,0.00219727,0.00186157,0.00109863,0.000793457,-0.000152588,-0.000457764,-0.00140381,-0.00125122,-0.00265503,-0.00186157,-0.00311279,-0.00234985,-0.00250244,-0.00219727,-0.00201416,-0.00109863,-0.000457764,0.000152588,0.00109863,0.0015564,0.00186157,0.00186157,0.0015564,0.00109863,0.000457764,-0.000793457,-0.00125122,-0.00219727,-0.00341797,-0.00311279,-0.00375366,-0.00375366,-0.00296021,-0.00296021,-0.0015564,-0.00140381,-0.000457764,0,0.000305176,0.000610352,0.000610352,0.000457764,0.000152588,0.000305176,-0.000457764,-0.000152588,-0.000457764,-0.000610352,-0.000610352,-0.000946045,-0.000610352,-0.000793457,-0.000793457,-0.0015564,-0.00125122,-0.00170898,-0.0015564,-0.00280762,-0.00234985,-0.00280762,-0.00296021,-0.00311279,-0.00311279,-0.00326538,-0.00280762,-0.00311279,-0.00265503,-0.00250244,-0.00219727,-0.00186157,-0.0015564,-0.00109863,-0.000946045,-0.000457764,-0.000793457,-0.000305176,-0.000457764,-0.000793457,-0.00170898,-0.00140381,-0.00280762,-0.00234985,-0.00360107,-0.00311279,-0.00405884,-0.00360107,-0.00280762,-0.00326538,-0.00186157,-0.00125122,-0.00140381,0.000457764,-0.000305176,0.000610352,0.000946045,0.000457764,0.000793457,0.000152588,-0.000305176,-0.000305176,-0.000946045,-0.00125122,-0.0015564,-0.00219727,-0.00250244,-0.00234985,-0.00280762,-0.00234985,-0.00280762,-0.00219727,-0.00234985,-0.00170898,-0.00140381,-0.000793457,-0.000305176,0.000457764,0.000946045,0.0015564,0.00219727,0.00219727,0.00234985,0.00219727,0.00234985,0.00140381,0.00170898,0.000152588,-0.000152588,-0.00109863,-0.00140381,-0.00234985,-0.00280762,-0.00326538,-0.00341797,-0.00341797,-0.00326538,-0.00296021,-0.00250244,-0.0015564,-0.00125122,-0.000305176,0.000457764,0.000793457,0.00170898,0.00186157,0.00265503,0.00234985,0.00296021,0.00219727,0.00219727,0.00125122,0.000793457,-0.000152588,-0.000946045,-0.00219727,-0.00265503,-0.00375366,-0.00390625,-0.00466919,-0.00482178,-0.00421143,-0.00436401,-0.00326538,-0.00280762,-0.00140381,-0.00109863,0.000305176,0.000946045,0.00125122,0.00170898,0.0015564,0.0015564,0.000610352,0.000457764,-0.000946045,-0.00125122,-0.00234985,-0.00234985,-0.00390625,-0.00375366,-0.00360107,-0.00375366,-0.00360107,-0.00296021,-0.00234985,-0.00170898,-0.00125122,-0.000152588,0.000152588,0.000793457,0.00125122,0.00140381,0.0015564,0.0015564,0.00109863,0.00125122,0.000946045,0.000793457,0.000610352,0.000457764,-0.000152588,0,-0.000610352,-0.000305176,-0.000610352,-0.000610352,-0.000457764,-0.000610352,-0.000305176,-0.000946045,-0.000457764,-0.000946045,-0.000457764,-0.00109863,-0.000793457,-0.000610352,-0.000305176,0.000152588,-0.000152588,0.000457764,0.000305176,0.00125122,0.000946045,0.00109863,0.00125122,0.00109863,0.000457764,0,-0.000457764,-0.000793457,-0.00234985,-0.00234985,-0.00326538,-0.00390625,-0.00326538,-0.00405884,-0.00265503,-0.00265503,-0.00140381,-0.000793457,0.000457764,0.0015564,0.00250244,0.00234985,0.00326538,0.00280762,0.00250244,0.00201416,0.00140381,0.000152588,-0.000305176,-0.00125122,-0.00170898,-0.00250244,-0.00265503,-0.00265503,-0.00296021,-0.00219727,-0.00234985,-0.00140381,-0.00109863,-0.000305176,0.000152588,0.000457764,0.00140381,0.00125122,0.00186157,0.00201416,0.00125122,0.00170898,0.000946045,-0.000152588,-0.000610352,-0.00170898,-0.00250244,-0.00311279,-0.00375366,-0.00360107,-0.00436401,-0.00375366,-0.00360107,-0.00280762,-0.00219727,-0.00186157,-0.00125122,-0.000946045,-0.000793457,-0.000457764,-0.00125122,-0.00109863,-0.00125122,-0.00219727,-0.00234985,-0.00250244,-0.00280762,-0.00250244,-0.00219727,-0.00201416,-0.00125122,-0.00109863,-0.000457764,-0.000152588,0,-0.000152588,0,-0.000946045,-0.00109863,-0.0015564,-0.00219727,-0.00234985,-0.00234985,-0.00326538,-0.00186157,-0.00265503,-0.00186157,-0.00140381,-0.000457764,-0.000793457,0.000152588,0.000457764,0.000946045,0.000610352,0.00125122,0.000946045,0.000793457,0.000793457,0,0,-0.000946045,-0.000946045,-0.00140381,-0.00219727,-0.00201416,-0.00250244,-0.00250244,-0.00234985,-0.00201416,-0.00170898,-0.00140381,-0.00109863,-0.000610352,-0.000305176,-0.000152588,0.000457764,0,0.000610352,-0.000152588,0.000305176,-0.000152588,-0.000305176,-0.000946045,-0.000946045,-0.000946045,-0.00219727,-0.0015564,-0.00186157,-0.0015564,-0.00170898,-0.00186157,-0.00170898,-0.00170898,-0.00109863,-0.00201416,-0.00125122,-0.00109863,-0.00125122,-0.00125122,-0.00109863,-0.00140381,-0.000946045,-0.000946045,-0.00125122,-0.000457764,-0.0015564,-0.000152588,-0.00125122,-0.000457764,-0.000457764,-0.000457764,-0.000305176,-0.000793457,-0.000305176,-0.000946045,-0.000305176,-0.0015564,-0.000946045,-0.0015564,-0.00140381,-0.00201416,-0.00186157,-0.00186157,-0.00265503,-0.00186157,-0.00250244,-0.00170898,-0.00170898,-0.00140381,-0.00109863,-0.000305176,-0.000152588,0.00109863,0.000610352,0.0015564,0.00170898,0.00125122,0.00186157,0.000610352,0.000610352,-0.000152588,-0.00140381,-0.00140381,-0.00250244,-0.00311279,-0.00311279,-0.00311279,-0.00296021,-0.00201416,-0.00219727,-0.000946045,-0.000305176,0,0.000610352,0.000610352,0.000946045,0.000946045,0.000305176,-0.000152588,-0.000457764,-0.000305176,-0.000946045,-0.000793457,-0.000946045,-0.000305176,-0.000610352,-0.000152588,-0.000152588,-0.000457764,-0.000793457,-0.000946045,-0.0015564,-0.00201416,-0.00265503,-0.00311279,-0.00296021,-0.00326538,-0.00234985,-0.00250244,-0.00201416,-0.000946045,-0.000152588,0.000610352,0.00125122,0.00140381,0.00219727,0.00201416,0.00170898,0.00186157,0.000946045,0.000457764,-0.000457764,-0.000946045,-0.00201416,-0.00234985,-0.00296021,-0.00360107,-0.00341797,-0.00405884,-0.00280762,-0.00296021,-0.00234985,-0.0015564,-0.000946045,0.000152588,0.000305176,0.00170898,0.0015564,0.00234985,0.00201416,0.00170898,0.0015564,0.00140381,0.000457764,0,-0.000305176,-0.00125122,-0.000793457,-0.0015564,-0.00170898,-0.00170898,-0.00125122,-0.00140381,-0.0015564,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.000305176,-0.000610352,0,-0.000305176,0.000946045,0.000457764,0.00125122,0.00140381,0.00125122,0.00170898,0.00140381,0.0015564,0.000946045,0.000793457,-0.000305176,-0.000305176,-0.000793457,-0.0015564,-0.00170898,-0.00219727,-0.00219727,-0.00234985,-0.00170898,-0.00219727,-0.000610352,-0.000793457,0.000305176,0.000305176,0.0015564,0.00186157,0.00234985,0.00296021,0.00280762,0.00296021,0.00265503,0.00250244,0.00125122,0.000946045,0,-0.000610352,-0.00186157,-0.00201416,-0.00265503,-0.00280762,-0.00296021,-0.00280762,-0.00219727,-0.00186157,-0.00140381,-0.000793457,0,0.000457764,0.000457764,0.00109863,0.000946045,0.000946045,0.000457764,0.000793457,-0.000305176,0.000305176,-0.000793457,-0.000305176,-0.000793457,-0.000793457,-0.000946045,-0.00125122,-0.00125122,-0.00201416,-0.00219727,-0.00296021,-0.00311279,-0.00405884,-0.00360107,-0.00436401,-0.00375366,-0.00341797,-0.00326538,-0.00234985,-0.00125122,-0.000946045,0.000152588,0.000793457,0.00140381,0.00140381,0.0015564,0.00125122,0.000610352,0.000152588,-0.00125122,-0.00170898,-0.00296021,-0.00311279,-0.00375366,-0.00375366,-0.00360107,-0.00390625,-0.00280762,-0.00265503,-0.0015564,-0.0015564,-0.000610352,-0.000793457,0,-0.000457764,-0.000457764,-0.000152588,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.000305176,-0.000610352,0.000152588,0,0.000610352,0.000457764,0.000793457,0,0.000152588,-0.000793457,-0.000457764,-0.00201416,-0.0015564,-0.00234985,-0.00250244,-0.00265503,-0.00201416,-0.00170898,-0.000793457,-0.000610352,0.00125122,0.00125122,0.00250244,0.00280762,0.00280762,0.00326538,0.00219727,0.00250244,0.000793457,0.000305176,-0.000793457,-0.00186157,-0.00234985,-0.00280762,-0.00296021,-0.00265503,-0.00234985,-0.0015564,-0.00109863,0.000152588,0.000152588,0.00140381,0.0015564,0.00140381,0.00125122,0.00109863,0.000305176,0.000457764,-0.000793457,-0.000793457,-0.00170898,-0.0015564,-0.00170898,-0.00186157,-0.00125122,-0.00109863,-0.000793457,-0.000457764,-0.000610352,0,-0.000305176,0.000152588,-0.000793457,-0.000610352,-0.00109863,-0.0015564,-0.0015564,-0.00186157,-0.00186157,-0.00186157,-0.00170898,-0.0015564,-0.00140381,-0.000946045,-0.000610352,-0.000152588,-0.000610352,-0.000457764,-0.000152588,-0.00125122,-0.00109863,-0.00170898,-0.00170898,-0.00280762,-0.00280762,-0.00280762,-0.00311279,-0.00250244,-0.00280762,-0.00250244,-0.0015564,-0.00201416,-0.00125122,-0.00109863,-0.00109863,-0.000793457,-0.000457764,-0.00109863,-0.000610352,-0.000305176,-0.00109863,-0.000610352,-0.000610352,-0.000793457,-0.000610352,-0.00109863,-0.000946045,-0.00125122,-0.00125122,-0.00125122,-0.00125122,-0.000946045,-0.00170898,-0.000946045,-0.00109863,-0.00140381,-0.000793457,-0.00109863,-0.000152588,-0.000610352,-0.000610352,0.000305176,-0.000305176,-0.000152588,0,-0.000152588,-0.000457764,-0.000610352,-0.00125122,-0.00109863,-0.00140381,-0.00186157,-0.0015564,-0.0015564,-0.0015564,-0.0015564,-0.000946045,-0.000793457,-0.000610352,-0.000457764,-0.000305176,-0.000305176,0,-0.000793457,0,-0.00109863,0.000152588,-0.00140381,0,-0.000946045,-0.000457764,-0.000610352,-0.000610352,-0.000946045,-0.000152588,-0.00125122,-0.000457764,-0.000946045,-0.000610352,-0.00109863,-0.000793457,-0.000610352,-0.00109863,0,-0.000793457,0,-0.000305176,0.000152588,0,0.000610352,0.000610352,0.000610352,0.000457764,0.000610352,-0.000152588,0.000152588,-0.000793457,-0.000793457,-0.0015564,-0.00140381,-0.00234985,-0.00265503,-0.00219727,-0.00280762,-0.00219727,-0.00265503,-0.00219727,-0.00140381,-0.00201416,-0.000305176,-0.00109863,0,-0.000457764,0,-0.000457764,-0.000152588,-0.00125122,-0.000793457,-0.00140381,-0.00186157,-0.00219727,-0.00219727,-0.00219727,-0.00265503,-0.00219727,-0.00219727,-0.00201416,-0.00170898,-0.00125122,-0.00125122,-0.00125122,-0.000793457,-0.000946045,-0.00109863,-0.00140381,-0.00140381,-0.00250244,-0.00201416,-0.00219727,-0.00280762,-0.00234985,-0.00250244,-0.00186157,-0.0015564,-0.00140381,0,-0.000457764,0.000610352,0.000610352,0.00109863,0.000457764,0.000793457,0.000305176,-0.000305176,-0.000946045,-0.00109863,-0.00219727,-0.00250244,-0.00219727,-0.00265503,-0.00234985,-0.00250244,-0.00234985,-0.0015564,-0.000610352,-0.00125122,0.000305176,-0.000152588,0.000610352,0.000457764,0.000793457,0.000457764,0.000946045,0.000305176,0.000457764,-0.000305176,0.000152588,-0.000946045,0.000152588,-0.00125122,-0.000457764,-0.000946045,-0.000610352,-0.000793457,-0.000610352,-0.000457764,-0.000305176,-0.000457764,0.000152588,0,0.000152588,0.000305176,0.000793457,0.000305176,0.000946045,0.000305176,0.00125122,0.000305176,0.00125122,0.000793457,0.000946045,0.000457764,0.000610352,0.000305176,-0.000457764,-0.000610352,-0.0015564,-0.00186157,-0.00219727,-0.00250244,-0.00311279,-0.00250244,-0.00250244,-0.00186157,-0.00170898,-0.000457764,-0.000457764,0.00109863,0.000946045,0.00140381,0.00186157,0.00125122,0.000946045,0.000793457,-0.000457764,-0.000946045,-0.00234985,-0.00265503,-0.00390625,-0.00311279,-0.00375366,-0.00341797,-0.00234985,-0.00280762,-0.000946045,-0.000610352,-0.000152588,0.000610352,0,0.000610352,-0.000305176,-0.000457764,-0.00125122,-0.00219727,-0.00219727,-0.00280762,-0.00219727,-0.00311279,-0.00186157,-0.00219727,-0.000457764,-0.000457764,0.000457764,0.000305176,0.000793457,0.00109863,0.000457764,0.000152588,-0.000305176,-0.000793457,-0.00201416,-0.00219727,-0.00265503,-0.00311279,-0.00296021,-0.00311279,-0.00296021,-0.00250244,-0.00201416,-0.00140381,-0.000305176,-0.000457764,0.000610352,0.000793457,0.00109863,0.00109863,0.00140381,0.00125122,0.000152588,0.00109863,0.000152588,0,-0.000457764,-0.00109863,-0.00109863,-0.00125122,-0.00186157,-0.00170898,-0.00234985,-0.00186157,-0.00250244,-0.00170898,-0.00219727,-0.00109863,-0.00125122,-0.000610352,0,0.000946045,0.000946045,0.00201416,0.00201416,0.00219727,0.00280762,0.00186157,0.0015564,0.000793457,0.000152588,-0.000946045,-0.00170898,-0.00296021,-0.00296021,-0.00421143,-0.00360107,-0.00405884,-0.00360107,-0.00265503,-0.00201416,-0.00125122,0,0.000946045,0.0015564,0.00250244,0.00250244,0.00250244,0.00280762,0.00201416,0.0015564,0.000793457,0.000305176,-0.00109863,-0.0015564,-0.00201416,-0.00311279,-0.00311279,-0.00311279,-0.00326538,-0.00280762,-0.00219727,-0.00186157,-0.00125122,-0.000946045,-0.000610352,0.000152588,-0.000305176,0.000305176,0.000152588,0,0.000305176,-0.000305176,-0.000793457,0,-0.000305176,-0.000946045,-0.000305176,-0.00140381,-0.00109863,-0.0015564,-0.00186157,-0.00186157,-0.00201416,-0.00234985,-0.00201416,-0.00170898,-0.00201416,-0.000610352,-0.00109863,0,-0.000152588,0.000305176,0.000305176,0.000305176,0.000610352,-0.000152588,-0.000152588,-0.00109863,-0.000793457,-0.00140381,-0.00140381,-0.00140381,-0.00201416,-0.00109863,-0.00109863,-0.00125122,-0.000152588,-0.000946045,0,-0.000793457,-0.000305176,-0.000793457,-0.000946045,-0.000793457,-0.000946045,-0.0015564,-0.000793457,-0.00109863,-0.00109863,-0.000946045,0,-0.000457764,0.000152588,0,0.000793457,0.000457764,0.000946045,0.000305176,0.000946045,-0.000152588,0.000152588,-0.000457764,-0.000946045,-0.00109863,-0.00186157,-0.0015564,-0.00280762,-0.00201416,-0.00280762,-0.00250244,-0.00201416,-0.00250244,-0.00140381,-0.0015564,-0.000457764,0,0.000152588,0.0015564,0.00140381,0.00140381,0.00170898,0.00109863,0.000946045,0.000305176,-0.000152588,-0.000793457,-0.00170898,-0.00125122,-0.00234985,-0.00186157,-0.00170898,-0.00186157,-0.00125122,0,0.0015564,0.00341797,0.00390625,0.00326538,0.00326538,0.00140381,0.000610352,0.000305176,-0.00109863,-0.00219727,-0.00234985,-0.00280762,-0.00250244,-0.00201416,-0.00219727,-0.00219727,-0.000793457,0.000610352,0.00125122,0.000610352,0.000946045,-0.000152588,-0.000793457,-0.00125122,-0.0015564,-0.00280762,-0.00250244,-0.00140381,-0.0015564,-0.000457764,0.000457764,0.000610352,0.000457764,0.000457764,0.00125122,0.000152588,-0.000305176,-0.00201416,-0.00341797,-0.00421143,-0.00405884,-0.0045166,-0.00390625,-0.00405884,-0.00311279,-0.00280762,-0.00109863,-0.0015564,-0.00125122,-0.0015564,-0.000946045,0.000152588,0.000610352,0.000610352,-0.000946045,-0.000610352,-0.000457764,-0.00125122,-0.000946045,-0.00341797,-0.00280762,-0.00201416,-0.00186157,-0.00170898,-0.00109863,-0.00109863,-0.000457764,-0.000610352,0,0.00186157,0.00280762,0.00250244,0.00109863,0.000305176,-0.000946045,-0.0015564,-0.00280762,-0.00326538,-0.0045166,-0.00405884,-0.00375366,-0.00375366,-0.00140381,-0.00140381,-0.000457764,0,0.000946045,-0.000610352,-0.0015564,-0.00140381,-0.00170898,-0.00170898,-0.00265503,-0.00109863,-0.000610352,0.00140381,0.000610352,-0.000152588,-0.000946045,-0.000457764,-0.000610352,-0.00125122,-0.00186157,0,0.00201416,0.00186157,0.00201416,0.000946045,0.00219727,0.000946045,-0.000152588,-0.00125122,-0.00311279,-0.00280762,-0.00311279,-0.00201416,-0.00186157,-0.00250244,-0.00109863,-0.00186157,-0.000610352,-0.00125122,-0.0015564,-0.00170898,-0.000457764,-0.000457764,0.000946045,0.00140381,0.0045166,0.00531006,0.00436401,0.00280762,0.00201416,0.00265503,0.00109863,-0.000946045,-0.00250244,-0.00296021,-0.00140381,-0.00219727,-0.00234985,-0.00265503,-0.00170898,-0.00234985,-0.00296021,-0.00296021,-0.00421143,-0.00326538,-0.00265503,-0.00186157,-0.00170898,-0.00170898,-0.00219727,0.000946045,0.00280762,0.00360107,0.00390625,0.00436401,0.00515747,0.00546265,0.0045166,0.00326538,0.00201416,0.00140381,0,0.000305176,0.00219727,0.00421143,0.00576782,0.00482178,0.00280762,0.00219727,0.00170898,0.00201416,0.000305176,-0.00140381,-0.00265503,-0.00250244,-0.00186157,-0.00125122,-0.000305176,-0.00219727,-0.000793457,-0.00170898,-0.000946045,-0.00311279,-0.00341797,-0.00234985,-0.00125122,-0.000305176,-0.00140381,-0.000946045,-0.000457764,0.00109863,-0.000610352,-0.000793457,-0.000305176,0.000946045,-0.000793457,-0.00170898,-0.00186157,-0.000793457,-0.00125122,-0.00170898,-0.00326538,-0.00360107,-0.00311279,-0.00186157,-0.000946045,-0.000152588,0.000152588,-0.000305176,0,-0.000946045,-0.00219727,-0.00311279,-0.00390625,-0.00405884,-0.00482178,-0.00482178,-0.00482178,-0.00326538,-0.0015564,-0.00250244,-0.00326538,-0.00219727,-0.000457764,0,-0.00140381,-0.00170898,-0.00219727,-0.0015564,-0.00326538,-0.00592041,-0.00762939,-0.00701904,-0.00576782,-0.00622559,-0.00546265,-0.00405884,-0.00140381,0.000946045,0.00109863,0.00140381,-0.000610352,-0.000610352,-0.00186157,-0.00219727,-0.00140381,-0.00125122,0.000305176,0.000610352,0.0015564,0.000793457,0.000457764,-0.000152588,-0.000152588,-0.00234985,-0.00140381,0.000610352,0.00280762,0.00219727,0.0015564,0.00186157,0.00375366,0.00656128,0.00482178,0.00360107,0.00109863,0,-0.000152588,-0.00250244,-0.00265503,-0.00341797,-0.00375366,-0.00265503,-0.000793457,-0.000152588,-0.000457764,0.000793457,0.000610352,0.00186157,0.000610352,0,-0.000305176,-0.000152588,-0.000610352,-0.00219727,-0.00201416,-0.00219727,-0.0015564,-0.00234985,-0.00186157,-0.000946045,0.000152588,-0.0015564,-0.00219727,-0.00170898,-0.000305176,0.000152588,0.000305176,-0.00201416,-0.00265503,-0.00296021,-0.00375366,-0.00341797,-0.00531006,-0.00686646,-0.00686646,-0.00717163,-0.00576782,-0.00546265,-0.00421143,-0.00375366,-0.00341797,-0.00390625,-0.00515747,-0.00531006,-0.00466919,-0.00326538,-0.00109863,0,0.000305176,-0.000610352,-0.0015564,-0.000946045,-0.00250244,-0.00375366,-0.00421143,-0.00482178,-0.00405884,-0.00390625,-0.00311279,-0.00186157,-0.00250244,-0.00170898,0,0.00186157,0.00186157,0.00125122,0,-0.00170898,-0.00186157,-0.00234985,-0.0015564,-0.0015564,-0.00125122,0.000457764,0.00109863,0.00219727,0.0015564,-0.000610352,-0.000610352,0,0.000457764,0.00265503,0.00265503,0.00186157,0.00109863,0.000457764,0.00140381,0.00219727,0.00326538,0.00375366,0.00234985,0.000793457,0.000152588,0.000946045,0.000457764,-0.000152588,0,0.000305176,0.000305176,0.000152588,-0.000305176,0,0.000305176,-0.000305176,0.000610352,0.000457764,0,-0.000305176,-0.000152588,0.0015564,0.00125122,0.00109863,-0.00125122,-0.00201416,-0.000793457,-0.000793457,0.000305176,-0.00109863,-0.000946045,-0.00109863,-0.000457764,0,-0.000152588,0,-0.0015564,-0.00280762,-0.00234985,-0.00186157,-0.0015564,-0.00170898,-0.00265503,-0.00311279,-0.00405884,-0.00405884,-0.00436401,-0.00360107,-0.00390625,-0.00375366,-0.00280762,-0.00311279,-0.00234985,-0.00341797,-0.00280762,-0.00280762,-0.00265503,-0.00341797,-0.00515747,-0.00592041,-0.006073,-0.006073,-0.00546265,-0.00576782,-0.00561523,-0.00656128,-0.00482178,-0.00375366,-0.00375366,-0.00326538,-0.00296021,-0.00186157,-0.00170898,-0.0015564,-0.00201416,-0.00186157,-0.00219727,-0.00170898,-0.00326538,-0.00280762,-0.00265503,-0.00201416,-0.00125122,-0.000610352,-0.000793457,0,-0.00140381,-0.000610352,-0.000457764,-0.000610352,-0.000152588,-0.000793457,-0.000457764,-0.000793457,-0.000793457,-0.000457764,0,0.000457764,0.000152588,-0.000457764,0.000305176,0.000152588,0.00109863,0.00125122,0.0015564,0.00296021,0.00280762,0.00280762,0.00170898,0.00125122,0.000946045,0.000946045,0.000457764,0.000152588,0,-0.000457764,-0.000152588,-0.000152588,-0.000152588,-0.000305176,0.000305176,-0.000457764,0.000610352,0.000457764,0.00170898,0.00250244,0.00280762,0.00360107,0.00311279,0.00405884,0.00405884,0.00341797,0.00250244,0.00109863,0.00109863,0.000152588,0.000793457,-0.000305176,-0.000610352,-0.000457764,-0.000793457,0.000305176,0.000305176,0.000152588,0.00140381,0.00125122,0.00140381,0.00140381,0.00109863,0,0.000152588,-0.00109863,-0.000305176,-0.00125122,-0.00140381,-0.00186157,-0.00250244,-0.00250244,-0.00201416,-0.00186157,-0.00201416,-0.00250244,-0.00219727,-0.00326538,-0.00234985,-0.00201416,-0.0015564,-0.00234985,-0.00186157,-0.00109863,-0.00125122,-0.00125122,-0.0015564,-0.0015564,-0.00170898,-0.000946045,-0.00125122,-0.00125122,-0.00170898,-0.00140381,-0.00186157,-0.00186157,-0.00265503,-0.00201416,-0.00296021,-0.00234985,-0.00250244,-0.00219727,-0.00186157,-0.00170898,-0.00140381,-0.00201416,-0.00186157,-0.00219727,-0.00186157,-0.00234985,-0.00250244,-0.00296021,-0.00201416,-0.00170898,-0.000457764,0,0,0.00125122,0.00125122,0.00201416,0.000457764,0.000946045,-0.000305176,0.000152588,0.000305176,0,0.000305176,0.000457764,0,0.000457764,0.000946045,0.000946045,0.00170898,0.000610352,0.000946045,0.00201416,0.0015564,0.00219727,0.00170898,0.0015564,0.00109863,0.00170898,0.00170898,0.0015564,0.00125122,0.000793457,0.000793457,0.0015564,0.00125122,0.00250244,0.00109863,0.00234985,0.00125122,0.0015564,0.000946045,0.000305176,0.000152588,0,-0.000152588,0.000305176,-0.000610352,-0.000793457,-0.00125122,-0.00140381,-0.00140381,-0.0015564,-0.00125122,-0.00125122,-0.000152588,-0.000457764,0.000457764,0,0.000457764,-0.000946045,-0.000152588,-0.000457764,-0.000610352,-0.000457764,-0.00219727,-0.00234985,-0.00296021,-0.00250244,-0.00250244,-0.00201416,-0.00170898,-0.000457764,-0.000152588,0.000152588,-0.000152588,0.000305176,0.000610352,0.000946045,0.000457764,0.000457764,-0.000152588,-0.00140381,-0.00125122,-0.00219727,-0.00265503,-0.00140381,-0.00250244,-0.00265503,-0.00265503,-0.00186157,-0.00201416,-0.00125122,-0.00170898,-0.000793457,-0.00140381,-0.000610352,-0.00125122,-0.000946045,-0.0015564,-0.00170898,-0.00250244,-0.0015564,-0.00201416,-0.00219727,-0.00280762,-0.00219727,-0.00201416,-0.00219727,-0.000946045,-0.000610352,0,0.000152588,0.000305176,0.000152588,0.000457764,0.000305176,0,-0.000152588,-0.000152588,-0.000610352,0,-0.000610352,-0.000610352,-0.000610352,0,0.000152588,0.000152588,0.000305176,0,-0.000305176,0.000305176,0.000610352,0.000457764,0,-0.000946045,-0.00140381,0.000152588,0.00140381,0.00140381,-0.000152588,-0.00140381,-0.00170898,0.000152588,-0.000457764,0.000946045,-0.000610352,-0.000305176,0.000152588,0.00109863,0.00186157,0.000610352,0.000793457,0.000793457,0.000610352,0.000610352,0.000305176,0.000305176,0.000457764,-0.000610352,0.000610352,0,0.000610352,-0.000946045,-0.000152588,-0.000793457,0.000152588,-0.000793457,-0.000305176,-0.000946045,-0.00109863,-0.00109863,-0.000457764,-0.000610352,-0.00140381,-0.0015564,-0.00140381,-0.000793457,0,0.000610352,0.000793457,0.00125122,0.00170898,0.00109863,0.000457764,0.000152588,-0.000946045,-0.00186157,-0.00219727,-0.00219727,-0.00311279,-0.00280762,-0.00234985,-0.00250244,-0.00250244,-0.00265503,-0.0015564,-0.0015564,-0.00125122,-0.00186157,-0.00186157,-0.00201416,-0.00265503,-0.00265503,-0.00280762,-0.00326538,-0.00296021,-0.00311279,-0.00265503,-0.00265503,-0.00170898,-0.00170898,-0.00170898,-0.00140381,-0.00109863,-0.000610352,-0.000946045,-0.0015564,-0.000946045,-0.00201416,-0.00219727,-0.00201416,-0.00326538,-0.00250244,-0.00296021,-0.00234985,-0.00219727,-0.00125122,-0.00170898,-0.000793457,-0.000946045,-0.000457764,-0.000305176,-0.000610352,0,-0.00109863,-0.000610352,-0.000793457,-0.00140381,-0.00201416,-0.00140381,-0.00170898,-0.0015564,-0.00140381,-0.00140381,-0.00125122,-0.00125122,-0.000793457,-0.000457764,0.000305176,0.000457764,0.000457764,0.000305176,0.000457764,-0.000305176,-0.000610352,-0.00109863,-0.00140381,-0.00186157,-0.00109863,-0.00125122,-0.00125122,-0.000152588,-0.000610352,0.000457764,0.000305176,0.00109863,0.000457764,0.000946045,-0.000152588,0,0,-0.000457764,-0.000457764,-0.000305176,-0.000793457,0.000152588,0.000457764,0.000457764,0.000457764,0.000610352,0.000610352,0,0.000457764,-0.000152588,0.000152588,-0.000305176,0.000152588,-0.000610352,-0.000152588,-0.000610352,0.000610352,0,-0.000457764,0,-0.000793457,0,-0.00109863,-0.000610352,-0.000946045,-0.000793457,-0.000610352,-0.000457764,-0.000305176,-0.000610352,-0.000946045,-0.00109863,-0.00109863,-0.0015564,-0.00125122,-0.000946045,-0.00170898,-0.000793457,-0.00140381,-0.000793457,-0.00125122,-0.00109863,-0.00125122,-0.000793457,-0.00109863,-0.000793457,-0.000793457,-0.00140381,-0.00140381,-0.0015564,-0.00186157,-0.00170898,-0.00265503,-0.00280762,-0.00250244,-0.00326538,-0.00219727,-0.00234985,-0.00234985,-0.0015564,-0.000946045,-0.00125122,-0.000946045,-0.000946045,-0.000793457,-0.000793457,-0.00170898,-0.000793457,-0.00234985,-0.00125122,-0.00170898,-0.00201416,-0.00219727,-0.00219727,-0.00201416,-0.00170898,-0.00186157,-0.0015564,-0.00186157,-0.000946045,-0.0015564,-0.00170898,-0.00109863,-0.00140381,-0.000946045,-0.000610352,-0.000610352,-0.000305176,0,0.000457764,0.000152588,-0.000457764,0.000305176,-0.000152588,-0.000305176,0,-0.000152588,-0.000305176,-0.000610352,0,-0.000946045,-0.000610352,-0.000946045,-0.000457764,-0.00125122,-0.000457764,-0.000946045,-0.000305176,-0.000610352,0,-0.000305176,0,0.000305176,0,0.000457764,0.000152588,0,-0.000457764,0.000152588,-0.000793457,-0.000152588,-0.000946045,-0.000457764,-0.000305176,-0.000946045,-0.000305176,-0.000793457,-0.000305176,-0.00109863,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000610352,0.000305176,-0.000457764,0.000305176,-0.000457764,-0.000457764,-0.000457764,-0.000152588,-0.000793457,-0.000457764,-0.000946045,-0.000946045,-0.000946045,-0.000305176,-0.00170898,-0.000946045,-0.00140381,-0.00109863,-0.00140381,-0.0015564,-0.0015564,-0.00109863,-0.00140381,-0.000610352,-0.00140381,-0.000610352,-0.000946045,-0.000305176,-0.00140381,0,-0.00109863,-0.000305176,-0.000793457,-0.000457764,-0.000305176,-0.000610352,-0.00109863,-0.00140381,-0.00201416,-0.00170898,-0.00280762,-0.00234985,-0.00265503,-0.00219727,-0.00186157,-0.00219727,-0.000793457,-0.00140381,0,-0.000793457,0,-0.000152588,0.000305176,-0.000457764,0.000152588,-0.000152588,-0.000152588,0.000152588,-0.000152588,0.000305176,0.000610352,0.000152588,0.000793457,0,0.000610352,0,0,0,-0.000152588,-0.000610352,-0.000457764,-0.000946045,-0.000305176,-0.00125122,-0.000152588,-0.000457764,-0.000305176,-0.000152588,-0.000305176,0.000152588,0.000152588,0.00109863,0.000457764,0.000793457,0.000305176,0.000946045,0.000457764,0.000152588,0,-0.000793457,-0.00125122,-0.00109863,-0.00170898,-0.00125122,-0.0015564,-0.00140381,-0.00186157,-0.00201416,-0.00201416,-0.00170898,-0.00170898,-0.0015564,-0.00140381,-0.00234985,-0.00219727,-0.00250244,-0.00234985,-0.00219727,-0.00186157,-0.0015564,-0.00170898,-0.0015564,-0.000610352,-0.000610352,-0.000946045,-0.000610352,-0.000946045,-0.00109863,-0.000793457,-0.00125122,-0.00109863,-0.00140381,-0.00201416,-0.00170898,-0.00201416,-0.00234985,-0.00234985,-0.00201416,-0.00186157,-0.00170898,-0.0015564,-0.00201416,-0.00125122,-0.00125122,-0.000946045,-0.00109863,-0.00125122,-0.00109863,-0.0015564,-0.000946045,-0.000305176,-0.000610352,-0.000152588,0.000152588,0.000793457,0.000457764,0.000457764,0.000793457,-0.000152588,0,-0.000946045,-0.000610352,-0.00140381,-0.000946045,-0.00186157,-0.00109863,-0.00186157,-0.000946045,-0.000946045,-0.00170898,-0.000305176,-0.00109863,-0.000610352,-0.000305176,-0.000305176,-0.000305176,0.000457764,0.000305176,0.000457764,0.000610352,0.000457764,0.000152588,0.000152588,0,0,-0.000610352,-0.000305176,-0.000793457,0.000457764,-0.000457764,0,0.000152588,-0.000152588,0.000457764,-0.000152588,-0.000305176,-0.000152588,-0.000457764,-0.000457764,-0.000946045,-0.000457764,-0.000793457,-0.000610352,-0.000152588,-0.000305176,0.000305176,0,0.000305176,0.000793457,0.000152588,0.000305176,0.000457764,0.000457764,-0.000305176,-0.000152588,-0.000946045,-0.00109863,-0.000946045,-0.00186157,-0.00125122,-0.00201416,-0.00234985,-0.00186157,-0.00234985,-0.00201416,-0.00201416,-0.00234985,-0.00170898,-0.00109863,-0.0015564,-0.000793457,-0.00140381,-0.00125122,-0.00140381,-0.00170898,-0.00186157,-0.00201416,-0.00201416,-0.0015564,-0.00201416,-0.00109863,-0.00140381,-0.00140381,-0.00186157,-0.00140381,-0.00140381,-0.000946045,-0.00140381,-0.00109863,-0.00125122,-0.000305176,-0.0015564,-0.000152588,-0.000946045,-0.00125122,-0.000946045,-0.00140381,-0.00109863,-0.000946045,-0.000457764,-0.000946045,0.000152588,-0.000457764,0.000305176,0.000152588,-0.000305176,0.000305176,-0.000793457,-0.000305176,-0.00140381,-0.000793457,-0.0015564,-0.00109863,-0.0015564,-0.000946045,-0.0015564,-0.000946045,-0.000305176,-0.000305176,0.000305176,0.000610352,0.000946045,0.000946045,0.000946045,0.000457764,0.000457764,0.000457764,0.000305176,0,-0.000305176,-0.00140381,0,-0.00125122,-0.000152588,-0.000793457,-0.00109863,-0.000793457,-0.00109863,-0.000793457,-0.000793457,-0.000305176,-0.00109863,0,-0.00170898,-0.000610352,-0.00109863,-0.000793457,-0.000946045,-0.0015564,-0.00140381,-0.00109863,-0.00109863,-0.000793457,0.000152588,-0.000152588,0.000305176,0.00109863,0.000305176,0.000457764,0.000457764,0.000305176,0,-0.000610352,-0.000793457,-0.0015564,-0.0015564,-0.00140381,-0.00186157,-0.0015564,-0.00219727,-0.00125122,-0.00186157,-0.000946045,-0.00109863,-0.000457764,-0.000946045,-0.000610352,-0.000457764,-0.000610352,-0.000793457,-0.000610352,-0.000793457,-0.00125122,-0.00140381,-0.00186157,-0.00125122,-0.000946045,-0.000946045,-0.000946045,-0.000305176,-0.000610352,-0.000457764,-0.000610352,0.000152588,-0.000457764,-0.000793457,-0.000946045,-0.000946045,-0.000946045,-0.00109863,-0.000793457,-0.00109863,-0.0015564,-0.0015564,-0.00140381,-0.00219727,-0.000946045,-0.00170898,-0.000946045,-0.00109863,-0.000610352,-0.000793457,-0.000305176,-0.000793457,-0.000305176,-0.000457764,0.000152588,-0.000305176,-0.000152588,-0.000152588,-0.000305176,-0.000305176,-0.000305176,0.000152588,0,0.000457764,0.000152588,0.000457764,0.000610352,0.000152588,0.000305176,-0.000152588,0,-0.000457764,-0.000305176,0,-0.00186157,-0.000610352,-0.00109863,-0.000610352,-0.000793457,-0.000305176,-0.000610352,-0.000946045,-0.000305176,-0.000457764,-0.000946045,-0.000610352,-0.00109863,-0.00125122,-0.000610352,-0.000793457,-0.000457764,-0.00109863,-0.000152588,-0.000793457,-0.000152588,-0.000457764,0.000457764,-0.000305176,0.000152588,-0.000457764,-0.000152588,-0.000152588,-0.00109863,-0.000610352,-0.00125122,-0.000946045,-0.00125122,-0.00140381,-0.00125122,-0.00186157,-0.000793457,-0.00234985,-0.00125122,-0.00140381,-0.00219727,-0.00109863,-0.00170898,-0.00170898,-0.00109863,-0.00170898,-0.00170898,-0.00186157,-0.00219727,-0.00186157,-0.00186157,-0.0015564,-0.0015564,-0.00170898,-0.00140381,-0.00125122,-0.000793457,-0.000610352,-0.000793457,-0.000946045,-0.000946045,-0.000946045,-0.000457764,-0.000610352,-0.000946045,-0.000793457,-0.00109863,-0.00125122,-0.000610352,-0.00109863,-0.00109863,0,-0.000610352,-0.000305176,0.000152588,0.000305176,0.000305176,0.000946045,0.000305176,0.000793457,0.000152588,0,-0.000610352,-0.000305176,-0.000946045,-0.000305176,-0.00109863,-0.000457764,-0.000946045,-0.000793457,-0.000793457,-0.00125122,-0.00140381,-0.00125122,-0.0015564,-0.000793457,-0.000793457,-0.000610352,0,-0.000793457,0.000152588,-0.000793457,0.000457764,0,0.000457764,0.000457764,0.000152588,-0.000152588,0.000152588,-0.000610352,0.000152588,-0.000457764,-0.000946045,-0.000457764,-0.00140381,-0.00109863,-0.00109863,-0.0015564,-0.000457764,-0.00125122,-0.000793457,-0.000610352,-0.000946045,-0.000610352,-0.000610352,-0.00140381,-0.00109863,-0.000946045,-0.00125122,-0.000793457,-0.0015564,-0.00170898,-0.0015564,-0.00170898,-0.00140381,-0.00186157,-0.00170898,-0.000793457,-0.000946045,-0.00109863,0.000152588,-0.000610352,-0.000305176,0.000610352,0,0.000946045,0.000305176,0.000946045,-0.000305176,-0.000610352,-0.00125122,-0.00170898,-0.00140381,-0.00265503,-0.00234985,-0.00250244,-0.00250244,-0.00234985,-0.00219727,-0.00125122,-0.00140381,-0.000305176,-0.000793457,0.000305176,0.000152588,0.000610352,0.000305176,0.000152588,0.000152588,-0.000305176,-0.000793457,-0.000305176,-0.00109863,-0.000457764,-0.00186157,-0.000457764,-0.0015564,-0.000793457,-0.000457764,-0.000152588,-0.000610352,0,-0.00109863,-0.000305176,-0.000610352,-0.000793457,-0.000305176,-0.00140381,-0.000946045,-0.00109863,-0.00140381,-0.00170898,-0.00140381,-0.000793457,-0.00170898,-0.00109863,-0.00109863,-0.000946045,-0.000610352,-0.000793457,-0.000610352,-0.00109863,-0.000946045,-0.00109863,-0.00125122,-0.00125122,-0.00125122,-0.0015564,-0.00140381,-0.00170898,-0.00109863,-0.00125122,-0.000793457,-0.00109863,-0.00125122,-0.000793457,-0.00170898,-0.000610352,-0.00109863,-0.00140381,-0.00125122,-0.00219727,-0.0015564,-0.00125122,-0.0015564,-0.000610352,-0.000610352,-0.000457764,0.000152588,-0.000152588,-0.000152588,-0.000152588,-0.000152588,-0.000305176,-0.00109863,-0.00125122,-0.00170898,-0.00234985,-0.00234985,-0.00296021,-0.00234985,-0.00280762,-0.00170898,-0.0015564,-0.000946045,-0.000152588,0,0.000457764,0.000946045,0.000946045,0.000793457,0.000793457,0,-0.000457764,-0.000946045,-0.00186157,-0.0015564,-0.00170898,-0.00201416,-0.00125122,-0.00125122,-0.000305176,-0.000457764,0.000457764,0.000305176,0.000457764,0.000305176,0.000305176,0.000305176,-0.000793457,-0.000457764,-0.000793457,-0.00219727,-0.0015564,-0.00280762,-0.00140381,-0.00186157,-0.0015564,-0.00109863,-0.00140381,-0.000610352,-0.000793457,0.000305176,-0.000152588,0.000152588,0,0,-0.000152588,-0.000457764,0,-0.000457764,-0.000457764,-0.000946045,-0.000457764,-0.000793457,-0.000610352,-0.000457764,-0.000793457,-0.00109863,-0.0015564,-0.00170898,-0.0015564,-0.00201416,-0.00234985,-0.00186157,-0.00234985,-0.00109863,-0.00140381,-0.000946045,0,0.000152588,0.000305176,0.000152588,0.00109863,0,0.000946045,-0.000610352,-0.000305176,-0.00125122,-0.00170898,-0.00219727,-0.00170898,-0.00140381,-0.00201416,-0.000946045,-0.00170898,-0.00109863,-0.00109863,-0.00109863,-0.000946045,-0.000610352,-0.00125122,-0.000946045,-0.000946045,-0.00140381,-0.00109863,-0.00140381,-0.000946045,-0.00109863,-0.000457764,-0.000152588,-0.000610352,0.000793457,-0.000152588,0.000305176,0,0.000457764,0.000610352,0.000305176,-0.000152588,-0.000152588,-0.000610352,-0.000457764,0,-0.000793457,-0.000457764,-0.000793457,-0.00109863,-0.000610352,-0.000457764,-0.000793457,-0.000457764,-0.000457764,-0.000457764,-0.000457764,-0.000457764,-0.000457764,-0.000610352,-0.000793457,0.000152588,-0.000305176,-0.000152588,0.000457764,-0.000457764,0.000457764,-0.000610352,-0.000610352,-0.000305176,-0.00109863,-0.000610352,-0.00140381,-0.00109863,-0.00201416,-0.0015564,-0.00201416,-0.00186157,-0.0015564,-0.00140381,-0.00109863,-0.000946045,-0.00109863,-0.000946045,-0.00109863,-0.000305176,-0.00109863,-0.000152588,-0.000152588,-0.00109863,0,-0.00109863,-0.000152588,-0.00125122,-0.00109863,-0.00109863,-0.00186157,-0.0015564,-0.0015564,-0.00140381,-0.00170898,-0.0015564,-0.000946045,-0.0015564,-0.000305176,-0.00140381,-0.000793457,-0.000793457,-0.00140381,-0.00125122,-0.00109863,-0.0015564,-0.0015564,-0.00109863,-0.00170898,-0.00140381,-0.0015564,-0.00140381,-0.00186157,-0.00109863,-0.00109863,-0.000793457,-0.00125122,-0.000793457,-0.000610352,-0.000946045,-0.000457764,-0.00125122,-0.00109863,-0.00109863,-0.00140381,-0.000610352,-0.000946045,-0.00109863,-0.000793457,-0.000610352,-0.00109863,-0.000152588,-0.000946045,-0.000793457,-0.000457764,-0.00125122,-0.000152588,-0.000793457,-0.000305176,-0.000793457,-0.000305176,-0.000457764,-0.000152588,0,-0.000305176,-0.000152588,0.000305176,-0.000152588,0.000152588,0.000152588,-0.000305176,-0.000457764,-0.000793457,-0.000793457,-0.000610352,-0.00109863,-0.000793457,-0.000946045,-0.000610352,-0.000610352,-0.000793457,-0.000457764,-0.000457764,-0.000152588,-0.000457764,-0.000305176,0,-0.000152588,0.000152588,0,-0.000305176,-0.000610352,-0.000793457,-0.00125122,-0.00109863,-0.000946045,-0.00109863,-0.000946045,-0.0015564,-0.00109863,-0.0015564,-0.00109863,-0.0015564,-0.00109863,-0.0015564,-0.000946045,-0.00125122,-0.00125122,-0.00170898,-0.000946045,-0.0015564,-0.000946045,-0.00109863,-0.00125122,-0.000610352,-0.00140381,-0.00109863,-0.00109863,-0.00140381,-0.00109863,-0.00109863,-0.00140381,-0.000610352,-0.00170898,-0.000946045,-0.00140381,-0.0015564,-0.00140381,-0.00170898,-0.00125122,-0.0015564,-0.0015564,-0.0015564,-0.00125122,-0.00186157,-0.0015564,-0.00109863,-0.00201416,-0.00125122,-0.0015564,-0.000946045,-0.000946045,-0.000610352,-0.000152588,-0.000152588,-0.000152588,0.000305176,0.000457764,0.000305176,0.00109863,0.000457764,0.000305176,-0.000457764,-0.000610352,-0.00125122,-0.00140381,-0.00125122,-0.00170898,-0.000946045,-0.00170898,-0.000946045,-0.00140381,-0.00109863,-0.000610352,-0.00109863,-0.000457764,-0.000610352,-0.000457764,-0.000946045,-0.000946045,-0.000610352,-0.00109863,-0.00109863,-0.000152588,-0.000793457,-0.000152588,0.000793457,0.000305176,0.000793457,0.000793457,0.000457764,0.000457764,0.00109863,0.000610352,0.000305176,0.000457764,-0.000305176,0.000152588,-0.00109863,-0.000305176,-0.000610352,-0.000793457,-0.000457764,-0.00109863,-0.000152588,-0.000305176,0.000305176,0.000457764,0.000457764,0,0.000152588,0.000610352,-0.000152588,0.000610352,-0.000152588,0.000152588,-0.000793457,0,-0.000793457,-0.000457764,-0.000610352,-0.000793457,-0.000793457,-0.000946045,-0.000793457,-0.000457764,-0.000946045,-0.000793457,-0.00109863,-0.000793457,-0.000946045,-0.000610352,-0.000946045,-0.000610352,-0.0015564,-0.00140381,-0.00170898,-0.0015564,-0.00109863,-0.00125122,-0.000793457,-0.00140381,-0.00125122,-0.00109863,-0.00109863,-0.000946045,-0.0015564,-0.00109863,-0.00170898,-0.00140381,-0.00186157,-0.00125122,-0.00170898,-0.00140381,-0.000793457,-0.00125122,-0.000305176,-0.000793457,-0.000457764,-0.000152588,-0.000152588,0,0.000152588,0.000152588,0.000152588,-0.000610352,0,-0.00109863,-0.00140381,-0.00109863,-0.0015564,-0.00140381,-0.000793457,-0.00140381,-0.000946045,-0.00109863,-0.000610352,-0.000305176,-0.000305176,0,0.000152588,-0.000152588,-0.000793457,-0.000793457,-0.000457764,-0.0015564,-0.000610352,-0.00125122,-0.000610352,-0.000946045,-0.000305176,0.000305176,0.000305176,0.000610352,0.000793457,0.000610352,0.00109863,0.000610352,0,0,-0.000793457,-0.00109863,-0.0015564,-0.00186157,-0.00125122,-0.00186157,-0.0015564,-0.00125122,-0.0015564,-0.000457764,-0.000305176,-0.000793457,0.000152588,-0.000457764,0,-0.000152588,-0.000946045,-0.000946045,-0.000610352,-0.00109863,-0.00125122,-0.000946045,-0.00186157,-0.00109863,-0.0015564,-0.00109863,-0.000610352,-0.00125122,-0.000946045,-0.000946045,-0.000610352,-0.0015564,-0.000793457,-0.00109863,-0.00109863,-0.000793457,-0.000152588,-0.00109863,-0.000152588,-0.000457764,0,0,0.000152588,-0.000610352,0,-0.000152588,-0.000305176,-0.000610352,-0.000305176,-0.000610352,-0.000610352,-0.000793457,-0.000305176,-0.000457764,0,-0.000457764,-0.000610352,-0.000152588,-0.000305176,-0.000305176,-0.000305176,-0.0015564,-0.00109863,-0.00140381,-0.00201416,-0.00140381,-0.00170898,-0.00140381,-0.00140381,-0.0015564,-0.000457764,-0.00170898,0,-0.000152588,0,0.000305176,0.000305176,0.000610352,0.000610352,0,0.000457764,-0.000152588,0,-0.000457764,0,-0.000305176,-0.000457764,0.000305176,-0.000610352,0.000152588,-0.000152588,-0.000152588,0.000152588,-0.000793457,-0.000610352,-0.00140381,-0.00125122,-0.00140381,-0.00201416,-0.00140381,-0.0015564,-0.00125122,-0.00125122,-0.0015564,-0.000946045,-0.000793457,-0.000305176,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000152588,-0.000457764,-0.000946045,-0.00125122,-0.00140381,-0.00109863,-0.0015564,-0.00140381,-0.00186157,-0.0015564,-0.00140381,-0.00201416,-0.0015564,-0.00140381,-0.0015564,-0.00170898,-0.00186157,-0.0015564,-0.00140381,-0.00109863,-0.000793457,-0.000946045,-0.000457764,-0.000305176,-0.000457764,0.000152588,-0.000610352,-0.000610352,-0.00109863,-0.000946045,-0.00125122,-0.00109863,-0.00219727,-0.0015564,-0.00234985,-0.00186157,-0.00201416,-0.00170898,-0.00140381,-0.0015564,-0.0015564,-0.000946045,-0.00125122,-0.00109863,-0.00125122,-0.000946045,-0.0015564,-0.00125122,-0.00140381,-0.00140381,-0.0015564,-0.00140381,-0.00170898,-0.000793457,-0.00140381,-0.00109863,-0.000946045,-0.00125122,-0.000305176,-0.000946045,-0.000457764,-0.00125122,-0.000946045,-0.00109863,-0.00140381,-0.00125122,-0.0015564,-0.00201416,-0.00170898,-0.00201416,-0.00170898,-0.00265503,-0.00186157,-0.00296021,-0.00265503,-0.00219727,-0.00201416,-0.00234985,-0.00250244,-0.00234985,-0.00219727,-0.00186157,-0.00125122,-0.0015564,-0.00109863,-0.00219727,-0.00140381,-0.00170898,-0.00186157,-0.0015564,-0.0015564,-0.00186157,-0.00265503,-0.00311279,-0.00250244,-0.00280762,-0.00265503,-0.00265503,-0.00265503,-0.00280762,-0.00219727,-0.00186157,-0.0015564,-0.000457764,-0.00186157,-0.00125122,-0.00201416,-0.000793457,-0.00170898,-0.00109863,-0.00186157,-0.00170898,-0.00219727,-0.00125122,-0.00170898,0,-0.0015564,-0.000610352,-0.00140381,-0.00125122,-0.00109863,-0.000610352,-0.000793457,-0.000946045,-0.0015564,-0.00109863,-0.00170898,-0.000946045,-0.00140381,-0.00109863,-0.0015564,-0.00170898,-0.00109863,-0.00125122,-0.000946045,-0.000793457,-0.00109863,-0.00140381,-0.000793457,-0.000946045,0.000457764,0.000793457,0.00125122,0.00125122,0.00201416,0.00140381,0.00186157,0.0015564,0.0015564,0.00125122,0.000152588,-0.000610352,-0.00125122,-0.00201416,-0.00201416,-0.00296021,-0.00250244,-0.00250244,-0.00280762,-0.00219727,-0.0015564,-0.0015564,-0.000946045,-0.000305176,-0.000305176,-0.000457764,0.000305176,0.000305176,0.000305176,0.000305176,-0.000152588,-0.000305176,0,0,-0.000152588,0.000305176,0.000152588,0.000305176,0.00109863,0.000793457,0.00140381,0.00109863,0.00109863,0.000610352,0.000610352,0.000152588,-0.000457764,-0.000610352,-0.000946045,-0.00186157,-0.0015564,-0.00219727,-0.00125122,-0.00186157,-0.000457764,-0.00109863,-0.000152588,-0.000305176,0.000793457,0.000610352,0.000793457,0.00140381,0.00109863,0.00125122,0.000946045,0.00125122,0.00140381,0.00140381,0.00109863,0.000793457,0.000946045,0.000152588,0.00109863,0.000152588,0.000457764,0,-0.000610352,-0.000305176,-0.000610352,-0.000152588,-0.000152588,0.000305176,0.000457764,0.000610352,0.0015564,0.0015564,0.00219727,0.00234985,0.00234985,0.00296021,0.00201416,0.00250244,0.00219727,0.0015564,0.00140381,0.0015564,0.00140381,0.00140381,0.00109863,0.000793457,0.000305176,0.00125122,0.000946045,0.00109863,0.00109863,0.00170898,0.000610352,0.00140381,0.000457764,0.000457764,0.000946045,0.000305176,0.00109863,0.000305176,0.000946045,0.000457764,0.000793457,0.00125122,0.000946045,0.00125122,0.00140381,0.000946045,0.00219727,0.00170898,0.00170898,0.00140381,0.000946045,0.000793457,0.000793457,0.000305176,0.000793457,-0.000457764,-0.000793457,-0.000946045,-0.000610352,0,0.000946045,0.0015564,0.00140381,0.00140381,0.00140381,0.00140381,0.00170898,0.00186157,0.00219727,0.00186157,0.00140381,0.00140381,0.000305176,0.000457764,0.000610352,0.000152588,0.000457764,-0.000152588,0.000152588,0.000457764,0.000946045,0.00170898,0.00109863,0.00140381,0.000793457,0.00125122,0.00109863,0.00186157,0.00140381,0.000457764,0.000793457,0.000457764,0.000946045,0.00170898,0.00140381,0.00140381,0.000793457,0.000457764,0.00109863,0.000946045,0.000946045,0.000610352,0.000152588,-0.000610352,-0.000610352,-0.000793457,-0.000793457,-0.000610352,0,0.000610352,0.000152588,-0.000152588,0.000457764,-0.000457764,0.000457764,-0.000610352,-0.00109863,-0.00170898,-0.00234985,-0.00250244,-0.00265503,-0.00219727,-0.00341797,-0.00341797,-0.00390625,-0.00390625,-0.00280762,-0.00375366,-0.00250244,-0.00341797,-0.00341797,-0.00311279,-0.00360107,-0.00265503,-0.00390625,-0.00390625,-0.00497437,-0.00482178,-0.00546265,-0.00561523,-0.00592041,-0.006073,-0.00622559,-0.00592041,-0.00592041,-0.00576782,-0.00592041,-0.00515747,-0.00576782,-0.00561523,-0.00561523,-0.00546265,-0.00546265,-0.00515747,-0.00466919,-0.00497437,-0.00497437,-0.0045166,-0.00405884,-0.00436401,-0.00326538,-0.00296021,-0.00296021,-0.00296021,-0.00296021,-0.00311279,-0.00311279,-0.00360107,-0.00390625,-0.00421143,-0.0045166,-0.00466919,-0.0045166,-0.00497437,-0.00497437,-0.00515747,-0.00531006,-0.00531006,-0.00515747,-0.00546265,-0.00531006,-0.00515747,-0.00497437,-0.00531006,-0.00497437,-0.00497437,-0.00482178,-0.00466919,-0.00405884,-0.00436401,-0.00390625,-0.00436401,-0.00390625,-0.00375366,-0.00390625,-0.00326538,-0.00360107,-0.00421143,-0.00375366,-0.00482178,-0.00390625,-0.00497437,-0.00482178,-0.00531006,-0.00546265,-0.006073,-0.00622559,-0.00576782,-0.006073,-0.006073,-0.00637817,-0.00656128,-0.00701904,-0.00656128,-0.00656128,-0.00622559,-0.006073,-0.006073,-0.00656128,-0.00576782,-0.00561523,-0.00546265,-0.00561523,-0.00686646,-0.00637817,-0.00686646,-0.00637817,-0.00576782,-0.00576782,-0.00637817,-0.00701904,-0.00732422,-0.00701904,-0.00671387,-0.00546265,-0.00637817,-0.00592041,-0.00701904,-0.00671387,-0.00622559,-0.00576782,-0.00482178,-0.00482178,-0.00546265,-0.006073,-0.00622559,-0.00671387,-0.00592041,-0.00637817,-0.00637817,-0.00656128,-0.00656128,-0.006073,-0.00436401,-0.00390625,-0.00326538,-0.00296021,-0.00360107,-0.00311279,-0.00140381,0.000305176,0.0015564,0.0015564,0.00109863,0.00125122,0.000793457,0.00201416,0.00296021,0.00250244,0.00201416,0.0015564,0.000793457,0.0015564,0.0015564,0.00296021,0.00265503,0.00234985,0.00219727,0.00341797,0.00421143,0.00622559,0.00671387,0.00778198,0.00872803,0.00997925,0.0115356,0.0135803,0.0154419,0.0155945,0.0158997,0.0166931,0.0158997,0.0184021,0.0193481,0.0196533,0.0201111,0.0193481,0.0190125,0.0201111,0.0204163,0.0216675,0.0219727,0.0213623,0.0219727,0.0219727,0.0227661,0.0227661,0.0224609,0.0216675,0.0201111,0.0188599,0.0182495,0.0177612,0.0173035,0.0157471,0.0151367,0.0146484,0.0138855,0.0141907,0.0138855,0.0141907,0.0144958,0.014801,0.0144958,0.0140381,0.0133972,0.013092,0.0121765,0.0110779,0.0101318,0.00857544,0.00686646,0.00592041,0.0045166,0.00405884,0.00341797,0.00311279,0.00360107,0.00341797,0.00421143,0.00390625,0.00436401,0.00405884,0.00265503,0.00280762,0.00234985,0.00219727,0.00170898,0.000793457,-0.000457764,-0.000793457,-0.00219727,-0.00280762,-0.00265503,-0.00311279,-0.00280762,-0.00280762,-0.00280762,-0.00341797,-0.00311279,-0.00311279,-0.00311279,-0.00280762,-0.00311279,-0.00405884,-0.00390625,-0.00375366,-0.00360107,-0.00341797,-0.00341797,-0.00311279,-0.00341797,-0.00311279,-0.00326538,-0.00280762,-0.00296021,-0.00326538,-0.00341797,-0.00375366,-0.00375366,-0.00326538,-0.00341797,-0.00375366,-0.00375366,-0.00405884,-0.00390625,-0.00421143,-0.00421143,-0.00546265,-0.00561523,-0.00637817,-0.00762939,-0.00872803,-0.00918579,-0.00982666,-0.0110779,-0.0121765,-0.0133972,-0.0141907,-0.0140381,-0.0144958,-0.0135803,-0.0138855,-0.0133972,-0.0121765,-0.0129395,-0.0112305,-0.0121765,-0.010437,-0.0105896,-0.0105896,-0.00997925,-0.0102844,-0.00997925,-0.0105896,-0.0101318,-0.0110779,-0.0116882,-0.0119934,-0.0126343,-0.0126343,-0.0123291,-0.0132446,-0.0121765,-0.013092,-0.0127869,-0.0132446,-0.0127869,-0.013092,-0.0132446,-0.0133972,-0.0135803,-0.0138855,-0.0137329,-0.0143433,-0.0146484,-0.0141907,-0.0144958,-0.0143433,-0.0141907,-0.0133972,-0.0132446,-0.0126343,-0.0124817,-0.0113831,-0.0105896,-0.0101318,-0.00997925,-0.0093689,-0.0090332,-0.00952148,-0.0110779,-0.0102844,-0.0109253,-0.0107727,-0.0113831,-0.0126343,-0.0119934,-0.0119934,-0.0118408,-0.0124817,-0.0121765,-0.0113831,-0.0119934,-0.0123291,-0.0123291,-0.0121765,-0.0116882,-0.013092,-0.0135803,-0.0140381,-0.0141907,-0.0141907,-0.0151367,-0.0158997,-0.0160522,-0.0171509,-0.0174561,-0.0177612,-0.0166931,-0.0174561,-0.0168457,-0.0176086,-0.0174561,-0.0184021,-0.0182495,-0.0190125,-0.0193481,-0.0205688,-0.0209045,-0.0218201,-0.0230713,-0.0238647,-0.025116,-0.0266724,-0.0280762,-0.0300903,-0.0328979,-0.0352478,-0.0369568,-0.037262,-0.0335083,-0.0252686,-0.0143433,-0.000610352,0.0107727,0.0205688,0.02948,0.0388184,0.0478821,0.0552063,0.0581665,0.0558167,0.0497437,0.0417786,0.033844,0.02948,0.0265198,0.0244751,0.0230713,0.0227661,0.0247803,0.02948,0.0336914,0.0371094,0.0377197,0.0374146,0.0360107,0.0360107,0.0330505,0.0277405,0.0210571,0.0140381,0.00952148,0.00827026,0.0102844,0.0163574,0.0219727,0.0265198,0.02948,0.0321045,0.0363159,0.040863,0.0444336,0.0448914,0.0431824,0.0383606,0.0346069,0.0305481,0.0274353,0.0263367,0.0246277,0.0221558,0.0188599,0.0173035,0.0155945,0.0160522,0.0146484,0.0107727,0.00592041,0.00170898,-0.00140381,-0.00671387,-0.0090332,-0.0152893,-0.019165,-0.0223083,-0.0232239,-0.0227661,-0.0210571,-0.0184021,-0.0140381,-0.0113831,-0.00952148,-0.00717163,-0.00482178,-0.00341797,-0.00326538,-0.00515747,-0.006073,-0.00686646,-0.00592041,-0.0045166,-0.00311279,-0.000793457,0.00296021,0.006073,0.00918579,0.0126343,0.0155945,0.019165,0.0212097,0.0221558,0.0202637,0.0185547,0.0165405,0.0144958,0.0119934,0.0093689,0.00778198,0.00561523,0.00375366,0.00234985,0.00219727,0.00250244,0.00436401,0.00515747,0.00576782,0.0045166,0.00482178,0.00421143,0.00265503,0.00250244,0.000457764,0.00125122,-0.000152588,0.00170898,0.00296021,0.00326538,0.00482178,0.00531006,0.00622559,0.00747681,0.00918579,0.010437,0.00997925,0.00952148,0.00762939,0.00686646,0.00546265,0.00482178,0.00360107,0.00219727,0.000610352,-0.000793457,-0.00219727,-0.00360107,-0.00531006,-0.006073,-0.00842285,-0.010437,-0.0124817,-0.0149536,-0.0168457,-0.0193481,-0.0202637,-0.0204163,-0.0202637,-0.0195007,-0.0176086,-0.0155945,-0.0133972,-0.0116882,-0.00982666,-0.00811768,-0.00747681,-0.00686646,-0.00701904,-0.00656128,-0.00762939,-0.00796509,-0.00982666,-0.0112305,-0.0124817,-0.0132446,-0.0160522,-0.0168457,-0.0190125,-0.0198059,-0.0210571,-0.020752,-0.0213623,-0.0216675,-0.0230713,-0.0237122,-0.0240173,-0.0241699,-0.0244751,-0.0230713,-0.0233765,-0.0230713,-0.0215149,-0.0210571,-0.0195007,-0.0184021,-0.0158997,-0.0158997,-0.0143433,-0.0132446,-0.0132446,-0.0115356,-0.010437,-0.00967407,-0.00827026,-0.00747681,-0.00637817,-0.00576782,-0.00561523,-0.00576782,-0.006073,-0.00701904,-0.00717163,-0.00796509,-0.00952148,-0.00967407,-0.0109253,-0.0113831,-0.0140381,-0.0152893,-0.0163574,-0.0179443,-0.0177612,-0.0184021,-0.0188599,-0.0190125,-0.0201111,-0.0213623,-0.0221558,-0.0237122,-0.0241699,-0.0261841,-0.0275879,-0.02948,-0.0319519,-0.0327454,-0.0336914,-0.0341492,-0.0339966,-0.0349121,-0.0349121,-0.0363159,-0.0386658,-0.0400696,-0.0420837,-0.0452271,-0.0478821,-0.0505066,-0.0506592,-0.0455322,-0.037262,-0.0252686,-0.0116882,0.00186157,0.014801,0.0283813,0.0417786,0.053009,0.0612793,0.0639343,0.0617371,0.0558167,0.0478821,0.0403748,0.0330505,0.0277405,0.0229187,0.0195007,0.019165,0.0223083,0.0277405,0.0330505,0.0371094,0.0405273,0.0427246,0.0439758,0.0436707,0.0411682,0.0350952,0.0275879,0.0199585,0.0141907,0.0118408,0.0129395,0.0163574,0.020752,0.0255737,0.0314941,0.038208,0.0447388,0.0522461,0.0559692,0.0581665,0.0564575,0.0533142,0.048645,0.0438232,0.0386658,0.0333557,0.0289917,0.0230713,0.0199585,0.0160522,0.0140381,0.0124817,0.00918579,0.00622559,0.00219727,-0.00250244,-0.00717163,-0.0124817,-0.0180969,-0.0237122,-0.0299377,-0.0333557,-0.0358582,-0.0369568,-0.0361633,-0.0341492,-0.0325928,-0.0297852,-0.0285339,-0.0266724,-0.0244751,-0.0226135,-0.0216675,-0.0226135,-0.0230713,-0.0238647,-0.0224609,-0.020752,-0.0165405,-0.0110779,-0.00561523,0.00109863,0.00747681,0.0135803,0.0188599,0.0246277,0.0283813,0.0310364,0.0307312,0.0274353,0.0246277,0.0210571,0.0174561,0.0146484,0.0110779,0.00888062,0.00671387,0.00637817,0.00717163,0.00796509,0.0107727,0.0121765,0.0132446,0.0138855,0.0146484,0.0166931,0.0163574,0.0146484,0.0110779,0.00747681,0.00592041,0.00561523,0.00576782,0.00592041,0.00561523,0.00592041,0.00762939,0.0102844,0.0132446,0.0165405,0.0187073,0.0193481,0.0177612,0.0158997,0.0154419,0.0138855,0.0116882,0.00842285,0.00497437,0.000793457,-0.000793457,-0.00341797,-0.00482178,-0.006073,-0.00747681,-0.00982666,-0.0105896,-0.0123291,-0.0132446,-0.0126343,-0.013092,-0.0135803,-0.0144958,-0.0138855,-0.0123291,-0.00997925,-0.00967407,-0.00811768,-0.00701904,-0.00561523,-0.00497437,-0.00341797,-0.00326538,-0.00280762,-0.00311279,-0.00375366,-0.006073,-0.00747681,-0.00827026,-0.00888062,-0.0105896,-0.0124817,-0.0158997,-0.0180969,-0.0201111,-0.0218201,-0.0246277,-0.0269775,-0.0289917,-0.0319519,-0.0339966,-0.0361633,-0.0375671,-0.037262,-0.0377197,-0.0369568,-0.036499,-0.0354004,-0.0310364,-0.0288391,-0.0254211,-0.0241699,-0.0226135,-0.0209045,-0.0196533,-0.0182495,-0.0173035,-0.0182495,-0.0184021,-0.019165,-0.0205688,-0.020752,-0.0209045,-0.0204163,-0.0213623,-0.0223083,-0.0232239,-0.0246277,-0.0238647,-0.0254211,-0.026825,-0.0297852,-0.0324402,-0.0354004,-0.0369568,-0.0407104,-0.0430298,-0.0472412,-0.0500488,-0.0522461,-0.0542603,-0.0559692,-0.059082,-0.0612793,-0.0626831,-0.0628357,-0.0611267,-0.0594177,-0.0556641,-0.0508423,-0.0424194,-0.0303955,-0.0138855,0.00546265,0.0257263,0.0467834,0.0654907,0.0821838,0.0960388,0.106964,0.112579,0.114136,0.108826,0.0999451,0.0879517,0.0751648,0.0625305,0.0511475,0.042572,0.037262,0.0350952,0.033844,0.033844,0.0363159,0.0383606,0.0397644,0.0397644,0.0371094,0.0324402,0.0263367,0.019165,0.0093689,0.0015564,-0.00546265,-0.00747681,-0.00732422,-0.00326538,0.00576782,0.0151367,0.0271301,0.037262,0.0478821,0.0572205,0.0654907,0.0708008,0.071106,0.0678406,0.0612793,0.0542603,0.0456848,0.0383606,0.0288391,0.0216675,0.0154419,0.00747681,0.00125122,-0.00592041,-0.00997925,-0.0151367,-0.0210571,-0.0291443,-0.0357056,-0.0431824,-0.0495911,-0.0553589,-0.0614319,-0.0659485,-0.0682983,-0.0679932,-0.0673523,-0.0636292,-0.0597229,-0.054718,-0.0495911,-0.0447388,-0.0402222,-0.0346069,-0.0299377,-0.0247803,-0.0215149,-0.0184021,-0.0140381,-0.00796509,-0.00250244,0.00341797,0.00952148,0.0155945,0.0212097,0.0260315,0.0282288,0.0307312,0.0322876,0.0324402,0.0308838,0.0272827,0.0227661,0.0190125,0.0162048,0.0140381,0.0112305,0.00888062,0.00732422,0.00717163,0.00778198,0.00967407,0.0123291,0.0149536,0.0166931,0.0190125,0.0195007,0.0221558,0.0243225,0.0261841,0.0258789,0.0257263,0.0244751,0.0249329,0.0263367,0.0282288,0.02948,0.0299377,0.0313416,0.0316467,0.0332031,0.0339966,0.0339966,0.0322876,0.0283813,0.0237122,0.0195007,0.0152893,0.010437,0.00482178,-0.00280762,-0.00982666,-0.0163574,-0.0204163,-0.0240173,-0.0271301,-0.0310364,-0.0341492,-0.0349121,-0.0360107,-0.0350952,-0.033844,-0.0322876,-0.0316467,-0.0313416,-0.02948,-0.0275879,-0.0230713,-0.0196533,-0.0160522,-0.0126343,-0.0102844,-0.00637817,-0.00219727,0.00186157,0.00375366,0.00482178,0.00497437,0.00390625,0.00296021,0.00170898,-0.000152588,-0.00280762,-0.00622559,-0.010437,-0.0141907,-0.0163574,-0.0185547,-0.020752,-0.0238647,-0.026825,-0.0296326,-0.0313416,-0.0314941,-0.0324402,-0.0335083,-0.0343018,-0.0350952,-0.0352478,-0.033844,-0.0322876,-0.0289917,-0.0265198,-0.0243225,-0.0223083,-0.0193481,-0.0171509,-0.0144958,-0.0137329,-0.0146484,-0.0173035,-0.0188599,-0.0216675,-0.0240173,-0.0271301,-0.0316467,-0.0352478,-0.0385132,-0.0407104,-0.0436707,-0.0455322,-0.0494385,-0.0536499,-0.0598755,-0.0643921,-0.0690613,-0.0732727,-0.0782776,-0.0834045,-0.0891724,-0.0926208,-0.0924683,-0.0907593,-0.0867004,-0.0820007,-0.0743713,-0.0620422,-0.0455322,-0.0243225,-0.00125122,0.0240173,0.0500488,0.0748291,0.0974426,0.117249,0.132233,0.142822,0.14563,0.142822,0.133942,0.122864,0.108063,0.0941772,0.077179,0.0643921,0.0545654,0.0491028,0.046936,0.0461426,0.0487976,0.052063,0.0556641,0.0569153,0.0564575,0.0522461,0.0470886,0.0380554,0.0266724,0.0138855,0.00360107,-0.00405884,-0.00671387,-0.006073,-0.000457764,0.00918579,0.0227661,0.0369568,0.0513,0.0646973,0.0774841,0.085907,0.0888672,0.0860596,0.0784302,0.0692139,0.0566101,0.042572,0.0260315,0.0115356,-0.00170898,-0.0133972,-0.0237122,-0.0341492,-0.0414734,-0.047699,-0.0533142,-0.0609741,-0.0692139,-0.0759277,-0.0830994,-0.0891724,-0.0969849,-0.102295,-0.106018,-0.105713,-0.104004,-0.10025,-0.094635,-0.0874634,-0.078125,-0.0687561,-0.0595703,-0.0506592,-0.0410156,-0.0310364,-0.0229187,-0.0154419,-0.00732422,0.000946045,0.0110779,0.0196533,0.0282288,0.0358582,0.0434875,0.0497437,0.0548706,0.0572205,0.0589294,0.0587769,0.0561218,0.052063,0.0452271,0.0394592,0.0324402,0.0263367,0.0195007,0.013092,0.00872803,0.00622559,0.00592041,0.00576782,0.00717163,0.0107727,0.0154419,0.0213623,0.0279236,0.0332031,0.0389709,0.0441284,0.0481873,0.0514526,0.0544128,0.0558167,0.0566101,0.054718,0.0527039,0.0492859,0.047699,0.0452271,0.0422668,0.0397644,0.036499,0.0339966,0.0322876,0.0288391,0.0244751,0.0182495,0.0119934,0.00436401,-0.00405884,-0.0144958,-0.0249329,-0.0360107,-0.0462952,-0.0545654,-0.0620422,-0.0668945,-0.0690613,-0.0706177,-0.0700073,-0.0686035,-0.0643921,-0.0583191,-0.0525513,-0.0461426,-0.0411682,-0.036499,-0.0310364,-0.0275879,-0.0237122,-0.020752,-0.0184021,-0.014801,-0.0116882,-0.00888062,-0.00656128,-0.00375366,-0.00170898,0.000946045,0.000793457,0.000305176,-0.000457764,-0.00296021,-0.00561523,-0.0102844,-0.0152893,-0.0195007,-0.0232239,-0.0266724,-0.0302429,-0.0327454,-0.0349121,-0.0366516,-0.0371094,-0.0380554,-0.0379028,-0.0361633,-0.0347595,-0.0327454,-0.0307312,-0.0283813,-0.0252686,-0.0216675,-0.0195007,-0.0173035,-0.0157471,-0.0138855,-0.0116882,-0.0110779,-0.0123291,-0.0144958,-0.0190125,-0.0229187,-0.0299377,-0.0374146,-0.0452271,-0.0552063,-0.065033,-0.0760803,-0.0879517,-0.09729,-0.1026,-0.10495,-0.102905,-0.0983887,-0.0882568,-0.0731201,-0.0511475,-0.0246277,0.00671387,0.0386658,0.0708008,0.0969849,0.117889,0.131287,0.139069,0.139862,0.132996,0.116638,0.0951233,0.0715637,0.0506592,0.0344543,0.0218201,0.0149536,0.0144958,0.0188599,0.0286865,0.0417786,0.0558167,0.0682983,0.0742188,0.0746765,0.0676575,0.0566101,0.0431824,0.026825,0.00656128,-0.0126343,-0.0274353,-0.0349121,-0.0316467,-0.0226135,-0.00531006,0.0140381,0.0369568,0.0594177,0.081543,0.100739,0.115082,0.12085,0.117249,0.106506,0.0899658,0.0723572,0.0533142,0.0349121,0.0141907,-0.00234985,-0.0165405,-0.0265198,-0.0339966,-0.0397644,-0.0430298,-0.047699,-0.0545654,-0.0622253,-0.0708008,-0.0787354,-0.0871582,-0.0955811,-0.105255,-0.111786,-0.115692,-0.114288,-0.111481,-0.104004,-0.0961914,-0.0863953,-0.0751648,-0.0615845,-0.048645,-0.0344543,-0.0213623,-0.00982666,0.000793457,0.0107727,0.0215149,0.0319519,0.042572,0.0509949,0.0595703,0.0645447,0.0690613,0.0725098,0.0740662,0.0732727,0.0704651,0.0651855,0.0580139,0.0498962,0.0410156,0.0321045,0.0223083,0.0135803,0.00375366,-0.0045166,-0.0116882,-0.0162048,-0.019165,-0.0196533,-0.0184021,-0.0146484,-0.00778198,0.000793457,0.010437,0.0215149,0.0321045,0.0420837,0.0502014,0.0559692,0.0609741,0.0629883,0.0631409,0.0603333,0.0559692,0.0509949,0.0464783,0.0436707,0.043335,0.0427246,0.0447388,0.0444336,0.0441284,0.0430298,0.039917,0.0349121,0.0265198,0.0149536,-0.000946045,-0.0174561,-0.0349121,-0.0508423,-0.0653381,-0.0770264,-0.0852966,-0.0909119,-0.0905762,-0.0873108,-0.0802917,-0.0709534,-0.0609741,-0.0497437,-0.039917,-0.0302429,-0.0230713,-0.0169983,-0.0141907,-0.0133972,-0.0140381,-0.0157471,-0.0160522,-0.0154419,-0.0133972,-0.0121765,-0.00967407,-0.00762939,-0.00546265,-0.00170898,0.000457764,0.0015564,0.000946045,-0.00125122,-0.00466919,-0.0093689,-0.0137329,-0.0184021,-0.0224609,-0.0265198,-0.0300903,-0.0335083,-0.0358582,-0.0377197,-0.0385132,-0.0397644,-0.0405273,-0.0417786,-0.0424194,-0.0427246,-0.0411682,-0.0396118,-0.0371094,-0.0336914,-0.031189,-0.0277405,-0.0243225,-0.0216675,-0.0198059,-0.0212097,-0.0247803,-0.0299377,-0.0363159,-0.0434875,-0.0522461,-0.0606384,-0.0698547,-0.0804443,-0.0895081,-0.0968323,-0.100739,-0.0985413,-0.0904236,-0.0770264,-0.0594177,-0.0335083,-0.00375366,0.031189,0.0657959,0.0979309,0.124115,0.14267,0.153412,0.153107,0.142822,0.123322,0.096344,0.0645447,0.0335083,0.00531006,-0.0166931,-0.0296326,-0.0346069,-0.0300903,-0.0174561,0.00390625,0.0302429,0.0567627,0.079834,0.0958862,0.101959,0.0988464,0.085907,0.0664368,0.0405273,0.0129395,-0.0127869,-0.033844,-0.0447388,-0.0458374,-0.0346069,-0.0149536,0.0121765,0.0445862,0.0795288,0.111023,0.136444,0.151855,0.15686,0.15155,0.135498,0.111023,0.0813904,0.0478821,0.0157471,-0.0129395,-0.038208,-0.0570679,-0.0689087,-0.0739136,-0.073761,-0.0708008,-0.0687561,-0.0646973,-0.0637817,-0.0636292,-0.0678406,-0.0731201,-0.08078,-0.0881042,-0.0952759,-0.100403,-0.102448,-0.100403,-0.0958862,-0.0877686,-0.0773315,-0.0651855,-0.0514526,-0.0377197,-0.0232239,-0.0109253,0.00125122,0.0113831,0.0210571,0.0293274,0.0358582,0.0413208,0.04599,0.0483398,0.0484924,0.0484924,0.046936,0.0445862,0.0407104,0.0360107,0.0308838,0.0265198,0.0219727,0.0184021,0.0135803,0.00982666,0.00576782,0.00234985,-0.000305176,-0.00296021,-0.00360107,-0.00326538,-0.00201416,0.00170898,0.00686646,0.0137329,0.0244751,0.0357056,0.0483398,0.0608215,0.0718689,0.0809326,0.0874634,0.0898132,0.0871582,0.0823364,0.0729675,0.0625305,0.0497437,0.0369568,0.0269775,0.019165,0.0138855,0.0112305,0.0123291,0.0158997,0.0205688,0.025116,0.0260315,0.0229187,0.0155945,0.00497437,-0.00796509,-0.0235291,-0.0397644,-0.0576782,-0.0743713,-0.0860596,-0.0924683,-0.0915222,-0.0852966,-0.0745239,-0.0614319,-0.0461426,-0.0310364,-0.0154419,-0.00375366,0.00390625,0.00656128,0.00360107,-0.00140381,-0.00888062,-0.0166931,-0.025116,-0.0327454,-0.0394592,-0.0430298,-0.0431824,-0.0393066,-0.0341492,-0.0289917,-0.0258789,-0.0233765,-0.0215149,-0.0218201,-0.0218201,-0.025116,-0.0300903,-0.035553,-0.0420837,-0.0452271,-0.0470886,-0.0455322,-0.0445862,-0.0414734,-0.0383606,-0.0341492,-0.0308838,-0.0285339,-0.026825,-0.0266724,-0.0266724,-0.0277405,-0.0288391,-0.0308838,-0.0321045,-0.0336914,-0.0352478,-0.0379028,-0.0417786,-0.0456848,-0.0516052,-0.0604858,-0.0722046,-0.085907,-0.100891,-0.112885,-0.118652,-0.114746,-0.101807,-0.0787354,-0.0473938,-0.00747681,0.0375671,0.0863953,0.134094,0.175568,0.205963,0.220306,0.217041,0.19754,0.163879,0.121918,0.0751648,0.0282288,-0.0152893,-0.0494385,-0.0706177,-0.0756226,-0.0664368,-0.0445862,-0.0126343,0.0230713,0.0584717,0.0888672,0.108368,0.113983,0.104767,0.0818481,0.0484924,0.0109253,-0.0258789,-0.0562744,-0.0793762,-0.0899658,-0.0863953,-0.0662537,-0.0339966,0.00717163,0.0548706,0.100555,0.139862,0.168091,0.180725,0.182281,0.17041,0.14798,0.11554,0.0765686,0.0363159,-0.00170898,-0.0324402,-0.0552063,-0.0714111,-0.0804443,-0.0826416,-0.0799866,-0.076416,-0.0722046,-0.069397,-0.0673523,-0.071106,-0.0770264,-0.0854492,-0.0926208,-0.0991516,-0.10321,-0.105713,-0.105255,-0.0991516,-0.091217,-0.0784302,-0.0639343,-0.048645,-0.0322876,-0.0180969,-0.00326538,0.00982666,0.0232239,0.0349121,0.0453796,0.0522461,0.0570679,0.0600281,0.0617371,0.0628357,0.0600281,0.0555115,0.0495911,0.0417786,0.0352478,0.0288391,0.0226135,0.0176086,0.0137329,0.00952148,0.00546265,0.0015564,-0.00125122,-0.00405884,-0.00686646,-0.00888062,-0.0112305,-0.0110779,-0.00857544,-0.00341797,0.00515747,0.0151367,0.0300903,0.0456848,0.0637817,0.0802917,0.0957336,0.106323,0.111328,0.111633,0.104004,0.0923157,0.0779724,0.0604858,0.042572,0.0247803,0.0093689,0.0015564,-0.00390625,-0.00234985,0.00140381,0.00811768,0.0143433,0.0216675,0.0247803,0.0221558,0.0146484,0.000457764,-0.0166931,-0.036499,-0.0566101,-0.0753174,-0.0913696,-0.102295,-0.105255,-0.101501,-0.0884094,-0.0700073,-0.0483398,-0.0260315,-0.00747681,0.0093689,0.0199585,0.0263367,0.0258789,0.0190125,0.00686646,-0.00732422,-0.020752,-0.0324402,-0.0420837,-0.0484924,-0.0522461,-0.0517578,-0.0473938,-0.040863,-0.0339966,-0.0296326,-0.0282288,-0.0307312,-0.0343018,-0.0400696,-0.0464783,-0.0542603,-0.0639343,-0.071106,-0.0757751,-0.0753174,-0.071106,-0.0662537,-0.0580139,-0.048645,-0.0411682,-0.0352478,-0.0310364,-0.0300903,-0.0300903,-0.0327454,-0.0377197,-0.0445862,-0.0527039,-0.0595703,-0.065033,-0.0692139,-0.0729675,-0.0759277,-0.0805969,-0.0838928,-0.087616,-0.0830994,-0.071106,-0.0508423,-0.0257263,0.00186157,0.0339966,0.0698547,0.108673,0.145782,0.176971,0.19632,0.202087,0.19397,0.173218,0.143127,0.107422,0.0673523,0.0258789,-0.0129395,-0.0420837,-0.057373,-0.0566101,-0.0417786,-0.019165,0.0101318,0.0424194,0.0765686,0.10556,0.12381,0.125977,0.11087,0.0821838,0.0455322,0.00671387,-0.0299377,-0.059082,-0.079834,-0.0901184,-0.0848083,-0.063446,-0.026825,0.0184021,0.0661011,0.108521,0.142822,0.161835,0.167786,0.159668,0.139557,0.107117,0.0648499,0.0184021,-0.0263367,-0.0625305,-0.0893555,-0.104156,-0.111328,-0.110382,-0.103546,-0.0901184,-0.0760803,-0.063446,-0.0567627,-0.0553589,-0.0600281,-0.0695496,-0.0809326,-0.0909119,-0.0993347,-0.105713,-0.108521,-0.107117,-0.098999,-0.0854492,-0.0676575,-0.0484924,-0.0288391,-0.0124817,0.00201416,0.0160522,0.0286865,0.0407104,0.0494385,0.0558167,0.0594177,0.0623779,0.0642395,0.0661011,0.0675049,0.0656433,0.0615845,0.0567627,0.0497437,0.0436707,0.0383606,0.0321045,0.0274353,0.0219727,0.0190125,0.0155945,0.0144958,0.0143433,0.0140381,0.0144958,0.0135803,0.0132446,0.0135803,0.0149536,0.0174561,0.0227661,0.0293274,0.0394592,0.0513,0.0657959,0.0796814,0.0932312,0.102295,0.107422,0.107269,0.100739,0.0898132,0.0748291,0.0564575,0.0369568,0.0158997,-0.00170898,-0.0143433,-0.0221558,-0.0227661,-0.0202637,-0.0137329,-0.00701904,-0.0015564,0.00219727,0.00390625,0.00140381,-0.00592041,-0.0179443,-0.0344543,-0.0516052,-0.0678406,-0.0793762,-0.085907,-0.0862122,-0.0813904,-0.0704651,-0.0564575,-0.037262,-0.0176086,-0.000305176,0.0133972,0.0213623,0.0227661,0.0195007,0.0109253,-0.00109863,-0.0151367,-0.0308838,-0.0444336,-0.0552063,-0.0603333,-0.0601807,-0.0580139,-0.0522461,-0.0464783,-0.0403748,-0.0360107,-0.0333557,-0.0336914,-0.0386658,-0.0466309,-0.0587769,-0.0714111,-0.0834045,-0.0930786,-0.0985413,-0.100403,-0.0996399,-0.0951233,-0.0881042,-0.0774841,-0.0682983,-0.0594177,-0.052063,-0.0475464,-0.047699,-0.0527039,-0.0615845,-0.0746765,-0.0899658,-0.107727,-0.125519,-0.139709,-0.143921,-0.137207,-0.114746,-0.0793762,-0.0322876,0.0232239,0.082489,0.144836,0.205505,0.255859,0.292206,0.304657,0.29187,0.257751,0.206757,0.145325,0.0787354,0.0118408,-0.0500488,-0.10025,-0.130341,-0.138,-0.119904,-0.0826416,-0.0302429,0.0266724,0.0826416,0.133148,0.170746,0.190857,0.186157,0.158112,0.109924,0.053009,-0.00296021,-0.0522461,-0.0918274,-0.11554,-0.119598,-0.102448,-0.0628357,-0.00436401,0.0623779,0.129425,0.184601,0.22406,0.244781,0.245422,0.226227,0.186951,0.130493,0.063446,-0.00842285,-0.073761,-0.128479,-0.167786,-0.19101,-0.199585,-0.19397,-0.179626,-0.157623,-0.130035,-0.1026,-0.0820007,-0.0717163,-0.0692139,-0.0723572,-0.079834,-0.0879517,-0.0969849,-0.10495,-0.109924,-0.110229,-0.103851,-0.0899658,-0.071106,-0.0506592,-0.0297852,-0.00967407,0.0090332,0.0261841,0.0419312,0.0553589,0.0640869,0.0676575,0.0681458,0.0659485,0.0628357,0.0587769,0.0541077,0.0484924,0.0414734,0.0352478,0.0291443,0.0269775,0.0258789,0.0263367,0.026825,0.0255737,0.0254211,0.0263367,0.0283813,0.02948,0.0313416,0.0302429,0.0321045,0.0325928,0.0361633,0.0420837,0.0514526,0.0626831,0.0767212,0.0923157,0.108673,0.123505,0.136749,0.14267,0.143433,0.135956,0.121918,0.101349,0.0760803,0.047699,0.0196533,-0.00576782,-0.0257263,-0.0386658,-0.0444336,-0.0424194,-0.0322876,-0.0195007,-0.00656128,0.0045166,0.0109253,0.0116882,0.00717163,-0.00436401,-0.0212097,-0.0430298,-0.0656433,-0.0862122,-0.100098,-0.105865,-0.103058,-0.0905762,-0.0725098,-0.048645,-0.0223083,0.00405884,0.0283813,0.047699,0.0564575,0.0559692,0.0467834,0.0302429,0.00982666,-0.0126343,-0.0363159,-0.0583191,-0.0753174,-0.0860596,-0.087616,-0.0845032,-0.07547,-0.0662537,-0.0566101,-0.0491028,-0.042572,-0.0396118,-0.0413208,-0.0492859,-0.0611267,-0.0765686,-0.090271,-0.101654,-0.109772,-0.116302,-0.118195,-0.119598,-0.116638,-0.11087,-0.1026,-0.0943298,-0.0895081,-0.0882568,-0.0905762,-0.0982361,-0.106323,-0.115387,-0.126282,-0.13504,-0.140167,-0.130188,-0.107574,-0.0668945,-0.0158997,0.0419312,0.101044,0.161072,0.219055,0.270844,0.307465,0.319641,0.303436,0.263519,0.208008,0.14502,0.0799866,0.0151367,-0.044281,-0.0947876,-0.126617,-0.131287,-0.111328,-0.0700073,-0.0190125,0.0354004,0.0863953,0.129883,0.16217,0.176971,0.169495,0.138458,0.0890198,0.0307312,-0.0229187,-0.0625305,-0.0893555,-0.100098,-0.0943298,-0.0678406,-0.0185547,0.0467834,0.119751,0.18634,0.237457,0.268341,0.27597,0.264282,0.23233,0.182281,0.116943,0.0393066,-0.0383606,-0.109314,-0.164185,-0.19928,-0.216736,-0.219543,-0.211731,-0.192413,-0.166382,-0.138,-0.11087,-0.0918274,-0.0840454,-0.0870056,-0.0966797,-0.108978,-0.121613,-0.132996,-0.142822,-0.147491,-0.144531,-0.134552,-0.114594,-0.0867004,-0.0556641,-0.0247803,0.00390625,0.0317993,0.057373,0.078125,0.0943298,0.103058,0.103699,0.0974426,0.085144,0.0714111,0.0567627,0.0420837,0.0263367,0.0115356,-0.00201416,-0.00982666,-0.0119934,-0.00982666,-0.00234985,0.006073,0.0146484,0.0247803,0.0347595,0.0450745,0.0533142,0.059082,0.0608215,0.0600281,0.0580139,0.0559692,0.0583191,0.0626831,0.0712585,0.082489,0.0975952,0.114899,0.133301,0.150635,0.163086,0.168854,0.164978,0.152954,0.130493,0.102753,0.0708008,0.0368042,0.00436401,-0.0252686,-0.0489502,-0.0622253,-0.0656433,-0.0597229,-0.0487976,-0.0379028,-0.0265198,-0.0177612,-0.0110779,-0.00982666,-0.0152893,-0.0283813,-0.0464783,-0.0662537,-0.0838928,-0.0961914,-0.10025,-0.0969849,-0.0857544,-0.0692139,-0.0475464,-0.0219727,0.00561523,0.0302429,0.0480347,0.0559692,0.0541077,0.044281,0.0285339,0.0090332,-0.0140381,-0.0379028,-0.0595703,-0.0762329,-0.0845032,-0.0854492,-0.0805969,-0.0728149,-0.0629883,-0.0533142,-0.0447388,-0.0385132,-0.0371094,-0.0407104,-0.0508423,-0.0640869,-0.0790405,-0.0927734,-0.104004,-0.112122,-0.116486,-0.119293,-0.11911,-0.118805,-0.11615,-0.113037,-0.111481,-0.114288,-0.123169,-0.134857,-0.148438,-0.160583,-0.168091,-0.165283,-0.149536,-0.117096,-0.0690613,-0.00857544,0.0597229,0.129883,0.2005,0.265076,0.317444,0.347717,0.349121,0.32135,0.26944,0.200195,0.123505,0.0478821,-0.0246277,-0.0852966,-0.129089,-0.14798,-0.138916,-0.105255,-0.0528564,0.00857544,0.0712585,0.12381,0.164795,0.185699,0.18335,0.157166,0.109314,0.04599,-0.0174561,-0.0732727,-0.112274,-0.131744,-0.12973,-0.10791,-0.0622253,0.00466919,0.0870056,0.170258,0.241211,0.290802,0.316223,0.318542,0.298126,0.255402,0.192108,0.115234,0.031189,-0.0506592,-0.122711,-0.176514,-0.211884,-0.228577,-0.230438,-0.220459,-0.202087,-0.175415,-0.146088,-0.11911,-0.101807,-0.092926,-0.0927734,-0.0975952,-0.105865,-0.115082,-0.125977,-0.135956,-0.142822,-0.143921,-0.137054,-0.121002,-0.0991516,-0.0753174,-0.0483398,-0.0193481,0.0109253,0.0410156,0.0695496,0.0924683,0.107269,0.113678,0.112122,0.105255,0.0910645,0.0729675,0.0514526,0.0272827,0.00280762,-0.0184021,-0.0336914,-0.039917,-0.0396118,-0.0332031,-0.0227661,-0.00827026,0.0101318,0.0293274,0.0478821,0.0643921,0.0753174,0.0830994,0.0863953,0.0865479,0.0865479,0.0871582,0.0896606,0.0951233,0.102905,0.114594,0.127686,0.141571,0.153259,0.159821,0.158875,0.15155,0.135345,0.112427,0.085144,0.0545654,0.0246277,-0.00405884,-0.0272827,-0.0428772,-0.0519104,-0.0527039,-0.048645,-0.0424194,-0.0358582,-0.0316467,-0.0288391,-0.0300903,-0.0358582,-0.0452271,-0.0587769,-0.0731201,-0.0856018,-0.0921631,-0.0926208,-0.0852966,-0.0720215,-0.0544128,-0.0333557,-0.00967407,0.0127869,0.0327454,0.0439758,0.0484924,0.0431824,0.0305481,0.0123291,-0.00827026,-0.0305481,-0.052063,-0.0706177,-0.0829468,-0.0905762,-0.0895081,-0.0849915,-0.0760803,-0.0671997,-0.059082,-0.0527039,-0.0497437,-0.0478821,-0.0511475,-0.0576782,-0.0673523,-0.076416,-0.0848083,-0.0904236,-0.0937195,-0.0960388,-0.0982361,-0.100098,-0.101349,-0.103363,-0.107727,-0.116486,-0.13208,-0.15094,-0.169189,-0.182434,-0.190704,-0.191467,-0.179932,-0.149841,-0.09729,-0.0280762,0.0513,0.130981,0.208618,0.279419,0.337402,0.375305,0.386383,0.362061,0.309021,0.231384,0.144073,0.0561218,-0.0254211,-0.0930786,-0.142517,-0.167938,-0.165588,-0.13208,-0.0731201,0.00250244,0.0799866,0.145325,0.191772,0.216431,0.220306,0.198486,0.148132,0.0765686,-0.00637817,-0.0816956,-0.137054,-0.165131,-0.167786,-0.14859,-0.105408,-0.0379028,0.0509949,0.148285,0.236206,0.302185,0.340851,0.348938,0.329468,0.284882,0.217987,0.138153,0.0467834,-0.0434875,-0.126923,-0.192413,-0.233887,-0.249786,-0.246979,-0.23233,-0.210022,-0.182129,-0.149384,-0.117249,-0.0937195,-0.0818481,-0.0827942,-0.0930786,-0.105103,-0.116943,-0.127533,-0.135956,-0.143768,-0.145477,-0.140015,-0.122864,-0.0996399,-0.0736084,-0.0447388,-0.0174561,0.0101318,0.0352478,0.0600281,0.0793762,0.0932312,0.101044,0.100403,0.0943298,0.0805969,0.0667419,0.0495911,0.0319519,0.0123291,-0.00701904,-0.0237122,-0.0339966,-0.0363159,-0.0322876,-0.0232239,-0.0121765,0.00250244,0.0180969,0.0354004,0.0528564,0.0676575,0.0785828,0.0852966,0.0896606,0.0927734,0.0965271,0.1026,0.111786,0.12146,0.134094,0.146423,0.158722,0.168396,0.174622,0.173553,0.163574,0.14563,0.118805,0.086853,0.0522461,0.0188599,-0.0115356,-0.0375671,-0.057373,-0.0698547,-0.0732727,-0.069397,-0.0604858,-0.0513,-0.0447388,-0.042572,-0.042572,-0.046936,-0.0539551,-0.0646973,-0.0776367,-0.0884094,-0.0961914,-0.0955811,-0.0877686,-0.0722046,-0.0519104,-0.0283813,-0.00482178,0.0174561,0.0350952,0.0466309,0.0506592,0.0447388,0.0293274,0.00796509,-0.0173035,-0.0405273,-0.0611267,-0.0770264,-0.0871582,-0.0918274,-0.090271,-0.08078,-0.0687561,-0.0553589,-0.0456848,-0.0411682,-0.0417786,-0.0478821,-0.0570679,-0.0709534,-0.0840454,-0.0979309,-0.109131,-0.117096,-0.119598,-0.117889,-0.111786,-0.102142,-0.0935669,-0.0863953,-0.0852966,-0.0896606,-0.101501,-0.117554,-0.136902,-0.156403,-0.177582,-0.190704,-0.191162,-0.164795,-0.11615,-0.046936,0.0310364,0.113678,0.196625,0.277374,0.349731,0.402283,0.42099,0.39978,0.342255,0.260376,0.169647,0.0765686,-0.0137329,-0.0940247,-0.159027,-0.194733,-0.196136,-0.160767,-0.0940247,-0.0116882,0.0717163,0.144226,0.199097,0.235443,0.24823,0.231842,0.180389,0.0999451,0.00747681,-0.0765686,-0.135956,-0.168549,-0.177277,-0.165436,-0.126129,-0.0569153,0.0417786,0.149231,0.247437,0.319641,0.360657,0.370636,0.351135,0.303894,0.233429,0.144531,0.0414734,-0.0623779,-0.157166,-0.228271,-0.27005,-0.283295,-0.27771,-0.259766,-0.230927,-0.194427,-0.151398,-0.110382,-0.0795288,-0.0668945,-0.0701599,-0.084198,-0.100555,-0.116638,-0.129883,-0.144073,-0.156219,-0.163239,-0.155762,-0.135498,-0.10556,-0.0712585,-0.0371094,-0.00405884,0.0283813,0.0572205,0.0856018,0.105255,0.117554,0.120056,0.113037,0.0975952,0.0793762,0.0600281,0.0410156,0.0209045,-0.000946045,-0.0219727,-0.0368042,-0.0428772,-0.0400696,-0.0333557,-0.0229187,-0.0115356,0.00436401,0.0237122,0.0428772,0.0609741,0.0745239,0.0837402,0.0882568,0.0910645,0.0940247,0.09729,0.103546,0.111786,0.122711,0.136902,0.150299,0.165131,0.176819,0.182281,0.180389,0.170105,0.151398,0.124878,0.0918274,0.0545654,0.0182495,-0.0154419,-0.0424194,-0.0623779,-0.0748291,-0.0790405,-0.0779724,-0.0715637,-0.0629883,-0.0553589,-0.0500488,-0.0506592,-0.054718,-0.0643921,-0.07547,-0.087616,-0.0974426,-0.103058,-0.101959,-0.0938721,-0.0774841,-0.0564575,-0.0308838,-0.00637817,0.0177612,0.0346069,0.0456848,0.0480347,0.041626,0.0269775,0.00531006,-0.0199585,-0.0445862,-0.0667419,-0.0818481,-0.0909119,-0.0923157,-0.0882568,-0.0793762,-0.0675049,-0.0541077,-0.0431824,-0.0363159,-0.0361633,-0.0424194,-0.052063,-0.0668945,-0.0816956,-0.0960388,-0.106812,-0.113525,-0.115234,-0.113678,-0.107422,-0.0982361,-0.0879517,-0.0805969,-0.0782776,-0.0845032,-0.0960388,-0.11319,-0.13208,-0.153259,-0.176666,-0.195374,-0.202545,-0.185242,-0.14267,-0.0782776,0.000457764,0.0838928,0.168396,0.251343,0.329773,0.39386,0.430176,0.426453,0.381073,0.305908,0.213928,0.119751,0.026825,-0.0606384,-0.135193,-0.188507,-0.206299,-0.187408,-0.130981,-0.0517578,0.033844,0.113983,0.180389,0.228424,0.256165,0.254761,0.217194,0.145782,0.0527039,-0.0403748,-0.115234,-0.164032,-0.18634,-0.186157,-0.160767,-0.103851,-0.014801,0.096344,0.208008,0.301697,0.363464,0.389954,0.385895,0.351288,0.290649,0.205353,0.100739,-0.0140381,-0.123657,-0.214539,-0.27536,-0.305298,-0.307312,-0.292816,-0.263519,-0.223755,-0.173706,-0.122711,-0.0784302,-0.0514526,-0.0456848,-0.0555115,-0.0753174,-0.0958862,-0.1185,-0.139404,-0.161072,-0.177277,-0.180878,-0.168396,-0.140472,-0.103546,-0.0628357,-0.0230713,0.0163574,0.0531616,0.0879517,0.116302,0.13504,0.141876,0.134857,0.118652,0.0960388,0.0714111,0.0470886,0.0221558,-0.00390625,-0.0291443,-0.048645,-0.0575256,-0.0556641,-0.0466309,-0.0325928,-0.0165405,0.00280762,0.0246277,0.0487976,0.0700073,0.0882568,0.098999,0.103851,0.105713,0.104462,0.103546,0.102448,0.103058,0.108826,0.11554,0.127075,0.140656,0.1539,0.165131,0.170898,0.167603,0.156219,0.138,0.113525,0.082489,0.0492859,0.0132446,-0.0199585,-0.048645,-0.0679932,-0.0785828,-0.0820007,-0.0820007,-0.0787354,-0.0736084,-0.0684509,-0.0637817,-0.0615845,-0.0625305,-0.0682983,-0.0756226,-0.0837402,-0.0882568,-0.0877686,-0.0820007,-0.0703125,-0.0558167,-0.0368042,-0.0179443,0.00140381,0.0195007,0.031189,0.0343018,0.0303955,0.0177612,0.0015564,-0.0182495,-0.0385132,-0.0595703,-0.0756226,-0.0879517,-0.0905762,-0.0865479,-0.0770264,-0.065033,-0.0533142,-0.043335,-0.0357056,-0.0335083,-0.0349121,-0.0428772,-0.0550537,-0.0695496,-0.0849915,-0.0966797,-0.104004,-0.106659,-0.102295,-0.0951233,-0.0852966,-0.0746765,-0.0651855,-0.0569153,-0.0552063,-0.0612793,-0.0750122,-0.0961914,-0.123016,-0.15155,-0.176819,-0.196625,-0.210815,-0.213928,-0.200836,-0.160919,-0.0958862,-0.0123291,0.076416,0.160431,0.237793,0.307953,0.36673,0.406006,0.411011,0.377319,0.309357,0.221405,0.129272,0.0420837,-0.0366516,-0.1026,-0.152649,-0.174164,-0.165436,-0.121307,-0.052063,0.0296326,0.109131,0.172913,0.215942,0.237793,0.235138,0.207672,0.150635,0.0690613,-0.0244751,-0.10495,-0.157623,-0.17807,-0.174011,-0.146423,-0.098999,-0.0223083,0.0782776,0.187256,0.28363,0.350342,0.38092,0.376709,0.342712,0.28363,0.200836,0.102448,-0.00405884,-0.109314,-0.199097,-0.263672,-0.295013,-0.29657,-0.275513,-0.242615,-0.20285,-0.160278,-0.11554,-0.0750122,-0.0508423,-0.0448914,-0.0598755,-0.085907,-0.114899,-0.138611,-0.158722,-0.174957,-0.185242,-0.184937,-0.168243,-0.134552,-0.0905762,-0.0452271,-0.00250244,0.0344543,0.0675049,0.094635,0.114594,0.123016,0.122101,0.111176,0.0943298,0.0720215,0.0491028,0.0274353,0.0107727,-0.00140381,-0.0129395,-0.0227661,-0.0282288,-0.0271301,-0.0184021,-0.00482178,0.00762939,0.0195007,0.0289917,0.0410156,0.0536499,0.0653381,0.0746765,0.0796814,0.0834045,0.0863953,0.0907593,0.0951233,0.103546,0.113983,0.126129,0.138,0.150299,0.161377,0.171051,0.174774,0.17041,0.155304,0.132843,0.104309,0.0728149,0.0394592,0.00497437,-0.0282288,-0.0572205,-0.0787354,-0.0921631,-0.0944824,-0.0893555,-0.079834,-0.0700073,-0.0614319,-0.0544128,-0.0478821,-0.0430298,-0.0424194,-0.0456848,-0.0536499,-0.0620422,-0.0681458,-0.0686035,-0.0632935,-0.0544128,-0.0428772,-0.0307312,-0.0180969,-0.00515747,0.00546265,0.0138855,0.0152893,0.0093689,-0.000152588,-0.0137329,-0.0261841,-0.0389709,-0.0500488,-0.0589294,-0.0646973,-0.0656433,-0.0631409,-0.0578613,-0.0522461,-0.0475464,-0.0462952,-0.0478821,-0.0544128,-0.0614319,-0.069397,-0.0757751,-0.0821838,-0.0879517,-0.0884094,-0.0849915,-0.073761,-0.0597229,-0.0455322,-0.0347595,-0.026825,-0.0218201,-0.0240173,-0.0335083,-0.0525513,-0.077179,-0.105103,-0.133148,-0.160431,-0.188507,-0.210968,-0.226074,-0.229828,-0.222351,-0.198334,-0.158264,-0.0991516,-0.0269775,0.0498962,0.12677,0.198181,0.26709,0.323212,0.365479,0.379517,0.363129,0.317139,0.252136,0.176514,0.0996399,0.0229187,-0.0470886,-0.106171,-0.143616,-0.152954,-0.132996,-0.0887146,-0.0274353,0.0405273,0.106171,0.161224,0.200989,0.216431,0.20816,0.172302,0.115234,0.040863,-0.0330505,-0.0924683,-0.12973,-0.14328,-0.136444,-0.106659,-0.050354,0.0316467,0.127533,0.222351,0.29657,0.343658,0.360504,0.349884,0.311676,0.24823,0.162323,0.0632935,-0.0393066,-0.131592,-0.2052,-0.254303,-0.275208,-0.274902,-0.256348,-0.22702,-0.190857,-0.150299,-0.113342,-0.0857544,-0.0731201,-0.0765686,-0.0915222,-0.112122,-0.131287,-0.147034,-0.158569,-0.166046,-0.163879,-0.152191,-0.125671,-0.090271,-0.0514526,-0.0143433,0.0155945,0.042572,0.0631409,0.0804443,0.0895081,0.0898132,0.0835876,0.0726624,0.0600281,0.0484924,0.0360107,0.0272827,0.0196533,0.0126343,0.00701904,0.00186157,-0.000610352,-0.000793457,0.00109863,0.00341797,0.00436401,0.006073,0.0118408,0.0201111,0.0314941,0.043335,0.054718,0.0670471,0.079834,0.0937195,0.105713,0.118652,0.130676,0.144836,0.157471,0.167603,0.174011,0.176514,0.173706,0.165741,0.150452,0.126617,0.0979309,0.0645447,0.0296326,-0.00421143,-0.0350952,-0.0594177,-0.0778198,-0.0870056,-0.0888672,-0.081543,-0.0676575,-0.0511475,-0.0361633,-0.0244751,-0.0187073,-0.0180969,-0.0216675,-0.0289917,-0.0411682,-0.0556641,-0.0712585,-0.0837402,-0.0867004,-0.082489,-0.0695496,-0.053009,-0.033844,-0.014801,0.00592041,0.0240173,0.0389709,0.0439758,0.0407104,0.0293274,0.0126343,-0.00717163,-0.0279236,-0.0478821,-0.0668945,-0.0820007,-0.0932312,-0.0994873,-0.0986938,-0.0933838,-0.085144,-0.0779724,-0.0722046,-0.0648499,-0.0564575,-0.0466309,-0.0393066,-0.0354004,-0.0339966,-0.0322876,-0.0288391,-0.025116,-0.0216675,-0.0229187,-0.0260315,-0.0317993,-0.039917,-0.0494385,-0.0594177,-0.0712585,-0.083252,-0.098999,-0.116943,-0.133301,-0.147491,-0.156708,-0.165283,-0.17337,-0.181946,-0.189606,-0.191162,-0.181335,-0.153107,-0.108215,-0.0509949,0.0116882,0.0765686,0.144836,0.21579,0.286591,0.346313,0.381378,0.385132,0.354401,0.300781,0.231384,0.155762,0.0740662,-0.0105896,-0.0887146,-0.149048,-0.177917,-0.17041,-0.131287,-0.0723572,-0.00311279,0.0665894,0.131439,0.185699,0.220947,0.22702,0.198792,0.138306,0.0587769,-0.0218201,-0.085144,-0.129089,-0.152954,-0.158264,-0.140656,-0.088562,-0.00170898,0.105103,0.212067,0.297821,0.355499,0.38028,0.378265,0.34613,0.286896,0.200043,0.09198,-0.0226135,-0.127686,-0.211273,-0.263672,-0.286896,-0.285797,-0.266937,-0.236847,-0.19458,-0.14563,-0.0974426,-0.0631409,-0.0487976,-0.0566101,-0.0768738,-0.104004,-0.127075,-0.150299,-0.169647,-0.186646,-0.192566,-0.182281,-0.152008,-0.108368,-0.0604858,-0.0138855,0.0247803,0.0572205,0.0837402,0.103546,0.113983,0.11319,0.101044,0.0826416,0.0598755,0.0397644,0.025116,0.0155945,0.0093689,0.00234985,-0.00576782,-0.0102844,-0.00967407,-0.00436401,0.00140381,0.00436401,0.00466919,0.00436401,0.0090332,0.0166931,0.0293274,0.0410156,0.0523987,0.0637817,0.078125,0.0937195,0.110077,0.124878,0.13736,0.147491,0.154358,0.158417,0.160278,0.159668,0.153259,0.141113,0.121307,0.0975952,0.0708008,0.0448914,0.0190125,-0.00671387,-0.0307312,-0.0498962,-0.0611267,-0.065033,-0.0626831,-0.0558167,-0.0450745,-0.0325928,-0.0218201,-0.0154419,-0.0144958,-0.019165,-0.0277405,-0.0383606,-0.0525513,-0.0656433,-0.0773315,-0.0834045,-0.0802917,-0.0697021,-0.0508423,-0.0275879,-0.000152588,0.0261841,0.0497437,0.0678406,0.0768738,0.0768738,0.0651855,0.0439758,0.014801,-0.0198059,-0.0545654,-0.0879517,-0.11615,-0.137848,-0.149231,-0.150635,-0.140015,-0.120209,-0.0940247,-0.0668945,-0.0407104,-0.0182495,0.000457764,0.0126343,0.0185547,0.0149536,0.00421143,-0.0119934,-0.0307312,-0.0489502,-0.0629883,-0.0742188,-0.0802917,-0.0834045,-0.0804443,-0.0746765,-0.0626831,-0.0505066,-0.0400696,-0.0349121,-0.0357056,-0.0431824,-0.0552063,-0.0723572,-0.0935669,-0.119598,-0.147644,-0.177765,-0.203491,-0.225922,-0.241058,-0.245575,-0.23233,-0.196625,-0.139252,-0.0646973,0.0199585,0.108826,0.19928,0.287994,0.36908,0.433472,0.46402,0.453735,0.403198,0.324005,0.230133,0.129272,0.0254211,-0.0753174,-0.163086,-0.221405,-0.241516,-0.218445,-0.160278,-0.0782776,0.0137329,0.10321,0.179626,0.236542,0.265228,0.259308,0.216248,0.139404,0.0448914,-0.0492859,-0.122864,-0.171814,-0.195831,-0.195221,-0.164185,-0.0955811,0.00762939,0.126129,0.239197,0.326355,0.379822,0.401337,0.391205,0.348022,0.276306,0.177582,0.0651855,-0.0505066,-0.15094,-0.227173,-0.26944,-0.283142,-0.273499,-0.25119,-0.217987,-0.177124,-0.132843,-0.094635,-0.0723572,-0.0715637,-0.0882568,-0.11319,-0.137665,-0.157013,-0.172455,-0.180878,-0.182587,-0.171204,-0.142365,-0.0985413,-0.0484924,-0.00109863,0.0374146,0.0648499,0.083252,0.0944824,0.0974426,0.0927734,0.0779724,0.0594177,0.040863,0.0258789,0.0162048,0.014801,0.0176086,0.0246277,0.0300903,0.0324402,0.0333557,0.0343018,0.0358582,0.0341492,0.0257263,0.0124817,0.000793457,-0.00656128,-0.00717163,-0.00280762,0.00360107,0.0121765,0.0260315,0.043335,0.0645447,0.0849915,0.10495,0.122253,0.136597,0.147827,0.1539,0.157471,0.157471,0.152191,0.139404,0.11911,0.0941772,0.0678406,0.0427246,0.0168457,-0.0102844,-0.0350952,-0.0558167,-0.0665894,-0.0681458,-0.0629883,-0.0522461,-0.0407104,-0.0272827,-0.0169983,-0.00918579,-0.00421143,-0.00360107,-0.00842285,-0.0187073,-0.0322876,-0.0458374,-0.0558167,-0.0592651,-0.0559692,-0.0462952,-0.0314941,-0.0144958,0.00375366,0.0213623,0.0354004,0.0453796,0.048645,0.0427246,0.0266724,0.00390625,-0.020752,-0.0427246,-0.0629883,-0.0801392,-0.0932312,-0.0991516,-0.0965271,-0.0852966,-0.0697021,-0.0527039,-0.0389709,-0.0266724,-0.0182495,-0.0163574,-0.0182495,-0.0244751,-0.0328979,-0.0452271,-0.0589294,-0.0712585,-0.0778198,-0.0774841,-0.0701599,-0.059082,-0.0447388,-0.0285339,-0.0110779,0.00671387,0.0196533,0.0277405,0.0282288,0.0209045,0.00637817,-0.0155945,-0.0427246,-0.0734253,-0.10321,-0.129578,-0.149689,-0.165436,-0.176178,-0.181946,-0.184296,-0.182739,-0.177917,-0.172913,-0.170105,-0.166687,-0.153259,-0.123962,-0.0776367,-0.0213623,0.0386658,0.101501,0.168396,0.240265,0.312317,0.372192,0.403687,0.396362,0.355957,0.290802,0.213776,0.130035,0.0400696,-0.0511475,-0.135651,-0.197083,-0.222809,-0.207062,-0.156067,-0.085907,-0.00857544,0.065033,0.132538,0.184937,0.217834,0.218292,0.182739,0.113525,0.0280762,-0.0531616,-0.113983,-0.151703,-0.171356,-0.171204,-0.143921,-0.0779724,0.0204163,0.136597,0.247772,0.334442,0.389038,0.410553,0.403687,0.367493,0.301697,0.20752,0.0927734,-0.0272827,-0.136261,-0.218903,-0.268036,-0.288757,-0.288605,-0.271606,-0.242462,-0.200043,-0.149994,-0.102142,-0.0687561,-0.0552063,-0.0628357,-0.0804443,-0.101196,-0.118958,-0.134857,-0.148743,-0.160919,-0.163239,-0.147827,-0.116943,-0.0746765,-0.0307312,0.00637817,0.0375671,0.0615845,0.083252,0.101349,0.112885,0.114746,0.109772,0.100403,0.0898132,0.0804443,0.0736084,0.0670471,0.0561218,0.0386658,0.0166931,-0.006073,-0.0255737,-0.0414734,-0.0548706,-0.0695496,-0.0821838,-0.0891724,-0.0846558,-0.0678406,-0.0438232,-0.0165405,0.0116882,0.0396118,0.0686035,0.0951233,0.116638,0.132233,0.141266,0.144531,0.143768,0.139709,0.136261,0.133942,0.129272,0.122864,0.113678,0.102753,0.0916748,0.079834,0.0664368,0.0491028,0.0296326,0.00888062,-0.00952148,-0.0238647,-0.033844,-0.0403748,-0.0434875,-0.0472412,-0.050354,-0.0536499,-0.0548706,-0.0558167,-0.0564575,-0.0583191,-0.0614319,-0.0626831,-0.0611267,-0.054718,-0.0431824,-0.0252686,-0.00466919,0.0184021,0.0407104,0.0612793,0.0765686,0.0865479,0.0896606,0.0821838,0.0673523,0.0403748,0.0115356,-0.0201111,-0.050354,-0.0765686,-0.0991516,-0.114899,-0.122864,-0.123169,-0.114746,-0.101044,-0.0865479,-0.0736084,-0.0639343,-0.0566101,-0.0516052,-0.0508423,-0.0538025,-0.0584717,-0.0664368,-0.0722046,-0.0742188,-0.0697021,-0.059082,-0.0441284,-0.0252686,-0.00360107,0.0196533,0.0424194,0.0615845,0.0768738,0.0820007,0.0782776,0.0651855,0.0450745,0.0219727,-0.006073,-0.0361633,-0.0671997,-0.0949707,-0.116638,-0.130188,-0.136749,-0.138458,-0.139557,-0.142517,-0.147034,-0.154358,-0.161224,-0.17215,-0.186798,-0.206757,-0.223755,-0.228882,-0.211121,-0.168549,-0.105713,-0.0293274,0.0556641,0.146423,0.241058,0.336334,0.419128,0.471344,0.479919,0.445007,0.373108,0.279724,0.174316,0.0625305,-0.0494385,-0.154816,-0.234344,-0.27536,-0.271759,-0.226074,-0.154816,-0.0703125,0.0154419,0.0940247,0.157166,0.198486,0.209564,0.182129,0.11911,0.0344543,-0.0509949,-0.118958,-0.16153,-0.180237,-0.176025,-0.145325,-0.0784302,0.0201111,0.143433,0.266144,0.36734,0.431732,0.461853,0.456238,0.418488,0.349579,0.252136,0.135498,0.00918579,-0.109131,-0.203308,-0.263824,-0.291565,-0.294678,-0.279877,-0.253693,-0.215485,-0.169006,-0.123657,-0.0901184,-0.0768738,-0.085144,-0.103851,-0.123505,-0.139404,-0.151398,-0.160278,-0.161377,-0.152649,-0.127686,-0.0865479,-0.0325928,0.0232239,0.0704651,0.106171,0.131439,0.147491,0.153748,0.150146,0.132996,0.104767,0.0728149,0.0393066,0.0123291,-0.0105896,-0.0271301,-0.0422668,-0.0533142,-0.0626831,-0.0689087,-0.0712585,-0.0704651,-0.0682983,-0.0671997,-0.0682983,-0.0678406,-0.0640869,-0.0538025,-0.0403748,-0.0247803,-0.00561523,0.0180969,0.0455322,0.0773315,0.108215,0.138306,0.164978,0.188507,0.206604,0.221405,0.228424,0.228577,0.220795,0.20224,0.176025,0.141571,0.10321,0.0628357,0.0209045,-0.019165,-0.0533142,-0.0820007,-0.0996399,-0.10791,-0.10556,-0.0944824,-0.0767212,-0.057373,-0.0377197,-0.0215149,-0.00827026,0.000305176,0.0015564,-0.00326538,-0.0127869,-0.0226135,-0.0313416,-0.0339966,-0.0327454,-0.0233765,-0.00686646,0.0157471,0.0411682,0.0671997,0.0882568,0.103851,0.109314,0.104767,0.0867004,0.057373,0.0198059,-0.0224609,-0.0654907,-0.106506,-0.142212,-0.170105,-0.188202,-0.19397,-0.189911,-0.176666,-0.158722,-0.137207,-0.113678,-0.0916748,-0.0704651,-0.0498962,-0.0325928,-0.0187073,-0.00982666,-0.00186157,0.00717163,0.0187073,0.0313416,0.0444336,0.0555115,0.0640869,0.0718689,0.0784302,0.0818481,0.0823364,0.0760803,0.0643921,0.0470886,0.0275879,0.00656128,-0.0133972,-0.0332031,-0.0509949,-0.0671997,-0.0821838,-0.0952759,-0.104767,-0.112122,-0.119904,-0.12973,-0.141266,-0.154053,-0.169006,-0.18335,-0.197876,-0.214233,-0.227631,-0.236389,-0.240601,-0.236389,-0.221558,-0.188965,-0.133453,-0.0583191,0.0283813,0.119904,0.210327,0.295929,0.376556,0.443451,0.486786,0.490051,0.448883,0.368134,0.261169,0.141418,0.0177612,-0.103699,-0.215942,-0.306061,-0.360016,-0.368896,-0.331329,-0.255402,-0.156067,-0.0480347,0.057373,0.14859,0.217834,0.254761,0.254456,0.213623,0.136749,0.0431824,-0.0473938,-0.116302,-0.158417,-0.174316,-0.163727,-0.117889,-0.0330505,0.0863953,0.225616,0.356445,0.455139,0.514526,0.533417,0.515778,0.45871,0.363129,0.232788,0.0821838,-0.0697021,-0.203644,-0.306061,-0.36969,-0.39621,-0.391998,-0.36142,-0.31012,-0.242462,-0.165131,-0.0937195,-0.0388184,-0.00857544,-0.00311279,-0.0151367,-0.0322876,-0.0522461,-0.0745239,-0.0979309,-0.116791,-0.121918,-0.107727,-0.0739136,-0.0286865,0.0182495,0.0589294,0.090271,0.113342,0.128784,0.135345,0.127533,0.106323,0.0745239,0.0394592,0.00497437,-0.0244751,-0.0473938,-0.0662537,-0.0826416,-0.0951233,-0.103851,-0.106812,-0.104309,-0.0977478,-0.0901184,-0.0810852,-0.0729675,-0.0620422,-0.04599,-0.0219727,0.00360107,0.031189,0.0581665,0.086853,0.116943,0.145782,0.171661,0.190063,0.200836,0.204895,0.202545,0.196136,0.183838,0.1698,0.149994,0.125824,0.0977478,0.0668945,0.0366516,0.00857544,-0.0165405,-0.040863,-0.0625305,-0.079834,-0.0882568,-0.0895081,-0.0818481,-0.0706177,-0.054718,-0.036499,-0.0169983,0.00234985,0.019165,0.0319519,0.0396118,0.0427246,0.0394592,0.0332031,0.0249329,0.0169983,0.0116882,0.00997925,0.0115356,0.0157471,0.0230713,0.0319519,0.0424194,0.0480347,0.0473938,0.0402222,0.0232239,0.00125122,-0.026825,-0.0561218,-0.0887146,-0.121613,-0.152008,-0.173859,-0.187561,-0.190857,-0.185394,-0.171814,-0.15094,-0.122711,-0.0907593,-0.0569153,-0.0249329,0.00515747,0.0307312,0.0497437,0.0640869,0.0718689,0.0760803,0.0765686,0.0736084,0.0671997,0.0589294,0.0502014,0.0428772,0.0371094,0.0277405,0.0190125,0.00778198,-0.0015564,-0.0102844,-0.0173035,-0.0255737,-0.0368042,-0.0491028,-0.0609741,-0.0726624,-0.0805969,-0.0891724,-0.0971375,-0.105713,-0.113342,-0.119598,-0.122253,-0.123505,-0.120697,-0.1185,-0.114441,-0.109772,-0.101044,-0.091217,-0.0821838,-0.0768738,-0.0785828,-0.0873108,-0.100403,-0.113525,-0.122101,-0.120697,-0.105255,-0.0739136,-0.031189,0.0233765,0.0863953,0.155914,0.232025,0.301849,0.352539,0.369995,0.349121,0.29187,0.210663,0.112274,0.00234985,-0.112427,-0.2211,-0.31012,-0.363464,-0.37265,-0.337097,-0.262878,-0.158722,-0.0403748,0.0799866,0.188965,0.274567,0.329468,0.34491,0.316223,0.249481,0.159973,0.0686035,-0.00952148,-0.0676575,-0.106506,-0.12146,-0.100555,-0.0397644,0.0552063,0.16745,0.2724,0.353485,0.405396,0.423645,0.406799,0.354248,0.266327,0.15155,0.0227661,-0.104767,-0.215637,-0.295471,-0.337738,-0.343811,-0.320404,-0.276123,-0.217499,-0.147644,-0.0740662,-0.00872803,0.0366516,0.0538025,0.046936,0.0233765,-0.00671387,-0.0371094,-0.0668945,-0.0921631,-0.111176,-0.114441,-0.0988464,-0.0646973,-0.0204163,0.0219727,0.0542603,0.0729675,0.0810852,0.0779724,0.0642395,0.0368042,-0.00170898,-0.0444336,-0.0837402,-0.114288,-0.133453,-0.138916,-0.132385,-0.11615,-0.0949707,-0.0708008,-0.0444336,-0.0155945,0.0113831,0.0305481,0.0400696,0.0400696,0.0357056,0.0310364,0.0279236,0.025116,0.0240173,0.0271301,0.037262,0.0559692,0.0791931,0.104156,0.12738,0.150299,0.168549,0.182434,0.190704,0.190704,0.182892,0.165894,0.138153,0.10495,0.0659485,0.0266724,-0.0133972,-0.0502014,-0.0805969,-0.102905,-0.114594,-0.112885,-0.100098,-0.0756226,-0.0431824,-0.006073,0.0319519,0.0664368,0.094635,0.115387,0.125366,0.124268,0.111328,0.0882568,0.0595703,0.0272827,-0.00296021,-0.02948,-0.0455322,-0.0536499,-0.0506592,-0.0422668,-0.0286865,-0.0118408,0.00170898,0.0109253,0.0102844,-0.00140381,-0.0221558,-0.0500488,-0.0827942,-0.115997,-0.148132,-0.175415,-0.193329,-0.198181,-0.188965,-0.168243,-0.137848,-0.103058,-0.0642395,-0.0243225,0.0144958,0.0461426,0.0698547,0.0821838,0.0827942,0.0751648,0.0601807,0.0438232,0.0285339,0.0157471,0.00341797,-0.00561523,-0.0110779,-0.0107727,-0.00466919,0.00466919,0.0119934,0.0160522,0.0152893,0.0113831,0.006073,-0.00265503,-0.0151367,-0.0330505,-0.0495911,-0.0654907,-0.0762329,-0.0816956,-0.0816956,-0.0748291,-0.0640869,-0.0498962,-0.0322876,-0.0133972,0.00561523,0.0223083,0.0327454,0.0349121,0.0300903,0.0199585,0.00778198,-0.00857544,-0.0285339,-0.053009,-0.0801392,-0.109619,-0.138611,-0.16745,-0.195221,-0.223267,-0.247925,-0.265839,-0.268494,-0.247925,-0.204712,-0.148132,-0.0821838,-0.0110779,0.0682983,0.155304,0.241364,0.312775,0.353943,0.354248,0.318237,0.252747,0.172455,0.0802917,-0.0166931,-0.114441,-0.200836,-0.259766,-0.279266,-0.254303,-0.189301,-0.0980835,0.00515747,0.107422,0.200195,0.27536,0.324615,0.336334,0.305603,0.23465,0.138458,0.0369568,-0.0514526,-0.121002,-0.168091,-0.195221,-0.187103,-0.139862,-0.050354,0.0675049,0.18866,0.292816,0.368744,0.414276,0.430023,0.414581,0.365173,0.281738,0.173859,0.0572205,-0.052063,-0.138611,-0.195526,-0.222198,-0.225159,-0.212219,-0.186646,-0.14798,-0.0985413,-0.0500488,-0.0149536,-0.00546265,-0.0180969,-0.0445862,-0.0742188,-0.100098,-0.12442,-0.147034,-0.166199,-0.17337,-0.16153,-0.12973,-0.0863953,-0.042572,-0.00872803,0.0140381,0.0286865,0.0366516,0.0403748,0.0360107,0.0221558,0.0015564,-0.0179443,-0.0314941,-0.0335083,-0.0285339,-0.0166931,-0.00515747,0.00515747,0.010437,0.0152893,0.0193481,0.0195007,0.0132446,-0.00201416,-0.0230713,-0.0453796,-0.0604858,-0.0659485,-0.0629883,-0.053009,-0.0386658,-0.0152893,0.0182495,0.0581665,0.0994873,0.134399,0.162476,0.181641,0.193176,0.197693,0.195831,0.187408,0.171661,0.14798,0.120697,0.0918274,0.0653381,0.0424194,0.0215149,0.00421143,-0.010437,-0.0209045,-0.025116,-0.0212097,-0.0141907,-0.00326538,0.00592041,0.0143433,0.0195007,0.0209045,0.0204163,0.0141907,0.00186157,-0.0169983,-0.0400696,-0.0620422,-0.0818481,-0.0975952,-0.108826,-0.112122,-0.10556,-0.087616,-0.0622253,-0.0324402,-0.00125122,0.0257263,0.0447388,0.0556641,0.0536499,0.0417786,0.0196533,-0.00778198,-0.0386658,-0.0706177,-0.0988464,-0.120361,-0.131134,-0.129883,-0.118958,-0.0993347,-0.0743713,-0.0458374,-0.0177612,0.00637817,0.0247803,0.0339966,0.0357056,0.0303955,0.0173035,-0.00186157,-0.0215149,-0.0379028,-0.0484924,-0.0502014,-0.0450745,-0.033844,-0.0166931,0.0045166,0.0280762,0.0506592,0.0681458,0.0809326,0.085907,0.0840454,0.076416,0.0620422,0.0445862,0.0254211,0.00531006,-0.0118408,-0.0241699,-0.0303955,-0.0307312,-0.025116,-0.0179443,-0.0102844,-0.0045166,0.000610352,0.00265503,0.00219727,-0.00482178,-0.0162048,-0.0314941,-0.047699,-0.0618896,-0.0743713,-0.0865479,-0.0960388,-0.105408,-0.114899,-0.125671,-0.138,-0.15155,-0.169342,-0.189606,-0.211884,-0.235291,-0.258209,-0.27597,-0.284698,-0.273163,-0.23761,-0.176666,-0.0985413,-0.0105896,0.0821838,0.177124,0.271149,0.3591,0.423645,0.449677,0.429871,0.365936,0.273804,0.164978,0.0491028,-0.0687561,-0.180878,-0.27301,-0.330872,-0.344574,-0.312775,-0.239807,-0.139557,-0.0260315,0.0857544,0.184937,0.263184,0.311218,0.322601,0.292206,0.223602,0.13269,0.0386658,-0.0407104,-0.0966797,-0.130981,-0.142517,-0.120697,-0.0601807,0.0380554,0.158569,0.27771,0.375763,0.444855,0.481781,0.484772,0.454346,0.387299,0.28891,0.164795,0.0328979,-0.0930786,-0.195679,-0.268799,-0.308716,-0.32135,-0.313873,-0.287689,-0.244019,-0.18399,-0.120209,-0.0686035,-0.0374146,-0.0255737,-0.0272827,-0.0344543,-0.04599,-0.0595703,-0.076416,-0.0937195,-0.102295,-0.0958862,-0.0734253,-0.0383606,-0.00296021,0.0271301,0.0494385,0.0648499,0.0740662,0.0785828,0.0722046,0.0552063,0.0302429,0.00125122,-0.0238647,-0.044281,-0.0559692,-0.0622253,-0.0643921,-0.0661011,-0.0659485,-0.0626831,-0.054718,-0.0461426,-0.039917,-0.0400696,-0.0439758,-0.0480347,-0.0489502,-0.0441284,-0.0368042,-0.0265198,-0.0127869,0.00671387,0.0339966,0.0667419,0.0988464,0.129425,0.154053,0.172913,0.185394,0.192261,0.193024,0.187561,0.171661,0.146576,0.114594,0.08078,0.0472412,0.0141907,-0.0176086,-0.0461426,-0.069397,-0.086853,-0.094635,-0.092926,-0.0838928,-0.0695496,-0.0511475,-0.0330505,-0.0135803,0.00390625,0.0190125,0.0288391,0.0321045,0.0258789,0.0132446,-0.00125122,-0.0171509,-0.0339966,-0.0498962,-0.0612793,-0.0643921,-0.0603333,-0.0452271,-0.0237122,0.00109863,0.025116,0.0450745,0.0601807,0.0689087,0.0690613,0.0584717,0.0393066,0.0119934,-0.0185547,-0.0498962,-0.0773315,-0.0991516,-0.112427,-0.119904,-0.116791,-0.106018,-0.0865479,-0.0632935,-0.0380554,-0.0146484,0.00576782,0.0199585,0.0297852,0.0341492,0.0352478,0.0322876,0.0263367,0.0209045,0.0185547,0.0198059,0.0237122,0.0280762,0.0321045,0.0343018,0.0347595,0.0352478,0.0328979,0.0296326,0.0209045,0.00872803,-0.00390625,-0.014801,-0.0224609,-0.0265198,-0.0263367,-0.0233765,-0.0185547,-0.00982666,0.000610352,0.0112305,0.0182495,0.019165,0.0129395,0.0015564,-0.0154419,-0.0360107,-0.0572205,-0.0784302,-0.0960388,-0.108368,-0.113342,-0.109619,-0.0968323,-0.0795288,-0.0598755,-0.0417786,-0.0260315,-0.0157471,-0.0116882,-0.0180969,-0.036499,-0.0661011,-0.106812,-0.151245,-0.196625,-0.240417,-0.279266,-0.310913,-0.331024,-0.335083,-0.313568,-0.264282,-0.191772,-0.103363,-0.00778198,0.0899658,0.185394,0.277374,0.359711,0.422089,0.449219,0.435028,0.379517,0.295319,0.195984,0.091217,-0.0168457,-0.119904,-0.21048,-0.270691,-0.290649,-0.266479,-0.204254,-0.116638,-0.014801,0.0874634,0.182587,0.262573,0.317139,0.339294,0.321808,0.266327,0.184448,0.0923157,0.00701904,-0.0626831,-0.116791,-0.151703,-0.158417,-0.127228,-0.0558167,0.046936,0.157959,0.259766,0.343353,0.403198,0.437347,0.442657,0.411957,0.344421,0.24588,0.129883,0.00842285,-0.101807,-0.189758,-0.249939,-0.285187,-0.299835,-0.294525,-0.268036,-0.216736,-0.152649,-0.0910645,-0.0453796,-0.0182495,-0.00531006,-0.00326538,-0.0090332,-0.0243225,-0.0480347,-0.0785828,-0.106812,-0.124115,-0.125671,-0.112885,-0.0927734,-0.0714111,-0.0508423,-0.0313416,-0.010437,0.00997925,0.0261841,0.0330505,0.0305481,0.0216675,0.00857544,-0.00421143,-0.0138855,-0.0235291,-0.0330505,-0.0450745,-0.0561218,-0.0645447,-0.069397,-0.0684509,-0.0665894,-0.0664368,-0.0675049,-0.0676575,-0.0628357,-0.0531616,-0.038208,-0.0216675,-0.00466919,0.0163574,0.0405273,0.0687561,0.0965271,0.122101,0.141113,0.15451,0.16217,0.16449,0.164185,0.160583,0.150452,0.134247,0.11319,0.0895081,0.0661011,0.0441284,0.0224609,0.00296021,-0.0149536,-0.0289917,-0.0389709,-0.0430298,-0.0428772,-0.0386658,-0.0325928,-0.0255737,-0.0162048,-0.00701904,0.00326538,0.0112305,0.0162048,0.0168457,0.0107727,0.00341797,-0.00671387,-0.0187073,-0.0313416,-0.0441284,-0.0516052,-0.0517578,-0.0441284,-0.0305481,-0.0129395,0.00637817,0.0272827,0.046936,0.063446,0.0739136,0.0717163,0.0604858,0.0403748,0.0151367,-0.0140381,-0.04599,-0.0767212,-0.104462,-0.126129,-0.137207,-0.137207,-0.12442,-0.102905,-0.0768738,-0.0461426,-0.0158997,0.0135803,0.0369568,0.054718,0.0626831,0.0601807,0.0478821,0.0305481,0.0123291,-0.00561523,-0.0232239,-0.0360107,-0.0458374,-0.0480347,-0.0427246,-0.0288391,-0.00918579,0.0112305,0.0319519,0.0491028,0.0623779,0.0700073,0.0709534,0.0637817,0.0483398,0.0272827,0.00390625,-0.0193481,-0.0379028,-0.0516052,-0.0611267,-0.0676575,-0.0692139,-0.0653381,-0.0564575,-0.0438232,-0.0324402,-0.0224609,-0.0160522,-0.0121765,-0.00827026,-0.00466919,-0.0015564,-0.00125122,-0.00311279,-0.00686646,-0.0119934,-0.0176086,-0.0224609,-0.02948,-0.0397644,-0.0533142,-0.0708008,-0.0863953,-0.1026,-0.117096,-0.131287,-0.145477,-0.158722,-0.166046,-0.170746,-0.171967,-0.174622,-0.178986,-0.182129,-0.176025,-0.157623,-0.124573,-0.0802917,-0.0308838,0.0241699,0.0843506,0.150299,0.220947,0.284882,0.331635,0.35083,0.338196,0.298279,0.237152,0.163727,0.0816956,-0.00656128,-0.0933838,-0.167938,-0.217987,-0.232635,-0.211578,-0.16153,-0.0932312,-0.0162048,0.0615845,0.135651,0.197876,0.238861,0.249329,0.224365,0.171967,0.105713,0.0400696,-0.0154419,-0.0578613,-0.0877686,-0.09729,-0.0784302,-0.0261841,0.0556641,0.149536,0.238556,0.310425,0.359558,0.383728,0.382629,0.351135,0.290161,0.201141,0.096344,-0.0112305,-0.107574,-0.179138,-0.224213,-0.242157,-0.241211,-0.225616,-0.195374,-0.150787,-0.0966797,-0.0491028,-0.0201111,-0.0127869,-0.0237122,-0.0420837,-0.0639343,-0.0879517,-0.11087,-0.134552,-0.149689,-0.15094,-0.13269,-0.0993347,-0.0595703,-0.0201111,0.0112305,0.0346069,0.0498962,0.0576782,0.0559692,0.0417786,0.0182495,-0.0101318,-0.0394592,-0.0623779,-0.077179,-0.0821838,-0.0838928,-0.0804443,-0.0740662,-0.0639343,-0.0522461,-0.0403748,-0.0313416,-0.0282288,-0.0313416,-0.0369568,-0.042572,-0.0439758,-0.0431824,-0.0385132,-0.0293274,-0.0152893,0.00747681,0.037262,0.0714111,0.105713,0.135345,0.158875,0.173859,0.183197,0.184937,0.180542,0.166687,0.144531,0.116791,0.087616,0.0580139,0.0322876,0.00857544,-0.0115356,-0.0280762,-0.0391235,-0.0450745,-0.0445862,-0.0397644,-0.0330505,-0.0254211,-0.0158997,-0.00622559,0.00482178,0.0137329,0.0195007,0.0212097,0.0182495,0.0110779,0.00140381,-0.00857544,-0.0180969,-0.0277405,-0.0375671,-0.0448914,-0.0438232,-0.0343018,-0.0179443,0.00326538,0.0238647,0.0431824,0.0597229,0.0717163,0.0773315,0.0731201,0.0583191,0.0339966,0.00280762,-0.0322876,-0.0668945,-0.0985413,-0.123657,-0.140167,-0.147034,-0.141876,-0.127228,-0.104004,-0.0750122,-0.042572,-0.0119934,0.0141907,0.033844,0.0475464,0.0523987,0.0495911,0.0386658,0.0237122,0.00701904,-0.0090332,-0.0219727,-0.0296326,-0.0321045,-0.0285339,-0.0196533,-0.00656128,0.00842285,0.0260315,0.0411682,0.053009,0.0583191,0.0566101,0.0478821,0.033844,0.0157471,-0.00280762,-0.0209045,-0.0369568,-0.0492859,-0.0580139,-0.0592651,-0.0545654,-0.044281,-0.0293274,-0.0144958,-0.000793457,0.00997925,0.0184021,0.0229187,0.0258789,0.0241699,0.0190125,0.0123291,0.006073,0.00201416,0.000457764,0,0.000457764,0.00234985,0.00296021,0.00140381,-0.00265503,-0.0102844,-0.0215149,-0.0344543,-0.052063,-0.0712585,-0.0924683,-0.113342,-0.130829,-0.14502,-0.158264,-0.1698,-0.180878,-0.189453,-0.198486,-0.207062,-0.212524,-0.211121,-0.19458,-0.161987,-0.116638,-0.0622253,0.000152588,0.0681458,0.143768,0.224213,0.298279,0.353302,0.376709,0.368286,0.32666,0.26413,0.184601,0.09198,-0.00811768,-0.107117,-0.191162,-0.24823,-0.269287,-0.254303,-0.208466,-0.142212,-0.0614319,0.0223083,0.102905,0.170563,0.216736,0.231384,0.212982,0.169006,0.109619,0.0487976,-0.00576782,-0.0502014,-0.0823364,-0.0918274,-0.0736084,-0.0233765,0.0583191,0.149231,0.238708,0.313873,0.370636,0.403381,0.409607,0.386688,0.331635,0.247772,0.144684,0.0346069,-0.0670471,-0.150299,-0.209869,-0.247437,-0.265991,-0.268188,-0.253693,-0.219055,-0.172913,-0.127686,-0.0955811,-0.0765686,-0.0678406,-0.0643921,-0.0643921,-0.0678406,-0.0740662,-0.0816956,-0.0856018,-0.0782776,-0.0604858,-0.0336914,-0.00405884,0.0216675,0.0383606,0.0473938,0.0494385,0.0455322,0.036499,0.0182495,-0.00561523,-0.0321045,-0.0567627,-0.0742188,-0.081543,-0.0818481,-0.0779724,-0.0726624,-0.0668945,-0.0586243,-0.0505066,-0.044281,-0.0407104,-0.0445862,-0.0527039,-0.0636292,-0.0712585,-0.0748291,-0.0728149,-0.0656433,-0.0523987,-0.0313416,-0.000793457,0.0379028,0.0791931,0.120697,0.157318,0.184937,0.204254,0.215027,0.217834,0.212067,0.195374,0.169342,0.13504,0.0982361,0.0612793,0.026825,-0.00360107,-0.0317993,-0.0559692,-0.0723572,-0.083252,-0.0846558,-0.081543,-0.0732727,-0.0629883,-0.0513,-0.0375671,-0.0219727,-0.00592041,0.0093689,0.0201111,0.0277405,0.0314941,0.0339966,0.0335083,0.0293274,0.0226135,0.0152893,0.00982666,0.00888062,0.0119934,0.0195007,0.0291443,0.040863,0.0517578,0.0584717,0.0626831,0.0606384,0.0523987,0.0361633,0.0110779,-0.0180969,-0.0495911,-0.0788879,-0.105408,-0.126465,-0.141724,-0.148438,-0.145782,-0.130981,-0.110535,-0.085144,-0.0586243,-0.0324402,-0.00952148,0.00778198,0.0196533,0.0241699,0.0249329,0.0204163,0.0138855,0.00762939,0.00326538,0.00421143,0.0090332,0.0174561,0.0277405,0.0377197,0.0502014,0.0587769,0.065033,0.0646973,0.0575256,0.0445862,0.0265198,0.00686646,-0.0151367,-0.0371094,-0.0562744,-0.0700073,-0.0768738,-0.0751648,-0.0651855,-0.0492859,-0.0289917,-0.00827026,0.0118408,0.0297852,0.042572,0.0497437,0.0491028,0.0427246,0.0328979,0.0213623,0.0101318,0.00140381,-0.00436401,-0.00622559,-0.00421143,0.00341797,0.013092,0.0241699,0.0328979,0.038208,0.038208,0.0327454,0.0195007,-0.00140381,-0.026825,-0.0566101,-0.0877686,-0.119446,-0.147644,-0.171051,-0.189453,-0.202545,-0.211578,-0.219543,-0.226074,-0.231689,-0.233246,-0.225922,-0.205505,-0.170258,-0.12677,-0.0731201,-0.0115356,0.0598755,0.138458,0.221252,0.295319,0.352234,0.380615,0.377655,0.343964,0.284393,0.204254,0.107574,0.000457764,-0.107727,-0.200989,-0.268341,-0.300446,-0.297668,-0.261017,-0.198792,-0.116486,-0.0237122,0.0664368,0.14502,0.201141,0.226562,0.220795,0.186005,0.131744,0.0690613,0.00918579,-0.0438232,-0.0823364,-0.100098,-0.0871582,-0.0417786,0.0360107,0.130341,0.225006,0.307617,0.374664,0.419128,0.436096,0.419586,0.364868,0.277222,0.168854,0.0533142,-0.0562744,-0.150635,-0.222198,-0.268494,-0.290955,-0.290009,-0.265839,-0.225311,-0.170563,-0.115082,-0.0706177,-0.0428772,-0.0285339,-0.0243225,-0.0279236,-0.0396118,-0.0567627,-0.0745239,-0.0888672,-0.0921631,-0.08078,-0.0576782,-0.0271301,0.00341797,0.0303955,0.0516052,0.0668945,0.073761,0.0732727,0.0595703,0.0363159,0.00482178,-0.0271301,-0.0553589,-0.0774841,-0.09198,-0.101654,-0.108215,-0.109314,-0.106018,-0.09729,-0.0857544,-0.0760803,-0.0703125,-0.0682983,-0.0675049,-0.0667419,-0.0629883,-0.0569153,-0.0470886,-0.0344543,-0.0169983,0.00747681,0.0388184,0.073761,0.108368,0.139557,0.163727,0.18103,0.190857,0.193024,0.188354,0.17572,0.153412,0.125366,0.0933838,0.0606384,0.031189,0.00466919,-0.0182495,-0.0391235,-0.0578613,-0.0690613,-0.0743713,-0.0734253,-0.0697021,-0.0643921,-0.0552063,-0.0453796,-0.0313416,-0.0169983,-0.000610352,0.013092,0.0254211,0.0343018,0.0407104,0.0439758,0.043335,0.0397644,0.0350952,0.0302429,0.0263367,0.0263367,0.0297852,0.0371094,0.0453796,0.0533142,0.0578613,0.0587769,0.0561218,0.0480347,0.0317993,0.00778198,-0.0219727,-0.0545654,-0.0856018,-0.110718,-0.129272,-0.139252,-0.140961,-0.133301,-0.113831,-0.0865479,-0.0544128,-0.0209045,0.00857544,0.0319519,0.0456848,0.052063,0.0495911,0.0407104,0.0244751,0.00546265,-0.0143433,-0.0291443,-0.0388184,-0.0386658,-0.0314941,-0.0179443,0.000305176,0.0209045,0.0422668,0.0608215,0.0742188,0.0813904,0.0768738,0.0653381,0.0453796,0.0196533,-0.00982666,-0.0386658,-0.0661011,-0.0873108,-0.100891,-0.104614,-0.0975952,-0.0818481,-0.0580139,-0.0282288,0.00201416,0.0316467,0.0576782,0.0779724,0.091217,0.0971375,0.0949707,0.0845032,0.069397,0.0491028,0.0289917,0.00952148,-0.00717163,-0.0212097,-0.0324402,-0.0405273,-0.0444336,-0.0453796,-0.0438232,-0.040863,-0.040863,-0.0430298,-0.0475464,-0.053009,-0.0608215,-0.0708008,-0.0838928,-0.100403,-0.121002,-0.143616,-0.168396,-0.193512,-0.219391,-0.241669,-0.256653,-0.257568,-0.239655,-0.202698,-0.147491,-0.0773315,0.00360107,0.0938721,0.185547,0.276123,0.351929,0.402283,0.416168,0.393066,0.334442,0.249481,0.146423,0.0296326,-0.0893555,-0.199585,-0.287506,-0.341461,-0.354706,-0.326813,-0.263672,-0.175415,-0.0731201,0.0317993,0.128937,0.208466,0.261627,0.279724,0.260376,0.211884,0.14328,0.0706177,0.000793457,-0.0589294,-0.101349,-0.117096,-0.0991516,-0.0473938,0.0317993,0.124573,0.217499,0.302948,0.368896,0.408508,0.416321,0.389648,0.330383,0.242767,0.135803,0.0213623,-0.0871582,-0.177277,-0.243866,-0.285187,-0.303894,-0.300446,-0.273804,-0.227966,-0.172607,-0.11554,-0.0695496,-0.0363159,-0.0126343,0.000305176,0.00466919,0.00265503,-0.0045166,-0.0152893,-0.0246277,-0.0258789,-0.0182495,-0.0045166,0.0093689,0.0223083,0.0293274,0.0325928,0.031189,0.0255737,0.0137329,-0.00341797,-0.0243225,-0.0464783,-0.0664368,-0.0804443,-0.0871582,-0.0884094,-0.0871582,-0.0848083,-0.0818481,-0.0762329,-0.0700073,-0.0648499,-0.0632935,-0.0668945,-0.0725098,-0.0776367,-0.0782776,-0.0734253,-0.0629883,-0.0462952,-0.0244751,0.00421143,0.0380554,0.0779724,0.116943,0.153748,0.182739,0.201447,0.21048,0.209259,0.199432,0.180542,0.153595,0.117889,0.0790405,0.0394592,0.00375366,-0.0282288,-0.0538025,-0.0729675,-0.0860596,-0.0927734,-0.0923157,-0.0843506,-0.0715637,-0.0572205,-0.0410156,-0.0244751,-0.00747681,0.00997925,0.0266724,0.0397644,0.0492859,0.0534668,0.0553589,0.0516052,0.0447388,0.0341492,0.0240173,0.0141907,0.00762939,0.00592041,0.00717163,0.0149536,0.0261841,0.0400696,0.0528564,0.0622253,0.0664368,0.0640869,0.0533142,0.0330505,0.00515747,-0.0277405,-0.0626831,-0.0955811,-0.125977,-0.147827,-0.159668,-0.159515,-0.145935,-0.121002,-0.0910645,-0.0570679,-0.0224609,0.0115356,0.0385132,0.0578613,0.0671997,0.0671997,0.059082,0.04599,0.031189,0.0163574,0.00482178,-0.00360107,-0.00717163,-0.00531006,0.00186157,0.0121765,0.0254211,0.0374146,0.0456848,0.0489502,0.046936,0.0394592,0.0283813,0.0115356,-0.00827026,-0.0300903,-0.0498962,-0.0648499,-0.0715637,-0.0703125,-0.0626831,-0.0502014,-0.0324402,-0.00967407,0.0146484,0.0377197,0.0567627,0.0695496,0.0767212,0.0765686,0.0712585,0.0609741,0.0473938,0.0319519,0.0165405,0.00326538,-0.00778198,-0.0149536,-0.0193481,-0.0188599,-0.0190125,-0.0171509,-0.0190125,-0.0216675,-0.0280762,-0.0371094,-0.0491028,-0.0639343,-0.0818481,-0.0983887,-0.114746,-0.126129,-0.136444,-0.144379,-0.152954,-0.161072,-0.171356,-0.181946,-0.193024,-0.200989,-0.201904,-0.194916,-0.174316,-0.142822,-0.0969849,-0.0403748,0.0279236,0.102753,0.180237,0.252136,0.310608,0.344574,0.350677,0.324615,0.269287,0.19101,0.0947876,-0.00918579,-0.11319,-0.205505,-0.27536,-0.314331,-0.315735,-0.282684,-0.217987,-0.132843,-0.0346069,0.0609741,0.146088,0.211731,0.251648,0.262268,0.241516,0.197235,0.136261,0.0709534,0.0105896,-0.036499,-0.065033,-0.0673523,-0.0420837,0.0105896,0.0837402,0.163239,0.239502,0.302185,0.348175,0.367035,0.357849,0.316833,0.247925,0.159515,0.0608215,-0.0383606,-0.127533,-0.198181,-0.246521,-0.270996,-0.273651,-0.256958,-0.223114,-0.177429,-0.128326,-0.0804443,-0.0441284,-0.0199585,-0.00701904,-0.00326538,-0.00656128,-0.0146484,-0.0249329,-0.033844,-0.037262,-0.0325928,-0.0209045,-0.00341797,0.0143433,0.0285339,0.0386658,0.0431824,0.0391235,0.02948,0.0119934,-0.0118408,-0.0388184,-0.065033,-0.087616,-0.104156,-0.11319,-0.11615,-0.114136,-0.108215,-0.09729,-0.0865479,-0.0731201,-0.0625305,-0.0538025,-0.0481873,-0.0447388,-0.040863,-0.0349121,-0.0252686,-0.0116882,0.00561523,0.0272827,0.0531616,0.0826416,0.113831,0.14267,0.166046,0.181793,0.188049,0.186157,0.176971,0.160583,0.136749,0.108673,0.0759277,0.043335,0.0113831,-0.0152893,-0.0368042,-0.0534668,-0.0653381,-0.0732727,-0.076416,-0.0753174,-0.0703125,-0.0628357,-0.0538025,-0.0455322,-0.0358582,-0.0258789,-0.0110779,0.00326538,0.0188599,0.0322876,0.0439758,0.0525513,0.0595703,0.0636292,0.0648499,0.0631409,0.0575256,0.0506592,0.0434875,0.0374146,0.0335083,0.0308838,0.0275879,0.0254211,0.0205688,0.0152893,0.00827026,-0.00311279,-0.0158997,-0.0322876,-0.0514526,-0.0714111,-0.0895081,-0.103699,-0.111938,-0.115082,-0.111023,-0.102142,-0.0870056,-0.0665894,-0.0407104,-0.0158997,0.00762939,0.0261841,0.0411682,0.0498962,0.0542603,0.0544128,0.0506592,0.043335,0.0346069,0.026825,0.0215149,0.0165405,0.0158997,0.0154419,0.0177612,0.0205688,0.0227661,0.0224609,0.0224609,0.019165,0.0135803,0.00482178,-0.00778198,-0.0221558,-0.0352478,-0.0466309,-0.0541077,-0.0592651,-0.0606384,-0.0581665,-0.0487976,-0.035553,-0.0185547,-0.00140381,0.0163574,0.0324402,0.0461426,0.0558167,0.0620422,0.0637817,0.0606384,0.0539551,0.0439758,0.0313416,0.0180969,0.00482178,-0.00857544,-0.0215149,-0.0339966,-0.0453796,-0.057373,-0.0667419,-0.0770264,-0.0862122,-0.0965271,-0.104462,-0.111176,-0.116791,-0.120209,-0.123505,-0.12738,-0.131592,-0.139557,-0.149689,-0.16217,-0.171051,-0.17511,-0.170105,-0.155609,-0.128784,-0.0893555,-0.040863,0.0199585,0.0891724,0.164337,0.233734,0.289062,0.322754,0.329926,0.313568,0.268646,0.201752,0.11554,0.0202637,-0.0748291,-0.161987,-0.230774,-0.272552,-0.280334,-0.256165,-0.206116,-0.138916,-0.0600281,0.0223083,0.101349,0.162933,0.201447,0.211121,0.197693,0.166046,0.124573,0.0757751,0.0275879,-0.0118408,-0.0354004,-0.0346069,-0.00982666,0.0335083,0.0921631,0.156403,0.217041,0.266327,0.298431,0.310272,0.298126,0.260376,0.197083,0.116791,0.0277405,-0.0564575,-0.130035,-0.188049,-0.228271,-0.249481,-0.251648,-0.231689,-0.198486,-0.155914,-0.111938,-0.0715637,-0.0402222,-0.0221558,-0.0132446,-0.00982666,-0.0115356,-0.0188599,-0.0303955,-0.0380554,-0.037262,-0.0272827,-0.0112305,0.00982666,0.0314941,0.050354,0.0629883,0.0704651,0.0701599,0.0626831,0.0458374,0.0210571,-0.0105896,-0.0430298,-0.0718689,-0.0958862,-0.112122,-0.122864,-0.12738,-0.123505,-0.113983,-0.0975952,-0.0804443,-0.0615845,-0.044281,-0.0302429,-0.0177612,-0.00842285,0.00140381,0.0109253,0.0190125,0.0274353,0.0368042,0.0497437,0.065033,0.0820007,0.0997925,0.115692,0.129272,0.137848,0.142822,0.144684,0.139862,0.130829,0.111481,0.0895081,0.0614319,0.0330505,0.00341797,-0.0243225,-0.0514526,-0.0742188,-0.0940247,-0.106812,-0.112427,-0.110718,-0.10321,-0.0873108,-0.0676575,-0.0445862,-0.0184021,0.0093689,0.035553,0.0584717,0.0736084,0.0827942,0.0852966,0.0801392,0.0698547,0.0539551,0.0361633,0.0190125,0.00497437,-0.00421143,-0.00686646,-0.00375366,0.00421143,0.0152893,0.0277405,0.0389709,0.0466309,0.0472412,0.0397644,0.0243225,0.0015564,-0.0275879,-0.0584717,-0.0881042,-0.113678,-0.131287,-0.138153,-0.132233,-0.11554,-0.0890198,-0.0559692,-0.0196533,0.0174561,0.0513,0.078125,0.0961914,0.102142,0.096344,0.0823364,0.0618896,0.0386658,0.0157471,-0.00576782,-0.0229187,-0.0344543,-0.038208,-0.0330505,-0.0221558,-0.00637817,0.0090332,0.0230713,0.0322876,0.037262,0.0363159,0.0299377,0.0168457,0.000305176,-0.0199585,-0.0388184,-0.0539551,-0.0643921,-0.0684509,-0.0670471,-0.0609741,-0.0483398,-0.0322876,-0.0132446,0.00747681,0.0244751,0.0386658,0.0466309,0.0495911,0.0484924,0.0436707,0.0344543,0.0221558,0.0090332,-0.006073,-0.0185547,-0.0303955,-0.0405273,-0.0500488,-0.0603333,-0.071106,-0.0818481,-0.0915222,-0.100403,-0.108826,-0.116791,-0.125061,-0.134094,-0.142365,-0.149384,-0.155304,-0.159515,-0.161072,-0.157471,-0.14563,-0.126617,-0.0971375,-0.0587769,-0.013092,0.0368042,0.0921631,0.147827,0.200195,0.242157,0.265991,0.27005,0.252747,0.216431,0.163239,0.0960388,0.0226135,-0.050354,-0.116486,-0.168091,-0.19989,-0.204254,-0.18335,-0.142059,-0.088562,-0.0279236,0.0335083,0.0901184,0.135345,0.160767,0.165436,0.150146,0.120697,0.0829468,0.0431824,0.00637817,-0.0202637,-0.0322876,-0.026825,-0.00265503,0.0386658,0.0890198,0.148285,0.203949,0.247589,0.273163,0.280823,0.269897,0.237152,0.184937,0.116302,0.0397644,-0.0344543,-0.100403,-0.152649,-0.190521,-0.211426,-0.216888,-0.205963,-0.181183,-0.148743,-0.115082,-0.0821838,-0.0544128,-0.0358582,-0.0285339,-0.0257263,-0.0254211,-0.0282288,-0.0346069,-0.0410156,-0.0407104,-0.0327454,-0.0215149,-0.00576782,0.0101318,0.0257263,0.037262,0.0411682,0.0414734,0.0352478,0.0247803,0.00796509,-0.0132446,-0.0360107,-0.0545654,-0.0681458,-0.0778198,-0.0829468,-0.0829468,-0.079834,-0.0732727,-0.0645447,-0.0531616,-0.0441284,-0.0360107,-0.0314941,-0.026825,-0.0226135,-0.0184021,-0.0112305,-0.000610352,0.0110779,0.0237122,0.0393066,0.0604858,0.0823364,0.104462,0.122711,0.138306,0.147827,0.152496,0.151093,0.144836,0.131439,0.111023,0.085144,0.0569153,0.0271301,-0.000946045,-0.0277405,-0.0513,-0.0704651,-0.084198,-0.0918274,-0.0930786,-0.0867004,-0.0759277,-0.0601807,-0.0417786,-0.0215149,0.000610352,0.0212097,0.0396118,0.0542603,0.0636292,0.0642395,0.0603333,0.0509949,0.039917,0.0246277,0.00701904,-0.00888062,-0.0212097,-0.0274353,-0.0285339,-0.0227661,-0.0115356,0.00170898,0.0157471,0.0285339,0.0386658,0.0439758,0.0410156,0.0296326,0.00997925,-0.0158997,-0.0445862,-0.0723572,-0.0951233,-0.112885,-0.122101,-0.12085,-0.109467,-0.088562,-0.0575256,-0.0229187,0.0123291,0.0445862,0.0704651,0.0891724,0.0982361,0.0985413,0.0899658,0.073761,0.0511475,0.0266724,0.00360107,-0.0141907,-0.0275879,-0.035553,-0.0358582,-0.0314941,-0.0233765,-0.0121765,0.000946045,0.0112305,0.0195007,0.0213623,0.0190125,0.0132446,0.00296021,-0.00872803,-0.0202637,-0.0300903,-0.0377197,-0.0427246,-0.0431824,-0.0386658,-0.0308838,-0.0201111,-0.0107727,-0.0015564,0.00592041,0.00952148,0.00967407,0.00622559,0.000793457,-0.00762939,-0.0160522,-0.025116,-0.0316467,-0.0385132,-0.0444336,-0.0495911,-0.054718,-0.0604858,-0.0676575,-0.0767212,-0.0896606,-0.104767,-0.124268,-0.14624,-0.168549,-0.188965,-0.201447,-0.204102,-0.192108,-0.168091,-0.131592,-0.0816956,-0.0198059,0.0492859,0.121918,0.189606,0.247284,0.285187,0.299835,0.290649,0.258667,0.204407,0.133301,0.0495911,-0.036499,-0.115387,-0.177582,-0.217834,-0.231079,-0.214691,-0.174164,-0.112579,-0.0393066,0.0375671,0.110382,0.169495,0.207367,0.218292,0.205048,0.17276,0.12677,0.0715637,0.0160522,-0.0352478,-0.0708008,-0.0843506,-0.0722046,-0.0396118,0.0105896,0.0689087,0.134247,0.196472,0.246368,0.276764,0.284882,0.27005,0.233887,0.17572,0.103851,0.0263367,-0.0462952,-0.108673,-0.157623,-0.191467,-0.20816,-0.206451,-0.186005,-0.152344,-0.115234,-0.0810852,-0.0513,-0.0249329,-0.00622559,-0.00125122,-0.00561523,-0.0157471,-0.0282288,-0.0439758,-0.0572205,-0.0639343,-0.0623779,-0.0550537,-0.0447388,-0.0314941,-0.0140381,0.000946045,0.0118408,0.0174561,0.0173035,0.0118408,0.0015564,-0.0143433,-0.0314941,-0.0478821,-0.0603333,-0.0701599,-0.0762329,-0.0785828,-0.0742188,-0.0665894,-0.0559692,-0.0439758,-0.0313416,-0.0205688,-0.0110779,-0.00109863,0.00827026,0.0146484,0.0199585,0.0257263,0.0335083,0.0410156,0.0492859,0.0580139,0.0679932,0.0785828,0.0865479,0.094635,0.101807,0.106964,0.109772,0.109131,0.106659,0.0991516,0.0884094,0.0753174,0.0600281,0.0428772,0.0224609,0.00109863,-0.0184021,-0.0360107,-0.0491028,-0.0597229,-0.0643921,-0.063446,-0.0548706,-0.0420837,-0.0233765,-0.00280762,0.0193481,0.0394592,0.0559692,0.0682983,0.0739136,0.0712585,0.0611267,0.0438232,0.0233765,-0.000305176,-0.0226135,-0.041626,-0.0536499,-0.0595703,-0.0581665,-0.0513,-0.037262,-0.0190125,-0.00250244,0.0121765,0.0218201,0.0244751,0.0188599,0.00592041,-0.0129395,-0.0349121,-0.059082,-0.0793762,-0.0952759,-0.103546,-0.10321,-0.0924683,-0.0745239,-0.0513,-0.0229187,0.00531006,0.033844,0.0555115,0.0706177,0.0785828,0.0782776,0.0708008,0.0572205,0.0411682,0.0238647,0.00531006,-0.0090332,-0.0202637,-0.0272827,-0.0305481,-0.0282288,-0.0221558,-0.0154419,-0.00717163,-0.000793457,0.00561523,0.00811768,0.0090332,0.00778198,0.00497437,0,-0.00656128,-0.0123291,-0.0165405,-0.0193481,-0.0202637,-0.019165,-0.0158997,-0.0126343,-0.0093689,-0.00732422,-0.00622559,-0.00576782,-0.00762939,-0.0116882,-0.0180969,-0.0260315,-0.0347595,-0.0445862,-0.0545654,-0.0637817,-0.073761,-0.0837402,-0.094635,-0.105865,-0.117889,-0.132233,-0.147491,-0.163574,-0.173065,-0.176971,-0.169495,-0.15155,-0.12085,-0.0779724,-0.0243225,0.0358582,0.101959,0.165894,0.222656,0.264435,0.283936,0.280029,0.250885,0.201752,0.134247,0.0544128,-0.0279236,-0.10495,-0.169647,-0.213623,-0.232025,-0.220154,-0.181488,-0.123016,-0.0548706,0.0184021,0.0882568,0.14798,0.18866,0.203949,0.194275,0.16449,0.122101,0.0731201,0.0227661,-0.0212097,-0.0519104,-0.0611267,-0.048645,-0.0163574,0.0319519,0.0890198,0.151703,0.208771,0.253052,0.274902,0.275665,0.2565,0.217651,0.160431,0.086853,0.00747681,-0.0643921,-0.124878,-0.169952,-0.2005,-0.215485,-0.213623,-0.19458,-0.163086,-0.124725,-0.088562,-0.0542603,-0.0255737,-0.00280762,0.0093689,0.0143433,0.0155945,0.0129395,0.006073,-0.00405884,-0.0112305,-0.014801,-0.0177612,-0.0196533,-0.0213623,-0.0212097,-0.0227661,-0.0269775,-0.0314941,-0.0363159,-0.039917,-0.0438232,-0.0497437,-0.0556641,-0.057373,-0.0559692,-0.0528564,-0.0511475,-0.0502014,-0.0502014,-0.0481873,-0.0487976,-0.0484924,-0.050354,-0.0508423,-0.0505066,-0.0456848,-0.0363159,-0.0233765,-0.00701904,0.0126343,0.0371094,0.0611267,0.0843506,0.104309,0.121002,0.134399,0.140656,0.139404,0.131592,0.120514,0.104767,0.088562,0.0700073,0.0517578,0.0336914,0.0187073,0.00561523,-0.00341797,-0.0118408,-0.0176086,-0.0229187,-0.0255737,-0.0258789,-0.025116,-0.0230713,-0.0174561,-0.0102844,0.000305176,0.0129395,0.0258789,0.0410156,0.0525513,0.0620422,0.0682983,0.0701599,0.0665894,0.0584717,0.0456848,0.0308838,0.0138855,-0.00234985,-0.0185547,-0.0297852,-0.0371094,-0.0391235,-0.0379028,-0.0350952,-0.0283813,-0.0227661,-0.0188599,-0.0171509,-0.0190125,-0.0255737,-0.0352478,-0.0445862,-0.0550537,-0.0637817,-0.0704651,-0.0739136,-0.0720215,-0.0648499,-0.0528564,-0.0391235,-0.0237122,-0.00762939,0.00842285,0.0224609,0.0325928,0.0385132,0.0400696,0.0391235,0.0339966,0.0263367,0.0177612,0.00997925,0.00250244,-0.00546265,-0.0113831,-0.0163574,-0.0198059,-0.0223083,-0.0232239,-0.0238647,-0.0252686,-0.0265198,-0.0274353,-0.0265198,-0.0269775,-0.0260315,-0.0246277,-0.0240173,-0.0218201,-0.0199585,-0.0160522,-0.0129395,-0.00982666,-0.00762939,-0.00701904,-0.00796509,-0.00997925,-0.0135803,-0.0177612,-0.0246277,-0.0343018,-0.0462952,-0.0583191,-0.0703125,-0.0809326,-0.09198,-0.103546,-0.117401,-0.131744,-0.148132,-0.160278,-0.167297,-0.162476,-0.152008,-0.131287,-0.0997925,-0.0553589,-0.000610352,0.0604858,0.126465,0.188354,0.240112,0.273499,0.286102,0.276611,0.246368,0.194122,0.123169,0.0420837,-0.0388184,-0.110077,-0.166992,-0.201904,-0.209717,-0.188965,-0.143921,-0.0827942,-0.0124817,0.0598755,0.125061,0.174469,0.19928,0.198486,0.174957,0.134857,0.0845032,0.0289917,-0.0240173,-0.0659485,-0.0888672,-0.085144,-0.0597229,-0.0140381,0.0428772,0.108368,0.173218,0.229218,0.265686,0.281586,0.272552,0.241058,0.18634,0.115387,0.0358582,-0.043335,-0.111023,-0.164337,-0.201599,-0.221405,-0.222809,-0.205505,-0.17276,-0.132385,-0.0933838,-0.0595703,-0.0332031,-0.0112305,-0.00201416,-0.00219727,-0.00857544,-0.0163574,-0.0269775,-0.0386658,-0.0434875,-0.0410156,-0.0322876,-0.0223083,-0.00967407,0.00576782,0.0188599,0.0274353,0.0300903,0.0265198,0.0184021,0.00747681,-0.00811768,-0.0261841,-0.0434875,-0.0544128,-0.0617371,-0.0661011,-0.0689087,-0.0670471,-0.0615845,-0.053009,-0.0458374,-0.0385132,-0.0313416,-0.0252686,-0.0187073,-0.0101318,-0.00125122,0.00796509,0.0171509,0.02948,0.0427246,0.0559692,0.0686035,0.079834,0.0910645,0.100403,0.105408,0.106506,0.104004,0.0999451,0.0943298,0.0852966,0.0742188,0.0611267,0.0472412,0.0321045,0.0176086,0.00296021,-0.0116882,-0.0258789,-0.0377197,-0.0467834,-0.0527039,-0.0548706,-0.0509949,-0.0419312,-0.0291443,-0.0132446,0.00592041,0.0255737,0.044281,0.0592651,0.0708008,0.0774841,0.0778198,0.0723572,0.0604858,0.0450745,0.0286865,0.0129395,-0.000610352,-0.0119934,-0.0182495,-0.0213623,-0.0190125,-0.0154419,-0.00872803,-0.00375366,-0.00341797,-0.00811768,-0.0166931,-0.0283813,-0.041626,-0.0589294,-0.0751648,-0.0888672,-0.096344,-0.0966797,-0.0899658,-0.0757751,-0.0566101,-0.0346069,-0.00982666,0.0146484,0.0375671,0.0534668,0.0623779,0.0636292,0.0581665,0.0467834,0.0336914,0.0177612,0.00311279,-0.0101318,-0.0196533,-0.0240173,-0.0232239,-0.0199585,-0.0146484,-0.00842285,-0.00375366,-0.00311279,-0.00622559,-0.0116882,-0.0235291,-0.0380554,-0.0550537,-0.0726624,-0.0877686,-0.0986938,-0.104767,-0.102753,-0.0947876,-0.08078,-0.0617371,-0.0413208,-0.0195007,-0.00140381,0.0112305,0.0160522,0.0123291,0.000152588,-0.0185547,-0.0461426,-0.0788879,-0.114288,-0.150787,-0.183838,-0.203796,-0.207672,-0.195679,-0.167145,-0.124878,-0.0684509,-0.000946045,0.0739136,0.149689,0.216431,0.268494,0.296417,0.299988,0.277374,0.232788,0.167297,0.0862122,-0.00280762,-0.0887146,-0.161072,-0.211884,-0.236053,-0.229523,-0.194122,-0.133789,-0.0558167,0.0313416,0.117096,0.193512,0.249329,0.277222,0.274719,0.246185,0.195831,0.131897,0.0628357,-0.00497437,-0.0615845,-0.0971375,-0.107117,-0.0915222,-0.0513,0.00466919,0.0726624,0.141266,0.200348,0.243866,0.266632,0.266327,0.239655,0.189301,0.120209,0.040863,-0.0377197,-0.108368,-0.164978,-0.206909,-0.228729,-0.231537,-0.215332,-0.181946,-0.140656,-0.09729,-0.0584717,-0.0254211,0.000152588,0.0127869,0.0157471,0.00982666,-0.0015564,-0.0157471,-0.0328979,-0.0455322,-0.0528564,-0.0556641,-0.0539551,-0.0483398,-0.039917,-0.0321045,-0.0255737,-0.0212097,-0.0205688,-0.0226135,-0.0279236,-0.0347595,-0.0424194,-0.0466309,-0.0484924,-0.0456848,-0.0414734,-0.0354004,-0.0277405,-0.0165405,-0.00622559,0.00201416,0.00701904,0.00982666,0.0116882,0.0132446,0.0151367,0.0166931,0.0195007,0.0237122,0.0316467,0.0411682,0.053009,0.065033,0.0773315,0.0884094,0.0974426,0.10321,0.105103,0.103851,0.0994873,0.0932312,0.083252,0.0709534,0.0562744,0.0414734,0.0260315,0.0109253,-0.00466919,-0.0193481,-0.0319519,-0.041626,-0.047699,-0.050354,-0.0483398,-0.0405273,-0.0269775,-0.00997925,0.00982666,0.0305481,0.0513,0.0689087,0.082489,0.0890198,0.0879517,0.0788879,0.0626831,0.040863,0.0154419,-0.0110779,-0.0357056,-0.0559692,-0.069397,-0.0760803,-0.07547,-0.0678406,-0.0539551,-0.0371094,-0.0204163,-0.00827026,-0.00109863,0.000457764,-0.00466919,-0.0151367,-0.031189,-0.0492859,-0.0682983,-0.0840454,-0.0923157,-0.0918274,-0.0848083,-0.0687561,-0.0472412,-0.0204163,0.00857544,0.0377197,0.0626831,0.0802917,0.0893555,0.0893555,0.0810852,0.0659485,0.0464783,0.0240173,0.000457764,-0.0213623,-0.0386658,-0.0528564,-0.0595703,-0.0608215,-0.0580139,-0.0511475,-0.04599,-0.0396118,-0.0332031,-0.0279236,-0.0260315,-0.0283813,-0.0327454,-0.0383606,-0.0448914,-0.0492859,-0.0531616,-0.0552063,-0.0576782,-0.0592651,-0.0592651,-0.0587769,-0.0609741,-0.0637817,-0.0701599,-0.0805969,-0.0971375,-0.119598,-0.139252,-0.152802,-0.158112,-0.153259,-0.136597,-0.106171,-0.0608215,-0.00405884,0.0631409,0.131439,0.194916,0.245575,0.27536,0.281281,0.261932,0.217987,0.149384,0.0640869,-0.0265198,-0.115234,-0.190369,-0.244476,-0.269897,-0.263672,-0.225159,-0.158875,-0.0742188,0.0195007,0.111328,0.191772,0.251495,0.28067,0.278931,0.247925,0.197235,0.133453,0.0631409,-0.00497437,-0.0583191,-0.0874634,-0.090271,-0.0654907,-0.0199585,0.0424194,0.112885,0.183838,0.242767,0.282379,0.298584,0.287842,0.249939,0.187744,0.108673,0.0205688,-0.0645447,-0.137665,-0.196472,-0.235443,-0.251495,-0.24527,-0.218292,-0.174469,-0.125214,-0.0723572,-0.0246277,0.0179443,0.0467834,0.0623779,0.065033,0.0589294,0.0419312,0.0199585,-0.00515747,-0.0272827,-0.0464783,-0.0615845,-0.0700073,-0.0732727,-0.0706177,-0.0662537,-0.0587769,-0.0522461,-0.0455322,-0.0410156,-0.0388184,-0.039917,-0.0428772,-0.0472412,-0.0497437,-0.0545654,-0.0584717,-0.0640869,-0.0675049,-0.069397,-0.0670471,-0.0629883,-0.0556641,-0.0452271,-0.0291443,-0.00918579,0.0124817,0.0349121,0.0575256,0.0801392,0.0993347,0.115082,0.124878,0.128479,0.128021,0.121918,0.112579,0.0988464,0.0835876,0.0700073,0.0578613,0.048645,0.0407104,0.0344543,0.0288391,0.0241699,0.019165,0.0121765,0.00311279,-0.00827026,-0.0205688,-0.0325928,-0.043335,-0.0491028,-0.0491028,-0.0413208,-0.0271301,-0.00531006,0.020752,0.0505066,0.0793762,0.106171,0.127228,0.139709,0.141113,0.131744,0.110535,0.083252,0.048645,0.0141907,-0.0199585,-0.0481873,-0.0697021,-0.0818481,-0.084198,-0.0799866,-0.0686035,-0.0545654,-0.041626,-0.0297852,-0.0254211,-0.0260315,-0.0339966,-0.046936,-0.0631409,-0.0801392,-0.0961914,-0.10791,-0.112885,-0.109924,-0.0996399,-0.0799866,-0.0555115,-0.0257263,0.00311279,0.0321045,0.0553589,0.0725098,0.08078,0.0802917,0.0731201,0.0586243,0.0400696,0.0176086,-0.00497437,-0.0266724,-0.0455322,-0.0615845,-0.0739136,-0.0810852,-0.085907,-0.0871582,-0.0863953,-0.0857544,-0.0835876,-0.0810852,-0.077179,-0.0748291,-0.0715637,-0.0690613,-0.0659485,-0.0622253,-0.0587769,-0.0567627,-0.0559692,-0.0569153,-0.0597229,-0.0682983,-0.0835876,-0.101654,-0.117249,-0.12738,-0.127075,-0.115692,-0.0895081,-0.0498962,0.00201416,0.0678406,0.140656,0.214386,0.277374,0.322296,0.341003,0.332123,0.291107,0.223755,0.132843,0.0280762,-0.083252,-0.185547,-0.269897,-0.322906,-0.34021,-0.318695,-0.261322,-0.177277,-0.0739136,0.0360107,0.14267,0.231079,0.291412,0.316223,0.304993,0.263519,0.200684,0.125519,0.0481873,-0.0205688,-0.0701599,-0.0958862,-0.0921631,-0.0601807,-0.00497437,0.0636292,0.135651,0.198486,0.246521,0.271301,0.271454,0.241364,0.18634,0.108521,0.0190125,-0.0709534,-0.150635,-0.213135,-0.254944,-0.273956,-0.269592,-0.244171,-0.200989,-0.146576,-0.0891724,-0.0343018,0.00982666,0.0420837,0.0601807,0.0687561,0.069397,0.0611267,0.0447388,0.0275879,0.0123291,-0.000305176,-0.00952148,-0.0141907,-0.0154419,-0.0160522,-0.0193481,-0.0240173,-0.0305481,-0.0374146,-0.0473938,-0.0583191,-0.071106,-0.0827942,-0.0893555,-0.0904236,-0.0862122,-0.0788879,-0.071106,-0.0612793,-0.0509949,-0.0386658,-0.0258789,-0.0138855,-0.00219727,0.00952148,0.0221558,0.0366516,0.0525513,0.0706177,0.0901184,0.106506,0.119446,0.12973,0.135956,0.13736,0.132233,0.121918,0.105408,0.0860596,0.0643921,0.0444336,0.0257263,0.0105896,-0.000793457,-0.00888062,-0.0140381,-0.0168457,-0.0185547,-0.0195007,-0.0213623,-0.0247803,-0.0296326,-0.0343018,-0.0377197,-0.0377197,-0.0328979,-0.0227661,-0.00717163,0.0135803,0.0400696,0.0671997,0.0943298,0.118042,0.134399,0.141571,0.138306,0.124573,0.101959,0.0722046,0.0368042,0.00234985,-0.0302429,-0.0552063,-0.0739136,-0.0840454,-0.0877686,-0.084198,-0.076416,-0.0653381,-0.0558167,-0.0491028,-0.0492859,-0.0544128,-0.063446,-0.0762329,-0.0865479,-0.0958862,-0.101044,-0.101196,-0.0933838,-0.0770264,-0.0542603,-0.0260315,0.00280762,0.0303955,0.0534668,0.0692139,0.0779724,0.0774841,0.0675049,0.0528564,0.0308838,0.00592041,-0.019165,-0.040863,-0.057373,-0.0704651,-0.0788879,-0.0838928,-0.0846558,-0.0838928,-0.0810852,-0.0813904,-0.0838928,-0.0896606,-0.0968323,-0.10495,-0.113678,-0.121613,-0.127075,-0.129272,-0.128937,-0.125061,-0.118652,-0.113342,-0.108978,-0.104004,-0.0997925,-0.0937195,-0.0827942,-0.0622253,-0.0327454,0.00466919,0.0506592,0.106323,0.168243,0.229828,0.282532,0.321991,0.338501,0.330383,0.293121,0.229523,0.146576,0.0481873,-0.0550537,-0.155151,-0.237305,-0.292511,-0.312317,-0.295929,-0.247284,-0.171204,-0.0773315,0.0254211,0.12442,0.205505,0.259155,0.28067,0.270355,0.231842,0.17276,0.102295,0.0350952,-0.0210571,-0.0581665,-0.071106,-0.0556641,-0.0146484,0.0473938,0.118042,0.187561,0.244171,0.281433,0.292969,0.273651,0.227814,0.155151,0.0659485,-0.0310364,-0.124878,-0.204254,-0.263031,-0.298126,-0.305298,-0.289703,-0.253998,-0.204712,-0.147034,-0.0881042,-0.035553,0.00326538,0.0272827,0.0389709,0.0411682,0.035553,0.0218201,0.00717163,-0.00546265,-0.0132446,-0.0171509,-0.0162048,-0.00888062,0.00109863,0.010437,0.0154419,0.0163574,0.0109253,0.00125122,-0.0135803,-0.0324402,-0.0513,-0.0703125,-0.0835876,-0.0926208,-0.0955811,-0.0932312,-0.0857544,-0.0753174,-0.0640869,-0.0491028,-0.0347595,-0.0188599,-0.00360107,0.0119934,0.0279236,0.0436707,0.0626831,0.0816956,0.101196,0.116791,0.131287,0.141571,0.148895,0.149994,0.145477,0.136444,0.123169,0.10791,0.091217,0.0751648,0.0609741,0.0489502,0.0380554,0.0296326,0.020752,0.0113831,0.00125122,-0.0112305,-0.0257263,-0.0411682,-0.0580139,-0.0714111,-0.0790405,-0.0795288,-0.071106,-0.0531616,-0.0246277,0.0102844,0.0497437,0.0899658,0.125519,0.154999,0.171204,0.173065,0.161682,0.137848,0.104614,0.0632935,0.0198059,-0.0215149,-0.0569153,-0.0834045,-0.0986938,-0.104004,-0.0997925,-0.088562,-0.0745239,-0.0606384,-0.0487976,-0.0439758,-0.0467834,-0.0567627,-0.0700073,-0.0879517,-0.104767,-0.117401,-0.123016,-0.120514,-0.107422,-0.0865479,-0.0581665,-0.0254211,0.00778198,0.0368042,0.0609741,0.0742188,0.0770264,0.0695496,0.0523987,0.0282288,-0.000457764,-0.0310364,-0.0589294,-0.081543,-0.098999,-0.10791,-0.110535,-0.106659,-0.0994873,-0.091217,-0.0830994,-0.0791931,-0.0782776,-0.0835876,-0.0941772,-0.108368,-0.125977,-0.141571,-0.157166,-0.168701,-0.178223,-0.182892,-0.180542,-0.17215,-0.150299,-0.11615,-0.0690613,-0.013092,0.0516052,0.120697,0.193512,0.263031,0.324799,0.36969,0.3909,0.383575,0.347717,0.285339,0.200989,0.101501,-0.00466919,-0.109314,-0.202698,-0.271149,-0.307953,-0.308258,-0.273499,-0.208466,-0.122101,-0.0240173,0.0753174,0.164978,0.234344,0.273163,0.278778,0.252136,0.200684,0.134094,0.0639343,0.00250244,-0.0438232,-0.0692139,-0.0670471,-0.0375671,0.0190125,0.0933838,0.170898,0.241821,0.294067,0.322906,0.322449,0.289551,0.226227,0.137207,0.0319519,-0.0796814,-0.186005,-0.271606,-0.332733,-0.362518,-0.363129,-0.338959,-0.29126,-0.228119,-0.15451,-0.0812378,-0.0162048,0.0316467,0.0611267,0.0731201,0.0726624,0.0603333,0.0393066,0.013092,-0.0121765,-0.0343018,-0.0505066,-0.0570679,-0.0541077,-0.0452271,-0.0341492,-0.0237122,-0.0144958,-0.0090332,-0.00482178,-0.00686646,-0.0143433,-0.0263367,-0.040863,-0.0534668,-0.0646973,-0.0726624,-0.0762329,-0.0778198,-0.076416,-0.0734253,-0.0664368,-0.0525513,-0.0363159,-0.0157471,0.00561523,0.0305481,0.0570679,0.0867004,0.116486,0.14502,0.16745,0.182434,0.190216,0.190521,0.182129,0.167297,0.145477,0.118347,0.0887146,0.0603333,0.0343018,0.0152893,0.00234985,-0.00497437,-0.00762939,-0.00811768,-0.00436401,0.000946045,0.00375366,0.00466919,0.000152588,-0.00637817,-0.0133972,-0.0199585,-0.0230713,-0.0196533,-0.0112305,0.00515747,0.0246277,0.0478821,0.0720215,0.094635,0.11319,0.123657,0.124725,0.11615,0.100555,0.0795288,0.0548706,0.0263367,-0.00186157,-0.0283813,-0.0480347,-0.0611267,-0.0671997,-0.0695496,-0.0697021,-0.0708008,-0.0704651,-0.0728149,-0.0759277,-0.0826416,-0.0898132,-0.0994873,-0.107422,-0.111328,-0.107574,-0.09729,-0.0801392,-0.0576782,-0.0336914,-0.00747681,0.0169983,0.0380554,0.0531616,0.0595703,0.0548706,0.039917,0.0187073,-0.00811768,-0.0371094,-0.0662537,-0.0952759,-0.119598,-0.138611,-0.147186,-0.147644,-0.141113,-0.131134,-0.11911,-0.106506,-0.0968323,-0.0891724,-0.086853,-0.0895081,-0.0997925,-0.11615,-0.135651,-0.156555,-0.173859,-0.187408,-0.196472,-0.197235,-0.185547,-0.153748,-0.104767,-0.0363159,0.0419312,0.12677,0.211884,0.294678,0.365784,0.418335,0.440155,0.428772,0.379364,0.299988,0.196777,0.0804443,-0.0385132,-0.152954,-0.249176,-0.317596,-0.349731,-0.338043,-0.286285,-0.19989,-0.0924683,0.0223083,0.13269,0.227631,0.300293,0.338348,0.339142,0.301239,0.233246,0.149841,0.0661011,-0.00592041,-0.0586243,-0.086853,-0.0871582,-0.0572205,0.00311279,0.0809326,0.165894,0.245117,0.302795,0.335236,0.332123,0.298431,0.233887,0.14502,0.0375671,-0.077179,-0.189911,-0.284882,-0.352081,-0.38559,-0.3909,-0.372192,-0.331177,-0.272705,-0.200348,-0.125214,-0.0528564,0.00390625,0.0448914,0.0698547,0.0816956,0.0826416,0.0757751,0.0606384,0.0402222,0.0152893,-0.00686646,-0.0235291,-0.0322876,-0.0389709,-0.0448914,-0.0513,-0.0587769,-0.0667419,-0.0728149,-0.0782776,-0.0820007,-0.087616,-0.0918274,-0.0943298,-0.0927734,-0.0854492,-0.0750122,-0.0615845,-0.0502014,-0.0396118,-0.0274353,-0.0127869,0.00531006,0.0240173,0.0431824,0.0609741,0.0802917,0.101654,0.125977,0.149231,0.168396,0.182434,0.188965,0.189606,0.185089,0.175262,0.161224,0.139709,0.113831,0.0874634,0.0604858,0.0380554,0.0193481,0.000305176,-0.0137329,-0.0291443,-0.0389709,-0.04599,-0.050354,-0.0514526,-0.0508423,-0.0480347,-0.0403748,-0.0277405,-0.00778198,0.0168457,0.0452271,0.0732727,0.0994873,0.123169,0.141113,0.150452,0.151703,0.141724,0.121918,0.0937195,0.0606384,0.0280762,-0.00341797,-0.0307312,-0.0542603,-0.071106,-0.0809326,-0.0835876,-0.0805969,-0.0753174,-0.0706177,-0.0686035,-0.0692139,-0.0734253,-0.0793762,-0.0882568,-0.0961914,-0.102753,-0.106171,-0.10321,-0.0927734,-0.0753174,-0.0508423,-0.0241699,0.00436401,0.0310364,0.0533142,0.069397,0.0768738,0.0742188,0.0625305,0.0411682,0.013092,-0.0177612,-0.0513,-0.082489,-0.112274,-0.135345,-0.154053,-0.165283,-0.171204,-0.171051,-0.166687,-0.161224,-0.154053,-0.148285,-0.143127,-0.140961,-0.142212,-0.145325,-0.151855,-0.157806,-0.16449,-0.169006,-0.170105,-0.160767,-0.136261,-0.0954285,-0.0396118,0.0293274,0.106964,0.190216,0.271912,0.346619,0.406342,0.439545,0.43924,0.401642,0.331635,0.236694,0.121918,-0.00109863,-0.123505,-0.231384,-0.314972,-0.361572,-0.366577,-0.331024,-0.258667,-0.158264,-0.0458374,0.0675049,0.169647,0.253052,0.307007,0.327423,0.310608,0.262115,0.195374,0.125214,0.0642395,0.0187073,-0.00857544,-0.0127869,0.0102844,0.0594177,0.12442,0.193176,0.255707,0.29953,0.318085,0.304352,0.260223,0.190216,0.0994873,-0.00390625,-0.112427,-0.215179,-0.298126,-0.353485,-0.375763,-0.369537,-0.341949,-0.297028,-0.239502,-0.173065,-0.10556,-0.0458374,-0.000152588,0.0282288,0.0407104,0.0438232,0.0400696,0.0327454,0.0237122,0.0124817,-0.000793457,-0.0102844,-0.0146484,-0.0121765,-0.00982666,-0.0105896,-0.0165405,-0.0274353,-0.0428772,-0.0600281,-0.0790405,-0.09729,-0.113983,-0.130493,-0.142059,-0.146088,-0.141418,-0.127075,-0.10791,-0.0870056,-0.0653381,-0.0410156,-0.013092,0.0184021,0.0500488,0.0784302,0.104004,0.126282,0.147644,0.166534,0.182892,0.192261,0.194733,0.190521,0.178528,0.164337,0.149048,0.133453,0.116302,0.0982361,0.0799866,0.0653381,0.0550537,0.0466309,0.0379028,0.0258789,0.0118408,-0.00656128,-0.0257263,-0.0455322,-0.0632935,-0.0773315,-0.0873108,-0.0890198,-0.0793762,-0.0578613,-0.0233765,0.0204163,0.0703125,0.119446,0.162781,0.197235,0.218445,0.223907,0.212219,0.182281,0.138,0.083252,0.0254211,-0.0308838,-0.078125,-0.116638,-0.14267,-0.155304,-0.155914,-0.144379,-0.125977,-0.104004,-0.0835876,-0.0678406,-0.0594177,-0.0572205,-0.0608215,-0.0681458,-0.0774841,-0.0852966,-0.0901184,-0.088562,-0.0787354,-0.0600281,-0.0347595,-0.00546265,0.0241699,0.0509949,0.0717163,0.0843506,0.0874634,0.0802917,0.0637817,0.0375671,0.00482178,-0.0307312,-0.0661011,-0.0994873,-0.12738,-0.151093,-0.169495,-0.182281,-0.189301,-0.190369,-0.188202,-0.182739,-0.177582,-0.17215,-0.165436,-0.160583,-0.154999,-0.149231,-0.142822,-0.137665,-0.13269,-0.126282,-0.114441,-0.0895081,-0.0508423,-0.000457764,0.0584717,0.121918,0.19101,0.260864,0.326172,0.381226,0.413361,0.414429,0.382324,0.320099,0.234344,0.130981,0.0173035,-0.0991516,-0.206116,-0.292053,-0.346924,-0.360962,-0.335693,-0.272247,-0.18335,-0.0795288,0.0274353,0.127686,0.213287,0.276306,0.30484,0.298126,0.258362,0.199585,0.138611,0.085144,0.0466309,0.0230713,0.0184021,0.0389709,0.0845032,0.146729,0.214233,0.272095,0.308716,0.31839,0.29657,0.244781,0.167938,0.0709534,-0.0386658,-0.153107,-0.260071,-0.343658,-0.395111,-0.40976,-0.392761,-0.351929,-0.294067,-0.222961,-0.144836,-0.0656433,0.00326538,0.0522461,0.0790405,0.084198,0.0751648,0.0586243,0.0396118,0.0179443,-0.0045166,-0.0263367,-0.0422668,-0.0461426,-0.038208,-0.0254211,-0.0129395,-0.00717163,-0.00796509,-0.0157471,-0.0291443,-0.0470886,-0.0687561,-0.0960388,-0.126282,-0.154999,-0.176666,-0.186646,-0.182129,-0.168549,-0.147644,-0.121002,-0.0873108,-0.0430298,0.00717163,0.0595703,0.108978,0.151093,0.186646,0.215637,0.238251,0.252899,0.256805,0.247589,0.226868,0.19754,0.164795,0.132843,0.103851,0.07547,0.047699,0.0237122,0.00576782,-0.00360107,-0.00701904,-0.00717163,-0.00796509,-0.0110779,-0.0177612,-0.0241699,-0.0300903,-0.035553,-0.0405273,-0.0438232,-0.0450745,-0.038208,-0.0230713,0.00405884,0.0385132,0.076416,0.112274,0.142975,0.167938,0.183838,0.189301,0.183685,0.163574,0.130981,0.0901184,0.0466309,0.00592041,-0.0308838,-0.0636292,-0.0913696,-0.114136,-0.128479,-0.135956,-0.136902,-0.135498,-0.134705,-0.135651,-0.138611,-0.140961,-0.140167,-0.135498,-0.127075,-0.114441,-0.0969849,-0.0736084,-0.0422668,-0.00686646,0.031189,0.0657959,0.0933838,0.111481,0.1185,0.11615,0.103851,0.0810852,0.0502014,0.0105896,-0.0300903,-0.0698547,-0.104462,-0.131439,-0.153259,-0.168396,-0.177429,-0.180237,-0.176819,-0.169647,-0.160583,-0.154358,-0.15155,-0.150452,-0.151245,-0.151093,-0.150146,-0.148285,-0.147034,-0.145935,-0.141876,-0.135651,-0.12146,-0.098999,-0.0645447,-0.0198059,0.035553,0.0994873,0.170105,0.244324,0.315582,0.374664,0.416321,0.430328,0.414124,0.364868,0.286591,0.18399,0.0645447,-0.0597229,-0.180878,-0.282227,-0.355347,-0.390411,-0.382477,-0.333191,-0.24823,-0.138,-0.0160522,0.104614,0.210327,0.291412,0.337097,0.343964,0.313873,0.254761,0.179779,0.103699,0.0397644,-0.00436401,-0.0238647,-0.0154419,0.0235291,0.0863953,0.16153,0.235138,0.296265,0.332275,0.335693,0.303436,0.237,0.142059,0.0280762,-0.0951233,-0.215027,-0.318085,-0.393066,-0.431915,-0.432068,-0.399475,-0.341003,-0.263977,-0.176178,-0.0879517,-0.00561523,0.059082,0.103851,0.123962,0.124115,0.107117,0.0818481,0.050354,0.0204163,-0.00918579,-0.0346069,-0.0519104,-0.0592651,-0.0569153,-0.0517578,-0.04599,-0.044281,-0.04599,-0.0527039,-0.0651855,-0.0816956,-0.0991516,-0.119446,-0.137054,-0.154053,-0.160919,-0.160278,-0.148285,-0.128937,-0.104004,-0.0736084,-0.038208,0.00201416,0.0453796,0.090271,0.130981,0.166382,0.195221,0.217651,0.232788,0.238861,0.235138,0.221405,0.199432,0.170258,0.139252,0.108368,0.0805969,0.0555115,0.0324402,0.0138855,0.00201416,-0.00515747,-0.00827026,-0.0112305,-0.0152893,-0.0196533,-0.0269775,-0.0352478,-0.043335,-0.0500488,-0.0522461,-0.0484924,-0.0380554,-0.0184021,0.010437,0.046936,0.0867004,0.125977,0.160431,0.185547,0.200043,0.200195,0.186493,0.15921,0.120209,0.0728149,0.0229187,-0.0261841,-0.0687561,-0.1026,-0.127533,-0.141724,-0.146088,-0.141724,-0.130493,-0.118195,-0.105713,-0.0958862,-0.0905762,-0.090271,-0.0927734,-0.0961914,-0.10025,-0.100555,-0.0971375,-0.0862122,-0.0698547,-0.04599,-0.0193481,0.0110779,0.0400696,0.0656433,0.0854492,0.0968323,0.098999,0.0909119,0.0739136,0.0475464,0.0158997,-0.0205688,-0.0583191,-0.0951233,-0.127075,-0.152649,-0.171967,-0.18335,-0.189117,-0.186951,-0.181641,-0.169647,-0.156219,-0.14032,-0.125977,-0.113983,-0.100739,-0.0879517,-0.0742188,-0.0623779,-0.0552063,-0.0536499,-0.0562744,-0.0615845,-0.0675049,-0.0753174,-0.0791931,-0.0732727,-0.0514526,-0.0129395,0.0413208,0.107269,0.181183,0.255859,0.322754,0.375153,0.402893,0.399475,0.357056,0.280029,0.171661,0.0461426,-0.0849915,-0.207672,-0.309357,-0.379822,-0.41037,-0.39386,-0.327423,-0.218903,-0.0823364,0.0623779,0.196472,0.305145,0.381836,0.418488,0.411316,0.361115,0.276917,0.173553,0.0708008,-0.0146484,-0.0714111,-0.0961914,-0.0882568,-0.0513,0.010437,0.0873108,0.166992,0.236847,0.28299,0.294678,0.266785,0.204895,0.117249,0.0168457,-0.086853,-0.188049,-0.275818,-0.340363,-0.372498,-0.365784,-0.326813,-0.268494,-0.198486,-0.126282,-0.0569153,0.00561523,0.0564575,0.0927734,0.108978,0.105865,0.0898132,0.0671997,0.0434875,0.0215149,0.00250244,-0.0171509,-0.0379028,-0.0552063,-0.0668945,-0.073761,-0.0799866,-0.086853,-0.0994873,-0.113678,-0.12738,-0.137054,-0.140015,-0.136108,-0.127686,-0.115997,-0.10321,-0.0838928,-0.0580139,-0.0263367,0.00265503,0.0297852,0.0519104,0.0722046,0.0921631,0.114899,0.137054,0.154053,0.163727,0.166687,0.16684,0.164642,0.159668,0.149994,0.132996,0.111633,0.0899658,0.0714111,0.0575256,0.0491028,0.0419312,0.0357056,0.02948,0.0229187,0.0184021,0.0113831,0.00296021,-0.00952148,-0.0244751,-0.0402222,-0.0523987,-0.0567627,-0.0514526,-0.0352478,-0.0119934,0.0193481,0.0564575,0.096344,0.136749,0.170105,0.192108,0.198639,0.187408,0.159668,0.120697,0.0723572,0.0198059,-0.0336914,-0.0821838,-0.12146,-0.149536,-0.161682,-0.160583,-0.146729,-0.127533,-0.103546,-0.0816956,-0.0618896,-0.0483398,-0.040863,-0.0403748,-0.0458374,-0.0564575,-0.0687561,-0.0795288,-0.0846558,-0.0829468,-0.0743713,-0.0583191,-0.0389709,-0.0140381,0.00952148,0.0352478,0.0553589,0.0698547,0.073761,0.0667419,0.0514526,0.0282288,0.00140381,-0.0289917,-0.0606384,-0.0921631,-0.119446,-0.141113,-0.154358,-0.159027,-0.156219,-0.148132,-0.136108,-0.121765,-0.103058,-0.0821838,-0.0595703,-0.0388184,-0.0219727,-0.00857544,0.00109863,0.00872803,0.0126343,0.0144958,0.0101318,0.00250244,-0.0129395,-0.0328979,-0.0567627,-0.0862122,-0.116302,-0.147034,-0.172913,-0.187897,-0.184601,-0.156067,-0.103851,-0.0321045,0.0519104,0.143127,0.231842,0.312927,0.375153,0.409302,0.403534,0.354889,0.268646,0.15686,0.0330505,-0.0904236,-0.203003,-0.291412,-0.346619,-0.358154,-0.321198,-0.238556,-0.120209,0.0155945,0.150787,0.267242,0.352539,0.400726,0.405548,0.366577,0.28595,0.175873,0.0527039,-0.0615845,-0.149689,-0.200195,-0.212219,-0.189911,-0.133301,-0.0484924,0.0553589,0.161682,0.256958,0.325867,0.35675,0.34552,0.29657,0.220001,0.123962,0.0169983,-0.0907593,-0.19162,-0.272247,-0.322601,-0.335999,-0.319336,-0.279572,-0.224518,-0.161682,-0.09729,-0.0341492,0.0243225,0.0697021,0.0949707,0.0994873,0.0898132,0.0684509,0.0417786,0.0127869,-0.0168457,-0.0492859,-0.0810852,-0.107574,-0.121918,-0.125824,-0.119293,-0.106506,-0.0918274,-0.077179,-0.0618896,-0.0413208,-0.0223083,-0.00482178,0.00671387,0.0126343,0.0110779,0.00717163,0.00296021,0.000946045,-0.00360107,-0.00762939,-0.00967407,-0.00778198,0.000152588,0.0171509,0.0402222,0.0626831,0.0820007,0.0971375,0.109619,0.118042,0.123322,0.122711,0.115387,0.101807,0.0874634,0.0753174,0.0681458,0.0643921,0.0628357,0.0620422,0.0600281,0.0583191,0.0561218,0.0513,0.0438232,0.0330505,0.0198059,0.00405884,-0.00827026,-0.0158997,-0.0165405,-0.00997925,0.00186157,0.0185547,0.0380554,0.0583191,0.0779724,0.0943298,0.102142,0.0991516,0.0856018,0.0618896,0.0333557,0.00375366,-0.0265198,-0.0527039,-0.0742188,-0.0879517,-0.0932312,-0.0890198,-0.077179,-0.0611267,-0.0447388,-0.0305481,-0.0224609,-0.0187073,-0.0216675,-0.0285339,-0.0400696,-0.0550537,-0.0703125,-0.0830994,-0.0915222,-0.0915222,-0.0860596,-0.0731201,-0.057373,-0.0393066,-0.0224609,-0.00576782,0.00622559,0.0124817,0.0115356,0.00341797,-0.0109253,-0.0303955,-0.0502014,-0.0697021,-0.0865479,-0.098999,-0.107269,-0.108368,-0.101196,-0.086853,-0.0668945,-0.0456848,-0.025116,-0.00671387,0.00888062,0.0205688,0.0288391,0.0319519,0.0289917,0.0235291,0.0137329,0.00561523,-0.00311279,-0.0112305,-0.0182495,-0.025116,-0.0297852,-0.0336914,-0.0375671,-0.0424194,-0.0475464,-0.0545654,-0.0632935,-0.0748291,-0.0863953,-0.0975952,-0.108521,-0.12146,-0.138611,-0.158264,-0.178528,-0.187561,-0.181335,-0.1539,-0.109924,-0.0484924,0.0261841,0.109772,0.197388,0.28299,0.357697,0.409607,0.425201,0.401489,0.337555,0.243713,0.131439,0.0101318,-0.108673,-0.217987,-0.303253,-0.349884,-0.34787,-0.298126,-0.210175,-0.100098,0.0166931,0.124878,0.212219,0.270996,0.29422,0.27771,0.222656,0.138,0.041626,-0.0470886,-0.108978,-0.137848,-0.13208,-0.0938721,-0.0277405,0.0597229,0.15921,0.25882,0.343658,0.396362,0.404602,0.368286,0.295776,0.198944,0.0871582,-0.0299377,-0.14328,-0.243073,-0.316223,-0.350525,-0.34787,-0.312164,-0.2565,-0.19101,-0.122864,-0.0608215,-0.00546265,0.0389709,0.0690613,0.0784302,0.0703125,0.0506592,0.0246277,0.00421143,-0.00967407,-0.0184021,-0.0240173,-0.0279236,-0.0240173,-0.0123291,0.0045166,0.0209045,0.0327454,0.0366516,0.0299377,0.0168457,-0.00234985,-0.0237122,-0.0480347,-0.0720215,-0.0982361,-0.122864,-0.138916,-0.143127,-0.137848,-0.127533,-0.110077,-0.085144,-0.0552063,-0.0188599,0.0237122,0.0670471,0.103363,0.131744,0.149841,0.158875,0.15921,0.153595,0.143616,0.128784,0.111633,0.0969849,0.0871582,0.0843506,0.0870056,0.0921631,0.0952759,0.0930786,0.0865479,0.0736084,0.0533142,0.0266724,-0.00466919,-0.0385132,-0.0720215,-0.0983887,-0.115387,-0.117096,-0.106506,-0.0812378,-0.0484924,-0.00778198,0.036499,0.0812378,0.119751,0.147034,0.159027,0.156403,0.139709,0.113037,0.08078,0.0470886,0.0169983,-0.0090332,-0.0260315,-0.0369568,-0.0393066,-0.036499,-0.0322876,-0.0293274,-0.0299377,-0.0377197,-0.0497437,-0.0667419,-0.0857544,-0.10556,-0.125824,-0.142975,-0.155914,-0.160278,-0.154999,-0.139709,-0.117706,-0.0907593,-0.0612793,-0.0321045,-0.0045166,0.0174561,0.0333557,0.0403748,0.0396118,0.0330505,0.0237122,0.0135803,0.00546265,0.000793457,-0.00280762,-0.00561523,-0.00796509,-0.00701904,-0.00546265,-0.00515747,-0.00827026,-0.0162048,-0.0293274,-0.0434875,-0.0564575,-0.0679932,-0.0785828,-0.087616,-0.0910645,-0.0867004,-0.07547,-0.0562744,-0.0307312,-0.00360107,0.0227661,0.0447388,0.0631409,0.0743713,0.079834,0.0765686,0.0667419,0.0491028,0.0293274,0.00796509,-0.00778198,-0.0204163,-0.0266724,-0.0324402,-0.0335083,-0.0324402,-0.0255737,-0.0179443,-0.00997925,-0.00671387,-0.00701904,-0.0133972,-0.0227661,-0.0361633,-0.0533142,-0.0740662,-0.0957336,-0.115845,-0.129425,-0.136902,-0.140015,-0.138763,-0.130981,-0.118805,-0.101044,-0.0745239,-0.0377197,0.00762939,0.0525513,0.09198,0.126129,0.153748,0.173553,0.181946,0.176361,0.152649,0.115387,0.0687561,0.0195007,-0.0266724,-0.0678406,-0.101349,-0.12381,-0.135345,-0.132538,-0.11319,-0.0809326,-0.0391235,0.00186157,0.0360107,0.0587769,0.0736084,0.082489,0.0834045,0.0734253,0.0541077,0.0327454,0.0154419,0.00842285,0.0116882,0.0263367,0.0492859,0.0750122,0.101654,0.125977,0.149048,0.165741,0.171967,0.165894,0.14563,0.117401,0.084198,0.050354,0.0176086,-0.0119934,-0.0375671,-0.0598755,-0.073761,-0.077179,-0.0690613,-0.0561218,-0.0448914,-0.0341492,-0.0224609,-0.00857544,0.00390625,0.0158997,0.0252686,0.0325928,0.039917,0.0484924,0.0566101,0.0631409,0.0684509,0.0715637,0.0701599,0.0609741,0.0464783,0.0291443,0.0127869,-0.00622559,-0.0286865,-0.0528564,-0.0745239,-0.0887146,-0.0951233,-0.0958862,-0.0937195,-0.0870056,-0.0773315,-0.0642395,-0.0516052,-0.0400696,-0.0317993,-0.0275879,-0.0266724,-0.0277405,-0.0275879,-0.0258789,-0.0177612,-0.00656128,0.00918579,0.0254211,0.0431824,0.0615845,0.0799866,0.0958862,0.104462,0.104767,0.0955811,0.0813904,0.0618896,0.0400696,0.0163574,-0.00796509,-0.0296326,-0.0447388,-0.053009,-0.0538025,-0.0506592,-0.0413208,-0.0289917,-0.0151367,-0.00360107,0.00671387,0.0157471,0.0230713,0.0288391,0.0310364,0.0314941,0.031189,0.0336914,0.0383606,0.0430298,0.0461426,0.0505066,0.0545654,0.0586243,0.0600281,0.0604858,0.0572205,0.050354,0.0414734,0.0305481,0.0171509,0.00125122,-0.0152893,-0.0314941,-0.0464783,-0.0614319,-0.0743713,-0.0846558,-0.090271,-0.090271,-0.0856018,-0.0778198,-0.0670471,-0.0498962,-0.0303955,-0.0093689,0.0105896,0.0300903,0.0467834,0.0581665,0.0651855,0.0632935,0.0548706,0.0411682,0.0244751,0.00436401,-0.0193481,-0.0430298,-0.0623779,-0.076416,-0.0835876,-0.0849915,-0.0818481,-0.0715637,-0.0597229,-0.0453796,-0.0319519,-0.0196533,-0.013092,-0.0124817,-0.0171509,-0.0260315,-0.0374146,-0.0487976,-0.0575256,-0.0628357,-0.0637817,-0.0578613,-0.0438232,-0.0240173,0.00109863,0.0265198,0.050354,0.0673523,0.0756226,0.0762329,0.0689087,0.0519104,0.0288391,-0.00140381,-0.033844,-0.063446,-0.086853,-0.103699,-0.111938,-0.111786,-0.105103,-0.0930786,-0.0770264,-0.0589294,-0.0397644,-0.0255737,-0.0152893,-0.0121765,-0.0113831,-0.0129395,-0.0157471,-0.0177612,-0.0210571,-0.0202637,-0.0171509,-0.00997925,-0.00219727,0.00796509,0.0193481,0.0300903,0.0354004,0.0366516,0.0335083,0.0285339,0.0226135,0.0121765,-0.000305176,-0.0127869,-0.0229187,-0.0313416,-0.0389709,-0.0430298,-0.0445862,-0.0434875,-0.0441284,-0.0455322,-0.046936,-0.046936,-0.0430298,-0.038208,-0.0325928,-0.0272827,-0.0226135,-0.0173035,-0.0121765,-0.00762939,-0.00186157,0.00421143,0.0127869,0.0227661,0.0346069,0.046936,0.057373,0.0646973,0.0675049,0.0665894,0.0629883,0.0570679,0.050354,0.0400696,0.0283813,0.0138855,0.000946045,-0.00686646,-0.0109253,-0.0105896,-0.0090332,-0.006073,-0.00219727,0.00671387,0.0171509,0.0249329,0.0271301,0.0258789,0.0226135,0.0176086,0.0127869,0.00952148,0.0101318,0.0141907,0.0216675,0.0302429,0.0430298,0.0606384,0.0799866,0.0982361,0.106018,0.106506,0.103546,0.0988464,0.0905762,0.077179,0.057373,0.0361633,0.0144958,-0.00250244,-0.0154419,-0.025116,-0.0305481,-0.0314941,-0.0286865,-0.0212097,-0.0110779,0.00341797,0.0184021,0.0296326,0.0377197,0.043335,0.0444336,0.0448914,0.0441284,0.0414734,0.0358582,0.0238647,0.0121765,0.00360107,-0.000793457,-0.00219727,-0.00375366,-0.006073,-0.00918579,-0.00622559,-0.000152588,0.00436401,0.00405884,0.000152588,-0.00405884,-0.0102844,-0.0169983,-0.0240173,-0.0289917,-0.0343018,-0.0391235,-0.0420837,-0.0438232,-0.0430298,-0.0363159,-0.0274353,-0.0173035,-0.00982666,-0.00265503,0.00576782,0.0151367,0.0221558,0.0286865,0.0296326,0.0271301,0.0230713,0.0209045,0.019165,0.0155945,0.0109253,0.00531006,-0.00125122,-0.00701904,-0.0116882,-0.0132446,-0.0152893,-0.0180969,-0.020752,-0.0215149,-0.0238647,-0.0241699,-0.0240173,-0.0229187,-0.0232239,-0.0218201,-0.0190125,-0.0137329,-0.00701904,0.00375366,0.0144958,0.0238647,0.0297852,0.0363159,0.042572,0.0461426,0.0467834,0.042572,0.0358582,0.0279236,0.0199585,0.0135803,0.00671387,0.000793457,-0.00201416,-0.00390625,-0.00497437,-0.00375366,0.000946045,0.00592041,0.0107727,0.0133972,0.0151367,0.0144958,0.010437,0.00747681,0.00265503,-0.00201416,-0.006073,-0.00888062,-0.0101318,-0.0107727,-0.00637817,-0.00186157,0.00436401,0.00811768,0.010437,0.0116882,0.013092,0.0112305,0.00686646,-0.0015564,-0.0121765,-0.0229187,-0.0350952,-0.0466309,-0.0562744,-0.0620422,-0.0651855,-0.0659485,-0.0645447,-0.0618896,-0.0566101,-0.0492859,-0.042572,-0.0377197,-0.0330505,-0.0297852,-0.0279236,-0.0265198,-0.0260315,-0.0252686,-0.0261841,-0.0257263,-0.0261841,-0.0255737,-0.0254211,-0.0254211,-0.0258789,-0.0271301,-0.0297852,-0.0328979,-0.036499,-0.0396118,-0.0417786,-0.043335,-0.0441284,-0.0439758,-0.0420837,-0.0391235,-0.0347595,-0.0310364,-0.0271301,-0.0223083,-0.0180969,-0.0133972,-0.0115356,-0.00857544,-0.00576782,-0.00109863,0.00390625,0.00811768,0.0121765,0.0168457,0.020752,0.0216675,0.0224609,0.0205688,0.0182495,0.0144958,0.00796509,-0.000305176,-0.00656128,-0.0129395,-0.0166931,-0.0179443,-0.0173035,-0.0124817,-0.00466919,0.00732422,0.0185547,0.0325928,0.0430298,0.0528564,0.0597229,0.0642395,0.0657959,0.0645447,0.0615845,0.0567627,0.0489502,0.0385132,0.0286865,0.0188599,0.0107727,0.00311279,-0.0015564,-0.00515747,-0.00656128,-0.00888062,-0.010437,-0.0110779,-0.0112305,-0.0135803,-0.0143433,-0.0168457,-0.019165,-0.020752,-0.0221558,-0.0227661,-0.0240173,-0.0233765,-0.0204163,-0.0152893,-0.010437,-0.00421143,0.006073,0.0151367,0.0230713,0.0282288,0.0302429,0.0291443,0.026825,0.0199585,0.00732422,-0.00778198,-0.0224609,-0.0335083,-0.044281,-0.0566101,-0.0646973,-0.0653381,-0.0611267,-0.0542603,-0.04599,-0.037262,-0.026825,-0.0169983,-0.00842285,-0.00375366,-0.00170898,-0.00125122,-0.00482178,-0.0113831,-0.0199585,-0.0246277,-0.0238647,-0.0230713,-0.0223083,-0.0213623,-0.0177612,-0.0105896,-0.00250244,0.00546265,0.0126343,0.0204163,0.0271301,0.0333557,0.0360107,0.0371094,0.0366516,0.0341492,0.026825,0.0166931,0.00872803,0.00546265,0.00201416,-0.000793457,-0.00265503,-0.00186157,0.00280762,0.0113831,0.0226135,0.0363159,0.04599,0.0542603,0.0594177,0.0642395,0.0687561,0.0695496,0.0646973,0.0538025,0.0413208,0.0310364,0.0243225,0.0171509,0.0115356,0.00747681,0.00701904,0.00762939,0.0110779,0.0166931,0.0244751,0.0305481,0.0319519,0.0282288,0.025116,0.0263367,0.0302429,0.031189,0.025116,0.0152893,0.00701904,0.00250244,-0.000305176,-0.00482178,-0.00952148,-0.0124817,-0.0124817,-0.0105896,-0.00686646,-0.00170898,0.00515747,0.0090332,0.00982666,0.00827026,0.00717163,0.00827026,0.00872803,0.00842285,0.00311279,-0.00219727,-0.00671387,-0.00622559,-0.006073,-0.00390625,-0.00234985,-0.00125122,-0.000793457,0.00201416,0.00436401,0.00717163,0.00872803,0.0093689,0.010437,0.0102844,0.010437,0.0101318,0.0102844,0.010437,0.010437,0.0107727,0.00872803,0.00531006,0.0015564,-0.000305176,-0.00375366,-0.00872803,-0.0135803,-0.0140381,-0.0132446,-0.0105896,-0.0093689,-0.00732422,-0.00421143,0.000152588,0.00375366,0.00656128,0.00717163,0.00888062,0.0123291,0.0141907,0.0140381,0.0115356,0.00857544,0.00561523,0.00186157,-0.00265503,-0.00811768,-0.0126343,-0.0163574,-0.0201111,-0.0233765,-0.025116,-0.0249329,-0.0232239,-0.0196533,-0.0146484,-0.00842285,-0.000793457,0.00622559,0.0109253,0.0133972,0.0141907,0.0124817,0.00952148,0.00436401,-0.00140381,-0.0090332,-0.0180969,-0.0260315,-0.0328979,-0.0366516,-0.0393066,-0.0380554,-0.0375671,-0.0346069,-0.0305481,-0.0257263,-0.0219727,-0.0176086,-0.013092,-0.00982666,-0.00872803,-0.0109253,-0.0121765,-0.0127869,-0.0132446,-0.0135803,-0.0154419,-0.0141907,-0.0121765,-0.00762939,-0.00311279,0.00125122,0.00482178,0.00888062,0.0105896,0.010437,0.00842285,0.00637817,0.00405884,-0.000152588,-0.00747681,-0.0151367,-0.0216675,-0.0257263,-0.0296326,-0.0317993,-0.0341492,-0.0341492,-0.033844,-0.0321045,-0.0300903,-0.0282288,-0.0238647,-0.0187073,-0.0141907,-0.00982666,-0.00671387,-0.00326538,-0.00219727,-0.000793457,0,0.000305176,-0.000946045,-0.00360107,-0.00576782,-0.00732422,-0.00857544,-0.0101318,-0.0118408,-0.0138855,-0.0143433,-0.0135803,-0.0110779,-0.0107727,-0.0113831,-0.0109253,-0.0113831,-0.0121765,-0.0141907,-0.0144958,-0.0154419,-0.0157471,-0.0162048,-0.0158997,-0.0152893,-0.0121765,-0.00872803,-0.00576782,-0.0045166,-0.00140381,0.0015564,0.00686646,0.00888062,0.0109253,0.0101318,0.0113831,0.0102844,0.0110779,0.010437,0.00982666,0.00747681,0.00360107,-0.000793457,-0.00405884,-0.00576782,-0.00796509,-0.0105896,-0.0160522,-0.020752,-0.0227661,-0.0224609,-0.0199585,-0.0155945,-0.0109253,-0.00857544,-0.00341797,0.00421143,0.0135803,0.0210571,0.0266724,0.0275879,0.0282288,0.0283813,0.0280762,0.0252686,0.0188599,0.0093689,-0.00170898,-0.0115356,-0.0190125,-0.0246277,-0.0272827,-0.0291443,-0.0300903,-0.0299377,-0.0258789,-0.0171509,-0.00747681,0.00140381,0.00497437,0.00686646,0.00732422,0.00717163,0.00857544,0.00656128,0.00140381,-0.00390625,-0.00918579,-0.0118408,-0.0144958,-0.0138855,-0.0137329,-0.0143433,-0.014801,-0.0146484,-0.0132446,-0.0113831,-0.0112305,-0.0129395,-0.0179443,-0.0216675,-0.0241699,-0.0254211,-0.0257263,-0.025116,-0.0244751,-0.0249329,-0.0244751,-0.0212097,-0.0154419,-0.00982666,-0.00531006,-0.00360107,-0.00170898,0.00140381,0.00701904,0.0154419,0.0227661,0.0307312,0.0379028,0.046936,0.0562744,0.0636292,0.0679932,0.0675049,0.0659485,0.0609741,0.0528564,0.0445862,0.0341492,0.0235291,0.013092,0.0045166,0.000793457,0.00201416,0.00967407,0.0201111,0.0319519,0.0419312,0.0525513,0.0618896,0.0701599,0.0762329,0.0768738,0.0745239,0.0675049,0.0617371,0.0528564,0.044281,0.0363159,0.0299377,0.0263367,0.0244751,0.0221558,0.0215149,0.0215149,0.0221558,0.0210571,0.0198059,0.0176086,0.0163574,0.0174561,0.0198059,0.020752,0.0202637,0.0213623,0.0205688,0.0213623,0.0188599,0.0179443,0.0140381,0.00982666,0.00405884,-0.000793457,-0.00482178,-0.00592041,-0.00622559,-0.00421143,-0.00109863,0.0045166,0.0090332,0.0123291,0.0129395,0.0124817,0.00952148,0.00341797,-0.00466919,-0.0157471,-0.0255737,-0.0360107,-0.0455322,-0.0525513,-0.0575256,-0.0562744,-0.0502014,-0.0397644,-0.0260315,-0.0118408,0.00265503,0.0162048,0.0260315,0.0336914,0.0344543,0.0333557,0.0275879,0.0185547,0.00717163,-0.00482178,-0.0152893,-0.0238647,-0.02948,-0.0327454,-0.0324402,-0.0302429,-0.0249329,-0.0174561,-0.0115356,-0.00671387,-0.00326538,-0.0015564,-0.00360107,-0.00701904,-0.0116882,-0.0149536,-0.0190125,-0.0223083,-0.0263367,-0.0280762,-0.0266724,-0.0232239,-0.0185547,-0.0143433,-0.00997925,-0.00515747,-0.000793457,0.000305176,0.00109863,0,0,-0.0015564,-0.00561523,-0.010437,-0.0162048,-0.0202637,-0.0246277,-0.0288391,-0.0333557,-0.036499,-0.0369568,-0.0347595,-0.0302429,-0.0233765,-0.0158997,-0.00811768,-0.000610352,0.00515747,0.010437,0.0152893,0.0196533,0.0199585,0.0185547,0.0133972,0.00482178,-0.00326538,-0.0101318,-0.014801,-0.0202637,-0.0249329,-0.0288391,-0.0300903,-0.0302429,-0.0285339,-0.0260315,-0.0237122,-0.0224609,-0.0213623,-0.0213623,-0.0209045,-0.020752,-0.0210571,-0.0219727,-0.0258789,-0.0289917,-0.0296326,-0.0285339,-0.0261841,-0.0246277,-0.0229187,-0.0199585,-0.0155945,-0.0101318,-0.00531006,-0.00265503,-0.00109863,-0.00109863,-0.00375366,-0.00701904,-0.0112305,-0.0155945,-0.0213623,-0.0257263,-0.0297852,-0.0307312,-0.0299377,-0.0266724,-0.0215149,-0.0157471,-0.0101318,-0.00405884,0.00140381,0.00701904,0.0123291,0.0146484,0.0155945,0.0126343,0.00842285,0.00656128,0.00561523,0.006073,0.00671387,0.00796509,0.00778198,0.00811768,0.00918579,0.0121765,0.0158997,0.0210571,0.0219727,0.0230713,0.0227661,0.0226135,0.0223083,0.0179443,0.0115356,0.00497437,-0.00140381,-0.00717163,-0.0137329,-0.0155945,-0.0141907,-0.010437,-0.00796509,-0.00637817,-0.00170898,0.00637817,0.0165405,0.0241699,0.0260315,0.0247803,0.0216675,0.0187073,0.0124817,0.00326538,-0.00421143,-0.00872803,-0.0116882,-0.0149536,-0.0160522,-0.0116882,-0.00360107,0.00546265,0.0109253,0.0121765,0.0119934,0.0118408,0.0124817,0.0105896,0.00405884,-0.00561523,-0.0143433,-0.0221558,-0.0257263,-0.0277405,-0.0272827,-0.0252686,-0.0223083,-0.0196533,-0.0137329,-0.00656128,0.00170898,0.00827026,0.0116882,0.0113831,0.00952148,0.00656128,0.00436401,0.00265503,0.000457764,-0.00265503,-0.00576782,-0.00888062,-0.00762939,-0.00576782,-0.00390625,-0.00311279,-0.00390625,-0.00531006,-0.00326538,-0.00109863,0.0045166,0.00778198,0.00872803,0.00796509,0.00497437,0.00561523,0.00686646,0.0090332,0.0109253,0.00982666,0.00747681,0.00466919,0.00234985,0.00186157,0.000946045,0.00125122,0.00109863,0,0.00234985,0.00778198,0.0146484,0.0196533,0.0219727,0.0223083,0.0233765,0.0230713,0.0227661,0.0215149,0.0177612,0.0115356,0.00531006,0.000793457,-0.00234985,-0.00219727,0,0.00265503,0.00421143,0.00497437,0.00686646,0.0121765,0.0163574,0.019165,0.019165,0.0182495,0.0176086,0.0171509,0.0157471,0.013092,0.00827026,0.00576782,0.00265503,0,-0.000610352,-0.000152588,0.0015564,0.00326538,0.00436401,0.00546265,0.00827026,0.0127869,0.0162048,0.0171509,0.0177612,0.0155945,0.0126343,0.00872803,0.0045166,-0.00170898,-0.00686646,-0.0119934,-0.0165405,-0.0190125,-0.0196533,-0.0168457,-0.0146484,-0.0102844,-0.00421143,0.00515747,0.0133972,0.0202637,0.0246277,0.0280762,0.0297852,0.0291443,0.0246277,0.0179443,0.0102844,0.00326538,-0.00311279,-0.0113831,-0.0176086,-0.0219727,-0.0238647,-0.025116,-0.0241699,-0.0201111,-0.0138855,-0.00561523,0.0015564,0.00762939,0.0141907,0.019165,0.0246277,0.0280762,0.0282288,0.0247803,0.0190125,0.0137329,0.00796509,0.00219727,-0.00296021,-0.00857544,-0.0121765,-0.0138855,-0.013092,-0.00888062,-0.00219727,0.00296021,0.00686646,0.0118408,0.0143433,0.0184021,0.0185547,0.0174561,0.0141907,0.00717163,-0.00125122,-0.0093689,-0.0169983,-0.0223083,-0.0260315,-0.0272827,-0.0277405,-0.0272827,-0.0233765,-0.0155945,-0.00637817,0.00186157,0.00842285,0.0141907,0.0179443,0.0205688,0.0199585,0.0165405,0.00967407,0.00341797,-0.0045166,-0.0109253,-0.0162048,-0.019165,-0.0199585,-0.0215149,-0.0199585,-0.0165405,-0.0102844,-0.00405884,0.00265503,0.00701904,0.010437,0.0109253,0.0121765,0.0116882,0.0090332,0.0045166,-0.00186157,-0.00747681,-0.0123291,-0.0158997,-0.0180969,-0.0199585,-0.0212097,-0.0221558,-0.0204163,-0.0171509,-0.0135803,-0.00982666,-0.00717163,-0.00686646,-0.00656128,-0.00732422,-0.00827026,-0.00872803,-0.0113831,-0.0149536,-0.0201111,-0.0227661,-0.0232239,-0.0227661,-0.0216675,-0.020752,-0.0179443,-0.0152893,-0.0113831,-0.00717163,-0.00296021,0,0.000152588,-0.000793457,-0.00234985,-0.00280762,-0.00341797,-0.00515747,-0.00778198,-0.0109253,-0.0119934,-0.0116882,-0.00918579,-0.00701904,-0.00436401,-0.00140381,0.00109863,0.00234985,0.00341797,0.00360107,0.00531006,0.00482178,0.00186157,-0.00311279,-0.00671387,-0.00637817,-0.00466919,-0.00265503,-0.000946045,0.00109863,0.00497437,0.00918579,0.0118408,0.0123291,0.010437,0.00717163,0.00201416,-0.00326538,-0.00796509,-0.0118408,-0.0127869,-0.0140381,-0.0137329,-0.0138855,-0.0113831,-0.00747681,-0.00234985,0.00326538,0.00732422,0.0101318,0.00982666,0.00982666,0.00842285,0.0090332,0.00671387,0.00390625,-0.00170898,-0.006073,-0.00982666,-0.0115356,-0.0129395,-0.0123291,-0.0113831,-0.00888062,-0.00637817,-0.00341797,-0.000152588,0.00375366,0.006073,0.00497437,0.00125122,-0.00405884,-0.00747681,-0.00997925,-0.0112305,-0.0141907,-0.0176086,-0.0187073,-0.0173035,-0.0119934,-0.00497437,0.00250244,0.00827026,0.0119934,0.0154419,0.0166931,0.0166931,0.0152893,0.0123291,0.00701904,0.00109863,-0.00482178,-0.00952148,-0.0110779,-0.0112305,-0.0115356,-0.0126343,-0.0135803,-0.0124817,-0.00857544,-0.00466919,-0.00140381,-0.00109863,-0.00186157,-0.000610352,0.00219727,0.00592041,0.00872803,0.00997925,0.00967407,0.00656128,0.00265503,-0.000305176,-0.00140381,-0.00219727,-0.00341797,-0.00531006,-0.00656128,-0.00561523,-0.00326538,0.0015564,0.00497437,0.00778198,0.00888062,0.00888062,0.00918579,0.0110779,0.0105896,0.00827026,0.00326538,-0.000610352,-0.00311279,-0.00326538,-0.00296021,-0.00109863,-0.00125122,0,0.00140381,0.00296021,0.00360107,0.00466919,0.00561523,0.00421143,0.00170898,-0.00280762,-0.00436401,-0.00436401,-0.00326538,-0.00201416,-0.00170898,0.000305176,0.00265503,0.00762939,0.0124817,0.0169983,0.0196533,0.0202637,0.0205688,0.0195007,0.0166931,0.0126343,0.00872803,0.00482178,-0.000305176,-0.00497437,-0.00842285,-0.0109253,-0.0101318,-0.00701904,-0.00390625,-0.000305176,0.00341797,0.00796509,0.0116882,0.0144958,0.0160522,0.0162048,0.0151367,0.0121765,0.00842285,0.00296021,-0.00125122,-0.00515747,-0.00686646,-0.00762939,-0.006073,-0.00436401,-0.000946045,0.00326538,0.00872803,0.0143433,0.0169983,0.0184021,0.0171509,0.0157471,0.013092,0.00762939,0.000793457,-0.00637817,-0.0135803,-0.0185547,-0.0216675,-0.0227661,-0.020752,-0.0177612,-0.0116882,-0.00622559,0.000793457,0.00732422,0.014801,0.0202637,0.0230713,0.0230713,0.020752,0.0184021,0.0138855,0.0090332,0.00326538,-0.00280762,-0.00842285,-0.0127869,-0.0149536,-0.0146484,-0.0124817,-0.00982666,-0.00717163,-0.00360107,-0.000457764,0.00201416,0.00375366,0.0045166,0.00405884,0.00265503,-0.000457764,-0.00265503,-0.00360107,-0.00360107,-0.00280762,-0.00311279,-0.00201416,-0.00109863,0.00219727,0.00592041,0.010437,0.0129395,0.0149536,0.0160522,0.0157471,0.0151367,0.0143433,0.0119934,0.0090332,0.00421143,-0.000610352,-0.00531006,-0.00888062,-0.0110779,-0.0123291,-0.0135803,-0.014801,-0.0143433,-0.0119934,-0.00857544,-0.00466919,-0.000305176,0.00296021,0.00576782,0.00811768,0.00982666,0.0119934,0.0124817,0.0113831,0.0105896,0.00842285,0.00827026,0.00762939,0.00747681,0.006073,0.0045166,0.00234985,-0.000457764,-0.00201416,-0.00421143,-0.00592041,-0.0101318,-0.0137329,-0.0173035,-0.0198059,-0.0204163,-0.0210571,-0.0212097,-0.020752,-0.0196533,-0.0163574,-0.0126343,-0.00811768,-0.00360107,-0.000457764,0.00234985,0.0045166,0.006073,0.00637817,0.00531006,0.00341797,-0.000305176,-0.00375366,-0.00656128,-0.00811768,-0.00918579,-0.0093689,-0.00888062,-0.00762939,-0.006073,-0.00421143,-0.00219727,-0.00219727,-0.00170898,-0.00341797,-0.00515747,-0.00857544,-0.0126343,-0.0165405,-0.0184021,-0.0209045,-0.0215149,-0.0212097,-0.0177612,-0.0129395,-0.00811768,-0.00234985,0.00186157,0.00622559,0.0105896,0.0137329,0.0144958,0.0141907,0.0129395,0.0115356,0.00918579,0.00701904,0.00466919,0.00219727,0.000152588,-0.00109863,-0.00311279,-0.00497437,-0.00686646,-0.00811768,-0.00872803,-0.010437,-0.0123291,-0.0129395,-0.0124817,-0.0123291,-0.0112305,-0.00952148,-0.00592041,-0.00341797,-0.000457764,0.00140381,0.00326538,0.00405884,0.00436401,0.00326538,0.000793457,-0.00186157,-0.00326538,-0.00497437,-0.00778198,-0.00827026,-0.00857544,-0.00827026,-0.00747681,-0.00637817,-0.00421143,-0.00311279,-0.00250244,-0.00250244,-0.00296021,-0.00421143,-0.00515747,-0.00592041,-0.00576782,-0.00732422,-0.00717163,-0.00701904,-0.006073,-0.00311279,-0.00250244,-0.00125122,-0.000305176,-0.000152588,0.000610352,0.000305176,0.000457764,0.000457764,-0.000457764,-0.000305176,0,0.000946045,0.00201416,0.00250244,0.00375366,0.00390625,0.00421143,0.00466919,0.00405884,0.00390625,0.00326538,0.00250244,0.00201416,0.00201416,0.00201416,0.00265503,0.00311279,0.00341797,0.00421143,0.00482178,0.00515747,0.00405884,0.00311279,0.00201416,0.000457764,-0.000152588,-0.00201416,-0.00234985,-0.00341797,-0.00360107,-0.00296021,-0.000457764,0.00265503,0.00622559,0.00967407,0.0121765,0.0133972,0.0144958,0.0163574,0.0168457,0.014801,0.0124817,0.00872803,0.00421143,0.000457764,-0.00265503,-0.00515747,-0.00717163,-0.00918579,-0.00888062,-0.00811768,-0.00546265,-0.00341797,-0.000793457,0.000152588,0.000610352,0.000610352,0.00170898,0.00201416,0.00186157,0.00280762,0.00186157,0.00109863,0.000305176,0.00109863,0.00234985,0.00482178,0.0045166,0.0045166,0.00375366,0.00341797,0.00326538,0.00326538,0.00186157,-0.000305176,-0.000946045,-0.00234985,-0.00375366,-0.00390625,-0.00360107,-0.00341797,-0.00341797,-0.00375366,-0.00280762,-0.00186157,-0.00140381,-0.00109863,-0.00140381,-0.00109863,-0.0015564,-0.0015564,0,0.000305176,0.00140381,0.00201416,0.00250244,0.00360107,0.00531006,0.00656128,0.00747681,0.00827026,0.00827026,0.00747681,0.00762939,0.00622559,0.00592041,0.00341797,0.00201416,-0.000793457,-0.00311279,-0.00405884,-0.00622559,-0.00762939,-0.00872803,-0.00967407,-0.00952148,-0.00967407,-0.00872803,-0.00811768,-0.00637817,-0.00546265,-0.00360107,-0.00219727,0,0.00170898,0.00265503,0.00250244,0.00170898,0.00140381,0.000946045,0.000305176,-0.0015564,-0.00280762,-0.00360107,-0.00515747,-0.00561523,-0.00531006,-0.00421143,-0.00311279,-0.00265503,-0.00186157,-0.0015564,-0.000457764,-0.000305176,0.000152588,0.000457764,0,-0.000793457,-0.00170898,-0.00125122,-0.00140381,-0.000946045,-0.00109863,0.000152588,0.00140381,0.00326538,0.00515747,0.00701904,0.00827026,0.00857544,0.00857544,0.00827026,0.00811768,0.00637817,0.00482178,0.00360107,0.00140381,-0.000793457,-0.00375366,-0.00482178,-0.00637817,-0.00732422,-0.00857544,-0.00827026,-0.00778198,-0.00576782,-0.0045166,-0.00280762,-0.00125122,-0.000305176,0.000793457,0.00125122,0.00186157,0.00170898,0.00170898,0.00140381,0.00140381,0.00109863,0.000457764,0.00170898,0.00140381,0.00296021,0.00250244,0.00265503,0.00360107,0.00375366,0.00326538,0.000793457,-0.000457764,-0.00311279,-0.00436401,-0.00592041,-0.00811768,-0.00842285,-0.00982666,-0.00952148,-0.0093689,-0.00842285,-0.00656128,-0.00482178,-0.00341797,-0.0015564,-0.000610352,0.00140381,0.00234985,0.00341797,0.00360107,0.00311279,0.00265503,0.00234985,0.00250244,0.00234985,0.00234985,0.00265503,0.00311279,0.00341797,0.00341797,0.00436401,0.00497437,0.00466919,0.00326538,0.00140381,0.000305176,-0.0015564,-0.00326538,-0.00482178,-0.006073,-0.00811768,-0.00827026,-0.0090332,-0.00888062,-0.00888062,-0.00842285,-0.00717163,-0.00637817,-0.00436401,-0.00296021,-0.00140381,0.000305176,0.000946045,0.00125122,0.000946045,0.00170898,0.00219727,0.00201416,0.00186157,0.000946045,-0.000152588,0.000305176,0.000305176,0.000946045,0.000793457,0.00170898,0.00201416,0.00326538,0.00436401,0.00576782,0.00592041,0.00592041,0.00421143,0.00296021,0.000946045,-0.00219727,-0.00390625,-0.006073,-0.00872803,-0.0102844,-0.0105896,-0.00982666,-0.00732422,-0.00436401,-0.000152588,0.00360107,0.00732422,0.0107727,0.0138855,0.0157471,0.0157471,0.0152893,0.0127869,0.00918579,0.00515747,0.00125122,-0.00201416,-0.00531006,-0.00857544,-0.010437,-0.0115356,-0.0115356,-0.0102844,-0.00857544,-0.00637817,-0.00436401,-0.00170898,-0.000457764,0.0015564,0.00265503,0.00326538,0.00296021,0.00140381,-0.0015564,-0.00311279,-0.00592041,-0.00717163,-0.00918579,-0.0101318,-0.0107727,-0.00997925,-0.00918579,-0.00762939,-0.00515747,-0.00219727,0.000793457,0.00311279,0.00576782,0.00762939,0.00842285,0.00888062,0.00732422,0.00546265,0.00280762,-0.000946045,-0.00341797,-0.00622559,-0.00827026,-0.0090332,-0.0093689,-0.00796509,-0.006073,-0.00296021,0.000457764,0.00326538,0.006073,0.00701904,0.00842285,0.00796509,0.00732422,0.00515747,0.00360107,0.000946045,-0.000457764,-0.00186157,-0.00280762,-0.00296021,-0.0015564,-0.000793457,0.00170898,0.00326538,0.00482178,0.00637817,0.00747681,0.00796509,0.00762939,0.00656128,0.00360107,0.00140381,-0.00186157,-0.00405884,-0.00637817,-0.00827026,-0.00997925,-0.0107727,-0.010437,-0.00967407,-0.00796509,-0.00546265,-0.00375366,-0.00280762,-0.00186157,-0.0015564,-0.000793457,-0.000610352,-0.000946045,-0.00201416,-0.00405884,-0.006073,-0.00686646,-0.00796509,-0.00796509,-0.00796509,-0.00762939,-0.00762939,-0.00656128,-0.00515747,-0.00311279,-0.00170898,-0.000152588,0.00125122,0.00201416,0.00311279,0.00390625,0.00436401,0.00436401,0.00326538,0.000457764,-0.000610352,-0.00219727,-0.00360107,-0.00360107,-0.00546265,-0.00561523,-0.00656128,-0.006073,-0.00561523,-0.00421143,-0.00250244,-0.000305176,0.000305176,0.00186157,0.00219727,0.0045166,0.00576782,0.00747681,0.00778198,0.00732422,0.00717163,0.00717163,0.00717163,0.00671387,0.00546265,0.00360107,0.00125122,-0.00109863,-0.00219727,-0.00234985,-0.00390625,-0.00482178,-0.00592041,-0.00592041,-0.00561523,-0.00405884,-0.00311279,-0.00125122,-0.000305176,0.000457764,0.000793457,0.00125122,0.00109863,0.000152588,-0.00109863,-0.00296021,-0.00497437,-0.00622559,-0.00686646,-0.00686646,-0.00637817,-0.00515747,-0.00360107,-0.00109863,0.00219727,0.00561523,0.00842285,0.0118408,0.0119934,0.0123291,0.0107727,0.00857544,0.00576782,0.00186157,-0.00250244,-0.00622559,-0.00967407,-0.0119934,-0.0127869,-0.0133972,-0.0121765,-0.0101318,-0.00701904,-0.00421143,-0.000793457,0.00170898,0.00482178,0.00622559,0.00762939,0.00701904,0.00656128,0.00531006,0.00421143,0.00250244,0.000946045,-0.000305176,-0.00109863,-0.000946045,-0.00109863,0,0.00140381,0.00250244,0.00421143,0.00546265,0.00592041,0.00576782,0.00546265,0.00360107,0.00186157,-0.000946045,-0.00375366,-0.00747681,-0.0102844,-0.013092,-0.0149536,-0.0155945,-0.0154419,-0.0140381,-0.0115356,-0.00796509,-0.00466919,-0.000610352,0.00234985,0.00576782,0.00778198,0.0093689,0.00872803,0.00717163,0.00561523,0.00265503,0.000610352,-0.00186157,-0.00341797,-0.00466919,-0.00436401,-0.0045166,-0.00280762,-0.00125122,0.000610352,0.00250244,0.00390625,0.00375366,0.00360107,0.00234985,0.000610352,-0.00140381,-0.00390625,-0.00561523,-0.00747681,-0.00811768,-0.00778198,-0.006073,-0.00436401,-0.00170898,0.000610352,0.00375366,0.00637817,0.00827026,0.00982666,0.0105896,0.010437,0.00952148,0.00796509,0.00561523,0.00436401,0.00170898,0,-0.00109863,-0.00390625,-0.00375366,-0.00531006,-0.00515747,-0.00531006,-0.00466919,-0.0045166,-0.00326538,-0.00360107,-0.00201416,-0.00109863,0.000152588,0.000793457,0.00140381,0.0015564,0.00125122,0.000946045,0.000793457,-0.000457764,-0.00170898,-0.00341797,-0.00421143,-0.00531006,-0.00515747,-0.00546265,-0.00482178,-0.00375366,-0.00250244,-0.0015564,-0.000152588,0.00170898,0.00341797,0.00421143,0.00421143,0.00360107,0.00234985,0.000610352,-0.00140381,-0.00341797,-0.00515747,-0.00686646,-0.00796509,-0.00762939,-0.00656128,-0.00497437,-0.00280762,-0.00109863,0.00186157,0.00341797,0.00576782,0.00656128,0.00827026,0.00778198,0.00747681,0.00576782,0.00390625,0.00201416,0.000457764,-0.00109863,-0.00265503,-0.00296021,-0.00280762,-0.00219727,-0.00109863,0.000457764,0.00140381,0.00341797,0.00436401,0.00561523,0.00671387,0.00686646,0.00762939,0.00686646,0.00622559,0.00326538,0.00219727,-0.000457764,-0.00201416,-0.00311279,-0.00497437,-0.00466919,-0.00531006,-0.00405884,-0.00311279,-0.00109863,0.000793457,0.00311279,0.0045166,0.00592041,0.006073,0.00656128,0.00637817,0.00515747,0.00265503,0.00109863,-0.0015564,-0.00296021,-0.00546265,-0.00637817,-0.00778198,-0.00778198,-0.00747681,-0.006073,-0.00390625,-0.00170898,0.000793457,0.00296021,0.00421143,0.00592041,0.00622559,0.00622559,0.00466919,0.00390625,0.0015564,-0.000610352,-0.00326538,-0.00531006,-0.00686646,-0.00872803,-0.00918579,-0.00888062,-0.00778198,-0.00622559,-0.00421143,-0.00280762,-0.000946045,0,0.0015564,0.00186157,0.00201416,0.00186157,0.00125122,-0.000457764,-0.00186157,-0.00265503,-0.0045166,-0.00561523,-0.006073,-0.00637817,-0.00561523,-0.00482178,-0.00375366,-0.00265503,-0.00125122,-0.000457764,0.000610352,0.00170898,0.00186157,0.00234985,0.00250244,0.00186157,0.00140381,0.000152588,-0.000793457,-0.00170898,-0.00280762,-0.00390625,-0.00436401,-0.00405884,-0.00405884,-0.00265503,-0.00250244,-0.000610352,-0.000457764,0.000793457,0.00186157,0.00250244,0.00296021,0.00265503,0.00186157,0.00109863,0.000152588,-0.000610352,-0.00170898,-0.00265503,-0.00234985,-0.00341797,-0.00219727,-0.00265503,-0.00125122,-0.000793457,-0.000793457,0.000305176,0.000793457,0.00109863,0.00170898,0.00125122,0.000793457,0.000152588,-0.000610352,-0.00125122,-0.00170898,-0.00250244,-0.00265503,-0.00326538,-0.00341797,-0.00405884,-0.00390625,-0.0045166,-0.00390625,-0.00326538,-0.00280762,-0.00140381,0.000305176,0.00219727,0.00360107,0.00466919,0.00531006,0.00576782,0.00546265,0.00482178,0.00375366,0.00201416,0.000610352,-0.00186157,-0.00390625,-0.00531006,-0.006073,-0.00637817,-0.00576782,-0.00546265,-0.00497437,-0.00326538,-0.00201416,-0.00140381,-0.000305176,0.000152588,0.000457764,0.000305176,0.000305176,-0.000610352,-0.000610352,-0.0015564,-0.00234985,-0.00311279,-0.00296021,-0.00296021,-0.00234985,-0.00125122,-0.000610352,0.000457764,0.00170898,0.00250244,0.00326538,0.00360107,0.00421143,0.00341797,0.00280762,0.00109863,-0.000457764,-0.00201416,-0.00390625,-0.00466919,-0.00576782,-0.00656128,-0.006073,-0.00515747,-0.00436401,-0.00280762,-0.00170898,0,0.00109863,0.00250244,0.00326538,0.00326538,0.00326538,0.00296021,0.00170898,0.0015564,0,0,-0.000610352,-0.000793457,-0.000793457,-0.000305176,-0.000152588,0.000946045,0.00140381,0.00170898,0.00186157,0.00140381,0.000305176,-0.000793457,-0.00250244,-0.00341797,-0.00515747,-0.00622559,-0.00701904,-0.00732422,-0.00686646,-0.00561523,-0.00421143,-0.00234985,-0.000305176,0.0015564,0.00436401,0.00561523,0.00701904,0.00747681,0.00717163,0.00546265,0.00436401,0.00250244,0.000793457,-0.0015564,-0.00341797,-0.00531006,-0.00656128,-0.00656128,-0.00656128,-0.00671387,-0.00592041,-0.00497437,-0.00390625,-0.00201416,-0.000457764,0.000305176,0.0015564,0.00219727,0.00265503,0.00311279,0.00296021,0.00234985,0.0015564,0.00109863,-0.000610352,-0.000946045,-0.00201416,-0.00250244,-0.00311279,-0.00326538,-0.00326538,-0.00250244,-0.0015564,-0.000793457,0.000457764,0.000946045,0.00234985,0.00280762,0.00280762,0.00201416,0.00125122,0.000946045,-0.00109863,-0.00170898,-0.00375366,-0.00482178,-0.00592041,-0.00622559,-0.00622559,-0.00622559,-0.00482178,-0.00390625,-0.00140381,-0.000457764,0.00125122,0.00296021,0.00421143,0.00482178,0.00592041,0.00576782,0.00561523,0.00497437,0.00390625,0.00265503,0.00109863,0.000152588,-0.00109863,-0.00186157,-0.00219727,-0.00219727,-0.00140381,-0.000946045,-0.000152588,0.00125122,0.00234985,0.00296021,0.00341797,0.00405884,0.00311279,0.00265503,0.00219727,0.000152588,0.000152588,-0.00186157,-0.00234985,-0.00265503,-0.00296021,-0.00250244,-0.00186157,-0.00125122,-0.000152588,0.000305176,0.00170898,0.00186157,0.00234985,0.00280762,0.00250244,0.00234985,0.00170898,0.000610352,0,-0.000946045,-0.00170898,-0.00219727,-0.00219727,-0.00311279,-0.00311279,-0.00390625,-0.00311279,-0.00375366,-0.00234985,-0.00250244,-0.00186157,-0.00186157,-0.00109863,-0.00125122,-0.00186157,-0.00201416,-0.00234985,-0.00250244,-0.00296021,-0.00234985,-0.00280762,-0.00201416,-0.00250244,-0.00250244,-0.00219727,-0.00219727,-0.00219727,-0.00219727,-0.00234985,-0.00311279,-0.00250244,-0.00265503,-0.0015564,-0.00140381,-0.000457764,0.000946045,0.0015564,0.00311279,0.00360107,0.00390625,0.00421143,0.00405884,0.00296021,0.00201416,0.000457764,-0.000305176,-0.00186157,-0.00280762,-0.00311279,-0.00375366,-0.00360107,-0.00326538,-0.00296021,-0.0015564,-0.000946045,-0.000305176,0.000305176,0.000610352,0.000305176,-0.000152588,-0.000457764,-0.00186157,-0.00201416,-0.00311279,-0.00311279,-0.00390625,-0.00390625,-0.00311279,-0.00265503,-0.00201416,-0.000793457,-0.000152588,0.000610352,0.00186157,0.00170898,0.00201416,0.00219727,0.00140381,0.000946045,-0.000610352,-0.000946045,-0.00265503,-0.00326538,-0.00482178,-0.00515747,-0.00561523,-0.00592041,-0.00515747,-0.0045166,-0.00311279,-0.00219727,-0.000946045,0.000152588,0.00170898,0.00234985,0.00265503,0.00326538,0.00296021,0.00296021,0.0015564,0.00140381,0,-0.000793457,-0.00234985,-0.00250244,-0.00326538,-0.00265503,-0.00234985,-0.00186157,-0.000793457,0.000457764,0.00125122,0.00250244,0.00296021,0.00341797,0.00326538,0.00311279,0.00234985,0.00170898,0.00125122,0.000457764,-0.000610352,-0.00125122,-0.00186157,-0.00280762,-0.00265503,-0.00311279,-0.00360107,-0.00326538,-0.00390625,-0.00250244,-0.00265503,-0.00125122,-0.00140381,0.000152588,0.000152588,0.000946045,0.00109863,0.00170898,0.00140381,0.00234985,0.00186157,0.00219727,0.00140381,0.00125122,0.0015564,0.00125122,0.000946045,0.000610352,0.000457764,0,0.000152588,-0.000305176,-0.000610352,-0.000946045,-0.000610352,-0.00109863,-0.000946045,-0.00186157,-0.000946045,-0.0015564,-0.00170898,-0.00201416,-0.00219727,-0.00219727,-0.00201416,-0.00201416,-0.0015564,-0.00125122,-0.000610352,-0.000946045,-0.000457764,-0.000457764,0.000152588,0.000793457,0.00109863,0.00170898,0.00250244,0.00296021,0.00375366,0.00375366,0.00360107,0.00326538,0.00280762,0.00170898,0.00125122,-0.000793457,-0.00109863,-0.00250244,-0.00311279,-0.00375366,-0.00360107,-0.00311279,-0.00296021,-0.00201416,-0.000946045,0.000946045,0.00186157,0.00296021,0.00375366,0.00390625,0.00390625,0.00341797,0.0015564,0.000305176,-0.00109863,-0.00360107,-0.00421143,-0.00576782,-0.00546265,-0.00576782,-0.00375366,-0.00296021,-0.000457764,0.00125122,0.00296021,0.00360107,0.00482178,0.0045166,0.00296021,0.00186157,0,-0.00219727,-0.00375366,-0.00622559,-0.00701904,-0.00778198,-0.00778198,-0.00637817,-0.00466919,-0.00234985,-0.000610352,0.00186157,0.00311279,0.00515747,0.00531006,0.00531006,0.00421143,0.00250244,0.00109863,-0.00109863,-0.00250244,-0.00405884,-0.00436401,-0.00497437,-0.00436401,-0.00436401,-0.00250244,-0.00140381,0.000152588,0.0015564,0.00234985,0.00326538,0.00360107,0.00390625,0.00296021,0.00265503,0.00125122,-0.000793457,-0.00109863,-0.00234985,-0.00280762,-0.00296021,-0.00311279,-0.00280762,-0.00186157,-0.0015564,-0.00109863,-0.000152588,0.000946045,0.00109863,0.000793457,0.00109863,0.000152588,0.000305176,-0.000305176,-0.000946045,-0.000457764,-0.00140381,-0.000946045,-0.00125122,-0.000946045,-0.000793457,-0.000305176,-0.000305176,0.000152588,0.000152588,0.00109863,0.00125122,0.00125122,0.000793457,0.00125122,0.000152588,-0.000610352,-0.00125122,-0.00201416,-0.00250244,-0.00280762,-0.00280762,-0.00326538,-0.00250244,-0.00296021,-0.00186157,-0.00170898,-0.00109863,-0.000946045,-0.000610352,-0.000610352,-0.000305176,-0.000946045,-0.00125122,-0.00170898,-0.00170898,-0.00186157,-0.00280762,-0.00201416,-0.00296021,-0.00186157,-0.00234985,-0.00140381,-0.00109863,-0.000457764,0.000305176,0.000793457,0.0015564,0.00170898,0.00186157,0.0015564,0.000946045,-0.000152588,-0.0015564,-0.00250244,-0.00341797,-0.0045166,-0.00576782,-0.00637817,-0.00686646,-0.00592041,-0.00531006,-0.00390625,-0.00280762,-0.0015564,0.000457764,0.00125122,0.00265503,0.00311279,0.00341797,0.00311279,0.00201416,0.0015564,0.000793457,-0.000305176,-0.0015564,-0.00234985,-0.00280762,-0.00296021,-0.00265503,-0.00186157,-0.00170898,0.000152588,0.00109863,0.00201416,0.00311279,0.00341797,0.00341797,0.00250244,0.00186157,0.000793457,-0.000305176,-0.0015564,-0.00265503,-0.00265503,-0.00405884,-0.00421143,-0.0045166,-0.00341797,-0.00326538,-0.00201416,-0.00140381,-0.000152588,0.000610352,0.00201416,0.00265503,0.00311279,0.00296021,0.00265503,0.00250244,0.00170898,0.000610352,-0.000457764,-0.00186157,-0.00265503,-0.00405884,-0.00405884,-0.00466919,-0.00466919,-0.00390625,-0.00405884,-0.00265503,-0.00170898,-0.000793457,-0.000457764,0.000793457,0.000610352,0.000946045,0.00109863,0.000946045,0.000152588,-0.000793457,-0.000946045,-0.00140381,-0.00234985,-0.00296021,-0.00341797,-0.00375366,-0.00405884,-0.00405884,-0.00360107,-0.00280762,-0.00250244,-0.00125122,-0.00109863,0.000305176,0.000793457,0.00140381,0.00140381,0.0015564,0.00109863,-0.000152588,-0.000305176,-0.000946045,-0.00109863,-0.00219727,-0.00280762,-0.00296021,-0.00296021,-0.00296021,-0.00186157,-0.00125122,-0.000793457,0.000152588,0.00109863,0.00109863,0.00250244,0.00341797,0.00326538,0.00341797,0.00360107,0.00296021,0.00265503,0.00234985,0.000793457,0.000305176,-0.000457764,-0.00140381,-0.00186157,-0.00234985,-0.00265503,-0.00265503,-0.00296021,-0.00234985,-0.00125122,-0.000457764,0,0.000457764,0.00125122,0.00109863,0.00186157,0.0015564,0.00201416,0.00140381,0.00140381,0.000610352,0.000793457,0,0.000305176,-0.000305176,0.000305176,0.000305176,0.00125122,0.00170898,0.00265503,0.00234985,0.00326538,0.00265503,0.00296021,0.00234985,0.0015564,0.000793457,-0.000610352,-0.00201416,-0.00341797,-0.00405884,-0.00497437,-0.00482178,-0.00466919,-0.00405884,-0.00341797,-0.00250244,-0.0015564,-0.000457764,0.000305176,0.00140381,0.0015564,0.00219727,0.00219727,0.00170898,0.00140381,0.00109863,0.00109863,0.000610352,0,0.000152588,-0.000457764,-0.000152588,-0.000305176,-0.000457764,0.000152588,0,0.000457764,0.000457764,0.00109863,0.00125122,0.000305176,0.000610352,0.000457764,0,-0.000305176,-0.000946045,-0.00186157,-0.00234985,-0.00265503,-0.00234985,-0.00265503,-0.00201416,-0.00170898,-0.000793457,-0.000610352,0.000152588,0.00140381,0.00219727,0.00265503,0.00280762,0.00326538,0.00250244,0.00219727,0.00170898,0.00125122,0.000610352,-0.000152588,-0.00140381,-0.00170898,-0.00186157,-0.00219727,-0.00201416,-0.00219727,-0.00186157,-0.00170898,-0.00140381,-0.000610352,-0.000457764,-0.000946045,-0.00109863,-0.00125122,-0.00125122,-0.00170898,-0.00201416,-0.00234985,-0.00234985,-0.00250244,-0.00250244,-0.00201416,-0.00125122,-0.000610352,-0.000152588,0.000152588,0.00125122,0.000946045,0.00109863,0.00170898,0.00125122,0.00109863,0.000793457,0.000457764,0.000457764,0.000305176,-0.000305176,0,-0.000793457,-0.000610352,-0.000457764,-0.000793457,-0.00109863,-0.00140381,-0.00125122,-0.0015564,-0.00109863,-0.00186157,-0.00125122,-0.00186157,-0.00125122,-0.00125122,-0.000793457,-0.000305176,0.000457764,0,0.000946045,0.00109863,0.00125122,0.00109863,0.00140381,0,0.000305176,-0.000457764,-0.000946045,-0.000793457,-0.00125122,-0.000793457,-0.000793457,-0.000152588,0.000152588,0.000793457,0.00109863,0.00125122,0.00109863,0.00125122,0.000610352,0.000457764,-0.000305176,-0.000793457,-0.0015564,-0.00109863,-0.00125122,-0.00109863,-0.0015564,-0.0015564,-0.000946045,-0.000152588,-0.000610352,-0.000610352,-0.000305176,-0.00125122,-0.000610352,-0.00125122,-0.00109863,-0.00234985,-0.00140381,-0.00234985,-0.00170898,-0.00186157,-0.00170898,-0.00170898,-0.00170898,-0.00109863,-0.00170898,-0.00140381,-0.00170898,-0.00186157,-0.00170898,-0.00311279,-0.00296021,-0.00390625,-0.00375366,-0.00360107,-0.0045166,-0.00390625,-0.00421143,-0.00311279,-0.00234985,-0.00186157,-0.0015564,0,0,0.000610352,0.000305176,0.000152588,0,-0.000457764,-0.00109863,-0.00201416,-0.00296021,-0.00341797,-0.00375366,-0.00375366,-0.00375366,-0.00311279,-0.00250244,-0.00186157,-0.000946045,-0.000610352,0.000305176,0.000793457,0.00109863,0.000305176,0.000610352,-0.000457764,-0.000946045,-0.00170898,-0.00234985,-0.00234985,-0.00250244,-0.00186157,-0.00201416,-0.00109863,-0.000305176,0.000305176,0.00125122,0.00140381,0.00186157,0.00186157,0.00186157,0.00186157,0.00109863,0.000610352,-0.000457764,-0.000610352,-0.00140381,-0.00170898,-0.00140381,-0.00170898,-0.00109863,-0.000946045,-0.000610352,0,0.000152588,-0.000305176,0.000152588,-0.000793457,-0.000793457,-0.00170898,-0.00219727,-0.00234985,-0.00311279,-0.00280762,-0.00360107,-0.00280762,-0.00250244,-0.00125122,-0.00109863,0,0.000946045,0.00125122,0.00170898,0.00186157,0.00186157,0.0015564,0.00125122,0.00109863,0.000152588,-0.000152588,-0.000946045,-0.00170898,-0.00201416,-0.00265503,-0.00170898,-0.00265503,-0.00170898,-0.00250244,-0.0015564,-0.00125122,-0.000793457,-0.000457764,0,0.000305176,0.000793457,0.000305176,0.000152588,-0.000152588,-0.000610352,-0.000457764,-0.000152588,-0.000305176,-0.000457764,0.000610352,0.000152588,0.00125122,0.0015564,0.00170898,0.0015564,0.00234985,0.00219727,0.00186157,0.00234985,0.00170898,0.00109863,0.000793457,-0.000152588,-0.000610352,-0.000793457,-0.00170898,-0.00186157,-0.00219727,-0.00186157,-0.00219727,-0.00125122,-0.00125122,-0.000457764,-0.000457764,0.000610352,0.00109863,0.000946045,0.00125122,0.00140381,0.00140381,0.000946045,0.00109863,0.000152588,-0.000305176,-0.000152588,-0.000793457,-0.000793457,-0.000457764,-0.00125122,-0.000793457,-0.000152588,-0.000305176,0.000305176,-0.000152588,0,-0.000152588,-0.000610352,-0.000152588,-0.00125122,-0.00109863,-0.00186157,-0.00186157,-0.00265503,-0.00219727,-0.00201416,-0.00170898,-0.00109863,-0.000946045,0.000305176,0,0.000946045,0.000457764,0.000946045,0.000610352,0.000457764,0.000152588,-0.000152588,-0.000793457,-0.00125122,-0.00125122,-0.00170898,-0.0015564,-0.0015564,-0.0015564,-0.00125122,-0.0015564,-0.000946045,-0.000793457,-0.00109863,-0.000305176,-0.00140381,-0.00125122,-0.00109863,-0.000793457,-0.000793457,-0.000457764,0.000457764,0.000305176,0.000793457,0.0015564,0.00109863,0.00140381,0.00125122,0.000946045,0.000793457,-0.000152588,0,-0.00109863,-0.00109863,-0.00170898,-0.00219727,-0.00186157,-0.00170898,-0.00109863,-0.00125122,-0.000457764,-0.000610352,0.000305176,-0.000152588,0.000610352,0.000610352,0.000793457,0.000793457,0.000152588,0.000305176,-0.000152588,-0.000305176,-0.000457764,-0.000793457,0,-0.000305176,-0.000152588,0,0,-0.000457764,-0.000793457,-0.000793457,-0.00125122,-0.000793457,-0.000610352,-0.00109863,-0.00125122,-0.00109863,-0.000610352,-0.000152588,-0.000457764,0.000152588,-0.000152588,-0.000305176,-0.000305176,-0.000457764,-0.000793457,-0.00125122,-0.00125122,-0.00234985,-0.00201416,-0.00234985,-0.00250244,-0.00201416,-0.00219727,-0.00140381,-0.00186157,-0.00109863,-0.000793457,-0.000793457,-0.000457764,-0.000793457,-0.000793457,-0.000610352,-0.000610352,-0.000610352,-0.000152588,-0.000610352,-0.000152588,-0.000152588,-0.000305176,-0.000152588,-0.000457764,-0.000457764,-0.000946045,-0.000946045,-0.000946045,-0.000946045,-0.000793457,-0.000305176,-0.000305176,-0.000152588,0,0.000457764,0.000152588,0.000610352,0.000305176,0.000305176,-0.000305176,-0.000305176,-0.000946045,-0.00140381,-0.0015564,-0.00170898,-0.00219727,-0.00170898,-0.00140381,-0.000610352,-0.000457764,0.000457764,0.000946045,0.00109863,0.00170898,0.0015564,0.00140381,0.0015564,0.000457764,-0.000152588,-0.000793457,-0.000946045,-0.0015564,-0.0015564,-0.00186157,-0.00219727,-0.00109863,-0.0015564,-0.000610352,-0.000457764,0,0,0.000793457,0.000305176,0.000152588,0,-0.000152588,-0.000305176,-0.00125122,-0.00109863,-0.0015564,-0.00186157,-0.00170898,-0.0015564,-0.0015564,-0.000946045,-0.000946045,-0.000305176,0,0,0.000610352,0.000457764,0.000457764,0.000457764,0,-0.000152588,-0.000610352,-0.00109863,-0.0015564,-0.00170898,-0.00250244,-0.00186157,-0.00250244,-0.00201416,-0.00234985,-0.0015564,-0.00140381,-0.00109863,-0.000152588,-0.000793457,0.000152588,-0.000152588,0.000305176,0.000305176,-0.000152588,0.000610352,-0.000946045,-0.000152588,-0.000152588,-0.000946045,-0.000793457,-0.000946045,-0.00125122,-0.00170898,-0.00186157,-0.00170898,-0.00186157,-0.00201416,-0.00234985,-0.00201416,-0.00234985,-0.00201416,-0.00186157,-0.00201416,-0.00109863,-0.00170898,-0.000152588,-0.000610352,0.000610352,0.000610352,0.000946045,0.00125122,0.00186157,0.0015564,0.00219727,0.00201416,0.00140381,0.0015564,0.000793457,0.000457764,-0.000152588,-0.000793457,-0.00125122,-0.0015564,-0.00186157,-0.00186157,-0.00201416,-0.00219727,-0.00186157,-0.00170898,-0.00201416,-0.00125122,-0.00109863,-0.000946045,-0.000946045,-0.000305176,-0.000457764,-0.000793457,0,-0.000946045,-0.000610352,-0.000793457,-0.000793457,-0.00125122,-0.000610352,-0.000946045,-0.000457764,0.000152588,0.000457764,0.000610352,0.00109863,0.000610352,0.000610352,0.000457764,0.000152588,-0.000793457,-0.000946045,-0.00170898,-0.00201416,-0.00265503,-0.00296021,-0.00265503,-0.00280762,-0.00186157,-0.00125122,-0.000793457,0.000305176,0.000946045,0.00170898,0.00170898,0.00186157,0.00219727,0.00125122,0.00125122,0.000610352,-0.000610352,-0.000610352,-0.00125122,-0.00170898,-0.00125122,-0.00170898,-0.000946045,-0.000152588,0,0.000793457,0.00109863,0.00170898,0.00186157,0.00140381,0.0015564,0.00140381,0.000305176,0,-0.000305176,-0.00140381,-0.00109863,-0.0015564,-0.0015564,-0.00125122,-0.000305176,-0.000152588,0.000305176,0.00125122,0.0015564,0.00170898,0.00170898,0.00125122,0.000946045,-0.000152588,-0.000457764,-0.00140381,-0.00219727,-0.00280762,-0.00326538,-0.00311279,-0.00311279,-0.00250244,-0.00219727,-0.0015564,-0.00125122,-0.000152588,0.000305176,0.000610352,0.000793457,0.000946045,0.000152588,0.000152588,-0.000610352,-0.00109863,-0.00201416,-0.0015564,-0.00234985,-0.00250244,-0.00201416,-0.00170898,-0.00125122,-0.00109863,-0.000457764,-0.000457764,-0.000305176,0.000152588,-0.000305176,-0.000305176,-0.000457764,-0.00125122,-0.00186157,-0.00219727,-0.00280762,-0.00341797,-0.00341797,-0.00360107,-0.00296021,-0.00265503,-0.00170898,-0.0015564,-0.000457764,0.000152588,0.000610352,0.000793457,0.000946045,0.00140381,0.000793457,0.000793457,-0.000305176,-0.000305176,-0.00140381,-0.00219727,-0.00219727,-0.00234985,-0.00296021,-0.00280762,-0.00234985,-0.00186157,-0.0015564,-0.000610352,-0.000152588,0.000305176,0.000793457,0.000946045,0.00109863,0.00109863,0.000610352,0.000152588,-0.000152588,-0.000946045,-0.000793457,-0.00186157,-0.00170898,-0.00201416,-0.00125122,-0.0015564,-0.000946045,-0.000457764,0.000793457,0.000610352,0.00125122,0.00125122,0.0015564,0.000793457,0.000946045,-0.000152588,-0.000793457,-0.00109863,-0.00201416,-0.00234985,-0.00201416,-0.00219727,-0.0015564,-0.00125122,-0.000457764,-0.000457764,0.000457764,0.000610352,0.000946045,0.00109863,0.000946045,0.000793457,0.000610352,0.000152588,0,-0.000610352,-0.000152588,-0.000793457,-0.000457764,-0.000793457,-0.000305176,-0.000793457,0.000152588,-0.000610352,-0.000793457,-0.000610352,-0.000305176,-0.00109863,-0.000946045,-0.0015564,-0.00170898,-0.00186157,-0.00170898,-0.00186157,-0.00170898,-0.00140381,-0.00125122,-0.000610352,-0.000610352,0.000457764,0,0.000457764,0.000457764,0,0.000305176,-0.000457764,-0.000457764,-0.000946045,-0.000946045,-0.00109863,-0.00140381,-0.000946045,-0.000793457,-0.000793457,-0.000457764,-0.000457764,-0.000305176,-0.000610352,-0.00109863,-0.000793457,-0.00186157,-0.00170898,-0.00234985,-0.00219727,-0.00265503,-0.00186157,-0.00186157,-0.00109863,-0.00109863,0,-0.000305176,0,0,0.000610352,0,0,-0.000152588,-0.000610352,-0.000457764,-0.000793457,-0.000946045,-0.000610352,-0.00109863,-0.000610352,-0.000946045,-0.000610352,-0.000305176,-0.000152588,-0.000457764,0.000305176,-0.000305176,-0.000305176,0.000152588,-0.000946045,-0.00125122,-0.000946045,-0.00170898,-0.00140381,-0.0015564,-0.00125122,-0.00140381,-0.000793457,-0.000457764,-0.000152588,-0.000305176,0.000610352,0,0.000610352,0.000610352,0.000793457,0.000457764,0.000793457,0.000793457,0.000152588,0.000152588,-0.000152588,-0.000946045,-0.000793457,-0.00170898,-0.00125122,-0.0015564,-0.00186157,-0.000946045,-0.00170898,-0.000610352,-0.000946045,0.000152588,0.000152588,0.000152588,0.000305176,0.000152588,0.000610352,0,0,-0.000793457,-0.000457764,-0.000793457,-0.00109863,-0.00125122,-0.00109863,-0.00125122,-0.000793457,-0.000610352,-0.000152588,-0.000305176,0.000152588,0,0.000457764,0,0.000152588,0,-0.000457764,-0.000793457,-0.000946045,-0.0015564,-0.00125122,-0.00201416,-0.00125122,-0.0015564,-0.00125122,-0.000946045,-0.000793457,-0.000152588,0.000305176,0.000305176,0.000610352,0.000610352,0.000305176,0.000457764,0,-0.000457764,-0.000457764,-0.000946045,-0.000793457,-0.00125122,-0.00125122,-0.00125122,-0.000946045,-0.00109863,-0.00109863,-0.000457764,-0.000793457,-0.000946045,-0.000457764,-0.000793457,-0.000610352,-0.00109863,-0.000610352,-0.00109863,-0.000793457,-0.000793457,-0.000793457,-0.00109863,-0.000305176,0,-0.000305176,0.000457764,0.000305176,0.000305176,0.000152588,0.000305176,0,0.000152588,-0.000457764,-0.000457764,-0.000946045,-0.000305176,-0.000946045,-0.000610352,-0.000305176,-0.000610352,0.000152588,-0.000305176,0.000305176,0.000152588,0.000946045,0.000610352,0.000610352,0.000152588,0.000946045,0.000152588,-0.000152588,-0.000305176,-0.00109863,-0.0015564,-0.0015564,-0.00186157,-0.00250244,-0.00201416,-0.00219727,-0.0015564,-0.0015564,-0.00109863,-0.000305176,0.000152588,0.000457764,0.00109863,0.00140381,0.00125122,0.00125122,0.00109863,0.000610352,0.000152588,-0.000305176,-0.000793457,-0.000793457,-0.00140381,-0.00170898,-0.00186157,-0.00170898,-0.00125122,-0.00109863,-0.00109863,-0.00109863,-0.000946045,-0.00109863,-0.00109863,-0.00125122,-0.0015564,-0.00201416,-0.00219727,-0.00234985,-0.00234985,-0.00234985,-0.00234985,-0.00234985,-0.00140381,-0.00109863,-0.00109863,-0.000305176,-0.000305176,0.000152588,0.000457764,0,0.000305176,-0.000457764,0,-0.000610352,-0.000610352,-0.00125122,-0.0015564,-0.00109863,-0.0015564,-0.00125122,-0.00109863,-0.00109863,-0.000610352,-0.000457764,0.000152588,0.000152588,0,0.000457764,-0.000152588,0,-0.000457764,-0.000793457,-0.00109863,-0.00170898,-0.00125122,-0.00186157,-0.0015564,-0.0015564,-0.000610352,-0.000152588,0.000457764,0.00109863,0.0015564,0.00201416,0.00219727,0.00250244,0.00186157,0.00140381,0.00140381,0.000152588,-0.000305176,-0.00109863,-0.00170898,-0.0015564,-0.00280762,-0.00186157,-0.00234985,-0.00170898,-0.00125122,-0.00109863,-0.000793457,-0.000305176,0,-0.000305176,0,-0.000152588,-0.000457764,-0.000793457,-0.00109863,-0.0015564,-0.0015564,-0.00170898,-0.0015564,-0.00186157,-0.00125122,-0.00125122,-0.000457764,-0.000305176,0.000152588,0.000305176,0.000793457,0.000610352,0.000793457,0.000152588,0,-0.000610352,-0.000305176,-0.00170898,-0.00170898,-0.00201416,-0.00219727,-0.00234985,-0.00186157,-0.00170898,-0.0015564,-0.000946045,-0.000610352,-0.000457764,-0.000152588,0.000305176,-0.000152588,0.000457764,-0.000305176,-0.000305176,-0.000152588,-0.000305176,-0.000457764,-0.000610352,-0.000457764,-0.000457764,-0.000457764,-0.000152588,-0.000305176,-0.000305176,-0.000457764,-0.000305176,-0.000610352,-0.000152588,-0.000610352,-0.000457764,-0.000457764,-0.00109863,-0.000457764,-0.000946045,-0.000305176,-0.000610352,0,-0.000457764,0.000305176,0.000152588,0.000457764,0.000610352,0.000610352,0.000457764,0.000305176,0.000305176,0.000152588,-0.000152588,-0.000152588,-0.00109863,-0.000305176,-0.000793457,-0.000457764,-0.000457764,-0.000457764,0,0.000305176,0.000793457,0.000305176,0.000946045,0.000793457,0.000457764,0.000793457,0,-0.000457764,-0.000793457,-0.00125122,-0.00125122,-0.00201416,-0.00170898,-0.00201416,-0.00201416,-0.00170898,-0.00140381,-0.00109863,-0.000457764,-0.000305176,-0.000457764,0.000152588,0,-0.000152588,0.000152588,0,-0.000457764,-0.000305176,-0.000457764,-0.000946045,0,-0.000610352,0,-0.000305176,-0.000152588,-0.000305176,-0.000457764,-0.000305176,-0.00109863,-0.000946045,-0.0015564,-0.00201416,-0.00170898,-0.00250244,-0.00234985,-0.00201416,-0.00219727,-0.0015564,-0.000946045,-0.00125122,-0.000152588,-0.000457764,0.000457764,0.000610352,0.000305176,0.000457764,0.000152588,0.000305176,-0.000305176,-0.000152588,-0.000610352,-0.000457764,-0.000457764,-0.000610352,0,0,0,0,0,0.000305176,0.000152588,-0.000152588,-0.000610352,-0.000457764,-0.00109863,-0.00125122,-0.000946045,-0.00140381,-0.00140381,-0.00140381,-0.00140381,-0.00140381,-0.00140381,-0.000946045,-0.00140381,-0.000946045,-0.00109863,-0.000610352,-0.000610352,-0.000152588,0,0.000305176,0.000457764,0.000793457,0.000946045,0.000305176,0.000610352,-0.000152588,-0.000152588,-0.000610352,-0.000946045,-0.00125122,-0.0015564,-0.00140381,-0.00186157,-0.00125122,-0.00125122,-0.00109863,-0.000457764,-0.000305176,-0.000457764,-0.000305176,0,-0.000457764,-0.000152588,-0.000946045,-0.000610352,-0.00140381,-0.00140381,-0.00125122,-0.0015564,-0.00109863,-0.00125122,-0.000610352,-0.000457764,-0.000152588,0,0.000305176,0.000793457,0.000152588,0.000457764,-0.000305176,-0.000152588,-0.000946045,-0.000946045,-0.00170898,-0.00140381,-0.00170898,-0.00140381,-0.00125122,-0.00109863,-0.00125122,-0.000610352,-0.000610352,-0.000793457,-0.000610352,-0.000610352,-0.000946045,-0.000793457,-0.000610352,-0.000946045,-0.000793457,-0.000793457,-0.000610352,-0.000305176,-0.000457764,0.000152588,-0.000610352,0.000152588,0,-0.000610352,-0.000305176,-0.000946045,-0.000793457,-0.0015564,-0.00125122,-0.0015564,-0.0015564,-0.00125122,-0.00125122,-0.000946045,-0.000610352,-0.000305176,-0.000457764,0.000305176,0,0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000793457,-0.00125122,-0.000946045,-0.000946045,-0.00125122,-0.000793457,-0.000610352,-0.000152588,0,0.000305176,0.000610352,0.000610352,0.000793457,0.000793457,0.000152588,0.000152588,0,-0.000610352,-0.000793457,-0.0015564,-0.0015564,-0.00219727,-0.00234985,-0.00250244,-0.00219727,-0.00250244,-0.0015564,-0.00186157,-0.000946045,-0.000610352,-0.000457764,0.000305176,0.000305176,0.000457764,0.000793457,0.000305176,0,0,-0.000610352,-0.000946045,-0.00125122,-0.00140381,-0.00170898,-0.00170898,-0.0015564,-0.00125122,-0.000793457,-0.00109863,-0.000457764,-0.000305176,-0.000152588,0.000457764,0,0,-0.000610352,-0.000793457,-0.00140381,-0.00186157,-0.00201416,-0.00186157,-0.00219727,-0.00201416,-0.00186157,-0.00125122,-0.000793457,-0.000305176,0,0.000152588,0.000610352,0.000610352,0.000946045,0.000610352,0.000457764,0.000305176,-0.000152588,0,-0.000793457,-0.000610352,-0.000946045,-0.000946045,-0.00109863,-0.000610352,-0.000946045,-0.000610352,-0.000793457,-0.000457764,-0.000457764,-0.000946045,-0.000457764,-0.000946045,-0.00109863,-0.000946045,-0.00140381,-0.00109863,-0.000946045,-0.0015564,-0.000793457,-0.00170898,-0.000793457,-0.00125122,-0.000946045,-0.000946045,-0.000946045,0.000152588,-0.000793457,0.000305176,-0.000152588,0,-0.000152588,-0.000152588,-0.000305176,-0.000610352,-0.000457764,-0.000793457,-0.00109863,-0.00125122,-0.00109863,-0.00109863,-0.00109863,-0.000946045,-0.000793457,-0.000457764,-0.000305176,0.000457764,-0.000305176,0.000457764,0.000152588,0.000305176,-0.000457764,-0.000152588,-0.000610352,-0.000610352,-0.000457764,-0.00125122,-0.000610352,-0.000793457,-0.000305176,0,0,0.000152588,0.000610352,0.000946045,0.000457764,0.000610352,0.000457764,-0.000152588,0.000152588,-0.000457764,-0.000305176,-0.00109863,-0.00125122,-0.00125122,-0.000946045,-0.00125122,-0.000946045,-0.00125122,-0.00109863,-0.000793457,-0.000610352,-0.000305176,-0.000305176,-0.000457764,-0.000946045,-0.000152588,-0.000610352,-0.000457764,-0.000610352,-0.000793457,-0.000793457,-0.00109863,-0.000610352,-0.000610352,-0.000946045,-0.000946045,-0.000305176,-0.00109863,-0.000610352,-0.000610352,-0.000305176,-0.000457764,-0.000457764,-0.000457764,-0.000457764,-0.000793457,-0.000152588,-0.000457764,-0.000946045,-0.000946045,-0.000946045,-0.00170898,-0.00109863,-0.00170898,-0.00170898,-0.00125122,-0.0015564,-0.0015564,-0.00125122,-0.000793457,-0.000457764,-0.000305176,0,0.000457764,0.000305176,0.000610352,0.000610352,0.000610352,0.000457764,0.000610352,0,-0.000152588,-0.000610352,-0.000793457,-0.000457764,-0.00109863,-0.00125122,-0.00140381,-0.00140381,-0.000793457,-0.00109863,-0.000946045,-0.000793457,-0.00109863,-0.000946045,-0.00125122,-0.000793457,-0.00125122,-0.00140381,-0.00109863,-0.00140381,-0.00125122,-0.000793457,-0.000457764,-0.000610352,0.000152588,-0.000152588,0.000610352,0.000152588,0.000457764,0.000457764,0.000305176,0.000305176,0,-0.000152588,0,-0.000610352,-0.000457764,-0.000610352,-0.000793457,-0.000793457,-0.000793457,-0.000946045,-0.000793457,-0.000946045,-0.000946045,-0.000946045,-0.000793457,-0.00109863,-0.00125122,-0.000946045,-0.00140381,-0.000610352,-0.00140381,-0.000610352,-0.00125122,-0.000305176,-0.000793457,-0.000457764,-0.000305176,0,-0.000152588,0.000457764,0,0.000152588,0.000457764,0,0.000305176,-0.000457764,0,-0.000793457,-0.000610352,-0.00109863,-0.00109863,-0.00109863,-0.00109863,-0.00125122,-0.00109863,-0.000793457,-0.00109863,-0.00125122,-0.000152588,-0.000793457,-0.000305176,-0.000610352,-0.000457764,-0.000305176,-0.000457764,-0.000305176,-0.000305176,-0.000610352,-0.000305176,-0.000152588,-0.000152588,0.000152588,-0.000457764,0,0.000152588,0.000152588,0.000152588,0,-0.000305176,-0.000305176,-0.000457764,-0.000305176,-0.00109863,-0.00109863,-0.000946045,-0.00125122,-0.000946045,-0.00109863,-0.00125122,-0.000457764,-0.000946045,-0.000610352,-0.000305176,-0.000946045,-0.00125122,-0.000457764,-0.000946045,-0.00109863,-0.00125122,-0.00109863,-0.000305176,-0.000610352,-0.000152588,0.000152588,0.000305176,0.000457764,0.000946045,0.00109863,0.000305176,0.000457764,0.000152588,-0.000305176,-0.000305176,-0.000793457,-0.00125122,-0.00125122,-0.00125122,-0.00170898,-0.000793457,-0.00109863,-0.00140381,-0.000457764,-0.000610352,0.000152588,-0.000305176,0,0.000305176,-0.000152588,-0.000152588,0,-0.000305176,-0.000152588,-0.000793457,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000152588,-0.000305176,0,0.000152588,0.000152588,0.000457764,0.000152588,0.000152588,0,-0.000946045,-0.000793457,-0.000793457,-0.00140381,-0.00140381,-0.00186157,-0.00170898,-0.0015564,-0.00109863,-0.00170898,-0.00109863,-0.000610352,-0.000610352,-0.000457764,-0.000152588,-0.000305176,0.000152588,0,0.000305176,-0.000305176,0.000152588,-0.000152588,0.000152588,0,0.000305176,0.000457764,0.000305176,0.000457764,0.000305176,0.000305176,0.000152588,0,-0.000946045,-0.000610352,-0.00125122,-0.000793457,-0.00140381,-0.00170898,-0.00140381,-0.00140381,-0.00125122,-0.00125122,-0.000457764,-0.000946045,-0.000152588,-0.000152588,0.000457764,0.000305176,0.000610352,0.000305176,0.000305176,0.000610352,-0.000152588,0.000152588,-0.000457764,-0.000610352,-0.000793457,-0.000946045,-0.000946045,-0.000946045,-0.000793457,-0.000946045,-0.000457764,-0.00109863,0,-0.000305176,-0.000457764,-0.000457764,-0.000793457,-0.000946045,-0.00125122,-0.0015564,-0.00186157,-0.00234985,-0.00234985,-0.00234985,-0.00186157,-0.00170898,-0.0015564,-0.000610352,-0.000457764,0.000305176,0.000457764,0.000793457,0.00125122,0.00140381,0.000610352,0.000457764,0.000152588,-0.000305176,-0.000946045,-0.00109863,-0.00170898,-0.00170898,-0.00140381,-0.00140381,-0.00140381,-0.000946045,-0.000793457,-0.000305176,-0.000305176,0.000152588,0,0.000152588,-0.000152588,0,-0.000457764,-0.000610352,-0.00109863,-0.000793457,-0.00109863,-0.00109863,-0.000793457,-0.00109863,-0.000305176,-0.000152588,0.000152588,-0.000152588,0.000457764,0.000305176,0.000457764,0.000305176,0,-0.000305176,-0.000610352,-0.000793457,-0.00125122,-0.00170898,-0.0015564,-0.00201416,-0.0015564,-0.00219727,-0.0015564,-0.00140381,-0.000946045,-0.000793457,0,-0.000610352,0.000152588,0,0,-0.000152588,0,-0.000793457,-0.000793457,-0.000793457,-0.00125122,-0.000946045,-0.00125122,-0.00109863,-0.00125122,-0.000457764,-0.000305176,-0.000305176,0,0.000152588,0.000305176,0,0,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.0015564,-0.00109863,-0.0015564,-0.00125122,-0.00109863,-0.00109863,-0.000946045,-0.000610352,-0.000305176,-0.000946045,-0.000305176,-0.000610352,-0.000152588,-0.000610352,-0.000457764,-0.000457764,-0.000305176,-0.000793457,-0.000610352,-0.000305176,-0.000305176,-0.000305176,0,-0.000457764,-0.000610352,-0.000305176,-0.000152588,-0.000793457,-0.00125122,-0.000793457,-0.00125122,-0.0015564,-0.000793457,-0.00201416,-0.00109863,-0.0015564,-0.00140381,-0.000793457,-0.000946045,-0.000946045,-0.000457764,-0.000305176,-0.000610352,-0.000152588,0,-0.000457764,-0.000610352,-0.000305176,-0.000793457,-0.000610352,-0.000793457,-0.000610352,-0.000793457,-0.000457764,-0.000610352,-0.000793457,-0.000457764,-0.000457764,-0.000305176,-0.000305176,-0.000457764,-0.000457764,-0.00109863,-0.000305176,-0.00109863,-0.00109863,-0.00109863,-0.00140381,-0.0015564,-0.00170898,-0.00125122,-0.0015564,-0.00140381,-0.00109863,-0.00109863,-0.000610352,-0.000305176,0.000152588,0.000305176,0.000152588,0.000793457,0.000457764,0.000793457,0.000457764,-0.000152588,-0.000152588,-0.000610352,-0.000610352,-0.000610352,-0.00109863,-0.00109863,-0.00109863,-0.00109863,-0.000946045,-0.00125122,-0.000457764,-0.000793457,-0.000946045,-0.000610352,-0.000457764,-0.000946045,-0.000457764,-0.000946045,-0.000610352,-0.000610352,-0.00109863,-0.000610352,-0.000610352,-0.000946045,-0.000793457,-0.000610352,-0.000610352,-0.000305176,-0.000305176,-0.000457764,-0.000305176,-0.000305176,-0.000305176,-0.000305176,-0.000793457,-0.000457764,-0.000793457,-0.000793457,-0.000457764,-0.000793457,-0.000793457,-0.000305176,-0.000946045,-0.000305176,-0.000610352,-0.000457764,-0.000946045,-0.000152588,-0.000793457,-0.000152588,-0.000305176,-0.000457764,-0.000305176,-0.000305176,0,-0.000457764,0,0.000152588,0.000152588,-0.000152588,0.000152588,-0.000610352,-0.000305176,-0.000305176,-0.000305176,-0.000457764,0,-0.00109863,-0.000305176,-0.000946045,-0.000610352,-0.000610352,-0.00109863,-0.000793457,-0.000457764,-0.000793457,-0.00109863,-0.000610352,-0.000610352,-0.000793457,-0.000793457,-0.000152588,-0.000305176,-0.000152588,0,-0.000152588,0.000152588,0.000152588,-0.000457764,-0.000152588,0,-0.000946045,-0.000610352,-0.000946045,-0.00109863,-0.000946045,-0.000946045,-0.00109863,-0.000457764,-0.000610352,-0.000457764,0.000152588,-0.000152588,0.000152588,0.000152588,0,0,-0.000305176,-0.000305176,-0.00109863,-0.000793457,-0.00170898,-0.00125122,-0.0015564,-0.00109863,-0.00125122,-0.000946045,-0.00109863,-0.000457764,-0.000152588,-0.000793457,0.000457764,0,0.000152588,0.000305176,0,-0.000152588,-0.000152588,-0.000152588,-0.000946045,-0.000457764,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.000457764,-0.000457764,-0.000152588,0.000152588,0.000610352,0.000457764,0,0.000305176,-0.000305176,-0.000152588,-0.000457764,-0.00140381,-0.00125122,-0.00186157,-0.00125122,-0.00219727,-0.00186157,-0.00186157,-0.00109863,-0.00140381,-0.000793457,-0.000610352,-0.000610352,-0.000457764,-0.000152588,0,-0.000457764,0,-0.000457764,-0.000610352,-0.000610352,-0.000610352,-0.000946045,-0.000793457,-0.00140381,-0.000610352,-0.00125122,-0.000457764,-0.000610352,-0.000610352,-0.000793457,-0.000305176,-0.000793457,0,-0.000946045,-0.000610352,-0.000793457,-0.00109863,-0.00109863,-0.000946045,-0.00125122,-0.000946045,-0.00125122,-0.000793457,-0.000793457,-0.000946045,-0.000457764,-0.000610352,-0.000152588,-0.000152588,-0.000152588,0.000305176,0,0.000305176,0.000305176,0.000610352,-0.000152588,0.000610352,0,0,0.000152588,-0.000457764,-0.000946045,-0.000793457,-0.000946045,-0.00109863,-0.00125122,-0.00109863,-0.00140381,-0.000946045,-0.00125122,-0.000793457,-0.000305176,-0.000457764,0.000152588,-0.000152588,-0.000305176,0,0,0,-0.000305176,-0.000457764,-0.000152588,-0.000305176,-0.000610352,-0.000305176,-0.000305176,-0.000152588,-0.000610352,-0.000305176,-0.000305176,-0.000152588,-0.000305176,-0.000610352,-0.000305176,-0.000946045,-0.00125122,-0.000946045,-0.00125122,-0.00109863,-0.000946045,-0.000946045,-0.00140381,-0.000457764,-0.000793457,-0.000610352,-0.000457764,0,0,0,-0.000305176,0.000152588,-0.000305176,0.000152588,-0.000152588,0,-0.000305176,0.000152588,-0.000610352,0.000457764,0.000152588,0.000152588,-0.000152588,-0.000152588,-0.000152588,-0.000152588,-0.000946045,-0.000793457,-0.00170898,-0.00125122,-0.00170898,-0.00125122,-0.00186157,-0.00140381,-0.00140381,-0.00125122,-0.000946045,-0.000457764,-0.000457764,-0.000610352,0,-0.000305176,0,-0.000305176,-0.000457764,-0.000457764,-0.000457764,-0.000457764,-0.000610352,-0.000305176,-0.000305176,-0.000610352,-0.000305176,-0.000305176,-0.000610352,-0.000305176,-0.00109863,-0.000610352,-0.00109863,-0.00109863,-0.00170898,-0.0015564,-0.00186157,-0.00234985,-0.00219727,-0.00170898,-0.00186157,-0.0015564,-0.00125122,-0.000946045,-0.00109863,-0.000457764,-0.000610352,-0.000152588,-0.000152588,-0.000152588,0,-0.000305176,0,-0.000457764,-0.000305176,-0.000457764,-0.000610352,-0.000152588,-0.000610352,-0.000152588,-0.000610352,-0.000610352,-0.000610352,-0.000610352,-0.000457764,-0.000793457,-0.000305176,-0.000946045,-0.000610352,-0.000610352,-0.00125122,-0.00125122,-0.00109863,-0.00109863,-0.00109863,-0.00109863,-0.0015564,-0.000793457,-0.000946045,-0.00109863,-0.000305176,-0.000610352,-0.000152588,0,0.000457764,0.000457764,0.000152588,0.000305176,0.000305176,0,-0.000610352,-0.000610352,-0.00109863,-0.00125122,-0.00170898,-0.00170898,-0.00170898,-0.00170898,-0.00201416,-0.0015564,-0.00109863,-0.00109863,-0.00109863,-0.000457764,-0.000457764,-0.000152588,-0.000610352,0,-0.000305176,-0.000457764,-0.000457764,-0.000793457,-0.000793457,-0.000946045,-0.00109863,-0.00109863,-0.00109863,-0.000793457,-0.000793457,-0.00109863,0,-0.000457764,-0.000457764,0,-0.000152588,0,0.000305176,-0.000457764,-0.000457764,-0.000152588,-0.00109863,-0.000457764,-0.000946045,-0.000946045,-0.00125122,-0.000946045,-0.00109863,-0.00109863,-0.000610352,-0.000793457,-0.000457764,-0.000610352,-0.000152588,-0.000152588,-0.000305176,0.000152588,0.000305176,0.000305176,0.000305176,0,0.000305176,-0.000152588,0.000152588,-0.000305176,-0.000305176,-0.000457764,-0.000946045,-0.000946045,-0.000946045,-0.00125122,-0.000946045,-0.00109863,-0.000610352,-0.00109863,-0.000457764,-0.000610352,-0.00109863,-0.000305176,-0.000457764,0,-0.000457764,-0.000305176,-0.000610352,-0.000793457,-0.000457764,-0.000457764,-0.000610352,-0.000610352,-0.000457764,-0.000793457,-0.000610352,-0.000152588,0.000152588,0.000152588,0.000152588,0,-0.000152588,0.000305176,-0.000152588,0.000152588,0,-0.000610352,-0.000457764,-0.000946045,-0.000946045,-0.000946045,-0.00109863,-0.00125122,-0.000610352,-0.000946045,-0.000152588,-0.000457764,0.000152588,-0.000457764,0,-0.000152588,-0.000305176,-0.000152588,-0.000305176,-0.000946045,-0.000457764,-0.00109863,-0.000946045,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000305176,-0.000305176,-0.000305176,0,-0.000610352,0.000457764,-0.000793457,-0.000946045,-0.000793457,-0.0015564,-0.00140381,-0.0015564,-0.0015564,-0.00140381,-0.00170898,-0.0015564,-0.00125122,-0.00125122,-0.000457764,-0.000457764,-0.000152588,-0.000457764,-0.000946045,-0.000152588,-0.000610352,0,-0.000457764,-0.000457764,-0.000946045,-0.000610352,-0.000610352,-0.000946045,-0.000152588,-0.000610352,-0.000305176,-0.000610352,-0.000793457,-0.000793457,-0.00125122,-0.000305176,-0.00109863,-0.000793457,-0.000946045,-0.00140381,-0.000793457,-0.00125122,-0.000457764,-0.00109863,-0.000946045,-0.00109863,-0.000946045,-0.000610352,-0.000610352,-0.00109863,-0.000152588,-0.000610352,-0.000610352,-0.000610352,-0.000305176,-0.000305176,-0.000305176,-0.000152588,-0.000152588,-0.000610352,-0.000793457,-0.000305176,-0.000610352,-0.000946045,-0.000305176,-0.00125122,-0.000610352,-0.00109863,-0.00109863,-0.00109863,-0.00109863,-0.000793457,-0.000946045,-0.000793457,-0.000793457,-0.000946045,-0.000610352,-0.000305176,-0.000305176,0,-0.000610352,-0.000152588,-0.000305176,-0.000457764,-0.000152588,-0.000457764,-0.000305176,-0.000793457,-0.000946045,-0.00109863,-0.000457764,-0.000946045,-0.00109863,-0.000946045,-0.000793457,-0.000610352,-0.000793457,-0.000152588,-0.000457764,-0.000793457,-0.000152588,-0.000793457,0,-0.000610352,-0.000610352,-0.000457764,-0.00125122,-0.00109863,-0.00140381,-0.000793457,-0.00109863,-0.000610352,-0.000610352,-0.000946045,0.000152588,-0.000152588,0.000305176,0.000305176,-0.000152588,0.000457764,0,0.000152588,-0.000457764,-0.000610352,-0.000610352,-0.00109863,-0.00125122,-0.00125122,-0.00125122,-0.00125122,-0.00140381,-0.000946045,-0.000946045,-0.000457764,-0.000152588,-0.000946045,0.000305176,-0.000610352,0.000152588,-0.000152588,-0.000457764,-0.000610352,-0.000152588,-0.000793457,-0.000946045,-0.00109863,-0.00125122,-0.00125122,-0.000946045,-0.00125122,-0.000610352,-0.00125122,-0.000610352,-0.000793457,0,-0.000305176,-0.000305176,-0.000305176,0.000152588,-0.000305176,-0.000457764,-0.000152588,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.000305176,-0.000610352,0,-0.000152588,0,-0.000152588,0.000457764,-0.000152588,-0.000152588,0,-0.000457764,-0.000610352,-0.000793457,-0.000793457,-0.00125122,-0.00140381,-0.00140381,-0.00125122,-0.00125122,-0.000946045,-0.000610352,-0.000610352,-0.000152588,0,0.000457764,0.000305176,0.000610352,0.000610352,0.000457764,0.000610352,0.000152588,-0.000305176,-0.000610352,-0.000457764,-0.000946045,-0.00125122,-0.000946045,-0.00140381,-0.0015564,-0.00125122,-0.00125122,-0.000793457,-0.000946045,-0.000793457,-0.000793457,-0.000610352,-0.000610352,-0.000610352,-0.000305176,-0.000946045,-0.000946045,-0.00109863,-0.000610352,-0.000610352,-0.000793457,-0.000610352,-0.000610352,-0.000152588,0,-0.000152588,-0.000305176,0.000457764,-0.000152588,-0.000152588,0,-0.000457764,-0.000305176,-0.000610352,-0.000610352,-0.000305176,-0.00109863,-0.000793457,-0.000793457,-0.00125122,-0.000793457,-0.000946045,-0.000793457,-0.00140381,-0.000793457,-0.000946045,-0.000793457,-0.000457764,-0.000793457,-0.000305176,-0.000305176,0,-0.000152588,0,0,0.000152588,0,-0.000305176,-0.000610352,0,-0.000457764,-0.000305176,-0.000610352,-0.000793457,-0.000793457,-0.000610352,-0.000610352,-0.000457764,-0.000793457,-0.000457764,-0.000793457,-0.000946045,-0.000793457,-0.000793457,-0.000793457,-0.000946045,-0.000793457,-0.00125122,-0.00109863,-0.000610352,-0.000610352,-0.000457764,-0.000610352,-0.000457764,-0.000457764,-0.000610352,0,-0.000457764,-0.000305176,-0.000457764,-0.000305176,-0.000457764,-0.000610352,-0.000305176,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.000946045,-0.000946045,-0.00125122,-0.00140381,-0.000793457,-0.000946045,-0.000946045,-0.00109863,-0.000946045,-0.000610352,-0.000946045,-0.000610352,-0.000152588,-0.000946045,-0.000457764,-0.000793457,0,-0.000152588,0,-0.000152588,-0.000610352,-0.000305176,-0.000152588,0.000305176,-0.000305176,-0.000305176,-0.000305176,-0.000457764,-0.000457764,-0.000457764,-0.000793457,-0.000793457,-0.00109863,-0.000793457,-0.000946045,-0.00140381,-0.000152588,-0.00140381,-0.000610352,-0.000610352,-0.000946045,-0.000152588,-0.000946045,-0.000152588,-0.000793457,-0.000610352,-0.000305176,-0.000457764,-0.000457764,-0.000793457,-0.000457764,0,-0.000610352,-0.000152588,0,0,0,-0.000305176,-0.000152588,-0.000152588,-0.000305176,-0.000457764,-0.000793457,-0.00109863,-0.00140381,-0.00125122,-0.0015564,-0.00125122,-0.00109863,-0.00140381,-0.000457764,-0.000610352,-0.000793457,-0.000610352,-0.000457764,-0.000152588,-0.000457764,0,-0.000152588,0,-0.000152588,-0.000305176,-0.000305176,-0.000152588,-0.000610352,-0.000152588,-0.000793457,0,-0.000610352,-0.000457764,-0.000457764,-0.000793457,-0.000457764,-0.000946045,-0.000457764,-0.000793457,-0.000793457,-0.000457764,-0.00109863,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.000946045,-0.000946045,-0.00109863,-0.000793457,-0.000946045,-0.000946045,-0.000793457,-0.00125122,-0.000457764,-0.00125122,-0.000305176,0,0,-0.000152588,0,-0.000152588,0.000152588,-0.000610352,-0.000457764,-0.000946045,-0.000793457,-0.00125122,-0.000946045,-0.00125122,-0.00140381,-0.00125122,-0.00170898,-0.000946045,-0.000610352,-0.000946045,-0.000457764,-0.00125122,-0.000305176,-0.000610352,-0.000152588,-0.000305176,-0.000152588,-0.000457764,-0.000305176,-0.000152588,-0.000305176,-0.000152588,-0.000305176,-0.000305176,-0.000305176,-0.000152588,0.000152588,-0.000305176,-0.000152588,0,-0.000610352,-0.000305176,-0.000457764,-0.000305176,-0.000610352,-0.000793457,-0.000946045,-0.00109863,-0.000793457,-0.00109863,-0.000610352,-0.000946045,-0.000610352,-0.00109863,-0.000457764,-0.000946045,-0.000457764,-0.000305176,-0.000610352,-0.000305176,-0.000457764,0,-0.000305176,-0.000305176,-0.000610352,-0.000305176,-0.000457764,-0.000305176,-0.000305176,-0.000305176,-0.000305176,-0.000946045,-0.000610352,-0.000610352,-0.000610352,-0.000793457,-0.000305176,-0.000946045,-0.000457764,-0.000946045,-0.000610352,-0.000610352,-0.000946045,-0.000610352,-0.000305176,-0.000946045,-0.000610352,-0.000793457,-0.000610352,-0.00109863,-0.000610352,-0.000610352,-0.000305176,-0.000457764,-0.000305176,-0.000305176,0.000152588,0,-0.000152588,-0.000305176,0,-0.000152588,0,-0.000305176,-0.000610352,-0.00125122,-0.000793457,-0.00109863,-0.00140381,-0.000946045,-0.00170898,-0.000793457,-0.00125122,-0.000946045,-0.000946045,-0.000793457,-0.00109863,0,-0.000793457,0,-0.000946045,-0.000152588,-0.000946045,-0.000946045,-0.000946045,-0.00109863,-0.000946045,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000152588,-0.000793457,0,-0.000152588,-0.000457764,-0.000152588,-0.000305176,-0.000793457,-0.000610352,-0.000946045,-0.000946045,-0.00109863,-0.0015564,-0.000946045,-0.000946045,-0.0015564,-0.000610352,-0.00109863,-0.000793457,-0.000305176,-0.000610352,-0.000152588,-0.000305176,-0.000152588,-0.000457764,-0.000610352,-0.000457764,-0.000457764,-0.000610352,-0.000457764,-0.000946045,-0.000610352,-0.000793457,-0.000793457,-0.000305176,0,-0.000152588,0.000305176,-0.000946045,0.000152588,-0.000305176,-0.000152588,-0.000610352,-0.000457764,-0.000793457,-0.00109863,-0.00109863,-0.00109863,-0.000946045,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000610352,-0.000152588,-0.000152588,0,0.000152588,-0.000457764,-0.000152588,0.000152588,-0.000152588,-0.000305176,-0.000457764,-0.000793457,-0.000946045,-0.000610352,-0.000946045,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.00109863,-0.000793457,-0.000610352,-0.00109863,-0.000457764,-0.00109863,-0.000610352,-0.000793457,-0.000946045,-0.000793457,-0.000610352,-0.00125122,-0.000793457,-0.000793457,-0.000946045,-0.000793457,-0.000610352,-0.000610352,-0.000457764,-0.000457764,-0.000152588,-0.000457764,-0.000152588,-0.000457764,-0.000152588,-0.000610352,-0.000457764,-0.000946045,-0.000610352,-0.000946045,-0.000305176,-0.000610352,-0.000305176,-0.000793457,-0.000610352,-0.000305176,0.000152588,0,-0.000152588,-0.000457764,-0.000610352,-0.000610352,-0.000457764,-0.000946045,-0.000793457,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.000457764,-0.000305176,-0.000457764,-0.000946045,-0.000305176,-0.000610352,-0.000152588,-0.000305176,-0.000610352,-0.000793457,-0.000793457,-0.000610352,-0.000946045,-0.000793457,-0.00109863,-0.000610352,-0.000610352,-0.000793457,-0.000793457,-0.000793457,-0.00125122,-0.000793457,-0.000610352,-0.000610352,-0.000610352,-0.000610352,-0.000946045,-0.000457764,-0.000946045,-0.000457764,-0.00109863,-0.000793457,-0.00125122,-0.000793457,-0.00170898,-0.000946045,-0.00109863,-0.000946045,-0.00125122,-0.00125122,-0.000946045,-0.000946045,-0.000457764,-0.000610352,-0.000610352,-0.000457764,-0.000305176,-0.000152588,-0.000152588,-0.000305176,-0.000305176,-0.000152588,-0.000152588,-0.000610352,-0.000305176,-0.000793457,-0.000793457,-0.000610352,-0.00109863,-0.000305176,-0.00109863,-0.000610352,-0.00109863,-0.000152588,-0.000793457,-0.000305176,-0.000457764,-0.000793457,-0.000793457,-0.000457764,-0.000610352,-0.000610352,-0.000793457,-0.000610352,-0.000457764,-0.000946045,-0.000305176,-0.000610352,-0.000457764,-0.000152588,0,0,0.000305176,-0.000305176,0,0.000152588,-0.000152588,-0.000152588,-0.000457764,-0.000457764,-0.000946045,-0.000793457,-0.000946045,-0.000946045,-0.000946045,-0.000946045,-0.00140381,-0.000610352,-0.00109863,-0.000946045,-0.000457764,-0.000610352,-0.000610352,-0.000610352,-0.000457764,-0.000152588,-0.000305176,0,0,0.000152588,-0.000152588,0,-0.000152588,-0.000152588,-0.000305176,-0.000305176,0,-0.000457764,-0.000793457,-0.000610352,-0.00125122,-0.000457764,-0.000946045,-0.000946045,-0.000610352,-0.000305176,-0.000946045,-0.000457764,-0.000946045,-0.000152588,0,0,-0.000610352,-0.000457764,-0.000457764,-0.000610352,-0.000610352,-0.000610352,-0.000152588,-0.000457764,-0.000305176,-0.000457764,0,-0.000457764,0,0,0,0.000305176,0.000305176,-0.000457764,0,-0.000610352,0.000152588,-0.000457764,-0.000610352,-0.00125122,-0.00125122,-0.00140381,-0.00125122,-0.00125122,-0.00186157,-0.000793457,-0.00140381,-0.000946045,-0.000946045,-0.000793457,-0.000305176,-0.000305176,-0.000152588,0,-0.000152588,-0.000152588,-0.000610352,-0.000457764,-0.000793457,-0.000457764,-0.000610352,-0.000793457,-0.000793457,-0.00109863,-0.000946045,-0.000457764,-0.000793457,-0.000610352,-0.000457764,-0.000610352,-0.000457764,-0.000457764,-0.000610352,-0.000152588,-0.00109863,-0.000946045,-0.00109863,-0.000946045,-0.000946045,-0.00125122,-0.000793457,-0.00140381,-0.00109863,-0.00109863,-0.000946045,-0.000610352,-0.000793457,-0.000152588,-0.000457764,0.000152588,-0.000305176,0.000305176,0,0,0.000793457,-0.000305176,-0.000152588,-0.000152588,-0.000305176,-0.000610352,-0.000946045,-0.000610352,-0.00109863,-0.000946045,-0.00125122,-0.000946045,-0.0015564,-0.000946045,-0.0015564,-0.000793457,-0.000946045,-0.000793457,-0.00109863,-0.000610352,-0.000946045,-0.000793457,-0.000793457,-0.000152588,-0.000946045,-0.000793457,-0.000793457,-0.000946045,-0.000946045,-0.000457764,-0.000946045,-0.000610352,-0.000610352,-0.000305176,-0.000610352,-0.000152588,-0.000457764,-0.000610352,-0.000610352,-0.000946045,-0.000793457,-0.00125122,-0.000793457,-0.00140381,-0.000610352,-0.00140381,-0.0015564,-0.00109863,-0.00125122,-0.00125122,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000457764,-0.000457764,0.000152588,-0.000305176,0,-0.000152588,-0.000152588,-0.000152588,0,-0.000457764,-0.000152588,-0.000610352,-0.000610352,-0.000610352,-0.000610352,-0.000610352,-0.000305176,-0.000152588,-0.000793457,-0.000610352,-0.000610352,-0.000305176,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.00109863,-0.00109863,-0.00109863,-0.00109863,-0.00140381,-0.00125122,-0.00140381,-0.00109863,-0.000793457,-0.000793457,-0.000610352,-0.000457764,-0.000457764,0,0,-0.000152588,0.000457764,-0.000152588,0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000793457,-0.000946045,-0.000946045,-0.00109863,-0.00109863,-0.000946045,-0.00109863,-0.000610352,-0.00109863,0,-0.000793457,0.000152588,-0.000610352,0.000152588,0,-0.000457764,-0.000152588,-0.000457764,-0.000610352,-0.000152588,-0.000305176,-0.000152588,-0.000457764,-0.000152588,-0.000152588,0.000152588,-0.000152588,0.000305176,-0.000305176,0,-0.000152588,-0.000152588,-0.000152588,-0.000793457,-0.000152588,-0.000946045,-0.000610352,-0.000610352,-0.000793457,-0.000457764,-0.000946045,-0.000610352,-0.000610352,-0.000793457,-0.000610352,-0.000305176,-0.00109863,-0.000610352,-0.000610352,-0.000610352,-0.000457764,-0.000457764,-0.000457764,-0.000152588,-0.000610352,-0.000152588,-0.000152588,-0.000305176,-0.000457764,-0.000305176,-0.000610352,-0.000457764,-0.000610352,-0.000793457,-0.000610352,-0.000610352,-0.000457764,-0.000946045,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.000152588,-0.000946045,-0.000610352,-0.000610352,-0.000610352,-0.000152588,-0.00109863,0,-0.000610352,-0.000457764,-0.000152588,-0.000610352,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.000610352,-0.000793457,-0.000610352,-0.00109863,-0.000793457,-0.000946045,-0.000946045,-0.000610352,-0.000946045,-0.000946045,-0.000793457,-0.000793457,-0.000457764,-0.000793457,-0.000610352,-0.000457764,-0.000610352,-0.000793457,-0.000457764,-0.000946045,-0.00109863,-0.000946045,-0.00109863,-0.00125122,-0.000793457,-0.00125122,-0.000793457,-0.000793457,-0.000946045,-0.000305176,-0.000793457,-0.000305176,-0.000305176,-0.000152588,-0.000305176,-0.000457764,-0.000793457,-0.000305176,-0.000793457,-0.000793457,-0.000793457,-0.00109863,-0.000610352,-0.00109863,-0.000946045,-0.000610352,-0.000457764,-0.000610352,-0.000305176,-0.000305176,-0.000457764,-0.000305176,-0.000457764,-0.000152588,-0.000610352,-0.000457764,-0.000305176,-0.000793457,-0.000305176,-0.00109863,-0.000946045,-0.000457764,-0.000610352,-0.000793457,-0.000457764,-0.000793457,-0.000305176,-0.000793457,-0.000305176,-0.000793457,-0.000152588,-0.000946045,-0.000457764,-0.000457764,-0.000457764,-0.000610352,-0.000457764,-0.000610352,-0.000793457,-0.000610352,-0.000610352,-0.000610352,-0.000457764,-0.000457764,-0.000610352,-0.000793457,-0.000793457,-0.000793457,-0.000793457,-0.000946045,-0.000457764,-0.00109863,-0.000305176,-0.000793457,-0.000610352,-0.000457764,-0.000457764,-0.000305176,-0.000610352,-0.000152588,-0.000610352,-0.000305176,-0.000305176,-0.000610352,-0.000610352,-0.000457764,-0.000946045,-0.000305176,-0.000793457,-0.000457764,-0.000946045,-0.000305176,-0.000610352,-0.000305176,-0.000305176,-0.000305176,-0.000305176,-0.000610352,0,-0.000793457,-0.000457764,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.000457764,-0.000457764,-0.000457764,-0.000305176,-0.000793457,-0.000152588,-0.000457764,-0.000152588,-0.000152588,-0.000152588,0,0,0,-0.000152588,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000457764,-0.000610352,-0.000457764,-0.000793457,-0.000610352,-0.000152588,-0.000610352,-0.000305176,-0.000610352,-0.000305176,-0.000793457,-0.000152588,-0.000610352,-0.000305176,-0.000457764,-0.000152588,-0.000793457,-0.000457764,-0.000457764,-0.000793457,-0.000305176,-0.000610352,-0.000946045,-0.000610352,-0.000610352,-0.000793457,-0.000305176,-0.000793457,-0.000457764,-0.000305176,-0.000610352,-0.000457764,-0.000457764,-0.000457764,-0.000610352,-0.000610352,-0.000946045,-0.000457764,-0.00109863,-0.000610352,-0.000946045,-0.000793457,-0.000946045,-0.000793457,-0.000946045,-0.000793457,-0.000793457,-0.000946045,-0.000610352,-0.000457764,-0.000793457,-0.000457764,-0.000457764,-0.000610352,-0.000305176,-0.000305176,-0.000457764,-0.000610352,-0.000305176,-0.000610352,-0.000457764,-0.000610352,-0.000305176,-0.000946045,-0.000305176,-0.000946045,-0.000152588,-0.000793457,-0.000610352,-0.000457764,-0.000793457,-0.000946045,-0.000610352,-0.000946045,-0.00109863,-0.000793457,-0.000946045,-0.00109863,-0.000946045,-0.000793457,-0.000946045,-0.000946045,-0.000457764,-0.000610352,-0.000152588,-0.000610352,-0.000305176,-0.000152588,-0.000610352,-0.000152588,-0.000793457,-0.000610352,-0.000610352,-0.000610352,-0.000946045,-0.000793457,-0.000457764,-0.00109863,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.000793457,-0.000793457,-0.000610352,-0.000946045,-0.000793457,-0.00109863,-0.000793457,-0.000610352,-0.00109863,-0.000457764,-0.000457764,-0.000457764,-0.000610352,-0.000305176,-0.000152588,0,-0.000305176,0,-0.000457764,-0.000305176,-0.000152588,-0.000457764,-0.000305176,-0.000610352,-0.000793457,-0.000305176,-0.000305176,-0.000610352,-0.000610352,-0.000305176,-0.000457764,-0.000793457,-0.000610352,-0.000457764,-0.000793457,-0.000457764,-0.000457764,-0.00109863,-0.000457764,-0.000946045,-0.000610352,-0.000457764,-0.000793457,-0.000610352,-0.000457764,-0.000152588,-0.000610352,-0.000305176,-0.000152588,-0.000305176,-0.000305176,-0.000152588,-0.000305176,-0.000152588,-0.000610352,-0.000457764,-0.000457764,-0.000305176,-0.000610352,-0.000305176,-0.000305176,-0.000946045,-0.000305176,-0.000946045,-0.000610352,-0.000946045,-0.000457764,-0.00125122,-0.000305176,-0.000946045,-0.000305176,-0.000610352,-0.000457764,-0.000457764,-0.000457764,-0.000305176,-0.000457764,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000457764,-0.000305176,0,-0.000305176,-0.000152588,-0.000305176,-0.000152588,-0.000152588,-0.000152588,-0.000305176,-0.000457764,-0.000457764,-0.000793457,-0.000305176,-0.000793457,-0.000946045,-0.000610352,-0.000946045,-0.000793457,-0.000610352,-0.000610352,-0.000610352,0,-0.000305176,0,-0.000152588,0.000305176,-0.000457764,0.000152588,0,-0.000305176,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000305176,-0.000457764,-0.000610352,-0.000152588,-0.000457764,-0.000152588,-0.000610352,0,-0.000610352,-0.000457764,-0.000457764,-0.000946045,-0.000793457,-0.000946045,-0.000946045,-0.000946045,-0.00125122,-0.000946045,-0.000610352,-0.000793457,-0.000946045,-0.000457764,-0.000457764,-0.000305176,-0.000152588,-0.000457764,0.000152588,-0.000305176,-0.000305176,0,-0.000457764,-0.000610352,-0.000305176,-0.000610352,-0.000457764,-0.000793457,-0.000305176,-0.000793457,-0.000457764,-0.000610352,-0.000610352,-0.000305176,-0.000457764,-0.000793457,-0.000457764,-0.000457764,-0.000793457,-0.000152588,-0.000305176,-0.000610352,-0.000305176,-0.000793457,-0.000305176,-0.000793457,-0.000305176,-0.000610352,-0.000793457,-0.000305176,-0.000457764,-0.000610352,-0.000305176,-0.000610352,-0.000457764,-0.000152588,-0.000610352,-0.000305176,-0.000457764,-0.000457764,-0.000457764,-0.000610352,-0.000457764,-0.000793457,-0.000610352,-0.000457764,-0.000610352,-0.000152588,-0.000793457,-0.000457764,-0.000457764,-0.000610352,-0.000457764,-0.000946045,-0.000457764,-0.00109863,-0.000793457,-0.000946045,-0.000793457,-0.000793457,-0.000946045,-0.000457764,-0.000610352,-0.000305176,-0.000457764,-0.000305176,-0.000457764,-0.000152588,-0.000305176,-0.000152588,-0.000152588,-0.000610352,-0.000152588,-0.000610352,-0.000610352,-0.000793457,-0.000305176,-0.00125122,-0.000457764,-0.000793457,-0.000793457,-0.000305176,-0.000793457,-0.000152588,-0.000610352,-0.000152588,-0.000305176,-0.000610352,0,-0.000457764,-0.000793457,-0.000305176,-0.000946045,-0.000457764,-0.000610352,-0.000793457,-0.000457764,-0.000610352,-0.000152588,-0.000457764,-0.000457764,-0.000152588,-0.000305176,-0.000793457,-0.000305176,-0.000457764,-0.000793457,-0.000457764,0,-0.00125122,-0.000152588,-0.000793457,-0.000793457,-0.000610352,-0.000793457,-0.000457764,-0.000946045,-0.000457764,-0.000305176,-0.000793457,-0.000305176,-0.000457764,-0.000305176,-0.000457764,0,-0.000457764,-0.000152588,-0.000457764,-0.000305176,-0.000457764,-0.000305176,-0.000457764,-0.000610352,-0.000793457,-0.000610352,-0.000152588,-0.000610352,-0.000305176,-0.000305176,-0.000305176,0,-0.000305176,-0.000457764,0.000152588,-0.000610352,0,-0.000793457,-0.000610352,-0.000305176,-0.000946045,-0.000610352,-0.000946045,-0.000793457,-0.000610352,-0.000946045,-0.000793457,-0.000152588,-0.000610352,-0.000305176,-0.000457764,-0.000305176,-0.000305176,-0.000610352,-0.000305176,-0.000610352,-0.000793457,-0.000793457,-0.00109863,-0.00125122,-0.00109863,-0.00109863,-0.00125122,-0.00109863,-0.00109863,-0.000946045,-0.000793457,-0.000946045,-0.000793457,-0.000793457,-0.000457764,-0.000793457,-0.000793457,-0.000793457,-0.00109863,-0.000457764,-0.00140381,-0.000457764,-0.0015564,-0.000946045,-0.00125122,-0.00109863,-0.000946045,-0.000946045,-0.00109863,-0.000610352,-0.000793457,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.000793457,-0.000457764,-0.00109863,-0.00109863,-0.000946045,-0.00125122,-0.00109863,-0.00140381,-0.00109863,-0.000946045,-0.00109863,-0.000305176,-0.00109863,-0.000305176,-0.000793457,-0.000305176,-0.000793457,-0.000610352,-0.000610352,-0.000457764,-0.000793457,-0.000793457,-0.000457764,-0.00109863,-0.000457764,-0.000793457,-0.000457764,-0.000793457,-0.000610352,-0.000305176,-0.000457764,-0.000610352,-0.000305176,-0.000610352,-0.000793457,-0.000610352,-0.000946045,-0.000946045,-0.000946045,-0.00109863,-0.000946045,-0.000946045,-0.000793457,-0.000610352,-0.000793457,-0.000610352,-0.000457764,-0.000610352,-0.000305176,-0.000793457,-0.000305176,-0.000793457,-0.000457764,-0.000946045,-0.000457764,-0.000793457,-0.000610352,-0.000610352,-0.000793457,-0.000793457,-0.000152588,-0.000946045,-0.000610352,-0.000610352,-0.000305176,-0.000793457,-0.000457764,-0.000946045,-0.000793457,-0.000610352,-0.000946045,-0.000793457,-0.000457764,-0.00125122,-0.000152588,-0.00109863,-0.000305176,-0.000457764,-0.000610352,-0.000457764,-0.000793457,-0.000305176,-0.000793457,-0.000793457,-0.000793457,-0.000610352,-0.000610352,-0.000610352,-0.000793457,-0.000457764,-0.000457764,-0.000793457,0,-0.000610352,0,-0.000610352,-0.000305176,-0.000152588,-0.000793457,0,-0.000793457,-0.000610352,-0.000305176,-0.000793457,-0.000610352,-0.000457764,-0.000946045,-0.000152588,-0.000610352,-0.000457764,-0.000610352,-0.000610352,-0.000305176,-0.000457764,-0.000610352,-0.000305176,-0.000793457,-0.000152588,-0.000457764,-0.000457764,-0.000305176,-0.000305176,-0.000457764,-0.000610352,-0.000152588,-0.000457764,-0.000152588,-0.000457764,-0.000457764,-0.000305176,-0.000457764,-0.000457764,-0.000610352,0,-0.000793457,-0.000610352,-0.000457764,-0.000305176,-0.000946045,-0.000457764,-0.000610352,-0.000610352,-0.000610352,-0.000305176,-0.000610352,-0.000305176,-0.000457764,-0.000793457,-0.000152588,-0.000793457,-0.000305176};
freunde_baryton = (freunde_baryton_0):((!,_));
freunde_baryton_rtable_0(r) = (freunde_baryton_0,r):rdtable;
|
|
c008da3fefe3ed031ef6455ae0e5049d5b1a16195e853dbd04a4a4006aff2026 | grame-cncm/GameLAN | Atomicro.dsp | declare name "Atomicro";
declare author "Developpement Grame - CNCM par Elodie Rabibisoa et Romain Constant.";
import("stdfaust.lib");
process = _ : *(0.5),fade_in : * : wr_index <: idelay_drywet,_ : select2(by_pass_delay);
// max size of buffer to be recorded
size = int(211680); // 4.8 seconds
/*------------------- Recording counter ------------------------*/
// increment of 1 (max = size+1) while record > 0 :
rec_counter = (0):+~(+(1): * (record)): min(size);
/*--------------------- Fade in / Fade out -----------------------*/
record = checkbox ("h:[0]/Record");
time_fade = 0.1;
base_amp = 1/(ma.SR * time_fade);
fade_in = select2(record,-1*base_amp,base_amp):+~(min(1):max(base_amp));
/*--------------------- Read/Write buffer --------------------------*/
play = checkbox ("h:[0]/Play");
speed = int(1);
count_play = (fmod(_, select2(grain_mode, size, grain_size))~(+(speed) : *(play))) + (grain_start * grain_mode); // switch between normal and granulation mode
// reverse mode :
reverse_mode = checkbox("h:[1]/Reverse");
play_counter = count_play <: select2(reverse_mode, _, (select2(grain_mode, size, grain_size + grain_start)-_ <: select2(grain_mode, _, +(grain_start - grain_size))));
// buffer :
wr_index = rwtable(size+1, 0.0, windex, _, rindex)
with {
rindex = play_counter:int;
windex = rec_counter:int;
};
/* -------------------- Granulation mode ---------------------------*/
grain_mode = checkbox("h:[1]/Granulation"):int;
grain_size = hslider("Grain size [hidden:1][acc:1 1 -8 0 8]", ((size/44100)/2), 0.005, (size/44100), 0.001) * (ma.SR): min(size-1) : max(110) : int;
grain_start = hslider("Grain start [hidden:1][acc:0 0 -8 0 8]", ((size/44100)/2), 0, (size/44100), 0.001) * (ma.SR) : min(size - (grain_size+1)) : max(grain_size+1) : int;
/* -------------------- Delay -----------------------------------*/
idelay = ((+ : de.sdelay(N, interp, dtime)) ~ *(fback))
with {
N = int(2^19); // => max delay = number of samples
interp = (75)*ma.SR*(0.001);
dtime = (1800)*ma.SR*(0.001);
fback = 0.5; // 50%
};
dry_wet(x,y) = (1-c)*x + c*y
with {
c = 0.5;
};
idelay_drywet = _<: _ , idelay : dry_wet;
by_pass_delay = 1-(checkbox("h:[2]/Delay"));
| https://raw.githubusercontent.com/grame-cncm/GameLAN/8d1dc26d709d721d27ec1156fbb66b03478f2529/atomicro/Atomicro.dsp | faust | max size of buffer to be recorded
4.8 seconds
------------------- Recording counter ------------------------
increment of 1 (max = size+1) while record > 0 :
--------------------- Fade in / Fade out -----------------------
--------------------- Read/Write buffer --------------------------
switch between normal and granulation mode
reverse mode :
buffer :
-------------------- Granulation mode ---------------------------
-------------------- Delay -----------------------------------
=> max delay = number of samples
50% | declare name "Atomicro";
declare author "Developpement Grame - CNCM par Elodie Rabibisoa et Romain Constant.";
import("stdfaust.lib");
process = _ : *(0.5),fade_in : * : wr_index <: idelay_drywet,_ : select2(by_pass_delay);
rec_counter = (0):+~(+(1): * (record)): min(size);
record = checkbox ("h:[0]/Record");
time_fade = 0.1;
base_amp = 1/(ma.SR * time_fade);
fade_in = select2(record,-1*base_amp,base_amp):+~(min(1):max(base_amp));
play = checkbox ("h:[0]/Play");
speed = int(1);
reverse_mode = checkbox("h:[1]/Reverse");
play_counter = count_play <: select2(reverse_mode, _, (select2(grain_mode, size, grain_size + grain_start)-_ <: select2(grain_mode, _, +(grain_start - grain_size))));
wr_index = rwtable(size+1, 0.0, windex, _, rindex)
with {
rindex = play_counter:int;
windex = rec_counter:int;
};
grain_mode = checkbox("h:[1]/Granulation"):int;
grain_size = hslider("Grain size [hidden:1][acc:1 1 -8 0 8]", ((size/44100)/2), 0.005, (size/44100), 0.001) * (ma.SR): min(size-1) : max(110) : int;
grain_start = hslider("Grain start [hidden:1][acc:0 0 -8 0 8]", ((size/44100)/2), 0, (size/44100), 0.001) * (ma.SR) : min(size - (grain_size+1)) : max(grain_size+1) : int;
idelay = ((+ : de.sdelay(N, interp, dtime)) ~ *(fback))
with {
interp = (75)*ma.SR*(0.001);
dtime = (1800)*ma.SR*(0.001);
};
dry_wet(x,y) = (1-c)*x + c*y
with {
c = 0.5;
};
idelay_drywet = _<: _ , idelay : dry_wet;
by_pass_delay = 1-(checkbox("h:[2]/Delay"));
|
b86e99668bfb63b0ca34cd108b89a56548e0eafec072a10fd642ae22f2b68ff1 | grame-cncm/GameLAN | Sinusoide.dsp | declare name "Sinusoide";
declare author "Developpement Grame - CNCM par Elodie Rabibisoa et Romain Constant.";
import ("stdfaust.lib");
process = mode_switch : os.osc * 0.333 * volume <: sinus_reverb,_ : dry_wet <: limiter :>_ * on_off;
on_off = checkbox("[1]ON / OFF");
freq_slide = vslider("Slide [unit:Hz][acc:0 0 -10 0 10][hidden:1]", freq(5), freq(0), freq(10), 0.001) : si.smooth(0.998);
freq_scale = vslider("Radio [unit:Hz][acc:0 0 -10 0 10][hidden:1]", 1, 0, (N-1), 1);
volume = hslider("Volume [hidden:1][acc:1 0 -9 0 10]", 0.35, 0, 0.7, 0.001):si.smooth(0.991):min(1):max(0);
// Default mode = slide (0)
toggle_mode = checkbox("[0]SLIDE / SCALE");
mode_switch = select2(toggle_mode, freq_slide, scale);
//----------------- Frequencies --------------------//
N = 11;
scale = par(i, N, freq(i) * choice(i)) :>_;
choice(n) = abs(freq_scale - n) < 0.5;
freq(0) = 523.5;
freq(1) = 587.3;
freq(2) = 622.3;
freq(3) = 784;
freq(4) = 830.6;
freq(5) = 1046.5;
freq(6) = 1174.7;
freq(7) = 1244.5;
freq(8) = 1568;
freq(9) = 1661.2;
freq(10) = 2093;
//----------------- Limiter -----------------------//
limiter(x,y) = x*coeff,y*coeff
with {
epsilon = 1/(44100*1.0);
peak = max(abs(x),abs(y)) : max ~ -(epsilon);
coeff = 1.0/max(1.0,peak);
};
//------------------ Reverb ----------------------//
sinus_reverb = _<: instrReverb :>_;
instrReverb = _,_ <: *(reverbGain),*(reverbGain),*(1 - reverbGain),*(1 - reverbGain) :
re.zita_rev1_stereo(rdel,f1,f2,t60dc,t60m,fsmax),_,_ <: _,!,_,!,!,_,!,_ : +,+
with {
reverbGain = 0.4;
roomSize = 2;
rdel = 20;
f1 = 200;
f2 = 6000;
t60dc = roomSize*3;
t60m = roomSize*2;
fsmax = 48000;
};
dry_wet(x,y) = (x*c) + (y*(1-c)) with {
c = vslider("[1] Dry/Wet Mix [hidden:1][style:knob]", 1,0,1.0,0.01) : si.smoo;
};
| https://raw.githubusercontent.com/grame-cncm/GameLAN/8d1dc26d709d721d27ec1156fbb66b03478f2529/sinusoide/Sinusoide.dsp | faust | Default mode = slide (0)
----------------- Frequencies --------------------//
----------------- Limiter -----------------------//
------------------ Reverb ----------------------// | declare name "Sinusoide";
declare author "Developpement Grame - CNCM par Elodie Rabibisoa et Romain Constant.";
import ("stdfaust.lib");
process = mode_switch : os.osc * 0.333 * volume <: sinus_reverb,_ : dry_wet <: limiter :>_ * on_off;
on_off = checkbox("[1]ON / OFF");
freq_slide = vslider("Slide [unit:Hz][acc:0 0 -10 0 10][hidden:1]", freq(5), freq(0), freq(10), 0.001) : si.smooth(0.998);
freq_scale = vslider("Radio [unit:Hz][acc:0 0 -10 0 10][hidden:1]", 1, 0, (N-1), 1);
volume = hslider("Volume [hidden:1][acc:1 0 -9 0 10]", 0.35, 0, 0.7, 0.001):si.smooth(0.991):min(1):max(0);
toggle_mode = checkbox("[0]SLIDE / SCALE");
mode_switch = select2(toggle_mode, freq_slide, scale);
N = 11;
scale = par(i, N, freq(i) * choice(i)) :>_;
choice(n) = abs(freq_scale - n) < 0.5;
freq(0) = 523.5;
freq(1) = 587.3;
freq(2) = 622.3;
freq(3) = 784;
freq(4) = 830.6;
freq(5) = 1046.5;
freq(6) = 1174.7;
freq(7) = 1244.5;
freq(8) = 1568;
freq(9) = 1661.2;
freq(10) = 2093;
limiter(x,y) = x*coeff,y*coeff
with {
epsilon = 1/(44100*1.0);
peak = max(abs(x),abs(y)) : max ~ -(epsilon);
coeff = 1.0/max(1.0,peak);
};
sinus_reverb = _<: instrReverb :>_;
instrReverb = _,_ <: *(reverbGain),*(reverbGain),*(1 - reverbGain),*(1 - reverbGain) :
re.zita_rev1_stereo(rdel,f1,f2,t60dc,t60m,fsmax),_,_ <: _,!,_,!,!,_,!,_ : +,+
with {
reverbGain = 0.4;
roomSize = 2;
rdel = 20;
f1 = 200;
f2 = 6000;
t60dc = roomSize*3;
t60m = roomSize*2;
fsmax = 48000;
};
dry_wet(x,y) = (x*c) + (y*(1-c)) with {
c = vslider("[1] Dry/Wet Mix [hidden:1][style:knob]", 1,0,1.0,0.01) : si.smoo;
};
|
7385675edb060a12d4db66cd8195700b9317081d2da03d21396afe6a53d47feb | tomara-x/magi | cmp.dsp | //skinning cats for funzies
if1 = _,_,_ : (_ != 0.0) , ro.cross(2) : select2 : _;
if2 = (_ == 0.0),_,_ : select2;
if3(cond,then,else) = select2((cond == 0.0),then,else);
//comparator distortion
cmpdst(in,op,thr) = op(in,thr);
// process = cmpdst(_,>,0.1);
| https://raw.githubusercontent.com/tomara-x/magi/bcf22a4ef23899cd8ce3bf5e08e374994907f81a/practice/cmp.dsp | faust | skinning cats for funzies
comparator distortion
process = cmpdst(_,>,0.1); | if1 = _,_,_ : (_ != 0.0) , ro.cross(2) : select2 : _;
if2 = (_ == 0.0),_,_ : select2;
if3(cond,then,else) = select2((cond == 0.0),then,else);
cmpdst(in,op,thr) = op(in,thr);
|
7d863baebc6c3d85f874a3814d7cdf49b884d5d4f0df34b11f0ec759c5430b09 | anwaldt/sound_synthesis_faust | delay_example.dsp | // delay_example.dsp
import("stdfaust.lib");
// get the sample rate
SR = fconstant(int fSamplingFreq, <math.h>);
delay = hslider("Delay[samples]",0, 0, 10000, 1);
sig = os.lf_saw(1);
process = sig <: _,(_ , delay : @);
| https://raw.githubusercontent.com/anwaldt/sound_synthesis_faust/8b6ac5493e616b258416d9140991f0161ab6b391/faust/Basics/delay_example.dsp | faust | delay_example.dsp
get the sample rate |
import("stdfaust.lib");
SR = fconstant(int fSamplingFreq, <math.h>);
delay = hslider("Delay[samples]",0, 0, 10000, 1);
sig = os.lf_saw(1);
process = sig <: _,(_ , delay : @);
|
94ab1b6f31a764a27bd2e4fd44ebacc1274d114a32f337aa466cf734bf1eab08 | anwaldt/sound_synthesis_faust | white_tone.dsp | // white_tone.dsp
//
// Henrik von Coler
// 2021-07-04
import("all.lib");
// Control parameters:
freq = hslider("freq Hz", 50, 20, 1000, 1) : si.smoo; // Hz
gate = button("gate");
// processing elements for excitation:
diffgtz(x) = (x-x') > 0;
decay(n,x) = x - (x>0)/n;
release(n) = + ~ decay(n);
trigger(n) = diffgtz : release(n) : > (0.0);
P = SR/freq;
// Resonator:
resonator = (+ : delay(4096, P) * gate) ~ _;
// processing function:
process = noise : *(gate : trigger(P)): resonator <: _,_; | https://raw.githubusercontent.com/anwaldt/sound_synthesis_faust/6fc959e4e45701a56a44a309fbf2f7df0dfe8aee/faust/Physical/karplus_strong/white_tone.dsp | faust | white_tone.dsp
Henrik von Coler
2021-07-04
Control parameters:
Hz
processing elements for excitation:
Resonator:
processing function: |
import("all.lib");
gate = button("gate");
diffgtz(x) = (x-x') > 0;
decay(n,x) = x - (x>0)/n;
release(n) = + ~ decay(n);
trigger(n) = diffgtz : release(n) : > (0.0);
P = SR/freq;
resonator = (+ : delay(4096, P) * gate) ~ _;
process = noise : *(gate : trigger(P)): resonator <: _,_; |
48e18ecfb66868472c9c192f7a881a9a70fd40100308867eaec87bb419c8492f | anwaldt/sound_synthesis_faust | unit_delay.dsp | // delay_example.dsp
import("stdfaust.lib");
// get the sample rate
SR = fconstant(int fSamplingFreq, <math.h>);
delay = hslider("Delay[samples]",0, 0, 10000, 1);
sig = os.lf_rawsaw(1);
process = sig; | https://raw.githubusercontent.com/anwaldt/sound_synthesis_faust/6fc959e4e45701a56a44a309fbf2f7df0dfe8aee/faust/Basics/unit_delay.dsp | faust | delay_example.dsp
get the sample rate |
import("stdfaust.lib");
SR = fconstant(int fSamplingFreq, <math.h>);
delay = hslider("Delay[samples]",0, 0, 10000, 1);
sig = os.lf_rawsaw(1);
process = sig; |
1f8e132792fae7b92b3e87d5a51230bfc35d3b208decd0d40962be06be291e8c | anwaldt/sound_synthesis_faust | parallel_example.dsp | import("stdfaust.lib");
freq = hslider("Cutoff Frequency",100, 10, 1000, 0.001);
sig1 = os.square(50);
sig2 = os.square(70);
filt = fi.lowpass(5,freq);
process = (sig1:filt),(sig2:filt); | https://raw.githubusercontent.com/anwaldt/sound_synthesis_faust/706c5eec4114ec925e7d3b46f3a353886e956fde/faust/Basics/parallel_example.dsp | faust | import("stdfaust.lib");
freq = hslider("Cutoff Frequency",100, 10, 1000, 0.001);
sig1 = os.square(50);
sig2 = os.square(70);
filt = fi.lowpass(5,freq);
process = (sig1:filt),(sig2:filt); |
|
f261f5f0235fabb695af6c634b5b4cb78813f3f5d75f8351b9e2f1cdb84261ce | anwaldt/sound_synthesis_faust | exponential-triggered.dsp | // exponential.dsp
//
// Additive synthesizer with
// exponential spectral decay
//
// - triggered
// -
// - stereo output
//
// Henrik von Coler
// 2020-05-12
import("stdfaust.lib");
// define a fundamental frequency
f0 = hslider("FREQ", 100, 0.1, 1000, 0.1);
// define the number of partials
n_partial = 50;
trigger = button("Trigger");
slope = hslider("Slope", 1, 0.1, 7, 0.02);
slope_release = hslider("Slope Release", 1, 0, 2, 0.01);
amp_release = hslider("AMP Release",0.5,0.01,5,0.01);
// control the splitting of partials over time
split = hslider("Frequency Split",0,0,10,0.01);
// partial function
partial(partCNT, t, s, sr, ar) = os.oscrs(f) * volume * gain
// arguments
with {
f = f0 * ( (partCNT+1) + split * (1-en.arfe(0, ar, 0,t)));
// global gain envelope
gain = en.arfe(0.01, ar, 0,t);
// spectral slope is controlled by a temporal envelope
s2 = s* partCNT * en.arfe(0.01, sr, 0,t);
volume = 0.1 * exp(-s2);
};
// the processing function,
// running 50 partials parallel
// summing them up and applying a global gain
process = par(i, n_partial, partial(i, trigger, slope, slope_release, amp_release)) :>_ * hslider("Master Gain",0,0,1, 0.1) <: _,_; | https://raw.githubusercontent.com/anwaldt/sound_synthesis_faust/05d4f55b2d064f63cfc0c04403c9f9cb688ba023/faust/Additive/exponential_triggered/exponential-triggered.dsp | faust | exponential.dsp
Additive synthesizer with
exponential spectral decay
- triggered
-
- stereo output
Henrik von Coler
2020-05-12
define a fundamental frequency
define the number of partials
control the splitting of partials over time
partial function
arguments
global gain envelope
spectral slope is controlled by a temporal envelope
the processing function,
running 50 partials parallel
summing them up and applying a global gain |
import("stdfaust.lib");
f0 = hslider("FREQ", 100, 0.1, 1000, 0.1);
n_partial = 50;
trigger = button("Trigger");
slope = hslider("Slope", 1, 0.1, 7, 0.02);
slope_release = hslider("Slope Release", 1, 0, 2, 0.01);
amp_release = hslider("AMP Release",0.5,0.01,5,0.01);
split = hslider("Frequency Split",0,0,10,0.01);
partial(partCNT, t, s, sr, ar) = os.oscrs(f) * volume * gain
with {
f = f0 * ( (partCNT+1) + split * (1-en.arfe(0, ar, 0,t)));
gain = en.arfe(0.01, ar, 0,t);
s2 = s* partCNT * en.arfe(0.01, sr, 0,t);
volume = 0.1 * exp(-s2);
};
process = par(i, n_partial, partial(i, trigger, slope, slope_release, amp_release)) :>_ * hslider("Master Gain",0,0,1, 0.1) <: _,_; |
ed7ad592da974e234ebfc60d4ae266e1033276a97fd29db074a27ec16b0110eb | anwaldt/sound_synthesis_faust | karplus_strong.dsp | // karplus_strong.dsp
//
// Slightly modified version of the
// Karplus-Strong plucked string algorithm.
//
// see: 'Making Virtual Electric Guitars and Associated Effects Using Faust'
// (Smith, )
//
// - one-pole lowpass in the feedback
//
// Henrik von Coler
// 2020-06-07
import("all.lib");
////////////////////////////////////////////////////////////////////////////////
// Control parameters as horizonal sliders:
////////////////////////////////////////////////////////////////////////////////
freq = hslider("freq Hz", 50, 20, 1000, 1) : si.smoo; // Hz
// initial filter for the excitation noise
initial_filter = hslider("initial_filter Hz",1000,10,10000,1) : si.smoo;
lop = hslider("lop Hz",1000,10,10000,1) : si.smoo;
level = hslider("level", 1, 0, 10, 0.01);
gate = button("gate");
gain = hslider("gain", 1, 0, 1, 0.01);
////////////////////////////////////////////////////////////////////////////////
// processing elements:
////////////////////////////////////////////////////////////////////////////////
diffgtz(x) = (x-x') > 0;
decay(n,x) = x - (x>0)/n;
release(n) = + ~ decay(n);
trigger(n) = diffgtz : release(n) : > (0.0);
P = SR/freq;
// Resonator:
resonator = (+ : delay(4096, P) * gain) ~ si.smooth(1.0-2*(lop/ma.SR));
////////////////////////////////////////////////////////////////////////////////
// processing function:
////////////////////////////////////////////////////////////////////////////////
process = noise : si.smooth(1.0-2*(initial_filter/ma.SR)):*(level)
: *(gate : trigger(P)): resonator <: _,_; | https://raw.githubusercontent.com/anwaldt/sound_synthesis_faust/05d4f55b2d064f63cfc0c04403c9f9cb688ba023/faust/Physical/karplus_strong/karplus_strong.dsp | faust | karplus_strong.dsp
Slightly modified version of the
Karplus-Strong plucked string algorithm.
see: 'Making Virtual Electric Guitars and Associated Effects Using Faust'
(Smith, )
- one-pole lowpass in the feedback
Henrik von Coler
2020-06-07
//////////////////////////////////////////////////////////////////////////////
Control parameters as horizonal sliders:
//////////////////////////////////////////////////////////////////////////////
Hz
initial filter for the excitation noise
//////////////////////////////////////////////////////////////////////////////
processing elements:
//////////////////////////////////////////////////////////////////////////////
Resonator:
//////////////////////////////////////////////////////////////////////////////
processing function:
////////////////////////////////////////////////////////////////////////////// |
import("all.lib");
initial_filter = hslider("initial_filter Hz",1000,10,10000,1) : si.smoo;
lop = hslider("lop Hz",1000,10,10000,1) : si.smoo;
level = hslider("level", 1, 0, 10, 0.01);
gate = button("gate");
gain = hslider("gain", 1, 0, 1, 0.01);
diffgtz(x) = (x-x') > 0;
decay(n,x) = x - (x>0)/n;
release(n) = + ~ decay(n);
trigger(n) = diffgtz : release(n) : > (0.0);
P = SR/freq;
resonator = (+ : delay(4096, P) * gain) ~ si.smooth(1.0-2*(lop/ma.SR));
process = noise : si.smooth(1.0-2*(initial_filter/ma.SR)):*(level)
: *(gate : trigger(P)): resonator <: _,_; |
6e15d255e31a652f8ed05c8434cdd7b30247171d7b46f62c97168cdb8cdf3d13 | anwaldt/sound_synthesis_faust | waveguide_input.dsp | // waveguide_input.dsp
//
// waveguide with excitation by input signal
//
// - one-pole lowpass termination
//
// Henrik von Coler
// 2020-11-19
import("all.lib");
// use '(pm.)l2s' to calculate number of samples
// from length in meters:
segment(maxLength,length) = waveguide(nMax,n)
with{
nMax = maxLength : l2s;
n = length : l2s/2;
};
// one lowpass terminator
fc = hslider("lowpass",1000,10,10000,1);
rt = rTermination(basicBlock,*(-1) : si.smooth(1.0-2*(fc/ma.SR)));
// one gain terminator with control
gain = hslider("gain",0.99,0,1,0.01);
lt = lTermination(*(-1)* gain,basicBlock);
// a simple allpass (Smith Paper)
s = hslider("s",0.9,0,0.9,0.01);
c = hslider("c",0.9,0,0.9,0.01);
allpass = _ <: *(s),(*(c):(+:_)~(*(-s))):_, mem*c:+;
// another allpass
g = hslider("g",0.9, 0,0.9,0.01);
allp = allpass_comb(2,1,g);
scatter = pm.basicBlock(allpass);
idString(length,pos,excite) = endChain(wg)
with{
nUp = length*pos;
nDown = length*(1-pos);
wg = chain(lt : segment(6,nUp) : out : in(excite) : scatter : segment(6,nDown) : rt); // waveguide chain
};
exc = select2(gain>0.9,1,0);
length = hslider("length",1,0.1,10,0.01):si.smoo;
process(in) = idString(length,0.15, in) <: _,_; | https://raw.githubusercontent.com/anwaldt/sound_synthesis_faust/05d4f55b2d064f63cfc0c04403c9f9cb688ba023/faust/Physical/waveguide_continuous/waveguide_input.dsp | faust | waveguide_input.dsp
waveguide with excitation by input signal
- one-pole lowpass termination
Henrik von Coler
2020-11-19
use '(pm.)l2s' to calculate number of samples
from length in meters:
one lowpass terminator
one gain terminator with control
a simple allpass (Smith Paper)
another allpass
waveguide chain |
import("all.lib");
segment(maxLength,length) = waveguide(nMax,n)
with{
nMax = maxLength : l2s;
n = length : l2s/2;
};
fc = hslider("lowpass",1000,10,10000,1);
rt = rTermination(basicBlock,*(-1) : si.smooth(1.0-2*(fc/ma.SR)));
gain = hslider("gain",0.99,0,1,0.01);
lt = lTermination(*(-1)* gain,basicBlock);
s = hslider("s",0.9,0,0.9,0.01);
c = hslider("c",0.9,0,0.9,0.01);
allpass = _ <: *(s),(*(c):(+:_)~(*(-s))):_, mem*c:+;
g = hslider("g",0.9, 0,0.9,0.01);
allp = allpass_comb(2,1,g);
scatter = pm.basicBlock(allpass);
idString(length,pos,excite) = endChain(wg)
with{
nUp = length*pos;
nDown = length*(1-pos);
};
exc = select2(gain>0.9,1,0);
length = hslider("length",1,0.1,10,0.01):si.smoo;
process(in) = idString(length,0.15, in) <: _,_; |
6147e4a284d88dfa471944644780605d21b9efd1066159ae50373d8f52149098 | anwaldt/sound_synthesis_faust | additive_1.dsp |
import("music.lib");
import("filter.lib");
freq = hslider("freq",300,20,2000,0.01) : smooth(0.999);
gain = hslider("gain",0.3,0,1,0.01) : smooth(0.999);
t = hslider("attRel (s)",0.1,0.001,2,0.001);
gate = button("gate") : smooth(tau2pole(t));
process = osc(freq),osc(freq*2),osc(freq*3) :> /(3) : *(gain)*gate;
| https://raw.githubusercontent.com/anwaldt/sound_synthesis_faust/05d4f55b2d064f63cfc0c04403c9f9cb688ba023/faust/Additive/additive_1.dsp | faust |
import("music.lib");
import("filter.lib");
freq = hslider("freq",300,20,2000,0.01) : smooth(0.999);
gain = hslider("gain",0.3,0,1,0.01) : smooth(0.999);
t = hslider("attRel (s)",0.1,0.001,2,0.001);
gate = button("gate") : smooth(tau2pole(t));
process = osc(freq),osc(freq*2),osc(freq*3) :> /(3) : *(gain)*gate;
|
|
cd64047b254bfcbf8ab1c4e1782128260e3f8397d3f0c1cca0b2e4df23e81b9f | anwaldt/sound_synthesis_faust | subtractive_triggered.dsp | // subtractive_triggered.dsp
//
// A four voice subtractive synth.
//
// - trigger
// - control over f0, cutoff, resonance, gain
//
// Henrik von Coler
// 2020-05-17
import("stdfaust.lib");
trigger0 = button("trigger0 [midi:key 0]");
trigger1= button("trigger1 [midi:key 1]");
trigger2= button("trigger2 [midi:key 2]");
trigger3= button("trigger3 [midi:key 3]");
//////////////////////////////////////////////////////////////////////////
// Define three 'module' functions
//////////////////////////////////////////////////////////////////////////
vco(f0) = os.sawtooth(f0);
vcf(c,r) = ve.moog_vcf(r,c);
vca(x,gain) = gain * x;
//////////////////////////////////////////////////////////////////////////
// A function with envelopes
//////////////////////////////////////////////////////////////////////////
voice(index,trig) = vco(f0) : vcf(fc,res) : vca(env1) * 0.5
with
{
// use an individual hslider for every
f0 = hslider("Pitch %index", 100, 5, 1000, 0.001):si.smoo;
//trig = button("trigger%index");
rel1 = hslider("rel_vca%index", 0.5, 0.01, 3, 0.01):si.smoo;
rel2 = hslider("rel_vcf%index", 0.25, 0.01, 3, 0.01):si.smoo;
env1 = en.arfe(0.02, rel1, 0,trig); // en.adsre(0.001,0.3,1,1,trig);
env2 = en.arfe(0.01, rel2, 0,trig); //en.adsre(0.001,0.3,1,1,trig);
cutoff = hslider("cutoff%index", 100, 5, 6000, 0.001):si.smoo;
res = hslider("res%index", 0.1, 0, 1, 0.01):si.smoo;
fc = 10+env2* cutoff;
};
process = voice(0,trigger0),voice(1,trigger1),voice(2,trigger2),voice(3,trigger3) :> _,_ ;
| https://raw.githubusercontent.com/anwaldt/sound_synthesis_faust/05d4f55b2d064f63cfc0c04403c9f9cb688ba023/faust/Subtractive/subtractive_triggered.dsp | faust | subtractive_triggered.dsp
A four voice subtractive synth.
- trigger
- control over f0, cutoff, resonance, gain
Henrik von Coler
2020-05-17
////////////////////////////////////////////////////////////////////////
Define three 'module' functions
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
A function with envelopes
////////////////////////////////////////////////////////////////////////
use an individual hslider for every
trig = button("trigger%index");
en.adsre(0.001,0.3,1,1,trig);
en.adsre(0.001,0.3,1,1,trig); |
import("stdfaust.lib");
trigger0 = button("trigger0 [midi:key 0]");
trigger1= button("trigger1 [midi:key 1]");
trigger2= button("trigger2 [midi:key 2]");
trigger3= button("trigger3 [midi:key 3]");
vco(f0) = os.sawtooth(f0);
vcf(c,r) = ve.moog_vcf(r,c);
vca(x,gain) = gain * x;
voice(index,trig) = vco(f0) : vcf(fc,res) : vca(env1) * 0.5
with
{
f0 = hslider("Pitch %index", 100, 5, 1000, 0.001):si.smoo;
rel1 = hslider("rel_vca%index", 0.5, 0.01, 3, 0.01):si.smoo;
rel2 = hslider("rel_vcf%index", 0.25, 0.01, 3, 0.01):si.smoo;
cutoff = hslider("cutoff%index", 100, 5, 6000, 0.001):si.smoo;
res = hslider("res%index", 0.1, 0, 1, 0.01):si.smoo;
fc = 10+env2* cutoff;
};
process = voice(0,trigger0),voice(1,trigger1),voice(2,trigger2),voice(3,trigger3) :> _,_ ;
|
a220899c1b110fc7b248d7ad590f560a893cd1b28ab3a0175a72758b49e8ded5 | anwaldt/sound_synthesis_faust | sync_osc.dsp | // A simple oscillator with phase reset.
//
// Parameters
// freq: set the frequency in Hz
// reset: the phase is reset when going >= 0
// offset: the phase value on reset
//
// HvC
// 2020-08-30
import("stdfaust.lib");
// some basic stuff
sr = SR;
twopi = 2.0*ma.PI;
// define the waveform in table
ts = 1<<16; // size
time = (+(1) ~ _ ) , 1 : - ;
sinewave = ((float(time) / float(ts)) * twopi) : sin;
// the wrapper function keeps a signal above 0 and below m (max)
wrapper(m,x) = select2(x<=m, (x-m):max(0), x);
// phase is used with offset and wrap
phase = os.hs_phasor(ts,freq,trig) : +(off_trig*ts) : wrapper(ts);
// read from table
sin_osc( freq) = rdtable(ts ,sinewave , int(phase)) ;
// generate a one sample impulse from the gate
trig = pm.impulseExcitation(reset);
// a number only changed when triggered
// this avoids glitches when changing offset during play
off_trig = offset : ba.sAndH(trig);
// all control variables
reset = button ("reset");
freq = hslider("freq", 100, 0, 16000, 0.00001);
offset = hslider("offset", 0, 0, 1, 0.00001);
process = sin_osc(freq); | https://raw.githubusercontent.com/anwaldt/sound_synthesis_faust/05d4f55b2d064f63cfc0c04403c9f9cb688ba023/faust/Oscillators/sync_osc.dsp | faust | A simple oscillator with phase reset.
Parameters
freq: set the frequency in Hz
reset: the phase is reset when going >= 0
offset: the phase value on reset
HvC
2020-08-30
some basic stuff
define the waveform in table
size
the wrapper function keeps a signal above 0 and below m (max)
phase is used with offset and wrap
read from table
generate a one sample impulse from the gate
a number only changed when triggered
this avoids glitches when changing offset during play
all control variables |
import("stdfaust.lib");
sr = SR;
twopi = 2.0*ma.PI;
time = (+(1) ~ _ ) , 1 : - ;
sinewave = ((float(time) / float(ts)) * twopi) : sin;
wrapper(m,x) = select2(x<=m, (x-m):max(0), x);
phase = os.hs_phasor(ts,freq,trig) : +(off_trig*ts) : wrapper(ts);
sin_osc( freq) = rdtable(ts ,sinewave , int(phase)) ;
trig = pm.impulseExcitation(reset);
off_trig = offset : ba.sAndH(trig);
reset = button ("reset");
freq = hslider("freq", 100, 0, 16000, 0.00001);
offset = hslider("offset", 0, 0, 1, 0.00001);
process = sin_osc(freq); |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.