diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 085cc2af9cfeaf85f7db5111e97de84ac7289a9d..2219b72ceea3da845f0815b94bab714810f9d4d5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,15 +23,15 @@ exitcode-jessie:
     - pip install coverage-badge
     - python setup.py install
     - coverage erase
-    - coverage run --include=tupak/* -a test/detector_tests.py
-    - coverage run --include=tupak/* -a test/prior_tests.py
-    - coverage run --include=tupak/* -a test/sampler_tests.py
-    - coverage run --include=tupak/* -a test/waveform_generator_tests.py
-    - coverage html
-    - coverage-badge -o coverage_badge.svg -f
+    - coverage run --source=tupak/ -a test/detector_tests.py
+    - coverage run --source=tupak/ -a test/prior_tests.py
+    - coverage run --source=tupak/ -a test/sampler_tests.py
+    - coverage run --source=tupak/ -a test/waveform_generator_tests.py
     - coverage run --omit=* -a test/example_tests.py
     - coverage run --omit=* -a test/noise_realisation_tests.py
     - coverage run --omit=* -a test/tests.py
+    - coverage html
+    - coverage-badge -o coverage_badge.svg -f
 
     # Make the documentation
     - pip install -r docs/requirements.txt
diff --git a/examples/injection_examples/basic_tutorial.py b/examples/injection_examples/basic_tutorial.py
index f5a6589c74576a82ba3d0a5f3d5e09c0ceffa3cb..85cb46977fe00072ed3e95d5998f153d0039fd9f 100644
--- a/examples/injection_examples/basic_tutorial.py
+++ b/examples/injection_examples/basic_tutorial.py
@@ -6,17 +6,20 @@ This example estimates the masses using a uniform prior in both component masses
 comoving volume prior on luminosity distance between luminosity distances of 100Mpc and 5Gpc, the cosmology is WMAP7.
 """
 from __future__ import division, print_function
-import tupak
+
 import numpy as np
 
+import tupak
+
 # Set the duration and sampling frequency of the data segment that we're going to inject the signal into
+
 time_duration = 4.
 sampling_frequency = 2048.
 
 # Specify the output directory and the name of the simulation.
 outdir = 'outdir'
 label = 'basic_tutorial'
-tupak.utils.setup_logger(outdir=outdir, label=label)
+tupak.core.utils.setup_logger(outdir=outdir, label=label)
 
 # Set up a random seed for result reproducibility.  This is optional!
 np.random.seed(88170235)
@@ -31,13 +34,13 @@ injection_parameters = dict(mass_1=36., mass_2=29., a_1=0.4, a_2=0.3, tilt_1=0.5
 # Create the waveform_generator using a LAL BinaryBlackHole source function
 waveform_generator = tupak.WaveformGenerator(time_duration=time_duration,
                                              sampling_frequency=sampling_frequency,
-                                             frequency_domain_source_model=tupak.source.lal_binary_black_hole,
+                                             frequency_domain_source_model=tupak.gw.source.lal_binary_black_hole,
                                              parameters=injection_parameters)
 hf_signal = waveform_generator.frequency_domain_strain()
 
 # Set up interferometers.  In this case we'll use three interferometers (LIGO-Hanford (H1), LIGO-Livingston (L1),
 # and Virgo (V1)).  These default to their design sensitivity
-IFOs = [tupak.detector.get_interferometer_with_fake_noise_and_injection(
+IFOs = [tupak.gw.detector.get_interferometer_with_fake_noise_and_injection(
     name, injection_polarizations=hf_signal, injection_parameters=injection_parameters, time_duration=time_duration,
     sampling_frequency=sampling_frequency, outdir=outdir) for name in ['H1', 'L1']]
 
@@ -53,13 +56,15 @@ for key in ['a_1', 'a_2', 'tilt_1', 'tilt_2', 'phi_12', 'phi_jl','psi', 'ra', 'd
 
 # The above list does *not* include mass_1, mass_2, iota and luminosity_distance, which means those are the parameters
 # that will be included in the sampler.  If we do nothing, then the default priors get used.
-priors['luminosity_distance'] = tupak.prior.create_default_prior(name='luminosity_distance')
-priors['geocent_time'] = tupak.prior.Uniform(injection_parameters['geocent_time'] - 1,
-                                            injection_parameters['geocent_time'] + 1,
+priors['luminosity_distance'] = tupak.gw.prior.create_default_prior(name='luminosity_distance')
+priors['geocent_time'] = tupak.core.prior.Uniform(injection_parameters['geocent_time'] - 1,
+                                                  injection_parameters['geocent_time'] + 1,
                                             'geocent_time')
 
 # Initialise the likelihood by passing in the interferometer data (IFOs) and the waveoform generator
-likelihood = tupak.likelihood.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator,time_marginalization=False, phase_marginalization=False, distance_marginalization=False, prior=priors)
+likelihood = tupak.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator,
+                                              time_marginalization=False, phase_marginalization=False,
+                                              distance_marginalization=False, prior=priors)
 
 # Run sampler.  In this case we're going to use the `dynesty` sampler
 result = tupak.run_sampler(likelihood=likelihood, priors=priors, sampler='dynesty', npoints=1000,
diff --git a/examples/injection_examples/basic_tutorial_dist_time_phase_marg.py b/examples/injection_examples/basic_tutorial_dist_time_phase_marg.py
index ad10a6a205f1e2f059f169e84780882b61381961..bad5ae9a542ea4e45d970fb4fcc5e817f91d261c 100644
--- a/examples/injection_examples/basic_tutorial_dist_time_phase_marg.py
+++ b/examples/injection_examples/basic_tutorial_dist_time_phase_marg.py
@@ -10,13 +10,15 @@ import tupak
 import numpy as np
 
 # Set the duration and sampling frequency of the data segment that we're going to inject the signal into
+import tupak.gw.prior
+
 time_duration = 4.
 sampling_frequency = 2048.
 
 # Specify the output directory and the name of the simulation.
 outdir = 'outdir'
 label = 'basic_tutorial_dist_time_phase_marg'
-tupak.utils.setup_logger(outdir=outdir, label=label)
+tupak.core.utils.setup_logger(outdir=outdir, label=label)
 
 # Set up a random seed for result reproducibility.  This is optional!
 np.random.seed(88170235)
@@ -31,13 +33,13 @@ injection_parameters = dict(mass_1=36., mass_2=29., a_1=0.4, a_2=0.3, tilt_1=0.5
 # Create the waveform_generator using a LAL BinaryBlackHole source function
 waveform_generator = tupak.WaveformGenerator(time_duration=time_duration,
                                              sampling_frequency=sampling_frequency,
-                                             frequency_domain_source_model=tupak.source.lal_binary_black_hole,
+                                             frequency_domain_source_model=tupak.gw.source.lal_binary_black_hole,
                                              parameters=injection_parameters)
 hf_signal = waveform_generator.frequency_domain_strain()
 
 # Set up interferometers.  In this case we'll use three interferometers (LIGO-Hanford (H1), LIGO-Livingston (L1),
 # and Virgo (V1)).  These default to their design sensitivity
-IFOs = [tupak.detector.get_interferometer_with_fake_noise_and_injection(
+IFOs = [tupak.gw.detector.get_interferometer_with_fake_noise_and_injection(
     name, injection_polarizations=hf_signal, injection_parameters=injection_parameters, time_duration=time_duration,
     sampling_frequency=sampling_frequency, outdir=outdir) for name in ['H1', 'L1']]
 
@@ -52,10 +54,12 @@ for key in ['a_1', 'a_2', 'tilt_1', 'tilt_2', 'phi_12', 'phi_jl','psi', 'ra', 'd
 
 # The above list does *not* include mass_1, mass_2, iota and luminosity_distance, which means those are the parameters
 # that will be included in the sampler.  If we do nothing, then the default priors get used.
-priors['luminosity_distance'] = tupak.prior.create_default_prior(name='luminosity_distance')
+priors['luminosity_distance'] = tupak.gw.prior.create_default_prior(name='luminosity_distance')
 
 # Initialise the likelihood by passing in the interferometer data (IFOs) and the waveoform generator
-likelihood = tupak.likelihood.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator,time_marginalization=True, phase_marginalization=True, distance_marginalization=True, prior=priors)
+likelihood = tupak.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator,
+                                              time_marginalization=True, phase_marginalization=True,
+                                              distance_marginalization=True, prior=priors)
 
 # Run sampler.  In this case we're going to use the `dynesty` sampler
 result = tupak.run_sampler(likelihood=likelihood, priors=priors, sampler='dynesty', npoints=1000,
diff --git a/examples/injection_examples/basic_tutorial_time_phase_marg.py b/examples/injection_examples/basic_tutorial_time_phase_marg.py
index 7ffa751709d421452b0782fb75d0037d3e7c2c3a..81c2670a927813d1f41312ba50fa168dd90572cb 100644
--- a/examples/injection_examples/basic_tutorial_time_phase_marg.py
+++ b/examples/injection_examples/basic_tutorial_time_phase_marg.py
@@ -10,13 +10,15 @@ import tupak
 import numpy as np
 
 # Set the duration and sampling frequency of the data segment that we're going to inject the signal into
+import tupak.gw.prior
+
 time_duration = 4.
 sampling_frequency = 2048.
 
 # Specify the output directory and the name of the simulation.
 outdir = 'outdir'
 label = 'basic_tutorial_time_phase_marg'
-tupak.utils.setup_logger(outdir=outdir, label=label)
+tupak.core.utils.setup_logger(outdir=outdir, label=label)
 
 # Set up a random seed for result reproducibility.  This is optional!
 np.random.seed(88170235)
@@ -31,13 +33,13 @@ injection_parameters = dict(mass_1=36., mass_2=29., a_1=0.4, a_2=0.3, tilt_1=0.5
 # Create the waveform_generator using a LAL BinaryBlackHole source function
 waveform_generator = tupak.WaveformGenerator(time_duration=time_duration,
                                              sampling_frequency=sampling_frequency,
-                                             frequency_domain_source_model=tupak.source.lal_binary_black_hole,
+                                             frequency_domain_source_model=tupak.gw.source.lal_binary_black_hole,
                                              parameters=injection_parameters)
 hf_signal = waveform_generator.frequency_domain_strain()
 
 # Set up interferometers.  In this case we'll use three interferometers (LIGO-Hanford (H1), LIGO-Livingston (L1),
 # and Virgo (V1)).  These default to their design sensitivity
-IFOs = [tupak.detector.get_interferometer_with_fake_noise_and_injection(
+IFOs = [tupak.gw.detector.get_interferometer_with_fake_noise_and_injection(
     name, injection_polarizations=hf_signal, injection_parameters=injection_parameters, time_duration=time_duration,
     sampling_frequency=sampling_frequency, outdir=outdir) for name in ['H1', 'L1']]
 
@@ -52,10 +54,12 @@ for key in ['a_1', 'a_2', 'tilt_1', 'tilt_2', 'phi_12', 'phi_jl','psi', 'ra', 'd
 
 # The above list does *not* include mass_1, mass_2, iota and luminosity_distance, which means those are the parameters
 # that will be included in the sampler.  If we do nothing, then the default priors get used.
-priors['luminosity_distance'] = tupak.prior.create_default_prior(name='luminosity_distance')
+priors['luminosity_distance'] = tupak.gw.prior.create_default_prior(name='luminosity_distance')
 
 # Initialise the likelihood by passing in the interferometer data (IFOs) and the waveoform generator
-likelihood = tupak.likelihood.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator,time_marginalization=True, phase_marginalization=True, distance_marginalization=False, prior=priors)
+likelihood = tupak.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator,
+                                              time_marginalization=True, phase_marginalization=True,
+                                              distance_marginalization=False, prior=priors)
 
 # Run sampler.  In this case we're going to use the `dynesty` sampler
 result = tupak.run_sampler(likelihood=likelihood, priors=priors, sampler='dynesty', npoints=1000,
diff --git a/examples/injection_examples/change_sampled_parameters.py b/examples/injection_examples/change_sampled_parameters.py
index 6d7734b51b60d73f1782762904a02ab7550ba039..65f818d30be3087b7b905b9520f3bd9b95aca4b4 100644
--- a/examples/injection_examples/change_sampled_parameters.py
+++ b/examples/injection_examples/change_sampled_parameters.py
@@ -9,7 +9,8 @@ from __future__ import division, print_function
 import tupak
 import numpy as np
 
-tupak.utils.setup_logger(log_level="info")
+
+tupak.core.utils.setup_logger(log_level="info")
 
 time_duration = 4.
 sampling_frequency = 2048.
@@ -22,16 +23,16 @@ injection_parameters = dict(mass_1=36., mass_2=29., a_1=0.4, a_2=0.3, tilt_1=0.5
                             waveform_approximant='IMRPhenomPv2', reference_frequency=50., ra=1.375, dec=-1.2108)
 
 # Create the waveform_generator using a LAL BinaryBlackHole source function
-waveform_generator = tupak.waveform_generator.WaveformGenerator(
+waveform_generator = tupak.gw.waveform_generator.WaveformGenerator(
     sampling_frequency=sampling_frequency, time_duration=time_duration,
-    frequency_domain_source_model=tupak.source.lal_binary_black_hole,
-    parameter_conversion=tupak.conversion.convert_to_lal_binary_black_hole_parameters,
+    frequency_domain_source_model=tupak.gw.source.lal_binary_black_hole,
+    parameter_conversion=tupak.gw.conversion.convert_to_lal_binary_black_hole_parameters,
     non_standard_sampling_parameter_keys=['chirp_mass', 'mass_ratio', 'cos_iota'],
     parameters=injection_parameters)
 hf_signal = waveform_generator.frequency_domain_strain()
 
 # Set up interferometers.
-IFOs = [tupak.detector.get_interferometer_with_fake_noise_and_injection(
+IFOs = [tupak.gw.detector.get_interferometer_with_fake_noise_and_injection(
     name, injection_polarizations=hf_signal, injection_parameters=injection_parameters, time_duration=time_duration,
     sampling_frequency=sampling_frequency, outdir=outdir) for name in ['H1', 'L1', 'V1']]
 
@@ -40,14 +41,14 @@ priors = dict()
 # These parameters will not be sampled
 for key in ['a_1', 'a_2', 'tilt_1', 'tilt_2', 'phi_12', 'phi_jl', 'phase', 'psi', 'ra', 'dec', 'geocent_time']:
     priors[key] = injection_parameters[key]
-priors['luminosity_distance'] = tupak.prior.create_default_prior(name='luminosity_distance')
+priors['luminosity_distance'] = tupak.gw.prior.create_default_prior(name='luminosity_distance')
 
 # Initialise GravitationalWaveTransient
-likelihood = tupak.likelihood.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator)
+likelihood = tupak.gw.likelihood.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator)
 
 # Run sampler
-result = tupak.sampler.run_sampler(likelihood=likelihood, priors=priors, sampler='dynesty',
-                                   injection_parameters=injection_parameters, label='DifferentParameters',
-                                   outdir=outdir, conversion_function=tupak.conversion.generate_all_bbh_parameters)
+result = tupak.core.sampler.run_sampler(likelihood=likelihood, priors=priors, sampler='dynesty',
+                                        injection_parameters=injection_parameters, label='DifferentParameters',
+                                        outdir=outdir, conversion_function=tupak.gw.conversion.generate_all_bbh_parameters)
 result.plot_corner()
 print(result)
diff --git a/examples/injection_examples/create_your_own_source_model.py b/examples/injection_examples/create_your_own_source_model.py
index 51d548526404169d69c671121c864206de4dbdf9..15f2adfb09a754ebd42952943236f00b63e43200 100644
--- a/examples/injection_examples/create_your_own_source_model.py
+++ b/examples/injection_examples/create_your_own_source_model.py
@@ -7,7 +7,7 @@ import tupak
 import numpy as np
 
 # First set up logging and some output directories and labels
-tupak.utils.setup_logger()
+tupak.core.utils.setup_logger()
 outdir = 'outdir'
 label = 'create_your_own_source_model'
 sampling_frequency = 4096
@@ -26,14 +26,14 @@ def sine_gaussian(f, A, f0, tau, phi0, geocent_time, ra, dec, psi):
 # We now define some parameters that we will inject and then a waveform generator
 injection_parameters = dict(A=1e-23, f0=100, tau=1, phi0=0, geocent_time=0,
                             ra=0, dec=0, psi=0)
-waveform_generator = tupak.waveform_generator.WaveformGenerator(time_duration=time_duration,
-                                                                sampling_frequency=sampling_frequency,
-                                                                frequency_domain_source_model=sine_gaussian,
-                                                                parameters=injection_parameters)
+waveform_generator = tupak.gw.waveform_generator.WaveformGenerator(time_duration=time_duration,
+                                                                   sampling_frequency=sampling_frequency,
+                                                                   frequency_domain_source_model=sine_gaussian,
+                                                                   parameters=injection_parameters)
 hf_signal = waveform_generator.frequency_domain_strain()
 
 # Set up interferometers.
-IFOs = [tupak.detector.get_interferometer_with_fake_noise_and_injection(
+IFOs = [tupak.gw.detector.get_interferometer_with_fake_noise_and_injection(
     name, injection_polarizations=hf_signal,
     injection_parameters=injection_parameters, time_duration=time_duration,
     sampling_frequency=sampling_frequency, outdir=outdir)
@@ -42,12 +42,12 @@ IFOs = [tupak.detector.get_interferometer_with_fake_noise_and_injection(
 # Here we define the priors for the search. We use the injection parameters
 # except for the amplitude, f0, and geocent_time
 prior = injection_parameters.copy()
-prior['A'] = tupak.prior.PowerLaw(alpha=-1, minimum=1e-25, maximum=1e-21, name='A')
-prior['f0'] = tupak.prior.Uniform(90, 110, 'f')
+prior['A'] = tupak.core.prior.PowerLaw(alpha=-1, minimum=1e-25, maximum=1e-21, name='A')
+prior['f0'] = tupak.core.prior.Uniform(90, 110, 'f')
 
-likelihood = tupak.likelihood.GravitationalWaveTransient(IFOs, waveform_generator)
+likelihood = tupak.gw.likelihood.GravitationalWaveTransient(IFOs, waveform_generator)
 
-result = tupak.sampler.run_sampler(
+result = tupak.core.sampler.run_sampler(
     likelihood, prior, sampler='dynesty', outdir=outdir, label=label,
     resume=False, sample='unif', injection_parameters=injection_parameters)
 result.plot_corner()
diff --git a/examples/injection_examples/create_your_own_time_domain_source_model.py b/examples/injection_examples/create_your_own_time_domain_source_model.py
index af51c5812b5cfc7f49f57f1fb5c3e689c128e1c4..588aa5315b6109bacdb6372a6f969e0d2196ef87 100644
--- a/examples/injection_examples/create_your_own_time_domain_source_model.py
+++ b/examples/injection_examples/create_your_own_time_domain_source_model.py
@@ -8,7 +8,7 @@ and then recovered.
 import tupak
 import numpy as np
 
-tupak.utils.setup_logger()
+tupak.core.utils.setup_logger()
 
 
 # define the time-domain model
@@ -33,9 +33,9 @@ outdir='outdir'
 label='time_domain_source_model'
 
 # call the waveform_generator to create our waveform model.
-waveform = tupak.waveform_generator.WaveformGenerator(time_duration=time_duration, sampling_frequency=sampling_frequency,
-                                                    time_domain_source_model=time_domain_damped_sinusoid,
-                                                    parameters=injection_parameters)
+waveform = tupak.gw.waveform_generator.WaveformGenerator(time_duration=time_duration, sampling_frequency=sampling_frequency,
+                                                         time_domain_source_model=time_domain_damped_sinusoid,
+                                                         parameters=injection_parameters)
 
 hf_signal = waveform.frequency_domain_strain()
 #note we could plot the time domain signal with the following code
@@ -48,7 +48,7 @@ hf_signal = waveform.frequency_domain_strain()
 
 
 # inject the signal into three interferometers
-IFOs = [tupak.detector.get_interferometer_with_fake_noise_and_injection(
+IFOs = [tupak.gw.detector.get_interferometer_with_fake_noise_and_injection(
         name, injection_polarizations=hf_signal,
         injection_parameters=injection_parameters, time_duration=time_duration,
         sampling_frequency=sampling_frequency, outdir=outdir)
@@ -57,19 +57,19 @@ IFOs = [tupak.detector.get_interferometer_with_fake_noise_and_injection(
 
 #  create the priors
 prior = injection_parameters.copy()
-prior['amplitude'] = tupak.prior.Uniform(1e-23, 1e-21, r'$h_0$')
-prior['damping_time'] = tupak.prior.Uniform(0, 1, r'damping time')
-prior['frequency'] = tupak.prior.Uniform(0, 200, r'frequency')
-prior['phase'] = tupak.prior.Uniform(-np.pi/2, np.pi/2, r'$\phi$')
+prior['amplitude'] = tupak.core.prior.Uniform(1e-23, 1e-21, r'$h_0$')
+prior['damping_time'] = tupak.core.prior.Uniform(0, 1, r'damping time')
+prior['frequency'] = tupak.core.prior.Uniform(0, 200, r'frequency')
+prior['phase'] = tupak.core.prior.Uniform(-np.pi / 2, np.pi / 2, r'$\phi$')
 
 
 # define likelihood
-likelihood = tupak.likelihood.GravitationalWaveTransient(IFOs, waveform)
+likelihood = tupak.gw.likelihood.GravitationalWaveTransient(IFOs, waveform)
 
 # launch sampler
-result = tupak.sampler.run_sampler(likelihood, prior, sampler='dynesty', npoints=1000,
-                                    injection_parameters=injection_parameters,
-                                    outdir=outdir, label=label)
+result = tupak.core.sampler.run_sampler(likelihood, prior, sampler='dynesty', npoints=1000,
+                                        injection_parameters=injection_parameters,
+                                        outdir=outdir, label=label)
 
 result.plot_corner()
 print(result)
diff --git a/examples/injection_examples/how_to_specify_the_prior.py b/examples/injection_examples/how_to_specify_the_prior.py
index 7a3a0743e4826a4714507f0bca99cf4eb77ad07d..2c14b1e5d84c16560d623d7bce9d5083009b2236 100644
--- a/examples/injection_examples/how_to_specify_the_prior.py
+++ b/examples/injection_examples/how_to_specify_the_prior.py
@@ -6,7 +6,9 @@ from __future__ import division, print_function
 import tupak
 import numpy as np
 
-tupak.utils.setup_logger()
+import tupak.gw.prior
+
+tupak.core.utils.setup_logger()
 
 time_duration = 4.
 sampling_frequency = 2048.
@@ -19,14 +21,14 @@ injection_parameters = dict(mass_1=36., mass_2=29., a_1=0.4, a_2=0.3, tilt_1=0.5
                             waveform_approximant='IMRPhenomPv2', reference_frequency=50., ra=1.375, dec=-1.2108)
 
 # Create the waveform_generator using a LAL BinaryBlackHole source function
-waveform_generator = tupak.waveform_generator.WaveformGenerator(time_duration=time_duration,
-                                                                sampling_frequency=sampling_frequency,
-                                                                frequency_domain_source_model=tupak.source.lal_binary_black_hole,
-                                                                parameters=injection_parameters)
+waveform_generator = tupak.WaveformGenerator(time_duration=time_duration,
+                                             sampling_frequency=sampling_frequency,
+                                             frequency_domain_source_model=tupak.gw.source.lal_binary_black_hole,
+                                             parameters=injection_parameters)
 hf_signal = waveform_generator.frequency_domain_strain()
 
 # Set up interferometers.
-IFOs = [tupak.detector.get_interferometer_with_fake_noise_and_injection(
+IFOs = [tupak.gw.detector.get_interferometer_with_fake_noise_and_injection(
     name, injection_polarizations=hf_signal, injection_parameters=injection_parameters, time_duration=time_duration,
     sampling_frequency=sampling_frequency, outdir=outdir) for name in ['H1', 'L1', 'V1']]
 
@@ -36,32 +38,32 @@ priors = dict()
 for key in ['tilt_1', 'tilt_2', 'phi_12', 'phi_jl', 'phase', 'iota', 'ra', 'dec', 'geocent_time', 'psi']:
     priors[key] = injection_parameters[key]
 # We can assign a default prior distribution, note this only works for certain parameters.
-priors['mass_1'] = tupak.prior.create_default_prior(name='mass_1')
+priors['mass_1'] = tupak.gw.prior.create_default_prior(name='mass_1')
 # We can make uniform distributions.
-priors['mass_2'] = tupak.prior.Uniform(name='mass_2', minimum=20, maximum=40)
+priors['mass_2'] = tupak.core.prior.Uniform(name='mass_2', minimum=20, maximum=40)
 # We can load a prior distribution from a file, e.g., a uniform in comoving volume distribution.
 # If no path is given it will look in it's directory of known distributions.
 # Note: that this file is used for the default prior distribution for distance.
 # Also note: this special case is coded in as tupak.prior.UniformComovingVolume.
-priors['luminosity_distance'] = tupak.prior.FromFile('comoving.txt', name='luminosity_distance',
-                                                     minimum=1e3, maximum=5e3)
+priors['luminosity_distance'] = tupak.core.prior.FromFile('comoving.txt', name='luminosity_distance',
+                                                          minimum=1e3, maximum=5e3)
 # We can make a power-law distribution, p(x) ~ x^{alpha}
 # Note: alpha=0 is a uniform distribution, alpha=-1 is uniform-in-log
-priors['a_1'] = tupak.prior.PowerLaw(name='a_1', alpha=-1, minimum=1e-2, maximum=1)
+priors['a_1'] = tupak.core.prior.PowerLaw(name='a_1', alpha=-1, minimum=1e-2, maximum=1)
 # We can define a prior from an array as follows.
 # Note: this doesn't have to be properly normalised.
 a_2 = np.linspace(0, 1, 1001)
 p_a_2 = a_2 ** 4
-priors['a_2'] = tupak.prior.Interped(name='a_2', xx=a_2, yy=p_a_2, minimum=0, maximum=0.5)
+priors['a_2'] = tupak.core.prior.Interped(name='a_2', xx=a_2, yy=p_a_2, minimum=0, maximum=0.5)
 # Additionally, we have Gaussian, TruncatedGaussian, Sine and Cosine.
 # Finally, if you don't specify any necessary parameters it will be filled in from the default when the sampler starts.
 # Enjoy.
 
 # Initialise GravitationalWaveTransient
-likelihood = tupak.likelihood.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator)
+likelihood = tupak.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator)
 
 # Run sampler
-result = tupak.sampler.run_sampler(likelihood=likelihood, priors=priors, sampler='dynesty',
-                                   injection_parameters=injection_parameters, outdir=outdir, label='specify_prior')
+result = tupak.run_sampler(likelihood=likelihood, priors=priors, sampler='dynesty',
+                           injection_parameters=injection_parameters, outdir=outdir, label='specify_prior')
 result.plot_corner()
 print(result)
diff --git a/examples/injection_examples/marginalized_likelihood.py b/examples/injection_examples/marginalized_likelihood.py
index 2cd028c550526dbb455d2da63ed146e89f616325..c3c4f29ef2d0b0706542974fb8f90208b9865a9a 100644
--- a/examples/injection_examples/marginalized_likelihood.py
+++ b/examples/injection_examples/marginalized_likelihood.py
@@ -7,7 +7,7 @@ from __future__ import division, print_function
 import tupak
 import numpy as np
 
-tupak.utils.setup_logger()
+tupak.core.utils.setup_logger()
 
 time_duration = 4.
 sampling_frequency = 2048.
@@ -20,13 +20,13 @@ injection_parameters = dict(mass_1=36., mass_2=29., a_1=0.4, a_2=0.3, tilt_1=0.5
                             waveform_approximant='IMRPhenomPv2', reference_frequency=50., ra=1.375, dec=-1.2108)
 
 # Create the waveform_generator using a LAL BinaryBlackHole source function
-waveform_generator = tupak.waveform_generator.WaveformGenerator(
+waveform_generator = tupak.WaveformGenerator(
     time_duration=time_duration, sampling_frequency=sampling_frequency,
-    frequency_domain_source_model=tupak.source.lal_binary_black_hole, parameters=injection_parameters)
+    frequency_domain_source_model=tupak.gw.source.lal_binary_black_hole, parameters=injection_parameters)
 hf_signal = waveform_generator.frequency_domain_strain()
 
 # Set up interferometers.
-IFOs = [tupak.detector.get_interferometer_with_fake_noise_and_injection(
+IFOs = [tupak.gw.detector.get_interferometer_with_fake_noise_and_injection(
     name, injection_polarizations=hf_signal, injection_parameters=injection_parameters, time_duration=time_duration,
     sampling_frequency=sampling_frequency, outdir=outdir) for name in ['H1', 'L1', 'V1']]
 
@@ -38,12 +38,12 @@ for key in ['a_1', 'a_2', 'tilt_1', 'tilt_2', 'phi_12', 'phi_jl', 'phase', 'iota
 
 # Initialise GravitationalWaveTransient
 # Note that we now need to pass the: priors and flags for each thing that's being marginalised.
-likelihood = tupak.likelihood.GravitationalWaveTransient(
+likelihood = tupak.GravitationalWaveTransient(
     interferometers=IFOs, waveform_generator=waveform_generator, prior=priors,
     distance_marginalization=True, phase_marginalization=True)
 
 # Run sampler
-result = tupak.sampler.run_sampler(likelihood=likelihood, priors=priors, sampler='dynesty',
-                                   injection_parameters=injection_parameters, outdir=outdir, label='BasicTutorial')
+result = tupak.run_sampler(likelihood=likelihood, priors=priors, sampler='dynesty',
+                           injection_parameters=injection_parameters, outdir=outdir, label='BasicTutorial')
 result.plot_corner()
 print(result)
diff --git a/examples/open_data_examples/GW150914.py b/examples/open_data_examples/GW150914.py
index 695ba2db4529706fbb49bb5a853b1137d4936283..9d274eac4885b61a636f84f8ec5310cd8873fa0c 100644
--- a/examples/open_data_examples/GW150914.py
+++ b/examples/open_data_examples/GW150914.py
@@ -7,15 +7,16 @@ This example estimates all 15 parameters of the binary black hole system using
 commonly used prior distributions.  This will take a few hours to run.
 """
 from __future__ import division, print_function
-import tupak
 
 # Define some convienence labels and the trigger time of the event
+import tupak.gw.likelihood
+
 outdir = 'outdir'
 label = 'GW150914'
-time_of_event = tupak.utils.get_event_time(label)
+time_of_event = tupak.core.utils.get_event_time(label)
 
 # This sets up logging output to understand what tupak is doing
-tupak.utils.setup_logger(outdir=outdir, label=label)
+tupak.core.utils.setup_logger(outdir=outdir, label=label)
 
 # Here we import the detector data. This step downloads data from the
 # LIGO/Virgo open data archives. The data is saved to an `Interferometer`
@@ -24,7 +25,7 @@ tupak.utils.setup_logger(outdir=outdir, label=label)
 # makes sense, for each detector a plot is created in the `outdir` called
 # H1_frequency_domain_data.png and LI_frequency_domain_data.png. The two
 # objects are then placed into a list.
-interferometers = tupak.detector.get_event_data(label)
+interferometers = tupak.gw.detector.get_event_data(label)
 
 # We now define the prior. You'll notice we only do this for the two masses,
 # the merger time, and the distance; in each case choosing a prior which
@@ -33,12 +34,12 @@ interferometers = tupak.detector.get_event_data(label)
 # using the syntax below, or choose a fixed value by just providing a float
 # value as the prior.
 prior = dict()
-prior['mass_1'] = tupak.prior.Uniform(30, 50, 'mass_1')
-prior['mass_2'] = tupak.prior.Uniform(20, 40, 'mass_2')
-prior['geocent_time'] = tupak.prior.Uniform(
+prior['mass_1'] = tupak.core.prior.Uniform(30, 50, 'mass_1')
+prior['mass_2'] = tupak.core.prior.Uniform(20, 40, 'mass_2')
+prior['geocent_time'] = tupak.core.prior.Uniform(
     time_of_event - 0.1, time_of_event + 0.1, name='geocent_time')
 #prior['geocent_time'] = time_of_event
-prior['luminosity_distance'] = tupak.prior.PowerLaw(
+prior['luminosity_distance'] = tupak.core.prior.PowerLaw(
     alpha=2, minimum=100, maximum=1000)
 
 # In this step we define a `waveform_generator`. This is out object which
@@ -47,13 +48,13 @@ prior['luminosity_distance'] = tupak.prior.PowerLaw(
 # the waveform approximant and reference frequency.
 waveform_generator = tupak.WaveformGenerator(time_duration=interferometers[0].duration,
                                              sampling_frequency=interferometers[0].sampling_frequency,
-                                             frequency_domain_source_model=tupak.source.lal_binary_black_hole,
+                                             frequency_domain_source_model=tupak.gw.source.lal_binary_black_hole,
                                              parameters={'waveform_approximant': 'IMRPhenomPv2',
                                                          'reference_frequency': 50})
 
 # In this step, we define the likelihood. Here we use the standard likelihood
 # function, passing it the data and the waveform generator.
-likelihood = tupak.GravitationalWaveTransient(interferometers, waveform_generator)
+likelihood = tupak.gw.likelihood.GravitationalWaveTransient(interferometers, waveform_generator)
 
 # Finally, we run the sampler. This function takes the likelihood and prio
 # along with some options for how to do the sampling and how to save the data
diff --git a/examples/open_data_examples/GW150914_minimal.py b/examples/open_data_examples/GW150914_minimal.py
index 7df645cbbd093c3856920a67cbbbbe05e632dd05..b63df0d742a9a322c69285c1790add37df2a72e1 100644
--- a/examples/open_data_examples/GW150914_minimal.py
+++ b/examples/open_data_examples/GW150914_minimal.py
@@ -6,9 +6,9 @@ stimation on GW150914 using open data.
 """
 import tupak
 
-t0 = tupak.utils.get_event_time("GW150914")
-prior = dict(geocent_time=tupak.prior.Uniform(t0-0.1, t0+0.1, name='geocent_time'))
-interferometers = tupak.detector.get_event_data("GW150914")
-likelihood = tupak.likelihood.get_binary_black_hole_likelihood(interferometers)
+t0 = tupak.gw.utils.get_event_time("GW150914")
+prior = dict(geocent_time=tupak.core.prior.Uniform(t0 - 0.1, t0 + 0.1, name='geocent_time'))
+interferometers = tupak.gw.detector.get_event_data("GW150914")
+likelihood = tupak.gw.likelihood.get_binary_black_hole_likelihood(interferometers)
 result = tupak.run_sampler(likelihood, prior, label='GW150914')
 result.plot_corner()
diff --git a/examples/other_examples/gaussian_example.py b/examples/other_examples/gaussian_example.py
index b65e3bc0ad46763c7808229d890f4eb5549e9185..e6f505ed53c10478dd27414dfd545a6005e5b522 100644
--- a/examples/other_examples/gaussian_example.py
+++ b/examples/other_examples/gaussian_example.py
@@ -8,7 +8,7 @@ import tupak
 import numpy as np
 
 # A few simple setup steps
-tupak.utils.setup_logger()
+tupak.core.utils.setup_logger()
 label = 'gaussian_example'
 outdir = 'outdir'
 
@@ -45,8 +45,8 @@ class GaussianLikelihood(tupak.Likelihood):
 
 
 likelihood = GaussianLikelihood(data)
-priors = dict(mu=tupak.prior.Uniform(0, 5, 'mu'),
-              sigma=tupak.prior.Uniform(0, 10, 'sigma'))
+priors = dict(mu=tupak.core.prior.Uniform(0, 5, 'mu'),
+              sigma=tupak.core.prior.Uniform(0, 10, 'sigma'))
 
 # And run sampler
 result = tupak.run_sampler(
diff --git a/examples/other_examples/hyper_parameter_example.py b/examples/other_examples/hyper_parameter_example.py
index 936ef26833c2005ba4f614cbc154b0c93c09784e..b357357035d23a1f0a04450e2a3035fff4b1ae4c 100644
--- a/examples/other_examples/hyper_parameter_example.py
+++ b/examples/other_examples/hyper_parameter_example.py
@@ -6,11 +6,11 @@ from __future__ import division
 import tupak
 import numpy as np
 
-tupak.utils.setup_logger()
+tupak.core.utils.setup_logger()
 outdir = 'outdir'
 
 
-class GaussianLikelihood(tupak.likelihood.Likelihood):
+class GaussianLikelihood(tupak.core.likelihood.Likelihood):
     def __init__(self, x, y, waveform_generator):
         self.x = x
         self.y = y
@@ -47,15 +47,15 @@ for i in range(Nevents):
     N = len(time)
     data = model(time, **injection_parameters) + np.random.normal(0, sigma, N)
 
-    waveform_generator = tupak.waveform_generator.WaveformGenerator(
+    waveform_generator = tupak.gw.waveform_generator.WaveformGenerator(
         time_duration=time_duration, sampling_frequency=sampling_frequency,
         time_domain_source_model=model)
 
     likelihood = GaussianLikelihood(time, data, waveform_generator)
 
-    priors = dict(m=tupak.prior.Uniform(-10, 10, 'm'))
+    priors = dict(m=tupak.core.prior.Uniform(-10, 10, 'm'))
 
-    result = tupak.sampler.run_sampler(
+    result = tupak.core.sampler.run_sampler(
         likelihood=likelihood, priors=priors, sampler='dynesty', npoints=1000,
         injection_parameters=injection_parameters, outdir=outdir,
         verbose=False, label='individual_{}'.format(i), use_ratio=False,
@@ -64,18 +64,18 @@ for i in range(Nevents):
     samples.append(result.samples)
 
 # Now run the hyperparameter inference
-run_prior = tupak.prior.Uniform(minimum=-10, maximum=10, name='mu_m')
-hyper_prior = tupak.prior.Gaussian(mu=0, sigma=1, name='hyper')
+run_prior = tupak.core.prior.Uniform(minimum=-10, maximum=10, name='mu_m')
+hyper_prior = tupak.core.prior.Gaussian(mu=0, sigma=1, name='hyper')
 
-hp_likelihood = tupak.likelihood.HyperparameterLikelihood(
+hp_likelihood = tupak.gw.likelihood.HyperparameterLikelihood(
         samples, hyper_prior, run_prior)
 
 hp_priors = dict(
-    mu=tupak.prior.Uniform(-10, 10, 'mu', '$\mu_m$'),
-    sigma=tupak.prior.Uniform(0, 10, 'sigma', '$\sigma_m$'))
+    mu=tupak.core.prior.Uniform(-10, 10, 'mu', '$\mu_m$'),
+    sigma=tupak.core.prior.Uniform(0, 10, 'sigma', '$\sigma_m$'))
 
 # And run sampler
-result = tupak.sampler.run_sampler(
+result = tupak.core.sampler.run_sampler(
     likelihood=hp_likelihood, priors=hp_priors, sampler='dynesty',
     npoints=1000, outdir=outdir, label='hyperparameter', use_ratio=False,
     sample='unif', verbose=True)
diff --git a/examples/other_examples/linear_regression.py b/examples/other_examples/linear_regression.py
index 23b22c44084e12ff6e8f53a8e814e78a866e1973..0deb0571bcf6b5020a9500e9061f346bdbdaa68f 100644
--- a/examples/other_examples/linear_regression.py
+++ b/examples/other_examples/linear_regression.py
@@ -12,7 +12,7 @@ import matplotlib.pyplot as plt
 import inspect
 
 # A few simple setup steps
-tupak.utils.setup_logger()
+tupak.core.utils.setup_logger()
 label = 'linear_regression'
 outdir = 'outdir'
 
@@ -96,8 +96,8 @@ likelihood = GaussianLikelihood(time, data, sigma, model)
 # From hereon, the syntax is exactly equivalent to other tupak examples
 # We make a prior
 priors = {}
-priors['m'] = tupak.prior.Uniform(0, 5, 'm')
-priors['c'] = tupak.prior.Uniform(-2, 2, 'c')
+priors['m'] = tupak.core.prior.Uniform(0, 5, 'm')
+priors['c'] = tupak.core.prior.Uniform(-2, 2, 'c')
 
 # And run sampler
 result = tupak.run_sampler(
diff --git a/examples/other_examples/linear_regression_unknown_noise.py b/examples/other_examples/linear_regression_unknown_noise.py
index 1d9da4bf6babe0a5ebc7aa10ba7145e39cdf579b..3389de13e2a55e807d3bf4f57e2851b69efcb6cc 100644
--- a/examples/other_examples/linear_regression_unknown_noise.py
+++ b/examples/other_examples/linear_regression_unknown_noise.py
@@ -12,7 +12,7 @@ import matplotlib.pyplot as plt
 import inspect
 
 # A few simple setup steps
-tupak.utils.setup_logger()
+tupak.core.utils.setup_logger()
 label = 'linear_regression_unknown_noise'
 outdir = 'outdir'
 
@@ -104,9 +104,9 @@ likelihood = GaussianLikelihood(time, data, model)
 # From hereon, the syntax is exactly equivalent to other tupak examples
 # We make a prior
 priors = {}
-priors['m'] = tupak.prior.Uniform(0, 5, 'm')
-priors['c'] = tupak.prior.Uniform(-2, 2, 'c')
-priors['sigma'] = tupak.prior.Uniform(0, 10, 'sigma')
+priors['m'] = tupak.core.prior.Uniform(0, 5, 'm')
+priors['c'] = tupak.core.prior.Uniform(-2, 2, 'c')
+priors['sigma'] = tupak.core.prior.Uniform(0, 10, 'sigma')
 
 # And run sampler
 result = tupak.run_sampler(
diff --git a/examples/other_examples/sine_gaussian_example.py b/examples/other_examples/sine_gaussian_example.py
index 66d04866394ffad615158e4cea17168dfeea742b..b1702e773b73b72b0fd1e5c5c743e75fdc728706 100644
--- a/examples/other_examples/sine_gaussian_example.py
+++ b/examples/other_examples/sine_gaussian_example.py
@@ -14,7 +14,7 @@ sampling_frequency = 2048.
 # Specify the output directory and the name of the simulation.
 outdir = 'outdir'
 label = 'sine_gaussian'
-tupak.utils.setup_logger(outdir=outdir, label=label)
+tupak.core.utils.setup_logger(outdir=outdir, label=label)
 
 # Set up a random seed for result reproducibility.  This is optional!
 np.random.seed(170801)
@@ -25,15 +25,15 @@ injection_parameters = dict(hrss = 1e-22, Q = 5.0, frequency = 200.0, ra = 1.375
                              geocent_time = 1126259642.413, psi= 2.659)
 
 # Create the waveform_generator using a sine Gaussian source function
-waveform_generator = tupak.waveform_generator.WaveformGenerator(time_duration=time_duration,
-                                                                sampling_frequency=sampling_frequency,
-                                                                frequency_domain_source_model=tupak.source.sinegaussian,
-                                                                parameters=injection_parameters)
+waveform_generator = tupak.gw.waveform_generator.WaveformGenerator(time_duration=time_duration,
+                                                                   sampling_frequency=sampling_frequency,
+                                                                   frequency_domain_source_model=tupak.gw.source.sinegaussian,
+                                                                   parameters=injection_parameters)
 hf_signal = waveform_generator.frequency_domain_strain()
 
 # Set up interferometers.  In this case we'll use three interferometers (LIGO-Hanford (H1), LIGO-Livingston (L1),
 # and Virgo (V1)).  These default to their design sensitivity
-IFOs = [tupak.detector.get_interferometer_with_fake_noise_and_injection(
+IFOs = [tupak.gw.detector.get_interferometer_with_fake_noise_and_injection(
     name, injection_polarizations=hf_signal, injection_parameters=injection_parameters, time_duration=time_duration,
     sampling_frequency=sampling_frequency, outdir=outdir) for name in ['H1', 'L1', 'V1']]
 
@@ -50,16 +50,16 @@ for key in ['psi', 'ra', 'dec', 'geocent_time']:
 # that will be included in the sampler.  If we do nothing, then the default priors get used.
 #priors['Q'] = tupak.prior.create_default_prior(name='Q')
 #priors['frequency'] = tupak.prior.create_default_prior(name='frequency')
-priors['Q'] = tupak.prior.Uniform(2, 50, 'Q')
-priors['frequency'] = tupak.prior.Uniform(30, 1000, 'frequency')
-priors['hrss'] = tupak.prior.Uniform(1e-23, 1e-21, 'hrss')
+priors['Q'] = tupak.core.prior.Uniform(2, 50, 'Q')
+priors['frequency'] = tupak.core.prior.Uniform(30, 1000, 'frequency')
+priors['hrss'] = tupak.core.prior.Uniform(1e-23, 1e-21, 'hrss')
 
 # Initialise the likelihood by passing in the interferometer data (IFOs) and the waveoform generator
-likelihood = tupak.likelihood.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator)
+likelihood = tupak.gw.likelihood.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator)
 
 # Run sampler.  In this case we're going to use the `dynesty` sampler
-result = tupak.sampler.run_sampler(likelihood=likelihood, priors=priors, sampler='dynesty', npoints=1000,
-                                   injection_parameters=injection_parameters, outdir=outdir, label=label)
+result = tupak.core.sampler.run_sampler(likelihood=likelihood, priors=priors, sampler='dynesty', npoints=1000,
+                                        injection_parameters=injection_parameters, outdir=outdir, label=label)
 
 # make some plots of the outputs
 result.plot_corner()
diff --git a/examples/supernova_example/supernova_example.py b/examples/supernova_example/supernova_example.py
index 51787a6216a8486a00579f9311b6ca22fcb2d954..1a194a965bc3426eccf95ae6d253b332f16dde37 100644
--- a/examples/supernova_example/supernova_example.py
+++ b/examples/supernova_example/supernova_example.py
@@ -8,17 +8,19 @@ factor. (See https://arxiv.org/pdf/1202.3256.pdf)
 
 """
 from __future__ import division, print_function
-import tupak
 import numpy as np
 
 # Set the duration and sampling frequency of the data segment that we're going to inject the signal into
+import tupak.gw.likelihood
+import tupak.gw.prior
+
 time_duration = 3.
 sampling_frequency = 4096.
 
 # Specify the output directory and the name of the simulation.
 outdir = 'outdir'
 label = 'supernova'
-tupak.utils.setup_logger(outdir=outdir, label=label)
+tupak.core.utils.setup_logger(outdir=outdir, label=label)
 
 # Set up a random seed for result reproducibility.  This is optional!
 np.random.seed(170801)
@@ -33,16 +35,16 @@ injection_parameters = dict(file_path='MuellerL15_example_inj.txt',
                             psi=2.659)
 
 # Create the waveform_generator using a supernova source function
-waveform_generator = tupak.waveform_generator.WaveformGenerator(
+waveform_generator = tupak.gw.waveform_generator.WaveformGenerator(
     time_duration=time_duration, sampling_frequency=sampling_frequency,
-    frequency_domain_source_model=tupak.source.supernova,
+    frequency_domain_source_model=tupak.gw.source.supernova,
     parameters=injection_parameters)
 hf_signal = waveform_generator.frequency_domain_strain()
 
 # Set up interferometers.  In this case we'll use three interferometers
 # (LIGO-Hanford (H1), LIGO-Livingston (L1), and Virgo (V1)).  These default to
 # their design sensitivity
-IFOs = [tupak.detector.get_interferometer_with_fake_noise_and_injection(
+IFOs = [tupak.gw.detector.get_interferometer_with_fake_noise_and_injection(
     name, injection_polarizations=hf_signal,
     injection_parameters=injection_parameters, time_duration=time_duration,
     sampling_frequency=sampling_frequency, outdir=outdir)
@@ -57,32 +59,32 @@ imagPCs = np.loadtxt('SupernovaImagPCs.txt')
 simulation_parameters = dict(
     realPCs=realPCs, imagPCs=imagPCs)
 
-search_waveform_generator = tupak.waveform_generator.WaveformGenerator(
+search_waveform_generator = tupak.gw.waveform_generator.WaveformGenerator(
     time_duration=time_duration, sampling_frequency=sampling_frequency,
-    frequency_domain_source_model=tupak.source.supernova_pca_model,
+    frequency_domain_source_model=tupak.gw.source.supernova_pca_model,
     parameters=simulation_parameters)
 
 # Set up prior
 priors = dict()
 for key in ['psi', 'geocent_time']:
     priors[key] = injection_parameters[key]
-priors['luminosity_distance'] = tupak.prior.Uniform(
+priors['luminosity_distance'] = tupak.core.prior.Uniform(
     2, 20, 'luminosity_distance')
-priors['pc_coeff1'] = tupak.prior.Uniform(-1, 1, 'pc_coeff1')
-priors['pc_coeff2'] = tupak.prior.Uniform(-1, 1, 'pc_coeff2')
-priors['pc_coeff3'] = tupak.prior.Uniform(-1, 1, 'pc_coeff3')
-priors['pc_coeff4'] = tupak.prior.Uniform(-1, 1, 'pc_coeff4')
-priors['pc_coeff5'] = tupak.prior.Uniform(-1, 1, 'pc_coeff5')
-priors['ra'] = tupak.prior.create_default_prior(name='ra')
-priors['dec'] = tupak.prior.create_default_prior(name='dec')
-priors['geocent_time'] = tupak.prior.Uniform(
+priors['pc_coeff1'] = tupak.core.prior.Uniform(-1, 1, 'pc_coeff1')
+priors['pc_coeff2'] = tupak.core.prior.Uniform(-1, 1, 'pc_coeff2')
+priors['pc_coeff3'] = tupak.core.prior.Uniform(-1, 1, 'pc_coeff3')
+priors['pc_coeff4'] = tupak.core.prior.Uniform(-1, 1, 'pc_coeff4')
+priors['pc_coeff5'] = tupak.core.prior.Uniform(-1, 1, 'pc_coeff5')
+priors['ra'] = tupak.gw.prior.create_default_prior(name='ra')
+priors['dec'] = tupak.gw.prior.create_default_prior(name='dec')
+priors['geocent_time'] = tupak.core.prior.Uniform(
     injection_parameters['geocent_time'] - 1,
     injection_parameters['geocent_time'] + 1,
     'geocent_time')
 
 # Initialise the likelihood by passing in the interferometer data (IFOs) and
 # the waveoform generator
-likelihood = tupak.GravitationalWaveTransient(
+likelihood = tupak.gw.likelihood.GravitationalWaveTransient(
     interferometers=IFOs, waveform_generator=search_waveform_generator)
 
 # Run sampler.
@@ -93,14 +95,3 @@ result = tupak.run_sampler(
 # make some plots of the outputs
 result.plot_corner()
 print(result)
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/tutorials/compare_samplers.ipynb b/examples/tutorials/compare_samplers.ipynb
index 69939d13ad32cbf7381dde19fd6dedfc6a677a46..970863a96be01496ee1d34ca74160b5a4c4f0996 100644
--- a/examples/tutorials/compare_samplers.ipynb
+++ b/examples/tutorials/compare_samplers.ipynb
@@ -36,22 +36,22 @@
     "                            psi=2.659)\n",
     "\n",
     "\n",
-    "waveform_generator = tupak.waveform_generator.WaveformGenerator(\n",
+    "waveform_generator = tupak.gw.waveform_generator.WaveformGenerator(\n",
     "    sampling_frequency=sampling_frequency,\n",
     "    time_duration=time_duration,\n",
-    "    frequency_domain_source_model=tupak.source.lal_binary_black_hole,\n",
+    "    frequency_domain_source_model=tupak.gw.source.lal_binary_black_hole,\n",
     "    parameters=injection_parameters)\n",
     "\n",
     "hf_signal = waveform_generator.frequency_domain_strain()\n",
     "\n",
-    "H1 = tupak.detector.get_empty_interferometer('H1')\n",
+    "H1 = tupak.gw.detector.get_empty_interferometer('H1')\n",
     "H1.set_data(sampling_frequency=sampling_frequency, duration=time_duration,\n",
     "            from_power_spectral_density=True)\n",
     "H1.inject_signal(waveform_polarizations=hf_signal, parameters=injection_parameters)\n",
     "\n",
     "IFOs = [H1]\n",
     "\n",
-    "likelihood = tupak.likelihood.GravitationalWaveTransient(IFOs, waveform_generator)"
+    "likelihood = tupak.gw.likelihood.GravitationalWaveTransient(IFOs, waveform_generator)"
    ]
   },
   {
@@ -69,7 +69,7 @@
    "metadata": {},
    "outputs": [],
    "source": [
-    "priors = tupak.prior.fill_priors(injection_parameters, likelihood)\n",
+    "priors = tupak.core.prior.fill_priors(injection_parameters, likelihood)\n",
     "priors['ra'] = tupak.prior.Uniform(0, 2*np.pi, 'ra')\n",
     "priors['dec'] = tupak.prior.Uniform(-np.pi/2, np.pi/2, 'dec')"
    ]
@@ -90,7 +90,7 @@
    "outputs": [],
    "source": [
     "%%time \n",
-    "result = tupak.sampler.run_sampler(\n",
+    "result = tupak.core.sampler.run_sampler(\n",
     "    likelihood, priors=priors, sampler='pymultinest', label='pymultinest',\n",
     "    npoints=200, verbose=False, resume=False)\n",
     "fig = result.plot_corner(save=False)\n",
@@ -112,7 +112,7 @@
    "outputs": [],
    "source": [
     "%%time \n",
-    "result = tupak.sampler.run_sampler(\n",
+    "result = tupak.gw.sampler.run_sampler(\n",
     "    likelihood, priors=priors, sampler='dynesty', label='dynesty',\n",
     "    bound='multi', sample='rwalk', npoints=200, walks=1, verbose=False,\n",
     "    update_interval=100)\n",
@@ -137,7 +137,7 @@
    "outputs": [],
    "source": [
     "%%time \n",
-    "result = tupak.sampler.run_sampler(\n",
+    "result = tupak.gw.sampler.run_sampler(\n",
     "    likelihood, priors=priors, sampler='dynesty', label='dynesty_dynamic',\n",
     "    bound='multi', nlive=250, sample='unif', verbose=True,\n",
     "    update_interval=100, dynamic=True)\n",
@@ -160,7 +160,7 @@
    "outputs": [],
    "source": [
     "%%time \n",
-    "result = tupak.sampler.run_sampler(\n",
+    "result = tupak.gw.sampler.run_sampler(\n",
     "    likelihood, priors=priors, sampler='ptemcee', label='ptemcee',\n",
     "    nwalkers=100, nsteps=200, nburn=100, ntemps=2,\n",
     "    tqdm='tqdm_notebook')\n",
diff --git a/examples/tutorials/making_priors.ipynb b/examples/tutorials/making_priors.ipynb
index d47e96fbce67ce0468c5469733b6879515e39dee..9c09d7c4202d9ae22b76fe5be96679b3ee448997 100644
--- a/examples/tutorials/making_priors.ipynb
+++ b/examples/tutorials/making_priors.ipynb
@@ -67,8 +67,8 @@
      },
      "metadata": {
       "image/png": {
-       "height": 567,
-       "width": 1728
+       "height": 567.0,
+       "width": 1728.0
       }
      },
      "output_type": "display_data"
@@ -78,24 +78,24 @@
     "fig = figure(figsize=(24, 8))\n",
     "\n",
     "priors = [\n",
-    "    tupak.prior.Uniform(minimum=5, maximum=50),\n",
-    "    tupak.prior.LogUniform(minimum=5, maximum=50),\n",
-    "    tupak.prior.PowerLaw(name='name', alpha=2, minimum=100, maximum=1000),\n",
-    "    tupak.prior.UniformComovingVolume(name='name', minimum=100, maximum=1000, latex_label='label'),\n",
-    "    tupak.prior.FromFile(name='name', file_name='comoving.txt', minimum=100, maximum=30000, latex_label='label'),\n",
-    "    tupak.prior.Gaussian(name='name', mu=0, sigma=1, latex_label='label'),\n",
-    "    tupak.prior.TruncatedGaussian(name='name', mu=1, sigma=0.4, minimum=-1, maximum=1,\n",
+    "    tupak.core.prior.Uniform(minimum=5, maximum=50),\n",
+    "    tupak.core.prior.LogUniform(minimum=5, maximum=50),\n",
+    "    tupak.core.prior.PowerLaw(name='name', alpha=2, minimum=100, maximum=1000),\n",
+    "    tupak.core.prior.UniformComovingVolume(name='name', minimum=100, maximum=1000, latex_label='label'),\n",
+    "    tupak.core.prior.FromFile(name='name', file_name='comoving.txt', minimum=100, maximum=30000, latex_label='label'),\n",
+    "    tupak.core.prior.Gaussian(name='name', mu=0, sigma=1, latex_label='label'),\n",
+    "    tupak.core.prior.TruncatedGaussian(name='name', mu=1, sigma=0.4, minimum=-1, maximum=1,\n",
     "                                  latex_label='label'),\n",
-    "    tupak.prior.Cosine(name='name', latex_label='label'),\n",
-    "    tupak.prior.Sine(name='name', latex_label='label'),\n",
-    "    tupak.prior.Interped(name='name', xx = np.linspace(0, 10, 1000), yy=np.linspace(0, 10, 1000)**4,\n",
+    "    tupak.core.prior.Cosine(name='name', latex_label='label'),\n",
+    "    tupak.core.prior.Sine(name='name', latex_label='label'),\n",
+    "    tupak.core.prior.Interped(name='name', xx = np.linspace(0, 10, 1000), yy=np.linspace(0, 10, 1000)**4,\n",
     "                         minimum=3, maximum=5, latex_label='label')\n",
     "]\n",
     "\n",
     "for ii, prior in enumerate(priors):\n",
     "    fig.add_subplot(2, 5, 1 + ii)\n",
     "    hist(prior.sample(100000), bins=100, histtype='step', normed=1)\n",
-    "    if not isinstance(prior, tupak.prior.Gaussian):\n",
+    "    if not isinstance(prior, tupak.core.prior.Gaussian):\n",
     "        plot(np.linspace(prior.minimum, prior.maximum, 1000),\n",
     "             prior.prob(np.linspace(prior.minimum, prior.maximum, 1000)))\n",
     "    else:\n",
@@ -158,8 +158,8 @@
      },
      "metadata": {
       "image/png": {
-       "height": 337,
-       "width": 743
+       "height": 337.0,
+       "width": 743.0
       }
      },
      "output_type": "display_data"
@@ -223,8 +223,8 @@
      },
      "metadata": {
       "image/png": {
-       "height": 337,
-       "width": 716
+       "height": 337.0,
+       "width": 716.0
       }
      },
      "output_type": "display_data"
diff --git a/examples/tutorials/visualising_the_results.ipynb b/examples/tutorials/visualising_the_results.ipynb
index ae3947f26c5a81152bb8fe0e8068fdc53778d979..6d34f374d85897bdd1ac99d72e6bc34861762cce 100644
--- a/examples/tutorials/visualising_the_results.ipynb
+++ b/examples/tutorials/visualising_the_results.ipynb
@@ -65,24 +65,24 @@
     "                            luminosity_distance=200., iota=0.4, psi=2.659, phase=1.3, geocent_time=1126259642.413,\n",
     "                            waveform_approximant='IMRPhenomPv2', reference_frequency=50., ra=1.375, dec=-1.2108)\n",
     "\n",
-    "waveform_generator = tupak.waveform_generator.WaveformGenerator(\n",
+    "waveform_generator = tupak.gw.waveform_generator.WaveformGenerator(\n",
     "    sampling_frequency=sampling_frequency, time_duration=time_duration,\n",
-    "    frequency_domain_source_model=tupak.source.lal_binary_black_hole,\n",
+    "    frequency_domain_source_model=tupak.gw.source.lal_binary_black_hole,\n",
     "    parameters=injection_parameters)\n",
     "hf_signal = waveform_generator.frequency_domain_strain()\n",
     "\n",
-    "IFOs = [tupak.detector.get_interferometer_with_fake_noise_and_injection(\n",
+    "IFOs = [tupak.gw.detector.get_interferometer_with_fake_noise_and_injection(\n",
     "    'H1', injection_polarizations=hf_signal, injection_parameters=injection_parameters, time_duration=time_duration,\n",
     "    sampling_frequency=sampling_frequency, outdir=outdir)]\n",
     "\n",
     "priors = injection_parameters.copy()\n",
-    "priors['mass_1'] = tupak.prior.Uniform(20, 50, 'mass_1')\n",
-    "priors['mass_2'] = tupak.prior.Uniform(20, 50, 'mass_2')\n",
-    "priors['luminosity_distance'] = tupak.prior.Uniform(100, 300, 'luminosity_distance')\n",
+    "priors['mass_1'] = tupak.core.prior.Uniform(20, 50, 'mass_1')\n",
+    "priors['mass_2'] = tupak.core.prior.Uniform(20, 50, 'mass_2')\n",
+    "priors['luminosity_distance'] = tupak.core.prior.Uniform(100, 300, 'luminosity_distance')\n",
     "\n",
-    "likelihood = tupak.likelihood.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator)\n",
+    "likelihood = tupak.gw.likelihood.GravitationalWaveTransient(interferometers=IFOs, waveform_generator=waveform_generator)\n",
     "\n",
-    "result = tupak.sampler.run_sampler(likelihood=likelihood, priors=priors, sampler='dynesty', npoints=100,\n",
+    "result = tupak.core.sampler.run_sampler(likelihood=likelihood, priors=priors, sampler='dynesty', npoints=100,\n",
     "                                   injection_parameters=injection_parameters, outdir=outdir, label=label,\n",
     "                                   walks=5)\n",
     "\n",
diff --git a/requirements.txt b/requirements.txt
index 356634c1c863b2c80a7d6f84efbf66d16a6056c7..fe8a629b9a049938e04c73d9c49034b19bffc522 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -14,4 +14,3 @@ nestle
 deepdish
 ptemcee
 mock
-lalsuite
diff --git a/setup.py b/setup.py
index a82b6c257bd2142d5f1c481b0c740fd8312ba64d..2be1bb3d80b180df8ba156d5f272944864d8b0ed 100644
--- a/setup.py
+++ b/setup.py
@@ -24,8 +24,9 @@ with open('tupak/' + version_file, 'w+') as f:
 
 setup(name='tupak',
       version='0.1',
-      packages=['tupak'],
+      packages=['tupak', 'tupak.core', 'tupak.gw'],
       package_dir={'tupak': 'tupak'},
-      package_data={'tupak': ['noise_curves/*.txt', 'prior_files/*.txt',
-                              version_file]}
+      package_data={'tupak.core': ['prior_files/*.txt'],
+                    'tupak.gw': ['noise_curves/*.txt'],
+                    'tupak': [version_file]}
       )
diff --git a/test/detector_tests.py b/test/detector_tests.py
index 9c2c459c966f17f9344010a1282aea7d6c1aa831..d254cc6f85a0fd58e76d0498b734f671fafee201 100644
--- a/test/detector_tests.py
+++ b/test/detector_tests.py
@@ -1,10 +1,10 @@
-from context import tupak
-from tupak import detector
+from __future__ import absolute_import
+
+import tupak
 import unittest
 import mock
 from mock import MagicMock
 import numpy as np
-import logging
 
 
 class TestDetector(unittest.TestCase):
@@ -23,12 +23,12 @@ class TestDetector(unittest.TestCase):
         self.xarm_tilt = 0.
         self.yarm_tilt = 0.
         # noinspection PyTypeChecker
-        self.ifo = detector.Interferometer(name=self.name, power_spectral_density=self.power_spectral_density,
-                                           minimum_frequency=self.minimum_frequency,
-                                           maximum_frequency=self.maximum_frequency, length=self.length,
-                                           latitude=self.latitude, longitude=self.longitude, elevation=self.elevation,
-                                           xarm_azimuth=self.xarm_azimuth, yarm_azimuth=self.yarm_azimuth,
-                                           xarm_tilt=self.xarm_tilt, yarm_tilt=self.yarm_tilt)
+        self.ifo = tupak.gw.detector.Interferometer(name=self.name, power_spectral_density=self.power_spectral_density,
+                                                    minimum_frequency=self.minimum_frequency,
+                                                    maximum_frequency=self.maximum_frequency, length=self.length,
+                                                    latitude=self.latitude, longitude=self.longitude, elevation=self.elevation,
+                                                    xarm_azimuth=self.xarm_azimuth, yarm_azimuth=self.yarm_azimuth,
+                                                    xarm_tilt=self.xarm_tilt, yarm_tilt=self.yarm_tilt)
 
     def tearDown(self):
         del self.name
@@ -102,24 +102,24 @@ class TestDetector(unittest.TestCase):
 
     def test_vertex_without_update(self):
         _ = self.ifo.vertex
-        with mock.patch('tupak.utils.get_vertex_position_geocentric') as m:
+        with mock.patch('tupak.gw.utils.get_vertex_position_geocentric') as m:
             m.return_value = np.array([1])
             self.assertFalse(np.array_equal(self.ifo.vertex, np.array([1])))
 
     def test_vertex_with_latitude_update(self):
-        with mock.patch('tupak.utils.get_vertex_position_geocentric') as m:
+        with mock.patch('tupak.gw.utils.get_vertex_position_geocentric') as m:
             m.return_value = np.array([1])
             self.ifo.latitude = 5
             self.assertEqual(self.ifo.vertex, np.array([1]))
 
     def test_vertex_with_longitude_update(self):
-        with mock.patch('tupak.utils.get_vertex_position_geocentric') as m:
+        with mock.patch('tupak.gw.utils.get_vertex_position_geocentric') as m:
             m.return_value = np.array([1])
             self.ifo.longitude = 5
             self.assertEqual(self.ifo.vertex, np.array([1]))
 
     def test_vertex_with_elevation_update(self):
-        with mock.patch('tupak.utils.get_vertex_position_geocentric') as m:
+        with mock.patch('tupak.gw.utils.get_vertex_position_geocentric') as m:
             m.return_value = np.array([1])
             self.ifo.elevation = 5
             self.assertEqual(self.ifo.vertex, np.array([1]))
@@ -213,14 +213,14 @@ class TestDetector(unittest.TestCase):
         self.assertTrue(np.array_equal(self.ifo.power_spectral_density_array, np.array([1, 4])))
 
     def test_antenna_response_default(self):
-        with mock.patch('tupak.utils.get_polarization_tensor') as m:
+        with mock.patch('tupak.gw.utils.get_polarization_tensor') as m:
             with mock.patch('numpy.einsum') as n:
                 m.return_value = 0
                 n.return_value = 1
                 self.assertEqual(self.ifo.antenna_response(234, 52, 54, 76, 'plus'), 1)
 
     def test_antenna_response_einsum(self):
-        with mock.patch('tupak.utils.get_polarization_tensor') as m:
+        with mock.patch('tupak.gw.utils.get_polarization_tensor') as m:
             m.return_value = np.ones((3, 3))
             self.assertAlmostEqual(self.ifo.antenna_response(234, 52, 54, 76, 'plus'), self.ifo.detector_tensor.sum())
 
@@ -273,8 +273,8 @@ class TestDetector(unittest.TestCase):
     def test_inject_signal_sets_data_with_existing_data_array(self):
         self.ifo.get_detector_response = MagicMock(return_value=np.array([1]))
         self.ifo.frequency_array = np.array([0, 1])
-        with mock.patch('tupak.utils.optimal_snr_squared') as m:
-            with mock.patch('tupak.utils.matched_filter_snr_squared') as n:
+        with mock.patch('tupak.gw.utils.optimal_snr_squared') as m:
+            with mock.patch('tupak.gw.utils.matched_filter_snr_squared') as n:
                 m.return_value = 0
                 n.return_value = 0
                 self.ifo.data = np.array([1])
@@ -284,8 +284,8 @@ class TestDetector(unittest.TestCase):
     def test_inject_signal_sets_data_without_data_array(self):
         self.ifo.get_detector_response = MagicMock(return_value=np.array([1]))
         self.ifo.frequency_array = np.array([0, 1])
-        with mock.patch('tupak.utils.optimal_snr_squared') as m:
-            with mock.patch('tupak.utils.matched_filter_snr_squared') as n:
+        with mock.patch('tupak.gw.utils.optimal_snr_squared') as m:
+            with mock.patch('tupak.gw.utils.matched_filter_snr_squared') as n:
                 m.return_value = 0
                 n.return_value = 0
                 self.ifo.data = 1
@@ -322,7 +322,7 @@ class TestDetector(unittest.TestCase):
             self.ifo.set_data(sampling_frequency=1, duration=1)
 
     def test_set_data_sets_data_from_frequency_domain_strain(self):
-        with mock.patch('tupak.utils.create_frequency_series') as m:
+        with mock.patch('tupak.core.utils.create_frequency_series') as m:
             m.return_value = np.array([1])
             self.ifo.minimum_frequency = 0
             self.ifo.maximum_frequency = 3
@@ -331,7 +331,7 @@ class TestDetector(unittest.TestCase):
             self.assertTrue(np.array_equal(self.ifo.data, np.array([1])))
 
     def test_set_data_sets_frequencies_from_frequency_domain_strain(self):
-        with mock.patch('tupak.utils.create_frequency_series') as m:
+        with mock.patch('tupak.core.utils.create_frequency_series') as m:
             m.return_value = np.array([1])
             self.ifo.minimum_frequency = 0
             self.ifo.maximum_frequency = 3
@@ -340,7 +340,7 @@ class TestDetector(unittest.TestCase):
             self.assertTrue(np.array_equal(self.ifo.frequency_array, np.array([1])))
 
     def test_set_data_sets_frequencies_from_spectral_density(self):
-        with mock.patch('tupak.utils.create_frequency_series') as m:
+        with mock.patch('tupak.core.utils.create_frequency_series') as m:
             m.return_value = np.array([1])
             self.ifo.minimum_frequency = 0
             self.ifo.maximum_frequency = 3
@@ -349,7 +349,7 @@ class TestDetector(unittest.TestCase):
             self.assertTrue(np.array_equal(self.ifo.frequency_array, np.array([2])))
 
     def test_set_data_sets_epoch(self):
-        with mock.patch('tupak.utils.create_frequency_series') as m:
+        with mock.patch('tupak.core.utils.create_frequency_series') as m:
             m.return_value = np.array([1])
             self.ifo.minimum_frequency = 0
             self.ifo.maximum_frequency = 3
@@ -358,7 +358,7 @@ class TestDetector(unittest.TestCase):
             self.assertEqual(self.ifo.epoch, 4)
 
     def test_set_data_sets_sampling_frequency(self):
-        with mock.patch('tupak.utils.create_frequency_series') as m:
+        with mock.patch('tupak.core.utils.create_frequency_series') as m:
             m.return_value = np.array([1])
             self.ifo.minimum_frequency = 0
             self.ifo.maximum_frequency = 3
@@ -367,7 +367,7 @@ class TestDetector(unittest.TestCase):
             self.assertEqual(self.ifo.sampling_frequency, 1)
 
     def test_set_data_sets_duration(self):
-        with mock.patch('tupak.utils.create_frequency_series') as m:
+        with mock.patch('tupak.core.utils.create_frequency_series') as m:
             m.return_value = np.array([1])
             self.ifo.minimum_frequency = 0
             self.ifo.maximum_frequency = 3
@@ -376,12 +376,12 @@ class TestDetector(unittest.TestCase):
             self.assertEqual(self.ifo.duration, 1)
 
     def test_time_delay_from_geocenter(self):
-        with mock.patch('tupak.utils.time_delay_geocentric') as m:
+        with mock.patch('tupak.gw.utils.time_delay_geocentric') as m:
             m.return_value = 1
             self.assertEqual(self.ifo.time_delay_from_geocenter(1, 2, 3), 1)
 
     def test_vertex_position_geocentric(self):
-        with mock.patch('tupak.utils.get_vertex_position_geocentric') as m:
+        with mock.patch('tupak.gw.utils.get_vertex_position_geocentric') as m:
             m.return_value = 1
             self.assertEqual(self.ifo.vertex_position_geocentric(), 1)
 
diff --git a/test/example_tests.py b/test/example_tests.py
index 8c4762de63ebc0b47dcf9d49aa5feaea4d1af350..99b22f89aaffa55f3832d37b8a0bd56e69849a8d 100644
--- a/test/example_tests.py
+++ b/test/example_tests.py
@@ -1,3 +1,7 @@
+from __future__ import absolute_import
+import matplotlib
+matplotlib.use('Agg')
+
 import unittest
 import os
 import shutil
@@ -5,13 +9,13 @@ import logging
 
 # Required to run the tests
 from past.builtins import execfile
-from context import tupak
+import tupak.core.utils
 
 # Imported to ensure the examples run
 import numpy as np
 import inspect
 
-tupak.utils.command_line_args.test = True
+tupak.core.utils.command_line_args.test = True
 
 
 class Test(unittest.TestCase):
diff --git a/test/make_standard_data.py b/test/make_standard_data.py
index d4407acb5c7fa5713e4c6fedde9189b7545574b5..193e44f272d0bd82dab4e936b452b6dbe5a424d0 100644
--- a/test/make_standard_data.py
+++ b/test/make_standard_data.py
@@ -5,7 +5,7 @@ import os
 import numpy as np
 
 import tupak
-from tupak.waveform_generator import WaveformGenerator
+from tupak.gw.waveform_generator import WaveformGenerator
 
 np.random.seed(10)
 
@@ -33,18 +33,18 @@ simulation_parameters = dict(
 )
 
 waveform_generator = WaveformGenerator(time_duration=time_duration, sampling_frequency=sampling_frequency,
-                                       frequency_domain_source_model=tupak.source.lal_binary_black_hole,
+                                       frequency_domain_source_model=tupak.gw.source.lal_binary_black_hole,
                                        parameters=simulation_parameters)
 
 signal = waveform_generator.frequency_domain_strain()
 
-IFO = tupak.detector.get_interferometer_with_fake_noise_and_injection(name='H1', injection_polarizations=signal,
-                                                                      injection_parameters=simulation_parameters,
-                                                                      time_duration=time_duration, plot=False,
-                                                                      sampling_frequency=sampling_frequency)
+IFO = tupak.gw.detector.get_interferometer_with_fake_noise_and_injection(name='H1', injection_polarizations=signal,
+                                                                         injection_parameters=simulation_parameters,
+                                                                         time_duration=time_duration, plot=False,
+                                                                         sampling_frequency=sampling_frequency)
 
 hf_signal_and_noise = IFO.data
-frequencies = tupak.utils.create_frequency_series(
+frequencies = tupak.core.utils.create_frequency_series(
     sampling_frequency=sampling_frequency, duration=time_duration)
 
 if __name__ == '__main__':
diff --git a/test/noise_realisation_tests.py b/test/noise_realisation_tests.py
index 2fe373bb1868b9c49088db875abe9cd736c37b70..8f96cb30c69383527ae77cdee4c765ed5d95d190 100644
--- a/test/noise_realisation_tests.py
+++ b/test/noise_realisation_tests.py
@@ -1,6 +1,7 @@
+from __future__ import absolute_import
 import numpy as np
 import unittest
-from context import tupak
+import tupak
 
 
 class TestNoiseRealisation(unittest.TestCase):
@@ -10,7 +11,7 @@ class TestNoiseRealisation(unittest.TestCase):
         factor = np.sqrt(2./time_duration)
         n_avg = 1000
         psd_avg = 0
-        interferometer = tupak.detector.get_empty_interferometer('H1')
+        interferometer = tupak.gw.detector.get_empty_interferometer('H1')
         for x in range(0, n_avg):
             interferometer.set_data(sampling_frequency, time_duration, from_power_spectral_density=True)
             psd_avg += abs(interferometer.data)**2
@@ -25,20 +26,20 @@ class TestNoiseRealisation(unittest.TestCase):
     def test_noise_normalisation(self):
         time_duration = 1.
         sampling_frequency = 4096.
-        time_array = tupak.utils.create_time_series(sampling_frequency=sampling_frequency, duration=time_duration)
+        time_array = tupak.core.utils.create_time_series(sampling_frequency=sampling_frequency, duration=time_duration)
 
         # generate some toy-model signal for matched filtering SNR testing
         n_avg = 1000
         snr = np.zeros(n_avg)
         mu = np.exp(-(time_array-time_duration/2.)**2 / (2.*0.1**2)) * np.sin(2*np.pi*100*time_array)
-        muf, frequency_array = tupak.utils.nfft(mu, sampling_frequency)
+        muf, frequency_array = tupak.core.utils.nfft(mu, sampling_frequency)
         for x in range(0, n_avg):
-            interferometer = tupak.detector.get_empty_interferometer('H1')
+            interferometer = tupak.gw.detector.get_empty_interferometer('H1')
             interferometer.set_data(sampling_frequency, time_duration, from_power_spectral_density=True)
             hf_tmp = interferometer.data
             psd = interferometer.power_spectral_density
-            snr[x] = tupak.utils.inner_product(hf_tmp, muf, frequency_array, psd) \
-                     / np.sqrt(tupak.utils.inner_product(muf, muf, frequency_array, psd))
+            snr[x] = tupak.gw.utils.inner_product(hf_tmp, muf, frequency_array, psd) \
+                     / np.sqrt(tupak.gw.utils.inner_product(muf, muf, frequency_array, psd))
 
         self.assertTrue(np.isclose(np.std(snr), 1.00, atol=1e-1))
 
diff --git a/test/prior_tests.py b/test/prior_tests.py
index bca3df485996461a62fbc205325810f9e1e08fcb..c7d39c8c0da6c83b9ea37989625093a50935a463 100644
--- a/test/prior_tests.py
+++ b/test/prior_tests.py
@@ -1,4 +1,5 @@
-from context import tupak
+from __future__ import absolute_import
+import tupak
 import unittest
 from mock import Mock
 import numpy as np
@@ -7,7 +8,7 @@ import numpy as np
 class TestPriorInstantiationWithoutOptionalPriors(unittest.TestCase):
 
     def setUp(self):
-        self.prior = tupak.prior.Prior()
+        self.prior = tupak.core.prior.Prior()
 
     def tearDown(self):
         del self.prior
@@ -22,14 +23,26 @@ class TestPriorInstantiationWithoutOptionalPriors(unittest.TestCase):
         self.assertFalse(self.prior.is_fixed)
 
     def test_class_instance(self):
-        self.assertIsInstance(self.prior, tupak.prior.Prior)
+        self.assertIsInstance(self.prior, tupak.core.prior.Prior)
+
+    def test_magic_call_is_the_same_as_sampling(self):
+        self.prior.sample = Mock(return_value=0.5)
+        self.assertEqual(self.prior.sample(), self.prior())
+
+    def test_base_rescale_method(self):
+        self.assertIsNone(self.prior.rescale(1))
+
+    def test_base_repr(self):
+        self.prior = tupak.core.prior.Prior(name='test_name', latex_label='test_label', minimum=0, maximum=1)
+        expected_string = "Prior(name='test_name', latex_label='test_label', minimum=0, maximum=1)"
+        self.assertEqual(expected_string, self.prior.__repr__())
 
 
 class TestPriorName(unittest.TestCase):
 
     def setUp(self):
         self.test_name = 'test_name'
-        self.prior = tupak.prior.Prior(self.test_name)
+        self.prior = tupak.core.prior.Prior(self.test_name)
 
     def tearDown(self):
         del self.prior
@@ -43,7 +56,7 @@ class TestPriorName(unittest.TestCase):
 class TestPriorLatexLabel(unittest.TestCase):
     def setUp(self):
         self.test_name = 'test_name'
-        self.prior = tupak.prior.Prior(self.test_name)
+        self.prior = tupak.core.prior.Prior(self.test_name)
 
     def tearDown(self):
         del self.test_name
@@ -72,15 +85,15 @@ class TestPriorIsFixed(unittest.TestCase):
         pass
 
     def test_is_fixed_parent_class(self):
-        self.prior = tupak.prior.Prior()
+        self.prior = tupak.core.prior.Prior()
         self.assertFalse(self.prior.is_fixed)
 
     def test_is_fixed_delta_function_class(self):
-        self.prior = tupak.prior.DeltaFunction(peak=0)
+        self.prior = tupak.core.prior.DeltaFunction(peak=0)
         self.assertTrue(self.prior.is_fixed)
 
     def test_is_fixed_uniform_class(self):
-        self.prior = tupak.prior.Uniform(minimum=0, maximum=10)
+        self.prior = tupak.core.prior.Uniform(minimum=0, maximum=10)
         self.assertFalse(self.prior.is_fixed)
 
 
@@ -89,18 +102,18 @@ class TestPriorClasses(unittest.TestCase):
     def setUp(self):
 
         self.priors = [
-            tupak.prior.DeltaFunction(name='test', peak=1),
-            tupak.prior.Gaussian(name='test', mu=0, sigma=1),
-            tupak.prior.PowerLaw(name='test', alpha=0, minimum=0, maximum=1),
-            tupak.prior.PowerLaw(name='test', alpha=2, minimum=1, maximum=1e2),
-            tupak.prior.Uniform(name='test', minimum=0, maximum=1),
-            tupak.prior.LogUniform(name='test', minimum=5e0, maximum=1e2),
-            tupak.prior.UniformComovingVolume(name='test', minimum=2e2, maximum=5e3),
-            tupak.prior.Sine(name='test'),
-            tupak.prior.Cosine(name='test'),
-            tupak.prior.Interped(name='test', xx=np.linspace(0, 10, 1000), yy=np.linspace(0, 10, 1000)**4,
-                                 minimum=3, maximum=5),
-            tupak.prior.TruncatedGaussian(name='test', mu=1, sigma=0.4, minimum=-1, maximum=1)
+            tupak.core.prior.DeltaFunction(name='test', peak=1),
+            tupak.core.prior.Gaussian(name='test', mu=0, sigma=1),
+            tupak.core.prior.PowerLaw(name='test', alpha=0, minimum=0, maximum=1),
+            tupak.core.prior.PowerLaw(name='test', alpha=2, minimum=1, maximum=1e2),
+            tupak.core.prior.Uniform(name='test', minimum=0, maximum=1),
+            tupak.core.prior.LogUniform(name='test', minimum=5e0, maximum=1e2),
+            tupak.core.prior.UniformComovingVolume(name='test', minimum=2e2, maximum=5e3),
+            tupak.core.prior.Sine(name='test'),
+            tupak.core.prior.Cosine(name='test'),
+            tupak.core.prior.Interped(name='test', xx=np.linspace(0, 10, 1000), yy=np.linspace(0, 10, 1000) ** 4,
+                                      minimum=3, maximum=5),
+            tupak.core.prior.TruncatedGaussian(name='test', mu=1, sigma=0.4, minimum=-1, maximum=1)
         ]
 
     def test_minimum_rescaling(self):
@@ -142,7 +155,7 @@ class TestPriorClasses(unittest.TestCase):
         """Test that the prior probability is non-negative in domain of validity and zero outside."""
         for prior in self.priors:
             # skip delta function prior in this case
-            if isinstance(prior, tupak.prior.DeltaFunction):
+            if isinstance(prior, tupak.core.prior.DeltaFunction):
                 continue
             if prior.maximum != np.inf:
                 outside_domain = np.linspace(prior.maximum + 1, prior.maximum + 1e4, 1000)
@@ -152,7 +165,7 @@ class TestPriorClasses(unittest.TestCase):
         """Test that the prior probability is non-negative in domain of validity and zero outside."""
         for prior in self.priors:
             # skip delta function prior in this case
-            if isinstance(prior, tupak.prior.DeltaFunction):
+            if isinstance(prior, tupak.core.prior.DeltaFunction):
                 continue
             if prior.minimum != -np.inf:
                 outside_domain = np.linspace(prior.minimum - 1e4, prior.minimum - 1, 1000)
@@ -162,7 +175,7 @@ class TestPriorClasses(unittest.TestCase):
         """Test that the prior probability is non-negative in domain of validity and zero outside."""
         for prior in self.priors:
             # skip delta function prior in this case
-            if isinstance(prior, tupak.prior.DeltaFunction):
+            if isinstance(prior, tupak.core.prior.DeltaFunction):
                 continue
             if prior.minimum == -np.inf:
                 prior.minimum = -1e5
@@ -175,7 +188,7 @@ class TestPriorClasses(unittest.TestCase):
         """Test that the prior probability is non-negative in domain of validity and zero outside."""
         for prior in self.priors:
             # skip delta function prior in this case
-            if isinstance(prior, tupak.prior.DeltaFunction):
+            if isinstance(prior, tupak.core.prior.DeltaFunction):
                 continue
             surround_domain = np.linspace(prior.minimum - 1, prior.maximum + 1, 1000)
             prior.prob(surround_domain)
@@ -183,9 +196,9 @@ class TestPriorClasses(unittest.TestCase):
     def test_normalized(self):
         """Test that each of the priors are normalised, this needs care for delta function and Gaussian priors"""
         for prior in self.priors:
-            if isinstance(prior, tupak.prior.DeltaFunction):
+            if isinstance(prior, tupak.core.prior.DeltaFunction):
                 continue
-            elif isinstance(prior, tupak.prior.Gaussian):
+            elif isinstance(prior, tupak.core.prior.Gaussian):
                 domain = np.linspace(-1e2, 1e2, 1000)
             else:
                 domain = np.linspace(prior.minimum, prior.maximum, 1000)
@@ -198,24 +211,24 @@ class TestFillPrior(unittest.TestCase):
         self.likelihood = Mock()
         self.likelihood.parameters = dict(a=0, b=0, c=0, d=0, asdf=0, ra=1)
         self.likelihood.non_standard_sampling_parameter_keys = dict(t=8)
-        self.priors = dict(a=1, b=1.1, c='string', d=tupak.prior.Uniform(0, 1))
-        self.priors = tupak.prior.fill_priors(self.priors, self.likelihood)
+        self.priors = dict(a=1, b=1.1, c='string', d=tupak.core.prior.Uniform(0, 1))
+        self.priors = tupak.core.prior.fill_priors(self.priors, self.likelihood)
 
     def tearDown(self):
         del self.likelihood
         del self.priors
 
     def test_prior_instances_are_not_changed_by_parsing(self):
-        self.assertIsInstance(self.priors['d'], tupak.prior.Uniform)
+        self.assertIsInstance(self.priors['d'], tupak.core.prior.Uniform)
 
     def test_parsing_ints_to_delta_priors_class(self):
-        self.assertIsInstance(self.priors['a'], tupak.prior.DeltaFunction)
+        self.assertIsInstance(self.priors['a'], tupak.core.prior.DeltaFunction)
 
     def test_parsing_ints_to_delta_priors_with_right_value(self):
         self.assertEqual(self.priors['a'].peak, 1)
 
     def test_parsing_floats_to_delta_priors_class(self):
-        self.assertIsInstance(self.priors['b'], tupak.prior.DeltaFunction)
+        self.assertIsInstance(self.priors['b'], tupak.core.prior.DeltaFunction)
 
     def test_parsing_floats_to_delta_priors_with_right_value(self):
         self.assertAlmostEqual(self.priors['b'].peak, 1.1, 1e-8)
@@ -225,7 +238,7 @@ class TestFillPrior(unittest.TestCase):
             print(self.priors['asdf'])
 
     def test_with_available_default_priors_a_default_prior_is_set(self):
-        self.assertIsInstance(self.priors['ra'], tupak.prior.Uniform)
+        self.assertIsInstance(self.priors['ra'], tupak.core.prior.Uniform)
 
 
 if __name__ == '__main__':
diff --git a/test/sampler_tests.py b/test/sampler_tests.py
index b380df85992e4c33c05b2d2702a04687f63f504d..a24e472d652dbc82b31014053e82a53e5349b014 100644
--- a/test/sampler_tests.py
+++ b/test/sampler_tests.py
@@ -1,6 +1,7 @@
-from context import tupak
-from tupak import prior
-from tupak.result import Result
+from __future__ import absolute_import
+import tupak
+from tupak.core import prior
+from tupak.core.result import Result
 import unittest
 from mock import MagicMock
 import numpy as np
@@ -12,7 +13,7 @@ import copy
 class TestSampler(unittest.TestCase):
 
     def setUp(self):
-        likelihood = tupak.likelihood.Likelihood()
+        likelihood = tupak.core.likelihood.Likelihood()
         likelihood.parameters = dict(a=1, b=2, c=3)
         delta_prior = prior.DeltaFunction(peak=0)
         delta_prior.rescale = MagicMock(return_value=prior.DeltaFunction(peak=1))
@@ -29,11 +30,11 @@ class TestSampler(unittest.TestCase):
         test_directory = 'test_directory'
         if os.path.isdir(test_directory):
             os.rmdir(test_directory)
-        self.sampler = tupak.sampler.Sampler(likelihood=likelihood,
-                                             priors=priors,
-                                             external_sampler='nestle',
-                                             outdir=test_directory,
-                                             use_ratio=False)
+        self.sampler = tupak.core.sampler.Sampler(likelihood=likelihood,
+                                                  priors=priors,
+                                                  external_sampler='nestle',
+                                                  outdir=test_directory,
+                                                  use_ratio=False)
 
     def tearDown(self):
         os.rmdir(self.sampler.outdir)
@@ -68,8 +69,8 @@ class TestSampler(unittest.TestCase):
             self.sampler.external_sampler = 'unexpected_sampler'
 
     def test_setting_custom_sampler(self):
-        other_sampler = tupak.sampler.Sampler(self.sampler.likelihood,
-                                             self.sampler.priors)
+        other_sampler = tupak.core.sampler.Sampler(self.sampler.likelihood,
+                                                   self.sampler.priors)
         self.sampler.external_sampler = other_sampler
         self.assertEqual(self.sampler.external_sampler, other_sampler)
 
diff --git a/test/standard_data.txt b/test/standard_data.txt
index abaab16e47d4b8b78f1952daafcc26af8e6efbbc..7bc38c983a0d134a392896d7880ee73b6fb1a357 100644
--- a/test/standard_data.txt
+++ b/test/standard_data.txt
@@ -1,2502 +1,2502 @@
 # frequency hf_real hf_imag
 0.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
-2.500000000000000000e-01 2.712164704499983446e-20 -8.632846508010759845e-21
-5.000000000000000000e-01 -5.859783771937879104e-20 -1.208855347352751813e-20
-7.500000000000000000e-01 -3.178952922960888016e-22 4.445310922756554263e-20
-1.000000000000000000e+00 2.355955589830128022e-20 -2.813522510571723493e-20
-1.250000000000000000e+00 -2.730390116170350940e-20 9.280414339464840024e-20
-1.500000000000000000e+00 1.006755653562511153e-20 -4.419976568129027883e-20
-1.750000000000000000e+00 4.115897303108330092e-21 2.112765252168851979e-21
-2.000000000000000000e+00 1.627206716214960216e-22 -2.055456486745229570e-20
-2.250000000000000000e+00 -6.620417284972205530e-21 3.193631759085623336e-20
-2.500000000000000000e+00 1.641930478250154448e-20 -7.417676043695194317e-20
-2.750000000000000000e+00 4.561626470555889080e-20 1.651272385360627989e-20
-3.000000000000000000e+00 -3.659295383736936845e-20 1.555295886054513411e-21
-3.250000000000000000e+00 3.898966362323945648e-20 1.189242531546789503e-20
-3.500000000000000000e+00 8.669101029159549862e-21 -5.830811834269203185e-21
-3.750000000000000000e+00 1.687854061667690166e-20 -3.862430892461262588e-20
-4.000000000000000000e+00 -4.309720420032583526e-20 2.344429335749293334e-20
-4.250000000000000000e+00 5.124063269341232469e-21 1.534678338703042296e-20
-4.500000000000000000e+00 5.629004909995830096e-20 2.412527345253236103e-20
-4.750000000000000000e+00 -4.094358710091549087e-20 -1.266852735905987429e-20
-5.000000000000000000e+00 -7.499066839484846846e-20 5.658934250460733550e-20
-5.250000000000000000e+00 -6.610445682003900510e-20 6.603808628804247375e-20
-5.500000000000000000e+00 1.008873647278321625e-20 -3.106870526243811777e-20
-5.750000000000000000e+00 9.043218726204733357e-20 7.139941297647547924e-20
-6.000000000000000000e+00 4.260765191393523254e-20 3.064697755390980978e-20
-6.250000000000000000e+00 6.342178497154278359e-20 3.386211582843387811e-20
-6.500000000000000000e+00 3.759498227853935748e-21 3.019274935156022785e-20
-6.750000000000000000e+00 5.300863812138494611e-20 -4.992794671944581946e-20
-7.000000000000000000e+00 -1.028506702222263807e-20 3.944573096767358533e-21
-7.250000000000000000e+00 2.325121814501505576e-20 3.383388805519979153e-20
-7.500000000000000000e+00 -1.013602062938300552e-20 -1.286739679489225775e-20
-7.750000000000000000e+00 -2.082846795788444472e-20 3.538853331665840101e-20
-8.000000000000000000e+00 5.031977293296024171e-21 2.161467693164155859e-20
-8.250000000000000000e+00 -1.805415248367332283e-20 1.672477547965369346e-20
-8.500000000000000000e+00 4.961413146095949980e-20 4.036387170353681605e-20
-8.750000000000000000e+00 7.394431428515550788e-21 4.461522672971337800e-20
-9.000000000000000000e+00 6.951936760875046112e-22 1.005831327971198444e-21
-9.250000000000000000e+00 -3.490890467256912093e-22 5.157331357101254857e-22
-9.500000000000000000e+00 4.660938766499154217e-22 -3.078507752819964701e-22
-9.750000000000000000e+00 -1.648182151763208975e-22 1.239305361927998421e-22
-1.000000000000000000e+01 1.086065953741803739e-22 -2.513111609839415997e-24
-1.025000000000000000e+01 -4.638186794156298950e-23 -4.496665648935288191e-23
-1.050000000000000000e+01 -1.054855230038820423e-22 -3.567888032427948610e-23
-1.075000000000000000e+01 -4.829272938102087255e-23 2.477063276695814593e-23
-1.100000000000000000e+01 -7.133597231831673365e-23 3.215468854855187099e-23
-1.125000000000000000e+01 -1.719241124490278525e-23 6.188778416424666315e-23
-1.150000000000000000e+01 -2.525173563234492259e-23 2.894155824701237036e-23
-1.175000000000000000e+01 2.157585297555417289e-23 5.880126120067713665e-23
-1.200000000000000000e+01 3.647232262772666639e-23 7.980844331341396293e-23
-1.225000000000000000e+01 -8.925448137390323972e-24 -6.975989958353410904e-23
-1.250000000000000000e+01 -1.477207745046542851e-24 8.376448770418565093e-24
-1.275000000000000000e+01 1.557808352260779713e-23 6.925412952373954596e-25
-1.300000000000000000e+01 -2.757024382832700185e-23 1.850889854380924757e-23
-1.325000000000000000e+01 3.435908771985941978e-23 -1.445282392441980241e-23
-1.350000000000000000e+01 3.891094985410053729e-23 6.970904570357116466e-23
-1.375000000000000000e+01 8.973787468237994024e-24 9.878433566354131233e-23
-1.400000000000000000e+01 1.008930188485294070e-22 9.963840741475518650e-24
-1.425000000000000000e+01 3.700546867783979889e-23 -9.259881699554407047e-24
-1.450000000000000000e+01 -4.341685063508311444e-24 6.257909700035005212e-23
-1.475000000000000000e+01 -1.344629706981722302e-23 -6.947411688912186987e-23
-1.500000000000000000e+01 -8.285691591889364660e-24 -4.065665708720029498e-23
-1.525000000000000000e+01 -1.722999256161710456e-23 3.632522105409022793e-23
-1.550000000000000000e+01 3.734243041658685749e-23 7.826244330206571362e-23
-1.575000000000000000e+01 -2.226014185789581633e-23 -6.190961505704038227e-23
-1.600000000000000000e+01 -2.497621262054429784e-24 3.324326299193254246e-23
-1.625000000000000000e+01 -1.574177567532927727e-23 -2.531448690194617396e-24
-1.650000000000000000e+01 3.008052858430937977e-23 1.639529555625254087e-23
-1.675000000000000000e+01 -3.946196046314530670e-23 5.329125447446961148e-23
-1.700000000000000000e+01 -9.763482306081403310e-24 2.768637950810214537e-23
-1.725000000000000000e+01 -3.181200597396391413e-24 1.573933631904763115e-23
-1.750000000000000000e+01 8.079692972955533547e-24 -4.743982321890858164e-23
-1.775000000000000000e+01 1.131231031437459007e-23 -1.257126889215147412e-23
-1.800000000000000000e+01 -5.141131101100242947e-24 4.229827641443348349e-23
-1.825000000000000000e+01 2.288718283214886607e-23 -5.590657714947022186e-23
-1.850000000000000000e+01 7.078017353934066550e-24 2.106041754686983816e-23
-1.875000000000000000e+01 5.395502093771122398e-23 2.228611560373683290e-23
-1.900000000000000000e+01 -3.208298434871175690e-23 1.025782555321270717e-23
-1.925000000000000000e+01 1.284821480545355912e-23 -1.446427698080464441e-23
-1.950000000000000000e+01 -2.106972477668963616e-23 -2.109789482839201592e-23
-1.975000000000000000e+01 -1.567303604474262492e-23 1.038672156754920147e-23
-2.000000000000000000e+01 2.307254551169242249e-22 7.112373197404001699e-23
-2.025000000000000000e+01 1.271881752377123572e-22 -1.898721599347438438e-22
-2.050000000000000000e+01 -1.867644440433626933e-22 -1.064182893383484942e-22
-2.075000000000000000e+01 -1.416839199867456794e-22 1.448610309021176160e-22
-2.100000000000000000e+01 1.170321301649588327e-22 1.630324566440026571e-22
-2.125000000000000000e+01 1.160913167675419334e-22 -1.044768721229422918e-22
-2.150000000000000000e+01 -1.024544995765774786e-22 -1.322237144827430510e-22
-2.175000000000000000e+01 -1.438329269132518883e-22 9.150762212815487207e-23
-2.200000000000000000e+01 1.078643095797412449e-22 2.029317508458693425e-22
-2.225000000000000000e+01 1.047561254661552070e-22 -1.258368708084358669e-22
-2.250000000000000000e+01 -1.052126762641949879e-22 -1.306132409342473732e-22
-2.275000000000000000e+01 -1.027174841928332129e-22 1.465671669623533371e-22
-2.300000000000000000e+01 1.446867499335273778e-22 7.298626372410399436e-23
-2.325000000000000000e+01 4.779411368917948683e-23 -1.563268356324752608e-22
-2.350000000000000000e+01 -1.517601189526300791e-22 -3.520567877638452850e-23
-2.375000000000000000e+01 2.004211269720131054e-23 1.464184304407333633e-22
-2.400000000000000000e+01 1.468690107124371145e-22 -2.582699124913034830e-23
-2.425000000000000000e+01 -7.971441026882343204e-23 -1.175304566564124156e-22
-2.450000000000000000e+01 -9.589124003158858001e-23 1.049304584713179196e-22
-2.475000000000000000e+01 1.129120984287440201e-22 8.981462276757360771e-23
-2.500000000000000000e+01 2.326120204497287800e-23 -1.586406019050532634e-22
-2.525000000000000000e+01 -1.702180213468862179e-22 2.909517844130738491e-23
-2.550000000000000000e+01 6.455172154113996242e-23 1.271340093163782246e-22
-2.575000000000000000e+01 9.587648975555161399e-23 -1.002256616025740964e-22
-2.600000000000000000e+01 -1.398991478471412231e-22 -5.300487841480823816e-23
-2.625000000000000000e+01 1.117022795619247701e-23 1.372930324050458897e-22
-2.650000000000000000e+01 1.185605111401954489e-22 -7.335925077817183247e-23
-2.675000000000000000e+01 -1.035132106834764597e-22 -9.462688063973827530e-23
-2.700000000000000000e+01 -1.740324730521758265e-23 1.457934693085555729e-22
-2.725000000000000000e+01 1.223809747628024343e-22 -4.963495908179442084e-23
-2.750000000000000000e+01 -8.676598746423197499e-23 -9.641428635959193743e-23
-2.775000000000000000e+01 -5.136626925366903356e-23 1.155992780279256508e-22
-2.800000000000000000e+01 1.542191230180791614e-22 -1.374815676240080168e-23
-2.825000000000000000e+01 -8.380598138213416641e-23 -1.063302768747532401e-22
-2.850000000000000000e+01 -5.612722960219593457e-23 1.251878581107758911e-22
-2.875000000000000000e+01 1.225763826013614780e-22 -7.994253256979120655e-24
-2.900000000000000000e+01 -7.770911701360302984e-23 -1.152204474209738691e-22
-2.925000000000000000e+01 -4.684210219072409524e-23 1.093321930375807077e-22
-2.950000000000000000e+01 1.234776239756163054e-22 -2.304107557674477690e-23
-2.975000000000000000e+01 -9.412357040034717432e-23 -9.379104970210746331e-23
-3.000000000000000000e+01 -3.890927498167095172e-23 1.216234079051298168e-22
-3.025000000000000000e+01 1.015540919586160824e-22 -3.776324033420512149e-23
-3.050000000000000000e+01 -7.954438092842013462e-23 -5.765231591970648506e-23
-3.075000000000000000e+01 1.070500023158899611e-23 1.101140390756478108e-22
-3.100000000000000000e+01 1.118838334901995430e-22 -4.287505869690150598e-23
-3.125000000000000000e+01 -9.936020828337212882e-23 -4.134355555616014928e-23
-3.150000000000000000e+01 2.773213909518850716e-23 1.115718204226748651e-22
-3.175000000000000000e+01 7.897458419889132831e-23 -7.865522551651245269e-23
-3.200000000000000000e+01 -9.538102528598634797e-23 -1.567503681573974856e-23
-3.225000000000000000e+01 5.765695373751511301e-23 1.075369908366437328e-22
-3.250000000000000000e+01 4.244719205704697072e-23 -1.068949156335282818e-22
-3.275000000000000000e+01 -1.128117789584739094e-22 9.354703703095065895e-24
-3.300000000000000000e+01 7.700268747660885640e-23 5.542889849290280117e-23
-3.325000000000000000e+01 4.171143215286306598e-24 -1.084043488055557060e-22
-3.350000000000000000e+01 -9.152854946992641484e-23 6.825523512648014396e-23
-3.375000000000000000e+01 9.792211055904581891e-23 1.996084724774344318e-23
-3.400000000000000000e+01 -3.343712453777662374e-23 -8.112860684012552526e-23
-3.425000000000000000e+01 -4.269641846330970905e-23 8.092609619382123762e-23
-3.450000000000000000e+01 1.110131136102833190e-22 -2.761374401201890379e-23
-3.475000000000000000e+01 -6.969161034296996587e-23 -5.151137946521686447e-23
-3.500000000000000000e+01 5.855840653760807447e-24 8.931864069567358151e-23
-3.525000000000000000e+01 5.854038120905290543e-23 -7.089517640841394988e-23
-3.550000000000000000e+01 -9.598080712297812978e-23 -9.369227156643154816e-24
-3.575000000000000000e+01 5.382170410588201482e-23 8.061720153851665145e-23
-3.600000000000000000e+01 2.168525757513802584e-23 -9.600743481126326865e-23
-3.625000000000000000e+01 -6.978772510175987102e-23 4.374367212593702198e-23
-3.650000000000000000e+01 8.003737898418182263e-23 2.789440034476827344e-23
-3.675000000000000000e+01 -3.932148978716963433e-23 -8.331316422231342589e-23
-3.700000000000000000e+01 -3.488430339126198281e-23 7.640646279355817561e-23
-3.725000000000000000e+01 9.290082425300760269e-23 -2.481553494740086348e-23
-3.750000000000000000e+01 -7.455171855729562802e-23 -4.619496960830496773e-23
-3.775000000000000000e+01 2.381218313631981344e-23 8.158838993571002012e-23
-3.800000000000000000e+01 5.653488862071781452e-23 -7.963232538726942029e-23
-3.825000000000000000e+01 -8.225321227032478397e-23 2.482507445143133300e-23
-3.850000000000000000e+01 6.773453757609398731e-23 5.029383049330417264e-23
-3.875000000000000000e+01 -1.038393063538515797e-23 -8.498135615635509140e-23
-3.900000000000000000e+01 -5.758821782008841201e-23 6.172731125897001908e-23
-3.925000000000000000e+01 8.691621152716609977e-23 -8.431130421374188119e-24
-3.950000000000000000e+01 -5.709334656421805043e-23 -6.046753230154018534e-23
-3.975000000000000000e+01 -1.323447880076822561e-23 7.757514391175479885e-23
-4.000000000000000000e+01 6.208207272102989709e-23 -5.958908209283292187e-23
-4.025000000000000000e+01 -8.129453802246016200e-23 1.547381275829312488e-24
-4.050000000000000000e+01 6.204110818331104809e-23 5.075184312342727033e-23
-4.075000000000000000e+01 5.323425807021322160e-25 -8.679583812965800937e-23
-4.100000000000000000e+01 -6.698590618039348677e-23 5.301449809475448864e-23
-4.125000000000000000e+01 7.123607278526219189e-23 -1.465206705124728351e-23
-4.150000000000000000e+01 -5.995823352285638142e-23 -5.787477014909872263e-23
-4.175000000000000000e+01 4.326837113704679239e-25 7.315124915377185606e-23
-4.200000000000000000e+01 5.136776549645285167e-23 -4.978581567255422637e-23
-4.225000000000000000e+01 -7.857103892768284131e-23 8.274510131226689407e-24
-4.250000000000000000e+01 4.882127618687763833e-23 4.471329841542170205e-23
-4.275000000000000000e+01 -5.856876919174742864e-24 -7.016796271083564829e-23
-4.300000000000000000e+01 -3.799348305091126614e-23 6.035793969024936121e-23
-4.325000000000000000e+01 7.569747512140497922e-23 -1.822184946848093195e-23
-4.350000000000000000e+01 -6.454498119379753048e-23 -3.713212154658859706e-23
-4.375000000000000000e+01 1.430471407330598084e-23 7.243534791907656475e-23
-4.400000000000000000e+01 3.984440323996690003e-23 -5.436203627640728771e-23
-4.425000000000000000e+01 -6.523724208496231778e-23 2.239856143070159931e-23
-4.450000000000000000e+01 6.847501794995103033e-23 3.229040758859793414e-23
-4.475000000000000000e+01 -2.531952986320439559e-23 -6.094483564788924943e-23
-4.500000000000000000e+01 -3.523416960432551472e-23 6.572421954400481111e-23
-4.525000000000000000e+01 5.956760256395763871e-23 -2.551626349256176709e-23
-4.550000000000000000e+01 -6.211877672842867564e-23 -2.191697757047134894e-23
-4.575000000000000000e+01 3.652687927136368838e-23 6.044702676224487064e-23
-4.600000000000000000e+01 2.835371863919730099e-23 -6.921345468959704890e-23
-4.625000000000000000e+01 -5.542999395507395331e-23 4.209669371932429660e-23
-4.650000000000000000e+01 6.717787305234839237e-23 7.969624734998357341e-24
-4.675000000000000000e+01 -4.237977447216953233e-23 -4.623713051116882170e-23
-4.700000000000000000e+01 -6.110988961646493946e-24 6.789852117787042845e-23
-4.725000000000000000e+01 5.072989226841262460e-23 -4.398106733646529725e-23
-4.750000000000000000e+01 -6.290639493071942879e-23 6.799260096159723876e-24
-4.775000000000000000e+01 4.847519195227829469e-23 4.387287776719691482e-23
-4.800000000000000000e+01 -1.498887457601944286e-23 -7.021146758741490272e-23
-4.825000000000000000e+01 -3.552532698270804299e-23 4.187476785589762719e-23
-4.850000000000000000e+01 5.888464903322967314e-23 -1.236246297331037232e-23
-4.875000000000000000e+01 -4.943851407544655080e-23 -2.684172335514720894e-23
-4.900000000000000000e+01 2.771586916058426031e-23 5.290865775692461837e-23
-4.925000000000000000e+01 1.583821867973409831e-23 -5.857720080506076738e-23
-4.950000000000000000e+01 -4.790657325230686811e-23 3.226632921248983661e-23
-4.975000000000000000e+01 5.649075272628695953e-23 7.077893838178480057e-24
-5.000000000000000000e+01 -3.477668358700626424e-23 -4.071186196309661958e-23
-5.025000000000000000e+01 3.864121853016956095e-25 5.692435272562923836e-23
-5.050000000000000000e+01 3.823279792574976931e-23 -4.670027411891067934e-23
-5.075000000000000000e+01 -5.843220534008279053e-23 6.653319164666036416e-26
-5.100000000000000000e+01 4.027461839002553786e-23 4.646885435204708396e-23
-5.125000000000000000e+01 -1.992196224981952399e-23 -5.808120183128789938e-23
-5.150000000000000000e+01 -2.489760425516300070e-23 4.582608460634920487e-23
-5.175000000000000000e+01 5.496456762158808885e-23 -1.262603430262350230e-23
-5.200000000000000000e+01 -5.701118890149879613e-23 -2.193189803623686313e-23
-5.225000000000000000e+01 1.781141644340771249e-23 5.390431989747182626e-23
-5.250000000000000000e+01 1.183944592345907035e-23 -5.291139722794271725e-23
-5.275000000000000000e+01 -3.946045382272554873e-23 2.625031030385050151e-23
-5.300000000000000000e+01 5.762438469481588035e-23 4.182992605844982184e-24
-5.325000000000000000e+01 -4.039961020822820143e-23 -4.101752980468854248e-23
-5.350000000000000000e+01 8.735148752926093530e-26 6.023065523893041496e-23
-5.375000000000000000e+01 3.356445268205417533e-23 -4.554459856445533054e-23
-5.400000000000000000e+01 -6.066125759458057441e-23 1.305913744091392920e-23
-5.425000000000000000e+01 5.435167039871168692e-23 2.315078978573081047e-23
-5.450000000000000000e+01 -1.759998222463638746e-23 -4.345064459833805824e-23
-5.475000000000000000e+01 -1.131798947338936207e-23 5.054247943672806321e-23
-5.500000000000000000e+01 4.283416730841035640e-23 -2.003973360699526676e-23
-5.525000000000000000e+01 -4.820867032678348435e-23 -1.542790407284919880e-23
-5.550000000000000000e+01 3.764898222036049368e-23 4.440728270503905365e-23
-5.575000000000000000e+01 -7.890994382015429676e-24 -5.075586653174269473e-23
-5.600000000000000000e+01 -3.224660510866931329e-23 4.003024971524313821e-23
-5.625000000000000000e+01 5.224924602600539591e-23 -1.081279323330587990e-23
-5.650000000000000000e+01 -4.742924609830259313e-23 -2.661973481780758019e-23
-5.675000000000000000e+01 1.631572811152373797e-23 4.892029989003845761e-23
-5.700000000000000000e+01 1.878913241699229945e-23 -4.888333931392904034e-23
-5.725000000000000000e+01 -4.350150638229255628e-23 2.837787010123187492e-23
-5.750000000000000000e+01 4.488895295457011322e-23 1.464757854905812109e-23
-5.775000000000000000e+01 -3.010867139774521970e-23 -4.084165160045592880e-23
-5.800000000000000000e+01 2.277663186748489164e-24 5.041889233033465733e-23
-5.825000000000000000e+01 3.172577027992432575e-23 -3.515555574892821953e-23
-5.850000000000000000e+01 -4.752717593181811726e-23 1.106724388986983068e-23
-5.875000000000000000e+01 4.524215902386408582e-23 2.277060793581294870e-23
-5.900000000000000000e+01 -2.001477762515066810e-23 -4.596138143013410812e-23
-5.925000000000000000e+01 -1.796908347837870291e-23 4.153663987221820568e-23
-5.950000000000000000e+01 3.658385055091235873e-23 -2.698433955731824725e-23
-5.975000000000000000e+01 -4.238688348058928407e-23 -3.300738987873692104e-24
-6.000000000000000000e+01 2.406330135730904205e-23 4.148319355464059947e-23
-6.025000000000000000e+01 -1.686762096971019007e-24 -4.964575820259173149e-23
-6.050000000000000000e+01 -3.304309693867188251e-23 4.179603060325532648e-23
-6.075000000000000000e+01 3.752524492421949540e-23 -1.497079614988617423e-23
-6.100000000000000000e+01 -4.720814105965363221e-23 -2.676118328729458459e-23
-6.125000000000000000e+01 2.013305214665933024e-23 4.677342411215993093e-23
-6.150000000000000000e+01 1.271259090020488916e-23 -5.120839608065369569e-23
-6.175000000000000000e+01 -4.319354502301179784e-23 3.336242220034903061e-23
-6.200000000000000000e+01 5.294214606744619070e-23 -4.445822668539185786e-24
-6.225000000000000000e+01 -2.959344081830737031e-23 -2.680991941523786751e-23
-6.250000000000000000e+01 8.115888368231509348e-24 3.795453986647265869e-23
-6.275000000000000000e+01 1.970493625235695077e-23 -3.785636712547799032e-23
-6.300000000000000000e+01 -4.525576557313892307e-23 2.631934158650973703e-23
-6.325000000000000000e+01 4.510457031565448889e-23 1.412529091573652185e-23
-6.350000000000000000e+01 -2.470653259696132427e-23 -3.644099332152745054e-23
-6.375000000000000000e+01 2.859528708105024976e-24 4.384159971510462144e-23
-6.400000000000000000e+01 2.697126673891953323e-23 -3.268365155741933496e-23
-6.425000000000000000e+01 -4.057670873993079677e-23 6.106611521032529258e-24
-6.450000000000000000e+01 3.661378276174051041e-23 2.707135678719660800e-23
-6.475000000000000000e+01 -1.805352358927353210e-23 -3.516856074248862989e-23
-6.500000000000000000e+01 -5.861791559275208485e-24 4.061534489105245225e-23
-6.525000000000000000e+01 3.744597137140523074e-23 -1.510036893275503861e-23
-6.550000000000000000e+01 -3.922960272574807460e-23 -7.606212394822602839e-24
-6.575000000000000000e+01 2.443456344769910787e-23 2.395058116141796953e-23
-6.600000000000000000e+01 -6.758963750710524062e-24 -4.074997048909234630e-23
-6.625000000000000000e+01 -2.290003745122283150e-23 3.310996935013039642e-23
-6.650000000000000000e+01 3.706389983900080509e-23 -1.334721966507101643e-23
-6.675000000000000000e+01 -3.576819140018260238e-23 -9.940589286363625368e-24
-6.700000000000000000e+01 2.224544875875993998e-23 3.695130264827537997e-23
-6.725000000000000000e+01 3.060364109068430921e-24 -3.809074518269329202e-23
-6.750000000000000000e+01 -2.933277120930420695e-23 2.989803052244493242e-23
-6.775000000000000000e+01 4.045322112517323538e-23 -1.496148208503431912e-24
-6.800000000000000000e+01 -3.362758549524637161e-23 -1.630757802809295192e-23
-6.825000000000000000e+01 6.105335343973012693e-24 4.043626333425746716e-23
-6.850000000000000000e+01 1.174680451148749625e-23 -4.459094099334457230e-23
-6.875000000000000000e+01 -3.395460177146937793e-23 1.945102186612101671e-23
-6.900000000000000000e+01 4.336996958097777789e-23 5.260098064197813504e-24
-6.925000000000000000e+01 -3.028756164353624930e-23 -2.948392296531345173e-23
-6.950000000000000000e+01 7.231644226383925160e-24 3.741333144221579213e-23
-6.975000000000000000e+01 2.355490919412152589e-23 -2.440530848315836239e-23
-7.000000000000000000e+01 -4.286499914019513299e-23 1.362867614590068981e-23
-7.025000000000000000e+01 3.706119042139954510e-23 1.871286479277023732e-23
-7.050000000000000000e+01 -1.469233677257512059e-23 -3.671154270853398341e-23
-7.075000000000000000e+01 -5.395339664999778975e-24 3.373231494915386741e-23
-7.100000000000000000e+01 3.843890488746440653e-23 -1.998226388192904949e-23
-7.125000000000000000e+01 -3.662343699548441545e-23 8.092820342756146431e-24
-7.150000000000000000e+01 3.472747753982497640e-23 2.333370764684750997e-23
-7.175000000000000000e+01 -1.054687999433411000e-23 -3.902200051558291682e-23
-7.200000000000000000e+01 -9.925001361120649422e-24 3.673796067736689283e-23
-7.225000000000000000e+01 2.229158075732452404e-23 -1.870956093016586909e-23
-7.250000000000000000e+01 -4.039337986998327386e-23 -9.511803167572414276e-24
-7.275000000000000000e+01 2.356999444249159104e-23 3.291637307904052235e-23
-7.300000000000000000e+01 -6.562920290693727196e-25 -4.120241208898869570e-23
-7.325000000000000000e+01 -1.972865789243387685e-23 3.206735872529309358e-23
-7.350000000000000000e+01 3.944188505821807110e-23 -1.258158058037797501e-23
-7.375000000000000000e+01 -3.255250845586968465e-23 -1.247778073181765841e-23
-7.400000000000000000e+01 1.957101907930836404e-23 3.031392750523974017e-23
-7.425000000000000000e+01 3.946207239488303277e-24 -3.369921841794389537e-23
-7.450000000000000000e+01 -2.496718122328271776e-23 1.700015366850105186e-23
-7.475000000000000000e+01 3.910255088573992362e-23 -1.244578353364851923e-23
-7.500000000000000000e+01 -2.703235784211160653e-23 -1.739986871497444755e-23
-7.525000000000000000e+01 1.568243062014348531e-23 2.809220709043498295e-23
-7.550000000000000000e+01 1.022649080800791267e-23 -2.880904847757856827e-23
-7.575000000000000000e+01 -3.238341886929771137e-23 2.135903779274226791e-23
-7.600000000000000000e+01 3.297155701431121160e-23 3.810875236020644736e-24
-7.625000000000000000e+01 -2.403481623035987199e-23 -2.779394046403767269e-23
-7.650000000000000000e+01 1.203311305025420670e-23 3.739669258458952702e-23
-7.675000000000000000e+01 1.805814765932354321e-23 -2.768596646221426175e-23
-7.700000000000000000e+01 -2.989544986550051300e-23 1.471782258123423324e-23
-7.725000000000000000e+01 2.615225113903155364e-23 1.411809062952813814e-23
-7.750000000000000000e+01 -8.972327359326824852e-24 -2.683329862895970105e-23
-7.775000000000000000e+01 -5.807078483222070092e-24 4.277792526011843717e-23
-7.800000000000000000e+01 2.949747602572786788e-23 -3.154280953251731374e-23
-7.825000000000000000e+01 -3.547241164747097039e-23 -5.512488162063539379e-24
-7.850000000000000000e+01 3.424901911681334366e-23 1.263640319760055611e-23
-7.875000000000000000e+01 -1.115152912947550564e-23 -3.695519349122503424e-23
-7.900000000000000000e+01 -6.922150309883473450e-24 2.822632906821625861e-23
-7.925000000000000000e+01 2.502272486392297276e-23 -2.226968618627026480e-23
-7.950000000000000000e+01 -3.713281958589752543e-23 -6.945927765358717799e-25
-7.975000000000000000e+01 2.638609716989471684e-23 1.529477597614874499e-23
-8.000000000000000000e+01 -4.223447576970229124e-24 -2.940897944099102585e-23
-8.025000000000000000e+01 -1.104079884063827210e-23 3.229512697424915456e-23
-8.050000000000000000e+01 2.483133728360688663e-23 -1.043905903007776053e-23
-8.075000000000000000e+01 -2.745521560356515191e-23 -4.440380160865340338e-24
-8.100000000000000000e+01 1.739092444341804290e-23 2.216163917094023342e-23
-8.125000000000000000e+01 -2.271515568364273372e-24 -3.016052700574088697e-23
-8.150000000000000000e+01 -2.097217083570926568e-23 3.225122219414406266e-23
-8.175000000000000000e+01 2.703290069486729139e-23 -8.575722141879726814e-24
-8.200000000000000000e+01 -2.595422259191846611e-23 -9.343283378729021361e-24
-8.225000000000000000e+01 1.585102998812472051e-23 2.129556957966793046e-23
-8.250000000000000000e+01 -3.981902539736882937e-24 -3.959403480397930002e-23
-8.275000000000000000e+01 -2.342994594780359726e-23 2.809900264261015418e-23
-8.300000000000000000e+01 3.421221812148360462e-23 -5.987043348533112785e-24
-8.325000000000000000e+01 -3.085006242024271959e-23 -1.163780548220525421e-23
-8.350000000000000000e+01 1.792968450451997240e-23 2.791711675563054417e-23
-8.375000000000000000e+01 1.145801644018232183e-23 -3.345208693743175765e-23
-8.400000000000000000e+01 -2.403368279026299911e-23 1.829187700346863081e-23
-8.425000000000000000e+01 3.586148567495019264e-23 3.399034326793536518e-24
-8.450000000000000000e+01 -1.702646522798922609e-23 -1.414115752493975582e-23
-8.475000000000000000e+01 -1.140074404895790660e-25 3.140583018655943812e-23
-8.500000000000000000e+01 1.661555007680249832e-23 -3.006688951863209087e-23
-8.525000000000000000e+01 -2.416090964099346247e-23 1.670076292780055212e-23
-8.550000000000000000e+01 2.887030344169255338e-23 1.817652438898331219e-24
-8.575000000000000000e+01 -1.835348570999440527e-23 -2.122605561144190751e-23
-8.600000000000000000e+01 4.831040068137839922e-24 3.680977546605119685e-23
-8.625000000000000000e+01 1.352526414004779791e-23 -2.013256772218914223e-23
-8.650000000000000000e+01 -2.211936743926261738e-23 1.704292769442745486e-23
-8.675000000000000000e+01 2.924187164119053898e-23 5.109432505471753065e-24
-8.700000000000000000e+01 -1.230779847048607564e-23 -1.828991161564326228e-23
-8.725000000000000000e+01 -2.434406597168091143e-24 3.070780649491986861e-23
-8.750000000000000000e+01 1.262727501899003267e-23 -1.642893425017820799e-23
-8.775000000000000000e+01 -2.801069491493071276e-23 9.892698570623540271e-24
-8.800000000000000000e+01 2.560380468859133139e-23 2.007852911264626111e-23
-8.825000000000000000e+01 -1.820017415671953914e-23 -3.627906068544776016e-23
-8.850000000000000000e+01 -1.267516834231845397e-23 3.314418816012844545e-23
-8.875000000000000000e+01 2.461592979944094263e-23 -2.938041673794507516e-23
-8.900000000000000000e+01 -2.395722734058286718e-23 7.408804841095401572e-25
-8.925000000000000000e+01 2.965819016787357684e-23 1.265841033291050274e-23
-8.950000000000000000e+01 -6.724903698214131147e-24 -2.621258403482357395e-23
-8.975000000000000000e+01 -9.774358954995422486e-24 2.296300415724318854e-23
-9.000000000000000000e+01 2.505767470652101484e-23 -1.154783356927228458e-23
-9.025000000000000000e+01 -2.842562127283529591e-23 6.414951334492832123e-25
-9.050000000000000000e+01 2.424212391646538819e-23 2.067011258111565875e-23
-9.075000000000000000e+01 -6.749909926357357360e-24 -2.931364513915710427e-23
-9.100000000000000000e+01 -1.849689821672230872e-23 2.292353660501381791e-23
-9.125000000000000000e+01 2.497288773331216388e-23 -6.549600398740787445e-24
-9.150000000000000000e+01 -2.673535926498571283e-23 -1.185882443346542515e-23
-9.175000000000000000e+01 1.674877497597021207e-23 1.874842785018689644e-23
-9.200000000000000000e+01 -6.167915158661221784e-25 -3.456095058373545361e-23
-9.225000000000000000e+01 -7.642617372420361331e-24 3.116746157358664841e-23
-9.250000000000000000e+01 3.041576122097082632e-23 -1.647098805988446244e-23
-9.275000000000000000e+01 -3.157220092470249778e-23 -7.744234234345475379e-24
-9.300000000000000000e+01 1.699429705776585608e-23 1.657241557011469136e-23
-9.325000000000000000e+01 -5.651213025246208497e-24 -3.022399906995910783e-23
-9.350000000000000000e+01 -1.672475548969616421e-23 1.836119814057472610e-23
-9.375000000000000000e+01 2.919143344688140006e-23 -2.171316908733451287e-24
-9.400000000000000000e+01 -2.389207652396420318e-23 -1.536174318195276342e-23
-9.425000000000000000e+01 6.925046776864602681e-24 2.702441605619058674e-23
-9.450000000000000000e+01 2.778786015987079025e-24 -2.660700173410752853e-23
-9.475000000000000000e+01 -1.976061883040863204e-23 1.739154106750992172e-23
-9.500000000000000000e+01 2.470605172493622748e-23 -2.460227444406662752e-24
-9.525000000000000000e+01 -1.831794536321535552e-23 -1.482479247576418755e-23
-9.550000000000000000e+01 4.765826192049384215e-24 2.849386667624106095e-23
-9.575000000000000000e+01 8.597308133854663974e-24 -1.637676869237771435e-23
-9.600000000000000000e+01 -2.009314358618935669e-23 1.312471592223189369e-23
-9.625000000000000000e+01 2.647711630659820671e-23 1.058455115220613056e-23
-9.650000000000000000e+01 -1.976360262093326097e-23 -1.945592609062087667e-23
-9.675000000000000000e+01 4.834659377002818953e-24 1.912019257857482755e-23
-9.700000000000000000e+01 1.455749980441708372e-23 -2.178073551364262556e-23
-9.725000000000000000e+01 -2.472744866820035693e-23 1.255678013432957086e-23
-9.750000000000000000e+01 2.653246700706060273e-23 6.699803620345876660e-24
-9.775000000000000000e+01 -1.677281159688283013e-23 -2.168028634163828345e-23
-9.800000000000000000e+01 1.975181788698815849e-24 3.100446417020983217e-23
-9.825000000000000000e+01 1.685073082512604795e-23 -2.199212244427009347e-23
-9.850000000000000000e+01 -2.317181964627983990e-23 2.792856412502987612e-24
-9.875000000000000000e+01 2.748373874898780934e-23 1.056262501821591850e-23
-9.900000000000000000e+01 -1.749660440893163714e-23 -2.610020128204811158e-23
-9.925000000000000000e+01 -8.371078065300710378e-24 2.935348421454261709e-23
-9.950000000000000000e+01 1.692034137251982612e-23 -1.639990295506415567e-23
-9.975000000000000000e+01 -2.623679209564314303e-23 1.006698843613153947e-23
-1.000000000000000000e+02 2.443493804261837566e-23 1.006539006048064990e-23
-1.002500000000000000e+02 -1.523209837228417452e-23 -3.105110280038945391e-23
-1.005000000000000000e+02 -5.276905385293927081e-24 3.130190950023402494e-23
-1.007500000000000000e+02 2.163117961368293967e-23 -1.038961408551321395e-23
-1.010000000000000000e+02 -3.202655183473120251e-23 3.167166003224817805e-24
-1.012500000000000000e+02 2.237379833657927058e-23 1.469757526667896631e-23
-1.015000000000000000e+02 -1.769038564902057964e-24 -2.188666351629985355e-23
-1.017500000000000000e+02 -8.424065514477360690e-24 1.889421012114025375e-23
-1.020000000000000000e+02 1.788865546358732596e-23 -5.590600809675071968e-24
-1.022500000000000000e+02 -2.739892461831727848e-23 -2.217179072836825348e-24
-1.025000000000000000e+02 1.817859507045703799e-23 2.016554225959296550e-23
-1.027500000000000000e+02 -6.384374111918508334e-24 -2.685022755230849281e-23
-1.030000000000000000e+02 -2.427177109892109548e-23 1.476171983673784147e-23
-1.032500000000000000e+02 2.841151175985506700e-23 -1.445040826591109401e-23
-1.035000000000000000e+02 -2.621124467025836304e-23 -5.978108036926950602e-24
-1.037500000000000000e+02 1.542703527757917034e-23 2.266156556457647479e-23
-1.040000000000000000e+02 2.310888173957367059e-24 -2.152870605374213698e-23
-1.042500000000000000e+02 -1.297950919861286977e-23 1.008649878673040555e-23
-1.045000000000000000e+02 2.148213115398084467e-23 -3.649050635770546113e-24
-1.047500000000000000e+02 -2.367666393550198982e-23 -6.602628943634956963e-24
-1.050000000000000000e+02 1.579438454468256744e-23 2.053573227543926644e-23
-1.052500000000000000e+02 3.684740443620066394e-24 -2.014108285862416420e-23
-1.055000000000000000e+02 -1.675364988447771466e-23 2.249063900068204380e-23
-1.057500000000000000e+02 2.703362598971859746e-23 1.325085929942987847e-24
-1.060000000000000000e+02 -1.888812457954110256e-23 -9.352745225146467576e-24
-1.062500000000000000e+02 9.197249850032381211e-24 1.876538125327904186e-23
-1.065000000000000000e+02 2.564614425559199949e-25 -2.546195913813156123e-23
-1.067500000000000000e+02 -1.650092742367138782e-23 2.026841330023108103e-23
-1.070000000000000000e+02 2.632353694903863849e-23 -1.511447248460153548e-24
-1.072500000000000000e+02 -2.226185808808287356e-23 -1.291350082819722838e-23
-1.075000000000000000e+02 6.812081974286452427e-24 2.349330952362587201e-23
-1.077500000000000000e+02 8.921548380456610093e-24 -2.397422397035424696e-23
-1.080000000000000000e+02 -1.868489821469254316e-23 1.429960185946650446e-23
-1.082500000000000000e+02 2.923717734473652043e-23 2.397531834049108768e-24
-1.085000000000000000e+02 -1.667312516276060491e-23 -1.168197262158170160e-23
-1.087500000000000000e+02 1.532832773923605963e-23 1.966476179479631480e-23
-1.090000000000000000e+02 1.128630396966536921e-23 -2.114463170286917063e-23
-1.092500000000000000e+02 -2.405185587996498415e-23 6.770858745689151434e-24
-1.095000000000000000e+02 2.266223987054170663e-23 2.885640962619325815e-24
-1.097500000000000000e+02 -1.718092400795986073e-23 -2.158633847627808492e-23
-1.100000000000000000e+02 -3.255567752434258337e-24 2.055021247357335555e-23
-1.102500000000000000e+02 1.406153042053528798e-23 -2.283609807497675306e-23
-1.105000000000000000e+02 -2.121963427143843422e-23 6.146903236806496397e-24
-1.107500000000000000e+02 2.265546423853949157e-23 1.081783144344625085e-24
-1.110000000000000000e+02 -1.695190660814216619e-23 -1.549391218660082232e-23
-1.112500000000000000e+02 -3.510650225202883936e-24 2.339030511587364579e-23
-1.115000000000000000e+02 1.253958450069657097e-23 -1.797559531024698728e-23
-1.117500000000000000e+02 -2.555372778653166293e-23 1.090139383464952490e-23
-1.120000000000000000e+02 2.186078759291705073e-23 8.404511437426496413e-24
-1.122500000000000000e+02 -1.621357816755977368e-23 -2.042250433848371747e-23
-1.125000000000000000e+02 -7.164358650053442831e-24 2.121941727241181361e-23
-1.127500000000000000e+02 1.553669127985733003e-23 -1.497257559602727470e-23
-1.130000000000000000e+02 -2.174975507254505801e-23 7.026860710899022002e-24
-1.132500000000000000e+02 2.281456779935919743e-23 1.100446828468680886e-23
-1.135000000000000000e+02 -1.024963899110992051e-23 -2.161917560746634939e-23
-1.137500000000000000e+02 1.789155779277792860e-24 2.222395534117679409e-23
-1.140000000000000000e+02 1.422660643097180926e-23 -1.773397559021687233e-23
-1.142500000000000000e+02 -1.830512081491989263e-23 -2.009401159491168531e-24
-1.145000000000000000e+02 1.548486054400813213e-23 2.135804491601706135e-23
-1.147500000000000000e+02 -1.091634190823933220e-23 -1.930193549975422523e-23
-1.150000000000000000e+02 -7.777871697757809435e-24 1.914704744203718023e-23
-1.152500000000000000e+02 1.707532392752739770e-23 -1.619118728543117882e-23
-1.155000000000000000e+02 -1.657558244109249721e-23 2.953714536252158225e-24
-1.157500000000000000e+02 1.536031521824293682e-23 1.260576269838018809e-23
-1.160000000000000000e+02 -1.097268441633229056e-23 -1.961855991332875762e-23
-1.162500000000000000e+02 -5.316666048353243902e-24 2.721649432105608299e-23
-1.165000000000000000e+02 1.904847389890266813e-23 -1.044932701220316053e-23
-1.167500000000000000e+02 -2.830738775962871909e-23 -2.834393236008456572e-24
-1.170000000000000000e+02 1.765004468228470872e-23 1.547475793237611733e-23
-1.172500000000000000e+02 -1.135586815177918809e-25 -1.433506796449635752e-23
-1.175000000000000000e+02 -1.170711914603945031e-23 2.156650694360342561e-23
-1.177500000000000000e+02 2.610440487228929015e-23 -7.148621365814310588e-24
-1.180000000000000000e+02 -1.567135423397490751e-23 -5.593258165468322914e-24
-1.182500000000000000e+02 1.189185528903343044e-23 1.494562846497899596e-23
-1.185000000000000000e+02 1.764634619584976833e-24 -2.567579206732541793e-23
-1.187500000000000000e+02 -2.015811542299326541e-23 1.645404696283948864e-23
-1.190000000000000000e+02 2.133986553517925176e-23 -3.253333322759386564e-24
-1.192500000000000000e+02 -2.392893968836136825e-23 -4.494426578504738599e-25
-1.195000000000000000e+02 1.656452820145592514e-23 1.515974131405448182e-23
-1.197500000000000000e+02 -2.872677695883741789e-24 -2.113081457026175167e-23
-1.200000000000000000e+02 -9.596439907893435702e-24 2.077091654360477802e-23
-1.202500000000000000e+02 1.799944255901347831e-23 -6.538273918838872666e-24
-1.205000000000000000e+02 -2.175412271223344161e-23 -9.582227231342038973e-24
-1.207500000000000000e+02 8.002217983506014725e-24 1.588608429600247325e-23
-1.210000000000000000e+02 3.455011760934780639e-24 -2.360996676829120050e-23
-1.212500000000000000e+02 -2.037545710693523225e-23 1.764923680919194905e-23
-1.215000000000000000e+02 2.387900838604716210e-23 -3.168702410582610298e-24
-1.217500000000000000e+02 -2.166104314417842684e-23 -7.255160540586415811e-24
-1.220000000000000000e+02 1.774858425054600123e-23 2.555929657896950405e-23
-1.222500000000000000e+02 3.619767742571408790e-24 -2.260234404910162168e-23
-1.225000000000000000e+02 -1.926949242699603850e-23 1.394100460199811424e-23
-1.227500000000000000e+02 2.327970799569120925e-23 6.562489052291174018e-24
-1.230000000000000000e+02 -2.109315184038635183e-23 -1.705073251980007860e-23
-1.232500000000000000e+02 9.423612292928532108e-24 1.926081879656866243e-23
-1.235000000000000000e+02 4.720554692850859085e-24 -1.873409922860128885e-23
-1.237500000000000000e+02 -1.550219593653056207e-23 1.294698676203720737e-23
-1.240000000000000000e+02 2.149601463810708695e-23 -4.657764165733766163e-25
-1.242500000000000000e+02 -1.445510662090606928e-23 -1.139847000086466441e-23
-1.245000000000000000e+02 2.549304570719257799e-24 1.539560986118926219e-23
-1.247500000000000000e+02 5.681578596367656728e-24 -2.387949031183707264e-23
-1.250000000000000000e+02 -1.273220617643811906e-23 7.023162171003712316e-24
-1.252500000000000000e+02 2.632123491343200359e-23 7.010034731267832979e-24
-1.255000000000000000e+02 -1.160696251692824798e-23 -6.845515599527408018e-24
-1.257500000000000000e+02 1.067212257314658523e-24 1.897247630063038538e-23
-1.260000000000000000e+02 1.482742535621005020e-23 -2.314884787979430178e-23
-1.262500000000000000e+02 -2.031675018841809540e-23 4.548910077476081270e-24
-1.265000000000000000e+02 1.993327749389038001e-23 -1.738862331984886915e-24
-1.267500000000000000e+02 -9.602655834621700293e-24 -1.278106013093370851e-23
-1.270000000000000000e+02 9.677195539367097734e-25 2.416489995503963366e-23
-1.272500000000000000e+02 1.127482107129087790e-23 -1.791252027333456681e-23
-1.275000000000000000e+02 -2.085817329399454668e-23 6.543835546702436665e-24
-1.277500000000000000e+02 1.730916588933635886e-23 5.956425575674092035e-24
-1.280000000000000000e+02 -1.487112083117871536e-23 -8.666845792118266432e-24
-1.282500000000000000e+02 -1.816051668012404564e-24 2.563497233364027735e-23
-1.285000000000000000e+02 1.341555337730541078e-23 -1.562946733436131500e-23
-1.287500000000000000e+02 -2.118773450602929374e-23 5.725739808694926549e-24
-1.290000000000000000e+02 1.457711226221793001e-23 6.952461488488923929e-24
-1.292500000000000000e+02 -1.112656765545010017e-23 -9.673290841992423126e-24
-1.295000000000000000e+02 -3.109828842295887599e-24 2.038789173816058781e-23
-1.297500000000000000e+02 1.436883410683926535e-23 -1.901829030942349197e-23
-1.300000000000000000e+02 -1.850918419540732636e-23 7.249216599078196441e-24
-1.302500000000000000e+02 1.938349908815780108e-23 9.081174818774694649e-24
-1.305000000000000000e+02 -1.210883115436644355e-23 -1.996754006879916995e-23
-1.307500000000000000e+02 -7.164926323468709398e-24 2.323384854496171048e-23
-1.310000000000000000e+02 1.333081114924120477e-23 -1.287074150193080413e-23
-1.312500000000000000e+02 -2.323344851383715730e-23 4.401713129350937551e-24
-1.315000000000000000e+02 1.114450517351220171e-23 4.087246541132987922e-24
-1.317500000000000000e+02 -9.066938899637156694e-24 -2.502072603238027331e-23
-1.320000000000000000e+02 -1.113686628918950643e-23 2.489156564983239178e-23
-1.322500000000000000e+02 1.135829605499610663e-23 -1.156049989787272869e-23
-1.325000000000000000e+02 -2.504854687679436709e-23 -2.724641344188187339e-24
-1.327500000000000000e+02 1.212463514983268670e-23 1.387681418051172852e-23
-1.330000000000000000e+02 -9.953851570836110352e-24 -1.215965409326235948e-23
-1.332500000000000000e+02 -1.070603805564143974e-23 1.252792160045310761e-23
-1.335000000000000000e+02 1.607483489050600481e-23 -1.624676206715513699e-23
-1.337500000000000000e+02 -1.693995779555021166e-23 -5.984167431742812645e-24
-1.340000000000000000e+02 9.828167135037132250e-24 1.738109928582049747e-23
-1.342500000000000000e+02 1.379995210219170839e-25 -1.860539024307825430e-23
-1.345000000000000000e+02 -6.670621437042463856e-24 2.093795892806688454e-23
-1.347500000000000000e+02 1.984219792332518263e-23 -1.355521323667271301e-23
-1.350000000000000000e+02 -2.071256648329697122e-23 3.475979699646409524e-24
-1.352500000000000000e+02 1.450215982138745097e-23 1.426762711298014017e-23
-1.355000000000000000e+02 -1.237914047543117733e-25 -2.073263192802689284e-23
-1.357500000000000000e+02 -7.669417194773032150e-24 1.749063380572999360e-23
-1.360000000000000000e+02 1.706771636790124033e-23 -7.906286162044538535e-24
-1.362500000000000000e+02 -1.645189567209435260e-23 -5.127350915858222362e-25
-1.365000000000000000e+02 1.707542765845285644e-23 1.561460356696980878e-23
-1.367500000000000000e+02 3.060036311228771142e-24 -1.505462480741069892e-23
-1.370000000000000000e+02 -8.670870013215005367e-24 1.684327774210227419e-23
-1.372500000000000000e+02 1.649808557404109040e-23 -5.587407004162465853e-24
-1.375000000000000000e+02 -1.869142175901003864e-23 -5.452257252603485140e-24
-1.377500000000000000e+02 1.167109050845445761e-23 1.179551623376158847e-23
-1.380000000000000000e+02 -8.466251833022352518e-25 -1.775286037592209831e-23
-1.382500000000000000e+02 -1.172033113299455328e-23 1.238742814104833296e-23
-1.385000000000000000e+02 1.978101195790499541e-23 -2.937230516275671310e-24
-1.387500000000000000e+02 -1.822503758484637106e-23 -1.181655504585810642e-23
-1.390000000000000000e+02 9.140779436420089518e-24 1.707980326601031751e-23
-1.392500000000000000e+02 2.335563695269156804e-24 -1.684058059164953786e-23
-1.395000000000000000e+02 -1.351195248195908936e-23 1.960454600410692021e-23
-1.397500000000000000e+02 1.792011217968818409e-23 1.936423742083085623e-24
-1.400000000000000000e+02 -1.888441234110735352e-23 -4.941760174745537586e-24
-1.402500000000000000e+02 8.102367069218201924e-24 2.752248325044536267e-23
-1.405000000000000000e+02 -3.330842801695331600e-25 -1.585205483975360032e-23
-1.407500000000000000e+02 -2.171954056919257368e-23 1.312369946470053602e-23
-1.410000000000000000e+02 1.856304583505397424e-23 -2.066011419965099271e-24
-1.412500000000000000e+02 -2.091202372901195238e-23 -5.705578874807708836e-24
-1.415000000000000000e+02 1.314859763051826406e-23 1.846670476980710274e-23
-1.417500000000000000e+02 8.168935066755696919e-24 -1.377168501149148459e-23
-1.420000000000000000e+02 -1.070757088192836335e-23 1.172799672363542699e-23
-1.422500000000000000e+02 2.214269392319717056e-23 -2.772287707631297718e-24
-1.425000000000000000e+02 -1.669136824556556062e-23 -6.628251964910890563e-24
-1.427500000000000000e+02 7.326891604016235459e-24 2.321385206694532548e-23
-1.430000000000000000e+02 8.763933288122569783e-24 -1.327205683053023199e-23
-1.432500000000000000e+02 -2.149726292345017289e-23 9.434699294009152472e-24
-1.435000000000000000e+02 2.217863298594688805e-23 1.460416592865349947e-24
-1.437500000000000000e+02 -1.788073142269902308e-23 -8.874100057838850598e-24
-1.440000000000000000e+02 -5.285556101151016111e-25 1.858285797227926390e-23
-1.442500000000000000e+02 1.091237932865964071e-23 -1.513113252612009598e-23
-1.445000000000000000e+02 -1.906589388737575951e-23 4.341676064396056645e-24
-1.447500000000000000e+02 1.524891147804051913e-23 4.081882482592458724e-24
-1.450000000000000000e+02 -8.861563407522302850e-24 -4.813749844679650883e-24
-1.452500000000000000e+02 -4.203743703775735715e-24 2.149385833324457704e-23
-1.455000000000000000e+02 6.374647745457702325e-24 -1.807078122768711295e-23
-1.457500000000000000e+02 -1.313053819279129596e-23 6.105154694770100036e-24
-1.460000000000000000e+02 2.873809430880665613e-23 8.389894865705346641e-24
-1.462500000000000000e+02 -1.203076012847734741e-23 -1.098243329867839744e-23
-1.465000000000000000e+02 4.598339271138680595e-24 2.154057089909085602e-23
-1.467500000000000000e+02 6.667918399005499671e-24 -1.757830999738449039e-23
-1.470000000000000000e+02 -9.941487253546835290e-24 1.159587268497648164e-23
-1.472500000000000000e+02 1.584415216930023005e-23 1.777281948163741149e-24
-1.475000000000000000e+02 -2.184549589101808050e-23 -8.638690725261198040e-24
-1.477500000000000000e+02 1.379215052354331914e-25 1.767763855238204061e-23
-1.480000000000000000e+02 1.208331307785220413e-23 -1.888394532773751904e-23
-1.482500000000000000e+02 -2.116135643295762179e-23 -2.814418177498463285e-24
-1.485000000000000000e+02 1.852926190637354394e-23 7.740162261959576123e-24
-1.487500000000000000e+02 -4.925347755607416800e-24 -2.325282442441520935e-23
-1.490000000000000000e+02 -6.776723017569351851e-24 2.243264632018100863e-23
-1.492500000000000000e+02 1.443457631274221089e-23 -1.558615392736292527e-23
-1.495000000000000000e+02 -2.214765777528863508e-23 6.407857930615135559e-26
-1.497500000000000000e+02 2.257660683019326190e-23 9.291013701405035834e-24
-1.500000000000000000e+02 -6.530491167304830303e-24 -8.181922560606203464e-24
-1.502500000000000000e+02 -4.921599358363228699e-24 2.169150617223965592e-23
-1.505000000000000000e+02 1.448660955080036107e-23 -1.040806219878931426e-23
-1.507500000000000000e+02 -2.000772267517390725e-23 3.798018440303968715e-24
-1.510000000000000000e+02 1.869004797228629220e-23 1.205323549534175045e-23
-1.512500000000000000e+02 -7.555044369341099054e-24 -1.592227583073571541e-23
-1.515000000000000000e+02 7.153170309161804543e-25 1.279916969531176302e-23
-1.517500000000000000e+02 2.437513149537217528e-23 -1.690009133777454648e-23
-1.520000000000000000e+02 -1.725656911503450859e-23 1.537958823749189486e-24
-1.522500000000000000e+02 1.877516970295066381e-23 1.583839816541697588e-23
-1.525000000000000000e+02 -4.775184159250064511e-24 -1.524245711245264460e-23
-1.527500000000000000e+02 -7.419978251541030869e-24 1.881402354640282201e-23
-1.530000000000000000e+02 1.682532176806774649e-23 -1.804183116448386494e-23
-1.532500000000000000e+02 -1.478895371674026649e-23 -6.995159377346132216e-24
-1.535000000000000000e+02 1.784890245884195537e-23 1.016882288936995452e-23
-1.537500000000000000e+02 -4.357371056065134580e-24 -1.581104844123180730e-23
-1.540000000000000000e+02 -7.271128156979885662e-24 1.281856712419817102e-23
-1.542500000000000000e+02 2.258241864000903907e-23 -1.684058574416977823e-23
-1.545000000000000000e+02 -1.482458546961424688e-23 -5.536790067791486916e-24
-1.547500000000000000e+02 1.900062730636540973e-23 1.218934066318075630e-23
-1.550000000000000000e+02 -6.168448115378386580e-24 -1.778291905918196139e-23
-1.552500000000000000e+02 -2.419820404797987136e-24 1.289978732827833247e-23
-1.555000000000000000e+02 1.066518750337506942e-23 -8.125765981624847296e-24
-1.557500000000000000e+02 -1.630736287161743872e-23 -7.118955010515352450e-24
-1.560000000000000000e+02 1.294093491296755673e-23 1.820626850395081906e-23
-1.562500000000000000e+02 -1.829793212352359454e-24 -1.590567778413501316e-23
-1.565000000000000000e+02 -1.045016746680544072e-23 1.787572174433406368e-23
-1.567500000000000000e+02 2.019970315046293177e-23 -1.207263484957342812e-23
-1.570000000000000000e+02 -1.576743403427016117e-23 6.943801098256305136e-25
-1.572500000000000000e+02 1.259875493525732976e-23 1.595835037858199894e-23
-1.575000000000000000e+02 6.618610901027817723e-24 -1.031309576155406165e-23
-1.577500000000000000e+02 -5.958082973632126065e-24 2.138662751144597990e-23
-1.580000000000000000e+02 1.775716700157418356e-23 9.611925965341112241e-26
-1.582500000000000000e+02 -1.746567666840789971e-23 -7.351239329309667923e-24
-1.585000000000000000e+02 3.332469416247113834e-24 1.302388846953891130e-23
-1.587500000000000000e+02 -2.415575923275761874e-24 -1.520709339822210115e-23
-1.590000000000000000e+02 -1.268127453794080682e-23 2.058904054452420152e-23
-1.592500000000000000e+02 1.429941641557171205e-23 -1.019097154585997948e-23
-1.595000000000000000e+02 -1.737941913245432309e-23 -4.715601515418445710e-24
-1.597500000000000000e+02 1.671665560998152596e-23 1.455998885733197304e-23
-1.600000000000000000e+02 3.155612674201653789e-24 -2.001654084385380297e-23
-1.602500000000000000e+02 -1.263110660818622493e-23 1.604974757966472504e-23
-1.605000000000000000e+02 1.348711740615270031e-23 -2.335774199880719641e-24
-1.607500000000000000e+02 -1.284739048789899223e-23 -6.728250258369816746e-24
-1.610000000000000000e+02 7.896502642380360638e-24 2.632391481782602080e-23
-1.612500000000000000e+02 9.450022538929878792e-24 -1.844601743654584512e-23
-1.615000000000000000e+02 -1.196465241537714854e-23 1.668254467537191727e-23
-1.617500000000000000e+02 2.316010802458846987e-23 -9.742115499063197478e-24
-1.620000000000000000e+02 -1.407854879464544720e-23 -1.000309459962367380e-23
-1.622500000000000000e+02 7.981727028633914208e-24 1.868212007379403270e-23
-1.625000000000000000e+02 3.991383801889459016e-24 -2.881559112779477907e-23
-1.627500000000000000e+02 -1.094704508395957880e-23 1.568955416031067886e-23
-1.630000000000000000e+02 1.770738221886431996e-23 -4.179539436491406738e-24
-1.632500000000000000e+02 -2.115172694782814895e-23 -8.559017197538118544e-24
-1.635000000000000000e+02 -5.094543650290553988e-25 1.565567077499206824e-23
-1.637500000000000000e+02 1.909688531422769578e-24 -1.204373904234639350e-23
-1.640000000000000000e+02 -1.708498261446204757e-23 8.789784709203192080e-24
-1.642500000000000000e+02 1.859428953306422457e-23 7.002494668172667872e-24
-1.645000000000000000e+02 -1.503624431396856828e-23 -1.225803526729961621e-23
-1.647500000000000000e+02 7.376636564513713757e-24 1.353305213236071646e-23
-1.650000000000000000e+02 4.841573459416776030e-24 -2.034972108138749434e-23
-1.652500000000000000e+02 -1.248740619121110828e-23 1.357834534160505838e-23
-1.655000000000000000e+02 1.900260674040517735e-23 -2.233300540698030931e-24
-1.657500000000000000e+02 -9.641759132616643318e-24 -7.748532930772949570e-24
-1.660000000000000000e+02 1.023460929371153380e-24 1.843864719155556708e-23
-1.662500000000000000e+02 -4.695217204203740262e-25 -1.402136937210122912e-23
-1.665000000000000000e+02 -1.749487754991579655e-23 1.178383509045675619e-23
-1.667500000000000000e+02 2.032891941610649665e-23 7.655178659172321107e-24
-1.670000000000000000e+02 -1.551781385973899202e-23 -7.758959980497174272e-24
-1.672500000000000000e+02 1.521985757338381370e-24 1.425568746444658578e-23
-1.675000000000000000e+02 2.818596001129694242e-24 -1.724986230476944936e-23
-1.677500000000000000e+02 -1.930363567356029969e-23 4.521849008627377923e-24
-1.680000000000000000e+02 1.663766634200588321e-23 7.601170354805461335e-24
-1.682500000000000000e+02 -1.880925829321272137e-23 -7.640474178096497220e-24
-1.685000000000000000e+02 1.673980107540464885e-24 2.034754818975282203e-23
-1.687500000000000000e+02 8.681702578650964144e-24 -2.008130396642626136e-23
-1.690000000000000000e+02 -1.678492092769612608e-23 6.802340135703953368e-24
-1.692500000000000000e+02 1.756596438643651240e-23 4.240073345198422267e-24
-1.695000000000000000e+02 -1.388276043522860934e-23 -9.341512111252859309e-24
-1.697500000000000000e+02 5.992618124662222350e-24 1.959330007082718573e-23
-1.700000000000000000e+02 1.248026654053265284e-23 -1.297739398114480234e-23
-1.702500000000000000e+02 -1.935801438496535544e-23 7.458644360305663101e-25
-1.705000000000000000e+02 1.647552960365669987e-23 4.321722443505873071e-24
-1.707500000000000000e+02 -1.301025586778546718e-23 -9.910227536099973163e-24
-1.710000000000000000e+02 4.892951542283913780e-24 1.210107232771802534e-23
-1.712500000000000000e+02 9.876419772987099631e-24 -1.782124889968300156e-23
-1.715000000000000000e+02 -2.117554501355423781e-23 1.157830849749334164e-23
-1.717500000000000000e+02 1.956088233755211128e-23 1.097735632159419726e-23
-1.720000000000000000e+02 -7.314566913427138878e-24 -1.145297815274350684e-23
-1.722500000000000000e+02 -1.705613813137882043e-24 1.935102201423492959e-23
-1.725000000000000000e+02 9.136363151361535019e-24 -1.056529574809746317e-23
-1.727500000000000000e+02 -1.843841322410024049e-23 6.805851764954131749e-24
-1.730000000000000000e+02 1.570235091640672345e-23 1.091315478032265417e-23
-1.732500000000000000e+02 -1.268795469591491408e-23 -1.793149926099079616e-23
-1.735000000000000000e+02 4.827513534543037717e-24 1.843447818292690779e-23
-1.737500000000000000e+02 1.155719415244637119e-23 -6.792931876735958322e-24
-1.740000000000000000e+02 -8.715444504881788171e-24 2.426528760776427014e-24
-1.742500000000000000e+02 1.374671768902347979e-23 1.072299036045858084e-23
-1.745000000000000000e+02 -8.561145560011908647e-24 -8.280660155534392458e-24
-1.747500000000000000e+02 -4.069431123636393059e-24 2.182661616795569314e-23
-1.750000000000000000e+02 1.591717735244779668e-23 -1.156395036846908287e-23
-1.752500000000000000e+02 -1.333744744256134520e-23 2.414157213642855255e-24
-1.755000000000000000e+02 1.609779899256645797e-23 1.108020278449454408e-23
-1.757500000000000000e+02 -2.558639457453035517e-24 -1.665137553868908916e-23
-1.760000000000000000e+02 4.226540337018144032e-25 2.274540377627140630e-23
-1.762500000000000000e+02 1.688480967262478222e-23 -1.328271652792865103e-23
-1.765000000000000000e+02 -1.868558296848009436e-23 6.730965230319730183e-25
-1.767500000000000000e+02 1.003915925521075812e-23 4.828116269880386693e-24
-1.770000000000000000e+02 -1.200324833799861794e-23 -1.623750731219470234e-23
-1.772500000000000000e+02 -1.035143640966633004e-23 2.257052718933350302e-23
-1.775000000000000000e+02 1.250704338349341230e-23 -8.763005582878864499e-24
-1.777500000000000000e+02 -2.193037066612464466e-23 1.934081216626439412e-24
-1.780000000000000000e+02 1.331807666685067935e-23 1.059273722306418270e-23
-1.782500000000000000e+02 6.688918945786217332e-25 -1.602963621884939947e-23
-1.785000000000000000e+02 -6.367901101481691808e-24 1.223639924653371042e-23
-1.787500000000000000e+02 7.098904583846802159e-24 -6.390025445421836184e-24
-1.790000000000000000e+02 -1.384494189633274292e-23 1.177107082089199599e-24
-1.792500000000000000e+02 1.223024167846184548e-23 1.651420761726590326e-23
-1.795000000000000000e+02 -5.867194309930375109e-24 -1.434862698900230260e-23
-1.797500000000000000e+02 -7.672321901642820236e-24 1.748750852355464629e-23
-1.800000000000000000e+02 9.682397077386076224e-24 -8.169126763113180102e-24
-1.802500000000000000e+02 -1.678988670436522866e-23 -1.539630987635995121e-24
-1.805000000000000000e+02 1.523028438937437709e-23 7.285719145152552528e-24
-1.807500000000000000e+02 -6.893939330450306396e-24 -1.916888413408309645e-23
-1.810000000000000000e+02 -5.353275841194174230e-24 1.258729313744539321e-23
-1.812500000000000000e+02 1.734625195831843774e-23 -5.613828624619566070e-24
-1.815000000000000000e+02 -1.880027026702780416e-23 -1.999552767121890610e-24
-1.817500000000000000e+02 1.547956025778501717e-23 1.444012994523815823e-23
-1.820000000000000000e+02 -6.457129431825104163e-24 -1.668640296632014335e-23
-1.822500000000000000e+02 -6.645684190200901604e-24 1.403802539291581000e-23
-1.825000000000000000e+02 1.486875095799898235e-23 -1.061555007866264842e-23
-1.827500000000000000e+02 -1.673737947669976370e-23 -1.127461486436530775e-24
-1.830000000000000000e+02 1.242161736372783652e-23 1.692454159734709458e-24
-1.832500000000000000e+02 -3.762577851861592343e-25 -1.348075906697150583e-23
-1.835000000000000000e+02 -1.641464899585117019e-23 1.560854410798763922e-23
-1.837500000000000000e+02 1.083865947456888523e-23 -7.839827578821659350e-24
-1.840000000000000000e+02 -2.019378239665743381e-23 -6.597499826074702906e-24
-1.842500000000000000e+02 9.326513090416011640e-24 1.174991812619904011e-23
-1.845000000000000000e+02 2.661987786818100744e-24 -1.782748476215110299e-23
-1.847500000000000000e+02 -5.807091625443931206e-24 1.464394784525080613e-23
-1.850000000000000000e+02 1.846232213983772940e-23 -1.593836274651597345e-24
-1.852500000000000000e+02 -1.515588884864226850e-23 -7.731936299554611551e-24
-1.855000000000000000e+02 5.808111197981890862e-24 1.254089400842141741e-23
-1.857500000000000000e+02 5.065644839728457527e-24 -1.631509776335729644e-23
-1.860000000000000000e+02 -1.006131473848359737e-23 6.938139793704791035e-24
-1.862500000000000000e+02 1.149702915922398292e-23 -2.216131983683556691e-24
-1.865000000000000000e+02 -1.776533369431552878e-23 -9.075096665301941980e-24
-1.867500000000000000e+02 1.322578791182016526e-23 1.800779126515047912e-23
-1.870000000000000000e+02 6.897752570311364141e-24 -1.301390739084552246e-23
-1.872500000000000000e+02 -1.460101476001697632e-23 1.131726116114529983e-23
-1.875000000000000000e+02 2.417232272517596828e-23 -2.533546737124997643e-24
-1.877500000000000000e+02 -1.162075892170607552e-23 -6.919908401378140146e-24
-1.880000000000000000e+02 9.994026033743826210e-24 1.419041191930129830e-23
-1.882500000000000000e+02 -1.988803125743489027e-24 -2.007328202463930351e-23
-1.885000000000000000e+02 -3.632274157955710870e-24 8.205106871937908428e-24
-1.887500000000000000e+02 1.617042818275030954e-23 1.934031132907359767e-24
-1.890000000000000000e+02 -1.740518614449725736e-23 -8.292532837317739676e-24
-1.892500000000000000e+02 5.441155998260277629e-24 1.547296758503713944e-23
-1.895000000000000000e+02 2.840234478072213560e-24 -2.049454528952822360e-23
-1.897500000000000000e+02 -1.594929979624420018e-23 9.148075696431898632e-24
-1.900000000000000000e+02 1.871408073181863690e-23 -2.317534154346653778e-24
-1.902500000000000000e+02 -1.455384842383645056e-23 -5.776092321798364692e-24
-1.905000000000000000e+02 -2.247638087848309580e-25 1.776442507545646567e-23
-1.907500000000000000e+02 7.818078378252216458e-25 -1.688856346645776617e-23
-1.910000000000000000e+02 -1.699938873803520296e-23 1.079303768249096828e-23
-1.912500000000000000e+02 1.339381965347143586e-23 -4.317863367572541343e-24
-1.915000000000000000e+02 -1.566624793236985927e-23 -9.589110885147176435e-24
-1.917500000000000000e+02 6.150062403933919924e-24 1.207613457634709222e-23
-1.920000000000000000e+02 3.746924591263557496e-24 -1.449970294426251242e-23
-1.922500000000000000e+02 -1.391837895852775829e-23 2.582508286651037587e-24
-1.925000000000000000e+02 1.357032788248726674e-23 -1.051813581721706757e-24
-1.927500000000000000e+02 -1.050570691742703151e-23 -3.561025484404520721e-24
-1.930000000000000000e+02 3.598934071551449969e-24 1.278927149794835374e-23
-1.932500000000000000e+02 1.305838830672633485e-23 -1.834619396353976603e-23
-1.935000000000000000e+02 -1.698382434645295108e-23 8.957214633229388439e-24
-1.937500000000000000e+02 1.613383129396819581e-23 4.287182940254436606e-24
-1.940000000000000000e+02 -7.655369043652577036e-24 -4.100690546352327288e-24
-1.942500000000000000e+02 -4.574489069340231593e-25 1.965101989920919360e-23
-1.945000000000000000e+02 2.799585712506646129e-24 -2.376166128377669200e-23
-1.947500000000000000e+02 -1.819506326638882719e-23 1.187966862050833170e-23
-1.950000000000000000e+02 1.567580706360471917e-23 -1.184351443220478112e-24
-1.952500000000000000e+02 -1.303336517333945305e-23 -1.625991730102188941e-23
-1.955000000000000000e+02 3.823042304376153140e-24 1.392190411615097626e-23
-1.957500000000000000e+02 1.124673544740419707e-23 -1.197434931479866530e-23
-1.960000000000000000e+02 -1.868420365801646387e-23 3.988351477974673299e-24
-1.962500000000000000e+02 1.455646851358126284e-23 9.654317781393363230e-24
-1.965000000000000000e+02 -9.846532015519228919e-24 -1.098459079066896266e-23
-1.967500000000000000e+02 -7.159723656321829786e-24 1.996515823452453852e-23
-1.970000000000000000e+02 5.779319584493049522e-24 -1.017620470804167287e-23
-1.972500000000000000e+02 -1.636120749581093987e-23 2.420870251289556893e-25
-1.975000000000000000e+02 1.353552372588404589e-23 2.283835454749519949e-24
-1.977500000000000000e+02 -9.659166348328266546e-24 -7.866675093292527027e-24
-1.980000000000000000e+02 5.536708228082697450e-24 9.681788268844268551e-24
-1.982500000000000000e+02 6.383000344059728534e-24 -1.096500194431510141e-23
-1.985000000000000000e+02 -6.712187664156630750e-24 1.438245537093210305e-24
-1.987500000000000000e+02 1.293560621623317145e-23 4.321865254573890565e-24
-1.990000000000000000e+02 -1.031565976307668158e-23 -5.983725739048607685e-24
-1.992500000000000000e+02 1.473474417348278184e-24 1.346496997928553617e-23
-1.995000000000000000e+02 3.318708478789084424e-24 -9.630937672719300000e-24
-1.997500000000000000e+02 -1.341998615164417769e-23 9.715721157483137653e-24
-2.000000000000000000e+02 1.537077702623109839e-23 2.086392553519444929e-25
-2.002500000000000000e+02 -8.862708011966792018e-24 -1.908607440499305499e-23
-2.005000000000000000e+02 3.769527927739006735e-24 2.582696792870493865e-23
-2.007500000000000000e+02 9.767840189819413869e-24 -2.154489488360083758e-23
-2.010000000000000000e+02 -1.117147604459019195e-23 1.659019389443711969e-24
-2.012500000000000000e+02 9.999552606114419951e-24 6.819243702028610801e-24
-2.015000000000000000e+02 -9.737770713412529292e-24 -1.278883158190842335e-23
-2.017500000000000000e+02 3.830855680155425410e-24 1.563003884065117570e-23
-2.020000000000000000e+02 9.847041881995525973e-24 -8.304015077767466839e-24
-2.022500000000000000e+02 -1.999990549932369331e-23 -5.896193173675818448e-25
-2.025000000000000000e+02 1.035124678073233949e-23 6.734517686786200168e-24
-2.027500000000000000e+02 -1.095715943135482204e-23 -1.523186903995308687e-23
-2.030000000000000000e+02 -6.483712866107379145e-24 1.681974513901639486e-23
-2.032500000000000000e+02 1.251334089486806690e-23 -9.904974727680973317e-24
-2.035000000000000000e+02 -2.604894186654220132e-23 4.880057124734444629e-24
-2.037500000000000000e+02 1.124726200766003787e-23 6.758873182807797088e-24
-2.040000000000000000e+02 -1.265402917069663498e-23 -1.485313696166632352e-23
-2.042500000000000000e+02 -7.424496924418442272e-24 2.027382832616126130e-23
-2.045000000000000000e+02 9.026277927106043382e-24 -1.428092736189950466e-23
-2.047500000000000000e+02 -2.021565856247627732e-23 -3.053888172985599020e-25
-2.050000000000000000e+02 1.571623179367121728e-23 8.287789875219478834e-24
-2.052500000000000000e+02 -9.741437249333746691e-24 -1.238510513955084967e-23
-2.055000000000000000e+02 -5.060518019271900240e-24 1.615828576400384831e-23
-2.057500000000000000e+02 1.472584332271416462e-23 -1.116696086044712709e-23
-2.060000000000000000e+02 -1.462070085765163399e-23 3.305735132907094254e-24
-2.062500000000000000e+02 1.400347711649971689e-23 1.478018095225182449e-23
-2.065000000000000000e+02 -6.219212024739166719e-24 -1.602914020806722099e-23
-2.067500000000000000e+02 -7.869545465921163515e-24 1.294055512521436696e-23
-2.070000000000000000e+02 1.314279429695045001e-23 -6.936580205619209147e-24
-2.072500000000000000e+02 -7.733742198262571276e-24 5.410144370639639482e-24
-2.075000000000000000e+02 1.213157884928249827e-23 7.830418466711884944e-24
-2.077500000000000000e+02 -9.194842833469510639e-24 -8.380677201120586471e-24
-2.080000000000000000e+02 -9.990376920075025662e-24 1.334438718454468067e-23
-2.082500000000000000e+02 5.237826532553354767e-24 -9.157610014982848696e-24
-2.085000000000000000e+02 -1.687839292841945489e-23 4.152828401171884685e-24
-2.087500000000000000e+02 1.065892402539261875e-23 1.052070828258677847e-23
-2.090000000000000000e+02 -8.900084027900075758e-25 -1.421020060537462787e-23
-2.092500000000000000e+02 -5.265082184628553608e-24 1.416958732336738255e-23
-2.095000000000000000e+02 1.522021748891299672e-23 -4.712351133934250320e-24
-2.097500000000000000e+02 -1.320791026114558760e-23 2.092634412587950501e-24
-2.100000000000000000e+02 1.668641632023864379e-23 4.602913288398452768e-24
-2.102500000000000000e+02 -5.271196132238774264e-24 -1.322527981825867264e-23
-2.105000000000000000e+02 -1.960520530351888658e-24 1.672754040504526362e-23
-2.107500000000000000e+02 1.475392446733978120e-23 -5.507482573085942577e-24
-2.110000000000000000e+02 -1.939667878086382956e-23 -1.504442716683806093e-24
-2.112500000000000000e+02 7.926413431939975970e-24 1.551213822757195198e-24
-2.115000000000000000e+02 -1.899815500868783138e-24 -1.771024984677713425e-23
-2.117500000000000000e+02 -7.337449056856287228e-24 1.761723192376185753e-23
-2.120000000000000000e+02 5.120892382893704628e-24 -8.386294294329980115e-24
-2.122500000000000000e+02 -1.435549888903760858e-23 4.868375569745624677e-24
-2.125000000000000000e+02 1.223595112023045877e-23 1.183783654959516179e-23
-2.127500000000000000e+02 -2.075993459723577472e-24 -1.745694872257611629e-23
-2.130000000000000000e+02 -1.038725313715120359e-24 8.989320782195824192e-24
-2.132500000000000000e+02 1.213182209318392186e-23 6.658262704857353012e-25
-2.135000000000000000e+02 -2.088699651389332800e-23 9.302911616473687238e-25
-2.137500000000000000e+02 1.313544353256342797e-23 1.087324920965764820e-23
-2.140000000000000000e+02 -1.593447009679309196e-24 -1.154945092302697347e-23
-2.142500000000000000e+02 -5.026251864630583240e-24 1.834577875145568579e-23
-2.145000000000000000e+02 1.625099062536157299e-23 -1.876051014771011411e-24
-2.147500000000000000e+02 -1.443197820410458227e-23 1.221024763275821147e-26
-2.150000000000000000e+02 8.215526737965601572e-24 1.277425423979668088e-23
-2.152500000000000000e+02 -1.784647113544367311e-24 -1.274172977631663246e-23
-2.155000000000000000e+02 -8.364397618292947362e-24 1.410507896643237237e-23
-2.157500000000000000e+02 1.233439371532039484e-23 -2.388394203444238754e-24
-2.160000000000000000e+02 -1.420725745410603249e-23 -2.650722245544504804e-24
-2.162500000000000000e+02 9.315122935042417088e-24 1.573563158108321026e-23
-2.165000000000000000e+02 -7.409104148707950560e-25 -2.020959293137504674e-23
-2.167500000000000000e+02 -1.232151510976448838e-23 1.517744096415234411e-23
-2.170000000000000000e+02 1.313667755303345152e-23 -8.201766355450993000e-24
-2.172500000000000000e+02 -1.884290303040006145e-23 -6.716983244891757839e-24
-2.175000000000000000e+02 5.306587901546106981e-24 1.447198821123260444e-23
-2.177500000000000000e+02 4.809682765583946375e-24 -1.376930089721694303e-23
-2.180000000000000000e+02 -1.251145885179738438e-23 8.996151359406861506e-24
-2.182500000000000000e+02 1.614527424000247474e-23 -3.413599629587536582e-24
-2.185000000000000000e+02 -2.060595370891458611e-23 -3.209451954887062082e-24
-2.187500000000000000e+02 8.345958264138552275e-24 1.793863122381740911e-23
-2.190000000000000000e+02 4.161013677048726227e-24 -1.742030035344849565e-23
-2.192500000000000000e+02 -6.238007124334307420e-24 1.390003705936184841e-23
-2.195000000000000000e+02 1.168629289935285795e-23 -4.052094789764412301e-24
-2.197500000000000000e+02 -1.112482204766137067e-23 -3.712940906402614342e-24
-2.200000000000000000e+02 6.823578332948890613e-24 1.658296298478163441e-23
-2.202500000000000000e+02 -2.746092800044928030e-24 -1.221682138906427870e-23
-2.205000000000000000e+02 -1.406480233744613891e-23 9.657722390052236740e-24
-2.207500000000000000e+02 7.056553345047370468e-24 -2.902248189122129714e-24
-2.210000000000000000e+02 -1.205844523079531978e-23 -8.748061947720878288e-24
-2.212500000000000000e+02 1.057821678251461843e-23 1.688847775988339414e-23
-2.215000000000000000e+02 7.635720829147479221e-24 -1.075824710567482783e-23
-2.217500000000000000e+02 -1.126298888062608959e-23 8.021668062809532539e-24
-2.220000000000000000e+02 1.336952398945962460e-23 -2.582714187127546201e-24
-2.222500000000000000e+02 -1.559884187389297902e-23 -8.601537270342811366e-24
-2.225000000000000000e+02 8.335478189041819241e-24 1.043773294695548596e-23
-2.227500000000000000e+02 2.546984876257635803e-24 -1.588523006998498014e-23
-2.230000000000000000e+02 -1.591505810509992705e-23 1.118286912158031191e-23
-2.232500000000000000e+02 1.639902016089124810e-23 4.681185775840340532e-24
-2.235000000000000000e+02 -1.109319126139446346e-23 -5.888817558661316749e-24
-2.237500000000000000e+02 7.600307562155619994e-24 1.110766683699408294e-23
-2.240000000000000000e+02 1.593087793443625324e-24 -1.333970670872845935e-23
-2.242500000000000000e+02 -1.778029540184623635e-23 7.068245122025440772e-24
-2.245000000000000000e+02 1.501109266188593031e-23 -5.492800415503342819e-24
-2.247500000000000000e+02 -1.330146487500331820e-23 -1.817711129303625759e-23
-2.250000000000000000e+02 4.409551152017476972e-24 1.261398713043380883e-23
-2.252500000000000000e+02 3.252146325454661483e-24 -1.548883796350921800e-23
-2.255000000000000000e+02 -1.179097554634722270e-23 9.785284291224783362e-24
-2.257500000000000000e+02 1.489129161788360428e-23 7.041382373761725831e-25
-2.260000000000000000e+02 -1.301577051557909351e-23 -6.048821122016654016e-24
-2.262500000000000000e+02 3.889103118262992359e-24 1.217339515888169670e-23
-2.265000000000000000e+02 -6.360191186053166804e-25 -1.227361420163891947e-23
-2.267500000000000000e+02 -1.584998186328864322e-23 1.062023258087801213e-23
-2.270000000000000000e+02 1.586330427446079276e-23 -5.183372036747886668e-24
-2.272500000000000000e+02 -1.238741912776908564e-23 -1.075276744423619022e-23
-2.275000000000000000e+02 6.651383579255232481e-24 1.226046808680975217e-23
-2.277500000000000000e+02 5.590160909448646103e-24 -1.265899778714844433e-23
-2.280000000000000000e+02 -1.198235210389433041e-23 7.554628971028719435e-24
-2.282500000000000000e+02 2.166902737019937797e-23 1.242196758758733624e-24
-2.285000000000000000e+02 -1.377755864718768680e-23 -8.078991239263721417e-25
-2.287500000000000000e+02 4.893500340782867853e-24 1.677844711473235053e-23
-2.290000000000000000e+02 2.530989992640144524e-24 -1.154136681016578121e-23
-2.292500000000000000e+02 -1.307559009754832446e-23 -3.759561913127419681e-25
-2.295000000000000000e+02 1.062874703330696260e-23 -4.489577398944092620e-24
-2.297500000000000000e+02 -9.034867520179529339e-24 -9.777222058997302376e-24
-2.300000000000000000e+02 2.186445528051325292e-24 1.522677037744381231e-23
-2.302500000000000000e+02 7.290715974490866603e-24 -1.913908796549879325e-23
-2.305000000000000000e+02 -7.998579981361699601e-24 5.146378775912048988e-24
-2.307500000000000000e+02 1.430955961639720453e-23 4.855887944523103844e-24
-2.310000000000000000e+02 -1.319173792422484992e-23 -6.283687693864983619e-25
-2.312500000000000000e+02 4.835605237048994314e-24 1.503788425871166059e-23
-2.315000000000000000e+02 7.371915438579610450e-24 -1.441819709464474489e-23
-2.317500000000000000e+02 -9.733682419995134183e-24 4.569800985073818819e-24
-2.320000000000000000e+02 9.349994755723514913e-24 -1.052169118431167070e-24
-2.322500000000000000e+02 -5.265453906149827406e-24 -1.671375591951401709e-23
-2.325000000000000000e+02 -5.220403819962137936e-26 1.206133322446273138e-23
-2.327500000000000000e+02 5.298565535157623177e-25 -1.946682984483594320e-23
-2.330000000000000000e+02 -1.003201607453501287e-23 7.821342685150949566e-24
-2.332500000000000000e+02 1.289065132123052001e-23 6.926936327376015210e-25
-2.335000000000000000e+02 -1.009918988797460072e-23 -5.467673362257571540e-24
-2.337500000000000000e+02 3.564004407503094084e-24 1.947709403269685432e-23
-2.340000000000000000e+02 1.243468917519606778e-23 -1.867697123790749652e-23
-2.342500000000000000e+02 -1.191545053569771903e-23 1.145409522132164394e-23
-2.345000000000000000e+02 1.578950595635959474e-23 1.574999520342415751e-24
-2.347500000000000000e+02 -1.141294476562248214e-23 -1.073986020742841004e-23
-2.350000000000000000e+02 -2.986681995715011344e-25 1.478370435023431990e-23
-2.352500000000000000e+02 9.599760765198034303e-24 -1.648325441563839075e-23
-2.355000000000000000e+02 -1.041770601498864719e-23 1.015792599095285398e-23
-2.357500000000000000e+02 1.976007763328232080e-23 7.336350912609783203e-24
-2.360000000000000000e+02 -1.266309087754549128e-23 -1.017330167370789701e-23
-2.362500000000000000e+02 3.271659740450643366e-24 2.021292802731180352e-23
-2.365000000000000000e+02 9.597376886244402030e-24 -1.329818852065988837e-23
-2.367500000000000000e+02 -1.892023828865536577e-23 2.077357707267500265e-24
-2.370000000000000000e+02 9.012831205880695204e-24 -8.266795034231844337e-25
-2.372500000000000000e+02 -7.611014582760213983e-24 -9.207954112594890938e-24
-2.375000000000000000e+02 2.338090903184298878e-24 2.163230653153314698e-23
-2.377500000000000000e+02 4.668869148436640029e-24 -9.240897942142711997e-24
-2.380000000000000000e+02 -9.422387079133002505e-24 1.881492295029680959e-24
-2.382500000000000000e+02 1.025923961572563720e-23 2.554224035357012789e-24
-2.385000000000000000e+02 -1.444697304546739822e-23 -1.189573323931128188e-23
-2.387500000000000000e+02 1.390833300331207304e-24 1.937517068766697736e-23
-2.390000000000000000e+02 7.830787247430032342e-24 -1.242685818453380219e-23
-2.392500000000000000e+02 -9.368840037307433826e-24 2.129809751242593865e-26
-2.395000000000000000e+02 1.425288549198330346e-23 8.248920625277279911e-24
-2.397500000000000000e+02 -5.644788609245589152e-24 -8.874856058772944754e-24
-2.400000000000000000e+02 -2.915013371024631835e-24 1.445676039075644989e-23
-2.402500000000000000e+02 1.083183349986344253e-23 -1.767751867488506623e-23
-2.405000000000000000e+02 -1.683039735532256091e-23 -4.000227043235064533e-26
-2.407500000000000000e+02 1.706371433234149178e-23 9.555978620146588004e-24
-2.410000000000000000e+02 -9.133365206810351378e-24 -6.987206196731084976e-24
-2.412500000000000000e+02 2.813930945444650525e-25 1.326577628439253409e-23
-2.415000000000000000e+02 6.337014893187343394e-24 -9.077314740649673308e-24
-2.417500000000000000e+02 -1.347083760728124981e-23 7.376425463873593930e-24
-2.420000000000000000e+02 1.187162860782095770e-23 3.529216787471761803e-24
-2.422500000000000000e+02 -1.349530091512208514e-23 -1.256495951405950020e-23
-2.425000000000000000e+02 -3.126010503098456006e-24 1.427443024148964024e-23
-2.427500000000000000e+02 5.791156914934309582e-24 -1.541652521560495132e-23
-2.430000000000000000e+02 -1.203006010595151566e-23 7.691134630198742921e-25
-2.432500000000000000e+02 1.482358693344087547e-23 8.841851163314650503e-24
-2.435000000000000000e+02 -8.875218409947176030e-24 -1.133686649318903023e-23
-2.437500000000000000e+02 1.038972558156581852e-24 1.560407905693472935e-23
-2.440000000000000000e+02 1.001352761942910013e-23 -1.190368856235477199e-23
-2.442500000000000000e+02 -1.418410317761222694e-23 1.123593830209885823e-23
-2.445000000000000000e+02 3.620173844486152897e-24 3.168869910706174570e-24
-2.447500000000000000e+02 -7.272761211216290194e-24 -1.336329105774728646e-23
-2.450000000000000000e+02 4.686390555925134047e-24 1.340620418919807297e-23
-2.452500000000000000e+02 6.528561162622663392e-24 -6.571392691350233565e-24
-2.455000000000000000e+02 -1.027681267267290579e-23 2.022258582712243861e-24
-2.457500000000000000e+02 9.832041274054891861e-24 6.443784259345230000e-24
-2.460000000000000000e+02 -9.523118885517621933e-24 -8.948429640592683420e-24
-2.462500000000000000e+02 6.817861346140377864e-24 1.479028651451774690e-23
-2.465000000000000000e+02 8.445105448414407594e-24 2.076437667370780492e-24
-2.467500000000000000e+02 -1.651080077349319801e-23 1.252694432610721559e-24
-2.470000000000000000e+02 1.650986409240129455e-23 1.306671124121933790e-24
-2.472500000000000000e+02 -5.606235855369641063e-24 -1.073089254493343716e-23
-2.475000000000000000e+02 1.317335144657651452e-25 8.509706002359528468e-24
-2.477500000000000000e+02 1.831985891336681044e-24 -3.164288648539767042e-24
-2.480000000000000000e+02 -1.424026597261693936e-23 5.857445071498571384e-24
-2.482500000000000000e+02 1.229546590479069233e-23 -2.537096015568627625e-24
-2.485000000000000000e+02 -7.049100158839103731e-24 -1.678071045202137304e-23
-2.487500000000000000e+02 -5.376344613155481448e-24 7.313550766577492278e-24
-2.490000000000000000e+02 7.784243061474609753e-24 -1.118786650819210364e-23
-2.492500000000000000e+02 -7.561608238012840865e-24 1.196730661504671398e-25
-2.495000000000000000e+02 1.036339318837637211e-23 8.214506030924596715e-24
-2.497500000000000000e+02 -3.759544554930912330e-24 -1.397209919388370668e-23
-2.500000000000000000e+02 3.755405857543260998e-24 1.638886755178782170e-23
-2.502500000000000000e+02 8.609092316902034970e-24 -1.115850829392188374e-23
-2.505000000000000000e+02 -1.336902400014094641e-23 3.530884320182611430e-24
-2.507500000000000000e+02 1.595701657888105689e-23 7.800846184995950395e-24
-2.510000000000000000e+02 -1.452412895598317897e-24 -8.713672669556798840e-24
-2.512500000000000000e+02 4.242714517619059523e-25 1.289866374640834879e-23
-2.515000000000000000e+02 4.721652376442075801e-24 -8.346147713344708109e-24
-2.517500000000000000e+02 -1.079316907636509720e-23 -4.115415870252710897e-25
-2.520000000000000000e+02 1.226883017995018697e-23 6.663718233788863361e-24
-2.522500000000000000e+02 -4.630408227136802211e-24 -1.361315919309101986e-23
-2.525000000000000000e+02 4.140218054107997612e-24 1.429099196885150615e-23
-2.527500000000000000e+02 5.761718996055683388e-24 -1.082434480944759719e-23
-2.530000000000000000e+02 -5.889772056383454711e-24 1.489350559012974712e-24
-2.532500000000000000e+02 4.876380743293457678e-24 6.952677429927317864e-24
-2.535000000000000000e+02 -9.432761199206868084e-24 -1.565108771401478186e-23
-2.537500000000000000e+02 -2.341749681539633901e-24 1.075162710252212293e-23
-2.540000000000000000e+02 8.214179325627659217e-24 -1.706347667989512570e-23
-2.542500000000000000e+02 -1.081652720415675333e-23 1.964616550198561209e-24
-2.545000000000000000e+02 1.377326560363390955e-23 1.049601476809185959e-23
-2.547500000000000000e+02 -8.975211423431908260e-24 -1.508745505043236160e-23
-2.550000000000000000e+02 -3.436969784750050279e-24 1.022887387134071506e-23
-2.552500000000000000e+02 1.022025871981341854e-23 -5.694113926266929947e-24
-2.555000000000000000e+02 -1.740031613003078038e-23 1.089390453542915127e-24
-2.557500000000000000e+02 9.874057387071280860e-24 6.383321965356042068e-24
-2.560000000000000000e+02 -4.784459111550746145e-24 -1.248735544373937839e-23
-2.562500000000000000e+02 -1.579734844448776056e-24 6.507980812148009311e-24
-2.565000000000000000e+02 7.976801861523950819e-24 -3.839000487278366755e-24
-2.567500000000000000e+02 -8.100086838460491876e-24 3.731015963162549185e-25
-2.570000000000000000e+02 1.003818708720525179e-23 9.054241969457971598e-24
-2.572500000000000000e+02 -5.287529667916127197e-24 -7.730041270792558994e-24
-2.575000000000000000e+02 -8.981541029087852895e-24 1.233504283793918990e-23
-2.577500000000000000e+02 6.018406724253884813e-24 -5.357685182839708597e-24
-2.580000000000000000e+02 -1.439015024388230022e-23 -3.486454953143751894e-24
-2.582500000000000000e+02 4.833093628878398682e-24 1.034685826224247615e-23
-2.585000000000000000e+02 -5.992694576796796354e-24 -1.928411727411326295e-23
-2.587500000000000000e+02 -6.578768895521033058e-24 1.384863674911527079e-23
-2.590000000000000000e+02 -2.868022411073476983e-24 -7.947015319200567751e-24
-2.592500000000000000e+02 -8.681052914562603187e-24 -7.427966728544777822e-24
-2.595000000000000000e+02 1.437781414104608623e-23 6.682597964808182268e-24
-2.597500000000000000e+02 -2.601529867972789195e-24 -8.314254648233250204e-24
-2.600000000000000000e+02 -3.051370459197389626e-24 1.495243838243771460e-23
-2.602500000000000000e+02 9.310031174230493906e-24 -8.674555075040904641e-24
-2.605000000000000000e+02 -2.052192603943303946e-23 7.235673090530188808e-24
-2.607500000000000000e+02 9.421776621293894833e-24 1.010068195802649814e-23
-2.610000000000000000e+02 -9.198550738353264585e-24 -1.720360199099980754e-23
-2.612500000000000000e+02 -7.118654582309762378e-24 1.530054610072732239e-23
-2.615000000000000000e+02 4.216266018940143819e-24 2.355551870568436037e-24
-2.617500000000000000e+02 -1.134807778450814340e-23 -2.506552964524272363e-24
-2.620000000000000000e+02 1.928379570251636788e-23 5.739989424498331069e-25
-2.622500000000000000e+02 -5.378929958453044725e-24 -1.516732187580761942e-23
-2.625000000000000000e+02 1.484033947321733407e-24 1.204359064455646414e-23
-2.627500000000000000e+02 1.105485210778173996e-23 -8.970081283747914300e-24
-2.630000000000000000e+02 -5.609518296220137777e-24 1.311703588852742372e-24
-2.632500000000000000e+02 1.362493614738475822e-23 5.863491427510192268e-24
-2.635000000000000000e+02 -1.020346481808796783e-23 -1.184299192598281661e-23
-2.637500000000000000e+02 4.238580601523495030e-25 5.116131612124948062e-24
-2.640000000000000000e+02 1.133766273740503291e-23 -6.012723845461782879e-25
-2.642500000000000000e+02 -1.557085141429632009e-23 -4.909660683530501795e-24
-2.645000000000000000e+02 1.045150455783822472e-23 5.714821866631169278e-24
-2.647500000000000000e+02 -8.471364465470639832e-24 -7.508720628352201659e-24
-2.650000000000000000e+02 -3.051963285696627521e-24 1.145360661302162841e-23
-2.652500000000000000e+02 1.353059063433136777e-23 -5.446520026526284102e-24
-2.655000000000000000e+02 -1.019230174567213040e-23 2.583115412878377485e-24
-2.657500000000000000e+02 4.187620985699246501e-24 1.024384244952402404e-23
-2.660000000000000000e+02 -4.070340597712565670e-24 -1.052917660898150912e-23
-2.662500000000000000e+02 -2.553324079205802559e-24 8.742145752700911992e-24
-2.665000000000000000e+02 1.217544881825273859e-23 -1.081366166213200729e-23
-2.667500000000000000e+02 -1.012538042515625452e-23 1.979467123603380358e-24
-2.670000000000000000e+02 7.069716168573215030e-24 8.422401312574284782e-24
-2.672500000000000000e+02 -4.834287314889962938e-24 -8.859923755187913353e-24
-2.675000000000000000e+02 -2.109932276066650003e-24 8.600462202183680169e-24
-2.677500000000000000e+02 1.511039859746653382e-23 -4.434386365194961453e-24
-2.680000000000000000e+02 -8.040226379110163095e-24 -6.725239450645756689e-24
-2.682500000000000000e+02 5.785237484669701574e-24 5.790695178037447378e-24
-2.685000000000000000e+02 2.027975387945718475e-24 -9.139313801682626394e-24
-2.687500000000000000e+02 -4.307616006516261068e-24 7.267134033569512824e-24
-2.690000000000000000e+02 1.447671934706247848e-23 -1.353770960950739514e-24
-2.692500000000000000e+02 -1.070468728487907375e-23 -1.860749965149439778e-24
-2.695000000000000000e+02 1.199917862684249078e-23 2.863648097181702244e-24
-2.697500000000000000e+02 -3.570553904847590819e-24 -8.849326454886764223e-24
-2.700000000000000000e+02 -4.517231112506139593e-24 6.464498074564701587e-24
-2.702500000000000000e+02 1.415758440522088932e-23 -2.770839356237559077e-24
-2.705000000000000000e+02 -1.493568691719500810e-23 1.355148423222758385e-24
-2.707500000000000000e+02 8.574192620102205716e-24 6.245091775308572782e-24
-2.710000000000000000e+02 -4.370169985047499108e-24 -1.449412199450302859e-23
-2.712500000000000000e+02 -2.922051702510631847e-24 1.386673568210353794e-23
-2.715000000000000000e+02 9.113735809573778052e-24 2.068066366835626410e-24
-2.717500000000000000e+02 -1.331420552629282006e-24 -5.863731261849175845e-24
-2.720000000000000000e+02 8.741770948365550611e-24 -1.760140214928421166e-24
-2.722500000000000000e+02 -6.594846588466399890e-24 -6.812472663949732536e-24
-2.725000000000000000e+02 -5.526164603352384594e-24 7.847646787423611971e-24
-2.727500000000000000e+02 1.118676502565498004e-23 -5.357304369246634267e-24
-2.730000000000000000e+02 -1.086529158760996319e-23 1.895895708397668539e-24
-2.732500000000000000e+02 9.851561816449985534e-24 3.738810748021858631e-24
-2.735000000000000000e+02 3.192364141869959028e-24 -8.806496299064171400e-24
-2.737500000000000000e+02 -3.939079771546536525e-25 9.548214936329355979e-24
-2.740000000000000000e+02 4.253068055620143536e-24 -8.100306211998101140e-25
-2.742500000000000000e+02 -1.159520323853118309e-23 3.410617979787358694e-25
-2.745000000000000000e+02 7.255016933066788284e-24 -3.559459927953948672e-24
-2.747500000000000000e+02 -8.393521431465260735e-24 -1.627040817106861570e-23
-2.750000000000000000e+02 -1.359757585106806751e-24 7.129890972233530795e-24
-2.752500000000000000e+02 7.235321028948787987e-24 -4.275454508420992478e-24
-2.755000000000000000e+02 -9.866324467341332360e-24 3.618598139979226220e-24
-2.757500000000000000e+02 8.001355370322262246e-24 9.502078202672398253e-24
-2.760000000000000000e+02 -3.802352871603736700e-24 -8.534357467653151757e-24
-2.762500000000000000e+02 1.613967775363568933e-24 1.033742185116951845e-23
-2.765000000000000000e+02 1.086343333978062763e-23 -2.319963754788999687e-24
-2.767500000000000000e+02 -1.385369156034551194e-23 2.239784489208159743e-24
-2.770000000000000000e+02 6.638894798456648280e-24 6.243748103847765843e-24
-2.772500000000000000e+02 -3.462686151098214377e-24 -6.484008879919745312e-24
-2.775000000000000000e+02 -9.989204553137503186e-25 4.511472406289134695e-24
-2.777500000000000000e+02 1.067717831440580676e-23 -9.659803224623798639e-25
-2.780000000000000000e+02 -3.569979132218240346e-24 1.111236162347696049e-24
-2.782500000000000000e+02 4.432335482978951283e-24 8.136048472096724875e-24
-2.785000000000000000e+02 -2.355999219662731359e-24 -3.252599817521037725e-24
-2.787500000000000000e+02 -3.094823356940790999e-24 2.402752742147327674e-24
-2.790000000000000000e+02 9.018844441967419662e-24 -9.729085231608871986e-25
-2.792500000000000000e+02 -1.085779365367589955e-23 2.751317584705549541e-24
-2.795000000000000000e+02 8.607083968611022045e-24 8.950275270900359393e-24
-2.797500000000000000e+02 -1.464587921664151191e-24 -1.704572152435951504e-23
-2.800000000000000000e+02 -1.313230693046643632e-23 1.206177432595151018e-23
-2.802500000000000000e+02 -1.446212176733567734e-24 -5.525850966827564909e-24
-2.805000000000000000e+02 -1.189961552347884628e-23 -3.719061489843738997e-24
-2.807500000000000000e+02 1.139217292050466340e-23 5.675057694160959217e-24
-2.810000000000000000e+02 2.338163458483642706e-24 -4.787303122439516652e-24
-2.812500000000000000e+02 -2.680828229116221438e-24 7.282613810350172032e-24
-2.815000000000000000e+02 5.845762906861437512e-24 5.186605386861534736e-24
-2.817500000000000000e+02 -8.341275691366204623e-24 -4.883769770752754262e-24
-2.820000000000000000e+02 7.545977589565168632e-24 4.733543378710797885e-24
-2.822500000000000000e+02 -2.337326575045349045e-24 5.209544235330358954e-25
-2.825000000000000000e+02 9.279696396684946522e-25 5.832314524355729393e-24
-2.827500000000000000e+02 1.280040846104316790e-23 -7.144368365338108279e-24
-2.830000000000000000e+02 -3.555472623169783960e-24 2.768931569110550575e-24
-2.832500000000000000e+02 3.013595165734319667e-24 4.374417226043200021e-24
-2.835000000000000000e+02 -1.305247899571536106e-24 -1.017910822939222689e-23
-2.837500000000000000e+02 -4.084062454447974681e-24 1.036047536593359568e-24
-2.840000000000000000e+02 8.083410639134772933e-24 1.261688103153580759e-24
-2.842500000000000000e+02 -1.266536149831906201e-23 -6.650691922963097357e-24
-2.845000000000000000e+02 9.657589672069966172e-24 9.853576847481753076e-24
-2.847500000000000000e+02 -4.002349919672976867e-24 -2.190396068703594708e-24
-2.850000000000000000e+02 -3.183270920943561308e-24 7.771875192345019143e-24
-2.852500000000000000e+02 7.024152930420261311e-24 -3.691101302925631437e-24
-2.855000000000000000e+02 -7.920962839948784337e-24 1.138169871120804678e-23
-2.857500000000000000e+02 9.087232677644065460e-24 9.306115692483671379e-24
-2.860000000000000000e+02 8.097504499366752812e-25 -1.871504353473867366e-24
-2.862500000000000000e+02 -4.039552827477079509e-25 6.444535752895065229e-24
-2.865000000000000000e+02 9.460992338971538868e-24 -8.438717777849367652e-24
-2.867500000000000000e+02 -9.429934029818944670e-24 2.871991175159681534e-24
-2.870000000000000000e+02 9.657016363336118889e-24 3.241190431940380254e-24
-2.872500000000000000e+02 3.963428101315453162e-24 -1.016531965267412252e-23
-2.875000000000000000e+02 -7.394295922114008327e-24 4.790665442142849473e-24
-2.877500000000000000e+02 5.497318211017564788e-24 -6.189969959051119555e-24
-2.880000000000000000e+02 -7.824747081492462486e-24 2.931707906468386244e-24
-2.882500000000000000e+02 5.495857644118323357e-24 2.585387124822012681e-24
-2.885000000000000000e+02 1.402555219310603584e-24 -3.504198627152437281e-24
-2.887500000000000000e+02 4.984140381469648108e-24 8.622947966654299239e-24
-2.890000000000000000e+02 3.170679300486046129e-24 -8.388428191965259537e-25
-2.892500000000000000e+02 -7.505878717705326484e-24 -2.346905967962854337e-24
-2.895000000000000000e+02 8.680208975696798768e-24 -1.570642679048685245e-24
-2.897500000000000000e+02 4.204209470493721647e-24 -8.042532022422075545e-24
-2.900000000000000000e+02 -6.429550336838356890e-24 5.828771060389068283e-24
-2.902500000000000000e+02 9.097595440730412206e-24 -9.539101075255865339e-24
-2.905000000000000000e+02 -7.481643838471384142e-24 -8.921448812972775787e-24
-2.907500000000000000e+02 6.252276479548702520e-24 1.085125253204251015e-23
-2.910000000000000000e+02 2.311751615111575513e-24 -5.914192910440891811e-24
-2.912500000000000000e+02 2.905439062693228611e-24 2.470456122795960383e-24
-2.915000000000000000e+02 1.889533067955749784e-25 -8.144173202409877874e-25
-2.917500000000000000e+02 -8.784971858543098925e-24 -6.014911691812334374e-24
-2.920000000000000000e+02 5.802486562686261682e-24 1.956303158852535646e-24
-2.922500000000000000e+02 -3.993723809242628023e-24 -1.553275117181237362e-24
-2.925000000000000000e+02 -5.573231474646920932e-24 6.687016346876600830e-24
-2.927500000000000000e+02 9.200233594478060641e-24 -4.352436112338451074e-24
-2.930000000000000000e+02 -8.788095910169929157e-24 3.076739697576528827e-24
-2.932500000000000000e+02 1.260072053032157210e-24 6.296451817595977300e-24
-2.935000000000000000e+02 4.088619829279011329e-26 -1.030205421452652360e-24
-2.937500000000000000e+02 -8.993525219941610794e-24 9.553876999488403393e-24
-2.940000000000000000e+02 1.358317530309026771e-23 -3.226955068343552389e-24
-2.942500000000000000e+02 -9.592427722289656798e-24 1.672277448175499568e-24
-2.945000000000000000e+02 -4.034043894468901348e-24 7.702726470395403680e-24
-2.947500000000000000e+02 -3.148598957941891415e-25 -8.721619980567926920e-24
-2.950000000000000000e+02 -5.185329715622654890e-24 2.200982136572672173e-24
-2.952500000000000000e+02 8.277246437659759260e-24 1.615356964533930482e-24
-2.955000000000000000e+02 -1.245515083920432281e-24 -4.571347597514313797e-24
-2.957500000000000000e+02 -2.566192550011427718e-24 1.814575155735749525e-24
-2.960000000000000000e+02 -3.789454872290073364e-24 -9.861374997893640371e-25
-2.962500000000000000e+02 -7.160170827673238230e-24 -4.577440012357316595e-25
-2.965000000000000000e+02 1.342259478826814429e-23 -1.368681841381798008e-24
-2.967500000000000000e+02 -5.328817425639798854e-24 2.736835457283269740e-27
-2.970000000000000000e+02 8.701744761422076012e-24 -2.919464975886033457e-24
-2.972500000000000000e+02 6.029167078434201972e-25 -5.128582569564957411e-24
-2.975000000000000000e+02 -3.144099345612581213e-24 2.797471246222331806e-24
-2.977500000000000000e+02 -3.844334762805646680e-25 -3.404176227306193045e-24
-2.980000000000000000e+02 -4.796823909189435810e-24 -2.343507180820057827e-24
-2.982500000000000000e+02 6.516086806835445973e-24 6.293714789102851932e-24
-2.985000000000000000e+02 8.814432491467163876e-25 -7.120138965587951335e-24
-2.987500000000000000e+02 -1.657324249567593600e-24 5.780073330865713000e-24
-2.990000000000000000e+02 6.096289943844681497e-24 2.754230991252522744e-24
-2.992500000000000000e+02 4.656983968858750204e-24 -7.937605227802233625e-24
-2.995000000000000000e+02 -4.544287067655615749e-25 5.761805198320501492e-24
-2.997500000000000000e+02 3.314672264365731394e-24 -1.143637715274765486e-23
-3.000000000000000000e+02 -5.265125115929663002e-25 8.318453643189605022e-24
-3.002500000000000000e+02 7.315965662515549877e-24 -3.149789205027350636e-24
-3.005000000000000000e+02 2.296610042516685911e-24 -7.531462096793172847e-24
-3.007500000000000000e+02 2.337189776703535640e-25 -7.228861127256257061e-25
-3.010000000000000000e+02 -1.741257041140311150e-24 -7.804598225632518678e-25
-3.012500000000000000e+02 -2.387471263385016646e-24 4.407829066772110289e-26
-3.015000000000000000e+02 6.839477259011777067e-24 -4.787441126020884742e-24
-3.017500000000000000e+02 -8.763702393306373636e-24 -9.599075088250492938e-24
-3.020000000000000000e+02 1.909555037333744597e-24 4.440541501032651316e-24
-3.022500000000000000e+02 -1.257001897685102874e-24 -6.232527895098708514e-24
-3.025000000000000000e+02 2.443967034395265665e-24 -8.708329315132288052e-25
-3.027500000000000000e+02 1.023287606385166265e-23 -4.834119473334162400e-24
-3.030000000000000000e+02 -3.676363723583231437e-24 -4.943365857035539841e-24
-3.032500000000000000e+02 5.788917518796996507e-24 7.467058687255387915e-24
-3.035000000000000000e+02 -6.595722146567932295e-24 -6.570443174314498297e-24
-3.037500000000000000e+02 -4.568666275656682133e-24 2.923369949777092388e-24
-3.040000000000000000e+02 -1.009479463076617477e-24 5.062034299801064801e-24
-3.042500000000000000e+02 -4.442733498572540895e-24 -1.180759551879653860e-24
-3.045000000000000000e+02 5.089992857710253192e-24 4.247291522342204978e-24
-3.047500000000000000e+02 -1.462082558482047701e-24 -1.008650190689988747e-23
-3.050000000000000000e+02 -2.884974411478340383e-24 6.716871568258887146e-24
-3.052500000000000000e+02 1.131884863958157011e-23 2.489747569770067107e-25
-3.055000000000000000e+02 -1.561514540703687091e-24 1.357829956766246053e-24
-3.057500000000000000e+02 1.211705008249881957e-23 1.398147853899081752e-24
-3.060000000000000000e+02 4.544993231823742717e-25 7.469805355969030535e-25
-3.062500000000000000e+02 -9.734889091212398289e-24 9.875108863194237391e-24
-3.065000000000000000e+02 5.663864355244303090e-24 2.128205324819479797e-24
-3.067500000000000000e+02 -4.159692751826174409e-24 -8.365218546745288838e-24
-3.070000000000000000e+02 -3.811173932776710017e-24 6.393010245735717811e-24
-3.072500000000000000e+02 -2.504070434260280540e-24 -3.783206246279502631e-24
-3.075000000000000000e+02 -9.409017159930433169e-24 4.558001604137606138e-24
-3.077500000000000000e+02 1.134773964331954712e-23 1.610328838669208460e-24
-3.080000000000000000e+02 -9.021793584231684162e-24 -1.445189034459638532e-24
-3.082500000000000000e+02 8.556625504295701458e-24 7.008692378810421842e-24
-3.085000000000000000e+02 -4.774359063325894179e-25 -2.682379344938311284e-25
-3.087500000000000000e+02 -2.299771328134874250e-24 -1.681453393963394198e-24
-3.090000000000000000e+02 4.736018858199134009e-24 1.076553785765121085e-24
-3.092500000000000000e+02 8.454706747018229588e-25 -2.597436498426189229e-24
-3.095000000000000000e+02 -5.158410341827513348e-24 4.345843713119148579e-24
-3.097500000000000000e+02 1.496113743562528767e-24 -7.924992024287256255e-24
-3.100000000000000000e+02 -1.029957506752862610e-23 5.775650882599380203e-25
-3.102500000000000000e+02 4.884884572510019980e-24 -5.374870387579665049e-25
-3.105000000000000000e+02 -5.074361243335255737e-24 -1.019798616397675539e-23
-3.107500000000000000e+02 4.099323243181886043e-26 1.403797258859217111e-24
-3.110000000000000000e+02 5.545880149177210543e-24 -1.019488071366563620e-23
-3.112500000000000000e+02 -9.375482183997344850e-24 5.169628224444513314e-24
-3.115000000000000000e+02 2.971774886483243308e-24 6.003633060727645688e-25
-3.117500000000000000e+02 -8.166648611394251403e-25 -3.449955527580799639e-24
-3.120000000000000000e+02 1.796336118215654835e-24 3.747130683642992466e-24
-3.122500000000000000e+02 8.352008163096541228e-24 -3.291302776831378409e-24
-3.125000000000000000e+02 -5.172095627297024554e-25 8.788440882571216627e-26
-3.127500000000000000e+02 -9.828359808967952571e-25 5.344230806627371024e-24
-3.130000000000000000e+02 -4.054080952181729914e-24 1.183931120850881214e-24
-3.132500000000000000e+02 2.576431965869504583e-25 7.864895343205186446e-25
-3.135000000000000000e+02 4.720950402739245795e-24 -5.206802998233216843e-24
-3.137500000000000000e+02 6.817545948293459937e-25 -2.268792736813976214e-24
-3.140000000000000000e+02 4.179290401594736823e-24 -8.992800136925327655e-25
-3.142500000000000000e+02 -5.695093971351703569e-25 -1.352625258173030771e-25
-3.145000000000000000e+02 2.108838048077279527e-24 5.755698330481280430e-24
-3.147500000000000000e+02 2.502924604737352039e-24 1.391955336145463945e-24
-3.150000000000000000e+02 -1.073986294549417195e-24 9.625600983067272933e-26
-3.152500000000000000e+02 1.015247602646120172e-23 -2.770094322869253797e-24
-3.155000000000000000e+02 1.754374690955041637e-24 -7.641415133183329249e-24
-3.157500000000000000e+02 4.225026208808314666e-24 2.690060155858155410e-24
-3.160000000000000000e+02 3.624952593109012968e-24 -3.012527107168023702e-24
-3.162500000000000000e+02 6.989583392145569073e-25 6.152530815951090818e-25
-3.165000000000000000e+02 -2.666863239068973137e-24 -2.498425961500609861e-24
-3.167500000000000000e+02 -1.169753189831692732e-25 1.091687981309682891e-24
-3.170000000000000000e+02 -2.524935879014279221e-24 1.745249192067342584e-24
-3.172500000000000000e+02 7.854197334083537480e-24 -2.639180497419999404e-24
-3.175000000000000000e+02 -1.344236275023815399e-24 6.507419447908209803e-24
-3.177500000000000000e+02 3.678972269918281427e-24 2.981232271197531825e-25
-3.180000000000000000e+02 4.168899012004806766e-24 2.147926533857648792e-24
-3.182500000000000000e+02 -2.596702556433167808e-24 3.809062097248904179e-24
-3.185000000000000000e+02 -4.138213665251724697e-24 -7.127917474055283205e-25
-3.187500000000000000e+02 -5.601934376992363858e-25 2.469878971576067374e-24
-3.190000000000000000e+02 4.322433816485040670e-24 2.338150996419908706e-24
-3.192500000000000000e+02 5.080808646818750789e-25 9.902675138430863690e-25
-3.195000000000000000e+02 -5.886436038925293998e-25 5.806024746656682442e-24
-3.197500000000000000e+02 2.286382906721200883e-24 -1.332983525326026078e-24
-3.200000000000000000e+02 -4.082438742240280055e-24 9.356742607785930537e-25
-3.202500000000000000e+02 -2.933705310430274586e-24 6.686745919420590803e-24
-3.205000000000000000e+02 1.043668267955762947e-24 -7.202641103088764728e-24
-3.207500000000000000e+02 8.188572334419059057e-25 2.137130856057551314e-25
-3.210000000000000000e+02 -4.009352797549052381e-24 2.088175837397110163e-24
-3.212500000000000000e+02 -7.523175559924184433e-24 2.566038669295036775e-24
-3.215000000000000000e+02 -2.061525062606589498e-24 -4.074233178299898170e-24
-3.217500000000000000e+02 -1.676138733391161079e-25 6.881409604026156656e-24
-3.220000000000000000e+02 -3.167998966655776248e-24 6.108276461538160520e-24
-3.222500000000000000e+02 2.131882462331906999e-24 -9.005945350264472791e-25
-3.225000000000000000e+02 -7.113906735906111166e-24 7.486753080405626637e-25
-3.227500000000000000e+02 1.141221734907534693e-24 -4.378827064326972005e-24
-3.230000000000000000e+02 9.997283804954274545e-26 4.988701823394984147e-24
-3.232500000000000000e+02 -3.000471484047627381e-24 4.673236645284637302e-24
-3.235000000000000000e+02 -1.574794937907630643e-24 -1.996917001470902918e-24
-3.237500000000000000e+02 -6.919537400788058639e-24 1.374756515559521484e-25
-3.240000000000000000e+02 5.904473010866586304e-24 5.605316923001262122e-24
-3.242500000000000000e+02 -3.185589209807578210e-24 -2.833498334650634372e-24
-3.245000000000000000e+02 2.956388306141054877e-25 6.108394006940675583e-24
-3.247500000000000000e+02 -5.649350904124674679e-24 -6.566294590054867843e-25
-3.250000000000000000e+02 -4.085292626691645507e-24 5.142357166974586900e-24
-3.252500000000000000e+02 2.096414448542945284e-24 -2.539583010422991474e-24
-3.255000000000000000e+02 1.407155712522623396e-24 -1.205152492361852849e-24
-3.257500000000000000e+02 4.135325517975619115e-25 6.708534901375385041e-24
-3.260000000000000000e+02 -5.623616388656826149e-24 -9.382176366814076733e-25
-3.262500000000000000e+02 -1.947511694604918779e-24 1.451886759325458849e-24
-3.265000000000000000e+02 1.742952276316549074e-24 2.466934773541698544e-24
-3.267500000000000000e+02 3.204590663495617558e-25 -4.642652113802981627e-24
-3.270000000000000000e+02 1.955631098709187448e-24 1.876382128263540847e-24
-3.272500000000000000e+02 -2.464832035327637644e-24 -5.370478385188179683e-24
-3.275000000000000000e+02 -1.966853027892144416e-24 1.205220214910018206e-24
-3.277500000000000000e+02 4.084424968446952803e-24 -5.053732904536166838e-24
-3.280000000000000000e+02 1.829836638347285260e-24 -2.596884711439440588e-24
-3.282500000000000000e+02 -3.464683286211256090e-24 3.435695232403008541e-24
-3.285000000000000000e+02 -1.840152824244307478e-24 -5.136110586976708655e-26
-3.287500000000000000e+02 -7.144787108091969829e-25 6.052207877737616814e-24
-3.290000000000000000e+02 2.410448121477897449e-25 5.921598581123307757e-25
-3.292500000000000000e+02 -2.062620037864185847e-24 -3.494978966534263314e-24
-3.295000000000000000e+02 3.158692132932189382e-24 4.569080789857227741e-24
-3.297500000000000000e+02 1.563234942503842718e-24 -7.161758527735454394e-25
-3.300000000000000000e+02 6.146991541814973684e-25 5.757805115145754583e-24
-3.302500000000000000e+02 3.842584951667175045e-24 7.991681775650809959e-25
-3.305000000000000000e+02 -4.932658838622051160e-24 -2.626825777351533711e-24
-3.307500000000000000e+02 2.711031951265417322e-24 -6.605516705442692834e-24
-3.310000000000000000e+02 8.155502727781854039e-25 -5.436485514672119047e-24
-3.312500000000000000e+02 -7.570327305658690534e-24 1.389373650385367171e-24
-3.315000000000000000e+02 2.342960898145153048e-24 -1.986670212585175475e-24
-3.317500000000000000e+02 6.121969456833789045e-26 6.925597389773127727e-25
-3.320000000000000000e+02 1.247872114678282938e-24 8.384693402712617618e-24
-3.322500000000000000e+02 -9.653013161791041476e-25 -6.329720344551191265e-25
-3.325000000000000000e+02 2.245006498107674981e-24 -2.620678003203295441e-24
-3.327500000000000000e+02 -1.559532803125061531e-24 -2.217668400481182467e-25
-3.330000000000000000e+02 -2.246744919735401631e-24 2.291582441694581412e-24
-3.332500000000000000e+02 3.937239364733678498e-24 4.798851470452187935e-24
-3.335000000000000000e+02 2.820267423094674491e-24 -3.980152921692647552e-24
-3.337500000000000000e+02 -5.300311794010059724e-25 1.334357131003498376e-24
-3.340000000000000000e+02 7.799550147514578441e-24 -5.048468067566766963e-24
-3.342500000000000000e+02 -1.569708724266304757e-24 2.319794107722820197e-24
-3.345000000000000000e+02 -7.121168230471687950e-24 1.252795828874012926e-23
-3.347500000000000000e+02 1.769248291973037317e-24 -2.066502798008114277e-25
-3.350000000000000000e+02 -2.857374418252417226e-24 3.650015232685570107e-24
-3.352500000000000000e+02 -7.264159401503834326e-26 -2.123465003854205458e-24
-3.355000000000000000e+02 -4.013736386333246783e-24 2.004083686980417165e-25
-3.357500000000000000e+02 -4.073297528329820603e-24 6.559580306683640173e-24
-3.360000000000000000e+02 -1.455998537658226592e-24 1.230838720781940526e-24
-3.362500000000000000e+02 1.802627615149704875e-25 1.864836515372867426e-24
-3.365000000000000000e+02 -3.275324880684653850e-24 -1.054543340130397696e-24
-3.367500000000000000e+02 1.289082079898152818e-24 -3.213339369510424994e-24
-3.370000000000000000e+02 -2.272618081093050518e-24 2.411889638930289329e-24
-3.372500000000000000e+02 1.491756256637356974e-24 -3.986962619404896730e-24
-3.375000000000000000e+02 4.426021698799109612e-24 -8.184607533547558600e-25
-3.377500000000000000e+02 -7.007079438833965770e-25 6.709016234046423957e-24
-3.380000000000000000e+02 2.773722746999472338e-25 4.132860901709533286e-24
-3.382500000000000000e+02 -7.582822599636309670e-25 9.653567441303265870e-24
-3.385000000000000000e+02 4.633390773316117770e-24 2.989206860604555032e-24
-3.387500000000000000e+02 -6.865449946280678193e-24 5.225785399379324505e-24
-3.390000000000000000e+02 2.509773581013945268e-24 1.519488011536009319e-24
-3.392500000000000000e+02 -2.321213722303795493e-24 2.893073843067604465e-24
-3.395000000000000000e+02 -5.364678538853732254e-24 -2.174740617359391663e-24
-3.397500000000000000e+02 -2.624336208519771914e-24 -1.142364089356792723e-24
-3.400000000000000000e+02 -3.163744028442702378e-24 -2.914163020067450942e-24
-3.402500000000000000e+02 1.566491681843494889e-24 4.182492206384949886e-24
-3.405000000000000000e+02 6.188223357098877598e-25 1.863009934895917419e-25
-3.407500000000000000e+02 2.753247392246977183e-24 -3.162727859865067220e-24
-3.410000000000000000e+02 -2.465692123130609227e-24 9.133028210112138630e-25
-3.412500000000000000e+02 -1.395652361895909435e-24 1.989283881099998241e-24
-3.415000000000000000e+02 1.408184843986923388e-24 -8.408873528325831049e-25
-3.417500000000000000e+02 2.443246196931972671e-24 -2.179856577092383721e-24
-3.420000000000000000e+02 -4.107800868141107789e-24 2.194039468716359116e-24
-3.422500000000000000e+02 2.886067415717881730e-25 2.317769732339446159e-24
-3.425000000000000000e+02 -6.681040749048246591e-24 -8.868473965241455792e-25
-3.427500000000000000e+02 -2.723346608603387367e-25 2.296369979427151125e-24
-3.430000000000000000e+02 -4.548555021806866793e-24 -3.777617212066818529e-25
-3.432500000000000000e+02 -3.517579433657772326e-24 6.640050055326537270e-25
-3.435000000000000000e+02 1.839364930972966468e-24 -4.009040385859745836e-24
-3.437500000000000000e+02 -1.592450004843036120e-24 -5.053430599248623755e-25
-3.440000000000000000e+02 -1.954595830412799790e-24 2.047550316371651647e-24
-3.442500000000000000e+02 4.522811688615166890e-24 1.458489602917219493e-24
-3.445000000000000000e+02 3.165129462583496866e-24 -4.098277148727096219e-25
-3.447500000000000000e+02 6.196243668111344703e-25 -3.493090564331895303e-24
-3.450000000000000000e+02 -3.545293148795883901e-24 3.600484793616673385e-24
-3.452500000000000000e+02 2.924038561843177968e-24 9.844818096212879716e-24
-3.455000000000000000e+02 -1.997691255877270200e-24 1.540746650867985389e-24
-3.457500000000000000e+02 -9.869308493093919465e-25 6.892382725619613486e-26
-3.460000000000000000e+02 2.711561406856874650e-24 -3.627366319179228599e-24
-3.462500000000000000e+02 -1.793739218567580167e-24 1.970803416379594895e-24
-3.465000000000000000e+02 -7.787945310263483099e-24 6.174671577504558949e-24
-3.467500000000000000e+02 2.423083532974804296e-25 -1.089966593706171406e-24
-3.470000000000000000e+02 4.113400329717515896e-24 4.322381373590085592e-24
-3.472500000000000000e+02 2.007940069759800622e-24 -2.003327104098839462e-24
-3.475000000000000000e+02 -3.293154107279213130e-24 2.684933689976221228e-24
-3.477500000000000000e+02 6.689044232256319397e-24 4.611889580412375810e-24
-3.480000000000000000e+02 -4.886505113906505630e-24 -9.715581488391384017e-25
-3.482500000000000000e+02 5.535247508849844174e-24 -3.945174293977436808e-24
-3.485000000000000000e+02 -7.955363449632635741e-25 -1.176282154572778449e-24
-3.487500000000000000e+02 -6.115880368888372048e-24 -2.331287787431254687e-24
-3.490000000000000000e+02 2.878909552879815068e-24 -2.444651311200129021e-24
-3.492500000000000000e+02 2.755619676628812508e-24 3.521557104919859000e-24
-3.495000000000000000e+02 1.005305915919894970e-24 3.200244351794755532e-24
-3.497500000000000000e+02 2.997360873741615537e-24 -1.463326847658622931e-24
-3.500000000000000000e+02 3.376409114244364718e-24 -2.789734434674517504e-24
-3.502500000000000000e+02 2.110425998200566538e-24 1.607269711515898098e-25
-3.505000000000000000e+02 4.420252260632736329e-24 1.994341603153905008e-24
-3.507500000000000000e+02 1.443261091916293012e-24 -5.253782773161977825e-24
-3.510000000000000000e+02 3.664024673690434481e-24 7.869741626362208742e-25
-3.512500000000000000e+02 -2.386709164257461786e-24 3.321569563740070003e-24
-3.515000000000000000e+02 -1.307851196287432740e-24 4.800242977595817022e-24
-3.517500000000000000e+02 -3.797742416130379012e-24 3.304174790852690983e-24
-3.520000000000000000e+02 2.371560419983608307e-24 1.723761071908999178e-24
-3.522500000000000000e+02 -1.453616535914658581e-24 -6.646676987713650750e-24
-3.525000000000000000e+02 -1.906356028223423010e-24 -7.795565541231931920e-24
-3.527500000000000000e+02 -5.233891204072078706e-25 -2.643052872778250133e-24
-3.530000000000000000e+02 -8.092975161676240122e-25 -1.084948872887595436e-24
-3.532500000000000000e+02 -9.362009667650117672e-24 -8.288769499791182914e-25
-3.535000000000000000e+02 -3.795570665899011008e-24 1.626996186309683418e-24
-3.537500000000000000e+02 9.490762250470891271e-25 3.153871653087108651e-24
-3.540000000000000000e+02 -6.236876083943335819e-24 -3.191584158598439212e-24
-3.542500000000000000e+02 4.554436563578021081e-24 -9.405295701768764086e-24
-3.545000000000000000e+02 1.352539877817258471e-24 3.182791366609734588e-24
-3.547500000000000000e+02 -1.384193444281476200e-24 4.197117144347622134e-24
-3.550000000000000000e+02 -1.101841840969298584e-24 5.173185006464211545e-24
-3.552500000000000000e+02 -4.132687658230858349e-26 7.060071305836312510e-25
-3.555000000000000000e+02 2.628347178060864057e-24 -7.180878178021580971e-25
-3.557500000000000000e+02 8.358879793984861050e-25 -3.402234739669728188e-24
-3.560000000000000000e+02 4.922820542823495042e-24 -9.591601230046985453e-24
-3.562500000000000000e+02 5.357077302202998849e-24 -2.470160544351565132e-25
-3.565000000000000000e+02 4.737284192586996338e-24 4.230355284257650467e-24
-3.567500000000000000e+02 -8.155290260183154829e-25 4.758004325328827964e-24
-3.570000000000000000e+02 1.565092006387749307e-24 2.582250155565045896e-24
-3.572500000000000000e+02 7.307216468608871193e-25 -1.780004216872434191e-24
-3.575000000000000000e+02 1.708892854024843050e-24 -1.741940960431820668e-24
-3.577500000000000000e+02 -9.128412154048367987e-24 -3.968882938132494339e-24
-3.580000000000000000e+02 -6.026611847227683980e-24 -3.362223811831068463e-24
-3.582500000000000000e+02 8.935889642246488092e-24 -5.639425376321756000e-25
-3.585000000000000000e+02 2.377193562431273660e-24 9.637414709830319948e-25
-3.587500000000000000e+02 5.290135883618556766e-24 -7.382668737753656904e-24
-3.590000000000000000e+02 4.516848713022330215e-24 1.630553700491534597e-24
-3.592500000000000000e+02 -2.287814779494405970e-24 3.870821240447335095e-24
-3.595000000000000000e+02 -2.537520045221851692e-24 -6.617360899483015147e-24
-3.597500000000000000e+02 1.593591201571560624e-24 -2.298765744419879320e-24
-3.600000000000000000e+02 -2.513925770019058787e-25 5.035985902893709986e-24
-3.602500000000000000e+02 -3.860814247616389587e-24 -3.859340159024800756e-24
-3.605000000000000000e+02 -6.428753166179701293e-24 2.438847007317920302e-24
-3.607500000000000000e+02 1.794035411233358725e-24 4.422841939179122759e-24
-3.610000000000000000e+02 4.091442995677111503e-24 -2.917181946765953456e-24
-3.612500000000000000e+02 -6.356533893905623199e-24 2.731181488722971076e-24
-3.615000000000000000e+02 1.626016282874581091e-25 1.346990948915514697e-24
-3.617500000000000000e+02 8.431272281287420754e-24 3.774024173810899817e-24
-3.620000000000000000e+02 -2.790005405955007917e-24 -2.053823981886714555e-24
-3.622500000000000000e+02 8.344261571470610145e-25 -1.854638957577080333e-24
-3.625000000000000000e+02 9.425532326932180395e-26 5.580527052315677419e-24
-3.627500000000000000e+02 5.791477187032698451e-24 1.229107253173235562e-24
-3.630000000000000000e+02 -1.996295912316112525e-24 3.553869201342832465e-24
-3.632500000000000000e+02 -4.208342417666414868e-24 2.234219904422643383e-24
-3.635000000000000000e+02 7.095442886051918514e-24 -1.668733666262704182e-24
-3.637500000000000000e+02 1.637554204633639014e-24 3.389307661230488830e-24
-3.640000000000000000e+02 -4.260732624859756010e-24 -5.427901970718727456e-25
-3.642500000000000000e+02 -1.963022068445895012e-24 -1.118081054076060768e-24
-3.645000000000000000e+02 -3.546574885585689663e-24 1.348172830508657176e-24
-3.647500000000000000e+02 3.862065598377461887e-24 7.711885518377411306e-24
-3.650000000000000000e+02 -4.931200931640296609e-24 1.451666744885018545e-24
-3.652500000000000000e+02 3.738205027678353764e-24 5.910243653819232263e-24
-3.655000000000000000e+02 4.829501561154819004e-24 1.749373444388233324e-24
-3.657500000000000000e+02 1.647350249738224878e-24 -5.369204437057953117e-24
-3.660000000000000000e+02 -2.883489546175226482e-24 -8.081089111497770680e-25
-3.662500000000000000e+02 -1.011214549207131672e-24 7.724656783990385945e-24
-3.665000000000000000e+02 6.545720288636163606e-24 -3.927933500316648667e-24
-3.667500000000000000e+02 -2.111315033909028001e-24 -2.026132073865561891e-24
-3.670000000000000000e+02 7.550450247816663457e-25 1.770713673762986869e-24
-3.672500000000000000e+02 6.396316477972890699e-24 -3.583123599462361379e-24
-3.675000000000000000e+02 -2.236516517789879875e-24 -1.726348042250403262e-24
-3.677500000000000000e+02 3.561683488018674412e-24 -8.475340480358381135e-24
-3.680000000000000000e+02 9.073921413544652372e-24 5.204954410762486536e-24
-3.682500000000000000e+02 3.618754637843232858e-24 4.260804131782825479e-25
-3.685000000000000000e+02 8.316134051741120151e-25 -4.724708722553907653e-24
-3.687500000000000000e+02 3.838318985651189786e-25 2.228213874727821667e-24
-3.690000000000000000e+02 -2.883615875824198531e-24 -8.878418249957388738e-24
-3.692500000000000000e+02 2.604618682469170979e-24 -2.238106145568694677e-24
-3.695000000000000000e+02 -5.747186140657744703e-25 4.183854908173262759e-24
-3.697500000000000000e+02 -5.929086315048763383e-24 4.276972494107590703e-24
-3.700000000000000000e+02 1.045964040087783623e-24 2.883687847657450150e-25
-3.702500000000000000e+02 -3.665319851041179778e-24 1.869656610962645544e-24
-3.705000000000000000e+02 1.733465349706410688e-24 -7.063347856559069470e-25
-3.707500000000000000e+02 8.131752194840374504e-24 5.177699660121271846e-25
-3.710000000000000000e+02 -2.882488492465896622e-24 -1.695485296971502854e-24
-3.712500000000000000e+02 7.294088231746275398e-25 1.422701161093783078e-24
-3.715000000000000000e+02 1.742120268790427672e-24 -9.650913812693322940e-25
-3.717500000000000000e+02 -1.403706941952521089e-24 -9.090396279215217013e-25
-3.720000000000000000e+02 3.762142311533612324e-24 -1.200137028014726818e-24
-3.722500000000000000e+02 3.811662805208756727e-24 2.656139030606459258e-25
-3.725000000000000000e+02 -9.908988849943091553e-25 2.941579861747931311e-24
-3.727500000000000000e+02 -1.544873565359207116e-24 2.757191684121635844e-24
-3.730000000000000000e+02 -3.565862001827490459e-24 2.900032156555244746e-24
-3.732500000000000000e+02 5.138508926402196330e-24 4.933563370173957914e-24
-3.735000000000000000e+02 8.626307976202290555e-26 -7.810681388517270818e-25
-3.737500000000000000e+02 2.790639693813789394e-24 -4.400742721954828713e-24
-3.740000000000000000e+02 -1.072946566202237616e-24 -5.169382554641361501e-24
-3.742500000000000000e+02 -1.983544242128641669e-24 -2.128417204363548272e-24
-3.745000000000000000e+02 -4.983398820639565840e-24 -4.440851684240140359e-24
-3.747500000000000000e+02 -1.050201051590065593e-24 9.772882356657987205e-24
-3.750000000000000000e+02 3.861301276256550525e-24 1.492166271119045806e-26
-3.752500000000000000e+02 -9.436851461968151957e-25 1.033558516549089508e-25
-3.755000000000000000e+02 2.860438204967223264e-24 1.988805785763174121e-24
-3.757500000000000000e+02 7.290012409081848142e-24 2.308924110472582797e-24
-3.760000000000000000e+02 3.986939455225640767e-24 -6.180119006936516357e-24
-3.762500000000000000e+02 -8.136904269837413524e-25 1.015869580095489557e-24
-3.765000000000000000e+02 9.557147085959124157e-24 -3.420695816189086334e-24
-3.767500000000000000e+02 -1.615532589225935563e-24 5.217635498281622038e-24
-3.770000000000000000e+02 -3.612642229989210830e-24 4.482699460994066458e-24
-3.772500000000000000e+02 -2.728297613560041304e-24 2.771095171793128917e-24
-3.775000000000000000e+02 3.037024948166417139e-24 -5.782261060295345120e-25
-3.777500000000000000e+02 -2.745878306040942266e-24 -4.746995944341847996e-24
-3.780000000000000000e+02 1.609892709161914835e-24 2.948955807600133384e-24
-3.782500000000000000e+02 7.751397417828183822e-24 3.205602446652295548e-24
-3.785000000000000000e+02 2.044851168948406605e-24 4.536783944355359764e-24
-3.787500000000000000e+02 -1.895102929736237257e-24 7.432901363216033106e-25
-3.790000000000000000e+02 -1.188248856868546153e-24 -2.318458591409067263e-24
-3.792500000000000000e+02 -4.835577312571795477e-24 -3.298911734669494072e-24
-3.795000000000000000e+02 3.649445408518214555e-24 2.517836672597673599e-24
-3.797500000000000000e+02 7.128682055537441518e-24 -6.933301019809564308e-24
-3.800000000000000000e+02 4.741166615755847166e-24 1.049685429896788460e-24
-3.802500000000000000e+02 -2.149987681947113145e-24 6.711047023078107187e-25
-3.805000000000000000e+02 -5.604937236824908195e-26 -1.573813210882481690e-24
-3.807500000000000000e+02 -5.422780857008027503e-24 1.705898682736466098e-24
-3.810000000000000000e+02 3.062958724305966530e-24 -2.478022495194144944e-24
-3.812500000000000000e+02 -4.155690142118285248e-24 -1.549357608457400154e-24
-3.815000000000000000e+02 1.255658189969309785e-24 1.056319659568571637e-24
-3.817500000000000000e+02 7.206490836382790336e-25 7.160680513480990639e-24
-3.820000000000000000e+02 1.421982939753386027e-24 -5.509875185523688767e-24
-3.822500000000000000e+02 -1.338891799269518035e-24 1.564630582015022462e-24
-3.825000000000000000e+02 6.497391314404546573e-26 6.757078674805490722e-25
-3.827500000000000000e+02 -1.691749832304621638e-24 -2.944602786692551633e-24
-3.830000000000000000e+02 -6.673364878302968256e-24 6.499582341123701884e-24
-3.832500000000000000e+02 -4.229809792880860651e-24 -2.484764956950695334e-24
-3.835000000000000000e+02 -1.007029404703885169e-24 -3.116777388900930648e-24
-3.837500000000000000e+02 5.408556752616259741e-24 5.018792825610725731e-24
-3.840000000000000000e+02 8.303421016157664214e-24 -1.007456387799340445e-25
-3.842500000000000000e+02 2.095933248701597292e-24 2.753958018640348113e-25
-3.845000000000000000e+02 3.106198368547701785e-24 9.266653257744292610e-25
-3.847500000000000000e+02 -1.418733904471274829e-24 1.377361969539852152e-24
-3.850000000000000000e+02 -3.776948342893409723e-24 -6.891687351804335901e-25
-3.852500000000000000e+02 1.984293063974707830e-24 -2.594350674286777988e-25
-3.855000000000000000e+02 -3.005035340549112882e-24 -5.413731985428329494e-24
-3.857500000000000000e+02 -1.624073158576047652e-24 -8.324103704791376772e-25
-3.860000000000000000e+02 4.299069723051507127e-24 7.759331245025688918e-25
-3.862500000000000000e+02 7.771309283664565854e-25 9.648797313972703562e-25
-3.865000000000000000e+02 7.022939657066047722e-26 5.803170965013827364e-24
-3.867500000000000000e+02 9.853410214170167027e-25 3.199676974097302044e-24
-3.870000000000000000e+02 -4.857092776265752607e-24 -1.038889923565058203e-23
-3.872500000000000000e+02 2.177391081134198112e-25 9.156382687933700836e-25
-3.875000000000000000e+02 1.069531882888398267e-24 -3.888374932162129626e-24
-3.877500000000000000e+02 -1.729482987203837269e-24 -3.616528186194727290e-24
-3.880000000000000000e+02 -1.769613229933436833e-25 -2.890526554984248481e-24
-3.882500000000000000e+02 -9.803641473282612697e-25 -1.380022872782016402e-24
-3.885000000000000000e+02 1.676265861305017032e-24 -2.245890277398868750e-24
-3.887500000000000000e+02 3.925489765699286888e-24 -1.373334708109587272e-24
-3.890000000000000000e+02 3.217162522933894962e-24 5.823829936293112069e-25
-3.892500000000000000e+02 3.825748666626708263e-25 -2.387726388717321318e-24
-3.895000000000000000e+02 -1.212235535296484240e-23 -6.504087414646544357e-25
-3.897500000000000000e+02 -6.446274059186306646e-25 5.651406877141915383e-24
-3.900000000000000000e+02 5.313847691406209313e-24 -2.858251342592613660e-24
-3.902500000000000000e+02 1.739489011720671745e-24 -1.846891895334844770e-24
-3.905000000000000000e+02 -4.879273160076894561e-24 -3.061630542113330662e-24
-3.907500000000000000e+02 7.328031782039085065e-25 2.459162102319271834e-24
-3.910000000000000000e+02 5.685560457592896360e-24 -7.549807087858592226e-25
-3.912500000000000000e+02 -3.927094854040901283e-24 3.770770234841412275e-24
-3.915000000000000000e+02 -2.583265734963024717e-24 2.620771204369892309e-24
-3.917500000000000000e+02 4.750680123949177685e-24 2.699209192445510999e-24
-3.920000000000000000e+02 -1.015921637320571222e-24 7.530275827889970941e-25
-3.922500000000000000e+02 -5.801794553116063437e-25 4.115865058853367991e-24
-3.925000000000000000e+02 4.352863266917052179e-24 -1.147667734756159653e-23
-3.927500000000000000e+02 2.636497100250415743e-24 1.872740511746419680e-24
-3.930000000000000000e+02 7.860671669171493627e-24 -3.189390158499854289e-24
-3.932500000000000000e+02 -5.033543960495608144e-25 2.956824952548655714e-24
-3.935000000000000000e+02 7.471778576389839192e-24 2.346926826425532258e-24
-3.937500000000000000e+02 -3.754094018098247242e-25 -2.780589531574984771e-24
-3.940000000000000000e+02 -3.388423652211070139e-24 -1.367213865173421542e-26
-3.942500000000000000e+02 -3.568898103306957624e-24 1.529603324121470278e-24
-3.945000000000000000e+02 -6.180198687877732449e-24 4.275594302083081652e-24
-3.947500000000000000e+02 -4.289338814752785787e-24 1.606344185457735353e-24
-3.950000000000000000e+02 -5.397512962288621668e-24 4.782870806281909444e-24
-3.952500000000000000e+02 1.810866817923630210e-24 -1.359480948032950766e-25
-3.955000000000000000e+02 -1.757240778721356449e-24 3.951954154393795162e-24
-3.957500000000000000e+02 7.717272478502807405e-24 6.853925080376825250e-24
-3.960000000000000000e+02 -4.237684809157253136e-24 -7.656177095926569493e-24
-3.962500000000000000e+02 -1.533745742836193177e-24 4.546431091571937308e-24
-3.965000000000000000e+02 3.863691257615953305e-24 -4.623457686564732926e-24
-3.967500000000000000e+02 1.487290644518140860e-24 6.395266436503044223e-24
-3.970000000000000000e+02 3.988208770841561601e-24 2.590609998851102258e-24
-3.972500000000000000e+02 -2.587244845161732412e-24 1.342012802198019400e-24
-3.975000000000000000e+02 2.731031496204896789e-24 6.181801794338527240e-24
-3.977500000000000000e+02 -4.318807843952111348e-24 1.246958358914610080e-24
-3.980000000000000000e+02 5.080002254692329632e-24 1.792274206801173532e-24
-3.982500000000000000e+02 -4.014839275536521885e-24 1.437933503098629872e-24
-3.985000000000000000e+02 -6.917415330225353654e-24 -6.383211970751405726e-25
-3.987500000000000000e+02 1.052943132272976921e-24 -4.894648179018674823e-24
-3.990000000000000000e+02 6.518938689367854131e-26 -1.091437999174126367e-24
-3.992500000000000000e+02 -4.747656879256029149e-24 9.258720324310052790e-25
-3.995000000000000000e+02 -1.562194722419705787e-24 2.090731727190409966e-24
-3.997500000000000000e+02 -5.384208448768980125e-24 -2.588218915061382506e-25
-4.000000000000000000e+02 4.969520916458423070e-24 3.418270332069078251e-24
-4.002500000000000000e+02 2.223425738708348809e-24 3.851215559791883867e-24
-4.005000000000000000e+02 1.095756191866512196e-24 -5.768999229816060946e-24
-4.007500000000000000e+02 4.686525514246573958e-24 3.973780220530533915e-25
-4.010000000000000000e+02 -2.450384085375197037e-24 -7.987703054228155398e-24
-4.012500000000000000e+02 -3.777573799397504599e-24 -4.371830718707851542e-24
-4.015000000000000000e+02 -5.775515143769838951e-24 -2.549338878994300119e-24
-4.017500000000000000e+02 -1.612161962349570377e-24 2.193362311495379643e-24
-4.020000000000000000e+02 -6.902804861072666847e-25 2.122739164938977047e-24
-4.022500000000000000e+02 -7.773071030911003506e-24 -6.493241177838360853e-24
-4.025000000000000000e+02 4.542270965331153706e-24 4.991725238396777454e-25
-4.027500000000000000e+02 -4.337382119428363136e-24 -2.271779341644729906e-24
-4.030000000000000000e+02 -4.622622317792664594e-24 4.704060142831185028e-24
-4.032500000000000000e+02 -3.931896284329167905e-25 1.813980024892353732e-24
-4.035000000000000000e+02 -5.722206085748340159e-25 -2.494681833779510103e-24
-4.037500000000000000e+02 4.523217811684788387e-24 -1.945232315581304587e-24
-4.040000000000000000e+02 2.424021435170063805e-24 3.136371407573035051e-24
-4.042500000000000000e+02 5.161030795569889241e-24 3.123385838036388199e-24
-4.045000000000000000e+02 -3.531085006303868388e-24 -2.703566927462902906e-24
-4.047500000000000000e+02 3.982438696115786312e-24 -6.812068633955686611e-24
-4.050000000000000000e+02 1.346792483606294741e-24 3.459369174331669579e-25
-4.052500000000000000e+02 5.825238441634339782e-25 1.952184754268285304e-24
-4.055000000000000000e+02 1.923570423069025593e-24 1.762786599636912327e-24
-4.057500000000000000e+02 -6.993140902840554665e-24 -9.562420180392948873e-24
-4.060000000000000000e+02 1.175320007740835219e-24 -3.861263255398551568e-24
-4.062500000000000000e+02 -5.085191942190132904e-24 -1.790526781624266983e-24
-4.065000000000000000e+02 1.909937105213287285e-24 1.963115932637707648e-24
-4.067500000000000000e+02 2.591786139838522237e-24 1.167223210899853461e-24
-4.070000000000000000e+02 1.404113931056144117e-25 3.818899790526029770e-24
-4.072500000000000000e+02 2.525171930909497723e-24 -3.348883783959091091e-24
-4.075000000000000000e+02 2.698685864276782012e-24 -3.490366040952373099e-25
-4.077500000000000000e+02 7.433796458299096557e-24 -4.384822628726529972e-24
-4.080000000000000000e+02 -4.885162473586380253e-25 -3.743154143435221015e-25
-4.082500000000000000e+02 -3.764337372272212967e-24 -2.091417154014421143e-24
-4.085000000000000000e+02 -1.040502566913720236e-24 -5.702019835027157606e-24
-4.087500000000000000e+02 -3.269889132372549836e-24 -2.611593881309162135e-24
-4.090000000000000000e+02 -3.259071127371384031e-24 7.719895672689383913e-24
-4.092500000000000000e+02 6.405978837879057747e-24 8.824534071974196941e-25
-4.095000000000000000e+02 -5.658156343780836532e-25 3.517088711528538261e-24
-4.097500000000000000e+02 2.898973821999024415e-24 4.594100703220732594e-24
-4.100000000000000000e+02 -3.255865892297942697e-24 -3.809768992548617544e-24
-4.102500000000000000e+02 -3.174756170322012971e-24 2.379415410284853927e-24
-4.105000000000000000e+02 -2.575930311178448481e-24 8.633123603930164631e-27
-4.107500000000000000e+02 -1.325713892068916812e-24 -6.411215380536852176e-24
-4.110000000000000000e+02 3.294319360116057161e-24 9.950266239786830000e-25
-4.112500000000000000e+02 1.596198061477413209e-24 -3.684631319097552926e-24
-4.115000000000000000e+02 -1.561210708004349164e-24 5.343336701416857165e-24
-4.117500000000000000e+02 2.114174386590238749e-24 -2.907585705435542208e-24
-4.120000000000000000e+02 -6.111338380366304883e-24 -2.480416135972240624e-24
-4.122500000000000000e+02 -1.314047329123861606e-24 -6.794275107310490848e-24
-4.125000000000000000e+02 2.026367714073690513e-25 2.169681344982443554e-24
-4.127500000000000000e+02 -2.712192989727022118e-24 7.774255572267304967e-24
-4.130000000000000000e+02 -1.946030416187557053e-24 4.533080621098503964e-24
-4.132500000000000000e+02 1.637784615279888054e-25 2.733655208782593872e-24
-4.135000000000000000e+02 -1.645152542596125692e-24 1.120260591260479267e-24
-4.137500000000000000e+02 8.732712497229748590e-25 -4.390500448014317655e-24
-4.140000000000000000e+02 2.921803883950668180e-24 7.881925374862554331e-26
-4.142500000000000000e+02 -2.761240805064601880e-24 2.039591283911340154e-24
-4.145000000000000000e+02 -3.754324627626166929e-24 4.925185577309545809e-24
-4.147500000000000000e+02 -3.459116055422332809e-25 1.974621151227581335e-24
-4.150000000000000000e+02 -3.642669224842712834e-24 -5.267766478529619820e-24
-4.152500000000000000e+02 -4.126690846444691826e-24 7.092716447825602614e-24
-4.155000000000000000e+02 -3.796853618402496686e-24 -1.452472150574752835e-24
-4.157500000000000000e+02 -9.290689458056277080e-24 6.596450527386753379e-24
-4.160000000000000000e+02 2.613130806215322529e-24 3.169582617141543502e-24
-4.162500000000000000e+02 -1.891435929472538114e-24 3.502376877916288115e-24
-4.165000000000000000e+02 5.715335540216487208e-24 7.220554831569673201e-25
-4.167500000000000000e+02 5.403834112153832021e-24 -3.790652689893283028e-24
-4.170000000000000000e+02 -4.824163401857111644e-25 2.075585188200307788e-24
-4.172500000000000000e+02 8.161940186914297361e-24 -2.629596229514407717e-24
-4.175000000000000000e+02 4.057090278810554093e-24 -1.924714548718324831e-24
-4.177500000000000000e+02 -7.578835107373003694e-24 2.437707712382879047e-24
-4.180000000000000000e+02 1.418141866746551953e-24 3.574030421974502684e-24
-4.182500000000000000e+02 -2.232571670031824031e-24 -9.413379841020637647e-25
-4.185000000000000000e+02 3.367853088307191480e-24 1.756360001173277134e-25
-4.187500000000000000e+02 8.978703317338456022e-25 -1.428094023621799753e-24
-4.190000000000000000e+02 -1.272355865052249672e-24 -4.242998226451649225e-24
-4.192500000000000000e+02 1.703767244670411709e-24 9.075099468695692240e-25
-4.195000000000000000e+02 2.182467560511884352e-24 1.378604914055552569e-24
-4.197500000000000000e+02 -1.106882927657614426e-24 -3.026090269854835283e-24
-4.200000000000000000e+02 -9.673863186658831452e-24 6.090545462747312683e-24
-4.202500000000000000e+02 -1.735117845551365898e-24 -8.453589931314066030e-24
-4.205000000000000000e+02 -3.841255758535259579e-24 -2.050572091713818574e-25
-4.207500000000000000e+02 4.430776502331989769e-24 -1.527069670201945219e-24
-4.210000000000000000e+02 -7.589915391816922659e-24 -1.614805414500672973e-24
-4.212500000000000000e+02 -7.217481085007852154e-24 6.035320538517024349e-24
-4.215000000000000000e+02 -1.793952155022401554e-24 -5.767373215704218045e-24
-4.217500000000000000e+02 7.918153034727075009e-25 -2.939044211528146421e-24
-4.220000000000000000e+02 2.648838471508359819e-24 2.413286621067592369e-24
-4.222500000000000000e+02 -2.360129881241223322e-24 -2.945867593250636517e-24
-4.225000000000000000e+02 -8.245139605274330615e-24 4.275654535796777173e-25
-4.227500000000000000e+02 2.833015372567327441e-24 -3.042011117127098149e-24
-4.230000000000000000e+02 -2.385750646428860467e-24 -5.170275184545164517e-24
-4.232500000000000000e+02 -9.645789173115226870e-25 -7.603854281814843210e-24
-4.235000000000000000e+02 4.628226360953190200e-24 -9.642397040666410658e-25
-4.237500000000000000e+02 -1.963996955003464239e-25 -6.000550283873308150e-24
-4.240000000000000000e+02 -6.012227441613937461e-24 -2.701791749613385953e-24
-4.242500000000000000e+02 4.184456018820640278e-24 -1.843971815561827936e-24
-4.245000000000000000e+02 -7.109372761943292038e-24 3.124788412218100837e-24
-4.247500000000000000e+02 -5.077849207320858248e-25 7.195797617957569092e-24
-4.250000000000000000e+02 2.866890311309015398e-24 5.998428967735710681e-24
-4.252500000000000000e+02 6.175711596829550084e-24 -6.188454857036664531e-25
-4.255000000000000000e+02 6.493314410905196241e-25 4.034366314195685902e-24
-4.257500000000000000e+02 -2.353631372682027520e-24 1.218032862586916639e-24
-4.260000000000000000e+02 3.414927029482747568e-25 1.703693873477279034e-24
-4.262500000000000000e+02 -2.318236964688021879e-24 5.834834557328616253e-24
-4.265000000000000000e+02 2.463371300440005741e-24 -7.792177206320437999e-24
-4.267500000000000000e+02 -1.564258265534479927e-24 2.670151054113313400e-24
-4.270000000000000000e+02 2.850232088208980656e-24 1.926650423925066525e-24
-4.272500000000000000e+02 -2.587356692953223597e-24 2.022510848901218015e-24
-4.275000000000000000e+02 -2.879840934312717669e-25 -1.312701619476583713e-24
-4.277500000000000000e+02 3.217801904682742826e-24 4.239553261829055765e-24
-4.280000000000000000e+02 3.821642607321158773e-24 3.571323412054116784e-25
-4.282500000000000000e+02 3.125784713337939701e-24 1.254517622730547711e-24
-4.285000000000000000e+02 5.657027567359877456e-24 -3.205682511404270391e-25
-4.287500000000000000e+02 -3.768942796565904364e-24 8.632162381118148039e-25
-4.290000000000000000e+02 5.474645780277626485e-25 2.435408439701545741e-24
-4.292500000000000000e+02 4.434050161557786710e-24 -1.402849118163653905e-24
-4.295000000000000000e+02 4.499267987405324408e-25 2.849880941824421925e-24
-4.297500000000000000e+02 -1.636042284449940046e-24 -6.041749576728791401e-24
-4.300000000000000000e+02 -4.417888046453643641e-26 6.528569005067081567e-25
-4.302500000000000000e+02 1.956518835942546873e-25 1.215478427054339821e-24
-4.305000000000000000e+02 -2.173319523079833081e-24 5.523516642878874070e-24
-4.307500000000000000e+02 -3.243442498076123270e-24 -2.208094933046473808e-24
-4.310000000000000000e+02 -1.503835869401681008e-24 -1.878932601041598487e-24
-4.312500000000000000e+02 1.560899384273937536e-24 2.316311448542853874e-24
-4.315000000000000000e+02 -3.590573566746508829e-24 -6.624140911438301940e-24
-4.317500000000000000e+02 -2.343831203606895303e-24 3.479150607351380164e-24
-4.320000000000000000e+02 7.879777750597348463e-25 4.579053568172988849e-24
-4.322500000000000000e+02 -2.892456204220784769e-24 7.832230789900611463e-25
-4.325000000000000000e+02 -3.791215619358948688e-24 -7.242506337140499494e-24
-4.327500000000000000e+02 -6.294412005185559276e-24 2.530098402696722285e-24
-4.330000000000000000e+02 1.421279892580987041e-24 1.621060275390807324e-24
-4.332500000000000000e+02 8.446879209839176737e-24 -3.803748295233491881e-24
-4.335000000000000000e+02 -6.824503094736859230e-24 7.867216575533590276e-26
-4.337500000000000000e+02 1.277001602029025600e-24 -1.044499054935119920e-25
-4.340000000000000000e+02 -7.404719159012040357e-24 6.817928296320564304e-25
-4.342500000000000000e+02 2.107937329107532816e-24 6.217436741586388282e-25
-4.345000000000000000e+02 1.592572179510699613e-24 -6.895469247373534896e-26
-4.347500000000000000e+02 4.406398595706511862e-25 2.745917465463056389e-25
-4.350000000000000000e+02 2.361089709253606080e-25 -7.341607224244075356e-24
-4.352500000000000000e+02 5.907083236111028278e-24 6.244655204257748935e-24
-4.355000000000000000e+02 3.188218473608459710e-24 1.203492803103242866e-24
-4.357500000000000000e+02 4.722776654900449129e-24 -5.921437245553907667e-24
-4.360000000000000000e+02 5.280120096465581136e-25 1.115370755455837139e-23
-4.362500000000000000e+02 -8.087242334243416161e-25 -6.580877358995782981e-24
-4.365000000000000000e+02 -5.111872311420501050e-24 -4.279518158552542905e-25
-4.367500000000000000e+02 -1.213672062695953522e-24 4.554543610461274918e-25
-4.370000000000000000e+02 4.314371699448421554e-25 4.922155690600300057e-25
-4.372500000000000000e+02 3.659123140431582069e-24 -3.037955678586379540e-24
-4.375000000000000000e+02 -2.532346374767249387e-24 -4.939680833919091065e-25
-4.377500000000000000e+02 2.293318639947789068e-24 1.975212591543374675e-24
-4.380000000000000000e+02 -4.144146577842692319e-24 7.168684800455137116e-24
-4.382500000000000000e+02 -2.915151872708681629e-24 -1.615932041991402269e-24
-4.385000000000000000e+02 2.547395421209247146e-24 -3.530180319871572218e-24
-4.387500000000000000e+02 -2.698409470808089650e-24 4.599115523220566488e-25
-4.390000000000000000e+02 -4.095176304197152775e-24 2.588186550247382876e-24
-4.392500000000000000e+02 3.337303549660709709e-24 3.571121537903623158e-24
-4.395000000000000000e+02 7.043961266342473752e-24 2.623798965271291379e-24
-4.397500000000000000e+02 -5.436254227759541423e-24 -1.067425450640279346e-24
-4.400000000000000000e+02 -5.977320047596209400e-25 -4.620006385387992507e-24
-4.402500000000000000e+02 -1.268976354925650344e-24 2.261932059427498044e-24
-4.405000000000000000e+02 -5.793234436235149759e-25 -1.067734791506728119e-24
-4.407500000000000000e+02 -5.997160683637647873e-24 -1.098624163482566236e-24
-4.410000000000000000e+02 1.955949797151187971e-25 5.029434335950720322e-24
-4.412500000000000000e+02 -4.293274292349803457e-24 -7.433075024198699209e-25
-4.415000000000000000e+02 3.936717036500403348e-24 -4.336589931053774565e-24
-4.417500000000000000e+02 -6.473377244911932658e-24 1.742863651320649692e-24
-4.420000000000000000e+02 -2.497492003588076547e-24 -2.329593304800713788e-25
-4.422500000000000000e+02 -3.634464506895494231e-24 9.785428280839311373e-25
-4.425000000000000000e+02 1.676839959331254942e-24 -2.498458921816041018e-24
-4.427500000000000000e+02 9.055969203701067296e-24 1.085919489643649831e-24
-4.430000000000000000e+02 -1.222297843098668394e-24 1.831062808000536990e-24
-4.432500000000000000e+02 5.859197333066964778e-24 2.057683193233359547e-24
-4.435000000000000000e+02 -3.872176645597900568e-24 -1.815767222938173422e-24
-4.437500000000000000e+02 -1.119534451072152128e-24 -8.252597728603335350e-24
-4.440000000000000000e+02 1.054693057628325563e-24 1.346786960546017240e-24
-4.442500000000000000e+02 -1.881569163494376713e-24 2.228690082776695236e-24
-4.445000000000000000e+02 -7.979238780575783929e-24 -1.010490347763344382e-24
-4.447500000000000000e+02 -1.145077506600374586e-24 9.348986463411822878e-25
-4.450000000000000000e+02 3.769180875841236233e-24 3.864289516121624124e-24
-4.452500000000000000e+02 -4.091338693566033422e-24 1.925011510238078962e-24
-4.455000000000000000e+02 6.982070325236590082e-24 4.148943455994154833e-24
-4.457500000000000000e+02 1.509104544826959103e-24 -3.005204169909267395e-24
-4.460000000000000000e+02 -2.561566558573098612e-24 2.216864747035358750e-24
-4.462500000000000000e+02 -8.471383789504595716e-26 5.924131424666010340e-25
-4.465000000000000000e+02 9.587349512020325193e-25 -3.143729483684874078e-24
-4.467500000000000000e+02 -4.815742090571573664e-24 -1.086796141731360923e-23
-4.470000000000000000e+02 -5.665297868433786357e-25 1.585143250878313358e-24
-4.472500000000000000e+02 -1.531763228580526746e-26 3.771702518995984213e-25
-4.475000000000000000e+02 4.097928018880988581e-24 -2.373206474644828130e-24
-4.477500000000000000e+02 -8.843602789224479049e-24 3.022317697769928690e-24
-4.480000000000000000e+02 -2.717297650346554623e-24 3.253377149886401905e-24
-4.482500000000000000e+02 -2.796597629475354010e-24 -2.161824078338951246e-24
-4.485000000000000000e+02 2.158104242583498787e-24 -3.169024462584807012e-25
-4.487500000000000000e+02 3.274135676006875115e-24 3.287708986835012301e-24
-4.490000000000000000e+02 -1.850337883078649007e-24 -1.800412277387215780e-24
-4.492500000000000000e+02 9.630170458647043849e-25 -2.239952955389736658e-24
-4.495000000000000000e+02 3.817348540933471461e-26 -6.356075619892067952e-25
-4.497500000000000000e+02 -2.153988650753044022e-24 2.491559391066272952e-24
-4.500000000000000000e+02 -7.302902449785927899e-24 -2.333151979292092824e-24
-4.502500000000000000e+02 -2.741817392093966614e-24 -1.605607999819842885e-24
-4.505000000000000000e+02 2.224928771238069801e-24 -4.191309932741027552e-24
-4.507500000000000000e+02 2.046429206317330535e-24 -1.840101084778621057e-24
-4.510000000000000000e+02 -6.898401468772573535e-25 2.571667369629167704e-24
-4.512500000000000000e+02 -8.845881282135109770e-24 4.890243027396198075e-24
-4.515000000000000000e+02 4.710326930498548092e-24 4.562169798901388282e-24
-4.517500000000000000e+02 1.063362183365974957e-24 -8.563068911228245881e-24
-4.520000000000000000e+02 -3.691877341009977297e-24 -3.077572778770449433e-24
-4.522500000000000000e+02 -2.803496512512457388e-24 -3.332653208215251669e-25
-4.525000000000000000e+02 -2.211113903956386352e-24 -1.633284555108381282e-24
-4.527500000000000000e+02 1.888244170879163158e-24 -1.992969973136667902e-24
-4.530000000000000000e+02 -6.173129936432560251e-24 3.722628461161400448e-25
-4.532500000000000000e+02 1.160110591955211239e-24 -4.614476155816066941e-24
-4.535000000000000000e+02 6.853474824946818543e-25 -3.065097233579321190e-24
-4.537500000000000000e+02 2.015557862171610413e-24 -6.424693075875279761e-26
-4.540000000000000000e+02 2.959255300977496054e-24 -9.687002425665730047e-25
-4.542500000000000000e+02 -6.963853519452844465e-24 -7.895550385457822871e-24
-4.545000000000000000e+02 9.418251100352828166e-24 -1.245225372825588348e-24
-4.547500000000000000e+02 -1.892388603363851794e-24 -2.447864458877167004e-24
-4.550000000000000000e+02 -4.030418522582328168e-24 3.606259744626740934e-24
-4.552500000000000000e+02 4.775943912329525626e-24 -7.708091418621034664e-24
-4.555000000000000000e+02 -1.277041217157197869e-26 3.733237929933631492e-24
-4.557500000000000000e+02 -7.967382181912558637e-25 5.981582548505239936e-24
-4.560000000000000000e+02 3.159319772032500881e-24 1.860035477611993080e-24
-4.562500000000000000e+02 6.782381342910568711e-24 -6.308995481024907549e-24
-4.565000000000000000e+02 -1.050916329880731441e-24 3.233343731981014972e-24
-4.567500000000000000e+02 -6.847989106517485348e-24 3.580495751589721649e-24
-4.570000000000000000e+02 3.641437703548946044e-24 -2.003402786826250984e-24
-4.572500000000000000e+02 -7.018925387750933700e-24 -4.874852408544016834e-24
-4.575000000000000000e+02 -3.826799905443978473e-24 2.347346912064746669e-24
-4.577500000000000000e+02 1.060640140692635131e-24 9.998535097714950208e-25
-4.580000000000000000e+02 -7.207228520046213740e-24 -1.135279703501775065e-24
-4.582500000000000000e+02 7.924825156328800211e-25 1.326904808793281362e-24
-4.585000000000000000e+02 -7.183130146654252897e-24 -2.675697202487472653e-24
-4.587500000000000000e+02 3.924307959491545053e-24 2.769241549925304914e-25
-4.590000000000000000e+02 -1.853166438715843557e-24 7.277975768439328424e-25
-4.592500000000000000e+02 -4.313763752776568101e-25 -1.030688830732433948e-24
-4.595000000000000000e+02 -3.000904491999246747e-24 -3.297892370250381467e-24
-4.597500000000000000e+02 2.186381180404560988e-25 -8.094542434886051449e-24
-4.600000000000000000e+02 -6.023596989050970524e-25 1.705199929673575994e-24
-4.602500000000000000e+02 -1.522424806856263160e-24 1.291192928200209267e-24
-4.605000000000000000e+02 -6.520748941597018398e-24 -2.354876985767897409e-24
-4.607500000000000000e+02 1.135580197036593077e-24 -7.061643724886704799e-25
-4.610000000000000000e+02 -8.005420966726411017e-24 -4.494707670445179120e-24
-4.612500000000000000e+02 -3.065978200173372699e-24 4.326495372262042223e-24
-4.615000000000000000e+02 -1.779947336388624852e-24 4.418940939372659326e-24
-4.617500000000000000e+02 -9.567682390491469900e-24 -3.570844066920855669e-24
-4.620000000000000000e+02 2.658713510604771068e-24 8.581905497798054094e-24
-4.622500000000000000e+02 -8.291275826774993110e-25 -5.534510171325599067e-24
-4.625000000000000000e+02 -5.454185661806479379e-24 9.229734501607218136e-25
-4.627500000000000000e+02 3.681775335908374633e-24 4.251911612626093451e-24
-4.630000000000000000e+02 -1.069392157316901098e-24 -6.931900013040992486e-25
-4.632500000000000000e+02 -4.127817392029784739e-24 2.784726813647257046e-24
-4.635000000000000000e+02 -2.524330091874020880e-24 1.081198264428238778e-25
-4.637500000000000000e+02 6.235736122177917991e-24 -1.098254669075419324e-24
-4.640000000000000000e+02 3.200251131479919283e-24 -1.808325971981640045e-24
-4.642500000000000000e+02 7.221983592530392912e-24 1.974686932370461421e-24
-4.645000000000000000e+02 -7.014599777310925243e-24 -4.133312366608787656e-24
-4.647500000000000000e+02 -7.300075015051160872e-24 -1.218291726927612196e-24
-4.650000000000000000e+02 1.407033078740321041e-24 -4.258929352119229296e-25
-4.652500000000000000e+02 3.589087277571857712e-24 -1.100961794615036154e-24
-4.655000000000000000e+02 4.256884890630828067e-25 -1.356486009358870535e-24
-4.657500000000000000e+02 2.643068665781257926e-25 5.569985517884375459e-24
-4.660000000000000000e+02 3.546718915721453022e-24 -2.138684587315982464e-24
-4.662500000000000000e+02 -4.020901625177840186e-25 -2.823382586459840249e-24
-4.665000000000000000e+02 -5.264728400452466045e-24 3.856472127690660980e-24
-4.667500000000000000e+02 5.263758915600803429e-25 2.298514436039820447e-24
-4.670000000000000000e+02 -8.953881147197579008e-25 1.536025036545927742e-25
-4.672500000000000000e+02 -2.331176229698088131e-24 1.056654813616900191e-24
-4.675000000000000000e+02 5.576929879707629386e-24 2.171353729677280228e-24
-4.677500000000000000e+02 -1.387466864069878876e-24 1.134028752156656322e-24
-4.680000000000000000e+02 1.043010343757371177e-24 3.032545361467257414e-24
-4.682500000000000000e+02 -5.415582613546102530e-24 5.907090967073710988e-24
-4.685000000000000000e+02 2.434167464156857913e-24 5.027852466047261395e-24
-4.687500000000000000e+02 -1.581383574320451940e-24 6.386118098231213401e-24
-4.690000000000000000e+02 -7.404431182996958542e-24 -7.014767675142211559e-24
-4.692500000000000000e+02 4.645001016642324043e-24 -1.512872911409974138e-24
-4.695000000000000000e+02 1.746249127677971231e-24 1.475747261993159004e-24
-4.697500000000000000e+02 -3.746943760391667256e-24 1.419110031860892992e-24
-4.700000000000000000e+02 -1.170124545001347093e-24 -6.931303054990750798e-25
-4.702500000000000000e+02 -4.471253593097273769e-24 -2.223674476742785488e-24
-4.705000000000000000e+02 3.013306409278467726e-24 -7.469190093963229501e-24
-4.707500000000000000e+02 -5.535009213637567306e-24 -1.587147087834322495e-24
-4.710000000000000000e+02 3.749452901012442139e-24 -3.369240728014923409e-24
-4.712500000000000000e+02 3.086055716267349027e-24 1.493408777873041406e-24
-4.715000000000000000e+02 -3.646052173169496448e-25 7.154398127230860037e-24
-4.717500000000000000e+02 7.612721231135032447e-24 1.229005255509295480e-24
-4.720000000000000000e+02 -2.754421982703132790e-24 -1.384423454928119176e-24
-4.722500000000000000e+02 3.205408084760965555e-24 -2.181719332037665744e-24
-4.725000000000000000e+02 -2.493354982393247550e-24 -7.512131710274075635e-24
-4.727500000000000000e+02 8.459689530669678523e-25 -2.049086326485845470e-24
-4.730000000000000000e+02 1.169051811131496185e-24 -3.142901722258911565e-24
-4.732500000000000000e+02 -7.182029590650564351e-25 -5.720940802412832437e-25
-4.735000000000000000e+02 -1.263978632453222019e-24 2.069433805249898142e-24
-4.737500000000000000e+02 2.511058256358390091e-25 7.138273332239411506e-24
-4.740000000000000000e+02 -3.807882856306692846e-24 -9.793378050435513799e-25
-4.742500000000000000e+02 3.166075344810699614e-24 -9.448612741642114214e-25
-4.745000000000000000e+02 2.825501532215132727e-24 3.550633767780951639e-24
-4.747500000000000000e+02 5.110820816737609113e-24 3.339334808161195996e-24
-4.750000000000000000e+02 1.970589724370784401e-24 1.992925446690182886e-24
-4.752500000000000000e+02 1.232934869773227480e-24 -3.285544856340009383e-24
-4.755000000000000000e+02 1.720847033795559367e-24 4.826419627557574565e-24
-4.757500000000000000e+02 -5.353117078535589126e-24 -1.760104336849186185e-25
-4.760000000000000000e+02 -2.521486850881414830e-24 -3.498447039236591852e-24
-4.762500000000000000e+02 -3.368634276629603179e-24 -7.792726157660370788e-25
-4.765000000000000000e+02 -9.172404754246475292e-24 -5.416379548505094269e-24
-4.767500000000000000e+02 -1.641393123018609865e-24 -6.659902016449442630e-25
-4.770000000000000000e+02 1.799246275465807637e-24 -2.048789128484354191e-24
-4.772500000000000000e+02 3.298141672556520607e-26 -2.608580970524701166e-24
-4.775000000000000000e+02 -1.619856960040048167e-24 4.222051173823495101e-24
-4.777500000000000000e+02 -6.998218479654580239e-24 4.353814477849320429e-25
-4.780000000000000000e+02 1.258075893586624195e-24 -3.385862964997407296e-25
-4.782500000000000000e+02 -1.623765297065380461e-24 6.731579314776708674e-24
-4.785000000000000000e+02 1.466648329628770944e-24 8.601727778932871329e-25
-4.787500000000000000e+02 -8.550574274646689349e-24 -1.289554724133909473e-24
-4.790000000000000000e+02 4.313029396565030451e-24 -4.048090043332536149e-24
-4.792500000000000000e+02 3.021758324915837782e-24 -1.524032294369405894e-24
-4.795000000000000000e+02 -1.847419993752951687e-24 -2.803998405571483953e-24
-4.797500000000000000e+02 -2.333270151237982156e-24 -6.977889661807565806e-25
-4.800000000000000000e+02 5.880788616735796610e-24 -9.539746882275226876e-25
-4.802500000000000000e+02 1.155289669146885229e-24 6.950024808161619025e-24
-4.805000000000000000e+02 8.824683285366825649e-25 8.687299018133565480e-25
-4.807500000000000000e+02 -6.923192096557112243e-24 4.132774087915585322e-24
-4.810000000000000000e+02 8.816122810950924812e-24 1.469533776565617190e-24
-4.812500000000000000e+02 8.585422386568361874e-24 2.304621579107184308e-24
-4.815000000000000000e+02 -6.188460877153608894e-26 2.154547446971536970e-24
-4.817500000000000000e+02 5.919786903668519940e-24 -7.642191297851520430e-24
-4.820000000000000000e+02 -4.734207438981819809e-24 -5.658617409170836457e-24
-4.822500000000000000e+02 6.937846241855969850e-26 -1.044932737205101566e-24
-4.825000000000000000e+02 2.463070216652397069e-24 4.026002573108616879e-24
-4.827500000000000000e+02 -2.619766988868742730e-24 -5.791925875741646376e-24
-4.830000000000000000e+02 -2.371236158972095057e-25 -1.200444915226554979e-23
-4.832500000000000000e+02 1.933636821979949370e-24 -5.911373755102601429e-24
-4.835000000000000000e+02 8.919474386688520287e-25 -7.001015146931865602e-24
-4.837500000000000000e+02 2.092418481122738635e-24 5.991023195143651094e-24
-4.840000000000000000e+02 1.470196655181909784e-26 -2.621784634586581287e-24
-4.842500000000000000e+02 -2.790371661632336568e-24 -2.803698122232667529e-24
-4.845000000000000000e+02 -9.020338903437758366e-24 1.864968966788976498e-24
-4.847500000000000000e+02 8.070118930928533839e-25 -3.838692197136946868e-24
-4.850000000000000000e+02 -1.550531263023982070e-24 1.408671140195280321e-24
-4.852500000000000000e+02 5.681201327351444885e-24 -6.375369202852432801e-24
-4.855000000000000000e+02 1.485525847599864265e-24 -2.478378396396421355e-24
-4.857500000000000000e+02 4.012888482278930807e-24 1.422827560543954796e-24
-4.860000000000000000e+02 -2.489623797400692181e-24 -1.418813346512778609e-24
-4.862500000000000000e+02 5.914916851670312349e-25 3.647739033448170422e-24
-4.865000000000000000e+02 -9.083056270110281339e-25 6.732499463079221946e-24
-4.867500000000000000e+02 4.527008836708454172e-24 7.428483887423628721e-25
-4.870000000000000000e+02 3.265330672813515739e-24 2.955457328932690472e-24
-4.872500000000000000e+02 5.253068127598203282e-24 1.139606863608697897e-24
-4.875000000000000000e+02 5.548428301174666852e-24 -3.657370734712153333e-24
-4.877500000000000000e+02 6.468252694754008505e-25 4.303548277611295530e-26
-4.880000000000000000e+02 -1.465460732527001288e-24 -9.640844095748538882e-25
-4.882500000000000000e+02 -3.971362806475866543e-24 4.625527433956320182e-24
-4.885000000000000000e+02 -1.298499660878291641e-24 4.605119342519928637e-24
-4.887500000000000000e+02 1.851205022343439525e-25 5.846977350216709182e-24
-4.890000000000000000e+02 -9.960305913995459365e-25 1.142407185620565354e-24
-4.892500000000000000e+02 8.860219437611144461e-24 -1.923246305448719616e-24
-4.895000000000000000e+02 -2.934551192446432293e-25 1.579140553760000305e-24
-4.897500000000000000e+02 -4.099575580507221524e-25 2.314002461070832801e-24
-4.900000000000000000e+02 7.986548733827728912e-25 -2.247980796887524856e-24
-4.902500000000000000e+02 6.194666530802585024e-25 1.566628897900283246e-24
-4.905000000000000000e+02 3.375897630756134372e-24 1.972098081506323628e-24
-4.907500000000000000e+02 4.067152199920091076e-24 -4.549939865885717455e-24
-4.910000000000000000e+02 3.336055739385365927e-24 2.992495907632059876e-24
-4.912500000000000000e+02 -6.661667084613363938e-25 1.500097061666599055e-24
-4.915000000000000000e+02 -2.884793132598630368e-24 2.186562197988157779e-24
-4.917500000000000000e+02 5.410996520481142786e-26 3.057298749583165991e-24
-4.920000000000000000e+02 3.784683511019985187e-24 -1.945281282601861727e-24
-4.922500000000000000e+02 -4.644735017263858510e-24 8.670599814040700628e-24
-4.925000000000000000e+02 2.085154599812449367e-24 -8.629890871891756170e-26
-4.927500000000000000e+02 -2.684727103755802383e-24 1.277722453260857476e-24
-4.930000000000000000e+02 -3.579936638319715238e-25 1.139131752163619476e-23
-4.932500000000000000e+02 -7.950897496578641549e-25 -2.764326711401549914e-24
-4.935000000000000000e+02 -8.539562304637146882e-25 6.596823987561475793e-24
-4.937500000000000000e+02 2.563222809135199647e-24 1.290211950517037301e-24
-4.940000000000000000e+02 5.817047804734225290e-24 -5.376656539531971186e-24
-4.942500000000000000e+02 -1.628342348906091344e-24 -2.539937077403859287e-24
-4.945000000000000000e+02 5.029063064456918776e-25 -7.053923336709157060e-25
-4.947500000000000000e+02 3.926474053953435007e-24 -1.352849828949486857e-24
-4.950000000000000000e+02 -2.941037287612767126e-24 -1.533591999927263760e-24
-4.952500000000000000e+02 1.481532721527089526e-24 1.031753292705513780e-24
-4.955000000000000000e+02 5.126790218664993776e-24 -7.389468232636971203e-24
-4.957500000000000000e+02 -1.660455578010257785e-24 3.907137192368228912e-24
-4.960000000000000000e+02 -5.048328181981550731e-24 7.820452565466642285e-24
-4.962500000000000000e+02 -7.286963558693191222e-24 -3.361497104578677379e-24
-4.965000000000000000e+02 -5.514978285460027509e-25 1.709660436774702922e-24
-4.967500000000000000e+02 -8.543747428757968230e-24 2.673138422766221916e-24
-4.970000000000000000e+02 -2.320523316944294204e-24 3.354761826695586242e-24
-4.972500000000000000e+02 -2.869393092720026253e-24 -5.696379402706536314e-25
-4.975000000000000000e+02 2.151305864896885907e-24 3.542778816962577249e-24
-4.977500000000000000e+02 1.174066425969169439e-24 -7.338573342775292510e-25
-4.980000000000000000e+02 -6.442594917925753712e-24 -2.040490835498905072e-25
-4.982500000000000000e+02 -5.224693806118150460e-24 1.666623982992988814e-24
-4.985000000000000000e+02 2.070116926969217597e-24 6.071080624606264751e-24
-4.987500000000000000e+02 2.549485387381472024e-24 3.796875269755705687e-24
-4.990000000000000000e+02 4.622609885094524720e-24 -1.631320671866271082e-24
-4.992500000000000000e+02 1.492208273476225346e-24 8.143259470002761284e-24
-4.995000000000000000e+02 2.464901383591276464e-24 -4.551012195366315490e-24
-4.997500000000000000e+02 6.857941714879745472e-24 -3.499705409208765546e-24
-5.000000000000000000e+02 -5.192165486172076120e-24 -2.148735321352541068e-24
-5.002500000000000000e+02 2.711244976875712440e-24 -1.711381466009265618e-24
-5.005000000000000000e+02 -2.585920920994837925e-25 -1.019860955394979000e-23
-5.007500000000000000e+02 -1.888328520040108056e-24 9.995208296317675200e-25
-5.010000000000000000e+02 -1.694149022383518112e-24 -3.355684741096879527e-24
-5.012500000000000000e+02 5.112872318868705270e-24 -6.829723194615075103e-24
-5.015000000000000000e+02 -6.337779448654144725e-24 1.353648076473886529e-24
-5.017500000000000000e+02 2.692621853345356993e-24 1.099447293659842151e-24
-5.020000000000000000e+02 4.058618125175204377e-24 2.181169624133817510e-24
-5.022500000000000000e+02 7.239482671164552654e-24 -1.056472852592189980e-24
-5.025000000000000000e+02 -1.554285924122296688e-25 5.007654161440437883e-24
-5.027500000000000000e+02 -2.501615373956070813e-24 -3.175486055488478872e-24
-5.030000000000000000e+02 -6.146907236648750392e-24 -7.796553969203527960e-25
-5.032500000000000000e+02 8.097475331626880271e-25 -6.028553582159683900e-24
-5.035000000000000000e+02 -4.058489312004542248e-24 4.148813760218093642e-24
-5.037500000000000000e+02 2.573504796778321402e-25 4.456221376791036337e-24
-5.040000000000000000e+02 -7.678677641887214260e-25 2.820923683515638751e-24
-5.042500000000000000e+02 1.707225314642441072e-24 1.137620420190476747e-23
-5.045000000000000000e+02 -6.851742167240415153e-25 -3.297966204158394493e-26
-5.047500000000000000e+02 -5.880985815408178607e-25 -5.996373213992748499e-24
-5.050000000000000000e+02 4.947318470740168708e-24 2.893896344373284898e-24
-5.052500000000000000e+02 3.150904479467451291e-25 6.107885713373984728e-24
-5.055000000000000000e+02 4.998024600395356379e-24 6.226565561087903699e-25
-5.057500000000000000e+02 -3.262673058628554195e-24 2.368395115617652125e-24
-5.060000000000000000e+02 1.789749318405540776e-24 -2.445890456670201509e-24
-5.062500000000000000e+02 1.443097015661211788e-24 -4.309379911935544687e-24
-5.065000000000000000e+02 -1.764550416896239197e-24 8.306973174702611209e-24
-5.067500000000000000e+02 -4.599337746894498090e-24 1.476228693514634915e-25
-5.070000000000000000e+02 -3.802354732880805598e-24 1.604224399568494820e-24
-5.072500000000000000e+02 1.323631933472116811e-24 -3.008867825493021711e-25
-5.075000000000000000e+02 3.880124191401659024e-24 -2.736617300969782031e-25
-5.077500000000000000e+02 9.869884030934655209e-25 -1.059179543884614251e-23
-5.080000000000000000e+02 5.378708268888837077e-24 4.295994103479563767e-24
-5.082500000000000000e+02 9.264875285383191119e-25 -2.221237473338980191e-24
-5.085000000000000000e+02 -4.708847059985743939e-25 -5.549649600813567353e-24
-5.087500000000000000e+02 2.095817580146659390e-25 -3.462385161371765969e-24
-5.090000000000000000e+02 3.266431043536370068e-24 -3.478046932220581340e-24
-5.092500000000000000e+02 4.786680712158595576e-24 1.185690324850224403e-25
-5.095000000000000000e+02 -7.194116314959051022e-24 -4.369434824403005963e-25
-5.097500000000000000e+02 1.440240191085456435e-24 2.119167504389241580e-24
-5.100000000000000000e+02 5.294737003191084518e-25 7.359198883022080222e-24
-5.102500000000000000e+02 3.749203046675906670e-24 4.828071179490824090e-24
-5.105000000000000000e+02 1.403538438945971833e-24 -3.327851517354225129e-24
-5.107500000000000000e+02 -2.489800613726369157e-24 5.912310604613056135e-24
-5.110000000000000000e+02 -6.598609951294589096e-24 3.946168057133247254e-24
-5.112500000000000000e+02 -5.402066699926975481e-24 1.724936843030415993e-24
-5.115000000000000000e+02 -8.804192602958733372e-24 -1.512567405472069034e-24
-5.117500000000000000e+02 8.418443324380070109e-24 6.106945107198992664e-24
-5.120000000000000000e+02 1.760592820528675597e-25 5.303073620728518086e-25
-5.122500000000000000e+02 -1.101522324647169927e-24 -1.675266810754914111e-25
-5.125000000000000000e+02 -6.840070940589088822e-25 2.706485909132928447e-24
-5.127500000000000000e+02 3.131789383244450904e-25 2.157884593756383714e-25
-5.130000000000000000e+02 3.147368914055017663e-25 1.126937011186291418e-23
-5.132500000000000000e+02 -3.939000215877805562e-24 -4.961626968381538565e-24
-5.135000000000000000e+02 1.839257890691770123e-24 -3.194647382572830627e-24
-5.137500000000000000e+02 -2.118883425952533060e-24 9.696644536607605402e-24
-5.140000000000000000e+02 1.914140370231122654e-24 5.351204553654666609e-24
-5.142500000000000000e+02 -2.683048724504437103e-26 -5.236982086162698817e-24
-5.145000000000000000e+02 2.930826503547317283e-24 -5.724923804997029930e-24
-5.147500000000000000e+02 1.098835421929136220e-24 3.535252240399905714e-25
-5.150000000000000000e+02 -6.526607844796400792e-24 5.683789556301125899e-24
-5.152500000000000000e+02 -1.995992261933117857e-24 -1.301382849040076076e-24
-5.155000000000000000e+02 3.197205418060948844e-24 3.070601650327106825e-24
-5.157500000000000000e+02 3.899851151898362083e-25 4.179687704911803532e-24
-5.160000000000000000e+02 2.130908749328281518e-24 -3.353348838972526489e-24
-5.162500000000000000e+02 -1.585293876525520627e-24 -1.026665720415806087e-23
-5.165000000000000000e+02 3.222776466873256422e-24 -2.959130632362778776e-24
-5.167500000000000000e+02 -2.810468331864728447e-24 -3.373199186910583434e-25
-5.170000000000000000e+02 4.267127650615754412e-24 -3.361723208769523172e-24
-5.172500000000000000e+02 -1.923903978142192629e-25 -6.346479190379904100e-24
-5.175000000000000000e+02 -3.375861632886587561e-24 3.039579434415967903e-24
-5.177500000000000000e+02 2.231773377120406837e-24 4.667639661855755447e-25
-5.180000000000000000e+02 8.283320294916881574e-25 3.375145403608416864e-24
-5.182500000000000000e+02 -2.673887203859918580e-24 3.547423088694505349e-24
-5.185000000000000000e+02 -8.473872261012160708e-24 -3.392162130226329213e-24
-5.187500000000000000e+02 2.405884915763625457e-24 -1.001498820738122571e-24
-5.190000000000000000e+02 2.694364071398827620e-24 -1.015531455655268283e-24
-5.192500000000000000e+02 6.058918464556684709e-25 4.781104300893720574e-24
-5.195000000000000000e+02 -5.018214126385285105e-24 -8.409313513539576726e-26
-5.197500000000000000e+02 -2.172100504067217369e-24 6.646976530091086612e-24
-5.200000000000000000e+02 2.833079383045467528e-24 -4.405962127928759083e-25
-5.202500000000000000e+02 -3.820941285018128750e-24 9.545335617744825893e-26
-5.205000000000000000e+02 -3.453062616695726953e-24 1.507334487340740038e-24
-5.207500000000000000e+02 -2.731423060587316971e-24 3.534168564246189833e-24
-5.210000000000000000e+02 4.440830972102749068e-24 -4.007191178486756020e-25
-5.212500000000000000e+02 -3.432716243852589402e-24 -1.524126768481424845e-24
-5.215000000000000000e+02 -5.774944897736639163e-24 -3.678426357317682552e-24
-5.217500000000000000e+02 6.215778865870278008e-25 -5.769695060215359196e-24
-5.220000000000000000e+02 4.815218566533861358e-24 3.347020294966832111e-24
-5.222500000000000000e+02 -5.093859507372759663e-24 8.089412716259891889e-24
-5.225000000000000000e+02 2.233025592931924341e-24 2.171385518387185342e-24
-5.227500000000000000e+02 2.822354564201664359e-24 -2.086544560339929159e-24
-5.230000000000000000e+02 -2.441640948793988670e-24 -3.278072716602116327e-24
-5.232500000000000000e+02 -5.610652691582812967e-25 6.240284047887065348e-24
-5.235000000000000000e+02 1.260533749242071688e-25 -3.226511995181280936e-24
-5.237500000000000000e+02 -2.827500423665869261e-25 3.610227037919205778e-24
-5.240000000000000000e+02 -3.932821187203805762e-24 7.973391119509502981e-24
-5.242500000000000000e+02 5.486430514426713967e-24 4.561381088205277318e-24
-5.245000000000000000e+02 -7.193969058943044638e-24 1.003302638941738857e-24
-5.247500000000000000e+02 -2.840460807414148412e-24 2.367218469977023683e-24
-5.250000000000000000e+02 -1.179316371479819073e-24 -9.806049769010017457e-25
-5.252500000000000000e+02 5.377627236546359813e-24 2.410474780918079323e-24
-5.255000000000000000e+02 -4.140808910463759690e-24 -4.180948672307663171e-24
-5.257500000000000000e+02 4.491271575617540981e-24 7.777473810849937913e-25
-5.260000000000000000e+02 -1.895555271515059175e-24 2.664122859153434761e-24
-5.262500000000000000e+02 -3.387949824112527461e-24 -5.882527420827710437e-24
-5.265000000000000000e+02 -6.251559261586366246e-24 -4.443651961312234118e-24
-5.267500000000000000e+02 3.924361856954630501e-24 -2.054538175822228088e-24
-5.270000000000000000e+02 -4.888719175077699955e-24 -7.746096316610173932e-25
-5.272500000000000000e+02 -2.339731643918186928e-26 -4.869509056743715083e-25
-5.275000000000000000e+02 -3.178001279544447077e-25 7.206487394622539952e-25
-5.277500000000000000e+02 2.562721296913533014e-24 -4.438166160962438802e-25
-5.280000000000000000e+02 -3.751673943838709417e-24 -2.505953732737085750e-24
-5.282500000000000000e+02 2.917609656522410115e-24 -5.472658452577049155e-24
-5.285000000000000000e+02 6.420894080872289224e-25 -2.644663462769064910e-24
-5.287500000000000000e+02 1.284676092306708559e-24 -3.351623662688214658e-24
-5.290000000000000000e+02 -4.976389137787293050e-24 -1.273108751835870169e-24
-5.292500000000000000e+02 4.940306506154414470e-24 6.550963559170465318e-25
-5.295000000000000000e+02 1.550355772941269565e-24 -6.036611569768172226e-24
-5.297500000000000000e+02 8.116566827093729102e-25 3.888616858041483784e-25
-5.300000000000000000e+02 2.198558947000516922e-24 -9.261352474293657367e-25
-5.302500000000000000e+02 -9.655356319791103976e-24 -3.087065983860341873e-24
-5.305000000000000000e+02 1.829386968167152031e-24 -1.291661874978790842e-24
-5.307500000000000000e+02 9.575283220138979767e-24 -7.164939124381355606e-24
-5.310000000000000000e+02 -5.873100330234923946e-24 2.942874084535614938e-24
-5.312500000000000000e+02 2.091130744945728439e-24 -3.649810954971887104e-24
-5.315000000000000000e+02 6.716398868900082662e-24 2.181519011068554891e-25
-5.317500000000000000e+02 -9.632650948704433320e-26 -4.566037798007577635e-25
-5.320000000000000000e+02 -6.300859664915630264e-25 4.561635358876553690e-24
-5.322500000000000000e+02 1.478937334371489584e-24 9.840659078408502658e-25
-5.325000000000000000e+02 -1.376854347523661049e-24 2.101351531890356755e-24
-5.327500000000000000e+02 6.539813904894136745e-24 -4.579233404737748222e-25
-5.330000000000000000e+02 2.782138563009576322e-24 -3.011545937551154610e-24
-5.332500000000000000e+02 -1.800282175214424055e-24 -4.585713853099704791e-24
-5.335000000000000000e+02 3.184664100265309772e-24 8.610158339033900699e-25
-5.337500000000000000e+02 -4.744430146066621452e-24 1.008394579143186032e-23
-5.340000000000000000e+02 -1.444855609830909207e-24 1.904473309261722886e-24
-5.342500000000000000e+02 -4.607204268843451117e-24 -3.911869094639477400e-24
-5.345000000000000000e+02 2.120858407127027095e-24 8.842056599811933778e-25
-5.347500000000000000e+02 1.005649993690928184e-24 1.896910048841136758e-24
-5.350000000000000000e+02 -1.987041592091167073e-24 8.966724704032865837e-25
-5.352500000000000000e+02 -4.518654644847954954e-25 -4.261311159900980288e-24
-5.355000000000000000e+02 -4.755743538297088405e-24 -7.868448904448952384e-25
-5.357500000000000000e+02 -7.980708738307271099e-25 -5.979587356563065356e-24
-5.360000000000000000e+02 -7.269663210729162594e-24 -1.340558797011357522e-24
-5.362500000000000000e+02 -2.959369336788701167e-24 3.936293391800915891e-26
-5.365000000000000000e+02 -8.216632710034040773e-25 4.062642597957446517e-24
-5.367500000000000000e+02 -5.674637497532395823e-24 -5.342590277244200098e-24
-5.370000000000000000e+02 -1.594980088858384636e-24 1.136409069361004378e-24
-5.372500000000000000e+02 -1.000184620854745700e-25 2.854701835531132189e-24
-5.375000000000000000e+02 -3.634850899789925486e-24 -4.639607201844549219e-24
-5.377500000000000000e+02 7.455104097826776270e-24 4.647591100151945116e-24
-5.380000000000000000e+02 -3.537927850499385447e-24 3.799286599938132223e-24
-5.382500000000000000e+02 -1.988280440297965856e-24 4.173616522320838579e-24
-5.385000000000000000e+02 -7.757878333938463468e-24 2.202464257788546632e-24
-5.387500000000000000e+02 6.634603805535176235e-24 4.845024917148451199e-24
-5.390000000000000000e+02 4.274912096846839757e-24 3.667536601110791112e-24
-5.392500000000000000e+02 -8.969159290801744702e-24 6.520961432479151147e-24
-5.395000000000000000e+02 1.704185828880883285e-24 3.767758634302030369e-24
-5.397500000000000000e+02 -5.411732064734508532e-25 -5.267846918557609456e-24
-5.400000000000000000e+02 3.469896918285164573e-24 3.223866028624834465e-24
-5.402500000000000000e+02 -8.110316829540843091e-24 1.960073631933428784e-24
-5.405000000000000000e+02 -5.286591918703566941e-24 -1.111701151105312382e-24
-5.407500000000000000e+02 -3.736309451926717426e-24 -1.389379790614055131e-24
-5.410000000000000000e+02 2.516542661969350897e-24 -1.681959734123611145e-24
-5.412500000000000000e+02 1.637252713645503567e-24 3.037144188716322866e-24
-5.415000000000000000e+02 -4.659777054101919227e-24 4.659161751041374815e-24
-5.417500000000000000e+02 -3.297704057091723841e-24 -7.317383414234138309e-24
-5.420000000000000000e+02 -1.594266467215311862e-24 9.418937062379983714e-25
-5.422500000000000000e+02 8.082221530648453466e-25 6.563327686101514986e-24
-5.425000000000000000e+02 7.172546232796726214e-24 2.796850591534613459e-24
-5.427500000000000000e+02 3.699306841536883402e-25 7.226102633934811784e-24
-5.430000000000000000e+02 5.749001425243298968e-25 2.413105337812566749e-24
-5.432500000000000000e+02 1.321077229125310938e-24 5.660865531781277186e-25
-5.435000000000000000e+02 -4.513051791865184449e-25 6.472771191003670890e-24
-5.437500000000000000e+02 6.992607142965254691e-24 -7.056122531189095935e-24
-5.440000000000000000e+02 2.750863523344942737e-24 -7.470926497824596149e-24
-5.442500000000000000e+02 -1.389717961133979504e-24 1.793400545580544665e-24
-5.445000000000000000e+02 4.213519692777141614e-26 -1.719031865112805127e-24
-5.447500000000000000e+02 -3.105814068428011015e-25 3.063928475153815473e-24
-5.450000000000000000e+02 6.400965772264081022e-24 3.816166484340650498e-24
-5.452500000000000000e+02 -8.954118104258931041e-24 2.555572195325497396e-24
-5.455000000000000000e+02 3.455304066346063852e-24 -8.963840325458865503e-25
-5.457500000000000000e+02 1.804826507946892035e-24 -2.599087541790120085e-24
-5.460000000000000000e+02 -1.879424010148685283e-24 -3.320403542707977596e-24
-5.462500000000000000e+02 -4.168323390803185673e-24 3.400315397980449601e-24
-5.465000000000000000e+02 -1.059604835409908042e-24 1.830811509512081979e-24
-5.467500000000000000e+02 -3.366355922226933292e-24 -1.010420535259996296e-23
-5.470000000000000000e+02 2.601494427135701456e-24 4.660521133904579346e-25
-5.472500000000000000e+02 -3.315833322546891263e-24 2.013184434578095417e-24
-5.475000000000000000e+02 1.484980479683347326e-23 2.119195547409164093e-25
-5.477500000000000000e+02 -9.000779445160105307e-25 1.746024980941465203e-24
-5.480000000000000000e+02 -3.443572511849658622e-24 4.609624617322078299e-24
-5.482500000000000000e+02 -2.697351286903043855e-24 6.588084851131499744e-24
-5.485000000000000000e+02 -2.259005567665495069e-24 8.691148451909024942e-25
-5.487500000000000000e+02 2.042591149140911906e-24 4.189833490623967370e-24
-5.490000000000000000e+02 2.968268386731723038e-24 -2.152166783786377073e-24
-5.492500000000000000e+02 1.279013843807905824e-24 -2.812328320625292269e-24
-5.495000000000000000e+02 -2.820281791303334157e-24 5.392979633186213573e-24
-5.497500000000000000e+02 -6.170929739277738198e-25 2.056281475797484602e-24
-5.500000000000000000e+02 2.472833709299551459e-24 -1.442491267323154489e-24
-5.502500000000000000e+02 6.923294448556819569e-24 4.099538194322081219e-25
-5.505000000000000000e+02 -3.460688387103019773e-24 -3.349462394460173111e-24
-5.507500000000000000e+02 3.353527504581413669e-24 -1.850316690891947189e-24
-5.510000000000000000e+02 2.147966308836333960e-25 1.284369360229851486e-24
-5.512500000000000000e+02 -3.267002800878077489e-24 5.374978444739026632e-25
-5.515000000000000000e+02 -2.751929536593148765e-24 1.953554710601477220e-24
-5.517500000000000000e+02 7.995120090804597816e-24 1.606685113545232183e-24
-5.520000000000000000e+02 2.133277347760362161e-24 -3.506509704152877969e-24
-5.522500000000000000e+02 -3.037863620273100768e-24 -1.476148239528953238e-24
-5.525000000000000000e+02 -1.139371280991375375e-24 -1.239568273567153929e-25
-5.527500000000000000e+02 4.450587221578830962e-25 -2.597326493927172561e-25
-5.530000000000000000e+02 -5.024888747190074759e-25 -8.189344273878606209e-25
-5.532500000000000000e+02 -4.239111958621134503e-24 3.193633572262835661e-25
-5.535000000000000000e+02 -4.367268271515656996e-24 -4.576655034385571408e-24
-5.537500000000000000e+02 2.514201479447903650e-24 3.528541136803639855e-24
-5.540000000000000000e+02 -1.843253276509552613e-24 -6.429681548257220606e-24
-5.542500000000000000e+02 -4.361792293441941706e-24 -2.074973014338508700e-24
-5.545000000000000000e+02 3.690532519967834306e-24 -1.768284601510328693e-24
-5.547500000000000000e+02 -5.604377169238506767e-24 -4.476791283481968697e-25
-5.550000000000000000e+02 2.089222541270487964e-25 4.804975422628415947e-24
-5.552500000000000000e+02 -1.483840365740076165e-24 4.352599324321412761e-25
-5.555000000000000000e+02 1.532279970043185955e-24 -2.849303682578435154e-25
-5.557500000000000000e+02 1.342623565259796270e-24 -2.341878522002939295e-24
-5.560000000000000000e+02 -7.082402608504874814e-24 9.152746859856191103e-27
-5.562500000000000000e+02 3.612365376907429227e-24 3.692491584137387314e-24
-5.565000000000000000e+02 -3.854180671036814467e-25 8.494747956976781730e-25
-5.567500000000000000e+02 -3.833032254204217940e-25 -4.661176004435597854e-24
-5.570000000000000000e+02 9.790051172898634176e-24 5.214557541187373460e-24
-5.572500000000000000e+02 -2.124813413200409862e-24 -1.856597117160676800e-24
-5.575000000000000000e+02 -3.846718762946144010e-25 -4.737846232561181029e-24
-5.577500000000000000e+02 1.375759842154575077e-24 3.127549705993858875e-24
-5.580000000000000000e+02 5.905334784820467106e-25 -1.753556087946629009e-24
-5.582500000000000000e+02 -3.210194476476901999e-24 5.833211156778582468e-24
-5.585000000000000000e+02 2.245946653396246193e-24 -1.092339237607118887e-24
-5.587500000000000000e+02 2.051169472760177123e-25 -3.671220900119818331e-24
-5.590000000000000000e+02 -7.313225534554290754e-24 1.396222341416094214e-24
-5.592500000000000000e+02 3.759249240334060628e-24 5.187268168144206666e-24
-5.595000000000000000e+02 -2.491174308899824491e-24 -2.946755903788171970e-24
-5.597500000000000000e+02 3.935474622096729657e-24 2.280074943489513382e-24
-5.600000000000000000e+02 8.557566296046863164e-25 3.913904024339855865e-24
-5.602500000000000000e+02 4.650292935610314198e-24 -2.694591558632666893e-24
-5.605000000000000000e+02 -8.438663410519212109e-24 3.580140936268289808e-26
-5.607500000000000000e+02 -2.052281114222372778e-24 -7.243432998679502375e-24
-5.610000000000000000e+02 -4.126041432631277587e-24 2.452138379870955312e-24
-5.612500000000000000e+02 -1.993721095754023902e-24 1.730345141382890878e-25
-5.615000000000000000e+02 5.701336432714831705e-24 -4.274768884595306686e-24
-5.617500000000000000e+02 -1.801153223627224611e-24 3.792618508449969865e-24
-5.620000000000000000e+02 9.673234115661068775e-24 -2.559122922211571179e-24
-5.622500000000000000e+02 -4.299612377311051533e-24 -3.143530404341894224e-24
-5.625000000000000000e+02 7.835643895969411328e-25 -1.538883327880954137e-24
-5.627500000000000000e+02 3.138832803522156040e-24 4.881375822852013437e-24
-5.630000000000000000e+02 -3.509621565136729002e-24 1.709095208452903595e-24
-5.632500000000000000e+02 6.854245715332843372e-25 -9.395876744972185343e-25
-5.635000000000000000e+02 4.535946512291305858e-24 -8.130323883294505857e-25
-5.637500000000000000e+02 5.813584843966649616e-24 5.131809786839286965e-24
-5.640000000000000000e+02 6.167424820691011835e-24 -4.679349774026771223e-24
-5.642500000000000000e+02 4.896226615122626820e-24 -5.988981705084838141e-25
-5.645000000000000000e+02 -5.851159164043595253e-24 3.378100215075378982e-24
-5.647500000000000000e+02 4.299474578108234202e-24 -3.399013201307152088e-24
-5.650000000000000000e+02 -1.650891660244177540e-24 -1.265390835578901356e-24
-5.652500000000000000e+02 -2.931127476577864207e-24 1.773458586391347927e-24
-5.655000000000000000e+02 -3.225900864465759782e-24 -9.772106204555513985e-25
-5.657500000000000000e+02 -2.191020250559731259e-24 7.478893267223287516e-24
-5.660000000000000000e+02 -2.108206199887071349e-24 3.244840232408869366e-24
-5.662500000000000000e+02 -9.012532918053903159e-24 -4.979468091960901984e-24
-5.665000000000000000e+02 2.699723440134727238e-24 -5.948954499411248463e-24
-5.667500000000000000e+02 5.240823438170798764e-24 3.766136967659523408e-24
-5.670000000000000000e+02 4.758008441020482581e-24 3.005903968935848170e-24
-5.672500000000000000e+02 2.816982111861524797e-24 -4.621138974226981758e-24
-5.675000000000000000e+02 2.275265012575997136e-24 -6.500711006623216795e-25
-5.677500000000000000e+02 6.235383670551032764e-26 -5.910250435238282508e-24
-5.680000000000000000e+02 6.166635071280146273e-24 3.383460763885686021e-24
-5.682500000000000000e+02 1.763134145979310969e-24 -4.266361108482191246e-25
-5.685000000000000000e+02 2.842595526966759036e-24 9.148282954430566504e-24
-5.687500000000000000e+02 -2.945486435063472767e-24 4.682141142007852035e-24
-5.690000000000000000e+02 -1.792692925937559842e-24 4.401114812019283678e-24
-5.692500000000000000e+02 -4.729435868330574463e-24 7.545689736130849310e-24
-5.695000000000000000e+02 -1.501228320261648630e-25 5.327155664285855024e-24
-5.697500000000000000e+02 2.395591589629664169e-24 -5.642269138204069703e-24
-5.700000000000000000e+02 -2.571193600124412682e-24 4.015231607166055067e-24
-5.702500000000000000e+02 7.159736998426708982e-24 -4.889845707744938676e-24
-5.705000000000000000e+02 1.611064236992937806e-24 -5.753930170677239898e-25
-5.707500000000000000e+02 -4.773121722322824143e-24 -3.384422954832641766e-24
-5.710000000000000000e+02 4.327474520991083370e-24 -1.536835450481529093e-24
-5.712500000000000000e+02 -3.081756087020741429e-24 -3.776790518638150920e-24
-5.715000000000000000e+02 1.220683316397955352e-24 -5.530270797620013269e-25
-5.717500000000000000e+02 -1.109138155483394778e-25 1.636295149904688042e-24
-5.720000000000000000e+02 -4.864790154442889586e-24 -2.373393485577941027e-24
-5.722500000000000000e+02 -5.718174056620095898e-25 1.248273550447549674e-24
-5.725000000000000000e+02 2.559637505650897418e-25 1.038444373542587046e-24
-5.727500000000000000e+02 -1.389199671266822902e-24 3.985843336158006072e-25
-5.730000000000000000e+02 5.855158309052691269e-24 -9.516590822338094198e-25
-5.732500000000000000e+02 4.696174186029127604e-25 6.416001003097658004e-24
-5.735000000000000000e+02 8.334243943850515863e-24 2.675785740045530649e-25
-5.737500000000000000e+02 -3.301058839234944207e-24 -4.852584677997523306e-24
-5.740000000000000000e+02 -2.038674420090484316e-24 6.454873584621781838e-24
-5.742500000000000000e+02 -3.423683147607817955e-25 3.546854646350508013e-24
-5.745000000000000000e+02 1.723827186677920564e-24 5.319470280106217622e-24
-5.747500000000000000e+02 1.613536915424629416e-24 -4.902305674890402326e-24
-5.750000000000000000e+02 6.445303449604731044e-24 -5.058178388902830235e-24
-5.752500000000000000e+02 4.739728135693852127e-24 3.445569090992260092e-25
-5.755000000000000000e+02 -5.794256882215149727e-24 2.456333695963552209e-25
-5.757500000000000000e+02 -2.387317577318267261e-24 1.116652749228344440e-24
-5.760000000000000000e+02 3.914924860480251464e-24 5.302615980916273035e-24
-5.762500000000000000e+02 -1.918160005801395382e-24 -6.002319503782090927e-24
-5.765000000000000000e+02 -2.476778462124051897e-26 2.726052577157899444e-24
-5.767500000000000000e+02 -6.383979286292129814e-25 -2.937309821956902127e-25
-5.770000000000000000e+02 -1.104490199406503128e-24 -7.937463606438908041e-24
-5.772500000000000000e+02 -1.267815143148447472e-24 6.795695389755630856e-24
-5.775000000000000000e+02 1.282272237282000902e-24 4.746456497264646007e-25
-5.777500000000000000e+02 7.328787852316908265e-25 1.200851653999243449e-23
-5.780000000000000000e+02 -4.987544823359975062e-24 -5.305546969325132400e-24
-5.782500000000000000e+02 7.624585175680683799e-24 3.679182416527997218e-24
-5.785000000000000000e+02 3.329309840473411458e-24 -3.114699194373877604e-24
-5.787500000000000000e+02 8.385362328036818699e-24 -3.245867056861448354e-24
-5.790000000000000000e+02 -3.614545249887685192e-24 1.876629468823742223e-24
-5.792500000000000000e+02 6.329495065882593486e-24 5.532292869449417650e-24
-5.795000000000000000e+02 -4.808719163524086530e-24 7.858520377272025811e-25
-5.797500000000000000e+02 -1.211002721709829806e-24 6.075977557532786063e-24
-5.800000000000000000e+02 -5.497658837790524325e-25 -2.231463520844462930e-24
-5.802500000000000000e+02 -4.852042671120221310e-24 6.561450243436350026e-25
-5.805000000000000000e+02 6.793871189724961256e-24 -9.940335873211967233e-25
-5.807500000000000000e+02 5.665587228724245890e-24 3.193080239444370269e-24
-5.810000000000000000e+02 -2.273946513471773812e-24 -1.637052691180444787e-24
-5.812500000000000000e+02 -1.334962199058959504e-24 6.981233403190946241e-24
-5.815000000000000000e+02 3.192037103867008434e-25 -2.240547932480196034e-24
-5.817500000000000000e+02 4.554790197268585509e-24 -3.574665829183096705e-24
-5.820000000000000000e+02 -3.685055485476539250e-24 -4.100776897460696876e-24
-5.822500000000000000e+02 1.273513988880281807e-24 -6.241130228423526705e-24
-5.825000000000000000e+02 -2.375246383402757624e-24 -2.531974718331942871e-24
-5.827500000000000000e+02 1.198049013606686446e-24 3.324482532189666611e-24
-5.830000000000000000e+02 -4.663878749500632133e-24 3.667280436390752143e-24
-5.832500000000000000e+02 -1.287972102343808204e-24 7.878866391144088530e-24
-5.835000000000000000e+02 2.573872422103154304e-25 -2.960065938188404900e-24
-5.837500000000000000e+02 -1.923521206590398841e-24 -4.189219140134735815e-24
-5.840000000000000000e+02 -3.000332768289392200e-24 -6.676122844682466401e-24
-5.842500000000000000e+02 4.570238840330472457e-25 -5.311502351816402045e-24
-5.845000000000000000e+02 -4.076070871839541795e-24 -7.592217515706993370e-24
-5.847500000000000000e+02 5.843300831749840103e-24 6.185632932026730485e-25
-5.850000000000000000e+02 -2.358591150500804058e-24 7.322512609605171220e-24
-5.852500000000000000e+02 -5.056126741522637872e-24 2.282616372065799975e-25
-5.855000000000000000e+02 1.284459094922445312e-24 2.547761494748176486e-24
-5.857500000000000000e+02 2.630548256693133873e-24 2.910318270688537791e-24
-5.860000000000000000e+02 -5.301722154803562889e-24 2.227547666001144400e-24
-5.862500000000000000e+02 3.985483884624402180e-24 4.885523896822213318e-24
-5.865000000000000000e+02 -3.023210801020776052e-24 3.375932811526650264e-24
-5.867500000000000000e+02 -9.791705502954917386e-24 -2.656971016668606755e-24
-5.870000000000000000e+02 -1.141409380971452943e-24 2.632535550645203005e-24
-5.872500000000000000e+02 5.235927355034792949e-24 3.864513979328950692e-24
-5.875000000000000000e+02 -1.987209131673076987e-24 -2.449572630109503958e-24
-5.877500000000000000e+02 2.773375698352298017e-24 5.984159693542066816e-24
-5.880000000000000000e+02 -2.288972045635124394e-24 2.749737876143682539e-24
-5.882500000000000000e+02 -2.408115865009010930e-24 -2.709878610862725931e-25
-5.885000000000000000e+02 5.103755754797465077e-24 5.021772683798417520e-24
-5.887500000000000000e+02 -6.052699209824565931e-24 -2.229332553112514664e-24
-5.890000000000000000e+02 -1.294521667422351691e-24 -3.174212756558171916e-24
-5.892500000000000000e+02 -3.760427139202431543e-24 -1.066978794767323105e-24
-5.895000000000000000e+02 4.373760929696961082e-24 -7.460020350093178231e-25
-5.897500000000000000e+02 -1.005299327639019449e-23 4.175531140311248211e-24
-5.900000000000000000e+02 8.181998862399600629e-24 6.984343424102668602e-24
-5.902500000000000000e+02 1.608893168344472845e-24 1.782054267783974533e-24
-5.905000000000000000e+02 -1.152881472884032860e-24 5.172635826922004928e-25
-5.907500000000000000e+02 -1.759944029714072002e-24 -1.018596836066344039e-24
-5.910000000000000000e+02 1.658335523352243093e-24 4.009375613559219454e-25
-5.912500000000000000e+02 -8.055258949574294537e-25 -2.812342043800669029e-24
-5.915000000000000000e+02 -3.166391803652157581e-24 -3.532043390237800002e-24
-5.917500000000000000e+02 -5.730602528228335267e-24 1.354030365929374718e-24
-5.920000000000000000e+02 -6.227636102023762751e-24 -9.803432573137225452e-25
-5.922500000000000000e+02 3.790175492775306950e-24 5.544132797439690455e-24
-5.925000000000000000e+02 -3.308267656879054063e-24 2.043291678384036072e-24
-5.927500000000000000e+02 -1.723267413079172038e-24 -3.347177610063019383e-24
-5.930000000000000000e+02 -2.809497138180065206e-24 -1.036605872911411989e-23
-5.932500000000000000e+02 4.482191893845656505e-24 -1.267240568573974879e-24
-5.935000000000000000e+02 3.217686679644127367e-24 1.671149764213466557e-24
-5.937500000000000000e+02 -1.947735047968972635e-24 -5.343322075833388697e-24
-5.940000000000000000e+02 -1.983215953438213566e-24 -6.618472152199153116e-24
-5.942500000000000000e+02 6.593103925359014751e-25 3.343839416233887847e-24
-5.945000000000000000e+02 -5.582446578629205915e-24 -2.136682315578827104e-24
-5.947500000000000000e+02 5.237075286406788657e-25 -7.629073279857494257e-25
-5.950000000000000000e+02 -2.115431593874869065e-24 5.154541420440208161e-24
-5.952500000000000000e+02 5.565020662626254549e-25 -7.463337644869826055e-25
-5.955000000000000000e+02 -1.582743246209429847e-25 7.877284542394911715e-25
-5.957500000000000000e+02 -3.872992951616356524e-24 3.028224721402580344e-24
-5.960000000000000000e+02 6.676523607790762238e-24 4.657476894988870164e-26
-5.962500000000000000e+02 -3.215954331416954646e-24 -4.890032324754094500e-25
-5.965000000000000000e+02 3.221400174209759222e-24 2.473885456155283783e-24
-5.967500000000000000e+02 2.126721466277921214e-25 -2.718682688105305514e-24
-5.970000000000000000e+02 -5.243881358263464817e-24 1.588375744883921805e-24
-5.972500000000000000e+02 3.660721205078121910e-24 -8.569575888611666843e-24
-5.975000000000000000e+02 1.790152637878796459e-24 3.255116664207454713e-25
-5.977500000000000000e+02 -1.613969550800713324e-24 -6.211327748626525558e-24
-5.980000000000000000e+02 1.958120676962880667e-24 -5.970992924078213771e-24
-5.982500000000000000e+02 5.336093605505599147e-24 -8.820794737271989134e-25
-5.985000000000000000e+02 -2.657744829474529593e-25 3.542569854577920330e-24
-5.987500000000000000e+02 6.838345012961444647e-24 -4.155621102338824802e-24
-5.990000000000000000e+02 4.180537486324867275e-24 2.697776030187693925e-24
-5.992500000000000000e+02 5.291675700503232399e-25 9.014361723042662210e-25
-5.995000000000000000e+02 -7.351659647808687389e-24 -1.850777315522533888e-24
-5.997500000000000000e+02 -9.172973539304345978e-24 -1.817299132398179662e-24
-6.000000000000000000e+02 8.693851434853004289e-26 1.752166456383576673e-26
-6.002500000000000000e+02 -1.088878719562039449e-24 1.835812810469445531e-24
-6.005000000000000000e+02 2.072046306359844131e-24 2.687423649490399448e-24
-6.007500000000000000e+02 -4.648075662351998256e-24 4.863353372060047679e-24
-6.010000000000000000e+02 1.194932722787773241e-23 6.522197916740328192e-25
-6.012500000000000000e+02 -4.814027897975331888e-24 2.186050689744560806e-24
-6.015000000000000000e+02 9.165025640587945186e-25 -6.868641406063881775e-24
-6.017500000000000000e+02 4.533728170677345927e-25 6.680459068483377685e-24
-6.020000000000000000e+02 -1.605463486201031532e-24 5.969501496634610987e-24
-6.022500000000000000e+02 2.762689736540692162e-24 2.700814978092661372e-24
-6.025000000000000000e+02 -3.595685257898174170e-24 5.886441783894543916e-24
-6.027500000000000000e+02 -3.785689373211076255e-24 8.374749028889348905e-24
-6.030000000000000000e+02 1.336850609482111626e-24 1.624538214971836683e-24
-6.032500000000000000e+02 7.527703257846629138e-24 -2.038312368074445311e-24
-6.035000000000000000e+02 6.133074014400305395e-24 9.991400352630841254e-25
-6.037500000000000000e+02 5.605596596619621728e-24 1.543884617999061505e-24
-6.040000000000000000e+02 9.342544371134715344e-24 1.579557873376037723e-24
-6.042500000000000000e+02 6.375439785168309766e-25 8.170239085958584672e-24
-6.045000000000000000e+02 -7.456502800539074270e-24 3.529168670253733711e-24
-6.047500000000000000e+02 5.111209600789073754e-24 1.861115151242035996e-24
-6.050000000000000000e+02 5.207825132051254384e-24 -4.150626080811670813e-24
-6.052500000000000000e+02 3.136177847617910185e-24 2.494897070653824522e-24
-6.055000000000000000e+02 2.804013301676422085e-24 5.879530745582241659e-24
-6.057500000000000000e+02 1.266204376266118723e-24 -3.511725169922415897e-24
-6.060000000000000000e+02 3.292174327207667539e-24 -7.959995310205047916e-24
-6.062500000000000000e+02 -2.656878204073991875e-24 -3.036576713199925140e-24
-6.065000000000000000e+02 2.658815269211313525e-25 1.367991299125122223e-24
-6.067500000000000000e+02 -3.449340737016814840e-25 -7.234608613193688562e-24
-6.070000000000000000e+02 4.868876117160035880e-24 -7.826221561966536168e-24
-6.072500000000000000e+02 4.701484323735113858e-24 8.401649502251546123e-25
-6.075000000000000000e+02 5.490780753239627351e-24 5.807038251863630556e-24
-6.077500000000000000e+02 -4.638497118204597447e-25 3.152020763028021093e-24
-6.080000000000000000e+02 -2.573457025745002728e-24 -2.465370154722965567e-24
-6.082500000000000000e+02 2.289581945023581303e-24 1.669653966560669695e-24
-6.085000000000000000e+02 -4.445546290752825639e-24 1.100829049878779015e-25
-6.087500000000000000e+02 -2.070760212281891789e-24 -3.550077023179042052e-24
-6.090000000000000000e+02 -2.255303179145673352e-25 7.841525323352037048e-24
-6.092500000000000000e+02 6.024083797774312484e-25 -4.451815312665453538e-24
-6.095000000000000000e+02 -2.523021892167796304e-25 3.152673469716053738e-24
-6.097500000000000000e+02 -2.744431272236927144e-24 5.907678968613089866e-24
-6.100000000000000000e+02 7.000960206970542706e-24 6.024231130393302071e-24
-6.102500000000000000e+02 -2.510382056183120855e-25 -4.259520666328420123e-24
-6.105000000000000000e+02 6.880982267606395047e-24 2.291627927816502538e-24
-6.107500000000000000e+02 -6.079019997479444510e-24 -5.155960086216759879e-25
-6.110000000000000000e+02 7.286012160549095736e-24 7.857824966752659316e-24
-6.112500000000000000e+02 -5.443096875782946028e-24 -5.108724315475137723e-24
-6.115000000000000000e+02 -2.677109367424679487e-25 -1.015859982927334804e-24
-6.117500000000000000e+02 3.506151065971575720e-24 3.621420453079601728e-24
-6.120000000000000000e+02 1.210543374421213574e-25 -1.575607963555072849e-24
-6.122500000000000000e+02 9.217078032098226093e-25 -2.732354310052959650e-24
-6.125000000000000000e+02 5.052483986503916165e-24 1.666597374191303965e-24
-6.127500000000000000e+02 3.080126086895892555e-25 -4.015427449108124412e-24
-6.130000000000000000e+02 8.493620191145229582e-24 9.264403737434905405e-25
-6.132500000000000000e+02 4.496038046922193815e-24 1.693596122700767762e-24
-6.135000000000000000e+02 -4.571382886319395644e-25 2.236073040924744333e-24
-6.137500000000000000e+02 -4.963982538984338812e-24 5.585272569575160300e-24
-6.140000000000000000e+02 1.695838603507299441e-24 -1.063802787927262575e-23
-6.142500000000000000e+02 -1.768982086690957430e-24 1.227365210949676550e-24
-6.145000000000000000e+02 -4.494562593772656532e-24 4.707343538742861346e-24
-6.147500000000000000e+02 6.372431998317770100e-25 -1.670977208724497031e-24
-6.150000000000000000e+02 -1.053743161534315128e-23 -5.359193221628736498e-24
-6.152500000000000000e+02 -3.436543140859488136e-25 -1.830070020271390224e-24
-6.155000000000000000e+02 -3.570157480819633019e-25 -5.812330247949416257e-24
-6.157500000000000000e+02 -5.065117155887931140e-24 -3.325215723592063659e-24
-6.160000000000000000e+02 -7.545561500165142810e-24 6.254255457786560966e-24
-6.162500000000000000e+02 2.752493784598291462e-24 -6.730806873085111793e-24
-6.165000000000000000e+02 -4.649578609630515557e-24 4.935212489417460713e-24
-6.167500000000000000e+02 2.682584425025729431e-24 1.916166196624284072e-24
-6.170000000000000000e+02 4.554540173767898160e-24 6.583912059970379552e-25
-6.172500000000000000e+02 -5.093744919059358136e-24 -3.080298127783027350e-25
-6.175000000000000000e+02 -6.581106081326308803e-24 -1.775013214657036643e-24
-6.177500000000000000e+02 -2.385793690460523525e-24 3.287123629686668557e-24
-6.180000000000000000e+02 -3.438042780189899452e-24 -1.881552346446083760e-24
-6.182500000000000000e+02 -2.493823602083579755e-24 3.637014033439336681e-25
-6.185000000000000000e+02 4.018983046286673958e-24 -2.428259021972199016e-24
-6.187500000000000000e+02 8.668883463872640943e-24 5.312443132433940272e-24
-6.190000000000000000e+02 4.903674119057845600e-24 3.674276344348569058e-25
-6.192500000000000000e+02 -2.136229341385472118e-25 -7.985783342099083264e-24
-6.195000000000000000e+02 -2.185200289922516151e-24 -2.213145437611645857e-24
-6.197500000000000000e+02 2.134133872528839951e-25 -1.985946348189957327e-24
-6.200000000000000000e+02 -5.766947592328335332e-24 -8.039676279250756505e-25
-6.202500000000000000e+02 -5.358728695357406698e-25 -2.841229665137878664e-24
-6.205000000000000000e+02 -1.160220708462146327e-23 6.430228545050467599e-24
-6.207500000000000000e+02 -3.190238094661613779e-24 -6.891039918379964732e-24
-6.210000000000000000e+02 -3.936179429706116924e-25 -7.843211812789698202e-24
-6.212500000000000000e+02 -2.958181367283201349e-24 1.605313106925700314e-24
-6.215000000000000000e+02 5.309231532088145204e-24 1.961124611438825745e-24
-6.217500000000000000e+02 9.017536138101887786e-24 -3.439861144055498349e-24
-6.220000000000000000e+02 1.765769472404493039e-24 3.045063222941114819e-24
-6.222500000000000000e+02 4.417560785210831666e-24 -7.350697651306711555e-24
-6.225000000000000000e+02 5.232978733600859310e-24 3.708967458252620584e-24
-6.227500000000000000e+02 -4.699150924926324400e-25 -6.055840217487947025e-25
-6.230000000000000000e+02 -8.050850807223916881e-24 5.563386243311446850e-25
-6.232500000000000000e+02 5.996847452363210386e-24 -1.489723539464798053e-24
-6.235000000000000000e+02 -2.942320263049254580e-24 1.993592950175468604e-24
-6.237500000000000000e+02 1.185355284870312234e-24 1.843497850499604782e-24
-6.240000000000000000e+02 -2.958218227778511452e-24 -2.281583411933525534e-24
-6.242500000000000000e+02 3.374927379869798526e-24 -2.043816515643438572e-25
+2.500000000000000000e-01 0.000000000000000000e+00 0.000000000000000000e+00
+5.000000000000000000e-01 0.000000000000000000e+00 0.000000000000000000e+00
+7.500000000000000000e-01 -0.000000000000000000e+00 0.000000000000000000e+00
+1.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+1.250000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00
+1.500000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+1.750000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+2.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+2.250000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00
+2.500000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+2.750000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+3.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+3.250000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+3.500000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+3.750000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+4.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+4.250000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+4.500000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+4.750000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+5.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+5.250000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00
+5.500000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+5.750000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+6.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+6.250000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+6.500000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+6.750000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+7.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+7.250000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+7.500000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+7.750000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00
+8.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+8.250000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00
+8.500000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+8.750000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+9.000000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+9.250000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00
+9.500000000000000000e+00 0.000000000000000000e+00 0.000000000000000000e+00
+9.750000000000000000e+00 -0.000000000000000000e+00 0.000000000000000000e+00
+1.000000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.025000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.050000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.075000000000000000e+01 -0.000000000000000000e+00 0.000000000000000000e+00
+1.100000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.125000000000000000e+01 -0.000000000000000000e+00 0.000000000000000000e+00
+1.150000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.175000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.200000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.225000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.250000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.275000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.300000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.325000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.350000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.375000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.400000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.425000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.450000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.475000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.500000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.525000000000000000e+01 -0.000000000000000000e+00 0.000000000000000000e+00
+1.550000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.575000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.600000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.625000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.650000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.675000000000000000e+01 -0.000000000000000000e+00 0.000000000000000000e+00
+1.700000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.725000000000000000e+01 -0.000000000000000000e+00 0.000000000000000000e+00
+1.750000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.775000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.800000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.825000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.850000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.875000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.900000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.925000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.950000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+1.975000000000000000e+01 -0.000000000000000000e+00 0.000000000000000000e+00
+2.000000000000000000e+01 0.000000000000000000e+00 0.000000000000000000e+00
+2.025000000000000000e+01 2.118768804131557476e-22 -3.430183384199205270e-23
+2.050000000000000000e+01 -1.311197493173576310e-22 -1.340558189638429635e-22
+2.075000000000000000e+01 -8.366782879240011606e-23 1.667173473693128791e-22
+2.100000000000000000e+01 1.704899617402542587e-22 1.712995025492710937e-24
+2.125000000000000000e+01 -1.411642751368298802e-22 -1.302857240243077465e-22
+2.150000000000000000e+01 -4.729014939151595790e-23 1.811685421926259709e-22
+2.175000000000000000e+01 1.598727893263108881e-22 -6.904736553085016836e-23
+2.200000000000000000e+01 -1.377608717720473427e-22 -2.173619379142453444e-23
+2.225000000000000000e+01 3.211035040663359921e-25 1.429520833914849880e-22
+2.250000000000000000e+01 1.103093475050077411e-22 -1.346281026424397731e-22
+2.275000000000000000e+01 -1.506215889342770155e-22 3.336334368901757762e-23
+2.300000000000000000e+01 1.216640081730089747e-22 8.045020866908328844e-23
+2.325000000000000000e+01 -3.650876863451560905e-23 -1.498944140540536756e-22
+2.350000000000000000e+01 -6.928662063464220198e-23 1.187959246371047734e-22
+2.375000000000000000e+01 1.531133980172743906e-22 -5.929786595542728312e-23
+2.400000000000000000e+01 -1.413473069195444243e-22 -3.554628620911151710e-23
+2.425000000000000000e+01 7.289084340972126269e-23 1.419242114969533941e-22
+2.450000000000000000e+01 2.786082182272824434e-23 -1.488823261785393231e-22
+2.475000000000000000e+01 -1.197648621114886803e-22 1.243004046220960635e-22
+2.500000000000000000e+01 1.362593627454084407e-22 -3.816477460501787247e-23
+2.525000000000000000e+01 -1.500323809187257904e-22 -4.868475898823981041e-23
+2.550000000000000000e+01 6.750804525674172763e-23 1.094205655564783292e-22
+2.575000000000000000e+01 -3.403625413407901048e-24 -1.182314222846221765e-22
+2.600000000000000000e+01 -6.146822237031582688e-23 1.044772271177066372e-22
+2.625000000000000000e+01 1.044063606049783335e-22 -7.437281853060424171e-23
+2.650000000000000000e+01 -1.310967511545862457e-22 4.698310884519442871e-24
+2.675000000000000000e+01 1.240636404625402822e-22 3.964616004490004717e-23
+2.700000000000000000e+01 -6.838091278649404726e-23 -8.837428103277868186e-23
+2.725000000000000000e+01 1.426709794159158910e-23 1.078475323891449704e-22
+2.750000000000000000e+01 3.590914362872762100e-23 -1.144870374514799619e-22
+2.775000000000000000e+01 -8.411724420539889619e-23 8.249543556388926815e-23
+2.800000000000000000e+01 1.332072659913697706e-22 -4.544591552912664414e-23
+2.825000000000000000e+01 -1.252643349822452328e-22 -1.844439312116073314e-24
+2.850000000000000000e+01 1.037933146209277395e-22 5.519283208985706306e-23
+2.875000000000000000e+01 -8.285951237330417525e-23 -7.939841607085870768e-23
+2.900000000000000000e+01 3.721207471077037561e-23 9.216275601879618141e-23
+2.925000000000000000e+01 2.146002553911205556e-24 -1.172942084604457108e-22
+2.950000000000000000e+01 -3.846247594812830383e-23 9.916090268016384560e-23
+2.975000000000000000e+01 5.923363242771786054e-23 -8.395783812283599075e-23
+3.000000000000000000e+01 -1.017464489364490832e-22 5.734334893255289151e-23
+3.025000000000000000e+01 9.499311385162861977e-23 -1.850309179856128974e-23
+3.050000000000000000e+01 -9.378580448750418445e-23 -3.758585906410080241e-24
+3.075000000000000000e+01 1.130292612678959385e-22 4.714894979639169613e-23
+3.100000000000000000e+01 -5.798733683592025781e-23 -6.437209507985550349e-23
+3.125000000000000000e+01 4.531283905054991780e-23 1.020213425516788535e-22
+3.150000000000000000e+01 -3.647086313413409246e-24 -1.006045137271827295e-22
+3.175000000000000000e+01 -1.633656056701121860e-23 1.005484712780053297e-22
+3.200000000000000000e+01 5.843137147969671320e-23 -8.992561382303615280e-23
+3.225000000000000000e+01 -6.193333064099662938e-23 8.479756951627674008e-23
+3.250000000000000000e+01 8.188763624856630419e-23 -5.984247028486574989e-23
+3.275000000000000000e+01 -1.022957265361749095e-22 1.190855150370252767e-23
+3.300000000000000000e+01 9.116996158713450247e-23 -1.278621316570221565e-23
+3.325000000000000000e+01 -9.008016105356539954e-23 -2.645699401913696750e-23
+3.350000000000000000e+01 7.379100721897048052e-23 4.967304999025652615e-23
+3.375000000000000000e+01 -7.086916442753356371e-23 -6.707765430474062271e-23
+3.400000000000000000e+01 6.183657068454821902e-23 8.721516982726909660e-23
+3.425000000000000000e+01 -3.205662795802046441e-23 -9.570206709823968185e-23
+3.450000000000000000e+01 2.639147555975796598e-23 8.710658079558559119e-23
+3.475000000000000000e+01 1.890307990369934315e-23 -8.351871288406390382e-23
+3.500000000000000000e+01 -2.947000169762955603e-23 7.658296126801291056e-23
+3.525000000000000000e+01 3.470470019845946035e-23 -7.838548700703659160e-23
+3.550000000000000000e+01 -5.907909515152324081e-23 6.196797413308025817e-23
+3.575000000000000000e+01 6.667411624139040410e-23 -4.599077053796721999e-23
+3.600000000000000000e+01 -7.542596098332532279e-23 3.155332238527707241e-23
+3.625000000000000000e+01 9.378576053303473798e-23 -2.192532648590664118e-23
+3.650000000000000000e+01 -9.172797372846252285e-23 1.784058485626807854e-24
+3.675000000000000000e+01 7.977424193387086126e-23 1.327922004675233595e-23
+3.700000000000000000e+01 -7.571926419250411930e-23 -3.379414675533915388e-23
+3.725000000000000000e+01 7.861744510455118589e-23 4.406241081949129002e-23
+3.750000000000000000e+01 -5.886921150474325435e-23 -5.502173185273112510e-23
+3.775000000000000000e+01 5.452102342079601170e-23 5.733855436093748052e-23
+3.800000000000000000e+01 -3.156220017358275882e-23 -7.510289820043181529e-23
+3.825000000000000000e+01 3.119986834758643116e-23 8.342044140025470164e-23
+3.850000000000000000e+01 -1.698746459994072233e-23 -7.755138521705850152e-23
+3.875000000000000000e+01 3.343945326069197131e-24 7.723000385774370369e-23
+3.900000000000000000e+01 4.688883415468768846e-24 -8.048803282195379682e-23
+3.925000000000000000e+01 -1.717992764872476180e-23 7.245352039580708174e-23
+3.950000000000000000e+01 3.700296597254619234e-23 -7.514762584803270387e-23
+3.975000000000000000e+01 -5.899982707284906415e-23 5.839362910596846190e-23
+4.000000000000000000e+01 5.640883491070287860e-23 -5.485684275700299886e-23
+4.025000000000000000e+01 -5.630800653377140026e-23 4.583658087796629942e-23
+4.050000000000000000e+01 6.439200657120703225e-23 -4.303078173817112810e-23
+4.075000000000000000e+01 -6.192337392878465868e-23 2.327084219875613637e-23
+4.100000000000000000e+01 5.515224563993437040e-23 -2.647510884013196836e-23
+4.125000000000000000e+01 -7.749347719931179795e-23 1.001741738132120848e-24
+4.150000000000000000e+01 6.881449985212194111e-23 -8.611109439235817187e-24
+4.175000000000000000e+01 -7.457752117602485531e-23 -1.024002451066976701e-23
+4.200000000000000000e+01 6.964899379607244964e-23 2.330554348056702591e-23
+4.225000000000000000e+01 -6.816008600069290434e-23 -2.163702496217991348e-23
+4.250000000000000000e+01 5.163208390129103542e-23 2.789938921526007423e-23
+4.275000000000000000e+01 -5.348293641409978535e-23 -3.322283012407664955e-23
+4.300000000000000000e+01 5.811673672629621300e-23 4.407515571470858945e-23
+4.325000000000000000e+01 -4.306161570613643787e-23 -5.434047513486947580e-23
+4.350000000000000000e+01 3.621816351735343271e-23 5.652599646183581453e-23
+4.375000000000000000e+01 -3.535474638510545148e-23 -5.481185006629368217e-23
+4.400000000000000000e+01 3.042509443778136972e-23 6.680143674157077975e-23
+4.425000000000000000e+01 -1.741850294836403794e-23 -5.871685305907008876e-23
+4.450000000000000000e+01 1.965432355633615015e-23 6.280070249315863033e-23
+4.475000000000000000e+01 -9.148701122796709205e-24 -5.834306512751586795e-23
+4.500000000000000000e+01 -6.651580805427121056e-24 6.513375739355012462e-23
+4.525000000000000000e+01 1.480250965749326252e-24 -6.025758203393025365e-23
+4.550000000000000000e+01 -8.286235890639396668e-24 6.179339921768707190e-23
+4.575000000000000000e+01 2.087896452222298964e-23 -5.920393443340156978e-23
+4.600000000000000000e+01 -1.036217281479376304e-23 5.389034755534157220e-23
+4.625000000000000000e+01 2.790980721022841669e-23 -4.968212089037014609e-23
+4.650000000000000000e+01 -3.062487832832956618e-23 4.926509317466834232e-23
+4.675000000000000000e+01 3.521894604025311717e-23 -4.285061731420626813e-23
+4.700000000000000000e+01 -4.210640615229374247e-23 4.684092524501558884e-23
+4.725000000000000000e+01 4.746299472811883106e-23 -3.895867006406454883e-23
+4.750000000000000000e+01 -4.449859920164507856e-23 4.069050275587099601e-23
+4.775000000000000000e+01 4.781626110839931084e-23 -2.947008444041915389e-23
+4.800000000000000000e+01 -5.661458147915381052e-23 2.094265087006066393e-23
+4.825000000000000000e+01 5.212251407095882829e-23 -3.467706889557356450e-23
+4.850000000000000000e+01 -5.609837634636541667e-23 2.296705745903063456e-23
+4.875000000000000000e+01 6.146531387472118459e-23 -1.337115212237429814e-23
+4.900000000000000000e+01 -5.080571674695392615e-23 5.489732193039072202e-24
+4.925000000000000000e+01 5.068352753763654631e-23 -6.602793912991783915e-24
+4.950000000000000000e+01 -4.988326430576029678e-23 4.747432922747458558e-24
+4.975000000000000000e+01 5.251205681949378793e-23 -4.129677631787998756e-24
+5.000000000000000000e+01 -5.404656771660897930e-23 2.047850981765830803e-24
+5.025000000000000000e+01 5.979293008685352458e-23 7.183968138683239674e-24
+5.050000000000000000e+01 -5.769082517786951118e-23 -1.942549603532025673e-23
+5.075000000000000000e+01 5.195414625811778438e-23 1.494886969305704461e-23
+5.100000000000000000e+01 -5.514127676617606832e-23 -1.098268223962545709e-23
+5.125000000000000000e+01 3.812624567953604121e-23 2.316844184463443447e-23
+5.150000000000000000e+01 -4.089189246150043928e-23 -3.069393316984738595e-23
+5.175000000000000000e+01 4.377914185848232396e-23 3.482913036277087071e-23
+5.200000000000000000e+01 -4.542866521149117925e-23 -3.178880534363610382e-23
+5.225000000000000000e+01 3.129643978633571871e-23 3.715506863031141081e-23
+5.250000000000000000e+01 -3.856293591820021919e-23 -3.431103984410591434e-23
+5.275000000000000000e+01 4.061073218614328872e-23 3.206471074414618522e-23
+5.300000000000000000e+01 -2.956357849233097036e-23 -4.110682776397150477e-23
+5.325000000000000000e+01 2.709019311569191093e-23 4.051332329731818161e-23
+5.350000000000000000e+01 -2.947486491674251258e-23 -3.779907361009938796e-23
+5.375000000000000000e+01 2.407166461697821325e-23 4.234092759544537550e-23
+5.400000000000000000e+01 -2.829795516524613753e-23 -4.383643967449050417e-23
+5.425000000000000000e+01 2.463265122293319493e-23 4.369839420214832992e-23
+5.450000000000000000e+01 -1.313929104943472296e-23 -3.995886834168805911e-23
+5.475000000000000000e+01 1.857711155464316781e-23 4.678987157655487080e-23
+5.500000000000000000e+01 -1.295792494230907491e-23 -3.980225586346126335e-23
+5.525000000000000000e+01 1.175672976720729734e-23 4.037751696195417182e-23
+5.550000000000000000e+01 -1.933431409020645957e-24 -4.296853884365604728e-23
+5.575000000000000000e+01 -4.518066223033754076e-24 4.903366902219701327e-23
+5.600000000000000000e+01 4.165833191009026551e-25 -4.746588067646580541e-23
+5.625000000000000000e+01 -5.981297940306244933e-25 4.568603705956004558e-23
+5.650000000000000000e+01 1.679177813030874380e-24 -4.797115636320204429e-23
+5.675000000000000000e+01 -8.274371122502934437e-24 4.716510761138119707e-23
+5.700000000000000000e+01 1.077551162791097549e-23 -4.635849053028732309e-23
+5.725000000000000000e+01 -1.099506206334620624e-23 4.716912532249292108e-23
+5.750000000000000000e+01 8.155955642988465180e-24 -3.705594300436077486e-23
+5.775000000000000000e+01 -1.199790526437314140e-23 3.966311247744517016e-23
+5.800000000000000000e+01 1.762759552224545266e-23 -4.117404073688903465e-23
+5.825000000000000000e+01 -1.718458333127505711e-23 4.452972805424032072e-23
+5.850000000000000000e+01 2.045126182713431397e-23 -3.903216055378701003e-23
+5.875000000000000000e+01 -1.954428684514371369e-23 3.890987212888838368e-23
+5.900000000000000000e+01 2.181016790165343004e-23 -3.884242742407613497e-23
+5.925000000000000000e+01 -2.850223519067251730e-23 3.180273020701638271e-23
+5.950000000000000000e+01 2.252146842242562013e-23 -3.564426590836624347e-23
+5.975000000000000000e+01 -2.214444190720952815e-23 3.554638878135776608e-23
+6.000000000000000000e+01 1.920012811537235966e-23 -2.489344236672610721e-23
+6.025000000000000000e+01 -2.704520248327558878e-23 2.855710812274270106e-23
+6.050000000000000000e+01 2.400550200230814744e-23 -2.677479892942658631e-23
+6.075000000000000000e+01 -3.879615859784701659e-23 2.653716728613459193e-23
+6.100000000000000000e+01 2.786494564947691051e-23 -3.560896706945308645e-23
+6.125000000000000000e+01 -3.440161450594851570e-23 3.154715141439423532e-23
+6.150000000000000000e+01 3.728793249290053057e-23 -3.060631808295405602e-23
+6.175000000000000000e+01 -4.232527512233237547e-23 2.764126578651141493e-23
+6.200000000000000000e+01 4.283019644858992397e-23 -2.630016301529628568e-23
+6.225000000000000000e+01 -3.066502331385206293e-23 2.216325800296264024e-23
+6.250000000000000000e+01 3.578898981046922283e-23 -2.491611418733489141e-23
+6.275000000000000000e+01 -3.812196436320216698e-23 1.901697128046233430e-23
+6.300000000000000000e+01 3.295861183612962377e-23 -6.971206657283056662e-24
+6.325000000000000000e+01 -3.492407633802213189e-23 1.637759185871988946e-23
+6.350000000000000000e+01 3.812729547290278654e-23 -1.352249985996862311e-23
+6.375000000000000000e+01 -3.177875132524055503e-23 1.216022922015453979e-23
+6.400000000000000000e+01 3.518490329688796516e-23 -1.176045580119718841e-23
+6.425000000000000000e+01 -3.593332606338167964e-23 9.873069955111072743e-24
+6.450000000000000000e+01 3.828555460771976108e-23 -3.627162229088755631e-24
+6.475000000000000000e+01 -4.223027722023263875e-23 1.218067361639996401e-23
+6.500000000000000000e+01 4.688118790163888436e-23 -5.298868469974057407e-24
+6.525000000000000000e+01 -3.722673202442979549e-23 1.159269600539619016e-23
+6.550000000000000000e+01 4.111219691193165898e-23 -5.452079784538541208e-24
+6.575000000000000000e+01 -4.296887465316252856e-23 -4.362506772501999754e-24
+6.600000000000000000e+01 3.496518936183895652e-23 4.707394520131732520e-26
+6.625000000000000000e+01 -3.759194461668158933e-23 -1.654393569450619366e-24
+6.650000000000000000e+01 3.519978743818061922e-23 2.177433740366146073e-25
+6.675000000000000000e+01 -3.489370485593397180e-23 2.899404582995914188e-24
+6.700000000000000000e+01 3.917722839636550393e-23 4.614959057369032008e-24
+6.725000000000000000e+01 -4.038916643888510261e-23 -2.095049901997656594e-24
+6.750000000000000000e+01 3.751076554256587371e-23 7.953731548405306401e-24
+6.775000000000000000e+01 -3.632239084515536484e-23 -5.406645206396736177e-24
+6.800000000000000000e+01 3.527536347686568325e-23 1.424518940385813339e-23
+6.825000000000000000e+01 -4.059912356768989176e-23 -6.310234341337449680e-24
+6.850000000000000000e+01 3.160651063511680961e-23 1.341831014755311202e-24
+6.875000000000000000e+01 -3.390862278542234843e-23 -9.581082329488371905e-24
+6.900000000000000000e+01 3.877967567769458576e-23 9.210614044040046597e-24
+6.925000000000000000e+01 -3.814837590487673790e-23 -1.153702035374756740e-23
+6.950000000000000000e+01 3.875818913866166326e-23 1.059392647560154536e-23
+6.975000000000000000e+01 -3.225826885217139771e-23 -5.798736743372810549e-24
+7.000000000000000000e+01 2.710562991472074940e-23 1.690814570126338630e-23
+7.025000000000000000e+01 -3.069538718693194136e-23 -1.081079228871724008e-23
+7.050000000000000000e+01 3.539551195562076116e-23 1.230321081149044303e-23
+7.075000000000000000e+01 -2.995434949209089902e-23 -1.994497738145019004e-23
+7.100000000000000000e+01 4.051767076785142178e-23 2.194709611912658743e-23
+7.125000000000000000e+01 -2.873972277067351140e-23 -1.119774602034184453e-23
+7.150000000000000000e+01 3.335593228390537573e-23 1.924940969762722353e-23
+7.175000000000000000e+01 -2.896302788644605698e-23 -2.118082613179293730e-23
+7.200000000000000000e+01 3.266122712813624222e-23 2.084394697206844537e-23
+7.225000000000000000e+01 -3.815739184550722850e-23 -1.971095872197300098e-23
+7.250000000000000000e+01 2.374833057073099972e-23 1.613867437592839007e-23
+7.275000000000000000e+01 -2.841052607553973505e-23 -1.467175575435469612e-23
+7.300000000000000000e+01 2.845924462870172056e-23 1.641274088813049932e-23
+7.325000000000000000e+01 -2.497120870428475399e-23 -1.966959600178769911e-23
+7.350000000000000000e+01 2.983204908227605469e-23 2.023989347986610801e-23
+7.375000000000000000e+01 -2.316601483923239175e-23 -2.177147559433109360e-23
+7.400000000000000000e+01 2.501249912022357777e-23 2.177696685379833819e-23
+7.425000000000000000e+01 -2.420317452086544398e-23 -2.078511817024154643e-23
+7.450000000000000000e+01 2.373849423598206847e-23 1.507226573316325700e-23
+7.475000000000000000e+01 -1.899761626201440150e-23 -3.217830043378358149e-23
+7.500000000000000000e+01 2.515164359585089694e-23 2.544635982866575425e-23
+7.525000000000000000e+01 -1.771438568618135465e-23 -2.956796130713843440e-23
+7.550000000000000000e+01 1.987770350900388789e-23 2.924411610703450512e-23
+7.575000000000000000e+01 -2.328385614500603683e-23 -2.275329954880685846e-23
+7.600000000000000000e+01 1.784368956581013942e-23 2.584278284142668527e-23
+7.625000000000000000e+01 -1.783219238857384735e-23 -2.920421142535269783e-23
+7.650000000000000000e+01 2.554962922152578051e-23 2.852321760269854186e-23
+7.675000000000000000e+01 -1.725692977757661884e-23 -2.325374755638258509e-23
+7.700000000000000000e+01 1.978222279863163739e-23 2.752583982020974125e-23
+7.725000000000000000e+01 -2.419010743306156990e-23 -2.137246034977141074e-23
+7.750000000000000000e+01 2.795718321934522062e-23 2.717547641759525236e-23
+7.775000000000000000e+01 -2.085196308124399887e-23 -1.783094187456036669e-23
+7.800000000000000000e+01 2.334024020020494113e-23 2.112167293911479967e-23
+7.825000000000000000e+01 -1.757275931165777495e-23 -3.924736154369045725e-23
+7.850000000000000000e+01 1.876354886857021306e-23 2.464189082688660665e-23
+7.875000000000000000e+01 -1.088455844001671828e-23 -3.372662245841412227e-23
+7.900000000000000000e+01 1.408028353185719685e-23 2.270682108241049459e-23
+7.925000000000000000e+01 -1.403734590704783459e-23 -2.831340778322728525e-23
+7.950000000000000000e+01 8.965538627848260676e-24 2.580552683146105717e-23
+7.975000000000000000e+01 -1.264811937706644450e-23 -3.186401607988779528e-23
+8.000000000000000000e+01 1.655197844533483820e-23 2.991840656835148673e-23
+8.025000000000000000e+01 -9.983700439050862418e-24 -2.566850187063765252e-23
+8.050000000000000000e+01 7.423149277525148953e-24 3.334360205769456286e-23
+8.075000000000000000e+01 -5.853650183752092796e-24 -2.734399282044942425e-23
+8.100000000000000000e+01 5.241023525705826165e-24 2.636687780634233943e-23
+8.125000000000000000e+01 -8.940831325730465671e-24 -2.573921007259789191e-23
+8.150000000000000000e+01 5.705889019066495894e-24 3.284397193240763747e-23
+8.175000000000000000e+01 -1.222512728083539617e-23 -2.561435688919844152e-23
+8.200000000000000000e+01 1.304869383076046307e-23 2.857307903223887452e-23
+8.225000000000000000e+01 -1.010050742469646873e-23 -3.311093129885938258e-23
+8.250000000000000000e+01 1.541744395082960413e-24 2.002222216937987460e-23
+8.275000000000000000e+01 -9.636857406307254392e-24 -2.334457734256441256e-23
+8.300000000000000000e+01 1.015609087959030404e-23 2.743690440694129126e-23
+8.325000000000000000e+01 -9.670040150355214358e-24 -2.484251779259292512e-23
+8.350000000000000000e+01 1.130155817200413900e-23 2.719860493968831920e-23
+8.375000000000000000e+01 -1.787939682258326534e-24 -3.089854279209448508e-23
+8.400000000000000000e+01 5.886041116703892285e-24 2.666009201913324483e-23
+8.425000000000000000e+01 -4.113127731180095789e-25 -2.395798642441525399e-23
+8.450000000000000000e+01 1.254949589180603774e-23 3.224500696868693110e-23
+8.475000000000000000e+01 -1.270462950375439680e-23 -2.605731751296566172e-23
+8.500000000000000000e+01 8.976130267121555408e-24 2.592808719519814676e-23
+8.525000000000000000e+01 -1.406122048623007388e-24 -2.597022599895933477e-23
+8.550000000000000000e+01 2.261918946669673564e-24 2.494733165359072624e-23
+8.575000000000000000e+01 -5.533557211136921137e-25 -2.679709815828530356e-23
+8.600000000000000000e+01 4.591638456726907015e-24 3.411023655572478051e-23
+8.625000000000000000e+01 -5.023569314804165591e-24 -2.181342811015559658e-23
+8.650000000000000000e+01 8.456866556164077888e-24 3.380810541698510861e-23
+8.675000000000000000e+01 -1.507142482791426864e-24 -3.104678614928648541e-23
+8.700000000000000000e+01 6.650291546884200638e-24 3.340680640651952866e-23
+8.725000000000000000e+01 -2.520036815954436769e-24 -2.619798737538196370e-23
+8.750000000000000000e+01 -5.431395652305327904e-24 3.322356691080547894e-23
+8.775000000000000000e+01 2.392228827524699618e-26 -2.312277684691801050e-23
+8.800000000000000000e+01 -2.469583352558339232e-25 3.404523446828563570e-23
+8.825000000000000000e+01 -5.590068565947566158e-24 -3.669986009767621997e-23
+8.850000000000000000e+01 -6.689111434845734831e-24 3.109574379806559088e-23
+8.875000000000000000e+01 2.556105487203334143e-24 -3.685683172775938680e-23
+8.900000000000000000e+01 4.874688659796249083e-24 2.565370050768063448e-23
+8.925000000000000000e+01 6.208787160848658529e-24 -3.026531904614334785e-23
+8.950000000000000000e+01 1.410115863393845946e-24 2.776238684008053512e-23
+8.975000000000000000e+01 1.005431720435348518e-24 -3.052334416098509885e-23
+9.000000000000000000e+01 -4.431546708445109733e-25 3.015337785160008125e-23
+9.025000000000000000e+01 1.612349794372853816e-24 -2.290788052930147930e-23
+9.050000000000000000e+01 1.578033966400099759e-24 2.724774180173288948e-23
+9.075000000000000000e+01 -1.447961000711452591e-25 -2.709383846744162474e-23
+9.100000000000000000e+01 -7.170014942230134418e-24 2.364163616338387608e-23
+9.125000000000000000e+01 1.371513088563870346e-24 -2.060788266168348614e-23
+9.150000000000000000e+01 -1.656989867085488123e-24 2.029981823344194271e-23
+9.175000000000000000e+01 1.614437997742257421e-24 -2.870258605164592192e-23
+9.200000000000000000e+01 -2.730275875004050477e-24 1.901129884307287512e-23
+9.225000000000000000e+01 1.191328292443675153e-23 -1.683951345559188440e-23
+9.250000000000000000e+01 3.755108436835061286e-25 1.662133218562052926e-23
+9.275000000000000000e+01 -2.227580286635275228e-24 -2.277027424779237494e-23
+9.300000000000000000e+01 -9.050498592305111493e-25 1.783200167457869321e-23
+9.325000000000000000e+01 -5.070285261006147120e-24 -2.764932730976343626e-23
+9.350000000000000000e+01 -1.377765671778696723e-24 2.336717145063697491e-23
+9.375000000000000000e+01 5.956326302085255595e-24 -2.292531723912088518e-23
+9.400000000000000000e+01 -4.083369831374171654e-24 2.271210070538727791e-23
+9.425000000000000000e+01 4.356245676589441018e-25 -2.272918404667484935e-23
+9.450000000000000000e+01 -8.448128536715021801e-24 2.435870006650735815e-23
+9.475000000000000000e+01 6.292995961570409348e-24 -2.384067811099438086e-23
+9.500000000000000000e+01 -7.244788322542411070e-24 2.213430688455174144e-23
+9.525000000000000000e+01 8.276826970928971638e-24 -2.275011730788978328e-23
+9.550000000000000000e+01 -7.551882794019603012e-24 2.655164447023857046e-23
+9.575000000000000000e+01 3.718401157106274651e-24 -1.536137331590893976e-23
+9.600000000000000000e+01 -2.255635240427132132e-24 2.334509304282085509e-23
+9.625000000000000000e+01 5.292624214101536159e-24 -1.644524568104231916e-23
+9.650000000000000000e+01 -6.217236539485781007e-24 2.296202829255092503e-23
+9.675000000000000000e+01 6.748474694872637284e-24 -3.088904857246300289e-23
+9.700000000000000000e+01 -4.278253601834470175e-24 2.490422868302350085e-23
+9.725000000000000000e+01 5.557904907094898049e-24 -2.128197633063411643e-23
+9.750000000000000000e+01 -5.097242836256345310e-24 2.347098864459345443e-23
+9.775000000000000000e+01 5.644626887529971175e-24 -2.417723091504664132e-23
+9.800000000000000000e+01 -4.564378651398526006e-24 2.783550297423897852e-23
+9.825000000000000000e+01 7.462360818714518383e-24 -2.401133467309513870e-23
+9.850000000000000000e+01 -4.392284451773855087e-24 1.862376867275315435e-23
+9.875000000000000000e+01 9.716912142470802798e-24 -2.193583105619362142e-23
+9.900000000000000000e+01 -1.071147658409571895e-23 1.902292612651763342e-23
+9.925000000000000000e+01 1.261666304895656044e-24 -1.914575862990105830e-23
+9.950000000000000000e+01 -7.833447210075392689e-24 2.485523274342618197e-23
+9.975000000000000000e+01 6.169895214396290319e-24 -1.631955803502600925e-23
+1.000000000000000000e+02 -5.090283544940122885e-24 2.007302812732140907e-23
+1.002500000000000000e+02 2.149557105841148500e-24 -2.986063583124327377e-23
+1.005000000000000000e+02 -6.321954331588904145e-24 2.862962475275084155e-23
+1.007500000000000000e+02 8.898139090923402296e-24 -1.647238268077371721e-23
+1.010000000000000000e+02 -1.374599439366981786e-23 2.455913574008732873e-23
+1.012500000000000000e+02 9.035280815705069091e-24 -2.221524979741793022e-23
+1.015000000000000000e+02 -1.807712060833782472e-24 2.435602393271989811e-23
+1.017500000000000000e+02 7.930958068152922338e-24 -2.666485738090487832e-23
+1.020000000000000000e+02 -1.104232190756298559e-23 2.957064405109768310e-23
+1.022500000000000000e+02 5.264060979590530030e-24 -2.154074843611561768e-23
+1.025000000000000000e+02 -7.913113801045415133e-24 2.469845935851803672e-23
+1.027500000000000000e+02 5.598382174063072145e-24 -2.365431277071449992e-23
+1.030000000000000000e+02 -2.044936433561958315e-23 1.399723463131535369e-23
+1.032500000000000000e+02 1.358276622366475830e-23 -2.520009477266721027e-23
+1.035000000000000000e+02 -9.678838316344410609e-24 2.057663393805486928e-23
+1.037500000000000000e+02 7.163627334664625406e-24 -1.747548336396232828e-23
+1.040000000000000000e+02 -4.252490105432992953e-24 2.438949801282256917e-23
+1.042500000000000000e+02 8.895748689318732933e-24 -3.145832470632935702e-23
+1.045000000000000000e+02 -9.941301984488907149e-24 2.517783275236084785e-23
+1.047500000000000000e+02 7.676834809240677921e-24 -1.957369933900309840e-23
+1.050000000000000000e+02 -5.963214243891170772e-24 2.098371411421334882e-23
+1.052500000000000000e+02 1.030031377515756241e-23 -1.646689133443412521e-23
+1.055000000000000000e+02 -8.912277717708069988e-24 2.471137463618818735e-23
+1.057500000000000000e+02 1.133101072049769219e-23 -1.432601195369660314e-23
+1.060000000000000000e+02 -5.113685699312213697e-24 2.171333500377660659e-23
+1.062500000000000000e+02 6.319781336162643047e-24 -2.337593615342591769e-23
+1.065000000000000000e+02 -1.225085299146762213e-23 1.888581208263369498e-23
+1.067500000000000000e+02 9.596014058211116817e-24 -1.653328516891976342e-23
+1.070000000000000000e+02 -6.039535256209578845e-24 2.108948104113518105e-23
+1.072500000000000000e+02 6.533555397235882718e-24 -2.046033315834003640e-23
+1.075000000000000000e+02 -1.009089319187396072e-23 2.124620273040510922e-23
+1.077500000000000000e+02 1.050654987133609534e-23 -2.114015070412485639e-23
+1.080000000000000000e+02 -7.789693528333136167e-24 2.025798394158516106e-23
+1.082500000000000000e+02 1.378366068129167384e-23 -1.808017254811350311e-23
+1.085000000000000000e+02 -6.409847452266464011e-24 2.308067504565212935e-23
+1.087500000000000000e+02 1.785003316785520376e-23 -2.330313885802535270e-23
+1.090000000000000000e+02 -6.383015337125919899e-24 2.061414834622707101e-23
+1.092500000000000000e+02 4.949645901037562021e-24 -2.487714278690688705e-23
+1.095000000000000000e+02 -9.267258080625405028e-24 1.965258128748126780e-23
+1.097500000000000000e+02 8.121073504792321636e-24 -2.476315684861227684e-23
+1.100000000000000000e+02 -1.511557678975070350e-23 1.692777962199643823e-23
+1.102500000000000000e+02 1.117121704694538899e-23 -2.192303595564503614e-23
+1.105000000000000000e+02 -8.275076455998502442e-24 1.628826101392055658e-23
+1.107500000000000000e+02 8.426362189338995758e-24 -2.390313674762173239e-23
+1.110000000000000000e+02 -1.069315316834815781e-23 2.205555146356705221e-23
+1.112500000000000000e+02 4.173742931626705563e-24 -1.932297045499529729e-23
+1.115000000000000000e+02 -9.371365305754647112e-24 2.041589637173538627e-23
+1.117500000000000000e+02 5.079489185025807464e-24 -1.546228521201142940e-23
+1.120000000000000000e+02 -8.471218897365191956e-24 1.993289862578246552e-23
+1.122500000000000000e+02 4.953102905159508093e-24 -2.033356818675990092e-23
+1.125000000000000000e+02 -1.405756789502669093e-23 1.741562764961494253e-23
+1.127500000000000000e+02 8.868521606332650334e-24 -1.681578917941779843e-23
+1.130000000000000000e+02 -7.729494359678119027e-24 2.153153364277924555e-23
+1.132500000000000000e+02 1.060961686861724049e-23 -1.798630774368135016e-23
+1.135000000000000000e+02 -8.249627628701591629e-24 1.778251900743772679e-23
+1.137500000000000000e+02 1.420065358019853991e-23 -1.928593822076890311e-23
+1.140000000000000000e+02 -1.093761619302083832e-23 1.674479440982571446e-23
+1.142500000000000000e+02 1.277758059604265993e-23 -2.319129267984182746e-23
+1.145000000000000000e+02 -1.230458752106884838e-23 2.838459761171634821e-23
+1.147500000000000000e+02 5.734045955797603770e-24 -1.704024017867140195e-23
+1.150000000000000000e+02 -9.988588619103794656e-24 1.619932740452580582e-23
+1.152500000000000000e+02 7.402305161143896768e-24 -2.138924515324548564e-23
+1.155000000000000000e+02 -2.378174284011130859e-24 2.177626054929673338e-23
+1.157500000000000000e+02 5.793764521181067914e-24 -1.976696130810192505e-23
+1.160000000000000000e+02 -1.327060674063175762e-23 2.072235514828498368e-23
+1.162500000000000000e+02 1.123932742462598127e-23 -1.229345574963464828e-23
+1.165000000000000000e+02 -8.361327173928916434e-24 1.978886265765173747e-23
+1.167500000000000000e+02 2.163169172367732409e-24 -1.913288614428400099e-23
+1.170000000000000000e+02 -6.868341555798060606e-24 1.882047119921554552e-23
+1.172500000000000000e+02 1.187263022460959721e-23 -1.094007412298346793e-23
+1.175000000000000000e+02 -9.672858821033506803e-24 2.033850020003975427e-23
+1.177500000000000000e+02 1.422735871371877121e-23 -1.607386621481138210e-23
+1.180000000000000000e+02 -2.088678365244200623e-24 1.731856109185148889e-23
+1.182500000000000000e+02 5.388556818394842310e-24 -2.010568285707124865e-23
+1.185000000000000000e+02 -4.685897372678865539e-24 1.474961837236659545e-23
+1.187500000000000000e+02 -1.492390394464050139e-25 -2.042272004583771932e-23
+1.190000000000000000e+02 -7.329776476059097093e-24 2.261128092405406541e-23
+1.192500000000000000e+02 5.009446150722178795e-24 -1.230602576833604283e-23
+1.195000000000000000e+02 -4.159408913125674860e-24 1.568164293098422812e-23
+1.197500000000000000e+02 4.489396383034982756e-24 -1.755127829143127193e-23
+1.200000000000000000e+02 -3.858702907773098719e-24 2.194702812782611144e-23
+1.202500000000000000e+02 4.699144493481050942e-24 -1.936599390284491360e-23
+1.205000000000000000e+02 -9.452232711984191770e-24 1.704844675430822543e-23
+1.207500000000000000e+02 4.811350921177751760e-24 -2.111045814782489525e-23
+1.210000000000000000e+02 -6.853500213963576483e-24 1.612890620501888982e-23
+1.212500000000000000e+02 2.334744599358637192e-24 -1.612155363372950148e-23
+1.215000000000000000e+02 -5.118757724956200422e-24 1.835494761319201521e-23
+1.217500000000000000e+02 4.974893405803745972e-24 -1.521572478616099606e-23
+1.220000000000000000e+02 1.157345158675571299e-24 2.410985882654004074e-23
+1.222500000000000000e+02 6.550782606512933679e-24 -1.967574354486149004e-23
+1.225000000000000000e+02 -1.042943251512623914e-23 1.803174074794043363e-23
+1.227500000000000000e+02 9.287398167706005376e-24 -1.017063554857434789e-23
+1.230000000000000000e+02 -1.060457371594692091e-23 1.282701860591349654e-23
+1.232500000000000000e+02 9.632980050594153191e-24 -1.894926350794520272e-23
+1.235000000000000000e+02 -9.026429039341775089e-24 1.964771505917640317e-23
+1.237500000000000000e+02 9.130270912219031459e-24 -1.739820244316438418e-23
+1.240000000000000000e+02 -6.973456189774879406e-24 1.689464891507473234e-23
+1.242500000000000000e+02 9.259022772996953637e-24 -1.607609831348844777e-23
+1.245000000000000000e+02 -9.741868703390019056e-24 1.279532930464421154e-23
+1.247500000000000000e+02 4.492133878612736072e-24 -2.231895704109415413e-23
+1.250000000000000000e+02 -1.420402634843393060e-24 1.436903967123382081e-23
+1.252500000000000000e+02 1.229608294600557487e-23 -1.348681689420600353e-23
+1.255000000000000000e+02 -3.325365666915044761e-24 2.573348228116043007e-23
+1.257500000000000000e+02 4.622406745955905143e-24 -1.974778707327734790e-23
+1.260000000000000000e+02 -1.852600311808387583e-24 1.331453180215187390e-23
+1.262500000000000000e+02 5.460722840615300347e-24 -2.219164657776294261e-23
+1.265000000000000000e+02 -7.244520835516935407e-24 1.174514768838024429e-23
+1.267500000000000000e+02 1.071650770143952997e-23 -1.482357736378516729e-23
+1.270000000000000000e+02 -6.996945123634840687e-24 2.117437026558437055e-23
+1.272500000000000000e+02 6.360656741391096810e-24 -1.830105505863380671e-23
+1.275000000000000000e+02 -7.699610797329469206e-24 1.733463209034267311e-23
+1.277500000000000000e+02 3.823481517732391269e-24 -1.804525221057029490e-23
+1.280000000000000000e+02 -9.059396687545065543e-24 2.603025027707129351e-23
+1.282500000000000000e+02 4.911924589273022206e-24 -1.294023994818650493e-23
+1.285000000000000000e+02 -5.631760943923213699e-24 1.846543453275309040e-23
+1.287500000000000000e+02 4.983544980283295795e-24 -1.735363960876008134e-23
+1.290000000000000000e+02 -1.064696664951735081e-23 1.693136590981614632e-23
+1.292500000000000000e+02 5.459556932551502764e-24 -9.734460377695421094e-24
+1.295000000000000000e+02 -6.841125867667161322e-24 1.769233265162534562e-23
+1.297500000000000000e+02 6.180233801601340485e-24 -2.181039462909209842e-23
+1.300000000000000000e+02 -4.102504281095643848e-24 2.153873124773019222e-23
+1.302500000000000000e+02 6.915531750897805311e-24 -1.807736983667795409e-23
+1.305000000000000000e+02 -8.906811626441769793e-24 1.624958880451006578e-23
+1.307500000000000000e+02 2.458049067928141091e-24 -1.460280673866708568e-23
+1.310000000000000000e+02 -7.482893456539571604e-24 1.851455865967596098e-23
+1.312500000000000000e+02 2.622480882231866772e-24 -1.507234918692728820e-23
+1.315000000000000000e+02 -1.156920378005652737e-23 1.099176199797306745e-23
+1.317500000000000000e+02 3.577711992136131336e-24 -2.374183501742078501e-23
+1.320000000000000000e+02 -1.082465987519184543e-23 2.308948821810679487e-23
+1.322500000000000000e+02 3.810619108015317473e-25 -1.708148943065601104e-23
+1.325000000000000000e+02 -9.948862559344621759e-24 1.499910961512047039e-23
+1.327500000000000000e+02 1.052355990084950924e-24 -1.601844143392454300e-23
+1.330000000000000000e+02 -9.389918822564048434e-24 2.498480020493692726e-23
+1.332500000000000000e+02 1.458258608849982421e-24 -2.404788944612006325e-23
+1.335000000000000000e+02 -5.891051143142138056e-24 1.219075331163107164e-23
+1.337500000000000000e+02 7.949943676998916498e-24 -2.199599499716466402e-23
+1.340000000000000000e+02 -9.923915175671218316e-24 2.167874348323321370e-23
+1.342500000000000000e+02 8.742779196542020812e-24 -1.659246107340275574e-23
+1.345000000000000000e+02 -2.580017802223066841e-24 2.053461075928137022e-23
+1.347500000000000000e+02 6.570590336337634762e-24 -2.201313827793773556e-23
+1.350000000000000000e+02 -5.419256743596531304e-24 2.446920709976844645e-23
+1.352500000000000000e+02 5.106964964751827699e-24 -1.790039824196002783e-23
+1.355000000000000000e+02 -2.130679717307965703e-24 1.676808433686079453e-23
+1.357500000000000000e+02 6.624123883064623835e-24 -1.737738158409403121e-23
+1.360000000000000000e+02 -5.442240804296163163e-24 1.743746628518137079e-23
+1.362500000000000000e+02 6.888205081451762611e-24 -1.327712827806357701e-23
+1.365000000000000000e+02 6.358421578002509545e-25 1.778830993849068035e-23
+1.367500000000000000e+02 7.624214979795224450e-24 -1.286612935366882221e-23
+1.370000000000000000e+02 -1.120606960788221751e-24 1.824939557401591795e-23
+1.372500000000000000e+02 1.419839512050211724e-24 -1.708114374228056157e-23
+1.375000000000000000e+02 -3.640967469036620644e-24 1.856527111681639049e-23
+1.377500000000000000e+02 4.141146400387648201e-24 -2.215366332616056377e-23
+1.380000000000000000e+02 -5.268308993277896189e-24 1.956563159625496521e-23
+1.382500000000000000e+02 4.250313174439556077e-24 -2.040233658647707443e-23
+1.385000000000000000e+02 -2.682909621677195830e-24 1.925562626868334144e-23
+1.387500000000000000e+02 3.054319055793285221e-24 -2.160314072087821259e-23
+1.390000000000000000e+02 -3.735885136375113199e-24 1.761590639246117512e-23
+1.392500000000000000e+02 2.941683303765885780e-24 -1.497721249250079547e-23
+1.395000000000000000e+02 -2.863059470981248364e-24 2.313282640566265310e-23
+1.397500000000000000e+02 1.502657494217405623e-24 -1.259342483598797089e-23
+1.400000000000000000e+02 -4.443676205515175486e-24 2.178392398815006039e-23
+1.402500000000000000e+02 2.538575333908017460e-24 -7.704323983489134752e-24
+1.405000000000000000e+02 -6.946045398439681778e-24 2.078881528174006348e-23
+1.407500000000000000e+02 -4.547646703933797827e-24 -1.729247754302272690e-23
+1.410000000000000000e+02 -3.298431455722366475e-24 1.699031646235028254e-23
+1.412500000000000000e+02 -2.128396425708237012e-24 -1.282296861207811894e-23
+1.415000000000000000e+02 3.997002572810744304e-24 1.783533432818153912e-23
+1.417500000000000000e+02 4.968752995639557328e-24 -1.266920597782807209e-23
+1.420000000000000000e+02 2.658416824371943636e-24 1.759955139377560982e-23
+1.422500000000000000e+02 4.822832038164379853e-24 -2.025402325363781838e-23
+1.425000000000000000e+02 -3.158132579486159326e-24 2.244133481076561458e-23
+1.427500000000000000e+02 3.753774490456757723e-24 -1.278919969948930319e-23
+1.430000000000000000e+02 2.381546320965787691e-25 2.224401033866855533e-23
+1.432500000000000000e+02 -3.607046089339653783e-24 -1.838178120879659588e-23
+1.435000000000000000e+02 1.433686868632528164e-24 1.745632966992833703e-23
+1.437500000000000000e+02 -1.952494730404681778e-24 -1.365327570179039855e-23
+1.440000000000000000e+02 -5.874824928624454513e-24 1.722790540372793008e-23
+1.442500000000000000e+02 4.111432536842762481e-24 -1.515713496637371862e-23
+1.445000000000000000e+02 -3.374071587416328816e-24 1.268989799260174076e-23
+1.447500000000000000e+02 -2.574161937314145925e-24 -1.618780070904548926e-23
+1.450000000000000000e+02 3.534604075954460136e-24 2.619910660355680324e-23
+1.452500000000000000e+02 -5.835417739514305608e-24 -1.479463354842543887e-23
+1.455000000000000000e+02 -3.744305382930166748e-24 1.592482949188667331e-23
+1.457500000000000000e+02 4.996703758720156742e-24 -1.895535482738137142e-23
+1.460000000000000000e+02 9.574413374822932958e-24 2.145188371917272425e-23
+1.462500000000000000e+02 7.609480050456512664e-25 -1.376947618542440356e-23
+1.465000000000000000e+02 3.064360319598736467e-24 1.987058577728370522e-23
+1.467500000000000000e+02 -3.480163522906930630e-24 -1.902778482338654916e-23
+1.470000000000000000e+02 7.685962729534786688e-24 2.247265894040657989e-23
+1.472500000000000000e+02 -2.126157401427076505e-24 -2.105552030441538802e-23
+1.475000000000000000e+02 -1.075078605269463658e-23 2.389294538255877941e-23
+1.477500000000000000e+02 3.411396865919453896e-25 -1.842725894103088629e-23
+1.480000000000000000e+02 7.192422319785842437e-25 1.324838421266845899e-23
+1.482500000000000000e+02 -3.261478435944875882e-24 -2.502075955597701510e-23
+1.485000000000000000e+02 1.357324955393457315e-24 1.803418101578994853e-23
+1.487500000000000000e+02 4.520448051578043034e-24 -2.439196119739116524e-23
+1.490000000000000000e+02 -4.555985329579003577e-24 2.081398548609287379e-23
+1.492500000000000000e+02 1.223312142223822422e-24 -1.868401950987439291e-23
+1.495000000000000000e+02 -2.964583075385096264e-24 1.344922185658454099e-23
+1.497500000000000000e+02 4.769476445020555197e-24 -1.582809975754686074e-23
+1.500000000000000000e+02 3.157046425508646225e-24 2.543219947485253847e-23
+1.502500000000000000e+02 -3.039504214511711309e-24 -1.378803083690879258e-23
+1.505000000000000000e+02 2.240569147101452922e-24 1.956903548168921140e-23
+1.507500000000000000e+02 -2.775210686179233234e-24 -1.550907620383084497e-23
+1.510000000000000000e+02 3.864100488540342062e-24 1.977248400479543498e-23
+1.512500000000000000e+02 -1.595209253874007508e-24 -1.574840817736284392e-23
+1.515000000000000000e+02 6.579497218417272294e-24 1.155168741255660378e-23
+1.517500000000000000e+02 8.407446873315435907e-24 -2.180232192208610407e-23
+1.520000000000000000e+02 3.117442328427705176e-24 1.734015879813022929e-23
+1.522500000000000000e+02 1.395190260639295808e-24 -1.124890968558062130e-23
+1.525000000000000000e+02 3.458569419390773376e-24 1.901206828329376330e-23
+1.527500000000000000e+02 -4.054551356811990085e-24 -1.563043435092866906e-23
+1.530000000000000000e+02 4.069956600758502636e-24 9.542117300164107403e-24
+1.532500000000000000e+02 1.367956799062496725e-24 -2.340404004766185069e-23
+1.535000000000000000e+02 5.662250354808955509e-24 1.553048938388787966e-23
+1.537500000000000000e+02 -1.958640452475285396e-24 -1.464191040510770261e-23
+1.540000000000000000e+02 2.073054901316393088e-24 1.221131468890846849e-23
+1.542500000000000000e+02 4.179382016526590589e-24 -2.363728083509595354e-23
+1.545000000000000000e+02 6.398054469770014610e-24 1.253477527290629077e-23
+1.547500000000000000e+02 2.265957057397038653e-24 -1.651669165026529870e-23
+1.550000000000000000e+02 6.119355032240086985e-25 1.667603519029315429e-23
+1.552500000000000000e+02 2.203500167239467874e-24 -2.013521534613315436e-23
+1.555000000000000000e+02 -2.232077112623798756e-24 1.687413582868346836e-23
+1.557500000000000000e+02 -1.596668105526964930e-24 -2.066975517375888185e-23
+1.560000000000000000e+02 3.626852517080454635e-24 2.143835264256639281e-23
+1.562500000000000000e+02 -3.009534381549803938e-24 -1.403524909821438782e-23
+1.565000000000000000e+02 2.173048463817812371e-24 1.812641897958287841e-23
+1.567500000000000000e+02 -3.105525734013019359e-25 -2.079209643617486090e-23
+1.570000000000000000e+02 5.986151556529638928e-24 2.083937390084587874e-23
+1.572500000000000000e+02 -3.314713829579965772e-24 -1.399620688804808279e-23
+1.575000000000000000e+02 1.198821041637840240e-23 2.392587196681071694e-23
+1.577500000000000000e+02 -3.230256684315210364e-25 -9.901933519481014068e-24
+1.580000000000000000e+02 5.072974349522131268e-24 2.236423908728819941e-23
+1.582500000000000000e+02 -4.530342330312012099e-24 -1.811425878547493509e-23
+1.585000000000000000e+02 -2.929550516311611483e-24 1.435365900187141738e-23
+1.587500000000000000e+02 -7.129713010503474209e-24 -1.290196376483168486e-23
+1.590000000000000000e+02 2.989178415675624513e-24 2.186509366039051886e-23
+1.592500000000000000e+02 -7.989524663665094043e-24 -2.080667455373710757e-23
+1.595000000000000000e+02 4.616172763655813266e-24 1.725803310618717018e-23
+1.597500000000000000e+02 1.754075663750315388e-24 -1.625474188570225230e-23
+1.600000000000000000e+02 7.190039775718998958e-24 1.359506934791580332e-23
+1.602500000000000000e+02 -6.240926131810695496e-24 -1.319236060501411259e-23
+1.605000000000000000e+02 1.354438717624413392e-24 1.710070321618588562e-23
+1.607500000000000000e+02 -1.969320960257851948e-24 -1.480601726362193335e-23
+1.610000000000000000e+02 4.806134271299649389e-24 2.597986144680918411e-23
+1.612500000000000000e+02 1.286251396388184028e-24 -1.594040859467211887e-23
+1.615000000000000000e+02 6.489907881145640847e-24 1.909680323507572053e-23
+1.617500000000000000e+02 -5.809936485289039399e-25 -2.216965050990956177e-23
+1.620000000000000000e+02 7.895908091784164138e-24 1.352842752795266429e-23
+1.622500000000000000e+02 -5.930800172475865976e-24 -1.260346986941081697e-23
+1.625000000000000000e+02 6.801097740669491515e-24 3.783508813778520062e-24
+1.627500000000000000e+02 -4.067585100769300303e-24 -1.124898991376583268e-23
+1.630000000000000000e+02 6.437268556273597900e-24 1.235478335177411398e-23
+1.632500000000000000e+02 -1.256834824942379522e-23 -1.406570618558038108e-23
+1.635000000000000000e+02 -3.675886291807051578e-25 1.386019478179508577e-23
+1.637500000000000000e+02 -9.570193534706679955e-24 -9.538424408188388409e-24
+1.640000000000000000e+02 3.877108979546585478e-24 1.241224864725942867e-23
+1.642500000000000000e+02 -6.282148208984898092e-24 -7.115301250937926648e-24
+1.645000000000000000e+02 6.685807126107911681e-24 1.252584367371397898e-23
+1.647500000000000000e+02 -5.423648915097551960e-24 -1.783169769842337267e-23
+1.650000000000000000e+02 6.549773709453750283e-24 1.087601520329019127e-23
+1.652500000000000000e+02 -5.375282306058654307e-24 -1.083158301068680293e-23
+1.655000000000000000e+02 8.877579426240111555e-24 1.137080142909636141e-23
+1.657500000000000000e+02 -3.540446499898075501e-24 -1.081714268070575611e-23
+1.660000000000000000e+02 4.413850312005558718e-24 1.539836301878866747e-23
+1.662500000000000000e+02 -1.508883904080264259e-23 -1.168030517769580425e-23
+1.665000000000000000e+02 5.677491413018206567e-24 1.663239093344337288e-23
+1.667500000000000000e+02 -5.375516584962751246e-24 -7.987355054683278853e-24
+1.670000000000000000e+02 5.743579394778036536e-24 1.795964351632447065e-23
+1.672500000000000000e+02 -1.013724817821817790e-23 -1.680227477955312819e-23
+1.675000000000000000e+02 3.571643594618602822e-24 1.227218023971948105e-23
+1.677500000000000000e+02 -1.220944755402008880e-23 -1.717457683878757501e-23
+1.680000000000000000e+02 7.906088906467877711e-24 1.826831556803431163e-23
+1.682500000000000000e+02 -1.532514159884031030e-23 -8.416771622963688263e-24
+1.685000000000000000e+02 8.271929156409429611e-24 1.625640871095961211e-23
+1.687500000000000000e+02 -8.874477233804047819e-24 -1.803594715316015095e-23
+1.690000000000000000e+02 8.295116921349807084e-24 1.285984465025066544e-23
+1.692500000000000000e+02 -8.672962098100988905e-24 -1.272403754934400394e-23
+1.695000000000000000e+02 6.741224365255956846e-24 1.697487682204436072e-23
+1.697500000000000000e+02 -4.512843634118496219e-24 -1.078599410201275215e-23
+1.700000000000000000e+02 1.242512202085240943e-23 1.453785405450808469e-23
+1.702500000000000000e+02 -1.251883195278574952e-23 -1.809217226872935482e-23
+1.705000000000000000e+02 9.347927433350468043e-24 1.207998048351059671e-23
+1.707500000000000000e+02 -1.223553397929901586e-23 -8.539251057948482560e-24
+1.710000000000000000e+02 1.462022943836329845e-23 7.133667073815472431e-24
+1.712500000000000000e+02 -1.037702359565257294e-23 -1.616487100961071997e-23
+1.715000000000000000e+02 5.500563586725798545e-24 1.878608767122176494e-23
+1.717500000000000000e+02 -6.931933442793270887e-24 -7.086527041086270029e-24
+1.720000000000000000e+02 1.251333692704690057e-23 1.512410213033873940e-23
+1.722500000000000000e+02 -1.107277298205077857e-23 -9.993210095127851703e-24
+1.725000000000000000e+02 8.426925254409301082e-24 1.467357991912424535e-23
+1.727500000000000000e+02 -1.206795065570058828e-23 -9.055500526666195976e-24
+1.730000000000000000e+02 1.035189361419631572e-23 1.580510741250121866e-23
+1.732500000000000000e+02 -1.466068040859388673e-23 -1.456599871597307374e-23
+1.735000000000000000e+02 1.755952014004040545e-23 1.274721807449406171e-23
+1.737500000000000000e+02 -1.113623826546564374e-23 -5.590490197753953102e-24
+1.740000000000000000e+02 1.924154375877244622e-23 1.068817143605724435e-23
+1.742500000000000000e+02 -1.273683428446046600e-23 -8.189884466154259618e-24
+1.745000000000000000e+02 1.033693648657432661e-23 1.821676651792243925e-23
+1.747500000000000000e+02 -1.232040842335034633e-23 -6.146895498746562301e-24
+1.750000000000000000e+02 1.470776099106582030e-23 1.116528376418112341e-23
+1.752500000000000000e+02 -7.627954415481939435e-24 -1.039301228812676773e-23
+1.755000000000000000e+02 1.265626648112677809e-23 1.317242421749663596e-23
+1.757500000000000000e+02 -7.277773247779988363e-24 -1.143883171972392743e-23
+1.760000000000000000e+02 1.599226774279080779e-23 1.647377169369203225e-23
+1.762500000000000000e+02 -7.964275028012497107e-24 -1.256309605181969414e-23
+1.765000000000000000e+02 1.023915245171318009e-23 9.871739145221750104e-24
+1.767500000000000000e+02 -1.618408645589515587e-23 -1.467602685095975377e-23
+1.770000000000000000e+02 5.854719519084999697e-24 9.844060806937764639e-24
+1.772500000000000000e+02 -1.752738748718496244e-23 -3.721755377608666096e-24
+1.775000000000000000e+02 1.093857032476237794e-23 1.125147237277785156e-23
+1.777500000000000000e+02 -1.704538928849556483e-23 -7.764149242694928030e-24
+1.780000000000000000e+02 1.187339232218234406e-23 9.972101904434785770e-24
+1.782500000000000000e+02 -6.748057600849725494e-24 -9.117415065654670976e-24
+1.785000000000000000e+02 1.184593125074716118e-23 5.497407145301722190e-24
+1.787500000000000000e+02 -1.961066494191905719e-23 -6.160288030654495645e-24
+1.790000000000000000e+02 1.573595963222881939e-23 1.116401457425409629e-23
+1.792500000000000000e+02 -1.349849593290910613e-23 -3.310716690610598399e-24
+1.795000000000000000e+02 1.084952372005291422e-23 1.099500232876964582e-23
+1.797500000000000000e+02 -1.381278318005209439e-23 -6.838387823208260594e-24
+1.800000000000000000e+02 7.889783067095179141e-24 8.966138379225473288e-24
+1.802500000000000000e+02 -1.286420187576831910e-23 -8.107674389723485716e-24
+1.805000000000000000e+02 1.583363516787199122e-23 4.046602396190679205e-24
+1.807500000000000000e+02 -1.691437480877620221e-23 -1.070091594466285512e-23
+1.810000000000000000e+02 1.527278568774853945e-23 5.476399744936309258e-24
+1.812500000000000000e+02 -1.091266706565234168e-23 -5.853442982365553183e-24
+1.815000000000000000e+02 1.112989255146606350e-23 8.616828371561942236e-24
+1.817500000000000000e+02 -9.538498741824822110e-24 -5.429253377260700418e-24
+1.820000000000000000e+02 9.039316617885085010e-24 7.610342714973483738e-24
+1.822500000000000000e+02 -1.179707721743174853e-23 -8.066935866374189306e-24
+1.825000000000000000e+02 1.296744219041639000e-23 3.503571757616938954e-24
+1.827500000000000000e+02 -1.387334509184264896e-23 -4.575831856066326962e-24
+1.830000000000000000e+02 1.507829282673943842e-23 -4.051953172776516933e-24
+1.832500000000000000e+02 -1.287514563159523719e-23 -3.593940568274490443e-24
+1.835000000000000000e+02 6.372557947233944458e-24 8.206513317223816221e-24
+1.837500000000000000e+02 -1.864765306808617005e-23 -8.503369529142710356e-24
+1.840000000000000000e+02 9.786057695204802540e-24 4.468274073834560061e-24
+1.842500000000000000e+02 -1.477351970392621363e-23 -7.896223623802947664e-24
+1.845000000000000000e+02 1.686266834888872296e-23 5.134797951546138345e-24
+1.847500000000000000e+02 -1.001844860190477910e-23 -5.019982462461999322e-24
+1.850000000000000000e+02 1.655254309673114649e-23 9.409980135725244583e-24
+1.852500000000000000e+02 -1.342466945154978599e-23 -8.089186001284969534e-24
+1.855000000000000000e+02 1.048996618699861355e-23 4.409512936963450910e-24
+1.857500000000000000e+02 -9.742970692924860645e-24 -5.141921755271406657e-24
+1.860000000000000000e+02 1.460924101595648664e-23 -6.918711322736931438e-25
+1.862500000000000000e+02 -1.889201133345180488e-23 -3.248610832020791762e-24
+1.865000000000000000e+02 1.197075628480536250e-23 2.260129487931519634e-24
+1.867500000000000000e+02 -9.768834751592816402e-24 -1.149885582326797354e-24
+1.870000000000000000e+02 1.974050997621409825e-23 8.349143903668961330e-24
+1.872500000000000000e+02 -1.791073317309598380e-23 -5.714954441318866015e-24
+1.875000000000000000e+02 2.233518052509140943e-23 5.293956706079389214e-24
+1.877500000000000000e+02 -1.105841106400820343e-23 -4.247171109064271978e-24
+1.880000000000000000e+02 1.663249195693505732e-23 3.802981904957986239e-24
+1.882500000000000000e+02 -1.891448154412923774e-23 -7.740788804266365812e-24
+1.885000000000000000e+02 2.262214875652562344e-23 3.934162132873809483e-25
+1.887500000000000000e+02 -1.479129344644971095e-23 6.082773723275384813e-25
+1.890000000000000000e+02 1.180374155452751375e-23 3.125388935641658745e-24
+1.892500000000000000e+02 -1.626704051662351114e-23 -2.948338904379622774e-24
+1.895000000000000000e+02 1.427398849156610710e-23 -9.674383668827840374e-25
+1.897500000000000000e+02 -1.839587140407944165e-23 -5.102062431031659643e-24
+1.900000000000000000e+02 1.700717135901615525e-23 2.298531890814791949e-24
+1.902500000000000000e+02 -1.516688617695945534e-23 -1.504417466737140119e-25
+1.905000000000000000e+02 8.262755749728244560e-24 5.262051339820713849e-24
+1.907500000000000000e+02 -1.803185337560739971e-23 -3.518301093578399525e-24
+1.910000000000000000e+02 1.053064181337482504e-23 2.839944350324997487e-24
+1.912500000000000000e+02 -1.781225491871362892e-23 -5.860459959914832934e-24
+1.915000000000000000e+02 1.274489594655796566e-23 1.723700534431365460e-24
+1.917500000000000000e+02 -1.411018394831038020e-23 -5.374323024669145540e-24
+1.920000000000000000e+02 1.371778826624144888e-23 2.983881238929274612e-24
+1.922500000000000000e+02 -1.552638777982279662e-23 -8.765869031208329037e-24
+1.925000000000000000e+02 1.203011797687055472e-23 3.588785509627971398e-25
+1.927500000000000000e+02 -1.226765237995408368e-23 4.914251288222040044e-24
+1.930000000000000000e+02 1.380281472769465231e-23 -1.682351675246466880e-24
+1.932500000000000000e+02 -7.397648381896507285e-24 -4.057421273007719381e-24
+1.935000000000000000e+02 1.149733673675857882e-23 8.884232105502018023e-25
+1.937500000000000000e+02 -1.499024062292347478e-23 2.612590062585712485e-24
+1.940000000000000000e+02 1.969487763320222610e-23 6.933197307668027748e-24
+1.942500000000000000e+02 -1.911264640797517784e-23 3.381414244519996847e-24
+1.945000000000000000e+02 1.126505664564663642e-23 -8.494311089477860857e-24
+1.947500000000000000e+02 -1.898253367671524478e-23 3.512814032495614811e-24
+1.950000000000000000e+02 1.431584500663717819e-23 -2.948326712964433418e-24
+1.952500000000000000e+02 -1.588494292136764170e-23 -5.062530607386882167e-24
+1.955000000000000000e+02 1.557390496434142253e-23 -2.362908738542441344e-24
+1.957500000000000000e+02 -1.058176228971632370e-23 3.116944702095888170e-24
+1.960000000000000000e+02 1.042148531132635398e-23 -4.169683003362701556e-24
+1.962500000000000000e+02 -1.616567584603280420e-23 7.936721703111457177e-24
+1.965000000000000000e+02 1.619723007424773173e-23 -3.981557158434867826e-25
+1.967500000000000000e+02 -2.406790182157258328e-23 5.062964091912513705e-24
+1.970000000000000000e+02 1.269188519135834166e-23 2.734576046426584408e-24
+1.972500000000000000e+02 -1.633737339279704388e-23 -5.104759252244512746e-24
+1.975000000000000000e+02 1.234678200167263018e-23 -2.584257282495775344e-24
+1.977500000000000000e+02 -1.351824908295554305e-23 5.911052425884441692e-24
+1.980000000000000000e+02 1.864734148946481694e-23 -8.254424172192308919e-24
+1.982500000000000000e+02 -1.652873298381271406e-23 4.816143579976815142e-24
+1.985000000000000000e+02 2.268455724292940501e-23 -6.792027003533530408e-24
+1.987500000000000000e+02 -1.707240217082220822e-23 2.638470053734691817e-24
+1.990000000000000000e+02 1.418456906076446161e-23 4.008395716987841819e-24
+1.992500000000000000e+02 -1.356088960076210992e-23 8.843049792497094345e-26
+1.995000000000000000e+02 8.636417687088521553e-24 8.210193080336338674e-25
+1.997500000000000000e+02 -1.257967565813058126e-23 7.396536953270460166e-24
+2.000000000000000000e+02 1.432433791455765078e-23 -7.669701596608124843e-24
+2.002500000000000000e+02 -1.361629818384504906e-23 -2.894794724847158092e-24
+2.005000000000000000e+02 1.802728806383801572e-23 6.409936368023913559e-24
+2.007500000000000000e+02 -1.393338873617909541e-23 -5.190669033613809820e-24
+2.010000000000000000e+02 1.818730849893712993e-23 -6.618949366356212948e-24
+2.012500000000000000e+02 -1.899498261279811337e-23 5.247105989779877463e-24
+2.015000000000000000e+02 1.299956789432591672e-23 -3.521283667314748335e-24
+2.017500000000000000e+02 -9.206311022301505547e-24 3.905392059305899318e-24
+2.020000000000000000e+02 1.353233141915728156e-23 -3.724467968080659202e-25
+2.022500000000000000e+02 -1.833042451472229393e-23 8.157609061440518623e-26
+2.025000000000000000e+02 9.398243818719894461e-24 -4.026044052070901837e-24
+2.027500000000000000e+02 -1.647623189798312473e-23 3.192407527496644851e-24
+2.030000000000000000e+02 8.687381702253278219e-24 -3.900079212228526978e-24
+2.032500000000000000e+02 -1.167038805059276495e-23 6.907958534850409443e-24
+2.035000000000000000e+02 2.946196437864891828e-24 -3.421253985445489149e-24
+2.037500000000000000e+02 -1.644616267662694051e-23 5.356128764240006212e-24
+2.040000000000000000e+02 8.120899056499429950e-24 -6.419182869464386502e-24
+2.042500000000000000e+02 -1.836036482430030427e-23 1.029365166467985665e-23
+2.045000000000000000e+02 1.103682249700947374e-23 -8.896956759879335951e-24
+2.047500000000000000e+02 -1.769245134986452704e-23 3.289115202346370042e-24
+2.050000000000000000e+02 1.478863297667961163e-23 -5.194440999275442876e-24
+2.052500000000000000e+02 -1.587200375059966009e-23 8.069452945054206552e-24
+2.055000000000000000e+02 1.078520633855615852e-23 -5.677812760404430833e-24
+2.057500000000000000e+02 -9.637305735476589357e-24 5.981768651319813526e-24
+2.060000000000000000e+02 1.369389329248865912e-23 -4.992250775699010190e-24
+2.062500000000000000e+02 -1.211896073809071087e-23 1.359402300017505564e-23
+2.065000000000000000e+02 1.240493002914843903e-23 -8.507841996614076864e-24
+2.067500000000000000e+02 -1.660438883288787190e-23 4.762770717728969104e-24
+2.070000000000000000e+02 1.344399217698553766e-23 -4.082834072409049145e-24
+2.072500000000000000e+02 -4.325252108431750087e-24 1.182068737605336367e-23
+2.075000000000000000e+02 1.115000003983277551e-23 -8.192068116485248243e-24
+2.077500000000000000e+02 -1.577521199215408214e-23 1.388807279586220339e-23
+2.080000000000000000e+02 6.275823942410075083e-24 -9.414267336583684752e-24
+2.082500000000000000e+02 -1.900127911177262477e-23 8.201245051486877471e-24
+2.085000000000000000e+02 1.045311026566598427e-23 -4.098808844637091863e-24
+2.087500000000000000e+02 -1.364439569911534349e-23 9.583774479778234986e-24
+2.090000000000000000e+02 1.542120175734112872e-23 -7.655556829332132529e-24
+2.092500000000000000e+02 -1.171601510509774418e-23 7.815227135769392852e-24
+2.095000000000000000e+02 1.377526446172613633e-23 -4.337808127367802387e-24
+2.097500000000000000e+02 -8.876033849463377791e-24 1.117278741265828429e-23
+2.100000000000000000e+02 1.555611299853505544e-23 -1.374543616639090589e-23
+2.102500000000000000e+02 -1.212616739233788281e-23 1.062351939174969876e-23
+2.105000000000000000e+02 1.447660734160512590e-23 -6.749718794212045196e-24
+2.107500000000000000e+02 -9.063258643277849170e-24 1.193253595106503896e-23
+2.110000000000000000e+02 6.665917001426026405e-24 -9.663296570778028516e-24
+2.112500000000000000e+02 -1.432776461961890927e-23 8.696404363903422863e-25
+2.115000000000000000e+02 1.195016744843110281e-23 -1.214340108010082241e-23
+2.117500000000000000e+02 -1.143912859047099429e-23 1.306849045262139291e-23
+2.120000000000000000e+02 1.901978702230573877e-24 -1.039523376828784565e-23
+2.122500000000000000e+02 -9.057902367246793540e-24 1.644549025612632972e-23
+2.125000000000000000e+02 1.085867878662546693e-23 -8.603450587338793911e-24
+2.127500000000000000e+02 -9.021154903818756698e-24 7.722102693516866257e-24
+2.130000000000000000e+02 1.531492756542504509e-23 -1.499655021255674792e-23
+2.132500000000000000e+02 -1.098240964241637646e-23 1.804417004225766952e-23
+2.135000000000000000e+02 3.641842219286941899e-24 -7.068886224143918120e-24
+2.137500000000000000e+02 -6.869268395115426049e-24 1.043711733517342829e-23
+2.140000000000000000e+02 9.673373419706110620e-24 -6.961638512287516907e-24
+2.142500000000000000e+02 -6.721754548514132214e-24 1.555022972545427561e-23
+2.145000000000000000e+02 1.123239953738569788e-23 -6.141599606462701465e-24
+2.147500000000000000e+02 -8.124444504652170431e-24 1.387421160720490253e-23
+2.150000000000000000e+02 6.486938792974739559e-24 -9.501063665597511528e-24
+2.152500000000000000e+02 -8.642338041270794160e-24 1.350579180396585361e-23
+2.155000000000000000e+02 7.665849670815791504e-24 -1.016819185179184695e-23
+2.157500000000000000e+02 -9.809470387509188219e-24 1.478344160984415219e-23
+2.160000000000000000e+02 8.548025302479330393e-24 -1.041286684554721800e-23
+2.162500000000000000e+02 -8.262522864617949050e-24 1.550621479475562766e-23
+2.165000000000000000e+02 7.849263600057956694e-24 -1.656035536721404122e-23
+2.167500000000000000e+02 -1.157778812477958553e-23 1.404269039556213525e-23
+2.170000000000000000e+02 6.303134140561786647e-24 -1.455809231966782207e-23
+2.172500000000000000e+02 -1.148410982989410488e-23 9.195635435816170478e-24
+2.175000000000000000e+02 3.119627392971002183e-24 -9.355679345659035822e-24
+2.177500000000000000e+02 -1.779974305395164668e-24 1.327170634664202420e-23
+2.180000000000000000e+02 2.964745138008977574e-24 -1.533698495070705675e-23
+2.182500000000000000e+02 -4.786160680311129573e-24 1.339123194682031342e-23
+2.185000000000000000e+02 1.660683604573113827e-25 -1.064554687419336158e-23
+2.187500000000000000e+02 -6.663111653443022352e-24 1.785824545290658368e-23
+2.190000000000000000e+02 1.000039042934480126e-23 -1.463668211956134529e-23
+2.192500000000000000e+02 -3.034630107456200174e-24 1.430207297074904520e-23
+2.195000000000000000e+02 3.034225101821776145e-24 -1.229629435292502954e-23
+2.197500000000000000e+02 -2.676873038111719716e-24 1.398202500118380328e-23
+2.200000000000000000e+02 4.081574952488060709e-24 -8.502239896534339525e-24
+2.202500000000000000e+02 -8.904174823018060595e-24 1.533287255324588848e-23
+2.205000000000000000e+02 6.419740788543546751e-25 -1.450326187534901616e-23
+2.207500000000000000e+02 -1.244551116246893638e-23 1.336955348104538265e-23
+2.210000000000000000e+02 6.551223194824965091e-24 -1.574651107211336743e-23
+2.212500000000000000e+02 -1.748237294376672629e-24 1.687101327299818398e-23
+2.215000000000000000e+02 1.068632114258641550e-23 -8.736654800208387973e-24
+2.217500000000000000e+02 -5.603938040283213388e-24 9.801289560570987543e-24
+2.220000000000000000e+02 2.906398659210879251e-24 -1.248826937219475220e-23
+2.222500000000000000e+02 -6.034915665557699043e-24 1.059097337661189223e-23
+2.225000000000000000e+02 4.945092773158455733e-24 -1.559103746083919293e-23
+2.227500000000000000e+02 -3.027042915187647790e-24 1.187995180991476042e-23
+2.230000000000000000e+02 -2.164062003088820254e-24 -1.256391931604746733e-23
+2.232500000000000000e+02 -1.487486886624583383e-24 2.024921205596820660e-23
+2.235000000000000000e+02 5.213719647581425917e-24 -1.232978933839618287e-23
+2.237500000000000000e+02 -1.968284688954196125e-24 1.104630093298828800e-23
+2.240000000000000000e+02 1.840537121978884210e-24 -1.194787171894546947e-23
+2.242500000000000000e+02 -9.695328756260287177e-24 1.003299491207989626e-23
+2.245000000000000000e+02 2.762321598704993697e-24 -1.679906631471442949e-23
+2.247500000000000000e+02 -2.606267408129560842e-24 2.204837626965244281e-24
+2.250000000000000000e+02 2.976318594572121397e-25 -1.403668852148938462e-23
+2.252500000000000000e+02 -1.601686120237078405e-24 1.219399995132225254e-23
+2.255000000000000000e+02 8.406062317485818926e-25 -1.330630557981014328e-23
+2.257500000000000000e+02 -1.230530875623675534e-24 1.538337695230904051e-23
+2.260000000000000000e+02 8.843868554687618333e-25 -1.179189869715376592e-23
+2.262500000000000000e+02 -2.888074140843407864e-24 1.194120389159645885e-23
+2.265000000000000000e+02 -3.165980663170674359e-24 -1.135178796283101498e-23
+2.267500000000000000e+02 -5.389142079112142485e-24 1.455557935530029233e-23
+2.270000000000000000e+02 1.872186524423168813e-24 -1.761398353968756660e-23
+2.272500000000000000e+02 -5.600719043971284672e-25 1.049212839874179931e-23
+2.275000000000000000e+02 1.756876002380710536e-24 -1.467966706597015952e-23
+2.277500000000000000e+02 1.560781125971923536e-24 1.464020132613113277e-23
+2.280000000000000000e+02 -5.960570245665127918e-25 -1.463409544545401635e-23
+2.282500000000000000e+02 7.422497151655401615e-24 1.484943398969891986e-23
+2.285000000000000000e+02 -2.344325559371412730e-24 -5.703939323019688549e-24
+2.287500000000000000e+02 9.072589415004044595e-25 1.622650722059127323e-23
+2.290000000000000000e+02 -2.722822327059397018e-24 -1.090812116982928863e-23
+2.292500000000000000e+02 -3.213730739437429446e-25 4.287351286053627869e-24
+2.295000000000000000e+02 -5.038717506850866293e-24 -1.774662394801749853e-23
+2.297500000000000000e+02 3.901702392910238826e-24 1.199981119448500842e-23
+2.300000000000000000e+02 -3.522180164285146388e-24 -1.167004003192713126e-23
+2.302500000000000000e+02 4.167619504051673067e-24 7.478261967454735560e-24
+2.305000000000000000e+02 2.050926109666152991e-24 -1.589579811099790905e-23
+2.307500000000000000e+02 2.005598514774293904e-24 1.719800893529542485e-23
+2.310000000000000000e+02 -4.238441774307987340e-24 -4.521568970856947725e-24
+2.312500000000000000e+02 3.590751784501639644e-24 1.400415479010344076e-23
+2.315000000000000000e+02 -5.120949000549355079e-25 -1.387262146464048420e-23
+2.317500000000000000e+02 5.206098062374617878e-24 9.706386399499595061e-24
+2.320000000000000000e+02 -7.903383102200196027e-24 -1.482186102452311644e-23
+2.322500000000000000e+02 8.737796977586454414e-24 5.253856783860726730e-24
+2.325000000000000000e+02 -6.582770486313694148e-24 -1.445976103272362898e-23
+2.327500000000000000e+02 -1.645355706069363712e-24 6.173920629471926623e-24
+2.330000000000000000e+02 -1.371908778822812074e-24 -1.183863175696679551e-23
+2.332500000000000000e+02 2.550736916671110319e-24 1.158414432883252293e-23
+2.335000000000000000e+02 -3.596151393265209228e-24 -8.190741450059645919e-24
+2.337500000000000000e+02 4.973908020339594354e-24 1.778614049113463936e-23
+2.340000000000000000e+02 2.055111450129891006e-24 -1.800298138900996116e-23
+2.342500000000000000e+02 5.066750664047607241e-24 1.679174622666695879e-23
+2.345000000000000000e+02 -2.931915842419286367e-24 -1.239448586384421176e-23
+2.347500000000000000e+02 3.583231728942708648e-24 1.108342958480235614e-23
+2.350000000000000000e+02 -7.631835539379911932e-24 -1.103614341761561203e-23
+2.352500000000000000e+02 8.380458772732672767e-24 7.897535105229279366e-24
+2.355000000000000000e+02 -3.152273318935729844e-24 -7.887476363559102669e-24
+2.357500000000000000e+02 1.135832800366193487e-23 1.658918599326977332e-23
+2.360000000000000000e+02 -8.527880805046350991e-24 -1.156283326806437304e-23
+2.362500000000000000e+02 7.201677365797404595e-24 1.768426342341647412e-23
+2.365000000000000000e+02 -3.110911566738887027e-24 -1.227484081058039447e-23
+2.367500000000000000e+02 -6.789449884874388276e-26 7.344889394579748357e-24
+2.370000000000000000e+02 -1.103036918307448895e-23 -1.467709087453454606e-23
+2.372500000000000000e+02 8.277033870776776147e-24 1.214117383379781580e-23
+2.375000000000000000e+02 -5.738021473869544626e-24 -3.175611761910893389e-24
+2.377500000000000000e+02 4.376721767802051871e-24 1.361407245917161934e-23
+2.380000000000000000e+02 -3.514525822429901464e-24 -1.433712114017925832e-23
+2.382500000000000000e+02 3.720517731665627560e-24 9.993440041559303674e-24
+2.385000000000000000e+02 -1.255331239554042530e-23 -1.178724010448865049e-23
+2.387500000000000000e+02 7.658255666728207107e-24 1.582845484013623592e-23
+2.390000000000000000e+02 -6.994471849401978245e-24 -1.082940093580274343e-23
+2.392500000000000000e+02 1.114624902100819868e-23 4.947046476430079305e-24
+2.395000000000000000e+02 -6.934267744772405038e-24 -5.178831908486183500e-24
+2.397500000000000000e+02 1.100541328337776575e-23 1.168327720589095599e-23
+2.400000000000000000e+02 -1.164565279380352877e-23 -9.047682719695682021e-24
+2.402500000000000000e+02 1.139060649128614810e-23 3.404156042542187640e-24
+2.405000000000000000e+02 -1.219341167483550760e-23 -1.423298866454449564e-23
+2.407500000000000000e+02 1.226272935480325146e-23 1.502479024798131548e-23
+2.410000000000000000e+02 -9.301897333285269218e-24 -5.230774875255385622e-24
+2.412500000000000000e+02 8.666576578149273779e-24 8.526736563402301990e-24
+2.415000000000000000e+02 -1.036140847380217875e-23 -6.691401036362940450e-24
+2.417500000000000000e+02 8.465508475900580848e-24 1.169620125384592773e-23
+2.420000000000000000e+02 -1.025130299472478034e-23 -9.185510395201228766e-24
+2.422500000000000000e+02 3.749967870247084304e-24 6.912600036220192333e-24
+2.425000000000000000e+02 -1.237939232433643786e-23 -7.662328790898054343e-24
+2.427500000000000000e+02 7.088384865270475796e-24 3.675307832838996281e-24
+2.430000000000000000e+02 -8.532652776147205239e-24 -1.122732502257587319e-23
+2.432500000000000000e+02 1.158909684797793770e-23 1.219772172408131016e-23
+2.435000000000000000e+02 -1.088533238767953734e-23 -7.795632457143959741e-24
+2.437500000000000000e+02 1.127161422803493706e-23 9.514570930512482586e-24
+2.440000000000000000e+02 -8.269595461819377563e-24 -8.529629816661581937e-24
+2.442500000000000000e+02 8.893548941299972339e-24 1.470985017415990102e-23
+2.445000000000000000e+02 -1.919011447090469703e-23 -8.558779296561536913e-24
+2.447500000000000000e+02 1.036328965133839158e-23 4.759938564510872985e-24
+2.450000000000000000e+02 -4.918589556112799544e-24 -6.718720006499541386e-24
+2.452500000000000000e+02 8.403819815002229920e-24 1.033206494384410883e-23
+2.455000000000000000e+02 -7.745878749973348092e-24 -7.634411213961880902e-24
+2.457500000000000000e+02 7.946749492709223236e-24 7.578106931781889180e-24
+2.460000000000000000e+02 -1.310491965122773342e-23 -3.517469019311744136e-24
+2.462500000000000000e+02 1.858496243346672056e-23 7.222284642971596942e-24
+2.465000000000000000e+02 -1.108127877849315632e-23 6.611537651898954628e-24
+2.467500000000000000e+02 7.377115617723565723e-24 3.662185183157880137e-24
+2.470000000000000000e+02 -6.691601632323893841e-24 -9.194242520689756872e-24
+2.472500000000000000e+02 1.216910001380482564e-23 5.799232685627109638e-24
+2.475000000000000000e+02 -9.617116403459130752e-24 -9.595366614616204689e-24
+2.477500000000000000e+02 4.089799404243475904e-24 1.139624026588121819e-23
+2.480000000000000000e+02 -1.245880980123790001e-23 -1.351939547742219752e-24
+2.482500000000000000e+02 1.150087743703263955e-23 -3.697308231882392454e-24
+2.485000000000000000e+02 -1.188683501768170797e-23 -9.396770645204031761e-24
+2.487500000000000000e+02 7.565427862979363111e-24 -1.822638702698374366e-24
+2.490000000000000000e+02 -1.261308698963083955e-23 -5.362004723679409995e-24
+2.492500000000000000e+02 1.677527902425827823e-23 1.294231792778118603e-24
+2.495000000000000000e+02 -1.290593274242805791e-23 -8.599308370103098915e-25
+2.497500000000000000e+02 1.387666906341142495e-23 7.746151123206393207e-25
+2.500000000000000000e+02 -5.891511089715907669e-24 4.585231659859693701e-25
+2.502500000000000000e+02 1.101481617977889460e-23 9.550635621654851064e-25
+2.505000000000000000e+02 -1.208531511071769429e-23 -1.183850127083241056e-24
+2.507500000000000000e+02 1.595706825265044173e-23 4.327836506289438160e-24
+2.510000000000000000e+02 -7.201376267303644543e-24 6.404565918219393285e-25
+2.512500000000000000e+02 1.415644967522795756e-23 2.153624578759904912e-24
+2.515000000000000000e+02 -1.614275641960038772e-23 -1.144920026146956908e-24
+2.517500000000000000e+02 1.360723737748793517e-23 -5.932551395624799974e-25
+2.520000000000000000e+02 -1.072084448785165950e-23 -8.467280256122244757e-25
+2.522500000000000000e+02 1.256936946264592859e-23 -7.814014352432686385e-25
+2.525000000000000000e+02 -5.141925368105692266e-24 6.269952166668599529e-25
+2.527500000000000000e+02 8.057865745742958956e-24 -1.196750779371104117e-24
+2.530000000000000000e+02 -4.824478946912358578e-24 -7.386206461637052977e-25
+2.532500000000000000e+02 5.347783407227562788e-24 1.210680031358332655e-24
+2.535000000000000000e+02 -1.571958691054178454e-23 -4.370092045626890922e-24
+2.537500000000000000e+02 1.177418790931338910e-23 -1.586084355917404960e-24
+2.540000000000000000e+02 -1.270295301945801671e-23 -8.465290466147214062e-24
+2.542500000000000000e+02 1.324967198234792585e-23 3.637445731484127963e-25
+2.545000000000000000e+02 -8.581466131831535362e-24 4.627629809555979059e-24
+2.547500000000000000e+02 7.474147909352333905e-24 -4.231290408982947892e-24
+2.550000000000000000e+02 -1.207285408795404581e-23 -1.145586288324856654e-24
+2.552500000000000000e+02 1.213767471468663468e-23 1.479830024418261322e-24
+2.555000000000000000e+02 -1.626127986748904263e-23 1.266885017250750429e-24
+2.557500000000000000e+02 1.048446536108512770e-23 -1.524442483217536078e-24
+2.560000000000000000e+02 -1.123277631031994101e-23 6.164467313578368602e-25
+2.562500000000000000e+02 1.250590064967929920e-23 -7.343447285994474483e-24
+2.565000000000000000e+02 -1.257578364208438481e-23 6.114680958795405558e-24
+2.567500000000000000e+02 1.523696195625207234e-23 -2.635444337551646935e-24
+2.570000000000000000e+02 -1.132615921301666081e-23 4.829363023256454429e-24
+2.572500000000000000e+02 1.010534474880586770e-23 1.160511876229350659e-24
+2.575000000000000000e+02 -1.669398034390855679e-23 3.199304688641244139e-24
+2.577500000000000000e+02 7.284331257904023049e-24 -5.374974453957817741e-25
+2.580000000000000000e+02 -1.288598659735296070e-23 -1.048390411250719412e-24
+2.582500000000000000e+02 5.251137986470509028e-24 4.492311387561319893e-25
+2.585000000000000000e+02 -1.223133972904140817e-23 -4.529106064473166147e-24
+2.587500000000000000e+02 7.080894380016372960e-24 -1.369667250974125916e-24
+2.590000000000000000e+02 -2.265300559449626560e-23 3.254510581586068805e-24
+2.592500000000000000e+02 1.354944424963970255e-23 -1.176751597104837023e-23
+2.595000000000000000e+02 -5.660589615169769178e-24 4.031836606592607243e-24
+2.597500000000000000e+02 1.144070130076535651e-23 -1.302411318959878738e-24
+2.600000000000000000e+02 -9.582476658580011959e-24 7.930015739295729447e-24
+2.602500000000000000e+02 9.672072708228417930e-24 -6.032290075074642707e-24
+2.605000000000000000e+02 -1.837977839738616700e-23 1.171803919333876969e-23
+2.607500000000000000e+02 9.340885424732074802e-24 -1.550288718518722741e-24
+2.610000000000000000e+02 -1.487970700783418348e-23 -1.034473530798402542e-24
+2.612500000000000000e+02 5.744099893678521443e-24 -1.074028905127812942e-24
+2.615000000000000000e+02 -1.443557847666903356e-23 1.462530942864401621e-23
+2.617500000000000000e+02 9.433943614770399131e-24 -8.024689864390790813e-24
+2.620000000000000000e+02 8.703680510122792683e-25 -6.411955380231409536e-25
+2.622500000000000000e+02 7.057601538170042240e-24 -9.877972720257096663e-24
+2.625000000000000000e+02 -3.634743551263209181e-24 6.941279209184702479e-24
+2.627500000000000000e+02 1.028991267195881268e-23 -8.268589027494877081e-24
+2.630000000000000000e+02 -2.591717103860142528e-24 7.557122063506237107e-24
+2.632500000000000000e+02 1.277617624694065069e-23 -7.242395892368908576e-24
+2.635000000000000000e+02 -1.502885185653066508e-23 5.446907304590404653e-24
+2.637500000000000000e+02 1.217273326000633467e-23 -1.214341315713828011e-23
+2.640000000000000000e+02 -5.863150133665396945e-24 1.250056406736254072e-23
+2.642500000000000000e+02 3.472449879886567772e-24 -1.139368988605888923e-23
+2.645000000000000000e+02 -6.085440151766000114e-24 5.727656506176663935e-24
+2.647500000000000000e+02 2.148037709229899391e-24 -3.720574306959935193e-24
+2.650000000000000000e+02 -6.580770771794327500e-24 8.016392958690384756e-24
+2.652500000000000000e+02 1.146585102788005410e-23 -6.390620801714850685e-24
+2.655000000000000000e+02 -6.112171347435815439e-24 1.026477481219088078e-23
+2.657500000000000000e+02 2.355719519619799473e-24 -3.968348237741993282e-24
+2.660000000000000000e+02 -7.796552370832237129e-24 7.539470904651313168e-24
+2.662500000000000000e+02 7.826206194653835492e-24 -9.084085294545160024e-24
+2.665000000000000000e+02 -3.326288775164938245e-24 2.829707751517233459e-24
+2.667500000000000000e+02 6.955628722306754715e-24 -5.208736627465197811e-24
+2.670000000000000000e+02 -7.407287251867248566e-24 9.408143644793858192e-24
+2.672500000000000000e+02 3.821664793140981915e-24 -6.302460957172207067e-24
+2.675000000000000000e+02 -3.926696004583739185e-24 6.528936698203922119e-24
+2.677500000000000000e+02 1.163565015638502473e-23 -6.685696213648933844e-24
+2.680000000000000000e+02 -2.774825020776908725e-24 2.024388058928799800e-24
+2.682500000000000000e+02 2.826433441795761770e-24 -9.151094806936650986e-24
+2.685000000000000000e+02 -4.338265361979107267e-25 9.336414065602333258e-24
+2.687500000000000000e+02 4.521358645440917195e-24 -1.077644512758114737e-23
+2.690000000000000000e+02 8.468900398307405621e-25 1.251108758405419170e-23
+2.692500000000000000e+02 4.267730928959817700e-24 -9.450387112843409914e-24
+2.695000000000000000e+02 -3.059854389606872547e-25 4.527363071223171934e-24
+2.697500000000000000e+02 3.049939772104772107e-24 -7.219452115331293311e-24
+2.700000000000000000e+02 -4.574665044842240672e-24 5.428833133956479412e-24
+2.702500000000000000e+02 9.229475311836900146e-24 -5.972636582326904189e-24
+2.705000000000000000e+02 -8.434468399773568142e-24 1.079242281605068749e-23
+2.707500000000000000e+02 4.417572460900638782e-24 -9.031888419357904832e-24
+2.710000000000000000e+02 -5.480195754915771751e-24 4.003999365823075670e-24
+2.712500000000000000e+02 4.263820009999130844e-24 -4.029965190654734955e-24
+2.715000000000000000e+02 -2.558943556160862971e-24 1.581508646618579280e-23
+2.717500000000000000e+02 1.146971552187572309e-23 -1.354086035645234954e-23
+2.720000000000000000e+02 -1.361352574458912167e-24 2.726153257997097056e-25
+2.722500000000000000e+02 -2.010556618690938724e-24 -5.792293810773878268e-24
+2.725000000000000000e+02 -3.845780293522220031e-24 7.511253862211490293e-24
+2.727500000000000000e+02 4.837643270153313616e-24 -9.145824368106471492e-24
+2.730000000000000000e+02 -3.152376591004649345e-24 1.164070173803215247e-23
+2.732500000000000000e+02 4.507756415603537278e-24 -1.148963951390525638e-23
+2.735000000000000000e+02 3.441724817480729327e-24 9.337161094579594549e-24
+2.737500000000000000e+02 5.136426958699865008e-24 -7.846874468798128915e-24
+2.740000000000000000e+02 -5.460970081451200161e-24 1.248774122980705318e-23
+2.742500000000000000e+02 -9.452907400426287395e-25 -7.108769132554037719e-24
+2.745000000000000000e+02 -6.967771474171288845e-25 -1.460644612841345986e-24
+2.747500000000000000e+02 -5.766396261346410432e-24 -1.554991283631775431e-23
+2.750000000000000000e+02 1.962889038445194468e-24 7.166700812808855823e-24
+2.752500000000000000e+02 -4.346635586959490655e-25 -8.308493342002933552e-24
+2.755000000000000000e+02 -1.036866720356486768e-24 1.331143801113529853e-23
+2.757500000000000000e+02 1.551870378408983411e-24 -5.317242711998983418e-24
+2.760000000000000000e+02 -2.268013839608960429e-24 8.907237653004325067e-24
+2.762500000000000000e+02 5.560160946466458745e-24 -6.226887153965202423e-24
+2.765000000000000000e+02 3.031117230091733377e-24 1.022470438548874864e-23
+2.767500000000000000e+02 -5.257389540735299973e-24 -4.696540884970021790e-24
+2.770000000000000000e+02 7.181220109882971606e-25 8.125778979266001966e-24
+2.772500000000000000e+02 -2.650341278798190501e-24 -5.777955267181167285e-24
+2.775000000000000000e+02 3.804478570631911913e-24 4.624341639616645359e-24
+2.777500000000000000e+02 1.849757209045565303e-24 -4.934485662985393594e-24
+2.780000000000000000e+02 6.218080345059840366e-24 1.043773861099950457e-23
+2.782500000000000000e+02 -2.973951180700191923e-24 -5.961119481546085418e-24
+2.785000000000000000e+02 3.266946206264529016e-25 1.318407987218573278e-23
+2.787500000000000000e+02 -5.952251637834147340e-25 -1.304744250939225967e-23
+2.790000000000000000e+02 2.920991768548755268e-24 1.055357401902138167e-23
+2.792500000000000000e+02 -4.152487702783997204e-24 -3.421536885421493096e-24
+2.795000000000000000e+02 4.532690186508105049e-24 1.037596152320926009e-23
+2.797500000000000000e+02 -2.266127272976660745e-24 -1.611075788560995367e-23
+2.800000000000000000e+02 -7.057377639091995972e-24 1.200033085102103923e-23
+2.802500000000000000e+02 -1.121768815852083415e-23 -9.168411287011465052e-24
+2.805000000000000000e+02 -1.358830194804242393e-24 4.976490086262202510e-24
+2.807500000000000000e+02 3.226171852431847369e-24 -7.442662011327653644e-24
+2.810000000000000000e+02 5.976507843364194634e-24 1.040106954141051934e-23
+2.812500000000000000e+02 -1.438928750413959462e-24 -6.828987932643674948e-24
+2.815000000000000000e+02 1.284348722075968297e-24 1.548931698730921665e-23
+2.817500000000000000e+02 -3.313803737718065230e-24 -1.009874713857656182e-23
+2.820000000000000000e+02 5.090370603315584147e-24 5.512207554629369317e-24
+2.822500000000000000e+02 -4.509025249501639515e-24 1.875518665599126938e-24
+2.825000000000000000e+02 8.025190740403451205e-24 5.399176789606715687e-24
+2.827500000000000000e+02 2.329528417250693807e-24 -1.026206035467136991e-23
+2.830000000000000000e+02 7.499413293684547980e-24 1.063571678868884973e-23
+2.832500000000000000e+02 -5.683744793026143187e-24 -7.570861405556691498e-24
+2.835000000000000000e+02 3.065940031344087188e-24 3.583586072058606907e-24
+2.837500000000000000e+02 -3.872009129846910320e-24 -1.157617817370318643e-23
+2.840000000000000000e+02 4.823586529272276875e-24 1.019458411831583235e-23
+2.842500000000000000e+02 -9.069335475684657201e-24 -1.077564859290158821e-23
+2.845000000000000000e+02 8.562767939219405954e-24 9.854611006204928297e-24
+2.847500000000000000e+02 -7.280459246990121868e-24 -2.832130650564175724e-25
+2.850000000000000000e+02 4.671110095813318007e-24 6.831299852634450679e-24
+2.852500000000000000e+02 -3.883719834251066578e-24 -6.143997704488617093e-24
+2.855000000000000000e+02 3.395144273890874496e-24 1.828555666226415489e-23
+2.857500000000000000e+02 1.046295084755461916e-25 -1.344573714106088441e-24
+2.860000000000000000e+02 5.671087699729552567e-24 1.035753892304464880e-23
+2.862500000000000000e+02 -9.801900364979750196e-25 -4.577263252103074638e-24
+2.865000000000000000e+02 7.251857565264865757e-24 -9.545134912879420616e-25
+2.867500000000000000e+02 -7.004568978434207219e-24 -8.928691596271622493e-26
+2.870000000000000000e+02 9.651945718879020432e-24 2.394847664984067735e-24
+2.872500000000000000e+02 -1.463085141540911109e-25 -7.631610278863892277e-24
+2.875000000000000000e+02 9.473767770443430402e-25 3.265306645248291430e-24
+2.877500000000000000e+02 -5.587000770883647831e-24 -7.902915908540881505e-24
+2.880000000000000000e+02 3.502126538095059464e-24 8.800678793173662119e-24
+2.882500000000000000e+02 -3.530671622105129748e-24 -6.711834472531165408e-24
+2.885000000000000000e+02 6.514282376142314697e-24 7.149159255149488882e-24
+2.887500000000000000e+02 3.864437751319002041e-24 -7.804777297301542032e-25
+2.890000000000000000e+02 1.761582754186295199e-24 5.181661539906056529e-24
+2.892500000000000000e+02 -5.990597257030760498e-24 -4.133460774880487739e-24
+2.895000000000000000e+02 9.500455279929505111e-24 -3.280126955088938320e-24
+2.897500000000000000e+02 -4.736489144550624363e-25 -4.862811468049592169e-24
+2.900000000000000000e+02 2.139901979629065495e-24 3.695046181116097998e-24
+2.902500000000000000e+02 -1.916003219365271382e-24 -1.048961300059967821e-23
+2.905000000000000000e+02 3.620969005099720237e-24 -4.098255355847757946e-24
+2.907500000000000000e+02 -2.590493550807314607e-24 2.905053971711613566e-24
+2.910000000000000000e+02 7.450937627520357461e-24 3.180757981884214084e-24
+2.912500000000000000e+02 1.470098046728355632e-24 -5.346504842489829595e-24
+2.915000000000000000e+02 -6.583151193346859635e-25 3.779654503578174806e-24
+2.917500000000000000e+02 -7.934588428803386256e-24 -6.664631272613382253e-24
+2.920000000000000000e+02 7.197835593884159275e-24 -5.807846604293779867e-25
+2.922500000000000000e+02 -8.994382675749105785e-24 2.244506027993517352e-24
+2.925000000000000000e+02 2.990572038187829743e-24 3.969878758423178050e-24
+2.927500000000000000e+02 -1.522584359361869635e-24 -4.568497236075232518e-24
+2.930000000000000000e+02 1.883379751058265302e-24 6.888823624872181463e-24
+2.932500000000000000e+02 -7.199828179000760503e-24 -3.496824412298009438e-25
+2.935000000000000000e+02 5.007596351030372408e-24 6.573400593490824787e-24
+2.937500000000000000e+02 -1.053897110142249965e-23 3.244923097291413519e-24
+2.940000000000000000e+02 1.308482566243082446e-23 2.670285565248773616e-26
+2.942500000000000000e+02 -9.186017329466124363e-24 2.077155283225179468e-24
+2.945000000000000000e+02 -2.284981411947530156e-24 4.411440179998699401e-24
+2.947500000000000000e+02 -5.420532263932933556e-24 -4.371410547564267956e-24
+2.950000000000000000e+02 3.168488861859876647e-24 -1.039438348992406152e-24
+2.952500000000000000e+02 -1.967815892178877353e-24 2.070118636242963216e-24
+2.955000000000000000e+02 8.821726960125857148e-24 -1.694781913545269192e-24
+2.957500000000000000e+02 -1.047965053583067169e-23 -3.620414616779998455e-24
+2.960000000000000000e+02 8.411306207255791462e-25 5.231665232868839754e-24
+2.962500000000000000e+02 -8.643545749392719806e-24 -5.375210300724878247e-24
+2.965000000000000000e+02 1.309049728936746326e-23 6.626026948653287835e-25
+2.967500000000000000e+02 -5.176258239442876216e-24 1.346849412159832973e-24
+2.970000000000000000e+02 1.061324492440209355e-23 -6.860636534708341106e-24
+2.972500000000000000e+02 -4.427201286084380288e-24 -3.189033518300766676e-25
+2.975000000000000000e+02 4.834077813716382253e-24 -8.779768291856421983e-25
+2.977500000000000000e+02 -1.000240080351627558e-23 -2.367510100003696302e-24
+2.980000000000000000e+02 4.532506155963111221e-24 -3.024787638139052422e-25
+2.982500000000000000e+02 -7.231342289587197542e-25 1.951977348699055801e-24
+2.985000000000000000e+02 5.046383842478538891e-24 -2.155617452413386962e-24
+2.987500000000000000e+02 -2.942900040189797945e-24 2.111040507546103561e-24
+2.990000000000000000e+02 5.782884262837470845e-24 3.706221295650110193e-24
+2.992500000000000000e+02 4.710367773537687199e-24 -5.788176462012774893e-24
+2.995000000000000000e+02 1.465753570303068641e-24 1.292314918507599758e-24
+2.997500000000000000e+02 -1.493347468858621377e-24 -6.277144775307543958e-24
+3.000000000000000000e+02 6.947275652750003611e-24 4.311653536182164131e-24
+3.002500000000000000e+02 -1.565311280056506836e-24 -1.638903609324292214e-24
+3.005000000000000000e+02 1.079265015727448935e-23 -6.207004742467549258e-24
+3.007500000000000000e+02 -6.244180226788814870e-24 -4.104587088291125623e-24
+3.010000000000000000e+02 1.867284408035069444e-24 3.079573383363577075e-24
+3.012500000000000000e+02 -3.373632239256430671e-24 -2.532981572140364652e-24
+3.015000000000000000e+02 6.432573844602186431e-24 -4.757447179759766494e-24
+3.017500000000000000e+02 -8.688852845846934692e-24 -6.791564119127180618e-24
+3.020000000000000000e+02 3.718970155640186301e-24 -4.258120923050561221e-25
+3.022500000000000000e+02 -5.735151384845045117e-24 -8.416395446654235998e-25
+3.025000000000000000e+02 9.321068615278049382e-24 -5.098851391615049585e-24
+3.027500000000000000e+02 2.160776252620619307e-24 -2.961531350495130766e-24
+3.030000000000000000e+02 3.928918521110493172e-24 -4.210417411988038951e-24
+3.032500000000000000e+02 1.248535855204454844e-25 4.903652506431524269e-24
+3.035000000000000000e+02 -3.597921692331307215e-24 -3.659183930725590474e-24
+3.037500000000000000e+02 -5.189760307456265943e-24 1.274679558427270049e-24
+3.040000000000000000e+02 -1.589122975293135757e-24 4.329077435290248271e-24
+3.042500000000000000e+02 -4.259919454394018828e-24 2.137382208610742080e-24
+3.045000000000000000e+02 6.701788743268650519e-24 -8.831530443667885139e-25
+3.047500000000000000e+02 -5.534363069866324422e-24 -4.581578064785572923e-24
+3.050000000000000000e+02 3.339201574415087624e-24 2.378905250245570774e-24
+3.052500000000000000e+02 4.093572893653451967e-24 2.368927258989824924e-24
+3.055000000000000000e+02 5.129883564817961834e-24 1.623223616670072867e-24
+3.057500000000000000e+02 7.284523784813888530e-24 -4.872146945722324700e-25
+3.060000000000000000e+02 2.816825497710464460e-24 2.863826428940727019e-24
+3.062500000000000000e+02 -9.954457359588472870e-24 8.994806724166692541e-24
+3.065000000000000000e+02 4.862724804725387063e-24 7.899754242789295658e-25
+3.067500000000000000e+02 -3.811889722411273543e-24 -4.680256073390969261e-24
+3.070000000000000000e+02 -2.451895657156891818e-24 1.124601758057236089e-24
+3.072500000000000000e+02 -6.126863619957657847e-24 1.723993994405618112e-24
+3.075000000000000000e+02 -3.865109751823464352e-24 2.136466662496233862e-25
+3.077500000000000000e+02 4.977193753005203722e-24 3.870590461988433210e-24
+3.080000000000000000e+02 -3.239149159787811925e-24 -1.527744913708081913e-24
+3.082500000000000000e+02 4.547000213596124490e-24 5.666664809131424159e-24
+3.085000000000000000e+02 1.253716490805035608e-24 1.201774163365324295e-24
+3.087500000000000000e+02 -2.108433347839250455e-24 -1.946008596162770549e-24
+3.090000000000000000e+02 3.690207076504204938e-24 -7.203556972149049918e-25
+3.092500000000000000e+02 1.389971787337925169e-24 1.319846398414697930e-24
+3.095000000000000000e+02 -4.082414283642078774e-24 -9.441026332280402655e-25
+3.097500000000000000e+02 -1.658394866204417510e-24 -2.516496625263043206e-24
+3.100000000000000000e+02 -5.436398333196254790e-24 -3.678710016513321028e-24
+3.102500000000000000e+02 -6.479216807061262482e-25 1.767134951364869075e-24
+3.105000000000000000e+02 -1.704734535356195614e-25 -1.052082558914813719e-23
+3.107500000000000000e+02 -3.178163520082358150e-24 4.815844381089266246e-25
+3.110000000000000000e+02 6.670325676113066702e-24 -9.235945777009224414e-24
+3.112500000000000000e+02 -8.785208428500481417e-24 5.380510211649294495e-24
+3.115000000000000000e+02 1.679435973404642470e-24 -1.519991607783083782e-24
+3.117500000000000000e+02 -6.586957542737844787e-26 5.803226293822662982e-25
+3.120000000000000000e+02 2.580459102324243594e-24 -1.462118160473818523e-24
+3.122500000000000000e+02 5.664163297955972851e-24 1.931262210705868526e-24
+3.125000000000000000e+02 3.684726960017001631e-24 -3.999706748160789834e-24
+3.127500000000000000e+02 -5.714751871388043636e-24 7.609214458417912048e-24
+3.130000000000000000e+02 1.878337493399207630e-26 7.169236302952243006e-25
+3.132500000000000000e+02 -2.221055967385671493e-24 1.740240824990084231e-25
+3.135000000000000000e+02 5.281580278612645104e-24 -4.636986325750655231e-24
+3.137500000000000000e+02 1.642141320694940949e-24 -1.708350263305857094e-24
+3.140000000000000000e+02 2.654949897343165649e-24 -3.225821427008729337e-24
+3.142500000000000000e+02 3.814370708892537574e-25 3.903140815083543721e-24
+3.145000000000000000e+02 2.610561256372052138e-24 7.134092163336477815e-25
+3.147500000000000000e+02 2.627752271522855994e-25 6.356235758956076809e-24
+3.150000000000000000e+02 2.501607846593546706e-24 -3.757154492511970675e-24
+3.152500000000000000e+02 6.169919093355698427e-24 -6.158693762900784665e-25
+3.155000000000000000e+02 5.058416172608538823e-24 -8.172127577436946543e-24
+3.157500000000000000e+02 2.423543518429434075e-24 2.292351860026940465e-24
+3.160000000000000000e+02 3.674544819598632507e-24 -2.726247137608298515e-24
+3.162500000000000000e+02 1.989359265499780658e-24 1.416452660102359708e-24
+3.165000000000000000e+02 -4.396634417048498351e-24 -4.927717682288425576e-24
+3.167500000000000000e+02 1.015188784543548682e-24 5.050812496752830560e-24
+3.170000000000000000e+02 -2.286508878273175128e-24 -3.059173178244785622e-24
+3.172500000000000000e+02 6.029489620070602171e-24 2.009485813638615342e-24
+3.175000000000000000e+02 1.651741959559042865e-24 2.939467951240971819e-24
+3.177500000000000000e+02 3.840018974974912123e-25 2.287886962378673543e-24
+3.180000000000000000e+02 6.774055824684860212e-24 1.620849178757286890e-24
+3.182500000000000000e+02 -3.791547237613127778e-24 3.546172885031078843e-24
+3.185000000000000000e+02 -4.536612829841053242e-24 -6.196272229351500759e-25
+3.187500000000000000e+02 1.012419943947694258e-24 3.419795589762060148e-24
+3.190000000000000000e+02 2.421845179823451743e-24 -1.090287433956135023e-25
+3.192500000000000000e+02 1.793232291369754403e-24 4.800308163677585560e-24
+3.195000000000000000e+02 -5.843464385754542229e-25 1.293861355805613686e-24
+3.197500000000000000e+02 8.391130085050254419e-25 2.958833051439394044e-24
+3.200000000000000000e+02 -1.611439014827780423e-24 -2.308914346053208998e-24
+3.202500000000000000e+02 -5.609057239195695479e-24 8.470933517232775155e-24
+3.205000000000000000e+02 3.026587786225179810e-24 -7.675038668275595221e-24
+3.207500000000000000e+02 1.569615695071761840e-25 2.047699753181544634e-26
+3.210000000000000000e+02 -4.790148063945309327e-24 2.062439655114003522e-24
+3.212500000000000000e+02 -5.719812919235689336e-24 3.589940039242836158e-24
+3.215000000000000000e+02 -4.093627612384317255e-24 -6.470873567241919288e-24
+3.217500000000000000e+02 1.238756970438540875e-24 1.048669639073701497e-23
+3.220000000000000000e+02 -3.362283635240001462e-24 1.927490019072379521e-24
+3.222500000000000000e+02 1.017819133572945229e-24 3.006791112292732025e-24
+3.225000000000000000e+02 -5.110436203524248991e-24 -2.150103559453795812e-24
+3.227500000000000000e+02 -9.851083560313150689e-25 -2.829283837238055160e-24
+3.230000000000000000e+02 1.538171530961357321e-24 4.609742882234540984e-24
+3.232500000000000000e+02 -3.206424993384791701e-24 4.498954699807261160e-24
+3.235000000000000000e+02 -2.671522009325744419e-24 -2.082143620232796544e-24
+3.237500000000000000e+02 -4.939224695134983864e-24 1.173918989344531152e-24
+3.240000000000000000e+02 3.782260927666178073e-24 3.311340050689199045e-24
+3.242500000000000000e+02 -1.693047582667570880e-24 5.271194896066920338e-25
+3.245000000000000000e+02 -6.130253778891423029e-26 2.284679153102744725e-24
+3.247500000000000000e+02 -6.477443935187790440e-24 2.850978129653786062e-24
+3.250000000000000000e+02 -2.489997836805571401e-24 2.600956393489523611e-24
+3.252500000000000000e+02 4.480595542534383895e-25 -1.239886783977185495e-24
+3.255000000000000000e+02 2.377201407277735746e-24 -1.463942751955743789e-24
+3.257500000000000000e+02 5.892644591540406752e-25 6.514980317853394250e-24
+3.260000000000000000e+02 -6.972152625649691979e-24 -1.037520166043299934e-24
+3.262500000000000000e+02 1.576143063787600683e-25 2.454433590333222559e-24
+3.265000000000000000e+02 -4.286946883429044187e-25 3.159230428574491378e-25
+3.267500000000000000e+02 1.863152208616770396e-24 -1.552836672606756474e-24
+3.270000000000000000e+02 1.473529471637535487e-24 -1.576975785223321067e-24
+3.272500000000000000e+02 -3.052416536278188172e-24 -2.265869841899852693e-24
+3.275000000000000000e+02 -7.210134803275554273e-25 -9.767672103526931840e-25
+3.277500000000000000e+02 2.845205198683835401e-24 -4.010065043319543072e-24
+3.280000000000000000e+02 2.404601044642913288e-24 -2.718770278756017736e-24
+3.282500000000000000e+02 -2.978025349901433873e-24 3.195876305318202519e-24
+3.285000000000000000e+02 -3.378113152981732569e-24 -1.302899533079923339e-25
+3.287500000000000000e+02 1.466392339113095247e-24 6.987596193975788912e-24
+3.290000000000000000e+02 -1.941205808509621772e-24 -1.388892261069769760e-24
+3.292500000000000000e+02 -5.029395190422082682e-25 -6.917921442724501719e-25
+3.295000000000000000e+02 2.588490363110113859e-24 1.488917781436940803e-24
+3.297500000000000000e+02 1.171442708976870261e-24 1.991109229340220721e-24
+3.300000000000000000e+02 1.566567540206265446e-24 3.926862468164896950e-24
+3.302500000000000000e+02 2.947305530819232117e-24 1.589157197766877191e-24
+3.305000000000000000e+02 -4.683405126196439692e-24 -2.605115306480602678e-24
+3.307500000000000000e+02 3.443543207369006332e-24 -6.908909113500250721e-24
+3.310000000000000000e+02 -8.550436891769117671e-25 -5.471455124313163865e-24
+3.312500000000000000e+02 -5.359310313586356969e-24 2.233399336251973962e-24
+3.315000000000000000e+02 1.859779625823533812e-25 -3.781988344079015442e-24
+3.317500000000000000e+02 1.606597389867688716e-24 3.203716449749857286e-24
+3.320000000000000000e+02 6.224468936993477878e-25 5.671865984148421037e-24
+3.322500000000000000e+02 -1.203114983384127627e-24 1.690354774618936678e-24
+3.325000000000000000e+02 2.954989699837893822e-24 -4.115085778687844865e-24
+3.327500000000000000e+02 -2.171016109594530120e-24 3.231500420665189657e-25
+3.330000000000000000e+02 -2.259508212027805252e-24 2.456837224865901444e-24
+3.332500000000000000e+02 4.854745925034455789e-24 4.422621473529800912e-24
+3.335000000000000000e+02 1.067728142853400416e-24 -3.956797515831167036e-24
+3.337500000000000000e+02 1.670736565885645053e-24 2.072730502079567080e-24
+3.340000000000000000e+02 5.699121380313185735e-24 -6.649597813834191181e-24
+3.342500000000000000e+02 -6.708722727792890021e-26 4.541915779047732263e-24
+3.345000000000000000e+02 -7.771354495642516579e-24 1.016954627110024027e-23
+3.347500000000000000e+02 1.646839847258325984e-24 1.751675580325952984e-24
+3.350000000000000000e+02 -2.341750906493068960e-24 2.472172362231352398e-24
+3.352500000000000000e+02 -4.555357832133415657e-25 -1.808192827580010202e-24
+3.355000000000000000e+02 -4.231791964211696062e-24 5.036070677479905198e-25
+3.357500000000000000e+02 -3.024399939172588559e-24 6.107803920838989176e-24
+3.360000000000000000e+02 -3.244733860776209482e-24 1.320637223177593002e-24
+3.362500000000000000e+02 2.335821087617699286e-24 2.491367115216347112e-24
+3.365000000000000000e+02 -5.292167764256573762e-24 -2.461018588881231719e-24
+3.367500000000000000e+02 2.725661539182071369e-24 -1.271544846324314652e-24
+3.370000000000000000e+02 -2.920925706299472313e-24 3.895203273147382570e-25
+3.372500000000000000e+02 1.451468174954857943e-24 -2.369192581208666862e-24
+3.375000000000000000e+02 4.789863562546683393e-24 -1.703118929659708387e-24
+3.377500000000000000e+02 -9.040666737997669678e-25 6.813336145257295464e-24
+3.380000000000000000e+02 -9.454629599665681967e-26 4.563256460283181724e-24
+3.382500000000000000e+02 3.756159312242727565e-25 9.128827492530180467e-24
+3.385000000000000000e+02 2.847352063619543293e-24 3.147313098086826255e-24
+3.387500000000000000e+02 -4.784782516530138065e-24 5.738959044772560666e-24
+3.390000000000000000e+02 5.988340194753155920e-25 3.024305575870075853e-25
+3.392500000000000000e+02 -9.704353456829311612e-25 4.568620939100238307e-24
+3.395000000000000000e+02 -5.987989092381919156e-24 -3.883332914078648886e-24
+3.397500000000000000e+02 -2.611872172435517728e-24 1.620041066038253694e-25
+3.400000000000000000e+02 -2.914520948748763713e-24 -3.533006816079955584e-24
+3.402500000000000000e+02 1.499922467820467612e-24 4.096854032557733368e-24
+3.405000000000000000e+02 1.373092386267094010e-25 7.302719796027600948e-25
+3.407500000000000000e+02 3.931146791624261582e-24 -3.754157998339464354e-24
+3.410000000000000000e+02 -4.216343777336927416e-24 1.137110356792531633e-24
+3.412500000000000000e+02 5.860574781274126334e-25 2.392928153907257342e-24
+3.415000000000000000e+02 -3.789393223078928487e-25 -1.878558805593454379e-24
+3.417500000000000000e+02 3.692651755213394503e-24 -7.528321977570493729e-25
+3.420000000000000000e+02 -4.688279920560925257e-24 7.739548115012226570e-25
+3.422500000000000000e+02 3.286620577282218235e-25 3.337473707438948194e-24
+3.425000000000000000e+02 -6.514367850137670171e-24 -1.268190927667445257e-24
+3.427500000000000000e+02 -2.395208595385973958e-25 2.044446151469093913e-24
+3.430000000000000000e+02 -5.102260527230632427e-24 2.641555269312342464e-25
+3.432500000000000000e+02 -2.329628087707437985e-24 1.506152314274809209e-26
+3.435000000000000000e+02 1.505314360258545857e-25 -3.725860760050362165e-24
+3.437500000000000000e+02 2.714912157380189242e-25 -2.039272481944222784e-25
+3.440000000000000000e+02 -3.605111549684652507e-24 1.176998486804347282e-24
+3.442500000000000000e+02 5.658867264185404414e-24 2.657339755939151012e-24
+3.445000000000000000e+02 2.641918212665444220e-24 -1.568226109571865476e-24
+3.447500000000000000e+02 6.671777262533664136e-25 -2.727499692406692694e-24
+3.450000000000000000e+02 -3.434169528188610107e-24 3.428149475103623324e-24
+3.452500000000000000e+02 3.024822222638487003e-24 9.450514647379595808e-24
+3.455000000000000000e+02 -2.591288065178116006e-24 2.263389705017636332e-24
+3.457500000000000000e+02 1.831806905465549273e-25 -6.265041484256567043e-25
+3.460000000000000000e+02 1.105981796183252739e-24 -3.292647317436277138e-24
+3.462500000000000000e+02 -6.148982367797160554e-26 2.180183733790362111e-24
+3.465000000000000000e+02 -9.292997389207246676e-24 5.456335512573356525e-24
+3.467500000000000000e+02 1.257795652066315067e-24 -9.775639323589823097e-26
+3.470000000000000000e+02 3.658507634833993573e-24 3.398285927856352771e-24
+3.472500000000000000e+02 2.046692890483284827e-24 -1.461612613398074529e-24
+3.475000000000000000e+02 -3.215326865236125157e-24 2.692292342814588214e-24
+3.477500000000000000e+02 6.831736779216839664e-24 4.099108893336982981e-24
+3.480000000000000000e+02 -5.493883333346644899e-24 -1.856777142367036657e-25
+3.482500000000000000e+02 6.665617305621110676e-24 -4.674837546983519101e-24
+3.485000000000000000e+02 -2.301928333367309379e-24 -7.997561730493078323e-25
+3.487500000000000000e+02 -4.524702592813831988e-24 -2.203108105625949866e-24
+3.490000000000000000e+02 1.524593943234445835e-24 -3.027236510396874958e-24
+3.492500000000000000e+02 3.646306015241402609e-24 4.329500022829985264e-24
+3.495000000000000000e+02 6.254594639344669195e-25 2.482772068397156396e-24
+3.497500000000000000e+02 3.014674852399016097e-24 -1.116187355805862033e-24
+3.500000000000000000e+02 3.438796759598614628e-24 -2.630687796926807757e-24
+3.502500000000000000e+02 2.274172043223122802e-24 -4.475252665659368164e-25
+3.505000000000000000e+02 3.819999217324569033e-24 2.826133438347932240e-24
+3.507500000000000000e+02 2.516294689824719891e-24 -6.005392998091923899e-24
+3.510000000000000000e+02 2.267930056446100423e-24 1.194459908812150993e-24
+3.512500000000000000e+02 -9.419596163100438426e-25 3.380715657193514892e-24
+3.515000000000000000e+02 -2.510167047844590971e-24 4.337023895575362044e-24
+3.517500000000000000e+02 -3.033352336993645182e-24 3.950242236063475546e-24
+3.520000000000000000e+02 2.070812833805454778e-24 1.186053809191097240e-24
+3.522500000000000000e+02 -1.466513549155743323e-24 -6.465231258611884281e-24
+3.525000000000000000e+02 -1.845541695699382910e-24 -7.511532519738906432e-24
+3.527500000000000000e+02 -3.555437156060266339e-25 -3.324300478324812974e-24
+3.530000000000000000e+02 -1.386555396745983756e-24 -2.238783351735652348e-25
+3.532500000000000000e+02 -8.358919828647261483e-24 -1.590132813949270198e-24
+3.535000000000000000e+02 -5.074028345765364702e-24 2.055093675153979882e-24
+3.537500000000000000e+02 2.245492937287898382e-24 3.156732373557581701e-24
+3.540000000000000000e+02 -7.288637407360005441e-24 -3.552116894309046198e-24
+3.542500000000000000e+02 5.194492549402416765e-24 -8.899391039065321389e-24
+3.545000000000000000e+02 1.132207207629223237e-24 2.799139783224288161e-24
+3.547500000000000000e+02 -1.433221581974589064e-24 4.239811145113910600e-24
+3.550000000000000000e+02 -1.032374092491240207e-24 5.557505148024743657e-24
+3.552500000000000000e+02 1.179184563577215547e-25 -2.755330130931878524e-26
+3.555000000000000000e+02 2.086530272136146021e-24 1.565925600758044586e-25
+3.557500000000000000e+02 1.760700962689241692e-24 -4.161224606704147298e-24
+3.560000000000000000e+02 3.765550256341472255e-24 -9.153347642980612419e-24
+3.562500000000000000e+02 6.506446563662112744e-24 -2.886141693843709684e-25
+3.565000000000000000e+02 3.832338916837491034e-24 3.956150848319449109e-24
+3.567500000000000000e+02 -2.959531281361554955e-25 5.144531688519999275e-24
+3.570000000000000000e+02 1.424395410345448718e-24 2.328643501114109692e-24
+3.572500000000000000e+02 6.423038305509008795e-25 -1.851000140743053225e-24
+3.575000000000000000e+02 1.794305584598002566e-24 -1.280735580317358129e-24
+3.577500000000000000e+02 -8.986744831852159577e-24 -4.735984671020417508e-24
+3.580000000000000000e+02 -6.524542721310561246e-24 -2.488221004948205488e-24
+3.582500000000000000e+02 9.777002631841516639e-24 -1.310005940098650542e-24
+3.585000000000000000e+02 1.341522721209210049e-24 1.402018126085432072e-24
+3.587500000000000000e+02 6.296218016098326572e-24 -7.457121926179388301e-24
+3.590000000000000000e+02 3.752367150529438578e-24 1.427576862735063628e-24
+3.592500000000000000e+02 -1.882983169776762684e-24 4.157443360978709955e-24
+3.595000000000000000e+02 -2.601831432894341807e-24 -6.763517040505030193e-24
+3.597500000000000000e+02 1.464714280681023171e-24 -2.460751636998635402e-24
+3.600000000000000000e+02 -1.454817362617506077e-25 5.553162191645834783e-24
+3.602500000000000000e+02 -3.743212497954272140e-24 -4.642759622569025769e-24
+3.605000000000000000e+02 -6.877726582012411861e-24 3.299377496172285073e-24
+3.607500000000000000e+02 2.549263727978663400e-24 3.699436192727117152e-24
+3.610000000000000000e+02 3.175408000488512708e-24 -2.487578644834459759e-24
+3.612500000000000000e+02 -5.487902485579705348e-24 2.634616027433153894e-24
+3.615000000000000000e+02 -4.691850083786297291e-25 1.201044064793714066e-24
+3.617500000000000000e+02 8.728331396473543372e-24 3.978646215888506892e-24
+3.620000000000000000e+02 -2.782475869983433325e-24 -2.112987767886073890e-24
+3.622500000000000000e+02 6.660392334059151313e-25 -2.086575298610740163e-24
+3.625000000000000000e+02 2.228701509236019375e-25 6.135222876260506903e-24
+3.627500000000000000e+02 5.881310762655239834e-24 4.443863604833372830e-25
+3.630000000000000000e+02 -2.393290156528801850e-24 4.389799561981506666e-24
+3.632500000000000000e+02 -3.538564673305884551e-24 1.542118796133438517e-24
+3.635000000000000000e+02 6.294901248058824820e-24 -1.255764255099471813e-24
+3.637500000000000000e+02 2.376097154946715596e-24 3.280537298266214069e-24
+3.640000000000000000e+02 -4.768875314507573676e-24 -6.446085396779489836e-25
+3.642500000000000000e+02 -1.765096209891177945e-24 -9.791822054419242791e-25
+3.645000000000000000e+02 -3.472805458315428480e-24 1.357765271409797870e-24
+3.647500000000000000e+02 3.656524643404549248e-24 7.428475717796620959e-24
+3.650000000000000000e+02 -4.779296587762847646e-24 2.027216528785766039e-24
+3.652500000000000000e+02 3.798871035088871740e-24 5.137105654483584265e-24
+3.655000000000000000e+02 4.485059214815581152e-24 2.551248131909664445e-24
+3.657500000000000000e+02 2.233721621812729614e-24 -6.023045801200460839e-24
+3.660000000000000000e+02 -3.574316319723259978e-24 -4.185896128776956667e-25
+3.662500000000000000e+02 -3.939418256291050497e-25 7.611966137301587651e-24
+3.665000000000000000e+02 6.151454528020418104e-24 -3.997206613346049596e-24
+3.667500000000000000e+02 -2.003369940400972954e-24 -1.938449379450450738e-24
+3.670000000000000000e+02 8.882132669273655183e-25 1.832561374733713040e-24
+3.672500000000000000e+02 6.157119999814839415e-24 -3.902012267098584586e-24
+3.675000000000000000e+02 -2.062310104401221900e-24 -1.144115597956918341e-24
+3.677500000000000000e+02 3.593044320769532718e-24 -9.225815091248557457e-24
+3.680000000000000000e+02 8.780871186737813447e-24 5.964996700489327161e-24
+3.682500000000000000e+02 4.125526458776534874e-24 -1.837354073291740373e-25
+3.685000000000000000e+02 2.434797821339197582e-25 -4.364464462285783138e-24
+3.687500000000000000e+02 8.894148574680535246e-25 2.118897110605531351e-24
+3.690000000000000000e+02 -3.174782437419163061e-24 -8.925089126692260431e-24
+3.692500000000000000e+02 2.632037842835494929e-24 -2.188962370636250830e-24
+3.695000000000000000e+02 -3.894032996217305228e-25 4.283695531152753063e-24
+3.697500000000000000e+02 -6.197551812686916919e-24 3.936830448661012648e-24
+3.700000000000000000e+02 1.240238278168013938e-24 8.654403107495757068e-25
+3.702500000000000000e+02 -3.661852099080952095e-24 1.150862218348584377e-24
+3.705000000000000000e+02 1.489114313562118040e-24 5.670375422724608791e-27
+3.707500000000000000e+02 8.563913447430378183e-24 -4.360490655354079525e-26
+3.710000000000000000e+02 -3.375802701768544471e-24 -1.368709615802909530e-24
+3.712500000000000000e+02 1.133313631192388943e-24 1.322955976923792696e-24
+3.715000000000000000e+02 1.543188173734119437e-24 -9.977553680721405041e-25
+3.717500000000000000e+02 -1.446728369404254769e-24 -8.873890794910729804e-25
+3.720000000000000000e+02 3.992116747866552351e-24 -1.074412400738401530e-24
+3.722500000000000000e+02 3.518857949263399729e-24 -8.391119661014230944e-26
+3.725000000000000000e+02 -7.793906261661747241e-25 3.503375726505595037e-24
+3.727500000000000000e+02 -1.566884811383036109e-24 2.077246999685717522e-24
+3.730000000000000000e+02 -3.764834637408168614e-24 3.559469558468024829e-24
+3.732500000000000000e+02 5.501985668180426731e-24 4.423895678222470134e-24
+3.735000000000000000e+02 -3.206891473099468922e-25 -4.910049897038880072e-25
+3.737500000000000000e+02 3.103371710262487935e-24 -4.486253587959966500e-24
+3.740000000000000000e+02 -1.190392444994981016e-24 -5.195255698778035414e-24
+3.742500000000000000e+02 -2.087136706553671087e-24 -2.124945577596503002e-24
+3.745000000000000000e+02 -4.716578364942184714e-24 -4.299760138446963352e-24
+3.747500000000000000e+02 -1.362085187245681570e-24 9.423842174972714476e-24
+3.750000000000000000e+02 4.086528968765412871e-24 5.534393601948942705e-25
+3.752500000000000000e+02 -9.878857232947465309e-25 -5.323231447579956759e-25
+3.755000000000000000e+02 2.702610093847675794e-24 2.592540845544813046e-24
+3.757500000000000000e+02 7.591082859748628041e-24 1.852703339145990623e-24
+3.760000000000000000e+02 3.657625771148202820e-24 -5.929057706715794687e-24
+3.762500000000000000e+02 -5.817221084789274064e-25 9.482591171362482701e-25
+3.765000000000000000e+02 9.510257674099666424e-24 -3.445558933769383894e-24
+3.767500000000000000e+02 -1.770026790331425439e-24 5.210654145737080091e-24
+3.770000000000000000e+02 -3.316583814780237974e-24 4.630585665637147804e-24
+3.772500000000000000e+02 -3.053851816471199467e-24 2.430396407772435721e-24
+3.775000000000000000e+02 3.272121174272982687e-24 -6.920628278115878703e-26
+3.777500000000000000e+02 -2.808847746698243018e-24 -5.334501584135017469e-24
+3.780000000000000000e+02 1.488392370000592479e-24 3.495110539762703336e-24
+3.782500000000000000e+02 7.996746519885341479e-24 2.803603357891437743e-24
+3.785000000000000000e+02 1.784357275132179867e-24 4.747916534172806775e-24
+3.787500000000000000e+02 -1.733784260780972667e-24 6.962563897991644980e-25
+3.790000000000000000e+02 -1.174989282665571408e-24 -2.346883241557642760e-24
+3.792500000000000000e+02 -5.031791104404691755e-24 -3.310169964089240109e-24
+3.795000000000000000e+02 3.967382696870503349e-24 2.665592781376467447e-24
+3.797500000000000000e+02 6.794766805256680268e-24 -7.259189366094008231e-24
+3.800000000000000000e+02 4.982032353373517244e-24 1.524698501821682164e-24
+3.802500000000000000e+02 -2.227881047296494058e-24 1.342094604732643164e-25
+3.805000000000000000e+02 -1.459932338427936361e-25 -1.085777607419356991e-24
+3.807500000000000000e+02 -5.226335505156008026e-24 1.358014619056718115e-24
+3.810000000000000000e+02 2.862619725856023019e-24 -2.306984192534438877e-24
+3.812500000000000000e+02 -4.055041512815576814e-24 -1.574340630192010623e-24
+3.815000000000000000e+02 1.319148016701769384e-24 1.020916724662977453e-24
+3.817500000000000000e+02 4.916633869225840802e-25 7.150117570114289177e-24
+3.820000000000000000e+02 1.754864764644166251e-24 -5.367551608012441114e-24
+3.822500000000000000e+02 -1.676037196306525636e-24 1.258317615429699959e-24
+3.825000000000000000e+02 3.077497604007070569e-25 1.113462125821333593e-24
+3.827500000000000000e+02 -1.780521150063585981e-24 -3.429718603296415658e-24
+3.830000000000000000e+02 -6.736716516626842022e-24 6.929943314729339080e-24
+3.832500000000000000e+02 -4.075654802857575871e-24 -2.779791393883438291e-24
+3.835000000000000000e+02 -1.155580175520886803e-24 -2.985171488843637671e-24
+3.837500000000000000e+02 5.457912717308325781e-24 5.016559326538345545e-24
+3.840000000000000000e+02 8.407948204508083736e-24 -1.455017831413828561e-25
+3.842500000000000000e+02 1.842386733980233102e-24 2.692133271304219366e-25
+3.845000000000000000e+02 3.447477215533384796e-24 1.059341930343315661e-24
+3.847500000000000000e+02 -1.754249548180939213e-24 1.093907594105375405e-24
+3.850000000000000000e+02 -3.536077981613746852e-24 -2.905407739929760396e-25
+3.852500000000000000e+02 1.888349718434267137e-24 -6.926989165640245420e-25
+3.855000000000000000e+02 -3.046744656382972568e-24 -5.039765721051970118e-24
+3.857500000000000000e+02 -1.505771632229438460e-24 -1.076464308385771932e-24
+3.860000000000000000e+02 4.194408309219751947e-24 8.693763168908627359e-25
+3.862500000000000000e+02 7.839766461996146556e-25 9.853179094722020166e-25
+3.865000000000000000e+02 2.070332534548416988e-25 5.747605013613634390e-24
+3.867500000000000000e+02 7.146865124565711814e-25 3.200409951415092949e-24
+3.870000000000000000e+02 -4.513347130782333218e-24 -1.026876659191212504e-23
+3.872500000000000000e+02 -1.117691493376911172e-25 6.573617932522118710e-25
+3.875000000000000000e+02 1.304844273926718022e-24 -3.529576314546411618e-24
+3.877500000000000000e+02 -1.828943956952668428e-24 -3.998822423060395589e-24
+3.880000000000000000e+02 -2.015604725737119668e-25 -2.570758471108320725e-24
+3.882500000000000000e+02 -8.918303519887196078e-25 -1.575626668655128339e-24
+3.885000000000000000e+02 1.608031504086369186e-24 -2.188515412712162048e-24
+3.887500000000000000e+02 3.897843397923171665e-24 -1.330915696602197110e-24
+3.890000000000000000e+02 3.378363362621106954e-24 5.153397211096511399e-25
+3.892500000000000000e+02 1.017209359785717664e-25 -2.378330539824148725e-24
+3.895000000000000000e+02 -1.178144130975021651e-23 -5.445846238544159478e-25
+3.897500000000000000e+02 -9.641789684278634933e-25 5.419467801148289302e-24
+3.900000000000000000e+02 5.540482034650201322e-24 -2.539159233707043893e-24
+3.902500000000000000e+02 1.639884635151072158e-24 -2.179889620991664322e-24
+3.905000000000000000e+02 -4.891079387044770091e-24 -2.793310713120937845e-24
+3.907500000000000000e+02 7.972315650116158054e-25 2.309070031561887027e-24
+3.910000000000000000e+02 5.646921128861545627e-24 -7.312114530206873598e-25
+3.912500000000000000e+02 -3.981746758303550348e-24 3.833820964056407531e-24
+3.915000000000000000e+02 -2.404669119204733757e-24 2.542274527596445750e-24
+3.917500000000000000e+02 4.465684606728580170e-24 2.718140560495809115e-24
+3.920000000000000000e+02 -6.825289897080276589e-25 8.434480030879936694e-25
+3.922500000000000000e+02 -8.862861318514368345e-25 3.910465358913426742e-24
+3.925000000000000000e+02 4.567993296090638510e-24 -1.119631634537019949e-23
+3.927500000000000000e+02 2.539867920575967900e-24 1.586744504544158348e-24
+3.930000000000000000e+02 7.857726496971113788e-24 -2.969273081016180137e-24
+3.932500000000000000e+02 -4.578971199212990292e-25 2.848706609731791867e-24
+3.935000000000000000e+02 7.456586811759180018e-24 2.339854127247070850e-24
+3.937500000000000000e+02 -4.504291699037656233e-25 -2.698636461997869170e-24
+3.940000000000000000e+02 -3.198830493218107534e-24 -1.030799906274318313e-25
+3.942500000000000000e+02 -3.852797161110157711e-24 1.558204779397836464e-24
+3.945000000000000000e+02 -5.858331076427046120e-24 4.350361090505072313e-24
+3.947500000000000000e+02 -4.579141377693705044e-24 1.427130994340263543e-24
+3.950000000000000000e+02 -5.196284143896265153e-24 5.026114982499447652e-24
+3.952500000000000000e+02 1.719752080502078637e-24 -3.777816488524287210e-25
+3.955000000000000000e+02 -1.754876824222654353e-24 4.127417155508783510e-24
+3.957500000000000000e+02 7.748378497895467530e-24 6.784062619147986633e-24
+3.960000000000000000e+02 -4.235012528651149143e-24 -7.690892373830944841e-24
+3.962500000000000000e+02 -1.623336084566278401e-24 4.645246456488690384e-24
+3.965000000000000000e+02 4.058783434710049654e-24 -4.722777888725675805e-24
+3.967500000000000000e+02 1.209085830066843417e-24 6.433268735918751298e-24
+3.970000000000000000e+02 4.295207525284836333e-24 2.650074490603858445e-24
+3.972500000000000000e+02 -2.858377969071652644e-24 1.187956540439941770e-24
+3.975000000000000000e+02 2.916333216799035711e-24 6.390066799644450133e-24
+3.977500000000000000e+02 -4.402186164840146866e-24 1.046088612795602183e-24
+3.980000000000000000e+02 5.084690523964208806e-24 1.927027192065959976e-24
+3.982500000000000000e+02 -3.994022645947730866e-24 1.402504499401188405e-24
+3.985000000000000000e+02 -6.901747184208746371e-24 -6.973876397947535498e-25
+3.987500000000000000e+02 9.539879368688684569e-25 -4.781306688493350446e-24
+3.990000000000000000e+02 2.611352596134186366e-25 -1.199306113689508841e-24
+3.992500000000000000e+02 -5.016372654129078425e-24 9.725053191576687026e-25
+3.995000000000000000e+02 -1.272770703827501243e-24 2.135796463924992256e-24
+3.997500000000000000e+02 -5.634840950616388194e-24 -3.892076636548652043e-25
+4.000000000000000000e+02 5.137479231881151226e-24 3.594019035848026816e-24
+4.002500000000000000e+02 2.149646596906539791e-24 3.687880263894028721e-24
+4.005000000000000000e+02 1.100191935163790723e-24 -5.670930123435800742e-24
+4.007500000000000000e+02 4.700561580164315041e-24 3.923086401770120560e-25
+4.010000000000000000e+02 -2.425880074074651673e-24 -8.067791453090873759e-24
+4.012500000000000000e+02 -3.881506297044539049e-24 -4.246417048413116148e-24
+4.015000000000000000e+02 -5.582756735874941988e-24 -2.664204796982550156e-24
+4.017500000000000000e+02 -1.868301489519013665e-24 2.247533060518746824e-24
+4.020000000000000000e+02 -4.205113243306973835e-25 2.154513468162340587e-24
+4.022500000000000000e+02 -8.001839245678252279e-24 -6.601831853257707797e-24
+4.025000000000000000e+02 4.691830133922583034e-24 6.451583707825273704e-25
+4.027500000000000000e+02 -4.400263267671599114e-24 -2.401222843238525397e-24
+4.030000000000000000e+02 -4.620582134585808771e-24 4.769470567142416526e-24
+4.032500000000000000e+02 -3.829716506862433961e-25 1.835274841040029629e-24
+4.035000000000000000e+02 -5.425000919507194251e-25 -2.592339053077027890e-24
+4.037500000000000000e+02 4.417992882606484149e-24 -1.810271007141078390e-24
+4.040000000000000000e+02 2.610342952284487899e-24 3.016238891976547396e-24
+4.042500000000000000e+02 4.919860534212220092e-24 3.183713272592875091e-24
+4.045000000000000000e+02 -3.282471648980661852e-24 -2.683632446259455621e-24
+4.047500000000000000e+02 3.776312926058535976e-24 -6.900869992418595951e-24
+4.050000000000000000e+02 1.477256425055443845e-24 4.650803848451611837e-25
+4.052500000000000000e+02 5.315053874511535669e-25 1.852954586654636844e-24
+4.055000000000000000e+02 1.921586395532941538e-24 1.799664629553853729e-24
+4.057500000000000000e+02 -6.984318580710752663e-24 -9.518629638718463143e-24
+4.060000000000000000e+02 1.207294707643900667e-24 -3.973152610622593031e-24
+4.062500000000000000e+02 -5.188747316209450652e-24 -1.648538491668019045e-24
+4.065000000000000000e+02 2.087239051137813810e-24 1.839526341056050530e-24
+4.067500000000000000e+02 2.367418247188467598e-24 1.232303186071774278e-24
+4.070000000000000000e+02 3.668904090335598244e-25 3.828671996028492981e-24
+4.072500000000000000e+02 2.342063140470277396e-24 -3.420100563433227810e-24
+4.075000000000000000e+02 2.809883821809273275e-24 -2.537592075232314961e-25
+4.077500000000000000e+02 7.395268357932723207e-24 -4.457468561421408631e-24
+4.080000000000000000e+02 -4.957647032442546287e-25 -3.619992835197686102e-25
+4.082500000000000000e+02 -3.754957826219013974e-24 -2.028995913135326109e-24
+4.085000000000000000e+02 -1.008666858980782133e-24 -5.824920012023932249e-24
+4.087500000000000000e+02 -3.369301913920765064e-24 -2.465051194531211149e-24
+4.090000000000000000e+02 -3.092711907227783802e-24 7.594703159021235447e-24
+4.092500000000000000e+02 6.199646823804403458e-24 9.507496956138682519e-25
+4.095000000000000000e+02 -3.619310358754549114e-25 3.518346594770236472e-24
+4.097500000000000000e+02 2.738889660713957006e-24 4.538169434840616201e-24
+4.100000000000000000e+02 -3.163811172666929279e-24 -3.735374136251634422e-24
+4.102500000000000000e+02 -3.200623074671789570e-24 2.329744554509918036e-24
+4.105000000000000000e+02 -2.589289835691176831e-24 2.060114771672697510e-28
+4.107500000000000000e+02 -1.314294950942121153e-24 -6.333781510295185963e-24
+4.110000000000000000e+02 3.324191329454398159e-24 8.641434545923457938e-25
+4.112500000000000000e+02 1.502773093392590079e-24 -3.535887183744062247e-24
+4.115000000000000000e+02 -1.407255851157528344e-24 5.218285454566326136e-24
+4.117500000000000000e+02 1.926588731155593320e-24 -2.837666658965983569e-24
+4.120000000000000000e+02 -5.930083437998478506e-24 -2.485938636522201144e-24
+4.122500000000000000e+02 -1.451557018346430226e-24 -6.837146874975983805e-24
+4.125000000000000000e+02 2.759434076507922439e-25 2.226105512742957373e-24
+4.127500000000000000e+02 -2.725493778433315723e-24 7.744124197379318977e-24
+4.130000000000000000e+02 -1.966001239374641777e-24 4.507480389195112409e-24
+4.132500000000000000e+02 1.783011832418522775e-25 2.822706810715062082e-24
+4.135000000000000000e+02 -1.618682831288841957e-24 9.842808325792390897e-25
+4.137500000000000000e+02 7.871239337813257604e-25 -4.241760413058752750e-24
+4.140000000000000000e+02 3.062442338179064453e-24 -4.440539956660206936e-26
+4.142500000000000000e+02 -2.929792233499692333e-24 2.109687335834676815e-24
+4.145000000000000000e+02 -3.595370799824902593e-24 4.914625985215842471e-24
+4.147500000000000000e+02 -4.615703372269339593e-25 1.942607883741791678e-24
+4.150000000000000000e+02 -3.587330070422689805e-24 -5.226515733721414412e-24
+4.152500000000000000e+02 -4.127802025800795816e-24 7.078876140652502058e-24
+4.155000000000000000e+02 -3.823593121480056436e-24 -1.491813983849807205e-24
+4.157500000000000000e+02 -9.272392541822224664e-24 6.694021267002364560e-24
+4.160000000000000000e+02 2.635229862741297500e-24 3.031123915144465344e-24
+4.162500000000000000e+02 -1.969365827836745030e-24 3.649101067454202049e-24
+4.165000000000000000e+02 5.842215166521642768e-24 6.022462418268532064e-25
+4.167500000000000000e+02 5.254194650020551762e-24 -3.721790498278919711e-24
+4.170000000000000000e+02 -3.450656288307118631e-25 2.061562418188148925e-24
+4.172500000000000000e+02 8.067137616622602709e-24 -2.652844309696554369e-24
+4.175000000000000000e+02 4.095426523211867495e-24 -1.896003222091723689e-24
+4.177500000000000000e+02 -7.568345306006737660e-24 2.437164453607122160e-24
+4.180000000000000000e+02 1.384737306738870660e-24 3.524060297243585566e-24
+4.182500000000000000e+02 -2.210116297852637308e-24 -8.381527885214673343e-25
+4.185000000000000000e+02 3.385024195415393693e-24 3.704271453269765763e-26
+4.187500000000000000e+02 8.286524119194537060e-25 -1.285190499581979914e-24
+4.190000000000000000e+02 -1.159364228509333081e-24 -4.358025531434188874e-24
+4.192500000000000000e+02 1.572582560489283981e-24 9.738486232930105618e-25
+4.195000000000000000e+02 2.299169981998973698e-24 1.362624489486323055e-24
+4.197500000000000000e+02 -1.182009671740615606e-24 -3.042537759084769033e-24
+4.200000000000000000e+02 -9.651370284984367598e-24 6.109157283896289465e-24
+4.202500000000000000e+02 -1.713877100997368920e-24 -8.443646103976667809e-24
+4.205000000000000000e+02 -3.880990029212026537e-24 -2.628683971221710630e-25
+4.207500000000000000e+02 4.457474502168119347e-24 -1.420834957685486558e-24
+4.210000000000000000e+02 -7.577988207871960911e-24 -1.751423610426795541e-24
+4.212500000000000000e+02 -7.277866175462568951e-24 6.172813524419073475e-24
+4.215000000000000000e+02 -1.694621296890334795e-24 -5.876397408971779776e-24
+4.217500000000000000e+02 6.783493485433021036e-25 -2.876410718066499391e-24
+4.220000000000000000e+02 2.746071088560969572e-24 2.396710981219577204e-24
+4.222500000000000000e+02 -2.417014692069790367e-24 -2.957276185953615102e-24
+4.225000000000000000e+02 -8.237213432844131917e-24 4.382889682181938273e-25
+4.227500000000000000e+02 2.864031000756753704e-24 -3.024091982074546442e-24
+4.230000000000000000e+02 -2.431282346504335745e-24 -5.233356552531018189e-24
+4.232500000000000000e+02 -9.338106338565392181e-25 -7.496803365731926959e-24
+4.235000000000000000e+02 4.634903893272674700e-24 -1.097071613786067241e-24
+4.237500000000000000e+02 -2.480356901945917746e-25 -5.869801446455430121e-24
+4.240000000000000000e+02 -5.926064944850834131e-24 -2.803782882908118430e-24
+4.242500000000000000e+02 4.087751490922790495e-24 -1.785982916533077157e-24
+4.245000000000000000e+02 -7.030279858490033743e-24 3.108845057392474489e-24
+4.247500000000000000e+02 -5.479534539838308519e-25 7.187836393107443588e-24
+4.250000000000000000e+02 2.861711876305077066e-24 6.003265991985762176e-24
+4.252500000000000000e+02 6.215424563081681856e-24 -5.951583025809495549e-25
+4.255000000000000000e+02 5.986807855722033646e-25 3.968240485336227957e-24
+4.257500000000000000e+02 -2.319110885293254029e-24 1.323909273042903848e-24
+4.260000000000000000e+02 3.431359278326284662e-25 1.576180380614741765e-24
+4.262500000000000000e+02 -2.361478341491277173e-24 5.957734467662190505e-24
+4.265000000000000000e+02 2.537086948080751544e-24 -7.886274606797376274e-24
+4.267500000000000000e+02 -1.645335036594874724e-24 2.722688372641043802e-24
+4.270000000000000000e+02 2.912686630535331942e-24 1.912334959720441201e-24
+4.272500000000000000e+02 -2.612391867248851496e-24 2.016598585267009318e-24
+4.275000000000000000e+02 -3.047710372943367875e-25 -1.311998859503344345e-24
+4.277500000000000000e+02 3.265013119039267480e-24 4.267019802204794061e-24
+4.280000000000000000e+02 3.766667556140736715e-24 2.898553948214819739e-25
+4.282500000000000000e+02 3.163569431282804422e-24 1.357560786258141512e-24
+4.285000000000000000e+02 5.654057826498077843e-24 -4.415106965032389235e-25
+4.287500000000000000e+02 -3.804325519027498774e-24 9.773982531899150910e-25
+4.290000000000000000e+02 6.095819712693836478e-25 2.349808207418767228e-24
+4.292500000000000000e+02 4.367346314129465633e-24 -1.356423102584784079e-24
+4.295000000000000000e+02 4.973057604115899614e-25 2.838040181167938148e-24
+4.297500000000000000e+02 -1.647642589034846220e-24 -6.046792664749224191e-24
+4.300000000000000000e+02 -7.106755836150888813e-26 6.509228908312512603e-25
+4.302500000000000000e+02 2.491361640784323165e-25 1.245040703131322423e-24
+4.305000000000000000e+02 -2.231756000904677522e-24 5.456753536455827637e-24
+4.307500000000000000e+02 -3.202990311600156938e-24 -2.109253916950308376e-24
+4.310000000000000000e+02 -1.510928253002407437e-24 -1.992303851803659147e-24
+4.312500000000000000e+02 1.532677874517972725e-24 2.421120549634988538e-24
+4.315000000000000000e+02 -3.539068029890060852e-24 -6.700805509882720369e-24
+4.317500000000000000e+02 -2.397508929875685756e-24 3.519044499892948656e-24
+4.320000000000000000e+02 8.218665985446835131e-25 4.570373290099679143e-24
+4.322500000000000000e+02 -2.892300898490414222e-24 7.780632617944316727e-25
+4.325000000000000000e+02 -3.826639643516053860e-24 -7.245787623600991946e-24
+4.327500000000000000e+02 -6.235895626299698156e-24 2.560339418146654197e-24
+4.330000000000000000e+02 1.360290227744353921e-24 1.556160001404959556e-24
+4.332500000000000000e+02 8.489308006796014015e-24 -3.710185072133509735e-24
+4.335000000000000000e+02 -6.835101310002249138e-24 -2.638661118756396014e-26
+4.337500000000000000e+02 1.255200569720437750e-24 -9.422838887786060414e-27
+4.340000000000000000e+02 -7.362752748197919540e-24 6.143410067985846081e-25
+4.342500000000000000e+02 2.065898064554670490e-24 6.548222811240969495e-25
+4.345000000000000000e+02 1.614608419257215501e-24 -7.400268328710657249e-26
+4.347500000000000000e+02 4.509146287933995332e-25 2.685256195737325278e-25
+4.350000000000000000e+02 1.936622407484654867e-25 -7.345187420407713349e-24
+4.352500000000000000e+02 5.969411356321790644e-24 6.274436570242762817e-24
+4.355000000000000000e+02 3.125596871265115733e-24 1.141537972267738923e-24
+4.357500000000000000e+02 4.766493331213140811e-24 -5.834005142175948132e-24
+4.360000000000000000e+02 5.146087068707198802e-25 1.105746817505933219e-23
+4.362500000000000000e+02 -8.249323773703167193e-25 -6.495852924113650483e-24
+4.365000000000000000e+02 -5.078351647063317519e-24 -4.861396564281405983e-25
+4.367500000000000000e+02 -1.245462365066717645e-24 4.815722632682274515e-25
+4.370000000000000000e+02 4.432144459577039739e-25 4.911268046575014231e-25
+4.372500000000000000e+02 3.677871871215030373e-24 -3.045528354219195852e-24
+4.375000000000000000e+02 -2.580353044661035291e-24 -4.970137998625698689e-25
+4.377500000000000000e+02 2.358257365592469344e-24 2.003584289268465320e-24
+4.380000000000000000e+02 -4.207483193421016541e-24 7.110488053929775359e-24
+4.382500000000000000e+02 -2.870870028949719339e-24 -1.535225443911106427e-24
+4.385000000000000000e+02 2.531863684909900601e-24 -3.617308120435399135e-24
+4.387500000000000000e+02 -2.709897047302440004e-24 5.348831035244816220e-25
+4.390000000000000000e+02 -4.068987501735943326e-24 2.539180099609800249e-24
+4.392500000000000000e+02 3.314376288935038124e-24 3.590330246855939132e-24
+4.395000000000000000e+02 7.047024506966176668e-24 2.626842128391430652e-24
+4.397500000000000000e+02 -5.410581015452877106e-24 -1.076932908000671823e-24
+4.400000000000000000e+02 -6.499237851841710456e-25 -4.621898893117212060e-24
+4.402500000000000000e+02 -1.202559631132475672e-24 2.288189857672107004e-24
+4.405000000000000000e+02 -6.425101875488057876e-25 -1.121541700348380446e-24
+4.407500000000000000e+02 -5.953043490458181059e-24 -1.025009387135562529e-24
+4.410000000000000000e+02 1.786398545069491760e-25 4.951514590105794702e-24
+4.412500000000000000e+02 -4.300875520853953996e-24 -6.782424089281029165e-25
+4.415000000000000000e+02 3.956673474362992586e-24 -4.376619981442855811e-24
+4.417500000000000000e+02 -6.488775256197318011e-24 1.755323165580728347e-24
+4.420000000000000000e+02 -2.501687633746128016e-24 -2.257419849213890377e-25
+4.422500000000000000e+02 -3.603328805816145807e-24 9.668312868650615890e-25
+4.425000000000000000e+02 1.621784223001901837e-24 -2.498731360253426063e-24
+4.427500000000000000e+02 9.122809947263482130e-24 1.109579606342473238e-24
+4.430000000000000000e+02 -1.284515782994792723e-24 1.782048376058953586e-24
+4.432500000000000000e+02 5.902491993067288692e-24 2.124011324683192735e-24
+4.435000000000000000e+02 -3.889851269339102629e-24 -1.884550864493060441e-24
+4.437500000000000000e+02 -1.124079459557138393e-24 -8.197161518061998743e-24
+4.440000000000000000e+02 1.069467076886306411e-24 1.315359047897491027e-24
+4.442500000000000000e+02 -1.890706284133030449e-24 2.234678049734370912e-24
+4.445000000000000000e+02 -7.989288573547085766e-24 -9.992019222716674055e-25
+4.447500000000000000e+02 -1.109819240405822334e-24 9.208600393298067503e-25
+4.450000000000000000e+02 3.712460740277800232e-24 3.865925812092905287e-24
+4.452500000000000000e+02 -4.025045663161016935e-24 1.945726356992923807e-24
+4.455000000000000000e+02 6.921581370745751450e-24 4.104926121624118027e-24
+4.457500000000000000e+02 1.550948345780383316e-24 -2.946174170781723703e-24
+4.460000000000000000e+02 -2.579337813777666404e-24 2.156988972557339380e-24
+4.462500000000000000e+02 -8.698959010712764642e-26 6.386233571111847573e-25
+4.465000000000000000e+02 9.693224970650132189e-25 -3.167013965221578732e-24
+4.467500000000000000e+02 -4.819794554915721252e-24 -1.086808238927736092e-23
+4.470000000000000000e+02 -5.811515737630369160e-25 1.600303778032074685e-24
+4.472500000000000000e+02 2.279808023446725554e-26 3.607979855602579129e-25
+4.475000000000000000e+02 4.040618806935225449e-24 -2.369530365549960929e-24
+4.477500000000000000e+02 -8.778725027421644183e-24 3.039918016891764081e-24
+4.480000000000000000e+02 -2.775397556768523934e-24 3.214437762099967300e-24
+4.482500000000000000e+02 -2.756787175152620250e-24 -2.109951084894549795e-24
+4.485000000000000000e+02 2.140826656300474849e-24 -3.682222998405012459e-25
+4.487500000000000000e+02 3.273390229825184819e-24 3.325186218173911673e-24
+4.490000000000000000e+02 -1.843014550797826639e-24 -1.816099911415771066e-24
+4.492500000000000000e+02 9.629473807454410708e-25 -2.245704855169552472e-24
+4.495000000000000000e+02 2.013232692385639522e-26 -6.168589054473991827e-25
+4.497500000000000000e+02 -2.114137106317661262e-24 2.472956004885992819e-24
+4.500000000000000000e+02 -7.359821760617228271e-24 -2.327398969281887559e-24
+4.502500000000000000e+02 -2.679116274557619229e-24 -1.591140277085937706e-24
+4.505000000000000000e+02 2.169799354937501936e-24 -4.225243437161979035e-24
+4.507500000000000000e+02 2.083730673317196006e-24 -1.795133301101552147e-24
+4.510000000000000000e+02 -7.060989568208781326e-25 2.528447456921356040e-24
+4.512500000000000000e+02 -8.845743543251981306e-24 4.919592547296493609e-24
+4.515000000000000000e+02 4.715222956080101623e-24 4.553479597716711379e-24
+4.517500000000000000e+02 1.066286798052177716e-24 -8.573925781991769343e-24
+4.520000000000000000e+02 -3.712271477908229042e-24 -3.055603820817547631e-24
+4.522500000000000000e+02 -2.762888530417702594e-24 -3.539037948637243164e-25
+4.525000000000000000e+02 -2.266801056563059142e-24 -1.625535243194260383e-24
+4.527500000000000000e+02 1.948118288245641671e-24 -1.981574972500722796e-24
+4.530000000000000000e+02 -6.224800843497953185e-24 3.431511875727752616e-25
+4.532500000000000000e+02 1.194488673344875331e-24 -4.576054058708235579e-24
+4.535000000000000000e+02 6.705736480617625434e-25 -3.100749147518283300e-24
+4.537500000000000000e+02 2.015997452630713616e-24 -4.237087732024585737e-26
+4.540000000000000000e+02 2.962470668923458670e-24 -9.710766427789672583e-25
+4.542500000000000000e+02 -6.958803895458464142e-24 -7.910949212546754737e-24
+4.545000000000000000e+02 9.396429762604289381e-24 -1.220453016945749361e-24
+4.547500000000000000e+02 -1.851904810743646143e-24 -2.470284431993910392e-24
+4.550000000000000000e+02 -4.084156205322524587e-24 3.615841213590595666e-24
+4.552500000000000000e+02 4.832453080993189300e-24 -7.699599551028775967e-24
+4.555000000000000000e+02 -6.058024478251638307e-26 3.708663692741373079e-24
+4.557500000000000000e+02 -7.656153918990088437e-25 6.013897312437246306e-24
+4.560000000000000000e+02 3.146390335292331514e-24 1.831345713700228643e-24
+4.562500000000000000e+02 6.782617788171394388e-24 -6.293906965173557481e-24
+4.565000000000000000e+02 -1.048730623061677971e-24 3.236581615433688092e-24
+4.567500000000000000e+02 -6.841593033839947274e-24 3.561172694822750058e-24
+4.570000000000000000e+02 3.618977102976343439e-24 -1.976281368045777528e-24
+4.572500000000000000e+02 -6.979301775037940248e-24 -4.898742460799221654e-24
+4.575000000000000000e+02 -3.877999898015812058e-24 2.358518920575920570e-24
+4.577500000000000000e+02 1.113357159034762489e-24 1.005683661215738099e-24
+4.580000000000000000e+02 -7.250890869583301310e-24 -1.155648713842202226e-24
+4.582500000000000000e+02 8.200884094333266238e-25 1.353610288588171458e-24
+4.585000000000000000e+02 -7.193919899286076910e-24 -2.698067070868548570e-24
+4.587500000000000000e+02 3.923934464629529387e-24 2.859638364802449757e-25
+4.590000000000000000e+02 -1.851459353188225064e-24 7.359460097272890093e-25
+4.592500000000000000e+02 -4.242908325993602070e-25 -1.053314527523248002e-24
+4.595000000000000000e+02 -3.023310111213715323e-24 -3.268904249791399617e-24
+4.597500000000000000e+02 2.567909582692609818e-25 -8.119555091993628049e-24
+4.600000000000000000e+02 -6.505411391057157526e-25 1.717698840326743729e-24
+4.602500000000000000e+02 -1.473823128416662774e-24 1.294668333161995815e-24
+4.605000000000000000e+02 -6.560060180180978751e-24 -2.371435014197359354e-24
+4.607500000000000000e+02 1.159517445974214206e-24 -6.845337910874267387e-25
+4.610000000000000000e+02 -8.013844522375440516e-24 -4.511417419956488204e-24
+4.612500000000000000e+02 -3.067291615336903905e-24 4.330222095292213635e-24
+4.615000000000000000e+02 -1.778257788317795550e-24 4.431267433398841269e-24
+4.617500000000000000e+02 -9.560455632402898832e-24 -3.596148704483739947e-24
+4.620000000000000000e+02 2.636924307032392564e-24 8.612270958806523686e-24
+4.622500000000000000e+02 -7.929261382830993564e-25 -5.560269692407860544e-24
+4.625000000000000000e+02 -5.498988652920528034e-24 9.364910188126106132e-25
+4.627500000000000000e+02 3.726046966332399611e-24 4.253349975132208759e-24
+4.630000000000000000e+02 -1.104227865920842041e-24 -7.063710661052645930e-25
+4.632500000000000000e+02 -4.107635550798409364e-24 2.801841616876919025e-24
+4.635000000000000000e+02 -2.530259205284992935e-24 9.638788882464922066e-26
+4.637500000000000000e+02 6.233231452792255927e-24 -1.099120301215825679e-24
+4.640000000000000000e+02 3.202289176422759742e-24 -1.792528811449428063e-24
+4.642500000000000000e+02 7.228917089374001541e-24 1.947310254719666655e-24
+4.645000000000000000e+02 -7.035323432096028886e-24 -4.102055899684392381e-24
+4.647500000000000000e+02 -7.266212717217555508e-24 -1.244428713826671803e-24
+4.650000000000000000e+02 1.365858663362899721e-24 -4.116929192286743487e-25
+4.652500000000000000e+02 3.628906787597911874e-24 -1.101208464481153003e-24
+4.655000000000000000e+02 3.953500102088396485e-25 -1.366726999045538735e-24
+4.657500000000000000e+02 2.807100393641184878e-25 5.583150123219259191e-24
+4.660000000000000000e+02 3.543351463228205742e-24 -2.146108503150353911e-24
+4.662500000000000000e+02 -4.059525855972361960e-25 -2.828114183315832606e-24
+4.665000000000000000e+02 -5.262063438191560983e-24 3.875055475232326217e-24
+4.667500000000000000e+02 5.326604609673600631e-25 2.269664467854803391e-24
+4.670000000000000000e+02 -9.147125971936931379e-25 1.852766732274713866e-25
+4.672500000000000000e+02 -2.299924736296761179e-24 1.030512655769527911e-24
+4.675000000000000000e+02 5.539541822504425973e-24 2.185917845991495053e-24
+4.677500000000000000e+02 -1.352138406101764421e-24 1.132465877329402929e-24
+4.680000000000000000e+02 1.017124618286619514e-24 3.024796102569163619e-24
+4.682500000000000000e+02 -5.402890429223666089e-24 5.916866261863320523e-24
+4.685000000000000000e+02 2.433361937057115668e-24 5.024084707020461353e-24
+4.687500000000000000e+02 -1.586702258439104798e-24 6.378207175972929152e-24
+4.690000000000000000e+02 -7.400946778251286010e-24 -6.994040778037181135e-24
+4.692500000000000000e+02 4.650381612592343981e-24 -1.542635781443353022e-24
+4.695000000000000000e+02 1.728582696436387134e-24 1.507391445602819015e-24
+4.697500000000000000e+02 -3.718471836389940966e-24 1.393327779048247591e-24
+4.700000000000000000e+02 -1.203661440935866427e-24 -6.785251488266971297e-25
+4.702500000000000000e+02 -4.440367672544937631e-24 -2.226208597707068296e-24
+4.705000000000000000e+02 2.991769519665099618e-24 -7.474891814274056793e-24
+4.707500000000000000e+02 -5.525910780802233714e-24 -1.580217814195161517e-24
+4.710000000000000000e+02 3.751155575701054100e-24 -3.369968866282210758e-24
+4.712500000000000000e+02 3.079247697310242729e-24 1.482967869671795338e-24
+4.715000000000000000e+02 -3.601739685022362377e-25 7.176648413610388019e-24
+4.717500000000000000e+02 7.617033872083143826e-24 1.198847294616494253e-24
+4.720000000000000000e+02 -2.770270065651082305e-24 -1.353225828588277947e-24
+4.722500000000000000e+02 3.231003373408303776e-24 -2.206813668836791959e-24
+4.725000000000000000e+02 -2.523056046968600162e-24 -7.497801662380057207e-24
+4.727500000000000000e+02 8.725260636629560540e-25 -2.052250584465546108e-24
+4.730000000000000000e+02 1.151682443970217817e-24 -3.146973036654780289e-24
+4.732500000000000000e+02 -7.125275368763821830e-25 -5.674943114581781936e-25
+4.735000000000000000e+02 -1.259888145058499880e-24 2.071151425006217084e-24
+4.737500000000000000e+02 2.428329835049641896e-25 7.125898231362697860e-24
+4.740000000000000000e+02 -3.802447670222368165e-24 -9.561267120712611652e-25
+4.742500000000000000e+02 3.169212162609211567e-24 -9.749334907912025744e-25
+4.745000000000000000e+02 2.811546340036360299e-24 3.581003897610430459e-24
+4.747500000000000000e+02 5.133526000008180569e-24 3.315233780196721820e-24
+4.750000000000000000e+02 1.944641935244482943e-24 2.006706600799594715e-24
+4.752500000000000000e+02 1.255336517612343572e-24 -3.289020364432994198e-24
+4.755000000000000000e+02 1.707422307213869478e-24 4.823582982480097572e-24
+4.757500000000000000e+02 -5.350656582896817809e-24 -1.732605912958274567e-25
+4.760000000000000000e+02 -2.515166924964146281e-24 -3.494826892203540579e-24
+4.762500000000000000e+02 -3.378296008609378732e-24 -7.930183753417699352e-25
+4.765000000000000000e+02 -9.165970950857726187e-24 -5.392711001018677579e-24
+4.767500000000000000e+02 -1.639466861274581248e-24 -6.955499663073350428e-25
+4.770000000000000000e+02 1.787208424460265066e-24 -2.019580051872095615e-24
+4.772500000000000000e+02 5.285290364288434709e-26 -2.631411707911865818e-24
+4.775000000000000000e+02 -1.642194080685104085e-24 4.235029536646591630e-24
+4.777500000000000000e+02 -6.979754127116325384e-24 4.318911940056223591e-25
+4.780000000000000000e+02 1.248331386998534029e-24 -3.405513943564240658e-25
+4.782500000000000000e+02 -1.624258175520593195e-24 6.732923502496404045e-24
+4.785000000000000000e+02 1.475006287854382346e-24 8.652072800147595643e-25
+4.787500000000000000e+02 -8.561508043160102918e-24 -1.304171483441935852e-24
+4.790000000000000000e+02 4.320417532420616431e-24 -4.024425158207457857e-24
+4.792500000000000000e+02 3.022501476194407793e-24 -1.552707422571517083e-24
+4.795000000000000000e+02 -1.857582303809688914e-24 -2.776239905382160289e-24
+4.797500000000000000e+02 -2.316130681679359103e-24 -7.191247893732149132e-25
+4.800000000000000000e+02 5.861871112161640562e-24 -9.420190821940498935e-25
+4.802500000000000000e+02 1.170084762273326447e-24 6.946769936735598777e-24
+4.805000000000000000e+02 8.761143141762386159e-25 8.673089940724537505e-25
+4.807500000000000000e+02 -6.926356930076964351e-24 4.133110284121001926e-24
+4.810000000000000000e+02 8.826289295643742521e-24 1.475533007754536674e-24
+4.812500000000000000e+02 8.573368045961072826e-24 2.289569307110324769e-24
+4.815000000000000000e+02 -5.363135183448848101e-26 2.177812780253651373e-24
+4.817500000000000000e+02 5.919404583889498811e-24 -7.669659974553104311e-24
+4.820000000000000000e+02 -4.742583298580133812e-24 -5.632551005406817442e-24
+4.822500000000000000e+02 8.393754168040817045e-26 -1.064583446708026097e-24
+4.825000000000000000e+02 2.447343906520696662e-24 4.036745395041907339e-24
+4.827500000000000000e+02 -2.608347478651525924e-24 -5.794724834266785117e-24
+4.830000000000000000e+02 -2.404154281162198122e-25 -1.200560932705918735e-23
+4.832500000000000000e+02 1.928095740657512418e-24 -5.911698053323524641e-24
+4.835000000000000000e+02 9.036765519379314304e-25 -6.994440338893670034e-24
+4.837500000000000000e+02 2.079419247144259772e-24 5.975927636574017722e-24
+4.840000000000000000e+02 2.369466131207979772e-26 -2.599251653451604148e-24
+4.842500000000000000e+02 -2.791777726002031532e-24 -2.829695705001428535e-24
+4.845000000000000000e+02 -9.027060868743189396e-24 1.889147126349415351e-24
+4.847500000000000000e+02 8.191771690735266432e-25 -3.856509929007857174e-24
+4.850000000000000000e+02 -1.563325517426574016e-24 1.418063876206063254e-24
+4.852500000000000000e+02 5.689555592979360895e-24 -6.377525740916700172e-24
+4.855000000000000000e+02 1.484960142452798011e-24 -2.479521244385656073e-24
+4.857500000000000000e+02 4.005292099643353832e-24 1.422148327128502575e-24
+4.860000000000000000e+02 -2.476589195178302310e-24 -1.411991972343131300e-24
+4.862500000000000000e+02 5.777417615016775396e-25 3.632926778020535143e-24
+4.865000000000000000e+02 -8.987127796376887001e-25 6.754015376137438333e-24
+4.867500000000000000e+02 4.524708379667332709e-24 7.185324751894877249e-25
+4.870000000000000000e+02 3.260113537861008489e-24 2.977605611641792623e-24
+4.872500000000000000e+02 5.263054147994803821e-24 1.123733465782628532e-24
+4.875000000000000000e+02 5.538287761944630943e-24 -3.649434044371635375e-24
+4.877500000000000000e+02 6.524475230853261049e-25 4.165978837480107781e-26
+4.880000000000000000e+02 -1.463637996885058899e-24 -9.654109944271638577e-25
+4.882500000000000000e+02 -3.980694934390085097e-24 4.624747591606585952e-24
+4.885000000000000000e+02 -1.284428701687873623e-24 4.611899861951819529e-24
+4.887500000000000000e+02 1.708248865582545053e-25 5.832718342549348654e-24
+4.890000000000000000e+02 -9.859976601560579542e-25 1.162682662863654136e-24
+4.892500000000000000e+02 8.857179311991282833e-24 -1.945722310074793107e-24
+4.895000000000000000e+02 -2.973429858217232873e-25 1.599160785604477990e-24
+4.897500000000000000e+02 -4.019238868684993860e-25 2.300131822993821426e-24
+4.900000000000000000e+02 7.908798762509822746e-25 -2.241573470857173060e-24
+4.902500000000000000e+02 6.226905654321565916e-25 1.566138960821014574e-24
+4.905000000000000000e+02 3.379758206341528202e-24 1.970429359985887244e-24
+4.907500000000000000e+02 4.056398023339142226e-24 -4.550616529261930534e-24
+4.910000000000000000e+02 3.350896758734712212e-24 2.999006183360236491e-24
+4.912500000000000000e+02 -6.807969288876769290e-25 1.486601650083344087e-24
+4.915000000000000000e+02 -2.874489036632464620e-24 2.205427410907620890e-24
+4.917500000000000000e+02 5.048491249097878084e-26 3.036771626259461619e-24
+4.920000000000000000e+02 3.781932722300298217e-24 -1.927446519768418557e-24
+4.922500000000000000e+02 -4.638414618791603994e-24 8.658757171685430431e-24
+4.925000000000000000e+02 2.079449294341153979e-24 -8.144647112620599925e-26
+4.927500000000000000e+02 -2.683574004198449208e-24 1.278189042201547104e-24
+4.930000000000000000e+02 -3.524334951033221970e-25 1.138918798620405506e-23
+4.932500000000000000e+02 -8.069502694847264065e-25 -2.764734664367338260e-24
+4.935000000000000000e+02 -8.386057687473720850e-25 6.602883980692997246e-24
+4.937500000000000000e+02 2.548463605515165288e-24 1.277650016998211366e-24
+4.940000000000000000e+02 5.827447127697345317e-24 -5.359318637249663061e-24
+4.942500000000000000e+02 -1.632385947462193593e-24 -2.558453046654103382e-24
+4.945000000000000000e+02 5.011038221636999542e-25 -6.897524723948481227e-25
+4.947500000000000000e+02 3.931323783760822226e-24 -1.362670761557414630e-24
+4.950000000000000000e+02 -2.944964690289373144e-24 -1.530291764836160408e-24
+4.952500000000000000e+02 1.480944009651632629e-24 1.033206391886920076e-24
+4.955000000000000000e+02 5.133723269508422838e-24 -7.392139317119374548e-24
+4.957500000000000000e+02 -1.673124288673218342e-24 3.907117757202563139e-24
+4.960000000000000000e+02 -5.032717312867307972e-24 7.825933153261935844e-24
+4.962500000000000000e+02 -7.301651394350925267e-24 -3.373008951120463202e-24
+4.965000000000000000e+02 -5.411671445207816549e-25 1.725394606709307828e-24
+4.967500000000000000e+02 -8.548038925624923997e-24 2.656654283451194210e-24
+4.970000000000000000e+02 -2.321570353016051356e-24 3.368231392118038544e-24
+4.972500000000000000e+02 -2.865777236831005489e-24 -5.774868717847844527e-25
+4.975000000000000000e+02 2.148872767757414926e-24 3.544560686067863205e-24
+4.977500000000000000e+02 1.172047219189694794e-24 -7.314163507788669830e-25
+4.980000000000000000e+02 -6.434594802405788344e-24 -2.073066214279341575e-25
+4.982500000000000000e+02 -5.237889581949241433e-24 1.667073900924639445e-24
+4.985000000000000000e+02 2.085752309381764211e-24 6.075884995707295358e-24
+4.987500000000000000e+02 2.535060095175924503e-24 3.786482773860843034e-24
+4.990000000000000000e+02 4.632711204290585578e-24 -1.617221802158301860e-24
+4.992500000000000000e+02 1.487824142458273779e-24 8.128788436694518773e-24
+4.995000000000000000e+02 2.464419846732204301e-24 -4.539658325104738273e-24
+4.997500000000000000e+02 6.860553165785699894e-24 -3.505656306783158483e-24
+5.000000000000000000e+02 -5.193372507061129207e-24 -2.148414026726629620e-24
+5.002500000000000000e+02 2.708089163732007499e-24 -1.707979777960450800e-24
+5.005000000000000000e+02 -2.498199444467631511e-25 -1.020246857440864793e-23
+5.007500000000000000e+02 -1.901793651916982017e-24 1.000482429901595858e-24
+5.010000000000000000e+02 -1.678705231402823512e-24 -3.351610272466795078e-24
+5.012500000000000000e+02 5.098881106534481039e-24 -6.838957598031820720e-24
+5.015000000000000000e+02 -6.328060511246417118e-24 1.366118657582131093e-24
+5.017500000000000000e+02 2.688295686099938034e-24 1.086937798586502934e-24
+5.020000000000000000e+02 4.058528606212351161e-24 2.190498230451016232e-24
+5.022500000000000000e+02 7.241306232305169069e-24 -1.060625159001334889e-24
+5.025000000000000000e+02 -1.556653230260769790e-25 5.006604546731145632e-24
+5.027500000000000000e+02 -2.505638778961205406e-24 -3.171174395028872581e-24
+5.030000000000000000e+02 -6.137629770785064483e-24 -7.841025989641663170e-25
+5.032500000000000000e+02 7.962531227276528675e-25 -6.027062227691758564e-24
+5.035000000000000000e+02 -4.043431829381422027e-24 4.152142204326025194e-24
+5.037500000000000000e+02 2.439490352861654210e-25 4.448145439228478927e-24
+5.040000000000000000e+02 -7.586612151218835676e-25 2.831801888738463073e-24
+5.042500000000000000e+02 1.703094532278905582e-24 1.136557608374884852e-23
+5.045000000000000000e+02 -6.850348098143622871e-25 -2.556482605477485029e-26
+5.047500000000000000e+02 -5.868628775812086256e-25 -5.998843736488803439e-24
+5.050000000000000000e+02 4.947818629412552380e-24 2.891581357634258463e-24
+5.052500000000000000e+02 3.104527634973289991e-25 6.113032651090988662e-24
+5.055000000000000000e+02 5.007569978817930277e-24 6.176594756051285151e-25
+5.057500000000000000e+02 -3.275985373050855328e-24 2.370404168834101447e-24
+5.060000000000000000e+02 1.804248992168316123e-24 -2.443303625554414457e-24
+5.062500000000000000e+02 1.430423236538953975e-24 -4.316329032953886810e-24
+5.065000000000000000e+02 -1.755973168753779965e-24 8.316323953520769268e-24
+5.067500000000000000e+02 -4.603148067814414431e-24 1.387736291677640996e-25
+5.070000000000000000e+02 -3.802133071212952338e-24 1.609856872529271611e-24
+5.072500000000000000e+02 1.324460902047338642e-24 -3.018174327876644997e-25
+5.075000000000000000e+02 3.881152682577160675e-24 -2.771232983585583959e-25
+5.077500000000000000e+02 9.819600839219650134e-25 -1.058590330762959070e-23
+5.080000000000000000e+02 5.388303936565214643e-24 4.290502382163474579e-24
+5.082500000000000000e+02 9.135400061018683024e-25 -2.218748242652921229e-24
+5.085000000000000000e+02 -4.570893943008418758e-25 -5.547771452785784035e-24
+5.087500000000000000e+02 1.977470957228100642e-25 -3.468257243024003788e-24
+5.090000000000000000e+02 3.274280992052551569e-24 -3.470136342972788570e-24
+5.092500000000000000e+02 4.783291106907150128e-24 1.113744751630594646e-25
+5.095000000000000000e+02 -7.193942367476615788e-24 -4.329496238141207262e-25
+5.097500000000000000e+02 1.440822905730618706e-24 2.119626184839402149e-24
+5.100000000000000000e+02 5.308411019544901607e-25 7.354727306592595324e-24
+5.102500000000000000e+02 3.743977618506356144e-24 4.834605875824229438e-24
+5.105000000000000000e+02 1.412998791176487976e-24 -3.333765941018230627e-24
+5.107500000000000000e+02 -2.502224365878492840e-24 5.915230777959241815e-24
+5.110000000000000000e+02 -6.585640207567274809e-24 3.947390076438672694e-24
+5.112500000000000000e+02 -5.412970812090073829e-24 1.720069316838420541e-24
+5.115000000000000000e+02 -8.797151326336374053e-24 -1.505991829457739623e-24
+5.117500000000000000e+02 8.415559638693695744e-24 6.101268004484835305e-24
+5.120000000000000000e+02 1.760786267517414715e-25 5.328236129788585726e-25
+5.122500000000000000e+02 -1.101047847359436779e-24 -1.658347603657433252e-25
+5.125000000000000000e+02 -6.824630349715666649e-25 2.701145942313156205e-24
+5.127500000000000000e+02 3.079295923243692105e-25 2.228525479280315856e-25
+5.130000000000000000e+02 3.239073630615876911e-25 1.126311803595511142e-23
+5.132500000000000000e+02 -3.950770869328924897e-24 -4.958342138752453777e-24
+5.135000000000000000e+02 1.851305528141714024e-24 -3.194010679162247825e-24
+5.137500000000000000e+02 -2.128788120968533420e-24 9.692694174913209049e-24
+5.140000000000000000e+02 1.920318576338008832e-24 5.356562162502780478e-24
+5.142500000000000000e+02 -2.913975237658319534e-26 -5.241287264696421148e-24
+5.145000000000000000e+02 2.930602521017822643e-24 -5.723720420120330922e-24
+5.147500000000000000e+02 1.099318577462403094e-24 3.562828686608467499e-25
+5.150000000000000000e+02 -6.525022100899224741e-24 5.677725330171352043e-24
+5.152500000000000000e+02 -2.001122978381352941e-24 -1.293907352671947268e-24
+5.155000000000000000e+02 3.205953607026352671e-24 3.064101549417602357e-24
+5.157500000000000000e+02 3.789698550459298639e-25 4.183261028102964544e-24
+5.160000000000000000e+02 2.141963879538635719e-24 -3.353221952553614481e-24
+5.162500000000000000e+02 -1.594150149082156850e-24 -1.026979018408468809e-23
+5.165000000000000000e+02 3.228053805846981395e-24 -2.954864618134193204e-24
+5.167500000000000000e+02 -2.812159401594579666e-24 -3.404077460691237586e-25
+5.170000000000000000e+02 4.266590755637167561e-24 -3.361667627230923658e-24
+5.172500000000000000e+02 -1.918042287074644472e-25 -6.342821176679841563e-24
+5.175000000000000000e+02 -3.374349369878201758e-24 3.032940116653434781e-24
+5.177500000000000000e+02 2.226877418732646527e-24 4.745306977344589232e-25
+5.180000000000000000e+02 8.365555290225734515e-25 3.368492680343069193e-24
+5.182500000000000000e+02 -2.684071593212333419e-24 3.551199901340276679e-24
+5.185000000000000000e+02 -8.463856760689781850e-24 -3.392459120844826293e-24
+5.187500000000000000e+02 2.398100060519557719e-24 -1.003917048548898140e-24
+5.190000000000000000e+02 2.698719386775253554e-24 -1.012226016878164691e-24
+5.192500000000000000e+02 6.048469228433910325e-25 4.779078759340184412e-24
+5.195000000000000000e+02 -5.019111985275453475e-24 -8.501519805783199337e-26
+5.197500000000000000e+02 -2.171339366966794820e-24 6.651374079445285670e-24
+5.200000000000000000e+02 2.834429023896134806e-24 -4.476657508032017484e-25
+5.202500000000000000e+02 -3.825514266370831480e-24 1.033918943864263231e-25
+5.205000000000000000e+02 -3.445440582896942546e-24 1.500625579323902387e-24
+5.207500000000000000e+02 -2.740723848332326572e-24 3.538066491673983722e-24
+5.210000000000000000e+02 4.449781163918337226e-24 -4.013480226860282151e-25
+5.212500000000000000e+02 -3.439424376236528371e-24 -1.525937951734403635e-24
+5.215000000000000000e+02 -5.771508864321544786e-24 -3.675949220034986984e-24
+5.217500000000000000e+02 6.211912541397946320e-25 -5.770810394286700247e-24
+5.220000000000000000e+02 4.813929090842208937e-24 3.345284309075926399e-24
+5.222500000000000000e+02 -5.092869930589055830e-24 8.094388686209326288e-24
+5.225000000000000000e+02 2.234145810804053507e-24 2.164025730859564564e-24
+5.227500000000000000e+02 2.818174500782829150e-24 -2.078549779153663402e-24
+5.230000000000000000e+02 -2.434671441050817041e-24 -3.284741498760133257e-24
+5.232500000000000000e+02 -5.694535147793814456e-25 6.244218121592754259e-24
+5.235000000000000000e+02 1.339352077428104865e-25 -3.227385360826925160e-24
+5.237500000000000000e+02 -2.883924574620713566e-25 3.608914199835284300e-24
+5.240000000000000000e+02 -3.930287772696822813e-24 7.975170365851907993e-24
+5.242500000000000000e+02 5.486693915703758613e-24 4.561024752137868270e-24
+5.245000000000000000e+02 -7.195663606008445395e-24 1.000910129365600305e-24
+5.247500000000000000e+02 -2.839209071439880785e-24 2.372621904570245873e-24
+5.250000000000000000e+02 -1.178469574039590892e-24 -9.881233795407678740e-25
+5.252500000000000000e+02 5.373885335821339023e-24 2.418416263901690668e-24
+5.255000000000000000e+02 -4.134524889666431469e-24 -4.187488687672704298e-24
+5.257500000000000000e+02 4.483803802195522427e-24 7.816331451793674780e-25
+5.260000000000000000e+02 -1.888727061178963950e-24 2.663092849842862156e-24
+5.262500000000000000e+02 -3.392558474662321059e-24 -5.883445247622176148e-24
+5.265000000000000000e+02 -6.249898900587284502e-24 -4.442445262672989307e-24
+5.267500000000000000e+02 3.925254392706780024e-24 -2.054278270251903463e-24
+5.270000000000000000e+02 -4.890816890545017569e-24 -7.775121152755555396e-25
+5.272500000000000000e+02 -2.186686220373561352e-26 -4.812614082565008545e-25
+5.275000000000000000e+02 -3.172562349652220494e-25 7.130963255715737430e-25
+5.277500000000000000e+02 2.559440876076570854e-24 -4.360304326340059217e-25
+5.280000000000000000e+02 -3.746086669939469324e-24 -2.512281020559069764e-24
+5.282500000000000000e+02 2.911052560954677424e-24 -5.468895747482271983e-24
+5.285000000000000000e+02 6.478941073117764133e-25 -2.645765028853361431e-24
+5.287500000000000000e+02 1.281056918401184790e-24 -3.352245900575704711e-24
+5.290000000000000000e+02 -4.975554454234641492e-24 -1.272355307862618005e-24
+5.292500000000000000e+02 4.941794322090529017e-24 6.558386024673447379e-25
+5.295000000000000000e+02 1.547871141926942899e-24 -6.039883411507690503e-24
+5.297500000000000000e+02 8.134660203050551169e-25 3.947088386296065494e-25
+5.300000000000000000e+02 2.198789338702265283e-24 -9.336091961449671666e-25
+5.302500000000000000e+02 -9.658165048820973344e-24 -3.079526545182308772e-24
+5.305000000000000000e+02 1.834284799048557884e-24 -1.297698900594289041e-24
+5.307500000000000000e+02 9.569610483932658811e-24 -7.161369828867326829e-24
+5.310000000000000000e+02 -5.868272558207942333e-24 2.941775779924073507e-24
+5.312500000000000000e+02 2.088444387851272344e-24 -3.650229878475962238e-24
+5.315000000000000000e+02 6.716464049493087509e-24 2.185623477086278358e-25
+5.317500000000000000e+02 -9.428710751256290027e-26 -4.555009728530354265e-25
+5.320000000000000000e+02 -6.329298255331808327e-25 4.558120457936362177e-24
+5.322500000000000000e+02 1.481014831828770408e-24 9.899512197227209382e-25
+5.325000000000000000e+02 -1.376931680646540332e-24 2.094055852341644471e-24
+5.327500000000000000e+02 6.537469596927969504e-24 -4.507116371788502365e-25
+5.330000000000000000e+02 2.786366477291729724e-24 -3.017227808836761344e-24
+5.332500000000000000e+02 -1.805110494793691982e-24 -4.582400102481801072e-24
+5.335000000000000000e+02 3.188572265242863503e-24 8.599896876773293284e-25
+5.337500000000000000e+02 -4.746248661733980509e-24 1.008364603758082049e-23
+5.340000000000000000e+02 -1.445494677730371216e-24 1.904640936484674179e-24
+5.342500000000000000e+02 -4.604668434421005899e-24 -3.910519022216184633e-24
+5.345000000000000000e+02 2.117692898242130129e-24 8.805591218093049387e-25
+5.347500000000000000e+02 1.007972741110131667e-24 1.902729399648314234e-24
+5.350000000000000000e+02 -1.987412444570918676e-24 8.896431900926916309e-25
+5.352500000000000000e+02 -4.537670983069277147e-25 -4.254497180112134885e-24
+5.355000000000000000e+02 -4.752152187590149812e-24 -7.921153314936082707e-25
+5.357500000000000000e+02 -8.021057252907606725e-25 -5.976583844272900282e-24
+5.360000000000000000e+02 -7.266607856926100090e-24 -1.341452900814644665e-24
+5.362500000000000000e+02 -2.960396623768963926e-24 3.910903794381090060e-26
+5.365000000000000000e+02 -8.229359779026708145e-25 4.062655790968475482e-24
+5.367500000000000000e+02 -5.671665990984371600e-24 -5.341092004506340438e-24
+5.370000000000000000e+02 -1.598422094120003342e-24 1.132732444943977784e-24
+5.372500000000000000e+02 -9.748348502676547800e-26 2.860366372482167759e-24
+5.375000000000000000e+02 -3.635489127202183551e-24 -4.646296076262223152e-24
+5.377500000000000000e+02 7.453616474447378201e-24 4.653950917271047608e-24
+5.380000000000000000e+02 -3.534929731503178289e-24 3.794473026070250704e-24
+5.382500000000000000e+02 -1.991581774978711328e-24 4.176268698696729620e-24
+5.385000000000000000e+02 -7.755603021074563619e-24 2.201753551252192547e-24
+5.387500000000000000e+02 6.634287329933202064e-24 4.844753341496017463e-24
+5.390000000000000000e+02 4.273084618408190647e-24 3.667473468830320225e-24
+5.392500000000000000e+02 -8.965817067621034779e-24 6.522523377784099875e-24
+5.395000000000000000e+02 1.700518203152331816e-24 3.764137487687781787e-24
+5.397500000000000000e+02 -5.384634724551130084e-25 -5.262414525901204949e-24
+5.400000000000000000e+02 3.469025244659889962e-24 3.217578011907244334e-24
+5.402500000000000000e+02 -8.111429052925337282e-24 1.965934558578759113e-24
+5.405000000000000000e+02 -5.284135395080126540e-24 -1.116022042751963012e-24
+5.407500000000000000e+02 -3.738943592181537797e-24 -1.387111748774622441e-24
+5.410000000000000000e+02 2.518118013164221361e-24 -1.682448313385289441e-24
+5.412500000000000000e+02 1.637564583667359106e-24 3.036801999937987478e-24
+5.415000000000000000e+02 -4.662079282295553538e-24 4.659087776676049125e-24
+5.417500000000000000e+02 -3.294060665236721251e-24 -7.315832146336392243e-24
+5.420000000000000000e+02 -1.598104721123746150e-24 9.383980938465524653e-25
+5.422500000000000000e+02 8.110631647751762400e-25 6.568466097097763436e-24
+5.425000000000000000e+02 7.171482238660888077e-24 2.791010372963421709e-24
+5.427500000000000000e+02 3.691493250647801263e-25 7.231432165823319427e-24
+5.430000000000000000e+02 5.768706516757138825e-25 2.409298965557089102e-24
+5.432500000000000000e+02 1.319040087140802093e-24 5.679464414179780459e-25
+5.435000000000000000e+02 -4.503480571349982980e-25 6.472534651639981348e-24
+5.437500000000000000e+02 6.993460032975435356e-24 -7.056577046758918084e-24
+5.440000000000000000e+02 2.748166384857288997e-24 -7.470958553051153140e-24
+5.442500000000000000e+02 -1.385843274996112343e-24 1.794881336030043474e-24
+5.445000000000000000e+02 3.818261140608449289e-26 -1.722342470667447682e-24
+5.447500000000000000e+02 -3.076555305825045795e-25 3.068724752128441081e-24
+5.450000000000000000e+02 6.399751151692435211e-24 3.810808349782261458e-24
+5.452500000000000000e+02 -8.954618179599651052e-24 2.560348835168071941e-24
+5.455000000000000000e+02 3.456848277886834308e-24 -8.996632329706886709e-25
+5.457500000000000000e+02 1.803313237101742302e-24 -2.597646840994297541e-24
+5.460000000000000000e+02 -1.879003609090693531e-24 -3.320367249691502048e-24
+5.462500000000000000e+02 -4.167014984723973686e-24 3.399717151530077995e-24
+5.465000000000000000e+02 -1.062615144884530885e-24 1.830864154982254953e-24
+5.467500000000000000e+02 -3.362319345915732195e-24 -1.010284225212144840e-23
+5.470000000000000000e+02 2.597484362070458399e-24 4.629712177661867088e-25
+5.472500000000000000e+02 -3.312871315478170800e-24 2.017604245276245145e-24
+5.475000000000000000e+02 1.484848473667086317e-23 2.070652665304401576e-25
+5.477500000000000000e+02 -9.003458708422514381e-25 1.750240068996251558e-24
+5.480000000000000000e+02 -3.442393074358663098e-24 4.606876391247228441e-24
+5.482500000000000000e+02 -2.698413884479560758e-24 6.589103263353110002e-24
+5.485000000000000000e+02 -2.259038915394220861e-24 8.694335170180862979e-25
+5.487500000000000000e+02 2.044272675054488906e-24 4.189070287704797773e-24
+5.490000000000000000e+02 2.965023092282243592e-24 -2.151998491755655480e-24
+5.492500000000000000e+02 1.283145178878931205e-24 -2.811116936129760874e-24
+5.495000000000000000e+02 -2.824293714474310759e-24 5.390160763310491760e-24
+5.497500000000000000e+02 -6.141409365655211716e-25 2.060301065764594314e-24
+5.500000000000000000e+02 2.471454917383696738e-24 -1.446831299214651249e-24
+5.502500000000000000e+02 6.923207928570766808e-24 4.136082862709646196e-25
+5.505000000000000000e+02 -3.459813231973327317e-24 -3.351687871009690294e-24
+5.507500000000000000e+02 3.352844133302752825e-24 -1.849715993993537251e-24
+5.510000000000000000e+02 2.143889810372455980e-25 1.284972051037941535e-24
+5.512500000000000000e+02 -3.265030023593934609e-24 5.365577904814717327e-25
+5.515000000000000000e+02 -2.755335177322569458e-24 1.953859294856591829e-24
+5.517500000000000000e+02 7.999281611198299309e-24 1.607719267187995575e-24
+5.520000000000000000e+02 2.129317164734506246e-24 -3.509046775926275457e-24
+5.522500000000000000e+02 -3.034967072119884220e-24 -1.472540524231269355e-24
+5.525000000000000000e+02 -1.140765889559271386e-24 -1.277828186608124832e-25
+5.527500000000000000e+02 4.451031665567727875e-25 -2.566292750525577808e-25
+5.530000000000000000e+02 -5.018587600007184980e-25 -8.206525330777006408e-25
+5.532500000000000000e+02 -4.239485881480777750e-24 3.195612722341035385e-25
+5.535000000000000000e+02 -4.367974466167084769e-24 -4.575774723088687932e-24
+5.537500000000000000e+02 2.516389479471292642e-24 3.527420945731140603e-24
+5.540000000000000000e+02 -1.846750112616494029e-24 -6.429230260067766965e-24
+5.542500000000000000e+02 -4.357660393441618814e-24 -2.074130192368307597e-24
+5.545000000000000000e+02 3.686672994572052074e-24 -1.770528200336559182e-24
+5.547500000000000000e+02 -5.601579766210113389e-24 -4.444843608837062450e-25
+5.550000000000000000e+02 2.075536982392225728e-25 4.801653961998331786e-24
+5.552500000000000000e+02 -1.483711201068638314e-24 4.378317728279804319e-25
+5.555000000000000000e+02 1.532721458614495300e-24 -2.861628629134082784e-25
+5.557500000000000000e+02 1.342493631058668099e-24 -2.342062664357115213e-24
+5.560000000000000000e+02 -7.083337387838771081e-24 1.029760775505911805e-26
+5.562500000000000000e+02 3.614698019707100573e-24 3.691195620481257841e-24
+5.565000000000000000e+02 -3.889408662211635771e-25 8.500764796246507100e-25
+5.567500000000000000e+02 -3.792554031785258760e-25 -4.660528534408153147e-24
+5.570000000000000000e+02 9.786337142485253582e-24 5.212608690801755833e-24
+5.572500000000000000e+02 -2.122152871350960030e-24 -1.853808520354877292e-24
+5.575000000000000000e+02 -3.859748847037214812e-25 -4.740680548305792725e-24
+5.577500000000000000e+02 1.375929973390975620e-24 3.129615936699392272e-24
+5.580000000000000000e+02 5.908384862559694573e-25 -1.754333407223254077e-24
+5.582500000000000000e+02 -3.210141073175465732e-24 5.832671679684936437e-24
+5.585000000000000000e+02 2.244849642097105084e-24 -1.090949955090124438e-24
+5.587500000000000000e+02 2.075308788409461782e-25 -3.672681371561389434e-24
+5.590000000000000000e+02 -7.316716295047094911e-24 1.396969977159435153e-24
+5.592500000000000000e+02 3.763164248059292028e-24 5.187721887871147063e-24
+5.595000000000000000e+02 -2.494702707041301171e-24 -2.948417541143138108e-24
+5.597500000000000000e+02 3.937964121088218169e-24 2.282472348219553119e-24
+5.600000000000000000e+02 8.545523330025332182e-25 3.911532085896672357e-24
+5.602500000000000000e+02 4.650464536192220245e-24 -2.692999010271459393e-24
+5.605000000000000000e+02 -8.438447316003115468e-24 3.544473223639718036e-26
+5.607500000000000000e+02 -2.052098891424571205e-24 -7.244296962295771115e-24
+5.610000000000000000e+02 -4.127241692233887687e-24 2.453747439113100717e-24
+5.612500000000000000e+02 -1.991284475741358750e-24 1.714258063313296903e-25
+5.615000000000000000e+02 5.697928317015278132e-24 -4.273886699918831820e-24
+5.617500000000000000e+02 -1.797413169401357408e-24 3.792887853399889191e-24
+5.620000000000000000e+02 9.669924553417991516e-24 -2.560509864340994032e-24
+5.622500000000000000e+02 -4.297323870481417799e-24 -3.141502601259056417e-24
+5.625000000000000000e+02 7.824882886285265412e-25 -1.540823067197193402e-24
+5.627500000000000000e+02 3.138970726207713251e-24 4.882530624573499053e-24
+5.630000000000000000e+02 -3.509452170313466995e-24 1.709120522898541257e-24
+5.632500000000000000e+02 6.856860170650384342e-25 -9.407397984102264956e-25
+5.635000000000000000e+02 4.534694321651679650e-24 -8.112319325953769023e-25
+5.637500000000000000e+02 5.815993801691110420e-24 5.130073796385480993e-24
+5.640000000000000000e+02 6.164143964030551554e-24 -4.678347856093541338e-24
+5.642500000000000000e+02 4.899756247449882578e-24 -5.987974950075518093e-25
+5.645000000000000000e+02 -5.854222223803009470e-24 3.376969066475267475e-24
+5.647500000000000000e+02 4.301539508945053780e-24 -3.397328901465460868e-24
+5.650000000000000000e+02 -1.651815260775583664e-24 -1.266932938205425848e-24
+5.652500000000000000e+02 -2.931052014886676382e-24 1.774216762816227717e-24
+5.655000000000000000e+02 -3.225741789399800071e-24 -9.768440760728287490e-25
+5.657500000000000000e+02 -2.190722196181057886e-24 7.477491170072137300e-24
+5.660000000000000000e+02 -2.109464209227858276e-24 3.246800299560368920e-24
+5.662500000000000000e+02 -9.010193827337198664e-24 -4.981306691969870749e-24
+5.665000000000000000e+02 2.696606530411105186e-24 -5.947852360926136666e-24
+5.667500000000000000e+02 5.244114151398783683e-24 3.766087065086762577e-24
+5.670000000000000000e+02 4.755213308562368060e-24 3.005005465895370577e-24
+5.672500000000000000e+02 2.818805606637364279e-24 -4.619767901128579339e-24
+5.675000000000000000e+02 2.274513576180413833e-24 -6.512529316468810774e-25
+5.677500000000000000e+02 6.234295591197063678e-26 -5.909846122099383613e-24
+5.680000000000000000e+02 6.166814421073450226e-24 3.384124087786255467e-24
+5.682500000000000000e+02 1.763433337686110912e-24 -4.282488859964685849e-25
+5.685000000000000000e+02 2.841369773865133336e-24 9.150369278462046360e-24
+5.687500000000000000e+02 -2.943253665781370864e-24 4.680226194469910997e-24
+5.690000000000000000e+02 -1.795616813599858009e-24 4.402294133054911242e-24
+5.692500000000000000e+02 -4.726405776569014530e-24 7.545511412944475981e-24
+5.695000000000000000e+02 -1.526342463819031144e-25 5.326463039467289242e-24
+5.697500000000000000e+02 2.397161476485643230e-24 -5.641178335757434287e-24
+5.700000000000000000e+02 -2.571760198682762081e-24 4.014369913431665572e-24
+5.702500000000000000e+02 7.159621116407887942e-24 -4.889751861636097634e-24
+5.705000000000000000e+02 1.611288439407329589e-24 -5.744772877077987877e-25
+5.707500000000000000e+02 -4.772851511837671049e-24 -3.386205207313627381e-24
+5.710000000000000000e+02 4.326311314353686655e-24 -1.534657040183915756e-24
+5.712500000000000000e+02 -3.079658017440097388e-24 -3.778753896757919106e-24
+5.715000000000000000e+02 1.217975196067605423e-24 -5.517938982649057737e-25
+5.717500000000000000e+02 -1.081594154506517236e-25 1.636012600272383810e-24
+5.720000000000000000e+02 -4.867009286578146386e-24 -2.373907832180887882e-24
+5.722500000000000000e+02 -5.705084907234988035e-25 1.249118668857495829e-24
+5.725000000000000000e+02 2.555901510158108452e-25 1.037862067958918166e-24
+5.727500000000000000e+02 -1.389433079960221394e-24 3.984129065665622238e-25
+5.730000000000000000e+02 5.855445903227487248e-24 -9.505345103678431828e-25
+5.732500000000000000e+02 4.698354815488237489e-25 6.414089607134503769e-24
+5.735000000000000000e+02 8.333168362339142583e-24 2.698147407485412030e-25
+5.737500000000000000e+02 -3.299116902693880995e-24 -4.854568175371276641e-24
+5.740000000000000000e+02 -2.041151204156745361e-24 6.456135735099873721e-24
+5.742500000000000000e+02 -3.398985690025070231e-25 3.546493797015055878e-24
+5.745000000000000000e+02 1.721903734256849489e-24 5.319105030624752786e-24
+5.747500000000000000e+02 1.614584321111940557e-24 -4.901671202262840604e-24
+5.750000000000000000e+02 6.445126486872461432e-24 -5.058521647069062629e-24
+5.752500000000000000e+02 4.739369509559547162e-24 3.441640835865621088e-25
+5.755000000000000000e+02 -5.793892582310674212e-24 2.469227205095391199e-25
+5.757500000000000000e+02 -2.387168763118379141e-24 1.114651493484506089e-24
+5.760000000000000000e+02 3.913954738894564218e-24 5.304876521349252543e-24
+5.762500000000000000e+02 -1.916388549975776804e-24 -6.004294829366821922e-24
+5.765000000000000000e+02 -2.700400455624533387e-26 2.727318846426509131e-24
+5.767500000000000000e+02 -6.362155158042957784e-25 -2.941454583747699782e-25
+5.770000000000000000e+02 -1.106119372825784152e-24 -7.937709378228261237e-24
+5.772500000000000000e+02 -1.267025648083166566e-24 6.796154032466035422e-24
+5.775000000000000000e+02 1.282289611943170529e-24 4.745011415627937587e-25
+5.777500000000000000e+02 7.323919561047804261e-25 1.200794416590082235e-23
+5.780000000000000000e+02 -4.987095900950679336e-24 -5.304134413456660294e-24
+5.782500000000000000e+02 7.624653850651427816e-24 3.677128462937325596e-24
+5.785000000000000000e+02 3.328457032418566159e-24 -3.112446116131167024e-24
+5.787500000000000000e+02 8.386953871319112342e-24 -3.247807903981961055e-24
+5.790000000000000000e+02 -3.616537649010905180e-24 1.877875182928226993e-24
+5.792500000000000000e+02 6.331392664200523745e-24 5.531849551932022459e-24
+5.795000000000000000e+02 -4.810061451803079615e-24 7.856976430263309285e-25
+5.797500000000000000e+02 -1.210463693862251117e-24 6.076294028698764877e-24
+5.800000000000000000e+02 -5.495601620696649140e-25 -2.231447566139949806e-24
+5.802500000000000000e+02 -4.852655867652705699e-24 6.554341617055302800e-25
+5.805000000000000000e+02 6.794407870310639182e-24 -9.925370213245948973e-25
+5.807500000000000000e+02 5.665568933231849875e-24 3.191009094748997329e-24
+5.810000000000000000e+02 -2.274676205569860665e-24 -1.634836831023823553e-24
+5.812500000000000000e+02 -1.333553924968219143e-24 6.979351965621880990e-24
+5.815000000000000000e+02 3.174534827153946042e-25 -2.239344733275765536e-24
+5.817500000000000000e+02 4.556410036387235953e-24 -3.575113957507397093e-24
+5.820000000000000000e+02 -3.686122027857321274e-24 -4.100867033608097151e-24
+5.822500000000000000e+02 1.273815225806019840e-24 -6.240923935186346390e-24
+5.825000000000000000e+02 -2.374862120717379835e-24 -2.531834351044608239e-24
+5.827500000000000000e+02 1.197315019371969662e-24 3.323670906956020818e-24
+5.830000000000000000e+02 -4.663255708553268679e-24 3.668825248914441140e-24
+5.832500000000000000e+02 -1.288079016917375655e-24 7.876810263417762468e-24
+5.835000000000000000e+02 2.567828611347437158e-25 -2.957914270899434372e-24
+5.837500000000000000e+02 -1.922294310836883716e-24 -4.191018117144651612e-24
+5.840000000000000000e+02 -3.001847265712236883e-24 -6.674982791088895581e-24
+5.842500000000000000e+02 4.583777070949903631e-25 -5.311934226199848704e-24
+5.845000000000000000e+02 -4.076876011251155520e-24 -7.592268778312635681e-24
+5.847500000000000000e+02 5.843379666850005557e-24 6.186890663907075208e-25
+5.850000000000000000e+02 -2.358041049708856861e-24 7.322744497661766681e-24
+5.852500000000000000e+02 -5.056972561881079695e-24 2.273838398958293570e-25
+5.855000000000000000e+02 1.285163925656287304e-24 2.549321056357638096e-24
+5.857500000000000000e+02 2.630355598932822327e-24 2.908305857710239155e-24
+5.860000000000000000e+02 -5.302203894539163373e-24 2.229611162831545895e-24
+5.862500000000000000e+02 3.986534659033992953e-24 4.883826904049936737e-24
+5.865000000000000000e+02 -3.024499982873944702e-24 3.376990955229081393e-24
+5.867500000000000000e+02 -9.790602682288236498e-24 -2.657367275852964018e-24
+5.870000000000000000e+02 -1.141971584174827271e-24 2.632500691895573374e-24
+5.872500000000000000e+02 5.235801956191947782e-24 3.864586158798208077e-24
+5.875000000000000000e+02 -1.986509369181682012e-24 -2.449279804586575374e-24
+5.877500000000000000e+02 2.772429825999238265e-24 5.983246311320908517e-24
+5.880000000000000000e+02 -2.288193360447802260e-24 2.751282897987229613e-24
+5.882500000000000000e+02 -2.408389009490730710e-24 -2.729309792849019564e-25
+5.885000000000000000e+02 5.103389929321213842e-24 5.023727213394407512e-24
+5.887500000000000000e+02 -6.051815341746908883e-24 -2.230910608449537206e-24
+5.890000000000000000e+02 -1.295599096210043240e-24 -3.173251478248763145e-24
+5.892500000000000000e+02 -3.759557454165092366e-24 -1.067322691890268948e-24
+5.895000000000000000e+02 4.373421275255681720e-24 -7.460404965980771470e-25
+5.897500000000000000e+02 -1.005330304426895733e-23 4.175573458475812687e-24
+5.900000000000000000e+02 8.182830425455348812e-24 6.984670434837204705e-24
+5.902500000000000000e+02 1.607861332575030952e-24 1.781133234487130743e-24
+5.905000000000000000e+02 -1.152039665629715361e-24 5.187690165114043010e-25
+5.907500000000000000e+02 -1.760289114689482756e-24 -1.020449094486986629e-24
+5.910000000000000000e+02 1.658076992764287841e-24 4.027660966636583856e-25
+5.912500000000000000e+02 -8.047966045241609409e-25 -2.813786987768082610e-24
+5.915000000000000000e+02 -3.167273689819686644e-24 -3.531191577476158005e-24
+5.917500000000000000e+02 -5.729946212371483539e-24 1.353753115849283197e-24
+5.920000000000000000e+02 -6.227775409742706395e-24 -9.804023702576818146e-25
+5.922500000000000000e+02 3.789703765860769838e-24 5.544166030635414280e-24
+5.925000000000000000e+02 -3.307323415638015769e-24 2.043630097930515999e-24
+5.927500000000000000e+02 -1.724369522684165571e-24 -3.348082761311849190e-24
+5.930000000000000000e+02 -2.808604268872056171e-24 -1.036461480302014554e-23
+5.932500000000000000e+02 4.481786007251813868e-24 -1.268984353592233675e-24
+5.935000000000000000e+02 3.217524035639736863e-24 1.672838731500858081e-24
+5.937500000000000000e+02 -1.947146402006019567e-24 -5.344623799272564628e-24
+5.940000000000000000e+02 -1.983920425148004134e-24 -6.617739379536068185e-24
+5.942500000000000000e+02 6.597752410269865690e-25 3.343639363596536331e-24
+5.945000000000000000e+02 -5.582408508685974005e-24 -2.136776148516013336e-24
+5.947500000000000000e+02 5.230967230082937252e-25 -7.628658818574605610e-25
+5.950000000000000000e+02 -2.114395282669017096e-24 5.154871334842007986e-24
+5.952500000000000000e+02 5.553465103007374745e-25 -7.472038209292242939e-25
+5.955000000000000000e+02 -1.573440683099301792e-25 7.890933351229197517e-25
+5.957500000000000000e+02 -3.873447861539580567e-24 3.026603444826556848e-24
+5.960000000000000000e+02 6.676443802490426739e-24 4.811415953293743639e-26
+5.962500000000000000e+02 -3.215490539738559603e-24 -4.901544873128327882e-25
+5.965000000000000000e+02 3.220853758127700449e-24 2.474492235825152698e-24
+5.967500000000000000e+02 2.129680818398046101e-25 -2.718797563594388915e-24
+5.970000000000000000e+02 -5.243690386996249262e-24 1.588236444137730552e-24
+5.972500000000000000e+02 3.659994252279163849e-24 -8.569512471863550377e-24
+5.975000000000000000e+02 1.791260292915892307e-24 3.258171940088571772e-25
+5.977500000000000000e+02 -1.615161251760275622e-24 -6.212146433580178994e-24
+5.980000000000000000e+02 1.959073571634209132e-24 -5.969720468553605726e-24
+5.982500000000000000e+02 5.335602893864014744e-24 -8.835680824010883151e-25
+5.985000000000000000e+02 -2.657859079274066669e-25 3.543952939432905922e-24
+5.987500000000000000e+02 6.838700694809526186e-24 -4.156617824364993006e-24
+5.990000000000000000e+02 4.180128966230307693e-24 2.698253709220727735e-24
+5.992500000000000000e+02 5.293172277495940477e-25 9.014117981764630396e-25
+5.995000000000000000e+02 -7.351339876422107485e-24 -1.850969914133608414e-24
+5.997500000000000000e+02 -9.173793023217954965e-24 -1.817202895991014143e-24
+6.000000000000000000e+02 8.809703697496551835e-26 1.779081223972475466e-26
+6.002500000000000000e+02 -1.090089180735973900e-24 1.835057611774157767e-24
+6.005000000000000000e+02 2.073007408057967417e-24 2.688593411109713631e-24
+6.007500000000000000e+02 -4.648588499526896730e-24 4.862004023928644410e-24
+6.010000000000000000e+02 1.194936995532154491e-23 6.534435274336102848e-25
+6.012500000000000000e+02 -4.813763027988618204e-24 2.185209883697061876e-24
+6.015000000000000000e+02 9.162116548038405667e-25 -6.868293541968096868e-24
+6.017500000000000000e+02 4.533992782967079399e-25 6.680527149212316492e-24
+6.020000000000000000e+02 -1.605038231265530433e-24 5.969250661222163414e-24
+6.022500000000000000e+02 2.761800376676162907e-24 2.700951573370478616e-24
+6.025000000000000000e+02 -3.594496145916343906e-24 5.886665188685651305e-24
+6.027500000000000000e+02 -3.786901602815651507e-24 8.374065930310259125e-24
+6.030000000000000000e+02 1.337805378548534073e-24 1.625598828906105841e-24
+6.032500000000000000e+02 7.527182314702276652e-24 -2.039519214342397950e-24
+6.035000000000000000e+02 6.133156252160012767e-24 1.000204278812373966e-24
+6.037500000000000000e+02 5.605787555154613485e-24 1.543197572319999750e-24
+6.040000000000000000e+02 9.342351208223840001e-24 1.579777511999973870e-24
+6.042500000000000000e+02 6.374694271811645545e-25 8.170399265493804797e-24
+6.045000000000000000e+02 -7.455995300366205707e-24 3.528857447771204648e-24
+6.047500000000000000e+02 5.110271768409132519e-24 1.861296513821985191e-24
+6.050000000000000000e+02 5.209025681137903552e-24 -4.150454282490827810e-24
+6.052500000000000000e+02 3.134980162719115339e-24 2.494291109853563505e-24
+6.055000000000000000e+02 2.804947789072318379e-24 5.880478981534961386e-24
+6.057500000000000000e+02 1.265688162315487393e-24 -3.512789289170482550e-24
+6.060000000000000000e+02 3.292281564486890792e-24 -7.959088097605892798e-24
+6.062500000000000000e+02 -2.656744595961108998e-24 -3.037114352934978269e-24
+6.065000000000000000e+02 2.657667852414556986e-25 1.368087410809788684e-24
+6.067500000000000000e+02 -3.450887335520839169e-25 -7.234358879501176236e-24
+6.070000000000000000e+02 4.869444236149712816e-24 -7.826592882943168957e-24
+6.072500000000000000e+02 4.700518700301870126e-24 8.403932259750834510e-25
+6.075000000000000000e+02 5.491974863792095114e-24 5.807155433498923062e-24
+6.077500000000000000e+02 -4.650178731658428177e-25 3.151494711853231332e-24
+6.080000000000000000e+02 -2.572556108269704624e-24 -2.464534442383968003e-24
+6.082500000000000000e+02 2.289082883173290199e-24 1.668730023308180584e-24
+6.085000000000000000e+02 -4.445427226479020898e-24 1.108384604106857120e-25
+6.087500000000000000e+02 -2.070668197882926033e-24 -3.550471566098356596e-24
+6.090000000000000000e+02 -2.255847812695703317e-25 7.841504357724744766e-24
+6.092500000000000000e+02 6.021937441675152064e-25 -4.451481067535936804e-24
+6.095000000000000000e+02 -2.516935496135031716e-25 3.152244544553898152e-24
+6.097500000000000000e+02 -2.745405924952471563e-24 5.907953721998927141e-24
+6.100000000000000000e+02 7.002131621979641940e-24 6.024293532180058284e-24
+6.102500000000000000e+02 -2.521631688215303688e-25 -4.259967008886442792e-24
+6.105000000000000000e+02 6.881838105916720025e-24 2.292353166024753095e-24
+6.107500000000000000e+02 -6.079490271915904453e-24 -5.163846872748429963e-25
+6.110000000000000000e+02 7.286130653618505554e-24 7.858436198390907339e-24
+6.112500000000000000e+02 -5.443032047188620494e-24 -5.108984651407006866e-24
+6.115000000000000000e+02 -2.677218839480253719e-25 -1.015989767208772309e-24
+6.117500000000000000e+02 3.505894698351618295e-24 3.621832581253431210e-24
+6.120000000000000000e+02 1.216854680148703287e-25 -1.576090054048336058e-24
+6.122500000000000000e+02 9.207410491699301072e-25 -2.732035577284800745e-24
+6.125000000000000000e+02 5.053618071696232822e-24 1.666606416835182615e-24
+6.127500000000000000e+02 3.069430347325685952e-25 -4.015796810369405113e-24
+6.130000000000000000e+02 8.494420603640383296e-24 9.270595916085146230e-25
+6.132500000000000000e+02 4.495606243491501684e-24 1.692935701243973355e-24
+6.135000000000000000e+02 -4.570316517064244094e-25 2.236548884205151868e-24
+6.137500000000000000e+02 -4.963931809827503716e-24 5.585136272387208225e-24
+6.140000000000000000e+02 1.695856152447339031e-24 -1.063825698946744115e-23
+6.142500000000000000e+02 -1.769263751772228799e-24 1.227847114100795750e-24
+6.145000000000000000e+02 -4.493925652390061008e-24 4.706814226126542769e-24
+6.147500000000000000e+02 6.362990855332334254e-25 -1.670618931717478105e-24
+6.150000000000000000e+02 -1.053634748360230732e-23 -5.359233939890340453e-24
+6.152500000000000000e+02 -3.446583446990303117e-25 -1.830366489598364825e-24
+6.155000000000000000e+02 -3.562797529095162359e-25 -5.811810654117137755e-24
+6.157500000000000000e+02 -5.065501978257953988e-24 -3.325756537216117848e-24
+6.160000000000000000e+02 -7.545476095653990893e-24 6.254606714848964147e-24
+6.162500000000000000e+02 2.752541909502345203e-24 -6.730830557898008292e-24
+6.165000000000000000e+02 -4.649546087647063587e-24 4.934895215781030753e-24
+6.167500000000000000e+02 2.682291697822239723e-24 1.916708712564146942e-24
+6.170000000000000000e+02 4.555168638118956313e-24 6.578218962671782480e-25
+6.172500000000000000e+02 -5.094653359691714125e-24 -3.076374025984517095e-25
+6.175000000000000000e+02 -6.580082489814268519e-24 -1.775098326947374564e-24
+6.177500000000000000e+02 -2.386723767297387021e-24 3.286894142913906927e-24
+6.180000000000000000e+02 -3.437377968213461333e-24 -1.881124755143209459e-24
+6.182500000000000000e+02 -2.494154543560914782e-24 3.632702522959273554e-25
+6.185000000000000000e+02 4.019039227172565826e-24 -2.428020666167806220e-24
+6.187500000000000000e+02 8.668938781884137770e-24 5.312519974097228176e-24
+6.190000000000000000e+02 4.903710090037319960e-24 3.670339090903903432e-25
+6.192500000000000000e+02 -2.139140179061597330e-25 -7.985190422759847043e-24
+6.195000000000000000e+02 -2.184592208182979304e-24 -2.213746518739001987e-24
+6.197500000000000000e+02 2.125512908178799907e-25 -1.985526481040521119e-24
+6.200000000000000000e+02 -5.765993104137440582e-24 -8.040911473569395432e-25
+6.202500000000000000e+02 -5.367223512757038298e-25 -2.841399457218764827e-24
+6.205000000000000000e+02 -1.160161871961351821e-23 6.430572983614151629e-24
+6.207500000000000000e+02 -3.190509692820650103e-24 -6.891372210597161139e-24
+6.210000000000000000e+02 -3.935973085365426325e-25 -7.843073929403722162e-24
+6.212500000000000000e+02 -2.958110847789022855e-24 1.605477283138589726e-24
+6.215000000000000000e+02 5.309261487922345448e-24 1.960666455860458390e-24
+6.217500000000000000e+02 9.017257084140568178e-24 -3.439228427537106070e-24
+6.220000000000000000e+02 1.766346922773564114e-24 3.044439064171657932e-24
+6.222500000000000000e+02 4.416753423160307516e-24 -7.350257932904031980e-24
+6.225000000000000000e+02 5.233857629081003266e-24 3.708812852546441064e-24
+6.227500000000000000e+02 -4.706796835299153269e-25 -6.057016447421807165e-25
+6.230000000000000000e+02 -8.050342389927691842e-24 5.566095119661274853e-25
+6.232500000000000000e+02 5.996638505260040272e-24 -1.489968522267478418e-24
+6.235000000000000000e+02 -2.942339940408819484e-24 1.993643009066737007e-24
+6.237500000000000000e+02 1.185447249737480979e-24 1.843736400403908551e-24
+6.240000000000000000e+02 -2.958202283483704999e-24 -2.282093210926288008e-24
+6.242500000000000000e+02 3.374668701035028926e-24 -2.037199622304297005e-25
 6.245000000000000000e+02 8.392215841082702882e-24 6.635412134427358908e-24
 6.247500000000000000e+02 3.833382165697717696e-24 1.623650514677728635e-24
 6.250000000000000000e+02 2.093307127378225869e-24 -7.618434164514390224e-24
diff --git a/test/tests.py b/test/tests.py
index 54c55501641924a2dcfa8be92b68132a8cd2f32e..0feeced3f27344e5adc1c765f49b5c1a878110d3 100644
--- a/test/tests.py
+++ b/test/tests.py
@@ -1,11 +1,13 @@
+from __future__ import absolute_import
+
+import os
 import unittest
+
 import numpy as np
-import os
-import shutil
-from context import tupak
-import logging
 from past.builtins import execfile
 
+import tupak
+
 
 class Test(unittest.TestCase):
     outdir = './outdir'
@@ -46,7 +48,7 @@ class Test(unittest.TestCase):
         self.assertAlmostEqual(all(self.msd['hf_signal_and_noise'] - hf_signal_and_noise_saved), 0.00000000, 5)
 
     def test_recover_luminosity_distance(self):
-        likelihood = tupak.likelihood.GravitationalWaveTransient(
+        likelihood = tupak.gw.likelihood.GravitationalWaveTransient(
             [self.msd['IFO']], self.msd['waveform_generator'])
 
         priors = {}
@@ -54,11 +56,10 @@ class Test(unittest.TestCase):
             priors[key] = self.msd['simulation_parameters'][key]
 
         dL = self.msd['simulation_parameters']['luminosity_distance']
-        priors['luminosity_distance'] = tupak.prior.Uniform(
+        priors['luminosity_distance'] = tupak.core.prior.Uniform(
             name='luminosity_distance', minimum=dL - 10, maximum=dL + 10)
 
-
-        result = tupak.sampler.run_sampler(
+        result = tupak.core.sampler.run_sampler(
             likelihood, priors, sampler='nestle', verbose=False, npoints=100)
         self.assertAlmostEqual(np.mean(result.samples), dL,
                                delta=3*np.std(result.samples))
diff --git a/test/waveform_generator_tests.py b/test/waveform_generator_tests.py
index 34cc7925d4ba3aa788781810cff60df99247798b..80edc81d00b62231d516db97e11a83531a1ca9f7 100644
--- a/test/waveform_generator_tests.py
+++ b/test/waveform_generator_tests.py
@@ -1,5 +1,6 @@
+from __future__ import absolute_import
 import unittest
-from context import tupak
+import tupak
 import numpy as np
 
 
@@ -18,13 +19,14 @@ def gaussian_frequency_domain_strain_2(frequency_array, a, m, s, ra, dec, geocen
 class TestWaveformGeneratorInstantiationWithoutOptionalParameters(unittest.TestCase):
 
     def setUp(self):
-        self.waveform_generator = tupak.waveform_generator.WaveformGenerator(1, 4096,
-                                                                             frequency_domain_source_model=gaussian_frequency_domain_strain)
+        self.waveform_generator = \
+            tupak.gw.waveform_generator.WaveformGenerator(1, 4096,
+                                                          frequency_domain_source_model=gaussian_frequency_domain_strain)
         self.simulation_parameters = dict(amplitude=1e-21, mu=100, sigma=1,
-                                     ra=1.375,
-                                     dec=-1.2108,
-                                     geocent_time=1126259642.413,
-                                     psi=2.659)
+                                          ra=1.375,
+                                          dec=-1.2108,
+                                          geocent_time=1126259642.413,
+                                          psi=2.659)
 
     def tearDown(self):
         del self.waveform_generator
@@ -46,20 +48,21 @@ class TestWaveformGeneratorInstantiationWithoutOptionalParameters(unittest.TestC
         self.assertIsInstance(self.waveform_generator.time_array, np.ndarray)
 
     def test_source_model_parameters(self):
-        params = self.simulation_parameters.keys()
-        self.assertItemsEqual(self.waveform_generator.parameters, params)
+        self.assertListEqual(sorted(list(self.waveform_generator.parameters.keys())),
+                             sorted(list(self.simulation_parameters.keys())))
 
 
-class TestParameterSetter(unittest.TestCase):
+class TestSetters(unittest.TestCase):
 
     def setUp(self):
-        self.waveform_generator = tupak.waveform_generator.WaveformGenerator(1, 4096,
-                                                                             frequency_domain_source_model=gaussian_frequency_domain_strain)
+        self.waveform_generator = \
+            tupak.gw.waveform_generator.WaveformGenerator(1, 4096,
+                                                          frequency_domain_source_model=gaussian_frequency_domain_strain)
         self.simulation_parameters = dict(amplitude=1e-21, mu=100, sigma=1,
-                                     ra=1.375,
-                                     dec=-1.2108,
-                                     geocent_time=1126259642.413,
-                                     psi=2.659)
+                                          ra=1.375,
+                                          dec=-1.2108,
+                                          geocent_time=1126259642.413,
+                                          psi=2.659)
 
     def tearDown(self):
         del self.waveform_generator
@@ -72,27 +75,34 @@ class TestParameterSetter(unittest.TestCase):
 
     def test_parameter_setter_none_handling(self):
         self.waveform_generator.parameters = None
-        self.assertItemsEqual(self.waveform_generator.parameters.keys(), self.simulation_parameters.keys())
+        self.assertListEqual(sorted(list(self.waveform_generator.parameters.keys())),
+                             sorted(list(self.simulation_parameters.keys())))
+
+    def test_frequency_array_setter(self):
+        new_frequency_array = np.arange(1, 100)
+        self.waveform_generator.frequency_array = new_frequency_array
+        self.assertTrue(np.array_equal(new_frequency_array, self.waveform_generator.frequency_array))
 
 
 class TestSourceModelSetter(unittest.TestCase):
 
     def setUp(self):
-        self.waveform_generator = tupak.waveform_generator.WaveformGenerator(1, 4096,
-                                                                             frequency_domain_source_model=gaussian_frequency_domain_strain)
+        self.waveform_generator = tupak.gw.waveform_generator.WaveformGenerator(1, 4096,
+                                                                                frequency_domain_source_model=gaussian_frequency_domain_strain)
         self.waveform_generator.frequency_domain_source_model = gaussian_frequency_domain_strain_2
         self.simulation_parameters = dict(amplitude=1e-21, mu=100, sigma=1,
-                                     ra=1.375,
-                                     dec=-1.2108,
-                                     geocent_time=1126259642.413,
-                                     psi=2.659)
+                                          ra=1.375,
+                                          dec=-1.2108,
+                                          geocent_time=1126259642.413,
+                                          psi=2.659)
 
     def tearDown(self):
         del self.waveform_generator
         del self.simulation_parameters
 
     def test_parameters_are_set_correctly(self):
-        self.assertItemsEqual(self.waveform_generator.parameters, self.simulation_parameters.keys())
+        self.assertListEqual(sorted(list(self.waveform_generator.parameters.keys())),
+                             sorted(list(self.simulation_parameters.keys())))
 
 
 if __name__ == '__main__':
diff --git a/tupak/__init__.py b/tupak/__init__.py
index b2b4d20d1a2ede870e94b5bb9223385770a24c32..c88098759f893b0ea4c3d6bc61f155e7a03b6807 100644
--- a/tupak/__init__.py
+++ b/tupak/__init__.py
@@ -6,7 +6,7 @@ Tupak is The User friendly Parameter estimAtion Kode
 
 The aim of tupak is to provide user friendly interface to perform parameter
 estimation. It is primarily designed and built for inference of compact
-binary coalesence events in interferometric data, but it can also be used for
+binary coalescence events in interferometric data, but it can also be used for
 more general problems.
 
 For installation instructions see https://git.ligo.org/Monash/tupak
@@ -17,17 +17,11 @@ For installation instructions see https://git.ligo.org/Monash/tupak
 from __future__ import print_function, division, absolute_import
 
 # import local files, utils should be imported first
-from . import utils
-from . import detector
-from . import prior
-from . import source
-from . import likelihood
-from . import waveform_generator
-from . import result
-from . import sampler
-from . import conversion
+from tupak.gw import detector, conversion, source, waveform_generator
+from tupak.core import likelihood, prior, result, sampler, utils
 
 # import a few often-used functions and classes to simplify scripts
-from .likelihood import Likelihood, GravitationalWaveTransient
-from .waveform_generator import WaveformGenerator
-from .sampler import run_sampler
+from tupak.core.likelihood import Likelihood
+from tupak.gw.likelihood import GravitationalWaveTransient
+from tupak.gw.waveform_generator import WaveformGenerator
+from tupak.core.sampler import run_sampler
diff --git a/tupak/core/__init__.py b/tupak/core/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..1329ed8e86ff0e7b23fed6c45aab0f9d4c92c78d
--- /dev/null
+++ b/tupak/core/__init__.py
@@ -0,0 +1,6 @@
+from __future__ import absolute_import
+import tupak.core.likelihood
+import tupak.core.prior
+import tupak.core.result
+import tupak.core.sampler
+import tupak.core.utils
diff --git a/tupak/core/likelihood.py b/tupak/core/likelihood.py
new file mode 100644
index 0000000000000000000000000000000000000000..02e442240d3a135757abd2b693cc9376ca5de538
--- /dev/null
+++ b/tupak/core/likelihood.py
@@ -0,0 +1,26 @@
+from __future__ import division, print_function
+
+import numpy as np
+
+try:
+    from scipy.special import logsumexp
+except ImportError:
+    from scipy.misc import logsumexp
+
+
+class Likelihood(object):
+    """ Empty likelihood class to be subclassed by other likelihoods """
+
+    def __init__(self, parameters=None):
+        self.parameters = parameters
+
+    def log_likelihood(self):
+        return np.nan
+
+    def noise_log_likelihood(self):
+        return np.nan
+
+    def log_likelihood_ratio(self):
+        return self.log_likelihood() - self.noise_log_likelihood()
+
+
diff --git a/tupak/prior.py b/tupak/core/prior.py
similarity index 82%
rename from tupak/prior.py
rename to tupak/core/prior.py
index 9da566ea6ef8dcceab5b2906a1996812673ab126..cb87079704a9b29dd32fb3fa23b9d9a5714c20d7 100644
--- a/tupak/prior.py
+++ b/tupak/core/prior.py
@@ -8,6 +8,8 @@ from scipy.special import erf, erfinv
 import logging
 import os
 
+from tupak.gw.prior import create_default_prior, test_redundancy
+
 
 class Prior(object):
     """
@@ -443,54 +445,6 @@ class UniformComovingVolume(FromFile):
         return FromFile.__repr__(self)
 
 
-def create_default_prior(name):
-    """
-    Make a default prior for a parameter with a known name.
-
-    This is currently set up for binary black holes.
-
-    Parameters
-    ----------
-    name: str
-        Parameter name
-
-    Return
-    ------
-    prior: Prior
-        Default prior distribution for that parameter, if unknown None is returned.
-    """
-    default_priors = {
-        'mass_1': Uniform(name=name, minimum=20, maximum=100),
-        'mass_2': Uniform(name=name, minimum=20, maximum=100),
-        'chirp_mass': Uniform(name=name, minimum=25, maximum=100),
-        'total_mass': Uniform(name=name, minimum=10, maximum=200),
-        'mass_ratio': Uniform(name=name, minimum=0.125, maximum=1),
-        'symmetric_mass_ratio': Uniform(name=name, minimum=8 / 81, maximum=0.25),
-        'a_1': Uniform(name=name, minimum=0, maximum=0.8),
-        'a_2': Uniform(name=name, minimum=0, maximum=0.8),
-        'tilt_1': Sine(name=name),
-        'tilt_2': Sine(name=name),
-        'cos_tilt_1': Uniform(name=name, minimum=-1, maximum=1),
-        'cos_tilt_2': Uniform(name=name, minimum=-1, maximum=1),
-        'phi_12': Uniform(name=name, minimum=0, maximum=2 * np.pi),
-        'phi_jl': Uniform(name=name, minimum=0, maximum=2 * np.pi),
-        'luminosity_distance': UniformComovingVolume(name=name, minimum=1e2, maximum=5e3),
-        'dec': Cosine(name=name),
-        'ra': Uniform(name=name, minimum=0, maximum=2 * np.pi),
-        'iota': Sine(name=name),
-        'cos_iota': Uniform(name=name, minimum=-1, maximum=1),
-        'psi': Uniform(name=name, minimum=0, maximum=2 * np.pi),
-        'phase': Uniform(name=name, minimum=0, maximum=2 * np.pi)
-    }
-    if name in default_priors.keys():
-        prior = default_priors[name]
-    else:
-        logging.info(
-            "No default prior found for variable {}.".format(name))
-        prior = None
-    return prior
-
-
 def fill_priors(prior, likelihood):
     """
     Fill dictionary of priors based on required parameters of likelihood
@@ -550,55 +504,6 @@ def fill_priors(prior, likelihood):
     return prior
 
 
-def test_redundancy(key, prior):
-    """
-    Test whether adding the key would add be redundant.
-
-    Parameters
-    ----------
-    key: str
-        The string to test.
-    prior: dict
-        Current prior dictionary.
-
-    Return
-    ------
-    redundant: bool
-        Whether the key is redundant
-    """
-    redundant = False
-    mass_parameters = {'mass_1', 'mass_2', 'chirp_mass', 'total_mass', 'mass_ratio', 'symmetric_mass_ratio'}
-    spin_magnitude_parameters = {'a_1', 'a_2'}
-    spin_tilt_1_parameters = {'tilt_1', 'cos_tilt_1'}
-    spin_tilt_2_parameters = {'tilt_2', 'cos_tilt_2'}
-    spin_azimuth_parameters = {'phi_1', 'phi_2', 'phi_12', 'phi_jl'}
-    inclination_parameters = {'iota', 'cos_iota'}
-    distance_parameters = {'luminosity_distance', 'comoving_distance', 'redshift'}
-
-    for parameter_set in [mass_parameters, spin_magnitude_parameters, spin_azimuth_parameters]:
-        if key in parameter_set:
-            if len(parameter_set.intersection(prior.keys())) > 2:
-                redundant = True
-                logging.warning('{} in prior. This may lead to unexpected behaviour.'.format(
-                    parameter_set.intersection(prior.keys())))
-                break
-            elif len(parameter_set.intersection(prior.keys())) == 2:
-                redundant = True
-                break
-    for parameter_set in [inclination_parameters, distance_parameters, spin_tilt_1_parameters, spin_tilt_2_parameters]:
-        if key in parameter_set:
-            if len(parameter_set.intersection(prior.keys())) > 1:
-                redundant = True
-                logging.warning('{} in prior. This may lead to unexpected behaviour.'.format(
-                    parameter_set.intersection(prior.keys())))
-                break
-            elif len(parameter_set.intersection(prior.keys())) == 1:
-                redundant = True
-                break
-
-    return redundant
-
-
 def write_priors_to_file(priors, outdir, label):
     """
     Write the prior distribution to file.
diff --git a/tupak/prior_files/comoving.txt b/tupak/core/prior_files/comoving.txt
similarity index 100%
rename from tupak/prior_files/comoving.txt
rename to tupak/core/prior_files/comoving.txt
diff --git a/tupak/result.py b/tupak/core/result.py
similarity index 100%
rename from tupak/result.py
rename to tupak/core/result.py
diff --git a/tupak/sampler.py b/tupak/core/sampler.py
similarity index 98%
rename from tupak/sampler.py
rename to tupak/core/sampler.py
index 0d18cfce6d623ce5b33c7b4deb5c36ff37aaa51f..2ea3ad08cd7dcc5f77b472bd5442d781f1872bbc 100644
--- a/tupak/sampler.py
+++ b/tupak/core/sampler.py
@@ -8,10 +8,9 @@ import numpy as np
 import matplotlib.pyplot as plt
 import time
 
-from .result import Result, read_in_result
-from .prior import Prior, fill_priors
-from . import utils
-from . import prior
+from tupak.core.result import Result, read_in_result
+from tupak.core.prior import Prior, fill_priors
+from tupak.core import utils
 import tupak
 
 
@@ -520,7 +519,7 @@ def run_sampler(likelihood, priors=None, label='label', outdir='outdir',
 
     Parameters
     ----------
-    likelihood: `tupak.likelihood.GravitationalWaveTransient`
+    likelihood: `tupak.GravitationalWaveTransient`
         A `GravitationalWaveTransient` instance
     priors: dict
         A dictionary of the priors for each parameter - missing parameters will
@@ -558,7 +557,7 @@ def run_sampler(likelihood, priors=None, label='label', outdir='outdir',
     if priors is None:
         priors = dict()
     priors = fill_priors(priors, likelihood)
-    tupak.prior.write_priors_to_file(priors, outdir, label)
+    tupak.core.prior.write_priors_to_file(priors, outdir, label)
 
     if implemented_samplers.__contains__(sampler.title()):
         sampler_class = globals()[sampler.title()]
diff --git a/tupak/core/utils.py b/tupak/core/utils.py
new file mode 100644
index 0000000000000000000000000000000000000000..0fa1ecc57c2c6a21c319f9909e6f6aaefee4c7b3
--- /dev/null
+++ b/tupak/core/utils.py
@@ -0,0 +1,310 @@
+from __future__ import division
+import logging
+import os
+import numpy as np
+from math import fmod
+import argparse
+
+# Constants
+
+speed_of_light = 299792458.0  # speed of light in m/s
+parsec = 3.085677581 * 1e16
+solar_mass = 1.98855 * 1e30
+
+
+def get_sampling_frequency(time_series):
+    """
+    Calculate sampling frequency from a time series
+    """
+    tol = 1e-10
+    if np.ptp(np.diff(time_series)) > tol:
+        raise ValueError("Your time series was not evenly sampled")
+    else:
+        return 1. / (time_series[1] - time_series[0])
+
+
+def create_time_series(sampling_frequency, duration, starting_time=0.):
+    return np.arange(starting_time, duration, 1./sampling_frequency)
+
+
+def ra_dec_to_theta_phi(ra, dec, gmst):
+    """
+    Convert from RA and DEC to polar coordinates on celestial sphere
+    Input:
+    ra - right ascension in radians
+    dec - declination in radians
+    gmst - Greenwich mean sidereal time of arrival of the signal in radians
+    Output:
+    theta - zenith angle in radians
+    phi - azimuthal angle in radians
+    """
+    phi = ra - gmst
+    theta = np.pi / 2 - dec
+    return theta, phi
+
+
+def gps_time_to_gmst(gps_time):
+    """
+    Convert gps time to Greenwich mean sidereal time in radians
+
+    This method assumes a constant rotation rate of earth since 00:00:00, 1 Jan. 2000
+    A correction has been applied to give the exact correct value for 00:00:00, 1 Jan. 2018
+    Error accumulates at a rate of ~0.0001 radians/decade.
+
+    Input:
+    time - gps time
+    Output:
+    gmst - Greenwich mean sidereal time in radians
+    """
+    omega_earth = 2 * np.pi * (1 / 365.2425 + 1) / 86400.
+    gps_2000 = 630720013.
+    gmst_2000 = (6 + 39. / 60 + 51.251406103947375 / 3600) * np.pi / 12
+    correction_2018 = -0.00017782487379358614
+    sidereal_time = omega_earth * (gps_time - gps_2000) + gmst_2000 + correction_2018
+    gmst = fmod(sidereal_time, 2 * np.pi)
+    return gmst
+
+
+def create_frequency_series(sampling_frequency, duration):
+    """
+    Create a frequency series with the correct length and spacing.
+
+    :param sampling_frequency: sampling frequency
+    :param duration: duration of data
+    :return: frequencies, frequency series
+    """
+    number_of_samples = duration * sampling_frequency
+    number_of_samples = int(np.round(number_of_samples))
+
+    # prepare for FFT
+    number_of_frequencies = (number_of_samples-1)//2
+    delta_freq = 1./duration
+
+    frequencies = delta_freq * np.linspace(1, number_of_frequencies, number_of_frequencies)
+
+    if len(frequencies) % 2 == 1:
+        frequencies = np.concatenate(([0], frequencies, [sampling_frequency / 2.]))
+    else:
+        # no Nyquist frequency when N=odd
+        frequencies = np.concatenate(([0], frequencies))
+
+    return frequencies
+
+
+def create_white_noise(sampling_frequency, duration):
+    """
+    Create white_noise which is then coloured by a given PSD
+
+
+    :param sampling_frequency: sampling frequency
+    :param duration: duration of data
+    """
+
+    number_of_samples = duration * sampling_frequency
+    number_of_samples = int(np.round(number_of_samples))
+
+    delta_freq = 1./duration
+
+    frequencies = create_frequency_series(sampling_frequency, duration)
+
+    norm1 = 0.5*(1./delta_freq)**0.5
+    re1 = np.random.normal(0, norm1, len(frequencies))
+    im1 = np.random.normal(0, norm1, len(frequencies))
+    htilde1 = re1 + 1j*im1
+
+    # convolve data with instrument transfer function
+    otilde1 = htilde1 * 1.
+    # set DC and Nyquist = 0
+    otilde1[0] = 0
+    # no Nyquist frequency when N=odd
+    if np.mod(number_of_samples, 2) == 0:
+        otilde1[-1] = 0
+
+    # normalise for positive frequencies and units of strain/rHz
+    white_noise = otilde1
+    # python: transpose for use with infft
+    white_noise = np.transpose(white_noise)
+    frequencies = np.transpose(frequencies)
+
+    return white_noise, frequencies
+
+
+def nfft(ht, Fs):
+    """
+    performs an FFT while keeping track of the frequency bins
+    assumes input time series is real (positive frequencies only)
+
+    ht = time series
+    Fs = sampling frequency
+
+    returns
+    hf = single-sided FFT of ft normalised to units of strain / sqrt(Hz)
+    f = frequencies associated with hf
+    """
+    # add one zero padding if time series does not have even number of sampling times
+    if np.mod(len(ht), 2) == 1:
+        ht = np.append(ht, 0)
+    LL = len(ht)
+    # frequency range
+    ff = Fs / 2 * np.linspace(0, 1, int(LL/2+1))
+
+    # calculate FFT
+    # rfft computes the fft for real inputs
+    hf = np.fft.rfft(ht)
+
+    # normalise to units of strain / sqrt(Hz)
+    hf = hf / Fs
+
+    return hf, ff
+
+
+def infft(hf, Fs):
+    """
+    inverse FFT for use in conjunction with nfft
+    eric.thrane@ligo.org
+    input:
+    hf = single-side FFT calculated by fft_eht
+    Fs = sampling frequency
+    output:
+    h = time series
+    """
+    # use irfft to work with positive frequencies only
+    h = np.fft.irfft(hf)
+    # undo LAL/Lasky normalisation
+    h = h*Fs
+
+    return h
+
+
+def setup_logger(outdir=None, label=None, log_level=None):
+    """ Setup logging output: call at the start of the script to use
+
+    Parameters
+    ----------
+    outdir, label: str
+        If supplied, write the logging output to outdir/label.log
+    log_level = ['debug', 'info', 'warning']
+        Either a string from the list above, or an interger as specified
+        in https://docs.python.org/2/library/logging.html#logging-levels
+    """
+
+    if type(log_level) is str:
+        try:
+            LEVEL = getattr(logging, log_level.upper())
+        except AttributeError:
+            raise ValueError('log_level {} not understood'.format(log_level))
+    elif log_level is None:
+        LEVEL = command_line_args.log_level
+    else:
+        LEVEL = int(log_level)
+
+    logger = logging.getLogger()
+    stream_handler = logging.StreamHandler()
+    stream_handler.setFormatter(logging.Formatter(
+        '%(asctime)s %(levelname)-8s: %(message)s', datefmt='%H:%M'))
+    logger.setLevel(LEVEL)
+    stream_handler.setLevel(LEVEL)
+    logger.addHandler(stream_handler)
+
+    if label:
+        if outdir:
+            check_directory_exists_and_if_not_mkdir(outdir)
+        else:
+            outdir = '.'
+        log_file = '{}/{}.log'.format(outdir, label)
+        file_handler = logging.FileHandler(log_file)
+        file_handler.setFormatter(logging.Formatter(
+            '%(asctime)s %(levelname)-8s: %(message)s', datefmt='%H:%M'))
+
+        file_handler.setLevel(LEVEL)
+        logger.addHandler(file_handler)
+
+    version_file = os.path.join(os.path.dirname(os.path.dirname(__file__)), '.version')
+    with open(version_file, 'r') as f:
+        version = f.readline()
+    logging.info('Running tupak version: {}'.format(version))
+
+
+def get_progress_bar(module='tqdm'):
+    if module in ['tqdm']:
+        try:
+            from tqdm import tqdm
+        except ImportError:
+            def tqdm(x, *args, **kwargs):
+                return x
+        return tqdm
+    elif module in ['tqdm_notebook']:
+        try:
+            from tqdm import tqdm_notebook as tqdm
+        except ImportError:
+            def tqdm(x, *args, **kwargs):
+                return x
+        return tqdm
+
+
+def spherical_to_cartesian(radius, theta, phi):
+    """
+    Convert from spherical coordinates to cartesian.
+
+    :param radius: radial coordinate
+    :param theta: axial coordinate
+    :param phi: azimuthal coordinate
+    :return cartesian: cartesian vector
+    """
+    cartesian = [radius * np.sin(theta) * np.cos(phi), radius * np.sin(theta) * np.sin(phi), radius * np.cos(theta)]
+    return cartesian
+
+
+def check_directory_exists_and_if_not_mkdir(directory):
+    if not os.path.exists(directory):
+        os.makedirs(directory)
+        logging.debug('Making directory {}'.format(directory))
+    else:
+        logging.debug('Directory {} exists'.format(directory))
+
+
+def set_up_command_line_arguments():
+    parser = argparse.ArgumentParser(
+        description="Command line interface for tupak scripts")
+    parser.add_argument("-v", "--verbose", action="store_true",
+                        help=("Increase output verbosity [logging.DEBUG]." +
+                              " Overridden by script level settings"))
+    parser.add_argument("-q", "--quite", action="store_true",
+                        help=("Decrease output verbosity [logging.WARNING]." +
+                              " Overridden by script level settings"))
+    parser.add_argument("-c", "--clean", action="store_true",
+                        help="Force clean data, never use cached data")
+    parser.add_argument("-u", "--use-cached", action="store_true",
+                        help="Force cached data and do not check its validity")
+    parser.add_argument("-d", "--detectors",  nargs='+',
+                        default=['H1', 'L1', 'V1'],
+                        help=("List of detectors to use in open data calls, "
+                              "e.g. -d H1 L1 for H1 and L1"))
+    parser.add_argument("-t", "--test", action="store_true",
+                        help=("Used for testing only: don't run full PE, but"
+                              " just check nothing breaks"))
+    args, _ = parser.parse_known_args()
+
+    if args.quite:
+        args.log_level = logging.WARNING
+    elif args.verbose:
+        args.log_level = logging.DEBUG
+    else:
+        args.log_level = logging.INFO
+
+    return args
+
+
+command_line_args = set_up_command_line_arguments()
+
+if 'DISPLAY' in os.environ:
+    pass
+else:
+    logging.info('No $DISPLAY environment variable found, so importing \
+                  matplotlib.pyplot with non-interactive "Agg" backend.')
+    import matplotlib
+    matplotlib.use('Agg')
+
+
+
+
diff --git a/tupak/gw/__init__.py b/tupak/gw/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..1422674e12f789e26f76ac1ad3b5766a8bde9edf
--- /dev/null
+++ b/tupak/gw/__init__.py
@@ -0,0 +1,7 @@
+from __future__ import absolute_import
+import tupak.gw.conversion
+import tupak.gw.detector
+import tupak.gw.likelihood
+import tupak.gw.source
+import tupak.gw.utils
+import tupak.gw.waveform_generator
diff --git a/tupak/conversion.py b/tupak/gw/conversion.py
similarity index 94%
rename from tupak/conversion.py
rename to tupak/gw/conversion.py
index 236f5b6ffab4c6dc2661c04be952354f700e4f34..5e01429cb2d355dcf880e86fdd9658fc168c6738 100644
--- a/tupak/conversion.py
+++ b/tupak/gw/conversion.py
@@ -111,7 +111,7 @@ def generate_all_bbh_parameters(sample, likelihood=None, priors=None):
     ----------
     sample: dict or pandas.DataFrame
         Samples to fill in with extra parameters, this may be either an injection or posterior samples.
-    likelihood: tupak.likelihood.GravitationalWaveTransient
+    likelihood: tupak.GravitationalWaveTransient
         GravitationalWaveTransient used for sampling, used for waveform and likelihood.interferometers.
     priors: dict, optional
         Dictionary of prior objects, used to fill in non-sampled parameters.
@@ -132,7 +132,7 @@ def fill_from_fixed_priors(sample, priors):
     """Add parameters with delta function prior to the data frame/dictionary."""
     if priors is not None:
         for name in priors:
-            if isinstance(priors[name], tupak.prior.DeltaFunction):
+            if isinstance(priors[name], tupak.core.prior.DeltaFunction):
                 sample[name] = priors[name].peak
 
 
@@ -166,7 +166,7 @@ def generate_component_spins(sample):
             sample['spin_2y'], sample['spin_2z'] = \
             lalsim.SimInspiralTransformPrecessingNewInitialConditions(
                 sample['iota'], sample['phi_jl'], sample['tilt_1'], sample['tilt_2'], sample['phi_12'], sample['a_1'],
-                sample['a_2'], sample['mass_1'] * tupak.utils.solar_mass, sample['mass_2'] * tupak.utils.solar_mass,
+                sample['a_2'], sample['mass_1'] * tupak.core.utils.solar_mass, sample['mass_2'] * tupak.core.utils.solar_mass,
                 sample['reference_frequency'], sample['phase'])
 
         sample['phi_1'] = np.arctan(sample['spin_1y'] / sample['spin_1x'])
@@ -183,7 +183,7 @@ def generate_component_spins(sample):
                 lalsim.SimInspiralTransformPrecessingNewInitialConditions(
                     sample['iota'][ii], sample['phi_jl'][ii], sample['tilt_1'][ii], sample['tilt_2'][ii],
                     sample['phi_12'][ii], sample['a_1'][ii], sample['a_2'][ii],
-                    sample['mass_1'][ii] * tupak.utils.solar_mass, sample['mass_2'][ii] * tupak.utils.solar_mass,
+                    sample['mass_1'][ii] * tupak.core.utils.solar_mass, sample['mass_2'][ii] * tupak.core.utils.solar_mass,
                     sample['reference_frequency'][ii], sample['phase'][ii])
 
         for name in new_spin_parameters:
@@ -208,9 +208,9 @@ def compute_snrs(sample, likelihood):
                 signal = interferometer.get_detector_response(signal_polarizations,
                                                               likelihood.waveform_generator.parameters)
                 sample['{}_matched_filter_snr'.format(interferometer.name)] = \
-                    tupak.utils.matched_filter_snr_squared(signal, interferometer,
-                                                           likelihood.waveform_generator.time_duration)**0.5
-                sample['{}_optimal_snr'.format(interferometer.name)] = tupak.utils.optimal_snr_squared(
+                    tupak.gw.utils.matched_filter_snr_squared(signal, interferometer,
+                                                                likelihood.waveform_generator.time_duration) ** 0.5
+                sample['{}_optimal_snr'.format(interferometer.name)] = tupak.gw.utils.optimal_snr_squared(
                     signal, interferometer, likelihood.waveform_generator.time_duration) ** 0.5
         else:
             logging.info('Computing SNRs for every sample, this may take some time.')
@@ -226,9 +226,9 @@ def compute_snrs(sample, likelihood):
                 for interferometer in all_interferometers:
                     signal = interferometer.get_detector_response(signal_polarizations,
                                                                   likelihood.waveform_generator.parameters)
-                    matched_filter_snrs[interferometer.name].append(tupak.utils.matched_filter_snr_squared(
-                        signal, interferometer, likelihood.waveform_generator.time_duration)**0.5)
-                    optimal_snrs[interferometer.name].append(tupak.utils.optimal_snr_squared(
+                    matched_filter_snrs[interferometer.name].append(tupak.gw.utils.matched_filter_snr_squared(
+                        signal, interferometer, likelihood.waveform_generator.time_duration) ** 0.5)
+                    optimal_snrs[interferometer.name].append(tupak.gw.utils.optimal_snr_squared(
                         signal, interferometer, likelihood.waveform_generator.time_duration) ** 0.5)
 
             for interferometer in likelihood.interferometers:
diff --git a/tupak/detector.py b/tupak/gw/detector.py
similarity index 96%
rename from tupak/detector.py
rename to tupak/gw/detector.py
index eec24499606a82a948c8621d0a3319c7a725d6bf..9fff9711add52a2eb591568af579e2fda06e195a 100644
--- a/tupak/detector.py
+++ b/tupak/gw/detector.py
@@ -9,8 +9,8 @@ from gwpy.signal import filter_design
 from scipy import signal
 from scipy.interpolate import interp1d
 
-import tupak
-from . import utils
+import tupak.gw.utils
+from tupak.core import utils
 
 
 class Interferometer(object):
@@ -164,7 +164,7 @@ class Interferometer(object):
     @property
     def vertex(self):
         if self.__vertex_updated is False:
-            self.__vertex = utils.get_vertex_position_geocentric(self.__latitude, self.__longitude, self.elevation)
+            self.__vertex = tupak.gw.utils.get_vertex_position_geocentric(self.__latitude, self.__longitude, self.elevation)
             self.__vertex_updated = True
         return self.__vertex
 
@@ -212,7 +212,7 @@ class Interferometer(object):
         :param mode: polarisation mode
         :return: detector_response(theta, phi, psi, mode): antenna response for the specified mode.
         """
-        polarization_tensor = utils.get_polarization_tensor(ra, dec, time, psi, mode)
+        polarization_tensor = tupak.gw.utils.get_polarization_tensor(ra, dec, time, psi, mode)
         detector_response = np.einsum('ij,ij->', self.detector_tensor, polarization_tensor)
         return detector_response
 
@@ -271,11 +271,11 @@ class Interferometer(object):
             else:
                 logging.info('Injecting into zero noise.')
                 self.data = signal_ifo
-            opt_snr = np.sqrt(tupak.utils.optimal_snr_squared(signal=signal_ifo, interferometer=self,
-                                                              time_duration=1 / (self.frequency_array[1]
+            opt_snr = np.sqrt(tupak.gw.utils.optimal_snr_squared(signal=signal_ifo, interferometer=self,
+                                                                 time_duration=1 / (self.frequency_array[1]
                                                                                  - self.frequency_array[0])).real)
-            mf_snr = np.sqrt(tupak.utils.matched_filter_snr_squared(signal=signal_ifo, interferometer=self,
-                                                                    time_duration=1 / (self.frequency_array[1]
+            mf_snr = np.sqrt(tupak.gw.utils.matched_filter_snr_squared(signal=signal_ifo, interferometer=self,
+                                                                       time_duration=1 / (self.frequency_array[1]
                                                                                        - self.frequency_array[0])).real)
             logging.info("Injection found with optimal SNR = {:.2f} and matched filter SNR = {:.2f} in {}".format(
                 opt_snr, mf_snr, self.name))
@@ -375,9 +375,9 @@ class Interferometer(object):
             frequency_domain_strain = np.zeros_like(frequencies) * (1 + 1j)
         elif frame_file is not None:
             logging.info('Reading data from frame, {}.'.format(self.name))
-            strain = tupak.utils.read_frame_file(
+            strain = tupak.gw.utils.read_frame_file(
                 frame_file, t1=epoch, t2=epoch+duration, channel=channel_name, resample=sampling_frequency)
-            frequency_domain_strain, frequencies = tupak.utils.process_strain_data(strain, **kwargs)
+            frequency_domain_strain, frequencies = tupak.gw.utils.process_strain_data(strain, **kwargs)
             if overwrite_psd:
                 self.power_spectral_density = PowerSpectralDensity(
                     frame_file=frame_file, channel_name=channel_name, epoch=epoch, **kwargs)
@@ -404,7 +404,7 @@ class Interferometer(object):
         Output:
         delta_t - time delay from geocenter
         """
-        delta_t = utils.time_delay_geocentric(self.vertex, np.array([0, 0, 0]), ra, dec, time)
+        delta_t = tupak.gw.utils.time_delay_geocentric(self.vertex, np.array([0, 0, 0]), ra, dec, time)
         return delta_t
 
     def vertex_position_geocentric(self):
@@ -414,7 +414,7 @@ class Interferometer(object):
         Based on arXiv:gr-qc/0008066 Eqs. B11-B13 except for the typo in the definition of the local radius.
         See Section 2.1 of LIGO-T980044-10 for the correct expression
         """
-        vertex_position = utils.get_vertex_position_geocentric(self.__latitude, self.__longitude, self.__elevation)
+        vertex_position = tupak.gw.utils.get_vertex_position_geocentric(self.__latitude, self.__longitude, self.__elevation)
         return vertex_position
 
     @property
@@ -478,8 +478,8 @@ class PowerSpectralDensity:
                     min(self.amplitude_spectral_density)))
                 logging.warning("You may have intended to provide this as a power spectral density.")
         elif frame_file is not None:
-            strain = tupak.utils.read_frame_file(frame_file, t1=epoch - psd_duration - psd_offset,
-                                                 t2=epoch - psd_duration, channel=channel_name)
+            strain = tupak.gw.utils.read_frame_file(frame_file, t1=epoch - psd_duration - psd_offset,
+                                                    t2=epoch - psd_duration, channel=channel_name)
             sampling_frequency = int(strain.sample_rate.value)
 
             # Low pass filter
@@ -663,11 +663,11 @@ def get_interferometer_with_open_data(
 
     utils.check_directory_exists_and_if_not_mkdir(outdir)
 
-    strain = utils.get_open_strain_data(
+    strain = tupak.gw.utils.get_open_strain_data(
         name, center_time - T / 2, center_time + T / 2, outdir=outdir, cache=cache,
         raw_data_file=raw_data_file, **kwargs)
 
-    strain_psd = utils.get_open_strain_data(
+    strain_psd = tupak.gw.utils.get_open_strain_data(
         name, center_time + psd_offset, center_time + psd_offset + psd_duration,
         raw_data_file=raw_data_file,
         outdir=outdir, cache=cache, **kwargs)
@@ -842,7 +842,7 @@ def get_event_data(
     interferometers: list
         A list of tupak.detector.Interferometer objects
     """
-    event_time = tupak.utils.get_event_time(event)
+    event_time = tupak.gw.utils.get_event_time(event)
 
     interferometers = []
 
diff --git a/tupak/likelihood.py b/tupak/gw/likelihood.py
similarity index 87%
rename from tupak/likelihood.py
rename to tupak/gw/likelihood.py
index 44a8e9006e9b814658a2f0ef4c97f7567aa919b6..d01334468456639fb5a11c2d36f6430d180501c9 100644
--- a/tupak/likelihood.py
+++ b/tupak/gw/likelihood.py
@@ -1,35 +1,21 @@
-from __future__ import division, print_function
+import logging
 
 import numpy as np
+from scipy.interpolate import interp2d, interp1d
+
+import tupak.gw.prior
 
 try:
     from scipy.special import logsumexp
 except ImportError:
     from scipy.misc import logsumexp
-from scipy.special import i0e
-from scipy.interpolate import interp1d
-from scipy.interpolate import interp2d
-import tupak
-import logging
-
-
-class Likelihood(object):
-    """ Empty likelihood class to be subclassed by other likelihoods """
-
-    def __init__(self, parameters=None):
-        self.parameters = parameters
+from scipy.special._ufuncs import i0e
 
-    def log_likelihood(self):
-        return np.nan
-
-    def noise_log_likelihood(self):
-        return np.nan
-
-    def log_likelihood_ratio(self):
-        return self.log_likelihood() - self.noise_log_likelihood()
+import tupak
+from tupak.core import likelihood as likelihood
 
 
-class GravitationalWaveTransient(Likelihood):
+class GravitationalWaveTransient(likelihood.Likelihood):
     """ A gravitational-wave transient likelihood object
 
     This is the usual likelihood object to use for transient gravitational
@@ -64,7 +50,7 @@ class GravitationalWaveTransient(Likelihood):
     def __init__(self, interferometers, waveform_generator, time_marginalization=False, distance_marginalization=False,
                  phase_marginalization=False, prior=None):
 
-        Likelihood.__init__(self, waveform_generator.parameters)
+        likelihood.Likelihood.__init__(self, waveform_generator.parameters)
         self.interferometers = interferometers
         self.waveform_generator = waveform_generator
         self.non_standard_sampling_parameter_keys = self.waveform_generator.non_standard_sampling_parameter_keys
@@ -99,9 +85,9 @@ class GravitationalWaveTransient(Likelihood):
     def noise_log_likelihood(self):
         log_l = 0
         for interferometer in self.interferometers:
-            log_l -= tupak.utils.noise_weighted_inner_product(interferometer.data, interferometer.data,
-                                                              interferometer.power_spectral_density_array,
-                                                              self.waveform_generator.time_duration) / 2
+            log_l -= tupak.gw.utils.noise_weighted_inner_product(interferometer.data, interferometer.data,
+                                                                 interferometer.power_spectral_density_array,
+                                                                 self.waveform_generator.time_duration) / 2
         return log_l.real
 
     def log_likelihood_ratio(self):
@@ -116,10 +102,10 @@ class GravitationalWaveTransient(Likelihood):
         for interferometer in self.interferometers:
             signal_ifo = interferometer.get_detector_response(waveform_polarizations,
                                                               self.waveform_generator.parameters)
-            matched_filter_snr_squared += tupak.utils.matched_filter_snr_squared(
+            matched_filter_snr_squared += tupak.gw.utils.matched_filter_snr_squared(
                 signal_ifo, interferometer, self.waveform_generator.time_duration)
 
-            optimal_snr_squared += tupak.utils.optimal_snr_squared(
+            optimal_snr_squared += tupak.gw.utils.optimal_snr_squared(
                 signal_ifo, interferometer, self.waveform_generator.time_duration)
             if self.time_marginalization:
                 interferometer.time_marginalization = self.time_marginalization
@@ -153,7 +139,7 @@ class GravitationalWaveTransient(Likelihood):
                     log_l = logsumexp(dist_marged_log_l_tc_array, axis=0, b=delta_tc)
 
             elif self.phase_marginalization:
-                log_l = logsumexp(self.bessel_function_interped(abs(matched_filter_snr_squared_tc_array)), b=delta_tc)\
+                log_l = logsumexp(self.bessel_function_interped(abs(matched_filter_snr_squared_tc_array)), b=delta_tc) \
                         - optimal_snr_squared / 2. - tc_log_norm
 
             else:
@@ -192,7 +178,7 @@ class GravitationalWaveTransient(Likelihood):
     def setup_distance_marginalization(self):
         if 'luminosity_distance' not in self.prior.keys():
             logging.info('No prior provided for distance, using default prior.')
-            self.prior['luminosity_distance'] = tupak.prior.create_default_prior('luminosity_distance')
+            self.prior['luminosity_distance'] = tupak.gw.prior.create_default_prior('luminosity_distance')
         self.distance_array = np.linspace(self.prior['luminosity_distance'].minimum,
                                           self.prior['luminosity_distance'].maximum, int(1e4))
         self.delta_distance = self.distance_array[1] - self.distance_array[0]
@@ -231,16 +217,16 @@ class GravitationalWaveTransient(Likelihood):
                                                         self.dist_margd_loglikelihood_array)
 
     def setup_phase_marginalization(self):
-        if 'phase' not in self.prior.keys() or not isinstance(self.prior['phase'], tupak.prior.Prior):
+        if 'phase' not in self.prior.keys() or not isinstance(self.prior['phase'], tupak.core.prior.Prior):
             logging.info('No prior provided for phase at coalescence, using default prior.')
-            self.prior['phase'] = tupak.prior.create_default_prior('phase')
+            self.prior['phase'] = tupak.gw.prior.create_default_prior('phase')
         self.bessel_function_interped = interp1d(np.linspace(0, 1e6, int(1e5)),
                                                  np.log([i0e(snr) for snr in np.linspace(0, 1e6, int(1e5))])
                                                  + np.linspace(0, 1e6, int(1e5)),
                                                  bounds_error=False, fill_value=-np.inf)
 
 
-class BasicGravitationalWaveTransient(Likelihood):
+class BasicGravitationalWaveTransient(likelihood.Likelihood):
     """ A basic gravitational wave transient likelihood
 
     The simplest frequency-domain gravitational wave transient likelihood. Does
@@ -257,14 +243,14 @@ class BasicGravitationalWaveTransient(Likelihood):
 
     Returns
     -------
-    Likelihood: `tupak.likelihood.Likelihood`
+    Likelihood: `tupak.gw.likelihood.BasicGravitationalWaveTransient`
         A likelihood object, able to compute the likelihood of the data given
         some model parameters
 
     """
 
     def __init__(self, interferometers, waveform_generator):
-        Likelihood.__init__(self, waveform_generator.parameters)
+        likelihood.Likelihood.__init__(self, waveform_generator.parameters)
         self.interferometers = interferometers
         self.waveform_generator = waveform_generator
 
@@ -310,18 +296,18 @@ def get_binary_black_hole_likelihood(interferometers):
 
     Returns
     -------
-    likelihood: tupak.likelihood.GravitationalWaveTransient
+    likelihood: tupak.GravitationalWaveTransient
         The likelihood to pass to `run_sampler`
     """
-    waveform_generator = tupak.waveform_generator.WaveformGenerator(
+    waveform_generator = tupak.gw.waveform_generator.WaveformGenerator(
         time_duration=interferometers[0].duration, sampling_frequency=interferometers[0].sampling_frequency,
-        frequency_domain_source_model=tupak.source.lal_binary_black_hole,
+        frequency_domain_source_model=tupak.gw.source.lal_binary_black_hole,
         parameters={'waveform_approximant': 'IMRPhenomPv2', 'reference_frequency': 50})
-    likelihood = tupak.likelihood.GravitationalWaveTransient(interferometers, waveform_generator)
+    likelihood = tupak.core.likelihood.GravitationalWaveTransient(interferometers, waveform_generator)
     return likelihood
 
 
-class HyperparameterLikelihood(Likelihood):
+class HyperparameterLikelihood(likelihood.Likelihood):
     """ A likelihood for infering hyperparameter posterior distributions
 
     See Eq. (1) of https://arxiv.org/abs/1801.02699 for a definition.
@@ -343,7 +329,7 @@ class HyperparameterLikelihood(Likelihood):
     """
 
     def __init__(self, samples, hyper_prior, run_prior):
-        Likelihood.__init__(self, parameters=hyper_prior.__dict__)
+        likelihood.Likelihood.__init__(self, parameters=hyper_prior.__dict__)
         self.samples = samples
         self.hyper_prior = hyper_prior
         self.run_prior = run_prior
diff --git a/tupak/noise_curves/AdV_asd.txt b/tupak/gw/noise_curves/AdV_asd.txt
similarity index 100%
rename from tupak/noise_curves/AdV_asd.txt
rename to tupak/gw/noise_curves/AdV_asd.txt
diff --git a/tupak/noise_curves/AdV_psd.txt b/tupak/gw/noise_curves/AdV_psd.txt
similarity index 100%
rename from tupak/noise_curves/AdV_psd.txt
rename to tupak/gw/noise_curves/AdV_psd.txt
diff --git a/tupak/noise_curves/CE_asd.txt b/tupak/gw/noise_curves/CE_asd.txt
similarity index 100%
rename from tupak/noise_curves/CE_asd.txt
rename to tupak/gw/noise_curves/CE_asd.txt
diff --git a/tupak/noise_curves/CE_psd.txt b/tupak/gw/noise_curves/CE_psd.txt
similarity index 100%
rename from tupak/noise_curves/CE_psd.txt
rename to tupak/gw/noise_curves/CE_psd.txt
diff --git a/tupak/noise_curves/CE_wb_asd.txt b/tupak/gw/noise_curves/CE_wb_asd.txt
similarity index 100%
rename from tupak/noise_curves/CE_wb_asd.txt
rename to tupak/gw/noise_curves/CE_wb_asd.txt
diff --git a/tupak/noise_curves/CE_wb_psd.txt b/tupak/gw/noise_curves/CE_wb_psd.txt
similarity index 100%
rename from tupak/noise_curves/CE_wb_psd.txt
rename to tupak/gw/noise_curves/CE_wb_psd.txt
diff --git a/tupak/noise_curves/ET_B_asd.txt b/tupak/gw/noise_curves/ET_B_asd.txt
similarity index 100%
rename from tupak/noise_curves/ET_B_asd.txt
rename to tupak/gw/noise_curves/ET_B_asd.txt
diff --git a/tupak/noise_curves/ET_B_psd.txt b/tupak/gw/noise_curves/ET_B_psd.txt
similarity index 100%
rename from tupak/noise_curves/ET_B_psd.txt
rename to tupak/gw/noise_curves/ET_B_psd.txt
diff --git a/tupak/noise_curves/ET_D_asd.txt b/tupak/gw/noise_curves/ET_D_asd.txt
similarity index 100%
rename from tupak/noise_curves/ET_D_asd.txt
rename to tupak/gw/noise_curves/ET_D_asd.txt
diff --git a/tupak/noise_curves/ET_D_psd.txt b/tupak/gw/noise_curves/ET_D_psd.txt
similarity index 100%
rename from tupak/noise_curves/ET_D_psd.txt
rename to tupak/gw/noise_curves/ET_D_psd.txt
diff --git a/tupak/noise_curves/GEO600_S6e_asd.txt b/tupak/gw/noise_curves/GEO600_S6e_asd.txt
similarity index 100%
rename from tupak/noise_curves/GEO600_S6e_asd.txt
rename to tupak/gw/noise_curves/GEO600_S6e_asd.txt
diff --git a/tupak/noise_curves/LIGO_srd_asd.txt b/tupak/gw/noise_curves/LIGO_srd_asd.txt
similarity index 100%
rename from tupak/noise_curves/LIGO_srd_asd.txt
rename to tupak/gw/noise_curves/LIGO_srd_asd.txt
diff --git a/tupak/noise_curves/LIGO_srd_psd.txt b/tupak/gw/noise_curves/LIGO_srd_psd.txt
similarity index 100%
rename from tupak/noise_curves/LIGO_srd_psd.txt
rename to tupak/gw/noise_curves/LIGO_srd_psd.txt
diff --git a/tupak/noise_curves/README.md b/tupak/gw/noise_curves/README.md
similarity index 100%
rename from tupak/noise_curves/README.md
rename to tupak/gw/noise_curves/README.md
diff --git a/tupak/noise_curves/aLIGO_ZERO_DET_high_P_asd.txt b/tupak/gw/noise_curves/aLIGO_ZERO_DET_high_P_asd.txt
similarity index 100%
rename from tupak/noise_curves/aLIGO_ZERO_DET_high_P_asd.txt
rename to tupak/gw/noise_curves/aLIGO_ZERO_DET_high_P_asd.txt
diff --git a/tupak/noise_curves/aLIGO_ZERO_DET_high_P_psd.txt b/tupak/gw/noise_curves/aLIGO_ZERO_DET_high_P_psd.txt
similarity index 100%
rename from tupak/noise_curves/aLIGO_ZERO_DET_high_P_psd.txt
rename to tupak/gw/noise_curves/aLIGO_ZERO_DET_high_P_psd.txt
diff --git a/tupak/noise_curves/aLIGO_early_asd.txt b/tupak/gw/noise_curves/aLIGO_early_asd.txt
similarity index 100%
rename from tupak/noise_curves/aLIGO_early_asd.txt
rename to tupak/gw/noise_curves/aLIGO_early_asd.txt
diff --git a/tupak/noise_curves/aLIGO_early_high_asd.txt b/tupak/gw/noise_curves/aLIGO_early_high_asd.txt
similarity index 100%
rename from tupak/noise_curves/aLIGO_early_high_asd.txt
rename to tupak/gw/noise_curves/aLIGO_early_high_asd.txt
diff --git a/tupak/noise_curves/aLIGO_early_high_psd.txt b/tupak/gw/noise_curves/aLIGO_early_high_psd.txt
similarity index 100%
rename from tupak/noise_curves/aLIGO_early_high_psd.txt
rename to tupak/gw/noise_curves/aLIGO_early_high_psd.txt
diff --git a/tupak/noise_curves/aLIGO_early_psd.txt b/tupak/gw/noise_curves/aLIGO_early_psd.txt
similarity index 100%
rename from tupak/noise_curves/aLIGO_early_psd.txt
rename to tupak/gw/noise_curves/aLIGO_early_psd.txt
diff --git a/tupak/noise_curves/aLIGO_late_asd.txt b/tupak/gw/noise_curves/aLIGO_late_asd.txt
similarity index 100%
rename from tupak/noise_curves/aLIGO_late_asd.txt
rename to tupak/gw/noise_curves/aLIGO_late_asd.txt
diff --git a/tupak/noise_curves/aLIGO_late_psd.txt b/tupak/gw/noise_curves/aLIGO_late_psd.txt
similarity index 100%
rename from tupak/noise_curves/aLIGO_late_psd.txt
rename to tupak/gw/noise_curves/aLIGO_late_psd.txt
diff --git a/tupak/noise_curves/aLIGO_mid_asd.txt b/tupak/gw/noise_curves/aLIGO_mid_asd.txt
similarity index 100%
rename from tupak/noise_curves/aLIGO_mid_asd.txt
rename to tupak/gw/noise_curves/aLIGO_mid_asd.txt
diff --git a/tupak/noise_curves/aLIGO_mid_psd.txt b/tupak/gw/noise_curves/aLIGO_mid_psd.txt
similarity index 100%
rename from tupak/noise_curves/aLIGO_mid_psd.txt
rename to tupak/gw/noise_curves/aLIGO_mid_psd.txt
diff --git a/tupak/noise_curves/highf_psd.txt b/tupak/gw/noise_curves/highf_psd.txt
similarity index 100%
rename from tupak/noise_curves/highf_psd.txt
rename to tupak/gw/noise_curves/highf_psd.txt
diff --git a/tupak/noise_curves/lisa_asd.txt b/tupak/gw/noise_curves/lisa_asd.txt
similarity index 100%
rename from tupak/noise_curves/lisa_asd.txt
rename to tupak/gw/noise_curves/lisa_asd.txt
diff --git a/tupak/noise_curves/lisa_psd.txt b/tupak/gw/noise_curves/lisa_psd.txt
similarity index 100%
rename from tupak/noise_curves/lisa_psd.txt
rename to tupak/gw/noise_curves/lisa_psd.txt
diff --git a/tupak/gw/prior.py b/tupak/gw/prior.py
new file mode 100644
index 0000000000000000000000000000000000000000..cabe97beaf8eca0b7facb455a9b24050dfc835b4
--- /dev/null
+++ b/tupak/gw/prior.py
@@ -0,0 +1,102 @@
+import logging
+
+import numpy as np
+
+import tupak.core.prior
+
+
+def create_default_prior(name):
+    """
+    Make a default prior for a parameter with a known name.
+
+    This is currently set up for binary black holes.
+
+    Parameters
+    ----------
+    name: str
+        Parameter name
+
+    Return
+    ------
+    prior: Prior
+        Default prior distribution for that parameter, if unknown None is returned.
+    """
+    default_priors = {
+        'mass_1': tupak.core.prior.Uniform(name=name, minimum=20, maximum=100),
+        'mass_2': tupak.core.prior.Uniform(name=name, minimum=20, maximum=100),
+        'chirp_mass': tupak.core.prior.Uniform(name=name, minimum=25, maximum=100),
+        'total_mass': tupak.core.prior.Uniform(name=name, minimum=10, maximum=200),
+        'mass_ratio': tupak.core.prior.Uniform(name=name, minimum=0.125, maximum=1),
+        'symmetric_mass_ratio': tupak.core.prior.Uniform(name=name, minimum=8 / 81, maximum=0.25),
+        'a_1': tupak.core.prior.Uniform(name=name, minimum=0, maximum=0.8),
+        'a_2': tupak.core.prior.Uniform(name=name, minimum=0, maximum=0.8),
+        'tilt_1': tupak.core.prior.Sine(name=name),
+        'tilt_2': tupak.core.prior.Sine(name=name),
+        'cos_tilt_1': tupak.core.prior.Uniform(name=name, minimum=-1, maximum=1),
+        'cos_tilt_2': tupak.core.prior.Uniform(name=name, minimum=-1, maximum=1),
+        'phi_12': tupak.core.prior.Uniform(name=name, minimum=0, maximum=2 * np.pi),
+        'phi_jl': tupak.core.prior.Uniform(name=name, minimum=0, maximum=2 * np.pi),
+        'luminosity_distance': tupak.core.prior.UniformComovingVolume(name=name, minimum=1e2, maximum=5e3),
+        'dec': tupak.core.prior.Cosine(name=name),
+        'ra': tupak.core.prior.Uniform(name=name, minimum=0, maximum=2 * np.pi),
+        'iota': tupak.core.prior.Sine(name=name),
+        'cos_iota': tupak.core.prior.Uniform(name=name, minimum=-1, maximum=1),
+        'psi': tupak.core.prior.Uniform(name=name, minimum=0, maximum=2 * np.pi),
+        'phase': tupak.core.prior.Uniform(name=name, minimum=0, maximum=2 * np.pi)
+    }
+    if name in default_priors.keys():
+        prior = default_priors[name]
+    else:
+        logging.info(
+            "No default prior found for variable {}.".format(name))
+        prior = None
+    return prior
+
+
+def test_redundancy(key, prior):
+    """
+    Test whether adding the key would add be redundant.
+
+    Parameters
+    ----------
+    key: str
+        The string to test.
+    prior: dict
+        Current prior dictionary.
+
+    Return
+    ------
+    redundant: bool
+        Whether the key is redundant
+    """
+    redundant = False
+    mass_parameters = {'mass_1', 'mass_2', 'chirp_mass', 'total_mass', 'mass_ratio', 'symmetric_mass_ratio'}
+    spin_magnitude_parameters = {'a_1', 'a_2'}
+    spin_tilt_1_parameters = {'tilt_1', 'cos_tilt_1'}
+    spin_tilt_2_parameters = {'tilt_2', 'cos_tilt_2'}
+    spin_azimuth_parameters = {'phi_1', 'phi_2', 'phi_12', 'phi_jl'}
+    inclination_parameters = {'iota', 'cos_iota'}
+    distance_parameters = {'luminosity_distance', 'comoving_distance', 'redshift'}
+
+    for parameter_set in [mass_parameters, spin_magnitude_parameters, spin_azimuth_parameters]:
+        if key in parameter_set:
+            if len(parameter_set.intersection(prior.keys())) > 2:
+                redundant = True
+                logging.warning('{} in prior. This may lead to unexpected behaviour.'.format(
+                    parameter_set.intersection(prior.keys())))
+                break
+            elif len(parameter_set.intersection(prior.keys())) == 2:
+                redundant = True
+                break
+    for parameter_set in [inclination_parameters, distance_parameters, spin_tilt_1_parameters, spin_tilt_2_parameters]:
+        if key in parameter_set:
+            if len(parameter_set.intersection(prior.keys())) > 1:
+                redundant = True
+                logging.warning('{} in prior. This may lead to unexpected behaviour.'.format(
+                    parameter_set.intersection(prior.keys())))
+                break
+            elif len(parameter_set.intersection(prior.keys())) == 1:
+                redundant = True
+                break
+
+    return redundant
\ No newline at end of file
diff --git a/tupak/source.py b/tupak/gw/source.py
similarity index 99%
rename from tupak/source.py
rename to tupak/gw/source.py
index 00ca0a9bf9716c93401e315c9887bdc8ad5be4b4..cc171985b4b9f64ef5ee66f6dd091c44eb1d8afa 100644
--- a/tupak/source.py
+++ b/tupak/gw/source.py
@@ -9,7 +9,7 @@ except ImportError:
     logging.warning("You do not have lalsuite installed currently. You will "
                     " not be able to use some of the prebuilt functions.")
 
-from . import utils
+from tupak.core import utils
 
 
 def lal_binary_black_hole(
diff --git a/tupak/utils.py b/tupak/gw/utils.py
similarity index 56%
rename from tupak/utils.py
rename to tupak/gw/utils.py
index 3a32e54e7adfd2dc9b2337bd7194112ed86b4ae5..430a2bd45513cc505496d3063b03a0a3c41308f4 100644
--- a/tupak/utils.py
+++ b/tupak/gw/utils.py
@@ -1,186 +1,17 @@
-from __future__ import division
 import logging
 import os
+
 import numpy as np
-from math import fmod
-from gwpy.timeseries import TimeSeries
 from gwpy.signal import filter_design
+from gwpy.timeseries import TimeSeries
 from scipy import signal
-import argparse
-
-# Constants
-speed_of_light = 299792458.0  # speed of light in m/s
-parsec = 3.085677581 * 1e16
-solar_mass = 1.98855 * 1e30
-
-
-def get_sampling_frequency(time_series):
-    """
-    Calculate sampling frequency from a time series
-    """
-    tol = 1e-10
-    if np.ptp(np.diff(time_series)) > tol:
-        raise ValueError("Your time series was not evenly sampled")
-    else:
-        return 1. / (time_series[1] - time_series[0])
-
-
-def create_time_series(sampling_frequency, duration, starting_time=0.):
-    return np.arange(starting_time, duration, 1./sampling_frequency)
-
-
-def ra_dec_to_theta_phi(ra, dec, gmst):
-    """
-    Convert from RA and DEC to polar coordinates on celestial sphere
-    Input:
-    ra - right ascension in radians
-    dec - declination in radians
-    gmst - Greenwich mean sidereal time of arrival of the signal in radians
-    Output:
-    theta - zenith angle in radians
-    phi - azimuthal angle in radians
-    """
-    phi = ra - gmst
-    theta = np.pi / 2 - dec
-    return theta, phi
-
-
-def gps_time_to_gmst(gps_time):
-    """
-    Convert gps time to Greenwich mean sidereal time in radians
-
-    This method assumes a constant rotation rate of earth since 00:00:00, 1 Jan. 2000
-    A correction has been applied to give the exact correct value for 00:00:00, 1 Jan. 2018
-    Error accumulates at a rate of ~0.0001 radians/decade.
-
-    Input:
-    time - gps time
-    Output:
-    gmst - Greenwich mean sidereal time in radians
-    """
-    omega_earth = 2 * np.pi * (1 / 365.2425 + 1) / 86400.
-    gps_2000 = 630720013.
-    gmst_2000 = (6 + 39. / 60 + 51.251406103947375 / 3600) * np.pi / 12
-    correction_2018 = -0.00017782487379358614
-    sidereal_time = omega_earth * (gps_time - gps_2000) + gmst_2000 + correction_2018
-    gmst = fmod(sidereal_time, 2 * np.pi)
-    return gmst
-
-
-def create_frequency_series(sampling_frequency, duration):
-    """
-    Create a frequency series with the correct length and spacing.
-
-    :param sampling_frequency: sampling frequency
-    :param duration: duration of data
-    :return: frequencies, frequency series
-    """
-    number_of_samples = duration * sampling_frequency
-    number_of_samples = int(np.round(number_of_samples))
-
-    # prepare for FFT
-    number_of_frequencies = (number_of_samples-1)//2
-    delta_freq = 1./duration
-
-    frequencies = delta_freq * np.linspace(1, number_of_frequencies, number_of_frequencies)
-
-    if len(frequencies) % 2 == 1:
-        frequencies = np.concatenate(([0], frequencies, [sampling_frequency / 2.]))
-    else:
-        # no Nyquist frequency when N=odd
-        frequencies = np.concatenate(([0], frequencies))
-
-    return frequencies
-
-
-def create_white_noise(sampling_frequency, duration):
-    """
-    Create white_noise which is then coloured by a given PSD
-
-
-    :param sampling_frequency: sampling frequency
-    :param duration: duration of data
-    """
-
-    number_of_samples = duration * sampling_frequency
-    number_of_samples = int(np.round(number_of_samples))
-
-    delta_freq = 1./duration
-
-    frequencies = create_frequency_series(sampling_frequency, duration)
-
-    norm1 = 0.5*(1./delta_freq)**0.5
-    re1 = np.random.normal(0, norm1, len(frequencies))
-    im1 = np.random.normal(0, norm1, len(frequencies))
-    htilde1 = re1 + 1j*im1
-
-    # convolve data with instrument transfer function
-    otilde1 = htilde1 * 1.
-    # set DC and Nyquist = 0
-    otilde1[0] = 0
-    # no Nyquist frequency when N=odd
-    if np.mod(number_of_samples, 2) == 0:
-        otilde1[-1] = 0
-
-    # normalise for positive frequencies and units of strain/rHz
-    white_noise = otilde1
-    # python: transpose for use with infft
-    white_noise = np.transpose(white_noise)
-    frequencies = np.transpose(frequencies)
 
-    return white_noise, frequencies
-
-
-def nfft(ht, Fs):
-    """
-    performs an FFT while keeping track of the frequency bins
-    assumes input time series is real (positive frequencies only)
-
-    ht = time series
-    Fs = sampling frequency
-
-    returns
-    hf = single-sided FFT of ft normalised to units of strain / sqrt(Hz)
-    f = frequencies associated with hf
-    """
-    # add one zero padding if time series does not have even number of sampling times
-    if np.mod(len(ht), 2) == 1:
-        ht = np.append(ht, 0)
-    LL = len(ht)
-    # frequency range
-    ff = Fs / 2 * np.linspace(0, 1, int(LL/2+1))
-
-    # calculate FFT
-    # rfft computes the fft for real inputs
-    hf = np.fft.rfft(ht)
-
-    # normalise to units of strain / sqrt(Hz)
-    hf = hf / Fs
-
-    return hf, ff
-
-
-def infft(hf, Fs):
-    """
-    inverse FFT for use in conjunction with nfft
-    eric.thrane@ligo.org
-    input:
-    hf = single-side FFT calculated by fft_eht
-    Fs = sampling frequency
-    output:
-    h = time series
-    """
-    # use irfft to work with positive frequencies only
-    h = np.fft.irfft(hf)
-    # undo LAL/Lasky normalisation
-    h = h*Fs
-
-    return h
+from tupak.core.utils import gps_time_to_gmst, ra_dec_to_theta_phi, speed_of_light, nfft
 
 
 def asd_from_freq_series(freq_data, df):
     """
-    Calculate the ASD from the frequency domain output of gaussian_noise()    
+    Calculate the ASD from the frequency domain output of gaussian_noise()
     Input:
     freq_data - array of complex frequency domain data
     df - spacing of freq_data, 1/(segment length) used to generate the gaussian noise
@@ -286,93 +117,6 @@ def get_vertex_position_geocentric(latitude, longitude, elevation):
     return np.array([x_comp, y_comp, z_comp])
 
 
-def setup_logger(outdir=None, label=None, log_level=None):
-    """ Setup logging output: call at the start of the script to use
-
-    Parameters
-    ----------
-    outdir, label: str
-        If supplied, write the logging output to outdir/label.log
-    log_level = ['debug', 'info', 'warning']
-        Either a string from the list above, or an interger as specified
-        in https://docs.python.org/2/library/logging.html#logging-levels
-    """
-
-    if type(log_level) is str:
-        try:
-            LEVEL = getattr(logging, log_level.upper())
-        except AttributeError:
-            raise ValueError('log_level {} not understood'.format(log_level))
-    elif log_level is None:
-        LEVEL = command_line_args.log_level
-    else:
-        LEVEL = int(log_level)
-
-    logger = logging.getLogger()
-    stream_handler = logging.StreamHandler()
-    stream_handler.setFormatter(logging.Formatter(
-        '%(asctime)s %(levelname)-8s: %(message)s', datefmt='%H:%M'))
-    logger.setLevel(LEVEL)
-    stream_handler.setLevel(LEVEL)
-    logger.addHandler(stream_handler)
-
-    if label:
-        if outdir:
-            check_directory_exists_and_if_not_mkdir(outdir)
-        else:
-            outdir = '.'
-        log_file = '{}/{}.log'.format(outdir, label)
-        file_handler = logging.FileHandler(log_file)
-        file_handler.setFormatter(logging.Formatter(
-            '%(asctime)s %(levelname)-8s: %(message)s', datefmt='%H:%M'))
-
-        file_handler.setLevel(LEVEL)
-        logger.addHandler(file_handler)
-
-    version_file = os.path.join(os.path.dirname(__file__), '.version')
-    with open(version_file, 'r') as f:
-        version = f.readline()
-    logging.info('Running tupak version: {}'.format(version))
-
-
-def get_progress_bar(module='tqdm'):
-    if module in ['tqdm']:
-        try:
-            from tqdm import tqdm
-        except ImportError:
-            def tqdm(x, *args, **kwargs):
-                return x
-        return tqdm
-    elif module in ['tqdm_notebook']:
-        try:
-            from tqdm import tqdm_notebook as tqdm
-        except ImportError:
-            def tqdm(x, *args, **kwargs):
-                return x
-        return tqdm
-
-
-def spherical_to_cartesian(radius, theta, phi):
-    """
-    Convert from spherical coordinates to cartesian.
-
-    :param radius: radial coordinate
-    :param theta: axial coordinate
-    :param phi: azimuthal coordinate
-    :return cartesian: cartesian vector
-    """
-    cartesian = [radius * np.sin(theta) * np.cos(phi), radius * np.sin(theta) * np.sin(phi), radius * np.cos(theta)]
-    return cartesian
-
-
-def check_directory_exists_and_if_not_mkdir(directory):
-    if not os.path.exists(directory):
-        os.makedirs(directory)
-        logging.debug('Making directory {}'.format(directory))
-    else:
-        logging.debug('Directory {} exists'.format(directory))
-
-
 def inner_product(aa, bb, frequency, PSD):
     """
     Calculate the inner product defined in the matched filter statistic
@@ -619,51 +363,4 @@ def process_strain_data(
 
     frequency_domain_strain, frequencies = nfft(strain.value, sampling_frequency)
 
-    return frequency_domain_strain, frequencies
-
-
-def set_up_command_line_arguments():
-    parser = argparse.ArgumentParser(
-        description="Command line interface for tupak scripts")
-    parser.add_argument("-v", "--verbose", action="store_true",
-                        help=("Increase output verbosity [logging.DEBUG]." +
-                              " Overridden by script level settings"))
-    parser.add_argument("-q", "--quite", action="store_true",
-                        help=("Decrease output verbosity [logging.WARNING]." +
-                              " Overridden by script level settings"))
-    parser.add_argument("-c", "--clean", action="store_true",
-                        help="Force clean data, never use cached data")
-    parser.add_argument("-u", "--use-cached", action="store_true",
-                        help="Force cached data and do not check its validity")
-    parser.add_argument("-d", "--detectors",  nargs='+',
-                        default=['H1', 'L1', 'V1'],
-                        help=("List of detectors to use in open data calls, "
-                              "e.g. -d H1 L1 for H1 and L1"))
-    parser.add_argument("-t", "--test", action="store_true",
-                        help=("Used for testing only: don't run full PE, but"
-                              " just check nothing breaks"))
-    args, _ = parser.parse_known_args()
-
-    if args.quite:
-        args.log_level = logging.WARNING
-    elif args.verbose:
-        args.log_level = logging.DEBUG
-    else:
-        args.log_level = logging.INFO
-
-    return args
-
-
-command_line_args = set_up_command_line_arguments()
-
-if 'DISPLAY' in os.environ:
-    pass
-else:
-    logging.info('No $DISPLAY environment variable found, so importing \
-                  matplotlib.pyplot with non-interactive "Agg" backend.')
-    import matplotlib
-    matplotlib.use('Agg')
-
-
-
-
+    return frequency_domain_strain, frequencies
\ No newline at end of file
diff --git a/tupak/waveform_generator.py b/tupak/gw/waveform_generator.py
similarity index 97%
rename from tupak/waveform_generator.py
rename to tupak/gw/waveform_generator.py
index c53a8fd80fba4e6af6a6c2440c02b9c02ed445b3..b0aef610cbd598c3479b2f361e79f9ccb6f08db3 100644
--- a/tupak/waveform_generator.py
+++ b/tupak/gw/waveform_generator.py
@@ -1,6 +1,6 @@
 import inspect
 
-from . import utils
+from tupak.core import utils
 import numpy as np
 
 
@@ -94,15 +94,15 @@ class WaveformGenerator(object):
     @property
     def frequency_array(self):
         if self.__frequency_array_updated is False:
-            self.__frequency_array = utils.create_frequency_series(
+            self.frequency_array = utils.create_frequency_series(
                                         self.sampling_frequency,
                                         self.time_duration)
-            self.__frequency_array_updated = True
         return self.__frequency_array
 
     @frequency_array.setter
     def frequency_array(self, frequency_array):
         self.__frequency_array = frequency_array
+        self.__frequency_array_updated = True
 
     @property
     def time_array(self):