From 82c1b6b2f5ac4c8d5ba43643c28abb85af26b6bc Mon Sep 17 00:00:00 2001 From: Juliane Dannberg Date: Sun, 25 Mar 2018 18:00:21 -0700 Subject: [PATCH] fix tests --- include/aspect/melt.h | 8 +- source/postprocess/visualization/melt.cc | 2 +- source/simulator/melt.cc | 12 +- .../adiabatic_heating_with_melt/screen-output | 24 +- tests/adiabatic_heating_with_melt/statistics | 8 +- .../screen-output | 14 +- tests/composition_active_with_melt.cc | 1 - tests/composition_active_with_melt.prm | 27 +- .../screen-output | 236 +- tests/composition_active_with_melt/statistics | 41 +- tests/compression_heating/screen-output | 38 +- tests/compression_heating/statistics | 6 +- tests/free_surface_blob_melt/screen-output | 52 +- tests/free_surface_blob_melt/statistics | 22 +- .../screen-output | 32 +- .../free_surface_blob_nonzero_melt/statistics | 6 +- tests/global_melt/screen-output | 142 +- tests/global_melt/statistics | 8 +- tests/global_melt_parallel/screen-output | 136 +- tests/global_melt_parallel/statistics | 8 +- tests/heat_advection_by_melt/screen-output | 34 +- tests/heat_advection_by_melt/statistics | 10 +- .../screen-output | 30 +- .../statistics | 10 +- tests/initial_porosity/screen-output | 52 +- tests/initial_porosity/statistics | 2 +- .../latent_heat_melt_transport/screen-output | 493 +- tests/latent_heat_melt_transport/statistics | 35 +- tests/melt_and_traction/screen-output | 66 +- tests/melt_and_traction/statistics | 12 +- .../melt_compressible_advection/screen-output | 36 +- tests/melt_compressible_advection/statistics | 6 +- tests/melt_force_vector/screen-output | 16 +- tests/melt_introspection/screen-output | 8 +- tests/melt_material_1/screen-output | 56 +- tests/melt_material_1/statistics | 12 +- tests/melt_material_2/screen-output | 27 +- tests/melt_material_2/statistics | 2 +- tests/melt_material_3/screen-output | 25 +- tests/melt_material_3/statistics | 2 +- tests/melt_material_4/screen-output | 12 +- tests/melt_material_4/statistics | 2 +- .../melt_property_visualization/screen-output | 2 +- .../solution/solution-00000.0000.gnuplot | 8194 ++++++++--------- tests/melt_property_visualization/statistics | 2 +- tests/melt_transport/screen-output | 10 +- tests/melt_transport/statistics | 8 +- tests/melt_transport_adaptive/screen-output | 52 +- tests/melt_transport_adaptive/statistics | 6 +- tests/melt_transport_compressible.prm | 1 + .../melt_transport_compressible/screen-output | 18 +- tests/melt_transport_compressible/statistics | 2 +- .../melt_transport_compressible_iterative.prm | 13 +- .../screen-output | 60 +- .../statistics | 2 +- .../screen-output | 20 +- .../statistics | 2 +- .../screen-output | 16 +- .../statistics | 2 +- .../screen-output | 6 +- .../statistics | 2 +- tests/melting_rate/screen-output | 42 +- tests/melting_rate/statistics | 6 +- .../screen-output | 8 +- .../screen-output | 12 +- .../solver_history.txt | 12 +- tests/particle_melt_advection.cc | 1 + tests/particle_melt_advection.prm | 139 +- .../particles/particle-00001.0000.txt | 384 +- tests/particle_melt_advection/screen-output | 486 +- tests/particle_melt_advection/statistics | 10 +- tests/particle_property_composition.prm | 2 +- .../particle_property_composition/statistics | 2 +- tests/rising_melt_blob_freezing/screen-output | 36 +- tests/rising_melt_blob_freezing/statistics | 6 +- tests/segregation_heating/screen-output | 40 +- tests/segregation_heating/statistics | 14 +- tests/shear_bands/screen-output | 40 +- tests/shear_bands/statistics | 4 +- tests/shear_heating_with_melt/screen-output | 210 +- tests/shear_heating_with_melt/statistics | 12 +- tests/solitary_wave/screen-output | 34 +- tests/solitary_wave/statistics | 4 +- tests/statistics_output/screen-output | 24 +- tests/statistics_output/statistics | 10 +- 85 files changed, 5752 insertions(+), 5975 deletions(-) create mode 100644 tests/particle_melt_advection.cc diff --git a/include/aspect/melt.h b/include/aspect/melt.h index 2b0c26e45d9..0572af65ccd 100644 --- a/include/aspect/melt.h +++ b/include/aspect/melt.h @@ -381,10 +381,12 @@ namespace aspect /** * Given the Darcy coefficient as computed by the material model, limit the - * coefficient to a minimum value based on the reference Darcy coefficient, - * and return this value. + * coefficient to a minimum value based on the reference Darcy coefficient + * in melt cells, and set it to zero in cells that are not melt cells, and + * return this value. */ - double limited_darcy_coefficient(const double K_D) const; + double limited_darcy_coefficient(const double K_D, + const bool is_melt_cell) const; /** * The porosity limit for melt migration. For smaller porosities, the equations diff --git a/source/postprocess/visualization/melt.cc b/source/postprocess/visualization/melt.cc index cd572246a7f..a4962bc8601 100644 --- a/source/postprocess/visualization/melt.cc +++ b/source/postprocess/visualization/melt.cc @@ -147,7 +147,7 @@ namespace aspect } else if (property_names[i] == "darcy coefficient") { - const double K_D = this->get_melt_handler().limited_darcy_coefficient(melt_outputs->permeabilities[q] / melt_outputs->fluid_viscosities[q]); + const double K_D = this->get_melt_handler().limited_darcy_coefficient(melt_outputs->permeabilities[q] / melt_outputs->fluid_viscosities[q], p_c_scale > 0); computed_quantities[q][output_index] = K_D; } else if (property_names[i] == "darcy coefficient no cutoff") diff --git a/source/simulator/melt.cc b/source/simulator/melt.cc index 97d457f5991..abc0fb85591 100644 --- a/source/simulator/melt.cc +++ b/source/simulator/melt.cc @@ -212,7 +212,7 @@ namespace aspect const double eta = scratch.material_model_outputs.viscosities[q]; const double one_over_eta = 1. / eta; const double eta_two_thirds = scratch.material_model_outputs.viscosities[q] * 2.0 / 3.0; - const double K_D = this->get_melt_handler().limited_darcy_coefficient(melt_outputs->permeabilities[q] / melt_outputs->fluid_viscosities[q]); + const double K_D = this->get_melt_handler().limited_darcy_coefficient(melt_outputs->permeabilities[q] / melt_outputs->fluid_viscosities[q], p_c_scale > 0); /* - R = 1/eta M_p + K_D L_p for p @@ -433,7 +433,7 @@ namespace aspect const unsigned int porosity_index = introspection.compositional_index_for_name("porosity"); const double porosity = std::max(scratch.material_model_inputs.composition[q][porosity_index],0.000); - const double K_D = this->get_melt_handler().limited_darcy_coefficient(melt_outputs->permeabilities[q] / melt_outputs->fluid_viscosities[q]); + const double K_D = this->get_melt_handler().limited_darcy_coefficient(melt_outputs->permeabilities[q] / melt_outputs->fluid_viscosities[q], p_c_scale > 0); const double viscosity_c = melt_outputs->compaction_viscosities[q]; const Tensor<1,dim> density_gradient_f = melt_outputs->fluid_density_gradients[q]; const double density_f = melt_outputs->fluid_densities[q]; @@ -535,6 +535,7 @@ namespace aspect const FEValuesExtractors::Scalar ex_p_f = introspection.variable("fluid pressure").extractor_scalar(); const unsigned int p_f_component_index = introspection.variable("fluid pressure").first_component_index; const unsigned int p_c_component_index = introspection.variable("compaction pressure").first_component_index; + const double p_c_scale = dynamic_cast*>(&this->get_material_model())->p_c_scale(scratch.material_model_inputs, scratch.material_model_outputs, this->get_melt_handler(), true); const typename DoFHandler::face_iterator face = scratch.face_material_model_inputs.current_cell->face(scratch.face_number); @@ -557,7 +558,7 @@ namespace aspect const Tensor<1,dim> gravity = this->get_gravity_model().gravity_vector (scratch.face_finite_element_values.quadrature_point(q)); const double density_f = melt_outputs->fluid_densities[q]; - const double K_D = this->get_melt_handler().limited_darcy_coefficient(melt_outputs->permeabilities[q] / melt_outputs->fluid_viscosities[q]); + const double K_D = this->get_melt_handler().limited_darcy_coefficient(melt_outputs->permeabilities[q] / melt_outputs->fluid_viscosities[q], p_c_scale > 0); for (unsigned int i=0, i_stokes=0; i_stokes double MeltHandler:: - limited_darcy_coefficient(const double K_D) const + limited_darcy_coefficient(const double K_D, + const bool is_melt_cell) const { const double ref_K_D = dynamic_cast*>(&this->get_material_model())->reference_darcy_coefficient(); - return std::max(K_D, 1.e-3*ref_K_D); + return is_melt_cell ? std::max(K_D, 1.e-3*ref_K_D) : 0; } diff --git a/tests/adiabatic_heating_with_melt/screen-output b/tests/adiabatic_heating_with_melt/screen-output index aa09d78fb62..94ec561c64f 100644 --- a/tests/adiabatic_heating_with_melt/screen-output +++ b/tests/adiabatic_heating_with_melt/screen-output @@ -1,13 +1,13 @@ Number of active cells: 320 (on 3 levels) -Number of degrees of freedom: 9,270 (2,898+810+2,898+405+1,449+405+405) +Number of degrees of freedom: 9,825 (2,898+1,365+2,898+405+1,449+405+405) *** Timestep 0: t=0 seconds Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 54+0 iterations. + Solving Stokes system... 58+0 iterations. Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.85418e-16, 9.58741e-17, 0, 1 Relative nonlinear residual (total system) after nonlinear iteration 1: 1 @@ -18,8 +18,8 @@ Number of degrees of freedom: 9,270 (2,898+810+2,898+405+1,449+405+405) Rebuilding Stokes preconditioner... Solving Stokes system... 5+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.85418e-16, 9.58741e-17, 0, 9.29021e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 9.29021e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.85418e-16, 9.58741e-17, 0, 3.92921e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 3.92921e-13 Postprocessing: @@ -31,9 +31,9 @@ Number of degrees of freedom: 9,270 (2,898+810+2,898+405+1,449+405+405) Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 17+0 iterations. + Solving Stokes system... 18+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.0391e-06, 1.53408e-16, 0, 4.87025e-09 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.0391e-06, 5.68755e-14, 0, 6.85769e-09 Relative nonlinear residual (total system) after nonlinear iteration 1: 2.0391e-06 @@ -43,12 +43,12 @@ Number of degrees of freedom: 9,270 (2,898+810+2,898+405+1,449+405+405) *** Timestep 2: t=2.29425e+13 seconds Solving temperature system... 13 iterations. - Solving porosity system ... 0 iterations. + Solving porosity system ... 2 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 20+0 iterations. + Solving Stokes system... 22+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.21934e-06, 1.21242e-16, 0, 4.20135e-09 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.21934e-06, 6.65311e-10, 0, 5.93641e-09 Relative nonlinear residual (total system) after nonlinear iteration 1: 2.21934e-06 @@ -58,12 +58,12 @@ Number of degrees of freedom: 9,270 (2,898+810+2,898+405+1,449+405+405) *** Timestep 3: t=2.5e+13 seconds Solving temperature system... 6 iterations. - Solving porosity system ... 0 iterations. + Solving porosity system ... 1 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 16+0 iterations. + Solving Stokes system... 18+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.7975e-08, 1.56341e-16, 0, 8.51551e-10 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.7975e-08, 3.90688e-11, 0, 1.19967e-09 Relative nonlinear residual (total system) after nonlinear iteration 1: 4.7975e-08 diff --git a/tests/adiabatic_heating_with_melt/statistics b/tests/adiabatic_heating_with_melt/statistics index 14be034f523..3455c4fe664 100644 --- a/tests/adiabatic_heating_with_melt/statistics +++ b/tests/adiabatic_heating_with_melt/statistics @@ -20,7 +20,7 @@ # 20: Total adiabatic heating rate (W) # 21: Average adiabatic heating of melt rate (W/kg) # 22: Total adiabatic heating of melt rate (W) -0 0.000000000000e+00 0.000000000000e+00 320 3303 1449 810 2 0 0 0 59 62 62 1.72315000e+03 1.75516666e+03 1.78757747e+03 8.48573063e-03 -3.19121211e-11 -1.77378538e+02 3.19121211e-11 1.77378538e+02 -1 1.147124999994e+13 1.147124999994e+13 320 3303 1449 810 1 8 0 0 17 18 18 1.72319196e+03 1.75516670e+03 1.78757747e+03 8.47462138e-03 -3.19121219e-11 -1.77378542e+02 -1.02517773e-26 -5.69829019e-14 -2 2.294249984878e+13 1.147124984883e+13 320 3303 1449 810 1 13 0 0 20 21 21 1.72316615e+03 1.75516665e+03 1.78757747e+03 8.48144718e-03 -3.19121210e-11 -1.77378537e+02 2.35199516e-27 1.30731975e-14 -3 2.500000000000e+13 2.057500151224e+12 320 3303 1449 810 1 6 0 0 16 17 17 1.72315936e+03 1.75516664e+03 1.78757747e+03 8.48324430e-03 -3.19121208e-11 -1.77378536e+02 4.13359881e-26 2.29759630e-13 +0 0.000000000000e+00 0.000000000000e+00 320 3303 1449 810 2 0 0 0 63 66 461 1.72315000e+03 1.75516666e+03 1.78757747e+03 8.48573063e-03 -3.19121211e-11 -1.77378538e+02 3.19121211e-11 1.77378538e+02 +1 1.147124999996e+13 1.147124999996e+13 320 3303 1449 810 1 8 0 0 18 19 133 1.72319196e+03 1.75516670e+03 1.78757747e+03 8.47462138e-03 -3.19121219e-11 -1.77378542e+02 -9.46965197e-27 -5.26355805e-14 +2 2.294249984879e+13 1.147124984883e+13 320 3303 1449 810 1 13 2 0 22 23 160 1.72316615e+03 1.75516665e+03 1.78757747e+03 8.48144718e-03 -3.19121210e-11 -1.77378537e+02 2.48973431e-27 1.38387990e-14 +3 2.500000000000e+13 2.057500151206e+12 320 3303 1449 810 1 6 1 0 18 19 132 1.72315936e+03 1.75516664e+03 1.78757747e+03 8.48324430e-03 -3.19121208e-11 -1.77378536e+02 4.93577723e-26 2.74347464e-13 diff --git a/tests/compaction_length_refinement/screen-output b/tests/compaction_length_refinement/screen-output index 666dee5889e..0c7c10b67a0 100644 --- a/tests/compaction_length_refinement/screen-output +++ b/tests/compaction_length_refinement/screen-output @@ -1,8 +1,6 @@ ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ Number of active cells: 1,024 (on 6 levels) -Number of degrees of freedom: 32,842 (8,450+2,178+8,450+1,089+4,225+4,225+4,225) +Number of degrees of freedom: 34,825 (8,450+4,161+8,450+1,089+4,225+4,225+4,225) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. @@ -16,7 +14,7 @@ Number of degrees of freedom: 32,842 (8,450+2,178+8,450+1,089+4,225+4,225+4,225) Number of active cells: 1,117 (on 7 levels) -Number of degrees of freedom: 36,960 (9,510+2,450+9,510+1,225+4,755+4,755+4,755) +Number of degrees of freedom: 39,086 (9,510+4,576+9,510+1,225+4,755+4,755+4,755) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. @@ -30,7 +28,7 @@ Number of degrees of freedom: 36,960 (9,510+2,450+9,510+1,225+4,755+4,755+4,755) Number of active cells: 1,696 (on 8 levels) -Number of degrees of freedom: 56,069 (14,434+3,700+14,434+1,850+7,217+7,217+7,217) +Number of degrees of freedom: 59,307 (14,434+6,938+14,434+1,850+7,217+7,217+7,217) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. @@ -44,7 +42,7 @@ Number of degrees of freedom: 56,069 (14,434+3,700+14,434+1,850+7,217+7,217+7,21 Number of active cells: 2,023 (on 9 levels) -Number of degrees of freedom: 67,005 (17,250+4,420+17,250+2,210+8,625+8,625+8,625) +Number of degrees of freedom: 70,864 (17,250+8,279+17,250+2,210+8,625+8,625+8,625) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. @@ -58,7 +56,7 @@ Number of degrees of freedom: 67,005 (17,250+4,420+17,250+2,210+8,625+8,625+8,62 Number of active cells: 2,026 (on 9 levels) -Number of degrees of freedom: 67,091 (17,272+4,426+17,272+2,213+8,636+8,636+8,636) +Number of degrees of freedom: 70,956 (17,272+8,291+17,272+2,213+8,636+8,636+8,636) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. @@ -72,7 +70,7 @@ Number of degrees of freedom: 67,091 (17,272+4,426+17,272+2,213+8,636+8,636+8,63 Number of active cells: 2,023 (on 9 levels) -Number of degrees of freedom: 67,005 (17,250+4,420+17,250+2,210+8,625+8,625+8,625) +Number of degrees of freedom: 70,864 (17,250+8,279+17,250+2,210+8,625+8,625+8,625) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. diff --git a/tests/composition_active_with_melt.cc b/tests/composition_active_with_melt.cc index 5590570ce9a..a586fbfd5a2 100644 --- a/tests/composition_active_with_melt.cc +++ b/tests/composition_active_with_melt.cc @@ -75,7 +75,6 @@ namespace aspect for (unsigned int i=0; icompaction_viscosities[i] = 1.0; melt_out->fluid_viscosities[i] = 1.0; melt_out->permeabilities[i] = 0.0; //1e-30*porosity * porosity; diff --git a/tests/composition_active_with_melt.prm b/tests/composition_active_with_melt.prm index c412f6e597a..591c8240bfc 100644 --- a/tests/composition_active_with_melt.prm +++ b/tests/composition_active_with_melt.prm @@ -10,9 +10,11 @@ set Dimension = 2 set Start time = 0 set End time = 1 set Use years in output instead of seconds = false -set Number of cheap Stokes solver steps = 0 -set Linear solver tolerance = 1e-8 -#set Nonlinear solver scheme = iterated IMPES + +subsection Discretization + set Stokes velocity polynomial degree = 2 + set Composition polynomial degree = 1 +end subsection Geometry model set Model name = box @@ -26,7 +28,6 @@ end subsection Model settings set Fixed temperature boundary indicators = 2, 3 -# set Fixed composition boundary indicators = 2, 3 set Zero velocity boundary indicators = set Tangential velocity boundary indicators = 0, 1, 2 set Prescribed velocity boundary indicators = 3: function @@ -36,6 +37,7 @@ end subsection Melt settings set Melt transport threshold = 0.0 + set Use discontinuous compaction pressure = false end subsection Heating model @@ -115,20 +117,3 @@ subsection Initial composition model set Function expression = if(y<0.2, 1, 0) ; 0.0 end end - -subsection Discretization - set Stokes velocity polynomial degree = 2 - set Composition polynomial degree = 1 -end - -subsection Boundary fluid pressure model - set Plugin name = density - subsection Density - set Density formulation = solid density - end - -end - -subsection Boundary composition model - set List of model names = initial composition -end diff --git a/tests/composition_active_with_melt/screen-output b/tests/composition_active_with_melt/screen-output index 2689791fd15..80887a1d70d 100644 --- a/tests/composition_active_with_melt/screen-output +++ b/tests/composition_active_with_melt/screen-output @@ -9,8 +9,8 @@ Number of degrees of freedom: 1,850 (578+162+578+81+289+81+81) Solving C_1 system ... 0 iterations. Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+15 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 7+0 iterations. + Solving for u_f in 1 iterations. Postprocessing: Temperature min/avg/max: 0 K, 0.5 K, 1 K @@ -19,266 +19,206 @@ Number of degrees of freedom: 1,850 (578+162+578+81+289+81+81) *** Timestep 1: t=0.0625 seconds Solving temperature system... 8 iterations. Solving C_1 system ... 5 iterations. - Solving porosity system ... 6 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+12 iterations. + Solving Stokes system... 6+0 iterations. Solving for u_f in 1 iterations. Postprocessing: Temperature min/avg/max: 0 K, 0.5011 K, 1 K - Compositions min/max/mass: -0.03081/1.029/0.375 // -1.69e-08/1.763e-08/-3.669e-18 - -*** Timestep 2: t=0.101567 seconds - Solving temperature system... 8 iterations. - Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+15 iterations. - Solving for u_f in 1 iterations. - - Postprocessing: - Temperature min/avg/max: 0 K, 0.5018 K, 1 K - Compositions min/max/mass: -0.03791/1.045/0.375 // -1.213e-08/1.011e-08/-4.573e-18 + Compositions min/max/mass: -0.03081/1.029/0.375 // 0/0/0 -*** Timestep 3: t=0.13697 seconds +*** Timestep 2: t=0.125 seconds Solving temperature system... 8 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+15 iterations. - Solving for u_f in 1 iterations. - - Postprocessing: - Temperature min/avg/max: 0 K, 0.5025 K, 1 K - Compositions min/max/mass: -0.04292/1.059/0.375 // -1.401e-08/1.431e-08/-4.094e-18 - -*** Timestep 4: t=0.192351 seconds - Solving temperature system... 8 iterations. - Solving C_1 system ... 4 iterations. - Solving porosity system ... 6 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+14 iterations. + Solving Stokes system... 8+0 iterations. Solving for u_f in 1 iterations. Postprocessing: - Temperature min/avg/max: 0 K, 0.5031 K, 1 K - Compositions min/max/mass: -0.04675/1.076/0.375 // -2.237e-08/2.508e-08/-3.607e-18 + Temperature min/avg/max: 0 K, 0.5021 K, 1 K + Compositions min/max/mass: -0.04188/1.053/0.375 // 0/0/0 -*** Timestep 5: t=0.239085 seconds +*** Timestep 3: t=0.1875 seconds Solving temperature system... 8 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+14 iterations. + Solving Stokes system... 8+0 iterations. Solving for u_f in 1 iterations. Postprocessing: - Temperature min/avg/max: 0 K, 0.5035 K, 1 K - Compositions min/max/mass: -0.0484/1.086/0.375 // -2.954e-08/2.073e-08/-2.483e-18 + Temperature min/avg/max: 0 K, 0.5032 K, 1 K + Compositions min/max/mass: -0.04806/1.073/0.375 // 0/0/0 -*** Timestep 6: t=0.28617 seconds +*** Timestep 4: t=0.25 seconds Solving temperature system... 8 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+15 iterations. + Solving Stokes system... 8+0 iterations. Solving for u_f in 1 iterations. Postprocessing: Temperature min/avg/max: 0 K, 0.5038 K, 1 K - Compositions min/max/mass: -0.04896/1.094/0.375 // -1.276e-08/1.142e-08/-1.487e-18 + Compositions min/max/mass: -0.0506/1.087/0.375 // 0/0/0 -*** Timestep 7: t=0.334786 seconds - Solving temperature system... 8 iterations. - Solving C_1 system ... 4 iterations. - Solving porosity system ... 6 iterations. +*** Timestep 5: t=0.3125 seconds + Solving temperature system... 9 iterations. + Solving C_1 system ... 5 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+15 iterations. + Solving Stokes system... 8+0 iterations. Solving for u_f in 1 iterations. Postprocessing: - Temperature min/avg/max: 0 K, 0.5042 K, 1 K - Compositions min/max/mass: -0.04927/1.099/0.375 // -1.565e-08/1.795e-08/-2.478e-18 + Temperature min/avg/max: 0 K, 0.5043 K, 1 K + Compositions min/max/mass: -0.0516/1.096/0.375 // 0/0/0 -*** Timestep 8: t=0.383839 seconds +*** Timestep 6: t=0.375 seconds Solving temperature system... 8 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+14 iterations. + Solving Stokes system... 7+0 iterations. Solving for u_f in 1 iterations. Postprocessing: - Temperature min/avg/max: 0 K, 0.5044 K, 1 K - Compositions min/max/mass: -0.0492/1.102/0.375 // -3.572e-08/3.135e-08/-4.84e-18 + Temperature min/avg/max: 0 K, 0.5045 K, 1 K + Compositions min/max/mass: -0.0514/1.1/0.375 // 0/0/0 -*** Timestep 9: t=0.43042 seconds +*** Timestep 7: t=0.4375 seconds Solving temperature system... 8 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+15 iterations. - Solving for u_f in 1 iterations. - - Postprocessing: - Temperature min/avg/max: 0 K, 0.5044 K, 1 K - Compositions min/max/mass: -0.0488/1.102/0.375 // -2.227e-08/1.574e-08/-3.133e-18 - -*** Timestep 10: t=0.477724 seconds - Solving temperature system... 9 iterations. - Solving C_1 system ... 4 iterations. - Solving porosity system ... 6 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+15 iterations. + Solving Stokes system... 8+0 iterations. Solving for u_f in 1 iterations. Postprocessing: Temperature min/avg/max: 0 K, 0.5046 K, 1 K - Compositions min/max/mass: -0.04829/1.101/0.375 // -3.823e-08/1.749e-08/-3.244e-18 - -*** Timestep 11: t=0.520808 seconds - Solving temperature system... 8 iterations. - Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+11 iterations. - Solving for u_f in 1 iterations. + Compositions min/max/mass: -0.05045/1.101/0.375 // 0/0/0 - Postprocessing: - Temperature min/avg/max: 0 K, 0.5047 K, 1 K - Compositions min/max/mass: -0.04662/1.099/0.375 // -2.226e-08/1.31e-08/-3.926e-18 - -*** Timestep 12: t=0.559823 seconds - Solving temperature system... 8 iterations. +*** Timestep 8: t=0.5 seconds + Solving temperature system... 9 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+14 iterations. + Solving Stokes system... 8+0 iterations. Solving for u_f in 1 iterations. Postprocessing: Temperature min/avg/max: 0 K, 0.5048 K, 1 K - Compositions min/max/mass: -0.04471/1.097/0.375 // -1.557e-08/8.81e-09/-4.136e-18 + Compositions min/max/mass: -0.04916/1.098/0.375 // 0/0/0 -*** Timestep 13: t=0.602694 seconds +*** Timestep 9: t=0.5625 seconds Solving temperature system... 8 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+14 iterations. + Solving Stokes system... 7+0 iterations. Solving for u_f in 1 iterations. Postprocessing: - Temperature min/avg/max: 0 K, 0.5052 K, 1 K - Compositions min/max/mass: -0.04279/1.093/0.375 // -2.508e-08/1.358e-08/-4.285e-18 + Temperature min/avg/max: 0 K, 0.5049 K, 1 K + Compositions min/max/mass: -0.04758/1.094/0.375 // 0/0/0 -*** Timestep 14: t=0.644534 seconds +*** Timestep 10: t=0.625 seconds Solving temperature system... 8 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+11 iterations. + Solving Stokes system... 7+0 iterations. Solving for u_f in 1 iterations. Postprocessing: - Temperature min/avg/max: 0 K, 0.5057 K, 1 K - Compositions min/max/mass: -0.04138/1.088/0.375 // -1.067e-08/8.417e-09/-6.259e-18 + Temperature min/avg/max: 0 K, 0.5053 K, 1 K + Compositions min/max/mass: -0.04586/1.087/0.375 // 0/0/0 -*** Timestep 15: t=0.689547 seconds - Solving temperature system... 8 iterations. +*** Timestep 11: t=0.6875 seconds + Solving temperature system... 9 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+15 iterations. + Solving Stokes system... 8+0 iterations. Solving for u_f in 1 iterations. Postprocessing: - Temperature min/avg/max: 0 K, 0.5063 K, 1 K - Compositions min/max/mass: -0.04/1.081/0.375 // -1.177e-08/7.64e-09/-7.634e-18 + Temperature min/avg/max: 0 K, 0.5058 K, 1 K + Compositions min/max/mass: -0.04411/1.078/0.375 // 0/0/0 -*** Timestep 16: t=0.738547 seconds - Solving temperature system... 8 iterations. +*** Timestep 12: t=0.75 seconds + Solving temperature system... 9 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+15 iterations. + Solving Stokes system... 8+0 iterations. Solving for u_f in 1 iterations. Postprocessing: - Temperature min/avg/max: 0 K, 0.5072 K, 1 K - Compositions min/max/mass: -0.0384/1.073/0.375 // -1.269e-08/1.519e-08/-1.068e-17 + Temperature min/avg/max: 0 K, 0.5068 K, 1 K + Compositions min/max/mass: -0.04252/1.067/0.375 // 0/0/0 -*** Timestep 17: t=0.792571 seconds - Solving temperature system... 8 iterations. +*** Timestep 13: t=0.8125 seconds + Solving temperature system... 9 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+11 iterations. + Solving Stokes system... 6+0 iterations. Solving for u_f in 1 iterations. Postprocessing: - Temperature min/avg/max: 0 K, 0.508 K, 1 K - Compositions min/max/mass: -0.03676/1.063/0.375 // -1.243e-08/1.293e-08/-8.075e-18 + Temperature min/avg/max: 0 K, 0.5078 K, 1 K + Compositions min/max/mass: -0.04104/1.056/0.375 // 0/0/0 -*** Timestep 18: t=0.841478 seconds +*** Timestep 14: t=0.875 seconds Solving temperature system... 8 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+11 iterations. + Solving Stokes system... 5+0 iterations. Solving for u_f in 1 iterations. Postprocessing: Temperature min/avg/max: 0 K, 0.5085 K, 1 K - Compositions min/max/mass: -0.03548/1.054/0.375 // -1.262e-08/1.082e-08/-7.592e-18 + Compositions min/max/mass: -0.03966/1.043/0.375 // 0/0/0 -*** Timestep 19: t=0.889525 seconds +*** Timestep 15: t=0.9375 seconds Solving temperature system... 8 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+11 iterations. - Solving for u_f in 1 iterations. - - Postprocessing: - Temperature min/avg/max: 0 K, 0.5089 K, 1 K - Compositions min/max/mass: -0.03443/1.044/0.375 // -1.237e-08/8.926e-09/-9.645e-18 - -*** Timestep 20: t=0.929762 seconds - Solving temperature system... 8 iterations. - Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+10 iterations. + Solving Stokes system... 5+0 iterations. Solving for u_f in 1 iterations. Postprocessing: Temperature min/avg/max: 0 K, 0.5091 K, 1 K - Compositions min/max/mass: -0.03396/1.034/0.375 // -1.305e-08/8.167e-09/-1.105e-17 + Compositions min/max/mass: -0.03837/1.029/0.375 // 0/0/0 -*** Timestep 21: t=0.975124 seconds +*** Timestep 16: t=1 seconds Solving temperature system... 8 iterations. Solving C_1 system ... 4 iterations. - Solving porosity system ... 5 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+10 iterations. + Solving Stokes system... 5+0 iterations. Solving for u_f in 1 iterations. Postprocessing: - Temperature min/avg/max: 0 K, 0.5093 K, 1 K - Compositions min/max/mass: -0.03374/1.024/0.375 // -2.243e-08/1.529e-08/-1.114e-17 + Temperature min/avg/max: 0 K, 0.5095 K, 1 K + Compositions min/max/mass: -0.03722/1.015/0.375 // 0/0/0 -*** Timestep 22: t=1 seconds - Solving temperature system... 8 iterations. - Solving C_1 system ... 3 iterations. - Solving porosity system ... 4 iterations. +*** Timestep 17: t=1 seconds + Solving temperature system... 0 iterations. + Solving C_1 system ... 0 iterations. + Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+10 iterations. + Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. Postprocessing: - Temperature min/avg/max: 0 K, 0.5094 K, 1 K - Compositions min/max/mass: -0.03375/1.018/0.375 // -2.54e-08/1.745e-08/-1.243e-17 + Temperature min/avg/max: 0 K, 0.5095 K, 1 K + Compositions min/max/mass: -0.03722/1.015/0.375 // 0/0/0 Termination requested by criterion: end time diff --git a/tests/composition_active_with_melt/statistics b/tests/composition_active_with_melt/statistics index d3072897c95..59e29f4f787 100644 --- a/tests/composition_active_with_melt/statistics +++ b/tests/composition_active_with_melt/statistics @@ -21,26 +21,21 @@ # 21: Minimal value for composition porosity # 22: Maximal value for composition porosity # 23: Global mass for composition porosity - 0 0.000000000000e+00 0.000000000000e+00 64 659 289 162 0 0 0 15 32 16 0.00000000e+00 5.00000000e-01 1.00000000e+00 5.00000000e-01 0.00000000e+00 1.00000000e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 - 1 6.250000000000e-02 6.250000000000e-02 64 659 289 162 8 5 6 12 26 13 0.00000000e+00 5.01112017e-01 1.00000000e+00 5.01112017e-01 -3.08132911e-02 1.02855550e+00 3.75000000e-01 -1.69038424e-08 1.76312896e-08 -3.66907637e-18 - 2 1.015671598761e-01 3.906715987614e-02 64 659 289 162 8 4 5 15 32 16 0.00000000e+00 5.01810869e-01 1.00000000e+00 5.01810869e-01 -3.79076861e-02 1.04536981e+00 3.75000000e-01 -1.21293469e-08 1.01101191e-08 -4.57257777e-18 - 3 1.369701646568e-01 3.540300478064e-02 64 659 289 162 8 4 5 15 32 16 0.00000000e+00 5.02497130e-01 1.00000000e+00 5.02497130e-01 -4.29174481e-02 1.05914170e+00 3.75000000e-01 -1.40072431e-08 1.43133469e-08 -4.09400163e-18 - 4 1.923505385687e-01 5.538037391187e-02 64 659 289 162 8 4 6 14 30 15 0.00000000e+00 5.03139431e-01 1.00000000e+00 5.03139431e-01 -4.67465811e-02 1.07594768e+00 3.75000000e-01 -2.23721992e-08 2.50759535e-08 -3.60739100e-18 - 5 2.390848510703e-01 4.673431250162e-02 64 659 289 162 8 4 5 14 30 15 0.00000000e+00 5.03540259e-01 1.00000000e+00 5.03540259e-01 -4.84020824e-02 1.08624693e+00 3.75000000e-01 -2.95395485e-08 2.07325547e-08 -2.48282259e-18 - 6 2.861697078053e-01 4.708485673499e-02 64 659 289 162 8 4 5 15 32 16 0.00000000e+00 5.03789879e-01 1.00000000e+00 5.03789879e-01 -4.89617356e-02 1.09362823e+00 3.75000000e-01 -1.27597795e-08 1.14199783e-08 -1.48673551e-18 - 7 3.347860495005e-01 4.861634169520e-02 64 659 289 162 8 4 6 15 32 16 0.00000000e+00 5.04219795e-01 1.00000000e+00 5.04219795e-01 -4.92675224e-02 1.09898318e+00 3.75000000e-01 -1.56470796e-08 1.79536502e-08 -2.47777726e-18 - 8 3.838393286681e-01 4.905327916768e-02 64 659 289 162 8 4 5 14 30 15 0.00000000e+00 5.04424145e-01 1.00000000e+00 5.04424145e-01 -4.92034354e-02 1.10157240e+00 3.75000000e-01 -3.57162691e-08 3.13496331e-08 -4.83960701e-18 - 9 4.304204753672e-01 4.658114669908e-02 64 659 289 162 8 4 5 15 32 16 0.00000000e+00 5.04384028e-01 1.00000000e+00 5.04384028e-01 -4.88031548e-02 1.10195655e+00 3.75000000e-01 -2.22700011e-08 1.57403509e-08 -3.13304113e-18 -10 4.777237704011e-01 4.730329503392e-02 64 659 289 162 9 4 6 15 32 16 0.00000000e+00 5.04569899e-01 1.00000000e+00 5.04569899e-01 -4.82871912e-02 1.10081469e+00 3.75000000e-01 -3.82275207e-08 1.74930792e-08 -3.24372567e-18 -11 5.208084098090e-01 4.308463940789e-02 64 659 289 162 8 4 5 11 24 12 0.00000000e+00 5.04675994e-01 1.00000000e+00 5.04675994e-01 -4.66220161e-02 1.09899004e+00 3.75000000e-01 -2.22552518e-08 1.31007630e-08 -3.92637599e-18 -12 5.598227529552e-01 3.901434314619e-02 64 659 289 162 8 4 5 14 30 15 0.00000000e+00 5.04824898e-01 1.00000000e+00 5.04824898e-01 -4.47127687e-02 1.09657839e+00 3.75000000e-01 -1.55738725e-08 8.81009410e-09 -4.13572277e-18 -13 6.026937387928e-01 4.287098583761e-02 64 659 289 162 8 4 5 14 30 15 0.00000000e+00 5.05208821e-01 1.00000000e+00 5.05208821e-01 -4.27914502e-02 1.09277546e+00 3.75000000e-01 -2.50818031e-08 1.35820830e-08 -4.28499075e-18 -14 6.445341015892e-01 4.184036279637e-02 64 659 289 162 8 4 5 11 24 12 0.00000000e+00 5.05683845e-01 1.00000000e+00 5.05683845e-01 -4.13770761e-02 1.08764221e+00 3.75000000e-01 -1.06677386e-08 8.41734907e-09 -6.25898322e-18 -15 6.895471082575e-01 4.501300666828e-02 64 659 289 162 8 4 5 15 32 16 0.00000000e+00 5.06292628e-01 1.00000000e+00 5.06292628e-01 -3.99979442e-02 1.08110677e+00 3.75000000e-01 -1.17656722e-08 7.63972024e-09 -7.63368717e-18 -16 7.385468406312e-01 4.899973237373e-02 64 659 289 162 8 4 5 15 32 16 0.00000000e+00 5.07232180e-01 1.00000000e+00 5.07232180e-01 -3.84045097e-02 1.07314803e+00 3.75000000e-01 -1.26902265e-08 1.51945732e-08 -1.06750038e-17 -17 7.925711557734e-01 5.402431514222e-02 64 659 289 162 8 4 5 11 24 12 0.00000000e+00 5.07984161e-01 1.00000000e+00 5.07984161e-01 -3.67569972e-02 1.06337240e+00 3.75000000e-01 -1.24271450e-08 1.29318374e-08 -8.07482246e-18 -18 8.414781980027e-01 4.890704222925e-02 64 659 289 162 8 4 5 11 24 12 0.00000000e+00 5.08501537e-01 1.00000000e+00 5.08501537e-01 -3.54830799e-02 1.05369752e+00 3.75000000e-01 -1.26234796e-08 1.08223168e-08 -7.59150768e-18 -19 8.895245499213e-01 4.804635191865e-02 64 659 289 162 8 4 5 11 24 12 0.00000000e+00 5.08897775e-01 1.00000000e+00 5.08897775e-01 -3.44347951e-02 1.04352895e+00 3.75000000e-01 -1.23739142e-08 8.92589896e-09 -9.64468236e-18 -20 9.297621410470e-01 4.023759112565e-02 64 659 289 162 8 4 5 10 22 11 0.00000000e+00 5.09127420e-01 1.00000000e+00 5.09127420e-01 -3.39596287e-02 1.03449133e+00 3.75000000e-01 -1.30523739e-08 8.16733522e-09 -1.10504680e-17 -21 9.751236957574e-01 4.536155471046e-02 64 659 289 162 8 4 5 10 22 11 0.00000000e+00 5.09300947e-01 1.00000000e+00 5.09300947e-01 -3.37350108e-02 1.02385937e+00 3.75000000e-01 -2.24349503e-08 1.52948107e-08 -1.11392671e-17 -22 1.000000000000e+00 2.487630424257e-02 64 659 289 162 8 3 4 10 22 11 0.00000000e+00 5.09372036e-01 1.00000000e+00 5.09372036e-01 -3.37486945e-02 1.01785242e+00 3.75000000e-01 -2.54042264e-08 1.74493852e-08 -1.24314372e-17 + 0 0.000000000000e+00 0.000000000000e+00 64 659 289 162 0 0 0 7 8 56 0.00000000e+00 5.00000000e-01 1.00000000e+00 5.00000000e-01 0.00000000e+00 1.00000000e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 + 1 6.250000000000e-02 6.250000000000e-02 64 659 289 162 8 5 0 6 7 47 0.00000000e+00 5.01112017e-01 1.00000000e+00 5.01112017e-01 -3.08132886e-02 1.02855550e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 + 2 1.250000000000e-01 6.250000000000e-02 64 659 289 162 8 4 0 8 9 63 0.00000000e+00 5.02120849e-01 1.00000000e+00 5.02120849e-01 -4.18841473e-02 1.05341396e+00 3.75000001e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 + 3 1.875000000000e-01 6.250000000000e-02 64 659 289 162 8 4 0 8 9 63 0.00000000e+00 5.03179381e-01 1.00000000e+00 5.03179381e-01 -4.80603570e-02 1.07315941e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 + 4 2.500000000000e-01 6.250000000000e-02 64 659 289 162 8 4 0 8 9 63 0.00000000e+00 5.03778924e-01 1.00000000e+00 5.03778924e-01 -5.05985699e-02 1.08700120e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 + 5 3.125000000000e-01 6.250000000000e-02 64 659 289 162 9 5 0 8 9 63 0.00000000e+00 5.04346585e-01 1.00000000e+00 5.04346585e-01 -5.16033367e-02 1.09573928e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 + 6 3.750000000000e-01 6.250000000000e-02 64 659 289 162 8 4 0 7 8 56 0.00000000e+00 5.04544745e-01 1.00000000e+00 5.04544745e-01 -5.13977322e-02 1.10000869e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 + 7 4.375000000000e-01 6.250000000000e-02 64 659 289 162 8 4 0 8 9 63 0.00000000e+00 5.04619075e-01 1.00000000e+00 5.04619075e-01 -5.04538719e-02 1.10064190e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 + 8 5.000000000000e-01 6.250000000000e-02 64 659 289 162 9 4 0 8 9 63 0.00000000e+00 5.04824566e-01 1.00000000e+00 5.04824566e-01 -4.91566631e-02 1.09836238e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 + 9 5.625000000000e-01 6.250000000000e-02 64 659 289 162 8 4 0 7 8 55 0.00000000e+00 5.04930648e-01 1.00000000e+00 5.04930648e-01 -4.75776560e-02 1.09360206e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 +10 6.249999999998e-01 6.249999999979e-02 64 659 289 162 8 4 0 7 8 55 0.00000000e+00 5.05258867e-01 1.00000000e+00 5.05258867e-01 -4.58553357e-02 1.08664884e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 +11 6.874999999995e-01 6.249999999972e-02 64 659 289 162 9 4 0 8 9 63 0.00000000e+00 5.05786773e-01 1.00000000e+00 5.05786773e-01 -4.41110877e-02 1.07786002e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 +12 7.499999999995e-01 6.250000000000e-02 64 659 289 162 9 4 0 8 9 63 0.00000000e+00 5.06843933e-01 1.00000000e+00 5.06843933e-01 -4.25242808e-02 1.06746713e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 +13 8.124999999995e-01 6.250000000000e-02 64 659 289 162 9 4 0 6 7 47 0.00000000e+00 5.07763993e-01 1.00000000e+00 5.07763993e-01 -4.10400781e-02 1.05577311e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 +14 8.749999999995e-01 6.250000000000e-02 64 659 289 162 8 4 0 5 6 39 0.00000000e+00 5.08535267e-01 1.00000000e+00 5.08535267e-01 -3.96626616e-02 1.04298306e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 +15 9.374999999995e-01 6.250000000000e-02 64 659 289 162 8 4 0 5 6 40 0.00000000e+00 5.09131829e-01 1.00000000e+00 5.09131829e-01 -3.83726379e-02 1.02931863e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 +16 9.999999999995e-01 6.250000000000e-02 64 659 289 162 8 4 0 5 6 40 0.00000000e+00 5.09527927e-01 1.00000000e+00 5.09527927e-01 -3.72174650e-02 1.01494898e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 +17 1.000000000000e+00 4.923839114213e-13 64 659 289 162 0 0 0 0 0 0 0.00000000e+00 5.09527927e-01 1.00000000e+00 5.09527927e-01 -3.72174650e-02 1.01494898e+00 3.75000000e-01 0.00000000e+00 0.00000000e+00 0.00000000e+00 diff --git a/tests/compression_heating/screen-output b/tests/compression_heating/screen-output index e617ebde8d6..1f88f71c67d 100644 --- a/tests/compression_heating/screen-output +++ b/tests/compression_heating/screen-output @@ -2,14 +2,14 @@ Loading shared library <./libcompression_heating.so> Number of active cells: 256 (on 5 levels) -Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) +Number of degrees of freedom: 7,369 (2,178+1,057+2,178+289+1,089+289+289) *** Timestep 0: t=0 seconds Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 114+0 iterations. + Solving Stokes system... 83+0 iterations. Solving for u_f in 10 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.1272e-16, 2.22016e-16, 0, 1 Relative nonlinear residual (total system) after nonlinear iteration 1: 1 @@ -18,10 +18,10 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+0 iterations. + Solving Stokes system... 4+0 iterations. Solving for u_f in 10 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.1272e-16, 2.22016e-16, 0, 9.37726e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 9.37726e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.1272e-16, 2.22016e-16, 0, 1.28334e-12 + Relative nonlinear residual (total system) after nonlinear iteration 2: 1.28334e-12 Postprocessing: @@ -29,24 +29,24 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Heating rate (average/total): 0.51 W/kg, 1.02 W Writing graphical output: output-compression_heating/solution/solution-00000 -*** Timestep 1: t=0.3125 seconds +*** Timestep 1: t=0.31249 seconds Solving temperature system... 9 iterations. Solving porosity system ... 5 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 93+0 iterations. + Solving Stokes system... 78+0 iterations. Solving for u_f in 10 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000132795, 0.0833335, 0, 0.0258351 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0833335 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000132792, 0.0833311, 0, 6.75635 + Relative nonlinear residual (total system) after nonlinear iteration 1: 6.75635 Solving temperature system... 7 iterations. Solving porosity system ... 2 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 38+0 iterations. + Solving Stokes system... 40+0 iterations. Solving for u_f in 10 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.02577e-06, 1.14705e-07, 0, 1.96846e-07 - Relative nonlinear residual (total system) after nonlinear iteration 2: 4.02577e-06 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.02375e-06, 4.513e-08, 0, 2.70051e-06 + Relative nonlinear residual (total system) after nonlinear iteration 2: 4.02375e-06 Postprocessing: @@ -59,19 +59,19 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Solving porosity system ... 3 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 72+0 iterations. + Solving Stokes system... 76+0 iterations. Solving for u_f in 10 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.14229e-06, 0.00064094, 0, 0.000209255 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.00064094 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.14125e-06, 0.000641118, 0, 1.99687 + Relative nonlinear residual (total system) after nonlinear iteration 1: 1.99687 Solving temperature system... 3 iterations. - Solving porosity system ... 1 iterations. + Solving porosity system ... 2 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 26+0 iterations. + Solving Stokes system... 37+0 iterations. Solving for u_f in 10 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.56452e-08, 3.55915e-10, 0, 5.78472e-10 - Relative nonlinear residual (total system) after nonlinear iteration 2: 1.56452e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.57236e-08, 1.56756e-08, 0, 5.51865e-07 + Relative nonlinear residual (total system) after nonlinear iteration 2: 5.51865e-07 Postprocessing: diff --git a/tests/compression_heating/statistics b/tests/compression_heating/statistics index a27e16d3a73..a033b4e1186 100644 --- a/tests/compression_heating/statistics +++ b/tests/compression_heating/statistics @@ -20,6 +20,6 @@ # 20: Average shear heating with melt rate (W/kg) # 21: Total shear heating with melt rate (W) # 22: Visualization file name -0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 578 2 0 0 0 114 117 117 1.60000000e+03 1.60000000e+03 1.60000000e+03 1.00000000e-02 2.00000000e-02 5.00000000e-01 1.00000000e+00 output-compression_heating/solution/solution-00000 -1 3.124999832023e-01 3.124999832023e-01 256 2467 1089 578 2 16 7 0 131 134 134 1.60021914e+03 1.60021914e+03 1.60021914e+03 1.00001315e-02 2.00001753e-02 5.00006574e-01 1.00000877e+00 output-compression_heating/solution/solution-00001 -2 5.000000000000e-01 1.875000167977e-01 256 2467 1089 578 2 8 4 0 98 101 101 1.60035243e+03 1.60035243e+03 1.60035243e+03 1.00002115e-02 2.00002819e-02 5.00010573e-01 1.00001410e+00 output-compression_heating/solution/solution-00002 +0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 578 2 0 0 0 87 90 4381 1.60000000e+03 1.60000000e+03 1.60000000e+03 1.00000002e-02 2.00000005e-02 5.00003893e-01 1.00000779e+00 output-compression_heating/solution/solution-00000 +1 3.124904772051e-01 3.124904772051e-01 256 2467 1089 578 2 16 7 0 118 121 6192 1.60021879e+03 1.60021913e+03 1.60021929e+03 1.00000002e-02 2.00000005e-02 5.00003451e-01 1.00000690e+00 output-compression_heating/solution/solution-00001 +2 5.000000000000e-01 1.875095227949e-01 256 2467 1089 578 2 8 5 0 113 116 6171 1.60035189e+03 1.60035242e+03 1.60035262e+03 1.00000002e-02 2.00000004e-02 5.00003124e-01 1.00000625e+00 output-compression_heating/solution/solution-00002 diff --git a/tests/free_surface_blob_melt/screen-output b/tests/free_surface_blob_melt/screen-output index 3e9adea603e..453761846a5 100644 --- a/tests/free_surface_blob_melt/screen-output +++ b/tests/free_surface_blob_melt/screen-output @@ -2,7 +2,7 @@ Loading shared library <./libfree_surface_blob_melt.so> Number of active cells: 640 (on 4 levels) -Number of degrees of freedom: 18,129 (5,346+1,394+5,346+697+2,673+2,673) +Number of degrees of freedom: 19,352 (5,346+2,617+5,346+697+2,673+2,673) Number of free surface degrees of freedom: 1394 *** Timestep 0: t=0 years @@ -10,11 +10,11 @@ Number of free surface degrees of freedom: 1394 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+27 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+18 iterations. + Solving for u_f in 11 iterations. Number of active cells: 664 (on 5 levels) -Number of degrees of freedom: 19,101 (5,634+1,466+5,634+733+2,817+2,817) +Number of degrees of freedom: 20,360 (5,634+2,725+5,634+733+2,817+2,817) Number of free surface degrees of freedom: 1466 *** Timestep 0: t=0 years @@ -22,8 +22,8 @@ Number of free surface degrees of freedom: 1466 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+27 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+18 iterations. + Solving for u_f in 12 iterations. Postprocessing: Topography min/max: 0 m, 0 m @@ -34,8 +34,8 @@ Number of free surface degrees of freedom: 1466 Solving temperature system... 18 iterations. Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+16 iterations. + Solving for u_f in 12 iterations. Postprocessing: Topography min/max: -393.7 m, 876.7 m @@ -46,8 +46,8 @@ Number of free surface degrees of freedom: 1466 Solving temperature system... 21 iterations. Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+24 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+15 iterations. + Solving for u_f in 11 iterations. Postprocessing: Topography min/max: -2260 m, 1102 m @@ -58,8 +58,8 @@ Number of free surface degrees of freedom: 1466 Solving temperature system... 15 iterations. Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+24 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+15 iterations. + Solving for u_f in 12 iterations. Postprocessing: Topography min/max: -476.2 m, 224.4 m @@ -70,8 +70,8 @@ Number of free surface degrees of freedom: 1466 Solving temperature system... 15 iterations. Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+24 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+15 iterations. + Solving for u_f in 12 iterations. Postprocessing: Topography min/max: -338.4 m, 712.9 m @@ -82,8 +82,8 @@ Number of free surface degrees of freedom: 1466 Solving temperature system... 24 iterations. Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+23 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+15 iterations. + Solving for u_f in 11 iterations. Postprocessing: Topography min/max: -2422 m, 1242 m @@ -100,8 +100,8 @@ Number of free surface degrees of freedom: 1466 Solving temperature system... 16 iterations. Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+24 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+15 iterations. + Solving for u_f in 11 iterations. Postprocessing: Topography min/max: -583.1 m, 294.2 m @@ -112,8 +112,8 @@ Number of free surface degrees of freedom: 1466 Solving temperature system... 15 iterations. Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+24 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+15 iterations. + Solving for u_f in 12 iterations. Postprocessing: Topography min/max: -376.8 m, 744.6 m @@ -124,8 +124,8 @@ Number of free surface degrees of freedom: 1466 Solving temperature system... 24 iterations. Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+23 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+15 iterations. + Solving for u_f in 11 iterations. Postprocessing: Topography min/max: -2389 m, 1290 m @@ -136,8 +136,8 @@ Number of free surface degrees of freedom: 1466 Solving temperature system... 16 iterations. Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+25 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+15 iterations. + Solving for u_f in 11 iterations. Postprocessing: Topography min/max: -441.2 m, 233.8 m @@ -148,8 +148,8 @@ Number of free surface degrees of freedom: 1466 Solving temperature system... 16 iterations. Skipping porosity composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+24 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+15 iterations. + Solving for u_f in 12 iterations. Postprocessing: Topography min/max: -386.2 m, 737.6 m diff --git a/tests/free_surface_blob_melt/statistics b/tests/free_surface_blob_melt/statistics index 2d7ef779992..4644472caac 100644 --- a/tests/free_surface_blob_melt/statistics +++ b/tests/free_surface_blob_melt/statistics @@ -14,14 +14,14 @@ # 14: Maximum topography (m) # 15: RMS velocity (m/year) # 16: Max. velocity (m/year) - 0 0.000000000000e+00 0.000000000000e+00 664 6367 2817 2817 0 0 27 201 107 0.00000000e+00 0.00000000e+00 7.13656881e-04 2.31435036e-03 - 1 6.754274153194e+05 6.754274153194e+05 664 6367 2817 2817 18 0 26 123 108 -3.93685247e+02 8.76701045e+02 7.64363599e-04 2.15566284e-03 - 2 2.107117578021e+06 1.431690162701e+06 664 6367 2817 2817 21 0 24 118 100 -2.25951854e+03 1.10196281e+03 1.21049140e-03 3.02688059e-03 - 3 2.689227285523e+06 5.821097075023e+05 664 6367 2817 2817 15 0 24 114 99 -4.76201523e+02 2.24364112e+02 7.75891674e-04 2.09935984e-03 - 4 3.433431409613e+06 7.442041240896e+05 664 6367 2817 2817 15 0 24 115 100 -3.38373963e+02 7.12904652e+02 5.96732467e-04 1.58494003e-03 - 5 5.374251475990e+06 1.940820066377e+06 664 6367 2817 2817 24 0 23 114 96 -2.42208699e+03 1.24205157e+03 9.95153985e-04 2.41238273e-03 - 6 6.124982548564e+06 7.507310725739e+05 664 6367 2817 2817 16 0 24 118 100 -5.83096960e+02 2.94210060e+02 7.35808507e-04 1.79432687e-03 - 7 6.995886698636e+06 8.709041500719e+05 664 6367 2817 2817 15 0 24 114 99 -3.76775486e+02 7.44631867e+02 5.48622829e-04 1.45094870e-03 - 8 9.117432711498e+06 2.121546012862e+06 664 6367 2817 2817 24 0 23 114 96 -2.38924251e+03 1.28969311e+03 9.15773455e-04 2.18041573e-03 - 9 9.996722060352e+06 8.792893488547e+05 664 6367 2817 2817 16 0 25 122 104 -4.41171301e+02 2.33777489e+02 5.57656703e-04 1.34358058e-03 -10 1.115933604122e+07 1.162613980865e+06 664 6367 2817 2817 16 0 24 114 99 -3.86230968e+02 7.37610976e+02 4.34595716e-04 1.10471467e-03 + 0 0.000000000000e+00 0.000000000000e+00 664 6367 2817 2817 0 0 18 140 188 0.00000000e+00 0.00000000e+00 7.13656881e-04 2.31435036e-03 + 1 6.754274123122e+05 6.754274123122e+05 664 6367 2817 2817 18 0 16 79 181 -3.93685248e+02 8.76701040e+02 7.64363599e-04 2.15566284e-03 + 2 2.107117563148e+06 1.431690150836e+06 664 6367 2817 2817 21 0 15 77 167 -2.25951854e+03 1.10196286e+03 1.21049139e-03 3.02688057e-03 + 3 2.689227274522e+06 5.821097113739e+05 664 6367 2817 2817 15 0 15 77 170 -4.76201507e+02 2.24364122e+02 7.75891612e-04 2.09935962e-03 + 4 3.433431447386e+06 7.442041728647e+05 664 6367 2817 2817 15 0 15 75 168 -3.38374195e+02 7.12904800e+02 5.96732442e-04 1.58494041e-03 + 5 5.374250997501e+06 1.940819550114e+06 664 6367 2817 2817 24 0 15 76 168 -2.42208689e+03 1.24205127e+03 9.95153916e-04 2.41238307e-03 + 6 6.124982043087e+06 7.507310455868e+05 664 6367 2817 2817 16 0 15 75 170 -5.83096517e+02 2.94209771e+02 7.35808054e-04 1.79432625e-03 + 7 6.995886474025e+06 8.709044309375e+05 664 6367 2817 2817 15 0 15 76 168 -3.76775436e+02 7.44631895e+02 5.48622536e-04 1.45094823e-03 + 8 9.117433117898e+06 2.121546643873e+06 664 6367 2817 2817 24 0 15 77 168 -2.38924253e+03 1.28969247e+03 9.15772957e-04 2.18041493e-03 + 9 9.996722753176e+06 8.792896352777e+05 664 6367 2817 2817 16 0 15 76 170 -4.41171239e+02 2.33777307e+02 5.57656463e-04 1.34358021e-03 +10 1.115933703874e+07 1.162614285562e+06 664 6367 2817 2817 16 0 15 75 168 -3.86230695e+02 7.37610998e+02 4.34595463e-04 1.10471419e-03 diff --git a/tests/free_surface_blob_nonzero_melt/screen-output b/tests/free_surface_blob_nonzero_melt/screen-output index 4334b7c9016..1507e0edbd9 100644 --- a/tests/free_surface_blob_nonzero_melt/screen-output +++ b/tests/free_surface_blob_nonzero_melt/screen-output @@ -1,10 +1,8 @@ ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ Loading shared library <./libfree_surface_blob_nonzero_melt.so> Number of active cells: 640 (on 4 levels) -Number of degrees of freedom: 18,129 (5,346+1,394+5,346+697+2,673+2,673) +Number of degrees of freedom: 19,352 (5,346+2,617+5,346+697+2,673+2,673) Number of free surface degrees of freedom: 1394 *** Timestep 0: t=0 years @@ -12,11 +10,11 @@ Number of free surface degrees of freedom: 1394 Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+30 iterations. + Solving Stokes system... 0+20 iterations. Solving for u_f in 11 iterations. Number of active cells: 760 (on 5 levels) -Number of degrees of freedom: 22,224 (6,550+1,716+6,550+858+3,275+3,275) +Number of degrees of freedom: 23,646 (6,550+3,138+6,550+858+3,275+3,275) Number of free surface degrees of freedom: 1716 *** Timestep 0: t=0 years @@ -24,11 +22,11 @@ Number of free surface degrees of freedom: 1716 Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+30 iterations. + Solving Stokes system... 0+19 iterations. Solving for u_f in 11 iterations. Number of active cells: 1,360 (on 6 levels) -Number of degrees of freedom: 40,149 (11,842+3,082+11,842+1,541+5,921+5,921) +Number of degrees of freedom: 42,688 (11,842+5,621+11,842+1,541+5,921+5,921) Number of free surface degrees of freedom: 3082 *** Timestep 0: t=0 years @@ -36,7 +34,7 @@ Number of free surface degrees of freedom: 3082 Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+32 iterations. + Solving Stokes system... 0+19 iterations. Solving for u_f in 12 iterations. Postprocessing: @@ -45,33 +43,33 @@ Number of free surface degrees of freedom: 3082 Writing graphical output: output-free_surface_blob_nonzero_melt/solution/solution-00000 Compositions min/max/mass: 0/0.02/5.948e+08 -*** Timestep 1: t=6619.92 years +*** Timestep 1: t=5986.36 years Solving mesh velocity system... 8 iterations. Solving temperature system... 9 iterations. Solving porosity system ... 9 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+29 iterations. + Solving Stokes system... 0+16 iterations. Solving for u_f in 12 iterations. Postprocessing: - Topography min/max: -138 m, 149.3 m - RMS, max velocity: 0.01 m/year, 0.0168 m/year + Topography min/max: -124.8 m, 135 m + RMS, max velocity: 0.0103 m/year, 0.0173 m/year Writing graphical output: output-free_surface_blob_nonzero_melt/solution/solution-00001 - Compositions min/max/mass: -1.021e-05/0.02013/5.948e+08 + Compositions min/max/mass: -9.562e-07/0.0201/5.948e+08 *** Timestep 2: t=10000 years Solving mesh velocity system... 8 iterations. Solving temperature system... 9 iterations. Solving porosity system ... 9 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. + Solving Stokes system... 0+15 iterations. Solving for u_f in 12 iterations. Postprocessing: - Topography min/max: -188.5 m, 205.4 m - RMS, max velocity: 0.00975 m/year, 0.0162 m/year + Topography min/max: -186.8 m, 203.7 m + RMS, max velocity: 0.0097 m/year, 0.0161 m/year Writing graphical output: output-free_surface_blob_nonzero_melt/solution/solution-00002 - Compositions min/max/mass: -1.474e-05/0.02013/5.948e+08 + Compositions min/max/mass: -1.268e-06/0.02006/5.948e+08 Termination requested by criterion: end time diff --git a/tests/free_surface_blob_nonzero_melt/statistics b/tests/free_surface_blob_nonzero_melt/statistics index aba5d1a8009..913fb8023aa 100644 --- a/tests/free_surface_blob_nonzero_melt/statistics +++ b/tests/free_surface_blob_nonzero_melt/statistics @@ -18,6 +18,6 @@ # 18: Minimal value for composition porosity # 19: Maximal value for composition porosity # 20: Global mass for composition porosity -0 0.000000000000e+00 0.000000000000e+00 1360 13383 5921 5921 0 0 32 272 128 0.00000000e+00 0.00000000e+00 1.27301436e-02 2.26399495e-02 output-free_surface_blob_nonzero_melt/solution/solution-00000 0.00000000e+00 1.99999965e-02 5.94762824e+08 -1 6.619917053091e+03 6.619917053091e+03 1360 13383 5921 5921 9 9 29 250 118 -1.38006964e+02 1.49276372e+02 1.00446523e-02 1.68195473e-02 output-free_surface_blob_nonzero_melt/solution/solution-00001 -1.02096438e-05 2.01274513e-02 5.94778315e+08 -2 1.000000000000e+04 3.380082946909e+03 1360 13383 5921 5921 9 9 26 229 107 -1.88459733e+02 2.05361919e+02 9.74607258e-03 1.61873318e-02 output-free_surface_blob_nonzero_melt/solution/solution-00002 -1.47371523e-05 2.01252458e-02 5.94780969e+08 +0 0.000000000000e+00 0.000000000000e+00 1360 13383 5921 5921 0 0 19 167 228 0.00000000e+00 0.00000000e+00 1.27301464e-02 2.26399797e-02 output-free_surface_blob_nonzero_melt/solution/solution-00000 0.00000000e+00 1.99999965e-02 5.94762824e+08 +1 5.986364010920e+03 5.986364010920e+03 1360 13383 5921 5921 9 9 16 147 197 -1.24798165e+02 1.34990344e+02 1.02722238e-02 1.73212440e-02 output-free_surface_blob_nonzero_melt/solution/solution-00001 -9.56190704e-07 2.00955751e-02 5.94793060e+08 +2 1.000000000000e+04 4.013635989080e+03 1360 13383 5921 5921 9 9 15 140 185 -1.86772716e+02 2.03657014e+02 9.70405834e-03 1.60784260e-02 output-free_surface_blob_nonzero_melt/solution/solution-00002 -1.26836529e-06 2.00604924e-02 5.94804422e+08 diff --git a/tests/global_melt/screen-output b/tests/global_melt/screen-output index 8015f7cce41..75f22e2fda0 100644 --- a/tests/global_melt/screen-output +++ b/tests/global_melt/screen-output @@ -1,14 +1,14 @@ Number of active cells: 192 (on 4 levels) -Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) +Number of degrees of freedom: 5,641 (1,666+801+1,666+225+833+225+225) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+8 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+11 iterations. + Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.93774e-16, 0, 0, 1 Relative nonlinear residual (total system) after nonlinear iteration 1: 1 @@ -16,36 +16,36 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+8 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.04275e-16, 0, 0, 0.799766 + Solving Stokes system... 0+11 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.07512e-16, 0, 0, 0.799766 Relative nonlinear residual (total system) after nonlinear iteration 2: 0.799766 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+8 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.57791e-16, 0, 0, 0.173272 + Solving Stokes system... 0+11 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.1558e-16, 0, 0, 0.173272 Relative nonlinear residual (total system) after nonlinear iteration 3: 0.173272 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+8 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.43416e-16, 0, 0, 0.0272016 + Solving Stokes system... 0+11 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.36188e-16, 0, 0, 0.0272016 Relative nonlinear residual (total system) after nonlinear iteration 4: 0.0272016 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+8 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.30853e-16, 0, 0, 0.0032544 + Solving Stokes system... 0+10 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.25248e-16, 0, 0, 0.0032544 Relative nonlinear residual (total system) after nonlinear iteration 5: 0.0032544 Solving temperature system... 0 iterations. @@ -53,26 +53,26 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... Solving Stokes system... 0+7 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.49451e-16, 0, 0, 0.000312907 + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.09471e-16, 0, 0, 0.000312907 Relative nonlinear residual (total system) after nonlinear iteration 6: 0.000312907 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+7 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.62223e-16, 0, 0, 2.51035e-05 + Solving Stokes system... 0+6 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.13622e-16, 0, 0, 2.51035e-05 Relative nonlinear residual (total system) after nonlinear iteration 7: 2.51035e-05 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.42614e-16, 0, 0, 1.72283e-06 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.24189e-16, 0, 0, 1.72283e-06 Relative nonlinear residual (total system) after nonlinear iteration 8: 1.72283e-06 @@ -88,8 +88,8 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+7 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+6 iterations. + Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000991159, 0, 0, 0.0240528 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0240528 @@ -97,37 +97,37 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+7 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.3476e-05, 0, 0, 0.000984558 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000984558 + Solving Stokes system... 0+5 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.3476e-05, 0, 0, 0.000984559 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000984559 Solving temperature system... 7 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.32672e-07, 0, 0, 0.000187049 + Solving Stokes system... 0+5 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.32674e-07, 0, 0, 0.000187049 Relative nonlinear residual (total system) after nonlinear iteration 3: 0.000187049 Solving temperature system... 6 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.4116e-08, 0, 0, 3.96409e-05 - Relative nonlinear residual (total system) after nonlinear iteration 4: 3.96409e-05 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.4115e-08, 0, 0, 3.9641e-05 + Relative nonlinear residual (total system) after nonlinear iteration 4: 3.9641e-05 Solving temperature system... 5 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 9.16557e-10, 0, 0, 5.74474e-06 - Relative nonlinear residual (total system) after nonlinear iteration 5: 5.74474e-06 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 9.1827e-10, 0, 0, 5.74423e-06 + Relative nonlinear residual (total system) after nonlinear iteration 5: 5.74423e-06 Postprocessing: @@ -142,8 +142,8 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+5 iterations. + Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000138201, 0, 0, 0.0033994 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0033994 @@ -151,37 +151,37 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.14812e-07, 0, 0, 0.000241801 + Solving Stokes system... 0+5 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.1481e-07, 0, 0, 0.000241801 Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000241801 Solving temperature system... 6 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.74306e-08, 0, 0, 7.72142e-05 - Relative nonlinear residual (total system) after nonlinear iteration 3: 7.72142e-05 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.74295e-08, 0, 0, 7.72133e-05 + Relative nonlinear residual (total system) after nonlinear iteration 3: 7.72133e-05 Solving temperature system... 5 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.0005e-09, 0, 0, 1.52198e-05 - Relative nonlinear residual (total system) after nonlinear iteration 4: 1.52198e-05 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.00198e-09, 0, 0, 1.52181e-05 + Relative nonlinear residual (total system) after nonlinear iteration 4: 1.52181e-05 Solving temperature system... 4 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.48012e-11, 0, 0, 2.14798e-06 - Relative nonlinear residual (total system) after nonlinear iteration 5: 2.14798e-06 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.66897e-11, 0, 0, 2.14802e-06 + Relative nonlinear residual (total system) after nonlinear iteration 5: 2.14802e-06 Postprocessing: @@ -196,8 +196,8 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.2938e-05, 0, 0, 0.000284218 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.000284218 @@ -205,28 +205,28 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.97026e-07, 0, 0, 5.37861e-05 - Relative nonlinear residual (total system) after nonlinear iteration 2: 5.37861e-05 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.97017e-07, 0, 0, 5.37869e-05 + Relative nonlinear residual (total system) after nonlinear iteration 2: 5.37869e-05 Solving temperature system... 4 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.96568e-10, 0, 0, 1.59852e-05 - Relative nonlinear residual (total system) after nonlinear iteration 3: 1.59852e-05 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.93739e-10, 0, 0, 1.5985e-05 + Relative nonlinear residual (total system) after nonlinear iteration 3: 1.5985e-05 Solving temperature system... 3 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.30779e-11, 0, 0, 3.03751e-06 - Relative nonlinear residual (total system) after nonlinear iteration 4: 3.03751e-06 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.19209e-11, 0, 0, 3.03805e-06 + Relative nonlinear residual (total system) after nonlinear iteration 4: 3.03805e-06 Postprocessing: diff --git a/tests/global_melt/statistics b/tests/global_melt/statistics index 45145da50e6..75f23a5b1e9 100644 --- a/tests/global_melt/statistics +++ b/tests/global_melt/statistics @@ -25,7 +25,7 @@ # 25: Average temperature (K) # 26: Maximal temperature (K) # 27: Average nondimensional temperature (K) -0 0.000000000000e+00 0.000000000000e+00 192 1891 833 450 8 0 0 0 60 69 67 output-global_melt/solution/solution-00000 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.08902163e-03 2.96202823e-03 2.93000000e+02 2.02282918e+03 3.70000000e+03 5.07727967e-01 -1 1.000000000000e+06 1.000000000000e+06 192 1891 833 450 5 37 0 0 32 42 37 output-global_melt/solution/solution-00001 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.10769519e-03 3.03266841e-03 2.93000000e+02 2.02310388e+03 3.70000000e+03 5.07808595e-01 -2 2.000000000000e+06 1.000000000000e+06 192 1891 833 450 5 32 0 0 30 42 35 output-global_melt/solution/solution-00002 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.12581401e-03 3.10116873e-03 2.93000000e+02 2.02340011e+03 3.70000000e+03 5.07895541e-01 -3 3.000000000000e+06 1.000000000000e+06 192 1891 833 450 4 23 0 0 24 37 28 output-global_melt/solution/solution-00003 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.14357964e-03 3.16811315e-03 2.93000000e+02 2.02369158e+03 3.70000000e+03 5.07981092e-01 +0 0.000000000000e+00 0.000000000000e+00 192 1891 833 450 8 0 0 0 71 79 544 output-global_melt/solution/solution-00000 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.08902163e-03 2.96202828e-03 2.93000000e+02 2.02282918e+03 3.70000000e+03 5.07727967e-01 +1 1.000000000000e+06 1.000000000000e+06 192 1891 833 450 5 37 0 0 24 29 198 output-global_melt/solution/solution-00001 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.10769519e-03 3.03266850e-03 2.93000000e+02 2.02310388e+03 3.70000000e+03 5.07808595e-01 +2 2.000000000000e+06 1.000000000000e+06 192 1891 833 450 5 32 0 0 22 27 184 output-global_melt/solution/solution-00002 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.12581401e-03 3.10116874e-03 2.93000000e+02 2.02340011e+03 3.70000000e+03 5.07895541e-01 +3 3.000000000000e+06 1.000000000000e+06 192 1891 833 450 4 23 0 0 16 20 136 output-global_melt/solution/solution-00003 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.14357964e-03 3.16811314e-03 2.93000000e+02 2.02369158e+03 3.70000000e+03 5.07981092e-01 diff --git a/tests/global_melt_parallel/screen-output b/tests/global_melt_parallel/screen-output index b5721ec78aa..b9ac7bf5094 100644 --- a/tests/global_melt_parallel/screen-output +++ b/tests/global_melt_parallel/screen-output @@ -1,6 +1,6 @@ Number of active cells: 192 (on 4 levels) -Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) +Number of degrees of freedom: 5,641 (1,666+801+1,666+225+833+225+225) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. @@ -8,7 +8,7 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... Solving Stokes system... 0+13 iterations. - Solving for u_f in 0 iterations. + Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.97921e-16, 0, 0, 1 Relative nonlinear residual (total system) after nonlinear iteration 1: 1 @@ -17,17 +17,17 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... Solving Stokes system... 0+13 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.24019e-16, 0, 0, 0.799766 + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.10362e-16, 0, 0, 0.799766 Relative nonlinear residual (total system) after nonlinear iteration 2: 0.799766 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+13 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.1806e-16, 0, 0, 0.173272 + Solving Stokes system... 0+12 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.24718e-16, 0, 0, 0.173272 Relative nonlinear residual (total system) after nonlinear iteration 3: 0.173272 Solving temperature system... 0 iterations. @@ -35,8 +35,8 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... Solving Stokes system... 0+12 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.10725e-16, 0, 0, 0.0272016 + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.19958e-16, 0, 0, 0.0272016 Relative nonlinear residual (total system) after nonlinear iteration 4: 0.0272016 Solving temperature system... 0 iterations. @@ -44,8 +44,8 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... Solving Stokes system... 0+11 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.40884e-16, 0, 0, 0.0032544 + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.10803e-16, 0, 0, 0.0032544 Relative nonlinear residual (total system) after nonlinear iteration 5: 0.0032544 Solving temperature system... 0 iterations. @@ -53,26 +53,26 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... Solving Stokes system... 0+8 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.1276e-16, 0, 0, 0.000312907 + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.38904e-16, 0, 0, 0.000312907 Relative nonlinear residual (total system) after nonlinear iteration 6: 0.000312907 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+7 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.25235e-16, 0, 0, 2.51035e-05 + Solving Stokes system... 0+6 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.19731e-16, 0, 0, 2.51035e-05 Relative nonlinear residual (total system) after nonlinear iteration 7: 2.51035e-05 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.30109e-16, 0, 0, 1.72283e-06 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.20788e-16, 0, 0, 1.72283e-06 Relative nonlinear residual (total system) after nonlinear iteration 8: 1.72283e-06 @@ -88,8 +88,8 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+8 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+6 iterations. + Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000991159, 0, 0, 0.0240528 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0240528 @@ -97,37 +97,37 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+7 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.3476e-05, 0, 0, 0.000984558 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000984558 + Solving Stokes system... 0+5 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.3476e-05, 0, 0, 0.000984559 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000984559 Solving temperature system... 9 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.32673e-07, 0, 0, 0.000187049 + Solving Stokes system... 0+5 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.32675e-07, 0, 0, 0.000187049 Relative nonlinear residual (total system) after nonlinear iteration 3: 0.000187049 Solving temperature system... 8 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.41153e-08, 0, 0, 3.96407e-05 - Relative nonlinear residual (total system) after nonlinear iteration 4: 3.96407e-05 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.41119e-08, 0, 0, 3.96408e-05 + Relative nonlinear residual (total system) after nonlinear iteration 4: 3.96408e-05 Solving temperature system... 6 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 9.16644e-10, 0, 0, 5.74468e-06 - Relative nonlinear residual (total system) after nonlinear iteration 5: 5.74468e-06 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 9.18472e-10, 0, 0, 5.74427e-06 + Relative nonlinear residual (total system) after nonlinear iteration 5: 5.74427e-06 Postprocessing: @@ -142,8 +142,8 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+7 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+5 iterations. + Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000138201, 0, 0, 0.0033994 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0033994 @@ -151,37 +151,37 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.14814e-07, 0, 0, 0.000241799 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000241799 + Solving Stokes system... 0+5 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.1481e-07, 0, 0, 0.000241801 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000241801 Solving temperature system... 8 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.74313e-08, 0, 0, 7.72146e-05 - Relative nonlinear residual (total system) after nonlinear iteration 3: 7.72146e-05 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.74295e-08, 0, 0, 7.72129e-05 + Relative nonlinear residual (total system) after nonlinear iteration 3: 7.72129e-05 Solving temperature system... 6 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.00056e-09, 0, 0, 1.522e-05 - Relative nonlinear residual (total system) after nonlinear iteration 4: 1.522e-05 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.00164e-09, 0, 0, 1.52181e-05 + Relative nonlinear residual (total system) after nonlinear iteration 4: 1.52181e-05 Solving temperature system... 4 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.49235e-11, 0, 0, 2.14799e-06 - Relative nonlinear residual (total system) after nonlinear iteration 5: 2.14799e-06 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.68239e-11, 0, 0, 2.14805e-06 + Relative nonlinear residual (total system) after nonlinear iteration 5: 2.14805e-06 Postprocessing: @@ -196,8 +196,8 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.2938e-05, 0, 0, 0.000284218 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.000284218 @@ -205,28 +205,28 @@ Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.97021e-07, 0, 0, 5.37867e-05 - Relative nonlinear residual (total system) after nonlinear iteration 2: 5.37867e-05 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.97017e-07, 0, 0, 5.37869e-05 + Relative nonlinear residual (total system) after nonlinear iteration 2: 5.37869e-05 Solving temperature system... 5 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.96537e-10, 0, 0, 1.59854e-05 - Relative nonlinear residual (total system) after nonlinear iteration 3: 1.59854e-05 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.93643e-10, 0, 0, 1.59851e-05 + Relative nonlinear residual (total system) after nonlinear iteration 3: 1.59851e-05 Solving temperature system... 4 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+6 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.238e-11, 0, 0, 3.03742e-06 - Relative nonlinear residual (total system) after nonlinear iteration 4: 3.03742e-06 + Solving Stokes system... 0+4 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.22697e-11, 0, 0, 3.03805e-06 + Relative nonlinear residual (total system) after nonlinear iteration 4: 3.03805e-06 Postprocessing: diff --git a/tests/global_melt_parallel/statistics b/tests/global_melt_parallel/statistics index 599f5e245f4..efbb7366795 100644 --- a/tests/global_melt_parallel/statistics +++ b/tests/global_melt_parallel/statistics @@ -25,7 +25,7 @@ # 25: Average temperature (K) # 26: Maximal temperature (K) # 27: Average nondimensional temperature (K) -0 0.000000000000e+00 0.000000000000e+00 192 1891 833 450 8 0 0 0 83 209 595 output-global_melt_parallel/solution/solution-00000 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.08902163e-03 2.96202826e-03 2.93000000e+02 2.02282918e+03 3.70000000e+03 5.07727967e-01 -1 1.000000000000e+06 1.000000000000e+06 192 1891 833 450 5 47 0 0 33 58 241 output-global_melt_parallel/solution/solution-00001 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.10769519e-03 3.03266844e-03 2.93000000e+02 2.02310388e+03 3.70000000e+03 5.07808595e-01 -2 2.000000000000e+06 1.000000000000e+06 192 1891 833 450 5 40 0 0 31 49 227 output-global_melt_parallel/solution/solution-00002 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.12581401e-03 3.10116873e-03 2.93000000e+02 2.02340011e+03 3.70000000e+03 5.07895541e-01 -3 3.000000000000e+06 1.000000000000e+06 192 1891 833 450 4 30 0 0 24 36 172 output-global_melt_parallel/solution/solution-00003 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.14357964e-03 3.16811315e-03 2.93000000e+02 2.02369158e+03 3.70000000e+03 5.07981092e-01 +0 0.000000000000e+00 0.000000000000e+00 192 1891 833 450 8 0 0 0 79 87 766 output-global_melt_parallel/solution/solution-00000 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.08902163e-03 2.96202829e-03 2.93000000e+02 2.02282918e+03 3.70000000e+03 5.07727967e-01 +1 1.000000000000e+06 1.000000000000e+06 192 1891 833 450 5 47 0 0 24 29 255 output-global_melt_parallel/solution/solution-00001 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.10769519e-03 3.03266850e-03 2.93000000e+02 2.02310388e+03 3.70000000e+03 5.07808595e-01 +2 2.000000000000e+06 1.000000000000e+06 192 1891 833 450 5 40 0 0 22 27 238 output-global_melt_parallel/solution/solution-00002 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.12581401e-03 3.10116875e-03 2.93000000e+02 2.02340011e+03 3.70000000e+03 5.07895541e-01 +3 3.000000000000e+06 1.000000000000e+06 192 1891 833 450 4 30 0 0 16 20 175 output-global_melt_parallel/solution/solution-00003 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.14357964e-03 3.16811314e-03 2.93000000e+02 2.02369158e+03 3.70000000e+03 5.07981092e-01 diff --git a/tests/heat_advection_by_melt/screen-output b/tests/heat_advection_by_melt/screen-output index 04fee095028..2d8379156e3 100644 --- a/tests/heat_advection_by_melt/screen-output +++ b/tests/heat_advection_by_melt/screen-output @@ -2,14 +2,14 @@ Loading shared library <./libheat_advection_by_melt.so> Number of active cells: 256 (on 5 levels) -Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) +Number of degrees of freedom: 7,369 (2,178+1,057+2,178+289+1,089+289+289) *** Timestep 0: t=0 seconds Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 26+0 iterations. + Solving Stokes system... 51+0 iterations. Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.80371e-16, 2.44479e-16, 0, 0.0526341 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0526341 @@ -20,13 +20,13 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.80371e-16, 2.44479e-16, 0, 6.93218e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.93218e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.80371e-16, 2.44479e-16, 0, 6.39451e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 6.39451e-13 Postprocessing: Temperature min/avg/max: 1 K, 1.5 K, 2 K - Heating rate (average/total): 1.294e-23 W/kg, 2.587e-23 W + Heating rate (average/total): 0.05 W/kg, 0.1 W Writing graphical output: output-heat_advection_by_melt/solution/solution-00000 *** Timestep 1: t=0.03125 seconds @@ -36,7 +36,7 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000399056, 1.08876e-13, 0, 6.93183e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000399056, 2.68927e-16, 0, 6.39428e-13 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.000399056 Solving temperature system... 0 iterations. @@ -45,8 +45,8 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.52837e-13, 1.08876e-13, 0, 6.93183e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.93183e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.52836e-13, 2.68927e-16, 0, 6.39428e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 6.39428e-13 Postprocessing: @@ -61,7 +61,7 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000179105, 7.25484e-14, 0, 6.93183e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000179105, 1.75185e-16, 0, 6.39428e-13 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.000179105 Solving temperature system... 0 iterations. @@ -70,8 +70,8 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.13911e-13, 7.25484e-14, 0, 6.93183e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.93183e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.13914e-13, 1.75185e-16, 0, 6.39428e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 6.39428e-13 Postprocessing: @@ -86,7 +86,7 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000100345, 7.25484e-14, 0, 6.93183e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000100345, 1.75185e-16, 0, 6.39428e-13 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.000100345 Solving temperature system... 0 iterations. @@ -95,8 +95,8 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.39945e-13, 7.25484e-14, 0, 6.93183e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.93183e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.39953e-13, 1.75185e-16, 0, 6.39428e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 6.39428e-13 Postprocessing: @@ -111,7 +111,7 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.70704e-05, 1.86717e-14, 0, 6.93289e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.70704e-05, 9.98459e-17, 0, 6.39554e-13 Relative nonlinear residual (total system) after nonlinear iteration 1: 1.70704e-05 Solving temperature system... 0 iterations. @@ -120,8 +120,8 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.30007e-13, 1.86717e-14, 0, 6.93299e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.93299e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.30005e-13, 9.98459e-17, 0, 6.39554e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 6.39554e-13 Postprocessing: diff --git a/tests/heat_advection_by_melt/statistics b/tests/heat_advection_by_melt/statistics index 0d113796dd8..5278a941d13 100644 --- a/tests/heat_advection_by_melt/statistics +++ b/tests/heat_advection_by_melt/statistics @@ -21,8 +21,8 @@ # 21: Average shear heating with melt rate (W/kg) # 22: Total shear heating with melt rate (W) # 23: Visualization file name -0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 578 2 0 0 0 26 27 418 1.00000000e+00 1.50000000e+00 2.00000000e+00 1.32520541e-04 1.26582251e-23 2.53164503e-23 2.77322578e-25 5.54645156e-25 output-heat_advection_by_melt/solution/solution-00000 -1 3.124999999569e-02 3.124999999569e-02 256 2467 1089 578 2 5 0 0 0 0 0 1.00000000e+00 1.49990061e+00 1.99148513e+00 1.32494199e-04 1.26582251e-23 2.53164503e-23 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt/solution/solution-00001 -2 6.249999999138e-02 3.124999999569e-02 256 2467 1089 578 2 8 0 0 0 0 0 1.00000000e+00 1.49987322e+00 1.98741590e+00 1.32486939e-04 1.26582251e-23 2.53164503e-23 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt/solution/solution-00002 -3 9.374999998706e-02 3.124999999569e-02 256 2467 1089 578 2 8 0 0 0 0 0 1.00000000e+00 1.49987160e+00 1.98561783e+00 1.32486510e-04 1.26582251e-23 2.53164503e-23 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt/solution/solution-00003 -4 1.000000000000e-01 6.250000012937e-03 256 2467 1089 578 2 7 0 0 0 0 0 1.00000000e+00 1.49987346e+00 1.98553594e+00 1.32487003e-04 1.26582251e-23 2.53164503e-23 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt/solution/solution-00004 +0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 578 2 0 0 0 51 53 1010 1.00000000e+00 1.50000000e+00 2.00000000e+00 1.32520541e-04 3.22002693e-31 6.44005386e-31 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt/solution/solution-00000 +1 3.124999999565e-02 3.124999999565e-02 256 2467 1089 578 2 5 0 0 0 0 0 1.00000000e+00 1.49990061e+00 1.99148513e+00 1.32494199e-04 3.22002693e-31 6.44005386e-31 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt/solution/solution-00001 +2 6.249999999129e-02 3.124999999565e-02 256 2467 1089 578 2 8 0 0 0 0 0 1.00000000e+00 1.49987322e+00 1.98741590e+00 1.32486939e-04 3.22002693e-31 6.44005386e-31 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt/solution/solution-00002 +3 9.374999998694e-02 3.124999999565e-02 256 2467 1089 578 2 8 0 0 0 0 0 1.00000000e+00 1.49987160e+00 1.98561783e+00 1.32486510e-04 3.22002693e-31 6.44005386e-31 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt/solution/solution-00003 +4 1.000000000000e-01 6.250000013065e-03 256 2467 1089 578 2 7 0 0 0 0 0 1.00000000e+00 1.49987346e+00 1.98553594e+00 1.32487003e-04 3.22002693e-31 6.44005386e-31 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt/solution/solution-00004 diff --git a/tests/heat_advection_by_melt_operator_splitting/screen-output b/tests/heat_advection_by_melt_operator_splitting/screen-output index 137653900a6..f181ea3efc9 100644 --- a/tests/heat_advection_by_melt_operator_splitting/screen-output +++ b/tests/heat_advection_by_melt_operator_splitting/screen-output @@ -2,14 +2,14 @@ Loading shared library <./libheat_advection_by_melt_operator_splitting.so> Number of active cells: 256 (on 5 levels) -Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) +Number of degrees of freedom: 7,369 (2,178+1,057+2,178+289+1,089+289+289) *** Timestep 0: t=0 seconds Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 26+0 iterations. + Solving Stokes system... 51+0 iterations. Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.80371e-16, 2.44479e-16, 0, 0.0526341 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0526341 @@ -20,13 +20,13 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.80371e-16, 2.44479e-16, 0, 6.93218e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.93218e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.80371e-16, 2.44479e-16, 0, 6.39451e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 6.39451e-13 Postprocessing: Temperature min/avg/max: 1 K, 1.5 K, 2 K - Heating rate (average/total): 1.294e-23 W/kg, 2.587e-23 W + Heating rate (average/total): 0.05 W/kg, 0.1 W Writing graphical output: output-heat_advection_by_melt_operator_splitting/solution/solution-00000 *** Timestep 1: t=0.03125 seconds @@ -37,7 +37,7 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000399056, 1.08876e-13, 0, 6.93183e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000399056, 2.68927e-16, 0, 6.39428e-13 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.000399056 Solving temperature system... 0 iterations. @@ -46,8 +46,8 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.52837e-13, 1.08876e-13, 0, 6.93183e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.93183e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.52836e-13, 2.68927e-16, 0, 6.39428e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 6.39428e-13 Postprocessing: @@ -63,7 +63,7 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000216977, 7.25484e-14, 0, 6.93183e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000216977, 1.75185e-16, 0, 6.39428e-13 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.000216977 Solving temperature system... 0 iterations. @@ -72,8 +72,8 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.2583e-13, 7.25484e-14, 0, 6.93183e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.93183e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.2584e-13, 1.75185e-16, 0, 6.39428e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 6.39428e-13 Postprocessing: @@ -89,7 +89,7 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000120759, 7.25484e-14, 0, 6.93183e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000120759, 1.75185e-16, 0, 6.39428e-13 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.000120759 Solving temperature system... 0 iterations. @@ -98,8 +98,8 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.67559e-13, 7.25484e-14, 0, 6.93183e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.93183e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.6755e-13, 1.75185e-16, 0, 6.39428e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 6.39428e-13 Postprocessing: @@ -115,7 +115,7 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 8.46056e-06, 1.8684e-14, 0, 6.93183e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 8.46056e-06, 9.98459e-17, 0, 6.39428e-13 Relative nonlinear residual (total system) after nonlinear iteration 1: 8.46056e-06 diff --git a/tests/heat_advection_by_melt_operator_splitting/statistics b/tests/heat_advection_by_melt_operator_splitting/statistics index a8f8d6ce5af..06c563ae96a 100644 --- a/tests/heat_advection_by_melt_operator_splitting/statistics +++ b/tests/heat_advection_by_melt_operator_splitting/statistics @@ -21,8 +21,8 @@ # 21: Average shear heating with melt rate (W/kg) # 22: Total shear heating with melt rate (W) # 23: Visualization file name -0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 578 2 0 0 0 26 27 418 1.00000000e+00 1.50000000e+00 2.00000000e+00 1.32520541e-04 1.26582251e-23 2.53164503e-23 2.77322578e-25 5.54645156e-25 output-heat_advection_by_melt_operator_splitting/solution/solution-00000 -1 3.124999999569e-02 3.124999999569e-02 256 2467 1089 578 2 5 0 0 0 0 0 1.00000000e+00 1.49990061e+00 1.99148513e+00 1.32494199e-04 1.26582251e-23 2.53164503e-23 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt_operator_splitting/solution/solution-00001 -2 6.249999999138e-02 3.124999999569e-02 256 2467 1089 578 2 8 0 0 0 0 0 1.00000000e+00 1.49987322e+00 1.98741590e+00 1.32486939e-04 1.26582251e-23 2.53164503e-23 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt_operator_splitting/solution/solution-00002 -3 9.374999998706e-02 3.124999999569e-02 256 2467 1089 578 2 8 0 0 0 0 0 1.00000000e+00 1.49987160e+00 1.98561783e+00 1.32486510e-04 1.26582251e-23 2.53164503e-23 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt_operator_splitting/solution/solution-00003 -4 1.000000000000e-01 6.250000012937e-03 256 2467 1089 578 1 7 0 0 0 0 0 1.00000000e+00 1.49987346e+00 1.98553594e+00 1.32487003e-04 1.26582251e-23 2.53164503e-23 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt_operator_splitting/solution/solution-00004 +0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 578 2 0 0 0 51 53 1010 1.00000000e+00 1.50000000e+00 2.00000000e+00 1.32520541e-04 3.22002693e-31 6.44005386e-31 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt_operator_splitting/solution/solution-00000 +1 3.124999999565e-02 3.124999999565e-02 256 2467 1089 578 2 5 0 0 0 0 0 1.00000000e+00 1.49990061e+00 1.99148513e+00 1.32494199e-04 3.22002693e-31 6.44005386e-31 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt_operator_splitting/solution/solution-00001 +2 6.249999999129e-02 3.124999999565e-02 256 2467 1089 578 2 8 0 0 0 0 0 1.00000000e+00 1.49987322e+00 1.98741590e+00 1.32486939e-04 3.22002693e-31 6.44005386e-31 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt_operator_splitting/solution/solution-00002 +3 9.374999998694e-02 3.124999999565e-02 256 2467 1089 578 2 8 0 0 0 0 0 1.00000000e+00 1.49987160e+00 1.98561783e+00 1.32486510e-04 3.22002693e-31 6.44005386e-31 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt_operator_splitting/solution/solution-00003 +4 1.000000000000e-01 6.250000013065e-03 256 2467 1089 578 1 7 0 0 0 0 0 1.00000000e+00 1.49987346e+00 1.98553594e+00 1.32487003e-04 3.22002693e-31 6.44005386e-31 5.00000000e-02 1.00000000e-01 output-heat_advection_by_melt_operator_splitting/solution/solution-00004 diff --git a/tests/initial_porosity/screen-output b/tests/initial_porosity/screen-output index a7565492be4..1ed932339f4 100644 --- a/tests/initial_porosity/screen-output +++ b/tests/initial_porosity/screen-output @@ -1,85 +1,85 @@ Number of active cells: 192 (on 4 levels) -Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) +Number of degrees of freedom: 5,641 (1,666+801+1,666+225+833+225+225) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+36 iterations. + Solving Stokes system... 0+37 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.87476e-16, 1.20111e-16, 0, 0.956793 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.956793 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.87476e-16, 1.20111e-16, 0, 1 + Relative nonlinear residual (total system) after nonlinear iteration 1: 1 Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+36 iterations. + Solving Stokes system... 0+37 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.13013e-16, 1.20111e-16, 0, 0.752886 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.752886 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.96317e-16, 1.20111e-16, 0, 0.787867 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.787867 Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+35 iterations. + Solving Stokes system... 0+36 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.3936e-16, 1.20111e-16, 0, 0.16311 - Relative nonlinear residual (total system) after nonlinear iteration 3: 0.16311 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.14823e-16, 1.20111e-16, 0, 0.170548 + Relative nonlinear residual (total system) after nonlinear iteration 3: 0.170548 Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+32 iterations. + Solving Stokes system... 0+36 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.21222e-16, 1.20111e-16, 0, 0.025768 - Relative nonlinear residual (total system) after nonlinear iteration 4: 0.025768 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.10575e-16, 1.20111e-16, 0, 0.0267923 + Relative nonlinear residual (total system) after nonlinear iteration 4: 0.0267923 Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+28 iterations. + Solving Stokes system... 0+33 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.24729e-16, 1.20111e-16, 0, 0.00311419 - Relative nonlinear residual (total system) after nonlinear iteration 5: 0.00311419 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.10878e-16, 1.20111e-16, 0, 0.00321055 + Relative nonlinear residual (total system) after nonlinear iteration 5: 0.00321055 Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+25 iterations. + Solving Stokes system... 0+29 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.12646e-16, 1.20111e-16, 0, 0.000303303 - Relative nonlinear residual (total system) after nonlinear iteration 6: 0.000303303 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.25022e-16, 1.20111e-16, 0, 0.000309098 + Relative nonlinear residual (total system) after nonlinear iteration 6: 0.000309098 Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+21 iterations. + Solving Stokes system... 0+25 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.2184e-16, 1.20111e-16, 0, 2.46785e-05 - Relative nonlinear residual (total system) after nonlinear iteration 7: 2.46785e-05 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.15886e-16, 1.20111e-16, 0, 2.47779e-05 + Relative nonlinear residual (total system) after nonlinear iteration 7: 2.47779e-05 Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+17 iterations. + Solving Stokes system... 0+20 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.16234e-16, 1.20111e-16, 0, 1.71537e-06 - Relative nonlinear residual (total system) after nonlinear iteration 8: 1.71537e-06 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.0868e-16, 1.20111e-16, 0, 1.69039e-06 + Relative nonlinear residual (total system) after nonlinear iteration 8: 1.69039e-06 Postprocessing: Writing graphical output: output-initial_porosity/solution/solution-00000 Compositions min/max/mass: 0/0.2721/8.939e+10 // 0/0/0 - RMS, max velocity: 0.279 m/year, 1.38 m/year + RMS, max velocity: 0.273 m/year, 1.37 m/year Temperature min/avg/max: 293 K, 2136 K, 4200 K Writing depth average: output-initial_porosity/depth_average.gnuplot diff --git a/tests/initial_porosity/statistics b/tests/initial_porosity/statistics index 874c50d9467..6a959ac814a 100644 --- a/tests/initial_porosity/statistics +++ b/tests/initial_porosity/statistics @@ -25,4 +25,4 @@ # 25: Average temperature (K) # 26: Maximal temperature (K) # 27: Average nondimensional temperature (K) -0 0.000000000000e+00 0.000000000000e+00 192 1891 833 450 8 0 0 0 230 1317 714 output-initial_porosity/solution/solution-00000 0.00000000e+00 2.72115500e-01 8.93941934e+10 0.00000000e+00 0.00000000e+00 0.00000000e+00 2.78635426e-01 1.38285314e+00 2.93000000e+02 2.13574874e+03 4.20000000e+03 5.40871366e-01 +0 0.000000000000e+00 0.000000000000e+00 192 1891 833 450 8 0 0 0 253 261 2055 output-initial_porosity/solution/solution-00000 0.00000000e+00 2.72115500e-01 8.93941934e+10 0.00000000e+00 0.00000000e+00 0.00000000e+00 2.73442110e-01 1.36988738e+00 2.93000000e+02 2.13574874e+03 4.20000000e+03 5.40871366e-01 diff --git a/tests/latent_heat_melt_transport/screen-output b/tests/latent_heat_melt_transport/screen-output index e784e36f9ab..5c7dfb144db 100644 --- a/tests/latent_heat_melt_transport/screen-output +++ b/tests/latent_heat_melt_transport/screen-output @@ -1,18 +1,16 @@ ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ Number of active cells: 64 (on 4 levels) -Number of degrees of freedom: 2,266 (578+162+578+81+289+289+289) +Number of degrees of freedom: 2,377 (578+273+578+81+289+289+289) *** Timestep 0: t=0 seconds Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Solving peridotite system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 4+0 iterations. + Solving Stokes system... 3+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.83933e-16, 1.60089e-16, 1.50592e-16, 0.00012165 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.00012165 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.83933e-16, 1.60089e-16, 1.50592e-16, 1 + Relative nonlinear residual (total system) after nonlinear iteration 1: 1 Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. @@ -20,155 +18,119 @@ Number of degrees of freedom: 2,266 (578+162+578+81+289+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.83933e-16, 1.60089e-16, 1.50592e-16, 8.25373e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 8.25373e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.83933e-16, 1.60089e-16, 1.50592e-16, 8.607e-09 + Relative nonlinear residual (total system) after nonlinear iteration 2: 8.607e-09 Postprocessing: Temperature min/avg/max: 1000 K, 1000 K, 1000 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00000 -*** Timestep 1: t=2.71943e+15 seconds - Solving composition reactions in 6 substep(s). +*** Timestep 1: t=2.91535e+15 seconds + Solving composition reactions in 7 substep(s). Solving temperature system... 14 iterations. - Solving porosity system ... 15 iterations. - Solving peridotite system ... 15 iterations. + Solving porosity system ... 16 iterations. + Solving peridotite system ... 16 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 4+0 iterations. + Solving Stokes system... 3+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0157704, 0.202252, 0.287335, 4.07009e-05 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.287335 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0170218, 0.214221, 0.306263, 3.74341e-05 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.306263 Solving temperature system... 11 iterations. Solving porosity system ... 13 iterations. Solving peridotite system ... 13 iterations. Rebuilding Stokes preconditioner... + Solving Stokes system... 2+0 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.2823e-05, 0.00377455, 0.00327528, 6.75392e-07 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00377455 + + Solving temperature system... 9 iterations. + Solving porosity system ... 11 iterations. + Solving peridotite system ... 11 iterations. + Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 5.74733e-05, 0.00333078, 0.00285853, 6.521e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00333078 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.55851e-06, 6.62799e-05, 4.53644e-05, 7.17453e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 6.62799e-05 - Solving temperature system... 4 iterations. + Solving temperature system... 2 iterations. Solving porosity system ... 0 iterations. Solving peridotite system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.17855e-10, 2.21049e-13, 2.02983e-13, 6.521e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 6.521e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.61252e-12, 3.46747e-13, 2.21942e-13, 7.17453e-08 + Relative nonlinear residual (total system) after nonlinear iteration 4: 7.17453e-08 Postprocessing: - Temperature min/avg/max: 992.8 K, 1002 K, 1029 K + Temperature min/avg/max: 992.4 K, 1002 K, 1028 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00001 -*** Timestep 2: t=5.09261e+15 seconds - Solving composition reactions in 5 substep(s). +*** Timestep 2: t=5.59345e+15 seconds + Solving composition reactions in 6 substep(s). Solving temperature system... 10 iterations. - Solving porosity system ... 13 iterations. + Solving porosity system ... 14 iterations. Solving peridotite system ... 11 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 3+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0106465, 0.153952, 0.169123, 5.68603e-07 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.169123 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0121736, 0.171423, 0.185269, 9.70795e-06 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.185269 Solving temperature system... 7 iterations. - Solving porosity system ... 10 iterations. - Solving peridotite system ... 8 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+0 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.15305e-05, 0.00119093, 0.000385616, 4.95704e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00119093 - - Solving temperature system... 2 iterations. - Solving porosity system ... 9 iterations. - Solving peridotite system ... 0 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+0 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.85264e-11, 0.000150865, 6.43797e-13, 4.95757e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 0.000150865 - - Solving temperature system... 0 iterations. - Solving porosity system ... 9 iterations. - Solving peridotite system ... 0 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+0 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.57717e-13, 0.000150865, 6.43797e-13, 4.95704e-08 - Relative nonlinear residual (total system) after nonlinear iteration 4: 0.000150865 - - Solving temperature system... 0 iterations. - Solving porosity system ... 9 iterations. - Solving peridotite system ... 0 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+0 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.24683e-13, 0.000150865, 6.43797e-13, 4.95757e-08 - Relative nonlinear residual (total system) after nonlinear iteration 5: 0.000150865 - - Solving temperature system... 0 iterations. - Solving porosity system ... 9 iterations. - Solving peridotite system ... 0 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+0 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.57717e-13, 0.000150865, 6.43797e-13, 4.95704e-08 - Relative nonlinear residual (total system) after nonlinear iteration 6: 0.000150865 - - Solving temperature system... 0 iterations. - Solving porosity system ... 9 iterations. - Solving peridotite system ... 0 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+0 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.24679e-13, 0.000150865, 6.43797e-13, 4.95757e-08 - Relative nonlinear residual (total system) after nonlinear iteration 7: 0.000150865 - - Solving temperature system... 0 iterations. - Solving porosity system ... 9 iterations. - Solving peridotite system ... 0 iterations. + Solving porosity system ... 11 iterations. + Solving peridotite system ... 9 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+0 iterations. + Solving Stokes system... 2+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.57717e-13, 0.000150865, 6.43797e-13, 4.95704e-08 - Relative nonlinear residual (total system) after nonlinear iteration 8: 0.000150865 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.49203e-05, 0.00088514, 0.000403064, 1.04744e-07 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00088514 - Solving temperature system... 0 iterations. + Solving temperature system... 6 iterations. Solving porosity system ... 9 iterations. - Solving peridotite system ... 0 iterations. + Solving peridotite system ... 7 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.24678e-13, 0.000150865, 6.43797e-13, 4.95757e-08 - Relative nonlinear residual (total system) after nonlinear iteration 9: 0.000150865 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.44766e-06, 2.64247e-05, 1.3975e-05, 1.11805e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 2.64247e-05 - Solving temperature system... 0 iterations. - Solving porosity system ... 9 iterations. + Solving temperature system... 1 iterations. + Solving porosity system ... 0 iterations. Solving peridotite system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.57718e-13, 0.000150865, 6.43797e-13, 4.95704e-08 - Relative nonlinear residual (total system) after nonlinear iteration 10: 0.000150865 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.09882e-12, 4.70556e-13, 8.17777e-13, 1.11805e-08 + Relative nonlinear residual (total system) after nonlinear iteration 4: 1.11805e-08 Postprocessing: - Temperature min/avg/max: 994.6 K, 1013 K, 1059 K + Temperature min/avg/max: 994.6 K, 1014 K, 1060 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00002 -*** Timestep 3: t=7.46743e+15 seconds - Solving composition reactions in 5 substep(s). - Solving temperature system... 9 iterations. +*** Timestep 3: t=8.24462e+15 seconds + Solving composition reactions in 6 substep(s). + Solving temperature system... 10 iterations. Solving porosity system ... 13 iterations. - Solving peridotite system ... 10 iterations. + Solving peridotite system ... 11 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 3+0 iterations. + Solving Stokes system... 2+0 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0182446, 0.159057, 0.130442, 7.07855e-06 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.159057 + + Solving temperature system... 7 iterations. + Solving porosity system ... 10 iterations. + Solving peridotite system ... 8 iterations. + Rebuilding Stokes preconditioner... + Solving Stokes system... 2+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0158, 0.146628, 0.121853, 5.70499e-07 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.146628 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.9608e-05, 0.000374071, 0.000131863, 1.09123e-07 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000374071 Solving temperature system... 7 iterations. Solving porosity system ... 10 iterations. @@ -176,8 +138,8 @@ Number of degrees of freedom: 2,266 (578+162+578+81+289+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.83446e-05, 0.00069149, 0.000227682, 3.19364e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00069149 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.92571e-05, 0.000194041, 0.000116144, 2.74277e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 0.000194041 Solving temperature system... 2 iterations. Solving porosity system ... 0 iterations. @@ -185,33 +147,33 @@ Number of degrees of freedom: 2,266 (578+162+578+81+289+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.49165e-11, 1.72495e-13, 1.76597e-13, 3.19364e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 3.19364e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.47952e-11, 4.19992e-13, 1.85264e-13, 2.74277e-08 + Relative nonlinear residual (total system) after nonlinear iteration 4: 2.74277e-08 Postprocessing: - Temperature min/avg/max: 998.4 K, 1025 K, 1108 K + Temperature min/avg/max: 998.6 K, 1028 K, 1114 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00003 -*** Timestep 4: t=9.93689e+15 seconds +*** Timestep 4: t=1.0936e+16 seconds Solving composition reactions in 6 substep(s). Solving temperature system... 10 iterations. Solving porosity system ... 13 iterations. Solving peridotite system ... 10 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 2+0 iterations. + Solving Stokes system... 3+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0215283, 0.140694, 0.111351, 5.17652e-07 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.140694 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0244509, 0.148956, 0.118441, 6.20975e-06 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.148956 Solving temperature system... 7 iterations. - Solving porosity system ... 9 iterations. - Solving peridotite system ... 7 iterations. + Solving porosity system ... 10 iterations. + Solving peridotite system ... 8 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.12146e-05, 0.000429778, 0.000104882, 7.80619e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000429778 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.91901e-05, 0.000406862, 0.00013188, 6.27379e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000406862 Solving temperature system... 2 iterations. Solving porosity system ... 0 iterations. @@ -219,33 +181,33 @@ Number of degrees of freedom: 2,266 (578+162+578+81+289+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.9472e-11, 8.86923e-13, 9.5304e-13, 7.80619e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 7.80619e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.7375e-11, 2.67686e-13, 1.0851e-13, 6.27379e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 6.27379e-08 Postprocessing: - Temperature min/avg/max: 1000 K, 1038 K, 1145 K + Temperature min/avg/max: 1000 K, 1043 K, 1160 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00004 -*** Timestep 5: t=1.2409e+16 seconds +*** Timestep 5: t=1.36411e+16 seconds Solving composition reactions in 6 substep(s). - Solving temperature system... 10 iterations. + Solving temperature system... 11 iterations. Solving porosity system ... 13 iterations. - Solving peridotite system ... 10 iterations. + Solving peridotite system ... 11 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 2+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0265754, 0.131375, 0.1075, 2.85058e-07 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.131375 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0303423, 0.140539, 0.116831, 3.88638e-06 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.140539 - Solving temperature system... 7 iterations. + Solving temperature system... 8 iterations. Solving porosity system ... 10 iterations. Solving peridotite system ... 8 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.78108e-05, 0.000413931, 9.61328e-05, 7.86243e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000413931 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.67309e-05, 0.00034251, 7.5718e-05, 8.46283e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00034251 Solving temperature system... 2 iterations. Solving porosity system ... 0 iterations. @@ -253,33 +215,33 @@ Number of degrees of freedom: 2,266 (578+162+578+81+289+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.53253e-11, 1.28636e-13, 1.05809e-13, 7.86243e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 7.86243e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.52448e-11, 5.87927e-13, 2.24158e-13, 8.46283e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 8.46283e-08 Postprocessing: - Temperature min/avg/max: 1000 K, 1053 K, 1194 K + Temperature min/avg/max: 1000 K, 1059 K, 1207 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00005 -*** Timestep 6: t=1.49089e+16 seconds +*** Timestep 6: t=1.62763e+16 seconds Solving composition reactions in 6 substep(s). - Solving temperature system... 11 iterations. + Solving temperature system... 12 iterations. Solving porosity system ... 13 iterations. Solving peridotite system ... 12 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 1+0 iterations. + Solving Stokes system... 2+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0310817, 0.127938, 0.111925, 1.17784e-07 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.127938 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0336473, 0.132075, 0.119095, 1.22545e-06 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.132075 Solving temperature system... 8 iterations. Solving porosity system ... 10 iterations. - Solving peridotite system ... 8 iterations. + Solving peridotite system ... 9 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.15932e-05, 0.000280216, 9.14226e-05, 9.48017e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000280216 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.94798e-05, 0.00031973, 8.61664e-05, 6.4222e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00031973 Solving temperature system... 2 iterations. Solving porosity system ... 0 iterations. @@ -287,33 +249,33 @@ Number of degrees of freedom: 2,266 (578+162+578+81+289+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.19829e-11, 3.52099e-13, 8.04577e-13, 9.48017e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 9.48017e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.10703e-11, 4.23752e-13, 2.69589e-13, 6.4222e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 6.4222e-08 Postprocessing: - Temperature min/avg/max: 999.9 K, 1069 K, 1226 K + Temperature min/avg/max: 1000 K, 1077 K, 1237 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00006 -*** Timestep 7: t=1.73905e+16 seconds +*** Timestep 7: t=1.88749e+16 seconds Solving composition reactions in 6 substep(s). Solving temperature system... 12 iterations. Solving porosity system ... 13 iterations. Solving peridotite system ... 12 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 1+0 iterations. + Solving Stokes system... 2+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0328731, 0.124507, 0.116754, 1.86177e-07 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.124507 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0349415, 0.128161, 0.12226, 6.13849e-07 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.128161 Solving temperature system... 8 iterations. Solving porosity system ... 10 iterations. - Solving peridotite system ... 9 iterations. + Solving peridotite system ... 8 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 5.22478e-05, 0.000377139, 0.000208053, 8.57442e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000377139 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.63044e-05, 0.000147362, 5.63767e-05, 3.19132e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000147362 Solving temperature system... 2 iterations. Solving porosity system ... 0 iterations. @@ -321,58 +283,58 @@ Number of degrees of freedom: 2,266 (578+162+578+81+289+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.64027e-11, 2.62353e-13, 3.70054e-13, 8.57442e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 8.57442e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.43104e-11, 1.97541e-13, 7.42799e-13, 3.19132e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 3.19132e-08 Postprocessing: - Temperature min/avg/max: 999.8 K, 1086 K, 1256 K + Temperature min/avg/max: 999.8 K, 1094 K, 1272 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00007 -*** Timestep 8: t=1.98668e+16 seconds +*** Timestep 8: t=2.1452e+16 seconds Solving composition reactions in 6 substep(s). Solving temperature system... 11 iterations. Solving porosity system ... 13 iterations. - Solving peridotite system ... 11 iterations. + Solving peridotite system ... 12 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 1+0 iterations. + Solving Stokes system... 2+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0340574, 0.12211, 0.119343, 1.03766e-07 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.12211 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0353185, 0.126487, 0.122413, 1.75934e-07 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.126487 - Solving temperature system... 8 iterations. - Solving porosity system ... 10 iterations. + Solving temperature system... 7 iterations. + Solving porosity system ... 9 iterations. Solving peridotite system ... 8 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.21764e-05, 0.000480787, 9.43485e-05, 5.85411e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000480787 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 5.7195e-06, 6.46208e-05, 2.03842e-05, 2.01367e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 6.46208e-05 - Solving temperature system... 2 iterations. + Solving temperature system... 1 iterations. Solving porosity system ... 0 iterations. Solving peridotite system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.1863e-11, 7.34428e-13, 2.4691e-13, 5.85411e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 5.85411e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 5.16557e-12, 7.98324e-13, 3.58024e-13, 2.01367e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 2.01367e-08 Postprocessing: - Temperature min/avg/max: 999.7 K, 1101 K, 1282 K + Temperature min/avg/max: 999.5 K, 1109 K, 1300 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00008 -*** Timestep 9: t=2.23646e+16 seconds +*** Timestep 9: t=2.40201e+16 seconds Solving composition reactions in 6 substep(s). Solving temperature system... 11 iterations. Solving porosity system ... 13 iterations. - Solving peridotite system ... 11 iterations. + Solving peridotite system ... 12 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0344966, 0.122647, 0.118926, 5.88551e-08 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.122647 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0349026, 0.125929, 0.122781, 6.63679e-08 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.125929 Solving temperature system... 4 iterations. Solving porosity system ... 0 iterations. @@ -380,15 +342,15 @@ Number of degrees of freedom: 2,266 (578+162+578+81+289+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.9906e-09, 7.12553e-13, 8.6673e-13, 5.88551e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 5.88551e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 6.59821e-09, 3.92478e-13, 5.3184e-13, 6.63679e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 6.63679e-08 Postprocessing: - Temperature min/avg/max: 999.5 K, 1115 K, 1310 K + Temperature min/avg/max: 999.3 K, 1122 K, 1322 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00009 -*** Timestep 10: t=2.48407e+16 seconds +*** Timestep 10: t=2.6582e+16 seconds Solving composition reactions in 6 substep(s). Solving temperature system... 11 iterations. Solving porosity system ... 13 iterations. @@ -396,8 +358,8 @@ Number of degrees of freedom: 2,266 (578+162+578+81+289+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0334535, 0.121664, 0.11794, 6.41088e-08 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.121664 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0336158, 0.125585, 0.122928, 9.5879e-08 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.125585 Solving temperature system... 4 iterations. Solving porosity system ... 0 iterations. @@ -405,197 +367,208 @@ Number of degrees of freedom: 2,266 (578+162+578+81+289+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 5.54194e-09, 5.90844e-13, 2.51528e-13, 6.41088e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.41088e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.88156e-09, 3.90904e-13, 9.12329e-13, 9.5879e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 9.5879e-08 Postprocessing: - Temperature min/avg/max: 999.3 K, 1127 K, 1327 K + Temperature min/avg/max: 999.3 K, 1132 K, 1332 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00010 -*** Timestep 11: t=2.73135e+16 seconds +*** Timestep 11: t=2.91431e+16 seconds Solving composition reactions in 6 substep(s). - Solving temperature system... 11 iterations. + Solving temperature system... 12 iterations. Solving porosity system ... 13 iterations. Solving peridotite system ... 12 iterations. Rebuilding Stokes preconditioner... + Solving Stokes system... 2+0 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0318664, 0.125674, 0.123422, 2.45767e-07 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.125674 + + Solving temperature system... 7 iterations. + Solving porosity system ... 9 iterations. + Solving peridotite system ... 8 iterations. + Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0320047, 0.121598, 0.11908, 6.85182e-08 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.121598 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.19228e-06, 3.42314e-05, 9.42073e-06, 2.79598e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 3.42314e-05 - Solving temperature system... 4 iterations. + Solving temperature system... 1 iterations. Solving porosity system ... 0 iterations. Solving peridotite system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.44314e-09, 7.78205e-13, 6.10926e-13, 6.85182e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.85182e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.05832e-12, 6.32505e-13, 1.65217e-13, 2.79598e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 2.79598e-08 Postprocessing: - Temperature min/avg/max: 999.4 K, 1136 K, 1334 K + Temperature min/avg/max: 999.4 K, 1139 K, 1343 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00011 -*** Timestep 12: t=2.97916e+16 seconds +*** Timestep 12: t=3.17064e+16 seconds Solving composition reactions in 6 substep(s). Solving temperature system... 12 iterations. - Solving porosity system ... 14 iterations. - Solving peridotite system ... 12 iterations. + Solving porosity system ... 13 iterations. + Solving peridotite system ... 13 iterations. + Rebuilding Stokes preconditioner... + Solving Stokes system... 2+0 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0303099, 0.126271, 0.124178, 3.64171e-07 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.126271 + + Solving temperature system... 8 iterations. + Solving porosity system ... 9 iterations. + Solving peridotite system ... 8 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0302932, 0.122162, 0.120184, 7.92952e-08 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.122162 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.09392e-06, 5.685e-05, 1.76179e-05, 6.6809e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 5.685e-05 - Solving temperature system... 5 iterations. + Solving temperature system... 1 iterations. Solving porosity system ... 0 iterations. Solving peridotite system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 5.07206e-09, 1.69613e-13, 2.80429e-13, 7.92952e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 7.92952e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.8355e-12, 8.08778e-13, 9.71432e-13, 6.6809e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 6.6809e-08 Postprocessing: - Temperature min/avg/max: 999.5 K, 1142 K, 1346 K + Temperature min/avg/max: 999.5 K, 1144 K, 1354 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00012 -*** Timestep 13: t=3.22771e+16 seconds +*** Timestep 13: t=3.42718e+16 seconds Solving composition reactions in 6 substep(s). Solving temperature system... 12 iterations. - Solving porosity system ... 14 iterations. + Solving porosity system ... 13 iterations. Solving peridotite system ... 13 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 1+0 iterations. + Solving Stokes system... 2+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0289639, 0.123183, 0.120836, 1.02967e-07 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.123183 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0292198, 0.12701, 0.125123, 3.36189e-07 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.12701 - Solving temperature system... 8 iterations. - Solving porosity system ... 10 iterations. - Solving peridotite system ... 9 iterations. + Solving temperature system... 7 iterations. + Solving porosity system ... 9 iterations. + Solving peridotite system ... 8 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.1335e-05, 9.24963e-05, 5.07994e-05, 2.85579e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 9.24963e-05 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 5.36874e-07, 3.54691e-05, 2.26164e-06, 2.53544e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 3.54691e-05 - Solving temperature system... 1 iterations. + Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Solving peridotite system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.9629e-12, 2.68297e-13, 1.88083e-13, 2.85579e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 2.85579e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 6.13078e-13, 4.69284e-13, 1.38699e-13, 2.53544e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 2.53544e-08 Postprocessing: - Temperature min/avg/max: 999.5 K, 1146 K, 1357 K + Temperature min/avg/max: 999.6 K, 1147 K, 1362 K Writing graphical output: output-latent_heat_melt_transport/solution/solution-00013 -*** Timestep 14: t=3.47779e+16 seconds +*** Timestep 14: t=3.68419e+16 seconds Solving composition reactions in 6 substep(s). Solving temperature system... 13 iterations. - Solving porosity system ... 14 iterations. + Solving porosity system ... 13 iterations. Solving peridotite system ... 13 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+0 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0282317, 0.124411, 0.122084, 2.76471e-08 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.124411 - - Solving temperature system... 5 iterations. - Solving porosity system ... 0 iterations. - Solving peridotite system ... 0 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+0 iterations. + Solving Stokes system... 2+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.83331e-09, 2.36708e-13, 1.74326e-13, 2.76471e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 2.76471e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0286693, 0.127548, 0.125858, 1.1362e-07 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.127548 - - Postprocessing: - Temperature min/avg/max: 999.5 K, 1148 K, 1363 K - Writing graphical output: output-latent_heat_melt_transport/solution/solution-00014 - -*** Timestep 15: t=3.7287e+16 seconds - Solving composition reactions in 6 substep(s). - Solving temperature system... 13 iterations. - Solving porosity system ... 14 iterations. - Solving peridotite system ... 12 iterations. + Solving temperature system... 7 iterations. + Solving porosity system ... 9 iterations. + Solving peridotite system ... 8 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0278567, 0.124961, 0.122629, 2.47595e-08 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.124961 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.88113e-06, 2.02896e-05, 8.20873e-06, 1.7716e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 2.02896e-05 - Solving temperature system... 5 iterations. + Solving temperature system... 1 iterations. Solving porosity system ... 0 iterations. Solving peridotite system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.70018e-09, 2.40399e-13, 9.21756e-13, 2.47595e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 2.47595e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.1068e-12, 2.19678e-13, 3.7868e-13, 1.7716e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 1.7716e-08 Postprocessing: - Temperature min/avg/max: 999.6 K, 1149 K, 1365 K - Writing graphical output: output-latent_heat_melt_transport/solution/solution-00015 + Temperature min/avg/max: 999.7 K, 1148 K, 1365 K + Writing graphical output: output-latent_heat_melt_transport/solution/solution-00014 -*** Timestep 16: t=3.97946e+16 seconds +*** Timestep 15: t=3.94154e+16 seconds Solving composition reactions in 6 substep(s). Solving temperature system... 13 iterations. - Solving porosity system ... 14 iterations. - Solving peridotite system ... 12 iterations. + Solving porosity system ... 13 iterations. + Solving peridotite system ... 13 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+0 iterations. + Solving Stokes system... 2+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0275963, 0.124973, 0.122318, 2.48132e-08 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.124973 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0284246, 0.127579, 0.12623, 1.89039e-07 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.127579 - Solving temperature system... 5 iterations. - Solving porosity system ... 0 iterations. - Solving peridotite system ... 0 iterations. + Solving temperature system... 7 iterations. + Solving porosity system ... 9 iterations. + Solving peridotite system ... 8 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 6.80177e-09, 2.47966e-13, 5.3151e-13, 2.48132e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 2.48132e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.30031e-06, 9.11187e-06, 5.81184e-06, 2.56813e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 9.11187e-06 Postprocessing: - Temperature min/avg/max: 999.5 K, 1149 K, 1369 K - Writing graphical output: output-latent_heat_melt_transport/solution/solution-00016 + Temperature min/avg/max: 999.6 K, 1149 K, 1368 K + Writing graphical output: output-latent_heat_melt_transport/solution/solution-00015 -*** Timestep 17: t=4e+16 seconds +*** Timestep 16: t=4e+16 seconds Solving composition reactions in 1 substep(s). Solving temperature system... 9 iterations. - Solving porosity system ... 9 iterations. - Solving peridotite system ... 9 iterations. + Solving porosity system ... 10 iterations. + Solving peridotite system ... 10 iterations. + Rebuilding Stokes preconditioner... + Solving Stokes system... 3+0 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.00630933, 0.0288966, 0.0281467, 4.01579e-06 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0288966 + + Solving temperature system... 6 iterations. + Solving porosity system ... 8 iterations. + Solving peridotite system ... 7 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.00220921, 0.00996469, 0.00976516, 6.41008e-08 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.00996469 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.15027e-06, 9.5241e-05, 1.29482e-05, 1.9929e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 9.5241e-05 - Solving temperature system... 2 iterations. + Solving temperature system... 1 iterations. Solving porosity system ... 0 iterations. Solving peridotite system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 5.50164e-11, 3.07468e-13, 7.41705e-13, 6.41008e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.41008e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.54673e-12, 2.28053e-13, 2.31187e-13, 1.9929e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 1.9929e-08 Postprocessing: - Temperature min/avg/max: 999.5 K, 1150 K, 1370 K - Writing graphical output: output-latent_heat_melt_transport/solution/solution-00017 + Temperature min/avg/max: 999.6 K, 1153 K, 1369 K + Writing graphical output: output-latent_heat_melt_transport/solution/solution-00016 Termination requested by criterion: end time diff --git a/tests/latent_heat_melt_transport/statistics b/tests/latent_heat_melt_transport/statistics index dadb6870d7c..62dd1e9eaf1 100644 --- a/tests/latent_heat_melt_transport/statistics +++ b/tests/latent_heat_melt_transport/statistics @@ -16,21 +16,20 @@ # 16: Average temperature (K) # 17: Maximal temperature (K) # 18: Visualization file name - 0 0.000000000000e+00 0.000000000000e+00 64 659 289 578 2 0 0 0 4 5 25 1.00000000e+03 1.00000000e+03 1.00000000e+03 output-latent_heat_melt_transport/solution/solution-00000 - 1 2.719433828521e+15 2.719433828521e+15 64 659 289 578 3 29 28 28 4 5 40 9.92792597e+02 1.00201149e+03 1.02875484e+03 output-latent_heat_melt_transport/solution/solution-00001 - 2 5.092613579857e+15 2.373179751335e+15 64 659 289 578 10 19 95 19 3 4 30 9.94626164e+02 1.01276048e+03 1.05873010e+03 output-latent_heat_melt_transport/solution/solution-00002 - 3 7.467431015440e+15 2.374817435584e+15 64 659 289 578 3 18 23 18 3 4 31 9.98440599e+02 1.02493210e+03 1.10808471e+03 output-latent_heat_melt_transport/solution/solution-00003 - 4 9.936893138691e+15 2.469462123250e+15 64 659 289 578 3 19 22 17 2 3 23 9.99997193e+02 1.03806103e+03 1.14514805e+03 output-latent_heat_melt_transport/solution/solution-00004 - 5 1.240899268115e+16 2.472099542460e+15 64 659 289 578 3 19 23 18 2 3 24 9.99954967e+02 1.05305749e+03 1.19440723e+03 output-latent_heat_melt_transport/solution/solution-00005 - 6 1.490890519320e+16 2.499912512051e+15 64 659 289 578 3 21 23 20 1 2 16 9.99884624e+02 1.06934746e+03 1.22632116e+03 output-latent_heat_melt_transport/solution/solution-00006 - 7 1.739046190063e+16 2.481556707433e+15 64 659 289 578 3 22 23 21 1 2 16 9.99816236e+02 1.08564262e+03 1.25611938e+03 output-latent_heat_melt_transport/solution/solution-00007 - 8 1.986681136221e+16 2.476349461572e+15 64 659 289 578 3 21 23 19 1 2 15 9.99717931e+02 1.10114583e+03 1.28177881e+03 output-latent_heat_melt_transport/solution/solution-00008 - 9 2.236457421161e+16 2.497762849403e+15 64 659 289 578 2 15 13 11 0 0 0 9.99450044e+02 1.11511974e+03 1.31021321e+03 output-latent_heat_melt_transport/solution/solution-00009 -10 2.484074994575e+16 2.476175734144e+15 64 659 289 578 2 15 13 12 0 0 0 9.99336957e+02 1.12679285e+03 1.32652443e+03 output-latent_heat_melt_transport/solution/solution-00010 -11 2.731352670597e+16 2.472776760211e+15 64 659 289 578 2 15 13 12 0 0 0 9.99354320e+02 1.13562511e+03 1.33405328e+03 output-latent_heat_melt_transport/solution/solution-00011 -12 2.979163337114e+16 2.478106665174e+15 64 659 289 578 2 17 14 12 0 0 0 9.99460437e+02 1.14177422e+03 1.34627074e+03 output-latent_heat_melt_transport/solution/solution-00012 -13 3.227712497488e+16 2.485491603746e+15 64 659 289 578 3 21 24 22 1 2 15 9.99529724e+02 1.14569937e+03 1.35734894e+03 output-latent_heat_melt_transport/solution/solution-00013 -14 3.477785051940e+16 2.500725544515e+15 64 659 289 578 2 18 14 13 0 0 0 9.99530961e+02 1.14788850e+03 1.36348747e+03 output-latent_heat_melt_transport/solution/solution-00014 -15 3.728695395305e+16 2.509103433646e+15 64 659 289 578 2 18 14 12 0 0 0 9.99574718e+02 1.14890138e+03 1.36538897e+03 output-latent_heat_melt_transport/solution/solution-00015 -16 3.979459198890e+16 2.507638035853e+15 64 659 289 578 2 18 14 12 0 0 0 9.99512673e+02 1.14921148e+03 1.36930323e+03 output-latent_heat_melt_transport/solution/solution-00016 -17 4.000000000000e+16 2.054080111006e+14 64 659 289 578 2 11 9 9 0 0 0 9.99487165e+02 1.15046136e+03 1.36965806e+03 output-latent_heat_melt_transport/solution/solution-00017 + 0 0.000000000000e+00 0.000000000000e+00 64 659 289 578 2 0 0 0 3 4 27 1.00000000e+03 1.00000000e+03 1.00000000e+03 output-latent_heat_melt_transport/solution/solution-00000 + 1 2.915345909288e+15 2.915345909288e+15 64 659 289 578 4 36 40 40 5 7 94 9.92371627e+02 1.00204689e+03 1.02835088e+03 output-latent_heat_melt_transport/solution/solution-00001 + 2 5.593452994168e+15 2.678107084880e+15 64 659 289 578 4 24 34 27 5 7 98 9.94552003e+02 1.01418259e+03 1.06034969e+03 output-latent_heat_melt_transport/solution/solution-00002 + 3 8.244618156607e+15 2.651165162439e+15 64 659 289 578 4 26 33 27 4 6 85 9.98593958e+02 1.02780416e+03 1.11391464e+03 output-latent_heat_melt_transport/solution/solution-00003 + 4 1.093599615286e+16 2.691377996257e+15 64 659 289 578 3 19 23 18 3 4 53 1.00000000e+03 1.04275637e+03 1.15999028e+03 output-latent_heat_melt_transport/solution/solution-00004 + 5 1.364107778207e+16 2.705081629211e+15 64 659 289 578 3 21 23 19 2 3 40 9.99997627e+02 1.05946106e+03 1.20713617e+03 output-latent_heat_melt_transport/solution/solution-00005 + 6 1.627634937686e+16 2.635271594788e+15 64 659 289 578 3 22 23 21 2 3 40 9.99970686e+02 1.07688487e+03 1.23745747e+03 output-latent_heat_melt_transport/solution/solution-00006 + 7 1.887486096396e+16 2.598511587097e+15 64 659 289 578 3 22 23 20 2 3 38 9.99798983e+02 1.09354680e+03 1.27217298e+03 output-latent_heat_melt_transport/solution/solution-00007 + 8 2.145197429373e+16 2.577113329770e+15 64 659 289 578 3 19 22 20 2 3 41 9.99493437e+02 1.10880837e+03 1.29959998e+03 output-latent_heat_melt_transport/solution/solution-00008 + 9 2.402007952143e+16 2.568105227705e+15 64 659 289 578 2 15 13 12 0 0 0 9.99335008e+02 1.12180346e+03 1.32167705e+03 output-latent_heat_melt_transport/solution/solution-00009 +10 2.658197397722e+16 2.561894455784e+15 64 659 289 578 2 15 13 12 0 0 0 9.99317280e+02 1.13198389e+03 1.33159076e+03 output-latent_heat_melt_transport/solution/solution-00010 +11 2.914308346774e+16 2.561109490518e+15 64 659 289 578 3 20 22 20 2 3 41 9.99400270e+02 1.13932343e+03 1.34328566e+03 output-latent_heat_melt_transport/solution/solution-00011 +12 3.170641503309e+16 2.563331565351e+15 64 659 289 578 3 21 22 21 2 3 41 9.99529737e+02 1.14416192e+03 1.35393630e+03 output-latent_heat_melt_transport/solution/solution-00012 +13 3.427179315064e+16 2.565378117548e+15 64 659 289 578 3 19 22 21 2 3 38 9.99567124e+02 1.14700937e+03 1.36226676e+03 output-latent_heat_melt_transport/solution/solution-00013 +14 3.684186515627e+16 2.570072005632e+15 64 659 289 578 3 21 22 21 2 3 39 9.99651992e+02 1.14840319e+03 1.36495911e+03 output-latent_heat_melt_transport/solution/solution-00014 +15 3.941536343259e+16 2.573498276319e+15 64 659 289 578 2 20 22 21 2 3 37 9.99627639e+02 1.14888714e+03 1.36829831e+03 output-latent_heat_melt_transport/solution/solution-00015 +16 4.000000000000e+16 5.846365674144e+14 64 659 289 578 3 16 18 17 3 4 52 9.99578248e+02 1.15258473e+03 1.36942670e+03 output-latent_heat_melt_transport/solution/solution-00016 diff --git a/tests/melt_and_traction/screen-output b/tests/melt_and_traction/screen-output index 70f71d59599..bb2a421e689 100644 --- a/tests/melt_and_traction/screen-output +++ b/tests/melt_and_traction/screen-output @@ -1,23 +1,23 @@ Number of active cells: 256 (on 5 levels) -Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) +Number of degrees of freedom: 7,369 (2,178+1,057+2,178+289+1,089+289+289) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 29+0 iterations. + Solving Stokes system... 34+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.49526e-16, 2.30078e-16, 0, 0.000973208 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.000973208 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.49526e-16, 2.30078e-16, 0, 0.000985426 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.000985426 Postprocessing: Writing graphical output: output-melt_and_traction/solution/solution-00000.0000 Compositions min/max/mass: 0/0.07253/9.981e+08 // 0/0/0 - RMS, max velocity: 1.64e-06 m/year, 1.18e-05 m/year + RMS, max velocity: 4.45e-07 m/year, 3.46e-06 m/year Temperature min/avg/max: 293 K, 1433 K, 1677 K - Mass fluxes through boundary parts: 0 kg/yr, -247.8 kg/yr, 247.5 kg/yr, 0 kg/yr + Mass fluxes through boundary parts: 0 kg/yr, 123.1 kg/yr, -103.7 kg/yr, 0 kg/yr Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. @@ -25,50 +25,50 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.49526e-16, 2.30078e-16, 0, 8.16078e-09 - Relative nonlinear residual (total system) after nonlinear iteration 2: 8.16078e-09 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.49526e-16, 2.30078e-16, 0, 6.96945e-09 + Relative nonlinear residual (total system) after nonlinear iteration 2: 6.96945e-09 Postprocessing: Writing graphical output: output-melt_and_traction/solution/solution-00000.0001 Compositions min/max/mass: 0/0.07253/9.981e+08 // 0/0/0 - RMS, max velocity: 1.64e-06 m/year, 1.18e-05 m/year + RMS, max velocity: 4.45e-07 m/year, 3.46e-06 m/year Temperature min/avg/max: 293 K, 1433 K, 1677 K - Mass fluxes through boundary parts: 0 kg/yr, -247.8 kg/yr, 247.5 kg/yr, 0 kg/yr + Mass fluxes through boundary parts: 0 kg/yr, 123.1 kg/yr, -103.7 kg/yr, 0 kg/yr *** Timestep 1: t=100000 years Solving composition reactions in 50 substep(s). Solving temperature system... 6 iterations. - Solving porosity system ... 3 iterations. + Solving porosity system ... 4 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 9+0 iterations. + Solving Stokes system... 16+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000275547, 0.00601095, 0, 8.46251e-06 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.00601095 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000332076, 0.00611225, 0, 7.99546e-05 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.00611225 Postprocessing: Writing graphical output: output-melt_and_traction/solution/solution-00001.0000 - Compositions min/max/mass: -0.0002387/0.07238/9.981e+08 // 0/0/0 - RMS, max velocity: 1.77e-06 m/year, 1.24e-05 m/year + Compositions min/max/mass: -0.0002054/0.07225/9.981e+08 // 0/0/0 + RMS, max velocity: 1.8e-06 m/year, 1.26e-05 m/year Temperature min/avg/max: 293 K, 1433 K, 1677 K - Mass fluxes through boundary parts: 0 kg/yr, -855.7 kg/yr, 864 kg/yr, 0 kg/yr + Mass fluxes through boundary parts: 0 kg/yr, -941.7 kg/yr, 962.7 kg/yr, 0 kg/yr - Solving temperature system... 3 iterations. + Solving temperature system... 4 iterations. Solving porosity system ... 3 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... Solving Stokes system... 1+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.48399e-08, 2.24917e-05, 0, 1.01794e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 2.24917e-05 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.15686e-07, 0.000224374, 0, 1.13055e-07 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000224374 Postprocessing: Writing graphical output: output-melt_and_traction/solution/solution-00001.0001 - Compositions min/max/mass: -0.0002362/0.07238/9.981e+08 // 0/0/0 - RMS, max velocity: 1.77e-06 m/year, 1.24e-05 m/year + Compositions min/max/mass: -0.0002152/0.07223/9.98e+08 // 0/0/0 + RMS, max velocity: 1.8e-06 m/year, 1.26e-05 m/year Temperature min/avg/max: 293 K, 1433 K, 1677 K - Mass fluxes through boundary parts: 0 kg/yr, -863.9 kg/yr, 860.8 kg/yr, 0 kg/yr + Mass fluxes through boundary parts: 0 kg/yr, -944.9 kg/yr, 955.1 kg/yr, 0 kg/yr Solving temperature system... 2 iterations. Solving porosity system ... 2 iterations. @@ -76,15 +76,15 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 5.49455e-10, 4.76458e-07, 0, 7.77275e-09 - Relative nonlinear residual (total system) after nonlinear iteration 3: 4.76458e-07 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 6.37028e-10, 1.17278e-07, 0, 9.52429e-09 + Relative nonlinear residual (total system) after nonlinear iteration 3: 1.17278e-07 Postprocessing: Writing graphical output: output-melt_and_traction/solution/solution-00001.0002 - Compositions min/max/mass: -0.0002361/0.07238/9.981e+08 // 0/0/0 - RMS, max velocity: 1.77e-06 m/year, 1.24e-05 m/year + Compositions min/max/mass: -0.0002152/0.07223/9.98e+08 // 0/0/0 + RMS, max velocity: 1.8e-06 m/year, 1.26e-05 m/year Temperature min/avg/max: 293 K, 1433 K, 1677 K - Mass fluxes through boundary parts: 0 kg/yr, -863.9 kg/yr, 860.8 kg/yr, 0 kg/yr + Mass fluxes through boundary parts: 0 kg/yr, -944.9 kg/yr, 955.1 kg/yr, 0 kg/yr Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. @@ -92,15 +92,15 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.40287e-13, 4.38313e-14, 0, 7.77275e-09 - Relative nonlinear residual (total system) after nonlinear iteration 4: 7.77275e-09 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.37872e-13, 3.3363e-14, 0, 9.52429e-09 + Relative nonlinear residual (total system) after nonlinear iteration 4: 9.52429e-09 Postprocessing: Writing graphical output: output-melt_and_traction/solution/solution-00001.0003 - Compositions min/max/mass: -0.0002361/0.07238/9.981e+08 // 0/0/0 - RMS, max velocity: 1.77e-06 m/year, 1.24e-05 m/year + Compositions min/max/mass: -0.0002152/0.07223/9.98e+08 // 0/0/0 + RMS, max velocity: 1.8e-06 m/year, 1.26e-05 m/year Temperature min/avg/max: 293 K, 1433 K, 1677 K - Mass fluxes through boundary parts: 0 kg/yr, -863.9 kg/yr, 860.8 kg/yr, 0 kg/yr + Mass fluxes through boundary parts: 0 kg/yr, -944.9 kg/yr, 955.1 kg/yr, 0 kg/yr Termination requested by criterion: end time diff --git a/tests/melt_and_traction/statistics b/tests/melt_and_traction/statistics index 9eae666801c..80f8d28a278 100644 --- a/tests/melt_and_traction/statistics +++ b/tests/melt_and_traction/statistics @@ -29,9 +29,9 @@ # 29: Outward mass flux through boundary with indicator 1 ("right") (kg/yr) # 30: Outward mass flux through boundary with indicator 2 ("bottom") (kg/yr) # 31: Outward mass flux through boundary with indicator 3 ("top") (kg/yr) -0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 578 1 0 0 0 29 30 314 output-melt_and_traction/solution/solution-00000.0000 0.00000000e+00 7.25333529e-02 9.98080758e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.64421060e-06 1.18009143e-05 2.93000000e+02 1.43291774e+03 1.67714044e+03 3.34581080e-01 0.00000000e+00 -2.47775007e+02 2.47508721e+02 0.00000000e+00 -0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 578 1 0 0 0 0 0 0 output-melt_and_traction/solution/solution-00000.0001 0.00000000e+00 7.25333529e-02 9.98080758e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.64421060e-06 1.18009143e-05 2.93000000e+02 1.43291774e+03 1.67714044e+03 3.34581080e-01 0.00000000e+00 -2.47775007e+02 2.47508721e+02 0.00000000e+00 -1 1.000000000000e+05 1.000000000000e+05 256 2467 1089 578 1 6 3 0 9 10 106 output-melt_and_traction/solution/solution-00001.0000 -2.38656826e-04 7.23846821e-02 9.98082546e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.76805162e-06 1.23805460e-05 2.93000000e+02 1.43271395e+03 1.67714044e+03 3.34521266e-01 0.00000000e+00 -8.55669736e+02 8.63977684e+02 0.00000000e+00 -1 1.000000000000e+05 1.000000000000e+05 256 2467 1089 578 1 3 3 0 1 2 22 output-melt_and_traction/solution/solution-00001.0001 -2.36174472e-04 7.23849702e-02 9.98083294e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.76951272e-06 1.23900262e-05 2.93000000e+02 1.43271394e+03 1.67714044e+03 3.34521263e-01 0.00000000e+00 -8.63896068e+02 8.60775842e+02 0.00000000e+00 -1 1.000000000000e+05 1.000000000000e+05 256 2467 1089 578 1 2 2 0 0 0 0 output-melt_and_traction/solution/solution-00001.0002 -2.36070677e-04 7.23849603e-02 9.98082964e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.76951272e-06 1.23900262e-05 2.93000000e+02 1.43271394e+03 1.67714044e+03 3.34521263e-01 0.00000000e+00 -8.63896068e+02 8.60775842e+02 0.00000000e+00 -1 1.000000000000e+05 1.000000000000e+05 256 2467 1089 578 1 0 0 0 0 0 0 output-melt_and_traction/solution/solution-00001.0003 -2.36070677e-04 7.23849603e-02 9.98082964e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.76951272e-06 1.23900262e-05 2.93000000e+02 1.43271394e+03 1.67714044e+03 3.34521263e-01 0.00000000e+00 -8.63896068e+02 8.60775842e+02 0.00000000e+00 +0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 578 1 0 0 0 34 35 520 output-melt_and_traction/solution/solution-00000.0000 0.00000000e+00 7.25333529e-02 9.98080758e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 4.45387118e-07 3.46316241e-06 2.93000000e+02 1.43291774e+03 1.67714044e+03 3.34581080e-01 0.00000000e+00 1.23139523e+02 -1.03720445e+02 0.00000000e+00 +0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 578 1 0 0 0 0 0 0 output-melt_and_traction/solution/solution-00000.0001 0.00000000e+00 7.25333529e-02 9.98080758e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 4.45387118e-07 3.46316241e-06 2.93000000e+02 1.43291774e+03 1.67714044e+03 3.34581080e-01 0.00000000e+00 1.23139523e+02 -1.03720445e+02 0.00000000e+00 +1 1.000000000000e+05 1.000000000000e+05 256 2467 1089 578 1 6 4 0 16 17 249 output-melt_and_traction/solution/solution-00001.0000 -2.05360275e-04 7.22475305e-02 9.98069160e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.80031507e-06 1.26368539e-05 2.93000000e+02 1.43271401e+03 1.67714044e+03 3.34521282e-01 0.00000000e+00 -9.41715457e+02 9.62672815e+02 0.00000000e+00 +1 1.000000000000e+05 1.000000000000e+05 256 2467 1089 578 1 4 3 0 1 2 28 output-melt_and_traction/solution/solution-00001.0001 -2.15176702e-04 7.22281639e-02 9.97996518e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.79867144e-06 1.26341432e-05 2.93000000e+02 1.43271385e+03 1.67714044e+03 3.34521237e-01 0.00000000e+00 -9.44918399e+02 9.55095130e+02 0.00000000e+00 +1 1.000000000000e+05 1.000000000000e+05 256 2467 1089 578 1 2 2 0 0 0 0 output-melt_and_traction/solution/solution-00001.0002 -2.15164576e-04 7.22281682e-02 9.97996537e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.79867144e-06 1.26341432e-05 2.93000000e+02 1.43271385e+03 1.67714044e+03 3.34521237e-01 0.00000000e+00 -9.44918399e+02 9.55095130e+02 0.00000000e+00 +1 1.000000000000e+05 1.000000000000e+05 256 2467 1089 578 1 0 0 0 0 0 0 output-melt_and_traction/solution/solution-00001.0003 -2.15164576e-04 7.22281682e-02 9.97996537e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.79867144e-06 1.26341432e-05 2.93000000e+02 1.43271385e+03 1.67714044e+03 3.34521237e-01 0.00000000e+00 -9.44918399e+02 9.55095130e+02 0.00000000e+00 diff --git a/tests/melt_compressible_advection/screen-output b/tests/melt_compressible_advection/screen-output index c8a54c8b424..0c397f25d07 100644 --- a/tests/melt_compressible_advection/screen-output +++ b/tests/melt_compressible_advection/screen-output @@ -2,7 +2,7 @@ Loading shared library <./libmelt_compressible_advection.so> Number of active cells: 1,024 (on 6 levels) -Number of degrees of freedom: 28,617 (10,628+8,450+1,089+4,225+4,225) +Number of degrees of freedom: 30,600 (12,611+8,450+1,089+4,225+4,225) *** Timestep 0: t=0 seconds Skipping temperature solve because RHS is zero. @@ -15,23 +15,23 @@ Number of degrees of freedom: 28,617 (10,628+8,450+1,089+4,225+4,225) Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Solving Stokes system... done. - Solving for u_f in 13 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.11707e-16, 0.141048 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.141048 + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.11707e-16, 0.39169 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.39169 Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Solving Stokes system... done. - Solving for u_f in 13 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.11707e-16, 0.000754542 - Relative nonlinear residual (total system) after nonlinear iteration 3: 0.000754542 + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.11707e-16, 0.000326394 + Relative nonlinear residual (total system) after nonlinear iteration 3: 0.000326394 Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Solving Stokes system... done. - Solving for u_f in 13 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.11707e-16, 2.13141e-05 - Relative nonlinear residual (total system) after nonlinear iteration 4: 2.13141e-05 + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.11707e-16, 4.00121e-05 + Relative nonlinear residual (total system) after nonlinear iteration 4: 4.00121e-05 Postprocessing: @@ -44,31 +44,31 @@ Number of degrees of freedom: 28,617 (10,628+8,450+1,089+4,225+4,225) Skipping temperature solve because RHS is zero. Solving porosity system ... 11 iterations. Solving Stokes system... done. - Solving for u_f in 13 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.4356e-05, 1.64247e-05 - Relative nonlinear residual (total system) after nonlinear iteration 1: 2.4356e-05 + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.43571e-05, 4.17786e-05 + Relative nonlinear residual (total system) after nonlinear iteration 1: 4.17786e-05 Postprocessing: RMS, max velocity: 0.666 m/s, 1.1 m/s Pressure min/avg/max: -17.99 Pa, -3.368 Pa, 0.4757 Pa Max and min velocity along boundary parts: 1.096 m/s, 0.1035 m/s, 1.096 m/s, 0.1035 m/s, 0.1 m/s, 0.1 m/s, 1.1 m/s, 1.1 m/s - Error porosity_L2: 1.280999e-04 + Error porosity_L2: 1.280986e-04 *** Timestep 2: t=0.025 seconds Skipping temperature solve because RHS is zero. Solving porosity system ... 7 iterations. Solving Stokes system... done. - Solving for u_f in 13 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.26889e-06, 1.71145e-05 - Relative nonlinear residual (total system) after nonlinear iteration 1: 1.71145e-05 + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.26868e-06, 4.59071e-05 + Relative nonlinear residual (total system) after nonlinear iteration 1: 4.59071e-05 Postprocessing: RMS, max velocity: 0.666 m/s, 1.1 m/s Pressure min/avg/max: -17.99 Pa, -3.368 Pa, 0.4757 Pa Max and min velocity along boundary parts: 1.096 m/s, 0.1035 m/s, 1.096 m/s, 0.1035 m/s, 0.1 m/s, 0.1 m/s, 1.1 m/s, 1.1 m/s - Error porosity_L2: 1.408015e-04 + Error porosity_L2: 1.407990e-04 Termination requested by criterion: end time diff --git a/tests/melt_compressible_advection/statistics b/tests/melt_compressible_advection/statistics index d1528eabf31..1a29042409b 100644 --- a/tests/melt_compressible_advection/statistics +++ b/tests/melt_compressible_advection/statistics @@ -21,6 +21,6 @@ # 21: Minimum velocity magnitude on boundary with indicator 2 ("bottom") (m/s) # 22: Maximum velocity magnitude on boundary with indicator 3 ("top") (m/s) # 23: Minimum velocity magnitude on boundary with indicator 3 ("top") (m/s) -0 0.000000000000e+00 0.000000000000e+00 1024 11717 4225 4225 4 0 0 6.65835280e-01 1.09647815e+00 -1.79899928e+01 -3.36763638e+00 4.75713159e-01 1.09647807e+00 1.03521927e-01 1.09647807e+00 1.03521927e-01 1.00000000e-01 1.00000000e-01 1.10000000e+00 1.10000000e+00 -1 1.420454545455e-02 1.420454545455e-02 1024 11717 4225 4225 1 0 11 6.65835280e-01 1.09647815e+00 -1.79899927e+01 -3.36770510e+00 4.75699885e-01 1.09647807e+00 1.03521927e-01 1.09647807e+00 1.03521927e-01 1.00000000e-01 1.00000000e-01 1.10000000e+00 1.10000000e+00 -2 2.500000000000e-02 1.079545454545e-02 1024 11717 4225 4225 1 0 7 6.65835280e-01 1.09647815e+00 -1.79899928e+01 -3.36774791e+00 4.75690907e-01 1.09647807e+00 1.03521927e-01 1.09647807e+00 1.03521927e-01 1.00000000e-01 1.00000000e-01 1.10000000e+00 1.10000000e+00 +0 0.000000000000e+00 0.000000000000e+00 1024 13700 4225 4225 4 0 0 6.65835015e-01 1.09647814e+00 -1.79899721e+01 -3.36765826e+00 4.75694711e-01 1.09647807e+00 1.03521927e-01 1.09647807e+00 1.03521927e-01 1.00000000e-01 1.00000000e-01 1.10000000e+00 1.10000000e+00 +1 1.420454545455e-02 1.420454545455e-02 1024 13700 4225 4225 1 0 11 6.65835016e-01 1.09647814e+00 -1.79899712e+01 -3.36772625e+00 4.75682377e-01 1.09647807e+00 1.03521927e-01 1.09647807e+00 1.03521927e-01 1.00000000e-01 1.00000000e-01 1.10000000e+00 1.10000000e+00 +2 2.500000000000e-02 1.079545454545e-02 1024 13700 4225 4225 1 0 7 6.65835015e-01 1.09647814e+00 -1.79899718e+01 -3.36776957e+00 4.75672931e-01 1.09647807e+00 1.03521927e-01 1.09647807e+00 1.03521927e-01 1.00000000e-01 1.00000000e-01 1.10000000e+00 1.10000000e+00 diff --git a/tests/melt_force_vector/screen-output b/tests/melt_force_vector/screen-output index beee271ae41..69a43ac515e 100644 --- a/tests/melt_force_vector/screen-output +++ b/tests/melt_force_vector/screen-output @@ -1,10 +1,8 @@ ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ Loading shared library <./libmelt_force_vector.so> Number of active cells: 64 (on 4 levels) -Number of degrees of freedom: 1,977 (740+578+81+289+289) +Number of degrees of freedom: 2,088 (851+578+81+289+289) *** Timestep 0: t=0 seconds Skipping temperature solve because RHS is zero. @@ -15,25 +13,25 @@ Number of degrees of freedom: 1,977 (740+578+81+289+289) Postprocessing: Writing graphical output: output-melt_force_vector/solution/solution-00000 RMS, max velocity: 0.999 m/s, 1.3 m/s - Pressure min/avg/max: -0.9567 Pa, -3.107e-07 Pa, 1.749 Pa + Pressure min/avg/max: -0.964 Pa, 0.000703 Pa, 1.733 Pa Max and min velocity along boundary parts: 1.307 m/s, 1.013 m/s, 1.307 m/s, 1.013 m/s, 0.9869 m/s, 0.541 m/s, 0.9869 m/s, 0.541 m/s - Errors h = 3.535534e-01 ndofs= 1977 u_L2= 2.853705e-03 p_L2= 1.230062e+00 p_f_L2= 1.427437e-02 p_c_L= 4.216512e-03 phi_L2= 1.736581e-02 u_f_L2= 4.884622e+02 + Errors h = 3.535534e-01 ndofs= 2088 u_L2= 2.837164e-03 p_L2= 1.217818e+00 p_f_L2= 1.428258e-02 p_c_L= 7.741754e-03 phi_L2= 1.736581e-02 u_f_L2= 3.631819e+02 Number of active cells: 256 (on 5 levels) -Number of degrees of freedom: 7,401 (2,756+2,178+289+1,089+1,089) +Number of degrees of freedom: 7,880 (3,235+2,178+289+1,089+1,089) *** Timestep 0: t=0 seconds Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Solving Stokes system... done. - Solving for u_f in 11 iterations. + Solving for u_f in 12 iterations. Postprocessing: Writing graphical output: output-melt_force_vector/solution/solution-00001 RMS, max velocity: 1 m/s, 1.3 m/s - Pressure min/avg/max: -0.9547 Pa, -7.517e-08 Pa, 1.743 Pa + Pressure min/avg/max: -0.9565 Pa, 9.168e-05 Pa, 1.74 Pa Max and min velocity along boundary parts: 1.307 m/s, 1.006 m/s, 1.307 m/s, 1.006 m/s, 0.9935 m/s, 0.5405 m/s, 0.9935 m/s, 0.5405 m/s - Errors h = 1.767767e-01 ndofs= 7401 u_L2= 7.160918e-04 p_L2= 1.238271e+00 p_f_L2= 3.576420e-03 p_c_L= 1.046767e-03 phi_L2= 2.988517e-03 u_f_L2= 3.851425e+02 + Errors h = 1.767767e-01 ndofs= 7880 u_L2= 7.150378e-04 p_L2= 1.234237e+00 p_f_L2= 3.576920e-03 p_c_L= 1.942137e-03 phi_L2= 2.988517e-03 u_f_L2= 3.751121e+02 Termination requested by criterion: end time diff --git a/tests/melt_introspection/screen-output b/tests/melt_introspection/screen-output index ac17c26e653..b4e5148ae08 100644 --- a/tests/melt_introspection/screen-output +++ b/tests/melt_introspection/screen-output @@ -5,7 +5,7 @@ Loading shared library <./libmelt_introspection.so> * signals.edit_finite_element_variables: name=velocity fe=FE_Q<2>(2) multiplicity=2 n_blocks=1 n_components=2 name=fluid pressure fe=FE_Q<2>(1) multiplicity=1 n_blocks=0 n_components=1 - name=compaction pressure fe=FE_Q<2>(1) multiplicity=1 n_blocks=1 n_components=1 + name=compaction pressure fe=FE_DGP<2>(1) multiplicity=1 n_blocks=1 n_components=1 name=fluid velocity fe=FE_Q<2>(2) multiplicity=2 n_blocks=1 n_components=2 name=pressure fe=FE_Q<2>(1) multiplicity=1 n_blocks=1 n_components=1 name=temperature fe=FE_Q<2>(2) multiplicity=1 n_blocks=1 n_components=1 @@ -13,15 +13,15 @@ Loading shared library <./libmelt_introspection.so> name=compositions fe=FE_Q<2>(2) multiplicity=2 n_blocks=2 n_components=2 Number of active cells: 4 (on 2 levels) -Number of degrees of freedom: 302 (50+18+50+9+25+100+25+25) +Number of degrees of freedom: 305 (50+21+50+9+25+100+25+25) *** Timestep 0: t=0 seconds Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping B composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 10+0 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 5+0 iterations. + Solving for u_f in 1 iterations. Postprocessing: Writing graphical output: output-melt_introspection/solution/solution-00000 diff --git a/tests/melt_material_1/screen-output b/tests/melt_material_1/screen-output index d728bd16403..b63015026ef 100644 --- a/tests/melt_material_1/screen-output +++ b/tests/melt_material_1/screen-output @@ -2,67 +2,67 @@ Loading shared library <./libmelt_material_1.so> Number of active cells: 1,024 (on 6 levels) -Number of degrees of freedom: 32,842 (10,628+8,450+1,089+4,225+4,225+4,225) +Number of degrees of freedom: 34,825 (12,611+8,450+1,089+4,225+4,225+4,225) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. Solving peridotite system ... 0 iterations. Solving porosity system ... 0 iterations. Solving Stokes system... done. - Solving for u_f in 12 iterations. + Solving for u_f in 11 iterations. Postprocessing: Compositions min/max/mass: 0/0.3/3.749e+10 // 0/0.3/3.008e+10 -*** Timestep 1: t=9.66799e-10 years - Solving temperature system... 14 iterations. - Solving peridotite system ... 15 iterations. - Solving porosity system ... 16 iterations. +*** Timestep 1: t=1.01992e-09 years + Solving temperature system... 15 iterations. + Solving peridotite system ... 16 iterations. + Solving porosity system ... 17 iterations. Solving Stokes system... done. - Solving for u_f in 13 iterations. + Solving for u_f in 11 iterations. Postprocessing: - Compositions min/max/mass: -0.02462/0.3253/3.749e+10 // -0.01693/0.3156/3.008e+10 + Compositions min/max/mass: -0.02425/0.3251/3.749e+10 // -0.01782/0.3164/3.008e+10 -*** Timestep 2: t=1.89984e-09 years - Solving temperature system... 14 iterations. - Solving peridotite system ... 16 iterations. - Solving porosity system ... 16 iterations. +*** Timestep 2: t=2.02252e-09 years + Solving temperature system... 15 iterations. + Solving peridotite system ... 17 iterations. + Solving porosity system ... 17 iterations. Solving Stokes system... done. - Solving for u_f in 13 iterations. + Solving for u_f in 11 iterations. Postprocessing: - Compositions min/max/mass: -0.01804/0.3185/3.749e+10 // -0.01144/0.3144/3.008e+10 + Compositions min/max/mass: -0.01758/0.3181/3.749e+10 // -0.01236/0.3146/3.008e+10 -*** Timestep 3: t=2.72863e-09 years - Solving temperature system... 13 iterations. - Solving peridotite system ... 15 iterations. - Solving porosity system ... 15 iterations. +*** Timestep 3: t=3.00968e-09 years + Solving temperature system... 14 iterations. + Solving peridotite system ... 16 iterations. + Solving porosity system ... 16 iterations. Solving Stokes system... done. - Solving for u_f in 12 iterations. + Solving for u_f in 11 iterations. Postprocessing: - Compositions min/max/mass: -0.01073/0.3173/3.749e+10 // -0.004329/0.3124/3.008e+10 + Compositions min/max/mass: -0.009622/0.3166/3.749e+10 // -0.004662/0.3142/3.008e+10 -*** Timestep 4: t=3.65188e-09 years +*** Timestep 4: t=3.98292e-09 years Solving temperature system... 14 iterations. Solving peridotite system ... 16 iterations. Solving porosity system ... 16 iterations. Solving Stokes system... done. - Solving for u_f in 12 iterations. + Solving for u_f in 11 iterations. Postprocessing: - Compositions min/max/mass: -0.006236/0.3141/3.749e+10 // -0.003106/0.3114/3.008e+10 + Compositions min/max/mass: -0.007624/0.312/3.749e+10 // -0.004643/0.3119/3.008e+10 *** Timestep 5: t=4e-09 years - Solving temperature system... 10 iterations. - Solving peridotite system ... 12 iterations. - Solving porosity system ... 12 iterations. + Solving temperature system... 7 iterations. + Solving peridotite system ... 8 iterations. + Solving porosity system ... 8 iterations. Solving Stokes system... done. - Solving for u_f in 12 iterations. + Solving for u_f in 11 iterations. Postprocessing: - Compositions min/max/mass: -0.007265/0.3116/3.749e+10 // -0.002744/0.3092/3.008e+10 + Compositions min/max/mass: -0.00748/0.3119/3.749e+10 // -0.004624/0.3117/3.008e+10 Termination requested by criterion: end time diff --git a/tests/melt_material_1/statistics b/tests/melt_material_1/statistics index abac301e6dd..75741af360a 100644 --- a/tests/melt_material_1/statistics +++ b/tests/melt_material_1/statistics @@ -14,9 +14,9 @@ # 14: Minimal value for composition porosity # 15: Maximal value for composition porosity # 16: Global mass for composition porosity -0 0.000000000000e+00 0.000000000000e+00 1024 11717 4225 8450 0 0 0 0.00000000e+00 3.00000000e-01 3.74877930e+10 0.00000000e+00 3.00000000e-01 3.00781250e+10 -1 9.667989040042e-10 9.667989040042e-10 1024 11717 4225 8450 14 15 16 -2.46150519e-02 3.25311508e-01 3.74877723e+10 -1.69317858e-02 3.15627667e-01 3.00781250e+10 -2 1.899841598472e-09 9.330426944676e-10 1024 11717 4225 8450 14 16 16 -1.80371453e-02 3.18539225e-01 3.74877694e+10 -1.14378278e-02 3.14439406e-01 3.00780959e+10 -3 2.728627516774e-09 8.287859183022e-10 1024 11717 4225 8450 13 15 15 -1.07321130e-02 3.17264599e-01 3.74877713e+10 -4.32942470e-03 3.12427296e-01 3.00780857e+10 -4 3.651881285836e-09 9.232537690625e-10 1024 11717 4225 8450 14 16 16 -6.23621296e-03 3.14089544e-01 3.74877729e+10 -3.10568995e-03 3.11440810e-01 3.00780723e+10 -5 4.000000000000e-09 3.481187141636e-10 1024 11717 4225 8450 10 12 12 -7.26488436e-03 3.11617416e-01 3.74877730e+10 -2.74419063e-03 3.09214962e-01 3.00780750e+10 +0 0.000000000000e+00 0.000000000000e+00 1024 13700 4225 8450 0 0 0 0.00000000e+00 3.00000000e-01 3.74877930e+10 0.00000000e+00 3.00000000e-01 3.00781250e+10 +1 1.019923589497e-09 1.019923589497e-09 1024 13700 4225 8450 15 16 17 -2.42505953e-02 3.25086435e-01 3.74877476e+10 -1.78192651e-02 3.16416229e-01 3.00781217e+10 +2 2.022522476228e-09 1.002598886731e-09 1024 13700 4225 8450 15 17 17 -1.75771214e-02 3.18053823e-01 3.74877383e+10 -1.23597402e-02 3.14550964e-01 3.00781038e+10 +3 3.009681219834e-09 9.871587436066e-10 1024 13700 4225 8450 14 16 16 -9.62164165e-03 3.16570698e-01 3.74877383e+10 -4.66157078e-03 3.14207058e-01 3.00780677e+10 +4 3.982917322916e-09 9.732361030815e-10 1024 13700 4225 8450 14 16 16 -7.62362880e-03 3.12027138e-01 3.74877383e+10 -4.64279618e-03 3.11908110e-01 3.00780129e+10 +5 4.000000000000e-09 1.708267708410e-11 1024 13700 4225 8450 7 8 8 -7.47981051e-03 3.11893148e-01 3.74877383e+10 -4.62445440e-03 3.11735522e-01 3.00780121e+10 diff --git a/tests/melt_material_2/screen-output b/tests/melt_material_2/screen-output index 46a87b5ad24..9a3d40fb2a9 100644 --- a/tests/melt_material_2/screen-output +++ b/tests/melt_material_2/screen-output @@ -1,45 +1,24 @@ ------------------------------------------------------------------------------ --- This is ASPECT, the Advanced Solver for Problems in Earth's ConvecTion. --- . version 1.4.pre --- . running in OPTIMIZED mode --- . running with 1 MPI process --- . using Trilinos ------------------------------------------------------------------------------ Loading shared library <./libmelt_material_2.so> Number of active cells: 1,024 (on 6 levels) -Number of degrees of freedom: 28,617 (10,628+8,450+1,089+4,225+4,225) +Number of degrees of freedom: 30,600 (12,611+8,450+1,089+4,225+4,225) *** Timestep 0: t=0 seconds Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Solving Stokes system... done. - Solving for u_f in 9 iterations. + Solving for u_f in 10 iterations. Postprocessing: RMS, max velocity: 0.224 m/s, 0.496 m/s - Pressure min/avg/max: -2 Pa, -1 Pa, -1.622e-12 Pa + Pressure min/avg/max: -2 Pa, -1 Pa, -5.291e-13 Pa Max and min velocity along boundary parts: 0.4965 m/s, 6.202e-06 m/s, 0.4965 m/s, 6.202e-06 m/s, 0 m/s, 0 m/s, 0.5 m/s, 0.5 m/s Termination requested by criterion: end time +---------------------------------------------+------------+------------+ -| Total wallclock time elapsed since start | 1.19s | | -| | | | -| Section | no. calls | wall time | % of total | +---------------------------------+-----------+------------+------------+ -| Assemble Stokes system | 1 | 0.394s | 33% | -| Assemble composition system | 1 | 0.0422s | 3.5% | -| Assemble temperature system | 1 | 0.0414s | 3.5% | -| Build composition preconditioner| 1 | 0.00512s | 0.43% | -| Build temperature preconditioner| 1 | 0.00533s | 0.45% | -| Solve Stokes system | 1 | 0.589s | 49% | -| Solve composition system | 1 | 0.00115s | 0.096% | -| Solve temperature system | 1 | 0.00119s | 0.1% | -| Initialization | 2 | 0.0344s | 2.9% | -| Postprocessing | 1 | 0.00345s | 0.29% | -| Setup dof systems | 1 | 0.0661s | 5.5% | +---------------------------------+-----------+------------+------------+ diff --git a/tests/melt_material_2/statistics b/tests/melt_material_2/statistics index 9b54e37711e..ea1a2f7c918 100644 --- a/tests/melt_material_2/statistics +++ b/tests/melt_material_2/statistics @@ -20,4 +20,4 @@ # 20: Minimum velocity magnitude on boundary with indicator 2 ("bottom") (m/s) # 21: Maximum velocity magnitude on boundary with indicator 3 ("top") (m/s) # 22: Minimum velocity magnitude on boundary with indicator 3 ("top") (m/s) -0 0.000000000000e+00 0.000000000000e+00 1024 11717 4225 4225 0 0 2.23606798e-01 4.96484275e-01 -2.00000000e+00 -1.00000000e+00 -1.62201676e-12 4.96484275e-01 6.20198505e-06 4.96484275e-01 6.20198505e-06 0.00000000e+00 0.00000000e+00 5.00000000e-01 5.00000000e-01 +0 0.000000000000e+00 0.000000000000e+00 1024 13700 4225 4225 0 0 2.23606798e-01 4.96484275e-01 -2.00000118e+00 -1.00002136e+00 -5.29126915e-13 4.96484275e-01 6.20198505e-06 4.96484275e-01 6.20198505e-06 0.00000000e+00 0.00000000e+00 5.00000000e-01 5.00000000e-01 diff --git a/tests/melt_material_3/screen-output b/tests/melt_material_3/screen-output index c0d101d1c95..caa201d2169 100644 --- a/tests/melt_material_3/screen-output +++ b/tests/melt_material_3/screen-output @@ -1,21 +1,14 @@ ------------------------------------------------------------------------------ --- This is ASPECT, the Advanced Solver for Problems in Earth's ConvecTion. --- . version 1.4.pre --- . running in OPTIMIZED mode --- . running with 1 MPI process --- . using Trilinos ------------------------------------------------------------------------------ Loading shared library <./libmelt_material_3.so> Number of active cells: 1,024 (on 6 levels) -Number of degrees of freedom: 28,617 (10,628+8,450+1,089+4,225+4,225) +Number of degrees of freedom: 30,600 (12,611+8,450+1,089+4,225+4,225) *** Timestep 0: t=0 seconds Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Solving Stokes system... done. - Solving for u_f in 9 iterations. + Solving for u_f in 10 iterations. Postprocessing: RMS, max velocity: 0.224 m/s, 0.496 m/s @@ -26,20 +19,6 @@ Termination requested by criterion: end time +---------------------------------------------+------------+------------+ -| Total wallclock time elapsed since start | 1.19s | | -| | | | -| Section | no. calls | wall time | % of total | +---------------------------------+-----------+------------+------------+ -| Assemble Stokes system | 1 | 0.391s | 33% | -| Assemble composition system | 1 | 0.0424s | 3.5% | -| Assemble temperature system | 1 | 0.041s | 3.4% | -| Build composition preconditioner| 1 | 0.00552s | 0.46% | -| Build temperature preconditioner| 1 | 0.00521s | 0.44% | -| Solve Stokes system | 1 | 0.592s | 50% | -| Solve composition system | 1 | 0.0011s | 0.092% | -| Solve temperature system | 1 | 0.00122s | 0.1% | -| Initialization | 2 | 0.0337s | 2.8% | -| Postprocessing | 1 | 0.0035s | 0.29% | -| Setup dof systems | 1 | 0.066s | 5.5% | +---------------------------------+-----------+------------+------------+ diff --git a/tests/melt_material_3/statistics b/tests/melt_material_3/statistics index 8b9514590a9..0c9d9b18db3 100644 --- a/tests/melt_material_3/statistics +++ b/tests/melt_material_3/statistics @@ -20,4 +20,4 @@ # 20: Minimum velocity magnitude on boundary with indicator 2 ("bottom") (m/s) # 21: Maximum velocity magnitude on boundary with indicator 3 ("top") (m/s) # 22: Minimum velocity magnitude on boundary with indicator 3 ("top") (m/s) -0 0.000000000000e+00 0.000000000000e+00 1024 11717 4225 4225 0 0 2.23606798e-01 4.96484275e-01 -2.00000000e+00 -5.00000000e-01 1.00000000e+00 4.96484275e-01 6.20198505e-06 4.96484275e-01 6.20198505e-06 0.00000000e+00 0.00000000e+00 5.00000000e-01 5.00000000e-01 +0 0.000000000000e+00 0.000000000000e+00 1024 13700 4225 4225 0 0 2.23606798e-01 4.96484275e-01 -2.00000118e+00 -5.00021360e-01 1.00000000e+00 4.96484275e-01 6.20198505e-06 4.96484275e-01 6.20198505e-06 0.00000000e+00 0.00000000e+00 5.00000000e-01 5.00000000e-01 diff --git a/tests/melt_material_4/screen-output b/tests/melt_material_4/screen-output index 3839b766087..714e144f30f 100644 --- a/tests/melt_material_4/screen-output +++ b/tests/melt_material_4/screen-output @@ -2,29 +2,29 @@ Loading shared library <./libmelt_material_4.so> Number of active cells: 1,024 (on 6 levels) -Number of degrees of freedom: 28,617 (10,628+8,450+1,089+4,225+4,225) +Number of degrees of freedom: 30,600 (12,611+8,450+1,089+4,225+4,225) *** Timestep 0: t=0 seconds Solving temperature system... 3 iterations. Solving porosity system ... 3 iterations. Solving Stokes system... done. - Solving for u_f in 8 iterations. + Solving for u_f in 10 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.9277e-16, 1.87568e-16, 1 Relative nonlinear residual (total system) after nonlinear iteration 1: 1 Solving temperature system... 3 iterations. Solving porosity system ... 3 iterations. Solving Stokes system... done. - Solving for u_f in 8 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.51232e-16, 1.37441e-16, 5.2096e-16 - Relative nonlinear residual (total system) after nonlinear iteration 2: 5.2096e-16 + Solving for u_f in 10 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.51232e-16, 1.37441e-16, 5.57132e-16 + Relative nonlinear residual (total system) after nonlinear iteration 2: 5.57132e-16 Postprocessing: RMS, max velocity: 0.236 m/s, 0.497 m/s Pressure min/avg/max: -1000 Pa, -277.5 Pa, -0.1001 Pa Max and min velocity along boundary parts: 0.4968 m/s, 0.005322 m/s, 0.4968 m/s, 0.005322 m/s, 0.005 m/s, 0.005 m/s, 0.5 m/s, 0.5 m/s - Errors u_L2, p_f_L2, porosity_L2: 2.773584e-07, 7.711114e-08, 2.928076e-05 + Errors u_L2, p_f_L2, porosity_L2: 2.773404e-07, 7.711126e-08, 2.928076e-05 Termination requested by criterion: end time diff --git a/tests/melt_material_4/statistics b/tests/melt_material_4/statistics index 035ffa57f2f..2d6d9b1366c 100644 --- a/tests/melt_material_4/statistics +++ b/tests/melt_material_4/statistics @@ -21,4 +21,4 @@ # 21: Minimum velocity magnitude on boundary with indicator 2 ("bottom") (m/s) # 22: Maximum velocity magnitude on boundary with indicator 3 ("top") (m/s) # 23: Minimum velocity magnitude on boundary with indicator 3 ("top") (m/s) -0 0.000000000000e+00 0.000000000000e+00 1024 11717 4225 4225 2 6 6 2.35701210e-01 4.96835291e-01 -9.99999325e+02 -2.77517303e+02 -1.00097649e-01 4.96835291e-01 5.32202246e-03 4.96835291e-01 5.32202246e-03 5.00000000e-03 5.00000000e-03 5.00000000e-01 5.00000000e-01 +0 0.000000000000e+00 0.000000000000e+00 1024 13700 4225 4225 2 6 6 2.35701210e-01 4.96835291e-01 -9.99999741e+02 -2.77519723e+02 -1.00142701e-01 4.96835291e-01 5.32202491e-03 4.96835291e-01 5.32202491e-03 5.00000000e-03 5.00000000e-03 5.00000000e-01 5.00000000e-01 diff --git a/tests/melt_property_visualization/screen-output b/tests/melt_property_visualization/screen-output index 3337b71533c..c5b9165db62 100644 --- a/tests/melt_property_visualization/screen-output +++ b/tests/melt_property_visualization/screen-output @@ -2,7 +2,7 @@ Loading shared library <./libmelt_property_visualization.so> Number of active cells: 1,024 (on 6 levels) -Number of degrees of freedom: 28,617 (10,628+8,450+1,089+4,225+4,225) +Number of degrees of freedom: 30,600 (12,611+8,450+1,089+4,225+4,225) *** Timestep 0: t=0 seconds Skipping temperature solve because RHS is zero. diff --git a/tests/melt_property_visualization/solution/solution-00000.0000.gnuplot b/tests/melt_property_visualization/solution/solution-00000.0000.gnuplot index 5e359012e46..acbd48309e9 100644 --- a/tests/melt_property_visualization/solution/solution-00000.0000.gnuplot +++ b/tests/melt_property_visualization/solution/solution-00000.0000.gnuplot @@ -4,7172 +4,7172 @@ # # For a description of the GNUPLOT format see the GNUPLOT manual. # -#

-0 0 0.1 -0.075 1.21353 0.201834 0.115283 0.566199 1.88631 0 0.7 3.34444 0 -1 -0.03125 0 0.1 -0.075 1.21338 0.206573 0.0991926 0.552719 1.90196 0 0.7 3.34444 0 -1 +#

+0 0 0.1 -0.075 1.22217 0.201638 0.108391 0.580562 1.89218 0 0.7 3.34444 0 -1 +0.03125 0 0.1 -0.075 1.22211 0.20535 0.106375 0.573163 1.90483 0 0.7 3.34444 0 -1 -0 0.03125 0.103174 -0.0773808 1.17807 0.207063 0.10776 0.567541 1.84704 0 0.690477 3.3455 0 -0.969233 -0.03125 0.03125 0.103148 -0.0774122 1.17804 0.210789 0.107442 0.564133 1.85905 0 0.690477 3.3455 0 -0.969233 +0 0.03125 0.103174 -0.0773808 1.18668 0.205941 0.105142 0.583153 1.85021 0 0.690477 3.3455 0 -0.969233 +0.03125 0.03125 0.103163 -0.0773962 1.18668 0.209653 0.109056 0.579735 1.86168 0 0.690477 3.3455 0 -0.969233 -0.03125 0 0.1 -0.075 1.21338 0.206573 0.0991926 0.552719 1.90196 0 0.7 3.34444 0 -1 -0.0625 0 0.1 -0.075 1.21353 0.210655 0.0798716 0.581339 1.91571 0 0.7 3.34444 0 -1 +0.03125 0 0.1 -0.075 1.22211 0.205461 0.106375 0.573163 1.90483 0 0.7 3.34444 0 -1 +0.0625 0 0.1 -0.075 1.22208 0.209296 0.101599 0.578877 1.91733 0 0.7 3.34444 0 -1 -0.03125 0.03125 0.103148 -0.0774122 1.17804 0.210789 0.107442 0.564133 1.85905 0 0.690477 3.3455 0 -0.969233 -0.0625 0.03125 0.103137 -0.0774239 1.17795 0.214883 0.0864621 0.575856 1.87219 0 0.690477 3.3455 0 -0.969233 +0.03125 0.03125 0.103163 -0.0773962 1.18668 0.209561 0.109056 0.579735 1.86168 0 0.690477 3.3455 0 -0.969233 +0.0625 0.03125 0.103159 -0.077402 1.18658 0.213396 0.108147 0.578079 1.87374 0 0.690477 3.3455 0 -0.969233 -0 0.03125 0.103174 -0.0773808 1.17807 0.207063 0.10776 0.567541 1.84704 0 0.690477 3.3455 0 -0.969233 -0.03125 0.03125 0.103148 -0.0774122 1.17804 0.210789 0.107442 0.564133 1.85905 0 0.690477 3.3455 0 -0.969233 +0 0.03125 0.103174 -0.0773808 1.18668 0.205993 0.105142 0.583153 1.85021 0 0.690477 3.3455 0 -0.969233 +0.03125 0.03125 0.103163 -0.0773962 1.18668 0.209514 0.109056 0.579735 1.86168 0 0.690477 3.3455 0 -0.969233 -0 0.0625 0.106449 -0.0798371 1.14276 0.211379 0.124412 0.58415 1.80467 0 0.680652 3.34659 0 -0.939413 -0.03125 0.0625 0.106416 -0.0798885 1.14261 0.21517 0.112289 0.577858 1.81639 0 0.680652 3.34659 0 -0.939413 +0 0.0625 0.106449 -0.0798371 1.15121 0.210211 0.110776 0.606177 1.80724 0 0.680652 3.34659 0 -0.939413 +0.03125 0.0625 0.106435 -0.0798628 1.15118 0.213732 0.109834 0.602394 1.81846 0 0.680652 3.34659 0 -0.939413 -0.03125 0.03125 0.103148 -0.0774122 1.17804 0.210789 0.107442 0.564133 1.85905 0 0.690477 3.3455 0 -0.969233 -0.0625 0.03125 0.103137 -0.0774239 1.17795 0.214883 0.0864621 0.575856 1.87219 0 0.690477 3.3455 0 -0.969233 +0.03125 0.03125 0.103163 -0.0773962 1.18668 0.209554 0.109056 0.579735 1.86168 0 0.690477 3.3455 0 -0.969233 +0.0625 0.03125 0.103159 -0.077402 1.18658 0.213383 0.108147 0.578079 1.87374 0 0.690477 3.3455 0 -0.969233 -0.03125 0.0625 0.106416 -0.0798885 1.14261 0.21517 0.112289 0.577858 1.81639 0 0.680652 3.34659 0 -0.939413 -0.0625 0.0625 0.106395 -0.0799169 1.14264 0.219103 0.085263 0.580963 1.82873 0 0.680652 3.34659 0 -0.939413 +0.03125 0.0625 0.106435 -0.0798628 1.15118 0.213732 0.109834 0.602394 1.81846 0 0.680652 3.34659 0 -0.939413 +0.0625 0.0625 0.106428 -0.0798769 1.15118 0.217562 0.112956 0.596568 1.83036 0 0.680652 3.34659 0 -0.939413 -0.0625 0 0.1 -0.075 1.21353 0.210655 0.0798716 0.581339 1.91571 0 0.7 3.34444 0 -1 -0.09375 0 0.1 -0.075 1.21368 0.214702 0.0733522 0.55896 1.92936 0 0.7 3.34444 0 -1 +0.0625 0 0.1 -0.075 1.22208 0.209234 0.101599 0.578877 1.91733 0 0.7 3.34444 0 -1 +0.09375 0 0.1 -0.075 1.22208 0.213198 0.0937367 0.580662 1.93029 0 0.7 3.34444 0 -1 -0.0625 0.03125 0.103137 -0.0774239 1.17795 0.214883 0.0864621 0.575856 1.87219 0 0.690477 3.3455 0 -0.969233 -0.09375 0.03125 0.103134 -0.0774307 1.17828 0.218971 0.0744986 0.564305 1.88573 0 0.690477 3.3455 0 -0.969233 +0.0625 0.03125 0.103159 -0.077402 1.18658 0.213412 0.108147 0.578079 1.87374 0 0.690477 3.3455 0 -0.969233 +0.09375 0.03125 0.103158 -0.0774053 1.18658 0.217376 0.0987557 0.583429 1.88661 0 0.690477 3.3455 0 -0.969233 -0.09375 0 0.1 -0.075 1.21368 0.214702 0.0733522 0.55896 1.92936 0 0.7 3.34444 0 -1 -0.125 0 0.1 -0.075 1.21387 0.218909 0.0628899 0.573917 1.94357 0 0.7 3.34444 0 -1 +0.09375 0 0.1 -0.075 1.22208 0.213134 0.0937367 0.580662 1.93029 0 0.7 3.34444 0 -1 +0.125 0 0.1 -0.075 1.22217 0.217256 0.0890419 0.586329 1.9438 0 0.7 3.34444 0 -1 -0.09375 0.03125 0.103134 -0.0774307 1.17828 0.218971 0.0744986 0.564305 1.88573 0 0.690477 3.3455 0 -0.969233 -0.125 0.03125 0.103134 -0.077433 1.17834 0.223155 0.0710185 0.572112 1.89931 0 0.690477 3.3455 0 -0.969233 +0.09375 0.03125 0.103158 -0.0774053 1.18658 0.217429 0.0987557 0.583429 1.88661 0 0.690477 3.3455 0 -0.969233 +0.125 0.03125 0.103159 -0.0774073 1.18665 0.221551 0.0906397 0.591032 1.90011 0 0.690477 3.3455 0 -0.969233 -0.0625 0.03125 0.103137 -0.0774239 1.17795 0.214883 0.0864621 0.575856 1.87219 0 0.690477 3.3455 0 -0.969233 -0.09375 0.03125 0.103134 -0.0774307 1.17828 0.218971 0.0744986 0.564305 1.88573 0 0.690477 3.3455 0 -0.969233 +0.0625 0.03125 0.103159 -0.077402 1.18658 0.213326 0.108147 0.578079 1.87374 0 0.690477 3.3455 0 -0.969233 +0.09375 0.03125 0.103158 -0.0774053 1.18658 0.217409 0.0987557 0.583429 1.88661 0 0.690477 3.3455 0 -0.969233 -0.0625 0.0625 0.106395 -0.0799169 1.14264 0.219103 0.085263 0.580963 1.82873 0 0.680652 3.34659 0 -0.939413 -0.09375 0.0625 0.106386 -0.0799324 1.14294 0.223059 0.0793514 0.581842 1.84143 0 0.680652 3.34659 0 -0.939413 +0.0625 0.0625 0.106428 -0.0798769 1.15118 0.217574 0.112956 0.596568 1.83036 0 0.680652 3.34659 0 -0.939413 +0.09375 0.0625 0.106426 -0.0798855 1.15109 0.221656 0.113409 0.598302 1.84322 0 0.680652 3.34659 0 -0.939413 -0.09375 0.03125 0.103134 -0.0774307 1.17828 0.218971 0.0744986 0.564305 1.88573 0 0.690477 3.3455 0 -0.969233 -0.125 0.03125 0.103134 -0.077433 1.17834 0.223155 0.0710185 0.572112 1.89931 0 0.690477 3.3455 0 -0.969233 +0.09375 0.03125 0.103158 -0.0774053 1.18658 0.217321 0.0987557 0.583429 1.88661 0 0.690477 3.3455 0 -0.969233 +0.125 0.03125 0.103159 -0.0774073 1.18665 0.221596 0.0906397 0.591032 1.90011 0 0.690477 3.3455 0 -0.969233 -0.09375 0.0625 0.106386 -0.0799324 1.14294 0.223059 0.0793514 0.581842 1.84143 0 0.680652 3.34659 0 -0.939413 -0.125 0.0625 0.106384 -0.0799406 1.14304 0.227594 0.0901488 0.58501 1.85572 0 0.680652 3.34659 0 -0.939413 +0.09375 0.0625 0.106426 -0.0798855 1.15109 0.221718 0.113409 0.598302 1.84322 0 0.680652 3.34659 0 -0.939413 +0.125 0.0625 0.106427 -0.0798907 1.15106 0.225993 0.10336 0.600265 1.85658 0 0.680652 3.34659 0 -0.939413 -0 0.0625 0.106449 -0.0798371 1.14276 0.211379 0.124412 0.58415 1.80467 0 0.680652 3.34659 0 -0.939413 -0.03125 0.0625 0.106416 -0.0798885 1.14261 0.21517 0.112289 0.577858 1.81639 0 0.680652 3.34659 0 -0.939413 +0 0.0625 0.106449 -0.0798371 1.15121 0.210091 0.110776 0.606177 1.80724 0 0.680652 3.34659 0 -0.939413 +0.03125 0.0625 0.106435 -0.0798628 1.15118 0.213711 0.109834 0.602394 1.81846 0 0.680652 3.34659 0 -0.939413 -0 0.09375 0.109829 -0.0823714 1.10715 0.215806 0.102624 0.607518 1.76212 0 0.670514 3.34772 0 -0.91051 -0.03125 0.09375 0.109792 -0.0824376 1.10721 0.219478 0.107681 0.601395 1.77333 0 0.670514 3.34772 0 -0.91051 +0 0.09375 0.109829 -0.0823714 1.11551 0.214438 0.109839 0.644943 1.76456 0 0.670514 3.34772 0 -0.91051 +0.03125 0.09375 0.109813 -0.0824053 1.11551 0.218058 0.11 0.625913 1.77541 0 0.670514 3.34772 0 -0.91051 -0.03125 0.0625 0.106416 -0.0798885 1.14261 0.21517 0.112289 0.577858 1.81639 0 0.680652 3.34659 0 -0.939413 -0.0625 0.0625 0.106395 -0.0799169 1.14264 0.219103 0.085263 0.580963 1.82873 0 0.680652 3.34659 0 -0.939413 +0.03125 0.0625 0.106435 -0.0798628 1.15118 0.213693 0.109834 0.602394 1.81846 0 0.680652 3.34659 0 -0.939413 +0.0625 0.0625 0.106428 -0.0798769 1.15118 0.217551 0.112956 0.596568 1.83036 0 0.680652 3.34659 0 -0.939413 -0.03125 0.09375 0.109792 -0.0824376 1.10721 0.219478 0.107681 0.601395 1.77333 0 0.670514 3.34772 0 -0.91051 -0.0625 0.09375 0.109768 -0.0824804 1.10712 0.223593 0.0945498 0.608993 1.78573 0 0.670514 3.34772 0 -0.91051 +0.03125 0.09375 0.109813 -0.0824053 1.11551 0.218083 0.11 0.625913 1.77541 0 0.670514 3.34772 0 -0.91051 +0.0625 0.09375 0.109805 -0.0824276 1.11551 0.221941 0.11111 0.621265 1.7872 0 0.670514 3.34772 0 -0.91051 -0 0.09375 0.109829 -0.0823714 1.10715 0.215806 0.102624 0.607518 1.76212 0 0.670514 3.34772 0 -0.91051 -0.03125 0.09375 0.109792 -0.0824376 1.10721 0.219478 0.107681 0.601395 1.77333 0 0.670514 3.34772 0 -0.91051 +0 0.09375 0.109829 -0.0823714 1.11551 0.214419 0.109839 0.644943 1.76456 0 0.670514 3.34772 0 -0.91051 +0.03125 0.09375 0.109813 -0.0824053 1.11551 0.218008 0.11 0.625913 1.77541 0 0.670514 3.34772 0 -0.91051 -0 0.125 0.113315 -0.0849861 1.07159 0.220068 0.118068 0.621457 1.71896 0 0.660055 3.34888 0 -0.882497 -0.03125 0.125 0.113278 -0.0850655 1.07156 0.223967 0.117629 0.631041 1.7304 0 0.660055 3.34888 0 -0.882497 +0 0.125 0.113315 -0.0849861 1.07953 0.218847 0.0710183 0.656533 1.72142 0 0.660055 3.34888 0 -0.882497 +0.03125 0.125 0.1133 -0.0850279 1.07983 0.222436 0.0855434 0.654242 1.73221 0 0.660055 3.34888 0 -0.882497 -0.03125 0.09375 0.109792 -0.0824376 1.10721 0.219478 0.107681 0.601395 1.77333 0 0.670514 3.34772 0 -0.91051 -0.0625 0.09375 0.109768 -0.0824804 1.10712 0.223593 0.0945498 0.608993 1.78573 0 0.670514 3.34772 0 -0.91051 +0.03125 0.09375 0.109813 -0.0824053 1.11551 0.218005 0.11 0.625913 1.77541 0 0.670514 3.34772 0 -0.91051 +0.0625 0.09375 0.109805 -0.0824276 1.11551 0.221938 0.11111 0.621265 1.7872 0 0.670514 3.34772 0 -0.91051 -0.03125 0.125 0.113278 -0.0850655 1.07156 0.223967 0.117629 0.631041 1.7304 0 0.660055 3.34888 0 -0.882497 -0.0625 0.125 0.113252 -0.0851209 1.0715 0.22812 0.104874 0.644067 1.74255 0 0.660055 3.34888 0 -0.882497 +0.03125 0.125 0.1133 -0.0850279 1.07983 0.222418 0.0855434 0.654242 1.73221 0 0.660055 3.34888 0 -0.882497 +0.0625 0.125 0.113292 -0.0850574 1.0799 0.226351 0.108027 0.651933 1.74397 0 0.660055 3.34888 0 -0.882497 -0.0625 0.0625 0.106395 -0.0799169 1.14264 0.219103 0.085263 0.580963 1.82873 0 0.680652 3.34659 0 -0.939413 -0.09375 0.0625 0.106386 -0.0799324 1.14294 0.223059 0.0793514 0.581842 1.84143 0 0.680652 3.34659 0 -0.939413 +0.0625 0.0625 0.106428 -0.0798769 1.15118 0.217506 0.112956 0.596568 1.83036 0 0.680652 3.34659 0 -0.939413 +0.09375 0.0625 0.106426 -0.0798855 1.15109 0.221679 0.113409 0.598302 1.84322 0 0.680652 3.34659 0 -0.939413 -0.0625 0.09375 0.109768 -0.0824804 1.10712 0.223593 0.0945498 0.608993 1.78573 0 0.670514 3.34772 0 -0.91051 -0.09375 0.09375 0.109754 -0.0825072 1.10742 0.227675 0.0888182 0.616205 1.79842 0 0.670514 3.34772 0 -0.91051 +0.0625 0.09375 0.109805 -0.0824276 1.11551 0.221964 0.11111 0.621265 1.7872 0 0.670514 3.34772 0 -0.91051 +0.09375 0.09375 0.109803 -0.0824422 1.11548 0.226137 0.107761 0.617106 1.79978 0 0.670514 3.34772 0 -0.91051 -0.09375 0.0625 0.106386 -0.0799324 1.14294 0.223059 0.0793514 0.581842 1.84143 0 0.680652 3.34659 0 -0.939413 -0.125 0.0625 0.106384 -0.0799406 1.14304 0.227594 0.0901488 0.58501 1.85572 0 0.680652 3.34659 0 -0.939413 +0.09375 0.0625 0.106426 -0.0798855 1.15109 0.221654 0.113409 0.598302 1.84322 0 0.680652 3.34659 0 -0.939413 +0.125 0.0625 0.106427 -0.0798907 1.15106 0.226009 0.10336 0.600265 1.85658 0 0.680652 3.34659 0 -0.939413 -0.09375 0.09375 0.109754 -0.0825072 1.10742 0.227675 0.0888182 0.616205 1.79842 0 0.670514 3.34772 0 -0.91051 -0.125 0.09375 0.109748 -0.0825227 1.10742 0.232062 0.0968697 0.608521 1.81174 0 0.670514 3.34772 0 -0.91051 +0.09375 0.09375 0.109803 -0.0824422 1.11548 0.22615 0.107761 0.617106 1.79978 0 0.670514 3.34772 0 -0.91051 +0.125 0.09375 0.109804 -0.0824516 1.11554 0.230505 0.105991 0.621733 1.81306 0 0.670514 3.34772 0 -0.91051 -0.0625 0.09375 0.109768 -0.0824804 1.10712 0.223593 0.0945498 0.608993 1.78573 0 0.670514 3.34772 0 -0.91051 -0.09375 0.09375 0.109754 -0.0825072 1.10742 0.227675 0.0888182 0.616205 1.79842 0 0.670514 3.34772 0 -0.91051 +0.0625 0.09375 0.109805 -0.0824276 1.11551 0.221899 0.11111 0.621265 1.7872 0 0.670514 3.34772 0 -0.91051 +0.09375 0.09375 0.109803 -0.0824422 1.11548 0.226143 0.107761 0.617106 1.79978 0 0.670514 3.34772 0 -0.91051 -0.0625 0.125 0.113252 -0.0851209 1.0715 0.22812 0.104874 0.644067 1.74255 0 0.660055 3.34888 0 -0.882497 -0.09375 0.125 0.113235 -0.0851583 1.07166 0.232177 0.0883471 0.638205 1.75464 0 0.660055 3.34888 0 -0.882497 +0.0625 0.125 0.113292 -0.0850574 1.0799 0.226389 0.108027 0.651933 1.74397 0 0.660055 3.34888 0 -0.882497 +0.09375 0.125 0.113289 -0.0850777 1.07986 0.230633 0.119451 0.644657 1.75645 0 0.660055 3.34888 0 -0.882497 -0.09375 0.09375 0.109754 -0.0825072 1.10742 0.227675 0.0888182 0.616205 1.79842 0 0.670514 3.34772 0 -0.91051 -0.125 0.09375 0.109748 -0.0825227 1.10742 0.232062 0.0968697 0.608521 1.81174 0 0.670514 3.34772 0 -0.91051 +0.09375 0.09375 0.109803 -0.0824422 1.11548 0.226066 0.107761 0.617106 1.79978 0 0.670514 3.34772 0 -0.91051 +0.125 0.09375 0.109804 -0.0824516 1.11554 0.230565 0.105991 0.621733 1.81306 0 0.670514 3.34772 0 -0.91051 -0.09375 0.125 0.113235 -0.0851583 1.07166 0.232177 0.0883471 0.638205 1.75464 0 0.660055 3.34888 0 -0.882497 -0.125 0.125 0.113226 -0.0851827 1.07187 0.236806 0.0911939 0.627224 1.76847 0 0.660055 3.34888 0 -0.882497 +0.09375 0.125 0.113289 -0.0850777 1.07986 0.23069 0.119451 0.644657 1.75645 0 0.660055 3.34888 0 -0.882497 +0.125 0.125 0.11329 -0.0850914 1.07977 0.235189 0.115895 0.650371 1.76969 0 0.660055 3.34888 0 -0.882497 -0.125 0 0.1 -0.075 1.21387 0.218909 0.0628899 0.573917 1.94357 0 0.7 3.34444 0 -1 -0.15625 0 0.1 -0.075 1.2142 0.223169 0.0626233 0.5805 1.9581 0 0.7 3.34444 0 -1 +0.125 0 0.1 -0.075 1.22217 0.217171 0.0890419 0.586329 1.9438 0 0.7 3.34444 0 -1 +0.15625 0 0.1 -0.075 1.22223 0.221497 0.0876477 0.579565 1.95806 0 0.7 3.34444 0 -1 -0.125 0.03125 0.103134 -0.077433 1.17834 0.223155 0.0710185 0.572112 1.89931 0 0.690477 3.3455 0 -0.969233 -0.15625 0.03125 0.103136 -0.0774343 1.17868 0.22755 0.0620984 0.591858 1.91384 0 0.690477 3.3455 0 -0.969233 +0.125 0.03125 0.103159 -0.0774073 1.18665 0.221575 0.0906397 0.591032 1.90011 0 0.690477 3.3455 0 -0.969233 +0.15625 0.03125 0.103162 -0.0774085 1.18677 0.225901 0.0892743 0.589533 1.9141 0 0.690477 3.3455 0 -0.969233 -0.15625 0 0.1 -0.075 1.2142 0.223169 0.0626233 0.5805 1.9581 0 0.7 3.34444 0 -1 -0.1875 0 0.1 -0.075 1.21439 0.227673 0.0714874 0.569433 1.9733 0 0.7 3.34444 0 -1 +0.15625 0 0.1 -0.075 1.22223 0.221444 0.0876477 0.579565 1.95806 0 0.7 3.34444 0 -1 +0.1875 0 0.1 -0.075 1.22235 0.225988 0.0934017 0.585379 1.973 0 0.7 3.34444 0 -1 -0.15625 0.03125 0.103136 -0.0774343 1.17868 0.22755 0.0620984 0.591858 1.91384 0 0.690477 3.3455 0 -0.969233 -0.1875 0.03125 0.10314 -0.0774346 1.17892 0.232226 0.06883 0.577191 1.9292 0 0.690477 3.3455 0 -0.969233 +0.15625 0.03125 0.103162 -0.0774085 1.18677 0.225951 0.0892743 0.589533 1.9141 0 0.690477 3.3455 0 -0.969233 +0.1875 0.03125 0.103165 -0.077409 1.18686 0.230495 0.0986667 0.597577 1.9293 0 0.690477 3.3455 0 -0.969233 -0.125 0.03125 0.103134 -0.077433 1.17834 0.223155 0.0710185 0.572112 1.89931 0 0.690477 3.3455 0 -0.969233 -0.15625 0.03125 0.103136 -0.0774343 1.17868 0.22755 0.0620984 0.591858 1.91384 0 0.690477 3.3455 0 -0.969233 +0.125 0.03125 0.103159 -0.0774073 1.18665 0.221493 0.0906397 0.591032 1.90011 0 0.690477 3.3455 0 -0.969233 +0.15625 0.03125 0.103162 -0.0774085 1.18677 0.225944 0.0892743 0.589533 1.9141 0 0.690477 3.3455 0 -0.969233 -0.125 0.0625 0.106384 -0.0799406 1.14304 0.227594 0.0901488 0.58501 1.85572 0 0.680652 3.34659 0 -0.939413 -0.15625 0.0625 0.106386 -0.0799449 1.14307 0.232121 0.0744226 0.602971 1.86992 0 0.680652 3.34659 0 -0.939413 +0.125 0.0625 0.106427 -0.0798907 1.15106 0.226035 0.10336 0.600265 1.85658 0 0.680652 3.34659 0 -0.939413 +0.15625 0.0625 0.106431 -0.0798942 1.15115 0.230485 0.10021 0.607297 1.87074 0 0.680652 3.34659 0 -0.939413 -0.15625 0.03125 0.103136 -0.0774343 1.17868 0.22755 0.0620984 0.591858 1.91384 0 0.690477 3.3455 0 -0.969233 -0.1875 0.03125 0.10314 -0.0774346 1.17892 0.232226 0.06883 0.577191 1.9292 0 0.690477 3.3455 0 -0.969233 +0.15625 0.03125 0.103162 -0.0774085 1.18677 0.225799 0.0892743 0.589533 1.9141 0 0.690477 3.3455 0 -0.969233 +0.1875 0.03125 0.103165 -0.077409 1.18686 0.230574 0.0986667 0.597577 1.9293 0 0.690477 3.3455 0 -0.969233 -0.15625 0.0625 0.106386 -0.0799449 1.14307 0.232121 0.0744226 0.602971 1.86992 0 0.680652 3.34659 0 -0.939413 -0.1875 0.0625 0.10639 -0.079947 1.14346 0.236917 0.06529 0.592059 1.88534 0 0.680652 3.34659 0 -0.939413 +0.15625 0.0625 0.106431 -0.0798942 1.15115 0.230555 0.10021 0.607297 1.87074 0 0.680652 3.34659 0 -0.939413 +0.1875 0.0625 0.106435 -0.0798956 1.15115 0.235329 0.100929 0.611754 1.88589 0 0.680652 3.34659 0 -0.939413 -0.1875 0 0.1 -0.075 1.21439 0.227673 0.0714874 0.569433 1.9733 0 0.7 3.34444 0 -1 -0.21875 0 0.1 -0.075 1.21457 0.232529 0.0782812 0.565754 1.98967 0 0.7 3.34444 0 -1 +0.1875 0 0.1 -0.075 1.22235 0.225903 0.0934017 0.585379 1.973 0 0.7 3.34444 0 -1 +0.21875 0 0.1 -0.075 1.22232 0.230798 0.100987 0.586652 1.989 0 0.7 3.34444 0 -1 -0.1875 0.03125 0.10314 -0.0774346 1.17892 0.232226 0.06883 0.577191 1.9292 0 0.690477 3.3455 0 -0.969233 -0.21875 0.03125 0.103145 -0.0774347 1.17914 0.237107 0.0802708 0.57542 1.94518 0 0.690477 3.3455 0 -0.969233 +0.1875 0.03125 0.103165 -0.077409 1.18686 0.230597 0.0986667 0.597577 1.9293 0 0.690477 3.3455 0 -0.969233 +0.21875 0.03125 0.103169 -0.0774091 1.1868 0.235492 0.0995632 0.591997 1.94525 0 0.690477 3.3455 0 -0.969233 -0.21875 0 0.1 -0.075 1.21457 0.232529 0.0782812 0.565754 1.98967 0 0.7 3.34444 0 -1 -0.25 0 0.1 -0.075 1.21466 0.237545 0.0821846 0.566691 2.00648 0 0.7 3.34444 0 -1 +0.21875 0 0.1 -0.075 1.22232 0.230728 0.100987 0.586652 1.989 0 0.7 3.34444 0 -1 +0.25 0 0.1 -0.075 1.22229 0.235883 0.0937638 0.572495 2.00593 0 0.7 3.34444 0 -1 -0.21875 0.03125 0.103145 -0.0774347 1.17914 0.237107 0.0802708 0.57542 1.94518 0 0.690477 3.3455 0 -0.969233 -0.25 0.03125 0.103149 -0.0774347 1.1792 0.242395 0.0853862 0.568962 1.96232 0 0.690477 3.3455 0 -0.969233 +0.21875 0.03125 0.103169 -0.0774091 1.1868 0.235561 0.0995632 0.591997 1.94525 0 0.690477 3.3455 0 -0.969233 +0.25 0.03125 0.103171 -0.0774092 1.18689 0.240716 0.0955466 0.587115 1.96214 0 0.690477 3.3455 0 -0.969233 -0.1875 0.03125 0.10314 -0.0774346 1.17892 0.232226 0.06883 0.577191 1.9292 0 0.690477 3.3455 0 -0.969233 -0.21875 0.03125 0.103145 -0.0774347 1.17914 0.237107 0.0802708 0.57542 1.94518 0 0.690477 3.3455 0 -0.969233 +0.1875 0.03125 0.103165 -0.077409 1.18686 0.230489 0.0986667 0.597577 1.9293 0 0.690477 3.3455 0 -0.969233 +0.21875 0.03125 0.103169 -0.0774091 1.1868 0.235504 0.0995632 0.591997 1.94525 0 0.690477 3.3455 0 -0.969233 -0.1875 0.0625 0.10639 -0.079947 1.14346 0.236917 0.06529 0.592059 1.88534 0 0.680652 3.34659 0 -0.939413 -0.21875 0.0625 0.106397 -0.079947 1.14365 0.241937 0.0742176 0.585247 1.90124 0 0.680652 3.34659 0 -0.939413 +0.1875 0.0625 0.106435 -0.0798956 1.15115 0.235377 0.100929 0.611754 1.88589 0 0.680652 3.34659 0 -0.939413 +0.21875 0.0625 0.106441 -0.0798957 1.15121 0.240392 0.0988533 0.605737 1.90162 0 0.680652 3.34659 0 -0.939413 -0.21875 0.03125 0.103145 -0.0774347 1.17914 0.237107 0.0802708 0.57542 1.94518 0 0.690477 3.3455 0 -0.969233 -0.25 0.03125 0.103149 -0.0774347 1.1792 0.242395 0.0853862 0.568962 1.96232 0 0.690477 3.3455 0 -0.969233 +0.21875 0.03125 0.103169 -0.0774091 1.1868 0.235459 0.0995632 0.591997 1.94525 0 0.690477 3.3455 0 -0.969233 +0.25 0.03125 0.103171 -0.0774092 1.18689 0.24073 0.0955466 0.587115 1.96214 0 0.690477 3.3455 0 -0.969233 -0.21875 0.0625 0.106397 -0.079947 1.14365 0.241937 0.0742176 0.585247 1.90124 0 0.680652 3.34659 0 -0.939413 -0.25 0.0625 0.106403 -0.0799472 1.14386 0.247293 0.0792683 0.583005 1.91823 0 0.680652 3.34659 0 -0.939413 +0.21875 0.0625 0.106441 -0.0798957 1.15121 0.240448 0.0988533 0.605737 1.90162 0 0.680652 3.34659 0 -0.939413 +0.25 0.0625 0.106445 -0.0798953 1.15125 0.245718 0.0952587 0.609124 1.91835 0 0.680652 3.34659 0 -0.939413 -0.125 0.0625 0.106384 -0.0799406 1.14304 0.227594 0.0901488 0.58501 1.85572 0 0.680652 3.34659 0 -0.939413 -0.15625 0.0625 0.106386 -0.0799449 1.14307 0.232121 0.0744226 0.602971 1.86992 0 0.680652 3.34659 0 -0.939413 +0.125 0.0625 0.106427 -0.0798907 1.15106 0.225942 0.10336 0.600265 1.85658 0 0.680652 3.34659 0 -0.939413 +0.15625 0.0625 0.106431 -0.0798942 1.15115 0.230498 0.10021 0.607297 1.87074 0 0.680652 3.34659 0 -0.939413 -0.125 0.09375 0.109748 -0.0825227 1.10742 0.232062 0.0968697 0.608521 1.81174 0 0.670514 3.34772 0 -0.91051 -0.15625 0.09375 0.109748 -0.0825315 1.10748 0.236927 0.0729193 0.609359 1.82656 0 0.670514 3.34772 0 -0.91051 +0.125 0.09375 0.109804 -0.0824516 1.11554 0.230589 0.105991 0.621733 1.81306 0 0.670514 3.34772 0 -0.91051 +0.15625 0.09375 0.109807 -0.0824573 1.11554 0.235146 0.108408 0.626875 1.82729 0 0.670514 3.34772 0 -0.91051 -0.15625 0.0625 0.106386 -0.0799449 1.14307 0.232121 0.0744226 0.602971 1.86992 0 0.680652 3.34659 0 -0.939413 -0.1875 0.0625 0.10639 -0.079947 1.14346 0.236917 0.06529 0.592059 1.88534 0 0.680652 3.34659 0 -0.939413 +0.15625 0.0625 0.106431 -0.0798942 1.15115 0.230447 0.10021 0.607297 1.87074 0 0.680652 3.34659 0 -0.939413 +0.1875 0.0625 0.106435 -0.0798956 1.15115 0.235361 0.100929 0.611754 1.88589 0 0.680652 3.34659 0 -0.939413 -0.15625 0.09375 0.109748 -0.0825315 1.10748 0.236927 0.0729193 0.609359 1.82656 0 0.670514 3.34772 0 -0.91051 -0.1875 0.09375 0.109752 -0.0825357 1.10791 0.24165 0.0576819 0.616456 1.84133 0 0.670514 3.34772 0 -0.91051 +0.15625 0.09375 0.109807 -0.0824573 1.11554 0.23522 0.108408 0.626875 1.82729 0 0.670514 3.34772 0 -0.91051 +0.1875 0.09375 0.109813 -0.0824604 1.11554 0.240134 0.10528 0.616982 1.84212 0 0.670514 3.34772 0 -0.91051 -0.125 0.09375 0.109748 -0.0825227 1.10742 0.232062 0.0968697 0.608521 1.81174 0 0.670514 3.34772 0 -0.91051 -0.15625 0.09375 0.109748 -0.0825315 1.10748 0.236927 0.0729193 0.609359 1.82656 0 0.670514 3.34772 0 -0.91051 +0.125 0.09375 0.109804 -0.0824516 1.11554 0.230433 0.105991 0.621733 1.81306 0 0.670514 3.34772 0 -0.91051 +0.15625 0.09375 0.109807 -0.0824573 1.11554 0.235194 0.108408 0.626875 1.82729 0 0.670514 3.34772 0 -0.91051 -0.125 0.125 0.113226 -0.0851827 1.07187 0.236806 0.0911939 0.627224 1.76847 0 0.660055 3.34888 0 -0.882497 -0.15625 0.125 0.113225 -0.0851962 1.0719 0.241527 0.0851931 0.614483 1.78239 0 0.660055 3.34888 0 -0.882497 +0.125 0.125 0.11329 -0.0850914 1.07977 0.235245 0.115895 0.650371 1.76969 0 0.660055 3.34888 0 -0.882497 +0.15625 0.125 0.113294 -0.0850997 1.0798 0.240006 0.102854 0.655017 1.78388 0 0.660055 3.34888 0 -0.882497 -0.15625 0.09375 0.109748 -0.0825315 1.10748 0.236927 0.0729193 0.609359 1.82656 0 0.670514 3.34772 0 -0.91051 -0.1875 0.09375 0.109752 -0.0825357 1.10791 0.24165 0.0576819 0.616456 1.84133 0 0.670514 3.34772 0 -0.91051 +0.15625 0.09375 0.109807 -0.0824573 1.11554 0.235133 0.108408 0.626875 1.82729 0 0.670514 3.34772 0 -0.91051 +0.1875 0.09375 0.109813 -0.0824604 1.11554 0.240127 0.10528 0.616982 1.84212 0 0.670514 3.34772 0 -0.91051 -0.15625 0.125 0.113225 -0.0851962 1.0719 0.241527 0.0851931 0.614483 1.78239 0 0.660055 3.34888 0 -0.882497 -0.1875 0.125 0.113228 -0.0852032 1.0722 0.246683 0.0760731 0.639126 1.79786 0 0.660055 3.34888 0 -0.882497 +0.15625 0.125 0.113294 -0.0850997 1.0798 0.240045 0.102854 0.655017 1.78388 0 0.660055 3.34888 0 -0.882497 +0.1875 0.125 0.1133 -0.0851046 1.07996 0.245039 0.107613 0.640364 1.79869 0 0.660055 3.34888 0 -0.882497 -0.1875 0.0625 0.10639 -0.079947 1.14346 0.236917 0.06529 0.592059 1.88534 0 0.680652 3.34659 0 -0.939413 -0.21875 0.0625 0.106397 -0.079947 1.14365 0.241937 0.0742176 0.585247 1.90124 0 0.680652 3.34659 0 -0.939413 +0.1875 0.0625 0.106435 -0.0798956 1.15115 0.235297 0.100929 0.611754 1.88589 0 0.680652 3.34659 0 -0.939413 +0.21875 0.0625 0.106441 -0.0798957 1.15121 0.240422 0.0988533 0.605737 1.90162 0 0.680652 3.34659 0 -0.939413 -0.1875 0.09375 0.109752 -0.0825357 1.10791 0.24165 0.0576819 0.616456 1.84133 0 0.670514 3.34772 0 -0.91051 -0.21875 0.09375 0.109759 -0.0825371 1.10825 0.246717 0.0779519 0.615325 1.85704 0 0.670514 3.34772 0 -0.91051 +0.1875 0.09375 0.109813 -0.0824604 1.11554 0.240181 0.10528 0.616982 1.84212 0 0.670514 3.34772 0 -0.91051 +0.21875 0.09375 0.109819 -0.0824611 1.1156 0.245306 0.103556 0.624592 1.85804 0 0.670514 3.34772 0 -0.91051 -0.21875 0.0625 0.106397 -0.079947 1.14365 0.241937 0.0742176 0.585247 1.90124 0 0.680652 3.34659 0 -0.939413 -0.25 0.0625 0.106403 -0.0799472 1.14386 0.247293 0.0792683 0.583005 1.91823 0 0.680652 3.34659 0 -0.939413 +0.21875 0.0625 0.106441 -0.0798957 1.15121 0.240316 0.0988533 0.605737 1.90162 0 0.680652 3.34659 0 -0.939413 +0.25 0.0625 0.106445 -0.0798953 1.15125 0.245804 0.0952587 0.609124 1.91835 0 0.680652 3.34659 0 -0.939413 -0.21875 0.09375 0.109759 -0.0825371 1.10825 0.246717 0.0779519 0.615325 1.85704 0 0.670514 3.34772 0 -0.91051 -0.25 0.09375 0.109766 -0.0825369 1.10831 0.252407 0.0977635 0.609051 1.87437 0 0.670514 3.34772 0 -0.91051 +0.21875 0.09375 0.109819 -0.0824611 1.1156 0.245403 0.103556 0.624592 1.85804 0 0.670514 3.34772 0 -0.91051 +0.25 0.09375 0.109826 -0.08246 1.1156 0.250891 0.0962546 0.621051 1.87497 0 0.670514 3.34772 0 -0.91051 -0.1875 0.09375 0.109752 -0.0825357 1.10791 0.24165 0.0576819 0.616456 1.84133 0 0.670514 3.34772 0 -0.91051 -0.21875 0.09375 0.109759 -0.0825371 1.10825 0.246717 0.0779519 0.615325 1.85704 0 0.670514 3.34772 0 -0.91051 +0.1875 0.09375 0.109813 -0.0824604 1.11554 0.240031 0.10528 0.616982 1.84212 0 0.670514 3.34772 0 -0.91051 +0.21875 0.09375 0.109819 -0.0824611 1.1156 0.245375 0.103556 0.624592 1.85804 0 0.670514 3.34772 0 -0.91051 -0.1875 0.125 0.113228 -0.0852032 1.0722 0.246683 0.0760731 0.639126 1.79786 0 0.660055 3.34888 0 -0.882497 -0.21875 0.125 0.113234 -0.0852064 1.07239 0.251904 0.07689 0.639925 1.8134 0 0.660055 3.34888 0 -0.882497 +0.1875 0.125 0.1133 -0.0851046 1.07996 0.245071 0.107613 0.640364 1.79869 0 0.660055 3.34888 0 -0.882497 +0.21875 0.125 0.113307 -0.085106 1.07986 0.250414 0.10956 0.642893 1.81477 0 0.660055 3.34888 0 -0.882497 -0.21875 0.09375 0.109759 -0.0825371 1.10825 0.246717 0.0779519 0.615325 1.85704 0 0.670514 3.34772 0 -0.91051 -0.25 0.09375 0.109766 -0.0825369 1.10831 0.252407 0.0977635 0.609051 1.87437 0 0.670514 3.34772 0 -0.91051 +0.21875 0.09375 0.109819 -0.0824611 1.1156 0.245273 0.103556 0.624592 1.85804 0 0.670514 3.34772 0 -0.91051 +0.25 0.09375 0.109826 -0.08246 1.1156 0.250885 0.0962546 0.621051 1.87497 0 0.670514 3.34772 0 -0.91051 -0.21875 0.125 0.113234 -0.0852064 1.07239 0.251904 0.07689 0.639925 1.8134 0 0.660055 3.34888 0 -0.882497 -0.25 0.125 0.113242 -0.085206 1.07266 0.257667 0.0809758 0.6231 1.83063 0 0.660055 3.34888 0 -0.882497 +0.21875 0.125 0.113307 -0.085106 1.07986 0.250506 0.10956 0.642893 1.81477 0 0.660055 3.34888 0 -0.882497 +0.25 0.125 0.113314 -0.085105 1.07996 0.256118 0.0965452 0.638069 1.83131 0 0.660055 3.34888 0 -0.882497 -0 0.125 0.113315 -0.0849861 1.07159 0.220068 0.118068 0.621457 1.71896 0 0.660055 3.34888 0 -0.882497 -0.03125 0.125 0.113278 -0.0850655 1.07156 0.223967 0.117629 0.631041 1.7304 0 0.660055 3.34888 0 -0.882497 +0 0.125 0.113315 -0.0849861 1.07953 0.218749 0.0710183 0.656533 1.72142 0 0.660055 3.34888 0 -0.882497 +0.03125 0.125 0.1133 -0.0850279 1.07983 0.222426 0.0855434 0.654242 1.73221 0 0.660055 3.34888 0 -0.882497 -0 0.15625 0.116912 -0.0876839 1.03595 0.224572 0.138173 0.637872 1.67624 0 0.649264 3.35008 0 -0.855345 -0.03125 0.15625 0.116875 -0.0877774 1.03583 0.228578 0.140349 0.642374 1.68754 0 0.649264 3.35008 0 -0.855345 +0 0.15625 0.116912 -0.0876839 1.04388 0.223185 0.111745 0.671586 1.67837 0 0.649264 3.35008 0 -0.855345 +0.03125 0.15625 0.116897 -0.0877333 1.04391 0.226863 0.111367 0.685403 1.68927 0 0.649264 3.35008 0 -0.855345 -0.03125 0.125 0.113278 -0.0850655 1.07156 0.223967 0.117629 0.631041 1.7304 0 0.660055 3.34888 0 -0.882497 -0.0625 0.125 0.113252 -0.0851209 1.0715 0.22812 0.104874 0.644067 1.74255 0 0.660055 3.34888 0 -0.882497 +0.03125 0.125 0.1133 -0.0850279 1.07983 0.222318 0.0855434 0.654242 1.73221 0 0.660055 3.34888 0 -0.882497 +0.0625 0.125 0.113292 -0.0850574 1.0799 0.226365 0.108027 0.651933 1.74397 0 0.660055 3.34888 0 -0.882497 -0.03125 0.15625 0.116875 -0.0877774 1.03583 0.228578 0.140349 0.642374 1.68754 0 0.649264 3.35008 0 -0.855345 -0.0625 0.15625 0.116847 -0.0878438 1.03555 0.23289 0.105423 0.654371 1.69956 0 0.649264 3.35008 0 -0.855345 +0.03125 0.15625 0.116897 -0.0877333 1.04391 0.226963 0.111367 0.685403 1.68927 0 0.649264 3.35008 0 -0.855345 +0.0625 0.15625 0.11689 -0.0877695 1.04395 0.23101 0.108923 0.685979 1.70086 0 0.649264 3.35008 0 -0.855345 -0 0.15625 0.116912 -0.0876839 1.03595 0.224572 0.138173 0.637872 1.67624 0 0.649264 3.35008 0 -0.855345 -0.03125 0.15625 0.116875 -0.0877774 1.03583 0.228578 0.140349 0.642374 1.68754 0 0.649264 3.35008 0 -0.855345 +0 0.15625 0.116912 -0.0876839 1.04388 0.223046 0.111745 0.671586 1.67837 0 0.649264 3.35008 0 -0.855345 +0.03125 0.15625 0.116897 -0.0877333 1.04391 0.226919 0.111367 0.685403 1.68927 0 0.649264 3.35008 0 -0.855345 -0 0.1875 0.120623 -0.0904673 1.00031 0.228962 0.142883 0.654844 1.63303 0 0.638131 3.35132 0 -0.829029 -0.03125 0.1875 0.120589 -0.0905744 1.00018 0.233126 0.14634 0.64216 1.64441 0 0.638131 3.35132 0 -0.829029 +0 0.1875 0.120623 -0.0904673 1.0079 0.227648 0.111601 0.708881 1.63532 0 0.638131 3.35132 0 -0.829029 +0.03125 0.1875 0.12061 -0.090524 1.00797 0.231521 0.114014 0.714503 1.64625 0 0.638131 3.35132 0 -0.829029 -0.03125 0.15625 0.116875 -0.0877774 1.03583 0.228578 0.140349 0.642374 1.68754 0 0.649264 3.35008 0 -0.855345 -0.0625 0.15625 0.116847 -0.0878438 1.03555 0.23289 0.105423 0.654371 1.69956 0 0.649264 3.35008 0 -0.855345 +0.03125 0.15625 0.116897 -0.0877333 1.04391 0.226867 0.111367 0.685403 1.68927 0 0.649264 3.35008 0 -0.855345 +0.0625 0.15625 0.11689 -0.0877695 1.04395 0.231045 0.108923 0.685979 1.70086 0 0.649264 3.35008 0 -0.855345 -0.03125 0.1875 0.120589 -0.0905744 1.00018 0.233126 0.14634 0.64216 1.64441 0 0.638131 3.35132 0 -0.829029 -0.0625 0.1875 0.120561 -0.0906522 0.999908 0.237542 0.11947 0.630252 1.65634 0 0.638131 3.35132 0 -0.829029 +0.03125 0.1875 0.12061 -0.090524 1.00797 0.23157 0.114014 0.714503 1.64625 0 0.638131 3.35132 0 -0.829029 +0.0625 0.1875 0.120603 -0.0905665 1.008 0.235748 0.120823 0.710419 1.65796 0 0.638131 3.35132 0 -0.829029 -0.0625 0.125 0.113252 -0.0851209 1.0715 0.22812 0.104874 0.644067 1.74255 0 0.660055 3.34888 0 -0.882497 -0.09375 0.125 0.113235 -0.0851583 1.07166 0.232177 0.0883471 0.638205 1.75464 0 0.660055 3.34888 0 -0.882497 +0.0625 0.125 0.113292 -0.0850574 1.0799 0.226306 0.108027 0.651933 1.74397 0 0.660055 3.34888 0 -0.882497 +0.09375 0.125 0.113289 -0.0850777 1.07986 0.230603 0.119451 0.644657 1.75645 0 0.660055 3.34888 0 -0.882497 -0.0625 0.15625 0.116847 -0.0878438 1.03555 0.23289 0.105423 0.654371 1.69956 0 0.649264 3.35008 0 -0.855345 -0.09375 0.15625 0.11683 -0.0878887 1.03598 0.237109 0.0752022 0.650623 1.71201 0 0.649264 3.35008 0 -0.855345 +0.0625 0.15625 0.11689 -0.0877695 1.04395 0.231035 0.108923 0.685979 1.70086 0 0.649264 3.35008 0 -0.855345 +0.09375 0.15625 0.116888 -0.0877949 1.04404 0.235332 0.114928 0.686533 1.71329 0 0.649264 3.35008 0 -0.855345 -0.09375 0.125 0.113235 -0.0851583 1.07166 0.232177 0.0883471 0.638205 1.75464 0 0.660055 3.34888 0 -0.882497 -0.125 0.125 0.113226 -0.0851827 1.07187 0.236806 0.0911939 0.627224 1.76847 0 0.660055 3.34888 0 -0.882497 +0.09375 0.125 0.113289 -0.0850777 1.07986 0.230569 0.119451 0.644657 1.75645 0 0.660055 3.34888 0 -0.882497 +0.125 0.125 0.11329 -0.0850914 1.07977 0.235218 0.115895 0.650371 1.76969 0 0.660055 3.34888 0 -0.882497 -0.09375 0.15625 0.11683 -0.0878887 1.03598 0.237109 0.0752022 0.650623 1.71201 0 0.649264 3.35008 0 -0.855345 -0.125 0.15625 0.11682 -0.08792 1.03616 0.241722 0.0800292 0.652614 1.72535 0 0.649264 3.35008 0 -0.855345 +0.09375 0.15625 0.116888 -0.0877949 1.04404 0.235376 0.114928 0.686533 1.71329 0 0.649264 3.35008 0 -0.855345 +0.125 0.15625 0.116889 -0.0878125 1.04398 0.240024 0.123255 0.677094 1.72676 0 0.649264 3.35008 0 -0.855345 -0.0625 0.15625 0.116847 -0.0878438 1.03555 0.23289 0.105423 0.654371 1.69956 0 0.649264 3.35008 0 -0.855345 -0.09375 0.15625 0.11683 -0.0878887 1.03598 0.237109 0.0752022 0.650623 1.71201 0 0.649264 3.35008 0 -0.855345 +0.0625 0.15625 0.11689 -0.0877695 1.04395 0.230931 0.108923 0.685979 1.70086 0 0.649264 3.35008 0 -0.855345 +0.09375 0.15625 0.116888 -0.0877949 1.04404 0.235345 0.114928 0.686533 1.71329 0 0.649264 3.35008 0 -0.855345 -0.0625 0.1875 0.120561 -0.0906522 0.999908 0.237542 0.11947 0.630252 1.65634 0 0.638131 3.35132 0 -0.829029 -0.09375 0.1875 0.120543 -0.0907056 1.00018 0.241972 0.0882417 0.655321 1.66886 0 0.638131 3.35132 0 -0.829029 +0.0625 0.1875 0.120603 -0.0905665 1.008 0.23582 0.120823 0.710419 1.65796 0 0.638131 3.35132 0 -0.829029 +0.09375 0.1875 0.120601 -0.0905971 1.00793 0.240234 0.118308 0.710263 1.67034 0 0.638131 3.35132 0 -0.829029 -0.09375 0.15625 0.11683 -0.0878887 1.03598 0.237109 0.0752022 0.650623 1.71201 0 0.649264 3.35008 0 -0.855345 -0.125 0.15625 0.11682 -0.08792 1.03616 0.241722 0.0800292 0.652614 1.72535 0 0.649264 3.35008 0 -0.855345 +0.09375 0.15625 0.116888 -0.0877949 1.04404 0.235267 0.114928 0.686533 1.71329 0 0.649264 3.35008 0 -0.855345 +0.125 0.15625 0.116889 -0.0878125 1.04398 0.240021 0.123255 0.677094 1.72676 0 0.649264 3.35008 0 -0.855345 -0.09375 0.1875 0.120543 -0.0907056 1.00018 0.241972 0.0882417 0.655321 1.66886 0 0.638131 3.35132 0 -0.829029 -0.125 0.1875 0.120532 -0.0907413 1.0004 0.246646 0.0919318 0.678199 1.68198 0 0.638131 3.35132 0 -0.829029 +0.09375 0.1875 0.120601 -0.0905971 1.00793 0.240278 0.118308 0.710263 1.67034 0 0.638131 3.35132 0 -0.829029 +0.125 0.1875 0.120603 -0.0906181 1.008 0.245031 0.106741 0.698643 1.68364 0 0.638131 3.35132 0 -0.829029 -0 0.1875 0.120623 -0.0904673 1.00031 0.228962 0.142883 0.654844 1.63303 0 0.638131 3.35132 0 -0.829029 -0.03125 0.1875 0.120589 -0.0905744 1.00018 0.233126 0.14634 0.64216 1.64441 0 0.638131 3.35132 0 -0.829029 +0 0.1875 0.120623 -0.0904673 1.0079 0.22752 0.111601 0.708881 1.63532 0 0.638131 3.35132 0 -0.829029 +0.03125 0.1875 0.12061 -0.090524 1.00797 0.231529 0.114014 0.714503 1.64625 0 0.638131 3.35132 0 -0.829029 -0 0.21875 0.124452 -0.093339 0.9646 0.233522 0.113644 0.679417 1.59007 0 0.626644 3.3526 0 -0.803523 -0.03125 0.21875 0.124419 -0.0934575 0.964691 0.237603 0.123342 0.670373 1.60109 0 0.626644 3.3526 0 -0.803523 +0 0.21875 0.124452 -0.093339 0.971863 0.23224 0.122645 0.742371 1.59233 0 0.626644 3.3526 0 -0.803523 +0.03125 0.21875 0.12444 -0.0934027 0.971863 0.236249 0.118926 0.751976 1.60339 0 0.626644 3.3526 0 -0.803523 -0.03125 0.1875 0.120589 -0.0905744 1.00018 0.233126 0.14634 0.64216 1.64441 0 0.638131 3.35132 0 -0.829029 -0.0625 0.1875 0.120561 -0.0906522 0.999908 0.237542 0.11947 0.630252 1.65634 0 0.638131 3.35132 0 -0.829029 +0.03125 0.1875 0.12061 -0.090524 1.00797 0.231462 0.114014 0.714503 1.64625 0 0.638131 3.35132 0 -0.829029 +0.0625 0.1875 0.120603 -0.0905665 1.008 0.235705 0.120823 0.710419 1.65796 0 0.638131 3.35132 0 -0.829029 -0.03125 0.21875 0.124419 -0.0934575 0.964691 0.237603 0.123342 0.670373 1.60109 0 0.626644 3.3526 0 -0.803523 -0.0625 0.21875 0.124394 -0.0935443 0.9646 0.241991 0.128733 0.648211 1.61275 0 0.626644 3.3526 0 -0.803523 +0.03125 0.21875 0.12444 -0.0934027 0.971863 0.236322 0.118926 0.751976 1.60339 0 0.626644 3.3526 0 -0.803523 +0.0625 0.21875 0.124434 -0.0934509 0.971924 0.240564 0.114118 0.737422 1.61487 0 0.626644 3.3526 0 -0.803523 -0 0.21875 0.124452 -0.093339 0.9646 0.233522 0.113644 0.679417 1.59007 0 0.626644 3.3526 0 -0.803523 -0.03125 0.21875 0.124419 -0.0934575 0.964691 0.237603 0.123342 0.670373 1.60109 0 0.626644 3.3526 0 -0.803523 +0 0.21875 0.124452 -0.093339 0.971863 0.232097 0.122645 0.742371 1.59233 0 0.626644 3.3526 0 -0.803523 +0.03125 0.21875 0.12444 -0.0934027 0.971863 0.236294 0.118926 0.751976 1.60339 0 0.626644 3.3526 0 -0.803523 -0 0.25 0.128403 -0.0963019 0.928802 0.238123 0.128364 0.71366 1.54697 0 0.614792 3.35391 0 -0.778801 -0.03125 0.25 0.128372 -0.0964289 0.928802 0.242383 0.128257 0.715334 1.55803 0 0.614792 3.35391 0 -0.778801 +0 0.25 0.128403 -0.0963019 0.935638 0.236989 0.135044 0.773513 1.54968 0 0.614792 3.35391 0 -0.778801 +0.03125 0.25 0.128392 -0.0963719 0.935547 0.241186 0.116344 0.773419 1.56048 0 0.614792 3.35391 0 -0.778801 -0.03125 0.21875 0.124419 -0.0934575 0.964691 0.237603 0.123342 0.670373 1.60109 0 0.626644 3.3526 0 -0.803523 -0.0625 0.21875 0.124394 -0.0935443 0.9646 0.241991 0.128733 0.648211 1.61275 0 0.626644 3.3526 0 -0.803523 +0.03125 0.21875 0.12444 -0.0934027 0.971863 0.236235 0.118926 0.751976 1.60339 0 0.626644 3.3526 0 -0.803523 +0.0625 0.21875 0.124434 -0.0934509 0.971924 0.240548 0.114118 0.737422 1.61487 0 0.626644 3.3526 0 -0.803523 -0.03125 0.25 0.128372 -0.0964289 0.928802 0.242383 0.128257 0.715334 1.55803 0 0.614792 3.35391 0 -0.778801 -0.0625 0.25 0.128349 -0.0965254 0.928802 0.24693 0.1277 0.688927 1.56983 0 0.614792 3.35391 0 -0.778801 +0.03125 0.25 0.128392 -0.0963719 0.935547 0.241237 0.116344 0.773419 1.56048 0 0.614792 3.35391 0 -0.778801 +0.0625 0.25 0.128387 -0.0964252 0.935791 0.245551 0.102852 0.764031 1.5719 0 0.614792 3.35391 0 -0.778801 -0.0625 0.1875 0.120561 -0.0906522 0.999908 0.237542 0.11947 0.630252 1.65634 0 0.638131 3.35132 0 -0.829029 -0.09375 0.1875 0.120543 -0.0907056 1.00018 0.241972 0.0882417 0.655321 1.66886 0 0.638131 3.35132 0 -0.829029 +0.0625 0.1875 0.120603 -0.0905665 1.008 0.235698 0.120823 0.710419 1.65796 0 0.638131 3.35132 0 -0.829029 +0.09375 0.1875 0.120601 -0.0905971 1.00793 0.240226 0.118308 0.710263 1.67034 0 0.638131 3.35132 0 -0.829029 -0.0625 0.21875 0.124394 -0.0935443 0.9646 0.241991 0.128733 0.648211 1.61275 0 0.626644 3.3526 0 -0.803523 -0.09375 0.21875 0.124377 -0.093606 0.96463 0.246764 0.130588 0.669557 1.62556 0 0.626644 3.3526 0 -0.803523 +0.0625 0.21875 0.124434 -0.0934509 0.971924 0.240634 0.114118 0.737422 1.61487 0 0.626644 3.3526 0 -0.803523 +0.09375 0.21875 0.124433 -0.0934862 0.971985 0.245162 0.110117 0.726629 1.62724 0 0.626644 3.3526 0 -0.803523 -0.09375 0.1875 0.120543 -0.0907056 1.00018 0.241972 0.0882417 0.655321 1.66886 0 0.638131 3.35132 0 -0.829029 -0.125 0.1875 0.120532 -0.0907413 1.0004 0.246646 0.0919318 0.678199 1.68198 0 0.638131 3.35132 0 -0.829029 +0.09375 0.1875 0.120601 -0.0905971 1.00793 0.240206 0.118308 0.710263 1.67034 0 0.638131 3.35132 0 -0.829029 +0.125 0.1875 0.120603 -0.0906181 1.008 0.245046 0.106741 0.698643 1.68364 0 0.638131 3.35132 0 -0.829029 -0.09375 0.21875 0.124377 -0.093606 0.96463 0.246764 0.130588 0.669557 1.62556 0 0.626644 3.3526 0 -0.803523 -0.125 0.21875 0.124365 -0.0936483 0.964447 0.251725 0.10505 0.683226 1.63867 0 0.626644 3.3526 0 -0.803523 +0.09375 0.21875 0.124433 -0.0934862 0.971985 0.245189 0.110117 0.726629 1.62724 0 0.626644 3.3526 0 -0.803523 +0.125 0.21875 0.124435 -0.0935101 0.972076 0.250028 0.10132 0.717448 1.64027 0 0.626644 3.3526 0 -0.803523 -0.0625 0.21875 0.124394 -0.0935443 0.9646 0.241991 0.128733 0.648211 1.61275 0 0.626644 3.3526 0 -0.803523 -0.09375 0.21875 0.124377 -0.093606 0.96463 0.246764 0.130588 0.669557 1.62556 0 0.626644 3.3526 0 -0.803523 +0.0625 0.21875 0.124434 -0.0934509 0.971924 0.240505 0.114118 0.737422 1.61487 0 0.626644 3.3526 0 -0.803523 +0.09375 0.21875 0.124433 -0.0934862 0.971985 0.245142 0.110117 0.726629 1.62724 0 0.626644 3.3526 0 -0.803523 -0.0625 0.25 0.128349 -0.0965254 0.928802 0.24693 0.1277 0.688927 1.56983 0 0.614792 3.35391 0 -0.778801 -0.09375 0.25 0.128333 -0.0965931 0.928802 0.251686 0.124553 0.697476 1.58218 0 0.614792 3.35391 0 -0.778801 +0.0625 0.25 0.128387 -0.0964252 0.935791 0.245584 0.102852 0.764031 1.5719 0 0.614792 3.35391 0 -0.778801 +0.09375 0.25 0.128386 -0.096464 0.935883 0.250221 0.104708 0.751529 1.58415 0 0.614792 3.35391 0 -0.778801 -0.09375 0.21875 0.124377 -0.093606 0.96463 0.246764 0.130588 0.669557 1.62556 0 0.626644 3.3526 0 -0.803523 -0.125 0.21875 0.124365 -0.0936483 0.964447 0.251725 0.10505 0.683226 1.63867 0 0.626644 3.3526 0 -0.803523 +0.09375 0.21875 0.124433 -0.0934862 0.971985 0.245112 0.110117 0.726629 1.62724 0 0.626644 3.3526 0 -0.803523 +0.125 0.21875 0.124435 -0.0935101 0.972076 0.250006 0.10132 0.717448 1.64027 0 0.626644 3.3526 0 -0.803523 -0.09375 0.25 0.128333 -0.0965931 0.928802 0.251686 0.124553 0.697476 1.58218 0 0.614792 3.35391 0 -0.778801 -0.125 0.25 0.128321 -0.0966416 0.928864 0.256794 0.127597 0.702464 1.5955 0 0.614792 3.35391 0 -0.778801 +0.09375 0.25 0.128386 -0.096464 0.935883 0.250278 0.104708 0.751529 1.58415 0 0.614792 3.35391 0 -0.778801 +0.125 0.25 0.128389 -0.0964907 0.936066 0.255172 0.107938 0.750163 1.59715 0 0.614792 3.35391 0 -0.778801 -0.125 0.125 0.113226 -0.0851827 1.07187 0.236806 0.0911939 0.627224 1.76847 0 0.660055 3.34888 0 -0.882497 -0.15625 0.125 0.113225 -0.0851962 1.0719 0.241527 0.0851931 0.614483 1.78239 0 0.660055 3.34888 0 -0.882497 +0.125 0.125 0.11329 -0.0850914 1.07977 0.235113 0.115895 0.650371 1.76969 0 0.660055 3.34888 0 -0.882497 +0.15625 0.125 0.113294 -0.0850997 1.0798 0.239985 0.102854 0.655017 1.78388 0 0.660055 3.34888 0 -0.882497 -0.125 0.15625 0.11682 -0.08792 1.03616 0.241722 0.0800292 0.652614 1.72535 0 0.649264 3.35008 0 -0.855345 -0.15625 0.15625 0.116817 -0.0879393 1.03644 0.246602 0.0888642 0.643996 1.73954 0 0.649264 3.35008 0 -0.855345 +0.125 0.15625 0.116889 -0.0878125 1.04398 0.240108 0.123255 0.677094 1.72676 0 0.649264 3.35008 0 -0.855345 +0.15625 0.15625 0.116893 -0.0878235 1.04388 0.24498 0.1068 0.669715 1.74067 0 0.649264 3.35008 0 -0.855345 -0.15625 0.125 0.113225 -0.0851962 1.0719 0.241527 0.0851931 0.614483 1.78239 0 0.660055 3.34888 0 -0.882497 -0.1875 0.125 0.113228 -0.0852032 1.0722 0.246683 0.0760731 0.639126 1.79786 0 0.660055 3.34888 0 -0.882497 +0.15625 0.125 0.113294 -0.0850997 1.0798 0.239938 0.102854 0.655017 1.78388 0 0.660055 3.34888 0 -0.882497 +0.1875 0.125 0.1133 -0.0851046 1.07996 0.24495 0.107613 0.640364 1.79869 0 0.660055 3.34888 0 -0.882497 -0.15625 0.15625 0.116817 -0.0879393 1.03644 0.246602 0.0888642 0.643996 1.73954 0 0.649264 3.35008 0 -0.855345 -0.1875 0.15625 0.116818 -0.0879506 1.03647 0.251698 0.0866703 0.656405 1.7541 0 0.649264 3.35008 0 -0.855345 +0.15625 0.15625 0.116893 -0.0878235 1.04388 0.245084 0.1068 0.669715 1.74067 0 0.649264 3.35008 0 -0.855345 +0.1875 0.15625 0.116899 -0.0878302 1.04413 0.250095 0.100443 0.670835 1.75545 0 0.649264 3.35008 0 -0.855345 -0.125 0.15625 0.11682 -0.08792 1.03616 0.241722 0.0800292 0.652614 1.72535 0 0.649264 3.35008 0 -0.855345 -0.15625 0.15625 0.116817 -0.0879393 1.03644 0.246602 0.0888642 0.643996 1.73954 0 0.649264 3.35008 0 -0.855345 +0.125 0.15625 0.116889 -0.0878125 1.04398 0.240025 0.123255 0.677094 1.72676 0 0.649264 3.35008 0 -0.855345 +0.15625 0.15625 0.116893 -0.0878235 1.04388 0.244991 0.1068 0.669715 1.74067 0 0.649264 3.35008 0 -0.855345 -0.125 0.1875 0.120532 -0.0907413 1.0004 0.246646 0.0919318 0.678199 1.68198 0 0.638131 3.35132 0 -0.829029 -0.15625 0.1875 0.120527 -0.0907661 1.00052 0.251664 0.0940572 0.670667 1.69597 0 0.638131 3.35132 0 -0.829029 +0.125 0.1875 0.120603 -0.0906181 1.008 0.245046 0.106741 0.698643 1.68364 0 0.638131 3.35132 0 -0.829029 +0.15625 0.1875 0.120607 -0.0906316 1.00812 0.250013 0.101558 0.680965 1.69734 0 0.638131 3.35132 0 -0.829029 -0.15625 0.15625 0.116817 -0.0879393 1.03644 0.246602 0.0888642 0.643996 1.73954 0 0.649264 3.35008 0 -0.855345 -0.1875 0.15625 0.116818 -0.0879506 1.03647 0.251698 0.0866703 0.656405 1.7541 0 0.649264 3.35008 0 -0.855345 +0.15625 0.15625 0.116893 -0.0878235 1.04388 0.244947 0.1068 0.669715 1.74067 0 0.649264 3.35008 0 -0.855345 +0.1875 0.15625 0.116899 -0.0878302 1.04413 0.250131 0.100443 0.670835 1.75545 0 0.649264 3.35008 0 -0.855345 -0.15625 0.1875 0.120527 -0.0907661 1.00052 0.251664 0.0940572 0.670667 1.69597 0 0.638131 3.35132 0 -0.829029 -0.1875 0.1875 0.120527 -0.0907802 1.00067 0.257076 0.0826249 0.669021 1.71108 0 0.638131 3.35132 0 -0.829029 +0.15625 0.1875 0.120607 -0.0906316 1.00812 0.250104 0.101558 0.680965 1.69734 0 0.638131 3.35132 0 -0.829029 +0.1875 0.1875 0.120613 -0.0906396 1.00824 0.255288 0.10234 0.691678 1.71216 0 0.638131 3.35132 0 -0.829029 -0.1875 0.125 0.113228 -0.0852032 1.0722 0.246683 0.0760731 0.639126 1.79786 0 0.660055 3.34888 0 -0.882497 -0.21875 0.125 0.113234 -0.0852064 1.07239 0.251904 0.07689 0.639925 1.8134 0 0.660055 3.34888 0 -0.882497 +0.1875 0.125 0.1133 -0.0851046 1.07996 0.244934 0.107613 0.640364 1.79869 0 0.660055 3.34888 0 -0.882497 +0.21875 0.125 0.113307 -0.085106 1.07986 0.250448 0.10956 0.642893 1.81477 0 0.660055 3.34888 0 -0.882497 -0.1875 0.15625 0.116818 -0.0879506 1.03647 0.251698 0.0866703 0.656405 1.7541 0 0.649264 3.35008 0 -0.855345 -0.21875 0.15625 0.116823 -0.0879551 1.03677 0.257227 0.0747461 0.651702 1.77017 0 0.649264 3.35008 0 -0.855345 +0.1875 0.15625 0.116899 -0.0878302 1.04413 0.250152 0.100443 0.670835 1.75545 0 0.649264 3.35008 0 -0.855345 +0.21875 0.15625 0.116906 -0.0878327 1.04413 0.255667 0.109008 0.659237 1.7712 0 0.649264 3.35008 0 -0.855345 -0.21875 0.125 0.113234 -0.0852064 1.07239 0.251904 0.07689 0.639925 1.8134 0 0.660055 3.34888 0 -0.882497 -0.25 0.125 0.113242 -0.085206 1.07266 0.257667 0.0809758 0.6231 1.83063 0 0.660055 3.34888 0 -0.882497 +0.21875 0.125 0.113307 -0.085106 1.07986 0.250443 0.10956 0.642893 1.81477 0 0.660055 3.34888 0 -0.882497 +0.25 0.125 0.113314 -0.085105 1.07996 0.2562 0.0965452 0.638069 1.83131 0 0.660055 3.34888 0 -0.882497 -0.21875 0.15625 0.116823 -0.0879551 1.03677 0.257227 0.0747461 0.651702 1.77017 0 0.649264 3.35008 0 -0.855345 -0.25 0.15625 0.11683 -0.0879562 1.03711 0.262926 0.106149 0.646589 1.78675 0 0.649264 3.35008 0 -0.855345 +0.21875 0.15625 0.116906 -0.0878327 1.04413 0.255765 0.109008 0.659237 1.7712 0 0.649264 3.35008 0 -0.855345 +0.25 0.15625 0.116914 -0.0878319 1.04422 0.261521 0.116287 0.663318 1.78797 0 0.649264 3.35008 0 -0.855345 -0.1875 0.15625 0.116818 -0.0879506 1.03647 0.251698 0.0866703 0.656405 1.7541 0 0.649264 3.35008 0 -0.855345 -0.21875 0.15625 0.116823 -0.0879551 1.03677 0.257227 0.0747461 0.651702 1.77017 0 0.649264 3.35008 0 -0.855345 +0.1875 0.15625 0.116899 -0.0878302 1.04413 0.250058 0.100443 0.670835 1.75545 0 0.649264 3.35008 0 -0.855345 +0.21875 0.15625 0.116906 -0.0878327 1.04413 0.255669 0.109008 0.659237 1.7712 0 0.649264 3.35008 0 -0.855345 -0.1875 0.1875 0.120527 -0.0907802 1.00067 0.257076 0.0826249 0.669021 1.71108 0 0.638131 3.35132 0 -0.829029 -0.21875 0.1875 0.120529 -0.090786 1.00098 0.262565 0.0734466 0.680669 1.72656 0 0.638131 3.35132 0 -0.829029 +0.1875 0.1875 0.120613 -0.0906396 1.00824 0.255385 0.10234 0.691678 1.71216 0 0.638131 3.35132 0 -0.829029 +0.21875 0.1875 0.120621 -0.090643 1.00836 0.260995 0.112036 0.69021 1.728 0 0.638131 3.35132 0 -0.829029 -0.21875 0.15625 0.116823 -0.0879551 1.03677 0.257227 0.0747461 0.651702 1.77017 0 0.649264 3.35008 0 -0.855345 -0.25 0.15625 0.11683 -0.0879562 1.03711 0.262926 0.106149 0.646589 1.78675 0 0.649264 3.35008 0 -0.855345 +0.21875 0.15625 0.116906 -0.0878327 1.04413 0.255594 0.109008 0.659237 1.7712 0 0.649264 3.35008 0 -0.855345 +0.25 0.15625 0.116914 -0.0878319 1.04422 0.26156 0.116287 0.663318 1.78797 0 0.649264 3.35008 0 -0.855345 -0.21875 0.1875 0.120529 -0.090786 1.00098 0.262565 0.0734466 0.680669 1.72656 0 0.638131 3.35132 0 -0.829029 -0.25 0.1875 0.120535 -0.090787 1.00131 0.268628 0.0913436 0.687145 1.74365 0 0.638131 3.35132 0 -0.829029 +0.21875 0.1875 0.120621 -0.090643 1.00836 0.26108 0.112036 0.69021 1.728 0 0.638131 3.35132 0 -0.829029 +0.25 0.1875 0.120629 -0.0906427 1.00836 0.267047 0.128461 0.689018 1.74469 0 0.638131 3.35132 0 -0.829029 -0.125 0.1875 0.120532 -0.0907413 1.0004 0.246646 0.0919318 0.678199 1.68198 0 0.638131 3.35132 0 -0.829029 -0.15625 0.1875 0.120527 -0.0907661 1.00052 0.251664 0.0940572 0.670667 1.69597 0 0.638131 3.35132 0 -0.829029 +0.125 0.1875 0.120603 -0.0906181 1.008 0.24501 0.106741 0.698643 1.68364 0 0.638131 3.35132 0 -0.829029 +0.15625 0.1875 0.120607 -0.0906316 1.00812 0.250011 0.101558 0.680965 1.69734 0 0.638131 3.35132 0 -0.829029 -0.125 0.21875 0.124365 -0.0936483 0.964447 0.251725 0.10505 0.683226 1.63867 0 0.626644 3.3526 0 -0.803523 -0.15625 0.21875 0.124358 -0.0936765 0.964874 0.256896 0.0858535 0.696635 1.65295 0 0.626644 3.3526 0 -0.803523 +0.125 0.21875 0.124435 -0.0935101 0.972076 0.250087 0.10132 0.717448 1.64027 0 0.626644 3.3526 0 -0.803523 +0.15625 0.21875 0.12444 -0.0935256 0.97229 0.255089 0.104654 0.721035 1.65425 0 0.626644 3.3526 0 -0.803523 -0.15625 0.1875 0.120527 -0.0907661 1.00052 0.251664 0.0940572 0.670667 1.69597 0 0.638131 3.35132 0 -0.829029 -0.1875 0.1875 0.120527 -0.0907802 1.00067 0.257076 0.0826249 0.669021 1.71108 0 0.638131 3.35132 0 -0.829029 +0.15625 0.1875 0.120607 -0.0906316 1.00812 0.249933 0.101558 0.680965 1.69734 0 0.638131 3.35132 0 -0.829029 +0.1875 0.1875 0.120613 -0.0906396 1.00824 0.255354 0.10234 0.691678 1.71216 0 0.638131 3.35132 0 -0.829029 -0.15625 0.21875 0.124358 -0.0936765 0.964874 0.256896 0.0858535 0.696635 1.65295 0 0.626644 3.3526 0 -0.803523 -0.1875 0.21875 0.124356 -0.0936927 0.964996 0.262216 0.100727 0.705631 1.66732 0 0.626644 3.3526 0 -0.803523 +0.15625 0.21875 0.12444 -0.0935256 0.97229 0.255185 0.104654 0.721035 1.65425 0 0.626644 3.3526 0 -0.803523 +0.1875 0.21875 0.124447 -0.0935347 0.972321 0.260605 0.11253 0.712505 1.66866 0 0.626644 3.3526 0 -0.803523 -0.125 0.21875 0.124365 -0.0936483 0.964447 0.251725 0.10505 0.683226 1.63867 0 0.626644 3.3526 0 -0.803523 -0.15625 0.21875 0.124358 -0.0936765 0.964874 0.256896 0.0858535 0.696635 1.65295 0 0.626644 3.3526 0 -0.803523 +0.125 0.21875 0.124435 -0.0935101 0.972076 0.249949 0.10132 0.717448 1.64027 0 0.626644 3.3526 0 -0.803523 +0.15625 0.21875 0.12444 -0.0935256 0.97229 0.25513 0.104654 0.721035 1.65425 0 0.626644 3.3526 0 -0.803523 -0.125 0.25 0.128321 -0.0966416 0.928864 0.256794 0.127597 0.702464 1.5955 0 0.614792 3.35391 0 -0.778801 -0.15625 0.25 0.128313 -0.0966728 0.928802 0.262259 0.12775 0.730469 1.60963 0 0.614792 3.35391 0 -0.778801 +0.125 0.25 0.128389 -0.0964907 0.936066 0.255255 0.107938 0.750163 1.59715 0 0.614792 3.35391 0 -0.778801 +0.15625 0.25 0.128395 -0.0965078 0.936096 0.260437 0.103939 0.757181 1.61077 0 0.614792 3.35391 0 -0.778801 -0.15625 0.21875 0.124358 -0.0936765 0.964874 0.256896 0.0858535 0.696635 1.65295 0 0.626644 3.3526 0 -0.803523 -0.1875 0.21875 0.124356 -0.0936927 0.964996 0.262216 0.100727 0.705631 1.66732 0 0.626644 3.3526 0 -0.803523 +0.15625 0.21875 0.12444 -0.0935256 0.97229 0.255099 0.104654 0.721035 1.65425 0 0.626644 3.3526 0 -0.803523 +0.1875 0.21875 0.124447 -0.0935347 0.972321 0.260594 0.11253 0.712505 1.66866 0 0.626644 3.3526 0 -0.803523 -0.15625 0.25 0.128313 -0.0966728 0.928802 0.262259 0.12775 0.730469 1.60963 0 0.614792 3.35391 0 -0.778801 -0.1875 0.25 0.128308 -0.096693 0.928802 0.268037 0.104352 0.734222 1.62463 0 0.614792 3.35391 0 -0.778801 +0.15625 0.25 0.128395 -0.0965078 0.936096 0.260509 0.103939 0.757181 1.61077 0 0.614792 3.35391 0 -0.778801 +0.1875 0.25 0.128402 -0.0965175 0.936432 0.266004 0.129824 0.769775 1.62577 0 0.614792 3.35391 0 -0.778801 -0.1875 0.1875 0.120527 -0.0907802 1.00067 0.257076 0.0826249 0.669021 1.71108 0 0.638131 3.35132 0 -0.829029 -0.21875 0.1875 0.120529 -0.090786 1.00098 0.262565 0.0734466 0.680669 1.72656 0 0.638131 3.35132 0 -0.829029 +0.1875 0.1875 0.120613 -0.0906396 1.00824 0.255263 0.10234 0.691678 1.71216 0 0.638131 3.35132 0 -0.829029 +0.21875 0.1875 0.120621 -0.090643 1.00836 0.261024 0.112036 0.69021 1.728 0 0.638131 3.35132 0 -0.829029 -0.1875 0.21875 0.124356 -0.0936927 0.964996 0.262216 0.100727 0.705631 1.66732 0 0.626644 3.3526 0 -0.803523 -0.21875 0.21875 0.124357 -0.0937006 0.965088 0.268282 0.0942358 0.709114 1.68366 0 0.626644 3.3526 0 -0.803523 +0.1875 0.21875 0.124447 -0.0935347 0.972321 0.260685 0.11253 0.712505 1.66866 0 0.626644 3.3526 0 -0.803523 +0.21875 0.21875 0.124455 -0.0935389 0.972412 0.266446 0.114321 0.745621 1.68483 0 0.626644 3.3526 0 -0.803523 -0.21875 0.1875 0.120529 -0.090786 1.00098 0.262565 0.0734466 0.680669 1.72656 0 0.638131 3.35132 0 -0.829029 -0.25 0.1875 0.120535 -0.090787 1.00131 0.268628 0.0913436 0.687145 1.74365 0 0.638131 3.35132 0 -0.829029 +0.21875 0.1875 0.120621 -0.090643 1.00836 0.260963 0.112036 0.69021 1.728 0 0.638131 3.35132 0 -0.829029 +0.25 0.1875 0.120629 -0.0906427 1.00836 0.267113 0.128461 0.689018 1.74469 0 0.638131 3.35132 0 -0.829029 -0.21875 0.21875 0.124357 -0.0937006 0.965088 0.268282 0.0942358 0.709114 1.68366 0 0.626644 3.3526 0 -0.803523 -0.25 0.21875 0.124359 -0.0937029 0.965332 0.274092 0.0822069 0.722605 1.69946 0 0.626644 3.3526 0 -0.803523 +0.21875 0.21875 0.124455 -0.0935389 0.972412 0.266579 0.114321 0.745621 1.68483 0 0.626644 3.3526 0 -0.803523 +0.25 0.21875 0.124463 -0.0935391 0.972473 0.27273 0.127721 0.724592 1.70132 0 0.626644 3.3526 0 -0.803523 -0.1875 0.21875 0.124356 -0.0936927 0.964996 0.262216 0.100727 0.705631 1.66732 0 0.626644 3.3526 0 -0.803523 -0.21875 0.21875 0.124357 -0.0937006 0.965088 0.268282 0.0942358 0.709114 1.68366 0 0.626644 3.3526 0 -0.803523 +0.1875 0.21875 0.124447 -0.0935347 0.972321 0.260479 0.11253 0.712505 1.66866 0 0.626644 3.3526 0 -0.803523 +0.21875 0.21875 0.124455 -0.0935389 0.972412 0.266587 0.114321 0.745621 1.68483 0 0.626644 3.3526 0 -0.803523 -0.1875 0.25 0.128308 -0.096693 0.928802 0.268037 0.104352 0.734222 1.62463 0 0.614792 3.35391 0 -0.778801 -0.21875 0.25 0.128307 -0.0967023 0.929108 0.273923 0.0916796 0.742117 1.64021 0 0.614792 3.35391 0 -0.778801 +0.1875 0.25 0.128402 -0.0965175 0.936432 0.26613 0.129824 0.769775 1.62577 0 0.614792 3.35391 0 -0.778801 +0.21875 0.25 0.128411 -0.0965229 0.936005 0.272238 0.129191 0.78024 1.64141 0 0.614792 3.35391 0 -0.778801 -0.21875 0.21875 0.124357 -0.0937006 0.965088 0.268282 0.0942358 0.709114 1.68366 0 0.626644 3.3526 0 -0.803523 -0.25 0.21875 0.124359 -0.0937029 0.965332 0.274092 0.0822069 0.722605 1.69946 0 0.626644 3.3526 0 -0.803523 +0.21875 0.21875 0.124455 -0.0935389 0.972412 0.266495 0.114321 0.745621 1.68483 0 0.626644 3.3526 0 -0.803523 +0.25 0.21875 0.124463 -0.0935391 0.972473 0.272716 0.127721 0.724592 1.70132 0 0.626644 3.3526 0 -0.803523 -0.21875 0.25 0.128307 -0.0967023 0.929108 0.273923 0.0916796 0.742117 1.64021 0 0.614792 3.35391 0 -0.778801 -0.25 0.25 0.128308 -0.0967055 0.92923 0.280258 0.0816676 0.743571 1.65678 0 0.614792 3.35391 0 -0.778801 +0.21875 0.25 0.128411 -0.0965229 0.936005 0.272393 0.129191 0.78024 1.64141 0 0.614792 3.35391 0 -0.778801 +0.25 0.25 0.128419 -0.0965236 0.936401 0.278614 0.120798 0.79202 1.65817 0 0.614792 3.35391 0 -0.778801 -0.25 0 0.1 -0.075 1.21466 0.237545 0.0821846 0.566691 2.00648 0 0.7 3.34444 0 -1 -0.28125 0 0.1 -0.075 1.21478 0.243102 0.0801473 0.566545 2.02512 0 0.7 3.34444 0 -1 +0.25 0 0.1 -0.075 1.22229 0.235833 0.0937638 0.572495 2.00593 0 0.7 3.34444 0 -1 +0.28125 0 0.1 -0.075 1.22241 0.241262 0.0899062 0.581936 2.02371 0 0.7 3.34444 0 -1 -0.25 0.03125 0.103149 -0.0774347 1.1792 0.242395 0.0853862 0.568962 1.96232 0 0.690477 3.3455 0 -0.969233 -0.28125 0.03125 0.103154 -0.0774343 1.17932 0.247961 0.0762287 0.568525 1.98043 0 0.690477 3.3455 0 -0.969233 +0.25 0.03125 0.103171 -0.0774092 1.18689 0.240786 0.0955466 0.587115 1.96214 0 0.690477 3.3455 0 -0.969233 +0.28125 0.03125 0.103174 -0.0774088 1.18692 0.246215 0.0989788 0.587249 1.97988 0 0.690477 3.3455 0 -0.969233 -0.28125 0 0.1 -0.075 1.21478 0.243102 0.0801473 0.566545 2.02512 0 0.7 3.34444 0 -1 -0.3125 0 0.1 -0.075 1.21494 0.248658 0.0826848 0.552428 2.04379 0 0.7 3.34444 0 -1 +0.28125 0 0.1 -0.075 1.22241 0.241147 0.0899062 0.581936 2.02371 0 0.7 3.34444 0 -1 +0.3125 0 0.1 -0.075 1.22244 0.246928 0.0927083 0.585108 2.04271 0 0.7 3.34444 0 -1 -0.28125 0.03125 0.103154 -0.0774343 1.17932 0.247961 0.0762287 0.568525 1.98043 0 0.690477 3.3455 0 -0.969233 -0.3125 0.03125 0.103158 -0.0774335 1.17963 0.253769 0.0918561 0.572504 1.9995 0 0.690477 3.3455 0 -0.969233 +0.28125 0.03125 0.103174 -0.0774088 1.18692 0.246318 0.0989788 0.587249 1.97988 0 0.690477 3.3455 0 -0.969233 +0.3125 0.03125 0.103177 -0.077408 1.18692 0.2521 0.0951788 0.587367 1.99896 0 0.690477 3.3455 0 -0.969233 -0.25 0.03125 0.103149 -0.0774347 1.1792 0.242395 0.0853862 0.568962 1.96232 0 0.690477 3.3455 0 -0.969233 -0.28125 0.03125 0.103154 -0.0774343 1.17932 0.247961 0.0762287 0.568525 1.98043 0 0.690477 3.3455 0 -0.969233 +0.25 0.03125 0.103171 -0.0774092 1.18689 0.240674 0.0955466 0.587115 1.96214 0 0.690477 3.3455 0 -0.969233 +0.28125 0.03125 0.103174 -0.0774088 1.18692 0.246262 0.0989788 0.587249 1.97988 0 0.690477 3.3455 0 -0.969233 -0.25 0.0625 0.106403 -0.0799472 1.14386 0.247293 0.0792683 0.583005 1.91823 0 0.680652 3.34659 0 -0.939413 -0.28125 0.0625 0.106411 -0.0799459 1.14401 0.253048 0.0910148 0.589917 1.9364 0 0.680652 3.34659 0 -0.939413 +0.25 0.0625 0.106445 -0.0798953 1.15125 0.245815 0.0952587 0.609124 1.91835 0 0.680652 3.34659 0 -0.939413 +0.28125 0.0625 0.106451 -0.0798945 1.15137 0.251403 0.094995 0.600893 1.93628 0 0.680652 3.34659 0 -0.939413 -0.28125 0.03125 0.103154 -0.0774343 1.17932 0.247961 0.0762287 0.568525 1.98043 0 0.690477 3.3455 0 -0.969233 -0.3125 0.03125 0.103158 -0.0774335 1.17963 0.253769 0.0918561 0.572504 1.9995 0 0.690477 3.3455 0 -0.969233 +0.28125 0.03125 0.103174 -0.0774088 1.18692 0.246172 0.0989788 0.587249 1.97988 0 0.690477 3.3455 0 -0.969233 +0.3125 0.03125 0.103177 -0.077408 1.18692 0.252175 0.0951788 0.587367 1.99896 0 0.690477 3.3455 0 -0.969233 -0.28125 0.0625 0.106411 -0.0799459 1.14401 0.253048 0.0910148 0.589917 1.9364 0 0.680652 3.34659 0 -0.939413 -0.3125 0.0625 0.106418 -0.0799439 1.14404 0.259079 0.0987964 0.591014 1.95532 0 0.680652 3.34659 0 -0.939413 +0.28125 0.0625 0.106451 -0.0798945 1.15137 0.251464 0.094995 0.600893 1.93628 0 0.680652 3.34659 0 -0.939413 +0.3125 0.0625 0.106455 -0.0798931 1.1514 0.257467 0.0970333 0.598559 1.95515 0 0.680652 3.34659 0 -0.939413 -0.3125 0 0.1 -0.075 1.21494 0.248658 0.0826848 0.552428 2.04379 0 0.7 3.34444 0 -1 -0.34375 0 0.1 -0.075 1.21503 0.254751 0.0906131 0.582563 2.0642 0 0.7 3.34444 0 -1 +0.3125 0 0.1 -0.075 1.22244 0.246855 0.0927083 0.585108 2.04271 0 0.7 3.34444 0 -1 +0.34375 0 0.1 -0.075 1.2225 0.252965 0.0946455 0.578351 2.06274 0 0.7 3.34444 0 -1 -0.3125 0.03125 0.103158 -0.0774335 1.17963 0.253769 0.0918561 0.572504 1.9995 0 0.690477 3.3455 0 -0.969233 -0.34375 0.03125 0.103161 -0.0774321 1.17944 0.260105 0.10013 0.57952 2.01979 0 0.690477 3.3455 0 -0.969233 +0.3125 0.03125 0.103177 -0.077408 1.18692 0.252223 0.0951788 0.587367 1.99896 0 0.690477 3.3455 0 -0.969233 +0.34375 0.03125 0.103179 -0.0774074 1.18704 0.258333 0.0973067 0.585891 2.01903 0 0.690477 3.3455 0 -0.969233 -0.34375 0 0.1 -0.075 1.21503 0.254751 0.0906131 0.582563 2.0642 0 0.7 3.34444 0 -1 -0.375 0 0.1 -0.075 1.21509 0.26116 0.107651 0.575742 2.08562 0 0.7 3.34444 0 -1 +0.34375 0 0.1 -0.075 1.2225 0.252864 0.0946455 0.578351 2.06274 0 0.7 3.34444 0 -1 +0.375 0 0.1 -0.075 1.22253 0.259402 0.103438 0.585428 2.08408 0 0.7 3.34444 0 -1 -0.34375 0.03125 0.103161 -0.0774321 1.17944 0.260105 0.10013 0.57952 2.01979 0 0.690477 3.3455 0 -0.969233 -0.375 0.03125 0.103164 -0.0774305 1.17957 0.266685 0.0773536 0.577589 2.04117 0 0.690477 3.3455 0 -0.969233 +0.34375 0.03125 0.103179 -0.0774074 1.18704 0.258438 0.0973067 0.585891 2.01903 0 0.690477 3.3455 0 -0.969233 +0.375 0.03125 0.103182 -0.0774068 1.18701 0.264977 0.104383 0.588328 2.04047 0 0.690477 3.3455 0 -0.969233 -0.3125 0.03125 0.103158 -0.0774335 1.17963 0.253769 0.0918561 0.572504 1.9995 0 0.690477 3.3455 0 -0.969233 -0.34375 0.03125 0.103161 -0.0774321 1.17944 0.260105 0.10013 0.57952 2.01979 0 0.690477 3.3455 0 -0.969233 +0.3125 0.03125 0.103177 -0.077408 1.18692 0.252096 0.0951788 0.587367 1.99896 0 0.690477 3.3455 0 -0.969233 +0.34375 0.03125 0.103179 -0.0774074 1.18704 0.258395 0.0973067 0.585891 2.01903 0 0.690477 3.3455 0 -0.969233 -0.3125 0.0625 0.106418 -0.0799439 1.14404 0.259079 0.0987964 0.591014 1.95532 0 0.680652 3.34659 0 -0.939413 -0.34375 0.0625 0.106424 -0.0799415 1.14407 0.265547 0.0952975 0.58296 1.9756 0 0.680652 3.34659 0 -0.939413 +0.3125 0.0625 0.106455 -0.0798931 1.1514 0.257563 0.0970333 0.598559 1.95515 0 0.680652 3.34659 0 -0.939413 +0.34375 0.0625 0.10646 -0.0798917 1.15149 0.263862 0.0997772 0.605723 1.97527 0 0.680652 3.34659 0 -0.939413 -0.34375 0.03125 0.103161 -0.0774321 1.17944 0.260105 0.10013 0.57952 2.01979 0 0.690477 3.3455 0 -0.969233 -0.375 0.03125 0.103164 -0.0774305 1.17957 0.266685 0.0773536 0.577589 2.04117 0 0.690477 3.3455 0 -0.969233 +0.34375 0.03125 0.103179 -0.0774074 1.18704 0.258288 0.0973067 0.585891 2.01903 0 0.690477 3.3455 0 -0.969233 +0.375 0.03125 0.103182 -0.0774068 1.18701 0.265067 0.104383 0.588328 2.04047 0 0.690477 3.3455 0 -0.969233 -0.34375 0.0625 0.106424 -0.0799415 1.14407 0.265547 0.0952975 0.58296 1.9756 0 0.680652 3.34659 0 -0.939413 -0.375 0.0625 0.106429 -0.0799376 1.1442 0.272462 0.0953051 0.597247 1.99738 0 0.680652 3.34659 0 -0.939413 +0.34375 0.0625 0.10646 -0.0798917 1.15149 0.263942 0.0997772 0.605723 1.97527 0 0.680652 3.34659 0 -0.939413 +0.375 0.0625 0.106464 -0.0798903 1.15149 0.270721 0.104575 0.604002 1.99658 0 0.680652 3.34659 0 -0.939413 -0.25 0.0625 0.106403 -0.0799472 1.14386 0.247293 0.0792683 0.583005 1.91823 0 0.680652 3.34659 0 -0.939413 -0.28125 0.0625 0.106411 -0.0799459 1.14401 0.253048 0.0910148 0.589917 1.9364 0 0.680652 3.34659 0 -0.939413 +0.25 0.0625 0.106445 -0.0798953 1.15125 0.245665 0.0952587 0.609124 1.91835 0 0.680652 3.34659 0 -0.939413 +0.28125 0.0625 0.106451 -0.0798945 1.15137 0.251424 0.094995 0.600893 1.93628 0 0.680652 3.34659 0 -0.939413 -0.25 0.09375 0.109766 -0.0825369 1.10831 0.252407 0.0977635 0.609051 1.87437 0 0.670514 3.34772 0 -0.91051 -0.28125 0.09375 0.109775 -0.0825354 1.10831 0.258436 0.0890716 0.612981 1.89267 0 0.670514 3.34772 0 -0.91051 +0.25 0.09375 0.109826 -0.08246 1.1156 0.250939 0.0962546 0.621051 1.87497 0 0.670514 3.34772 0 -0.91051 +0.28125 0.09375 0.109832 -0.0824587 1.11578 0.256698 0.0932423 0.619475 1.89251 0 0.670514 3.34772 0 -0.91051 -0.28125 0.0625 0.106411 -0.0799459 1.14401 0.253048 0.0910148 0.589917 1.9364 0 0.680652 3.34659 0 -0.939413 -0.3125 0.0625 0.106418 -0.0799439 1.14404 0.259079 0.0987964 0.591014 1.95532 0 0.680652 3.34659 0 -0.939413 +0.28125 0.0625 0.106451 -0.0798945 1.15137 0.251367 0.094995 0.600893 1.93628 0 0.680652 3.34659 0 -0.939413 +0.3125 0.0625 0.106455 -0.0798931 1.1514 0.257518 0.0970333 0.598559 1.95515 0 0.680652 3.34659 0 -0.939413 -0.28125 0.09375 0.109775 -0.0825354 1.10831 0.258436 0.0890716 0.612981 1.89267 0 0.670514 3.34772 0 -0.91051 -0.3125 0.09375 0.109783 -0.0825323 1.10861 0.264512 0.0950782 0.614282 1.91141 0 0.670514 3.34772 0 -0.91051 +0.28125 0.09375 0.109832 -0.0824587 1.11578 0.25676 0.0932423 0.619475 1.89251 0 0.670514 3.34772 0 -0.91051 +0.3125 0.09375 0.109838 -0.0824565 1.11584 0.262911 0.101879 0.62456 1.91143 0 0.670514 3.34772 0 -0.91051 -0.25 0.09375 0.109766 -0.0825369 1.10831 0.252407 0.0977635 0.609051 1.87437 0 0.670514 3.34772 0 -0.91051 -0.28125 0.09375 0.109775 -0.0825354 1.10831 0.258436 0.0890716 0.612981 1.89267 0 0.670514 3.34772 0 -0.91051 +0.25 0.09375 0.109826 -0.08246 1.1156 0.250864 0.0962546 0.621051 1.87497 0 0.670514 3.34772 0 -0.91051 +0.28125 0.09375 0.109832 -0.0824587 1.11578 0.25674 0.0932423 0.619475 1.89251 0 0.670514 3.34772 0 -0.91051 -0.25 0.125 0.113242 -0.085206 1.07266 0.257667 0.0809758 0.6231 1.83063 0 0.660055 3.34888 0 -0.882497 -0.28125 0.125 0.11325 -0.0852036 1.07281 0.263604 0.0947285 0.638998 1.84825 0 0.660055 3.34888 0 -0.882497 +0.25 0.125 0.113314 -0.085105 1.07996 0.256204 0.0965452 0.638069 1.83131 0 0.660055 3.34888 0 -0.882497 +0.28125 0.125 0.113321 -0.085103 1.08014 0.262079 0.105555 0.656193 1.84916 0 0.660055 3.34888 0 -0.882497 -0.28125 0.09375 0.109775 -0.0825354 1.10831 0.258436 0.0890716 0.612981 1.89267 0 0.670514 3.34772 0 -0.91051 -0.3125 0.09375 0.109783 -0.0825323 1.10861 0.264512 0.0950782 0.614282 1.91141 0 0.670514 3.34772 0 -0.91051 +0.28125 0.09375 0.109832 -0.0824587 1.11578 0.256598 0.0932423 0.619475 1.89251 0 0.670514 3.34772 0 -0.91051 +0.3125 0.09375 0.109838 -0.0824565 1.11584 0.262985 0.101879 0.62456 1.91143 0 0.670514 3.34772 0 -0.91051 -0.28125 0.125 0.11325 -0.0852036 1.07281 0.263604 0.0947285 0.638998 1.84825 0 0.660055 3.34888 0 -0.882497 -0.3125 0.125 0.113258 -0.0851999 1.07285 0.270142 0.0938509 0.647073 1.86751 0 0.660055 3.34888 0 -0.882497 +0.28125 0.125 0.113321 -0.085103 1.08014 0.262184 0.105555 0.656193 1.84916 0 0.660055 3.34888 0 -0.882497 +0.3125 0.125 0.113329 -0.0851 1.08008 0.268571 0.122972 0.659384 1.86809 0 0.660055 3.34888 0 -0.882497 -0.3125 0.0625 0.106418 -0.0799439 1.14404 0.259079 0.0987964 0.591014 1.95532 0 0.680652 3.34659 0 -0.939413 -0.34375 0.0625 0.106424 -0.0799415 1.14407 0.265547 0.0952975 0.58296 1.9756 0 0.680652 3.34659 0 -0.939413 +0.3125 0.0625 0.106455 -0.0798931 1.1514 0.257401 0.0970333 0.598559 1.95515 0 0.680652 3.34659 0 -0.939413 +0.34375 0.0625 0.10646 -0.0798917 1.15149 0.263946 0.0997772 0.605723 1.97527 0 0.680652 3.34659 0 -0.939413 -0.3125 0.09375 0.109783 -0.0825323 1.10861 0.264512 0.0950782 0.614282 1.91141 0 0.670514 3.34772 0 -0.91051 -0.34375 0.09375 0.109791 -0.0825283 1.10855 0.271129 0.120274 0.598057 1.93144 0 0.670514 3.34772 0 -0.91051 +0.3125 0.09375 0.109838 -0.0824565 1.11584 0.262998 0.101879 0.62456 1.91143 0 0.670514 3.34772 0 -0.91051 +0.34375 0.09375 0.109844 -0.0824541 1.11588 0.269542 0.107775 0.640131 1.93179 0 0.670514 3.34772 0 -0.91051 -0.34375 0.0625 0.106424 -0.0799415 1.14407 0.265547 0.0952975 0.58296 1.9756 0 0.680652 3.34659 0 -0.939413 -0.375 0.0625 0.106429 -0.0799376 1.1442 0.272462 0.0953051 0.597247 1.99738 0 0.680652 3.34659 0 -0.939413 +0.34375 0.0625 0.10646 -0.0798917 1.15149 0.263814 0.0997772 0.605723 1.97527 0 0.680652 3.34659 0 -0.939413 +0.375 0.0625 0.106464 -0.0798903 1.15149 0.270829 0.104575 0.604002 1.99658 0 0.680652 3.34659 0 -0.939413 -0.34375 0.09375 0.109791 -0.0825283 1.10855 0.271129 0.120274 0.598057 1.93144 0 0.670514 3.34772 0 -0.91051 -0.375 0.09375 0.109798 -0.0825233 1.10843 0.2784 0.128899 0.609462 1.95338 0 0.670514 3.34772 0 -0.91051 +0.34375 0.09375 0.109844 -0.0824541 1.11588 0.269668 0.107775 0.640131 1.93179 0 0.670514 3.34772 0 -0.91051 +0.375 0.09375 0.109849 -0.0824513 1.11584 0.276683 0.105382 0.627217 1.95308 0 0.670514 3.34772 0 -0.91051 -0.3125 0.09375 0.109783 -0.0825323 1.10861 0.264512 0.0950782 0.614282 1.91141 0 0.670514 3.34772 0 -0.91051 -0.34375 0.09375 0.109791 -0.0825283 1.10855 0.271129 0.120274 0.598057 1.93144 0 0.670514 3.34772 0 -0.91051 +0.3125 0.09375 0.109838 -0.0824565 1.11584 0.262828 0.101879 0.62456 1.91143 0 0.670514 3.34772 0 -0.91051 +0.34375 0.09375 0.109844 -0.0824541 1.11588 0.269655 0.107775 0.640131 1.93179 0 0.670514 3.34772 0 -0.91051 -0.3125 0.125 0.113258 -0.0851999 1.07285 0.270142 0.0938509 0.647073 1.86751 0 0.660055 3.34888 0 -0.882497 -0.34375 0.125 0.113267 -0.0851951 1.07309 0.276937 0.104531 0.625007 1.88774 0 0.660055 3.34888 0 -0.882497 +0.3125 0.125 0.113329 -0.0851 1.08008 0.26873 0.122972 0.659384 1.86809 0 0.660055 3.34888 0 -0.882497 +0.34375 0.125 0.113335 -0.0850964 1.07993 0.275557 0.109492 0.667303 1.88841 0 0.660055 3.34888 0 -0.882497 -0.34375 0.09375 0.109791 -0.0825283 1.10855 0.271129 0.120274 0.598057 1.93144 0 0.670514 3.34772 0 -0.91051 -0.375 0.09375 0.109798 -0.0825233 1.10843 0.2784 0.128899 0.609462 1.95338 0 0.670514 3.34772 0 -0.91051 +0.34375 0.09375 0.109844 -0.0824541 1.11588 0.269545 0.107775 0.640131 1.93179 0 0.670514 3.34772 0 -0.91051 +0.375 0.09375 0.109849 -0.0824513 1.11584 0.276667 0.105382 0.627217 1.95308 0 0.670514 3.34772 0 -0.91051 -0.34375 0.125 0.113267 -0.0851951 1.07309 0.276937 0.104531 0.625007 1.88774 0 0.660055 3.34888 0 -0.882497 -0.375 0.125 0.113275 -0.0851888 1.073 0.2843 0.129817 0.610194 1.90931 0 0.660055 3.34888 0 -0.882497 +0.34375 0.125 0.113335 -0.0850964 1.07993 0.275664 0.109492 0.667303 1.88841 0 0.660055 3.34888 0 -0.882497 +0.375 0.125 0.11334 -0.0850926 1.08014 0.282786 0.100452 0.660492 1.90974 0 0.660055 3.34888 0 -0.882497 -0.375 0 0.1 -0.075 1.21509 0.26116 0.107651 0.575742 2.08562 0 0.7 3.34444 0 -1 -0.40625 0 0.1 -0.075 1.21484 0.267881 0.0993046 0.509651 2.10778 0 0.7 3.34444 0 -1 +0.375 0 0.1 -0.075 1.22253 0.259277 0.103438 0.585428 2.08408 0 0.7 3.34444 0 -1 +0.40625 0 0.1 -0.075 1.22244 0.266247 0.10717 0.573009 2.10686 0 0.7 3.34444 0 -1 -0.375 0.03125 0.103164 -0.0774305 1.17957 0.266685 0.0773536 0.577589 2.04117 0 0.690477 3.3455 0 -0.969233 -0.40625 0.03125 0.103167 -0.0774289 1.1799 0.273768 0.093281 0.555368 2.06438 0 0.690477 3.3455 0 -0.969233 +0.375 0.03125 0.103182 -0.0774068 1.18701 0.265076 0.104383 0.588328 2.04047 0 0.690477 3.3455 0 -0.969233 +0.40625 0.03125 0.103184 -0.077406 1.18701 0.272045 0.106813 0.579264 2.06298 0 0.690477 3.3455 0 -0.969233 -0.40625 0 0.1 -0.075 1.21484 0.267881 0.0993046 0.509651 2.10778 0 0.7 3.34444 0 -1 -0.4375 0 0.1 -0.075 1.21509 0.275141 0.0881784 0.556404 2.13222 0 0.7 3.34444 0 -1 +0.40625 0 0.1 -0.075 1.22244 0.266161 0.10717 0.573009 2.10686 0 0.7 3.34444 0 -1 +0.4375 0 0.1 -0.075 1.22238 0.27356 0.0925423 0.573836 2.13099 0 0.7 3.34444 0 -1 -0.40625 0.03125 0.103167 -0.0774289 1.1799 0.273768 0.093281 0.555368 2.06438 0 0.690477 3.3455 0 -0.969233 -0.4375 0.03125 0.103171 -0.0774267 1.17975 0.281049 0.126446 0.575172 2.08775 0 0.690477 3.3455 0 -0.969233 +0.40625 0.03125 0.103184 -0.077406 1.18701 0.272136 0.106813 0.579264 2.06298 0 0.690477 3.3455 0 -0.969233 +0.4375 0.03125 0.103186 -0.0774049 1.18695 0.279535 0.104792 0.581745 2.08735 0 0.690477 3.3455 0 -0.969233 -0.375 0.03125 0.103164 -0.0774305 1.17957 0.266685 0.0773536 0.577589 2.04117 0 0.690477 3.3455 0 -0.969233 -0.40625 0.03125 0.103167 -0.0774289 1.1799 0.273768 0.093281 0.555368 2.06438 0 0.690477 3.3455 0 -0.969233 +0.375 0.03125 0.103182 -0.0774068 1.18701 0.264954 0.104383 0.588328 2.04047 0 0.690477 3.3455 0 -0.969233 +0.40625 0.03125 0.103184 -0.077406 1.18701 0.272092 0.106813 0.579264 2.06298 0 0.690477 3.3455 0 -0.969233 -0.375 0.0625 0.106429 -0.0799376 1.1442 0.272462 0.0953051 0.597247 1.99738 0 0.680652 3.34659 0 -0.939413 -0.40625 0.0625 0.106433 -0.0799342 1.14426 0.279385 0.108432 0.626515 2.01912 0 0.680652 3.34659 0 -0.939413 +0.375 0.0625 0.106464 -0.0798903 1.15149 0.270827 0.104575 0.604002 1.99658 0 0.680652 3.34659 0 -0.939413 +0.40625 0.0625 0.106467 -0.0798883 1.15152 0.277964 0.111464 0.599755 2.01948 0 0.680652 3.34659 0 -0.939413 -0.40625 0.03125 0.103167 -0.0774289 1.1799 0.273768 0.093281 0.555368 2.06438 0 0.690477 3.3455 0 -0.969233 -0.4375 0.03125 0.103171 -0.0774267 1.17975 0.281049 0.126446 0.575172 2.08775 0 0.690477 3.3455 0 -0.969233 +0.40625 0.03125 0.103184 -0.077406 1.18701 0.271941 0.106813 0.579264 2.06298 0 0.690477 3.3455 0 -0.969233 +0.4375 0.03125 0.103186 -0.0774049 1.18695 0.279643 0.104792 0.581745 2.08735 0 0.690477 3.3455 0 -0.969233 -0.40625 0.0625 0.106433 -0.0799342 1.14426 0.279385 0.108432 0.626515 2.01912 0 0.680652 3.34659 0 -0.939413 -0.4375 0.0625 0.106438 -0.0799301 1.14417 0.287392 0.119953 0.593491 2.0441 0 0.680652 3.34659 0 -0.939413 +0.40625 0.0625 0.106467 -0.0798883 1.15152 0.278109 0.111464 0.599755 2.01948 0 0.680652 3.34659 0 -0.939413 +0.4375 0.0625 0.10647 -0.0798861 1.15137 0.285811 0.10005 0.585215 2.04357 0 0.680652 3.34659 0 -0.939413 -0.4375 0 0.1 -0.075 1.21509 0.275141 0.0881784 0.556404 2.13222 0 0.7 3.34444 0 -1 -0.46875 0 0.1 -0.075 1.21509 0.282799 0.104414 0.588376 2.15775 0 0.7 3.34444 0 -1 +0.4375 0 0.1 -0.075 1.22238 0.273442 0.0925423 0.573836 2.13099 0 0.7 3.34444 0 -1 +0.46875 0 0.1 -0.075 1.22253 0.281219 0.0762969 0.581735 2.15618 0 0.7 3.34444 0 -1 -0.4375 0.03125 0.103171 -0.0774267 1.17975 0.281049 0.126446 0.575172 2.08775 0 0.690477 3.3455 0 -0.969233 -0.46875 0.03125 0.103172 -0.0774248 1.17947 0.289197 0.120226 0.5877 2.1138 0 0.690477 3.3455 0 -0.969233 +0.4375 0.03125 0.103186 -0.0774049 1.18695 0.279689 0.104792 0.581745 2.08735 0 0.690477 3.3455 0 -0.969233 +0.46875 0.03125 0.103187 -0.0774037 1.18701 0.287466 0.109266 0.577254 2.11285 0 0.690477 3.3455 0 -0.969233 -0.46875 0 0.1 -0.075 1.21509 0.282799 0.104414 0.588376 2.15775 0 0.7 3.34444 0 -1 -0.5 0 0.1 -0.075 1.21494 0.290964 0.0916451 0.567364 2.18481 0 0.7 3.34444 0 -1 +0.46875 0 0.1 -0.075 1.22253 0.280975 0.0762969 0.581735 2.15618 0 0.7 3.34444 0 -1 +0.5 0 0.1 -0.075 1.22287 0.289243 0.115574 0.638235 2.18336 0 0.7 3.34444 0 -1 -0.46875 0.03125 0.103172 -0.0774248 1.17947 0.289197 0.120226 0.5877 2.1138 0 0.690477 3.3455 0 -0.969233 -0.5 0.03125 0.103172 -0.0774228 1.1795 0.297658 0.106514 0.580262 2.14117 0 0.690477 3.3455 0 -0.969233 +0.46875 0.03125 0.103187 -0.0774037 1.18701 0.287707 0.109266 0.577254 2.11285 0 0.690477 3.3455 0 -0.969233 +0.5 0.03125 0.103189 -0.0774023 1.18689 0.295974 0.119223 0.605804 2.13997 0 0.690477 3.3455 0 -0.969233 -0.4375 0.03125 0.103171 -0.0774267 1.17975 0.281049 0.126446 0.575172 2.08775 0 0.690477 3.3455 0 -0.969233 -0.46875 0.03125 0.103172 -0.0774248 1.17947 0.289197 0.120226 0.5877 2.1138 0 0.690477 3.3455 0 -0.969233 +0.4375 0.03125 0.103186 -0.0774049 1.18695 0.279528 0.104792 0.581745 2.08735 0 0.690477 3.3455 0 -0.969233 +0.46875 0.03125 0.103187 -0.0774037 1.18701 0.287522 0.109266 0.577254 2.11285 0 0.690477 3.3455 0 -0.969233 -0.4375 0.0625 0.106438 -0.0799301 1.14417 0.287392 0.119953 0.593491 2.0441 0 0.680652 3.34659 0 -0.939413 -0.46875 0.0625 0.106441 -0.0799258 1.14404 0.295634 0.118311 0.597884 2.06978 0 0.680652 3.34659 0 -0.939413 +0.4375 0.0625 0.10647 -0.0798861 1.15137 0.285887 0.10005 0.585215 2.04357 0 0.680652 3.34659 0 -0.939413 +0.46875 0.0625 0.106473 -0.0798841 1.15164 0.293881 0.101472 0.588901 2.06944 0 0.680652 3.34659 0 -0.939413 -0.46875 0.03125 0.103172 -0.0774248 1.17947 0.289197 0.120226 0.5877 2.1138 0 0.690477 3.3455 0 -0.969233 -0.5 0.03125 0.103172 -0.0774228 1.1795 0.297658 0.106514 0.580262 2.14117 0 0.690477 3.3455 0 -0.969233 +0.46875 0.03125 0.103187 -0.0774037 1.18701 0.287423 0.109266 0.577254 2.11285 0 0.690477 3.3455 0 -0.969233 +0.5 0.03125 0.103189 -0.0774023 1.18689 0.296151 0.119223 0.605804 2.13997 0 0.690477 3.3455 0 -0.969233 -0.46875 0.0625 0.106441 -0.0799258 1.14404 0.295634 0.118311 0.597884 2.06978 0 0.680652 3.34659 0 -0.939413 -0.5 0.0625 0.106442 -0.0799214 1.14398 0.304437 0.10653 0.603249 2.09729 0 0.680652 3.34659 0 -0.939413 +0.46875 0.0625 0.106473 -0.0798841 1.15164 0.293963 0.101472 0.588901 2.06944 0 0.680652 3.34659 0 -0.939413 +0.5 0.0625 0.106477 -0.0798815 1.15149 0.302691 0.121609 0.553211 2.09578 0 0.680652 3.34659 0 -0.939413 -0.375 0.0625 0.106429 -0.0799376 1.1442 0.272462 0.0953051 0.597247 1.99738 0 0.680652 3.34659 0 -0.939413 -0.40625 0.0625 0.106433 -0.0799342 1.14426 0.279385 0.108432 0.626515 2.01912 0 0.680652 3.34659 0 -0.939413 +0.375 0.0625 0.106464 -0.0798903 1.15149 0.270639 0.104575 0.604002 1.99658 0 0.680652 3.34659 0 -0.939413 +0.40625 0.0625 0.106467 -0.0798883 1.15152 0.278053 0.111464 0.599755 2.01948 0 0.680652 3.34659 0 -0.939413 -0.375 0.09375 0.109798 -0.0825233 1.10843 0.2784 0.128899 0.609462 1.95338 0 0.670514 3.34772 0 -0.91051 -0.40625 0.09375 0.109803 -0.0825181 1.10818 0.285921 0.0969082 0.624934 1.97597 0 0.670514 3.34772 0 -0.91051 +0.375 0.09375 0.109849 -0.0824513 1.11584 0.27673 0.105382 0.627217 1.95308 0 0.670514 3.34772 0 -0.91051 +0.40625 0.09375 0.109853 -0.0824486 1.11591 0.284144 0.0949606 0.630002 1.97581 0 0.670514 3.34772 0 -0.91051 -0.40625 0.0625 0.106433 -0.0799342 1.14426 0.279385 0.108432 0.626515 2.01912 0 0.680652 3.34659 0 -0.939413 -0.4375 0.0625 0.106438 -0.0799301 1.14417 0.287392 0.119953 0.593491 2.0441 0 0.680652 3.34659 0 -0.939413 +0.40625 0.0625 0.106467 -0.0798883 1.15152 0.277965 0.111464 0.599755 2.01948 0 0.680652 3.34659 0 -0.939413 +0.4375 0.0625 0.10647 -0.0798861 1.15137 0.285856 0.10005 0.585215 2.04357 0 0.680652 3.34659 0 -0.939413 -0.40625 0.09375 0.109803 -0.0825181 1.10818 0.285921 0.0969082 0.624934 1.97597 0 0.670514 3.34772 0 -0.91051 -0.4375 0.09375 0.109808 -0.0825111 1.1087 0.293667 0.101102 0.616889 1.99999 0 0.670514 3.34772 0 -0.91051 +0.40625 0.09375 0.109853 -0.0824486 1.11591 0.284196 0.0949606 0.630002 1.97581 0 0.670514 3.34772 0 -0.91051 +0.4375 0.09375 0.109857 -0.0824451 1.11606 0.292088 0.0933906 0.608436 1.99994 0 0.670514 3.34772 0 -0.91051 -0.375 0.09375 0.109798 -0.0825233 1.10843 0.2784 0.128899 0.609462 1.95338 0 0.670514 3.34772 0 -0.91051 -0.40625 0.09375 0.109803 -0.0825181 1.10818 0.285921 0.0969082 0.624934 1.97597 0 0.670514 3.34772 0 -0.91051 +0.375 0.09375 0.109849 -0.0824513 1.11584 0.276587 0.105382 0.627217 1.95308 0 0.670514 3.34772 0 -0.91051 +0.40625 0.09375 0.109853 -0.0824486 1.11591 0.284207 0.0949606 0.630002 1.97581 0 0.670514 3.34772 0 -0.91051 -0.375 0.125 0.113275 -0.0851888 1.073 0.2843 0.129817 0.610194 1.90931 0 0.660055 3.34888 0 -0.882497 -0.40625 0.125 0.11328 -0.0851796 1.07278 0.292186 0.122172 0.585155 1.9323 0 0.660055 3.34888 0 -0.882497 +0.375 0.125 0.11334 -0.0850926 1.08014 0.282879 0.100452 0.660492 1.90974 0 0.660055 3.34888 0 -0.882497 +0.40625 0.125 0.113345 -0.0850885 1.08011 0.290499 0.0993821 0.661626 1.93244 0 0.660055 3.34888 0 -0.882497 -0.40625 0.09375 0.109803 -0.0825181 1.10818 0.285921 0.0969082 0.624934 1.97597 0 0.670514 3.34772 0 -0.91051 -0.4375 0.09375 0.109808 -0.0825111 1.1087 0.293667 0.101102 0.616889 1.99999 0 0.670514 3.34772 0 -0.91051 +0.40625 0.09375 0.109853 -0.0824486 1.11591 0.284078 0.0949606 0.630002 1.97581 0 0.670514 3.34772 0 -0.91051 +0.4375 0.09375 0.109857 -0.0824451 1.11606 0.292117 0.0933906 0.608436 1.99994 0 0.670514 3.34772 0 -0.91051 -0.40625 0.125 0.11328 -0.0851796 1.07278 0.292186 0.122172 0.585155 1.9323 0 0.660055 3.34888 0 -0.882497 -0.4375 0.125 0.113287 -0.0851721 1.07288 0.300181 0.110462 0.630983 1.95591 0 0.660055 3.34888 0 -0.882497 +0.40625 0.125 0.113345 -0.0850885 1.08011 0.290633 0.0993821 0.661626 1.93244 0 0.660055 3.34888 0 -0.882497 +0.4375 0.125 0.113351 -0.0850839 1.08029 0.298671 0.0920879 0.653353 1.95644 0 0.660055 3.34888 0 -0.882497 -0.4375 0.0625 0.106438 -0.0799301 1.14417 0.287392 0.119953 0.593491 2.0441 0 0.680652 3.34659 0 -0.939413 -0.46875 0.0625 0.106441 -0.0799258 1.14404 0.295634 0.118311 0.597884 2.06978 0 0.680652 3.34659 0 -0.939413 +0.4375 0.0625 0.10647 -0.0798861 1.15137 0.285727 0.10005 0.585215 2.04357 0 0.680652 3.34659 0 -0.939413 +0.46875 0.0625 0.106473 -0.0798841 1.15164 0.293977 0.101472 0.588901 2.06944 0 0.680652 3.34659 0 -0.939413 -0.4375 0.09375 0.109808 -0.0825111 1.1087 0.293667 0.101102 0.616889 1.99999 0 0.670514 3.34772 0 -0.91051 -0.46875 0.09375 0.109813 -0.0825043 1.10837 0.302396 0.128972 0.612367 2.02615 0 0.670514 3.34772 0 -0.91051 +0.4375 0.09375 0.109857 -0.0824451 1.11606 0.292195 0.0933906 0.608436 1.99994 0 0.670514 3.34772 0 -0.91051 +0.46875 0.09375 0.109861 -0.0824413 1.11606 0.300446 0.0748573 0.614673 2.02505 0 0.670514 3.34772 0 -0.91051 -0.46875 0.0625 0.106441 -0.0799258 1.14404 0.295634 0.118311 0.597884 2.06978 0 0.680652 3.34659 0 -0.939413 -0.5 0.0625 0.106442 -0.0799214 1.14398 0.304437 0.10653 0.603249 2.09729 0 0.680652 3.34659 0 -0.939413 +0.46875 0.0625 0.106473 -0.0798841 1.15164 0.293924 0.101472 0.588901 2.06944 0 0.680652 3.34659 0 -0.939413 +0.5 0.0625 0.106477 -0.0798815 1.15149 0.302687 0.121609 0.553211 2.09578 0 0.680652 3.34659 0 -0.939413 -0.46875 0.09375 0.109813 -0.0825043 1.10837 0.302396 0.128972 0.612367 2.02615 0 0.670514 3.34772 0 -0.91051 -0.5 0.09375 0.109815 -0.0824976 1.10828 0.311481 0.0969574 0.613431 2.05363 0 0.670514 3.34772 0 -0.91051 +0.46875 0.09375 0.109861 -0.0824413 1.11606 0.300494 0.0748573 0.614673 2.02505 0 0.670514 3.34772 0 -0.91051 +0.5 0.09375 0.109866 -0.0824376 1.1167 0.309258 0.121094 0.614029 2.05216 0 0.670514 3.34772 0 -0.91051 -0.4375 0.09375 0.109808 -0.0825111 1.1087 0.293667 0.101102 0.616889 1.99999 0 0.670514 3.34772 0 -0.91051 -0.46875 0.09375 0.109813 -0.0825043 1.10837 0.302396 0.128972 0.612367 2.02615 0 0.670514 3.34772 0 -0.91051 +0.4375 0.09375 0.109857 -0.0824451 1.11606 0.291997 0.0933906 0.608436 1.99994 0 0.670514 3.34772 0 -0.91051 +0.46875 0.09375 0.109861 -0.0824413 1.11606 0.300521 0.0748573 0.614673 2.02505 0 0.670514 3.34772 0 -0.91051 -0.4375 0.125 0.113287 -0.0851721 1.07288 0.300181 0.110462 0.630983 1.95591 0 0.660055 3.34888 0 -0.882497 -0.46875 0.125 0.113292 -0.0851628 1.07288 0.309177 0.117175 0.637043 1.98237 0 0.660055 3.34888 0 -0.882497 +0.4375 0.125 0.113351 -0.0850839 1.08029 0.298771 0.0920879 0.653353 1.95644 0 0.660055 3.34888 0 -0.882497 +0.46875 0.125 0.113355 -0.0850777 1.08044 0.307295 0.10889 0.649131 1.98197 0 0.660055 3.34888 0 -0.882497 -0.46875 0.09375 0.109813 -0.0825043 1.10837 0.302396 0.128972 0.612367 2.02615 0 0.670514 3.34772 0 -0.91051 -0.5 0.09375 0.109815 -0.0824976 1.10828 0.311481 0.0969574 0.613431 2.05363 0 0.670514 3.34772 0 -0.91051 +0.46875 0.09375 0.109861 -0.0824413 1.11606 0.300292 0.0748573 0.614673 2.02505 0 0.670514 3.34772 0 -0.91051 +0.5 0.09375 0.109866 -0.0824376 1.1167 0.30936 0.121094 0.614029 2.05216 0 0.670514 3.34772 0 -0.91051 -0.46875 0.125 0.113292 -0.0851628 1.07288 0.309177 0.117175 0.637043 1.98237 0 0.660055 3.34888 0 -0.882497 -0.5 0.125 0.113295 -0.0851536 1.07275 0.318464 0.0997774 0.618541 2.00957 0 0.660055 3.34888 0 -0.882497 +0.46875 0.125 0.113355 -0.0850777 1.08044 0.307489 0.10889 0.649131 1.98197 0 0.660055 3.34888 0 -0.882497 +0.5 0.125 0.113361 -0.0850733 1.08035 0.316557 0.127311 0.696619 2.00938 0 0.660055 3.34888 0 -0.882497 -0.25 0.125 0.113242 -0.085206 1.07266 0.257667 0.0809758 0.6231 1.83063 0 0.660055 3.34888 0 -0.882497 -0.28125 0.125 0.11325 -0.0852036 1.07281 0.263604 0.0947285 0.638998 1.84825 0 0.660055 3.34888 0 -0.882497 +0.25 0.125 0.113314 -0.085105 1.07996 0.25605 0.0965452 0.638069 1.83131 0 0.660055 3.34888 0 -0.882497 +0.28125 0.125 0.113321 -0.085103 1.08014 0.2622 0.105555 0.656193 1.84916 0 0.660055 3.34888 0 -0.882497 -0.25 0.15625 0.11683 -0.0879562 1.03711 0.262926 0.106149 0.646589 1.78675 0 0.649264 3.35008 0 -0.855345 -0.28125 0.15625 0.116838 -0.0879541 1.03683 0.269411 0.114986 0.650427 1.80497 0 0.649264 3.35008 0 -0.855345 +0.25 0.15625 0.116914 -0.0878319 1.04422 0.261668 0.116287 0.663318 1.78797 0 0.649264 3.35008 0 -0.855345 +0.28125 0.15625 0.116922 -0.0878296 1.04413 0.267818 0.120853 0.683697 1.80572 0 0.649264 3.35008 0 -0.855345 -0.28125 0.125 0.11325 -0.0852036 1.07281 0.263604 0.0947285 0.638998 1.84825 0 0.660055 3.34888 0 -0.882497 -0.3125 0.125 0.113258 -0.0851999 1.07285 0.270142 0.0938509 0.647073 1.86751 0 0.660055 3.34888 0 -0.882497 +0.28125 0.125 0.113321 -0.085103 1.08014 0.26207 0.105555 0.656193 1.84916 0 0.660055 3.34888 0 -0.882497 +0.3125 0.125 0.113329 -0.0851 1.08008 0.268648 0.122972 0.659384 1.86809 0 0.660055 3.34888 0 -0.882497 -0.28125 0.15625 0.116838 -0.0879541 1.03683 0.269411 0.114986 0.650427 1.80497 0 0.649264 3.35008 0 -0.855345 -0.3125 0.15625 0.116846 -0.0879492 1.03702 0.276114 0.0861835 0.656794 1.82426 0 0.649264 3.35008 0 -0.855345 +0.28125 0.15625 0.116922 -0.0878296 1.04413 0.267918 0.120853 0.683697 1.80572 0 0.649264 3.35008 0 -0.855345 +0.3125 0.15625 0.11693 -0.0878259 1.04416 0.274496 0.120765 0.688406 1.82487 0 0.649264 3.35008 0 -0.855345 -0.25 0.15625 0.11683 -0.0879562 1.03711 0.262926 0.106149 0.646589 1.78675 0 0.649264 3.35008 0 -0.855345 -0.28125 0.15625 0.116838 -0.0879541 1.03683 0.269411 0.114986 0.650427 1.80497 0 0.649264 3.35008 0 -0.855345 +0.25 0.15625 0.116914 -0.0878319 1.04422 0.261459 0.116287 0.663318 1.78797 0 0.649264 3.35008 0 -0.855345 +0.28125 0.15625 0.116922 -0.0878296 1.04413 0.26792 0.120853 0.683697 1.80572 0 0.649264 3.35008 0 -0.855345 -0.25 0.1875 0.120535 -0.090787 1.00131 0.268628 0.0913436 0.687145 1.74365 0 0.638131 3.35132 0 -0.829029 -0.28125 0.1875 0.120542 -0.0907867 1.00134 0.275006 0.115567 0.651877 1.7613 0 0.638131 3.35132 0 -0.829029 +0.25 0.1875 0.120629 -0.0906427 1.00836 0.267161 0.128461 0.689018 1.74469 0 0.638131 3.35132 0 -0.829029 +0.28125 0.1875 0.120638 -0.0906403 1.00824 0.273622 0.135152 0.693056 1.7626 0 0.638131 3.35132 0 -0.829029 -0.28125 0.15625 0.116838 -0.0879541 1.03683 0.269411 0.114986 0.650427 1.80497 0 0.649264 3.35008 0 -0.855345 -0.3125 0.15625 0.116846 -0.0879492 1.03702 0.276114 0.0861835 0.656794 1.82426 0 0.649264 3.35008 0 -0.855345 +0.28125 0.15625 0.116922 -0.0878296 1.04413 0.26773 0.120853 0.683697 1.80572 0 0.649264 3.35008 0 -0.855345 +0.3125 0.15625 0.11693 -0.0878259 1.04416 0.274556 0.120765 0.688406 1.82487 0 0.649264 3.35008 0 -0.855345 -0.28125 0.1875 0.120542 -0.0907867 1.00134 0.275006 0.115567 0.651877 1.7613 0 0.638131 3.35132 0 -0.829029 -0.3125 0.1875 0.120549 -0.0907819 1.00125 0.281966 0.0993807 0.642902 1.78045 0 0.638131 3.35132 0 -0.829029 +0.28125 0.1875 0.120638 -0.0906403 1.00824 0.273711 0.135152 0.693056 1.7626 0 0.638131 3.35132 0 -0.829029 +0.3125 0.1875 0.120645 -0.0906363 1.00815 0.280537 0.127901 0.70742 1.78157 0 0.638131 3.35132 0 -0.829029 -0.3125 0.125 0.113258 -0.0851999 1.07285 0.270142 0.0938509 0.647073 1.86751 0 0.660055 3.34888 0 -0.882497 -0.34375 0.125 0.113267 -0.0851951 1.07309 0.276937 0.104531 0.625007 1.88774 0 0.660055 3.34888 0 -0.882497 +0.3125 0.125 0.113329 -0.0851 1.08008 0.268542 0.122972 0.659384 1.86809 0 0.660055 3.34888 0 -0.882497 +0.34375 0.125 0.113335 -0.0850964 1.07993 0.275645 0.109492 0.667303 1.88841 0 0.660055 3.34888 0 -0.882497 -0.3125 0.15625 0.116846 -0.0879492 1.03702 0.276114 0.0861835 0.656794 1.82426 0 0.649264 3.35008 0 -0.855345 -0.34375 0.15625 0.116855 -0.0879429 1.03729 0.282846 0.0858977 0.650309 1.84373 0 0.649264 3.35008 0 -0.855345 +0.3125 0.15625 0.11693 -0.0878259 1.04416 0.274574 0.120765 0.688406 1.82487 0 0.649264 3.35008 0 -0.855345 +0.34375 0.15625 0.116937 -0.0878212 1.04407 0.281677 0.115868 0.681344 1.84509 0 0.649264 3.35008 0 -0.855345 -0.34375 0.125 0.113267 -0.0851951 1.07309 0.276937 0.104531 0.625007 1.88774 0 0.660055 3.34888 0 -0.882497 -0.375 0.125 0.113275 -0.0851888 1.073 0.2843 0.129817 0.610194 1.90931 0 0.660055 3.34888 0 -0.882497 +0.34375 0.125 0.113335 -0.0850964 1.07993 0.275519 0.109492 0.667303 1.88841 0 0.660055 3.34888 0 -0.882497 +0.375 0.125 0.11334 -0.0850926 1.08014 0.282812 0.100452 0.660492 1.90974 0 0.660055 3.34888 0 -0.882497 -0.34375 0.15625 0.116855 -0.0879429 1.03729 0.282846 0.0858977 0.650309 1.84373 0 0.649264 3.35008 0 -0.855345 -0.375 0.15625 0.116863 -0.0879347 1.03741 0.290619 0.0927939 0.628772 1.86601 0 0.649264 3.35008 0 -0.855345 +0.34375 0.15625 0.116937 -0.0878212 1.04407 0.281807 0.115868 0.681344 1.84509 0 0.649264 3.35008 0 -0.855345 +0.375 0.15625 0.116942 -0.0878166 1.04416 0.2891 0.106665 0.692041 1.86645 0 0.649264 3.35008 0 -0.855345 -0.3125 0.15625 0.116846 -0.0879492 1.03702 0.276114 0.0861835 0.656794 1.82426 0 0.649264 3.35008 0 -0.855345 -0.34375 0.15625 0.116855 -0.0879429 1.03729 0.282846 0.0858977 0.650309 1.84373 0 0.649264 3.35008 0 -0.855345 +0.3125 0.15625 0.11693 -0.0878259 1.04416 0.274451 0.120765 0.688406 1.82487 0 0.649264 3.35008 0 -0.855345 +0.34375 0.15625 0.116937 -0.0878212 1.04407 0.281692 0.115868 0.681344 1.84509 0 0.649264 3.35008 0 -0.855345 -0.3125 0.1875 0.120549 -0.0907819 1.00125 0.281966 0.0993807 0.642902 1.78045 0 0.638131 3.35132 0 -0.829029 -0.34375 0.1875 0.120557 -0.0907747 1.00159 0.289119 0.080584 0.656167 1.80055 0 0.638131 3.35132 0 -0.829029 +0.3125 0.1875 0.120645 -0.0906363 1.00815 0.280662 0.127901 0.70742 1.78157 0 0.638131 3.35132 0 -0.829029 +0.34375 0.1875 0.120652 -0.0906308 1.00815 0.287903 0.11874 0.707592 1.80176 0 0.638131 3.35132 0 -0.829029 -0.34375 0.15625 0.116855 -0.0879429 1.03729 0.282846 0.0858977 0.650309 1.84373 0 0.649264 3.35008 0 -0.855345 -0.375 0.15625 0.116863 -0.0879347 1.03741 0.290619 0.0927939 0.628772 1.86601 0 0.649264 3.35008 0 -0.855345 +0.34375 0.15625 0.116937 -0.0878212 1.04407 0.28159 0.115868 0.681344 1.84509 0 0.649264 3.35008 0 -0.855345 +0.375 0.15625 0.116942 -0.0878166 1.04416 0.289202 0.106665 0.692041 1.86645 0 0.649264 3.35008 0 -0.855345 -0.34375 0.1875 0.120557 -0.0907747 1.00159 0.289119 0.080584 0.656167 1.80055 0 0.638131 3.35132 0 -0.829029 -0.375 0.1875 0.120566 -0.0907642 1.00186 0.296745 0.107038 0.662799 1.82189 0 0.638131 3.35132 0 -0.829029 +0.34375 0.1875 0.120652 -0.0906308 1.00815 0.288011 0.11874 0.707592 1.80176 0 0.638131 3.35132 0 -0.829029 +0.375 0.1875 0.120658 -0.090625 1.00818 0.295623 0.112085 0.718264 1.82325 0 0.638131 3.35132 0 -0.829029 -0.25 0.1875 0.120535 -0.090787 1.00131 0.268628 0.0913436 0.687145 1.74365 0 0.638131 3.35132 0 -0.829029 -0.28125 0.1875 0.120542 -0.0907867 1.00134 0.275006 0.115567 0.651877 1.7613 0 0.638131 3.35132 0 -0.829029 +0.25 0.1875 0.120629 -0.0906427 1.00836 0.267015 0.128461 0.689018 1.74469 0 0.638131 3.35132 0 -0.829029 +0.28125 0.1875 0.120638 -0.0906403 1.00824 0.273666 0.135152 0.693056 1.7626 0 0.638131 3.35132 0 -0.829029 -0.25 0.21875 0.124359 -0.0937029 0.965332 0.274092 0.0822069 0.722605 1.69946 0 0.626644 3.3526 0 -0.803523 -0.28125 0.21875 0.124364 -0.0937025 0.965607 0.280923 0.0792092 0.691921 1.71803 0 0.626644 3.3526 0 -0.803523 +0.25 0.21875 0.124463 -0.0935391 0.972473 0.272797 0.127721 0.724592 1.70132 0 0.626644 3.3526 0 -0.803523 +0.28125 0.21875 0.124472 -0.0935371 0.972382 0.279447 0.143865 0.72862 1.7192 0 0.626644 3.3526 0 -0.803523 -0.28125 0.1875 0.120542 -0.0907867 1.00134 0.275006 0.115567 0.651877 1.7613 0 0.638131 3.35132 0 -0.829029 -0.3125 0.1875 0.120549 -0.0907819 1.00125 0.281966 0.0993807 0.642902 1.78045 0 0.638131 3.35132 0 -0.829029 +0.28125 0.1875 0.120638 -0.0906403 1.00824 0.273554 0.135152 0.693056 1.7626 0 0.638131 3.35132 0 -0.829029 +0.3125 0.1875 0.120645 -0.0906363 1.00815 0.28063 0.127901 0.70742 1.78157 0 0.638131 3.35132 0 -0.829029 -0.28125 0.21875 0.124364 -0.0937025 0.965607 0.280923 0.0792092 0.691921 1.71803 0 0.626644 3.3526 0 -0.803523 -0.3125 0.21875 0.124372 -0.0936979 0.965912 0.287689 0.0941277 0.670657 1.73646 0 0.626644 3.3526 0 -0.803523 +0.28125 0.21875 0.124472 -0.0935371 0.972382 0.279569 0.143865 0.72862 1.7192 0 0.626644 3.3526 0 -0.803523 +0.3125 0.21875 0.12448 -0.0935326 0.972198 0.286645 0.143357 0.738355 1.73828 0 0.626644 3.3526 0 -0.803523 -0.25 0.21875 0.124359 -0.0937029 0.965332 0.274092 0.0822069 0.722605 1.69946 0 0.626644 3.3526 0 -0.803523 -0.28125 0.21875 0.124364 -0.0937025 0.965607 0.280923 0.0792092 0.691921 1.71803 0 0.626644 3.3526 0 -0.803523 +0.25 0.21875 0.124463 -0.0935391 0.972473 0.27264 0.127721 0.724592 1.70132 0 0.626644 3.3526 0 -0.803523 +0.28125 0.21875 0.124472 -0.0935371 0.972382 0.279511 0.143865 0.72862 1.7192 0 0.626644 3.3526 0 -0.803523 -0.25 0.25 0.128308 -0.0967055 0.92923 0.280258 0.0816676 0.743571 1.65678 0 0.614792 3.35391 0 -0.778801 -0.28125 0.25 0.128311 -0.0967046 0.929657 0.286903 0.076887 0.730828 1.67446 0 0.614792 3.35391 0 -0.778801 +0.25 0.25 0.128419 -0.0965236 0.936401 0.278646 0.120798 0.79202 1.65817 0 0.614792 3.35391 0 -0.778801 +0.28125 0.25 0.128428 -0.0965221 0.936218 0.285517 0.156401 0.790842 1.67597 0 0.614792 3.35391 0 -0.778801 -0.28125 0.21875 0.124364 -0.0937025 0.965607 0.280923 0.0792092 0.691921 1.71803 0 0.626644 3.3526 0 -0.803523 -0.3125 0.21875 0.124372 -0.0936979 0.965912 0.287689 0.0941277 0.670657 1.73646 0 0.626644 3.3526 0 -0.803523 +0.28125 0.21875 0.124472 -0.0935371 0.972382 0.279363 0.143865 0.72862 1.7192 0 0.626644 3.3526 0 -0.803523 +0.3125 0.21875 0.12448 -0.0935326 0.972198 0.286722 0.143357 0.738355 1.73828 0 0.626644 3.3526 0 -0.803523 -0.28125 0.25 0.128311 -0.0967046 0.929657 0.286903 0.076887 0.730828 1.67446 0 0.614792 3.35391 0 -0.778801 -0.3125 0.25 0.128317 -0.0967001 0.929901 0.294142 0.100824 0.728602 1.69349 0 0.614792 3.35391 0 -0.778801 +0.28125 0.25 0.128428 -0.0965221 0.936218 0.285651 0.156401 0.790842 1.67597 0 0.614792 3.35391 0 -0.778801 +0.3125 0.25 0.128436 -0.0965172 0.936005 0.29301 0.165302 0.793261 1.69515 0 0.614792 3.35391 0 -0.778801 -0.3125 0.1875 0.120549 -0.0907819 1.00125 0.281966 0.0993807 0.642902 1.78045 0 0.638131 3.35132 0 -0.829029 -0.34375 0.1875 0.120557 -0.0907747 1.00159 0.289119 0.080584 0.656167 1.80055 0 0.638131 3.35132 0 -0.829029 +0.3125 0.1875 0.120645 -0.0906363 1.00815 0.280465 0.127901 0.70742 1.78157 0 0.638131 3.35132 0 -0.829029 +0.34375 0.1875 0.120652 -0.0906308 1.00815 0.287945 0.11874 0.707592 1.80176 0 0.638131 3.35132 0 -0.829029 -0.3125 0.21875 0.124372 -0.0936979 0.965912 0.287689 0.0941277 0.670657 1.73646 0 0.626644 3.3526 0 -0.803523 -0.34375 0.21875 0.124379 -0.0936894 0.965973 0.295307 0.113462 0.685948 1.75693 0 0.626644 3.3526 0 -0.803523 +0.3125 0.21875 0.12448 -0.0935326 0.972198 0.286772 0.143357 0.738355 1.73828 0 0.626644 3.3526 0 -0.803523 +0.34375 0.21875 0.124487 -0.0935268 0.972137 0.294253 0.134449 0.756223 1.75863 0 0.626644 3.3526 0 -0.803523 -0.34375 0.1875 0.120557 -0.0907747 1.00159 0.289119 0.080584 0.656167 1.80055 0 0.638131 3.35132 0 -0.829029 -0.375 0.1875 0.120566 -0.0907642 1.00186 0.296745 0.107038 0.662799 1.82189 0 0.638131 3.35132 0 -0.829029 +0.34375 0.1875 0.120652 -0.0906308 1.00815 0.287786 0.11874 0.707592 1.80176 0 0.638131 3.35132 0 -0.829029 +0.375 0.1875 0.120658 -0.090625 1.00818 0.295701 0.112085 0.718264 1.82325 0 0.638131 3.35132 0 -0.829029 -0.34375 0.21875 0.124379 -0.0936894 0.965973 0.295307 0.113462 0.685948 1.75693 0 0.626644 3.3526 0 -0.803523 -0.375 0.21875 0.124388 -0.0936785 0.966003 0.303381 0.12048 0.717675 1.77858 0 0.626644 3.3526 0 -0.803523 +0.34375 0.21875 0.124487 -0.0935268 0.972137 0.294368 0.134449 0.756223 1.75863 0 0.626644 3.3526 0 -0.803523 +0.375 0.21875 0.124492 -0.0935197 0.972076 0.302283 0.123383 0.758146 1.78004 0 0.626644 3.3526 0 -0.803523 -0.3125 0.21875 0.124372 -0.0936979 0.965912 0.287689 0.0941277 0.670657 1.73646 0 0.626644 3.3526 0 -0.803523 -0.34375 0.21875 0.124379 -0.0936894 0.965973 0.295307 0.113462 0.685948 1.75693 0 0.626644 3.3526 0 -0.803523 +0.3125 0.21875 0.12448 -0.0935326 0.972198 0.286565 0.143357 0.738355 1.73828 0 0.626644 3.3526 0 -0.803523 +0.34375 0.21875 0.124487 -0.0935268 0.972137 0.294349 0.134449 0.756223 1.75863 0 0.626644 3.3526 0 -0.803523 -0.3125 0.25 0.128317 -0.0967001 0.929901 0.294142 0.100824 0.728602 1.69349 0 0.614792 3.35391 0 -0.778801 -0.34375 0.25 0.128325 -0.0966911 0.929993 0.301811 0.131995 0.722484 1.71349 0 0.614792 3.35391 0 -0.778801 +0.3125 0.25 0.128436 -0.0965172 0.936005 0.293171 0.165302 0.793261 1.69515 0 0.614792 3.35391 0 -0.778801 +0.34375 0.25 0.128442 -0.0965118 0.93573 0.300955 0.15096 0.805714 1.71554 0 0.614792 3.35391 0 -0.778801 -0.34375 0.21875 0.124379 -0.0936894 0.965973 0.295307 0.113462 0.685948 1.75693 0 0.626644 3.3526 0 -0.803523 -0.375 0.21875 0.124388 -0.0936785 0.966003 0.303381 0.12048 0.717675 1.77858 0 0.626644 3.3526 0 -0.803523 +0.34375 0.21875 0.124487 -0.0935268 0.972137 0.294202 0.134449 0.756223 1.75863 0 0.626644 3.3526 0 -0.803523 +0.375 0.21875 0.124492 -0.0935197 0.972076 0.302347 0.123383 0.758146 1.78004 0 0.626644 3.3526 0 -0.803523 -0.34375 0.25 0.128325 -0.0966911 0.929993 0.301811 0.131995 0.722484 1.71349 0 0.614792 3.35391 0 -0.778801 -0.375 0.25 0.128332 -0.0966802 0.929718 0.310313 0.113918 0.718341 1.73529 0 0.614792 3.35391 0 -0.778801 +0.34375 0.25 0.128442 -0.0965118 0.93573 0.301137 0.15096 0.805714 1.71554 0 0.614792 3.35391 0 -0.778801 +0.375 0.25 0.128448 -0.0965038 0.93573 0.309282 0.130721 0.796593 1.73696 0 0.614792 3.35391 0 -0.778801 -0.375 0.125 0.113275 -0.0851888 1.073 0.2843 0.129817 0.610194 1.90931 0 0.660055 3.34888 0 -0.882497 -0.40625 0.125 0.11328 -0.0851796 1.07278 0.292186 0.122172 0.585155 1.9323 0 0.660055 3.34888 0 -0.882497 +0.375 0.125 0.11334 -0.0850926 1.08014 0.282716 0.100452 0.660492 1.90974 0 0.660055 3.34888 0 -0.882497 +0.40625 0.125 0.113345 -0.0850885 1.08011 0.2906 0.0993821 0.661626 1.93244 0 0.660055 3.34888 0 -0.882497 -0.375 0.15625 0.116863 -0.0879347 1.03741 0.290619 0.0927939 0.628772 1.86601 0 0.649264 3.35008 0 -0.855345 -0.40625 0.15625 0.116869 -0.0879234 1.03766 0.297919 0.124337 0.620394 1.88707 0 0.649264 3.35008 0 -0.855345 +0.375 0.15625 0.116942 -0.0878166 1.04416 0.289225 0.106665 0.692041 1.86645 0 0.649264 3.35008 0 -0.855345 +0.40625 0.15625 0.116948 -0.0878112 1.04419 0.297109 0.0966336 0.686541 1.88922 0 0.649264 3.35008 0 -0.855345 -0.40625 0.125 0.11328 -0.0851796 1.07278 0.292186 0.122172 0.585155 1.9323 0 0.660055 3.34888 0 -0.882497 -0.4375 0.125 0.113287 -0.0851721 1.07288 0.300181 0.110462 0.630983 1.95591 0 0.660055 3.34888 0 -0.882497 +0.40625 0.125 0.113345 -0.0850885 1.08011 0.290463 0.0993821 0.661626 1.93244 0 0.660055 3.34888 0 -0.882497 +0.4375 0.125 0.113351 -0.0850839 1.08029 0.298729 0.0920879 0.653353 1.95644 0 0.660055 3.34888 0 -0.882497 -0.40625 0.15625 0.116869 -0.0879234 1.03766 0.297919 0.124337 0.620394 1.88707 0 0.649264 3.35008 0 -0.855345 -0.4375 0.15625 0.116876 -0.0879142 1.03735 0.307099 0.165595 0.635809 1.91294 0 0.649264 3.35008 0 -0.855345 +0.40625 0.15625 0.116948 -0.0878112 1.04419 0.297197 0.0966336 0.686541 1.88922 0 0.649264 3.35008 0 -0.855345 +0.4375 0.15625 0.116953 -0.087805 1.04443 0.305464 0.0961113 0.688263 1.9133 0 0.649264 3.35008 0 -0.855345 -0.375 0.15625 0.116863 -0.0879347 1.03741 0.290619 0.0927939 0.628772 1.86601 0 0.649264 3.35008 0 -0.855345 -0.40625 0.15625 0.116869 -0.0879234 1.03766 0.297919 0.124337 0.620394 1.88707 0 0.649264 3.35008 0 -0.855345 +0.375 0.15625 0.116942 -0.0878166 1.04416 0.289069 0.106665 0.692041 1.86645 0 0.649264 3.35008 0 -0.855345 +0.40625 0.15625 0.116948 -0.0878112 1.04419 0.297185 0.0966336 0.686541 1.88922 0 0.649264 3.35008 0 -0.855345 -0.375 0.1875 0.120566 -0.0907642 1.00186 0.296745 0.107038 0.662799 1.82189 0 0.638131 3.35132 0 -0.829029 -0.40625 0.1875 0.120575 -0.0907542 1.00174 0.305338 0.130665 0.670095 1.84552 0 0.638131 3.35132 0 -0.829029 +0.375 0.1875 0.120658 -0.090625 1.00818 0.295749 0.112085 0.718264 1.82325 0 0.638131 3.35132 0 -0.829029 +0.40625 0.1875 0.120664 -0.0906182 1.00824 0.303865 0.101858 0.714263 1.84584 0 0.638131 3.35132 0 -0.829029 -0.40625 0.15625 0.116869 -0.0879234 1.03766 0.297919 0.124337 0.620394 1.88707 0 0.649264 3.35008 0 -0.855345 -0.4375 0.15625 0.116876 -0.0879142 1.03735 0.307099 0.165595 0.635809 1.91294 0 0.649264 3.35008 0 -0.855345 +0.40625 0.15625 0.116948 -0.0878112 1.04419 0.297061 0.0966336 0.686541 1.88922 0 0.649264 3.35008 0 -0.855345 +0.4375 0.15625 0.116953 -0.087805 1.04443 0.305547 0.0961113 0.688263 1.9133 0 0.649264 3.35008 0 -0.855345 -0.40625 0.1875 0.120575 -0.0907542 1.00174 0.305338 0.130665 0.670095 1.84552 0 0.638131 3.35132 0 -0.829029 -0.4375 0.1875 0.120581 -0.0907423 1.00165 0.314025 0.122851 0.654536 1.86943 0 0.638131 3.35132 0 -0.829029 +0.40625 0.1875 0.120664 -0.0906182 1.00824 0.303995 0.101858 0.714263 1.84584 0 0.638131 3.35132 0 -0.829029 +0.4375 0.1875 0.120669 -0.090611 1.00842 0.312481 0.0983702 0.732491 1.8699 0 0.638131 3.35132 0 -0.829029 -0.4375 0.125 0.113287 -0.0851721 1.07288 0.300181 0.110462 0.630983 1.95591 0 0.660055 3.34888 0 -0.882497 -0.46875 0.125 0.113292 -0.0851628 1.07288 0.309177 0.117175 0.637043 1.98237 0 0.660055 3.34888 0 -0.882497 +0.4375 0.125 0.113351 -0.0850839 1.08029 0.29858 0.0920879 0.653353 1.95644 0 0.660055 3.34888 0 -0.882497 +0.46875 0.125 0.113355 -0.0850777 1.08044 0.307447 0.10889 0.649131 1.98197 0 0.660055 3.34888 0 -0.882497 -0.4375 0.15625 0.116876 -0.0879142 1.03735 0.307099 0.165595 0.635809 1.91294 0 0.649264 3.35008 0 -0.855345 -0.46875 0.15625 0.116881 -0.0879038 1.03687 0.316044 0.139719 0.629323 1.93795 0 0.649264 3.35008 0 -0.855345 +0.4375 0.15625 0.116953 -0.087805 1.04443 0.305593 0.0961113 0.688263 1.9133 0 0.649264 3.35008 0 -0.855345 +0.46875 0.15625 0.116959 -0.0877981 1.04453 0.31446 0.123131 0.685831 1.93858 0 0.649264 3.35008 0 -0.855345 -0.46875 0.125 0.113292 -0.0851628 1.07288 0.309177 0.117175 0.637043 1.98237 0 0.660055 3.34888 0 -0.882497 -0.5 0.125 0.113295 -0.0851536 1.07275 0.318464 0.0997774 0.618541 2.00957 0 0.660055 3.34888 0 -0.882497 +0.46875 0.125 0.113355 -0.0850777 1.08044 0.307228 0.10889 0.649131 1.98197 0 0.660055 3.34888 0 -0.882497 +0.5 0.125 0.113361 -0.0850733 1.08035 0.316875 0.127311 0.696619 2.00938 0 0.660055 3.34888 0 -0.882497 -0.46875 0.15625 0.116881 -0.0879038 1.03687 0.316044 0.139719 0.629323 1.93795 0 0.649264 3.35008 0 -0.855345 -0.5 0.15625 0.116884 -0.0878916 1.03702 0.325908 0.0943389 0.595648 1.96623 0 0.649264 3.35008 0 -0.855345 +0.46875 0.15625 0.116959 -0.0877981 1.04453 0.314517 0.123131 0.685831 1.93858 0 0.649264 3.35008 0 -0.855345 +0.5 0.15625 0.116965 -0.0877933 1.04434 0.324163 0.144453 0.705499 1.96619 0 0.649264 3.35008 0 -0.855345 -0.4375 0.15625 0.116876 -0.0879142 1.03735 0.307099 0.165595 0.635809 1.91294 0 0.649264 3.35008 0 -0.855345 -0.46875 0.15625 0.116881 -0.0879038 1.03687 0.316044 0.139719 0.629323 1.93795 0 0.649264 3.35008 0 -0.855345 +0.4375 0.15625 0.116953 -0.087805 1.04443 0.30544 0.0961113 0.688263 1.9133 0 0.649264 3.35008 0 -0.855345 +0.46875 0.15625 0.116959 -0.0877981 1.04453 0.314537 0.123131 0.685831 1.93858 0 0.649264 3.35008 0 -0.855345 -0.4375 0.1875 0.120581 -0.0907423 1.00165 0.314025 0.122851 0.654536 1.86943 0 0.638131 3.35132 0 -0.829029 -0.46875 0.1875 0.120586 -0.0907306 1.00165 0.323516 0.0933421 0.606733 1.89566 0 0.638131 3.35132 0 -0.829029 +0.4375 0.1875 0.120669 -0.090611 1.00842 0.312615 0.0983702 0.732491 1.8699 0 0.638131 3.35132 0 -0.829029 +0.46875 0.1875 0.120675 -0.0906028 1.00861 0.321712 0.128652 0.732609 1.8953 0 0.638131 3.35132 0 -0.829029 -0.46875 0.15625 0.116881 -0.0879038 1.03687 0.316044 0.139719 0.629323 1.93795 0 0.649264 3.35008 0 -0.855345 -0.5 0.15625 0.116884 -0.0878916 1.03702 0.325908 0.0943389 0.595648 1.96623 0 0.649264 3.35008 0 -0.855345 +0.46875 0.15625 0.116959 -0.0877981 1.04453 0.314294 0.123131 0.685831 1.93858 0 0.649264 3.35008 0 -0.855345 +0.5 0.15625 0.116965 -0.0877933 1.04434 0.324281 0.144453 0.705499 1.96619 0 0.649264 3.35008 0 -0.855345 -0.46875 0.1875 0.120586 -0.0907306 1.00165 0.323516 0.0933421 0.606733 1.89566 0 0.638131 3.35132 0 -0.829029 -0.5 0.1875 0.12059 -0.090716 1.00208 0.332729 0.0984531 0.604482 1.92155 0 0.638131 3.35132 0 -0.829029 +0.46875 0.1875 0.120675 -0.0906028 1.00861 0.321794 0.128652 0.732609 1.8953 0 0.638131 3.35132 0 -0.829029 +0.5 0.1875 0.120681 -0.0905978 1.00833 0.331781 0.15996 0.742636 1.92311 0 0.638131 3.35132 0 -0.829029 -0.375 0.1875 0.120566 -0.0907642 1.00186 0.296745 0.107038 0.662799 1.82189 0 0.638131 3.35132 0 -0.829029 -0.40625 0.1875 0.120575 -0.0907542 1.00174 0.305338 0.130665 0.670095 1.84552 0 0.638131 3.35132 0 -0.829029 +0.375 0.1875 0.120658 -0.090625 1.00818 0.295568 0.112085 0.718264 1.82325 0 0.638131 3.35132 0 -0.829029 +0.40625 0.1875 0.120664 -0.0906182 1.00824 0.303909 0.101858 0.714263 1.84584 0 0.638131 3.35132 0 -0.829029 -0.375 0.21875 0.124388 -0.0936785 0.966003 0.303381 0.12048 0.717675 1.77858 0 0.626644 3.3526 0 -0.803523 -0.40625 0.21875 0.124396 -0.0936666 0.966003 0.311908 0.122311 0.68627 1.80142 0 0.626644 3.3526 0 -0.803523 +0.375 0.21875 0.124492 -0.0935197 0.972076 0.302434 0.123383 0.758146 1.78004 0 0.626644 3.3526 0 -0.803523 +0.40625 0.21875 0.124498 -0.0935121 0.972168 0.310775 0.118302 0.760131 1.80262 0 0.626644 3.3526 0 -0.803523 -0.40625 0.1875 0.120575 -0.0907542 1.00174 0.305338 0.130665 0.670095 1.84552 0 0.638131 3.35132 0 -0.829029 -0.4375 0.1875 0.120581 -0.0907423 1.00165 0.314025 0.122851 0.654536 1.86943 0 0.638131 3.35132 0 -0.829029 +0.40625 0.1875 0.120664 -0.0906182 1.00824 0.303738 0.101858 0.714263 1.84584 0 0.638131 3.35132 0 -0.829029 +0.4375 0.1875 0.120669 -0.090611 1.00842 0.312585 0.0983702 0.732491 1.8699 0 0.638131 3.35132 0 -0.829029 -0.40625 0.21875 0.124396 -0.0936666 0.966003 0.311908 0.122311 0.68627 1.80142 0 0.626644 3.3526 0 -0.803523 -0.4375 0.21875 0.124402 -0.0936533 0.965973 0.320985 0.105352 0.670205 1.8257 0 0.626644 3.3526 0 -0.803523 +0.40625 0.21875 0.124498 -0.0935121 0.972168 0.310962 0.118302 0.760131 1.80262 0 0.626644 3.3526 0 -0.803523 +0.4375 0.21875 0.124503 -0.0935041 0.972168 0.319809 0.119542 0.785301 1.82696 0 0.626644 3.3526 0 -0.803523 -0.375 0.21875 0.124388 -0.0936785 0.966003 0.303381 0.12048 0.717675 1.77858 0 0.626644 3.3526 0 -0.803523 -0.40625 0.21875 0.124396 -0.0936666 0.966003 0.311908 0.122311 0.68627 1.80142 0 0.626644 3.3526 0 -0.803523 +0.375 0.21875 0.124492 -0.0935197 0.972076 0.302234 0.123383 0.758146 1.78004 0 0.626644 3.3526 0 -0.803523 +0.40625 0.21875 0.124498 -0.0935121 0.972168 0.310856 0.118302 0.760131 1.80262 0 0.626644 3.3526 0 -0.803523 -0.375 0.25 0.128332 -0.0966802 0.929718 0.310313 0.113918 0.718341 1.73529 0 0.614792 3.35391 0 -0.778801 -0.40625 0.25 0.128339 -0.0966668 0.930145 0.318854 0.091458 0.709602 1.75789 0 0.614792 3.35391 0 -0.778801 +0.375 0.25 0.128448 -0.0965038 0.93573 0.309396 0.130721 0.796593 1.73696 0 0.614792 3.35391 0 -0.778801 +0.40625 0.25 0.128453 -0.0964957 0.935791 0.318019 0.140822 0.812275 1.75993 0 0.614792 3.35391 0 -0.778801 -0.40625 0.21875 0.124396 -0.0936666 0.966003 0.311908 0.122311 0.68627 1.80142 0 0.626644 3.3526 0 -0.803523 -0.4375 0.21875 0.124402 -0.0936533 0.965973 0.320985 0.105352 0.670205 1.8257 0 0.626644 3.3526 0 -0.803523 +0.40625 0.21875 0.124498 -0.0935121 0.972168 0.310646 0.118302 0.760131 1.80262 0 0.626644 3.3526 0 -0.803523 +0.4375 0.21875 0.124503 -0.0935041 0.972168 0.319968 0.119542 0.785301 1.82696 0 0.626644 3.3526 0 -0.803523 -0.40625 0.25 0.128339 -0.0966668 0.930145 0.318854 0.091458 0.709602 1.75789 0 0.614792 3.35391 0 -0.778801 -0.4375 0.25 0.128345 -0.0966516 0.930206 0.328255 0.0919508 0.680851 1.78236 0 0.614792 3.35391 0 -0.778801 +0.40625 0.25 0.128453 -0.0964957 0.935791 0.318175 0.140822 0.812275 1.75993 0 0.614792 3.35391 0 -0.778801 +0.4375 0.25 0.128458 -0.0964875 0.935577 0.327497 0.146989 0.809065 1.78422 0 0.614792 3.35391 0 -0.778801 -0.4375 0.1875 0.120581 -0.0907423 1.00165 0.314025 0.122851 0.654536 1.86943 0 0.638131 3.35132 0 -0.829029 -0.46875 0.1875 0.120586 -0.0907306 1.00165 0.323516 0.0933421 0.606733 1.89566 0 0.638131 3.35132 0 -0.829029 +0.4375 0.1875 0.120669 -0.090611 1.00842 0.312398 0.0983702 0.732491 1.8699 0 0.638131 3.35132 0 -0.829029 +0.46875 0.1875 0.120675 -0.0906028 1.00861 0.321808 0.128652 0.732609 1.8953 0 0.638131 3.35132 0 -0.829029 -0.4375 0.21875 0.124402 -0.0936533 0.965973 0.320985 0.105352 0.670205 1.8257 0 0.626644 3.3526 0 -0.803523 -0.46875 0.21875 0.124408 -0.0936386 0.966248 0.330415 0.0957874 0.646839 1.85123 0 0.626644 3.3526 0 -0.803523 +0.4375 0.21875 0.124503 -0.0935041 0.972168 0.32003 0.119542 0.785301 1.82696 0 0.626644 3.3526 0 -0.803523 +0.46875 0.21875 0.124509 -0.0934954 0.97229 0.32944 0.142397 0.7982 1.85266 0 0.626644 3.3526 0 -0.803523 -0.46875 0.1875 0.120586 -0.0907306 1.00165 0.323516 0.0933421 0.606733 1.89566 0 0.638131 3.35132 0 -0.829029 -0.5 0.1875 0.12059 -0.090716 1.00208 0.332729 0.0984531 0.604482 1.92155 0 0.638131 3.35132 0 -0.829029 +0.46875 0.1875 0.120675 -0.0906028 1.00861 0.321543 0.128652 0.732609 1.8953 0 0.638131 3.35132 0 -0.829029 +0.5 0.1875 0.120681 -0.0905978 1.00833 0.331863 0.15996 0.742636 1.92311 0 0.638131 3.35132 0 -0.829029 -0.46875 0.21875 0.124408 -0.0936386 0.966248 0.330415 0.0957874 0.646839 1.85123 0 0.626644 3.3526 0 -0.803523 -0.5 0.21875 0.124413 -0.0936224 0.966339 0.340693 0.0971311 0.648298 1.87885 0 0.626644 3.3526 0 -0.803523 +0.46875 0.21875 0.124509 -0.0934954 0.97229 0.329518 0.142397 0.7982 1.85266 0 0.626644 3.3526 0 -0.803523 +0.5 0.21875 0.124514 -0.0934895 0.971954 0.339837 0.163612 0.787468 1.88021 0 0.626644 3.3526 0 -0.803523 -0.4375 0.21875 0.124402 -0.0936533 0.965973 0.320985 0.105352 0.670205 1.8257 0 0.626644 3.3526 0 -0.803523 -0.46875 0.21875 0.124408 -0.0936386 0.966248 0.330415 0.0957874 0.646839 1.85123 0 0.626644 3.3526 0 -0.803523 +0.4375 0.21875 0.124503 -0.0935041 0.972168 0.319751 0.119542 0.785301 1.82696 0 0.626644 3.3526 0 -0.803523 +0.46875 0.21875 0.124509 -0.0934954 0.97229 0.329561 0.142397 0.7982 1.85266 0 0.626644 3.3526 0 -0.803523 -0.4375 0.25 0.128345 -0.0966516 0.930206 0.328255 0.0919508 0.680851 1.78236 0 0.614792 3.35391 0 -0.778801 -0.46875 0.25 0.128352 -0.0966348 0.930511 0.338012 0.0747236 0.69365 1.80799 0 0.614792 3.35391 0 -0.778801 +0.4375 0.25 0.128458 -0.0964875 0.935577 0.327693 0.146989 0.809065 1.78422 0 0.614792 3.35391 0 -0.778801 +0.46875 0.25 0.128462 -0.0964794 0.935547 0.337503 0.142033 0.81285 1.80984 0 0.614792 3.35391 0 -0.778801 -0.46875 0.21875 0.124408 -0.0936386 0.966248 0.330415 0.0957874 0.646839 1.85123 0 0.626644 3.3526 0 -0.803523 -0.5 0.21875 0.124413 -0.0936224 0.966339 0.340693 0.0971311 0.648298 1.87885 0 0.626644 3.3526 0 -0.803523 +0.46875 0.21875 0.124509 -0.0934954 0.97229 0.329321 0.142397 0.7982 1.85266 0 0.626644 3.3526 0 -0.803523 +0.5 0.21875 0.124514 -0.0934895 0.971954 0.339872 0.163612 0.787468 1.88021 0 0.626644 3.3526 0 -0.803523 -0.46875 0.25 0.128352 -0.0966348 0.930511 0.338012 0.0747236 0.69365 1.80799 0 0.614792 3.35391 0 -0.778801 -0.5 0.25 0.128357 -0.0966162 0.930939 0.348178 0.0986954 0.702404 1.83481 0 0.614792 3.35391 0 -0.778801 +0.46875 0.25 0.128462 -0.0964794 0.935547 0.337529 0.142033 0.81285 1.80984 0 0.614792 3.35391 0 -0.778801 +0.5 0.25 0.128467 -0.096472 0.935455 0.348081 0.148786 0.80211 1.83715 0 0.614792 3.35391 0 -0.778801 -0 0.25 0.128403 -0.0963019 0.928802 0.238123 0.128364 0.71366 1.54697 0 0.614792 3.35391 0 -0.778801 -0.03125 0.25 0.128372 -0.0964289 0.928802 0.242383 0.128257 0.715334 1.55803 0 0.614792 3.35391 0 -0.778801 +0 0.25 0.128403 -0.0963019 0.935638 0.236938 0.135044 0.773513 1.54968 0 0.614792 3.35391 0 -0.778801 +0.03125 0.25 0.128392 -0.0963719 0.935547 0.241205 0.116344 0.773419 1.56048 0 0.614792 3.35391 0 -0.778801 -0 0.28125 0.132478 -0.0993589 0.892822 0.242986 0.120686 0.750315 1.50421 0 0.602565 3.35527 0 -0.75484 -0.03125 0.28125 0.132451 -0.0994934 0.892853 0.247219 0.10795 0.748186 1.51489 0 0.602565 3.35527 0 -0.75484 +0 0.28125 0.132478 -0.0993589 0.899384 0.241818 0.11886 0.79874 1.50657 0 0.602565 3.35527 0 -0.75484 +0.03125 0.28125 0.13247 -0.0994342 0.899445 0.246084 0.113227 0.811023 1.51764 0 0.602565 3.35527 0 -0.75484 -0.03125 0.25 0.128372 -0.0964289 0.928802 0.242383 0.128257 0.715334 1.55803 0 0.614792 3.35391 0 -0.778801 -0.0625 0.25 0.128349 -0.0965254 0.928802 0.24693 0.1277 0.688927 1.56983 0 0.614792 3.35391 0 -0.778801 +0.03125 0.25 0.128392 -0.0963719 0.935547 0.241139 0.116344 0.773419 1.56048 0 0.614792 3.35391 0 -0.778801 +0.0625 0.25 0.128387 -0.0964252 0.935791 0.245543 0.102852 0.764031 1.5719 0 0.614792 3.35391 0 -0.778801 -0.03125 0.28125 0.132451 -0.0994934 0.892853 0.247219 0.10795 0.748186 1.51489 0 0.602565 3.35527 0 -0.75484 -0.0625 0.28125 0.13243 -0.0995949 0.893158 0.251675 0.116838 0.750015 1.5264 0 0.602565 3.35527 0 -0.75484 +0.03125 0.28125 0.13247 -0.0994342 0.899445 0.246141 0.113227 0.811023 1.51764 0 0.602565 3.35527 0 -0.75484 +0.0625 0.28125 0.132465 -0.0994911 0.899597 0.250546 0.106774 0.800475 1.52908 0 0.602565 3.35527 0 -0.75484 -0 0.28125 0.132478 -0.0993589 0.892822 0.242986 0.120686 0.750315 1.50421 0 0.602565 3.35527 0 -0.75484 -0.03125 0.28125 0.132451 -0.0994934 0.892853 0.247219 0.10795 0.748186 1.51489 0 0.602565 3.35527 0 -0.75484 +0 0.28125 0.132478 -0.0993589 0.899384 0.24168 0.11886 0.79874 1.50657 0 0.602565 3.35527 0 -0.75484 +0.03125 0.28125 0.13247 -0.0994342 0.899445 0.246139 0.113227 0.811023 1.51764 0 0.602565 3.35527 0 -0.75484 -0 0.3125 0.136684 -0.102513 0.856781 0.247805 0.133347 0.793899 1.46111 0 0.589949 3.35667 0 -0.731616 -0.03125 0.3125 0.13666 -0.102653 0.856812 0.252248 0.137764 0.790975 1.47197 0 0.589949 3.35667 0 -0.731616 +0 0.3125 0.136684 -0.102513 0.863129 0.246814 0.169992 0.84819 1.4641 0 0.589949 3.35667 0 -0.731616 +0.03125 0.3125 0.136677 -0.102592 0.862823 0.251274 0.125489 0.844189 1.47488 0 0.589949 3.35667 0 -0.731616 -0.03125 0.28125 0.132451 -0.0994934 0.892853 0.247219 0.10795 0.748186 1.51489 0 0.602565 3.35527 0 -0.75484 -0.0625 0.28125 0.13243 -0.0995949 0.893158 0.251675 0.116838 0.750015 1.5264 0 0.602565 3.35527 0 -0.75484 +0.03125 0.28125 0.13247 -0.0994342 0.899445 0.246063 0.113227 0.811023 1.51764 0 0.602565 3.35527 0 -0.75484 +0.0625 0.28125 0.132465 -0.0994911 0.899597 0.250495 0.106774 0.800475 1.52908 0 0.602565 3.35527 0 -0.75484 -0.03125 0.3125 0.13666 -0.102653 0.856812 0.252248 0.137764 0.790975 1.47197 0 0.589949 3.35667 0 -0.731616 -0.0625 0.3125 0.136641 -0.102759 0.85675 0.257008 0.13549 0.809537 1.48352 0 0.589949 3.35667 0 -0.731616 +0.03125 0.3125 0.136677 -0.102592 0.862823 0.251367 0.125489 0.844189 1.47488 0 0.589949 3.35667 0 -0.731616 +0.0625 0.3125 0.136674 -0.102651 0.86322 0.255799 0.0696352 0.846169 1.48586 0 0.589949 3.35667 0 -0.731616 -0.0625 0.25 0.128349 -0.0965254 0.928802 0.24693 0.1277 0.688927 1.56983 0 0.614792 3.35391 0 -0.778801 -0.09375 0.25 0.128333 -0.0965931 0.928802 0.251686 0.124553 0.697476 1.58218 0 0.614792 3.35391 0 -0.778801 +0.0625 0.25 0.128387 -0.0964252 0.935791 0.245453 0.102852 0.764031 1.5719 0 0.614792 3.35391 0 -0.778801 +0.09375 0.25 0.128386 -0.096464 0.935883 0.250206 0.104708 0.751529 1.58415 0 0.614792 3.35391 0 -0.778801 -0.0625 0.28125 0.13243 -0.0995949 0.893158 0.251675 0.116838 0.750015 1.5264 0 0.602565 3.35527 0 -0.75484 -0.09375 0.28125 0.132415 -0.0996693 0.893097 0.256611 0.150368 0.748386 1.53877 0 0.602565 3.35527 0 -0.75484 +0.0625 0.28125 0.132465 -0.0994911 0.899597 0.250589 0.106774 0.800475 1.52908 0 0.602565 3.35527 0 -0.75484 +0.09375 0.28125 0.132465 -0.0995331 0.89975 0.255342 0.10686 0.76849 1.54087 0 0.602565 3.35527 0 -0.75484 -0.09375 0.25 0.128333 -0.0965931 0.928802 0.251686 0.124553 0.697476 1.58218 0 0.614792 3.35391 0 -0.778801 -0.125 0.25 0.128321 -0.0966416 0.928864 0.256794 0.127597 0.702464 1.5955 0 0.614792 3.35391 0 -0.778801 +0.09375 0.25 0.128386 -0.096464 0.935883 0.250144 0.104708 0.751529 1.58415 0 0.614792 3.35391 0 -0.778801 +0.125 0.25 0.128389 -0.0964907 0.936066 0.255176 0.107938 0.750163 1.59715 0 0.614792 3.35391 0 -0.778801 -0.09375 0.28125 0.132415 -0.0996693 0.893097 0.256611 0.150368 0.748386 1.53877 0 0.602565 3.35527 0 -0.75484 -0.125 0.28125 0.132403 -0.0997225 0.892853 0.262052 0.146963 0.745458 1.55221 0 0.602565 3.35527 0 -0.75484 +0.09375 0.28125 0.132465 -0.0995331 0.89975 0.255391 0.10686 0.76849 1.54087 0 0.602565 3.35527 0 -0.75484 +0.125 0.28125 0.132469 -0.0995628 0.899902 0.260423 0.113458 0.79047 1.55409 0 0.602565 3.35527 0 -0.75484 -0.0625 0.28125 0.13243 -0.0995949 0.893158 0.251675 0.116838 0.750015 1.5264 0 0.602565 3.35527 0 -0.75484 -0.09375 0.28125 0.132415 -0.0996693 0.893097 0.256611 0.150368 0.748386 1.53877 0 0.602565 3.35527 0 -0.75484 +0.0625 0.28125 0.132465 -0.0994911 0.899597 0.250556 0.106774 0.800475 1.52908 0 0.602565 3.35527 0 -0.75484 +0.09375 0.28125 0.132465 -0.0995331 0.89975 0.25529 0.10686 0.76849 1.54087 0 0.602565 3.35527 0 -0.75484 -0.0625 0.3125 0.136641 -0.102759 0.85675 0.257008 0.13549 0.809537 1.48352 0 0.589949 3.35667 0 -0.731616 -0.09375 0.3125 0.136625 -0.102839 0.856812 0.26207 0.128617 0.812572 1.49593 0 0.589949 3.35667 0 -0.731616 +0.0625 0.3125 0.136674 -0.102651 0.86322 0.255716 0.0696352 0.846169 1.48586 0 0.589949 3.35667 0 -0.731616 +0.09375 0.3125 0.136675 -0.102696 0.8638 0.260451 0.101416 0.842358 1.49806 0 0.589949 3.35667 0 -0.731616 -0.09375 0.28125 0.132415 -0.0996693 0.893097 0.256611 0.150368 0.748386 1.53877 0 0.602565 3.35527 0 -0.75484 -0.125 0.28125 0.132403 -0.0997225 0.892853 0.262052 0.146963 0.745458 1.55221 0 0.602565 3.35527 0 -0.75484 +0.09375 0.28125 0.132465 -0.0995331 0.89975 0.255188 0.10686 0.76849 1.54087 0 0.602565 3.35527 0 -0.75484 +0.125 0.28125 0.132469 -0.0995628 0.899902 0.260504 0.113458 0.79047 1.55409 0 0.602565 3.35527 0 -0.75484 -0.09375 0.3125 0.136625 -0.102839 0.856812 0.26207 0.128617 0.812572 1.49593 0 0.589949 3.35667 0 -0.731616 -0.125 0.3125 0.136614 -0.102896 0.856903 0.267492 0.145278 0.798696 1.50924 0 0.589949 3.35667 0 -0.731616 +0.09375 0.3125 0.136675 -0.102696 0.8638 0.2605 0.101416 0.842358 1.49806 0 0.589949 3.35667 0 -0.731616 +0.125 0.3125 0.136679 -0.102728 0.863617 0.265816 0.13674 0.844041 1.51101 0 0.589949 3.35667 0 -0.731616 -0 0.3125 0.136684 -0.102513 0.856781 0.247805 0.133347 0.793899 1.46111 0 0.589949 3.35667 0 -0.731616 -0.03125 0.3125 0.13666 -0.102653 0.856812 0.252248 0.137764 0.790975 1.47197 0 0.589949 3.35667 0 -0.731616 +0 0.3125 0.136684 -0.102513 0.863129 0.246748 0.169992 0.84819 1.4641 0 0.589949 3.35667 0 -0.731616 +0.03125 0.3125 0.136677 -0.102592 0.862823 0.25134 0.125489 0.844189 1.47488 0 0.589949 3.35667 0 -0.731616 -0 0.34375 0.141023 -0.105767 0.820465 0.252889 0.126372 0.836177 1.41822 0 0.576932 3.35812 0 -0.709106 -0.03125 0.34375 0.141003 -0.105911 0.820557 0.257458 0.131155 0.843297 1.42911 0 0.576932 3.35812 0 -0.709106 +0 0.34375 0.141023 -0.105767 0.826477 0.251885 0.122489 0.908269 1.42113 0 0.576932 3.35812 0 -0.709106 +0.03125 0.34375 0.141019 -0.105848 0.826569 0.256477 0.119779 0.886492 1.43188 0 0.576932 3.35812 0 -0.709106 -0.03125 0.3125 0.13666 -0.102653 0.856812 0.252248 0.137764 0.790975 1.47197 0 0.589949 3.35667 0 -0.731616 -0.0625 0.3125 0.136641 -0.102759 0.85675 0.257008 0.13549 0.809537 1.48352 0 0.589949 3.35667 0 -0.731616 +0.03125 0.3125 0.136677 -0.102592 0.862823 0.251298 0.125489 0.844189 1.47488 0 0.589949 3.35667 0 -0.731616 +0.0625 0.3125 0.136674 -0.102651 0.86322 0.255859 0.0696352 0.846169 1.48586 0 0.589949 3.35667 0 -0.731616 -0.03125 0.34375 0.141003 -0.105911 0.820557 0.257458 0.131155 0.843297 1.42911 0 0.576932 3.35812 0 -0.709106 -0.0625 0.34375 0.140985 -0.106021 0.820587 0.26229 0.142021 0.851442 1.44056 0 0.576932 3.35812 0 -0.709106 +0.03125 0.34375 0.141019 -0.105848 0.826569 0.256526 0.119779 0.886492 1.43188 0 0.576932 3.35812 0 -0.709106 +0.0625 0.34375 0.141017 -0.10591 0.826691 0.261086 0.111887 0.895951 1.44309 0 0.576932 3.35812 0 -0.709106 -0 0.34375 0.141023 -0.105767 0.820465 0.252889 0.126372 0.836177 1.41822 0 0.576932 3.35812 0 -0.709106 -0.03125 0.34375 0.141003 -0.105911 0.820557 0.257458 0.131155 0.843297 1.42911 0 0.576932 3.35812 0 -0.709106 +0 0.34375 0.141023 -0.105767 0.826477 0.25185 0.122489 0.908269 1.42113 0 0.576932 3.35812 0 -0.709106 +0.03125 0.34375 0.141019 -0.105848 0.826569 0.256418 0.119779 0.886492 1.43188 0 0.576932 3.35812 0 -0.709106 -0 0.375 0.145499 -0.109124 0.78418 0.25817 0.153881 0.884735 1.37564 0 0.563503 3.35961 0 -0.687289 -0.03125 0.375 0.145482 -0.109271 0.784149 0.262754 0.158982 0.909027 1.38611 0 0.563503 3.35961 0 -0.687289 +0 0.375 0.145499 -0.109124 0.789734 0.257276 0.132589 0.964284 1.37837 0 0.563503 3.35961 0 -0.687289 +0.03125 0.375 0.145498 -0.109206 0.789764 0.261845 0.118463 0.961048 1.38892 0 0.563503 3.35961 0 -0.687289 -0.03125 0.34375 0.141003 -0.105911 0.820557 0.257458 0.131155 0.843297 1.42911 0 0.576932 3.35812 0 -0.709106 -0.0625 0.34375 0.140985 -0.106021 0.820587 0.26229 0.142021 0.851442 1.44056 0 0.576932 3.35812 0 -0.709106 +0.03125 0.34375 0.141019 -0.105848 0.826569 0.256361 0.119779 0.886492 1.43188 0 0.576932 3.35812 0 -0.709106 +0.0625 0.34375 0.141017 -0.10591 0.826691 0.261158 0.111887 0.895951 1.44309 0 0.576932 3.35812 0 -0.709106 -0.03125 0.375 0.145482 -0.109271 0.784149 0.262754 0.158982 0.909027 1.38611 0 0.563503 3.35961 0 -0.687289 -0.0625 0.375 0.145467 -0.109383 0.784058 0.267978 0.171503 0.929343 1.39799 0 0.563503 3.35961 0 -0.687289 +0.03125 0.375 0.145498 -0.109206 0.789764 0.261893 0.118463 0.961048 1.38892 0 0.563503 3.35961 0 -0.687289 +0.0625 0.375 0.145498 -0.109269 0.790039 0.26669 0.112606 0.972442 1.4003 0 0.563503 3.35961 0 -0.687289 -0.0625 0.3125 0.136641 -0.102759 0.85675 0.257008 0.13549 0.809537 1.48352 0 0.589949 3.35667 0 -0.731616 -0.09375 0.3125 0.136625 -0.102839 0.856812 0.26207 0.128617 0.812572 1.49593 0 0.589949 3.35667 0 -0.731616 +0.0625 0.3125 0.136674 -0.102651 0.86322 0.255645 0.0696352 0.846169 1.48586 0 0.589949 3.35667 0 -0.731616 +0.09375 0.3125 0.136675 -0.102696 0.8638 0.26048 0.101416 0.842358 1.49806 0 0.589949 3.35667 0 -0.731616 -0.0625 0.34375 0.140985 -0.106021 0.820587 0.26229 0.142021 0.851442 1.44056 0 0.576932 3.35812 0 -0.709106 -0.09375 0.34375 0.14097 -0.106104 0.820526 0.267555 0.14566 0.872586 1.45294 0 0.576932 3.35812 0 -0.709106 +0.0625 0.34375 0.141017 -0.10591 0.826691 0.261289 0.111887 0.895951 1.44309 0 0.576932 3.35812 0 -0.709106 +0.09375 0.34375 0.141019 -0.105955 0.826904 0.266124 0.112213 0.924279 1.4552 0 0.576932 3.35812 0 -0.709106 -0.09375 0.3125 0.136625 -0.102839 0.856812 0.26207 0.128617 0.812572 1.49593 0 0.589949 3.35667 0 -0.731616 -0.125 0.3125 0.136614 -0.102896 0.856903 0.267492 0.145278 0.798696 1.50924 0 0.589949 3.35667 0 -0.731616 +0.09375 0.3125 0.136675 -0.102696 0.8638 0.260413 0.101416 0.842358 1.49806 0 0.589949 3.35667 0 -0.731616 +0.125 0.3125 0.136679 -0.102728 0.863617 0.26586 0.13674 0.844041 1.51101 0 0.589949 3.35667 0 -0.731616 -0.09375 0.34375 0.14097 -0.106104 0.820526 0.267555 0.14566 0.872586 1.45294 0 0.576932 3.35812 0 -0.709106 -0.125 0.34375 0.140957 -0.106164 0.820526 0.273169 0.145322 0.883082 1.46621 0 0.576932 3.35812 0 -0.709106 +0.09375 0.34375 0.141019 -0.105955 0.826904 0.266194 0.112213 0.924279 1.4552 0 0.576932 3.35812 0 -0.709106 +0.125 0.34375 0.141024 -0.105989 0.827057 0.271641 0.133597 0.915233 1.4683 0 0.576932 3.35812 0 -0.709106 -0.0625 0.34375 0.140985 -0.106021 0.820587 0.26229 0.142021 0.851442 1.44056 0 0.576932 3.35812 0 -0.709106 -0.09375 0.34375 0.14097 -0.106104 0.820526 0.267555 0.14566 0.872586 1.45294 0 0.576932 3.35812 0 -0.709106 +0.0625 0.34375 0.141017 -0.10591 0.826691 0.261059 0.111887 0.895951 1.44309 0 0.576932 3.35812 0 -0.709106 +0.09375 0.34375 0.141019 -0.105955 0.826904 0.266217 0.112213 0.924279 1.4552 0 0.576932 3.35812 0 -0.709106 -0.0625 0.375 0.145467 -0.109383 0.784058 0.267978 0.171503 0.929343 1.39799 0 0.563503 3.35961 0 -0.687289 -0.09375 0.375 0.145453 -0.109468 0.783844 0.273315 0.171723 0.951364 1.41 0 0.563503 3.35961 0 -0.687289 +0.0625 0.375 0.145498 -0.109269 0.790039 0.26673 0.112606 0.972442 1.4003 0 0.563503 3.35961 0 -0.687289 +0.09375 0.375 0.145501 -0.109316 0.790161 0.271888 0.126475 0.977022 1.41227 0 0.563503 3.35961 0 -0.687289 -0.09375 0.34375 0.14097 -0.106104 0.820526 0.267555 0.14566 0.872586 1.45294 0 0.576932 3.35812 0 -0.709106 -0.125 0.34375 0.140957 -0.106164 0.820526 0.273169 0.145322 0.883082 1.46621 0 0.576932 3.35812 0 -0.709106 +0.09375 0.34375 0.141019 -0.105955 0.826904 0.266095 0.112213 0.924279 1.4552 0 0.576932 3.35812 0 -0.709106 +0.125 0.34375 0.141024 -0.105989 0.827057 0.271638 0.133597 0.915233 1.4683 0 0.576932 3.35812 0 -0.709106 -0.09375 0.375 0.145453 -0.109468 0.783844 0.273315 0.171723 0.951364 1.41 0 0.563503 3.35961 0 -0.687289 -0.125 0.375 0.145439 -0.109532 0.783722 0.279229 0.148936 0.949048 1.42342 0 0.563503 3.35961 0 -0.687289 +0.09375 0.375 0.145501 -0.109316 0.790161 0.271996 0.126475 0.977022 1.41227 0 0.563503 3.35961 0 -0.687289 +0.125 0.375 0.145506 -0.109352 0.790192 0.277539 0.12219 0.998808 1.42532 0 0.563503 3.35961 0 -0.687289 -0.125 0.25 0.128321 -0.0966416 0.928864 0.256794 0.127597 0.702464 1.5955 0 0.614792 3.35391 0 -0.778801 -0.15625 0.25 0.128313 -0.0966728 0.928802 0.262259 0.12775 0.730469 1.60963 0 0.614792 3.35391 0 -0.778801 +0.125 0.25 0.128389 -0.0964907 0.936066 0.255091 0.107938 0.750163 1.59715 0 0.614792 3.35391 0 -0.778801 +0.15625 0.25 0.128395 -0.0965078 0.936096 0.260498 0.103939 0.757181 1.61077 0 0.614792 3.35391 0 -0.778801 -0.125 0.28125 0.132403 -0.0997225 0.892853 0.262052 0.146963 0.745458 1.55221 0 0.602565 3.35527 0 -0.75484 -0.15625 0.28125 0.132394 -0.0997585 0.892883 0.26761 0.125673 0.75971 1.56622 0 0.602565 3.35527 0 -0.75484 +0.125 0.28125 0.132469 -0.0995628 0.899902 0.260524 0.113458 0.79047 1.55409 0 0.602565 3.35527 0 -0.75484 +0.15625 0.28125 0.132476 -0.0995815 0.899994 0.26593 0.130856 0.787284 1.56782 0 0.602565 3.35527 0 -0.75484 -0.15625 0.25 0.128313 -0.0966728 0.928802 0.262259 0.12775 0.730469 1.60963 0 0.614792 3.35391 0 -0.778801 -0.1875 0.25 0.128308 -0.096693 0.928802 0.268037 0.104352 0.734222 1.62463 0 0.614792 3.35391 0 -0.778801 +0.15625 0.25 0.128395 -0.0965078 0.936096 0.260333 0.103939 0.757181 1.61077 0 0.614792 3.35391 0 -0.778801 +0.1875 0.25 0.128402 -0.0965175 0.936432 0.266093 0.129824 0.769775 1.62577 0 0.614792 3.35391 0 -0.778801 -0.15625 0.28125 0.132394 -0.0997585 0.892883 0.26761 0.125673 0.75971 1.56622 0 0.602565 3.35527 0 -0.75484 -0.1875 0.28125 0.132387 -0.0997815 0.892975 0.273491 0.121003 0.761922 1.58112 0 0.602565 3.35527 0 -0.75484 +0.15625 0.28125 0.132476 -0.0995815 0.899994 0.266027 0.130856 0.787284 1.56782 0 0.602565 3.35527 0 -0.75484 +0.1875 0.28125 0.132484 -0.0995928 0.899902 0.271787 0.141407 0.826229 1.58265 0 0.602565 3.35527 0 -0.75484 -0.125 0.28125 0.132403 -0.0997225 0.892853 0.262052 0.146963 0.745458 1.55221 0 0.602565 3.35527 0 -0.75484 -0.15625 0.28125 0.132394 -0.0997585 0.892883 0.26761 0.125673 0.75971 1.56622 0 0.602565 3.35527 0 -0.75484 +0.125 0.28125 0.132469 -0.0995628 0.899902 0.260388 0.113458 0.79047 1.55409 0 0.602565 3.35527 0 -0.75484 +0.15625 0.28125 0.132476 -0.0995815 0.899994 0.265943 0.130856 0.787284 1.56782 0 0.602565 3.35527 0 -0.75484 -0.125 0.3125 0.136614 -0.102896 0.856903 0.267492 0.145278 0.798696 1.50924 0 0.589949 3.35667 0 -0.731616 -0.15625 0.3125 0.136605 -0.102935 0.856689 0.273295 0.152144 0.803251 1.52318 0 0.589949 3.35667 0 -0.731616 +0.125 0.3125 0.136679 -0.102728 0.863617 0.265928 0.13674 0.844041 1.51101 0 0.589949 3.35667 0 -0.731616 +0.15625 0.3125 0.136686 -0.102749 0.863739 0.271483 0.15001 0.850501 1.52466 0 0.589949 3.35667 0 -0.731616 -0.15625 0.28125 0.132394 -0.0997585 0.892883 0.26761 0.125673 0.75971 1.56622 0 0.602565 3.35527 0 -0.75484 -0.1875 0.28125 0.132387 -0.0997815 0.892975 0.273491 0.121003 0.761922 1.58112 0 0.602565 3.35527 0 -0.75484 +0.15625 0.28125 0.132476 -0.0995815 0.899994 0.265816 0.130856 0.787284 1.56782 0 0.602565 3.35527 0 -0.75484 +0.1875 0.28125 0.132484 -0.0995928 0.899902 0.271925 0.141407 0.826229 1.58265 0 0.602565 3.35527 0 -0.75484 -0.15625 0.3125 0.136605 -0.102935 0.856689 0.273295 0.152144 0.803251 1.52318 0 0.589949 3.35667 0 -0.731616 -0.1875 0.3125 0.136597 -0.102959 0.856659 0.279294 0.132268 0.802789 1.53778 0 0.589949 3.35667 0 -0.731616 +0.15625 0.3125 0.136686 -0.102749 0.863739 0.271543 0.15001 0.850501 1.52466 0 0.589949 3.35667 0 -0.731616 +0.1875 0.3125 0.136695 -0.102762 0.863495 0.277652 0.171855 0.865961 1.53966 0 0.589949 3.35667 0 -0.731616 -0.1875 0.25 0.128308 -0.096693 0.928802 0.268037 0.104352 0.734222 1.62463 0 0.614792 3.35391 0 -0.778801 -0.21875 0.25 0.128307 -0.0967023 0.929108 0.273923 0.0916796 0.742117 1.64021 0 0.614792 3.35391 0 -0.778801 +0.1875 0.25 0.128402 -0.0965175 0.936432 0.265992 0.129824 0.769775 1.62577 0 0.614792 3.35391 0 -0.778801 +0.21875 0.25 0.128411 -0.0965229 0.936005 0.272268 0.129191 0.78024 1.64141 0 0.614792 3.35391 0 -0.778801 -0.1875 0.28125 0.132387 -0.0997815 0.892975 0.273491 0.121003 0.761922 1.58112 0 0.602565 3.35527 0 -0.75484 -0.21875 0.28125 0.132384 -0.0997917 0.892975 0.279791 0.103427 0.775699 1.59697 0 0.602565 3.35527 0 -0.75484 +0.1875 0.28125 0.132484 -0.0995928 0.899902 0.271878 0.141407 0.826229 1.58265 0 0.602565 3.35527 0 -0.75484 +0.21875 0.28125 0.132493 -0.0995988 0.899872 0.278154 0.143796 0.816491 1.59853 0 0.602565 3.35527 0 -0.75484 -0.21875 0.25 0.128307 -0.0967023 0.929108 0.273923 0.0916796 0.742117 1.64021 0 0.614792 3.35391 0 -0.778801 -0.25 0.25 0.128308 -0.0967055 0.92923 0.280258 0.0816676 0.743571 1.65678 0 0.614792 3.35391 0 -0.778801 +0.21875 0.25 0.128411 -0.0965229 0.936005 0.272194 0.129191 0.78024 1.64141 0 0.614792 3.35391 0 -0.778801 +0.25 0.25 0.128419 -0.0965236 0.936401 0.278663 0.120798 0.79202 1.65817 0 0.614792 3.35391 0 -0.778801 -0.21875 0.28125 0.132384 -0.0997917 0.892975 0.279791 0.103427 0.775699 1.59697 0 0.602565 3.35527 0 -0.75484 -0.25 0.28125 0.132383 -0.0997949 0.89328 0.286349 0.0787795 0.791183 1.61377 0 0.602565 3.35527 0 -0.75484 +0.21875 0.28125 0.132493 -0.0995988 0.899872 0.278317 0.143796 0.816491 1.59853 0 0.602565 3.35527 0 -0.75484 +0.25 0.28125 0.132501 -0.0996 0.89978 0.284786 0.147585 0.852041 1.61531 0 0.602565 3.35527 0 -0.75484 -0.1875 0.28125 0.132387 -0.0997815 0.892975 0.273491 0.121003 0.761922 1.58112 0 0.602565 3.35527 0 -0.75484 -0.21875 0.28125 0.132384 -0.0997917 0.892975 0.279791 0.103427 0.775699 1.59697 0 0.602565 3.35527 0 -0.75484 +0.1875 0.28125 0.132484 -0.0995928 0.899902 0.271757 0.141407 0.826229 1.58265 0 0.602565 3.35527 0 -0.75484 +0.21875 0.28125 0.132493 -0.0995988 0.899872 0.27819 0.143796 0.816491 1.59853 0 0.602565 3.35527 0 -0.75484 -0.1875 0.3125 0.136597 -0.102959 0.856659 0.279294 0.132268 0.802789 1.53778 0 0.589949 3.35667 0 -0.731616 -0.21875 0.3125 0.136591 -0.102973 0.856781 0.285807 0.128417 0.810765 1.55378 0 0.589949 3.35667 0 -0.731616 +0.1875 0.3125 0.136695 -0.102762 0.863495 0.277846 0.171855 0.865961 1.53966 0 0.589949 3.35667 0 -0.731616 +0.21875 0.3125 0.136704 -0.102769 0.863281 0.28428 0.16733 0.871065 1.55551 0 0.589949 3.35667 0 -0.731616 -0.21875 0.28125 0.132384 -0.0997917 0.892975 0.279791 0.103427 0.775699 1.59697 0 0.602565 3.35527 0 -0.75484 -0.25 0.28125 0.132383 -0.0997949 0.89328 0.286349 0.0787795 0.791183 1.61377 0 0.602565 3.35527 0 -0.75484 +0.21875 0.28125 0.132493 -0.0995988 0.899872 0.278087 0.143796 0.816491 1.59853 0 0.602565 3.35527 0 -0.75484 +0.25 0.28125 0.132501 -0.0996 0.89978 0.284934 0.147585 0.852041 1.61531 0 0.602565 3.35527 0 -0.75484 -0.21875 0.3125 0.136591 -0.102973 0.856781 0.285807 0.128417 0.810765 1.55378 0 0.589949 3.35667 0 -0.731616 -0.25 0.3125 0.136589 -0.102979 0.856659 0.292692 0.0918773 0.817544 1.57045 0 0.589949 3.35667 0 -0.731616 +0.21875 0.3125 0.136704 -0.102769 0.863281 0.284428 0.16733 0.871065 1.55551 0 0.589949 3.35667 0 -0.731616 +0.25 0.3125 0.136712 -0.102771 0.863159 0.291275 0.162735 0.889376 1.5724 0 0.589949 3.35667 0 -0.731616 -0.125 0.3125 0.136614 -0.102896 0.856903 0.267492 0.145278 0.798696 1.50924 0 0.589949 3.35667 0 -0.731616 -0.15625 0.3125 0.136605 -0.102935 0.856689 0.273295 0.152144 0.803251 1.52318 0 0.589949 3.35667 0 -0.731616 +0.125 0.3125 0.136679 -0.102728 0.863617 0.265809 0.13674 0.844041 1.51101 0 0.589949 3.35667 0 -0.731616 +0.15625 0.3125 0.136686 -0.102749 0.863739 0.271559 0.15001 0.850501 1.52466 0 0.589949 3.35667 0 -0.731616 -0.125 0.34375 0.140957 -0.106164 0.820526 0.273169 0.145322 0.883082 1.46621 0 0.576932 3.35812 0 -0.709106 -0.15625 0.34375 0.140948 -0.106206 0.820465 0.279069 0.139708 0.861386 1.4801 0 0.576932 3.35812 0 -0.709106 +0.125 0.34375 0.141024 -0.105989 0.827057 0.271689 0.133597 0.915233 1.4683 0 0.576932 3.35812 0 -0.709106 +0.15625 0.34375 0.141031 -0.106013 0.826996 0.277439 0.159687 0.900823 1.48168 0 0.576932 3.35812 0 -0.709106 -0.15625 0.3125 0.136605 -0.102935 0.856689 0.273295 0.152144 0.803251 1.52318 0 0.589949 3.35667 0 -0.731616 -0.1875 0.3125 0.136597 -0.102959 0.856659 0.279294 0.132268 0.802789 1.53778 0 0.589949 3.35667 0 -0.731616 +0.15625 0.3125 0.136686 -0.102749 0.863739 0.271363 0.15001 0.850501 1.52466 0 0.589949 3.35667 0 -0.731616 +0.1875 0.3125 0.136695 -0.102762 0.863495 0.277731 0.171855 0.865961 1.53966 0 0.589949 3.35667 0 -0.731616 -0.15625 0.34375 0.140948 -0.106206 0.820465 0.279069 0.139708 0.861386 1.4801 0 0.576932 3.35812 0 -0.709106 -0.1875 0.34375 0.140939 -0.106233 0.820557 0.285251 0.140506 0.855513 1.4948 0 0.576932 3.35812 0 -0.709106 +0.15625 0.34375 0.141031 -0.106013 0.826996 0.277465 0.159687 0.900823 1.48168 0 0.576932 3.35812 0 -0.709106 +0.1875 0.34375 0.14104 -0.106028 0.826813 0.283834 0.169323 0.922205 1.49672 0 0.576932 3.35812 0 -0.709106 -0.125 0.34375 0.140957 -0.106164 0.820526 0.273169 0.145322 0.883082 1.46621 0 0.576932 3.35812 0 -0.709106 -0.15625 0.34375 0.140948 -0.106206 0.820465 0.279069 0.139708 0.861386 1.4801 0 0.576932 3.35812 0 -0.709106 +0.125 0.34375 0.141024 -0.105989 0.827057 0.271581 0.133597 0.915233 1.4683 0 0.576932 3.35812 0 -0.709106 +0.15625 0.34375 0.141031 -0.106013 0.826996 0.277458 0.159687 0.900823 1.48168 0 0.576932 3.35812 0 -0.709106 -0.125 0.375 0.145439 -0.109532 0.783722 0.279229 0.148936 0.949048 1.42342 0 0.563503 3.35961 0 -0.687289 -0.15625 0.375 0.145428 -0.109576 0.783813 0.285196 0.128495 0.928118 1.43719 0 0.563503 3.35961 0 -0.687289 +0.125 0.375 0.145506 -0.109352 0.790192 0.277579 0.12219 0.998808 1.42532 0 0.563503 3.35961 0 -0.687289 +0.15625 0.375 0.145513 -0.109377 0.790527 0.283455 0.164294 0.988109 1.43888 0 0.563503 3.35961 0 -0.687289 -0.15625 0.34375 0.140948 -0.106206 0.820465 0.279069 0.139708 0.861386 1.4801 0 0.576932 3.35812 0 -0.709106 -0.1875 0.34375 0.140939 -0.106233 0.820557 0.285251 0.140506 0.855513 1.4948 0 0.576932 3.35812 0 -0.709106 +0.15625 0.34375 0.141031 -0.106013 0.826996 0.277273 0.159687 0.900823 1.48168 0 0.576932 3.35812 0 -0.709106 +0.1875 0.34375 0.14104 -0.106028 0.826813 0.28389 0.169323 0.922205 1.49672 0 0.576932 3.35812 0 -0.709106 -0.15625 0.375 0.145428 -0.109576 0.783813 0.285196 0.128495 0.928118 1.43719 0 0.563503 3.35961 0 -0.687289 -0.1875 0.375 0.145419 -0.109604 0.783936 0.291639 0.121832 0.950672 1.45207 0 0.563503 3.35961 0 -0.687289 +0.15625 0.375 0.145513 -0.109377 0.790527 0.283468 0.164294 0.988109 1.43888 0 0.563503 3.35961 0 -0.687289 +0.1875 0.375 0.145522 -0.109395 0.790009 0.290086 0.211619 0.996928 1.45404 0 0.563503 3.35961 0 -0.687289 -0.1875 0.3125 0.136597 -0.102959 0.856659 0.279294 0.132268 0.802789 1.53778 0 0.589949 3.35667 0 -0.731616 -0.21875 0.3125 0.136591 -0.102973 0.856781 0.285807 0.128417 0.810765 1.55378 0 0.589949 3.35667 0 -0.731616 +0.1875 0.3125 0.136695 -0.102762 0.863495 0.277621 0.171855 0.865961 1.53966 0 0.589949 3.35667 0 -0.731616 +0.21875 0.3125 0.136704 -0.102769 0.863281 0.284324 0.16733 0.871065 1.55551 0 0.589949 3.35667 0 -0.731616 -0.1875 0.34375 0.140939 -0.106233 0.820557 0.285251 0.140506 0.855513 1.4948 0 0.576932 3.35812 0 -0.709106 -0.21875 0.34375 0.140933 -0.106249 0.820435 0.292039 0.128212 0.846698 1.51072 0 0.576932 3.35812 0 -0.709106 +0.1875 0.34375 0.14104 -0.106028 0.826813 0.283905 0.169323 0.922205 1.49672 0 0.576932 3.35812 0 -0.709106 +0.21875 0.34375 0.141048 -0.106037 0.826691 0.290608 0.177938 0.930353 1.51271 0 0.576932 3.35812 0 -0.709106 -0.21875 0.3125 0.136591 -0.102973 0.856781 0.285807 0.128417 0.810765 1.55378 0 0.589949 3.35667 0 -0.731616 -0.25 0.3125 0.136589 -0.102979 0.856659 0.292692 0.0918773 0.817544 1.57045 0 0.589949 3.35667 0 -0.731616 +0.21875 0.3125 0.136704 -0.102769 0.863281 0.284214 0.16733 0.871065 1.55551 0 0.589949 3.35667 0 -0.731616 +0.25 0.3125 0.136712 -0.102771 0.863159 0.291343 0.162735 0.889376 1.5724 0 0.589949 3.35667 0 -0.731616 -0.21875 0.34375 0.140933 -0.106249 0.820435 0.292039 0.128212 0.846698 1.51072 0 0.576932 3.35812 0 -0.709106 -0.25 0.34375 0.140929 -0.106255 0.820648 0.299022 0.099145 0.835505 1.52744 0 0.576932 3.35812 0 -0.709106 +0.21875 0.34375 0.141048 -0.106037 0.826691 0.290714 0.177938 0.930353 1.51271 0 0.576932 3.35812 0 -0.709106 +0.25 0.34375 0.141056 -0.10604 0.826416 0.297843 0.186035 0.937492 1.52953 0 0.576932 3.35812 0 -0.709106 -0.1875 0.34375 0.140939 -0.106233 0.820557 0.285251 0.140506 0.855513 1.4948 0 0.576932 3.35812 0 -0.709106 -0.21875 0.34375 0.140933 -0.106249 0.820435 0.292039 0.128212 0.846698 1.51072 0 0.576932 3.35812 0 -0.709106 +0.1875 0.34375 0.14104 -0.106028 0.826813 0.283718 0.169323 0.922205 1.49672 0 0.576932 3.35812 0 -0.709106 +0.21875 0.34375 0.141048 -0.106037 0.826691 0.290639 0.177938 0.930353 1.51271 0 0.576932 3.35812 0 -0.709106 -0.1875 0.375 0.145419 -0.109604 0.783936 0.291639 0.121832 0.950672 1.45207 0 0.563503 3.35961 0 -0.687289 -0.21875 0.375 0.145412 -0.109623 0.784088 0.298297 0.125624 0.898968 1.46748 0 0.563503 3.35961 0 -0.687289 +0.1875 0.375 0.145522 -0.109395 0.790009 0.290255 0.211619 0.996928 1.45404 0 0.563503 3.35961 0 -0.687289 +0.21875 0.375 0.14553 -0.109405 0.789673 0.297176 0.197035 0.993935 1.46978 0 0.563503 3.35961 0 -0.687289 -0.21875 0.34375 0.140933 -0.106249 0.820435 0.292039 0.128212 0.846698 1.51072 0 0.576932 3.35812 0 -0.709106 -0.25 0.34375 0.140929 -0.106255 0.820648 0.299022 0.099145 0.835505 1.52744 0 0.576932 3.35812 0 -0.709106 +0.21875 0.34375 0.141048 -0.106037 0.826691 0.290545 0.177938 0.930353 1.51271 0 0.576932 3.35812 0 -0.709106 +0.25 0.34375 0.141056 -0.10604 0.826416 0.297915 0.186035 0.937492 1.52953 0 0.576932 3.35812 0 -0.709106 -0.21875 0.375 0.145412 -0.109623 0.784088 0.298297 0.125624 0.898968 1.46748 0 0.563503 3.35961 0 -0.687289 -0.25 0.375 0.145407 -0.109629 0.784088 0.305471 0.108501 0.872901 1.48391 0 0.563503 3.35961 0 -0.687289 +0.21875 0.375 0.14553 -0.109405 0.789673 0.297336 0.197035 0.993935 1.46978 0 0.563503 3.35961 0 -0.687289 +0.25 0.375 0.145537 -0.10941 0.78949 0.304707 0.190383 0.996788 1.48673 0 0.563503 3.35961 0 -0.687289 -0 0.375 0.145499 -0.109124 0.78418 0.25817 0.153881 0.884735 1.37564 0 0.563503 3.35961 0 -0.687289 -0.03125 0.375 0.145482 -0.109271 0.784149 0.262754 0.158982 0.909027 1.38611 0 0.563503 3.35961 0 -0.687289 +0 0.375 0.145499 -0.109124 0.789734 0.257156 0.132589 0.964284 1.37837 0 0.563503 3.35961 0 -0.687289 +0.03125 0.375 0.145498 -0.109206 0.789764 0.26186 0.118463 0.961048 1.38892 0 0.563503 3.35961 0 -0.687289 -0 0.40625 0.150118 -0.112588 0.747742 0.263211 0.203122 1.01033 1.3322 0 0.549647 3.36115 0 -0.666144 -0.03125 0.40625 0.150103 -0.112734 0.747467 0.268574 0.20163 1.01047 1.34383 0 0.549647 3.36115 0 -0.666144 +0 0.40625 0.150118 -0.112588 0.752808 0.262736 0.138194 1.04972 1.33558 0 0.549647 3.36115 0 -0.666144 +0.03125 0.40625 0.150119 -0.112669 0.752869 0.267441 0.138368 1.04119 1.34616 0 0.549647 3.36115 0 -0.666144 -0.03125 0.375 0.145482 -0.109271 0.784149 0.262754 0.158982 0.909027 1.38611 0 0.563503 3.35961 0 -0.687289 -0.0625 0.375 0.145467 -0.109383 0.784058 0.267978 0.171503 0.929343 1.39799 0 0.563503 3.35961 0 -0.687289 +0.03125 0.375 0.145498 -0.109206 0.789764 0.26175 0.118463 0.961048 1.38892 0 0.563503 3.35961 0 -0.687289 +0.0625 0.375 0.145498 -0.109269 0.790039 0.266704 0.112606 0.972442 1.4003 0 0.563503 3.35961 0 -0.687289 -0.03125 0.40625 0.150103 -0.112734 0.747467 0.268574 0.20163 1.01047 1.34383 0 0.549647 3.36115 0 -0.666144 -0.0625 0.40625 0.15009 -0.112848 0.747223 0.273585 0.203214 1.02005 1.35471 0 0.549647 3.36115 0 -0.666144 +0.03125 0.40625 0.150119 -0.112669 0.752869 0.267552 0.138368 1.04119 1.34616 0 0.549647 3.36115 0 -0.666144 +0.0625 0.40625 0.15012 -0.112732 0.752899 0.272507 0.127235 1.06353 1.35731 0 0.549647 3.36115 0 -0.666144 -0 0.40625 0.150118 -0.112588 0.747742 0.263211 0.203122 1.01033 1.3322 0 0.549647 3.36115 0 -0.666144 -0.03125 0.40625 0.150103 -0.112734 0.747467 0.268574 0.20163 1.01047 1.34383 0 0.549647 3.36115 0 -0.666144 +0 0.40625 0.150118 -0.112588 0.752808 0.262613 0.138194 1.04972 1.33558 0 0.549647 3.36115 0 -0.666144 +0.03125 0.40625 0.150119 -0.112669 0.752869 0.267445 0.138368 1.04119 1.34616 0 0.549647 3.36115 0 -0.666144 -0 0.4375 0.154883 -0.116162 0.710205 0.269525 0.167327 1.14474 1.29027 0 0.535351 3.36274 0 -0.645649 -0.03125 0.4375 0.154871 -0.116307 0.710175 0.274424 0.179934 1.11934 1.30078 0 0.535351 3.36274 0 -0.645649 +0 0.4375 0.154883 -0.116162 0.715424 0.268496 0.131201 1.15819 1.29275 0 0.535351 3.36274 0 -0.645649 +0.03125 0.4375 0.154886 -0.116241 0.715576 0.273329 0.145212 1.15866 1.30341 0 0.535351 3.36274 0 -0.645649 -0.03125 0.40625 0.150103 -0.112734 0.747467 0.268574 0.20163 1.01047 1.34383 0 0.549647 3.36115 0 -0.666144 -0.0625 0.40625 0.15009 -0.112848 0.747223 0.273585 0.203214 1.02005 1.35471 0 0.549647 3.36115 0 -0.666144 +0.03125 0.40625 0.150119 -0.112669 0.752869 0.267354 0.138368 1.04119 1.34616 0 0.549647 3.36115 0 -0.666144 +0.0625 0.40625 0.15012 -0.112732 0.752899 0.272585 0.127235 1.06353 1.35731 0 0.549647 3.36115 0 -0.666144 -0.03125 0.4375 0.154871 -0.116307 0.710175 0.274424 0.179934 1.11934 1.30078 0 0.535351 3.36274 0 -0.645649 -0.0625 0.4375 0.154858 -0.116425 0.70993 0.280055 0.182379 1.09655 1.31265 0 0.535351 3.36274 0 -0.645649 +0.03125 0.4375 0.154886 -0.116241 0.715576 0.273374 0.145212 1.15866 1.30341 0 0.535351 3.36274 0 -0.645649 +0.0625 0.4375 0.154888 -0.116305 0.715546 0.278605 0.169579 1.16304 1.31489 0 0.535351 3.36274 0 -0.645649 -0.0625 0.375 0.145467 -0.109383 0.784058 0.267978 0.171503 0.929343 1.39799 0 0.563503 3.35961 0 -0.687289 -0.09375 0.375 0.145453 -0.109468 0.783844 0.273315 0.171723 0.951364 1.41 0 0.563503 3.35961 0 -0.687289 +0.0625 0.375 0.145498 -0.109269 0.790039 0.266605 0.112606 0.972442 1.4003 0 0.563503 3.35961 0 -0.687289 +0.09375 0.375 0.145501 -0.109316 0.790161 0.271859 0.126475 0.977022 1.41227 0 0.563503 3.35961 0 -0.687289 -0.0625 0.40625 0.15009 -0.112848 0.747223 0.273585 0.203214 1.02005 1.35471 0 0.549647 3.36115 0 -0.666144 -0.09375 0.40625 0.150076 -0.112937 0.746857 0.279684 0.178434 1.01499 1.36789 0 0.549647 3.36115 0 -0.666144 +0.0625 0.40625 0.15012 -0.112732 0.752899 0.272602 0.127235 1.06353 1.35731 0 0.549647 3.36115 0 -0.666144 +0.09375 0.40625 0.150124 -0.112781 0.753174 0.277856 0.143468 1.08732 1.36968 0 0.549647 3.36115 0 -0.666144 -0.09375 0.375 0.145453 -0.109468 0.783844 0.273315 0.171723 0.951364 1.41 0 0.563503 3.35961 0 -0.687289 -0.125 0.375 0.145439 -0.109532 0.783722 0.279229 0.148936 0.949048 1.42342 0 0.563503 3.35961 0 -0.687289 +0.09375 0.375 0.145501 -0.109316 0.790161 0.27178 0.126475 0.977022 1.41227 0 0.563503 3.35961 0 -0.687289 +0.125 0.375 0.145506 -0.109352 0.790192 0.277624 0.12219 0.998808 1.42532 0 0.563503 3.35961 0 -0.687289 -0.09375 0.40625 0.150076 -0.112937 0.746857 0.279684 0.178434 1.01499 1.36789 0 0.549647 3.36115 0 -0.666144 -0.125 0.40625 0.150063 -0.113003 0.746887 0.285153 0.13571 1.0012 1.38006 0 0.549647 3.36115 0 -0.666144 +0.09375 0.40625 0.150124 -0.112781 0.753174 0.27794 0.143468 1.08732 1.36968 0 0.549647 3.36115 0 -0.666144 +0.125 0.40625 0.150129 -0.112818 0.75296 0.283783 0.156679 1.08687 1.38253 0 0.549647 3.36115 0 -0.666144 -0.0625 0.40625 0.15009 -0.112848 0.747223 0.273585 0.203214 1.02005 1.35471 0 0.549647 3.36115 0 -0.666144 -0.09375 0.40625 0.150076 -0.112937 0.746857 0.279684 0.178434 1.01499 1.36789 0 0.549647 3.36115 0 -0.666144 +0.0625 0.40625 0.15012 -0.112732 0.752899 0.272367 0.127235 1.06353 1.35731 0 0.549647 3.36115 0 -0.666144 +0.09375 0.40625 0.150124 -0.112781 0.753174 0.27794 0.143468 1.08732 1.36968 0 0.549647 3.36115 0 -0.666144 -0.0625 0.4375 0.154858 -0.116425 0.70993 0.280055 0.182379 1.09655 1.31265 0 0.535351 3.36274 0 -0.645649 -0.09375 0.4375 0.154845 -0.116512 0.709839 0.285642 0.159955 1.09007 1.32459 0 0.535351 3.36274 0 -0.645649 +0.0625 0.4375 0.154888 -0.116305 0.715546 0.27879 0.169579 1.16304 1.31489 0 0.535351 3.36274 0 -0.645649 +0.09375 0.4375 0.154893 -0.116356 0.715363 0.284363 0.16655 1.17881 1.32711 0 0.535351 3.36274 0 -0.645649 -0.09375 0.40625 0.150076 -0.112937 0.746857 0.279684 0.178434 1.01499 1.36789 0 0.549647 3.36115 0 -0.666144 -0.125 0.40625 0.150063 -0.113003 0.746887 0.285153 0.13571 1.0012 1.38006 0 0.549647 3.36115 0 -0.666144 +0.09375 0.40625 0.150124 -0.112781 0.753174 0.277814 0.143468 1.08732 1.36968 0 0.549647 3.36115 0 -0.666144 +0.125 0.40625 0.150129 -0.112818 0.75296 0.283808 0.156679 1.08687 1.38253 0 0.549647 3.36115 0 -0.666144 -0.09375 0.4375 0.154845 -0.116512 0.709839 0.285642 0.159955 1.09007 1.32459 0 0.535351 3.36274 0 -0.645649 -0.125 0.4375 0.154831 -0.116578 0.70993 0.291645 0.157961 1.09393 1.3376 0 0.535351 3.36274 0 -0.645649 +0.09375 0.4375 0.154893 -0.116356 0.715363 0.284463 0.16655 1.17881 1.32711 0 0.535351 3.36274 0 -0.645649 +0.125 0.4375 0.154898 -0.116394 0.715424 0.290456 0.160979 1.16908 1.34003 0 0.535351 3.36274 0 -0.645649 -0 0.4375 0.154883 -0.116162 0.710205 0.269525 0.167327 1.14474 1.29027 0 0.535351 3.36274 0 -0.645649 -0.03125 0.4375 0.154871 -0.116307 0.710175 0.274424 0.179934 1.11934 1.30078 0 0.535351 3.36274 0 -0.645649 +0 0.4375 0.154883 -0.116162 0.715424 0.268354 0.131201 1.15819 1.29275 0 0.535351 3.36274 0 -0.645649 +0.03125 0.4375 0.154886 -0.116241 0.715576 0.273339 0.145212 1.15866 1.30341 0 0.535351 3.36274 0 -0.645649 -0 0.46875 0.1598 -0.11985 0.672516 0.275602 0.143881 1.21062 1.24741 0 0.520601 3.36438 0 -0.625784 -0.03125 0.46875 0.159787 -0.119995 0.672607 0.280804 0.149893 1.20649 1.25835 0 0.520601 3.36438 0 -0.625784 +0 0.46875 0.1598 -0.11985 0.677612 0.274632 0.149145 1.25602 1.25002 0 0.520601 3.36438 0 -0.625784 +0.03125 0.46875 0.159803 -0.119928 0.677673 0.279617 0.152954 1.26669 1.26078 0 0.520601 3.36438 0 -0.625784 -0.03125 0.4375 0.154871 -0.116307 0.710175 0.274424 0.179934 1.11934 1.30078 0 0.535351 3.36274 0 -0.645649 -0.0625 0.4375 0.154858 -0.116425 0.70993 0.280055 0.182379 1.09655 1.31265 0 0.535351 3.36274 0 -0.645649 +0.03125 0.4375 0.154886 -0.116241 0.715576 0.273241 0.145212 1.15866 1.30341 0 0.535351 3.36274 0 -0.645649 +0.0625 0.4375 0.154888 -0.116305 0.715546 0.278644 0.169579 1.16304 1.31489 0 0.535351 3.36274 0 -0.645649 -0.03125 0.46875 0.159787 -0.119995 0.672607 0.280804 0.149893 1.20649 1.25835 0 0.520601 3.36438 0 -0.625784 -0.0625 0.46875 0.159775 -0.120111 0.672668 0.286175 0.179428 1.18155 1.26961 0 0.520601 3.36438 0 -0.625784 +0.03125 0.46875 0.159803 -0.119928 0.677673 0.27972 0.152954 1.26669 1.26078 0 0.520601 3.36438 0 -0.625784 +0.0625 0.46875 0.159807 -0.119993 0.677673 0.285124 0.154597 1.25915 1.27222 0 0.520601 3.36438 0 -0.625784 -0 0.46875 0.1598 -0.11985 0.672516 0.275602 0.143881 1.21062 1.24741 0 0.520601 3.36438 0 -0.625784 -0.03125 0.46875 0.159787 -0.119995 0.672607 0.280804 0.149893 1.20649 1.25835 0 0.520601 3.36438 0 -0.625784 +0 0.46875 0.1598 -0.11985 0.677612 0.274446 0.149145 1.25602 1.25002 0 0.520601 3.36438 0 -0.625784 +0.03125 0.46875 0.159803 -0.119928 0.677673 0.279651 0.152954 1.26669 1.26078 0 0.520601 3.36438 0 -0.625784 -0 0.5 0.164872 -0.123654 0.634827 0.281971 0.169108 1.27523 1.20491 0 0.505384 3.36607 0 -0.606531 -0.03125 0.5 0.16486 -0.1238 0.634796 0.287271 0.164561 1.27789 1.21559 0 0.505384 3.36607 0 -0.606531 +0 0.5 0.164872 -0.123654 0.639557 0.280944 0.161914 1.32503 1.20732 0 0.505384 3.36607 0 -0.606531 +0.03125 0.5 0.164876 -0.123733 0.639557 0.28615 0.156006 1.3259 1.21806 0 0.505384 3.36607 0 -0.606531 -0.03125 0.46875 0.159787 -0.119995 0.672607 0.280804 0.149893 1.20649 1.25835 0 0.520601 3.36438 0 -0.625784 -0.0625 0.46875 0.159775 -0.120111 0.672668 0.286175 0.179428 1.18155 1.26961 0 0.520601 3.36438 0 -0.625784 +0.03125 0.46875 0.159803 -0.119928 0.677673 0.279576 0.152954 1.26669 1.26078 0 0.520601 3.36438 0 -0.625784 +0.0625 0.46875 0.159807 -0.119993 0.677673 0.285107 0.154597 1.25915 1.27222 0 0.520601 3.36438 0 -0.625784 -0.03125 0.5 0.16486 -0.1238 0.634796 0.287271 0.164561 1.27789 1.21559 0 0.505384 3.36607 0 -0.606531 -0.0625 0.5 0.16485 -0.123917 0.634857 0.292983 0.171827 1.27953 1.2272 0 0.505384 3.36607 0 -0.606531 +0.03125 0.5 0.164876 -0.123733 0.639557 0.286279 0.156006 1.3259 1.21806 0 0.505384 3.36607 0 -0.606531 +0.0625 0.5 0.164882 -0.123799 0.639648 0.291809 0.153643 1.32742 1.22948 0 0.505384 3.36607 0 -0.606531 -0.0625 0.4375 0.154858 -0.116425 0.70993 0.280055 0.182379 1.09655 1.31265 0 0.535351 3.36274 0 -0.645649 -0.09375 0.4375 0.154845 -0.116512 0.709839 0.285642 0.159955 1.09007 1.32459 0 0.535351 3.36274 0 -0.645649 +0.0625 0.4375 0.154888 -0.116305 0.715546 0.278589 0.169579 1.16304 1.31489 0 0.535351 3.36274 0 -0.645649 +0.09375 0.4375 0.154893 -0.116356 0.715363 0.284406 0.16655 1.17881 1.32711 0 0.535351 3.36274 0 -0.645649 -0.0625 0.46875 0.159775 -0.120111 0.672668 0.286175 0.179428 1.18155 1.26961 0 0.520601 3.36438 0 -0.625784 -0.09375 0.46875 0.159763 -0.120202 0.672363 0.292225 0.186599 1.17533 1.28193 0 0.520601 3.36438 0 -0.625784 +0.0625 0.46875 0.159807 -0.119993 0.677673 0.285163 0.154597 1.25915 1.27222 0 0.520601 3.36438 0 -0.625784 +0.09375 0.46875 0.159812 -0.120045 0.677734 0.29098 0.16093 1.24815 1.28441 0 0.520601 3.36438 0 -0.625784 -0.09375 0.4375 0.154845 -0.116512 0.709839 0.285642 0.159955 1.09007 1.32459 0 0.535351 3.36274 0 -0.645649 -0.125 0.4375 0.154831 -0.116578 0.70993 0.291645 0.157961 1.09393 1.3376 0 0.535351 3.36274 0 -0.645649 +0.09375 0.4375 0.154893 -0.116356 0.715363 0.284356 0.16655 1.17881 1.32711 0 0.535351 3.36274 0 -0.645649 +0.125 0.4375 0.154898 -0.116394 0.715424 0.290478 0.160979 1.16908 1.34003 0 0.535351 3.36274 0 -0.645649 -0.09375 0.46875 0.159763 -0.120202 0.672363 0.292225 0.186599 1.17533 1.28193 0 0.520601 3.36438 0 -0.625784 -0.125 0.46875 0.15975 -0.120269 0.672333 0.298512 0.162277 1.189 1.29501 0 0.520601 3.36438 0 -0.625784 +0.09375 0.46875 0.159812 -0.120045 0.677734 0.291042 0.16093 1.24815 1.28441 0 0.520601 3.36438 0 -0.625784 +0.125 0.46875 0.159818 -0.120085 0.677673 0.297164 0.171871 1.24951 1.29743 0 0.520601 3.36438 0 -0.625784 -0.0625 0.46875 0.159775 -0.120111 0.672668 0.286175 0.179428 1.18155 1.26961 0 0.520601 3.36438 0 -0.625784 -0.09375 0.46875 0.159763 -0.120202 0.672363 0.292225 0.186599 1.17533 1.28193 0 0.520601 3.36438 0 -0.625784 +0.0625 0.46875 0.159807 -0.119993 0.677673 0.285059 0.154597 1.25915 1.27222 0 0.520601 3.36438 0 -0.625784 +0.09375 0.46875 0.159812 -0.120045 0.677734 0.29095 0.16093 1.24815 1.28441 0 0.520601 3.36438 0 -0.625784 -0.0625 0.5 0.16485 -0.123917 0.634857 0.292983 0.171827 1.27953 1.2272 0 0.505384 3.36607 0 -0.606531 -0.09375 0.5 0.164838 -0.124008 0.634735 0.299023 0.180985 1.234 1.23929 0 0.505384 3.36607 0 -0.606531 +0.0625 0.5 0.164882 -0.123799 0.639648 0.291886 0.153643 1.32742 1.22948 0 0.505384 3.36607 0 -0.606531 +0.09375 0.5 0.164887 -0.123851 0.639679 0.297777 0.158278 1.33259 1.24175 0 0.505384 3.36607 0 -0.606531 -0.09375 0.46875 0.159763 -0.120202 0.672363 0.292225 0.186599 1.17533 1.28193 0 0.520601 3.36438 0 -0.625784 -0.125 0.46875 0.15975 -0.120269 0.672333 0.298512 0.162277 1.189 1.29501 0 0.520601 3.36438 0 -0.625784 +0.09375 0.46875 0.159812 -0.120045 0.677734 0.290877 0.16093 1.24815 1.28441 0 0.520601 3.36438 0 -0.625784 +0.125 0.46875 0.159818 -0.120085 0.677673 0.297217 0.171871 1.24951 1.29743 0 0.520601 3.36438 0 -0.625784 -0.09375 0.5 0.164838 -0.124008 0.634735 0.299023 0.180985 1.234 1.23929 0 0.505384 3.36607 0 -0.606531 -0.125 0.5 0.164826 -0.124075 0.634644 0.305537 0.163681 1.23642 1.25237 0 0.505384 3.36607 0 -0.606531 +0.09375 0.5 0.164887 -0.123851 0.639679 0.297869 0.158278 1.33259 1.24175 0 0.505384 3.36607 0 -0.606531 +0.125 0.5 0.164893 -0.123892 0.639679 0.304209 0.149493 1.32651 1.25456 0 0.505384 3.36607 0 -0.606531 -0.125 0.375 0.145439 -0.109532 0.783722 0.279229 0.148936 0.949048 1.42342 0 0.563503 3.35961 0 -0.687289 -0.15625 0.375 0.145428 -0.109576 0.783813 0.285196 0.128495 0.928118 1.43719 0 0.563503 3.35961 0 -0.687289 +0.125 0.375 0.145506 -0.109352 0.790192 0.277468 0.12219 0.998808 1.42532 0 0.563503 3.35961 0 -0.687289 +0.15625 0.375 0.145513 -0.109377 0.790527 0.283432 0.164294 0.988109 1.43888 0 0.563503 3.35961 0 -0.687289 -0.125 0.40625 0.150063 -0.113003 0.746887 0.285153 0.13571 1.0012 1.38006 0 0.549647 3.36115 0 -0.666144 -0.15625 0.40625 0.150052 -0.113048 0.747131 0.291582 0.143063 1.01388 1.39458 0 0.549647 3.36115 0 -0.666144 +0.125 0.40625 0.150129 -0.112818 0.75296 0.283949 0.156679 1.08687 1.38253 0 0.549647 3.36115 0 -0.666144 +0.15625 0.40625 0.150136 -0.112846 0.753113 0.289914 0.17184 1.116 1.39638 0 0.549647 3.36115 0 -0.666144 -0.15625 0.375 0.145428 -0.109576 0.783813 0.285196 0.128495 0.928118 1.43719 0 0.563503 3.35961 0 -0.687289 -0.1875 0.375 0.145419 -0.109604 0.783936 0.291639 0.121832 0.950672 1.45207 0 0.563503 3.35961 0 -0.687289 +0.15625 0.375 0.145513 -0.109377 0.790527 0.283243 0.164294 0.988109 1.43888 0 0.563503 3.35961 0 -0.687289 +0.1875 0.375 0.145522 -0.109395 0.790009 0.290118 0.211619 0.996928 1.45404 0 0.563503 3.35961 0 -0.687289 -0.15625 0.40625 0.150052 -0.113048 0.747131 0.291582 0.143063 1.01388 1.39458 0 0.549647 3.36115 0 -0.666144 -0.1875 0.40625 0.150041 -0.113077 0.746857 0.298076 0.110518 1.01754 1.40873 0 0.549647 3.36115 0 -0.666144 +0.15625 0.40625 0.150136 -0.112846 0.753113 0.289945 0.17184 1.116 1.39638 0 0.549647 3.36115 0 -0.666144 +0.1875 0.40625 0.150144 -0.112865 0.752747 0.29682 0.190244 1.08001 1.41121 0 0.549647 3.36115 0 -0.666144 -0.125 0.40625 0.150063 -0.113003 0.746887 0.285153 0.13571 1.0012 1.38006 0 0.549647 3.36115 0 -0.666144 -0.15625 0.40625 0.150052 -0.113048 0.747131 0.291582 0.143063 1.01388 1.39458 0 0.549647 3.36115 0 -0.666144 +0.125 0.40625 0.150129 -0.112818 0.75296 0.283703 0.156679 1.08687 1.38253 0 0.549647 3.36115 0 -0.666144 +0.15625 0.40625 0.150136 -0.112846 0.753113 0.289999 0.17184 1.116 1.39638 0 0.549647 3.36115 0 -0.666144 -0.125 0.4375 0.154831 -0.116578 0.70993 0.291645 0.157961 1.09393 1.3376 0 0.535351 3.36274 0 -0.645649 -0.15625 0.4375 0.154819 -0.116627 0.709808 0.298203 0.156226 1.11022 1.35159 0 0.535351 3.36274 0 -0.645649 +0.125 0.4375 0.154898 -0.116394 0.715424 0.290586 0.160979 1.16908 1.34003 0 0.535351 3.36274 0 -0.645649 +0.15625 0.4375 0.154905 -0.116423 0.715332 0.296883 0.167339 1.18706 1.35388 0 0.535351 3.36274 0 -0.645649 -0.15625 0.40625 0.150052 -0.113048 0.747131 0.291582 0.143063 1.01388 1.39458 0 0.549647 3.36115 0 -0.666144 -0.1875 0.40625 0.150041 -0.113077 0.746857 0.298076 0.110518 1.01754 1.40873 0 0.549647 3.36115 0 -0.666144 +0.15625 0.40625 0.150136 -0.112846 0.753113 0.289875 0.17184 1.116 1.39638 0 0.549647 3.36115 0 -0.666144 +0.1875 0.40625 0.150144 -0.112865 0.752747 0.296774 0.190244 1.08001 1.41121 0 0.549647 3.36115 0 -0.666144 -0.15625 0.4375 0.154819 -0.116627 0.709808 0.298203 0.156226 1.11022 1.35159 0 0.535351 3.36274 0 -0.645649 -0.1875 0.4375 0.154808 -0.116659 0.709839 0.305109 0.123323 1.07031 1.36648 0 0.535351 3.36274 0 -0.645649 +0.15625 0.4375 0.154905 -0.116423 0.715332 0.29689 0.167339 1.18706 1.35388 0 0.535351 3.36274 0 -0.645649 +0.1875 0.4375 0.154913 -0.116444 0.715302 0.303788 0.17452 1.15448 1.36852 0 0.535351 3.36274 0 -0.645649 -0.1875 0.375 0.145419 -0.109604 0.783936 0.291639 0.121832 0.950672 1.45207 0 0.563503 3.35961 0 -0.687289 -0.21875 0.375 0.145412 -0.109623 0.784088 0.298297 0.125624 0.898968 1.46748 0 0.563503 3.35961 0 -0.687289 +0.1875 0.375 0.145522 -0.109395 0.790009 0.290093 0.211619 0.996928 1.45404 0 0.563503 3.35961 0 -0.687289 +0.21875 0.375 0.14553 -0.109405 0.789673 0.297243 0.197035 0.993935 1.46978 0 0.563503 3.35961 0 -0.687289 -0.1875 0.40625 0.150041 -0.113077 0.746857 0.298076 0.110518 1.01754 1.40873 0 0.549647 3.36115 0 -0.666144 -0.21875 0.40625 0.150031 -0.113096 0.747498 0.305022 0.0632014 1.00617 1.42479 0 0.549647 3.36115 0 -0.666144 +0.1875 0.40625 0.150144 -0.112865 0.752747 0.296845 0.190244 1.08001 1.41121 0 0.549647 3.36115 0 -0.666144 +0.21875 0.40625 0.150152 -0.112878 0.752655 0.303995 0.190372 1.06775 1.42706 0 0.549647 3.36115 0 -0.666144 -0.21875 0.375 0.145412 -0.109623 0.784088 0.298297 0.125624 0.898968 1.46748 0 0.563503 3.35961 0 -0.687289 -0.25 0.375 0.145407 -0.109629 0.784088 0.305471 0.108501 0.872901 1.48391 0 0.563503 3.35961 0 -0.687289 +0.21875 0.375 0.14553 -0.109405 0.789673 0.297115 0.197035 0.993935 1.46978 0 0.563503 3.35961 0 -0.687289 +0.25 0.375 0.145537 -0.10941 0.78949 0.304736 0.190383 0.996788 1.48673 0 0.563503 3.35961 0 -0.687289 -0.21875 0.40625 0.150031 -0.113096 0.747498 0.305022 0.0632014 1.00617 1.42479 0 0.549647 3.36115 0 -0.666144 -0.25 0.40625 0.150029 -0.113105 0.748047 0.312126 0.134352 0.98542 1.44112 0 0.549647 3.36115 0 -0.666144 +0.21875 0.40625 0.150152 -0.112878 0.752655 0.304086 0.190372 1.06775 1.42706 0 0.549647 3.36115 0 -0.666144 +0.25 0.40625 0.150158 -0.112884 0.75235 0.311706 0.196173 1.0651 1.44389 0 0.549647 3.36115 0 -0.666144 -0.1875 0.40625 0.150041 -0.113077 0.746857 0.298076 0.110518 1.01754 1.40873 0 0.549647 3.36115 0 -0.666144 -0.21875 0.40625 0.150031 -0.113096 0.747498 0.305022 0.0632014 1.00617 1.42479 0 0.549647 3.36115 0 -0.666144 +0.1875 0.40625 0.150144 -0.112865 0.752747 0.296721 0.190244 1.08001 1.41121 0 0.549647 3.36115 0 -0.666144 +0.21875 0.40625 0.150152 -0.112878 0.752655 0.303993 0.190372 1.06775 1.42706 0 0.549647 3.36115 0 -0.666144 -0.1875 0.4375 0.154808 -0.116659 0.709839 0.305109 0.123323 1.07031 1.36648 0 0.535351 3.36274 0 -0.645649 -0.21875 0.4375 0.1548 -0.116677 0.710144 0.31207 0.0994274 1.11778 1.38177 0 0.535351 3.36274 0 -0.645649 +0.1875 0.4375 0.154913 -0.116444 0.715302 0.303817 0.17452 1.15448 1.36852 0 0.535351 3.36274 0 -0.645649 +0.21875 0.4375 0.154919 -0.116459 0.715149 0.311089 0.18688 1.1541 1.38433 0 0.535351 3.36274 0 -0.645649 -0.21875 0.40625 0.150031 -0.113096 0.747498 0.305022 0.0632014 1.00617 1.42479 0 0.549647 3.36115 0 -0.666144 -0.25 0.40625 0.150029 -0.113105 0.748047 0.312126 0.134352 0.98542 1.44112 0 0.549647 3.36115 0 -0.666144 +0.21875 0.40625 0.150152 -0.112878 0.752655 0.303907 0.190372 1.06775 1.42706 0 0.549647 3.36115 0 -0.666144 +0.25 0.40625 0.150158 -0.112884 0.75235 0.311738 0.196173 1.0651 1.44389 0 0.549647 3.36115 0 -0.666144 -0.21875 0.4375 0.1548 -0.116677 0.710144 0.31207 0.0994274 1.11778 1.38177 0 0.535351 3.36274 0 -0.645649 -0.25 0.4375 0.154795 -0.116686 0.71048 0.319728 0.111677 1.1546 1.39859 0 0.535351 3.36274 0 -0.645649 +0.21875 0.4375 0.154919 -0.116459 0.715149 0.311208 0.18688 1.1541 1.38433 0 0.535351 3.36274 0 -0.645649 +0.25 0.4375 0.154926 -0.116466 0.714966 0.31904 0.192253 1.13659 1.40111 0 0.535351 3.36274 0 -0.645649 -0.125 0.4375 0.154831 -0.116578 0.70993 0.291645 0.157961 1.09393 1.3376 0 0.535351 3.36274 0 -0.645649 -0.15625 0.4375 0.154819 -0.116627 0.709808 0.298203 0.156226 1.11022 1.35159 0 0.535351 3.36274 0 -0.645649 +0.125 0.4375 0.154898 -0.116394 0.715424 0.290329 0.160979 1.16908 1.34003 0 0.535351 3.36274 0 -0.645649 +0.15625 0.4375 0.154905 -0.116423 0.715332 0.296955 0.167339 1.18706 1.35388 0 0.535351 3.36274 0 -0.645649 -0.125 0.46875 0.15975 -0.120269 0.672333 0.298512 0.162277 1.189 1.29501 0 0.520601 3.36438 0 -0.625784 -0.15625 0.46875 0.159739 -0.120318 0.672333 0.305204 0.135445 1.17345 1.30897 0 0.520601 3.36438 0 -0.625784 +0.125 0.46875 0.159818 -0.120085 0.677673 0.297269 0.171871 1.24951 1.29743 0 0.520601 3.36438 0 -0.625784 +0.15625 0.46875 0.159824 -0.120115 0.677582 0.303894 0.168143 1.2316 1.31098 0 0.520601 3.36438 0 -0.625784 -0.15625 0.4375 0.154819 -0.116627 0.709808 0.298203 0.156226 1.11022 1.35159 0 0.535351 3.36274 0 -0.645649 -0.1875 0.4375 0.154808 -0.116659 0.709839 0.305109 0.123323 1.07031 1.36648 0 0.535351 3.36274 0 -0.645649 +0.15625 0.4375 0.154905 -0.116423 0.715332 0.296812 0.167339 1.18706 1.35388 0 0.535351 3.36274 0 -0.645649 +0.1875 0.4375 0.154913 -0.116444 0.715302 0.30377 0.17452 1.15448 1.36852 0 0.535351 3.36274 0 -0.645649 -0.15625 0.46875 0.159739 -0.120318 0.672333 0.305204 0.135445 1.17345 1.30897 0 0.520601 3.36438 0 -0.625784 -0.1875 0.46875 0.159728 -0.12035 0.672638 0.311921 0.137652 1.16365 1.32329 0 0.520601 3.36438 0 -0.625784 +0.15625 0.46875 0.159824 -0.120115 0.677582 0.303899 0.168143 1.2316 1.31098 0 0.520601 3.36438 0 -0.625784 +0.1875 0.46875 0.159831 -0.120136 0.677612 0.310857 0.172712 1.23017 1.32578 0 0.520601 3.36438 0 -0.625784 -0.125 0.46875 0.15975 -0.120269 0.672333 0.298512 0.162277 1.189 1.29501 0 0.520601 3.36438 0 -0.625784 -0.15625 0.46875 0.159739 -0.120318 0.672333 0.305204 0.135445 1.17345 1.30897 0 0.520601 3.36438 0 -0.625784 +0.125 0.46875 0.159818 -0.120085 0.677673 0.297146 0.171871 1.24951 1.29743 0 0.520601 3.36438 0 -0.625784 +0.15625 0.46875 0.159824 -0.120115 0.677582 0.303872 0.168143 1.2316 1.31098 0 0.520601 3.36438 0 -0.625784 -0.125 0.5 0.164826 -0.124075 0.634644 0.305537 0.163681 1.23642 1.25237 0 0.505384 3.36607 0 -0.606531 -0.15625 0.5 0.164815 -0.124125 0.634735 0.312241 0.141801 1.21547 1.26601 0 0.505384 3.36607 0 -0.606531 +0.125 0.5 0.164893 -0.123892 0.639679 0.304217 0.149493 1.32651 1.25456 0 0.505384 3.36607 0 -0.606531 +0.15625 0.5 0.164899 -0.123922 0.639862 0.310943 0.157445 1.3165 1.26834 0 0.505384 3.36607 0 -0.606531 -0.15625 0.46875 0.159739 -0.120318 0.672333 0.305204 0.135445 1.17345 1.30897 0 0.520601 3.36438 0 -0.625784 -0.1875 0.46875 0.159728 -0.12035 0.672638 0.311921 0.137652 1.16365 1.32329 0 0.520601 3.36438 0 -0.625784 +0.15625 0.46875 0.159824 -0.120115 0.677582 0.303691 0.168143 1.2316 1.31098 0 0.520601 3.36438 0 -0.625784 +0.1875 0.46875 0.159831 -0.120136 0.677612 0.31093 0.172712 1.23017 1.32578 0 0.520601 3.36438 0 -0.625784 -0.15625 0.5 0.164815 -0.124125 0.634735 0.312241 0.141801 1.21547 1.26601 0 0.505384 3.36607 0 -0.606531 -0.1875 0.5 0.164804 -0.124158 0.634888 0.319492 0.131932 1.24973 1.28083 0 0.505384 3.36607 0 -0.606531 +0.15625 0.5 0.164899 -0.123922 0.639862 0.310909 0.157445 1.3165 1.26834 0 0.505384 3.36607 0 -0.606531 +0.1875 0.5 0.164906 -0.123944 0.639771 0.318148 0.174825 1.31419 1.28298 0 0.505384 3.36607 0 -0.606531 -0.1875 0.4375 0.154808 -0.116659 0.709839 0.305109 0.123323 1.07031 1.36648 0 0.535351 3.36274 0 -0.645649 -0.21875 0.4375 0.1548 -0.116677 0.710144 0.31207 0.0994274 1.11778 1.38177 0 0.535351 3.36274 0 -0.645649 +0.1875 0.4375 0.154913 -0.116444 0.715302 0.303633 0.17452 1.15448 1.36852 0 0.535351 3.36274 0 -0.645649 +0.21875 0.4375 0.154919 -0.116459 0.715149 0.311145 0.18688 1.1541 1.38433 0 0.535351 3.36274 0 -0.645649 -0.1875 0.46875 0.159728 -0.12035 0.672638 0.311921 0.137652 1.16365 1.32329 0 0.520601 3.36438 0 -0.625784 -0.21875 0.46875 0.15972 -0.12037 0.672577 0.319534 0.152537 1.17803 1.33911 0 0.520601 3.36438 0 -0.625784 +0.1875 0.46875 0.159831 -0.120136 0.677612 0.310985 0.172712 1.23017 1.32578 0 0.520601 3.36438 0 -0.625784 +0.21875 0.46875 0.159838 -0.120151 0.67746 0.318497 0.178488 1.216 1.34148 0 0.520601 3.36438 0 -0.625784 -0.21875 0.4375 0.1548 -0.116677 0.710144 0.31207 0.0994274 1.11778 1.38177 0 0.535351 3.36274 0 -0.645649 -0.25 0.4375 0.154795 -0.116686 0.71048 0.319728 0.111677 1.1546 1.39859 0 0.535351 3.36274 0 -0.645649 +0.21875 0.4375 0.154919 -0.116459 0.715149 0.311048 0.18688 1.1541 1.38433 0 0.535351 3.36274 0 -0.645649 +0.25 0.4375 0.154926 -0.116466 0.714966 0.319023 0.192253 1.13659 1.40111 0 0.535351 3.36274 0 -0.645649 -0.21875 0.46875 0.15972 -0.12037 0.672577 0.319534 0.152537 1.17803 1.33911 0 0.520601 3.36438 0 -0.625784 -0.25 0.46875 0.159714 -0.120379 0.672546 0.327571 0.100843 1.18766 1.35584 0 0.520601 3.36438 0 -0.625784 +0.21875 0.46875 0.159838 -0.120151 0.67746 0.318582 0.178488 1.216 1.34148 0 0.520601 3.36438 0 -0.625784 +0.25 0.46875 0.159844 -0.12016 0.677429 0.326557 0.18311 1.2243 1.3584 0 0.520601 3.36438 0 -0.625784 -0.1875 0.46875 0.159728 -0.12035 0.672638 0.311921 0.137652 1.16365 1.32329 0 0.520601 3.36438 0 -0.625784 -0.21875 0.46875 0.15972 -0.12037 0.672577 0.319534 0.152537 1.17803 1.33911 0 0.520601 3.36438 0 -0.625784 +0.1875 0.46875 0.159831 -0.120136 0.677612 0.31077 0.172712 1.23017 1.32578 0 0.520601 3.36438 0 -0.625784 +0.21875 0.46875 0.159838 -0.120151 0.67746 0.318525 0.178488 1.216 1.34148 0 0.520601 3.36438 0 -0.625784 -0.1875 0.5 0.164804 -0.124158 0.634888 0.319492 0.131932 1.24973 1.28083 0 0.505384 3.36607 0 -0.606531 -0.21875 0.5 0.164797 -0.124178 0.63504 0.326975 0.120657 1.2221 1.29611 0 0.505384 3.36607 0 -0.606531 +0.1875 0.5 0.164906 -0.123944 0.639771 0.318278 0.174825 1.31419 1.28298 0 0.505384 3.36607 0 -0.606531 +0.21875 0.5 0.164912 -0.12396 0.639771 0.326033 0.193188 1.29368 1.29876 0 0.505384 3.36607 0 -0.606531 -0.21875 0.46875 0.15972 -0.12037 0.672577 0.319534 0.152537 1.17803 1.33911 0 0.520601 3.36438 0 -0.625784 -0.25 0.46875 0.159714 -0.120379 0.672546 0.327571 0.100843 1.18766 1.35584 0 0.520601 3.36438 0 -0.625784 +0.21875 0.46875 0.159838 -0.120151 0.67746 0.318371 0.178488 1.216 1.34148 0 0.520601 3.36438 0 -0.625784 +0.25 0.46875 0.159844 -0.12016 0.677429 0.326622 0.18311 1.2243 1.3584 0 0.520601 3.36438 0 -0.625784 -0.21875 0.5 0.164797 -0.124178 0.63504 0.326975 0.120657 1.2221 1.29611 0 0.505384 3.36607 0 -0.606531 -0.25 0.5 0.16479 -0.124187 0.635284 0.33506 0.101935 1.20135 1.3127 0 0.505384 3.36607 0 -0.606531 +0.21875 0.5 0.164912 -0.12396 0.639771 0.326125 0.193188 1.29368 1.29876 0 0.505384 3.36607 0 -0.606531 +0.25 0.5 0.164917 -0.123969 0.639435 0.334376 0.181753 1.29511 1.31522 0 0.505384 3.36607 0 -0.606531 -0.25 0.25 0.128308 -0.0967055 0.92923 0.280258 0.0816676 0.743571 1.65678 0 0.614792 3.35391 0 -0.778801 -0.28125 0.25 0.128311 -0.0967046 0.929657 0.286903 0.076887 0.730828 1.67446 0 0.614792 3.35391 0 -0.778801 +0.25 0.25 0.128419 -0.0965236 0.936401 0.278505 0.120798 0.79202 1.65817 0 0.614792 3.35391 0 -0.778801 +0.28125 0.25 0.128428 -0.0965221 0.936218 0.285559 0.156401 0.790842 1.67597 0 0.614792 3.35391 0 -0.778801 -0.25 0.28125 0.132383 -0.0997949 0.89328 0.286349 0.0787795 0.791183 1.61377 0 0.602565 3.35527 0 -0.75484 -0.28125 0.28125 0.132385 -0.0997958 0.893646 0.293091 0.0789841 0.778107 1.6311 0 0.602565 3.35527 0 -0.75484 +0.25 0.28125 0.132501 -0.0996 0.89978 0.284973 0.147585 0.852041 1.61531 0 0.602565 3.35527 0 -0.75484 +0.28125 0.28125 0.132509 -0.0995984 0.899719 0.292027 0.156926 0.852344 1.63322 0 0.602565 3.35527 0 -0.75484 -0.28125 0.25 0.128311 -0.0967046 0.929657 0.286903 0.076887 0.730828 1.67446 0 0.614792 3.35391 0 -0.778801 -0.3125 0.25 0.128317 -0.0967001 0.929901 0.294142 0.100824 0.728602 1.69349 0 0.614792 3.35391 0 -0.778801 +0.28125 0.25 0.128428 -0.0965221 0.936218 0.285444 0.156401 0.790842 1.67597 0 0.614792 3.35391 0 -0.778801 +0.3125 0.25 0.128436 -0.0965172 0.936005 0.293056 0.165302 0.793261 1.69515 0 0.614792 3.35391 0 -0.778801 -0.28125 0.28125 0.132385 -0.0997958 0.893646 0.293091 0.0789841 0.778107 1.6311 0 0.602565 3.35527 0 -0.75484 -0.3125 0.28125 0.13239 -0.0997905 0.893921 0.300444 0.0939766 0.775025 1.64988 0 0.602565 3.35527 0 -0.75484 +0.28125 0.28125 0.132509 -0.0995984 0.899719 0.292084 0.156926 0.852344 1.63322 0 0.602565 3.35527 0 -0.75484 +0.3125 0.28125 0.132517 -0.0995943 0.899506 0.299695 0.166042 0.846548 1.65226 0 0.602565 3.35527 0 -0.75484 -0.25 0.28125 0.132383 -0.0997949 0.89328 0.286349 0.0787795 0.791183 1.61377 0 0.602565 3.35527 0 -0.75484 -0.28125 0.28125 0.132385 -0.0997958 0.893646 0.293091 0.0789841 0.778107 1.6311 0 0.602565 3.35527 0 -0.75484 +0.25 0.28125 0.132501 -0.0996 0.89978 0.284803 0.147585 0.852041 1.61531 0 0.602565 3.35527 0 -0.75484 +0.28125 0.28125 0.132509 -0.0995984 0.899719 0.29207 0.156926 0.852344 1.63322 0 0.602565 3.35527 0 -0.75484 -0.25 0.3125 0.136589 -0.102979 0.856659 0.292692 0.0918773 0.817544 1.57045 0 0.589949 3.35667 0 -0.731616 -0.28125 0.3125 0.136589 -0.102978 0.8573 0.299611 0.0654104 0.826679 1.58797 0 0.589949 3.35667 0 -0.731616 +0.25 0.3125 0.136712 -0.102771 0.863159 0.291394 0.162735 0.889376 1.5724 0 0.589949 3.35667 0 -0.731616 +0.28125 0.3125 0.13672 -0.10277 0.863007 0.298661 0.161795 0.90244 1.59023 0 0.589949 3.35667 0 -0.731616 -0.28125 0.28125 0.132385 -0.0997958 0.893646 0.293091 0.0789841 0.778107 1.6311 0 0.602565 3.35527 0 -0.75484 -0.3125 0.28125 0.13239 -0.0997905 0.893921 0.300444 0.0939766 0.775025 1.64988 0 0.602565 3.35527 0 -0.75484 +0.28125 0.28125 0.132509 -0.0995984 0.899719 0.291958 0.156926 0.852344 1.63322 0 0.602565 3.35527 0 -0.75484 +0.3125 0.28125 0.132517 -0.0995943 0.899506 0.299716 0.166042 0.846548 1.65226 0 0.602565 3.35527 0 -0.75484 -0.28125 0.3125 0.136589 -0.102978 0.8573 0.299611 0.0654104 0.826679 1.58797 0 0.589949 3.35667 0 -0.731616 -0.3125 0.3125 0.136592 -0.102973 0.857544 0.307134 0.0764985 0.810622 1.60656 0 0.589949 3.35667 0 -0.731616 +0.28125 0.3125 0.13672 -0.10277 0.863007 0.298779 0.161795 0.90244 1.59023 0 0.589949 3.35667 0 -0.731616 +0.3125 0.3125 0.136726 -0.102766 0.862885 0.306537 0.160963 0.898211 1.60931 0 0.589949 3.35667 0 -0.731616 -0.3125 0.25 0.128317 -0.0967001 0.929901 0.294142 0.100824 0.728602 1.69349 0 0.614792 3.35391 0 -0.778801 -0.34375 0.25 0.128325 -0.0966911 0.929993 0.301811 0.131995 0.722484 1.71349 0 0.614792 3.35391 0 -0.778801 +0.3125 0.25 0.128436 -0.0965172 0.936005 0.29293 0.165302 0.793261 1.69515 0 0.614792 3.35391 0 -0.778801 +0.34375 0.25 0.128442 -0.0965118 0.93573 0.301009 0.15096 0.805714 1.71554 0 0.614792 3.35391 0 -0.778801 -0.3125 0.28125 0.13239 -0.0997905 0.893921 0.300444 0.0939766 0.775025 1.64988 0 0.602565 3.35527 0 -0.75484 -0.34375 0.28125 0.132396 -0.099782 0.894073 0.308409 0.107579 0.754832 1.67007 0 0.602565 3.35527 0 -0.75484 +0.3125 0.28125 0.132517 -0.0995943 0.899506 0.299778 0.166042 0.846548 1.65226 0 0.602565 3.35527 0 -0.75484 +0.34375 0.28125 0.132522 -0.0995884 0.899261 0.307857 0.146163 0.840286 1.6725 0 0.602565 3.35527 0 -0.75484 -0.34375 0.25 0.128325 -0.0966911 0.929993 0.301811 0.131995 0.722484 1.71349 0 0.614792 3.35391 0 -0.778801 -0.375 0.25 0.128332 -0.0966802 0.929718 0.310313 0.113918 0.718341 1.73529 0 0.614792 3.35391 0 -0.778801 +0.34375 0.25 0.128442 -0.0965118 0.93573 0.300901 0.15096 0.805714 1.71554 0 0.614792 3.35391 0 -0.778801 +0.375 0.25 0.128448 -0.0965038 0.93573 0.309293 0.130721 0.796593 1.73696 0 0.614792 3.35391 0 -0.778801 -0.34375 0.28125 0.132396 -0.099782 0.894073 0.308409 0.107579 0.754832 1.67007 0 0.602565 3.35527 0 -0.75484 -0.375 0.28125 0.132403 -0.0997695 0.894165 0.31662 0.108915 0.717168 1.69082 0 0.602565 3.35527 0 -0.75484 +0.34375 0.28125 0.132522 -0.0995884 0.899261 0.307951 0.146163 0.840286 1.6725 0 0.602565 3.35527 0 -0.75484 +0.375 0.28125 0.132527 -0.0995802 0.899384 0.316343 0.13729 0.84776 1.69399 0 0.602565 3.35527 0 -0.75484 -0.3125 0.28125 0.13239 -0.0997905 0.893921 0.300444 0.0939766 0.775025 1.64988 0 0.602565 3.35527 0 -0.75484 -0.34375 0.28125 0.132396 -0.099782 0.894073 0.308409 0.107579 0.754832 1.67007 0 0.602565 3.35527 0 -0.75484 +0.3125 0.28125 0.132517 -0.0995943 0.899506 0.299621 0.166042 0.846548 1.65226 0 0.602565 3.35527 0 -0.75484 +0.34375 0.28125 0.132522 -0.0995884 0.899261 0.307912 0.146163 0.840286 1.6725 0 0.602565 3.35527 0 -0.75484 -0.3125 0.3125 0.136592 -0.102973 0.857544 0.307134 0.0764985 0.810622 1.60656 0 0.589949 3.35667 0 -0.731616 -0.34375 0.3125 0.136597 -0.102964 0.857941 0.315251 0.0805807 0.803577 1.62675 0 0.589949 3.35667 0 -0.731616 +0.3125 0.3125 0.136726 -0.102766 0.862885 0.306624 0.160963 0.898211 1.60931 0 0.589949 3.35667 0 -0.731616 +0.34375 0.3125 0.136732 -0.10276 0.862732 0.314915 0.157096 0.891904 1.62949 0 0.589949 3.35667 0 -0.731616 -0.34375 0.28125 0.132396 -0.099782 0.894073 0.308409 0.107579 0.754832 1.67007 0 0.602565 3.35527 0 -0.75484 -0.375 0.28125 0.132403 -0.0997695 0.894165 0.31662 0.108915 0.717168 1.69082 0 0.602565 3.35527 0 -0.75484 +0.34375 0.28125 0.132522 -0.0995884 0.899261 0.307775 0.146163 0.840286 1.6725 0 0.602565 3.35527 0 -0.75484 +0.375 0.28125 0.132527 -0.0995802 0.899384 0.316422 0.13729 0.84776 1.69399 0 0.602565 3.35527 0 -0.75484 -0.34375 0.3125 0.136597 -0.102964 0.857941 0.315251 0.0805807 0.803577 1.62675 0 0.589949 3.35667 0 -0.731616 -0.375 0.3125 0.136603 -0.102951 0.858215 0.323927 0.105079 0.778054 1.64818 0 0.589949 3.35667 0 -0.731616 +0.34375 0.3125 0.136732 -0.10276 0.862732 0.315067 0.157096 0.891904 1.62949 0 0.589949 3.35667 0 -0.731616 +0.375 0.3125 0.136736 -0.102752 0.86264 0.323714 0.145569 0.911943 1.65095 0 0.589949 3.35667 0 -0.731616 -0.25 0.3125 0.136589 -0.102979 0.856659 0.292692 0.0918773 0.817544 1.57045 0 0.589949 3.35667 0 -0.731616 -0.28125 0.3125 0.136589 -0.102978 0.8573 0.299611 0.0654104 0.826679 1.58797 0 0.589949 3.35667 0 -0.731616 +0.25 0.3125 0.136712 -0.102771 0.863159 0.2912 0.162735 0.889376 1.5724 0 0.589949 3.35667 0 -0.731616 +0.28125 0.3125 0.13672 -0.10277 0.863007 0.298731 0.161795 0.90244 1.59023 0 0.589949 3.35667 0 -0.731616 -0.25 0.34375 0.140929 -0.106255 0.820648 0.299022 0.099145 0.835505 1.52744 0 0.576932 3.35812 0 -0.709106 -0.28125 0.34375 0.140928 -0.106256 0.820892 0.306299 0.0734703 0.861663 1.54489 0 0.576932 3.35812 0 -0.709106 +0.25 0.34375 0.141056 -0.10604 0.826416 0.297992 0.186035 0.937492 1.52953 0 0.576932 3.35812 0 -0.709106 +0.28125 0.34375 0.141063 -0.10604 0.826172 0.305522 0.180446 0.948877 1.54749 0 0.576932 3.35812 0 -0.709106 -0.28125 0.3125 0.136589 -0.102978 0.8573 0.299611 0.0654104 0.826679 1.58797 0 0.589949 3.35667 0 -0.731616 -0.3125 0.3125 0.136592 -0.102973 0.857544 0.307134 0.0764985 0.810622 1.60656 0 0.589949 3.35667 0 -0.731616 +0.28125 0.3125 0.13672 -0.10277 0.863007 0.298586 0.161795 0.90244 1.59023 0 0.589949 3.35667 0 -0.731616 +0.3125 0.3125 0.136726 -0.102766 0.862885 0.30658 0.160963 0.898211 1.60931 0 0.589949 3.35667 0 -0.731616 -0.28125 0.34375 0.140928 -0.106256 0.820892 0.306299 0.0734703 0.861663 1.54489 0 0.576932 3.35812 0 -0.709106 -0.3125 0.34375 0.140929 -0.106249 0.821442 0.314037 0.0735457 0.867001 1.56373 0 0.576932 3.35812 0 -0.709106 +0.28125 0.34375 0.141063 -0.10604 0.826172 0.305689 0.180446 0.948877 1.54749 0 0.576932 3.35812 0 -0.709106 +0.3125 0.34375 0.141069 -0.106036 0.825989 0.313684 0.173104 0.939779 1.56646 0 0.576932 3.35812 0 -0.709106 -0.25 0.34375 0.140929 -0.106255 0.820648 0.299022 0.099145 0.835505 1.52744 0 0.576932 3.35812 0 -0.709106 -0.28125 0.34375 0.140928 -0.106256 0.820892 0.306299 0.0734703 0.861663 1.54489 0 0.576932 3.35812 0 -0.709106 +0.25 0.34375 0.141056 -0.10604 0.826416 0.297782 0.186035 0.937492 1.52953 0 0.576932 3.35812 0 -0.709106 +0.28125 0.34375 0.141063 -0.10604 0.826172 0.305617 0.180446 0.948877 1.54749 0 0.576932 3.35812 0 -0.709106 -0.25 0.375 0.145407 -0.109629 0.784088 0.305471 0.108501 0.872901 1.48391 0 0.563503 3.35961 0 -0.687289 -0.28125 0.375 0.145405 -0.10963 0.784485 0.313115 0.0951327 0.927418 1.50182 0 0.563503 3.35961 0 -0.687289 +0.25 0.375 0.145537 -0.10941 0.78949 0.304778 0.190383 0.996788 1.48673 0 0.563503 3.35961 0 -0.687289 +0.28125 0.375 0.145543 -0.10941 0.789185 0.312613 0.176639 0.995304 1.50461 0 0.563503 3.35961 0 -0.687289 -0.28125 0.34375 0.140928 -0.106256 0.820892 0.306299 0.0734703 0.861663 1.54489 0 0.576932 3.35812 0 -0.709106 -0.3125 0.34375 0.140929 -0.106249 0.821442 0.314037 0.0735457 0.867001 1.56373 0 0.576932 3.35812 0 -0.709106 +0.28125 0.34375 0.141063 -0.10604 0.826172 0.305495 0.180446 0.948877 1.54749 0 0.576932 3.35812 0 -0.709106 +0.3125 0.34375 0.141069 -0.106036 0.825989 0.313711 0.173104 0.939779 1.56646 0 0.576932 3.35812 0 -0.709106 -0.28125 0.375 0.145405 -0.10963 0.784485 0.313115 0.0951327 0.927418 1.50182 0 0.563503 3.35961 0 -0.687289 -0.3125 0.375 0.145405 -0.109623 0.784637 0.321326 0.0902759 0.944443 1.52078 0 0.563503 3.35961 0 -0.687289 +0.28125 0.375 0.145543 -0.10941 0.789185 0.31269 0.176639 0.995304 1.50461 0 0.563503 3.35961 0 -0.687289 +0.3125 0.375 0.145548 -0.109406 0.789185 0.320907 0.170796 0.991482 1.52363 0 0.563503 3.35961 0 -0.687289 -0.3125 0.3125 0.136592 -0.102973 0.857544 0.307134 0.0764985 0.810622 1.60656 0 0.589949 3.35667 0 -0.731616 -0.34375 0.3125 0.136597 -0.102964 0.857941 0.315251 0.0805807 0.803577 1.62675 0 0.589949 3.35667 0 -0.731616 +0.3125 0.3125 0.136726 -0.102766 0.862885 0.306469 0.160963 0.898211 1.60931 0 0.589949 3.35667 0 -0.731616 +0.34375 0.3125 0.136732 -0.10276 0.862732 0.314975 0.157096 0.891904 1.62949 0 0.589949 3.35667 0 -0.731616 -0.3125 0.34375 0.140929 -0.106249 0.821442 0.314037 0.0735457 0.867001 1.56373 0 0.576932 3.35812 0 -0.709106 -0.34375 0.34375 0.140932 -0.106239 0.821655 0.322323 0.0882958 0.868832 1.58353 0 0.576932 3.35812 0 -0.709106 +0.3125 0.34375 0.141069 -0.106036 0.825989 0.313799 0.173104 0.939779 1.56646 0 0.576932 3.35812 0 -0.709106 +0.34375 0.34375 0.141074 -0.106029 0.825836 0.322305 0.168857 0.941152 1.5866 0 0.576932 3.35812 0 -0.709106 -0.34375 0.3125 0.136597 -0.102964 0.857941 0.315251 0.0805807 0.803577 1.62675 0 0.589949 3.35667 0 -0.731616 -0.375 0.3125 0.136603 -0.102951 0.858215 0.323927 0.105079 0.778054 1.64818 0 0.589949 3.35667 0 -0.731616 +0.34375 0.3125 0.136732 -0.10276 0.862732 0.314818 0.157096 0.891904 1.62949 0 0.589949 3.35667 0 -0.731616 +0.375 0.3125 0.136736 -0.102752 0.86264 0.323838 0.145569 0.911943 1.65095 0 0.589949 3.35667 0 -0.731616 -0.34375 0.34375 0.140932 -0.106239 0.821655 0.322323 0.0882958 0.868832 1.58353 0 0.576932 3.35812 0 -0.709106 -0.375 0.34375 0.140937 -0.106226 0.822021 0.3313 0.108505 0.853649 1.60511 0 0.576932 3.35812 0 -0.709106 +0.34375 0.34375 0.141074 -0.106029 0.825836 0.322413 0.168857 0.941152 1.5866 0 0.576932 3.35812 0 -0.709106 +0.375 0.34375 0.141078 -0.106021 0.825684 0.331433 0.161802 0.954453 1.60808 0 0.576932 3.35812 0 -0.709106 -0.3125 0.34375 0.140929 -0.106249 0.821442 0.314037 0.0735457 0.867001 1.56373 0 0.576932 3.35812 0 -0.709106 -0.34375 0.34375 0.140932 -0.106239 0.821655 0.322323 0.0882958 0.868832 1.58353 0 0.576932 3.35812 0 -0.709106 +0.3125 0.34375 0.141069 -0.106036 0.825989 0.313606 0.173104 0.939779 1.56646 0 0.576932 3.35812 0 -0.709106 +0.34375 0.34375 0.141074 -0.106029 0.825836 0.322386 0.168857 0.941152 1.5866 0 0.576932 3.35812 0 -0.709106 -0.3125 0.375 0.145405 -0.109623 0.784637 0.321326 0.0902759 0.944443 1.52078 0 0.563503 3.35961 0 -0.687289 -0.34375 0.375 0.145407 -0.109612 0.785034 0.329788 0.0745043 0.960843 1.54057 0 0.563503 3.35961 0 -0.687289 +0.3125 0.375 0.145548 -0.109406 0.789185 0.321028 0.170796 0.991482 1.52363 0 0.563503 3.35961 0 -0.687289 +0.34375 0.375 0.145553 -0.109401 0.788971 0.329809 0.18451 0.982991 1.54373 0 0.563503 3.35961 0 -0.687289 -0.34375 0.34375 0.140932 -0.106239 0.821655 0.322323 0.0882958 0.868832 1.58353 0 0.576932 3.35812 0 -0.709106 -0.375 0.34375 0.140937 -0.106226 0.822021 0.3313 0.108505 0.853649 1.60511 0 0.576932 3.35812 0 -0.709106 +0.34375 0.34375 0.141074 -0.106029 0.825836 0.322198 0.168857 0.941152 1.5866 0 0.576932 3.35812 0 -0.709106 +0.375 0.34375 0.141078 -0.106021 0.825684 0.331557 0.161802 0.954453 1.60808 0 0.576932 3.35812 0 -0.709106 -0.34375 0.375 0.145407 -0.109612 0.785034 0.329788 0.0745043 0.960843 1.54057 0 0.563503 3.35961 0 -0.687289 -0.375 0.375 0.14541 -0.109598 0.785461 0.338877 0.0895215 0.952159 1.56182 0 0.563503 3.35961 0 -0.687289 +0.34375 0.375 0.145553 -0.109401 0.788971 0.329938 0.18451 0.982991 1.54373 0 0.563503 3.35961 0 -0.687289 +0.375 0.375 0.145557 -0.109393 0.788757 0.339297 0.190841 0.997235 1.56532 0 0.563503 3.35961 0 -0.687289 -0.375 0.25 0.128332 -0.0966802 0.929718 0.310313 0.113918 0.718341 1.73529 0 0.614792 3.35391 0 -0.778801 -0.40625 0.25 0.128339 -0.0966668 0.930145 0.318854 0.091458 0.709602 1.75789 0 0.614792 3.35391 0 -0.778801 +0.375 0.25 0.128448 -0.0965038 0.93573 0.309168 0.130721 0.796593 1.73696 0 0.614792 3.35391 0 -0.778801 +0.40625 0.25 0.128453 -0.0964957 0.935791 0.318156 0.140822 0.812275 1.75993 0 0.614792 3.35391 0 -0.778801 -0.375 0.28125 0.132403 -0.0997695 0.894165 0.31662 0.108915 0.717168 1.69082 0 0.602565 3.35527 0 -0.75484 -0.40625 0.28125 0.132408 -0.0997555 0.894287 0.32598 0.0924337 0.741243 1.7145 0 0.602565 3.35527 0 -0.75484 +0.375 0.28125 0.132527 -0.0995802 0.899384 0.316466 0.13729 0.84776 1.69399 0 0.602565 3.35527 0 -0.75484 +0.40625 0.28125 0.132532 -0.0995719 0.899231 0.325454 0.136438 0.853935 1.71677 0 0.602565 3.35527 0 -0.75484 -0.40625 0.25 0.128339 -0.0966668 0.930145 0.318854 0.091458 0.709602 1.75789 0 0.614792 3.35391 0 -0.778801 -0.4375 0.25 0.128345 -0.0966516 0.930206 0.328255 0.0919508 0.680851 1.78236 0 0.614792 3.35391 0 -0.778801 +0.40625 0.25 0.128453 -0.0964957 0.935791 0.318006 0.140822 0.812275 1.75993 0 0.614792 3.35391 0 -0.778801 +0.4375 0.25 0.128458 -0.0964875 0.935577 0.327557 0.146989 0.809065 1.78422 0 0.614792 3.35391 0 -0.778801 -0.40625 0.28125 0.132408 -0.0997555 0.894287 0.32598 0.0924337 0.741243 1.7145 0 0.602565 3.35527 0 -0.75484 -0.4375 0.28125 0.132415 -0.0997383 0.894684 0.335337 0.100936 0.73301 1.73844 0 0.602565 3.35527 0 -0.75484 +0.40625 0.28125 0.132532 -0.0995719 0.899231 0.325614 0.136438 0.853935 1.71677 0 0.602565 3.35527 0 -0.75484 +0.4375 0.28125 0.132536 -0.0995635 0.899323 0.335165 0.129489 0.843256 1.74128 0 0.602565 3.35527 0 -0.75484 -0.375 0.28125 0.132403 -0.0997695 0.894165 0.31662 0.108915 0.717168 1.69082 0 0.602565 3.35527 0 -0.75484 -0.40625 0.28125 0.132408 -0.0997555 0.894287 0.32598 0.0924337 0.741243 1.7145 0 0.602565 3.35527 0 -0.75484 +0.375 0.28125 0.132527 -0.0995802 0.899384 0.31628 0.13729 0.84776 1.69399 0 0.602565 3.35527 0 -0.75484 +0.40625 0.28125 0.132532 -0.0995719 0.899231 0.325556 0.136438 0.853935 1.71677 0 0.602565 3.35527 0 -0.75484 -0.375 0.3125 0.136603 -0.102951 0.858215 0.323927 0.105079 0.778054 1.64818 0 0.589949 3.35667 0 -0.731616 -0.40625 0.3125 0.136609 -0.102935 0.858246 0.333268 0.114606 0.789062 1.67099 0 0.589949 3.35667 0 -0.731616 +0.375 0.3125 0.136736 -0.102752 0.86264 0.323889 0.145569 0.911943 1.65095 0 0.589949 3.35667 0 -0.731616 +0.40625 0.3125 0.13674 -0.102743 0.86264 0.333165 0.13577 0.912896 1.67378 0 0.589949 3.35667 0 -0.731616 -0.40625 0.28125 0.132408 -0.0997555 0.894287 0.32598 0.0924337 0.741243 1.7145 0 0.602565 3.35527 0 -0.75484 -0.4375 0.28125 0.132415 -0.0997383 0.894684 0.335337 0.100936 0.73301 1.73844 0 0.602565 3.35527 0 -0.75484 +0.40625 0.28125 0.132532 -0.0995719 0.899231 0.325407 0.136438 0.853935 1.71677 0 0.602565 3.35527 0 -0.75484 +0.4375 0.28125 0.132536 -0.0995635 0.899323 0.335204 0.129489 0.843256 1.74128 0 0.602565 3.35527 0 -0.75484 -0.40625 0.3125 0.136609 -0.102935 0.858246 0.333268 0.114606 0.789062 1.67099 0 0.589949 3.35667 0 -0.731616 -0.4375 0.3125 0.136615 -0.102917 0.858398 0.343019 0.102798 0.803134 1.69493 0 0.589949 3.35667 0 -0.731616 +0.40625 0.3125 0.13674 -0.102743 0.86264 0.33329 0.13577 0.912896 1.67378 0 0.589949 3.35667 0 -0.731616 +0.4375 0.3125 0.136744 -0.102734 0.86261 0.343087 0.110917 0.915665 1.69796 0 0.589949 3.35667 0 -0.731616 -0.4375 0.25 0.128345 -0.0966516 0.930206 0.328255 0.0919508 0.680851 1.78236 0 0.614792 3.35391 0 -0.778801 -0.46875 0.25 0.128352 -0.0966348 0.930511 0.338012 0.0747236 0.69365 1.80799 0 0.614792 3.35391 0 -0.778801 +0.4375 0.25 0.128458 -0.0964875 0.935577 0.327461 0.146989 0.809065 1.78422 0 0.614792 3.35391 0 -0.778801 +0.46875 0.25 0.128462 -0.0964794 0.935547 0.337564 0.142033 0.81285 1.80984 0 0.614792 3.35391 0 -0.778801 -0.4375 0.28125 0.132415 -0.0997383 0.894684 0.335337 0.100936 0.73301 1.73844 0 0.602565 3.35527 0 -0.75484 -0.46875 0.28125 0.132421 -0.0997199 0.894684 0.345718 0.124906 0.73841 1.76456 0 0.602565 3.35527 0 -0.75484 +0.4375 0.28125 0.132536 -0.0995635 0.899323 0.335256 0.129489 0.843256 1.74128 0 0.602565 3.35527 0 -0.75484 +0.46875 0.28125 0.132541 -0.0995552 0.899323 0.345359 0.143453 0.811045 1.76647 0 0.602565 3.35527 0 -0.75484 -0.46875 0.25 0.128352 -0.0966348 0.930511 0.338012 0.0747236 0.69365 1.80799 0 0.614792 3.35391 0 -0.778801 -0.5 0.25 0.128357 -0.0966162 0.930939 0.348178 0.0986954 0.702404 1.83481 0 0.614792 3.35391 0 -0.778801 +0.46875 0.25 0.128462 -0.0964794 0.935547 0.337362 0.142033 0.81285 1.80984 0 0.614792 3.35391 0 -0.778801 +0.5 0.25 0.128467 -0.096472 0.935455 0.348159 0.148786 0.80211 1.83715 0 0.614792 3.35391 0 -0.778801 -0.46875 0.28125 0.132421 -0.0997199 0.894684 0.345718 0.124906 0.73841 1.76456 0 0.602565 3.35527 0 -0.75484 -0.5 0.28125 0.132426 -0.0997003 0.894623 0.35643 0.0970727 0.739019 1.79145 0 0.602565 3.35527 0 -0.75484 +0.46875 0.28125 0.132541 -0.0995552 0.899323 0.345476 0.143453 0.811045 1.76647 0 0.602565 3.35527 0 -0.75484 +0.5 0.28125 0.132545 -0.099547 0.899231 0.356273 0.168432 0.841714 1.79423 0 0.602565 3.35527 0 -0.75484 -0.4375 0.28125 0.132415 -0.0997383 0.894684 0.335337 0.100936 0.73301 1.73844 0 0.602565 3.35527 0 -0.75484 -0.46875 0.28125 0.132421 -0.0997199 0.894684 0.345718 0.124906 0.73841 1.76456 0 0.602565 3.35527 0 -0.75484 +0.4375 0.28125 0.132536 -0.0995635 0.899323 0.335125 0.129489 0.843256 1.74128 0 0.602565 3.35527 0 -0.75484 +0.46875 0.28125 0.132541 -0.0995552 0.899323 0.345382 0.143453 0.811045 1.76647 0 0.602565 3.35527 0 -0.75484 -0.4375 0.3125 0.136615 -0.102917 0.858398 0.343019 0.102798 0.803134 1.69493 0 0.589949 3.35667 0 -0.731616 -0.46875 0.3125 0.13662 -0.102898 0.858612 0.353693 0.0890763 0.788099 1.72117 0 0.589949 3.35667 0 -0.731616 +0.4375 0.3125 0.136744 -0.102734 0.86261 0.343174 0.110917 0.915665 1.69796 0 0.589949 3.35667 0 -0.731616 +0.46875 0.3125 0.136748 -0.102725 0.863098 0.353431 0.149596 0.905226 1.72358 0 0.589949 3.35667 0 -0.731616 -0.46875 0.28125 0.132421 -0.0997199 0.894684 0.345718 0.124906 0.73841 1.76456 0 0.602565 3.35527 0 -0.75484 -0.5 0.28125 0.132426 -0.0997003 0.894623 0.35643 0.0970727 0.739019 1.79145 0 0.602565 3.35527 0 -0.75484 +0.46875 0.28125 0.132541 -0.0995552 0.899323 0.345154 0.143453 0.811045 1.76647 0 0.602565 3.35527 0 -0.75484 +0.5 0.28125 0.132545 -0.099547 0.899231 0.356484 0.168432 0.841714 1.79423 0 0.602565 3.35527 0 -0.75484 -0.46875 0.3125 0.13662 -0.102898 0.858612 0.353693 0.0890763 0.788099 1.72117 0 0.589949 3.35667 0 -0.731616 -0.5 0.3125 0.136627 -0.102877 0.859009 0.364574 0.107431 0.768501 1.7481 0 0.589949 3.35667 0 -0.731616 +0.46875 0.3125 0.136748 -0.102725 0.863098 0.353567 0.149596 0.905226 1.72358 0 0.589949 3.35667 0 -0.731616 +0.5 0.3125 0.136751 -0.102716 0.862488 0.364897 0.19522 0.913075 1.75122 0 0.589949 3.35667 0 -0.731616 -0.375 0.3125 0.136603 -0.102951 0.858215 0.323927 0.105079 0.778054 1.64818 0 0.589949 3.35667 0 -0.731616 -0.40625 0.3125 0.136609 -0.102935 0.858246 0.333268 0.114606 0.789062 1.67099 0 0.589949 3.35667 0 -0.731616 +0.375 0.3125 0.136736 -0.102752 0.86264 0.323665 0.145569 0.911943 1.65095 0 0.589949 3.35667 0 -0.731616 +0.40625 0.3125 0.13674 -0.102743 0.86264 0.333209 0.13577 0.912896 1.67378 0 0.589949 3.35667 0 -0.731616 -0.375 0.34375 0.140937 -0.106226 0.822021 0.3313 0.108505 0.853649 1.60511 0 0.576932 3.35812 0 -0.709106 -0.40625 0.34375 0.140944 -0.10621 0.821991 0.34085 0.12404 0.839896 1.62765 0 0.576932 3.35812 0 -0.709106 +0.375 0.34375 0.141078 -0.106021 0.825684 0.331624 0.161802 0.954453 1.60808 0 0.576932 3.35812 0 -0.709106 +0.40625 0.34375 0.141081 -0.106012 0.825592 0.341169 0.146221 0.975208 1.63094 0 0.576932 3.35812 0 -0.709106 -0.40625 0.3125 0.136609 -0.102935 0.858246 0.333268 0.114606 0.789062 1.67099 0 0.589949 3.35667 0 -0.731616 -0.4375 0.3125 0.136615 -0.102917 0.858398 0.343019 0.102798 0.803134 1.69493 0 0.589949 3.35667 0 -0.731616 +0.40625 0.3125 0.13674 -0.102743 0.86264 0.333038 0.13577 0.912896 1.67378 0 0.589949 3.35667 0 -0.731616 +0.4375 0.3125 0.136744 -0.102734 0.86261 0.343162 0.110917 0.915665 1.69796 0 0.589949 3.35667 0 -0.731616 -0.40625 0.34375 0.140944 -0.10621 0.821991 0.34085 0.12404 0.839896 1.62765 0 0.576932 3.35812 0 -0.709106 -0.4375 0.34375 0.140949 -0.106191 0.822113 0.351124 0.106068 0.831649 1.65206 0 0.576932 3.35812 0 -0.709106 +0.40625 0.34375 0.141081 -0.106012 0.825592 0.341322 0.146221 0.975208 1.63094 0 0.576932 3.35812 0 -0.709106 +0.4375 0.34375 0.141084 -0.106002 0.825623 0.351446 0.128106 0.980976 1.65498 0 0.576932 3.35812 0 -0.709106 -0.375 0.34375 0.140937 -0.106226 0.822021 0.3313 0.108505 0.853649 1.60511 0 0.576932 3.35812 0 -0.709106 -0.40625 0.34375 0.140944 -0.10621 0.821991 0.34085 0.12404 0.839896 1.62765 0 0.576932 3.35812 0 -0.709106 +0.375 0.34375 0.141078 -0.106021 0.825684 0.331361 0.161802 0.954453 1.60808 0 0.576932 3.35812 0 -0.709106 +0.40625 0.34375 0.141081 -0.106012 0.825592 0.341277 0.146221 0.975208 1.63094 0 0.576932 3.35812 0 -0.709106 -0.375 0.375 0.14541 -0.109598 0.785461 0.338877 0.0895215 0.952159 1.56182 0 0.563503 3.35961 0 -0.687289 -0.40625 0.375 0.145416 -0.109582 0.785614 0.34874 0.102234 0.90296 1.58456 0 0.563503 3.35961 0 -0.687289 +0.375 0.375 0.145557 -0.109393 0.788757 0.339488 0.190841 0.997235 1.56532 0 0.563503 3.35961 0 -0.687289 +0.40625 0.375 0.14556 -0.109383 0.788452 0.349403 0.179923 1.00653 1.5881 0 0.563503 3.35961 0 -0.687289 -0.40625 0.34375 0.140944 -0.10621 0.821991 0.34085 0.12404 0.839896 1.62765 0 0.576932 3.35812 0 -0.709106 -0.4375 0.34375 0.140949 -0.106191 0.822113 0.351124 0.106068 0.831649 1.65206 0 0.576932 3.35812 0 -0.709106 +0.40625 0.34375 0.141081 -0.106012 0.825592 0.341084 0.146221 0.975208 1.63094 0 0.576932 3.35812 0 -0.709106 +0.4375 0.34375 0.141084 -0.106002 0.825623 0.351521 0.128106 0.980976 1.65498 0 0.576932 3.35812 0 -0.709106 -0.40625 0.375 0.145416 -0.109582 0.785614 0.34874 0.102234 0.90296 1.58456 0 0.563503 3.35961 0 -0.687289 -0.4375 0.375 0.145421 -0.109563 0.785889 0.359184 0.105248 0.883991 1.60877 0 0.563503 3.35961 0 -0.687289 +0.40625 0.375 0.14556 -0.109383 0.788452 0.349611 0.179923 1.00653 1.5881 0 0.563503 3.35961 0 -0.687289 +0.4375 0.375 0.145562 -0.109373 0.788391 0.360048 0.166267 1.02629 1.61248 0 0.563503 3.35961 0 -0.687289 -0.4375 0.3125 0.136615 -0.102917 0.858398 0.343019 0.102798 0.803134 1.69493 0 0.589949 3.35667 0 -0.731616 -0.46875 0.3125 0.13662 -0.102898 0.858612 0.353693 0.0890763 0.788099 1.72117 0 0.589949 3.35667 0 -0.731616 +0.4375 0.3125 0.136744 -0.102734 0.86261 0.34298 0.110917 0.915665 1.69796 0 0.589949 3.35667 0 -0.731616 +0.46875 0.3125 0.136748 -0.102725 0.863098 0.353477 0.149596 0.905226 1.72358 0 0.589949 3.35667 0 -0.731616 -0.4375 0.34375 0.140949 -0.106191 0.822113 0.351124 0.106068 0.831649 1.65206 0 0.576932 3.35812 0 -0.709106 -0.46875 0.34375 0.140955 -0.106171 0.822388 0.361925 0.096366 0.836552 1.67787 0 0.576932 3.35812 0 -0.709106 +0.4375 0.34375 0.141084 -0.106002 0.825623 0.351629 0.128106 0.980976 1.65498 0 0.576932 3.35812 0 -0.709106 +0.46875 0.34375 0.141087 -0.105993 0.825836 0.362125 0.148475 1.02525 1.68088 0 0.576932 3.35812 0 -0.709106 -0.46875 0.3125 0.13662 -0.102898 0.858612 0.353693 0.0890763 0.788099 1.72117 0 0.589949 3.35667 0 -0.731616 -0.5 0.3125 0.136627 -0.102877 0.859009 0.364574 0.107431 0.768501 1.7481 0 0.589949 3.35667 0 -0.731616 +0.46875 0.3125 0.136748 -0.102725 0.863098 0.353297 0.149596 0.905226 1.72358 0 0.589949 3.35667 0 -0.731616 +0.5 0.3125 0.136751 -0.102716 0.862488 0.36503 0.19522 0.913075 1.75122 0 0.589949 3.35667 0 -0.731616 -0.46875 0.34375 0.140955 -0.106171 0.822388 0.361925 0.096366 0.836552 1.67787 0 0.576932 3.35812 0 -0.709106 -0.5 0.34375 0.140961 -0.106149 0.822662 0.373222 0.112936 0.842806 1.70484 0 0.576932 3.35812 0 -0.709106 +0.46875 0.34375 0.141087 -0.105993 0.825836 0.362272 0.148475 1.02525 1.68088 0 0.576932 3.35812 0 -0.709106 +0.5 0.34375 0.14109 -0.105984 0.825562 0.374006 0.175666 0.978388 1.70839 0 0.576932 3.35812 0 -0.709106 -0.4375 0.34375 0.140949 -0.106191 0.822113 0.351124 0.106068 0.831649 1.65206 0 0.576932 3.35812 0 -0.709106 -0.46875 0.34375 0.140955 -0.106171 0.822388 0.361925 0.096366 0.836552 1.67787 0 0.576932 3.35812 0 -0.709106 +0.4375 0.34375 0.141084 -0.106002 0.825623 0.35125 0.128106 0.980976 1.65498 0 0.576932 3.35812 0 -0.709106 +0.46875 0.34375 0.141087 -0.105993 0.825836 0.362351 0.148475 1.02525 1.68088 0 0.576932 3.35812 0 -0.709106 -0.4375 0.375 0.145421 -0.109563 0.785889 0.359184 0.105248 0.883991 1.60877 0 0.563503 3.35961 0 -0.687289 -0.46875 0.375 0.145428 -0.109542 0.786041 0.370427 0.110595 0.906428 1.63468 0 0.563503 3.35961 0 -0.687289 +0.4375 0.375 0.145562 -0.109373 0.788391 0.360275 0.166267 1.02629 1.61248 0 0.563503 3.35961 0 -0.687289 +0.46875 0.375 0.145564 -0.109364 0.788239 0.371375 0.153167 1.06312 1.63828 0 0.563503 3.35961 0 -0.687289 -0.46875 0.34375 0.140955 -0.106171 0.822388 0.361925 0.096366 0.836552 1.67787 0 0.576932 3.35812 0 -0.709106 -0.5 0.34375 0.140961 -0.106149 0.822662 0.373222 0.112936 0.842806 1.70484 0 0.576932 3.35812 0 -0.709106 +0.46875 0.34375 0.141087 -0.105993 0.825836 0.362129 0.148475 1.02525 1.68088 0 0.576932 3.35812 0 -0.709106 +0.5 0.34375 0.14109 -0.105984 0.825562 0.373987 0.175666 0.978388 1.70839 0 0.576932 3.35812 0 -0.709106 -0.46875 0.375 0.145428 -0.109542 0.786041 0.370427 0.110595 0.906428 1.63468 0 0.563503 3.35961 0 -0.687289 -0.5 0.375 0.145433 -0.109518 0.786285 0.382047 0.127989 0.906249 1.66154 0 0.563503 3.35961 0 -0.687289 +0.46875 0.375 0.145564 -0.109364 0.788239 0.371532 0.153167 1.06312 1.63828 0 0.563503 3.35961 0 -0.687289 +0.5 0.375 0.145565 -0.109354 0.78833 0.383391 0.147041 1.03576 1.66564 0 0.563503 3.35961 0 -0.687289 -0.25 0.375 0.145407 -0.109629 0.784088 0.305471 0.108501 0.872901 1.48391 0 0.563503 3.35961 0 -0.687289 -0.28125 0.375 0.145405 -0.10963 0.784485 0.313115 0.0951327 0.927418 1.50182 0 0.563503 3.35961 0 -0.687289 +0.25 0.375 0.145537 -0.10941 0.78949 0.304599 0.190383 0.996788 1.48673 0 0.563503 3.35961 0 -0.687289 +0.28125 0.375 0.145543 -0.10941 0.789185 0.31269 0.176639 0.995304 1.50461 0 0.563503 3.35961 0 -0.687289 -0.25 0.40625 0.150029 -0.113105 0.748047 0.312126 0.134352 0.98542 1.44112 0 0.549647 3.36115 0 -0.666144 -0.28125 0.40625 0.150026 -0.113106 0.747528 0.320474 0.154749 1.00043 1.45913 0 0.549647 3.36115 0 -0.666144 +0.25 0.40625 0.150158 -0.112884 0.75235 0.311786 0.196173 1.0651 1.44389 0 0.549647 3.36115 0 -0.666144 +0.28125 0.40625 0.150164 -0.112885 0.752136 0.319876 0.182975 1.05717 1.46177 0 0.549647 3.36115 0 -0.666144 -0.28125 0.375 0.145405 -0.10963 0.784485 0.313115 0.0951327 0.927418 1.50182 0 0.563503 3.35961 0 -0.687289 -0.3125 0.375 0.145405 -0.109623 0.784637 0.321326 0.0902759 0.944443 1.52078 0 0.563503 3.35961 0 -0.687289 +0.28125 0.375 0.145543 -0.10941 0.789185 0.312545 0.176639 0.995304 1.50461 0 0.563503 3.35961 0 -0.687289 +0.3125 0.375 0.145548 -0.109406 0.789185 0.320982 0.170796 0.991482 1.52363 0 0.563503 3.35961 0 -0.687289 -0.28125 0.40625 0.150026 -0.113106 0.747528 0.320474 0.154749 1.00043 1.45913 0 0.549647 3.36115 0 -0.666144 -0.3125 0.40625 0.150024 -0.1131 0.747864 0.32863 0.122391 1.01301 1.47758 0 0.549647 3.36115 0 -0.666144 +0.28125 0.40625 0.150164 -0.112885 0.752136 0.319983 0.182975 1.05717 1.46177 0 0.549647 3.36115 0 -0.666144 +0.3125 0.40625 0.15017 -0.112882 0.752014 0.32842 0.169524 1.06518 1.48058 0 0.549647 3.36115 0 -0.666144 -0.25 0.40625 0.150029 -0.113105 0.748047 0.312126 0.134352 0.98542 1.44112 0 0.549647 3.36115 0 -0.666144 -0.28125 0.40625 0.150026 -0.113106 0.747528 0.320474 0.154749 1.00043 1.45913 0 0.549647 3.36115 0 -0.666144 +0.25 0.40625 0.150158 -0.112884 0.75235 0.311628 0.196173 1.0651 1.44389 0 0.549647 3.36115 0 -0.666144 +0.28125 0.40625 0.150164 -0.112885 0.752136 0.319897 0.182975 1.05717 1.46177 0 0.549647 3.36115 0 -0.666144 -0.25 0.4375 0.154795 -0.116686 0.71048 0.319728 0.111677 1.1546 1.39859 0 0.535351 3.36274 0 -0.645649 -0.28125 0.4375 0.154793 -0.116688 0.710602 0.327767 0.135478 1.07475 1.41601 0 0.535351 3.36274 0 -0.645649 +0.25 0.4375 0.154926 -0.116466 0.714966 0.319126 0.192253 1.13659 1.40111 0 0.535351 3.36274 0 -0.645649 +0.28125 0.4375 0.154932 -0.116468 0.714752 0.327395 0.187692 1.12591 1.41884 0 0.535351 3.36274 0 -0.645649 -0.28125 0.40625 0.150026 -0.113106 0.747528 0.320474 0.154749 1.00043 1.45913 0 0.549647 3.36115 0 -0.666144 -0.3125 0.40625 0.150024 -0.1131 0.747864 0.32863 0.122391 1.01301 1.47758 0 0.549647 3.36115 0 -0.666144 +0.28125 0.40625 0.150164 -0.112885 0.752136 0.319781 0.182975 1.05717 1.46177 0 0.549647 3.36115 0 -0.666144 +0.3125 0.40625 0.15017 -0.112882 0.752014 0.328503 0.169524 1.06518 1.48058 0 0.549647 3.36115 0 -0.666144 -0.28125 0.4375 0.154793 -0.116688 0.710602 0.327767 0.135478 1.07475 1.41601 0 0.535351 3.36274 0 -0.645649 -0.3125 0.4375 0.154791 -0.116682 0.710571 0.336524 0.118834 1.06437 1.43483 0 0.535351 3.36274 0 -0.645649 +0.28125 0.4375 0.154932 -0.116468 0.714752 0.327517 0.187692 1.12591 1.41884 0 0.535351 3.36274 0 -0.645649 +0.3125 0.4375 0.154937 -0.116465 0.714661 0.336238 0.191273 1.14271 1.43785 0 0.535351 3.36274 0 -0.645649 -0.3125 0.375 0.145405 -0.109623 0.784637 0.321326 0.0902759 0.944443 1.52078 0 0.563503 3.35961 0 -0.687289 -0.34375 0.375 0.145407 -0.109612 0.785034 0.329788 0.0745043 0.960843 1.54057 0 0.563503 3.35961 0 -0.687289 +0.3125 0.375 0.145548 -0.109406 0.789185 0.320853 0.170796 0.991482 1.52363 0 0.563503 3.35961 0 -0.687289 +0.34375 0.375 0.145553 -0.109401 0.788971 0.329837 0.18451 0.982991 1.54373 0 0.563503 3.35961 0 -0.687289 -0.3125 0.40625 0.150024 -0.1131 0.747864 0.32863 0.122391 1.01301 1.47758 0 0.549647 3.36115 0 -0.666144 -0.34375 0.40625 0.150025 -0.113088 0.747833 0.337809 0.0989457 1.01929 1.49793 0 0.549647 3.36115 0 -0.666144 +0.3125 0.40625 0.15017 -0.112882 0.752014 0.328544 0.169524 1.06518 1.48058 0 0.549647 3.36115 0 -0.666144 +0.34375 0.40625 0.150174 -0.112876 0.752014 0.337527 0.185434 1.07237 1.50091 0 0.549647 3.36115 0 -0.666144 -0.34375 0.375 0.145407 -0.109612 0.785034 0.329788 0.0745043 0.960843 1.54057 0 0.563503 3.35961 0 -0.687289 -0.375 0.375 0.14541 -0.109598 0.785461 0.338877 0.0895215 0.952159 1.56182 0 0.563503 3.35961 0 -0.687289 +0.34375 0.375 0.145553 -0.109401 0.788971 0.329727 0.18451 0.982991 1.54373 0 0.563503 3.35961 0 -0.687289 +0.375 0.375 0.145557 -0.109393 0.788757 0.339462 0.190841 0.997235 1.56532 0 0.563503 3.35961 0 -0.687289 -0.34375 0.40625 0.150025 -0.113088 0.747833 0.337809 0.0989457 1.01929 1.49793 0 0.549647 3.36115 0 -0.666144 -0.375 0.40625 0.150027 -0.113074 0.748322 0.347044 0.0503445 1.02888 1.51893 0 0.549647 3.36115 0 -0.666144 +0.34375 0.40625 0.150174 -0.112876 0.752014 0.337639 0.185434 1.07237 1.50091 0 0.549647 3.36115 0 -0.666144 +0.375 0.40625 0.150178 -0.112869 0.751648 0.347375 0.198963 1.06254 1.5223 0 0.549647 3.36115 0 -0.666144 -0.3125 0.40625 0.150024 -0.1131 0.747864 0.32863 0.122391 1.01301 1.47758 0 0.549647 3.36115 0 -0.666144 -0.34375 0.40625 0.150025 -0.113088 0.747833 0.337809 0.0989457 1.01929 1.49793 0 0.549647 3.36115 0 -0.666144 +0.3125 0.40625 0.15017 -0.112882 0.752014 0.328313 0.169524 1.06518 1.48058 0 0.549647 3.36115 0 -0.666144 +0.34375 0.40625 0.150174 -0.112876 0.752014 0.337609 0.185434 1.07237 1.50091 0 0.549647 3.36115 0 -0.666144 -0.3125 0.4375 0.154791 -0.116682 0.710571 0.336524 0.118834 1.06437 1.43483 0 0.535351 3.36274 0 -0.645649 -0.34375 0.4375 0.154791 -0.116672 0.710938 0.34567 0.0933197 1.06948 1.45487 0 0.535351 3.36274 0 -0.645649 +0.3125 0.4375 0.154937 -0.116465 0.714661 0.336419 0.191273 1.14271 1.43785 0 0.535351 3.36274 0 -0.645649 +0.34375 0.4375 0.15494 -0.116459 0.714386 0.345715 0.192244 1.16793 1.45814 0 0.535351 3.36274 0 -0.645649 -0.34375 0.40625 0.150025 -0.113088 0.747833 0.337809 0.0989457 1.01929 1.49793 0 0.549647 3.36115 0 -0.666144 -0.375 0.40625 0.150027 -0.113074 0.748322 0.347044 0.0503445 1.02888 1.51893 0 0.549647 3.36115 0 -0.666144 +0.34375 0.40625 0.150174 -0.112876 0.752014 0.337476 0.185434 1.07237 1.50091 0 0.549647 3.36115 0 -0.666144 +0.375 0.40625 0.150178 -0.112869 0.751648 0.347433 0.198963 1.06254 1.5223 0 0.549647 3.36115 0 -0.666144 -0.34375 0.4375 0.154791 -0.116672 0.710938 0.34567 0.0933197 1.06948 1.45487 0 0.535351 3.36274 0 -0.645649 -0.375 0.4375 0.154792 -0.116656 0.711243 0.355333 0.0918172 1.08911 1.47598 0 0.535351 3.36274 0 -0.645649 +0.34375 0.4375 0.15494 -0.116459 0.714386 0.345843 0.192244 1.16793 1.45814 0 0.535351 3.36274 0 -0.645649 +0.375 0.4375 0.154943 -0.116452 0.714294 0.3558 0.195034 1.14462 1.47951 0 0.535351 3.36274 0 -0.645649 -0.25 0.4375 0.154795 -0.116686 0.71048 0.319728 0.111677 1.1546 1.39859 0 0.535351 3.36274 0 -0.645649 -0.28125 0.4375 0.154793 -0.116688 0.710602 0.327767 0.135478 1.07475 1.41601 0 0.535351 3.36274 0 -0.645649 +0.25 0.4375 0.154926 -0.116466 0.714966 0.318937 0.192253 1.13659 1.40111 0 0.535351 3.36274 0 -0.645649 +0.28125 0.4375 0.154932 -0.116468 0.714752 0.327408 0.187692 1.12591 1.41884 0 0.535351 3.36274 0 -0.645649 -0.25 0.46875 0.159714 -0.120379 0.672546 0.327571 0.100843 1.18766 1.35584 0 0.520601 3.36438 0 -0.625784 -0.28125 0.46875 0.15971 -0.120381 0.673187 0.335593 0.0661102 1.16011 1.37322 0 0.520601 3.36438 0 -0.625784 +0.25 0.46875 0.159844 -0.12016 0.677429 0.326653 0.18311 1.2243 1.3584 0 0.520601 3.36438 0 -0.625784 +0.28125 0.46875 0.15985 -0.120162 0.677277 0.335124 0.205299 1.19299 1.37604 0 0.520601 3.36438 0 -0.625784 -0.28125 0.4375 0.154793 -0.116688 0.710602 0.327767 0.135478 1.07475 1.41601 0 0.535351 3.36274 0 -0.645649 -0.3125 0.4375 0.154791 -0.116682 0.710571 0.336524 0.118834 1.06437 1.43483 0 0.535351 3.36274 0 -0.645649 +0.28125 0.4375 0.154932 -0.116468 0.714752 0.327274 0.187692 1.12591 1.41884 0 0.535351 3.36274 0 -0.645649 +0.3125 0.4375 0.154937 -0.116465 0.714661 0.336342 0.191273 1.14271 1.43785 0 0.535351 3.36274 0 -0.645649 -0.28125 0.46875 0.15971 -0.120381 0.673187 0.335593 0.0661102 1.16011 1.37322 0 0.520601 3.36438 0 -0.625784 -0.3125 0.46875 0.159709 -0.120375 0.673645 0.344342 0.111351 1.12956 1.39192 0 0.520601 3.36438 0 -0.625784 +0.28125 0.46875 0.15985 -0.120162 0.677277 0.33525 0.205299 1.19299 1.37604 0 0.520601 3.36438 0 -0.625784 +0.3125 0.46875 0.159854 -0.12016 0.676971 0.344318 0.219998 1.21081 1.39506 0 0.520601 3.36438 0 -0.625784 -0.25 0.46875 0.159714 -0.120379 0.672546 0.327571 0.100843 1.18766 1.35584 0 0.520601 3.36438 0 -0.625784 -0.28125 0.46875 0.15971 -0.120381 0.673187 0.335593 0.0661102 1.16011 1.37322 0 0.520601 3.36438 0 -0.625784 +0.25 0.46875 0.159844 -0.12016 0.677429 0.326499 0.18311 1.2243 1.3584 0 0.520601 3.36438 0 -0.625784 +0.28125 0.46875 0.15985 -0.120162 0.677277 0.33512 0.205299 1.19299 1.37604 0 0.520601 3.36438 0 -0.625784 -0.25 0.5 0.16479 -0.124187 0.635284 0.33506 0.101935 1.20135 1.3127 0 0.505384 3.36607 0 -0.606531 -0.28125 0.5 0.164785 -0.124187 0.635651 0.343603 0.0919705 1.22161 1.33034 0 0.505384 3.36607 0 -0.606531 +0.25 0.5 0.164917 -0.123969 0.639435 0.334519 0.181753 1.29511 1.31522 0 0.505384 3.36607 0 -0.606531 +0.28125 0.5 0.164922 -0.123971 0.639648 0.34314 0.185489 1.29657 1.33318 0 0.505384 3.36607 0 -0.606531 -0.28125 0.46875 0.15971 -0.120381 0.673187 0.335593 0.0661102 1.16011 1.37322 0 0.520601 3.36438 0 -0.625784 -0.3125 0.46875 0.159709 -0.120375 0.673645 0.344342 0.111351 1.12956 1.39192 0 0.520601 3.36438 0 -0.625784 +0.28125 0.46875 0.15985 -0.120162 0.677277 0.33503 0.205299 1.19299 1.37604 0 0.520601 3.36438 0 -0.625784 +0.3125 0.46875 0.159854 -0.12016 0.676971 0.344435 0.219998 1.21081 1.39506 0 0.520601 3.36438 0 -0.625784 -0.28125 0.5 0.164785 -0.124187 0.635651 0.343603 0.0919705 1.22161 1.33034 0 0.505384 3.36607 0 -0.606531 -0.3125 0.5 0.164783 -0.124182 0.636047 0.352731 0.115968 1.22861 1.34919 0 0.505384 3.36607 0 -0.606531 +0.28125 0.5 0.164922 -0.123971 0.639648 0.343179 0.185489 1.29657 1.33318 0 0.505384 3.36607 0 -0.606531 +0.3125 0.5 0.164927 -0.12397 0.639313 0.352584 0.21946 1.28681 1.35207 0 0.505384 3.36607 0 -0.606531 -0.3125 0.4375 0.154791 -0.116682 0.710571 0.336524 0.118834 1.06437 1.43483 0 0.535351 3.36274 0 -0.645649 -0.34375 0.4375 0.154791 -0.116672 0.710938 0.34567 0.0933197 1.06948 1.45487 0 0.535351 3.36274 0 -0.645649 +0.3125 0.4375 0.154937 -0.116465 0.714661 0.336155 0.191273 1.14271 1.43785 0 0.535351 3.36274 0 -0.645649 +0.34375 0.4375 0.15494 -0.116459 0.714386 0.34586 0.192244 1.16793 1.45814 0 0.535351 3.36274 0 -0.645649 -0.3125 0.46875 0.159709 -0.120375 0.673645 0.344342 0.111351 1.12956 1.39192 0 0.520601 3.36438 0 -0.625784 -0.34375 0.46875 0.159709 -0.120364 0.673584 0.353952 0.127249 1.14618 1.41191 0 0.520601 3.36438 0 -0.625784 +0.3125 0.46875 0.159854 -0.12016 0.676971 0.344533 0.219998 1.21081 1.39506 0 0.520601 3.36438 0 -0.625784 +0.34375 0.46875 0.159857 -0.120154 0.676605 0.354238 0.197122 1.20865 1.41512 0 0.520601 3.36438 0 -0.625784 -0.34375 0.4375 0.154791 -0.116672 0.710938 0.34567 0.0933197 1.06948 1.45487 0 0.535351 3.36274 0 -0.645649 -0.375 0.4375 0.154792 -0.116656 0.711243 0.355333 0.0918172 1.08911 1.47598 0 0.535351 3.36274 0 -0.645649 +0.34375 0.4375 0.15494 -0.116459 0.714386 0.345714 0.192244 1.16793 1.45814 0 0.535351 3.36274 0 -0.645649 +0.375 0.4375 0.154943 -0.116452 0.714294 0.355792 0.195034 1.14462 1.47951 0 0.535351 3.36274 0 -0.645649 -0.34375 0.46875 0.159709 -0.120364 0.673584 0.353952 0.127249 1.14618 1.41191 0 0.520601 3.36438 0 -0.625784 -0.375 0.46875 0.159709 -0.120347 0.673889 0.364032 0.114288 1.17973 1.43324 0 0.520601 3.36438 0 -0.625784 +0.34375 0.46875 0.159857 -0.120154 0.676605 0.354407 0.197122 1.20865 1.41512 0 0.520601 3.36438 0 -0.625784 +0.375 0.46875 0.15986 -0.120147 0.676636 0.364484 0.183886 1.23729 1.43663 0 0.520601 3.36438 0 -0.625784 -0.3125 0.46875 0.159709 -0.120375 0.673645 0.344342 0.111351 1.12956 1.39192 0 0.520601 3.36438 0 -0.625784 -0.34375 0.46875 0.159709 -0.120364 0.673584 0.353952 0.127249 1.14618 1.41191 0 0.520601 3.36438 0 -0.625784 +0.3125 0.46875 0.159854 -0.12016 0.676971 0.344296 0.219998 1.21081 1.39506 0 0.520601 3.36438 0 -0.625784 +0.34375 0.46875 0.159857 -0.120154 0.676605 0.354303 0.197122 1.20865 1.41512 0 0.520601 3.36438 0 -0.625784 -0.3125 0.5 0.164783 -0.124182 0.636047 0.352731 0.115968 1.22861 1.34919 0 0.505384 3.36607 0 -0.606531 -0.34375 0.5 0.164783 -0.12417 0.636139 0.36251 0.152843 1.20614 1.36905 0 0.505384 3.36607 0 -0.606531 +0.3125 0.5 0.164927 -0.12397 0.639313 0.352685 0.21946 1.28681 1.35207 0 0.505384 3.36607 0 -0.606531 +0.34375 0.5 0.164929 -0.123965 0.639099 0.362692 0.237479 1.27534 1.37236 0 0.505384 3.36607 0 -0.606531 -0.34375 0.46875 0.159709 -0.120364 0.673584 0.353952 0.127249 1.14618 1.41191 0 0.520601 3.36438 0 -0.625784 -0.375 0.46875 0.159709 -0.120347 0.673889 0.364032 0.114288 1.17973 1.43324 0 0.520601 3.36438 0 -0.625784 +0.34375 0.46875 0.159857 -0.120154 0.676605 0.354086 0.197122 1.20865 1.41512 0 0.520601 3.36438 0 -0.625784 +0.375 0.46875 0.15986 -0.120147 0.676636 0.364635 0.183886 1.23729 1.43663 0 0.520601 3.36438 0 -0.625784 -0.34375 0.5 0.164783 -0.12417 0.636139 0.36251 0.152843 1.20614 1.36905 0 0.505384 3.36607 0 -0.606531 -0.375 0.5 0.164784 -0.124154 0.636047 0.373018 0.141971 1.22615 1.3902 0 0.505384 3.36607 0 -0.606531 +0.34375 0.5 0.164929 -0.123965 0.639099 0.362926 0.237479 1.27534 1.37236 0 0.505384 3.36607 0 -0.606531 +0.375 0.5 0.164931 -0.123959 0.63858 0.373475 0.233175 1.28961 1.39366 0 0.505384 3.36607 0 -0.606531 -0.375 0.375 0.14541 -0.109598 0.785461 0.338877 0.0895215 0.952159 1.56182 0 0.563503 3.35961 0 -0.687289 -0.40625 0.375 0.145416 -0.109582 0.785614 0.34874 0.102234 0.90296 1.58456 0 0.563503 3.35961 0 -0.687289 +0.375 0.375 0.145557 -0.109393 0.788757 0.339256 0.190841 0.997235 1.56532 0 0.563503 3.35961 0 -0.687289 +0.40625 0.375 0.14556 -0.109383 0.788452 0.349534 0.179923 1.00653 1.5881 0 0.563503 3.35961 0 -0.687289 -0.375 0.40625 0.150027 -0.113074 0.748322 0.347044 0.0503445 1.02888 1.51893 0 0.549647 3.36115 0 -0.666144 -0.40625 0.40625 0.150032 -0.113057 0.748993 0.356857 0.056856 1.01348 1.54139 0 0.549647 3.36115 0 -0.666144 +0.375 0.40625 0.150178 -0.112869 0.751648 0.347525 0.198963 1.06254 1.5223 0 0.549647 3.36115 0 -0.666144 +0.40625 0.40625 0.15018 -0.11286 0.751465 0.357803 0.192593 1.06415 1.54529 0 0.549647 3.36115 0 -0.666144 -0.40625 0.375 0.145416 -0.109582 0.785614 0.34874 0.102234 0.90296 1.58456 0 0.563503 3.35961 0 -0.687289 -0.4375 0.375 0.145421 -0.109563 0.785889 0.359184 0.105248 0.883991 1.60877 0 0.563503 3.35961 0 -0.687289 +0.40625 0.375 0.14556 -0.109383 0.788452 0.349341 0.179923 1.00653 1.5881 0 0.563503 3.35961 0 -0.687289 +0.4375 0.375 0.145562 -0.109373 0.788391 0.360203 0.166267 1.02629 1.61248 0 0.563503 3.35961 0 -0.687289 -0.40625 0.40625 0.150032 -0.113057 0.748993 0.356857 0.056856 1.01348 1.54139 0 0.549647 3.36115 0 -0.666144 -0.4375 0.40625 0.150037 -0.113037 0.74939 0.367663 0.108676 1.01273 1.56578 0 0.549647 3.36115 0 -0.666144 +0.40625 0.40625 0.15018 -0.11286 0.751465 0.357984 0.192593 1.06415 1.54529 0 0.549647 3.36115 0 -0.666144 +0.4375 0.40625 0.150181 -0.11285 0.751221 0.368845 0.188408 1.07164 1.56942 0 0.549647 3.36115 0 -0.666144 -0.375 0.40625 0.150027 -0.113074 0.748322 0.347044 0.0503445 1.02888 1.51893 0 0.549647 3.36115 0 -0.666144 -0.40625 0.40625 0.150032 -0.113057 0.748993 0.356857 0.056856 1.01348 1.54139 0 0.549647 3.36115 0 -0.666144 +0.375 0.40625 0.150178 -0.112869 0.751648 0.347281 0.198963 1.06254 1.5223 0 0.549647 3.36115 0 -0.666144 +0.40625 0.40625 0.15018 -0.11286 0.751465 0.357901 0.192593 1.06415 1.54529 0 0.549647 3.36115 0 -0.666144 -0.375 0.4375 0.154792 -0.116656 0.711243 0.355333 0.0918172 1.08911 1.47598 0 0.535351 3.36274 0 -0.645649 -0.40625 0.4375 0.154795 -0.116637 0.711578 0.36579 0.0960527 1.12185 1.49882 0 0.535351 3.36274 0 -0.645649 +0.375 0.4375 0.154943 -0.116452 0.714294 0.35589 0.195034 1.14462 1.47951 0 0.535351 3.36274 0 -0.645649 +0.40625 0.4375 0.154945 -0.116443 0.713989 0.36651 0.198874 1.14374 1.50226 0 0.535351 3.36274 0 -0.645649 -0.40625 0.40625 0.150032 -0.113057 0.748993 0.356857 0.056856 1.01348 1.54139 0 0.549647 3.36115 0 -0.666144 -0.4375 0.40625 0.150037 -0.113037 0.74939 0.367663 0.108676 1.01273 1.56578 0 0.549647 3.36115 0 -0.666144 +0.40625 0.40625 0.15018 -0.11286 0.751465 0.35772 0.192593 1.06415 1.54529 0 0.549647 3.36115 0 -0.666144 +0.4375 0.40625 0.150181 -0.11285 0.751221 0.368931 0.188408 1.07164 1.56942 0 0.549647 3.36115 0 -0.666144 -0.40625 0.4375 0.154795 -0.116637 0.711578 0.36579 0.0960527 1.12185 1.49882 0 0.535351 3.36274 0 -0.645649 -0.4375 0.4375 0.1548 -0.116617 0.711853 0.376796 0.110687 1.13748 1.52278 0 0.535351 3.36274 0 -0.645649 +0.40625 0.4375 0.154945 -0.116443 0.713989 0.36666 0.198874 1.14374 1.50226 0 0.535351 3.36274 0 -0.645649 +0.4375 0.4375 0.154946 -0.116434 0.713867 0.377872 0.206485 1.14651 1.52672 0 0.535351 3.36274 0 -0.645649 -0.4375 0.375 0.145421 -0.109563 0.785889 0.359184 0.105248 0.883991 1.60877 0 0.563503 3.35961 0 -0.687289 -0.46875 0.375 0.145428 -0.109542 0.786041 0.370427 0.110595 0.906428 1.63468 0 0.563503 3.35961 0 -0.687289 +0.4375 0.375 0.145562 -0.109373 0.788391 0.360018 0.166267 1.02629 1.61248 0 0.563503 3.35961 0 -0.687289 +0.46875 0.375 0.145564 -0.109364 0.788239 0.371577 0.153167 1.06312 1.63828 0 0.563503 3.35961 0 -0.687289 -0.4375 0.40625 0.150037 -0.113037 0.74939 0.367663 0.108676 1.01273 1.56578 0 0.549647 3.36115 0 -0.666144 -0.46875 0.40625 0.150043 -0.113015 0.749329 0.379395 0.126433 1.01477 1.59177 0 0.549647 3.36115 0 -0.666144 +0.4375 0.40625 0.150181 -0.11285 0.751221 0.369025 0.188408 1.07164 1.56942 0 0.549647 3.36115 0 -0.666144 +0.46875 0.40625 0.150182 -0.112839 0.751038 0.380584 0.169344 1.09849 1.59548 0 0.549647 3.36115 0 -0.666144 -0.46875 0.375 0.145428 -0.109542 0.786041 0.370427 0.110595 0.906428 1.63468 0 0.563503 3.35961 0 -0.687289 -0.5 0.375 0.145433 -0.109518 0.786285 0.382047 0.127989 0.906249 1.66154 0 0.563503 3.35961 0 -0.687289 +0.46875 0.375 0.145564 -0.109364 0.788239 0.371357 0.153167 1.06312 1.63828 0 0.563503 3.35961 0 -0.687289 +0.5 0.375 0.145565 -0.109354 0.78833 0.38349 0.147041 1.03576 1.66564 0 0.563503 3.35961 0 -0.687289 -0.46875 0.40625 0.150043 -0.113015 0.749329 0.379395 0.126433 1.01477 1.59177 0 0.549647 3.36115 0 -0.666144 -0.5 0.40625 0.150047 -0.11299 0.749634 0.391422 0.145299 1.01855 1.61878 0 0.549647 3.36115 0 -0.666144 +0.46875 0.40625 0.150182 -0.112839 0.751038 0.380784 0.169344 1.09849 1.59548 0 0.549647 3.36115 0 -0.666144 +0.5 0.40625 0.150181 -0.112829 0.751038 0.392917 0.155052 1.08379 1.62281 0 0.549647 3.36115 0 -0.666144 -0.4375 0.40625 0.150037 -0.113037 0.74939 0.367663 0.108676 1.01273 1.56578 0 0.549647 3.36115 0 -0.666144 -0.46875 0.40625 0.150043 -0.113015 0.749329 0.379395 0.126433 1.01477 1.59177 0 0.549647 3.36115 0 -0.666144 +0.4375 0.40625 0.150181 -0.11285 0.751221 0.368704 0.188408 1.07164 1.56942 0 0.549647 3.36115 0 -0.666144 +0.46875 0.40625 0.150182 -0.112839 0.751038 0.380716 0.169344 1.09849 1.59548 0 0.549647 3.36115 0 -0.666144 -0.4375 0.4375 0.1548 -0.116617 0.711853 0.376796 0.110687 1.13748 1.52278 0 0.535351 3.36274 0 -0.645649 -0.46875 0.4375 0.154805 -0.116594 0.712006 0.388783 0.120627 1.12503 1.54873 0 0.535351 3.36274 0 -0.645649 +0.4375 0.4375 0.154946 -0.116434 0.713867 0.378106 0.206485 1.14651 1.52672 0 0.535351 3.36274 0 -0.645649 +0.46875 0.4375 0.154945 -0.116423 0.713379 0.390117 0.174786 1.1379 1.55233 0 0.535351 3.36274 0 -0.645649 -0.46875 0.40625 0.150043 -0.113015 0.749329 0.379395 0.126433 1.01477 1.59177 0 0.549647 3.36115 0 -0.666144 -0.5 0.40625 0.150047 -0.11299 0.749634 0.391422 0.145299 1.01855 1.61878 0 0.549647 3.36115 0 -0.666144 +0.46875 0.40625 0.150182 -0.112839 0.751038 0.380532 0.169344 1.09849 1.59548 0 0.549647 3.36115 0 -0.666144 +0.5 0.40625 0.150181 -0.112829 0.751038 0.392983 0.155052 1.08379 1.62281 0 0.549647 3.36115 0 -0.666144 -0.46875 0.4375 0.154805 -0.116594 0.712006 0.388783 0.120627 1.12503 1.54873 0 0.535351 3.36274 0 -0.645649 -0.5 0.4375 0.15481 -0.11657 0.712219 0.401486 0.141074 1.13664 1.57628 0 0.535351 3.36274 0 -0.645649 +0.46875 0.4375 0.154945 -0.116423 0.713379 0.390323 0.174786 1.1379 1.55233 0 0.535351 3.36274 0 -0.645649 +0.5 0.4375 0.154944 -0.116412 0.713654 0.402773 0.136434 1.15062 1.57976 0 0.535351 3.36274 0 -0.645649 -0.375 0.4375 0.154792 -0.116656 0.711243 0.355333 0.0918172 1.08911 1.47598 0 0.535351 3.36274 0 -0.645649 -0.40625 0.4375 0.154795 -0.116637 0.711578 0.36579 0.0960527 1.12185 1.49882 0 0.535351 3.36274 0 -0.645649 +0.375 0.4375 0.154943 -0.116452 0.714294 0.355688 0.195034 1.14462 1.47951 0 0.535351 3.36274 0 -0.645649 +0.40625 0.4375 0.154945 -0.116443 0.713989 0.366608 0.198874 1.14374 1.50226 0 0.535351 3.36274 0 -0.645649 -0.375 0.46875 0.159709 -0.120347 0.673889 0.364032 0.114288 1.17973 1.43324 0 0.520601 3.36438 0 -0.625784 -0.40625 0.46875 0.159711 -0.120329 0.674072 0.374834 0.121591 1.19434 1.45596 0 0.520601 3.36438 0 -0.625784 +0.375 0.46875 0.15986 -0.120147 0.676636 0.364604 0.183886 1.23729 1.43663 0 0.520601 3.36438 0 -0.625784 +0.40625 0.46875 0.159861 -0.120139 0.676453 0.375524 0.203147 1.2317 1.45949 0 0.520601 3.36438 0 -0.625784 -0.40625 0.4375 0.154795 -0.116637 0.711578 0.36579 0.0960527 1.12185 1.49882 0 0.535351 3.36274 0 -0.645649 -0.4375 0.4375 0.1548 -0.116617 0.711853 0.376796 0.110687 1.13748 1.52278 0 0.535351 3.36274 0 -0.645649 +0.40625 0.4375 0.154945 -0.116443 0.713989 0.366404 0.198874 1.14374 1.50226 0 0.535351 3.36274 0 -0.645649 +0.4375 0.4375 0.154946 -0.116434 0.713867 0.377997 0.206485 1.14651 1.52672 0 0.535351 3.36274 0 -0.645649 -0.40625 0.46875 0.159711 -0.120329 0.674072 0.374834 0.121591 1.19434 1.45596 0 0.520601 3.36438 0 -0.625784 -0.4375 0.46875 0.159715 -0.120308 0.674255 0.386401 0.127882 1.20278 1.48027 0 0.520601 3.36438 0 -0.625784 +0.40625 0.46875 0.159861 -0.120139 0.676453 0.37568 0.203147 1.2317 1.45949 0 0.520601 3.36438 0 -0.625784 +0.4375 0.46875 0.159861 -0.120129 0.676147 0.387273 0.193764 1.21458 1.48359 0 0.520601 3.36438 0 -0.625784 -0.375 0.46875 0.159709 -0.120347 0.673889 0.364032 0.114288 1.17973 1.43324 0 0.520601 3.36438 0 -0.625784 -0.40625 0.46875 0.159711 -0.120329 0.674072 0.374834 0.121591 1.19434 1.45596 0 0.520601 3.36438 0 -0.625784 +0.375 0.46875 0.15986 -0.120147 0.676636 0.364386 0.183886 1.23729 1.43663 0 0.520601 3.36438 0 -0.625784 +0.40625 0.46875 0.159861 -0.120139 0.676453 0.37556 0.203147 1.2317 1.45949 0 0.520601 3.36438 0 -0.625784 -0.375 0.5 0.164784 -0.124154 0.636047 0.373018 0.141971 1.22615 1.3902 0 0.505384 3.36607 0 -0.606531 -0.40625 0.5 0.164785 -0.124136 0.636322 0.384216 0.117902 1.25432 1.41312 0 0.505384 3.36607 0 -0.606531 +0.375 0.5 0.164931 -0.123959 0.63858 0.373728 0.233175 1.28961 1.39366 0 0.505384 3.36607 0 -0.606531 +0.40625 0.5 0.164932 -0.12395 0.638367 0.384903 0.189093 1.29387 1.41643 0 0.505384 3.36607 0 -0.606531 -0.40625 0.46875 0.159711 -0.120329 0.674072 0.374834 0.121591 1.19434 1.45596 0 0.520601 3.36438 0 -0.625784 -0.4375 0.46875 0.159715 -0.120308 0.674255 0.386401 0.127882 1.20278 1.48027 0 0.520601 3.36438 0 -0.625784 +0.40625 0.46875 0.159861 -0.120139 0.676453 0.375436 0.203147 1.2317 1.45949 0 0.520601 3.36438 0 -0.625784 +0.4375 0.46875 0.159861 -0.120129 0.676147 0.387306 0.193764 1.21458 1.48359 0 0.520601 3.36438 0 -0.625784 -0.40625 0.5 0.164785 -0.124136 0.636322 0.384216 0.117902 1.25432 1.41312 0 0.505384 3.36607 0 -0.606531 -0.4375 0.5 0.164787 -0.124115 0.636566 0.396049 0.127437 1.27571 1.43729 0 0.505384 3.36607 0 -0.606531 +0.40625 0.5 0.164932 -0.12395 0.638367 0.385068 0.189093 1.29387 1.41643 0 0.505384 3.36607 0 -0.606531 +0.4375 0.5 0.164931 -0.123939 0.638458 0.396938 0.18963 1.28026 1.44089 0 0.505384 3.36607 0 -0.606531 -0.4375 0.4375 0.1548 -0.116617 0.711853 0.376796 0.110687 1.13748 1.52278 0 0.535351 3.36274 0 -0.645649 -0.46875 0.4375 0.154805 -0.116594 0.712006 0.388783 0.120627 1.12503 1.54873 0 0.535351 3.36274 0 -0.645649 +0.4375 0.4375 0.154946 -0.116434 0.713867 0.377834 0.206485 1.14651 1.52672 0 0.535351 3.36274 0 -0.645649 +0.46875 0.4375 0.154945 -0.116423 0.713379 0.39018 0.174786 1.1379 1.55233 0 0.535351 3.36274 0 -0.645649 -0.4375 0.46875 0.159715 -0.120308 0.674255 0.386401 0.127882 1.20278 1.48027 0 0.520601 3.36438 0 -0.625784 -0.46875 0.46875 0.15972 -0.120286 0.674377 0.398739 0.133067 1.20085 1.50613 0 0.520601 3.36438 0 -0.625784 +0.4375 0.46875 0.159861 -0.120129 0.676147 0.387405 0.193764 1.21458 1.48359 0 0.520601 3.36438 0 -0.625784 +0.46875 0.46875 0.15986 -0.120118 0.676117 0.399751 0.181432 1.2016 1.50953 0 0.520601 3.36438 0 -0.625784 -0.46875 0.4375 0.154805 -0.116594 0.712006 0.388783 0.120627 1.12503 1.54873 0 0.535351 3.36274 0 -0.645649 -0.5 0.4375 0.15481 -0.11657 0.712219 0.401486 0.141074 1.13664 1.57628 0 0.535351 3.36274 0 -0.645649 +0.46875 0.4375 0.154945 -0.116423 0.713379 0.389964 0.174786 1.1379 1.55233 0 0.535351 3.36274 0 -0.645649 +0.5 0.4375 0.154944 -0.116412 0.713654 0.4029 0.136434 1.15062 1.57976 0 0.535351 3.36274 0 -0.645649 -0.46875 0.46875 0.15972 -0.120286 0.674377 0.398739 0.133067 1.20085 1.50613 0 0.520601 3.36438 0 -0.625784 -0.5 0.46875 0.159724 -0.120262 0.67453 0.41151 0.145238 1.20519 1.53292 0 0.520601 3.36438 0 -0.625784 +0.46875 0.46875 0.15986 -0.120118 0.676117 0.399899 0.181432 1.2016 1.50953 0 0.520601 3.36438 0 -0.625784 +0.5 0.46875 0.159858 -0.120107 0.675964 0.412835 0.179368 1.22733 1.53692 0 0.520601 3.36438 0 -0.625784 -0.4375 0.46875 0.159715 -0.120308 0.674255 0.386401 0.127882 1.20278 1.48027 0 0.520601 3.36438 0 -0.625784 -0.46875 0.46875 0.15972 -0.120286 0.674377 0.398739 0.133067 1.20085 1.50613 0 0.520601 3.36438 0 -0.625784 +0.4375 0.46875 0.159861 -0.120129 0.676147 0.387136 0.193764 1.21458 1.48359 0 0.520601 3.36438 0 -0.625784 +0.46875 0.46875 0.15986 -0.120118 0.676117 0.399763 0.181432 1.2016 1.50953 0 0.520601 3.36438 0 -0.625784 -0.4375 0.5 0.164787 -0.124115 0.636566 0.396049 0.127437 1.27571 1.43729 0 0.505384 3.36607 0 -0.606531 -0.46875 0.5 0.164791 -0.124093 0.636658 0.40879 0.130666 1.25125 1.46314 0 0.505384 3.36607 0 -0.606531 +0.4375 0.5 0.164931 -0.123939 0.638458 0.397084 0.18963 1.28026 1.44089 0 0.505384 3.36607 0 -0.606531 +0.46875 0.5 0.16493 -0.123929 0.638153 0.40971 0.197947 1.28224 1.46647 0 0.505384 3.36607 0 -0.606531 -0.46875 0.46875 0.15972 -0.120286 0.674377 0.398739 0.133067 1.20085 1.50613 0 0.520601 3.36438 0 -0.625784 -0.5 0.46875 0.159724 -0.120262 0.67453 0.41151 0.145238 1.20519 1.53292 0 0.520601 3.36438 0 -0.625784 +0.46875 0.46875 0.15986 -0.120118 0.676117 0.39959 0.181432 1.2016 1.50953 0 0.520601 3.36438 0 -0.625784 +0.5 0.46875 0.159858 -0.120107 0.675964 0.412979 0.179368 1.22733 1.53692 0 0.520601 3.36438 0 -0.625784 -0.46875 0.5 0.164791 -0.124093 0.636658 0.40879 0.130666 1.25125 1.46314 0 0.505384 3.36607 0 -0.606531 -0.5 0.5 0.164795 -0.124069 0.636932 0.422262 0.153492 1.28969 1.49065 0 0.505384 3.36607 0 -0.606531 +0.46875 0.5 0.16493 -0.123929 0.638153 0.410025 0.197947 1.28224 1.46647 0 0.505384 3.36607 0 -0.606531 +0.5 0.5 0.164928 -0.123917 0.638092 0.423415 0.181957 1.28808 1.49397 0 0.505384 3.36607 0 -0.606531 -0.5 0 0.1 -0.075 1.21494 0.290964 0.0916451 0.567364 2.18481 0 0.7 3.34444 0 -1 -0.53125 0 0.1 -0.075 1.21515 0.299709 0.0641188 0.60989 2.21418 0 0.7 3.34444 0 -1 +0.5 0 0.1 -0.075 1.22287 0.289055 0.115574 0.638235 2.18336 0 0.7 3.34444 0 -1 +0.53125 0 0.1 -0.075 1.22232 0.298102 0.151175 0.58145 2.2127 0 0.7 3.34444 0 -1 -0.5 0.03125 0.103172 -0.0774228 1.1795 0.297658 0.106514 0.580262 2.14117 0 0.690477 3.3455 0 -0.969233 -0.53125 0.03125 0.103171 -0.0774203 1.17935 0.306608 0.0683159 0.596651 2.16993 0 0.690477 3.3455 0 -0.969233 +0.5 0.03125 0.103189 -0.0774023 1.18689 0.296027 0.119223 0.605804 2.13997 0 0.690477 3.3455 0 -0.969233 +0.53125 0.03125 0.103191 -0.0774019 1.1868 0.305073 0.126948 0.576401 2.16897 0 0.690477 3.3455 0 -0.969233 -0.53125 0 0.1 -0.075 1.21515 0.299709 0.0641188 0.60989 2.21418 0 0.7 3.34444 0 -1 -0.5625 0 0.1 -0.075 1.21542 0.308758 0.0423732 0.572755 2.24462 0 0.7 3.34444 0 -1 +0.53125 0 0.1 -0.075 1.22232 0.298049 0.151175 0.58145 2.2127 0 0.7 3.34444 0 -1 +0.5625 0 0.1 -0.075 1.22205 0.307624 0.137453 0.575467 2.24369 0 0.7 3.34444 0 -1 -0.53125 0.03125 0.103171 -0.0774203 1.17935 0.306608 0.0683159 0.596651 2.16993 0 0.690477 3.3455 0 -0.969233 -0.5625 0.03125 0.10317 -0.0774181 1.17993 0.316118 0.0231828 0.577907 2.20124 0 0.690477 3.3455 0 -0.969233 +0.53125 0.03125 0.103191 -0.0774019 1.1868 0.305138 0.126948 0.576401 2.16897 0 0.690477 3.3455 0 -0.969233 +0.5625 0.03125 0.103193 -0.0774014 1.18658 0.314712 0.134794 0.577246 2.20009 0 0.690477 3.3455 0 -0.969233 -0.5 0.03125 0.103172 -0.0774228 1.1795 0.297658 0.106514 0.580262 2.14117 0 0.690477 3.3455 0 -0.969233 -0.53125 0.03125 0.103171 -0.0774203 1.17935 0.306608 0.0683159 0.596651 2.16993 0 0.690477 3.3455 0 -0.969233 +0.5 0.03125 0.103189 -0.0774023 1.18689 0.295882 0.119223 0.605804 2.13997 0 0.690477 3.3455 0 -0.969233 +0.53125 0.03125 0.103191 -0.0774019 1.1868 0.305105 0.126948 0.576401 2.16897 0 0.690477 3.3455 0 -0.969233 -0.5 0.0625 0.106442 -0.0799214 1.14398 0.304437 0.10653 0.603249 2.09729 0 0.680652 3.34659 0 -0.939413 -0.53125 0.0625 0.106442 -0.0799162 1.14395 0.313886 0.0662915 0.582274 2.12685 0 0.680652 3.34659 0 -0.939413 +0.5 0.0625 0.106477 -0.0798815 1.15149 0.302699 0.121609 0.553211 2.09578 0 0.680652 3.34659 0 -0.939413 +0.53125 0.0625 0.10648 -0.0798805 1.15143 0.311922 0.135048 0.584061 2.12527 0 0.680652 3.34659 0 -0.939413 -0.53125 0.03125 0.103171 -0.0774203 1.17935 0.306608 0.0683159 0.596651 2.16993 0 0.690477 3.3455 0 -0.969233 -0.5625 0.03125 0.10317 -0.0774181 1.17993 0.316118 0.0231828 0.577907 2.20124 0 0.690477 3.3455 0 -0.969233 +0.53125 0.03125 0.103191 -0.0774019 1.1868 0.304914 0.126948 0.576401 2.16897 0 0.690477 3.3455 0 -0.969233 +0.5625 0.03125 0.103193 -0.0774014 1.18658 0.314815 0.134794 0.577246 2.20009 0 0.690477 3.3455 0 -0.969233 -0.53125 0.0625 0.106442 -0.0799162 1.14395 0.313886 0.0662915 0.582274 2.12685 0 0.680652 3.34659 0 -0.939413 -0.5625 0.0625 0.106442 -0.0799119 1.1445 0.323371 0.0287024 0.592837 2.1571 0 0.680652 3.34659 0 -0.939413 +0.53125 0.0625 0.10648 -0.0798805 1.15143 0.312133 0.135048 0.584061 2.12527 0 0.680652 3.34659 0 -0.939413 +0.5625 0.0625 0.106483 -0.0798788 1.15112 0.322034 0.147148 0.585309 2.15651 0 0.680652 3.34659 0 -0.939413 -0.5625 0 0.1 -0.075 1.21542 0.308758 0.0423732 0.572755 2.24462 0 0.7 3.34444 0 -1 -0.59375 0 0.1 -0.075 1.21594 0.318565 0.0327446 0.565878 2.27783 0 0.7 3.34444 0 -1 +0.5625 0 0.1 -0.075 1.22205 0.307459 0.137453 0.575467 2.24369 0 0.7 3.34444 0 -1 +0.59375 0 0.1 -0.075 1.22186 0.317614 0.132168 0.580746 2.27669 0 0.7 3.34444 0 -1 -0.5625 0.03125 0.10317 -0.0774181 1.17993 0.316118 0.0231828 0.577907 2.20124 0 0.690477 3.3455 0 -0.969233 -0.59375 0.03125 0.103171 -0.0774156 1.18051 0.325901 0.0177058 0.575809 2.23343 0 0.690477 3.3455 0 -0.969233 +0.5625 0.03125 0.103193 -0.0774014 1.18658 0.314855 0.134794 0.577246 2.20009 0 0.690477 3.3455 0 -0.969233 +0.59375 0.03125 0.103194 -0.0774008 1.18637 0.325011 0.136224 0.583687 2.23311 0 0.690477 3.3455 0 -0.969233 -0.59375 0 0.1 -0.075 1.21594 0.318565 0.0327446 0.565878 2.27783 0 0.7 3.34444 0 -1 -0.625 0 0.1 -0.075 1.21637 0.328787 0.0433756 0.541545 2.31233 0 0.7 3.34444 0 -1 +0.59375 0 0.1 -0.075 1.22186 0.317443 0.132168 0.580746 2.27669 0 0.7 3.34444 0 -1 +0.625 0 0.1 -0.075 1.22165 0.328243 0.133 0.579251 2.31175 0 0.7 3.34444 0 -1 -0.59375 0.03125 0.103171 -0.0774156 1.18051 0.325901 0.0177058 0.575809 2.23343 0 0.690477 3.3455 0 -0.969233 -0.625 0.03125 0.103172 -0.0774126 1.18112 0.336519 0.0394379 0.558407 2.26834 0 0.690477 3.3455 0 -0.969233 +0.59375 0.03125 0.103194 -0.0774008 1.18637 0.32518 0.136224 0.583687 2.23311 0 0.690477 3.3455 0 -0.969233 +0.625 0.03125 0.103194 -0.0774002 1.18616 0.335979 0.137026 0.579202 2.26815 0 0.690477 3.3455 0 -0.969233 -0.5625 0.03125 0.10317 -0.0774181 1.17993 0.316118 0.0231828 0.577907 2.20124 0 0.690477 3.3455 0 -0.969233 -0.59375 0.03125 0.103171 -0.0774156 1.18051 0.325901 0.0177058 0.575809 2.23343 0 0.690477 3.3455 0 -0.969233 +0.5625 0.03125 0.103193 -0.0774014 1.18658 0.314639 0.134794 0.577246 2.20009 0 0.690477 3.3455 0 -0.969233 +0.59375 0.03125 0.103194 -0.0774008 1.18637 0.325135 0.136224 0.583687 2.23311 0 0.690477 3.3455 0 -0.969233 -0.5625 0.0625 0.106442 -0.0799119 1.1445 0.323371 0.0287024 0.592837 2.1571 0 0.680652 3.34659 0 -0.939413 -0.59375 0.0625 0.106443 -0.0799065 1.14502 0.33361 0.0162619 0.587387 2.18968 0 0.680652 3.34659 0 -0.939413 +0.5625 0.0625 0.106483 -0.0798788 1.15112 0.322209 0.147148 0.585309 2.15651 0 0.680652 3.34659 0 -0.939413 +0.59375 0.0625 0.106484 -0.0798772 1.15085 0.332704 0.139302 0.590213 2.18961 0 0.680652 3.34659 0 -0.939413 -0.59375 0.03125 0.103171 -0.0774156 1.18051 0.325901 0.0177058 0.575809 2.23343 0 0.690477 3.3455 0 -0.969233 -0.625 0.03125 0.103172 -0.0774126 1.18112 0.336519 0.0394379 0.558407 2.26834 0 0.690477 3.3455 0 -0.969233 +0.59375 0.03125 0.103194 -0.0774008 1.18637 0.324957 0.136224 0.583687 2.23311 0 0.690477 3.3455 0 -0.969233 +0.625 0.03125 0.103194 -0.0774002 1.18616 0.336094 0.137026 0.579202 2.26815 0 0.690477 3.3455 0 -0.969233 -0.59375 0.0625 0.106443 -0.0799065 1.14502 0.33361 0.0162619 0.587387 2.18968 0 0.680652 3.34659 0 -0.939413 -0.625 0.0625 0.106445 -0.0799009 1.14572 0.344387 0.0272201 0.592649 2.22413 0 0.680652 3.34659 0 -0.939413 +0.59375 0.0625 0.106484 -0.0798772 1.15085 0.332877 0.139302 0.590213 2.18961 0 0.680652 3.34659 0 -0.939413 +0.625 0.0625 0.106485 -0.0798756 1.15073 0.344014 0.137741 0.59339 2.2246 0 0.680652 3.34659 0 -0.939413 -0.5 0.0625 0.106442 -0.0799214 1.14398 0.304437 0.10653 0.603249 2.09729 0 0.680652 3.34659 0 -0.939413 -0.53125 0.0625 0.106442 -0.0799162 1.14395 0.313886 0.0662915 0.582274 2.12685 0 0.680652 3.34659 0 -0.939413 +0.5 0.0625 0.106477 -0.0798815 1.15149 0.302409 0.121609 0.553211 2.09578 0 0.680652 3.34659 0 -0.939413 +0.53125 0.0625 0.10648 -0.0798805 1.15143 0.312169 0.135048 0.584061 2.12527 0 0.680652 3.34659 0 -0.939413 -0.5 0.09375 0.109815 -0.0824976 1.10828 0.311481 0.0969574 0.613431 2.05363 0 0.670514 3.34772 0 -0.91051 -0.53125 0.09375 0.109816 -0.0824899 1.10852 0.320947 0.0622665 0.595619 2.08261 0 0.670514 3.34772 0 -0.91051 +0.5 0.09375 0.109866 -0.0824376 1.1167 0.309254 0.121094 0.614029 2.05216 0 0.670514 3.34772 0 -0.91051 +0.53125 0.09375 0.10987 -0.082436 1.11594 0.319014 0.173206 0.615506 2.08181 0 0.670514 3.34772 0 -0.91051 -0.53125 0.0625 0.106442 -0.0799162 1.14395 0.313886 0.0662915 0.582274 2.12685 0 0.680652 3.34659 0 -0.939413 -0.5625 0.0625 0.106442 -0.0799119 1.1445 0.323371 0.0287024 0.592837 2.1571 0 0.680652 3.34659 0 -0.939413 +0.53125 0.0625 0.10648 -0.0798805 1.15143 0.311873 0.135048 0.584061 2.12527 0 0.680652 3.34659 0 -0.939413 +0.5625 0.0625 0.106483 -0.0798788 1.15112 0.322138 0.147148 0.585309 2.15651 0 0.680652 3.34659 0 -0.939413 -0.53125 0.09375 0.109816 -0.0824899 1.10852 0.320947 0.0622665 0.595619 2.08261 0 0.670514 3.34772 0 -0.91051 -0.5625 0.09375 0.109817 -0.0824827 1.10889 0.331003 0.0324058 0.610881 2.11349 0 0.670514 3.34772 0 -0.91051 +0.53125 0.09375 0.10987 -0.082436 1.11594 0.319272 0.173206 0.615506 2.08181 0 0.670514 3.34772 0 -0.91051 +0.5625 0.09375 0.109873 -0.0824337 1.11569 0.329537 0.156773 0.612897 2.11298 0 0.670514 3.34772 0 -0.91051 -0.5 0.09375 0.109815 -0.0824976 1.10828 0.311481 0.0969574 0.613431 2.05363 0 0.670514 3.34772 0 -0.91051 -0.53125 0.09375 0.109816 -0.0824899 1.10852 0.320947 0.0622665 0.595619 2.08261 0 0.670514 3.34772 0 -0.91051 +0.5 0.09375 0.109866 -0.0824376 1.1167 0.309036 0.121094 0.614029 2.05216 0 0.670514 3.34772 0 -0.91051 +0.53125 0.09375 0.10987 -0.082436 1.11594 0.319119 0.173206 0.615506 2.08181 0 0.670514 3.34772 0 -0.91051 -0.5 0.125 0.113295 -0.0851536 1.07275 0.318464 0.0997774 0.618541 2.00957 0 0.660055 3.34888 0 -0.882497 -0.53125 0.125 0.113297 -0.0851434 1.073 0.328261 0.0679485 0.621045 2.03863 0 0.660055 3.34888 0 -0.882497 +0.5 0.125 0.113361 -0.0850733 1.08035 0.316638 0.127311 0.696619 2.00938 0 0.660055 3.34888 0 -0.882497 +0.53125 0.125 0.113365 -0.0850709 1.08026 0.32672 0.141884 0.668316 2.03876 0 0.660055 3.34888 0 -0.882497 -0.53125 0.09375 0.109816 -0.0824899 1.10852 0.320947 0.0622665 0.595619 2.08261 0 0.670514 3.34772 0 -0.91051 -0.5625 0.09375 0.109817 -0.0824827 1.10889 0.331003 0.0324058 0.610881 2.11349 0 0.670514 3.34772 0 -0.91051 +0.53125 0.09375 0.10987 -0.082436 1.11594 0.319086 0.173206 0.615506 2.08181 0 0.670514 3.34772 0 -0.91051 +0.5625 0.09375 0.109873 -0.0824337 1.11569 0.329633 0.156773 0.612897 2.11298 0 0.670514 3.34772 0 -0.91051 -0.53125 0.125 0.113297 -0.0851434 1.073 0.328261 0.0679485 0.621045 2.03863 0 0.660055 3.34888 0 -0.882497 -0.5625 0.125 0.113299 -0.0851334 1.07333 0.338621 0.0430053 0.633394 2.06944 0 0.660055 3.34888 0 -0.882497 +0.53125 0.125 0.113365 -0.0850709 1.08026 0.326736 0.141884 0.668316 2.03876 0 0.660055 3.34888 0 -0.882497 +0.5625 0.125 0.113368 -0.0850677 1.07999 0.337283 0.151842 0.66093 2.06976 0 0.660055 3.34888 0 -0.882497 -0.5625 0.0625 0.106442 -0.0799119 1.1445 0.323371 0.0287024 0.592837 2.1571 0 0.680652 3.34659 0 -0.939413 -0.59375 0.0625 0.106443 -0.0799065 1.14502 0.33361 0.0162619 0.587387 2.18968 0 0.680652 3.34659 0 -0.939413 +0.5625 0.0625 0.106483 -0.0798788 1.15112 0.321973 0.147148 0.585309 2.15651 0 0.680652 3.34659 0 -0.939413 +0.59375 0.0625 0.106484 -0.0798772 1.15085 0.332838 0.139302 0.590213 2.18961 0 0.680652 3.34659 0 -0.939413 -0.5625 0.09375 0.109817 -0.0824827 1.10889 0.331003 0.0324058 0.610881 2.11349 0 0.670514 3.34772 0 -0.91051 -0.59375 0.09375 0.109819 -0.0824749 1.10956 0.341417 0.0244519 0.608556 2.14577 0 0.670514 3.34772 0 -0.91051 +0.5625 0.09375 0.109873 -0.0824337 1.11569 0.329679 0.156773 0.612897 2.11298 0 0.670514 3.34772 0 -0.91051 +0.59375 0.09375 0.109875 -0.0824311 1.11539 0.340544 0.152402 0.607131 2.14594 0 0.670514 3.34772 0 -0.91051 -0.59375 0.0625 0.106443 -0.0799065 1.14502 0.33361 0.0162619 0.587387 2.18968 0 0.680652 3.34659 0 -0.939413 -0.625 0.0625 0.106445 -0.0799009 1.14572 0.344387 0.0272201 0.592649 2.22413 0 0.680652 3.34659 0 -0.939413 +0.59375 0.0625 0.106484 -0.0798772 1.15085 0.332663 0.139302 0.590213 2.18961 0 0.680652 3.34659 0 -0.939413 +0.625 0.0625 0.106485 -0.0798756 1.15073 0.344149 0.137741 0.59339 2.2246 0 0.680652 3.34659 0 -0.939413 -0.59375 0.09375 0.109819 -0.0824749 1.10956 0.341417 0.0244519 0.608556 2.14577 0 0.670514 3.34772 0 -0.91051 -0.625 0.09375 0.109822 -0.0824667 1.11005 0.35276 0.0455897 0.619826 2.18068 0 0.670514 3.34772 0 -0.91051 +0.59375 0.09375 0.109875 -0.0824311 1.11539 0.340741 0.152402 0.607131 2.14594 0 0.670514 3.34772 0 -0.91051 +0.625 0.09375 0.109876 -0.0824284 1.11517 0.352227 0.15215 0.630236 2.18121 0 0.670514 3.34772 0 -0.91051 -0.5625 0.09375 0.109817 -0.0824827 1.10889 0.331003 0.0324058 0.610881 2.11349 0 0.670514 3.34772 0 -0.91051 -0.59375 0.09375 0.109819 -0.0824749 1.10956 0.341417 0.0244519 0.608556 2.14577 0 0.670514 3.34772 0 -0.91051 +0.5625 0.09375 0.109873 -0.0824337 1.11569 0.329462 0.156773 0.612897 2.11298 0 0.670514 3.34772 0 -0.91051 +0.59375 0.09375 0.109875 -0.0824311 1.11539 0.340625 0.152402 0.607131 2.14594 0 0.670514 3.34772 0 -0.91051 -0.5625 0.125 0.113299 -0.0851334 1.07333 0.338621 0.0430053 0.633394 2.06944 0 0.660055 3.34888 0 -0.882497 -0.59375 0.125 0.113302 -0.085123 1.07391 0.349536 0.0341718 0.644979 2.10213 0 0.660055 3.34888 0 -0.882497 +0.5625 0.125 0.113368 -0.0850677 1.07999 0.337488 0.151842 0.66093 2.06976 0 0.660055 3.34888 0 -0.882497 +0.59375 0.125 0.11337 -0.0850642 1.0798 0.348651 0.16713 0.651063 2.10229 0 0.660055 3.34888 0 -0.882497 -0.59375 0.09375 0.109819 -0.0824749 1.10956 0.341417 0.0244519 0.608556 2.14577 0 0.670514 3.34772 0 -0.91051 -0.625 0.09375 0.109822 -0.0824667 1.11005 0.35276 0.0455897 0.619826 2.18068 0 0.670514 3.34772 0 -0.91051 +0.59375 0.09375 0.109875 -0.0824311 1.11539 0.340451 0.152402 0.607131 2.14594 0 0.670514 3.34772 0 -0.91051 +0.625 0.09375 0.109876 -0.0824284 1.11517 0.352406 0.15215 0.630236 2.18121 0 0.670514 3.34772 0 -0.91051 -0.59375 0.125 0.113302 -0.085123 1.07391 0.349536 0.0341718 0.644979 2.10213 0 0.660055 3.34888 0 -0.882497 -0.625 0.125 0.113306 -0.0851125 1.0744 0.361119 0.0556503 0.638521 2.13669 0 0.660055 3.34888 0 -0.882497 +0.59375 0.125 0.11337 -0.0850642 1.0798 0.348811 0.16713 0.651063 2.10229 0 0.660055 3.34888 0 -0.882497 +0.625 0.125 0.113371 -0.0850608 1.07932 0.360765 0.179298 0.66901 2.13791 0 0.660055 3.34888 0 -0.882497 -0.625 0 0.1 -0.075 1.21637 0.328787 0.0433756 0.541545 2.31233 0 0.7 3.34444 0 -1 -0.65625 0 0.1 -0.075 1.21667 0.339844 0.0514688 0.549494 2.34949 0 0.7 3.34444 0 -1 +0.625 0 0.1 -0.075 1.22165 0.32806 0.133 0.579251 2.31175 0 0.7 3.34444 0 -1 +0.65625 0 0.1 -0.075 1.22144 0.339539 0.133883 0.580236 2.34891 0 0.7 3.34444 0 -1 -0.625 0.03125 0.103172 -0.0774126 1.18112 0.336519 0.0394379 0.558407 2.26834 0 0.690477 3.3455 0 -0.969233 -0.65625 0.03125 0.103174 -0.0774097 1.18134 0.347915 0.0617427 0.55446 2.30537 0 0.690477 3.3455 0 -0.969233 +0.625 0.03125 0.103194 -0.0774002 1.18616 0.336147 0.137026 0.579202 2.26815 0 0.690477 3.3455 0 -0.969233 +0.65625 0.03125 0.103194 -0.0773995 1.18594 0.347625 0.140418 0.582158 2.30554 0 0.690477 3.3455 0 -0.969233 -0.65625 0 0.1 -0.075 1.21667 0.339844 0.0514688 0.549494 2.34949 0 0.7 3.34444 0 -1 -0.6875 0 0.1 -0.075 1.21698 0.351565 0.0520681 0.55714 2.38886 0 0.7 3.34444 0 -1 +0.65625 0 0.1 -0.075 1.22144 0.339308 0.133883 0.580236 2.34891 0 0.7 3.34444 0 -1 +0.6875 0 0.1 -0.075 1.22122 0.351536 0.13828 0.587918 2.38859 0 0.7 3.34444 0 -1 -0.65625 0.03125 0.103174 -0.0774097 1.18134 0.347915 0.0617427 0.55446 2.30537 0 0.690477 3.3455 0 -0.969233 -0.6875 0.03125 0.103176 -0.0774071 1.18161 0.36012 0.0697335 0.568137 2.34508 0 0.690477 3.3455 0 -0.969233 +0.65625 0.03125 0.103194 -0.0773995 1.18594 0.347842 0.140418 0.582158 2.30554 0 0.690477 3.3455 0 -0.969233 +0.6875 0.03125 0.103194 -0.0773987 1.18567 0.36007 0.140971 0.586411 2.34529 0 0.690477 3.3455 0 -0.969233 -0.625 0.03125 0.103172 -0.0774126 1.18112 0.336519 0.0394379 0.558407 2.26834 0 0.690477 3.3455 0 -0.969233 -0.65625 0.03125 0.103174 -0.0774097 1.18134 0.347915 0.0617427 0.55446 2.30537 0 0.690477 3.3455 0 -0.969233 +0.625 0.03125 0.103194 -0.0774002 1.18616 0.335903 0.137026 0.579202 2.26815 0 0.690477 3.3455 0 -0.969233 +0.65625 0.03125 0.103194 -0.0773995 1.18594 0.347768 0.140418 0.582158 2.30554 0 0.690477 3.3455 0 -0.969233 -0.625 0.0625 0.106445 -0.0799009 1.14572 0.344387 0.0272201 0.592649 2.22413 0 0.680652 3.34659 0 -0.939413 -0.65625 0.0625 0.106448 -0.0798952 1.14612 0.356146 0.0669857 0.588781 2.26135 0 0.680652 3.34659 0 -0.939413 +0.625 0.0625 0.106485 -0.0798756 1.15073 0.344177 0.137741 0.59339 2.2246 0 0.680652 3.34659 0 -0.939413 +0.65625 0.0625 0.106485 -0.0798741 1.15048 0.356042 0.145795 0.600607 2.26201 0 0.680652 3.34659 0 -0.939413 -0.65625 0.03125 0.103174 -0.0774097 1.18134 0.347915 0.0617427 0.55446 2.30537 0 0.690477 3.3455 0 -0.969233 -0.6875 0.03125 0.103176 -0.0774071 1.18161 0.36012 0.0697335 0.568137 2.34508 0 0.690477 3.3455 0 -0.969233 +0.65625 0.03125 0.103194 -0.0773995 1.18594 0.347574 0.140418 0.582158 2.30554 0 0.690477 3.3455 0 -0.969233 +0.6875 0.03125 0.103194 -0.0773987 1.18567 0.360212 0.140971 0.586411 2.34529 0 0.690477 3.3455 0 -0.969233 -0.65625 0.0625 0.106448 -0.0798952 1.14612 0.356146 0.0669857 0.588781 2.26135 0 0.680652 3.34659 0 -0.939413 -0.6875 0.0625 0.106451 -0.0798901 1.14618 0.368862 0.0929463 0.5879 2.30123 0 0.680652 3.34659 0 -0.939413 +0.65625 0.0625 0.106485 -0.0798741 1.15048 0.356232 0.145795 0.600607 2.26201 0 0.680652 3.34659 0 -0.939413 +0.6875 0.0625 0.106484 -0.0798724 1.15021 0.368869 0.147696 0.599647 2.30186 0 0.680652 3.34659 0 -0.939413 -0.6875 0 0.1 -0.075 1.21698 0.351565 0.0520681 0.55714 2.38886 0 0.7 3.34444 0 -1 -0.71875 0 0.1 -0.075 1.21729 0.364022 0.0475696 0.586465 2.43069 0 0.7 3.34444 0 -1 +0.6875 0 0.1 -0.075 1.22122 0.351313 0.13828 0.587918 2.38859 0 0.7 3.34444 0 -1 +0.71875 0 0.1 -0.075 1.22092 0.364307 0.135591 0.577387 2.4307 0 0.7 3.34444 0 -1 -0.6875 0.03125 0.103176 -0.0774071 1.18161 0.36012 0.0697335 0.568137 2.34508 0 0.690477 3.3455 0 -0.969233 -0.71875 0.03125 0.103176 -0.0774043 1.1817 0.373096 0.0575142 0.591253 2.38709 0 0.690477 3.3455 0 -0.969233 +0.6875 0.03125 0.103194 -0.0773987 1.18567 0.360267 0.140971 0.586411 2.34529 0 0.690477 3.3455 0 -0.969233 +0.71875 0.03125 0.103193 -0.0773978 1.18546 0.373261 0.140893 0.583009 2.38758 0 0.690477 3.3455 0 -0.969233 -0.71875 0 0.1 -0.075 1.21729 0.364022 0.0475696 0.586465 2.43069 0 0.7 3.34444 0 -1 -0.75 0 0.1 -0.075 1.21765 0.377282 0.0386434 0.579315 2.47526 0 0.7 3.34444 0 -1 +0.71875 0 0.1 -0.075 1.22092 0.364077 0.135591 0.577387 2.4307 0 0.7 3.34444 0 -1 +0.75 0 0.1 -0.075 1.22076 0.377878 0.133868 0.590756 2.47561 0 0.7 3.34444 0 -1 -0.71875 0.03125 0.103176 -0.0774043 1.1817 0.373096 0.0575142 0.591253 2.38709 0 0.690477 3.3455 0 -0.969233 -0.75 0.03125 0.103176 -0.0774014 1.18216 0.386796 0.0329847 0.597604 2.43181 0 0.690477 3.3455 0 -0.969233 +0.71875 0.03125 0.103193 -0.0773978 1.18546 0.373481 0.140893 0.583009 2.38758 0 0.690477 3.3455 0 -0.969233 +0.75 0.03125 0.103192 -0.0773968 1.18518 0.387283 0.139925 0.585529 2.43246 0 0.690477 3.3455 0 -0.969233 -0.6875 0.03125 0.103176 -0.0774071 1.18161 0.36012 0.0697335 0.568137 2.34508 0 0.690477 3.3455 0 -0.969233 -0.71875 0.03125 0.103176 -0.0774043 1.1817 0.373096 0.0575142 0.591253 2.38709 0 0.690477 3.3455 0 -0.969233 +0.6875 0.03125 0.103194 -0.0773987 1.18567 0.360002 0.140971 0.586411 2.34529 0 0.690477 3.3455 0 -0.969233 +0.71875 0.03125 0.103193 -0.0773978 1.18546 0.37341 0.140893 0.583009 2.38758 0 0.690477 3.3455 0 -0.969233 -0.6875 0.0625 0.106451 -0.0798901 1.14618 0.368862 0.0929463 0.5879 2.30123 0 0.680652 3.34659 0 -0.939413 -0.71875 0.0625 0.106452 -0.0798845 1.14618 0.38229 0.0840957 0.602377 2.34327 0 0.680652 3.34659 0 -0.939413 +0.6875 0.0625 0.106484 -0.0798724 1.15021 0.369108 0.147696 0.599647 2.30186 0 0.680652 3.34659 0 -0.939413 +0.71875 0.0625 0.106483 -0.0798706 1.14993 0.382516 0.141496 0.598887 2.34404 0 0.680652 3.34659 0 -0.939413 -0.71875 0.03125 0.103176 -0.0774043 1.1817 0.373096 0.0575142 0.591253 2.38709 0 0.690477 3.3455 0 -0.969233 -0.75 0.03125 0.103176 -0.0774014 1.18216 0.386796 0.0329847 0.597604 2.43181 0 0.690477 3.3455 0 -0.969233 +0.71875 0.03125 0.103193 -0.0773978 1.18546 0.373197 0.140893 0.583009 2.38758 0 0.690477 3.3455 0 -0.969233 +0.75 0.03125 0.103192 -0.0773968 1.18518 0.387442 0.139925 0.585529 2.43246 0 0.690477 3.3455 0 -0.969233 -0.71875 0.0625 0.106452 -0.0798845 1.14618 0.38229 0.0840957 0.602377 2.34327 0 0.680652 3.34659 0 -0.939413 -0.75 0.0625 0.106452 -0.0798788 1.14645 0.396586 0.0722468 0.619848 2.38831 0 0.680652 3.34659 0 -0.939413 +0.71875 0.0625 0.106483 -0.0798706 1.14993 0.382727 0.141496 0.598887 2.34404 0 0.680652 3.34659 0 -0.939413 +0.75 0.0625 0.106481 -0.0798686 1.14978 0.396972 0.140804 0.601176 2.38916 0 0.680652 3.34659 0 -0.939413 -0.625 0.0625 0.106445 -0.0799009 1.14572 0.344387 0.0272201 0.592649 2.22413 0 0.680652 3.34659 0 -0.939413 -0.65625 0.0625 0.106448 -0.0798952 1.14612 0.356146 0.0669857 0.588781 2.26135 0 0.680652 3.34659 0 -0.939413 +0.625 0.0625 0.106485 -0.0798756 1.15073 0.343907 0.137741 0.59339 2.2246 0 0.680652 3.34659 0 -0.939413 +0.65625 0.0625 0.106485 -0.0798741 1.15048 0.356186 0.145795 0.600607 2.26201 0 0.680652 3.34659 0 -0.939413 -0.625 0.09375 0.109822 -0.0824667 1.11005 0.35276 0.0455897 0.619826 2.18068 0 0.670514 3.34772 0 -0.91051 -0.65625 0.09375 0.109826 -0.0824584 1.11035 0.364769 0.0633379 0.629992 2.21744 0 0.670514 3.34772 0 -0.91051 +0.625 0.09375 0.109876 -0.0824284 1.11517 0.352442 0.15215 0.630236 2.18121 0 0.670514 3.34772 0 -0.91051 +0.65625 0.09375 0.109876 -0.0824258 1.11487 0.364721 0.154862 0.641695 2.21873 0 0.670514 3.34772 0 -0.91051 -0.65625 0.0625 0.106448 -0.0798952 1.14612 0.356146 0.0669857 0.588781 2.26135 0 0.680652 3.34659 0 -0.939413 -0.6875 0.0625 0.106451 -0.0798901 1.14618 0.368862 0.0929463 0.5879 2.30123 0 0.680652 3.34659 0 -0.939413 +0.65625 0.0625 0.106485 -0.0798741 1.15048 0.355967 0.145795 0.600607 2.26201 0 0.680652 3.34659 0 -0.939413 +0.6875 0.0625 0.106484 -0.0798724 1.15021 0.369017 0.147696 0.599647 2.30186 0 0.680652 3.34659 0 -0.939413 -0.65625 0.09375 0.109826 -0.0824584 1.11035 0.364769 0.0633379 0.629992 2.21744 0 0.670514 3.34772 0 -0.91051 -0.6875 0.09375 0.109829 -0.0824505 1.11066 0.377936 0.0901619 0.61953 2.25771 0 0.670514 3.34772 0 -0.91051 +0.65625 0.09375 0.109876 -0.0824258 1.11487 0.364942 0.154862 0.641695 2.21873 0 0.670514 3.34772 0 -0.91051 +0.6875 0.09375 0.109874 -0.0824232 1.11459 0.377993 0.152153 0.631672 2.25852 0 0.670514 3.34772 0 -0.91051 -0.625 0.09375 0.109822 -0.0824667 1.11005 0.35276 0.0455897 0.619826 2.18068 0 0.670514 3.34772 0 -0.91051 -0.65625 0.09375 0.109826 -0.0824584 1.11035 0.364769 0.0633379 0.629992 2.21744 0 0.670514 3.34772 0 -0.91051 +0.625 0.09375 0.109876 -0.0824284 1.11517 0.352175 0.15215 0.630236 2.18121 0 0.670514 3.34772 0 -0.91051 +0.65625 0.09375 0.109876 -0.0824258 1.11487 0.36489 0.154862 0.641695 2.21873 0 0.670514 3.34772 0 -0.91051 -0.625 0.125 0.113306 -0.0851125 1.0744 0.361119 0.0556503 0.638521 2.13669 0 0.660055 3.34888 0 -0.882497 -0.65625 0.125 0.11331 -0.085102 1.07462 0.373793 0.0744236 0.644859 2.17419 0 0.660055 3.34888 0 -0.882497 +0.625 0.125 0.113371 -0.0850608 1.07932 0.361049 0.179298 0.66901 2.13791 0 0.660055 3.34888 0 -0.882497 +0.65625 0.125 0.113371 -0.0850573 1.07889 0.373764 0.157612 0.671861 2.17558 0 0.660055 3.34888 0 -0.882497 -0.65625 0.09375 0.109826 -0.0824584 1.11035 0.364769 0.0633379 0.629992 2.21744 0 0.670514 3.34772 0 -0.91051 -0.6875 0.09375 0.109829 -0.0824505 1.11066 0.377936 0.0901619 0.61953 2.25771 0 0.670514 3.34772 0 -0.91051 +0.65625 0.09375 0.109876 -0.0824258 1.11487 0.36467 0.154862 0.641695 2.21873 0 0.670514 3.34772 0 -0.91051 +0.6875 0.09375 0.109874 -0.0824232 1.11459 0.378133 0.152153 0.631672 2.25852 0 0.670514 3.34772 0 -0.91051 -0.65625 0.125 0.11331 -0.085102 1.07462 0.373793 0.0744236 0.644859 2.17419 0 0.660055 3.34888 0 -0.882497 -0.6875 0.125 0.113314 -0.0850911 1.07486 0.387204 0.086293 0.642198 2.21388 0 0.660055 3.34888 0 -0.882497 +0.65625 0.125 0.113371 -0.0850573 1.07889 0.373998 0.157612 0.671861 2.17558 0 0.660055 3.34888 0 -0.882497 +0.6875 0.125 0.113369 -0.0850539 1.07877 0.387461 0.134503 0.661824 2.21537 0 0.660055 3.34888 0 -0.882497 -0.6875 0.0625 0.106451 -0.0798901 1.14618 0.368862 0.0929463 0.5879 2.30123 0 0.680652 3.34659 0 -0.939413 -0.71875 0.0625 0.106452 -0.0798845 1.14618 0.38229 0.0840957 0.602377 2.34327 0 0.680652 3.34659 0 -0.939413 +0.6875 0.0625 0.106484 -0.0798724 1.15021 0.368816 0.147696 0.599647 2.30186 0 0.680652 3.34659 0 -0.939413 +0.71875 0.0625 0.106483 -0.0798706 1.14993 0.382687 0.141496 0.598887 2.34404 0 0.680652 3.34659 0 -0.939413 -0.6875 0.09375 0.109829 -0.0824505 1.11066 0.377936 0.0901619 0.61953 2.25771 0 0.670514 3.34772 0 -0.91051 -0.71875 0.09375 0.109831 -0.0824424 1.11053 0.391846 0.0968279 0.616117 2.2998 0 0.670514 3.34772 0 -0.91051 +0.6875 0.09375 0.109874 -0.0824232 1.11459 0.378179 0.152153 0.631672 2.25852 0 0.670514 3.34772 0 -0.91051 +0.71875 0.09375 0.109873 -0.0824206 1.11435 0.39205 0.152879 0.621119 2.30093 0 0.670514 3.34772 0 -0.91051 -0.71875 0.0625 0.106452 -0.0798845 1.14618 0.38229 0.0840957 0.602377 2.34327 0 0.680652 3.34659 0 -0.939413 -0.75 0.0625 0.106452 -0.0798788 1.14645 0.396586 0.0722468 0.619848 2.38831 0 0.680652 3.34659 0 -0.939413 +0.71875 0.0625 0.106483 -0.0798706 1.14993 0.382413 0.141496 0.598887 2.34404 0 0.680652 3.34659 0 -0.939413 +0.75 0.0625 0.106481 -0.0798686 1.14978 0.397171 0.140804 0.601176 2.38916 0 0.680652 3.34659 0 -0.939413 -0.71875 0.09375 0.109831 -0.0824424 1.11053 0.391846 0.0968279 0.616117 2.2998 0 0.670514 3.34772 0 -0.91051 -0.75 0.09375 0.109832 -0.082434 1.11075 0.406649 0.0807368 0.637471 2.34494 0 0.670514 3.34772 0 -0.91051 +0.71875 0.09375 0.109873 -0.0824206 1.11435 0.392297 0.152879 0.621119 2.30093 0 0.670514 3.34772 0 -0.91051 +0.75 0.09375 0.109871 -0.0824175 1.11401 0.407055 0.140439 0.6124 2.34588 0 0.670514 3.34772 0 -0.91051 -0.6875 0.09375 0.109829 -0.0824505 1.11066 0.377936 0.0901619 0.61953 2.25771 0 0.670514 3.34772 0 -0.91051 -0.71875 0.09375 0.109831 -0.0824424 1.11053 0.391846 0.0968279 0.616117 2.2998 0 0.670514 3.34772 0 -0.91051 +0.6875 0.09375 0.109874 -0.0824232 1.11459 0.377907 0.152153 0.631672 2.25852 0 0.670514 3.34772 0 -0.91051 +0.71875 0.09375 0.109873 -0.0824206 1.11435 0.392164 0.152879 0.621119 2.30093 0 0.670514 3.34772 0 -0.91051 -0.6875 0.125 0.113314 -0.0850911 1.07486 0.387204 0.086293 0.642198 2.21388 0 0.660055 3.34888 0 -0.882497 -0.71875 0.125 0.113316 -0.0850802 1.07495 0.401557 0.0990822 0.635615 2.25619 0 0.660055 3.34888 0 -0.882497 +0.6875 0.125 0.113369 -0.0850539 1.07877 0.387603 0.134503 0.661824 2.21537 0 0.660055 3.34888 0 -0.882497 +0.71875 0.125 0.113367 -0.0850498 1.07867 0.40186 0.126627 0.658081 2.25753 0 0.660055 3.34888 0 -0.882497 -0.71875 0.09375 0.109831 -0.0824424 1.11053 0.391846 0.0968279 0.616117 2.2998 0 0.670514 3.34772 0 -0.91051 -0.75 0.09375 0.109832 -0.082434 1.11075 0.406649 0.0807368 0.637471 2.34494 0 0.670514 3.34772 0 -0.91051 +0.71875 0.09375 0.109873 -0.0824206 1.11435 0.391998 0.152879 0.621119 2.30093 0 0.670514 3.34772 0 -0.91051 +0.75 0.09375 0.109871 -0.0824175 1.11401 0.407143 0.140439 0.6124 2.34588 0 0.670514 3.34772 0 -0.91051 -0.71875 0.125 0.113316 -0.0850802 1.07495 0.401557 0.0990822 0.635615 2.25619 0 0.660055 3.34888 0 -0.882497 -0.75 0.125 0.113317 -0.0850693 1.07495 0.416837 0.0846618 0.658876 2.30114 0 0.660055 3.34888 0 -0.882497 +0.71875 0.125 0.113367 -0.0850498 1.07867 0.402026 0.126627 0.658081 2.25753 0 0.660055 3.34888 0 -0.882497 +0.75 0.125 0.113364 -0.0850457 1.07867 0.41717 0.142083 0.653531 2.30263 0 0.660055 3.34888 0 -0.882497 -0.5 0.125 0.113295 -0.0851536 1.07275 0.318464 0.0997774 0.618541 2.00957 0 0.660055 3.34888 0 -0.882497 -0.53125 0.125 0.113297 -0.0851434 1.073 0.328261 0.0679485 0.621045 2.03863 0 0.660055 3.34888 0 -0.882497 +0.5 0.125 0.113361 -0.0850733 1.08035 0.316599 0.127311 0.696619 2.00938 0 0.660055 3.34888 0 -0.882497 +0.53125 0.125 0.113365 -0.0850709 1.08026 0.326745 0.141884 0.668316 2.03876 0 0.660055 3.34888 0 -0.882497 -0.5 0.15625 0.116884 -0.0878916 1.03702 0.325908 0.0943389 0.595648 1.96623 0 0.649264 3.35008 0 -0.855345 -0.53125 0.15625 0.116888 -0.0878793 1.03723 0.335857 0.0797112 0.618619 1.99481 0 0.649264 3.35008 0 -0.855345 +0.5 0.15625 0.116965 -0.0877933 1.04434 0.324369 0.144453 0.705499 1.96619 0 0.649264 3.35008 0 -0.855345 +0.53125 0.15625 0.116969 -0.087789 1.04413 0.334515 0.144445 0.710472 1.99549 0 0.649264 3.35008 0 -0.855345 -0.53125 0.125 0.113297 -0.0851434 1.073 0.328261 0.0679485 0.621045 2.03863 0 0.660055 3.34888 0 -0.882497 -0.5625 0.125 0.113299 -0.0851334 1.07333 0.338621 0.0430053 0.633394 2.06944 0 0.660055 3.34888 0 -0.882497 +0.53125 0.125 0.113365 -0.0850709 1.08026 0.326641 0.141884 0.668316 2.03876 0 0.660055 3.34888 0 -0.882497 +0.5625 0.125 0.113368 -0.0850677 1.07999 0.337478 0.151842 0.66093 2.06976 0 0.660055 3.34888 0 -0.882497 -0.53125 0.15625 0.116888 -0.0878793 1.03723 0.335857 0.0797112 0.618619 1.99481 0 0.649264 3.35008 0 -0.855345 -0.5625 0.15625 0.116891 -0.0878672 1.03745 0.346757 0.0574639 0.628121 2.0261 0 0.649264 3.35008 0 -0.855345 +0.53125 0.15625 0.116969 -0.087789 1.04413 0.334696 0.144445 0.710472 1.99549 0 0.649264 3.35008 0 -0.855345 +0.5625 0.15625 0.116972 -0.0877846 1.04401 0.345533 0.143389 0.70889 2.02659 0 0.649264 3.35008 0 -0.855345 -0.5 0.15625 0.116884 -0.0878916 1.03702 0.325908 0.0943389 0.595648 1.96623 0 0.649264 3.35008 0 -0.855345 -0.53125 0.15625 0.116888 -0.0878793 1.03723 0.335857 0.0797112 0.618619 1.99481 0 0.649264 3.35008 0 -0.855345 +0.5 0.15625 0.116965 -0.0877933 1.04434 0.324067 0.144453 0.705499 1.96619 0 0.649264 3.35008 0 -0.855345 +0.53125 0.15625 0.116969 -0.087789 1.04413 0.334663 0.144445 0.710472 1.99549 0 0.649264 3.35008 0 -0.855345 -0.5 0.1875 0.12059 -0.090716 1.00208 0.332729 0.0984531 0.604482 1.92155 0 0.638131 3.35132 0 -0.829029 -0.53125 0.1875 0.120594 -0.0907019 1.00192 0.343759 0.107335 0.609738 1.95188 0 0.638131 3.35132 0 -0.829029 +0.5 0.1875 0.120681 -0.0905978 1.00833 0.331964 0.15996 0.742636 1.92311 0 0.638131 3.35132 0 -0.829029 +0.53125 0.1875 0.120685 -0.0905924 1.00806 0.34256 0.163599 0.740451 1.95246 0 0.638131 3.35132 0 -0.829029 -0.53125 0.15625 0.116888 -0.0878793 1.03723 0.335857 0.0797112 0.618619 1.99481 0 0.649264 3.35008 0 -0.855345 -0.5625 0.15625 0.116891 -0.0878672 1.03745 0.346757 0.0574639 0.628121 2.0261 0 0.649264 3.35008 0 -0.855345 +0.53125 0.15625 0.116969 -0.087789 1.04413 0.334442 0.144445 0.710472 1.99549 0 0.649264 3.35008 0 -0.855345 +0.5625 0.15625 0.116972 -0.0877846 1.04401 0.345651 0.143389 0.70889 2.02659 0 0.649264 3.35008 0 -0.855345 -0.53125 0.1875 0.120594 -0.0907019 1.00192 0.343759 0.107335 0.609738 1.95188 0 0.638131 3.35132 0 -0.829029 -0.5625 0.1875 0.120599 -0.0906866 1.00211 0.35473 0.0734404 0.603718 1.98238 0 0.638131 3.35132 0 -0.829029 +0.53125 0.1875 0.120685 -0.0905924 1.00806 0.342743 0.163599 0.740451 1.95246 0 0.638131 3.35132 0 -0.829029 +0.5625 0.1875 0.120688 -0.0905869 1.00781 0.353953 0.164396 0.747624 1.98359 0 0.638131 3.35132 0 -0.829029 -0.5625 0.125 0.113299 -0.0851334 1.07333 0.338621 0.0430053 0.633394 2.06944 0 0.660055 3.34888 0 -0.882497 -0.59375 0.125 0.113302 -0.085123 1.07391 0.349536 0.0341718 0.644979 2.10213 0 0.660055 3.34888 0 -0.882497 +0.5625 0.125 0.113368 -0.0850677 1.07999 0.3373 0.151842 0.66093 2.06976 0 0.660055 3.34888 0 -0.882497 +0.59375 0.125 0.11337 -0.0850642 1.0798 0.34875 0.16713 0.651063 2.10229 0 0.660055 3.34888 0 -0.882497 -0.5625 0.15625 0.116891 -0.0878672 1.03745 0.346757 0.0574639 0.628121 2.0261 0 0.649264 3.35008 0 -0.855345 -0.59375 0.15625 0.116896 -0.0878536 1.03793 0.357992 0.0292974 0.640469 2.05862 0 0.649264 3.35008 0 -0.855345 +0.5625 0.15625 0.116972 -0.0877846 1.04401 0.345706 0.143389 0.70889 2.02659 0 0.649264 3.35008 0 -0.855345 +0.59375 0.15625 0.116974 -0.0877796 1.04388 0.357155 0.167279 0.714743 2.05949 0 0.649264 3.35008 0 -0.855345 -0.59375 0.125 0.113302 -0.085123 1.07391 0.349536 0.0341718 0.644979 2.10213 0 0.660055 3.34888 0 -0.882497 -0.625 0.125 0.113306 -0.0851125 1.0744 0.361119 0.0556503 0.638521 2.13669 0 0.660055 3.34888 0 -0.882497 +0.59375 0.125 0.11337 -0.0850642 1.0798 0.348449 0.16713 0.651063 2.10229 0 0.660055 3.34888 0 -0.882497 +0.625 0.125 0.113371 -0.0850608 1.07932 0.360951 0.179298 0.66901 2.13791 0 0.660055 3.34888 0 -0.882497 -0.59375 0.15625 0.116896 -0.0878536 1.03793 0.357992 0.0292974 0.640469 2.05862 0 0.649264 3.35008 0 -0.855345 -0.625 0.15625 0.1169 -0.0878401 1.03864 0.370002 0.0437673 0.659188 2.09357 0 0.649264 3.35008 0 -0.855345 +0.59375 0.15625 0.116974 -0.0877796 1.04388 0.357209 0.167279 0.714743 2.05949 0 0.649264 3.35008 0 -0.855345 +0.625 0.15625 0.116975 -0.0877758 1.04337 0.369711 0.180737 0.700847 2.09493 0 0.649264 3.35008 0 -0.855345 -0.5625 0.15625 0.116891 -0.0878672 1.03745 0.346757 0.0574639 0.628121 2.0261 0 0.649264 3.35008 0 -0.855345 -0.59375 0.15625 0.116896 -0.0878536 1.03793 0.357992 0.0292974 0.640469 2.05862 0 0.649264 3.35008 0 -0.855345 +0.5625 0.15625 0.116972 -0.0877846 1.04401 0.345417 0.143389 0.70889 2.02659 0 0.649264 3.35008 0 -0.855345 +0.59375 0.15625 0.116974 -0.0877796 1.04388 0.357303 0.167279 0.714743 2.05949 0 0.649264 3.35008 0 -0.855345 -0.5625 0.1875 0.120599 -0.0906866 1.00211 0.35473 0.0734404 0.603718 1.98238 0 0.638131 3.35132 0 -0.829029 -0.59375 0.1875 0.120604 -0.0906707 1.00256 0.366548 0.0663158 0.625696 2.01549 0 0.638131 3.35132 0 -0.829029 +0.5625 0.1875 0.120688 -0.0905869 1.00781 0.354193 0.164396 0.747624 1.98359 0 0.638131 3.35132 0 -0.829029 +0.59375 0.1875 0.120689 -0.0905809 1.00754 0.366078 0.165377 0.761744 2.01654 0 0.638131 3.35132 0 -0.829029 -0.59375 0.15625 0.116896 -0.0878536 1.03793 0.357992 0.0292974 0.640469 2.05862 0 0.649264 3.35008 0 -0.855345 -0.625 0.15625 0.1169 -0.0878401 1.03864 0.370002 0.0437673 0.659188 2.09357 0 0.649264 3.35008 0 -0.855345 +0.59375 0.15625 0.116974 -0.0877796 1.04388 0.357024 0.167279 0.714743 2.05949 0 0.649264 3.35008 0 -0.855345 +0.625 0.15625 0.116975 -0.0877758 1.04337 0.36978 0.180737 0.700847 2.09493 0 0.649264 3.35008 0 -0.855345 -0.59375 0.1875 0.120604 -0.0906707 1.00256 0.366548 0.0663158 0.625696 2.01549 0 0.638131 3.35132 0 -0.829029 -0.625 0.1875 0.120609 -0.0906539 1.00281 0.379016 0.0779561 0.665727 2.05019 0 0.638131 3.35132 0 -0.829029 +0.59375 0.1875 0.120689 -0.0905809 1.00754 0.366114 0.165377 0.761744 2.01654 0 0.638131 3.35132 0 -0.829029 +0.625 0.1875 0.12069 -0.0905759 1.00726 0.37887 0.160532 0.731747 2.05164 0 0.638131 3.35132 0 -0.829029 -0.5 0.1875 0.12059 -0.090716 1.00208 0.332729 0.0984531 0.604482 1.92155 0 0.638131 3.35132 0 -0.829029 -0.53125 0.1875 0.120594 -0.0907019 1.00192 0.343759 0.107335 0.609738 1.95188 0 0.638131 3.35132 0 -0.829029 +0.5 0.1875 0.120681 -0.0905978 1.00833 0.331725 0.15996 0.742636 1.92311 0 0.638131 3.35132 0 -0.829029 +0.53125 0.1875 0.120685 -0.0905924 1.00806 0.342654 0.163599 0.740451 1.95246 0 0.638131 3.35132 0 -0.829029 -0.5 0.21875 0.124413 -0.0936224 0.966339 0.340693 0.0971311 0.648298 1.87885 0 0.626644 3.3526 0 -0.803523 -0.53125 0.21875 0.124418 -0.0936065 0.966522 0.351388 0.0833947 0.644414 1.90768 0 0.626644 3.3526 0 -0.803523 +0.5 0.21875 0.124514 -0.0934895 0.971954 0.339942 0.163612 0.787468 1.88021 0 0.626644 3.3526 0 -0.803523 +0.53125 0.21875 0.124518 -0.0934836 0.971771 0.35087 0.163666 0.780088 1.90942 0 0.626644 3.3526 0 -0.803523 -0.53125 0.1875 0.120594 -0.0907019 1.00192 0.343759 0.107335 0.609738 1.95188 0 0.638131 3.35132 0 -0.829029 -0.5625 0.1875 0.120599 -0.0906866 1.00211 0.35473 0.0734404 0.603718 1.98238 0 0.638131 3.35132 0 -0.829029 +0.53125 0.1875 0.120685 -0.0905924 1.00806 0.342468 0.163599 0.740451 1.95246 0 0.638131 3.35132 0 -0.829029 +0.5625 0.1875 0.120688 -0.0905869 1.00781 0.354058 0.164396 0.747624 1.98359 0 0.638131 3.35132 0 -0.829029 -0.53125 0.21875 0.124418 -0.0936065 0.966522 0.351388 0.0833947 0.644414 1.90768 0 0.626644 3.3526 0 -0.803523 -0.5625 0.21875 0.124424 -0.0935897 0.966858 0.362861 0.0831985 0.639189 1.93875 0 0.626644 3.3526 0 -0.803523 +0.53125 0.21875 0.124518 -0.0934836 0.971771 0.351023 0.163666 0.780088 1.90942 0 0.626644 3.3526 0 -0.803523 +0.5625 0.21875 0.12452 -0.0934769 0.971527 0.362613 0.173969 0.78402 1.94092 0 0.626644 3.3526 0 -0.803523 -0.5 0.21875 0.124413 -0.0936224 0.966339 0.340693 0.0971311 0.648298 1.87885 0 0.626644 3.3526 0 -0.803523 -0.53125 0.21875 0.124418 -0.0936065 0.966522 0.351388 0.0833947 0.644414 1.90768 0 0.626644 3.3526 0 -0.803523 +0.5 0.21875 0.124514 -0.0934895 0.971954 0.339752 0.163612 0.787468 1.88021 0 0.626644 3.3526 0 -0.803523 +0.53125 0.21875 0.124518 -0.0934836 0.971771 0.350954 0.163666 0.780088 1.90942 0 0.626644 3.3526 0 -0.803523 -0.5 0.25 0.128357 -0.0966162 0.930939 0.348178 0.0986954 0.702404 1.83481 0 0.614792 3.35391 0 -0.778801 -0.53125 0.25 0.128364 -0.0965988 0.930817 0.359497 0.110574 0.686317 1.86407 0 0.614792 3.35391 0 -0.778801 +0.5 0.25 0.128467 -0.096472 0.935455 0.348191 0.148786 0.80211 1.83715 0 0.614792 3.35391 0 -0.778801 +0.53125 0.25 0.128471 -0.0964648 0.935333 0.359394 0.16216 0.812148 1.86655 0 0.614792 3.35391 0 -0.778801 -0.53125 0.21875 0.124418 -0.0936065 0.966522 0.351388 0.0833947 0.644414 1.90768 0 0.626644 3.3526 0 -0.803523 -0.5625 0.21875 0.124424 -0.0935897 0.966858 0.362861 0.0831985 0.639189 1.93875 0 0.626644 3.3526 0 -0.803523 +0.53125 0.21875 0.124518 -0.0934836 0.971771 0.350744 0.163666 0.780088 1.90942 0 0.626644 3.3526 0 -0.803523 +0.5625 0.21875 0.12452 -0.0934769 0.971527 0.362728 0.173969 0.78402 1.94092 0 0.626644 3.3526 0 -0.803523 -0.53125 0.25 0.128364 -0.0965988 0.930817 0.359497 0.110574 0.686317 1.86407 0 0.614792 3.35391 0 -0.778801 -0.5625 0.25 0.128371 -0.0965807 0.931061 0.371346 0.0939174 0.682606 1.89508 0 0.614792 3.35391 0 -0.778801 +0.53125 0.25 0.128471 -0.0964648 0.935333 0.359577 0.16216 0.812148 1.86655 0 0.614792 3.35391 0 -0.778801 +0.5625 0.25 0.128473 -0.0964573 0.935028 0.371561 0.16097 0.807439 1.89772 0 0.614792 3.35391 0 -0.778801 -0.5625 0.1875 0.120599 -0.0906866 1.00211 0.35473 0.0734404 0.603718 1.98238 0 0.638131 3.35132 0 -0.829029 -0.59375 0.1875 0.120604 -0.0906707 1.00256 0.366548 0.0663158 0.625696 2.01549 0 0.638131 3.35132 0 -0.829029 +0.5625 0.1875 0.120688 -0.0905869 1.00781 0.353848 0.164396 0.747624 1.98359 0 0.638131 3.35132 0 -0.829029 +0.59375 0.1875 0.120689 -0.0905809 1.00754 0.366268 0.165377 0.761744 2.01654 0 0.638131 3.35132 0 -0.829029 -0.5625 0.21875 0.124424 -0.0935897 0.966858 0.362861 0.0831985 0.639189 1.93875 0 0.626644 3.3526 0 -0.803523 -0.59375 0.21875 0.124431 -0.0935718 0.967041 0.375021 0.0957403 0.656846 1.9715 0 0.626644 3.3526 0 -0.803523 +0.5625 0.21875 0.12452 -0.0934769 0.971527 0.362792 0.173969 0.78402 1.94092 0 0.626644 3.3526 0 -0.803523 +0.59375 0.21875 0.124521 -0.0934702 0.97113 0.375212 0.162622 0.770623 1.97351 0 0.626644 3.3526 0 -0.803523 -0.59375 0.1875 0.120604 -0.0906707 1.00256 0.366548 0.0663158 0.625696 2.01549 0 0.638131 3.35132 0 -0.829029 -0.625 0.1875 0.120609 -0.0906539 1.00281 0.379016 0.0779561 0.665727 2.05019 0 0.638131 3.35132 0 -0.829029 +0.59375 0.1875 0.120689 -0.0905809 1.00754 0.365895 0.165377 0.761744 2.01654 0 0.638131 3.35132 0 -0.829029 +0.625 0.1875 0.12069 -0.0905759 1.00726 0.378937 0.160532 0.731747 2.05164 0 0.638131 3.35132 0 -0.829029 -0.59375 0.21875 0.124431 -0.0935718 0.967041 0.375021 0.0957403 0.656846 1.9715 0 0.626644 3.3526 0 -0.803523 -0.625 0.21875 0.124436 -0.0935526 0.967163 0.388152 0.0980163 0.682394 2.00679 0 0.626644 3.3526 0 -0.803523 +0.59375 0.21875 0.124521 -0.0934702 0.97113 0.375205 0.162622 0.770623 1.97351 0 0.626644 3.3526 0 -0.803523 +0.625 0.21875 0.124522 -0.0934637 0.9711 0.388247 0.15745 0.768669 2.00865 0 0.626644 3.3526 0 -0.803523 -0.5625 0.21875 0.124424 -0.0935897 0.966858 0.362861 0.0831985 0.639189 1.93875 0 0.626644 3.3526 0 -0.803523 -0.59375 0.21875 0.124431 -0.0935718 0.967041 0.375021 0.0957403 0.656846 1.9715 0 0.626644 3.3526 0 -0.803523 +0.5625 0.21875 0.12452 -0.0934769 0.971527 0.362618 0.173969 0.78402 1.94092 0 0.626644 3.3526 0 -0.803523 +0.59375 0.21875 0.124521 -0.0934702 0.97113 0.375289 0.162622 0.770623 1.97351 0 0.626644 3.3526 0 -0.803523 -0.5625 0.25 0.128371 -0.0965807 0.931061 0.371346 0.0939174 0.682606 1.89508 0 0.614792 3.35391 0 -0.778801 -0.59375 0.25 0.128378 -0.0965607 0.931305 0.38397 0.109929 0.692278 1.92809 0 0.614792 3.35391 0 -0.778801 +0.5625 0.25 0.128473 -0.0964573 0.935028 0.371685 0.16097 0.807439 1.89772 0 0.614792 3.35391 0 -0.778801 +0.59375 0.25 0.128473 -0.0964494 0.934967 0.384356 0.162067 0.787562 1.9304 0 0.614792 3.35391 0 -0.778801 -0.59375 0.21875 0.124431 -0.0935718 0.967041 0.375021 0.0957403 0.656846 1.9715 0 0.626644 3.3526 0 -0.803523 -0.625 0.21875 0.124436 -0.0935526 0.967163 0.388152 0.0980163 0.682394 2.00679 0 0.626644 3.3526 0 -0.803523 +0.59375 0.21875 0.124521 -0.0934702 0.97113 0.37496 0.162622 0.770623 1.97351 0 0.626644 3.3526 0 -0.803523 +0.625 0.21875 0.124522 -0.0934637 0.9711 0.388377 0.15745 0.768669 2.00865 0 0.626644 3.3526 0 -0.803523 -0.59375 0.25 0.128378 -0.0965607 0.931305 0.38397 0.109929 0.692278 1.92809 0 0.614792 3.35391 0 -0.778801 -0.625 0.25 0.128384 -0.0965404 0.931244 0.397427 0.116075 0.701197 1.96297 0 0.614792 3.35391 0 -0.778801 +0.59375 0.25 0.128473 -0.0964494 0.934967 0.384412 0.162067 0.787562 1.9304 0 0.614792 3.35391 0 -0.778801 +0.625 0.25 0.128473 -0.0964421 0.934692 0.397829 0.180291 0.80422 1.96563 0 0.614792 3.35391 0 -0.778801 -0.625 0.125 0.113306 -0.0851125 1.0744 0.361119 0.0556503 0.638521 2.13669 0 0.660055 3.34888 0 -0.882497 -0.65625 0.125 0.11331 -0.085102 1.07462 0.373793 0.0744236 0.644859 2.17419 0 0.660055 3.34888 0 -0.882497 +0.625 0.125 0.113371 -0.0850608 1.07932 0.360754 0.179298 0.66901 2.13791 0 0.660055 3.34888 0 -0.882497 +0.65625 0.125 0.113371 -0.0850573 1.07889 0.373955 0.157612 0.671861 2.17558 0 0.660055 3.34888 0 -0.882497 -0.625 0.15625 0.1169 -0.0878401 1.03864 0.370002 0.0437673 0.659188 2.09357 0 0.649264 3.35008 0 -0.855345 -0.65625 0.15625 0.116905 -0.0878271 1.03885 0.382912 0.068035 0.657044 2.13059 0 0.649264 3.35008 0 -0.855345 +0.625 0.15625 0.116975 -0.0877758 1.04337 0.369875 0.180737 0.700847 2.09493 0 0.649264 3.35008 0 -0.855345 +0.65625 0.15625 0.116974 -0.0877716 1.043 0.383077 0.15711 0.687147 2.1324 0 0.649264 3.35008 0 -0.855345 -0.65625 0.125 0.11331 -0.085102 1.07462 0.373793 0.0744236 0.644859 2.17419 0 0.660055 3.34888 0 -0.882497 -0.6875 0.125 0.113314 -0.0850911 1.07486 0.387204 0.086293 0.642198 2.21388 0 0.660055 3.34888 0 -0.882497 +0.65625 0.125 0.113371 -0.0850573 1.07889 0.373736 0.157612 0.671861 2.17558 0 0.660055 3.34888 0 -0.882497 +0.6875 0.125 0.113369 -0.0850539 1.07877 0.387538 0.134503 0.661824 2.21537 0 0.660055 3.34888 0 -0.882497 -0.65625 0.15625 0.116905 -0.0878271 1.03885 0.382912 0.068035 0.657044 2.13059 0 0.649264 3.35008 0 -0.855345 -0.6875 0.15625 0.116909 -0.0878135 1.03922 0.396773 0.0882982 0.670819 2.17047 0 0.649264 3.35008 0 -0.855345 +0.65625 0.15625 0.116974 -0.0877716 1.043 0.383296 0.15711 0.687147 2.1324 0 0.649264 3.35008 0 -0.855345 +0.6875 0.15625 0.116972 -0.0877668 1.04291 0.397098 0.142823 0.696073 2.17216 0 0.649264 3.35008 0 -0.855345 -0.625 0.15625 0.1169 -0.0878401 1.03864 0.370002 0.0437673 0.659188 2.09357 0 0.649264 3.35008 0 -0.855345 -0.65625 0.15625 0.116905 -0.0878271 1.03885 0.382912 0.068035 0.657044 2.13059 0 0.649264 3.35008 0 -0.855345 +0.625 0.15625 0.116975 -0.0877758 1.04337 0.369665 0.180737 0.700847 2.09493 0 0.649264 3.35008 0 -0.855345 +0.65625 0.15625 0.116974 -0.0877716 1.043 0.383181 0.15711 0.687147 2.1324 0 0.649264 3.35008 0 -0.855345 -0.625 0.1875 0.120609 -0.0906539 1.00281 0.379016 0.0779561 0.665727 2.05019 0 0.638131 3.35132 0 -0.829029 -0.65625 0.1875 0.120614 -0.0906382 1.00308 0.392458 0.0933601 0.666447 2.08761 0 0.638131 3.35132 0 -0.829029 +0.625 0.1875 0.12069 -0.0905759 1.00726 0.378999 0.160532 0.731747 2.05164 0 0.638131 3.35132 0 -0.829029 +0.65625 0.1875 0.12069 -0.0905705 1.00708 0.392514 0.161406 0.727665 2.08923 0 0.638131 3.35132 0 -0.829029 -0.65625 0.15625 0.116905 -0.0878271 1.03885 0.382912 0.068035 0.657044 2.13059 0 0.649264 3.35008 0 -0.855345 -0.6875 0.15625 0.116909 -0.0878135 1.03922 0.396773 0.0882982 0.670819 2.17047 0 0.649264 3.35008 0 -0.855345 +0.65625 0.15625 0.116974 -0.0877716 1.043 0.382965 0.15711 0.687147 2.1324 0 0.649264 3.35008 0 -0.855345 +0.6875 0.15625 0.116972 -0.0877668 1.04291 0.397268 0.142823 0.696073 2.17216 0 0.649264 3.35008 0 -0.855345 -0.65625 0.1875 0.120614 -0.0906382 1.00308 0.392458 0.0933601 0.666447 2.08761 0 0.638131 3.35132 0 -0.829029 -0.6875 0.1875 0.120619 -0.090622 1.00314 0.406818 0.112577 0.692472 2.12736 0 0.638131 3.35132 0 -0.829029 +0.65625 0.1875 0.12069 -0.0905705 1.00708 0.392746 0.161406 0.727665 2.08923 0 0.638131 3.35132 0 -0.829029 +0.6875 0.1875 0.120688 -0.0905647 1.00681 0.407049 0.171119 0.740232 2.12923 0 0.638131 3.35132 0 -0.829029 -0.6875 0.125 0.113314 -0.0850911 1.07486 0.387204 0.086293 0.642198 2.21388 0 0.660055 3.34888 0 -0.882497 -0.71875 0.125 0.113316 -0.0850802 1.07495 0.401557 0.0990822 0.635615 2.25619 0 0.660055 3.34888 0 -0.882497 +0.6875 0.125 0.113369 -0.0850539 1.07877 0.387339 0.134503 0.661824 2.21537 0 0.660055 3.34888 0 -0.882497 +0.71875 0.125 0.113367 -0.0850498 1.07867 0.402067 0.126627 0.658081 2.25753 0 0.660055 3.34888 0 -0.882497 -0.6875 0.15625 0.116909 -0.0878135 1.03922 0.396773 0.0882982 0.670819 2.17047 0 0.649264 3.35008 0 -0.855345 -0.71875 0.15625 0.116911 -0.0878 1.03922 0.411602 0.115048 0.675138 2.21276 0 0.649264 3.35008 0 -0.855345 +0.6875 0.15625 0.116972 -0.0877668 1.04291 0.397318 0.142823 0.696073 2.17216 0 0.649264 3.35008 0 -0.855345 +0.71875 0.15625 0.11697 -0.0877615 1.04276 0.412046 0.151032 0.713318 2.21464 0 0.649264 3.35008 0 -0.855345 -0.71875 0.125 0.113316 -0.0850802 1.07495 0.401557 0.0990822 0.635615 2.25619 0 0.660055 3.34888 0 -0.882497 -0.75 0.125 0.113317 -0.0850693 1.07495 0.416837 0.0846618 0.658876 2.30114 0 0.660055 3.34888 0 -0.882497 +0.71875 0.125 0.113367 -0.0850498 1.07867 0.401736 0.126627 0.658081 2.25753 0 0.660055 3.34888 0 -0.882497 +0.75 0.125 0.113364 -0.0850457 1.07867 0.41739 0.142083 0.653531 2.30263 0 0.660055 3.34888 0 -0.882497 -0.71875 0.15625 0.116911 -0.0878 1.03922 0.411602 0.115048 0.675138 2.21276 0 0.649264 3.35008 0 -0.855345 -0.75 0.15625 0.116913 -0.0877866 1.03912 0.427496 0.10411 0.693912 2.25798 0 0.649264 3.35008 0 -0.855345 +0.71875 0.15625 0.11697 -0.0877615 1.04276 0.412291 0.151032 0.713318 2.21464 0 0.649264 3.35008 0 -0.855345 +0.75 0.15625 0.116967 -0.0877562 1.04248 0.427945 0.154199 0.712913 2.25969 0 0.649264 3.35008 0 -0.855345 -0.6875 0.15625 0.116909 -0.0878135 1.03922 0.396773 0.0882982 0.670819 2.17047 0 0.649264 3.35008 0 -0.855345 -0.71875 0.15625 0.116911 -0.0878 1.03922 0.411602 0.115048 0.675138 2.21276 0 0.649264 3.35008 0 -0.855345 +0.6875 0.15625 0.116972 -0.0877668 1.04291 0.396977 0.142823 0.696073 2.17216 0 0.649264 3.35008 0 -0.855345 +0.71875 0.15625 0.11697 -0.0877615 1.04276 0.41224 0.151032 0.713318 2.21464 0 0.649264 3.35008 0 -0.855345 -0.6875 0.1875 0.120619 -0.090622 1.00314 0.406818 0.112577 0.692472 2.12736 0 0.638131 3.35132 0 -0.829029 -0.71875 0.1875 0.120622 -0.090606 1.00317 0.422219 0.1304 0.704417 2.16995 0 0.638131 3.35132 0 -0.829029 +0.6875 0.1875 0.120688 -0.0905647 1.00681 0.407361 0.171119 0.740232 2.12923 0 0.638131 3.35132 0 -0.829029 +0.71875 0.1875 0.120685 -0.0905584 1.00641 0.422624 0.156641 0.746104 2.17163 0 0.638131 3.35132 0 -0.829029 -0.71875 0.15625 0.116911 -0.0878 1.03922 0.411602 0.115048 0.675138 2.21276 0 0.649264 3.35008 0 -0.855345 -0.75 0.15625 0.116913 -0.0877866 1.03912 0.427496 0.10411 0.693912 2.25798 0 0.649264 3.35008 0 -0.855345 +0.71875 0.15625 0.11697 -0.0877615 1.04276 0.411963 0.151032 0.713318 2.21464 0 0.649264 3.35008 0 -0.855345 +0.75 0.15625 0.116967 -0.0877562 1.04248 0.428123 0.154199 0.712913 2.25969 0 0.649264 3.35008 0 -0.855345 -0.71875 0.1875 0.120622 -0.090606 1.00317 0.422219 0.1304 0.704417 2.16995 0 0.638131 3.35132 0 -0.829029 -0.75 0.1875 0.120623 -0.0905902 1.0029 0.438466 0.105273 0.703332 2.21457 0 0.638131 3.35132 0 -0.829029 +0.71875 0.1875 0.120685 -0.0905584 1.00641 0.422857 0.156641 0.746104 2.17163 0 0.638131 3.35132 0 -0.829029 +0.75 0.1875 0.120681 -0.0905517 1.00638 0.439017 0.142324 0.739598 2.21668 0 0.638131 3.35132 0 -0.829029 -0.625 0.1875 0.120609 -0.0906539 1.00281 0.379016 0.0779561 0.665727 2.05019 0 0.638131 3.35132 0 -0.829029 -0.65625 0.1875 0.120614 -0.0906382 1.00308 0.392458 0.0933601 0.666447 2.08761 0 0.638131 3.35132 0 -0.829029 +0.625 0.1875 0.12069 -0.0905759 1.00726 0.378723 0.160532 0.731747 2.05164 0 0.638131 3.35132 0 -0.829029 +0.65625 0.1875 0.12069 -0.0905705 1.00708 0.392646 0.161406 0.727665 2.08923 0 0.638131 3.35132 0 -0.829029 -0.625 0.21875 0.124436 -0.0935526 0.967163 0.388152 0.0980163 0.682394 2.00679 0 0.626644 3.3526 0 -0.803523 -0.65625 0.21875 0.124441 -0.0935348 0.967377 0.401963 0.109555 0.689162 2.044 0 0.626644 3.3526 0 -0.803523 +0.625 0.21875 0.124522 -0.0934637 0.9711 0.388416 0.15745 0.768669 2.00865 0 0.626644 3.3526 0 -0.803523 +0.65625 0.21875 0.124521 -0.0934571 0.970795 0.402339 0.168893 0.777444 2.04614 0 0.626644 3.3526 0 -0.803523 -0.65625 0.1875 0.120614 -0.0906382 1.00308 0.392458 0.0933601 0.666447 2.08761 0 0.638131 3.35132 0 -0.829029 -0.6875 0.1875 0.120619 -0.090622 1.00314 0.406818 0.112577 0.692472 2.12736 0 0.638131 3.35132 0 -0.829029 +0.65625 0.1875 0.12069 -0.0905705 1.00708 0.392419 0.161406 0.727665 2.08923 0 0.638131 3.35132 0 -0.829029 +0.6875 0.1875 0.120688 -0.0905647 1.00681 0.407236 0.171119 0.740232 2.12923 0 0.638131 3.35132 0 -0.829029 -0.65625 0.21875 0.124441 -0.0935348 0.967377 0.401963 0.109555 0.689162 2.044 0 0.626644 3.3526 0 -0.803523 -0.6875 0.21875 0.124446 -0.0935164 0.967377 0.416911 0.134694 0.707678 2.08403 0 0.626644 3.3526 0 -0.803523 +0.65625 0.21875 0.124521 -0.0934571 0.970795 0.402598 0.168893 0.777444 2.04614 0 0.626644 3.3526 0 -0.803523 +0.6875 0.21875 0.124519 -0.0934501 0.970551 0.417415 0.16939 0.793248 2.08627 0 0.626644 3.3526 0 -0.803523 -0.625 0.21875 0.124436 -0.0935526 0.967163 0.388152 0.0980163 0.682394 2.00679 0 0.626644 3.3526 0 -0.803523 -0.65625 0.21875 0.124441 -0.0935348 0.967377 0.401963 0.109555 0.689162 2.044 0 0.626644 3.3526 0 -0.803523 +0.625 0.21875 0.124522 -0.0934637 0.9711 0.388114 0.15745 0.768669 2.00865 0 0.626644 3.3526 0 -0.803523 +0.65625 0.21875 0.124521 -0.0934571 0.970795 0.402495 0.168893 0.777444 2.04614 0 0.626644 3.3526 0 -0.803523 -0.625 0.25 0.128384 -0.0965404 0.931244 0.397427 0.116075 0.701197 1.96297 0 0.614792 3.35391 0 -0.778801 -0.65625 0.25 0.128389 -0.0965203 0.931458 0.411975 0.126261 0.719925 2.00094 0 0.614792 3.35391 0 -0.778801 +0.625 0.25 0.128473 -0.0964421 0.934692 0.39814 0.180291 0.80422 1.96563 0 0.614792 3.35391 0 -0.778801 +0.65625 0.25 0.128473 -0.0964343 0.934357 0.412521 0.192357 0.808966 2.00339 0 0.614792 3.35391 0 -0.778801 -0.65625 0.21875 0.124441 -0.0935348 0.967377 0.401963 0.109555 0.689162 2.044 0 0.626644 3.3526 0 -0.803523 -0.6875 0.21875 0.124446 -0.0935164 0.967377 0.416911 0.134694 0.707678 2.08403 0 0.626644 3.3526 0 -0.803523 +0.65625 0.21875 0.124521 -0.0934571 0.970795 0.402252 0.168893 0.777444 2.04614 0 0.626644 3.3526 0 -0.803523 +0.6875 0.21875 0.124519 -0.0934501 0.970551 0.417606 0.16939 0.793248 2.08627 0 0.626644 3.3526 0 -0.803523 -0.65625 0.25 0.128389 -0.0965203 0.931458 0.411975 0.126261 0.719925 2.00094 0 0.614792 3.35391 0 -0.778801 -0.6875 0.25 0.128394 -0.0965005 0.931274 0.427324 0.138587 0.72175 2.04061 0 0.614792 3.35391 0 -0.778801 +0.65625 0.25 0.128473 -0.0964343 0.934357 0.412807 0.192357 0.808966 2.00339 0 0.614792 3.35391 0 -0.778801 +0.6875 0.25 0.12847 -0.0964263 0.933838 0.428161 0.161461 0.806588 2.04316 0 0.614792 3.35391 0 -0.778801 -0.6875 0.1875 0.120619 -0.090622 1.00314 0.406818 0.112577 0.692472 2.12736 0 0.638131 3.35132 0 -0.829029 -0.71875 0.1875 0.120622 -0.090606 1.00317 0.422219 0.1304 0.704417 2.16995 0 0.638131 3.35132 0 -0.829029 +0.6875 0.1875 0.120688 -0.0905647 1.00681 0.407023 0.171119 0.740232 2.12923 0 0.638131 3.35132 0 -0.829029 +0.71875 0.1875 0.120685 -0.0905584 1.00641 0.422827 0.156641 0.746104 2.17163 0 0.638131 3.35132 0 -0.829029 -0.6875 0.21875 0.124446 -0.0935164 0.967377 0.416911 0.134694 0.707678 2.08403 0 0.626644 3.3526 0 -0.803523 -0.71875 0.21875 0.124449 -0.0934984 0.967194 0.432842 0.138127 0.714183 2.12652 0 0.626644 3.3526 0 -0.803523 +0.6875 0.21875 0.124519 -0.0934501 0.970551 0.417636 0.16939 0.793248 2.08627 0 0.626644 3.3526 0 -0.803523 +0.71875 0.21875 0.124515 -0.093443 0.970245 0.43344 0.161346 0.760937 2.12865 0 0.626644 3.3526 0 -0.803523 -0.71875 0.1875 0.120622 -0.090606 1.00317 0.422219 0.1304 0.704417 2.16995 0 0.638131 3.35132 0 -0.829029 -0.75 0.1875 0.120623 -0.0905902 1.0029 0.438466 0.105273 0.703332 2.21457 0 0.638131 3.35132 0 -0.829029 +0.71875 0.1875 0.120685 -0.0905584 1.00641 0.422546 0.156641 0.746104 2.17163 0 0.638131 3.35132 0 -0.829029 +0.75 0.1875 0.120681 -0.0905517 1.00638 0.439205 0.142324 0.739598 2.21668 0 0.638131 3.35132 0 -0.829029 -0.71875 0.21875 0.124449 -0.0934984 0.967194 0.432842 0.138127 0.714183 2.12652 0 0.626644 3.3526 0 -0.803523 -0.75 0.21875 0.12445 -0.0934804 0.967133 0.449762 0.112677 0.697882 2.17178 0 0.626644 3.3526 0 -0.803523 +0.71875 0.21875 0.124515 -0.093443 0.970245 0.433671 0.161346 0.760937 2.12865 0 0.626644 3.3526 0 -0.803523 +0.75 0.21875 0.124511 -0.0934351 0.970123 0.45033 0.154464 0.772555 2.17373 0 0.626644 3.3526 0 -0.803523 -0.6875 0.21875 0.124446 -0.0935164 0.967377 0.416911 0.134694 0.707678 2.08403 0 0.626644 3.3526 0 -0.803523 -0.71875 0.21875 0.124449 -0.0934984 0.967194 0.432842 0.138127 0.714183 2.12652 0 0.626644 3.3526 0 -0.803523 +0.6875 0.21875 0.124519 -0.0934501 0.970551 0.417356 0.16939 0.793248 2.08627 0 0.626644 3.3526 0 -0.803523 +0.71875 0.21875 0.124515 -0.093443 0.970245 0.433553 0.161346 0.760937 2.12865 0 0.626644 3.3526 0 -0.803523 -0.6875 0.25 0.128394 -0.0965005 0.931274 0.427324 0.138587 0.72175 2.04061 0 0.614792 3.35391 0 -0.778801 -0.71875 0.25 0.128397 -0.0964799 0.931274 0.44376 0.127753 0.737029 2.08328 0 0.614792 3.35391 0 -0.778801 +0.6875 0.25 0.12847 -0.0964263 0.933838 0.428376 0.161461 0.806588 2.04316 0 0.614792 3.35391 0 -0.778801 +0.71875 0.25 0.128467 -0.0964181 0.934021 0.444572 0.145254 0.806691 2.08588 0 0.614792 3.35391 0 -0.778801 -0.71875 0.21875 0.124449 -0.0934984 0.967194 0.432842 0.138127 0.714183 2.12652 0 0.626644 3.3526 0 -0.803523 -0.75 0.21875 0.12445 -0.0934804 0.967133 0.449762 0.112677 0.697882 2.17178 0 0.626644 3.3526 0 -0.803523 +0.71875 0.21875 0.124515 -0.093443 0.970245 0.433322 0.161346 0.760937 2.12865 0 0.626644 3.3526 0 -0.803523 +0.75 0.21875 0.124511 -0.0934351 0.970123 0.450542 0.154464 0.772555 2.17373 0 0.626644 3.3526 0 -0.803523 -0.71875 0.25 0.128397 -0.0964799 0.931274 0.44376 0.127753 0.737029 2.08328 0 0.614792 3.35391 0 -0.778801 -0.75 0.25 0.128398 -0.0964598 0.931305 0.461028 0.124986 0.745089 2.12813 0 0.614792 3.35391 0 -0.778801 +0.71875 0.25 0.128467 -0.0964181 0.934021 0.444759 0.145254 0.806691 2.08588 0 0.614792 3.35391 0 -0.778801 +0.75 0.25 0.128462 -0.0964089 0.933746 0.461979 0.164259 0.799062 2.13076 0 0.614792 3.35391 0 -0.778801 -0.75 0 0.1 -0.075 1.21765 0.377282 0.0386434 0.579315 2.47526 0 0.7 3.34444 0 -1 -0.78125 0 0.1 -0.075 1.21814 0.391423 0.045576 0.577702 2.52288 0 0.7 3.34444 0 -1 +0.75 0 0.1 -0.075 1.22076 0.377639 0.133868 0.590756 2.47561 0 0.7 3.34444 0 -1 +0.78125 0 0.1 -0.075 1.22049 0.392362 0.135618 0.583589 2.52352 0 0.7 3.34444 0 -1 -0.75 0.03125 0.103176 -0.0774014 1.18216 0.386796 0.0329847 0.597604 2.43181 0 0.690477 3.3455 0 -0.969233 -0.78125 0.03125 0.103176 -0.0773984 1.18274 0.40124 0.0494375 0.620563 2.47906 0 0.690477 3.3455 0 -0.969233 +0.75 0.03125 0.103192 -0.0773968 1.18518 0.387513 0.139925 0.585529 2.43246 0 0.690477 3.3455 0 -0.969233 +0.78125 0.03125 0.103191 -0.0773961 1.18497 0.402236 0.13421 0.582824 2.48028 0 0.690477 3.3455 0 -0.969233 -0.78125 0 0.1 -0.075 1.21814 0.391423 0.045576 0.577702 2.52288 0 0.7 3.34444 0 -1 -0.8125 0 0.1 -0.075 1.21838 0.406492 0.0587707 0.582123 2.57336 0 0.7 3.34444 0 -1 +0.78125 0 0.1 -0.075 1.22049 0.392141 0.135618 0.583589 2.52352 0 0.7 3.34444 0 -1 +0.8125 0 0.1 -0.075 1.22031 0.407739 0.138534 0.581026 2.57431 0 0.7 3.34444 0 -1 -0.78125 0.03125 0.103176 -0.0773984 1.18274 0.40124 0.0494375 0.620563 2.47906 0 0.690477 3.3455 0 -0.969233 -0.8125 0.03125 0.103176 -0.0773963 1.18286 0.416932 0.068592 0.596768 2.52988 0 0.690477 3.3455 0 -0.969233 +0.78125 0.03125 0.103191 -0.0773961 1.18497 0.402447 0.13421 0.582824 2.48028 0 0.690477 3.3455 0 -0.969233 +0.8125 0.03125 0.10319 -0.0773952 1.18481 0.418045 0.138739 0.584533 2.53117 0 0.690477 3.3455 0 -0.969233 -0.75 0.03125 0.103176 -0.0774014 1.18216 0.386796 0.0329847 0.597604 2.43181 0 0.690477 3.3455 0 -0.969233 -0.78125 0.03125 0.103176 -0.0773984 1.18274 0.40124 0.0494375 0.620563 2.47906 0 0.690477 3.3455 0 -0.969233 +0.75 0.03125 0.103192 -0.0773968 1.18518 0.387216 0.139925 0.585529 2.43246 0 0.690477 3.3455 0 -0.969233 +0.78125 0.03125 0.103191 -0.0773961 1.18497 0.402386 0.13421 0.582824 2.48028 0 0.690477 3.3455 0 -0.969233 -0.75 0.0625 0.106452 -0.0798788 1.14645 0.396586 0.0722468 0.619848 2.38831 0 0.680652 3.34659 0 -0.939413 -0.78125 0.0625 0.106452 -0.0798731 1.14658 0.411743 0.0484164 0.64689 2.4359 0 0.680652 3.34659 0 -0.939413 +0.75 0.0625 0.106481 -0.0798686 1.14978 0.39723 0.140804 0.601176 2.38916 0 0.680652 3.34659 0 -0.939413 +0.78125 0.0625 0.106479 -0.0798671 1.14951 0.4124 0.142924 0.591841 2.43703 0 0.680652 3.34659 0 -0.939413 -0.78125 0.03125 0.103176 -0.0773984 1.18274 0.40124 0.0494375 0.620563 2.47906 0 0.690477 3.3455 0 -0.969233 -0.8125 0.03125 0.103176 -0.0773963 1.18286 0.416932 0.068592 0.596768 2.52988 0 0.690477 3.3455 0 -0.969233 +0.78125 0.03125 0.103191 -0.0773961 1.18497 0.402127 0.13421 0.582824 2.48028 0 0.690477 3.3455 0 -0.969233 +0.8125 0.03125 0.10319 -0.0773952 1.18481 0.418229 0.138739 0.584533 2.53117 0 0.690477 3.3455 0 -0.969233 -0.78125 0.0625 0.106452 -0.0798731 1.14658 0.411743 0.0484164 0.64689 2.4359 0 0.680652 3.34659 0 -0.939413 -0.8125 0.0625 0.106452 -0.0798685 1.14722 0.42772 0.0325175 0.621259 2.48657 0 0.680652 3.34659 0 -0.939413 +0.78125 0.0625 0.106479 -0.0798671 1.14951 0.412663 0.142924 0.591841 2.43703 0 0.680652 3.34659 0 -0.939413 +0.8125 0.0625 0.106477 -0.0798649 1.14929 0.428765 0.137132 0.594983 2.48786 0 0.680652 3.34659 0 -0.939413 -0.8125 0 0.1 -0.075 1.21838 0.406492 0.0587707 0.582123 2.57336 0 0.7 3.34444 0 -1 -0.84375 0 0.1 -0.075 1.21863 0.422597 0.0563536 0.581863 2.62729 0 0.7 3.34444 0 -1 +0.8125 0 0.1 -0.075 1.22031 0.40748 0.138534 0.581026 2.57431 0 0.7 3.34444 0 -1 +0.84375 0 0.1 -0.075 1.22 0.42413 0.144827 0.577847 2.6284 0 0.7 3.34444 0 -1 -0.8125 0.03125 0.103176 -0.0773963 1.18286 0.416932 0.068592 0.596768 2.52988 0 0.690477 3.3455 0 -0.969233 -0.84375 0.03125 0.103177 -0.0773942 1.18307 0.433573 0.0535085 0.586724 2.58385 0 0.690477 3.3455 0 -0.969233 +0.8125 0.03125 0.10319 -0.0773952 1.18481 0.418297 0.138739 0.584533 2.53117 0 0.690477 3.3455 0 -0.969233 +0.84375 0.03125 0.103189 -0.0773941 1.18451 0.434947 0.143275 0.574995 2.58526 0 0.690477 3.3455 0 -0.969233 -0.84375 0 0.1 -0.075 1.21863 0.422597 0.0563536 0.581863 2.62729 0 0.7 3.34444 0 -1 -0.875 0 0.1 -0.075 1.21896 0.439694 0.0566524 0.569185 2.68461 0 0.7 3.34444 0 -1 +0.84375 0 0.1 -0.075 1.22 0.423851 0.144827 0.577847 2.6284 0 0.7 3.34444 0 -1 +0.875 0 0.1 -0.075 1.21964 0.441548 0.123182 0.565826 2.6858 0 0.7 3.34444 0 -1 -0.84375 0.03125 0.103177 -0.0773942 1.18307 0.433573 0.0535085 0.586724 2.58385 0 0.690477 3.3455 0 -0.969233 -0.875 0.03125 0.103177 -0.077392 1.1835 0.451197 0.0384833 0.576489 2.64122 0 0.690477 3.3455 0 -0.969233 +0.84375 0.03125 0.103189 -0.0773941 1.18451 0.435221 0.143275 0.574995 2.58526 0 0.690477 3.3455 0 -0.969233 +0.875 0.03125 0.103187 -0.0773927 1.18423 0.452917 0.128074 0.567123 2.64279 0 0.690477 3.3455 0 -0.969233 -0.8125 0.03125 0.103176 -0.0773963 1.18286 0.416932 0.068592 0.596768 2.52988 0 0.690477 3.3455 0 -0.969233 -0.84375 0.03125 0.103177 -0.0773942 1.18307 0.433573 0.0535085 0.586724 2.58385 0 0.690477 3.3455 0 -0.969233 +0.8125 0.03125 0.10319 -0.0773952 1.18481 0.417972 0.138739 0.584533 2.53117 0 0.690477 3.3455 0 -0.969233 +0.84375 0.03125 0.103189 -0.0773941 1.18451 0.435131 0.143275 0.574995 2.58526 0 0.690477 3.3455 0 -0.969233 -0.8125 0.0625 0.106452 -0.0798685 1.14722 0.42772 0.0325175 0.621259 2.48657 0 0.680652 3.34659 0 -0.939413 -0.84375 0.0625 0.106453 -0.079864 1.14758 0.444719 0.0377768 0.598687 2.54016 0 0.680652 3.34659 0 -0.939413 +0.8125 0.0625 0.106477 -0.0798649 1.14929 0.429019 0.137132 0.594983 2.48786 0 0.680652 3.34659 0 -0.939413 +0.84375 0.0625 0.106474 -0.0798625 1.14914 0.446177 0.138659 0.588597 2.54205 0 0.680652 3.34659 0 -0.939413 -0.84375 0.03125 0.103177 -0.0773942 1.18307 0.433573 0.0535085 0.586724 2.58385 0 0.690477 3.3455 0 -0.969233 -0.875 0.03125 0.103177 -0.077392 1.1835 0.451197 0.0384833 0.576489 2.64122 0 0.690477 3.3455 0 -0.969233 +0.84375 0.03125 0.103189 -0.0773941 1.18451 0.434858 0.143275 0.574995 2.58526 0 0.690477 3.3455 0 -0.969233 +0.875 0.03125 0.103187 -0.0773927 1.18423 0.453134 0.128074 0.567123 2.64279 0 0.690477 3.3455 0 -0.969233 -0.84375 0.0625 0.106453 -0.079864 1.14758 0.444719 0.0377768 0.598687 2.54016 0 0.680652 3.34659 0 -0.939413 -0.875 0.0625 0.106453 -0.0798593 1.14807 0.462914 0.0372175 0.59732 2.59763 0 0.680652 3.34659 0 -0.939413 +0.84375 0.0625 0.106474 -0.0798625 1.14914 0.44642 0.138659 0.588597 2.54205 0 0.680652 3.34659 0 -0.939413 +0.875 0.0625 0.106471 -0.0798594 1.14886 0.464696 0.134467 0.581572 2.59964 0 0.680652 3.34659 0 -0.939413 -0.75 0.0625 0.106452 -0.0798788 1.14645 0.396586 0.0722468 0.619848 2.38831 0 0.680652 3.34659 0 -0.939413 -0.78125 0.0625 0.106452 -0.0798731 1.14658 0.411743 0.0484164 0.64689 2.4359 0 0.680652 3.34659 0 -0.939413 +0.75 0.0625 0.106481 -0.0798686 1.14978 0.396911 0.140804 0.601176 2.38916 0 0.680652 3.34659 0 -0.939413 +0.78125 0.0625 0.106479 -0.0798671 1.14951 0.412533 0.142924 0.591841 2.43703 0 0.680652 3.34659 0 -0.939413 -0.75 0.09375 0.109832 -0.082434 1.11075 0.406649 0.0807368 0.637471 2.34494 0 0.670514 3.34772 0 -0.91051 -0.78125 0.09375 0.109832 -0.0824261 1.11087 0.42228 0.0555325 0.63165 2.39251 0 0.670514 3.34772 0 -0.91051 +0.75 0.09375 0.109871 -0.0824175 1.11401 0.407279 0.140439 0.6124 2.34588 0 0.670514 3.34772 0 -0.91051 +0.78125 0.09375 0.109868 -0.0824148 1.11398 0.422902 0.133228 0.617431 2.3938 0 0.670514 3.34772 0 -0.91051 -0.78125 0.0625 0.106452 -0.0798731 1.14658 0.411743 0.0484164 0.64689 2.4359 0 0.680652 3.34659 0 -0.939413 -0.8125 0.0625 0.106452 -0.0798685 1.14722 0.42772 0.0325175 0.621259 2.48657 0 0.680652 3.34659 0 -0.939413 +0.78125 0.0625 0.106479 -0.0798671 1.14951 0.412327 0.142924 0.591841 2.43703 0 0.680652 3.34659 0 -0.939413 +0.8125 0.0625 0.106477 -0.0798649 1.14929 0.428973 0.137132 0.594983 2.48786 0 0.680652 3.34659 0 -0.939413 -0.78125 0.09375 0.109832 -0.0824261 1.11087 0.42228 0.0555325 0.63165 2.39251 0 0.670514 3.34772 0 -0.91051 -0.8125 0.09375 0.109831 -0.0824185 1.11142 0.438806 0.0276652 0.637496 2.44321 0 0.670514 3.34772 0 -0.91051 +0.78125 0.09375 0.109868 -0.0824148 1.11398 0.423142 0.133228 0.617431 2.3938 0 0.670514 3.34772 0 -0.91051 +0.8125 0.09375 0.109865 -0.0824113 1.11377 0.439788 0.141368 0.615505 2.4448 0 0.670514 3.34772 0 -0.91051 -0.75 0.09375 0.109832 -0.082434 1.11075 0.406649 0.0807368 0.637471 2.34494 0 0.670514 3.34772 0 -0.91051 -0.78125 0.09375 0.109832 -0.0824261 1.11087 0.42228 0.0555325 0.63165 2.39251 0 0.670514 3.34772 0 -0.91051 +0.75 0.09375 0.109871 -0.0824175 1.11401 0.406959 0.140439 0.6124 2.34588 0 0.670514 3.34772 0 -0.91051 +0.78125 0.09375 0.109868 -0.0824148 1.11398 0.423097 0.133228 0.617431 2.3938 0 0.670514 3.34772 0 -0.91051 -0.75 0.125 0.113317 -0.0850693 1.07495 0.416837 0.0846618 0.658876 2.30114 0 0.660055 3.34888 0 -0.882497 -0.78125 0.125 0.113317 -0.0850589 1.07526 0.433027 0.0547119 0.654908 2.34907 0 0.660055 3.34888 0 -0.882497 +0.75 0.125 0.113364 -0.0850457 1.07867 0.417477 0.142083 0.653531 2.30263 0 0.660055 3.34888 0 -0.882497 +0.78125 0.125 0.113361 -0.0850416 1.07831 0.433615 0.153412 0.662328 2.35066 0 0.660055 3.34888 0 -0.882497 -0.78125 0.09375 0.109832 -0.0824261 1.11087 0.42228 0.0555325 0.63165 2.39251 0 0.670514 3.34772 0 -0.91051 -0.8125 0.09375 0.109831 -0.0824185 1.11142 0.438806 0.0276652 0.637496 2.44321 0 0.670514 3.34772 0 -0.91051 +0.78125 0.09375 0.109868 -0.0824148 1.11398 0.422798 0.133228 0.617431 2.3938 0 0.670514 3.34772 0 -0.91051 +0.8125 0.09375 0.109865 -0.0824113 1.11377 0.43998 0.141368 0.615505 2.4448 0 0.670514 3.34772 0 -0.91051 -0.78125 0.125 0.113317 -0.0850589 1.07526 0.433027 0.0547119 0.654908 2.34907 0 0.660055 3.34888 0 -0.882497 -0.8125 0.125 0.113317 -0.0850488 1.07571 0.450099 0.038076 0.657088 2.39975 0 0.660055 3.34888 0 -0.882497 +0.78125 0.125 0.113361 -0.0850416 1.07831 0.433934 0.153412 0.662328 2.35066 0 0.660055 3.34888 0 -0.882497 +0.8125 0.125 0.113357 -0.0850369 1.07812 0.451117 0.146478 0.657447 2.40169 0 0.660055 3.34888 0 -0.882497 -0.8125 0.0625 0.106452 -0.0798685 1.14722 0.42772 0.0325175 0.621259 2.48657 0 0.680652 3.34659 0 -0.939413 -0.84375 0.0625 0.106453 -0.079864 1.14758 0.444719 0.0377768 0.598687 2.54016 0 0.680652 3.34659 0 -0.939413 +0.8125 0.0625 0.106477 -0.0798649 1.14929 0.428674 0.137132 0.594983 2.48786 0 0.680652 3.34659 0 -0.939413 +0.84375 0.0625 0.106474 -0.0798625 1.14914 0.446368 0.138659 0.588597 2.54205 0 0.680652 3.34659 0 -0.939413 -0.8125 0.09375 0.109831 -0.0824185 1.11142 0.438806 0.0276652 0.637496 2.44321 0 0.670514 3.34772 0 -0.91051 -0.84375 0.09375 0.109832 -0.0824113 1.112 0.456273 0.0319365 0.627155 2.4968 0 0.670514 3.34772 0 -0.91051 +0.8125 0.09375 0.109865 -0.0824113 1.11377 0.440064 0.141368 0.615505 2.4448 0 0.670514 3.34772 0 -0.91051 +0.84375 0.09375 0.109861 -0.0824073 1.11356 0.457757 0.138958 0.615025 2.49884 0 0.670514 3.34772 0 -0.91051 -0.84375 0.0625 0.106453 -0.079864 1.14758 0.444719 0.0377768 0.598687 2.54016 0 0.680652 3.34659 0 -0.939413 -0.875 0.0625 0.106453 -0.0798593 1.14807 0.462914 0.0372175 0.59732 2.59763 0 0.680652 3.34659 0 -0.939413 +0.84375 0.0625 0.106474 -0.0798625 1.14914 0.44608 0.138659 0.588597 2.54205 0 0.680652 3.34659 0 -0.939413 +0.875 0.0625 0.106471 -0.0798594 1.14886 0.464926 0.134467 0.581572 2.59964 0 0.680652 3.34659 0 -0.939413 -0.84375 0.09375 0.109832 -0.0824113 1.112 0.456273 0.0319365 0.627155 2.4968 0 0.670514 3.34772 0 -0.91051 -0.875 0.09375 0.109832 -0.0824042 1.11243 0.475145 0.0464251 0.629459 2.55451 0 0.670514 3.34772 0 -0.91051 +0.84375 0.09375 0.109861 -0.0824073 1.11356 0.458049 0.138958 0.615025 2.49884 0 0.670514 3.34772 0 -0.91051 +0.875 0.09375 0.109856 -0.0824025 1.1134 0.476896 0.135824 0.619437 2.55676 0 0.670514 3.34772 0 -0.91051 -0.8125 0.09375 0.109831 -0.0824185 1.11142 0.438806 0.0276652 0.637496 2.44321 0 0.670514 3.34772 0 -0.91051 -0.84375 0.09375 0.109832 -0.0824113 1.112 0.456273 0.0319365 0.627155 2.4968 0 0.670514 3.34772 0 -0.91051 +0.8125 0.09375 0.109865 -0.0824113 1.11377 0.439718 0.141368 0.615505 2.4448 0 0.670514 3.34772 0 -0.91051 +0.84375 0.09375 0.109861 -0.0824073 1.11356 0.457977 0.138958 0.615025 2.49884 0 0.670514 3.34772 0 -0.91051 -0.8125 0.125 0.113317 -0.0850488 1.07571 0.450099 0.038076 0.657088 2.39975 0 0.660055 3.34888 0 -0.882497 -0.84375 0.125 0.113318 -0.0850387 1.07623 0.468273 0.0375779 0.66702 2.45373 0 0.660055 3.34888 0 -0.882497 +0.8125 0.125 0.113357 -0.0850369 1.07812 0.451388 0.146478 0.657447 2.40169 0 0.660055 3.34888 0 -0.882497 +0.84375 0.125 0.113352 -0.0850313 1.07794 0.469648 0.153152 0.65141 2.45594 0 0.660055 3.34888 0 -0.882497 -0.84375 0.09375 0.109832 -0.0824113 1.112 0.456273 0.0319365 0.627155 2.4968 0 0.670514 3.34772 0 -0.91051 -0.875 0.09375 0.109832 -0.0824042 1.11243 0.475145 0.0464251 0.629459 2.55451 0 0.670514 3.34772 0 -0.91051 +0.84375 0.09375 0.109861 -0.0824073 1.11356 0.457639 0.138958 0.615025 2.49884 0 0.670514 3.34772 0 -0.91051 +0.875 0.09375 0.109856 -0.0824025 1.1134 0.477131 0.135824 0.619437 2.55676 0 0.670514 3.34772 0 -0.91051 -0.84375 0.125 0.113318 -0.0850387 1.07623 0.468273 0.0375779 0.66702 2.45373 0 0.660055 3.34888 0 -0.882497 -0.875 0.125 0.113318 -0.085029 1.07666 0.487573 0.0413141 0.662536 2.51093 0 0.660055 3.34888 0 -0.882497 +0.84375 0.125 0.113352 -0.0850313 1.07794 0.469982 0.153152 0.65141 2.45594 0 0.660055 3.34888 0 -0.882497 +0.875 0.125 0.113346 -0.0850249 1.07758 0.489474 0.140612 0.654791 2.51377 0 0.660055 3.34888 0 -0.882497 -0.875 0 0.1 -0.075 1.21896 0.439694 0.0566524 0.569185 2.68461 0 0.7 3.34444 0 -1 -0.90625 0 0.1 -0.075 1.21921 0.45788 0.0608642 0.536213 2.74547 0 0.7 3.34444 0 -1 +0.875 0 0.1 -0.075 1.21964 0.441234 0.123182 0.565826 2.6858 0 0.7 3.34444 0 -1 +0.90625 0 0.1 -0.075 1.2197 0.459895 0.0999768 0.582835 2.74681 0 0.7 3.34444 0 -1 -0.875 0.03125 0.103177 -0.077392 1.1835 0.451197 0.0384833 0.576489 2.64122 0 0.690477 3.3455 0 -0.969233 -0.90625 0.03125 0.103177 -0.0773896 1.18402 0.469865 0.0580453 0.560966 2.70205 0 0.690477 3.3455 0 -0.969233 +0.875 0.03125 0.103187 -0.0773927 1.18423 0.453205 0.128074 0.567123 2.64279 0 0.690477 3.3455 0 -0.969233 +0.90625 0.03125 0.103185 -0.077391 1.18417 0.471866 0.10809 0.580567 2.70377 0 0.690477 3.3455 0 -0.969233 -0.90625 0 0.1 -0.075 1.21921 0.45788 0.0608642 0.536213 2.74547 0 0.7 3.34444 0 -1 -0.9375 0 0.1 -0.075 1.21948 0.477287 0.0671705 0.556264 2.81044 0 0.7 3.34444 0 -1 +0.90625 0 0.1 -0.075 1.2197 0.459576 0.0999768 0.582835 2.74681 0 0.7 3.34444 0 -1 +0.9375 0 0.1 -0.075 1.2197 0.479384 0.0954254 0.579929 2.81149 0 0.7 3.34444 0 -1 -0.90625 0.03125 0.103177 -0.0773896 1.18402 0.469865 0.0580453 0.560966 2.70205 0 0.690477 3.3455 0 -0.969233 -0.9375 0.03125 0.103177 -0.0773873 1.18411 0.489893 0.0863461 0.565528 2.76685 0 0.690477 3.3455 0 -0.969233 +0.90625 0.03125 0.103185 -0.077391 1.18417 0.472182 0.10809 0.580567 2.70377 0 0.690477 3.3455 0 -0.969233 +0.9375 0.03125 0.103182 -0.0773887 1.1842 0.49199 0.0981906 0.581248 2.76862 0 0.690477 3.3455 0 -0.969233 -0.875 0.03125 0.103177 -0.077392 1.1835 0.451197 0.0384833 0.576489 2.64122 0 0.690477 3.3455 0 -0.969233 -0.90625 0.03125 0.103177 -0.0773896 1.18402 0.469865 0.0580453 0.560966 2.70205 0 0.690477 3.3455 0 -0.969233 +0.875 0.03125 0.103187 -0.0773927 1.18423 0.452804 0.128074 0.567123 2.64279 0 0.690477 3.3455 0 -0.969233 +0.90625 0.03125 0.103185 -0.077391 1.18417 0.472132 0.10809 0.580567 2.70377 0 0.690477 3.3455 0 -0.969233 -0.875 0.0625 0.106453 -0.0798593 1.14807 0.462914 0.0372175 0.59732 2.59763 0 0.680652 3.34659 0 -0.939413 -0.90625 0.0625 0.106453 -0.0798544 1.14853 0.482254 0.0574101 0.604123 2.65865 0 0.680652 3.34659 0 -0.939413 +0.875 0.0625 0.106471 -0.0798594 1.14886 0.465014 0.134467 0.581572 2.59964 0 0.680652 3.34659 0 -0.939413 +0.90625 0.0625 0.106467 -0.0798558 1.14874 0.484342 0.117352 0.588565 2.66091 0 0.680652 3.34659 0 -0.939413 -0.90625 0.03125 0.103177 -0.0773896 1.18402 0.469865 0.0580453 0.560966 2.70205 0 0.690477 3.3455 0 -0.969233 -0.9375 0.03125 0.103177 -0.0773873 1.18411 0.489893 0.0863461 0.565528 2.76685 0 0.690477 3.3455 0 -0.969233 +0.90625 0.03125 0.103185 -0.077391 1.18417 0.471754 0.10809 0.580567 2.70377 0 0.690477 3.3455 0 -0.969233 +0.9375 0.03125 0.103182 -0.0773887 1.1842 0.492261 0.0981906 0.581248 2.76862 0 0.690477 3.3455 0 -0.969233 -0.90625 0.0625 0.106453 -0.0798544 1.14853 0.482254 0.0574101 0.604123 2.65865 0 0.680652 3.34659 0 -0.939413 -0.9375 0.0625 0.106453 -0.0798497 1.14871 0.50297 0.0830935 0.582438 2.7237 0 0.680652 3.34659 0 -0.939413 +0.90625 0.0625 0.106467 -0.0798558 1.14874 0.484685 0.117352 0.588565 2.66091 0 0.680652 3.34659 0 -0.939413 +0.9375 0.0625 0.106462 -0.0798513 1.14874 0.505193 0.105252 0.595411 2.72592 0 0.680652 3.34659 0 -0.939413 -0.9375 0 0.1 -0.075 1.21948 0.477287 0.0671705 0.556264 2.81044 0 0.7 3.34444 0 -1 -0.96875 0 0.1 -0.075 1.21967 0.497849 0.0821305 0.57119 2.87916 0 0.7 3.34444 0 -1 +0.9375 0 0.1 -0.075 1.2197 0.479043 0.0954254 0.579929 2.81149 0 0.7 3.34444 0 -1 +0.96875 0 0.1 -0.075 1.21976 0.500042 0.0914375 0.581116 2.87961 0 0.7 3.34444 0 -1 -0.9375 0.03125 0.103177 -0.0773873 1.18411 0.489893 0.0863461 0.565528 2.76685 0 0.690477 3.3455 0 -0.969233 -0.96875 0.03125 0.103177 -0.0773846 1.18417 0.511352 0.0946397 0.573243 2.83624 0 0.690477 3.3455 0 -0.969233 +0.9375 0.03125 0.103182 -0.0773887 1.1842 0.492338 0.0981906 0.581248 2.76862 0 0.690477 3.3455 0 -0.969233 +0.96875 0.03125 0.103179 -0.0773858 1.18427 0.513338 0.0967203 0.58481 2.8375 0 0.690477 3.3455 0 -0.969233 -0.96875 0 0.1 -0.075 1.21967 0.497849 0.0821305 0.57119 2.87916 0 0.7 3.34444 0 -1 -1 0 0.1 -0.075 1.2197 0.519614 0.090933 0.573319 2.95174 0 0.7 3.34444 0 -1 +0.96875 0 0.1 -0.075 1.21976 0.499522 0.0914375 0.581116 2.87961 0 0.7 3.34444 0 -1 +1 0 0.1 -0.075 1.21982 0.521764 0.0908695 0.584068 2.95357 0 0.7 3.34444 0 -1 -0.96875 0.03125 0.103177 -0.0773846 1.18417 0.511352 0.0946397 0.573243 2.83624 0 0.690477 3.3455 0 -0.969233 -1 0.03125 0.103174 -0.0773808 1.1842 0.534143 0.0971744 0.579635 2.9099 0 0.690477 3.3455 0 -0.969233 +0.96875 0.03125 0.103179 -0.0773858 1.18427 0.513832 0.0967203 0.58481 2.8375 0 0.690477 3.3455 0 -0.969233 +1 0.03125 0.103174 -0.0773808 1.1843 0.536074 0.0978537 0.584277 2.91241 0 0.690477 3.3455 0 -0.969233 -0.9375 0.03125 0.103177 -0.0773873 1.18411 0.489893 0.0863461 0.565528 2.76685 0 0.690477 3.3455 0 -0.969233 -0.96875 0.03125 0.103177 -0.0773846 1.18417 0.511352 0.0946397 0.573243 2.83624 0 0.690477 3.3455 0 -0.969233 +0.9375 0.03125 0.103182 -0.0773887 1.1842 0.491879 0.0981906 0.581248 2.76862 0 0.690477 3.3455 0 -0.969233 +0.96875 0.03125 0.103179 -0.0773858 1.18427 0.513674 0.0967203 0.58481 2.8375 0 0.690477 3.3455 0 -0.969233 -0.9375 0.0625 0.106453 -0.0798497 1.14871 0.50297 0.0830935 0.582438 2.7237 0 0.680652 3.34659 0 -0.939413 -0.96875 0.0625 0.106452 -0.079844 1.1488 0.525094 0.101765 0.585073 2.79307 0 0.680652 3.34659 0 -0.939413 +0.9375 0.0625 0.106462 -0.0798513 1.14874 0.505572 0.105252 0.595411 2.72592 0 0.680652 3.34659 0 -0.939413 +0.96875 0.0625 0.106456 -0.0798454 1.14877 0.527367 0.0977864 0.606057 2.79522 0 0.680652 3.34659 0 -0.939413 -0.96875 0.03125 0.103177 -0.0773846 1.18417 0.511352 0.0946397 0.573243 2.83624 0 0.690477 3.3455 0 -0.969233 -1 0.03125 0.103174 -0.0773808 1.1842 0.534143 0.0971744 0.579635 2.9099 0 0.690477 3.3455 0 -0.969233 +0.96875 0.03125 0.103179 -0.0773858 1.18427 0.513244 0.0967203 0.58481 2.8375 0 0.690477 3.3455 0 -0.969233 +1 0.03125 0.103174 -0.0773808 1.1843 0.53649 0.0978537 0.584277 2.91241 0 0.690477 3.3455 0 -0.969233 -0.96875 0.0625 0.106452 -0.079844 1.1488 0.525094 0.101765 0.585073 2.79307 0 0.680652 3.34659 0 -0.939413 -1 0.0625 0.106449 -0.0798371 1.14874 0.548767 0.111289 0.593095 2.86714 0 0.680652 3.34659 0 -0.939413 +0.96875 0.0625 0.106456 -0.0798454 1.14877 0.527762 0.0977864 0.606057 2.79522 0 0.680652 3.34659 0 -0.939413 +1 0.0625 0.106449 -0.0798371 1.14886 0.551008 0.0939617 0.609547 2.87047 0 0.680652 3.34659 0 -0.939413 -0.875 0.0625 0.106453 -0.0798593 1.14807 0.462914 0.0372175 0.59732 2.59763 0 0.680652 3.34659 0 -0.939413 -0.90625 0.0625 0.106453 -0.0798544 1.14853 0.482254 0.0574101 0.604123 2.65865 0 0.680652 3.34659 0 -0.939413 +0.875 0.0625 0.106471 -0.0798594 1.14886 0.464608 0.134467 0.581572 2.59964 0 0.680652 3.34659 0 -0.939413 +0.90625 0.0625 0.106467 -0.0798558 1.14874 0.484613 0.117352 0.588565 2.66091 0 0.680652 3.34659 0 -0.939413 -0.875 0.09375 0.109832 -0.0824042 1.11243 0.475145 0.0464251 0.629459 2.55451 0 0.670514 3.34772 0 -0.91051 -0.90625 0.09375 0.109832 -0.0823969 1.11276 0.495122 0.0510746 0.628318 2.61548 0 0.670514 3.34772 0 -0.91051 +0.875 0.09375 0.109856 -0.0824025 1.1134 0.477206 0.135824 0.619437 2.55676 0 0.670514 3.34772 0 -0.91051 +0.90625 0.09375 0.10985 -0.0823971 1.11322 0.497211 0.129293 0.609523 2.61797 0 0.670514 3.34772 0 -0.91051 -0.90625 0.0625 0.106453 -0.0798544 1.14853 0.482254 0.0574101 0.604123 2.65865 0 0.680652 3.34659 0 -0.939413 -0.9375 0.0625 0.106453 -0.0798497 1.14871 0.50297 0.0830935 0.582438 2.7237 0 0.680652 3.34659 0 -0.939413 +0.90625 0.0625 0.106467 -0.0798558 1.14874 0.48427 0.117352 0.588565 2.66091 0 0.680652 3.34659 0 -0.939413 +0.9375 0.0625 0.106462 -0.0798513 1.14874 0.505505 0.105252 0.595411 2.72592 0 0.680652 3.34659 0 -0.939413 -0.90625 0.09375 0.109832 -0.0823969 1.11276 0.495122 0.0510746 0.628318 2.61548 0 0.670514 3.34772 0 -0.91051 -0.9375 0.09375 0.109832 -0.0823893 1.11322 0.51639 0.0742312 0.608406 2.68048 0 0.670514 3.34772 0 -0.91051 +0.90625 0.09375 0.10985 -0.0823971 1.11322 0.49755 0.129293 0.609523 2.61797 0 0.670514 3.34772 0 -0.91051 +0.9375 0.09375 0.109844 -0.0823904 1.11316 0.518786 0.122483 0.621011 2.68321 0 0.670514 3.34772 0 -0.91051 -0.875 0.09375 0.109832 -0.0824042 1.11243 0.475145 0.0464251 0.629459 2.55451 0 0.670514 3.34772 0 -0.91051 -0.90625 0.09375 0.109832 -0.0823969 1.11276 0.495122 0.0510746 0.628318 2.61548 0 0.670514 3.34772 0 -0.91051 +0.875 0.09375 0.109856 -0.0824025 1.1134 0.476824 0.135824 0.619437 2.55676 0 0.670514 3.34772 0 -0.91051 +0.90625 0.09375 0.10985 -0.0823971 1.11322 0.49743 0.129293 0.609523 2.61797 0 0.670514 3.34772 0 -0.91051 -0.875 0.125 0.113318 -0.085029 1.07666 0.487573 0.0413141 0.662536 2.51093 0 0.660055 3.34888 0 -0.882497 -0.90625 0.125 0.113318 -0.0850191 1.07712 0.508252 0.0444095 0.648241 2.57222 0 0.660055 3.34888 0 -0.882497 +0.875 0.125 0.113346 -0.0850249 1.07758 0.489819 0.140612 0.654791 2.51377 0 0.660055 3.34888 0 -0.882497 +0.90625 0.125 0.11334 -0.0850177 1.07761 0.510425 0.128206 0.637746 2.57502 0 0.660055 3.34888 0 -0.882497 -0.90625 0.09375 0.109832 -0.0823969 1.11276 0.495122 0.0510746 0.628318 2.61548 0 0.670514 3.34772 0 -0.91051 -0.9375 0.09375 0.109832 -0.0823893 1.11322 0.51639 0.0742312 0.608406 2.68048 0 0.670514 3.34772 0 -0.91051 +0.90625 0.09375 0.10985 -0.0823971 1.11322 0.497108 0.129293 0.609523 2.61797 0 0.670514 3.34772 0 -0.91051 +0.9375 0.09375 0.109844 -0.0823904 1.11316 0.519082 0.122483 0.621011 2.68321 0 0.670514 3.34772 0 -0.91051 -0.90625 0.125 0.113318 -0.0850191 1.07712 0.508252 0.0444095 0.648241 2.57222 0 0.660055 3.34888 0 -0.882497 -0.9375 0.125 0.113318 -0.0850089 1.07758 0.53025 0.0691544 0.638857 2.63739 0 0.660055 3.34888 0 -0.882497 +0.90625 0.125 0.11334 -0.0850177 1.07761 0.510759 0.128206 0.637746 2.57502 0 0.660055 3.34888 0 -0.882497 +0.9375 0.125 0.113332 -0.085009 1.07745 0.532733 0.135638 0.650957 2.64045 0 0.660055 3.34888 0 -0.882497 -0.9375 0.0625 0.106453 -0.0798497 1.14871 0.50297 0.0830935 0.582438 2.7237 0 0.680652 3.34659 0 -0.939413 -0.96875 0.0625 0.106452 -0.079844 1.1488 0.525094 0.101765 0.585073 2.79307 0 0.680652 3.34659 0 -0.939413 +0.9375 0.0625 0.106462 -0.0798513 1.14874 0.50509 0.105252 0.595411 2.72592 0 0.680652 3.34659 0 -0.939413 +0.96875 0.0625 0.106456 -0.0798454 1.14877 0.527712 0.0977864 0.606057 2.79522 0 0.680652 3.34659 0 -0.939413 -0.9375 0.09375 0.109832 -0.0823893 1.11322 0.51639 0.0742312 0.608406 2.68048 0 0.670514 3.34772 0 -0.91051 -0.96875 0.09375 0.109831 -0.082381 1.11325 0.539268 0.111005 0.60709 2.74995 0 0.670514 3.34772 0 -0.91051 +0.9375 0.09375 0.109844 -0.0823904 1.11316 0.51916 0.122483 0.621011 2.68321 0 0.670514 3.34772 0 -0.91051 +0.96875 0.09375 0.109837 -0.0823819 1.11307 0.541782 0.117269 0.633063 2.75273 0 0.670514 3.34772 0 -0.91051 -0.96875 0.0625 0.106452 -0.079844 1.1488 0.525094 0.101765 0.585073 2.79307 0 0.680652 3.34659 0 -0.939413 -1 0.0625 0.106449 -0.0798371 1.14874 0.548767 0.111289 0.593095 2.86714 0 0.680652 3.34659 0 -0.939413 +0.96875 0.0625 0.106456 -0.0798454 1.14877 0.527273 0.0977864 0.606057 2.79522 0 0.680652 3.34659 0 -0.939413 +1 0.0625 0.106449 -0.0798371 1.14886 0.551344 0.0939617 0.609547 2.87047 0 0.680652 3.34659 0 -0.939413 -0.96875 0.09375 0.109831 -0.082381 1.11325 0.539268 0.111005 0.60709 2.74995 0 0.670514 3.34772 0 -0.91051 -1 0.09375 0.109829 -0.0823714 1.11313 0.56378 0.123221 0.600728 2.82422 0 0.670514 3.34772 0 -0.91051 +0.96875 0.09375 0.109837 -0.0823819 1.11307 0.5422 0.117269 0.633063 2.75273 0 0.670514 3.34772 0 -0.91051 +1 0.09375 0.109829 -0.0823714 1.11307 0.566271 0.112336 0.644542 2.82821 0 0.670514 3.34772 0 -0.91051 -0.9375 0.09375 0.109832 -0.0823893 1.11322 0.51639 0.0742312 0.608406 2.68048 0 0.670514 3.34772 0 -0.91051 -0.96875 0.09375 0.109831 -0.082381 1.11325 0.539268 0.111005 0.60709 2.74995 0 0.670514 3.34772 0 -0.91051 +0.9375 0.09375 0.109844 -0.0823904 1.11316 0.51868 0.122483 0.621011 2.68321 0 0.670514 3.34772 0 -0.91051 +0.96875 0.09375 0.109837 -0.0823819 1.11307 0.542102 0.117269 0.633063 2.75273 0 0.670514 3.34772 0 -0.91051 -0.9375 0.125 0.113318 -0.0850089 1.07758 0.53025 0.0691544 0.638857 2.63739 0 0.660055 3.34888 0 -0.882497 -0.96875 0.125 0.113317 -0.084998 1.07767 0.553869 0.0956142 0.627987 2.70696 0 0.660055 3.34888 0 -0.882497 +0.9375 0.125 0.113332 -0.085009 1.07745 0.533126 0.135638 0.650957 2.64045 0 0.660055 3.34888 0 -0.882497 +0.96875 0.125 0.113324 -0.0849985 1.0773 0.556548 0.133022 0.654223 2.71019 0 0.660055 3.34888 0 -0.882497 -0.96875 0.09375 0.109831 -0.082381 1.11325 0.539268 0.111005 0.60709 2.74995 0 0.670514 3.34772 0 -0.91051 -1 0.09375 0.109829 -0.0823714 1.11313 0.56378 0.123221 0.600728 2.82422 0 0.670514 3.34772 0 -0.91051 +0.96875 0.09375 0.109837 -0.0823819 1.11307 0.541676 0.117269 0.633063 2.75273 0 0.670514 3.34772 0 -0.91051 +1 0.09375 0.109829 -0.0823714 1.11307 0.566612 0.112336 0.644542 2.82821 0 0.670514 3.34772 0 -0.91051 -0.96875 0.125 0.113317 -0.084998 1.07767 0.553869 0.0956142 0.627987 2.70696 0 0.660055 3.34888 0 -0.882497 -1 0.125 0.113315 -0.0849861 1.07773 0.579083 0.100808 0.620135 2.78119 0 0.660055 3.34888 0 -0.882497 +0.96875 0.125 0.113324 -0.0849985 1.0773 0.556955 0.133022 0.654223 2.71019 0 0.660055 3.34888 0 -0.882497 +1 0.125 0.113315 -0.0849861 1.07721 0.58189 0.129812 0.661047 2.78568 0 0.660055 3.34888 0 -0.882497 -0.75 0.125 0.113317 -0.0850693 1.07495 0.416837 0.0846618 0.658876 2.30114 0 0.660055 3.34888 0 -0.882497 -0.78125 0.125 0.113317 -0.0850589 1.07526 0.433027 0.0547119 0.654908 2.34907 0 0.660055 3.34888 0 -0.882497 +0.75 0.125 0.113364 -0.0850457 1.07867 0.417108 0.142083 0.653531 2.30263 0 0.660055 3.34888 0 -0.882497 +0.78125 0.125 0.113361 -0.0850416 1.07831 0.433836 0.153412 0.662328 2.35066 0 0.660055 3.34888 0 -0.882497 -0.75 0.15625 0.116913 -0.0877866 1.03912 0.427496 0.10411 0.693912 2.25798 0 0.649264 3.35008 0 -0.855345 -0.78125 0.15625 0.116913 -0.0877739 1.03928 0.444226 0.0621189 0.686687 2.30583 0 0.649264 3.35008 0 -0.855345 +0.75 0.15625 0.116967 -0.0877562 1.04248 0.428222 0.154199 0.712913 2.25969 0 0.649264 3.35008 0 -0.855345 +0.78125 0.15625 0.116963 -0.0877505 1.04227 0.444951 0.145083 0.702485 2.30771 0 0.649264 3.35008 0 -0.855345 -0.78125 0.125 0.113317 -0.0850589 1.07526 0.433027 0.0547119 0.654908 2.34907 0 0.660055 3.34888 0 -0.882497 -0.8125 0.125 0.113317 -0.0850488 1.07571 0.450099 0.038076 0.657088 2.39975 0 0.660055 3.34888 0 -0.882497 +0.78125 0.125 0.113361 -0.0850416 1.07831 0.4336 0.153412 0.662328 2.35066 0 0.660055 3.34888 0 -0.882497 +0.8125 0.125 0.113357 -0.0850369 1.07812 0.451311 0.146478 0.657447 2.40169 0 0.660055 3.34888 0 -0.882497 -0.78125 0.15625 0.116913 -0.0877739 1.03928 0.444226 0.0621189 0.686687 2.30583 0 0.649264 3.35008 0 -0.855345 -0.8125 0.15625 0.116913 -0.0877612 1.03986 0.461866 0.0428151 0.703212 2.35671 0 0.649264 3.35008 0 -0.855345 +0.78125 0.15625 0.116963 -0.0877505 1.04227 0.445193 0.145083 0.702485 2.30771 0 0.649264 3.35008 0 -0.855345 +0.8125 0.15625 0.116958 -0.0877443 1.04214 0.462904 0.137602 0.704922 2.35854 0 0.649264 3.35008 0 -0.855345 -0.75 0.15625 0.116913 -0.0877866 1.03912 0.427496 0.10411 0.693912 2.25798 0 0.649264 3.35008 0 -0.855345 -0.78125 0.15625 0.116913 -0.0877739 1.03928 0.444226 0.0621189 0.686687 2.30583 0 0.649264 3.35008 0 -0.855345 +0.75 0.15625 0.116967 -0.0877562 1.04248 0.427897 0.154199 0.712913 2.25969 0 0.649264 3.35008 0 -0.855345 +0.78125 0.15625 0.116963 -0.0877505 1.04227 0.445113 0.145083 0.702485 2.30771 0 0.649264 3.35008 0 -0.855345 -0.75 0.1875 0.120623 -0.0905902 1.0029 0.438466 0.105273 0.703332 2.21457 0 0.638131 3.35132 0 -0.829029 -0.78125 0.1875 0.120624 -0.0905746 1.00333 0.455742 0.0700307 0.702985 2.26274 0 0.638131 3.35132 0 -0.829029 +0.75 0.1875 0.120681 -0.0905517 1.00638 0.439236 0.142324 0.739598 2.21668 0 0.638131 3.35132 0 -0.829029 +0.78125 0.1875 0.120676 -0.0905446 1.00623 0.456451 0.153055 0.738508 2.26469 0 0.638131 3.35132 0 -0.829029 -0.78125 0.15625 0.116913 -0.0877739 1.03928 0.444226 0.0621189 0.686687 2.30583 0 0.649264 3.35008 0 -0.855345 -0.8125 0.15625 0.116913 -0.0877612 1.03986 0.461866 0.0428151 0.703212 2.35671 0 0.649264 3.35008 0 -0.855345 +0.78125 0.15625 0.116963 -0.0877505 1.04227 0.444852 0.145083 0.702485 2.30771 0 0.649264 3.35008 0 -0.855345 +0.8125 0.15625 0.116958 -0.0877443 1.04214 0.463136 0.137602 0.704922 2.35854 0 0.649264 3.35008 0 -0.855345 -0.78125 0.1875 0.120624 -0.0905746 1.00333 0.455742 0.0700307 0.702985 2.26274 0 0.638131 3.35132 0 -0.829029 -0.8125 0.1875 0.120624 -0.090559 1.00357 0.473935 0.0580779 0.730685 2.31326 0 0.638131 3.35132 0 -0.829029 +0.78125 0.1875 0.120676 -0.0905446 1.00623 0.45675 0.153055 0.738508 2.26469 0 0.638131 3.35132 0 -0.829029 +0.8125 0.1875 0.120671 -0.0905369 1.00598 0.475034 0.159911 0.737304 2.31589 0 0.638131 3.35132 0 -0.829029 -0.8125 0.125 0.113317 -0.0850488 1.07571 0.450099 0.038076 0.657088 2.39975 0 0.660055 3.34888 0 -0.882497 -0.84375 0.125 0.113318 -0.0850387 1.07623 0.468273 0.0375779 0.66702 2.45373 0 0.660055 3.34888 0 -0.882497 +0.8125 0.125 0.113357 -0.0850369 1.07812 0.45105 0.146478 0.657447 2.40169 0 0.660055 3.34888 0 -0.882497 +0.84375 0.125 0.113352 -0.0850313 1.07794 0.469916 0.153152 0.65141 2.45594 0 0.660055 3.34888 0 -0.882497 -0.8125 0.15625 0.116913 -0.0877612 1.03986 0.461866 0.0428151 0.703212 2.35671 0 0.649264 3.35008 0 -0.855345 -0.84375 0.15625 0.116914 -0.0877485 1.04022 0.480557 0.0395274 0.704006 2.41036 0 0.649264 3.35008 0 -0.855345 +0.8125 0.15625 0.116958 -0.0877443 1.04214 0.463179 0.137602 0.704922 2.35854 0 0.649264 3.35008 0 -0.855345 +0.84375 0.15625 0.116952 -0.0877373 1.04205 0.482045 0.14205 0.70896 2.41293 0 0.649264 3.35008 0 -0.855345 -0.84375 0.125 0.113318 -0.0850387 1.07623 0.468273 0.0375779 0.66702 2.45373 0 0.660055 3.34888 0 -0.882497 -0.875 0.125 0.113318 -0.085029 1.07666 0.487573 0.0413141 0.662536 2.51093 0 0.660055 3.34888 0 -0.882497 +0.84375 0.125 0.113352 -0.0850313 1.07794 0.4696 0.153152 0.65141 2.45594 0 0.660055 3.34888 0 -0.882497 +0.875 0.125 0.113346 -0.0850249 1.07758 0.489763 0.140612 0.654791 2.51377 0 0.660055 3.34888 0 -0.882497 -0.84375 0.15625 0.116914 -0.0877485 1.04022 0.480557 0.0395274 0.704006 2.41036 0 0.649264 3.35008 0 -0.855345 -0.875 0.15625 0.116914 -0.0877361 1.04077 0.500669 0.0290263 0.714056 2.46825 0 0.649264 3.35008 0 -0.855345 +0.84375 0.15625 0.116952 -0.0877373 1.04205 0.482308 0.14205 0.70896 2.41293 0 0.649264 3.35008 0 -0.855345 +0.875 0.15625 0.116945 -0.0877294 1.04181 0.502471 0.13605 0.695976 2.47091 0 0.649264 3.35008 0 -0.855345 -0.8125 0.15625 0.116913 -0.0877612 1.03986 0.461866 0.0428151 0.703212 2.35671 0 0.649264 3.35008 0 -0.855345 -0.84375 0.15625 0.116914 -0.0877485 1.04022 0.480557 0.0395274 0.704006 2.41036 0 0.649264 3.35008 0 -0.855345 +0.8125 0.15625 0.116958 -0.0877443 1.04214 0.462766 0.137602 0.704922 2.35854 0 0.649264 3.35008 0 -0.855345 +0.84375 0.15625 0.116952 -0.0877373 1.04205 0.482265 0.14205 0.70896 2.41293 0 0.649264 3.35008 0 -0.855345 -0.8125 0.1875 0.120624 -0.090559 1.00357 0.473935 0.0580779 0.730685 2.31326 0 0.638131 3.35132 0 -0.829029 -0.84375 0.1875 0.120624 -0.0905437 1.00409 0.49338 0.0523756 0.724594 2.36751 0 0.638131 3.35132 0 -0.829029 +0.8125 0.1875 0.120671 -0.0905369 1.00598 0.475415 0.159911 0.737304 2.31589 0 0.638131 3.35132 0 -0.829029 +0.84375 0.1875 0.120664 -0.0905285 1.00571 0.494914 0.149309 0.736525 2.37029 0 0.638131 3.35132 0 -0.829029 -0.84375 0.15625 0.116914 -0.0877485 1.04022 0.480557 0.0395274 0.704006 2.41036 0 0.649264 3.35008 0 -0.855345 -0.875 0.15625 0.116914 -0.0877361 1.04077 0.500669 0.0290263 0.714056 2.46825 0 0.649264 3.35008 0 -0.855345 +0.84375 0.15625 0.116952 -0.0877373 1.04205 0.481918 0.14205 0.70896 2.41293 0 0.649264 3.35008 0 -0.855345 +0.875 0.15625 0.116945 -0.0877294 1.04181 0.502662 0.13605 0.695976 2.47091 0 0.649264 3.35008 0 -0.855345 -0.84375 0.1875 0.120624 -0.0905437 1.00409 0.49338 0.0523756 0.724594 2.36751 0 0.638131 3.35132 0 -0.829029 -0.875 0.1875 0.120625 -0.0905284 1.00436 0.514094 0.0403709 0.740083 2.42503 0 0.638131 3.35132 0 -0.829029 +0.84375 0.1875 0.120664 -0.0905285 1.00571 0.495226 0.149309 0.736525 2.37029 0 0.638131 3.35132 0 -0.829029 +0.875 0.1875 0.120657 -0.0905189 1.00555 0.51597 0.109728 0.725676 2.42776 0 0.638131 3.35132 0 -0.829029 -0.75 0.1875 0.120623 -0.0905902 1.0029 0.438466 0.105273 0.703332 2.21457 0 0.638131 3.35132 0 -0.829029 -0.78125 0.1875 0.120624 -0.0905746 1.00333 0.455742 0.0700307 0.702985 2.26274 0 0.638131 3.35132 0 -0.829029 +0.75 0.1875 0.120681 -0.0905517 1.00638 0.438893 0.142324 0.739598 2.21668 0 0.638131 3.35132 0 -0.829029 +0.78125 0.1875 0.120676 -0.0905446 1.00623 0.45667 0.153055 0.738508 2.26469 0 0.638131 3.35132 0 -0.829029 -0.75 0.21875 0.12445 -0.0934804 0.967133 0.449762 0.112677 0.697882 2.17178 0 0.626644 3.3526 0 -0.803523 -0.78125 0.21875 0.124451 -0.0934626 0.967346 0.467413 0.0923834 0.724958 2.21927 0 0.626644 3.3526 0 -0.803523 +0.75 0.21875 0.124511 -0.0934351 0.970123 0.450618 0.154464 0.772555 2.17373 0 0.626644 3.3526 0 -0.803523 +0.78125 0.21875 0.124506 -0.0934265 0.96991 0.468396 0.152244 0.776044 2.22172 0 0.626644 3.3526 0 -0.803523 -0.78125 0.1875 0.120624 -0.0905746 1.00333 0.455742 0.0700307 0.702985 2.26274 0 0.638131 3.35132 0 -0.829029 -0.8125 0.1875 0.120624 -0.090559 1.00357 0.473935 0.0580779 0.730685 2.31326 0 0.638131 3.35132 0 -0.829029 +0.78125 0.1875 0.120676 -0.0905446 1.00623 0.456356 0.153055 0.738508 2.26469 0 0.638131 3.35132 0 -0.829029 +0.8125 0.1875 0.120671 -0.0905369 1.00598 0.475263 0.159911 0.737304 2.31589 0 0.638131 3.35132 0 -0.829029 -0.78125 0.21875 0.124451 -0.0934626 0.967346 0.467413 0.0923834 0.724958 2.21927 0 0.626644 3.3526 0 -0.803523 -0.8125 0.21875 0.124452 -0.0934447 0.967499 0.486473 0.0692107 0.730267 2.27047 0 0.626644 3.3526 0 -0.803523 +0.78125 0.21875 0.124506 -0.0934265 0.96991 0.46865 0.152244 0.776044 2.22172 0 0.626644 3.3526 0 -0.803523 +0.8125 0.21875 0.1245 -0.0934175 0.969788 0.487557 0.146022 0.767093 2.27286 0 0.626644 3.3526 0 -0.803523 -0.75 0.21875 0.12445 -0.0934804 0.967133 0.449762 0.112677 0.697882 2.17178 0 0.626644 3.3526 0 -0.803523 -0.78125 0.21875 0.124451 -0.0934626 0.967346 0.467413 0.0923834 0.724958 2.21927 0 0.626644 3.3526 0 -0.803523 +0.75 0.21875 0.124511 -0.0934351 0.970123 0.450231 0.154464 0.772555 2.17373 0 0.626644 3.3526 0 -0.803523 +0.78125 0.21875 0.124506 -0.0934265 0.96991 0.468591 0.152244 0.776044 2.22172 0 0.626644 3.3526 0 -0.803523 -0.75 0.25 0.128398 -0.0964598 0.931305 0.461028 0.124986 0.745089 2.12813 0 0.614792 3.35391 0 -0.778801 -0.78125 0.25 0.1284 -0.0964403 0.931274 0.479544 0.108574 0.75123 2.17617 0 0.614792 3.35391 0 -0.778801 +0.75 0.25 0.128462 -0.0964089 0.933746 0.462294 0.164259 0.799062 2.13076 0 0.614792 3.35391 0 -0.778801 +0.78125 0.25 0.128457 -0.0963989 0.933533 0.480654 0.155957 0.80035 2.17889 0 0.614792 3.35391 0 -0.778801 -0.78125 0.21875 0.124451 -0.0934626 0.967346 0.467413 0.0923834 0.724958 2.21927 0 0.626644 3.3526 0 -0.803523 -0.8125 0.21875 0.124452 -0.0934447 0.967499 0.486473 0.0692107 0.730267 2.27047 0 0.626644 3.3526 0 -0.803523 +0.78125 0.21875 0.124506 -0.0934265 0.96991 0.468265 0.152244 0.776044 2.22172 0 0.626644 3.3526 0 -0.803523 +0.8125 0.21875 0.1245 -0.0934175 0.969788 0.487756 0.146022 0.767093 2.27286 0 0.626644 3.3526 0 -0.803523 -0.78125 0.25 0.1284 -0.0964403 0.931274 0.479544 0.108574 0.75123 2.17617 0 0.614792 3.35391 0 -0.778801 -0.8125 0.25 0.1284 -0.0964204 0.931519 0.499116 0.0874465 0.754719 2.22722 0 0.614792 3.35391 0 -0.778801 +0.78125 0.25 0.128457 -0.0963989 0.933533 0.480917 0.155957 0.80035 2.17889 0 0.614792 3.35391 0 -0.778801 +0.8125 0.25 0.12845 -0.0963886 0.933411 0.500408 0.140487 0.789219 2.22984 0 0.614792 3.35391 0 -0.778801 -0.8125 0.1875 0.120624 -0.090559 1.00357 0.473935 0.0580779 0.730685 2.31326 0 0.638131 3.35132 0 -0.829029 -0.84375 0.1875 0.120624 -0.0905437 1.00409 0.49338 0.0523756 0.724594 2.36751 0 0.638131 3.35132 0 -0.829029 +0.8125 0.1875 0.120671 -0.0905369 1.00598 0.475011 0.159911 0.737304 2.31589 0 0.638131 3.35132 0 -0.829029 +0.84375 0.1875 0.120664 -0.0905285 1.00571 0.495143 0.149309 0.736525 2.37029 0 0.638131 3.35132 0 -0.829029 -0.8125 0.21875 0.124452 -0.0934447 0.967499 0.486473 0.0692107 0.730267 2.27047 0 0.626644 3.3526 0 -0.803523 -0.84375 0.21875 0.124452 -0.093427 0.968018 0.506427 0.0549605 0.744602 2.32443 0 0.626644 3.3526 0 -0.803523 +0.8125 0.21875 0.1245 -0.0934175 0.969788 0.487809 0.146022 0.767093 2.27286 0 0.626644 3.3526 0 -0.803523 +0.84375 0.21875 0.124493 -0.0934077 0.969666 0.507942 0.142504 0.749108 2.32708 0 0.626644 3.3526 0 -0.803523 -0.84375 0.1875 0.120624 -0.0905437 1.00409 0.49338 0.0523756 0.724594 2.36751 0 0.638131 3.35132 0 -0.829029 -0.875 0.1875 0.120625 -0.0905284 1.00436 0.514094 0.0403709 0.740083 2.42503 0 0.638131 3.35132 0 -0.829029 +0.84375 0.1875 0.120664 -0.0905285 1.00571 0.494837 0.149309 0.736525 2.37029 0 0.638131 3.35132 0 -0.829029 +0.875 0.1875 0.120657 -0.0905189 1.00555 0.516187 0.109728 0.725676 2.42776 0 0.638131 3.35132 0 -0.829029 -0.84375 0.21875 0.124452 -0.093427 0.968018 0.506427 0.0549605 0.744602 2.32443 0 0.626644 3.3526 0 -0.803523 -0.875 0.21875 0.124452 -0.0934096 0.968353 0.527798 0.0553234 0.754624 2.38201 0 0.626644 3.3526 0 -0.803523 +0.84375 0.21875 0.124493 -0.0934077 0.969666 0.508229 0.142504 0.749108 2.32708 0 0.626644 3.3526 0 -0.803523 +0.875 0.21875 0.124486 -0.0933964 0.969574 0.529578 0.138016 0.748166 2.38501 0 0.626644 3.3526 0 -0.803523 -0.8125 0.21875 0.124452 -0.0934447 0.967499 0.486473 0.0692107 0.730267 2.27047 0 0.626644 3.3526 0 -0.803523 -0.84375 0.21875 0.124452 -0.093427 0.968018 0.506427 0.0549605 0.744602 2.32443 0 0.626644 3.3526 0 -0.803523 +0.8125 0.21875 0.1245 -0.0934175 0.969788 0.487438 0.146022 0.767093 2.27286 0 0.626644 3.3526 0 -0.803523 +0.84375 0.21875 0.124493 -0.0934077 0.969666 0.508135 0.142504 0.749108 2.32708 0 0.626644 3.3526 0 -0.803523 -0.8125 0.25 0.1284 -0.0964204 0.931519 0.499116 0.0874465 0.754719 2.22722 0 0.614792 3.35391 0 -0.778801 -0.84375 0.25 0.128401 -0.0964005 0.931793 0.519897 0.0836404 0.763977 2.28145 0 0.614792 3.35391 0 -0.778801 +0.8125 0.25 0.12845 -0.0963886 0.933411 0.500689 0.140487 0.789219 2.22984 0 0.614792 3.35391 0 -0.778801 +0.84375 0.25 0.128443 -0.0963771 0.933441 0.521386 0.14131 0.786566 2.28426 0 0.614792 3.35391 0 -0.778801 -0.84375 0.21875 0.124452 -0.093427 0.968018 0.506427 0.0549605 0.744602 2.32443 0 0.626644 3.3526 0 -0.803523 -0.875 0.21875 0.124452 -0.0934096 0.968353 0.527798 0.0553234 0.754624 2.38201 0 0.626644 3.3526 0 -0.803523 +0.84375 0.21875 0.124493 -0.0934077 0.969666 0.507765 0.142504 0.749108 2.32708 0 0.626644 3.3526 0 -0.803523 +0.875 0.21875 0.124486 -0.0933964 0.969574 0.529845 0.138016 0.748166 2.38501 0 0.626644 3.3526 0 -0.803523 -0.84375 0.25 0.128401 -0.0964005 0.931793 0.519897 0.0836404 0.763977 2.28145 0 0.614792 3.35391 0 -0.778801 -0.875 0.25 0.128401 -0.0963808 0.932007 0.541981 0.0712739 0.788251 2.33899 0 0.614792 3.35391 0 -0.778801 +0.84375 0.25 0.128443 -0.0963771 0.933441 0.521672 0.14131 0.786566 2.28426 0 0.614792 3.35391 0 -0.778801 +0.875 0.25 0.128436 -0.0963645 0.933258 0.543752 0.14037 0.780769 2.34212 0 0.614792 3.35391 0 -0.778801 -0.875 0.125 0.113318 -0.085029 1.07666 0.487573 0.0413141 0.662536 2.51093 0 0.660055 3.34888 0 -0.882497 -0.90625 0.125 0.113318 -0.0850191 1.07712 0.508252 0.0444095 0.648241 2.57222 0 0.660055 3.34888 0 -0.882497 +0.875 0.125 0.113346 -0.0850249 1.07758 0.489435 0.140612 0.654791 2.51377 0 0.660055 3.34888 0 -0.882497 +0.90625 0.125 0.11334 -0.0850177 1.07761 0.51065 0.128206 0.637746 2.57502 0 0.660055 3.34888 0 -0.882497 -0.875 0.15625 0.116914 -0.0877361 1.04077 0.500669 0.0290263 0.714056 2.46825 0 0.649264 3.35008 0 -0.855345 -0.90625 0.15625 0.116914 -0.0877235 1.04132 0.522002 0.0297714 0.698819 2.52963 0 0.649264 3.35008 0 -0.855345 +0.875 0.15625 0.116945 -0.0877294 1.04181 0.502779 0.13605 0.695976 2.47091 0 0.649264 3.35008 0 -0.855345 +0.90625 0.15625 0.116938 -0.0877205 1.04184 0.523995 0.136216 0.672396 2.53216 0 0.649264 3.35008 0 -0.855345 -0.90625 0.125 0.113318 -0.0850191 1.07712 0.508252 0.0444095 0.648241 2.57222 0 0.660055 3.34888 0 -0.882497 -0.9375 0.125 0.113318 -0.0850089 1.07758 0.53025 0.0691544 0.638857 2.63739 0 0.660055 3.34888 0 -0.882497 +0.90625 0.125 0.11334 -0.0850177 1.07761 0.510297 0.128206 0.637746 2.57502 0 0.660055 3.34888 0 -0.882497 +0.9375 0.125 0.113332 -0.085009 1.07745 0.533049 0.135638 0.650957 2.64045 0 0.660055 3.34888 0 -0.882497 -0.90625 0.15625 0.116914 -0.0877235 1.04132 0.522002 0.0297714 0.698819 2.52963 0 0.649264 3.35008 0 -0.855345 -0.9375 0.15625 0.116914 -0.0877106 1.0419 0.544338 0.0548195 0.70169 2.59389 0 0.649264 3.35008 0 -0.855345 +0.90625 0.15625 0.116938 -0.0877205 1.04184 0.524386 0.136216 0.672396 2.53216 0 0.649264 3.35008 0 -0.855345 +0.9375 0.15625 0.11693 -0.08771 1.0416 0.547138 0.143064 0.680671 2.5978 0 0.649264 3.35008 0 -0.855345 -0.875 0.15625 0.116914 -0.0877361 1.04077 0.500669 0.0290263 0.714056 2.46825 0 0.649264 3.35008 0 -0.855345 -0.90625 0.15625 0.116914 -0.0877235 1.04132 0.522002 0.0297714 0.698819 2.52963 0 0.649264 3.35008 0 -0.855345 +0.875 0.15625 0.116945 -0.0877294 1.04181 0.502386 0.13605 0.695976 2.47091 0 0.649264 3.35008 0 -0.855345 +0.90625 0.15625 0.116938 -0.0877205 1.04184 0.524227 0.136216 0.672396 2.53216 0 0.649264 3.35008 0 -0.855345 -0.875 0.1875 0.120625 -0.0905284 1.00436 0.514094 0.0403709 0.740083 2.42503 0 0.638131 3.35132 0 -0.829029 -0.90625 0.1875 0.120625 -0.0905132 1.00507 0.535961 0.0355872 0.743335 2.48616 0 0.638131 3.35132 0 -0.829029 +0.875 0.1875 0.120657 -0.0905189 1.00555 0.516197 0.109728 0.725676 2.42776 0 0.638131 3.35132 0 -0.829029 +0.90625 0.1875 0.12065 -0.0905084 1.00598 0.538038 0.118778 0.73337 2.4894 0 0.638131 3.35132 0 -0.829029 -0.90625 0.15625 0.116914 -0.0877235 1.04132 0.522002 0.0297714 0.698819 2.52963 0 0.649264 3.35008 0 -0.855345 -0.9375 0.15625 0.116914 -0.0877106 1.0419 0.544338 0.0548195 0.70169 2.59389 0 0.649264 3.35008 0 -0.855345 +0.90625 0.15625 0.116938 -0.0877205 1.04184 0.523907 0.136216 0.672396 2.53216 0 0.649264 3.35008 0 -0.855345 +0.9375 0.15625 0.11693 -0.08771 1.0416 0.547444 0.143064 0.680671 2.5978 0 0.649264 3.35008 0 -0.855345 -0.90625 0.1875 0.120625 -0.0905132 1.00507 0.535961 0.0355872 0.743335 2.48616 0 0.638131 3.35132 0 -0.829029 -0.9375 0.1875 0.120625 -0.0904979 1.00549 0.559407 0.0701736 0.760596 2.55137 0 0.638131 3.35132 0 -0.829029 +0.90625 0.1875 0.12065 -0.0905084 1.00598 0.53836 0.118778 0.73337 2.4894 0 0.638131 3.35132 0 -0.829029 +0.9375 0.1875 0.120642 -0.0904964 1.00565 0.561898 0.15126 0.709288 2.5549 0 0.638131 3.35132 0 -0.829029 -0.9375 0.125 0.113318 -0.0850089 1.07758 0.53025 0.0691544 0.638857 2.63739 0 0.660055 3.34888 0 -0.882497 -0.96875 0.125 0.113317 -0.084998 1.07767 0.553869 0.0956142 0.627987 2.70696 0 0.660055 3.34888 0 -0.882497 +0.9375 0.125 0.113332 -0.085009 1.07745 0.532646 0.135638 0.650957 2.64045 0 0.660055 3.34888 0 -0.882497 +0.96875 0.125 0.113324 -0.0849985 1.0773 0.556861 0.133022 0.654223 2.71019 0 0.660055 3.34888 0 -0.882497 -0.9375 0.15625 0.116914 -0.0877106 1.0419 0.544338 0.0548195 0.70169 2.59389 0 0.649264 3.35008 0 -0.855345 -0.96875 0.15625 0.116914 -0.0876974 1.04211 0.568808 0.0935068 0.697017 2.66387 0 0.649264 3.35008 0 -0.855345 +0.9375 0.15625 0.11693 -0.08771 1.0416 0.547522 0.143064 0.680671 2.5978 0 0.649264 3.35008 0 -0.855345 +0.96875 0.15625 0.116921 -0.0876978 1.04147 0.571738 0.133413 0.67851 2.66738 0 0.649264 3.35008 0 -0.855345 -0.96875 0.125 0.113317 -0.084998 1.07767 0.553869 0.0956142 0.627987 2.70696 0 0.660055 3.34888 0 -0.882497 -1 0.125 0.113315 -0.0849861 1.07773 0.579083 0.100808 0.620135 2.78119 0 0.660055 3.34888 0 -0.882497 +0.96875 0.125 0.113324 -0.0849985 1.0773 0.556465 0.133022 0.654223 2.71019 0 0.660055 3.34888 0 -0.882497 +1 0.125 0.113315 -0.0849861 1.07721 0.582222 0.129812 0.661047 2.78568 0 0.660055 3.34888 0 -0.882497 -0.96875 0.15625 0.116914 -0.0876974 1.04211 0.568808 0.0935068 0.697017 2.66387 0 0.649264 3.35008 0 -0.855345 -1 0.15625 0.116912 -0.0876839 1.04211 0.594873 0.109109 0.696503 2.73819 0 0.649264 3.35008 0 -0.855345 +0.96875 0.15625 0.116921 -0.0876978 1.04147 0.572109 0.133413 0.67851 2.66738 0 0.649264 3.35008 0 -0.855345 +1 0.15625 0.116912 -0.0876839 1.04141 0.597866 0.129161 0.688426 2.743 0 0.649264 3.35008 0 -0.855345 -0.9375 0.15625 0.116914 -0.0877106 1.0419 0.544338 0.0548195 0.70169 2.59389 0 0.649264 3.35008 0 -0.855345 -0.96875 0.15625 0.116914 -0.0876974 1.04211 0.568808 0.0935068 0.697017 2.66387 0 0.649264 3.35008 0 -0.855345 +0.9375 0.15625 0.11693 -0.08771 1.0416 0.547065 0.143064 0.680671 2.5978 0 0.649264 3.35008 0 -0.855345 +0.96875 0.15625 0.116921 -0.0876978 1.04147 0.572012 0.133413 0.67851 2.66738 0 0.649264 3.35008 0 -0.855345 -0.9375 0.1875 0.120625 -0.0904979 1.00549 0.559407 0.0701736 0.760596 2.55137 0 0.638131 3.35132 0 -0.829029 -0.96875 0.1875 0.120625 -0.0904825 1.00565 0.584559 0.097844 0.764051 2.62103 0 0.638131 3.35132 0 -0.829029 +0.9375 0.1875 0.120642 -0.0904964 1.00565 0.562292 0.15126 0.709288 2.5549 0 0.638131 3.35132 0 -0.829029 +0.96875 0.1875 0.120633 -0.0904826 1.00552 0.587239 0.152586 0.703003 2.62464 0 0.638131 3.35132 0 -0.829029 -0.96875 0.15625 0.116914 -0.0876974 1.04211 0.568808 0.0935068 0.697017 2.66387 0 0.649264 3.35008 0 -0.855345 -1 0.15625 0.116912 -0.0876839 1.04211 0.594873 0.109109 0.696503 2.73819 0 0.649264 3.35008 0 -0.855345 +0.96875 0.15625 0.116921 -0.0876978 1.04147 0.571568 0.133413 0.67851 2.66738 0 0.649264 3.35008 0 -0.855345 +1 0.15625 0.116912 -0.0876839 1.04141 0.598174 0.129161 0.688426 2.743 0 0.649264 3.35008 0 -0.855345 -0.96875 0.1875 0.120625 -0.0904825 1.00565 0.584559 0.097844 0.764051 2.62103 0 0.638131 3.35132 0 -0.829029 -1 0.1875 0.120623 -0.0904673 1.00571 0.611412 0.106192 0.768415 2.6953 0 0.638131 3.35132 0 -0.829029 +0.96875 0.1875 0.120633 -0.0904826 1.00552 0.587703 0.152586 0.703003 2.62464 0 0.638131 3.35132 0 -0.829029 +1 0.1875 0.120623 -0.0904673 1.00528 0.614308 0.158641 0.704613 2.70013 0 0.638131 3.35132 0 -0.829029 -0.875 0.1875 0.120625 -0.0905284 1.00436 0.514094 0.0403709 0.740083 2.42503 0 0.638131 3.35132 0 -0.829029 -0.90625 0.1875 0.120625 -0.0905132 1.00507 0.535961 0.0355872 0.743335 2.48616 0 0.638131 3.35132 0 -0.829029 +0.875 0.1875 0.120657 -0.0905189 1.00555 0.515735 0.109728 0.725676 2.42776 0 0.638131 3.35132 0 -0.829029 +0.90625 0.1875 0.12065 -0.0905084 1.00598 0.538313 0.118778 0.73337 2.4894 0 0.638131 3.35132 0 -0.829029 -0.875 0.21875 0.124452 -0.0934096 0.968353 0.527798 0.0553234 0.754624 2.38201 0 0.626644 3.3526 0 -0.803523 -0.90625 0.21875 0.124453 -0.0933918 0.968842 0.550512 0.0613044 0.769916 2.44334 0 0.626644 3.3526 0 -0.803523 +0.875 0.21875 0.124486 -0.0933964 0.969574 0.529996 0.138016 0.748166 2.38501 0 0.626644 3.3526 0 -0.803523 +0.90625 0.21875 0.124478 -0.0933842 0.969482 0.552574 0.124699 0.774043 2.4465 0 0.626644 3.3526 0 -0.803523 -0.90625 0.1875 0.120625 -0.0905132 1.00507 0.535961 0.0355872 0.743335 2.48616 0 0.638131 3.35132 0 -0.829029 -0.9375 0.1875 0.120625 -0.0904979 1.00549 0.559407 0.0701736 0.760596 2.55137 0 0.638131 3.35132 0 -0.829029 +0.90625 0.1875 0.12065 -0.0905084 1.00598 0.537932 0.118778 0.73337 2.4894 0 0.638131 3.35132 0 -0.829029 +0.9375 0.1875 0.120642 -0.0904964 1.00565 0.562125 0.15126 0.709288 2.5549 0 0.638131 3.35132 0 -0.829029 -0.90625 0.21875 0.124453 -0.0933918 0.968842 0.550512 0.0613044 0.769916 2.44334 0 0.626644 3.3526 0 -0.803523 -0.9375 0.21875 0.124453 -0.0933742 0.969147 0.574769 0.0863777 0.77817 2.50861 0 0.626644 3.3526 0 -0.803523 +0.90625 0.21875 0.124478 -0.0933842 0.969482 0.552949 0.124699 0.774043 2.4465 0 0.626644 3.3526 0 -0.803523 +0.9375 0.21875 0.12447 -0.0933706 0.969604 0.577142 0.122743 0.746011 2.51207 0 0.626644 3.3526 0 -0.803523 -0.875 0.21875 0.124452 -0.0934096 0.968353 0.527798 0.0553234 0.754624 2.38201 0 0.626644 3.3526 0 -0.803523 -0.90625 0.21875 0.124453 -0.0933918 0.968842 0.550512 0.0613044 0.769916 2.44334 0 0.626644 3.3526 0 -0.803523 +0.875 0.21875 0.124486 -0.0933964 0.969574 0.529471 0.138016 0.748166 2.38501 0 0.626644 3.3526 0 -0.803523 +0.90625 0.21875 0.124478 -0.0933842 0.969482 0.552895 0.124699 0.774043 2.4465 0 0.626644 3.3526 0 -0.803523 -0.875 0.25 0.128401 -0.0963808 0.932007 0.541981 0.0712739 0.788251 2.33899 0 0.614792 3.35391 0 -0.778801 -0.90625 0.25 0.128402 -0.0963613 0.932465 0.565481 0.0648084 0.792515 2.40046 0 0.614792 3.35391 0 -0.778801 +0.875 0.25 0.128436 -0.0963645 0.933258 0.54412 0.14037 0.780769 2.34212 0 0.614792 3.35391 0 -0.778801 +0.90625 0.25 0.128428 -0.0963509 0.933258 0.567544 0.123237 0.783951 2.40368 0 0.614792 3.35391 0 -0.778801 -0.90625 0.21875 0.124453 -0.0933918 0.968842 0.550512 0.0613044 0.769916 2.44334 0 0.626644 3.3526 0 -0.803523 -0.9375 0.21875 0.124453 -0.0933742 0.969147 0.574769 0.0863777 0.77817 2.50861 0 0.626644 3.3526 0 -0.803523 +0.90625 0.21875 0.124478 -0.0933842 0.969482 0.552507 0.124699 0.774043 2.4465 0 0.626644 3.3526 0 -0.803523 +0.9375 0.21875 0.12447 -0.0933706 0.969604 0.577375 0.122743 0.746011 2.51207 0 0.626644 3.3526 0 -0.803523 -0.90625 0.25 0.128402 -0.0963613 0.932465 0.565481 0.0648084 0.792515 2.40046 0 0.614792 3.35391 0 -0.778801 -0.9375 0.25 0.128403 -0.0963419 0.932831 0.590469 0.0916522 0.80322 2.46569 0 0.614792 3.35391 0 -0.778801 +0.90625 0.25 0.128428 -0.0963509 0.933258 0.567907 0.123237 0.783951 2.40368 0 0.614792 3.35391 0 -0.778801 +0.9375 0.25 0.12842 -0.0963359 0.93335 0.592775 0.117274 0.784524 2.46916 0 0.614792 3.35391 0 -0.778801 -0.9375 0.1875 0.120625 -0.0904979 1.00549 0.559407 0.0701736 0.760596 2.55137 0 0.638131 3.35132 0 -0.829029 -0.96875 0.1875 0.120625 -0.0904825 1.00565 0.584559 0.097844 0.764051 2.62103 0 0.638131 3.35132 0 -0.829029 +0.9375 0.1875 0.120642 -0.0904964 1.00565 0.561804 0.15126 0.709288 2.5549 0 0.638131 3.35132 0 -0.829029 +0.96875 0.1875 0.120633 -0.0904826 1.00552 0.58756 0.152586 0.703003 2.62464 0 0.638131 3.35132 0 -0.829029 -0.9375 0.21875 0.124453 -0.0933742 0.969147 0.574769 0.0863777 0.77817 2.50861 0 0.626644 3.3526 0 -0.803523 -0.96875 0.21875 0.124453 -0.0933566 0.969299 0.600716 0.11589 0.782817 2.57826 0 0.626644 3.3526 0 -0.803523 +0.9375 0.21875 0.12447 -0.0933706 0.969604 0.57748 0.122743 0.746011 2.51207 0 0.626644 3.3526 0 -0.803523 +0.96875 0.21875 0.124461 -0.0933557 0.969543 0.603236 0.13518 0.731114 2.58184 0 0.626644 3.3526 0 -0.803523 -0.96875 0.1875 0.120625 -0.0904825 1.00565 0.584559 0.097844 0.764051 2.62103 0 0.638131 3.35132 0 -0.829029 -1 0.1875 0.120623 -0.0904673 1.00571 0.611412 0.106192 0.768415 2.6953 0 0.638131 3.35132 0 -0.829029 +0.96875 0.1875 0.120633 -0.0904826 1.00552 0.58714 0.152586 0.703003 2.62464 0 0.638131 3.35132 0 -0.829029 +1 0.1875 0.120623 -0.0904673 1.00528 0.614605 0.158641 0.704613 2.70013 0 0.638131 3.35132 0 -0.829029 -0.96875 0.21875 0.124453 -0.0933566 0.969299 0.600716 0.11589 0.782817 2.57826 0 0.626644 3.3526 0 -0.803523 -1 0.21875 0.124452 -0.093339 0.969208 0.628446 0.132046 0.779338 2.65244 0 0.626644 3.3526 0 -0.803523 +0.96875 0.21875 0.124461 -0.0933557 0.969543 0.603644 0.13518 0.731114 2.58184 0 0.626644 3.3526 0 -0.803523 +1 0.21875 0.124452 -0.093339 0.969452 0.63111 0.13845 0.721559 2.65747 0 0.626644 3.3526 0 -0.803523 -0.9375 0.21875 0.124453 -0.0933742 0.969147 0.574769 0.0863777 0.77817 2.50861 0 0.626644 3.3526 0 -0.803523 -0.96875 0.21875 0.124453 -0.0933566 0.969299 0.600716 0.11589 0.782817 2.57826 0 0.626644 3.3526 0 -0.803523 +0.9375 0.21875 0.12447 -0.0933706 0.969604 0.57699 0.122743 0.746011 2.51207 0 0.626644 3.3526 0 -0.803523 +0.96875 0.21875 0.124461 -0.0933557 0.969543 0.603519 0.13518 0.731114 2.58184 0 0.626644 3.3526 0 -0.803523 -0.9375 0.25 0.128403 -0.0963419 0.932831 0.590469 0.0916522 0.80322 2.46569 0 0.614792 3.35391 0 -0.778801 -0.96875 0.25 0.128403 -0.0963221 0.932861 0.617311 0.110009 0.786193 2.5354 0 0.614792 3.35391 0 -0.778801 +0.9375 0.25 0.12842 -0.0963359 0.93335 0.593162 0.117274 0.784524 2.46916 0 0.614792 3.35391 0 -0.778801 +0.96875 0.25 0.128411 -0.0963197 0.933441 0.619691 0.130773 0.774825 2.53905 0 0.614792 3.35391 0 -0.778801 -0.96875 0.21875 0.124453 -0.0933566 0.969299 0.600716 0.11589 0.782817 2.57826 0 0.626644 3.3526 0 -0.803523 -1 0.21875 0.124452 -0.093339 0.969208 0.628446 0.132046 0.779338 2.65244 0 0.626644 3.3526 0 -0.803523 +0.96875 0.21875 0.124461 -0.0933557 0.969543 0.603109 0.13518 0.731114 2.58184 0 0.626644 3.3526 0 -0.803523 +1 0.21875 0.124452 -0.093339 0.969452 0.631434 0.13845 0.721559 2.65747 0 0.626644 3.3526 0 -0.803523 -0.96875 0.25 0.128403 -0.0963221 0.932861 0.617311 0.110009 0.786193 2.5354 0 0.614792 3.35391 0 -0.778801 -1 0.25 0.128403 -0.0963019 0.932983 0.645842 0.108065 0.780582 2.60959 0 0.614792 3.35391 0 -0.778801 +0.96875 0.25 0.128411 -0.0963197 0.933441 0.620096 0.130773 0.774825 2.53905 0 0.614792 3.35391 0 -0.778801 +1 0.25 0.128403 -0.0963019 0.933319 0.648422 0.14334 0.757026 2.61457 0 0.614792 3.35391 0 -0.778801 -0.5 0.25 0.128357 -0.0966162 0.930939 0.348178 0.0986954 0.702404 1.83481 0 0.614792 3.35391 0 -0.778801 -0.53125 0.25 0.128364 -0.0965988 0.930817 0.359497 0.110574 0.686317 1.86407 0 0.614792 3.35391 0 -0.778801 +0.5 0.25 0.128467 -0.096472 0.935455 0.347933 0.148786 0.80211 1.83715 0 0.614792 3.35391 0 -0.778801 +0.53125 0.25 0.128471 -0.0964648 0.935333 0.359529 0.16216 0.812148 1.86655 0 0.614792 3.35391 0 -0.778801 -0.5 0.28125 0.132426 -0.0997003 0.894623 0.35643 0.0970727 0.739019 1.79145 0 0.602565 3.35527 0 -0.75484 -0.53125 0.28125 0.132434 -0.0996811 0.895081 0.367775 0.0692121 0.739083 1.82045 0 0.602565 3.35527 0 -0.75484 +0.5 0.28125 0.132545 -0.099547 0.899231 0.356506 0.168432 0.841714 1.79423 0 0.602565 3.35527 0 -0.75484 +0.53125 0.28125 0.132548 -0.0995385 0.898865 0.368101 0.173369 0.844286 1.82347 0 0.602565 3.35527 0 -0.75484 -0.53125 0.25 0.128364 -0.0965988 0.930817 0.359497 0.110574 0.686317 1.86407 0 0.614792 3.35391 0 -0.778801 -0.5625 0.25 0.128371 -0.0965807 0.931061 0.371346 0.0939174 0.682606 1.89508 0 0.614792 3.35391 0 -0.778801 +0.53125 0.25 0.128471 -0.0964648 0.935333 0.359325 0.16216 0.812148 1.86655 0 0.614792 3.35391 0 -0.778801 +0.5625 0.25 0.128473 -0.0964573 0.935028 0.371657 0.16097 0.807439 1.89772 0 0.614792 3.35391 0 -0.778801 -0.53125 0.28125 0.132434 -0.0996811 0.895081 0.367775 0.0692121 0.739083 1.82045 0 0.602565 3.35527 0 -0.75484 -0.5625 0.28125 0.132442 -0.0996609 0.895477 0.379976 0.0929691 0.74242 1.85155 0 0.602565 3.35527 0 -0.75484 +0.53125 0.28125 0.132548 -0.0995385 0.898865 0.368287 0.173369 0.844286 1.82347 0 0.602565 3.35527 0 -0.75484 +0.5625 0.28125 0.132549 -0.0995297 0.898712 0.380619 0.156562 0.844786 1.85452 0 0.602565 3.35527 0 -0.75484 -0.5 0.28125 0.132426 -0.0997003 0.894623 0.35643 0.0970727 0.739019 1.79145 0 0.602565 3.35527 0 -0.75484 -0.53125 0.28125 0.132434 -0.0996811 0.895081 0.367775 0.0692121 0.739083 1.82045 0 0.602565 3.35527 0 -0.75484 +0.5 0.28125 0.132545 -0.099547 0.899231 0.356238 0.168432 0.841714 1.79423 0 0.602565 3.35527 0 -0.75484 +0.53125 0.28125 0.132548 -0.0995385 0.898865 0.368209 0.173369 0.844286 1.82347 0 0.602565 3.35527 0 -0.75484 -0.5 0.3125 0.136627 -0.102877 0.859009 0.364574 0.107431 0.768501 1.7481 0 0.589949 3.35667 0 -0.731616 -0.53125 0.3125 0.136635 -0.102856 0.858917 0.376462 0.120133 0.800001 1.777 0 0.589949 3.35667 0 -0.731616 +0.5 0.3125 0.136751 -0.102716 0.862488 0.365143 0.19522 0.913075 1.75122 0 0.589949 3.35667 0 -0.731616 +0.53125 0.3125 0.136754 -0.102707 0.862305 0.377114 0.185726 0.898276 1.78052 0 0.589949 3.35667 0 -0.731616 -0.53125 0.28125 0.132434 -0.0996811 0.895081 0.367775 0.0692121 0.739083 1.82045 0 0.602565 3.35527 0 -0.75484 -0.5625 0.28125 0.132442 -0.0996609 0.895477 0.379976 0.0929691 0.74242 1.85155 0 0.602565 3.35527 0 -0.75484 +0.53125 0.28125 0.132548 -0.0995385 0.898865 0.368023 0.173369 0.844286 1.82347 0 0.602565 3.35527 0 -0.75484 +0.5625 0.28125 0.132549 -0.0995297 0.898712 0.380725 0.156562 0.844786 1.85452 0 0.602565 3.35527 0 -0.75484 -0.53125 0.3125 0.136635 -0.102856 0.858917 0.376462 0.120133 0.800001 1.777 0 0.589949 3.35667 0 -0.731616 -0.5625 0.3125 0.136642 -0.102834 0.8591 0.389146 0.100176 0.803281 1.80812 0 0.589949 3.35667 0 -0.731616 +0.53125 0.3125 0.136754 -0.102707 0.862305 0.377299 0.185726 0.898276 1.78052 0 0.589949 3.35667 0 -0.731616 +0.5625 0.3125 0.136754 -0.102698 0.862 0.390002 0.194292 0.904809 1.81174 0 0.589949 3.35667 0 -0.731616 -0.5625 0.25 0.128371 -0.0965807 0.931061 0.371346 0.0939174 0.682606 1.89508 0 0.614792 3.35391 0 -0.778801 -0.59375 0.25 0.128378 -0.0965607 0.931305 0.38397 0.109929 0.692278 1.92809 0 0.614792 3.35391 0 -0.778801 +0.5625 0.25 0.128473 -0.0964573 0.935028 0.371469 0.16097 0.807439 1.89772 0 0.614792 3.35391 0 -0.778801 +0.59375 0.25 0.128473 -0.0964494 0.934967 0.384469 0.162067 0.787562 1.9304 0 0.614792 3.35391 0 -0.778801 -0.5625 0.28125 0.132442 -0.0996609 0.895477 0.379976 0.0929691 0.74242 1.85155 0 0.602565 3.35527 0 -0.75484 -0.59375 0.28125 0.132449 -0.09964 0.895538 0.393073 0.121971 0.740965 1.88456 0 0.602565 3.35527 0 -0.75484 +0.5625 0.28125 0.132549 -0.0995297 0.898712 0.380776 0.156562 0.844786 1.85452 0 0.602565 3.35527 0 -0.75484 +0.59375 0.28125 0.132549 -0.0995208 0.898682 0.393776 0.170237 0.865716 1.88746 0 0.602565 3.35527 0 -0.75484 -0.59375 0.25 0.128378 -0.0965607 0.931305 0.38397 0.109929 0.692278 1.92809 0 0.614792 3.35391 0 -0.778801 -0.625 0.25 0.128384 -0.0965404 0.931244 0.397427 0.116075 0.701197 1.96297 0 0.614792 3.35391 0 -0.778801 +0.59375 0.25 0.128473 -0.0964494 0.934967 0.384102 0.162067 0.787562 1.9304 0 0.614792 3.35391 0 -0.778801 +0.625 0.25 0.128473 -0.0964421 0.934692 0.398082 0.180291 0.80422 1.96563 0 0.614792 3.35391 0 -0.778801 -0.59375 0.28125 0.132449 -0.09964 0.895538 0.393073 0.121971 0.740965 1.88456 0 0.602565 3.35527 0 -0.75484 -0.625 0.28125 0.132456 -0.0996186 0.895538 0.407088 0.130816 0.72539 1.91983 0 0.602565 3.35527 0 -0.75484 +0.59375 0.28125 0.132549 -0.0995208 0.898682 0.393795 0.170237 0.865716 1.88746 0 0.602565 3.35527 0 -0.75484 +0.625 0.28125 0.132549 -0.0995129 0.898315 0.407775 0.193131 0.850888 1.92272 0 0.602565 3.35527 0 -0.75484 -0.5625 0.28125 0.132442 -0.0996609 0.895477 0.379976 0.0929691 0.74242 1.85155 0 0.602565 3.35527 0 -0.75484 -0.59375 0.28125 0.132449 -0.09964 0.895538 0.393073 0.121971 0.740965 1.88456 0 0.602565 3.35527 0 -0.75484 +0.5625 0.28125 0.132549 -0.0995297 0.898712 0.380441 0.156562 0.844786 1.85452 0 0.602565 3.35527 0 -0.75484 +0.59375 0.28125 0.132549 -0.0995208 0.898682 0.393964 0.170237 0.865716 1.88746 0 0.602565 3.35527 0 -0.75484 -0.5625 0.3125 0.136642 -0.102834 0.8591 0.389146 0.100176 0.803281 1.80812 0 0.589949 3.35667 0 -0.731616 -0.59375 0.3125 0.13665 -0.102812 0.859375 0.402599 0.101049 0.794181 1.8412 0 0.589949 3.35667 0 -0.731616 +0.5625 0.3125 0.136754 -0.102698 0.862 0.390286 0.194292 0.904809 1.81174 0 0.589949 3.35667 0 -0.731616 +0.59375 0.3125 0.136753 -0.102688 0.861603 0.403808 0.176932 0.929077 1.8445 0 0.589949 3.35667 0 -0.731616 -0.59375 0.28125 0.132449 -0.09964 0.895538 0.393073 0.121971 0.740965 1.88456 0 0.602565 3.35527 0 -0.75484 -0.625 0.28125 0.132456 -0.0996186 0.895538 0.407088 0.130816 0.72539 1.91983 0 0.602565 3.35527 0 -0.75484 +0.59375 0.28125 0.132549 -0.0995208 0.898682 0.393566 0.170237 0.865716 1.88746 0 0.602565 3.35527 0 -0.75484 +0.625 0.28125 0.132549 -0.0995129 0.898315 0.407904 0.193131 0.850888 1.92272 0 0.602565 3.35527 0 -0.75484 -0.59375 0.3125 0.13665 -0.102812 0.859375 0.402599 0.101049 0.794181 1.8412 0 0.589949 3.35667 0 -0.731616 -0.625 0.3125 0.136658 -0.10279 0.859589 0.416921 0.137321 0.788998 1.87634 0 0.589949 3.35667 0 -0.731616 +0.59375 0.3125 0.136753 -0.102688 0.861603 0.403843 0.176932 0.929077 1.8445 0 0.589949 3.35667 0 -0.731616 +0.625 0.3125 0.136752 -0.10268 0.861572 0.418181 0.164522 0.912052 1.8798 0 0.589949 3.35667 0 -0.731616 -0.5 0.3125 0.136627 -0.102877 0.859009 0.364574 0.107431 0.768501 1.7481 0 0.589949 3.35667 0 -0.731616 -0.53125 0.3125 0.136635 -0.102856 0.858917 0.376462 0.120133 0.800001 1.777 0 0.589949 3.35667 0 -0.731616 +0.5 0.3125 0.136751 -0.102716 0.862488 0.364896 0.19522 0.913075 1.75122 0 0.589949 3.35667 0 -0.731616 +0.53125 0.3125 0.136754 -0.102707 0.862305 0.377182 0.185726 0.898276 1.78052 0 0.589949 3.35667 0 -0.731616 -0.5 0.34375 0.140961 -0.106149 0.822662 0.373222 0.112936 0.842806 1.70484 0 0.576932 3.35812 0 -0.709106 -0.53125 0.34375 0.140968 -0.106126 0.822632 0.385502 0.108357 0.851461 1.73384 0 0.576932 3.35812 0 -0.709106 +0.5 0.34375 0.14109 -0.105984 0.825562 0.374145 0.175666 0.978388 1.70839 0 0.576932 3.35812 0 -0.709106 +0.53125 0.34375 0.141091 -0.105974 0.825409 0.386431 0.182617 0.96418 1.73764 0 0.576932 3.35812 0 -0.709106 -0.53125 0.3125 0.136635 -0.102856 0.858917 0.376462 0.120133 0.800001 1.777 0 0.589949 3.35667 0 -0.731616 -0.5625 0.3125 0.136642 -0.102834 0.8591 0.389146 0.100176 0.803281 1.80812 0 0.589949 3.35667 0 -0.731616 +0.53125 0.3125 0.136754 -0.102707 0.862305 0.377001 0.185726 0.898276 1.78052 0 0.589949 3.35667 0 -0.731616 +0.5625 0.3125 0.136754 -0.102698 0.862 0.390176 0.194292 0.904809 1.81174 0 0.589949 3.35667 0 -0.731616 -0.53125 0.34375 0.140968 -0.106126 0.822632 0.385502 0.108357 0.851461 1.73384 0 0.576932 3.35812 0 -0.709106 -0.5625 0.34375 0.140976 -0.106104 0.822998 0.39861 0.0983816 0.855008 1.76519 0 0.576932 3.35812 0 -0.709106 +0.53125 0.34375 0.141091 -0.105974 0.825409 0.386595 0.182617 0.96418 1.73764 0 0.576932 3.35812 0 -0.709106 +0.5625 0.34375 0.141091 -0.105964 0.825134 0.39977 0.196632 0.959114 1.76883 0 0.576932 3.35812 0 -0.709106 -0.5 0.34375 0.140961 -0.106149 0.822662 0.373222 0.112936 0.842806 1.70484 0 0.576932 3.35812 0 -0.709106 -0.53125 0.34375 0.140968 -0.106126 0.822632 0.385502 0.108357 0.851461 1.73384 0 0.576932 3.35812 0 -0.709106 +0.5 0.34375 0.14109 -0.105984 0.825562 0.373896 0.175666 0.978388 1.70839 0 0.576932 3.35812 0 -0.709106 +0.53125 0.34375 0.141091 -0.105974 0.825409 0.3865 0.182617 0.96418 1.73764 0 0.576932 3.35812 0 -0.709106 -0.5 0.375 0.145433 -0.109518 0.786285 0.382047 0.127989 0.906249 1.66154 0 0.563503 3.35961 0 -0.687289 -0.53125 0.375 0.14544 -0.109495 0.786194 0.394822 0.13383 0.927121 1.69072 0 0.563503 3.35961 0 -0.687289 +0.5 0.375 0.145565 -0.109354 0.78833 0.383495 0.147041 1.03576 1.66564 0 0.563503 3.35961 0 -0.687289 +0.53125 0.375 0.145566 -0.109343 0.7883 0.396099 0.170589 1.02253 1.69487 0 0.563503 3.35961 0 -0.687289 -0.53125 0.34375 0.140968 -0.106126 0.822632 0.385502 0.108357 0.851461 1.73384 0 0.576932 3.35812 0 -0.709106 -0.5625 0.34375 0.140976 -0.106104 0.822998 0.39861 0.0983816 0.855008 1.76519 0 0.576932 3.35812 0 -0.709106 +0.53125 0.34375 0.141091 -0.105974 0.825409 0.386348 0.182617 0.96418 1.73764 0 0.576932 3.35812 0 -0.709106 +0.5625 0.34375 0.141091 -0.105964 0.825134 0.399889 0.196632 0.959114 1.76883 0 0.576932 3.35812 0 -0.709106 -0.53125 0.375 0.14544 -0.109495 0.786194 0.394822 0.13383 0.927121 1.69072 0 0.563503 3.35961 0 -0.687289 -0.5625 0.375 0.145447 -0.109472 0.786316 0.408374 0.104875 0.924164 1.72189 0 0.563503 3.35961 0 -0.687289 +0.53125 0.375 0.145566 -0.109343 0.7883 0.396271 0.170589 1.02253 1.69487 0 0.563503 3.35961 0 -0.687289 +0.5625 0.375 0.145565 -0.109333 0.788055 0.409812 0.189685 1.0083 1.72604 0 0.563503 3.35961 0 -0.687289 -0.5625 0.3125 0.136642 -0.102834 0.8591 0.389146 0.100176 0.803281 1.80812 0 0.589949 3.35667 0 -0.731616 -0.59375 0.3125 0.13665 -0.102812 0.859375 0.402599 0.101049 0.794181 1.8412 0 0.589949 3.35667 0 -0.731616 +0.5625 0.3125 0.136754 -0.102698 0.862 0.389946 0.194292 0.904809 1.81174 0 0.589949 3.35667 0 -0.731616 +0.59375 0.3125 0.136753 -0.102688 0.861603 0.403968 0.176932 0.929077 1.8445 0 0.589949 3.35667 0 -0.731616 -0.5625 0.34375 0.140976 -0.106104 0.822998 0.39861 0.0983816 0.855008 1.76519 0 0.576932 3.35812 0 -0.709106 -0.59375 0.34375 0.140984 -0.106081 0.823181 0.412413 0.122661 0.84744 1.798 0 0.576932 3.35812 0 -0.709106 +0.5625 0.34375 0.141091 -0.105964 0.825134 0.39998 0.196632 0.959114 1.76883 0 0.576932 3.35812 0 -0.709106 +0.59375 0.34375 0.14109 -0.105954 0.824738 0.414002 0.182689 0.951842 1.80163 0 0.576932 3.35812 0 -0.709106 -0.59375 0.3125 0.13665 -0.102812 0.859375 0.402599 0.101049 0.794181 1.8412 0 0.589949 3.35667 0 -0.731616 -0.625 0.3125 0.136658 -0.10279 0.859589 0.416921 0.137321 0.788998 1.87634 0 0.589949 3.35667 0 -0.731616 +0.59375 0.3125 0.136753 -0.102688 0.861603 0.403557 0.176932 0.929077 1.8445 0 0.589949 3.35667 0 -0.731616 +0.625 0.3125 0.136752 -0.10268 0.861572 0.418282 0.164522 0.912052 1.8798 0 0.589949 3.35667 0 -0.731616 -0.59375 0.34375 0.140984 -0.106081 0.823181 0.412413 0.122661 0.84744 1.798 0 0.576932 3.35812 0 -0.709106 -0.625 0.34375 0.140992 -0.106058 0.823212 0.427365 0.153233 0.844531 1.83337 0 0.576932 3.35812 0 -0.709106 +0.59375 0.34375 0.14109 -0.105954 0.824738 0.414087 0.182689 0.951842 1.80163 0 0.576932 3.35812 0 -0.709106 +0.625 0.34375 0.141088 -0.105945 0.824646 0.428813 0.153079 0.962926 1.83692 0 0.576932 3.35812 0 -0.709106 -0.5625 0.34375 0.140976 -0.106104 0.822998 0.39861 0.0983816 0.855008 1.76519 0 0.576932 3.35812 0 -0.709106 -0.59375 0.34375 0.140984 -0.106081 0.823181 0.412413 0.122661 0.84744 1.798 0 0.576932 3.35812 0 -0.709106 +0.5625 0.34375 0.141091 -0.105964 0.825134 0.399675 0.196632 0.959114 1.76883 0 0.576932 3.35812 0 -0.709106 +0.59375 0.34375 0.14109 -0.105954 0.824738 0.414153 0.182689 0.951842 1.80163 0 0.576932 3.35812 0 -0.709106 -0.5625 0.375 0.145447 -0.109472 0.786316 0.408374 0.104875 0.924164 1.72189 0 0.563503 3.35961 0 -0.687289 -0.59375 0.375 0.145455 -0.10945 0.786682 0.422634 0.0999464 0.920661 1.75492 0 0.563503 3.35961 0 -0.687289 +0.5625 0.375 0.145565 -0.109333 0.788055 0.410023 0.189685 1.0083 1.72604 0 0.563503 3.35961 0 -0.687289 +0.59375 0.375 0.145563 -0.109322 0.787781 0.4245 0.187605 0.986383 1.75887 0 0.563503 3.35961 0 -0.687289 -0.59375 0.34375 0.140984 -0.106081 0.823181 0.412413 0.122661 0.84744 1.798 0 0.576932 3.35812 0 -0.709106 -0.625 0.34375 0.140992 -0.106058 0.823212 0.427365 0.153233 0.844531 1.83337 0 0.576932 3.35812 0 -0.709106 +0.59375 0.34375 0.14109 -0.105954 0.824738 0.413733 0.182689 0.951842 1.80163 0 0.576932 3.35812 0 -0.709106 +0.625 0.34375 0.141088 -0.105945 0.824646 0.428973 0.153079 0.962926 1.83692 0 0.576932 3.35812 0 -0.709106 -0.59375 0.375 0.145455 -0.10945 0.786682 0.422634 0.0999464 0.920661 1.75492 0 0.563503 3.35961 0 -0.687289 -0.625 0.375 0.145464 -0.109426 0.786957 0.437892 0.15751 0.929167 1.79015 0 0.563503 3.35961 0 -0.687289 +0.59375 0.375 0.145563 -0.109322 0.787781 0.424564 0.187605 0.986383 1.75887 0 0.563503 3.35961 0 -0.687289 +0.625 0.375 0.145562 -0.109312 0.787537 0.439803 0.155831 0.989874 1.79396 0 0.563503 3.35961 0 -0.687289 -0.625 0.25 0.128384 -0.0965404 0.931244 0.397427 0.116075 0.701197 1.96297 0 0.614792 3.35391 0 -0.778801 -0.65625 0.25 0.128389 -0.0965203 0.931458 0.411975 0.126261 0.719925 2.00094 0 0.614792 3.35391 0 -0.778801 +0.625 0.25 0.128473 -0.0964421 0.934692 0.397804 0.180291 0.80422 1.96563 0 0.614792 3.35391 0 -0.778801 +0.65625 0.25 0.128473 -0.0964343 0.934357 0.412709 0.192357 0.808966 2.00339 0 0.614792 3.35391 0 -0.778801 -0.625 0.28125 0.132456 -0.0996186 0.895538 0.407088 0.130816 0.72539 1.91983 0 0.602565 3.35527 0 -0.75484 -0.65625 0.28125 0.132463 -0.0995969 0.895538 0.421988 0.1331 0.757095 1.95732 0 0.602565 3.35527 0 -0.75484 +0.625 0.28125 0.132549 -0.0995129 0.898315 0.408049 0.193131 0.850888 1.92272 0 0.602565 3.35527 0 -0.75484 +0.65625 0.28125 0.132548 -0.0995046 0.897919 0.422953 0.186624 0.83848 1.96018 0 0.602565 3.35527 0 -0.75484 -0.65625 0.25 0.128389 -0.0965203 0.931458 0.411975 0.126261 0.719925 2.00094 0 0.614792 3.35391 0 -0.778801 -0.6875 0.25 0.128394 -0.0965005 0.931274 0.427324 0.138587 0.72175 2.04061 0 0.614792 3.35391 0 -0.778801 +0.65625 0.25 0.128473 -0.0964343 0.934357 0.412502 0.192357 0.808966 2.00339 0 0.614792 3.35391 0 -0.778801 +0.6875 0.25 0.12847 -0.0964263 0.933838 0.428313 0.161461 0.806588 2.04316 0 0.614792 3.35391 0 -0.778801 -0.65625 0.28125 0.132463 -0.0995969 0.895538 0.421988 0.1331 0.757095 1.95732 0 0.602565 3.35527 0 -0.75484 -0.6875 0.28125 0.132467 -0.099575 0.895599 0.437885 0.159681 0.769263 1.99738 0 0.602565 3.35527 0 -0.75484 +0.65625 0.28125 0.132548 -0.0995046 0.897919 0.423127 0.186624 0.83848 1.96018 0 0.602565 3.35527 0 -0.75484 +0.6875 0.28125 0.132545 -0.0994957 0.897705 0.438938 0.179096 0.821052 2.0002 0 0.602565 3.35527 0 -0.75484 -0.625 0.28125 0.132456 -0.0996186 0.895538 0.407088 0.130816 0.72539 1.91983 0 0.602565 3.35527 0 -0.75484 -0.65625 0.28125 0.132463 -0.0995969 0.895538 0.421988 0.1331 0.757095 1.95732 0 0.602565 3.35527 0 -0.75484 +0.625 0.28125 0.132549 -0.0995129 0.898315 0.407747 0.193131 0.850888 1.92272 0 0.602565 3.35527 0 -0.75484 +0.65625 0.28125 0.132548 -0.0995046 0.897919 0.423063 0.186624 0.83848 1.96018 0 0.602565 3.35527 0 -0.75484 -0.625 0.3125 0.136658 -0.10279 0.859589 0.416921 0.137321 0.788998 1.87634 0 0.589949 3.35667 0 -0.731616 -0.65625 0.3125 0.136665 -0.102767 0.859375 0.432521 0.176241 0.808213 1.91417 0 0.589949 3.35667 0 -0.731616 +0.625 0.3125 0.136752 -0.10268 0.861572 0.418337 0.164522 0.912052 1.8798 0 0.589949 3.35667 0 -0.731616 +0.65625 0.3125 0.136751 -0.10267 0.861359 0.433653 0.174785 0.877251 1.91726 0 0.589949 3.35667 0 -0.731616 -0.65625 0.28125 0.132463 -0.0995969 0.895538 0.421988 0.1331 0.757095 1.95732 0 0.602565 3.35527 0 -0.75484 -0.6875 0.28125 0.132467 -0.099575 0.895599 0.437885 0.159681 0.769263 1.99738 0 0.602565 3.35527 0 -0.75484 +0.65625 0.28125 0.132548 -0.0995046 0.897919 0.422814 0.186624 0.83848 1.96018 0 0.602565 3.35527 0 -0.75484 +0.6875 0.28125 0.132545 -0.0994957 0.897705 0.439085 0.179096 0.821052 2.0002 0 0.602565 3.35527 0 -0.75484 -0.65625 0.3125 0.136665 -0.102767 0.859375 0.432521 0.176241 0.808213 1.91417 0 0.589949 3.35667 0 -0.731616 -0.6875 0.3125 0.136669 -0.102744 0.859039 0.448965 0.173442 0.827352 1.95394 0 0.589949 3.35667 0 -0.731616 +0.65625 0.3125 0.136751 -0.10267 0.861359 0.433877 0.174785 0.877251 1.91726 0 0.589949 3.35667 0 -0.731616 +0.6875 0.3125 0.136748 -0.102661 0.861115 0.450148 0.17084 0.871674 1.95714 0 0.589949 3.35667 0 -0.731616 -0.6875 0.25 0.128394 -0.0965005 0.931274 0.427324 0.138587 0.72175 2.04061 0 0.614792 3.35391 0 -0.778801 -0.71875 0.25 0.128397 -0.0964799 0.931274 0.44376 0.127753 0.737029 2.08328 0 0.614792 3.35391 0 -0.778801 +0.6875 0.25 0.12847 -0.0964263 0.933838 0.428048 0.161461 0.806588 2.04316 0 0.614792 3.35391 0 -0.778801 +0.71875 0.25 0.128467 -0.0964181 0.934021 0.444724 0.145254 0.806691 2.08588 0 0.614792 3.35391 0 -0.778801 -0.6875 0.28125 0.132467 -0.099575 0.895599 0.437885 0.159681 0.769263 1.99738 0 0.602565 3.35527 0 -0.75484 -0.71875 0.28125 0.13247 -0.0995531 0.895203 0.454934 0.175481 0.781817 2.03988 0 0.602565 3.35527 0 -0.75484 +0.6875 0.28125 0.132545 -0.0994957 0.897705 0.439199 0.179096 0.821052 2.0002 0 0.602565 3.35527 0 -0.75484 +0.71875 0.28125 0.132541 -0.099486 0.897369 0.455874 0.161888 0.83978 2.0426 0 0.602565 3.35527 0 -0.75484 -0.71875 0.25 0.128397 -0.0964799 0.931274 0.44376 0.127753 0.737029 2.08328 0 0.614792 3.35391 0 -0.778801 -0.75 0.25 0.128398 -0.0964598 0.931305 0.461028 0.124986 0.745089 2.12813 0 0.614792 3.35391 0 -0.778801 +0.71875 0.25 0.128467 -0.0964181 0.934021 0.444461 0.145254 0.806691 2.08588 0 0.614792 3.35391 0 -0.778801 +0.75 0.25 0.128462 -0.0964089 0.933746 0.462175 0.164259 0.799062 2.13076 0 0.614792 3.35391 0 -0.778801 -0.71875 0.28125 0.13247 -0.0995531 0.895203 0.454934 0.175481 0.781817 2.03988 0 0.602565 3.35527 0 -0.75484 -0.75 0.28125 0.132472 -0.0995312 0.894958 0.473097 0.134943 0.783765 2.08533 0 0.602565 3.35527 0 -0.75484 +0.71875 0.28125 0.132541 -0.099486 0.897369 0.456222 0.161888 0.83978 2.0426 0 0.602565 3.35527 0 -0.75484 +0.75 0.28125 0.132537 -0.0994756 0.8974 0.473935 0.153075 0.837236 2.08784 0 0.602565 3.35527 0 -0.75484 -0.6875 0.28125 0.132467 -0.099575 0.895599 0.437885 0.159681 0.769263 1.99738 0 0.602565 3.35527 0 -0.75484 -0.71875 0.28125 0.13247 -0.0995531 0.895203 0.454934 0.175481 0.781817 2.03988 0 0.602565 3.35527 0 -0.75484 +0.6875 0.28125 0.132545 -0.0994957 0.897705 0.438831 0.179096 0.821052 2.0002 0 0.602565 3.35527 0 -0.75484 +0.71875 0.28125 0.132541 -0.099486 0.897369 0.456085 0.161888 0.83978 2.0426 0 0.602565 3.35527 0 -0.75484 -0.6875 0.3125 0.136669 -0.102744 0.859039 0.448965 0.173442 0.827352 1.95394 0 0.589949 3.35667 0 -0.731616 -0.71875 0.3125 0.136673 -0.10272 0.858917 0.466637 0.151035 0.841303 1.99691 0 0.589949 3.35667 0 -0.731616 +0.6875 0.3125 0.136748 -0.102661 0.861115 0.450378 0.17084 0.871674 1.95714 0 0.589949 3.35667 0 -0.731616 +0.71875 0.3125 0.136744 -0.10265 0.860992 0.467632 0.169795 0.877862 1.99977 0 0.589949 3.35667 0 -0.731616 -0.71875 0.28125 0.13247 -0.0995531 0.895203 0.454934 0.175481 0.781817 2.03988 0 0.602565 3.35527 0 -0.75484 -0.75 0.28125 0.132472 -0.0995312 0.894958 0.473097 0.134943 0.783765 2.08533 0 0.602565 3.35527 0 -0.75484 +0.71875 0.28125 0.132541 -0.099486 0.897369 0.455839 0.161888 0.83978 2.0426 0 0.602565 3.35527 0 -0.75484 +0.75 0.28125 0.132537 -0.0994756 0.8974 0.474159 0.153075 0.837236 2.08784 0 0.602565 3.35527 0 -0.75484 -0.71875 0.3125 0.136673 -0.10272 0.858917 0.466637 0.151035 0.841303 1.99691 0 0.589949 3.35667 0 -0.731616 -0.75 0.3125 0.136674 -0.102698 0.858948 0.48485 0.15273 0.842788 2.04136 0 0.589949 3.35667 0 -0.731616 +0.71875 0.3125 0.136744 -0.10265 0.860992 0.467933 0.169795 0.877862 1.99977 0 0.589949 3.35667 0 -0.731616 +0.75 0.3125 0.13674 -0.102638 0.860748 0.486253 0.167429 0.878889 2.04486 0 0.589949 3.35667 0 -0.731616 -0.625 0.3125 0.136658 -0.10279 0.859589 0.416921 0.137321 0.788998 1.87634 0 0.589949 3.35667 0 -0.731616 -0.65625 0.3125 0.136665 -0.102767 0.859375 0.432521 0.176241 0.808213 1.91417 0 0.589949 3.35667 0 -0.731616 +0.625 0.3125 0.136752 -0.10268 0.861572 0.418065 0.164522 0.912052 1.8798 0 0.589949 3.35667 0 -0.731616 +0.65625 0.3125 0.136751 -0.10267 0.861359 0.433727 0.174785 0.877251 1.91726 0 0.589949 3.35667 0 -0.731616 -0.625 0.34375 0.140992 -0.106058 0.823212 0.427365 0.153233 0.844531 1.83337 0 0.576932 3.35812 0 -0.709106 -0.65625 0.34375 0.140999 -0.106034 0.823029 0.443245 0.175929 0.860389 1.87072 0 0.576932 3.35812 0 -0.709106 +0.625 0.34375 0.141088 -0.105945 0.824646 0.429013 0.153079 0.962926 1.83692 0 0.576932 3.35812 0 -0.709106 +0.65625 0.34375 0.141087 -0.105935 0.824707 0.444674 0.160237 0.933599 1.87435 0 0.576932 3.35812 0 -0.709106 -0.65625 0.3125 0.136665 -0.102767 0.859375 0.432521 0.176241 0.808213 1.91417 0 0.589949 3.35667 0 -0.731616 -0.6875 0.3125 0.136669 -0.102744 0.859039 0.448965 0.173442 0.827352 1.95394 0 0.589949 3.35667 0 -0.731616 +0.65625 0.3125 0.136751 -0.10267 0.861359 0.433533 0.174785 0.877251 1.91726 0 0.589949 3.35667 0 -0.731616 +0.6875 0.3125 0.136748 -0.102661 0.861115 0.450297 0.17084 0.871674 1.95714 0 0.589949 3.35667 0 -0.731616 -0.65625 0.34375 0.140999 -0.106034 0.823029 0.443245 0.175929 0.860389 1.87072 0 0.576932 3.35812 0 -0.709106 -0.6875 0.34375 0.141005 -0.10601 0.822845 0.460343 0.201913 0.871881 1.91095 0 0.576932 3.35812 0 -0.709106 +0.65625 0.34375 0.141087 -0.105935 0.824707 0.444883 0.160237 0.933599 1.87435 0 0.576932 3.35812 0 -0.709106 +0.6875 0.34375 0.141084 -0.105924 0.824493 0.461647 0.187634 0.917775 1.91435 0 0.576932 3.35812 0 -0.709106 -0.625 0.34375 0.140992 -0.106058 0.823212 0.427365 0.153233 0.844531 1.83337 0 0.576932 3.35812 0 -0.709106 -0.65625 0.34375 0.140999 -0.106034 0.823029 0.443245 0.175929 0.860389 1.87072 0 0.576932 3.35812 0 -0.709106 +0.625 0.34375 0.141088 -0.105945 0.824646 0.428721 0.153079 0.962926 1.83692 0 0.576932 3.35812 0 -0.709106 +0.65625 0.34375 0.141087 -0.105935 0.824707 0.444768 0.160237 0.933599 1.87435 0 0.576932 3.35812 0 -0.709106 -0.625 0.375 0.145464 -0.109426 0.786957 0.437892 0.15751 0.929167 1.79015 0 0.563503 3.35961 0 -0.687289 -0.65625 0.375 0.145472 -0.109401 0.78656 0.454541 0.216673 0.937881 1.8279 0 0.563503 3.35961 0 -0.687289 +0.625 0.375 0.145562 -0.109312 0.787537 0.440047 0.155831 0.989874 1.79396 0 0.563503 3.35961 0 -0.687289 +0.65625 0.375 0.145559 -0.109301 0.78772 0.456093 0.141692 0.995842 1.83145 0 0.563503 3.35961 0 -0.687289 -0.65625 0.34375 0.140999 -0.106034 0.823029 0.443245 0.175929 0.860389 1.87072 0 0.576932 3.35812 0 -0.709106 -0.6875 0.34375 0.141005 -0.10601 0.822845 0.460343 0.201913 0.871881 1.91095 0 0.576932 3.35812 0 -0.709106 +0.65625 0.34375 0.141087 -0.105935 0.824707 0.444548 0.160237 0.933599 1.87435 0 0.576932 3.35812 0 -0.709106 +0.6875 0.34375 0.141084 -0.105924 0.824493 0.461787 0.187634 0.917775 1.91435 0 0.576932 3.35812 0 -0.709106 -0.65625 0.375 0.145472 -0.109401 0.78656 0.454541 0.216673 0.937881 1.8279 0 0.563503 3.35961 0 -0.687289 -0.6875 0.375 0.145477 -0.109377 0.786072 0.472234 0.22296 0.932773 1.86794 0 0.563503 3.35961 0 -0.687289 +0.65625 0.375 0.145559 -0.109301 0.78772 0.456304 0.141692 0.995842 1.83145 0 0.563503 3.35961 0 -0.687289 +0.6875 0.375 0.145557 -0.10929 0.787659 0.473543 0.158839 0.975191 1.87133 0 0.563503 3.35961 0 -0.687289 -0.6875 0.3125 0.136669 -0.102744 0.859039 0.448965 0.173442 0.827352 1.95394 0 0.589949 3.35667 0 -0.731616 -0.71875 0.3125 0.136673 -0.10272 0.858917 0.466637 0.151035 0.841303 1.99691 0 0.589949 3.35667 0 -0.731616 +0.6875 0.3125 0.136748 -0.102661 0.861115 0.450006 0.17084 0.871674 1.95714 0 0.589949 3.35667 0 -0.731616 +0.71875 0.3125 0.136744 -0.10265 0.860992 0.467859 0.169795 0.877862 1.99977 0 0.589949 3.35667 0 -0.731616 -0.6875 0.34375 0.141005 -0.10601 0.822845 0.460343 0.201913 0.871881 1.91095 0 0.576932 3.35812 0 -0.709106 -0.71875 0.34375 0.141008 -0.105986 0.822296 0.478683 0.19869 0.890232 1.95375 0 0.576932 3.35812 0 -0.709106 +0.6875 0.34375 0.141084 -0.105924 0.824493 0.461929 0.187634 0.917775 1.91435 0 0.576932 3.35812 0 -0.709106 +0.71875 0.34375 0.14108 -0.105912 0.824097 0.479782 0.174001 0.91193 1.95671 0 0.576932 3.35812 0 -0.709106 -0.71875 0.3125 0.136673 -0.10272 0.858917 0.466637 0.151035 0.841303 1.99691 0 0.589949 3.35667 0 -0.731616 -0.75 0.3125 0.136674 -0.102698 0.858948 0.48485 0.15273 0.842788 2.04136 0 0.589949 3.35667 0 -0.731616 +0.71875 0.3125 0.136744 -0.10265 0.860992 0.467559 0.169795 0.877862 1.99977 0 0.589949 3.35667 0 -0.731616 +0.75 0.3125 0.13674 -0.102638 0.860748 0.48644 0.167429 0.878889 2.04486 0 0.589949 3.35667 0 -0.731616 -0.71875 0.34375 0.141008 -0.105986 0.822296 0.478683 0.19869 0.890232 1.95375 0 0.576932 3.35812 0 -0.709106 -0.75 0.34375 0.141009 -0.105962 0.822174 0.497907 0.176085 0.943261 1.99907 0 0.576932 3.35812 0 -0.709106 +0.71875 0.34375 0.14108 -0.105912 0.824097 0.480089 0.174001 0.91193 1.95671 0 0.576932 3.35812 0 -0.709106 +0.75 0.34375 0.141076 -0.1059 0.824127 0.49897 0.155468 0.922804 2.00184 0 0.576932 3.35812 0 -0.709106 -0.6875 0.34375 0.141005 -0.10601 0.822845 0.460343 0.201913 0.871881 1.91095 0 0.576932 3.35812 0 -0.709106 -0.71875 0.34375 0.141008 -0.105986 0.822296 0.478683 0.19869 0.890232 1.95375 0 0.576932 3.35812 0 -0.709106 +0.6875 0.34375 0.141084 -0.105924 0.824493 0.461576 0.187634 0.917775 1.91435 0 0.576932 3.35812 0 -0.709106 +0.71875 0.34375 0.14108 -0.105912 0.824097 0.479946 0.174001 0.91193 1.95671 0 0.576932 3.35812 0 -0.709106 -0.6875 0.375 0.145477 -0.109377 0.786072 0.472234 0.22296 0.932773 1.86794 0 0.563503 3.35961 0 -0.687289 -0.71875 0.375 0.145481 -0.109352 0.785767 0.491028 0.236414 0.95773 1.91069 0 0.563503 3.35961 0 -0.687289 +0.6875 0.375 0.145557 -0.10929 0.787659 0.47375 0.158839 0.975191 1.87133 0 0.563503 3.35961 0 -0.687289 +0.71875 0.375 0.145553 -0.109277 0.787598 0.49212 0.182921 0.959287 1.91379 0 0.563503 3.35961 0 -0.687289 -0.71875 0.34375 0.141008 -0.105986 0.822296 0.478683 0.19869 0.890232 1.95375 0 0.576932 3.35812 0 -0.709106 -0.75 0.34375 0.141009 -0.105962 0.822174 0.497907 0.176085 0.943261 1.99907 0 0.576932 3.35812 0 -0.709106 +0.71875 0.34375 0.14108 -0.105912 0.824097 0.479687 0.174001 0.91193 1.95671 0 0.576932 3.35812 0 -0.709106 +0.75 0.34375 0.141076 -0.1059 0.824127 0.499183 0.155468 0.922804 2.00184 0 0.576932 3.35812 0 -0.709106 -0.71875 0.375 0.145481 -0.109352 0.785767 0.491028 0.236414 0.95773 1.91069 0 0.563503 3.35961 0 -0.687289 -0.75 0.375 0.145482 -0.109327 0.784943 0.511169 0.182754 0.958539 1.95601 0 0.563503 3.35961 0 -0.687289 +0.71875 0.375 0.145553 -0.109277 0.787598 0.492464 0.182921 0.959287 1.91379 0 0.563503 3.35961 0 -0.687289 +0.75 0.375 0.145549 -0.109264 0.787231 0.51196 0.193336 0.975043 1.95889 0 0.563503 3.35961 0 -0.687289 -0.5 0.375 0.145433 -0.109518 0.786285 0.382047 0.127989 0.906249 1.66154 0 0.563503 3.35961 0 -0.687289 -0.53125 0.375 0.14544 -0.109495 0.786194 0.394822 0.13383 0.927121 1.69072 0 0.563503 3.35961 0 -0.687289 +0.5 0.375 0.145565 -0.109354 0.78833 0.383268 0.147041 1.03576 1.66564 0 0.563503 3.35961 0 -0.687289 +0.53125 0.375 0.145566 -0.109343 0.7883 0.396217 0.170589 1.02253 1.69487 0 0.563503 3.35961 0 -0.687289 -0.5 0.40625 0.150047 -0.11299 0.749634 0.391422 0.145299 1.01855 1.61878 0 0.549647 3.36115 0 -0.666144 -0.53125 0.40625 0.150054 -0.112967 0.749298 0.404574 0.133234 1.01951 1.64765 0 0.549647 3.36115 0 -0.666144 +0.5 0.40625 0.150181 -0.112829 0.751038 0.393136 0.155052 1.08379 1.62281 0 0.549647 3.36115 0 -0.666144 +0.53125 0.40625 0.150181 -0.112818 0.751038 0.406085 0.16054 1.07637 1.65196 0 0.549647 3.36115 0 -0.666144 -0.53125 0.375 0.14544 -0.109495 0.786194 0.394822 0.13383 0.927121 1.69072 0 0.563503 3.35961 0 -0.687289 -0.5625 0.375 0.145447 -0.109472 0.786316 0.408374 0.104875 0.924164 1.72189 0 0.563503 3.35961 0 -0.687289 +0.53125 0.375 0.145566 -0.109343 0.7883 0.396052 0.170589 1.02253 1.69487 0 0.563503 3.35961 0 -0.687289 +0.5625 0.375 0.145565 -0.109333 0.788055 0.409973 0.189685 1.0083 1.72604 0 0.563503 3.35961 0 -0.687289 -0.53125 0.40625 0.150054 -0.112967 0.749298 0.404574 0.133234 1.01951 1.64765 0 0.549647 3.36115 0 -0.666144 -0.5625 0.40625 0.150061 -0.112944 0.749756 0.418379 0.10166 1.03032 1.67876 0 0.549647 3.36115 0 -0.666144 +0.53125 0.40625 0.150181 -0.112818 0.751038 0.406256 0.16054 1.07637 1.65196 0 0.549647 3.36115 0 -0.666144 +0.5625 0.40625 0.15018 -0.112807 0.750946 0.420177 0.171805 1.06651 1.68317 0 0.549647 3.36115 0 -0.666144 -0.5 0.40625 0.150047 -0.11299 0.749634 0.391422 0.145299 1.01855 1.61878 0 0.549647 3.36115 0 -0.666144 -0.53125 0.40625 0.150054 -0.112967 0.749298 0.404574 0.133234 1.01951 1.64765 0 0.549647 3.36115 0 -0.666144 +0.5 0.40625 0.150181 -0.112829 0.751038 0.392847 0.155052 1.08379 1.62281 0 0.549647 3.36115 0 -0.666144 +0.53125 0.40625 0.150181 -0.112818 0.751038 0.406191 0.16054 1.07637 1.65196 0 0.549647 3.36115 0 -0.666144 -0.5 0.4375 0.15481 -0.11657 0.712219 0.401486 0.141074 1.13664 1.57628 0 0.535351 3.36274 0 -0.645649 -0.53125 0.4375 0.154817 -0.116548 0.712128 0.415001 0.155649 1.11893 1.60528 0 0.535351 3.36274 0 -0.645649 +0.5 0.4375 0.154944 -0.116412 0.713654 0.402916 0.136434 1.15062 1.57976 0 0.535351 3.36274 0 -0.645649 +0.53125 0.4375 0.154943 -0.1164 0.713715 0.41626 0.158792 1.15527 1.60903 0 0.535351 3.36274 0 -0.645649 -0.53125 0.40625 0.150054 -0.112967 0.749298 0.404574 0.133234 1.01951 1.64765 0 0.549647 3.36115 0 -0.666144 -0.5625 0.40625 0.150061 -0.112944 0.749756 0.418379 0.10166 1.03032 1.67876 0 0.549647 3.36115 0 -0.666144 +0.53125 0.40625 0.150181 -0.112818 0.751038 0.405984 0.16054 1.07637 1.65196 0 0.549647 3.36115 0 -0.666144 +0.5625 0.40625 0.15018 -0.112807 0.750946 0.42027 0.171805 1.06651 1.68317 0 0.549647 3.36115 0 -0.666144 -0.53125 0.4375 0.154817 -0.116548 0.712128 0.415001 0.155649 1.11893 1.60528 0 0.535351 3.36274 0 -0.645649 -0.5625 0.4375 0.154824 -0.116525 0.712097 0.429395 0.124483 1.13116 1.63622 0 0.535351 3.36274 0 -0.645649 +0.53125 0.4375 0.154943 -0.1164 0.713715 0.416471 0.158792 1.15527 1.60903 0 0.535351 3.36274 0 -0.645649 +0.5625 0.4375 0.154941 -0.116388 0.713562 0.430758 0.159776 1.14506 1.63999 0 0.535351 3.36274 0 -0.645649 -0.5625 0.375 0.145447 -0.109472 0.786316 0.408374 0.104875 0.924164 1.72189 0 0.563503 3.35961 0 -0.687289 -0.59375 0.375 0.145455 -0.10945 0.786682 0.422634 0.0999464 0.920661 1.75492 0 0.563503 3.35961 0 -0.687289 +0.5625 0.375 0.145565 -0.109333 0.788055 0.409775 0.189685 1.0083 1.72604 0 0.563503 3.35961 0 -0.687289 +0.59375 0.375 0.145563 -0.109322 0.787781 0.424602 0.187605 0.986383 1.75887 0 0.563503 3.35961 0 -0.687289 -0.5625 0.40625 0.150061 -0.112944 0.749756 0.418379 0.10166 1.03032 1.67876 0 0.549647 3.36115 0 -0.666144 -0.59375 0.40625 0.15007 -0.112921 0.749969 0.433379 0.139239 1.02999 1.71228 0 0.549647 3.36115 0 -0.666144 +0.5625 0.40625 0.15018 -0.112807 0.750946 0.420348 0.171805 1.06651 1.68317 0 0.549647 3.36115 0 -0.666144 +0.59375 0.40625 0.150178 -0.112795 0.750793 0.435175 0.174465 1.03542 1.71582 0 0.549647 3.36115 0 -0.666144 -0.59375 0.375 0.145455 -0.10945 0.786682 0.422634 0.0999464 0.920661 1.75492 0 0.563503 3.35961 0 -0.687289 -0.625 0.375 0.145464 -0.109426 0.786957 0.437892 0.15751 0.929167 1.79015 0 0.563503 3.35961 0 -0.687289 +0.59375 0.375 0.145563 -0.109322 0.787781 0.424236 0.187605 0.986383 1.75887 0 0.563503 3.35961 0 -0.687289 +0.625 0.375 0.145562 -0.109312 0.787537 0.439943 0.155831 0.989874 1.79396 0 0.563503 3.35961 0 -0.687289 -0.59375 0.40625 0.15007 -0.112921 0.749969 0.433379 0.139239 1.02999 1.71228 0 0.549647 3.36115 0 -0.666144 -0.625 0.40625 0.150078 -0.112897 0.749878 0.449068 0.181279 1.04016 1.74702 0 0.549647 3.36115 0 -0.666144 +0.59375 0.40625 0.150178 -0.112795 0.750793 0.435215 0.174465 1.03542 1.71582 0 0.549647 3.36115 0 -0.666144 +0.625 0.40625 0.150176 -0.112784 0.750671 0.450923 0.167091 1.03488 1.75101 0 0.549647 3.36115 0 -0.666144 -0.5625 0.40625 0.150061 -0.112944 0.749756 0.418379 0.10166 1.03032 1.67876 0 0.549647 3.36115 0 -0.666144 -0.59375 0.40625 0.15007 -0.112921 0.749969 0.433379 0.139239 1.02999 1.71228 0 0.549647 3.36115 0 -0.666144 +0.5625 0.40625 0.15018 -0.112807 0.750946 0.420086 0.171805 1.06651 1.68317 0 0.549647 3.36115 0 -0.666144 +0.59375 0.40625 0.150178 -0.112795 0.750793 0.435231 0.174465 1.03542 1.71582 0 0.549647 3.36115 0 -0.666144 -0.5625 0.4375 0.154824 -0.116525 0.712097 0.429395 0.124483 1.13116 1.63622 0 0.535351 3.36274 0 -0.645649 -0.59375 0.4375 0.154831 -0.116501 0.712494 0.444558 0.11918 1.14285 1.66925 0 0.535351 3.36274 0 -0.645649 +0.5625 0.4375 0.154941 -0.116388 0.713562 0.430956 0.159776 1.14506 1.63999 0 0.535351 3.36274 0 -0.645649 +0.59375 0.4375 0.154939 -0.116376 0.713684 0.446101 0.168047 1.13647 1.67286 0 0.535351 3.36274 0 -0.645649 -0.59375 0.40625 0.15007 -0.112921 0.749969 0.433379 0.139239 1.02999 1.71228 0 0.549647 3.36115 0 -0.666144 -0.625 0.40625 0.150078 -0.112897 0.749878 0.449068 0.181279 1.04016 1.74702 0 0.549647 3.36115 0 -0.666144 +0.59375 0.40625 0.150178 -0.112795 0.750793 0.434871 0.174465 1.03542 1.71582 0 0.549647 3.36115 0 -0.666144 +0.625 0.40625 0.150176 -0.112784 0.750671 0.4511 0.167091 1.03488 1.75101 0 0.549647 3.36115 0 -0.666144 -0.59375 0.4375 0.154831 -0.116501 0.712494 0.444558 0.11918 1.14285 1.66925 0 0.535351 3.36274 0 -0.645649 -0.625 0.4375 0.15484 -0.116477 0.712585 0.46087 0.167557 1.12083 1.70445 0 0.535351 3.36274 0 -0.645649 +0.59375 0.4375 0.154939 -0.116376 0.713684 0.446179 0.168047 1.13647 1.67286 0 0.535351 3.36274 0 -0.645649 +0.625 0.4375 0.154937 -0.116364 0.71344 0.462408 0.179842 1.12848 1.70804 0 0.535351 3.36274 0 -0.645649 -0.5 0.4375 0.15481 -0.11657 0.712219 0.401486 0.141074 1.13664 1.57628 0 0.535351 3.36274 0 -0.645649 -0.53125 0.4375 0.154817 -0.116548 0.712128 0.415001 0.155649 1.11893 1.60528 0 0.535351 3.36274 0 -0.645649 +0.5 0.4375 0.154944 -0.116412 0.713654 0.402588 0.136434 1.15062 1.57976 0 0.535351 3.36274 0 -0.645649 +0.53125 0.4375 0.154943 -0.1164 0.713715 0.416396 0.158792 1.15527 1.60903 0 0.535351 3.36274 0 -0.645649 -0.5 0.46875 0.159724 -0.120262 0.67453 0.41151 0.145238 1.20519 1.53292 0 0.520601 3.36438 0 -0.625784 -0.53125 0.46875 0.15973 -0.12024 0.674469 0.425676 0.137334 1.20939 1.56241 0 0.520601 3.36438 0 -0.625784 +0.5 0.46875 0.159858 -0.120107 0.675964 0.413114 0.179368 1.22733 1.53692 0 0.520601 3.36438 0 -0.625784 +0.53125 0.46875 0.159857 -0.120094 0.675903 0.426922 0.166431 1.23703 1.5661 0 0.520601 3.36438 0 -0.625784 -0.53125 0.4375 0.154817 -0.116548 0.712128 0.415001 0.155649 1.11893 1.60528 0 0.535351 3.36274 0 -0.645649 -0.5625 0.4375 0.154824 -0.116525 0.712097 0.429395 0.124483 1.13116 1.63622 0 0.535351 3.36274 0 -0.645649 +0.53125 0.4375 0.154943 -0.1164 0.713715 0.416165 0.158792 1.15527 1.60903 0 0.535351 3.36274 0 -0.645649 +0.5625 0.4375 0.154941 -0.116388 0.713562 0.43086 0.159776 1.14506 1.63999 0 0.535351 3.36274 0 -0.645649 -0.53125 0.46875 0.15973 -0.12024 0.674469 0.425676 0.137334 1.20939 1.56241 0 0.520601 3.36438 0 -0.625784 -0.5625 0.46875 0.159737 -0.120217 0.674744 0.440492 0.128192 1.1939 1.59359 0 0.520601 3.36438 0 -0.625784 +0.53125 0.46875 0.159857 -0.120094 0.675903 0.427146 0.166431 1.23703 1.5661 0 0.520601 3.36438 0 -0.625784 +0.5625 0.46875 0.159854 -0.120081 0.675934 0.441841 0.166999 1.23605 1.59726 0 0.520601 3.36438 0 -0.625784 -0.5 0.46875 0.159724 -0.120262 0.67453 0.41151 0.145238 1.20519 1.53292 0 0.520601 3.36438 0 -0.625784 -0.53125 0.46875 0.15973 -0.12024 0.674469 0.425676 0.137334 1.20939 1.56241 0 0.520601 3.36438 0 -0.625784 +0.5 0.46875 0.159858 -0.120107 0.675964 0.412794 0.179368 1.22733 1.53692 0 0.520601 3.36438 0 -0.625784 +0.53125 0.46875 0.159857 -0.120094 0.675903 0.427042 0.166431 1.23703 1.5661 0 0.520601 3.36438 0 -0.625784 -0.5 0.5 0.164795 -0.124069 0.636932 0.422262 0.153492 1.28969 1.49065 0 0.505384 3.36607 0 -0.606531 -0.53125 0.5 0.1648 -0.124047 0.636719 0.436615 0.157121 1.28315 1.51945 0 0.505384 3.36607 0 -0.606531 +0.5 0.5 0.164928 -0.123917 0.638092 0.423618 0.181957 1.28808 1.49397 0 0.505384 3.36607 0 -0.606531 +0.53125 0.5 0.164926 -0.123904 0.638031 0.437866 0.181822 1.29184 1.52317 0 0.505384 3.36607 0 -0.606531 -0.53125 0.46875 0.15973 -0.12024 0.674469 0.425676 0.137334 1.20939 1.56241 0 0.520601 3.36438 0 -0.625784 -0.5625 0.46875 0.159737 -0.120217 0.674744 0.440492 0.128192 1.1939 1.59359 0 0.520601 3.36438 0 -0.625784 +0.53125 0.46875 0.159857 -0.120094 0.675903 0.426814 0.166431 1.23703 1.5661 0 0.520601 3.36438 0 -0.625784 +0.5625 0.46875 0.159854 -0.120081 0.675934 0.441971 0.166999 1.23605 1.59726 0 0.520601 3.36438 0 -0.625784 -0.53125 0.5 0.1648 -0.124047 0.636719 0.436615 0.157121 1.28315 1.51945 0 0.505384 3.36607 0 -0.606531 -0.5625 0.5 0.164806 -0.124024 0.636932 0.451999 0.130039 1.28101 1.55077 0 0.505384 3.36607 0 -0.606531 +0.53125 0.5 0.164926 -0.123904 0.638031 0.438116 0.181822 1.29184 1.52317 0 0.505384 3.36607 0 -0.606531 +0.5625 0.5 0.164922 -0.12389 0.637909 0.453272 0.17084 1.30673 1.55416 0 0.505384 3.36607 0 -0.606531 -0.5625 0.4375 0.154824 -0.116525 0.712097 0.429395 0.124483 1.13116 1.63622 0 0.535351 3.36274 0 -0.645649 -0.59375 0.4375 0.154831 -0.116501 0.712494 0.444558 0.11918 1.14285 1.66925 0 0.535351 3.36274 0 -0.645649 +0.5625 0.4375 0.154941 -0.116388 0.713562 0.430623 0.159776 1.14506 1.63999 0 0.535351 3.36274 0 -0.645649 +0.59375 0.4375 0.154939 -0.116376 0.713684 0.446228 0.168047 1.13647 1.67286 0 0.535351 3.36274 0 -0.645649 -0.5625 0.46875 0.159737 -0.120217 0.674744 0.440492 0.128192 1.1939 1.59359 0 0.520601 3.36438 0 -0.625784 -0.59375 0.46875 0.159744 -0.120193 0.674805 0.456272 0.131719 1.20585 1.62656 0 0.520601 3.36438 0 -0.625784 +0.5625 0.46875 0.159854 -0.120081 0.675934 0.442099 0.166999 1.23605 1.59726 0 0.520601 3.36438 0 -0.625784 +0.59375 0.46875 0.159851 -0.120068 0.675842 0.457704 0.17086 1.23739 1.62992 0 0.520601 3.36438 0 -0.625784 -0.59375 0.4375 0.154831 -0.116501 0.712494 0.444558 0.11918 1.14285 1.66925 0 0.535351 3.36274 0 -0.645649 -0.625 0.4375 0.15484 -0.116477 0.712585 0.46087 0.167557 1.12083 1.70445 0 0.535351 3.36274 0 -0.645649 +0.59375 0.4375 0.154939 -0.116376 0.713684 0.445845 0.168047 1.13647 1.67286 0 0.535351 3.36274 0 -0.645649 +0.625 0.4375 0.154937 -0.116364 0.71344 0.462558 0.179842 1.12848 1.70804 0 0.535351 3.36274 0 -0.645649 -0.59375 0.46875 0.159744 -0.120193 0.674805 0.456272 0.131719 1.20585 1.62656 0 0.520601 3.36438 0 -0.625784 -0.625 0.46875 0.159752 -0.120168 0.675079 0.472961 0.161985 1.21062 1.66165 0 0.520601 3.36438 0 -0.625784 +0.59375 0.46875 0.159851 -0.120068 0.675842 0.457815 0.17086 1.23739 1.62992 0 0.520601 3.36438 0 -0.625784 +0.625 0.46875 0.159848 -0.120056 0.675812 0.474529 0.168327 1.22858 1.66525 0 0.520601 3.36438 0 -0.625784 -0.5625 0.46875 0.159737 -0.120217 0.674744 0.440492 0.128192 1.1939 1.59359 0 0.520601 3.36438 0 -0.625784 -0.59375 0.46875 0.159744 -0.120193 0.674805 0.456272 0.131719 1.20585 1.62656 0 0.520601 3.36438 0 -0.625784 +0.5625 0.46875 0.159854 -0.120081 0.675934 0.441739 0.166999 1.23605 1.59726 0 0.520601 3.36438 0 -0.625784 +0.59375 0.46875 0.159851 -0.120068 0.675842 0.457853 0.17086 1.23739 1.62992 0 0.520601 3.36438 0 -0.625784 -0.5625 0.5 0.164806 -0.124024 0.636932 0.451999 0.130039 1.28101 1.55077 0 0.505384 3.36607 0 -0.606531 -0.59375 0.5 0.164813 -0.124 0.637146 0.468179 0.146016 1.26229 1.58369 0 0.505384 3.36607 0 -0.606531 +0.5625 0.5 0.164922 -0.12389 0.637909 0.453487 0.17084 1.30673 1.55416 0 0.505384 3.36607 0 -0.606531 +0.59375 0.5 0.164919 -0.123877 0.638 0.469601 0.170132 1.31304 1.58719 0 0.505384 3.36607 0 -0.606531 -0.59375 0.46875 0.159744 -0.120193 0.674805 0.456272 0.131719 1.20585 1.62656 0 0.520601 3.36438 0 -0.625784 -0.625 0.46875 0.159752 -0.120168 0.675079 0.472961 0.161985 1.21062 1.66165 0 0.520601 3.36438 0 -0.625784 +0.59375 0.46875 0.159851 -0.120068 0.675842 0.457443 0.17086 1.23739 1.62992 0 0.520601 3.36438 0 -0.625784 +0.625 0.46875 0.159848 -0.120056 0.675812 0.474668 0.168327 1.22858 1.66525 0 0.520601 3.36438 0 -0.625784 -0.59375 0.5 0.164813 -0.124 0.637146 0.468179 0.146016 1.26229 1.58369 0 0.505384 3.36607 0 -0.606531 -0.625 0.5 0.16482 -0.123976 0.637146 0.485545 0.17787 1.27778 1.61881 0 0.505384 3.36607 0 -0.606531 +0.59375 0.5 0.164919 -0.123877 0.638 0.469741 0.170132 1.31304 1.58719 0 0.505384 3.36607 0 -0.606531 +0.625 0.5 0.164916 -0.123863 0.637848 0.486967 0.164257 1.30399 1.62235 0 0.505384 3.36607 0 -0.606531 -0.625 0.375 0.145464 -0.109426 0.786957 0.437892 0.15751 0.929167 1.79015 0 0.563503 3.35961 0 -0.687289 -0.65625 0.375 0.145472 -0.109401 0.78656 0.454541 0.216673 0.937881 1.8279 0 0.563503 3.35961 0 -0.687289 +0.625 0.375 0.145562 -0.109312 0.787537 0.439671 0.155831 0.989874 1.79396 0 0.563503 3.35961 0 -0.687289 +0.65625 0.375 0.145559 -0.109301 0.78772 0.456253 0.141692 0.995842 1.83145 0 0.563503 3.35961 0 -0.687289 -0.625 0.40625 0.150078 -0.112897 0.749878 0.449068 0.181279 1.04016 1.74702 0 0.549647 3.36115 0 -0.666144 -0.65625 0.40625 0.150085 -0.112873 0.749573 0.466193 0.192865 1.0285 1.78474 0 0.549647 3.36115 0 -0.666144 +0.625 0.40625 0.150176 -0.112784 0.750671 0.451192 0.167091 1.03488 1.75101 0 0.549647 3.36115 0 -0.666144 +0.65625 0.40625 0.150173 -0.112772 0.75061 0.467774 0.155444 1.05166 1.78844 0 0.549647 3.36115 0 -0.666144 -0.65625 0.375 0.145472 -0.109401 0.78656 0.454541 0.216673 0.937881 1.8279 0 0.563503 3.35961 0 -0.687289 -0.6875 0.375 0.145477 -0.109377 0.786072 0.472234 0.22296 0.932773 1.86794 0 0.563503 3.35961 0 -0.687289 +0.65625 0.375 0.145559 -0.109301 0.78772 0.455971 0.141692 0.995842 1.83145 0 0.563503 3.35961 0 -0.687289 +0.6875 0.375 0.145557 -0.10929 0.787659 0.473668 0.158839 0.975191 1.87133 0 0.563503 3.35961 0 -0.687289 -0.65625 0.40625 0.150085 -0.112873 0.749573 0.466193 0.192865 1.0285 1.78474 0 0.549647 3.36115 0 -0.666144 -0.6875 0.40625 0.150091 -0.112848 0.749512 0.484321 0.232233 1.02936 1.82494 0 0.549647 3.36115 0 -0.666144 +0.65625 0.40625 0.150173 -0.112772 0.75061 0.468075 0.155444 1.05166 1.78844 0 0.549647 3.36115 0 -0.666144 +0.6875 0.40625 0.15017 -0.11276 0.750671 0.485772 0.164702 1.04822 1.82831 0 0.549647 3.36115 0 -0.666144 -0.625 0.40625 0.150078 -0.112897 0.749878 0.449068 0.181279 1.04016 1.74702 0 0.549647 3.36115 0 -0.666144 -0.65625 0.40625 0.150085 -0.112873 0.749573 0.466193 0.192865 1.0285 1.78474 0 0.549647 3.36115 0 -0.666144 +0.625 0.40625 0.150176 -0.112784 0.750671 0.45078 0.167091 1.03488 1.75101 0 0.549647 3.36115 0 -0.666144 +0.65625 0.40625 0.150173 -0.112772 0.75061 0.467982 0.155444 1.05166 1.78844 0 0.549647 3.36115 0 -0.666144 -0.625 0.4375 0.15484 -0.116477 0.712585 0.46087 0.167557 1.12083 1.70445 0 0.535351 3.36274 0 -0.645649 -0.65625 0.4375 0.154847 -0.116452 0.712372 0.478512 0.217728 1.11365 1.74221 0 0.535351 3.36274 0 -0.645649 +0.625 0.4375 0.154937 -0.116364 0.71344 0.462709 0.179842 1.12848 1.70804 0 0.535351 3.36274 0 -0.645649 +0.65625 0.4375 0.154934 -0.116351 0.713379 0.479911 0.168604 1.12876 1.74554 0 0.535351 3.36274 0 -0.645649 -0.65625 0.40625 0.150085 -0.112873 0.749573 0.466193 0.192865 1.0285 1.78474 0 0.549647 3.36115 0 -0.666144 -0.6875 0.40625 0.150091 -0.112848 0.749512 0.484321 0.232233 1.02936 1.82494 0 0.549647 3.36115 0 -0.666144 +0.65625 0.40625 0.150173 -0.112772 0.75061 0.467675 0.155444 1.05166 1.78844 0 0.549647 3.36115 0 -0.666144 +0.6875 0.40625 0.15017 -0.11276 0.750671 0.48593 0.164702 1.04822 1.82831 0 0.549647 3.36115 0 -0.666144 -0.65625 0.4375 0.154847 -0.116452 0.712372 0.478512 0.217728 1.11365 1.74221 0 0.535351 3.36274 0 -0.645649 -0.6875 0.4375 0.154853 -0.116427 0.711884 0.49728 0.237253 1.12823 1.78211 0 0.535351 3.36274 0 -0.645649 +0.65625 0.4375 0.154934 -0.116351 0.713379 0.480172 0.168604 1.12876 1.74554 0 0.535351 3.36274 0 -0.645649 +0.6875 0.4375 0.154931 -0.116338 0.713318 0.498427 0.162967 1.12748 1.78536 0 0.535351 3.36274 0 -0.645649 -0.6875 0.375 0.145477 -0.109377 0.786072 0.472234 0.22296 0.932773 1.86794 0 0.563503 3.35961 0 -0.687289 -0.71875 0.375 0.145481 -0.109352 0.785767 0.491028 0.236414 0.95773 1.91069 0 0.563503 3.35961 0 -0.687289 +0.6875 0.375 0.145557 -0.10929 0.787659 0.473422 0.158839 0.975191 1.87133 0 0.563503 3.35961 0 -0.687289 +0.71875 0.375 0.145553 -0.109277 0.787598 0.492336 0.182921 0.959287 1.91379 0 0.563503 3.35961 0 -0.687289 -0.6875 0.40625 0.150091 -0.112848 0.749512 0.484321 0.232233 1.02936 1.82494 0 0.549647 3.36115 0 -0.666144 -0.71875 0.40625 0.150096 -0.112823 0.748627 0.504051 0.229917 1.03651 1.86786 0 0.549647 3.36115 0 -0.666144 +0.6875 0.40625 0.15017 -0.11276 0.750671 0.486006 0.164702 1.04822 1.82831 0 0.549647 3.36115 0 -0.666144 +0.71875 0.40625 0.150167 -0.112746 0.750488 0.50492 0.184449 1.03797 1.8706 0 0.549647 3.36115 0 -0.666144 -0.71875 0.375 0.145481 -0.109352 0.785767 0.491028 0.236414 0.95773 1.91069 0 0.563503 3.35961 0 -0.687289 -0.75 0.375 0.145482 -0.109327 0.784943 0.511169 0.182754 0.958539 1.95601 0 0.563503 3.35961 0 -0.687289 +0.71875 0.375 0.145553 -0.109277 0.787598 0.491998 0.182921 0.959287 1.91379 0 0.563503 3.35961 0 -0.687289 +0.75 0.375 0.145549 -0.109264 0.787231 0.512201 0.193336 0.975043 1.95889 0 0.563503 3.35961 0 -0.687289 -0.71875 0.40625 0.150096 -0.112823 0.748627 0.504051 0.229917 1.03651 1.86786 0 0.549647 3.36115 0 -0.666144 -0.75 0.40625 0.150097 -0.112798 0.748627 0.524383 0.200516 1.02761 1.91301 0 0.549647 3.36115 0 -0.666144 +0.71875 0.40625 0.150167 -0.112746 0.750488 0.505199 0.184449 1.03797 1.8706 0 0.549647 3.36115 0 -0.666144 +0.75 0.40625 0.150163 -0.112733 0.750275 0.525403 0.186163 1.03098 1.91591 0 0.549647 3.36115 0 -0.666144 -0.6875 0.40625 0.150091 -0.112848 0.749512 0.484321 0.232233 1.02936 1.82494 0 0.549647 3.36115 0 -0.666144 -0.71875 0.40625 0.150096 -0.112823 0.748627 0.504051 0.229917 1.03651 1.86786 0 0.549647 3.36115 0 -0.666144 +0.6875 0.40625 0.15017 -0.11276 0.750671 0.485616 0.164702 1.04822 1.82831 0 0.549647 3.36115 0 -0.666144 +0.71875 0.40625 0.150167 -0.112746 0.750488 0.505111 0.184449 1.03797 1.8706 0 0.549647 3.36115 0 -0.666144 -0.6875 0.4375 0.154853 -0.116427 0.711884 0.49728 0.237253 1.12823 1.78211 0 0.535351 3.36274 0 -0.645649 -0.71875 0.4375 0.154857 -0.116402 0.711517 0.517304 0.242862 1.11658 1.82484 0 0.535351 3.36274 0 -0.645649 +0.6875 0.4375 0.154931 -0.116338 0.713318 0.498735 0.162967 1.12748 1.78536 0 0.535351 3.36274 0 -0.645649 +0.71875 0.4375 0.154927 -0.116324 0.713348 0.51823 0.177319 1.11943 1.8279 0 0.535351 3.36274 0 -0.645649 -0.71875 0.40625 0.150096 -0.112823 0.748627 0.504051 0.229917 1.03651 1.86786 0 0.549647 3.36115 0 -0.666144 -0.75 0.40625 0.150097 -0.112798 0.748627 0.524383 0.200516 1.02761 1.91301 0 0.549647 3.36115 0 -0.666144 +0.71875 0.40625 0.150167 -0.112746 0.750488 0.504754 0.184449 1.03797 1.8706 0 0.549647 3.36115 0 -0.666144 +0.75 0.40625 0.150163 -0.112733 0.750275 0.525596 0.186163 1.03098 1.91591 0 0.549647 3.36115 0 -0.666144 -0.71875 0.4375 0.154857 -0.116402 0.711517 0.517304 0.242862 1.11658 1.82484 0 0.535351 3.36274 0 -0.645649 -0.75 0.4375 0.154859 -0.116376 0.710907 0.538603 0.207898 1.15311 1.87007 0 0.535351 3.36274 0 -0.645649 +0.71875 0.4375 0.154927 -0.116324 0.713348 0.518497 0.177319 1.11943 1.8279 0 0.535351 3.36274 0 -0.645649 +0.75 0.4375 0.154923 -0.11631 0.713104 0.539339 0.195525 1.10852 1.87303 0 0.535351 3.36274 0 -0.645649 -0.625 0.4375 0.15484 -0.116477 0.712585 0.46087 0.167557 1.12083 1.70445 0 0.535351 3.36274 0 -0.645649 -0.65625 0.4375 0.154847 -0.116452 0.712372 0.478512 0.217728 1.11365 1.74221 0 0.535351 3.36274 0 -0.645649 +0.625 0.4375 0.154937 -0.116364 0.71344 0.462313 0.179842 1.12848 1.70804 0 0.535351 3.36274 0 -0.645649 +0.65625 0.4375 0.154934 -0.116351 0.713379 0.480036 0.168604 1.12876 1.74554 0 0.535351 3.36274 0 -0.645649 -0.625 0.46875 0.159752 -0.120168 0.675079 0.472961 0.161985 1.21062 1.66165 0 0.520601 3.36438 0 -0.625784 -0.65625 0.46875 0.15976 -0.120144 0.674835 0.491092 0.213797 1.20427 1.69923 0 0.520601 3.36438 0 -0.625784 +0.625 0.46875 0.159848 -0.120056 0.675812 0.474749 0.168327 1.22858 1.66525 0 0.520601 3.36438 0 -0.625784 +0.65625 0.46875 0.159845 -0.120042 0.675751 0.492472 0.162145 1.21347 1.7026 0 0.520601 3.36438 0 -0.625784 -0.65625 0.4375 0.154847 -0.116452 0.712372 0.478512 0.217728 1.11365 1.74221 0 0.535351 3.36274 0 -0.645649 -0.6875 0.4375 0.154853 -0.116427 0.711884 0.49728 0.237253 1.12823 1.78211 0 0.535351 3.36274 0 -0.645649 +0.65625 0.4375 0.154934 -0.116351 0.713379 0.479771 0.168604 1.12876 1.74554 0 0.535351 3.36274 0 -0.645649 +0.6875 0.4375 0.154931 -0.116338 0.713318 0.498585 0.162967 1.12748 1.78536 0 0.535351 3.36274 0 -0.645649 -0.65625 0.46875 0.15976 -0.120144 0.674835 0.491092 0.213797 1.20427 1.69923 0 0.520601 3.36438 0 -0.625784 -0.6875 0.46875 0.159766 -0.120119 0.67453 0.510388 0.254559 1.18929 1.73917 0 0.520601 3.36438 0 -0.625784 +0.65625 0.46875 0.159845 -0.120042 0.675751 0.49275 0.162145 1.21347 1.7026 0 0.520601 3.36438 0 -0.625784 +0.6875 0.46875 0.159842 -0.120029 0.675812 0.511564 0.165429 1.21052 1.74248 0 0.520601 3.36438 0 -0.625784 -0.625 0.46875 0.159752 -0.120168 0.675079 0.472961 0.161985 1.21062 1.66165 0 0.520601 3.36438 0 -0.625784 -0.65625 0.46875 0.15976 -0.120144 0.674835 0.491092 0.213797 1.20427 1.69923 0 0.520601 3.36438 0 -0.625784 +0.625 0.46875 0.159848 -0.120056 0.675812 0.474396 0.168327 1.22858 1.66525 0 0.520601 3.36438 0 -0.625784 +0.65625 0.46875 0.159845 -0.120042 0.675751 0.492601 0.162145 1.21347 1.7026 0 0.520601 3.36438 0 -0.625784 -0.625 0.5 0.16482 -0.123976 0.637146 0.485545 0.17787 1.27778 1.61881 0 0.505384 3.36607 0 -0.606531 -0.65625 0.5 0.164828 -0.123952 0.637024 0.504232 0.209888 1.28369 1.65646 0 0.505384 3.36607 0 -0.606531 +0.625 0.5 0.164916 -0.123863 0.637848 0.487203 0.164257 1.30399 1.62235 0 0.505384 3.36607 0 -0.606531 +0.65625 0.5 0.164912 -0.123849 0.638 0.505408 0.155888 1.30265 1.6597 0 0.505384 3.36607 0 -0.606531 -0.65625 0.46875 0.15976 -0.120144 0.674835 0.491092 0.213797 1.20427 1.69923 0 0.520601 3.36438 0 -0.625784 -0.6875 0.46875 0.159766 -0.120119 0.67453 0.510388 0.254559 1.18929 1.73917 0 0.520601 3.36438 0 -0.625784 +0.65625 0.46875 0.159845 -0.120042 0.675751 0.492334 0.162145 1.21347 1.7026 0 0.520601 3.36438 0 -0.625784 +0.6875 0.46875 0.159842 -0.120029 0.675812 0.511748 0.165429 1.21052 1.74248 0 0.520601 3.36438 0 -0.625784 -0.65625 0.5 0.164828 -0.123952 0.637024 0.504232 0.209888 1.28369 1.65646 0 0.505384 3.36607 0 -0.606531 -0.6875 0.5 0.164834 -0.123927 0.636749 0.524266 0.25303 1.26836 1.69669 0 0.505384 3.36607 0 -0.606531 +0.65625 0.5 0.164912 -0.123849 0.638 0.505709 0.155888 1.30265 1.6597 0 0.505384 3.36607 0 -0.606531 +0.6875 0.5 0.164909 -0.123835 0.63797 0.525124 0.163594 1.29755 1.69959 0 0.505384 3.36607 0 -0.606531 -0.6875 0.4375 0.154853 -0.116427 0.711884 0.49728 0.237253 1.12823 1.78211 0 0.535351 3.36274 0 -0.645649 -0.71875 0.4375 0.154857 -0.116402 0.711517 0.517304 0.242862 1.11658 1.82484 0 0.535351 3.36274 0 -0.645649 +0.6875 0.4375 0.154931 -0.116338 0.713318 0.498309 0.162967 1.12748 1.78536 0 0.535351 3.36274 0 -0.645649 +0.71875 0.4375 0.154927 -0.116324 0.713348 0.518355 0.177319 1.11943 1.8279 0 0.535351 3.36274 0 -0.645649 -0.6875 0.46875 0.159766 -0.120119 0.67453 0.510388 0.254559 1.18929 1.73917 0 0.520601 3.36438 0 -0.625784 -0.71875 0.46875 0.15977 -0.120094 0.673859 0.531298 0.270593 1.20255 1.78212 0 0.520601 3.36438 0 -0.625784 +0.6875 0.46875 0.159842 -0.120029 0.675812 0.511864 0.165429 1.21052 1.74248 0 0.520601 3.36438 0 -0.625784 +0.71875 0.46875 0.159838 -0.120014 0.67572 0.53191 0.178521 1.20736 1.7848 0 0.520601 3.36438 0 -0.625784 -0.71875 0.4375 0.154857 -0.116402 0.711517 0.517304 0.242862 1.11658 1.82484 0 0.535351 3.36274 0 -0.645649 -0.75 0.4375 0.154859 -0.116376 0.710907 0.538603 0.207898 1.15311 1.87007 0 0.535351 3.36274 0 -0.645649 +0.71875 0.4375 0.154927 -0.116324 0.713348 0.51807 0.177319 1.11943 1.8279 0 0.535351 3.36274 0 -0.645649 +0.75 0.4375 0.154923 -0.11631 0.713104 0.539511 0.195525 1.10852 1.87303 0 0.535351 3.36274 0 -0.645649 -0.71875 0.46875 0.15977 -0.120094 0.673859 0.531298 0.270593 1.20255 1.78212 0 0.520601 3.36438 0 -0.625784 -0.75 0.46875 0.159772 -0.120067 0.673309 0.553176 0.225038 1.20612 1.8272 0 0.520601 3.36438 0 -0.625784 +0.71875 0.46875 0.159838 -0.120014 0.67572 0.532262 0.178521 1.20736 1.7848 0 0.520601 3.36438 0 -0.625784 +0.75 0.46875 0.159835 -0.12 0.675629 0.553702 0.190709 1.19894 1.83019 0 0.520601 3.36438 0 -0.625784 -0.6875 0.46875 0.159766 -0.120119 0.67453 0.510388 0.254559 1.18929 1.73917 0 0.520601 3.36438 0 -0.625784 -0.71875 0.46875 0.15977 -0.120094 0.673859 0.531298 0.270593 1.20255 1.78212 0 0.520601 3.36438 0 -0.625784 +0.6875 0.46875 0.159842 -0.120029 0.675812 0.511425 0.165429 1.21052 1.74248 0 0.520601 3.36438 0 -0.625784 +0.71875 0.46875 0.159838 -0.120014 0.67572 0.532134 0.178521 1.20736 1.7848 0 0.520601 3.36438 0 -0.625784 -0.6875 0.5 0.164834 -0.123927 0.636749 0.524266 0.25303 1.26836 1.69669 0 0.505384 3.36607 0 -0.606531 -0.71875 0.5 0.164838 -0.123902 0.636139 0.545577 0.271709 1.2563 1.73917 0 0.505384 3.36607 0 -0.606531 +0.6875 0.5 0.164909 -0.123835 0.63797 0.52539 0.163594 1.29755 1.69959 0 0.505384 3.36607 0 -0.606531 +0.71875 0.5 0.164905 -0.12382 0.638031 0.546099 0.179084 1.30089 1.74209 0 0.505384 3.36607 0 -0.606531 -0.71875 0.46875 0.15977 -0.120094 0.673859 0.531298 0.270593 1.20255 1.78212 0 0.520601 3.36438 0 -0.625784 -0.75 0.46875 0.159772 -0.120067 0.673309 0.553176 0.225038 1.20612 1.8272 0 0.520601 3.36438 0 -0.625784 +0.71875 0.46875 0.159838 -0.120014 0.67572 0.531759 0.178521 1.20736 1.7848 0 0.520601 3.36438 0 -0.625784 +0.75 0.46875 0.159835 -0.12 0.675629 0.553892 0.190709 1.19894 1.83019 0 0.520601 3.36438 0 -0.625784 -0.71875 0.5 0.164838 -0.123902 0.636139 0.545577 0.271709 1.2563 1.73917 0 0.505384 3.36607 0 -0.606531 -0.75 0.5 0.16484 -0.123876 0.63559 0.568153 0.223537 1.26668 1.78426 0 0.505384 3.36607 0 -0.606531 +0.71875 0.5 0.164905 -0.12382 0.638031 0.546442 0.179084 1.30089 1.74209 0 0.505384 3.36607 0 -0.606531 +0.75 0.5 0.164901 -0.123806 0.637817 0.568576 0.186595 1.27214 1.78719 0 0.505384 3.36607 0 -0.606531 -0.75 0.25 0.128398 -0.0964598 0.931305 0.461028 0.124986 0.745089 2.12813 0 0.614792 3.35391 0 -0.778801 -0.78125 0.25 0.1284 -0.0964403 0.931274 0.479544 0.108574 0.75123 2.17617 0 0.614792 3.35391 0 -0.778801 +0.75 0.25 0.128462 -0.0964089 0.933746 0.461886 0.164259 0.799062 2.13076 0 0.614792 3.35391 0 -0.778801 +0.78125 0.25 0.128457 -0.0963989 0.933533 0.480838 0.155957 0.80035 2.17889 0 0.614792 3.35391 0 -0.778801 -0.75 0.28125 0.132472 -0.0995312 0.894958 0.473097 0.134943 0.783765 2.08533 0 0.602565 3.35527 0 -0.75484 -0.78125 0.28125 0.132473 -0.0995098 0.895203 0.491932 0.104287 0.802298 2.13297 0 0.602565 3.35527 0 -0.75484 +0.75 0.28125 0.132537 -0.0994756 0.8974 0.474208 0.153075 0.837236 2.08784 0 0.602565 3.35527 0 -0.75484 +0.78125 0.28125 0.132531 -0.0994647 0.897156 0.49316 0.150314 0.830669 2.13582 0 0.602565 3.35527 0 -0.75484 -0.78125 0.25 0.1284 -0.0964403 0.931274 0.479544 0.108574 0.75123 2.17617 0 0.614792 3.35391 0 -0.778801 -0.8125 0.25 0.1284 -0.0964204 0.931519 0.499116 0.0874465 0.754719 2.22722 0 0.614792 3.35391 0 -0.778801 +0.78125 0.25 0.128457 -0.0963989 0.933533 0.480541 0.155957 0.80035 2.17889 0 0.614792 3.35391 0 -0.778801 +0.8125 0.25 0.12845 -0.0963886 0.933411 0.500591 0.140487 0.789219 2.22984 0 0.614792 3.35391 0 -0.778801 -0.78125 0.28125 0.132473 -0.0995098 0.895203 0.491932 0.104287 0.802298 2.13297 0 0.602565 3.35527 0 -0.75484 -0.8125 0.28125 0.132474 -0.0994883 0.895325 0.512229 0.0913909 0.807939 2.18416 0 0.602565 3.35527 0 -0.75484 +0.78125 0.28125 0.132531 -0.0994647 0.897156 0.493456 0.150314 0.830669 2.13582 0 0.602565 3.35527 0 -0.75484 +0.8125 0.28125 0.132525 -0.0994528 0.897186 0.513505 0.142612 0.826612 2.18698 0 0.602565 3.35527 0 -0.75484 -0.75 0.28125 0.132472 -0.0995312 0.894958 0.473097 0.134943 0.783765 2.08533 0 0.602565 3.35527 0 -0.75484 -0.78125 0.28125 0.132473 -0.0995098 0.895203 0.491932 0.104287 0.802298 2.13297 0 0.602565 3.35527 0 -0.75484 +0.75 0.28125 0.132537 -0.0994756 0.8974 0.473836 0.153075 0.837236 2.08784 0 0.602565 3.35527 0 -0.75484 +0.78125 0.28125 0.132531 -0.0994647 0.897156 0.493353 0.150314 0.830669 2.13582 0 0.602565 3.35527 0 -0.75484 -0.75 0.3125 0.136674 -0.102698 0.858948 0.48485 0.15273 0.842788 2.04136 0 0.589949 3.35667 0 -0.731616 -0.78125 0.3125 0.136675 -0.102674 0.858704 0.50485 0.140861 0.87452 2.08989 0 0.589949 3.35667 0 -0.731616 +0.75 0.3125 0.13674 -0.102638 0.860748 0.48657 0.167429 0.878889 2.04486 0 0.589949 3.35667 0 -0.731616 +0.78125 0.3125 0.136734 -0.102626 0.860626 0.506087 0.154465 0.87136 2.09282 0 0.589949 3.35667 0 -0.731616 -0.78125 0.28125 0.132473 -0.0995098 0.895203 0.491932 0.104287 0.802298 2.13297 0 0.602565 3.35527 0 -0.75484 -0.8125 0.28125 0.132474 -0.0994883 0.895325 0.512229 0.0913909 0.807939 2.18416 0 0.602565 3.35527 0 -0.75484 +0.78125 0.28125 0.132531 -0.0994647 0.897156 0.493029 0.150314 0.830669 2.13582 0 0.602565 3.35527 0 -0.75484 +0.8125 0.28125 0.132525 -0.0994528 0.897186 0.51371 0.142612 0.826612 2.18698 0 0.602565 3.35527 0 -0.75484 -0.78125 0.3125 0.136675 -0.102674 0.858704 0.50485 0.140861 0.87452 2.08989 0 0.589949 3.35667 0 -0.731616 -0.8125 0.3125 0.136676 -0.102652 0.858826 0.52574 0.101286 0.860843 2.14096 0 0.589949 3.35667 0 -0.731616 +0.78125 0.3125 0.136734 -0.102626 0.860626 0.506409 0.154465 0.87136 2.09282 0 0.589949 3.35667 0 -0.731616 +0.8125 0.3125 0.136728 -0.102613 0.860565 0.52709 0.145694 0.878946 2.14391 0 0.589949 3.35667 0 -0.731616 -0.8125 0.25 0.1284 -0.0964204 0.931519 0.499116 0.0874465 0.754719 2.22722 0 0.614792 3.35391 0 -0.778801 -0.84375 0.25 0.128401 -0.0964005 0.931793 0.519897 0.0836404 0.763977 2.28145 0 0.614792 3.35391 0 -0.778801 +0.8125 0.25 0.12845 -0.0963886 0.933411 0.500247 0.140487 0.789219 2.22984 0 0.614792 3.35391 0 -0.778801 +0.84375 0.25 0.128443 -0.0963771 0.933441 0.521588 0.14131 0.786566 2.28426 0 0.614792 3.35391 0 -0.778801 -0.8125 0.28125 0.132474 -0.0994883 0.895325 0.512229 0.0913909 0.807939 2.18416 0 0.602565 3.35527 0 -0.75484 -0.84375 0.28125 0.132474 -0.0994669 0.895721 0.533524 0.0990502 0.805189 2.23814 0 0.602565 3.35527 0 -0.75484 +0.8125 0.28125 0.132525 -0.0994528 0.897186 0.51381 0.142612 0.826612 2.18698 0 0.602565 3.35527 0 -0.75484 +0.84375 0.28125 0.132518 -0.0994398 0.897064 0.53515 0.142642 0.827567 2.24121 0 0.602565 3.35527 0 -0.75484 -0.84375 0.25 0.128401 -0.0964005 0.931793 0.519897 0.0836404 0.763977 2.28145 0 0.614792 3.35391 0 -0.778801 -0.875 0.25 0.128401 -0.0963808 0.932007 0.541981 0.0712739 0.788251 2.33899 0 0.614792 3.35391 0 -0.778801 +0.84375 0.25 0.128443 -0.0963771 0.933441 0.521235 0.14131 0.786566 2.28426 0 0.614792 3.35391 0 -0.778801 +0.875 0.25 0.128436 -0.0963645 0.933258 0.543983 0.14037 0.780769 2.34212 0 0.614792 3.35391 0 -0.778801 -0.84375 0.28125 0.132474 -0.0994669 0.895721 0.533524 0.0990502 0.805189 2.23814 0 0.602565 3.35527 0 -0.75484 -0.875 0.28125 0.132475 -0.0994455 0.89566 0.556541 0.0926479 0.802795 2.29599 0 0.602565 3.35527 0 -0.75484 +0.84375 0.28125 0.132518 -0.0994398 0.897064 0.535497 0.142642 0.827567 2.24121 0 0.602565 3.35527 0 -0.75484 +0.875 0.28125 0.132511 -0.0994259 0.897064 0.558245 0.139634 0.826608 2.2992 0 0.602565 3.35527 0 -0.75484 -0.8125 0.28125 0.132474 -0.0994883 0.895325 0.512229 0.0913909 0.807939 2.18416 0 0.602565 3.35527 0 -0.75484 -0.84375 0.28125 0.132474 -0.0994669 0.895721 0.533524 0.0990502 0.805189 2.23814 0 0.602565 3.35527 0 -0.75484 +0.8125 0.28125 0.132525 -0.0994528 0.897186 0.513379 0.142612 0.826612 2.18698 0 0.602565 3.35527 0 -0.75484 +0.84375 0.28125 0.132518 -0.0994398 0.897064 0.535381 0.142642 0.827567 2.24121 0 0.602565 3.35527 0 -0.75484 -0.8125 0.3125 0.136676 -0.102652 0.858826 0.52574 0.101286 0.860843 2.14096 0 0.589949 3.35667 0 -0.731616 -0.84375 0.3125 0.136677 -0.102629 0.859161 0.54789 0.086849 0.857429 2.19531 0 0.589949 3.35667 0 -0.731616 +0.8125 0.3125 0.136728 -0.102613 0.860565 0.527393 0.145694 0.878946 2.14391 0 0.589949 3.35667 0 -0.731616 +0.84375 0.3125 0.136721 -0.102599 0.860565 0.549395 0.150469 0.877429 2.19843 0 0.589949 3.35667 0 -0.731616 -0.84375 0.28125 0.132474 -0.0994669 0.895721 0.533524 0.0990502 0.805189 2.23814 0 0.602565 3.35527 0 -0.75484 -0.875 0.28125 0.132475 -0.0994455 0.89566 0.556541 0.0926479 0.802795 2.29599 0 0.602565 3.35527 0 -0.75484 +0.84375 0.28125 0.132518 -0.0994398 0.897064 0.535014 0.142642 0.827567 2.24121 0 0.602565 3.35527 0 -0.75484 +0.875 0.28125 0.132511 -0.0994259 0.897064 0.558483 0.139634 0.826608 2.2992 0 0.602565 3.35527 0 -0.75484 -0.84375 0.3125 0.136677 -0.102629 0.859161 0.54789 0.086849 0.857429 2.19531 0 0.589949 3.35667 0 -0.731616 -0.875 0.3125 0.136678 -0.102606 0.859406 0.571591 0.0842461 0.827402 2.25336 0 0.589949 3.35667 0 -0.731616 +0.84375 0.3125 0.136721 -0.102599 0.860565 0.549795 0.150469 0.877429 2.19843 0 0.589949 3.35667 0 -0.731616 +0.875 0.3125 0.136714 -0.102584 0.860382 0.573264 0.143554 0.876042 2.25627 0 0.589949 3.35667 0 -0.731616 -0.75 0.3125 0.136674 -0.102698 0.858948 0.48485 0.15273 0.842788 2.04136 0 0.589949 3.35667 0 -0.731616 -0.78125 0.3125 0.136675 -0.102674 0.858704 0.50485 0.140861 0.87452 2.08989 0 0.589949 3.35667 0 -0.731616 +0.75 0.3125 0.13674 -0.102638 0.860748 0.486173 0.167429 0.878889 2.04486 0 0.589949 3.35667 0 -0.731616 +0.78125 0.3125 0.136734 -0.102626 0.860626 0.506282 0.154465 0.87136 2.09282 0 0.589949 3.35667 0 -0.731616 -0.75 0.34375 0.141009 -0.105962 0.822174 0.497907 0.176085 0.943261 1.99907 0 0.576932 3.35812 0 -0.709106 -0.78125 0.34375 0.141011 -0.105938 0.821869 0.518209 0.134626 0.913353 2.04675 0 0.576932 3.35812 0 -0.709106 +0.75 0.34375 0.141076 -0.1059 0.824127 0.499231 0.155468 0.922804 2.00184 0 0.576932 3.35812 0 -0.709106 +0.78125 0.34375 0.14107 -0.105887 0.824005 0.519339 0.160134 0.928123 2.04989 0 0.576932 3.35812 0 -0.709106 -0.78125 0.3125 0.136675 -0.102674 0.858704 0.50485 0.140861 0.87452 2.08989 0 0.589949 3.35667 0 -0.731616 -0.8125 0.3125 0.136676 -0.102652 0.858826 0.52574 0.101286 0.860843 2.14096 0 0.589949 3.35667 0 -0.731616 +0.78125 0.3125 0.136734 -0.102626 0.860626 0.505915 0.154465 0.87136 2.09282 0 0.589949 3.35667 0 -0.731616 +0.8125 0.3125 0.136728 -0.102613 0.860565 0.527313 0.145694 0.878946 2.14391 0 0.589949 3.35667 0 -0.731616 -0.78125 0.34375 0.141011 -0.105938 0.821869 0.518209 0.134626 0.913353 2.04675 0 0.576932 3.35812 0 -0.709106 -0.8125 0.34375 0.141011 -0.105914 0.822205 0.53978 0.0790014 0.902451 2.09807 0 0.576932 3.35812 0 -0.709106 +0.78125 0.34375 0.14107 -0.105887 0.824005 0.519659 0.160134 0.928123 2.04989 0 0.576932 3.35812 0 -0.709106 +0.8125 0.34375 0.141064 -0.105873 0.823914 0.541057 0.161288 0.933424 2.10124 0 0.576932 3.35812 0 -0.709106 -0.75 0.34375 0.141009 -0.105962 0.822174 0.497907 0.176085 0.943261 1.99907 0 0.576932 3.35812 0 -0.709106 -0.78125 0.34375 0.141011 -0.105938 0.821869 0.518209 0.134626 0.913353 2.04675 0 0.576932 3.35812 0 -0.709106 +0.75 0.34375 0.141076 -0.1059 0.824127 0.498786 0.155468 0.922804 2.00184 0 0.576932 3.35812 0 -0.709106 +0.78125 0.34375 0.14107 -0.105887 0.824005 0.51956 0.160134 0.928123 2.04989 0 0.576932 3.35812 0 -0.709106 -0.75 0.375 0.145482 -0.109327 0.784943 0.511169 0.182754 0.958539 1.95601 0 0.563503 3.35961 0 -0.687289 -0.78125 0.375 0.145483 -0.109303 0.785309 0.531904 0.103515 0.971343 2.00388 0 0.563503 3.35961 0 -0.687289 +0.75 0.375 0.145549 -0.109264 0.787231 0.512326 0.193336 0.975043 1.95889 0 0.563503 3.35961 0 -0.687289 +0.78125 0.375 0.145543 -0.109249 0.787018 0.5331 0.173267 0.979919 2.00714 0 0.563503 3.35961 0 -0.687289 -0.78125 0.34375 0.141011 -0.105938 0.821869 0.518209 0.134626 0.913353 2.04675 0 0.576932 3.35812 0 -0.709106 -0.8125 0.34375 0.141011 -0.105914 0.822205 0.53978 0.0790014 0.902451 2.09807 0 0.576932 3.35812 0 -0.709106 +0.78125 0.34375 0.14107 -0.105887 0.824005 0.51919 0.160134 0.928123 2.04989 0 0.576932 3.35812 0 -0.709106 +0.8125 0.34375 0.141064 -0.105873 0.823914 0.541264 0.161288 0.933424 2.10124 0 0.576932 3.35812 0 -0.709106 -0.78125 0.375 0.145483 -0.109303 0.785309 0.531904 0.103515 0.971343 2.00388 0 0.563503 3.35961 0 -0.687289 -0.8125 0.375 0.145484 -0.109278 0.785553 0.554206 0.0892776 0.966295 2.05522 0 0.563503 3.35961 0 -0.687289 +0.78125 0.375 0.145543 -0.109249 0.787018 0.533465 0.173267 0.979919 2.00714 0 0.563503 3.35961 0 -0.687289 +0.8125 0.375 0.145537 -0.109234 0.786896 0.55554 0.135833 0.981342 2.05806 0 0.563503 3.35961 0 -0.687289 -0.8125 0.3125 0.136676 -0.102652 0.858826 0.52574 0.101286 0.860843 2.14096 0 0.589949 3.35667 0 -0.731616 -0.84375 0.3125 0.136677 -0.102629 0.859161 0.54789 0.086849 0.857429 2.19531 0 0.589949 3.35667 0 -0.731616 +0.8125 0.3125 0.136728 -0.102613 0.860565 0.526918 0.145694 0.878946 2.14391 0 0.589949 3.35667 0 -0.731616 +0.84375 0.3125 0.136721 -0.102599 0.860565 0.549668 0.150469 0.877429 2.19843 0 0.589949 3.35667 0 -0.731616 -0.8125 0.34375 0.141011 -0.105914 0.822205 0.53978 0.0790014 0.902451 2.09807 0 0.576932 3.35812 0 -0.709106 -0.84375 0.34375 0.141012 -0.10589 0.822662 0.562592 0.0709119 0.906105 2.15245 0 0.576932 3.35812 0 -0.709106 +0.8125 0.34375 0.141064 -0.105873 0.823914 0.541423 0.161288 0.933424 2.10124 0 0.576932 3.35812 0 -0.709106 +0.84375 0.34375 0.141057 -0.105857 0.823761 0.564173 0.152559 0.911084 2.15545 0 0.576932 3.35812 0 -0.709106 -0.84375 0.3125 0.136677 -0.102629 0.859161 0.54789 0.086849 0.857429 2.19531 0 0.589949 3.35667 0 -0.731616 -0.875 0.3125 0.136678 -0.102606 0.859406 0.571591 0.0842461 0.827402 2.25336 0 0.589949 3.35667 0 -0.731616 +0.84375 0.3125 0.136721 -0.102599 0.860565 0.549302 0.150469 0.877429 2.19843 0 0.589949 3.35667 0 -0.731616 +0.875 0.3125 0.136714 -0.102584 0.860382 0.573519 0.143554 0.876042 2.25627 0 0.589949 3.35667 0 -0.731616 -0.84375 0.34375 0.141012 -0.10589 0.822662 0.562592 0.0709119 0.906105 2.15245 0 0.576932 3.35812 0 -0.709106 -0.875 0.34375 0.141014 -0.105866 0.822998 0.586839 0.0779994 0.87352 2.2101 0 0.576932 3.35812 0 -0.709106 +0.84375 0.34375 0.141057 -0.105857 0.823761 0.564527 0.152559 0.911084 2.15545 0 0.576932 3.35812 0 -0.709106 +0.875 0.34375 0.141051 -0.105841 0.823792 0.588744 0.144538 0.91638 2.21356 0 0.576932 3.35812 0 -0.709106 -0.8125 0.34375 0.141011 -0.105914 0.822205 0.53978 0.0790014 0.902451 2.09807 0 0.576932 3.35812 0 -0.709106 -0.84375 0.34375 0.141012 -0.10589 0.822662 0.562592 0.0709119 0.906105 2.15245 0 0.576932 3.35812 0 -0.709106 +0.8125 0.34375 0.141064 -0.105873 0.823914 0.540976 0.161288 0.933424 2.10124 0 0.576932 3.35812 0 -0.709106 +0.84375 0.34375 0.141057 -0.105857 0.823761 0.564369 0.152559 0.911084 2.15545 0 0.576932 3.35812 0 -0.709106 -0.8125 0.375 0.145484 -0.109278 0.785553 0.554206 0.0892776 0.966295 2.05522 0 0.563503 3.35961 0 -0.687289 -0.84375 0.375 0.145486 -0.109253 0.785858 0.577733 0.0598192 0.981369 2.10942 0 0.563503 3.35961 0 -0.687289 +0.8125 0.375 0.145537 -0.109234 0.786896 0.555805 0.135833 0.981342 2.05806 0 0.563503 3.35961 0 -0.687289 +0.84375 0.375 0.145531 -0.109218 0.787231 0.579199 0.141135 0.976638 2.11272 0 0.563503 3.35961 0 -0.687289 -0.84375 0.34375 0.141012 -0.10589 0.822662 0.562592 0.0709119 0.906105 2.15245 0 0.576932 3.35812 0 -0.709106 -0.875 0.34375 0.141014 -0.105866 0.822998 0.586839 0.0779994 0.87352 2.2101 0 0.576932 3.35812 0 -0.709106 +0.84375 0.34375 0.141057 -0.105857 0.823761 0.563998 0.152559 0.911084 2.15545 0 0.576932 3.35812 0 -0.709106 +0.875 0.34375 0.141051 -0.105841 0.823792 0.589002 0.144538 0.91638 2.21356 0 0.576932 3.35812 0 -0.709106 -0.84375 0.375 0.145486 -0.109253 0.785858 0.577733 0.0598192 0.981369 2.10942 0 0.563503 3.35961 0 -0.687289 -0.875 0.375 0.145488 -0.109228 0.78656 0.602679 0.0719572 0.985045 2.16728 0 0.563503 3.35961 0 -0.687289 +0.84375 0.375 0.145531 -0.109218 0.787231 0.579574 0.141135 0.976638 2.11272 0 0.563503 3.35961 0 -0.687289 +0.875 0.375 0.145525 -0.109202 0.786957 0.604577 0.152235 0.973358 2.17054 0 0.563503 3.35961 0 -0.687289 -0.875 0.25 0.128401 -0.0963808 0.932007 0.541981 0.0712739 0.788251 2.33899 0 0.614792 3.35391 0 -0.778801 -0.90625 0.25 0.128402 -0.0963613 0.932465 0.565481 0.0648084 0.792515 2.40046 0 0.614792 3.35391 0 -0.778801 +0.875 0.25 0.128436 -0.0963645 0.933258 0.543631 0.14037 0.780769 2.34212 0 0.614792 3.35391 0 -0.778801 +0.90625 0.25 0.128428 -0.0963509 0.933258 0.567812 0.123237 0.783951 2.40368 0 0.614792 3.35391 0 -0.778801 -0.875 0.28125 0.132475 -0.0994455 0.89566 0.556541 0.0926479 0.802795 2.29599 0 0.602565 3.35527 0 -0.75484 -0.90625 0.28125 0.132476 -0.0994247 0.896149 0.580812 0.0791998 0.8128 2.35755 0 0.602565 3.35527 0 -0.75484 +0.875 0.28125 0.132511 -0.0994259 0.897064 0.558576 0.139634 0.826608 2.2992 0 0.602565 3.35527 0 -0.75484 +0.90625 0.28125 0.132503 -0.099411 0.896973 0.582757 0.132557 0.81913 2.3606 0 0.602565 3.35527 0 -0.75484 -0.90625 0.25 0.128402 -0.0963613 0.932465 0.565481 0.0648084 0.792515 2.40046 0 0.614792 3.35391 0 -0.778801 -0.9375 0.25 0.128403 -0.0963419 0.932831 0.590469 0.0916522 0.80322 2.46569 0 0.614792 3.35391 0 -0.778801 +0.90625 0.25 0.128428 -0.0963509 0.933258 0.567385 0.123237 0.783951 2.40368 0 0.614792 3.35391 0 -0.778801 +0.9375 0.25 0.12842 -0.0963359 0.93335 0.593074 0.117274 0.784524 2.46916 0 0.614792 3.35391 0 -0.778801 -0.90625 0.28125 0.132476 -0.0994247 0.896149 0.580812 0.0791998 0.8128 2.35755 0 0.602565 3.35527 0 -0.75484 -0.9375 0.28125 0.132478 -0.0994033 0.896301 0.606806 0.0810359 0.8164 2.42311 0 0.602565 3.35527 0 -0.75484 +0.90625 0.28125 0.132503 -0.099411 0.896973 0.583174 0.132557 0.81913 2.3606 0 0.602565 3.35527 0 -0.75484 +0.9375 0.28125 0.132495 -0.0993949 0.897064 0.608864 0.125552 0.83999 2.42655 0 0.602565 3.35527 0 -0.75484 -0.875 0.28125 0.132475 -0.0994455 0.89566 0.556541 0.0926479 0.802795 2.29599 0 0.602565 3.35527 0 -0.75484 -0.90625 0.28125 0.132476 -0.0994247 0.896149 0.580812 0.0791998 0.8128 2.35755 0 0.602565 3.35527 0 -0.75484 +0.875 0.28125 0.132511 -0.0994259 0.897064 0.558096 0.139634 0.826608 2.2992 0 0.602565 3.35527 0 -0.75484 +0.90625 0.28125 0.132503 -0.099411 0.896973 0.583034 0.132557 0.81913 2.3606 0 0.602565 3.35527 0 -0.75484 -0.875 0.3125 0.136678 -0.102606 0.859406 0.571591 0.0842461 0.827402 2.25336 0 0.589949 3.35667 0 -0.731616 -0.90625 0.3125 0.13668 -0.102584 0.859741 0.596524 0.0830591 0.840286 2.3145 0 0.589949 3.35667 0 -0.731616 +0.875 0.3125 0.136714 -0.102584 0.860382 0.573605 0.143554 0.876042 2.25627 0 0.589949 3.35667 0 -0.731616 +0.90625 0.3125 0.136707 -0.102568 0.860504 0.598543 0.141809 0.87259 2.3182 0 0.589949 3.35667 0 -0.731616 -0.90625 0.28125 0.132476 -0.0994247 0.896149 0.580812 0.0791998 0.8128 2.35755 0 0.602565 3.35527 0 -0.75484 -0.9375 0.28125 0.132478 -0.0994033 0.896301 0.606806 0.0810359 0.8164 2.42311 0 0.602565 3.35527 0 -0.75484 +0.90625 0.28125 0.132503 -0.099411 0.896973 0.582574 0.132557 0.81913 2.3606 0 0.602565 3.35527 0 -0.75484 +0.9375 0.28125 0.132495 -0.0993949 0.897064 0.609216 0.125552 0.83999 2.42655 0 0.602565 3.35527 0 -0.75484 -0.90625 0.3125 0.13668 -0.102584 0.859741 0.596524 0.0830591 0.840286 2.3145 0 0.589949 3.35667 0 -0.731616 -0.9375 0.3125 0.136682 -0.102561 0.860046 0.623232 0.100758 0.82798 2.37993 0 0.589949 3.35667 0 -0.731616 +0.90625 0.3125 0.136707 -0.102568 0.860504 0.598996 0.141809 0.87259 2.3182 0 0.589949 3.35667 0 -0.731616 +0.9375 0.3125 0.136699 -0.102551 0.86026 0.625638 0.116005 0.876189 2.38362 0 0.589949 3.35667 0 -0.731616 -0.9375 0.25 0.128403 -0.0963419 0.932831 0.590469 0.0916522 0.80322 2.46569 0 0.614792 3.35391 0 -0.778801 -0.96875 0.25 0.128403 -0.0963221 0.932861 0.617311 0.110009 0.786193 2.5354 0 0.614792 3.35391 0 -0.778801 +0.9375 0.25 0.12842 -0.0963359 0.93335 0.592615 0.117274 0.784524 2.46916 0 0.614792 3.35391 0 -0.778801 +0.96875 0.25 0.128411 -0.0963197 0.933441 0.62 0.130773 0.774825 2.53905 0 0.614792 3.35391 0 -0.778801 -0.9375 0.28125 0.132478 -0.0994033 0.896301 0.606806 0.0810359 0.8164 2.42311 0 0.602565 3.35527 0 -0.75484 -0.96875 0.28125 0.132479 -0.0993813 0.896759 0.634252 0.094613 0.814106 2.49262 0 0.602565 3.35527 0 -0.75484 +0.9375 0.28125 0.132495 -0.0993949 0.897064 0.609289 0.125552 0.83999 2.42655 0 0.602565 3.35527 0 -0.75484 +0.96875 0.28125 0.132487 -0.0993776 0.897064 0.636674 0.123452 0.817091 2.49631 0 0.602565 3.35527 0 -0.75484 -0.96875 0.25 0.128403 -0.0963221 0.932861 0.617311 0.110009 0.786193 2.5354 0 0.614792 3.35391 0 -0.778801 -1 0.25 0.128403 -0.0963019 0.932983 0.645842 0.108065 0.780582 2.60959 0 0.614792 3.35391 0 -0.778801 +0.96875 0.25 0.128411 -0.0963197 0.933441 0.619549 0.130773 0.774825 2.53905 0 0.614792 3.35391 0 -0.778801 +1 0.25 0.128403 -0.0963019 0.933319 0.648736 0.14334 0.757026 2.61457 0 0.614792 3.35391 0 -0.778801 -0.96875 0.28125 0.132479 -0.0993813 0.896759 0.634252 0.094613 0.814106 2.49262 0 0.602565 3.35527 0 -0.75484 -1 0.28125 0.132478 -0.0993589 0.896759 0.663815 0.119856 0.816964 2.56701 0 0.602565 3.35527 0 -0.75484 +0.96875 0.28125 0.132487 -0.0993776 0.897064 0.63708 0.123452 0.817091 2.49631 0 0.602565 3.35527 0 -0.75484 +1 0.28125 0.132478 -0.0993589 0.897156 0.666268 0.11847 0.78458 2.57175 0 0.602565 3.35527 0 -0.75484 -0.9375 0.28125 0.132478 -0.0994033 0.896301 0.606806 0.0810359 0.8164 2.42311 0 0.602565 3.35527 0 -0.75484 -0.96875 0.28125 0.132479 -0.0993813 0.896759 0.634252 0.094613 0.814106 2.49262 0 0.602565 3.35527 0 -0.75484 +0.9375 0.28125 0.132495 -0.0993949 0.897064 0.608785 0.125552 0.83999 2.42655 0 0.602565 3.35527 0 -0.75484 +0.96875 0.28125 0.132487 -0.0993776 0.897064 0.636927 0.123452 0.817091 2.49631 0 0.602565 3.35527 0 -0.75484 -0.9375 0.3125 0.136682 -0.102561 0.860046 0.623232 0.100758 0.82798 2.37993 0 0.589949 3.35667 0 -0.731616 -0.96875 0.3125 0.136683 -0.102537 0.860138 0.651864 0.119231 0.855875 2.44985 0 0.589949 3.35667 0 -0.731616 +0.9375 0.3125 0.136699 -0.102551 0.86026 0.626045 0.116005 0.876189 2.38362 0 0.589949 3.35667 0 -0.731616 +0.96875 0.3125 0.136691 -0.102532 0.860687 0.654187 0.0741647 0.870032 2.45347 0 0.589949 3.35667 0 -0.731616 -0.96875 0.28125 0.132479 -0.0993813 0.896759 0.634252 0.094613 0.814106 2.49262 0 0.602565 3.35527 0 -0.75484 -1 0.28125 0.132478 -0.0993589 0.896759 0.663815 0.119856 0.816964 2.56701 0 0.602565 3.35527 0 -0.75484 +0.96875 0.28125 0.132487 -0.0993776 0.897064 0.636554 0.123452 0.817091 2.49631 0 0.602565 3.35527 0 -0.75484 +1 0.28125 0.132478 -0.0993589 0.897156 0.666544 0.11847 0.78458 2.57175 0 0.602565 3.35527 0 -0.75484 -0.96875 0.3125 0.136683 -0.102537 0.860138 0.651864 0.119231 0.855875 2.44985 0 0.589949 3.35667 0 -0.731616 -1 0.3125 0.136684 -0.102513 0.860199 0.682292 0.123458 0.856114 2.52412 0 0.589949 3.35667 0 -0.731616 +0.96875 0.3125 0.136691 -0.102532 0.860687 0.65453 0.0741647 0.870032 2.45347 0 0.589949 3.35667 0 -0.731616 +1 0.3125 0.136684 -0.102513 0.861053 0.68452 0.071362 0.866971 2.5292 0 0.589949 3.35667 0 -0.731616 -0.875 0.3125 0.136678 -0.102606 0.859406 0.571591 0.0842461 0.827402 2.25336 0 0.589949 3.35667 0 -0.731616 -0.90625 0.3125 0.13668 -0.102584 0.859741 0.596524 0.0830591 0.840286 2.3145 0 0.589949 3.35667 0 -0.731616 +0.875 0.3125 0.136714 -0.102584 0.860382 0.573124 0.143554 0.876042 2.25627 0 0.589949 3.35667 0 -0.731616 +0.90625 0.3125 0.136707 -0.102568 0.860504 0.598854 0.141809 0.87259 2.3182 0 0.589949 3.35667 0 -0.731616 -0.875 0.34375 0.141014 -0.105866 0.822998 0.586839 0.0779994 0.87352 2.2101 0 0.576932 3.35812 0 -0.709106 -0.90625 0.34375 0.141017 -0.105843 0.823334 0.612722 0.0831352 0.884572 2.27162 0 0.576932 3.35812 0 -0.709106 +0.875 0.34375 0.141051 -0.105841 0.823792 0.589122 0.144538 0.91638 2.21356 0 0.576932 3.35812 0 -0.709106 +0.90625 0.34375 0.141044 -0.105824 0.82373 0.614852 0.139067 0.912592 2.2751 0 0.576932 3.35812 0 -0.709106 -0.90625 0.3125 0.13668 -0.102584 0.859741 0.596524 0.0830591 0.840286 2.3145 0 0.589949 3.35667 0 -0.731616 -0.9375 0.3125 0.136682 -0.102561 0.860046 0.623232 0.100758 0.82798 2.37993 0 0.589949 3.35667 0 -0.731616 +0.90625 0.3125 0.136707 -0.102568 0.860504 0.5985 0.141809 0.87259 2.3182 0 0.589949 3.35667 0 -0.731616 +0.9375 0.3125 0.136699 -0.102551 0.86026 0.62595 0.116005 0.876189 2.38362 0 0.589949 3.35667 0 -0.731616 -0.90625 0.34375 0.141017 -0.105843 0.823334 0.612722 0.0831352 0.884572 2.27162 0 0.576932 3.35812 0 -0.709106 -0.9375 0.34375 0.141019 -0.105818 0.823669 0.640357 0.10685 0.874184 2.33727 0 0.576932 3.35812 0 -0.709106 +0.90625 0.34375 0.141044 -0.105824 0.82373 0.615231 0.139067 0.912592 2.2751 0 0.576932 3.35812 0 -0.709106 +0.9375 0.34375 0.141037 -0.105806 0.823792 0.642681 0.125821 0.904729 2.34078 0 0.576932 3.35812 0 -0.709106 -0.875 0.34375 0.141014 -0.105866 0.822998 0.586839 0.0779994 0.87352 2.2101 0 0.576932 3.35812 0 -0.709106 -0.90625 0.34375 0.141017 -0.105843 0.823334 0.612722 0.0831352 0.884572 2.27162 0 0.576932 3.35812 0 -0.709106 +0.875 0.34375 0.141051 -0.105841 0.823792 0.588595 0.144538 0.91638 2.21356 0 0.576932 3.35812 0 -0.709106 +0.90625 0.34375 0.141044 -0.105824 0.82373 0.615118 0.139067 0.912592 2.2751 0 0.576932 3.35812 0 -0.709106 -0.875 0.375 0.145488 -0.109228 0.78656 0.602679 0.0719572 0.985045 2.16728 0 0.563503 3.35961 0 -0.687289 -0.90625 0.375 0.145491 -0.109203 0.786652 0.629543 0.092733 0.948531 2.22891 0 0.563503 3.35961 0 -0.687289 +0.875 0.375 0.145525 -0.109202 0.786957 0.605002 0.152235 0.973358 2.17054 0 0.563503 3.35961 0 -0.687289 +0.90625 0.375 0.145518 -0.109184 0.787109 0.631525 0.143704 0.967116 2.2323 0 0.563503 3.35961 0 -0.687289 -0.90625 0.34375 0.141017 -0.105843 0.823334 0.612722 0.0831352 0.884572 2.27162 0 0.576932 3.35812 0 -0.709106 -0.9375 0.34375 0.141019 -0.105818 0.823669 0.640357 0.10685 0.874184 2.33727 0 0.576932 3.35812 0 -0.709106 +0.90625 0.34375 0.141044 -0.105824 0.82373 0.614684 0.139067 0.912592 2.2751 0 0.576932 3.35812 0 -0.709106 +0.9375 0.34375 0.141037 -0.105806 0.823792 0.642979 0.125821 0.904729 2.34078 0 0.576932 3.35812 0 -0.709106 -0.90625 0.375 0.145491 -0.109203 0.786652 0.629543 0.092733 0.948531 2.22891 0 0.563503 3.35961 0 -0.687289 -0.9375 0.375 0.145494 -0.109178 0.787109 0.657963 0.112087 0.954829 2.29448 0 0.563503 3.35961 0 -0.687289 +0.90625 0.375 0.145518 -0.109184 0.787109 0.631935 0.143704 0.967116 2.2323 0 0.563503 3.35961 0 -0.687289 +0.9375 0.375 0.145512 -0.109165 0.787018 0.660229 0.151239 0.97113 2.29798 0 0.563503 3.35961 0 -0.687289 -0.9375 0.3125 0.136682 -0.102561 0.860046 0.623232 0.100758 0.82798 2.37993 0 0.589949 3.35667 0 -0.731616 -0.96875 0.3125 0.136683 -0.102537 0.860138 0.651864 0.119231 0.855875 2.44985 0 0.589949 3.35667 0 -0.731616 +0.9375 0.3125 0.136699 -0.102551 0.86026 0.625462 0.116005 0.876189 2.38362 0 0.589949 3.35667 0 -0.731616 +0.96875 0.3125 0.136691 -0.102532 0.860687 0.654474 0.0741647 0.870032 2.45347 0 0.589949 3.35667 0 -0.731616 -0.9375 0.34375 0.141019 -0.105818 0.823669 0.640357 0.10685 0.874184 2.33727 0 0.576932 3.35812 0 -0.709106 -0.96875 0.34375 0.141021 -0.105793 0.8237 0.669904 0.13031 0.887007 2.40714 0 0.576932 3.35812 0 -0.709106 +0.9375 0.34375 0.141037 -0.105806 0.823792 0.643137 0.125821 0.904729 2.34078 0 0.576932 3.35812 0 -0.709106 +0.96875 0.34375 0.141029 -0.105787 0.823914 0.672149 0.119725 0.932124 2.41067 0 0.576932 3.35812 0 -0.709106 -0.96875 0.3125 0.136683 -0.102537 0.860138 0.651864 0.119231 0.855875 2.44985 0 0.589949 3.35667 0 -0.731616 -1 0.3125 0.136684 -0.102513 0.860199 0.682292 0.123458 0.856114 2.52412 0 0.589949 3.35667 0 -0.731616 +0.96875 0.3125 0.136691 -0.102532 0.860687 0.653964 0.0741647 0.870032 2.45347 0 0.589949 3.35667 0 -0.731616 +1 0.3125 0.136684 -0.102513 0.861053 0.684909 0.071362 0.866971 2.5292 0 0.589949 3.35667 0 -0.731616 -0.96875 0.34375 0.141021 -0.105793 0.8237 0.669904 0.13031 0.887007 2.40714 0 0.576932 3.35812 0 -0.709106 -1 0.34375 0.141023 -0.105767 0.82373 0.701402 0.133663 0.896963 2.48163 0 0.576932 3.35812 0 -0.709106 +0.96875 0.34375 0.141029 -0.105787 0.823914 0.672689 0.119725 0.932124 2.41067 0 0.576932 3.35812 0 -0.709106 +1 0.34375 0.141023 -0.105767 0.824036 0.703634 0.118841 0.955214 2.48633 0 0.576932 3.35812 0 -0.709106 -0.9375 0.34375 0.141019 -0.105818 0.823669 0.640357 0.10685 0.874184 2.33727 0 0.576932 3.35812 0 -0.709106 -0.96875 0.34375 0.141021 -0.105793 0.8237 0.669904 0.13031 0.887007 2.40714 0 0.576932 3.35812 0 -0.709106 +0.9375 0.34375 0.141037 -0.105806 0.823792 0.642478 0.125821 0.904729 2.34078 0 0.576932 3.35812 0 -0.709106 +0.96875 0.34375 0.141029 -0.105787 0.823914 0.672537 0.119725 0.932124 2.41067 0 0.576932 3.35812 0 -0.709106 -0.9375 0.375 0.145494 -0.109178 0.787109 0.657963 0.112087 0.954829 2.29448 0 0.563503 3.35961 0 -0.687289 -0.96875 0.375 0.145497 -0.109152 0.787048 0.688527 0.149191 0.947088 2.36444 0 0.563503 3.35961 0 -0.687289 +0.9375 0.375 0.145512 -0.109165 0.787018 0.660721 0.151239 0.97113 2.29798 0 0.563503 3.35961 0 -0.687289 +0.96875 0.375 0.145505 -0.109145 0.787018 0.69078 0.146551 0.983174 2.36791 0 0.563503 3.35961 0 -0.687289 -0.96875 0.34375 0.141021 -0.105793 0.8237 0.669904 0.13031 0.887007 2.40714 0 0.576932 3.35812 0 -0.709106 -1 0.34375 0.141023 -0.105767 0.82373 0.701402 0.133663 0.896963 2.48163 0 0.576932 3.35812 0 -0.709106 +0.96875 0.34375 0.141029 -0.105787 0.823914 0.672025 0.119725 0.932124 2.41067 0 0.576932 3.35812 0 -0.709106 +1 0.34375 0.141023 -0.105767 0.824036 0.704017 0.118841 0.955214 2.48633 0 0.576932 3.35812 0 -0.709106 -0.96875 0.375 0.145497 -0.109152 0.787048 0.688527 0.149191 0.947088 2.36444 0 0.563503 3.35961 0 -0.687289 -1 0.375 0.145499 -0.109124 0.786987 0.721087 0.154493 0.961297 2.43897 0 0.563503 3.35961 0 -0.687289 +0.96875 0.375 0.145505 -0.109145 0.787018 0.691308 0.146551 0.983174 2.36791 0 0.563503 3.35961 0 -0.687289 +1 0.375 0.145499 -0.109124 0.787018 0.7233 0.145864 0.988767 2.44351 0 0.563503 3.35961 0 -0.687289 -0.75 0.375 0.145482 -0.109327 0.784943 0.511169 0.182754 0.958539 1.95601 0 0.563503 3.35961 0 -0.687289 -0.78125 0.375 0.145483 -0.109303 0.785309 0.531904 0.103515 0.971343 2.00388 0 0.563503 3.35961 0 -0.687289 +0.75 0.375 0.145549 -0.109264 0.787231 0.51186 0.193336 0.975043 1.95889 0 0.563503 3.35961 0 -0.687289 +0.78125 0.375 0.145543 -0.109249 0.787018 0.533366 0.173267 0.979919 2.00714 0 0.563503 3.35961 0 -0.687289 -0.75 0.40625 0.150097 -0.112798 0.748627 0.524383 0.200516 1.02761 1.91301 0 0.549647 3.36115 0 -0.666144 -0.78125 0.40625 0.150098 -0.112773 0.748077 0.546248 0.157806 1.0486 1.96101 0 0.549647 3.36115 0 -0.666144 +0.75 0.40625 0.150163 -0.112733 0.750275 0.52572 0.186163 1.03098 1.91591 0 0.549647 3.36115 0 -0.666144 +0.78125 0.40625 0.150158 -0.112718 0.750092 0.547225 0.176546 1.03214 1.96406 0 0.549647 3.36115 0 -0.666144 -0.78125 0.375 0.145483 -0.109303 0.785309 0.531904 0.103515 0.971343 2.00388 0 0.563503 3.35961 0 -0.687289 -0.8125 0.375 0.145484 -0.109278 0.785553 0.554206 0.0892776 0.966295 2.05522 0 0.563503 3.35961 0 -0.687289 +0.78125 0.375 0.145543 -0.109249 0.787018 0.533029 0.173267 0.979919 2.00714 0 0.563503 3.35961 0 -0.687289 +0.8125 0.375 0.145537 -0.109234 0.786896 0.555783 0.135833 0.981342 2.05806 0 0.563503 3.35961 0 -0.687289 -0.78125 0.40625 0.150098 -0.112773 0.748077 0.546248 0.157806 1.0486 1.96101 0 0.549647 3.36115 0 -0.666144 -0.8125 0.40625 0.1501 -0.112747 0.748505 0.569132 0.0981608 1.06274 2.01225 0 0.549647 3.36115 0 -0.666144 +0.78125 0.40625 0.150158 -0.112718 0.750092 0.54755 0.176546 1.03214 1.96406 0 0.549647 3.36115 0 -0.666144 +0.8125 0.40625 0.150152 -0.112702 0.75 0.570304 0.164822 1.0356 2.0153 0 0.549647 3.36115 0 -0.666144 -0.75 0.40625 0.150097 -0.112798 0.748627 0.524383 0.200516 1.02761 1.91301 0 0.549647 3.36115 0 -0.666144 -0.78125 0.40625 0.150098 -0.112773 0.748077 0.546248 0.157806 1.0486 1.96101 0 0.549647 3.36115 0 -0.666144 +0.75 0.40625 0.150163 -0.112733 0.750275 0.525268 0.186163 1.03098 1.91591 0 0.549647 3.36115 0 -0.666144 +0.78125 0.40625 0.150158 -0.112718 0.750092 0.547419 0.176546 1.03214 1.96406 0 0.549647 3.36115 0 -0.666144 -0.75 0.4375 0.154859 -0.116376 0.710907 0.538603 0.207898 1.15311 1.87007 0 0.535351 3.36274 0 -0.645649 -0.78125 0.4375 0.15486 -0.116351 0.710938 0.560883 0.151991 1.12723 1.91805 0 0.535351 3.36274 0 -0.645649 +0.75 0.4375 0.154923 -0.11631 0.713104 0.53964 0.195525 1.10852 1.87303 0 0.535351 3.36274 0 -0.645649 +0.78125 0.4375 0.154919 -0.116295 0.712891 0.561791 0.192087 1.11021 1.92126 0 0.535351 3.36274 0 -0.645649 -0.78125 0.40625 0.150098 -0.112773 0.748077 0.546248 0.157806 1.0486 1.96101 0 0.549647 3.36115 0 -0.666144 -0.8125 0.40625 0.1501 -0.112747 0.748505 0.569132 0.0981608 1.06274 2.01225 0 0.549647 3.36115 0 -0.666144 +0.78125 0.40625 0.150158 -0.112718 0.750092 0.547051 0.176546 1.03214 1.96406 0 0.549647 3.36115 0 -0.666144 +0.8125 0.40625 0.150152 -0.112702 0.75 0.570573 0.164822 1.0356 2.0153 0 0.549647 3.36115 0 -0.666144 -0.78125 0.4375 0.15486 -0.116351 0.710938 0.560883 0.151991 1.12723 1.91805 0 0.535351 3.36274 0 -0.645649 -0.8125 0.4375 0.154862 -0.116325 0.710999 0.584598 0.121409 1.14819 1.96915 0 0.535351 3.36274 0 -0.645649 +0.78125 0.4375 0.154919 -0.116295 0.712891 0.562144 0.192087 1.11021 1.92126 0 0.535351 3.36274 0 -0.645649 +0.8125 0.4375 0.154913 -0.116278 0.712708 0.585666 0.177758 1.10499 1.97234 0 0.535351 3.36274 0 -0.645649 -0.8125 0.375 0.145484 -0.109278 0.785553 0.554206 0.0892776 0.966295 2.05522 0 0.563503 3.35961 0 -0.687289 -0.84375 0.375 0.145486 -0.109253 0.785858 0.577733 0.0598192 0.981369 2.10942 0 0.563503 3.35961 0 -0.687289 +0.8125 0.375 0.145537 -0.109234 0.786896 0.555331 0.135833 0.981342 2.05806 0 0.563503 3.35961 0 -0.687289 +0.84375 0.375 0.145531 -0.109218 0.787231 0.579469 0.141135 0.976638 2.11272 0 0.563503 3.35961 0 -0.687289 -0.8125 0.40625 0.1501 -0.112747 0.748505 0.569132 0.0981608 1.06274 2.01225 0 0.549647 3.36115 0 -0.666144 -0.84375 0.40625 0.150101 -0.112721 0.748749 0.593509 0.0935145 1.06753 2.06662 0 0.549647 3.36115 0 -0.666144 +0.8125 0.40625 0.150152 -0.112702 0.75 0.570734 0.164822 1.0356 2.0153 0 0.549647 3.36115 0 -0.666144 +0.84375 0.40625 0.150146 -0.112685 0.749939 0.594872 0.151653 1.06044 2.06966 0 0.549647 3.36115 0 -0.666144 -0.84375 0.375 0.145486 -0.109253 0.785858 0.577733 0.0598192 0.981369 2.10942 0 0.563503 3.35961 0 -0.687289 -0.875 0.375 0.145488 -0.109228 0.78656 0.602679 0.0719572 0.985045 2.16728 0 0.563503 3.35961 0 -0.687289 +0.84375 0.375 0.145531 -0.109218 0.787231 0.579061 0.141135 0.976638 2.11272 0 0.563503 3.35961 0 -0.687289 +0.875 0.375 0.145525 -0.109202 0.786957 0.604854 0.152235 0.973358 2.17054 0 0.563503 3.35961 0 -0.687289 -0.84375 0.40625 0.150101 -0.112721 0.748749 0.593509 0.0935145 1.06753 2.06662 0 0.549647 3.36115 0 -0.666144 -0.875 0.40625 0.150104 -0.112695 0.748993 0.619487 0.0536267 1.09103 2.12455 0 0.549647 3.36115 0 -0.666144 +0.84375 0.40625 0.150146 -0.112685 0.749939 0.595272 0.151653 1.06044 2.06966 0 0.549647 3.36115 0 -0.666144 +0.875 0.40625 0.15014 -0.112668 0.75 0.621065 0.144312 1.05006 2.12776 0 0.549647 3.36115 0 -0.666144 -0.8125 0.40625 0.1501 -0.112747 0.748505 0.569132 0.0981608 1.06274 2.01225 0 0.549647 3.36115 0 -0.666144 -0.84375 0.40625 0.150101 -0.112721 0.748749 0.593509 0.0935145 1.06753 2.06662 0 0.549647 3.36115 0 -0.666144 +0.8125 0.40625 0.150152 -0.112702 0.75 0.57018 0.164822 1.0356 2.0153 0 0.549647 3.36115 0 -0.666144 +0.84375 0.40625 0.150146 -0.112685 0.749939 0.595174 0.151653 1.06044 2.06966 0 0.549647 3.36115 0 -0.666144 -0.8125 0.4375 0.154862 -0.116325 0.710999 0.584598 0.121409 1.14819 1.96915 0 0.535351 3.36274 0 -0.645649 -0.84375 0.4375 0.154863 -0.116299 0.711273 0.609889 0.0919724 1.14934 2.02385 0 0.535351 3.36274 0 -0.645649 +0.8125 0.4375 0.154913 -0.116278 0.712708 0.586055 0.177758 1.10499 1.97234 0 0.535351 3.36274 0 -0.645649 +0.84375 0.4375 0.154908 -0.116261 0.712677 0.611049 0.168769 1.11743 2.02692 0 0.535351 3.36274 0 -0.645649 -0.84375 0.40625 0.150101 -0.112721 0.748749 0.593509 0.0935145 1.06753 2.06662 0 0.549647 3.36115 0 -0.666144 -0.875 0.40625 0.150104 -0.112695 0.748993 0.619487 0.0536267 1.09103 2.12455 0 0.549647 3.36115 0 -0.666144 +0.84375 0.40625 0.150146 -0.112685 0.749939 0.594706 0.151653 1.06044 2.06966 0 0.549647 3.36115 0 -0.666144 +0.875 0.40625 0.15014 -0.112668 0.75 0.6213 0.144312 1.05006 2.12776 0 0.549647 3.36115 0 -0.666144 -0.84375 0.4375 0.154863 -0.116299 0.711273 0.609889 0.0919724 1.14934 2.02385 0 0.535351 3.36274 0 -0.645649 -0.875 0.4375 0.154866 -0.116272 0.711639 0.636593 0.0686045 1.15232 2.08169 0 0.535351 3.36274 0 -0.645649 +0.84375 0.4375 0.154908 -0.116261 0.712677 0.611442 0.168769 1.11743 2.02692 0 0.535351 3.36274 0 -0.645649 +0.875 0.4375 0.154903 -0.116243 0.712555 0.638037 0.153696 1.11546 2.08484 0 0.535351 3.36274 0 -0.645649 -0.75 0.4375 0.154859 -0.116376 0.710907 0.538603 0.207898 1.15311 1.87007 0 0.535351 3.36274 0 -0.645649 -0.78125 0.4375 0.15486 -0.116351 0.710938 0.560883 0.151991 1.12723 1.91805 0 0.535351 3.36274 0 -0.645649 +0.75 0.4375 0.154923 -0.11631 0.713104 0.539158 0.195525 1.10852 1.87303 0 0.535351 3.36274 0 -0.645649 +0.78125 0.4375 0.154919 -0.116295 0.712891 0.562017 0.192087 1.11021 1.92126 0 0.535351 3.36274 0 -0.645649 -0.75 0.46875 0.159772 -0.120067 0.673309 0.553176 0.225038 1.20612 1.8272 0 0.520601 3.36438 0 -0.625784 -0.78125 0.46875 0.159773 -0.120042 0.673187 0.576251 0.162864 1.20547 1.87522 0 0.520601 3.36438 0 -0.625784 +0.75 0.46875 0.159835 -0.12 0.675629 0.554034 0.190709 1.19894 1.83019 0 0.520601 3.36438 0 -0.625784 +0.78125 0.46875 0.15983 -0.119984 0.675385 0.576892 0.187769 1.1833 1.87821 0 0.520601 3.36438 0 -0.625784 -0.78125 0.4375 0.15486 -0.116351 0.710938 0.560883 0.151991 1.12723 1.91805 0 0.535351 3.36274 0 -0.645649 -0.8125 0.4375 0.154862 -0.116325 0.710999 0.584598 0.121409 1.14819 1.96915 0 0.535351 3.36274 0 -0.645649 +0.78125 0.4375 0.154919 -0.116295 0.712891 0.561677 0.192087 1.11021 1.92126 0 0.535351 3.36274 0 -0.645649 +0.8125 0.4375 0.154913 -0.116278 0.712708 0.585921 0.177758 1.10499 1.97234 0 0.535351 3.36274 0 -0.645649 -0.78125 0.46875 0.159773 -0.120042 0.673187 0.576251 0.162864 1.20547 1.87522 0 0.520601 3.36438 0 -0.625784 -0.8125 0.46875 0.159775 -0.120017 0.67334 0.600861 0.125676 1.20412 1.9267 0 0.520601 3.36438 0 -0.625784 +0.78125 0.46875 0.15983 -0.119984 0.675385 0.577248 0.187769 1.1833 1.87821 0 0.520601 3.36438 0 -0.625784 +0.8125 0.46875 0.159826 -0.119968 0.675354 0.601492 0.183244 1.17438 1.92952 0 0.520601 3.36438 0 -0.625784 -0.75 0.46875 0.159772 -0.120067 0.673309 0.553176 0.225038 1.20612 1.8272 0 0.520601 3.36438 0 -0.625784 -0.78125 0.46875 0.159773 -0.120042 0.673187 0.576251 0.162864 1.20547 1.87522 0 0.520601 3.36438 0 -0.625784 +0.75 0.46875 0.159835 -0.12 0.675629 0.553564 0.190709 1.19894 1.83019 0 0.520601 3.36438 0 -0.625784 +0.78125 0.46875 0.15983 -0.119984 0.675385 0.577081 0.187769 1.1833 1.87821 0 0.520601 3.36438 0 -0.625784 -0.75 0.5 0.16484 -0.123876 0.63559 0.568153 0.223537 1.26668 1.78426 0 0.505384 3.36607 0 -0.606531 -0.78125 0.5 0.164842 -0.123851 0.635559 0.59201 0.162986 1.26185 1.83247 0 0.505384 3.36607 0 -0.606531 +0.75 0.5 0.164901 -0.123806 0.637817 0.568908 0.186595 1.27214 1.78719 0 0.505384 3.36607 0 -0.606531 +0.78125 0.5 0.164898 -0.12379 0.637787 0.592425 0.177466 1.25384 1.83544 0 0.505384 3.36607 0 -0.606531 -0.78125 0.46875 0.159773 -0.120042 0.673187 0.576251 0.162864 1.20547 1.87522 0 0.520601 3.36438 0 -0.625784 -0.8125 0.46875 0.159775 -0.120017 0.67334 0.600861 0.125676 1.20412 1.9267 0 0.520601 3.36438 0 -0.625784 +0.78125 0.46875 0.15983 -0.119984 0.675385 0.576705 0.187769 1.1833 1.87821 0 0.520601 3.36438 0 -0.625784 +0.8125 0.46875 0.159826 -0.119968 0.675354 0.601701 0.183244 1.17438 1.92952 0 0.520601 3.36438 0 -0.625784 -0.78125 0.5 0.164842 -0.123851 0.635559 0.59201 0.162986 1.26185 1.83247 0 0.505384 3.36607 0 -0.606531 -0.8125 0.5 0.164843 -0.123825 0.635651 0.617292 0.121032 1.24624 1.88367 0 0.505384 3.36607 0 -0.606531 +0.78125 0.5 0.164898 -0.12379 0.637787 0.592759 0.177466 1.25384 1.83544 0 0.505384 3.36607 0 -0.606531 +0.8125 0.5 0.164894 -0.123774 0.637695 0.617755 0.166989 1.24201 1.88651 0 0.505384 3.36607 0 -0.606531 -0.8125 0.4375 0.154862 -0.116325 0.710999 0.584598 0.121409 1.14819 1.96915 0 0.535351 3.36274 0 -0.645649 -0.84375 0.4375 0.154863 -0.116299 0.711273 0.609889 0.0919724 1.14934 2.02385 0 0.535351 3.36274 0 -0.645649 +0.8125 0.4375 0.154913 -0.116278 0.712708 0.585507 0.177758 1.10499 1.97234 0 0.535351 3.36274 0 -0.645649 +0.84375 0.4375 0.154908 -0.116261 0.712677 0.611341 0.168769 1.11743 2.02692 0 0.535351 3.36274 0 -0.645649 -0.8125 0.46875 0.159775 -0.120017 0.67334 0.600861 0.125676 1.20412 1.9267 0 0.520601 3.36438 0 -0.625784 -0.84375 0.46875 0.159777 -0.11999 0.673553 0.626767 0.103563 1.19435 1.98096 0 0.520601 3.36438 0 -0.625784 +0.8125 0.46875 0.159826 -0.119968 0.675354 0.601843 0.183244 1.17438 1.92952 0 0.520601 3.36438 0 -0.625784 +0.84375 0.46875 0.159821 -0.11995 0.67514 0.627676 0.171676 1.16158 1.98382 0 0.520601 3.36438 0 -0.625784 -0.84375 0.4375 0.154863 -0.116299 0.711273 0.609889 0.0919724 1.14934 2.02385 0 0.535351 3.36274 0 -0.645649 -0.875 0.4375 0.154866 -0.116272 0.711639 0.636593 0.0686045 1.15232 2.08169 0 0.535351 3.36274 0 -0.645649 +0.84375 0.4375 0.154908 -0.116261 0.712677 0.610888 0.168769 1.11743 2.02692 0 0.535351 3.36274 0 -0.645649 +0.875 0.4375 0.154903 -0.116243 0.712555 0.638312 0.153696 1.11546 2.08484 0 0.535351 3.36274 0 -0.645649 -0.84375 0.46875 0.159777 -0.11999 0.673553 0.626767 0.103563 1.19435 1.98096 0 0.520601 3.36438 0 -0.625784 -0.875 0.46875 0.15978 -0.119963 0.673828 0.654455 0.0585543 1.20207 2.03899 0 0.520601 3.36438 0 -0.625784 +0.84375 0.46875 0.159821 -0.11995 0.67514 0.628052 0.171676 1.16158 1.98382 0 0.520601 3.36438 0 -0.625784 +0.875 0.46875 0.159817 -0.119932 0.675232 0.655476 0.156984 1.17452 2.04199 0 0.520601 3.36438 0 -0.625784 -0.8125 0.46875 0.159775 -0.120017 0.67334 0.600861 0.125676 1.20412 1.9267 0 0.520601 3.36438 0 -0.625784 -0.84375 0.46875 0.159777 -0.11999 0.673553 0.626767 0.103563 1.19435 1.98096 0 0.520601 3.36438 0 -0.625784 +0.8125 0.46875 0.159826 -0.119968 0.675354 0.60132 0.183244 1.17438 1.92952 0 0.520601 3.36438 0 -0.625784 +0.84375 0.46875 0.159821 -0.11995 0.67514 0.627905 0.171676 1.16158 1.98382 0 0.520601 3.36438 0 -0.625784 -0.8125 0.5 0.164843 -0.123825 0.635651 0.617292 0.121032 1.24624 1.88367 0 0.505384 3.36607 0 -0.606531 -0.84375 0.5 0.164846 -0.123798 0.636017 0.644103 0.0989682 1.22289 1.93824 0 0.505384 3.36607 0 -0.606531 +0.8125 0.5 0.164894 -0.123774 0.637695 0.618124 0.166989 1.24201 1.88651 0 0.505384 3.36607 0 -0.606531 +0.84375 0.5 0.16489 -0.123756 0.637817 0.644708 0.17845 1.21902 1.94104 0 0.505384 3.36607 0 -0.606531 -0.84375 0.46875 0.159777 -0.11999 0.673553 0.626767 0.103563 1.19435 1.98096 0 0.520601 3.36438 0 -0.625784 -0.875 0.46875 0.15978 -0.119963 0.673828 0.654455 0.0585543 1.20207 2.03899 0 0.520601 3.36438 0 -0.625784 +0.84375 0.46875 0.159821 -0.11995 0.67514 0.627458 0.171676 1.16158 1.98382 0 0.520601 3.36438 0 -0.625784 +0.875 0.46875 0.159817 -0.119932 0.675232 0.655788 0.156984 1.17452 2.04199 0 0.520601 3.36438 0 -0.625784 -0.84375 0.5 0.164846 -0.123798 0.636017 0.644103 0.0989682 1.22289 1.93824 0 0.505384 3.36607 0 -0.606531 -0.875 0.5 0.16485 -0.12377 0.636261 0.672545 0.0735691 1.21532 1.99599 0 0.505384 3.36607 0 -0.606531 +0.84375 0.5 0.16489 -0.123756 0.637817 0.645171 0.17845 1.21902 1.94104 0 0.505384 3.36607 0 -0.606531 +0.875 0.5 0.164886 -0.123738 0.637543 0.673501 0.179215 1.23189 1.99897 0 0.505384 3.36607 0 -0.606531 -0.875 0.375 0.145488 -0.109228 0.78656 0.602679 0.0719572 0.985045 2.16728 0 0.563503 3.35961 0 -0.687289 -0.90625 0.375 0.145491 -0.109203 0.786652 0.629543 0.092733 0.948531 2.22891 0 0.563503 3.35961 0 -0.687289 +0.875 0.375 0.145525 -0.109202 0.786957 0.60444 0.152235 0.973358 2.17054 0 0.563503 3.35961 0 -0.687289 +0.90625 0.375 0.145518 -0.109184 0.787109 0.631798 0.143704 0.967116 2.2323 0 0.563503 3.35961 0 -0.687289 -0.875 0.40625 0.150104 -0.112695 0.748993 0.619487 0.0536267 1.09103 2.12455 0 0.549647 3.36115 0 -0.666144 -0.90625 0.40625 0.150107 -0.11267 0.749847 0.646711 0.057795 1.05392 2.18585 0 0.549647 3.36115 0 -0.666144 +0.875 0.40625 0.15014 -0.112668 0.75 0.621452 0.144312 1.05006 2.12776 0 0.549647 3.36115 0 -0.666144 +0.90625 0.40625 0.150135 -0.112649 0.750031 0.648809 0.149638 1.04969 2.18946 0 0.549647 3.36115 0 -0.666144 -0.90625 0.375 0.145491 -0.109203 0.786652 0.629543 0.092733 0.948531 2.22891 0 0.563503 3.35961 0 -0.687289 -0.9375 0.375 0.145494 -0.109178 0.787109 0.657963 0.112087 0.954829 2.29448 0 0.563503 3.35961 0 -0.687289 +0.90625 0.375 0.145518 -0.109184 0.787109 0.631358 0.143704 0.967116 2.2323 0 0.563503 3.35961 0 -0.687289 +0.9375 0.375 0.145512 -0.109165 0.787018 0.660561 0.151239 0.97113 2.29798 0 0.563503 3.35961 0 -0.687289 -0.90625 0.40625 0.150107 -0.11267 0.749847 0.646711 0.057795 1.05392 2.18585 0 0.549647 3.36115 0 -0.666144 -0.9375 0.40625 0.150111 -0.112643 0.750061 0.676326 0.110734 1.05716 2.25183 0 0.549647 3.36115 0 -0.666144 +0.90625 0.40625 0.150135 -0.112649 0.750031 0.649243 0.149638 1.04969 2.18946 0 0.549647 3.36115 0 -0.666144 +0.9375 0.40625 0.150129 -0.11263 0.75 0.678446 0.153019 1.04762 2.2552 0 0.549647 3.36115 0 -0.666144 -0.875 0.40625 0.150104 -0.112695 0.748993 0.619487 0.0536267 1.09103 2.12455 0 0.549647 3.36115 0 -0.666144 -0.90625 0.40625 0.150107 -0.11267 0.749847 0.646711 0.057795 1.05392 2.18585 0 0.549647 3.36115 0 -0.666144 +0.875 0.40625 0.15014 -0.112668 0.75 0.620859 0.144312 1.05006 2.12776 0 0.549647 3.36115 0 -0.666144 +0.90625 0.40625 0.150135 -0.112649 0.750031 0.649106 0.149638 1.04969 2.18946 0 0.549647 3.36115 0 -0.666144 -0.875 0.4375 0.154866 -0.116272 0.711639 0.636593 0.0686045 1.15232 2.08169 0 0.535351 3.36274 0 -0.645649 -0.90625 0.4375 0.15487 -0.116246 0.712189 0.664986 0.068245 1.15054 2.14335 0 0.535351 3.36274 0 -0.645649 +0.875 0.4375 0.154903 -0.116243 0.712555 0.63845 0.153696 1.11546 2.08484 0 0.535351 3.36274 0 -0.645649 +0.90625 0.4375 0.154898 -0.116225 0.712708 0.666698 0.146029 1.12064 2.14662 0 0.535351 3.36274 0 -0.645649 -0.90625 0.40625 0.150107 -0.11267 0.749847 0.646711 0.057795 1.05392 2.18585 0 0.549647 3.36115 0 -0.666144 -0.9375 0.40625 0.150111 -0.112643 0.750061 0.676326 0.110734 1.05716 2.25183 0 0.549647 3.36115 0 -0.666144 +0.90625 0.40625 0.150135 -0.112649 0.750031 0.648651 0.149638 1.04969 2.18946 0 0.549647 3.36115 0 -0.666144 +0.9375 0.40625 0.150129 -0.11263 0.75 0.678761 0.153019 1.04762 2.2552 0 0.549647 3.36115 0 -0.666144 -0.90625 0.4375 0.15487 -0.116246 0.712189 0.664986 0.068245 1.15054 2.14335 0 0.535351 3.36274 0 -0.645649 -0.9375 0.4375 0.154874 -0.116218 0.712585 0.695248 0.101708 1.13754 2.20887 0 0.535351 3.36274 0 -0.645649 +0.90625 0.4375 0.154898 -0.116225 0.712708 0.667153 0.146029 1.12064 2.14662 0 0.535351 3.36274 0 -0.645649 +0.9375 0.4375 0.154893 -0.116205 0.712646 0.697263 0.139707 1.11563 2.21228 0 0.535351 3.36274 0 -0.645649 -0.9375 0.375 0.145494 -0.109178 0.787109 0.657963 0.112087 0.954829 2.29448 0 0.563503 3.35961 0 -0.687289 -0.96875 0.375 0.145497 -0.109152 0.787048 0.688527 0.149191 0.947088 2.36444 0 0.563503 3.35961 0 -0.687289 +0.9375 0.375 0.145512 -0.109165 0.787018 0.66009 0.151239 0.97113 2.29798 0 0.563503 3.35961 0 -0.687289 +0.96875 0.375 0.145505 -0.109145 0.787018 0.691146 0.146551 0.983174 2.36791 0 0.563503 3.35961 0 -0.687289 -0.9375 0.40625 0.150111 -0.112643 0.750061 0.676326 0.110734 1.05716 2.25183 0 0.549647 3.36115 0 -0.666144 -0.96875 0.40625 0.150115 -0.112616 0.750214 0.707756 0.149489 1.0429 2.32177 0 0.549647 3.36115 0 -0.666144 +0.9375 0.40625 0.150129 -0.11263 0.75 0.6789 0.153019 1.04762 2.2552 0 0.549647 3.36115 0 -0.666144 +0.96875 0.40625 0.150123 -0.11261 0.749969 0.709956 0.144272 1.0346 2.32503 0 0.549647 3.36115 0 -0.666144 -0.96875 0.375 0.145497 -0.109152 0.787048 0.688527 0.149191 0.947088 2.36444 0 0.563503 3.35961 0 -0.687289 -1 0.375 0.145499 -0.109124 0.786987 0.721087 0.154493 0.961297 2.43897 0 0.563503 3.35961 0 -0.687289 +0.96875 0.375 0.145505 -0.109145 0.787018 0.69064 0.146551 0.983174 2.36791 0 0.563503 3.35961 0 -0.687289 +1 0.375 0.145499 -0.109124 0.787018 0.723665 0.145864 0.988767 2.44351 0 0.563503 3.35961 0 -0.687289 -0.96875 0.40625 0.150115 -0.112616 0.750214 0.707756 0.149489 1.0429 2.32177 0 0.549647 3.36115 0 -0.666144 -1 0.40625 0.150118 -0.112588 0.750031 0.741491 0.173795 1.03676 2.3965 0 0.549647 3.36115 0 -0.666144 +0.96875 0.40625 0.150123 -0.11261 0.749969 0.710476 0.144272 1.0346 2.32503 0 0.549647 3.36115 0 -0.666144 +1 0.40625 0.150118 -0.112588 0.750061 0.743502 0.136215 1.03434 2.4008 0 0.549647 3.36115 0 -0.666144 -0.9375 0.40625 0.150111 -0.112643 0.750061 0.676326 0.110734 1.05716 2.25183 0 0.549647 3.36115 0 -0.666144 -0.96875 0.40625 0.150115 -0.112616 0.750214 0.707756 0.149489 1.0429 2.32177 0 0.549647 3.36115 0 -0.666144 +0.9375 0.40625 0.150129 -0.11263 0.75 0.678287 0.153019 1.04762 2.2552 0 0.549647 3.36115 0 -0.666144 +0.96875 0.40625 0.150123 -0.11261 0.749969 0.710278 0.144272 1.0346 2.32503 0 0.549647 3.36115 0 -0.666144 -0.9375 0.4375 0.154874 -0.116218 0.712585 0.695248 0.101708 1.13754 2.20887 0 0.535351 3.36274 0 -0.645649 -0.96875 0.4375 0.154879 -0.11619 0.712708 0.727763 0.131065 1.13251 2.27897 0 0.535351 3.36274 0 -0.645649 +0.9375 0.4375 0.154893 -0.116205 0.712646 0.697713 0.139707 1.11563 2.21228 0 0.535351 3.36274 0 -0.645649 +0.96875 0.4375 0.154888 -0.116184 0.71286 0.729704 0.134155 1.11042 2.28227 0 0.535351 3.36274 0 -0.645649 -0.96875 0.40625 0.150115 -0.112616 0.750214 0.707756 0.149489 1.0429 2.32177 0 0.549647 3.36115 0 -0.666144 -1 0.40625 0.150118 -0.112588 0.750031 0.741491 0.173795 1.03676 2.3965 0 0.549647 3.36115 0 -0.666144 +0.96875 0.40625 0.150123 -0.11261 0.749969 0.709768 0.144272 1.0346 2.32503 0 0.549647 3.36115 0 -0.666144 +1 0.40625 0.150118 -0.112588 0.750061 0.743872 0.136215 1.03434 2.4008 0 0.549647 3.36115 0 -0.666144 -0.96875 0.4375 0.154879 -0.11619 0.712708 0.727763 0.131065 1.13251 2.27897 0 0.535351 3.36274 0 -0.645649 -1 0.4375 0.154883 -0.116162 0.712769 0.762393 0.138768 1.1272 2.35356 0 0.535351 3.36274 0 -0.645649 +0.96875 0.4375 0.154888 -0.116184 0.71286 0.730215 0.134155 1.11042 2.28227 0 0.535351 3.36274 0 -0.645649 +1 0.4375 0.154883 -0.116162 0.712891 0.76432 0.143895 1.11436 2.35802 0 0.535351 3.36274 0 -0.645649 -0.875 0.4375 0.154866 -0.116272 0.711639 0.636593 0.0686045 1.15232 2.08169 0 0.535351 3.36274 0 -0.645649 -0.90625 0.4375 0.15487 -0.116246 0.712189 0.664986 0.068245 1.15054 2.14335 0 0.535351 3.36274 0 -0.645649 +0.875 0.4375 0.154903 -0.116243 0.712555 0.637867 0.153696 1.11546 2.08484 0 0.535351 3.36274 0 -0.645649 +0.90625 0.4375 0.154898 -0.116225 0.712708 0.666998 0.146029 1.12064 2.14662 0 0.535351 3.36274 0 -0.645649 -0.875 0.46875 0.15978 -0.119963 0.673828 0.654455 0.0585543 1.20207 2.03899 0 0.520601 3.36438 0 -0.625784 -0.90625 0.46875 0.159784 -0.119936 0.674622 0.683623 0.0504099 1.20082 2.10062 0 0.520601 3.36438 0 -0.625784 +0.875 0.46875 0.159817 -0.119932 0.675232 0.655939 0.156984 1.17452 2.04199 0 0.520601 3.36438 0 -0.625784 +0.90625 0.46875 0.159812 -0.119913 0.675201 0.68507 0.155934 1.17969 2.10362 0 0.520601 3.36438 0 -0.625784 -0.90625 0.4375 0.15487 -0.116246 0.712189 0.664986 0.068245 1.15054 2.14335 0 0.535351 3.36274 0 -0.645649 -0.9375 0.4375 0.154874 -0.116218 0.712585 0.695248 0.101708 1.13754 2.20887 0 0.535351 3.36274 0 -0.645649 +0.90625 0.4375 0.154898 -0.116225 0.712708 0.666516 0.146029 1.12064 2.14662 0 0.535351 3.36274 0 -0.645649 +0.9375 0.4375 0.154893 -0.116205 0.712646 0.697577 0.139707 1.11563 2.21228 0 0.535351 3.36274 0 -0.645649 -0.90625 0.46875 0.159784 -0.119936 0.674622 0.683623 0.0504099 1.20082 2.10062 0 0.520601 3.36438 0 -0.625784 -0.9375 0.46875 0.159789 -0.119907 0.675018 0.714967 0.0970227 1.19406 2.1664 0 0.520601 3.36438 0 -0.625784 +0.90625 0.46875 0.159812 -0.119913 0.675201 0.685558 0.155934 1.17969 2.10362 0 0.520601 3.36438 0 -0.625784 +0.9375 0.46875 0.159808 -0.119893 0.675262 0.716619 0.151777 1.18927 2.16948 0 0.520601 3.36438 0 -0.625784 -0.875 0.46875 0.15978 -0.119963 0.673828 0.654455 0.0585543 1.20207 2.03899 0 0.520601 3.36438 0 -0.625784 -0.90625 0.46875 0.159784 -0.119936 0.674622 0.683623 0.0504099 1.20082 2.10062 0 0.520601 3.36438 0 -0.625784 +0.875 0.46875 0.159817 -0.119932 0.675232 0.655306 0.156984 1.17452 2.04199 0 0.520601 3.36438 0 -0.625784 +0.90625 0.46875 0.159812 -0.119913 0.675201 0.685394 0.155934 1.17969 2.10362 0 0.520601 3.36438 0 -0.625784 -0.875 0.5 0.16485 -0.12377 0.636261 0.672545 0.0735691 1.21532 1.99599 0 0.505384 3.36607 0 -0.606531 -0.90625 0.5 0.164855 -0.123743 0.636902 0.702902 0.0602984 1.24974 2.05801 0 0.505384 3.36607 0 -0.606531 +0.875 0.5 0.164886 -0.123738 0.637543 0.673958 0.179215 1.23189 1.99897 0 0.505384 3.36607 0 -0.606531 +0.90625 0.5 0.164883 -0.123718 0.637665 0.704045 0.171751 1.24707 2.06089 0 0.505384 3.36607 0 -0.606531 -0.90625 0.46875 0.159784 -0.119936 0.674622 0.683623 0.0504099 1.20082 2.10062 0 0.520601 3.36438 0 -0.625784 -0.9375 0.46875 0.159789 -0.119907 0.675018 0.714967 0.0970227 1.19406 2.1664 0 0.520601 3.36438 0 -0.625784 +0.90625 0.46875 0.159812 -0.119913 0.675201 0.684868 0.155934 1.17969 2.10362 0 0.520601 3.36438 0 -0.625784 +0.9375 0.46875 0.159808 -0.119893 0.675262 0.716958 0.151777 1.18927 2.16948 0 0.520601 3.36438 0 -0.625784 -0.90625 0.5 0.164855 -0.123743 0.636902 0.702902 0.0602984 1.24974 2.05801 0 0.505384 3.36607 0 -0.606531 -0.9375 0.5 0.164861 -0.123714 0.63739 0.735086 0.110114 1.25938 2.12356 0 0.505384 3.36607 0 -0.606531 +0.90625 0.5 0.164883 -0.123718 0.637665 0.704555 0.171751 1.24707 2.06089 0 0.505384 3.36607 0 -0.606531 +0.9375 0.5 0.164879 -0.123698 0.637482 0.736645 0.165315 1.2567 2.12657 0 0.505384 3.36607 0 -0.606531 -0.9375 0.4375 0.154874 -0.116218 0.712585 0.695248 0.101708 1.13754 2.20887 0 0.535351 3.36274 0 -0.645649 -0.96875 0.4375 0.154879 -0.11619 0.712708 0.727763 0.131065 1.13251 2.27897 0 0.535351 3.36274 0 -0.645649 +0.9375 0.4375 0.154893 -0.116205 0.712646 0.697061 0.139707 1.11563 2.21228 0 0.535351 3.36274 0 -0.645649 +0.96875 0.4375 0.154888 -0.116184 0.71286 0.730066 0.134155 1.11042 2.28227 0 0.535351 3.36274 0 -0.645649 -0.9375 0.46875 0.159789 -0.119907 0.675018 0.714967 0.0970227 1.19406 2.1664 0 0.520601 3.36438 0 -0.625784 -0.96875 0.46875 0.159795 -0.119879 0.675232 0.748334 0.145006 1.20186 2.23622 0 0.520601 3.36438 0 -0.625784 +0.9375 0.46875 0.159808 -0.119893 0.675262 0.717123 0.151777 1.18927 2.16948 0 0.520601 3.36438 0 -0.625784 +0.96875 0.46875 0.159804 -0.119872 0.675293 0.750128 0.153188 1.19311 2.23946 0 0.520601 3.36438 0 -0.625784 -0.96875 0.4375 0.154879 -0.11619 0.712708 0.727763 0.131065 1.13251 2.27897 0 0.535351 3.36274 0 -0.645649 -1 0.4375 0.154883 -0.116162 0.712769 0.762393 0.138768 1.1272 2.35356 0 0.535351 3.36274 0 -0.645649 +0.96875 0.4375 0.154888 -0.116184 0.71286 0.729497 0.134155 1.11042 2.28227 0 0.535351 3.36274 0 -0.645649 +1 0.4375 0.154883 -0.116162 0.712891 0.764693 0.143895 1.11436 2.35802 0 0.535351 3.36274 0 -0.645649 -0.96875 0.46875 0.159795 -0.119879 0.675232 0.748334 0.145006 1.20186 2.23622 0 0.520601 3.36438 0 -0.625784 -1 0.46875 0.1598 -0.11985 0.67511 0.784157 0.171698 1.20293 2.31082 0 0.520601 3.36438 0 -0.625784 +0.96875 0.46875 0.159804 -0.119872 0.675293 0.750673 0.153188 1.19311 2.23946 0 0.520601 3.36438 0 -0.625784 +1 0.46875 0.1598 -0.11985 0.675323 0.785869 0.15338 1.19274 2.31513 0 0.520601 3.36438 0 -0.625784 -0.9375 0.46875 0.159789 -0.119907 0.675018 0.714967 0.0970227 1.19406 2.1664 0 0.520601 3.36438 0 -0.625784 -0.96875 0.46875 0.159795 -0.119879 0.675232 0.748334 0.145006 1.20186 2.23622 0 0.520601 3.36438 0 -0.625784 +0.9375 0.46875 0.159808 -0.119893 0.675262 0.716418 0.151777 1.18927 2.16948 0 0.520601 3.36438 0 -0.625784 +0.96875 0.46875 0.159804 -0.119872 0.675293 0.750479 0.153188 1.19311 2.23946 0 0.520601 3.36438 0 -0.625784 -0.9375 0.5 0.164861 -0.123714 0.63739 0.735086 0.110114 1.25938 2.12356 0 0.505384 3.36607 0 -0.606531 -0.96875 0.5 0.164867 -0.123684 0.63739 0.769705 0.149085 1.26243 2.19355 0 0.505384 3.36607 0 -0.606531 +0.9375 0.5 0.164879 -0.123698 0.637482 0.73716 0.165315 1.2567 2.12657 0 0.505384 3.36607 0 -0.606531 +0.96875 0.5 0.164875 -0.123676 0.637634 0.771221 0.147378 1.26152 2.19655 0 0.505384 3.36607 0 -0.606531 -0.96875 0.46875 0.159795 -0.119879 0.675232 0.748334 0.145006 1.20186 2.23622 0 0.520601 3.36438 0 -0.625784 -1 0.46875 0.1598 -0.11985 0.67511 0.784157 0.171698 1.20293 2.31082 0 0.520601 3.36438 0 -0.625784 +0.96875 0.46875 0.159804 -0.119872 0.675293 0.749953 0.153188 1.19311 2.23946 0 0.520601 3.36438 0 -0.625784 +1 0.46875 0.1598 -0.11985 0.675323 0.786219 0.15338 1.19274 2.31513 0 0.520601 3.36438 0 -0.625784 -0.96875 0.5 0.164867 -0.123684 0.63739 0.769705 0.149085 1.26243 2.19355 0 0.505384 3.36607 0 -0.606531 -1 0.5 0.164872 -0.123654 0.637451 0.806551 0.150942 1.27183 2.26811 0 0.505384 3.36607 0 -0.606531 +0.96875 0.5 0.164875 -0.123676 0.637634 0.771744 0.147378 1.26152 2.19655 0 0.505384 3.36607 0 -0.606531 +1 0.5 0.164872 -0.123654 0.637695 0.808009 0.150395 1.26808 2.27235 0 0.505384 3.36607 0 -0.606531 -0 0.5 0.164872 -0.123654 0.634827 0.281971 0.169108 1.27523 1.20491 0 0.505384 3.36607 0 -0.606531 -0.03125 0.5 0.16486 -0.1238 0.634796 0.287271 0.164561 1.27789 1.21559 0 0.505384 3.36607 0 -0.606531 +0 0.5 0.164872 -0.123654 0.639557 0.280789 0.161914 1.32503 1.20732 0 0.505384 3.36607 0 -0.606531 +0.03125 0.5 0.164876 -0.123733 0.639557 0.286204 0.156006 1.3259 1.21806 0 0.505384 3.36607 0 -0.606531 -0 0.53125 0.170106 -0.127579 0.596893 0.288397 0.164066 1.3472 1.16203 0 0.489683 3.36781 0 -0.58787 -0.03125 0.53125 0.170095 -0.127727 0.596924 0.29401 0.165409 1.34067 1.17306 0 0.489683 3.36781 0 -0.58787 +0 0.53125 0.170106 -0.127579 0.601532 0.287277 0.159974 1.39739 1.16439 0 0.489683 3.36781 0 -0.58787 +0.03125 0.53125 0.170111 -0.127661 0.601593 0.292692 0.16668 1.39307 1.17525 0 0.489683 3.36781 0 -0.58787 -0.03125 0.5 0.16486 -0.1238 0.634796 0.287271 0.164561 1.27789 1.21559 0 0.505384 3.36607 0 -0.606531 -0.0625 0.5 0.16485 -0.123917 0.634857 0.292983 0.171827 1.27953 1.2272 0 0.505384 3.36607 0 -0.606531 +0.03125 0.5 0.164876 -0.123733 0.639557 0.286098 0.156006 1.3259 1.21806 0 0.505384 3.36607 0 -0.606531 +0.0625 0.5 0.164882 -0.123799 0.639648 0.291863 0.153643 1.32742 1.22948 0 0.505384 3.36607 0 -0.606531 -0.03125 0.53125 0.170095 -0.127727 0.596924 0.29401 0.165409 1.34067 1.17306 0 0.489683 3.36781 0 -0.58787 -0.0625 0.53125 0.170084 -0.127843 0.596893 0.299689 0.148012 1.3375 1.18415 0 0.489683 3.36781 0 -0.58787 +0.03125 0.53125 0.170111 -0.127661 0.601593 0.292785 0.16668 1.39307 1.17525 0 0.489683 3.36781 0 -0.58787 +0.0625 0.53125 0.170117 -0.127727 0.601562 0.29855 0.173159 1.39553 1.18668 0 0.489683 3.36781 0 -0.58787 -0 0.53125 0.170106 -0.127579 0.596893 0.288397 0.164066 1.3472 1.16203 0 0.489683 3.36781 0 -0.58787 -0.03125 0.53125 0.170095 -0.127727 0.596924 0.29401 0.165409 1.34067 1.17306 0 0.489683 3.36781 0 -0.58787 +0 0.53125 0.170106 -0.127579 0.601532 0.287122 0.159974 1.39739 1.16439 0 0.489683 3.36781 0 -0.58787 +0.03125 0.53125 0.170111 -0.127661 0.601593 0.292706 0.16668 1.39307 1.17525 0 0.489683 3.36781 0 -0.58787 -0 0.5625 0.175505 -0.131629 0.558929 0.295039 0.160489 1.42614 1.11929 0 0.473484 3.36961 0 -0.569783 -0.03125 0.5625 0.175496 -0.131776 0.55899 0.300618 0.158243 1.4254 1.12995 0 0.473484 3.36961 0 -0.569783 +0 0.5625 0.175505 -0.131629 0.563232 0.293893 0.162277 1.47945 1.1215 0 0.473484 3.36961 0 -0.569783 +0.03125 0.5625 0.175512 -0.131712 0.563293 0.299477 0.16366 1.47942 1.13226 0 0.473484 3.36961 0 -0.569783 -0.03125 0.53125 0.170095 -0.127727 0.596924 0.29401 0.165409 1.34067 1.17306 0 0.489683 3.36781 0 -0.58787 -0.0625 0.53125 0.170084 -0.127843 0.596893 0.299689 0.148012 1.3375 1.18415 0 0.489683 3.36781 0 -0.58787 +0.03125 0.53125 0.170111 -0.127661 0.601593 0.29263 0.16668 1.39307 1.17525 0 0.489683 3.36781 0 -0.58787 +0.0625 0.53125 0.170117 -0.127727 0.601562 0.298567 0.173159 1.39553 1.18668 0 0.489683 3.36781 0 -0.58787 -0.03125 0.5625 0.175496 -0.131776 0.55899 0.300618 0.158243 1.4254 1.12995 0 0.473484 3.36961 0 -0.569783 -0.0625 0.5625 0.175486 -0.131893 0.559082 0.306695 0.156482 1.41703 1.14158 0 0.473484 3.36961 0 -0.569783 +0.03125 0.5625 0.175512 -0.131712 0.563293 0.299537 0.16366 1.47942 1.13226 0 0.473484 3.36961 0 -0.569783 +0.0625 0.5625 0.175519 -0.131779 0.563354 0.305474 0.173258 1.48101 1.14372 0 0.473484 3.36961 0 -0.569783 -0.0625 0.5 0.16485 -0.123917 0.634857 0.292983 0.171827 1.27953 1.2272 0 0.505384 3.36607 0 -0.606531 -0.09375 0.5 0.164838 -0.124008 0.634735 0.299023 0.180985 1.234 1.23929 0 0.505384 3.36607 0 -0.606531 +0.0625 0.5 0.164882 -0.123799 0.639648 0.291702 0.153643 1.32742 1.22948 0 0.505384 3.36607 0 -0.606531 +0.09375 0.5 0.164887 -0.123851 0.639679 0.297829 0.158278 1.33259 1.24175 0 0.505384 3.36607 0 -0.606531 -0.0625 0.53125 0.170084 -0.127843 0.596893 0.299689 0.148012 1.3375 1.18415 0 0.489683 3.36781 0 -0.58787 -0.09375 0.53125 0.170073 -0.127933 0.597168 0.305722 0.149777 1.31651 1.19625 0 0.489683 3.36781 0 -0.58787 +0.0625 0.53125 0.170117 -0.127727 0.601562 0.298664 0.173159 1.39553 1.18668 0 0.489683 3.36781 0 -0.58787 +0.09375 0.53125 0.170123 -0.127779 0.601532 0.304791 0.164853 1.39852 1.19873 0 0.489683 3.36781 0 -0.58787 -0.09375 0.5 0.164838 -0.124008 0.634735 0.299023 0.180985 1.234 1.23929 0 0.505384 3.36607 0 -0.606531 -0.125 0.5 0.164826 -0.124075 0.634644 0.305537 0.163681 1.23642 1.25237 0 0.505384 3.36607 0 -0.606531 +0.09375 0.5 0.164887 -0.123851 0.639679 0.297758 0.158278 1.33259 1.24175 0 0.505384 3.36607 0 -0.606531 +0.125 0.5 0.164893 -0.123892 0.639679 0.304237 0.149493 1.32651 1.25456 0 0.505384 3.36607 0 -0.606531 -0.09375 0.53125 0.170073 -0.127933 0.597168 0.305722 0.149777 1.31651 1.19625 0 0.489683 3.36781 0 -0.58787 -0.125 0.53125 0.170062 -0.128 0.597076 0.312401 0.150948 1.29119 1.20925 0 0.489683 3.36781 0 -0.58787 +0.09375 0.53125 0.170123 -0.127779 0.601532 0.304887 0.164853 1.39852 1.19873 0 0.489683 3.36781 0 -0.58787 +0.125 0.53125 0.170129 -0.127819 0.601624 0.311367 0.161792 1.42616 1.2119 0 0.489683 3.36781 0 -0.58787 -0.0625 0.53125 0.170084 -0.127843 0.596893 0.299689 0.148012 1.3375 1.18415 0 0.489683 3.36781 0 -0.58787 -0.09375 0.53125 0.170073 -0.127933 0.597168 0.305722 0.149777 1.31651 1.19625 0 0.489683 3.36781 0 -0.58787 +0.0625 0.53125 0.170117 -0.127727 0.601562 0.29848 0.173159 1.39553 1.18668 0 0.489683 3.36781 0 -0.58787 +0.09375 0.53125 0.170123 -0.127779 0.601532 0.30481 0.164853 1.39852 1.19873 0 0.489683 3.36781 0 -0.58787 -0.0625 0.5625 0.175486 -0.131893 0.559082 0.306695 0.156482 1.41703 1.14158 0 0.473484 3.36961 0 -0.569783 -0.09375 0.5625 0.175476 -0.131981 0.559143 0.31291 0.148202 1.42197 1.15345 0 0.473484 3.36961 0 -0.569783 +0.0625 0.5625 0.175519 -0.131779 0.563354 0.305543 0.173258 1.48101 1.14372 0 0.473484 3.36961 0 -0.569783 +0.09375 0.5625 0.175525 -0.131831 0.563354 0.311873 0.201584 1.48122 1.156 0 0.473484 3.36961 0 -0.569783 -0.09375 0.53125 0.170073 -0.127933 0.597168 0.305722 0.149777 1.31651 1.19625 0 0.489683 3.36781 0 -0.58787 -0.125 0.53125 0.170062 -0.128 0.597076 0.312401 0.150948 1.29119 1.20925 0 0.489683 3.36781 0 -0.58787 +0.09375 0.53125 0.170123 -0.127779 0.601532 0.30464 0.164853 1.39852 1.19873 0 0.489683 3.36781 0 -0.58787 +0.125 0.53125 0.170129 -0.127819 0.601624 0.31146 0.161792 1.42616 1.2119 0 0.489683 3.36781 0 -0.58787 -0.09375 0.5625 0.175476 -0.131981 0.559143 0.31291 0.148202 1.42197 1.15345 0 0.473484 3.36961 0 -0.569783 -0.125 0.5625 0.175466 -0.132047 0.559357 0.319632 0.155921 1.3999 1.16643 0 0.473484 3.36961 0 -0.569783 +0.09375 0.5625 0.175525 -0.131831 0.563354 0.312036 0.201584 1.48122 1.156 0 0.473484 3.36961 0 -0.569783 +0.125 0.5625 0.17553 -0.131871 0.563019 0.318856 0.180751 1.50166 1.16881 0 0.473484 3.36961 0 -0.569783 -0 0.5625 0.175505 -0.131629 0.558929 0.295039 0.160489 1.42614 1.11929 0 0.473484 3.36961 0 -0.569783 -0.03125 0.5625 0.175496 -0.131776 0.55899 0.300618 0.158243 1.4254 1.12995 0 0.473484 3.36961 0 -0.569783 +0 0.5625 0.175505 -0.131629 0.563232 0.293741 0.162277 1.47945 1.1215 0 0.473484 3.36961 0 -0.569783 +0.03125 0.5625 0.175512 -0.131712 0.563293 0.299473 0.16366 1.47942 1.13226 0 0.473484 3.36961 0 -0.569783 -0 0.59375 0.181077 -0.135807 0.520721 0.301882 0.169949 1.51647 1.07644 0 0.45677 3.37147 0 -0.552252 -0.03125 0.59375 0.181069 -0.135954 0.520752 0.307655 0.162104 1.51962 1.0871 0 0.45677 3.37147 0 -0.552252 +0 0.59375 0.181077 -0.135807 0.524933 0.300611 0.170526 1.58043 1.07853 0 0.45677 3.37147 0 -0.552252 +0.03125 0.59375 0.181084 -0.135892 0.524994 0.306343 0.178219 1.58489 1.08927 0 0.45677 3.37147 0 -0.552252 -0.03125 0.5625 0.175496 -0.131776 0.55899 0.300618 0.158243 1.4254 1.12995 0 0.473484 3.36961 0 -0.569783 -0.0625 0.5625 0.175486 -0.131893 0.559082 0.306695 0.156482 1.41703 1.14158 0 0.473484 3.36961 0 -0.569783 +0.03125 0.5625 0.175512 -0.131712 0.563293 0.299371 0.16366 1.47942 1.13226 0 0.473484 3.36961 0 -0.569783 +0.0625 0.5625 0.175519 -0.131779 0.563354 0.305493 0.173258 1.48101 1.14372 0 0.473484 3.36961 0 -0.569783 -0.03125 0.59375 0.181069 -0.135954 0.520752 0.307655 0.162104 1.51962 1.0871 0 0.45677 3.37147 0 -0.552252 -0.0625 0.59375 0.18106 -0.136067 0.520874 0.313703 0.150468 1.54327 1.09835 0 0.45677 3.37147 0 -0.552252 +0.03125 0.59375 0.181084 -0.135892 0.524994 0.306433 0.178219 1.58489 1.08927 0 0.45677 3.37147 0 -0.552252 +0.0625 0.59375 0.181091 -0.135958 0.524963 0.312555 0.188703 1.59078 1.10079 0 0.45677 3.37147 0 -0.552252 -0 0.59375 0.181077 -0.135807 0.520721 0.301882 0.169949 1.51647 1.07644 0 0.45677 3.37147 0 -0.552252 -0.03125 0.59375 0.181069 -0.135954 0.520752 0.307655 0.162104 1.51962 1.0871 0 0.45677 3.37147 0 -0.552252 +0 0.59375 0.181077 -0.135807 0.524933 0.300448 0.170526 1.58043 1.07853 0 0.45677 3.37147 0 -0.552252 +0.03125 0.59375 0.181084 -0.135892 0.524994 0.306329 0.178219 1.58489 1.08927 0 0.45677 3.37147 0 -0.552252 -0 0.625 0.186825 -0.140118 0.482483 0.308771 0.19548 1.63442 1.03339 0 0.439526 3.37339 0 -0.535261 -0.03125 0.625 0.186819 -0.140263 0.482452 0.314675 0.197808 1.61168 1.0439 0 0.439526 3.37339 0 -0.535261 +0 0.625 0.186825 -0.140118 0.486298 0.307614 0.186878 1.7201 1.03547 0 0.439526 3.37339 0 -0.535261 +0.03125 0.625 0.186833 -0.140202 0.486298 0.313495 0.187085 1.7178 1.04618 0 0.439526 3.37339 0 -0.535261 -0.03125 0.59375 0.181069 -0.135954 0.520752 0.307655 0.162104 1.51962 1.0871 0 0.45677 3.37147 0 -0.552252 -0.0625 0.59375 0.18106 -0.136067 0.520874 0.313703 0.150468 1.54327 1.09835 0 0.45677 3.37147 0 -0.552252 +0.03125 0.59375 0.181084 -0.135892 0.524994 0.306244 0.178219 1.58489 1.08927 0 0.45677 3.37147 0 -0.552252 +0.0625 0.59375 0.181091 -0.135958 0.524963 0.312586 0.188703 1.59078 1.10079 0 0.45677 3.37147 0 -0.552252 -0.03125 0.625 0.186819 -0.140263 0.482452 0.314675 0.197808 1.61168 1.0439 0 0.439526 3.37339 0 -0.535261 -0.0625 0.625 0.186811 -0.140373 0.482361 0.321188 0.184132 1.6782 1.05543 0 0.439526 3.37339 0 -0.535261 +0.03125 0.625 0.186833 -0.140202 0.486298 0.313591 0.187085 1.7178 1.04618 0 0.439526 3.37339 0 -0.535261 +0.0625 0.625 0.186841 -0.140268 0.486298 0.319933 0.188239 1.7241 1.05759 0 0.439526 3.37339 0 -0.535261 -0.0625 0.5625 0.175486 -0.131893 0.559082 0.306695 0.156482 1.41703 1.14158 0 0.473484 3.36961 0 -0.569783 -0.09375 0.5625 0.175476 -0.131981 0.559143 0.31291 0.148202 1.42197 1.15345 0 0.473484 3.36961 0 -0.569783 +0.0625 0.5625 0.175519 -0.131779 0.563354 0.30537 0.173258 1.48101 1.14372 0 0.473484 3.36961 0 -0.569783 +0.09375 0.5625 0.175525 -0.131831 0.563354 0.311905 0.201584 1.48122 1.156 0 0.473484 3.36961 0 -0.569783 -0.0625 0.59375 0.18106 -0.136067 0.520874 0.313703 0.150468 1.54327 1.09835 0 0.45677 3.37147 0 -0.552252 -0.09375 0.59375 0.18105 -0.136154 0.521027 0.320172 0.146199 1.53619 1.11041 0 0.45677 3.37147 0 -0.552252 +0.0625 0.59375 0.181091 -0.135958 0.524963 0.312676 0.188703 1.59078 1.10079 0 0.45677 3.37147 0 -0.552252 +0.09375 0.59375 0.181098 -0.13601 0.524933 0.319211 0.200706 1.5888 1.11286 0 0.45677 3.37147 0 -0.552252 -0.09375 0.5625 0.175476 -0.131981 0.559143 0.31291 0.148202 1.42197 1.15345 0 0.473484 3.36961 0 -0.569783 -0.125 0.5625 0.175466 -0.132047 0.559357 0.319632 0.155921 1.3999 1.16643 0 0.473484 3.36961 0 -0.569783 +0.09375 0.5625 0.175525 -0.131831 0.563354 0.31183 0.201584 1.48122 1.156 0 0.473484 3.36961 0 -0.569783 +0.125 0.5625 0.17553 -0.131871 0.563019 0.318912 0.180751 1.50166 1.16881 0 0.473484 3.36961 0 -0.569783 -0.09375 0.59375 0.18105 -0.136154 0.521027 0.320172 0.146199 1.53619 1.11041 0 0.45677 3.37147 0 -0.552252 -0.125 0.59375 0.18104 -0.136219 0.521179 0.327127 0.146685 1.54342 1.12337 0 0.45677 3.37147 0 -0.552252 +0.09375 0.59375 0.181098 -0.13601 0.524933 0.319247 0.200706 1.5888 1.11286 0 0.45677 3.37147 0 -0.552252 +0.125 0.59375 0.181104 -0.13605 0.52478 0.32633 0.204759 1.57759 1.1258 0 0.45677 3.37147 0 -0.552252 -0.0625 0.59375 0.18106 -0.136067 0.520874 0.313703 0.150468 1.54327 1.09835 0 0.45677 3.37147 0 -0.552252 -0.09375 0.59375 0.18105 -0.136154 0.521027 0.320172 0.146199 1.53619 1.11041 0 0.45677 3.37147 0 -0.552252 +0.0625 0.59375 0.181091 -0.135958 0.524963 0.312509 0.188703 1.59078 1.10079 0 0.45677 3.37147 0 -0.552252 +0.09375 0.59375 0.181098 -0.13601 0.524933 0.319194 0.200706 1.5888 1.11286 0 0.45677 3.37147 0 -0.552252 -0.0625 0.625 0.186811 -0.140373 0.482361 0.321188 0.184132 1.6782 1.05543 0 0.439526 3.37339 0 -0.535261 -0.09375 0.625 0.186802 -0.140458 0.482452 0.327836 0.15974 1.64689 1.06738 0 0.439526 3.37339 0 -0.535261 +0.0625 0.625 0.186841 -0.140268 0.486298 0.319999 0.188239 1.7241 1.05759 0 0.439526 3.37339 0 -0.535261 +0.09375 0.625 0.186848 -0.14032 0.486328 0.326685 0.209749 1.72743 1.06984 0 0.439526 3.37339 0 -0.535261 -0.09375 0.59375 0.18105 -0.136154 0.521027 0.320172 0.146199 1.53619 1.11041 0 0.45677 3.37147 0 -0.552252 -0.125 0.59375 0.18104 -0.136219 0.521179 0.327127 0.146685 1.54342 1.12337 0 0.45677 3.37147 0 -0.552252 +0.09375 0.59375 0.181098 -0.13601 0.524933 0.319079 0.200706 1.5888 1.11286 0 0.45677 3.37147 0 -0.552252 +0.125 0.59375 0.181104 -0.13605 0.52478 0.326338 0.204759 1.57759 1.1258 0 0.45677 3.37147 0 -0.552252 -0.09375 0.625 0.186802 -0.140458 0.482452 0.327836 0.15974 1.64689 1.06738 0 0.439526 3.37339 0 -0.535261 -0.125 0.625 0.186791 -0.14052 0.482574 0.334974 0.132045 1.66911 1.08024 0 0.439526 3.37339 0 -0.535261 +0.09375 0.625 0.186848 -0.14032 0.486328 0.326799 0.209749 1.72743 1.06984 0 0.439526 3.37339 0 -0.535261 +0.125 0.625 0.186853 -0.140359 0.486115 0.334058 0.23341 1.69543 1.08283 0 0.439526 3.37339 0 -0.535261 -0.125 0.5 0.164826 -0.124075 0.634644 0.305537 0.163681 1.23642 1.25237 0 0.505384 3.36607 0 -0.606531 -0.15625 0.5 0.164815 -0.124125 0.634735 0.312241 0.141801 1.21547 1.26601 0 0.505384 3.36607 0 -0.606531 +0.125 0.5 0.164893 -0.123892 0.639679 0.304091 0.149493 1.32651 1.25456 0 0.505384 3.36607 0 -0.606531 +0.15625 0.5 0.164899 -0.123922 0.639862 0.310951 0.157445 1.3165 1.26834 0 0.505384 3.36607 0 -0.606531 -0.125 0.53125 0.170062 -0.128 0.597076 0.312401 0.150948 1.29119 1.20925 0 0.489683 3.36781 0 -0.58787 -0.15625 0.53125 0.170052 -0.12805 0.597351 0.319244 0.156254 1.29765 1.22293 0 0.489683 3.36781 0 -0.58787 +0.125 0.53125 0.170129 -0.127819 0.601624 0.31149 0.161792 1.42616 1.2119 0 0.489683 3.36781 0 -0.58787 +0.15625 0.53125 0.170134 -0.12785 0.601624 0.31835 0.165337 1.42013 1.22551 0 0.489683 3.36781 0 -0.58787 -0.15625 0.5 0.164815 -0.124125 0.634735 0.312241 0.141801 1.21547 1.26601 0 0.505384 3.36607 0 -0.606531 -0.1875 0.5 0.164804 -0.124158 0.634888 0.319492 0.131932 1.24973 1.28083 0 0.505384 3.36607 0 -0.606531 +0.15625 0.5 0.164899 -0.123922 0.639862 0.310817 0.157445 1.3165 1.26834 0 0.505384 3.36607 0 -0.606531 +0.1875 0.5 0.164906 -0.123944 0.639771 0.318258 0.174825 1.31419 1.28298 0 0.505384 3.36607 0 -0.606531 -0.15625 0.53125 0.170052 -0.12805 0.597351 0.319244 0.156254 1.29765 1.22293 0 0.489683 3.36781 0 -0.58787 -0.1875 0.53125 0.170042 -0.128082 0.597168 0.326807 0.146667 1.30636 1.23757 0 0.489683 3.36781 0 -0.58787 +0.15625 0.53125 0.170134 -0.12785 0.601624 0.31842 0.165337 1.42013 1.22551 0 0.489683 3.36781 0 -0.58787 +0.1875 0.53125 0.17014 -0.127872 0.601654 0.32586 0.163457 1.40941 1.24022 0 0.489683 3.36781 0 -0.58787 -0.125 0.53125 0.170062 -0.128 0.597076 0.312401 0.150948 1.29119 1.20925 0 0.489683 3.36781 0 -0.58787 -0.15625 0.53125 0.170052 -0.12805 0.597351 0.319244 0.156254 1.29765 1.22293 0 0.489683 3.36781 0 -0.58787 +0.125 0.53125 0.170129 -0.127819 0.601624 0.311312 0.161792 1.42616 1.2119 0 0.489683 3.36781 0 -0.58787 +0.15625 0.53125 0.170134 -0.12785 0.601624 0.31838 0.165337 1.42013 1.22551 0 0.489683 3.36781 0 -0.58787 -0.125 0.5625 0.175466 -0.132047 0.559357 0.319632 0.155921 1.3999 1.16643 0 0.473484 3.36961 0 -0.569783 -0.15625 0.5625 0.175457 -0.132095 0.559326 0.326839 0.168861 1.40968 1.18008 0 0.473484 3.36961 0 -0.569783 +0.125 0.5625 0.17553 -0.131871 0.563019 0.318971 0.180751 1.50166 1.16881 0 0.473484 3.36961 0 -0.569783 +0.15625 0.5625 0.175535 -0.131901 0.563293 0.326039 0.152262 1.51928 1.18272 0 0.473484 3.36961 0 -0.569783 -0.15625 0.53125 0.170052 -0.12805 0.597351 0.319244 0.156254 1.29765 1.22293 0 0.489683 3.36781 0 -0.58787 -0.1875 0.53125 0.170042 -0.128082 0.597168 0.326807 0.146667 1.30636 1.23757 0 0.489683 3.36781 0 -0.58787 +0.15625 0.53125 0.170134 -0.12785 0.601624 0.318254 0.165337 1.42013 1.22551 0 0.489683 3.36781 0 -0.58787 +0.1875 0.53125 0.17014 -0.127872 0.601654 0.325855 0.163457 1.40941 1.24022 0 0.489683 3.36781 0 -0.58787 -0.15625 0.5625 0.175457 -0.132095 0.559326 0.326839 0.168861 1.40968 1.18008 0 0.473484 3.36961 0 -0.569783 -0.1875 0.5625 0.175446 -0.132127 0.559326 0.334377 0.141537 1.35695 1.1944 0 0.473484 3.36961 0 -0.569783 +0.15625 0.5625 0.175535 -0.131901 0.563293 0.326049 0.152262 1.51928 1.18272 0 0.473484 3.36961 0 -0.569783 +0.1875 0.5625 0.17554 -0.131922 0.563293 0.333651 0.155976 1.49659 1.19725 0 0.473484 3.36961 0 -0.569783 -0.1875 0.5 0.164804 -0.124158 0.634888 0.319492 0.131932 1.24973 1.28083 0 0.505384 3.36607 0 -0.606531 -0.21875 0.5 0.164797 -0.124178 0.63504 0.326975 0.120657 1.2221 1.29611 0 0.505384 3.36607 0 -0.606531 +0.1875 0.5 0.164906 -0.123944 0.639771 0.318103 0.174825 1.31419 1.28298 0 0.505384 3.36607 0 -0.606531 +0.21875 0.5 0.164912 -0.12396 0.639771 0.325942 0.193188 1.29368 1.29876 0 0.505384 3.36607 0 -0.606531 -0.1875 0.53125 0.170042 -0.128082 0.597168 0.326807 0.146667 1.30636 1.23757 0 0.489683 3.36781 0 -0.58787 -0.21875 0.53125 0.170033 -0.128101 0.597504 0.334792 0.11075 1.29544 1.25355 0 0.489683 3.36781 0 -0.58787 +0.1875 0.53125 0.17014 -0.127872 0.601654 0.325934 0.163457 1.40941 1.24022 0 0.489683 3.36781 0 -0.58787 +0.21875 0.53125 0.170147 -0.127887 0.601715 0.333773 0.175676 1.39108 1.25581 0 0.489683 3.36781 0 -0.58787 -0.21875 0.5 0.164797 -0.124178 0.63504 0.326975 0.120657 1.2221 1.29611 0 0.505384 3.36607 0 -0.606531 -0.25 0.5 0.16479 -0.124187 0.635284 0.33506 0.101935 1.20135 1.3127 0 0.505384 3.36607 0 -0.606531 +0.21875 0.5 0.164912 -0.12396 0.639771 0.325905 0.193188 1.29368 1.29876 0 0.505384 3.36607 0 -0.606531 +0.25 0.5 0.164917 -0.123969 0.639435 0.334421 0.181753 1.29511 1.31522 0 0.505384 3.36607 0 -0.606531 -0.21875 0.53125 0.170033 -0.128101 0.597504 0.334792 0.11075 1.29544 1.25355 0 0.489683 3.36781 0 -0.58787 -0.25 0.53125 0.170027 -0.128111 0.597778 0.342867 0.106348 1.29299 1.26965 0 0.489683 3.36781 0 -0.58787 +0.21875 0.53125 0.170147 -0.127887 0.601715 0.33382 0.175676 1.39108 1.25581 0 0.489683 3.36781 0 -0.58787 +0.25 0.53125 0.170152 -0.127896 0.601624 0.342337 0.197224 1.369 1.27251 0 0.489683 3.36781 0 -0.58787 -0.1875 0.53125 0.170042 -0.128082 0.597168 0.326807 0.146667 1.30636 1.23757 0 0.489683 3.36781 0 -0.58787 -0.21875 0.53125 0.170033 -0.128101 0.597504 0.334792 0.11075 1.29544 1.25355 0 0.489683 3.36781 0 -0.58787 +0.1875 0.53125 0.17014 -0.127872 0.601654 0.325743 0.163457 1.40941 1.24022 0 0.489683 3.36781 0 -0.58787 +0.21875 0.53125 0.170147 -0.127887 0.601715 0.33377 0.175676 1.39108 1.25581 0 0.489683 3.36781 0 -0.58787 -0.1875 0.5625 0.175446 -0.132127 0.559326 0.334377 0.141537 1.35695 1.1944 0 0.473484 3.36961 0 -0.569783 -0.21875 0.5625 0.175436 -0.132145 0.559631 0.342462 0.117576 1.38777 1.21006 0 0.473484 3.36961 0 -0.569783 +0.1875 0.5625 0.17554 -0.131922 0.563293 0.333773 0.155976 1.49659 1.19725 0 0.473484 3.36961 0 -0.569783 +0.21875 0.5625 0.175546 -0.131937 0.563477 0.341799 0.165523 1.48827 1.21283 0 0.473484 3.36961 0 -0.569783 -0.21875 0.53125 0.170033 -0.128101 0.597504 0.334792 0.11075 1.29544 1.25355 0 0.489683 3.36781 0 -0.58787 -0.25 0.53125 0.170027 -0.128111 0.597778 0.342867 0.106348 1.29299 1.26965 0 0.489683 3.36781 0 -0.58787 +0.21875 0.53125 0.170147 -0.127887 0.601715 0.333664 0.175676 1.39108 1.25581 0 0.489683 3.36781 0 -0.58787 +0.25 0.53125 0.170152 -0.127896 0.601624 0.342338 0.197224 1.369 1.27251 0 0.489683 3.36781 0 -0.58787 -0.21875 0.5625 0.175436 -0.132145 0.559631 0.342462 0.117576 1.38777 1.21006 0 0.473484 3.36961 0 -0.569783 -0.25 0.5625 0.17543 -0.132155 0.559875 0.351217 0.112363 1.39433 1.22693 0 0.473484 3.36961 0 -0.569783 +0.21875 0.5625 0.175546 -0.131937 0.563477 0.341872 0.165523 1.48827 1.21283 0 0.473484 3.36961 0 -0.569783 +0.25 0.5625 0.175551 -0.131946 0.563416 0.350547 0.191033 1.47378 1.22944 0 0.473484 3.36961 0 -0.569783 -0.125 0.5625 0.175466 -0.132047 0.559357 0.319632 0.155921 1.3999 1.16643 0 0.473484 3.36961 0 -0.569783 -0.15625 0.5625 0.175457 -0.132095 0.559326 0.326839 0.168861 1.40968 1.18008 0 0.473484 3.36961 0 -0.569783 +0.125 0.5625 0.17553 -0.131871 0.563019 0.318749 0.180751 1.50166 1.16881 0 0.473484 3.36961 0 -0.569783 +0.15625 0.5625 0.175535 -0.131901 0.563293 0.326064 0.152262 1.51928 1.18272 0 0.473484 3.36961 0 -0.569783 -0.125 0.59375 0.18104 -0.136219 0.521179 0.327127 0.146685 1.54342 1.12337 0 0.45677 3.37147 0 -0.552252 -0.15625 0.59375 0.18103 -0.136265 0.521271 0.334448 0.125084 1.50907 1.13694 0 0.45677 3.37147 0 -0.552252 +0.125 0.59375 0.181104 -0.13605 0.52478 0.326503 0.204759 1.57759 1.1258 0 0.45677 3.37147 0 -0.552252 +0.15625 0.59375 0.181108 -0.13608 0.524658 0.333818 0.172749 1.62845 1.13977 0 0.45677 3.37147 0 -0.552252 -0.15625 0.5625 0.175457 -0.132095 0.559326 0.326839 0.168861 1.40968 1.18008 0 0.473484 3.36961 0 -0.569783 -0.1875 0.5625 0.175446 -0.132127 0.559326 0.334377 0.141537 1.35695 1.1944 0 0.473484 3.36961 0 -0.569783 +0.15625 0.5625 0.175535 -0.131901 0.563293 0.32592 0.152262 1.51928 1.18272 0 0.473484 3.36961 0 -0.569783 +0.1875 0.5625 0.17554 -0.131922 0.563293 0.333672 0.155976 1.49659 1.19725 0 0.473484 3.36961 0 -0.569783 -0.15625 0.59375 0.18103 -0.136265 0.521271 0.334448 0.125084 1.50907 1.13694 0 0.45677 3.37147 0 -0.552252 -0.1875 0.59375 0.181021 -0.136295 0.521729 0.342127 0.139182 1.47352 1.15153 0 0.45677 3.37147 0 -0.552252 +0.15625 0.59375 0.181108 -0.13608 0.524658 0.333967 0.172749 1.62845 1.13977 0 0.45677 3.37147 0 -0.552252 +0.1875 0.59375 0.181112 -0.1361 0.524872 0.341718 0.150447 1.58849 1.1543 0 0.45677 3.37147 0 -0.552252 -0.125 0.59375 0.18104 -0.136219 0.521179 0.327127 0.146685 1.54342 1.12337 0 0.45677 3.37147 0 -0.552252 -0.15625 0.59375 0.18103 -0.136265 0.521271 0.334448 0.125084 1.50907 1.13694 0 0.45677 3.37147 0 -0.552252 +0.125 0.59375 0.181104 -0.13605 0.52478 0.326184 0.204759 1.57759 1.1258 0 0.45677 3.37147 0 -0.552252 +0.15625 0.59375 0.181108 -0.13608 0.524658 0.33395 0.172749 1.62845 1.13977 0 0.45677 3.37147 0 -0.552252 -0.125 0.625 0.186791 -0.14052 0.482574 0.334974 0.132045 1.66911 1.08024 0 0.439526 3.37339 0 -0.535261 -0.15625 0.625 0.18678 -0.140564 0.48291 0.342425 0.110211 1.62518 1.09387 0 0.439526 3.37339 0 -0.535261 +0.125 0.625 0.186853 -0.140359 0.486115 0.334192 0.23341 1.69543 1.08283 0 0.439526 3.37339 0 -0.535261 +0.15625 0.625 0.186857 -0.140389 0.485779 0.341958 0.173847 1.6962 1.09645 0 0.439526 3.37339 0 -0.535261 -0.15625 0.59375 0.18103 -0.136265 0.521271 0.334448 0.125084 1.50907 1.13694 0 0.45677 3.37147 0 -0.552252 -0.1875 0.59375 0.181021 -0.136295 0.521729 0.342127 0.139182 1.47352 1.15153 0 0.45677 3.37147 0 -0.552252 +0.15625 0.59375 0.181108 -0.13608 0.524658 0.333832 0.172749 1.62845 1.13977 0 0.45677 3.37147 0 -0.552252 +0.1875 0.59375 0.181112 -0.1361 0.524872 0.341665 0.150447 1.58849 1.1543 0 0.45677 3.37147 0 -0.552252 -0.15625 0.625 0.18678 -0.140564 0.48291 0.342425 0.110211 1.62518 1.09387 0 0.439526 3.37339 0 -0.535261 -0.1875 0.625 0.186771 -0.140592 0.483246 0.350479 0.111888 1.62831 1.10857 0 0.439526 3.37339 0 -0.535261 +0.15625 0.625 0.186857 -0.140389 0.485779 0.342105 0.173847 1.6962 1.09645 0 0.439526 3.37339 0 -0.535261 +0.1875 0.625 0.186861 -0.140409 0.486237 0.349938 0.122302 1.69585 1.11097 0 0.439526 3.37339 0 -0.535261 -0.1875 0.5625 0.175446 -0.132127 0.559326 0.334377 0.141537 1.35695 1.1944 0 0.473484 3.36961 0 -0.569783 -0.21875 0.5625 0.175436 -0.132145 0.559631 0.342462 0.117576 1.38777 1.21006 0 0.473484 3.36961 0 -0.569783 +0.1875 0.5625 0.17554 -0.131922 0.563293 0.333567 0.155976 1.49659 1.19725 0 0.473484 3.36961 0 -0.569783 +0.21875 0.5625 0.175546 -0.131937 0.563477 0.341819 0.165523 1.48827 1.21283 0 0.473484 3.36961 0 -0.569783 -0.1875 0.59375 0.181021 -0.136295 0.521729 0.342127 0.139182 1.47352 1.15153 0 0.45677 3.37147 0 -0.552252 -0.21875 0.59375 0.181012 -0.136313 0.521637 0.350639 0.158925 1.47799 1.16711 0 0.45677 3.37147 0 -0.552252 +0.1875 0.59375 0.181112 -0.1361 0.524872 0.341793 0.150447 1.58849 1.1543 0 0.45677 3.37147 0 -0.552252 +0.21875 0.59375 0.181117 -0.136114 0.524994 0.350045 0.165193 1.58328 1.16975 0 0.45677 3.37147 0 -0.552252 -0.21875 0.5625 0.175436 -0.132145 0.559631 0.342462 0.117576 1.38777 1.21006 0 0.473484 3.36961 0 -0.569783 -0.25 0.5625 0.17543 -0.132155 0.559875 0.351217 0.112363 1.39433 1.22693 0 0.473484 3.36961 0 -0.569783 +0.21875 0.5625 0.175546 -0.131937 0.563477 0.34167 0.165523 1.48827 1.21283 0 0.473484 3.36961 0 -0.569783 +0.25 0.5625 0.175551 -0.131946 0.563416 0.350561 0.191033 1.47378 1.22944 0 0.473484 3.36961 0 -0.569783 -0.21875 0.59375 0.181012 -0.136313 0.521637 0.350639 0.158925 1.47799 1.16711 0 0.45677 3.37147 0 -0.552252 -0.25 0.59375 0.181004 -0.136321 0.52179 0.359434 0.11918 1.46476 1.18345 0 0.45677 3.37147 0 -0.552252 +0.21875 0.59375 0.181117 -0.136114 0.524994 0.350139 0.165193 1.58328 1.16975 0 0.45677 3.37147 0 -0.552252 +0.25 0.59375 0.181122 -0.136122 0.525024 0.359031 0.188698 1.5746 1.18629 0 0.45677 3.37147 0 -0.552252 -0.1875 0.59375 0.181021 -0.136295 0.521729 0.342127 0.139182 1.47352 1.15153 0 0.45677 3.37147 0 -0.552252 -0.21875 0.59375 0.181012 -0.136313 0.521637 0.350639 0.158925 1.47799 1.16711 0 0.45677 3.37147 0 -0.552252 +0.1875 0.59375 0.181112 -0.1361 0.524872 0.341599 0.150447 1.58849 1.1543 0 0.45677 3.37147 0 -0.552252 +0.21875 0.59375 0.181117 -0.136114 0.524994 0.350065 0.165193 1.58328 1.16975 0 0.45677 3.37147 0 -0.552252 -0.1875 0.625 0.186771 -0.140592 0.483246 0.350479 0.111888 1.62831 1.10857 0 0.439526 3.37339 0 -0.535261 -0.21875 0.625 0.186763 -0.140609 0.483521 0.358835 0.113833 1.60313 1.12375 0 0.439526 3.37339 0 -0.535261 +0.1875 0.625 0.186861 -0.140409 0.486237 0.34996 0.122302 1.69585 1.11097 0 0.439526 3.37339 0 -0.535261 +0.21875 0.625 0.186866 -0.140421 0.486481 0.358426 0.157573 1.70347 1.12656 0 0.439526 3.37339 0 -0.535261 -0.21875 0.59375 0.181012 -0.136313 0.521637 0.350639 0.158925 1.47799 1.16711 0 0.45677 3.37147 0 -0.552252 -0.25 0.59375 0.181004 -0.136321 0.52179 0.359434 0.11918 1.46476 1.18345 0 0.45677 3.37147 0 -0.552252 +0.21875 0.59375 0.181117 -0.136114 0.524994 0.34992 0.165193 1.58328 1.16975 0 0.45677 3.37147 0 -0.552252 +0.25 0.59375 0.181122 -0.136122 0.525024 0.359066 0.188698 1.5746 1.18629 0 0.45677 3.37147 0 -0.552252 -0.21875 0.625 0.186763 -0.140609 0.483521 0.358835 0.113833 1.60313 1.12375 0 0.439526 3.37339 0 -0.535261 -0.25 0.625 0.186755 -0.140618 0.483856 0.368013 0.123859 1.55799 1.14047 0 0.439526 3.37339 0 -0.535261 +0.21875 0.625 0.186866 -0.140421 0.486481 0.358557 0.157573 1.70347 1.12656 0 0.439526 3.37339 0 -0.535261 +0.25 0.625 0.18687 -0.140428 0.486511 0.367703 0.210484 1.70837 1.14326 0 0.439526 3.37339 0 -0.535261 -0 0.625 0.186825 -0.140118 0.482483 0.308771 0.19548 1.63442 1.03339 0 0.439526 3.37339 0 -0.535261 -0.03125 0.625 0.186819 -0.140263 0.482452 0.314675 0.197808 1.61168 1.0439 0 0.439526 3.37339 0 -0.535261 +0 0.625 0.186825 -0.140118 0.486298 0.307417 0.186878 1.7201 1.03547 0 0.439526 3.37339 0 -0.535261 +0.03125 0.625 0.186833 -0.140202 0.486298 0.313512 0.187085 1.7178 1.04618 0 0.439526 3.37339 0 -0.535261 -0 0.65625 0.192755 -0.144566 0.443787 0.316088 0.142561 1.77245 0.990401 0 0.421735 3.37536 0 -0.518793 -0.03125 0.65625 0.192751 -0.144705 0.444122 0.322221 0.214088 1.77896 1.00134 0 0.421735 3.37536 0 -0.518793 +0 0.65625 0.192755 -0.144566 0.447388 0.314822 0.194979 1.90231 0.992475 0 0.421735 3.37536 0 -0.518793 +0.03125 0.65625 0.192765 -0.144649 0.447388 0.320917 0.200592 1.855 1.00299 0 0.421735 3.37536 0 -0.518793 -0.03125 0.625 0.186819 -0.140263 0.482452 0.314675 0.197808 1.61168 1.0439 0 0.439526 3.37339 0 -0.535261 -0.0625 0.625 0.186811 -0.140373 0.482361 0.321188 0.184132 1.6782 1.05543 0 0.439526 3.37339 0 -0.535261 +0.03125 0.625 0.186833 -0.140202 0.486298 0.313412 0.187085 1.7178 1.04618 0 0.439526 3.37339 0 -0.535261 +0.0625 0.625 0.186841 -0.140268 0.486298 0.319933 0.188239 1.7241 1.05759 0 0.439526 3.37339 0 -0.535261 -0.03125 0.65625 0.192751 -0.144705 0.444122 0.322221 0.214088 1.77896 1.00134 0 0.421735 3.37536 0 -0.518793 -0.0625 0.65625 0.192743 -0.144813 0.443451 0.328979 0.199032 1.76922 1.01236 0 0.421735 3.37536 0 -0.518793 +0.03125 0.65625 0.192765 -0.144649 0.447388 0.321018 0.200592 1.855 1.00299 0 0.421735 3.37536 0 -0.518793 +0.0625 0.65625 0.192773 -0.144714 0.447327 0.327539 0.206984 1.87128 1.01446 0 0.421735 3.37536 0 -0.518793 -0 0.65625 0.192755 -0.144566 0.443787 0.316088 0.142561 1.77245 0.990401 0 0.421735 3.37536 0 -0.518793 -0.03125 0.65625 0.192751 -0.144705 0.444122 0.322221 0.214088 1.77896 1.00134 0 0.421735 3.37536 0 -0.518793 +0 0.65625 0.192755 -0.144566 0.447388 0.314723 0.194979 1.90231 0.992475 0 0.421735 3.37536 0 -0.518793 +0.03125 0.65625 0.192765 -0.144649 0.447388 0.320855 0.200592 1.855 1.00299 0 0.421735 3.37536 0 -0.518793 -0 0.6875 0.198874 -0.149155 0.405029 0.323362 0.224482 1.92924 0.947018 0 0.403379 3.3774 0 -0.502832 -0.03125 0.6875 0.198875 -0.149286 0.404907 0.32967 0.210313 1.95391 0.95747 0 0.403379 3.3774 0 -0.502832 +0 0.6875 0.198874 -0.149155 0.407745 0.322499 0.0905417 2.03482 0.948961 0 0.403379 3.3774 0 -0.502832 +0.03125 0.6875 0.198883 -0.149237 0.408264 0.328631 0.152464 2.0253 0.959883 0 0.403379 3.3774 0 -0.502832 -0.03125 0.65625 0.192751 -0.144705 0.444122 0.322221 0.214088 1.77896 1.00134 0 0.421735 3.37536 0 -0.518793 -0.0625 0.65625 0.192743 -0.144813 0.443451 0.328979 0.199032 1.76922 1.01236 0 0.421735 3.37536 0 -0.518793 +0.03125 0.65625 0.192765 -0.144649 0.447388 0.320797 0.200592 1.855 1.00299 0 0.421735 3.37536 0 -0.518793 +0.0625 0.65625 0.192773 -0.144714 0.447327 0.327559 0.206984 1.87128 1.01446 0 0.421735 3.37536 0 -0.518793 -0.03125 0.6875 0.198875 -0.149286 0.404907 0.32967 0.210313 1.95391 0.95747 0 0.403379 3.3774 0 -0.502832 -0.0625 0.6875 0.19887 -0.149391 0.404938 0.336454 0.192837 1.87755 0.968869 0 0.403379 3.3774 0 -0.502832 +0.03125 0.6875 0.198883 -0.149237 0.408264 0.328651 0.152464 2.0253 0.959883 0 0.403379 3.3774 0 -0.502832 +0.0625 0.6875 0.198892 -0.1493 0.408051 0.335412 0.193157 2.00641 0.971216 0 0.403379 3.3774 0 -0.502832 -0.0625 0.625 0.186811 -0.140373 0.482361 0.321188 0.184132 1.6782 1.05543 0 0.439526 3.37339 0 -0.535261 -0.09375 0.625 0.186802 -0.140458 0.482452 0.327836 0.15974 1.64689 1.06738 0 0.439526 3.37339 0 -0.535261 +0.0625 0.625 0.186841 -0.140268 0.486298 0.3198 0.188239 1.7241 1.05759 0 0.439526 3.37339 0 -0.535261 +0.09375 0.625 0.186848 -0.14032 0.486328 0.326738 0.209749 1.72743 1.06984 0 0.439526 3.37339 0 -0.535261 -0.0625 0.65625 0.192743 -0.144813 0.443451 0.328979 0.199032 1.76922 1.01236 0 0.421735 3.37536 0 -0.518793 -0.09375 0.65625 0.192734 -0.144895 0.444 0.335505 0.146617 1.77828 1.02419 0 0.421735 3.37536 0 -0.518793 +0.0625 0.65625 0.192773 -0.144714 0.447327 0.327635 0.206984 1.87128 1.01446 0 0.421735 3.37536 0 -0.518793 +0.09375 0.65625 0.192779 -0.144764 0.447235 0.334573 0.191832 1.86163 1.02664 0 0.421735 3.37536 0 -0.518793 -0.09375 0.625 0.186802 -0.140458 0.482452 0.327836 0.15974 1.64689 1.06738 0 0.439526 3.37339 0 -0.535261 -0.125 0.625 0.186791 -0.14052 0.482574 0.334974 0.132045 1.66911 1.08024 0 0.439526 3.37339 0 -0.535261 +0.09375 0.625 0.186848 -0.14032 0.486328 0.326639 0.209749 1.72743 1.06984 0 0.439526 3.37339 0 -0.535261 +0.125 0.625 0.186853 -0.140359 0.486115 0.334032 0.23341 1.69543 1.08283 0 0.439526 3.37339 0 -0.535261 -0.09375 0.65625 0.192734 -0.144895 0.444 0.335505 0.146617 1.77828 1.02419 0 0.421735 3.37536 0 -0.518793 -0.125 0.65625 0.192725 -0.144954 0.443878 0.343102 0.12856 1.77195 1.03721 0 0.421735 3.37536 0 -0.518793 +0.09375 0.65625 0.192779 -0.144764 0.447235 0.33465 0.191832 1.86163 1.02664 0 0.421735 3.37536 0 -0.518793 +0.125 0.65625 0.192785 -0.144803 0.447357 0.342044 0.189688 1.81997 1.03954 0 0.421735 3.37536 0 -0.518793 -0.0625 0.65625 0.192743 -0.144813 0.443451 0.328979 0.199032 1.76922 1.01236 0 0.421735 3.37536 0 -0.518793 -0.09375 0.65625 0.192734 -0.144895 0.444 0.335505 0.146617 1.77828 1.02419 0 0.421735 3.37536 0 -0.518793 +0.0625 0.65625 0.192773 -0.144714 0.447327 0.327452 0.206984 1.87128 1.01446 0 0.421735 3.37536 0 -0.518793 +0.09375 0.65625 0.192779 -0.144764 0.447235 0.33456 0.191832 1.86163 1.02664 0 0.421735 3.37536 0 -0.518793 -0.0625 0.6875 0.19887 -0.149391 0.404938 0.336454 0.192837 1.87755 0.968869 0 0.403379 3.3774 0 -0.502832 -0.09375 0.6875 0.198861 -0.149468 0.404938 0.343588 0.167578 1.92793 0.980827 0 0.403379 3.3774 0 -0.502832 +0.0625 0.6875 0.198892 -0.1493 0.408051 0.335512 0.193157 2.00641 0.971216 0 0.403379 3.3774 0 -0.502832 +0.09375 0.6875 0.198899 -0.149349 0.408173 0.34262 0.162493 1.9961 0.983322 0 0.403379 3.3774 0 -0.502832 -0.09375 0.65625 0.192734 -0.144895 0.444 0.335505 0.146617 1.77828 1.02419 0 0.421735 3.37536 0 -0.518793 -0.125 0.65625 0.192725 -0.144954 0.443878 0.343102 0.12856 1.77195 1.03721 0 0.421735 3.37536 0 -0.518793 +0.09375 0.65625 0.192779 -0.144764 0.447235 0.334537 0.191832 1.86163 1.02664 0 0.421735 3.37536 0 -0.518793 +0.125 0.65625 0.192785 -0.144803 0.447357 0.341993 0.189688 1.81997 1.03954 0 0.421735 3.37536 0 -0.518793 -0.09375 0.6875 0.198861 -0.149468 0.404938 0.343588 0.167578 1.92793 0.980827 0 0.403379 3.3774 0 -0.502832 -0.125 0.6875 0.19885 -0.149524 0.405182 0.351146 0.147999 1.92364 0.99374 0 0.403379 3.3774 0 -0.502832 +0.09375 0.6875 0.198899 -0.149349 0.408173 0.342664 0.162493 1.9961 0.983322 0 0.403379 3.3774 0 -0.502832 +0.125 0.6875 0.198905 -0.149385 0.408386 0.350119 0.166604 1.99457 0.996253 0 0.403379 3.3774 0 -0.502832 -0 0.6875 0.198874 -0.149155 0.405029 0.323362 0.224482 1.92924 0.947018 0 0.403379 3.3774 0 -0.502832 -0.03125 0.6875 0.198875 -0.149286 0.404907 0.32967 0.210313 1.95391 0.95747 0 0.403379 3.3774 0 -0.502832 +0 0.6875 0.198874 -0.149155 0.407745 0.322308 0.0905417 2.03482 0.948961 0 0.403379 3.3774 0 -0.502832 +0.03125 0.6875 0.198883 -0.149237 0.408264 0.328595 0.152464 2.0253 0.959883 0 0.403379 3.3774 0 -0.502832 -0 0.71875 0.205187 -0.15389 0.365784 0.331023 0.186128 2.11032 0.903543 0 0.38444 3.37951 0 -0.487361 -0.03125 0.71875 0.20519 -0.154016 0.365845 0.337556 0.182347 2.09732 0.914217 0 0.38444 3.37951 0 -0.487361 +0 0.71875 0.205187 -0.15389 0.368591 0.330186 0.172984 2.16876 0.905692 0 0.38444 3.37951 0 -0.487361 +0.03125 0.71875 0.205197 -0.15397 0.368713 0.336472 0.176376 2.21324 0.916466 0 0.38444 3.37951 0 -0.487361 -0.03125 0.6875 0.198875 -0.149286 0.404907 0.32967 0.210313 1.95391 0.95747 0 0.403379 3.3774 0 -0.502832 -0.0625 0.6875 0.19887 -0.149391 0.404938 0.336454 0.192837 1.87755 0.968869 0 0.403379 3.3774 0 -0.502832 +0.03125 0.6875 0.198883 -0.149237 0.408264 0.328504 0.152464 2.0253 0.959883 0 0.403379 3.3774 0 -0.502832 +0.0625 0.6875 0.198892 -0.1493 0.408051 0.335448 0.193157 2.00641 0.971216 0 0.403379 3.3774 0 -0.502832 -0.03125 0.71875 0.20519 -0.154016 0.365845 0.337556 0.182347 2.09732 0.914217 0 0.38444 3.37951 0 -0.487361 -0.0625 0.71875 0.205188 -0.154114 0.365967 0.344357 0.190186 2.08156 0.925387 0 0.38444 3.37951 0 -0.487361 +0.03125 0.71875 0.205197 -0.15397 0.368713 0.336567 0.176376 2.21324 0.916466 0 0.38444 3.37951 0 -0.487361 +0.0625 0.71875 0.205206 -0.154031 0.368805 0.343512 0.184913 2.17148 0.927769 0 0.38444 3.37951 0 -0.487361 -0 0.71875 0.205187 -0.15389 0.365784 0.331023 0.186128 2.11032 0.903543 0 0.38444 3.37951 0 -0.487361 -0.03125 0.71875 0.20519 -0.154016 0.365845 0.337556 0.182347 2.09732 0.914217 0 0.38444 3.37951 0 -0.487361 +0 0.71875 0.205187 -0.15389 0.368591 0.329907 0.172984 2.16876 0.905692 0 0.38444 3.37951 0 -0.487361 +0.03125 0.71875 0.205197 -0.15397 0.368713 0.336513 0.176376 2.21324 0.916466 0 0.38444 3.37951 0 -0.487361 -0 0.75 0.2117 -0.158775 0.326416 0.338904 0.195207 2.2995 0.860039 0 0.3649 3.38168 0 -0.472367 -0.03125 0.75 0.211706 -0.158894 0.326477 0.345586 0.198425 2.30281 0.870621 0 0.3649 3.38168 0 -0.472367 +0 0.75 0.2117 -0.158775 0.328888 0.338063 0.188031 2.37299 0.862071 0 0.3649 3.38168 0 -0.472367 +0.03125 0.75 0.211712 -0.158852 0.328949 0.34467 0.176377 2.39666 0.87271 0 0.3649 3.38168 0 -0.472367 -0.03125 0.71875 0.20519 -0.154016 0.365845 0.337556 0.182347 2.09732 0.914217 0 0.38444 3.37951 0 -0.487361 -0.0625 0.71875 0.205188 -0.154114 0.365967 0.344357 0.190186 2.08156 0.925387 0 0.38444 3.37951 0 -0.487361 +0.03125 0.71875 0.205197 -0.15397 0.368713 0.336449 0.176376 2.21324 0.916466 0 0.38444 3.37951 0 -0.487361 +0.0625 0.71875 0.205206 -0.154031 0.368805 0.343435 0.184913 2.17148 0.927769 0 0.38444 3.37951 0 -0.487361 -0.03125 0.75 0.211706 -0.158894 0.326477 0.345586 0.198425 2.30281 0.870621 0 0.3649 3.38168 0 -0.472367 -0.0625 0.75 0.211707 -0.158984 0.326477 0.352766 0.18474 2.27091 0.881927 0 0.3649 3.38168 0 -0.472367 +0.03125 0.75 0.211712 -0.158852 0.328949 0.34478 0.176377 2.39666 0.87271 0 0.3649 3.38168 0 -0.472367 +0.0625 0.75 0.211721 -0.15891 0.329163 0.351766 0.185767 2.40323 0.884218 0 0.3649 3.38168 0 -0.472367 -0.0625 0.6875 0.19887 -0.149391 0.404938 0.336454 0.192837 1.87755 0.968869 0 0.403379 3.3774 0 -0.502832 -0.09375 0.6875 0.198861 -0.149468 0.404938 0.343588 0.167578 1.92793 0.980827 0 0.403379 3.3774 0 -0.502832 +0.0625 0.6875 0.198892 -0.1493 0.408051 0.33538 0.193157 2.00641 0.971216 0 0.403379 3.3774 0 -0.502832 +0.09375 0.6875 0.198899 -0.149349 0.408173 0.342671 0.162493 1.9961 0.983322 0 0.403379 3.3774 0 -0.502832 -0.0625 0.71875 0.205188 -0.154114 0.365967 0.344357 0.190186 2.08156 0.925387 0 0.38444 3.37951 0 -0.487361 -0.09375 0.71875 0.205182 -0.154187 0.365967 0.351772 0.20669 2.07425 0.937433 0 0.38444 3.37951 0 -0.487361 +0.0625 0.71875 0.205206 -0.154031 0.368805 0.343551 0.184913 2.17148 0.927769 0 0.38444 3.37951 0 -0.487361 +0.09375 0.71875 0.205213 -0.154077 0.368835 0.350841 0.181902 2.18106 0.939855 0 0.38444 3.37951 0 -0.487361 -0.09375 0.6875 0.198861 -0.149468 0.404938 0.343588 0.167578 1.92793 0.980827 0 0.403379 3.3774 0 -0.502832 -0.125 0.6875 0.19885 -0.149524 0.405182 0.351146 0.147999 1.92364 0.99374 0 0.403379 3.3774 0 -0.502832 +0.09375 0.6875 0.198899 -0.149349 0.408173 0.342517 0.162493 1.9961 0.983322 0 0.403379 3.3774 0 -0.502832 +0.125 0.6875 0.198905 -0.149385 0.408386 0.350229 0.166604 1.99457 0.996253 0 0.403379 3.3774 0 -0.502832 -0.09375 0.71875 0.205182 -0.154187 0.365967 0.351772 0.20669 2.07425 0.937433 0 0.38444 3.37951 0 -0.487361 -0.125 0.71875 0.205173 -0.154238 0.365845 0.359725 0.160598 2.06429 0.950231 0 0.38444 3.37951 0 -0.487361 +0.09375 0.71875 0.205213 -0.154077 0.368835 0.350979 0.181902 2.18106 0.939855 0 0.38444 3.37951 0 -0.487361 +0.125 0.71875 0.205219 -0.15411 0.368927 0.358692 0.153952 2.19466 0.952602 0 0.38444 3.37951 0 -0.487361 -0.0625 0.71875 0.205188 -0.154114 0.365967 0.344357 0.190186 2.08156 0.925387 0 0.38444 3.37951 0 -0.487361 -0.09375 0.71875 0.205182 -0.154187 0.365967 0.351772 0.20669 2.07425 0.937433 0 0.38444 3.37951 0 -0.487361 +0.0625 0.71875 0.205206 -0.154031 0.368805 0.343336 0.184913 2.17148 0.927769 0 0.38444 3.37951 0 -0.487361 +0.09375 0.71875 0.205213 -0.154077 0.368835 0.350862 0.181902 2.18106 0.939855 0 0.38444 3.37951 0 -0.487361 -0.0625 0.75 0.211707 -0.158984 0.326477 0.352766 0.18474 2.27091 0.881927 0 0.3649 3.38168 0 -0.472367 -0.09375 0.75 0.211702 -0.159052 0.32663 0.360229 0.153707 2.2605 0.89383 0 0.3649 3.38168 0 -0.472367 +0.0625 0.75 0.211721 -0.15891 0.329163 0.351856 0.185767 2.40323 0.884218 0 0.3649 3.38168 0 -0.472367 +0.09375 0.75 0.211729 -0.158953 0.329132 0.359382 0.200521 2.38574 0.896242 0 0.3649 3.38168 0 -0.472367 -0.09375 0.71875 0.205182 -0.154187 0.365967 0.351772 0.20669 2.07425 0.937433 0 0.38444 3.37951 0 -0.487361 -0.125 0.71875 0.205173 -0.154238 0.365845 0.359725 0.160598 2.06429 0.950231 0 0.38444 3.37951 0 -0.487361 +0.09375 0.71875 0.205213 -0.154077 0.368835 0.350741 0.181902 2.18106 0.939855 0 0.38444 3.37951 0 -0.487361 +0.125 0.71875 0.205219 -0.15411 0.368927 0.358722 0.153952 2.19466 0.952602 0 0.38444 3.37951 0 -0.487361 -0.09375 0.75 0.211702 -0.159052 0.32663 0.360229 0.153707 2.2605 0.89383 0 0.3649 3.38168 0 -0.472367 -0.125 0.75 0.211694 -0.159097 0.326935 0.368157 0.162152 2.22816 0.906619 0 0.3649 3.38168 0 -0.472367 +0.09375 0.75 0.211729 -0.158953 0.329132 0.35956 0.200521 2.38574 0.896242 0 0.3649 3.38168 0 -0.472367 +0.125 0.75 0.211733 -0.158984 0.329224 0.367541 0.206893 2.40198 0.909185 0 0.3649 3.38168 0 -0.472367 -0.125 0.625 0.186791 -0.14052 0.482574 0.334974 0.132045 1.66911 1.08024 0 0.439526 3.37339 0 -0.535261 -0.15625 0.625 0.18678 -0.140564 0.48291 0.342425 0.110211 1.62518 1.09387 0 0.439526 3.37339 0 -0.535261 +0.125 0.625 0.186853 -0.140359 0.486115 0.33403 0.23341 1.69543 1.08283 0 0.439526 3.37339 0 -0.535261 +0.15625 0.625 0.186857 -0.140389 0.485779 0.342037 0.173847 1.6962 1.09645 0 0.439526 3.37339 0 -0.535261 -0.125 0.65625 0.192725 -0.144954 0.443878 0.343102 0.12856 1.77195 1.03721 0 0.421735 3.37536 0 -0.518793 -0.15625 0.65625 0.192714 -0.144995 0.444458 0.350633 0.0883111 1.78249 1.05081 0 0.421735 3.37536 0 -0.518793 +0.125 0.65625 0.192785 -0.144803 0.447357 0.342036 0.189688 1.81997 1.03954 0 0.421735 3.37536 0 -0.518793 +0.15625 0.65625 0.192789 -0.144831 0.447235 0.350043 0.176955 1.77806 1.05313 0 0.421735 3.37536 0 -0.518793 -0.15625 0.625 0.18678 -0.140564 0.48291 0.342425 0.110211 1.62518 1.09387 0 0.439526 3.37339 0 -0.535261 -0.1875 0.625 0.186771 -0.140592 0.483246 0.350479 0.111888 1.62831 1.10857 0 0.439526 3.37339 0 -0.535261 +0.15625 0.625 0.186857 -0.140389 0.485779 0.341844 0.173847 1.6962 1.09645 0 0.439526 3.37339 0 -0.535261 +0.1875 0.625 0.186861 -0.140409 0.486237 0.349911 0.122302 1.69585 1.11097 0 0.439526 3.37339 0 -0.535261 -0.15625 0.65625 0.192714 -0.144995 0.444458 0.350633 0.0883111 1.78249 1.05081 0 0.421735 3.37536 0 -0.518793 -0.1875 0.65625 0.192704 -0.14502 0.444824 0.358727 0.11501 1.79048 1.06517 0 0.421735 3.37536 0 -0.518793 +0.15625 0.65625 0.192789 -0.144831 0.447235 0.350135 0.176955 1.77806 1.05313 0 0.421735 3.37536 0 -0.518793 +0.1875 0.65625 0.192792 -0.144851 0.447479 0.358201 0.163389 1.82646 1.06775 0 0.421735 3.37536 0 -0.518793 -0.125 0.65625 0.192725 -0.144954 0.443878 0.343102 0.12856 1.77195 1.03721 0 0.421735 3.37536 0 -0.518793 -0.15625 0.65625 0.192714 -0.144995 0.444458 0.350633 0.0883111 1.78249 1.05081 0 0.421735 3.37536 0 -0.518793 +0.125 0.65625 0.192785 -0.144803 0.447357 0.341918 0.189688 1.81997 1.03954 0 0.421735 3.37536 0 -0.518793 +0.15625 0.65625 0.192789 -0.144831 0.447235 0.350013 0.176955 1.77806 1.05313 0 0.421735 3.37536 0 -0.518793 -0.125 0.6875 0.19885 -0.149524 0.405182 0.351146 0.147999 1.92364 0.99374 0 0.403379 3.3774 0 -0.502832 -0.15625 0.6875 0.198841 -0.149562 0.405334 0.359059 0.137607 1.94478 1.00715 0 0.403379 3.3774 0 -0.502832 +0.125 0.6875 0.198905 -0.149385 0.408386 0.350227 0.166604 1.99457 0.996253 0 0.403379 3.3774 0 -0.502832 +0.15625 0.6875 0.198908 -0.149411 0.408447 0.358322 0.190133 1.94547 1.00974 0 0.403379 3.3774 0 -0.502832 -0.15625 0.65625 0.192714 -0.144995 0.444458 0.350633 0.0883111 1.78249 1.05081 0 0.421735 3.37536 0 -0.518793 -0.1875 0.65625 0.192704 -0.14502 0.444824 0.358727 0.11501 1.79048 1.06517 0 0.421735 3.37536 0 -0.518793 +0.15625 0.65625 0.192789 -0.144831 0.447235 0.349833 0.176955 1.77806 1.05313 0 0.421735 3.37536 0 -0.518793 +0.1875 0.65625 0.192792 -0.144851 0.447479 0.358348 0.163389 1.82646 1.06775 0 0.421735 3.37536 0 -0.518793 -0.15625 0.6875 0.198841 -0.149562 0.405334 0.359059 0.137607 1.94478 1.00715 0 0.403379 3.3774 0 -0.502832 -0.1875 0.6875 0.19883 -0.149585 0.405579 0.367668 0.0949056 1.94457 1.02183 0 0.403379 3.3774 0 -0.502832 +0.15625 0.6875 0.198908 -0.149411 0.408447 0.358396 0.190133 1.94547 1.00974 0 0.403379 3.3774 0 -0.502832 +0.1875 0.6875 0.198912 -0.14943 0.408417 0.36691 0.195257 1.98535 1.02441 0 0.403379 3.3774 0 -0.502832 -0.1875 0.625 0.186771 -0.140592 0.483246 0.350479 0.111888 1.62831 1.10857 0 0.439526 3.37339 0 -0.535261 -0.21875 0.625 0.186763 -0.140609 0.483521 0.358835 0.113833 1.60313 1.12375 0 0.439526 3.37339 0 -0.535261 +0.1875 0.625 0.186861 -0.140409 0.486237 0.349717 0.122302 1.69585 1.11097 0 0.439526 3.37339 0 -0.535261 +0.21875 0.625 0.186866 -0.140421 0.486481 0.358463 0.157573 1.70347 1.12656 0 0.439526 3.37339 0 -0.535261 -0.1875 0.65625 0.192704 -0.14502 0.444824 0.358727 0.11501 1.79048 1.06517 0 0.421735 3.37536 0 -0.518793 -0.21875 0.65625 0.192695 -0.145035 0.444977 0.367452 0.0966852 1.75967 1.08042 0 0.421735 3.37536 0 -0.518793 +0.1875 0.65625 0.192792 -0.144851 0.447479 0.35842 0.163389 1.82646 1.06775 0 0.421735 3.37536 0 -0.518793 +0.21875 0.65625 0.192797 -0.144862 0.44754 0.367166 0.187389 1.84441 1.08332 0 0.421735 3.37536 0 -0.518793 -0.21875 0.625 0.186763 -0.140609 0.483521 0.358835 0.113833 1.60313 1.12375 0 0.439526 3.37339 0 -0.535261 -0.25 0.625 0.186755 -0.140618 0.483856 0.368013 0.123859 1.55799 1.14047 0 0.439526 3.37339 0 -0.535261 +0.21875 0.625 0.186866 -0.140421 0.486481 0.358304 0.157573 1.70347 1.12656 0 0.439526 3.37339 0 -0.535261 +0.25 0.625 0.18687 -0.140428 0.486511 0.367787 0.210484 1.70837 1.14326 0 0.439526 3.37339 0 -0.535261 -0.21875 0.65625 0.192695 -0.145035 0.444977 0.367452 0.0966852 1.75967 1.08042 0 0.421735 3.37536 0 -0.518793 -0.25 0.65625 0.192689 -0.145042 0.445618 0.376804 0.100754 1.74043 1.09723 0 0.421735 3.37536 0 -0.518793 +0.21875 0.65625 0.192797 -0.144862 0.44754 0.367351 0.187389 1.84441 1.08332 0 0.421735 3.37536 0 -0.518793 +0.25 0.65625 0.1928 -0.144868 0.44751 0.376834 0.204917 1.85192 1.09994 0 0.421735 3.37536 0 -0.518793 -0.1875 0.65625 0.192704 -0.14502 0.444824 0.358727 0.11501 1.79048 1.06517 0 0.421735 3.37536 0 -0.518793 -0.21875 0.65625 0.192695 -0.145035 0.444977 0.367452 0.0966852 1.75967 1.08042 0 0.421735 3.37536 0 -0.518793 +0.1875 0.65625 0.192792 -0.144851 0.447479 0.358131 0.163389 1.82646 1.06775 0 0.421735 3.37536 0 -0.518793 +0.21875 0.65625 0.192797 -0.144862 0.44754 0.367249 0.187389 1.84441 1.08332 0 0.421735 3.37536 0 -0.518793 -0.1875 0.6875 0.19883 -0.149585 0.405579 0.367668 0.0949056 1.94457 1.02183 0 0.403379 3.3774 0 -0.502832 -0.21875 0.6875 0.198821 -0.149599 0.406158 0.37655 0.0780198 1.93492 1.0373 0 0.403379 3.3774 0 -0.502832 +0.1875 0.6875 0.198912 -0.14943 0.408417 0.367102 0.195257 1.98535 1.02441 0 0.403379 3.3774 0 -0.502832 +0.21875 0.6875 0.198916 -0.149441 0.408478 0.37622 0.201099 1.99362 1.04004 0 0.403379 3.3774 0 -0.502832 -0.21875 0.65625 0.192695 -0.145035 0.444977 0.367452 0.0966852 1.75967 1.08042 0 0.421735 3.37536 0 -0.518793 -0.25 0.65625 0.192689 -0.145042 0.445618 0.376804 0.100754 1.74043 1.09723 0 0.421735 3.37536 0 -0.518793 +0.21875 0.65625 0.192797 -0.144862 0.44754 0.367085 0.187389 1.84441 1.08332 0 0.421735 3.37536 0 -0.518793 +0.25 0.65625 0.1928 -0.144868 0.44751 0.376858 0.204917 1.85192 1.09994 0 0.421735 3.37536 0 -0.518793 -0.21875 0.6875 0.198821 -0.149599 0.406158 0.37655 0.0780198 1.93492 1.0373 0 0.403379 3.3774 0 -0.502832 -0.25 0.6875 0.198816 -0.149604 0.406616 0.386127 0.133915 1.93258 1.05381 0 0.403379 3.3774 0 -0.502832 +0.21875 0.6875 0.198916 -0.149441 0.408478 0.376345 0.201099 1.99362 1.04004 0 0.403379 3.3774 0 -0.502832 +0.25 0.6875 0.198918 -0.149446 0.408417 0.386118 0.215682 1.98722 1.05654 0 0.403379 3.3774 0 -0.502832 -0.125 0.6875 0.19885 -0.149524 0.405182 0.351146 0.147999 1.92364 0.99374 0 0.403379 3.3774 0 -0.502832 -0.15625 0.6875 0.198841 -0.149562 0.405334 0.359059 0.137607 1.94478 1.00715 0 0.403379 3.3774 0 -0.502832 +0.125 0.6875 0.198905 -0.149385 0.408386 0.35009 0.166604 1.99457 0.996253 0 0.403379 3.3774 0 -0.502832 +0.15625 0.6875 0.198908 -0.149411 0.408447 0.35822 0.190133 1.94547 1.00974 0 0.403379 3.3774 0 -0.502832 -0.125 0.71875 0.205173 -0.154238 0.365845 0.359725 0.160598 2.06429 0.950231 0 0.38444 3.37951 0 -0.487361 -0.15625 0.71875 0.205162 -0.154273 0.366272 0.367884 0.107905 2.09025 0.963914 0 0.38444 3.37951 0 -0.487361 +0.125 0.71875 0.205219 -0.15411 0.368927 0.358796 0.153952 2.19466 0.952602 0 0.38444 3.37951 0 -0.487361 +0.15625 0.71875 0.205223 -0.154134 0.369293 0.366926 0.178267 2.20552 0.966478 0 0.38444 3.37951 0 -0.487361 -0.15625 0.6875 0.198841 -0.149562 0.405334 0.359059 0.137607 1.94478 1.00715 0 0.403379 3.3774 0 -0.502832 -0.1875 0.6875 0.19883 -0.149585 0.405579 0.367668 0.0949056 1.94457 1.02183 0 0.403379 3.3774 0 -0.502832 +0.15625 0.6875 0.198908 -0.149411 0.408447 0.358084 0.190133 1.94547 1.00974 0 0.403379 3.3774 0 -0.502832 +0.1875 0.6875 0.198912 -0.14943 0.408417 0.366984 0.195257 1.98535 1.02441 0 0.403379 3.3774 0 -0.502832 -0.15625 0.71875 0.205162 -0.154273 0.366272 0.367884 0.107905 2.09025 0.963914 0 0.38444 3.37951 0 -0.487361 -0.1875 0.71875 0.205152 -0.154294 0.366638 0.376534 0.112545 2.07799 0.978332 0 0.38444 3.37951 0 -0.487361 +0.15625 0.71875 0.205223 -0.154134 0.369293 0.367037 0.178267 2.20552 0.966478 0 0.38444 3.37951 0 -0.487361 +0.1875 0.71875 0.205226 -0.154151 0.369141 0.375937 0.215409 2.18558 0.981037 0 0.38444 3.37951 0 -0.487361 -0.125 0.71875 0.205173 -0.154238 0.365845 0.359725 0.160598 2.06429 0.950231 0 0.38444 3.37951 0 -0.487361 -0.15625 0.71875 0.205162 -0.154273 0.366272 0.367884 0.107905 2.09025 0.963914 0 0.38444 3.37951 0 -0.487361 +0.125 0.71875 0.205219 -0.15411 0.368927 0.358515 0.153952 2.19466 0.952602 0 0.38444 3.37951 0 -0.487361 +0.15625 0.71875 0.205223 -0.154134 0.369293 0.366977 0.178267 2.20552 0.966478 0 0.38444 3.37951 0 -0.487361 -0.125 0.75 0.211694 -0.159097 0.326935 0.368157 0.162152 2.22816 0.906619 0 0.3649 3.38168 0 -0.472367 -0.15625 0.75 0.211684 -0.15913 0.326935 0.376793 0.153417 2.28724 0.920217 0 0.3649 3.38168 0 -0.472367 +0.125 0.75 0.211733 -0.158984 0.329224 0.367737 0.206893 2.40198 0.909185 0 0.3649 3.38168 0 -0.472367 +0.15625 0.75 0.211737 -0.159005 0.329132 0.3762 0.193209 2.4195 0.922808 0 0.3649 3.38168 0 -0.472367 -0.15625 0.71875 0.205162 -0.154273 0.366272 0.367884 0.107905 2.09025 0.963914 0 0.38444 3.37951 0 -0.487361 -0.1875 0.71875 0.205152 -0.154294 0.366638 0.376534 0.112545 2.07799 0.978332 0 0.38444 3.37951 0 -0.487361 +0.15625 0.71875 0.205223 -0.154134 0.369293 0.366812 0.178267 2.20552 0.966478 0 0.38444 3.37951 0 -0.487361 +0.1875 0.71875 0.205226 -0.154151 0.369141 0.375903 0.215409 2.18558 0.981037 0 0.38444 3.37951 0 -0.487361 -0.15625 0.75 0.211684 -0.15913 0.326935 0.376793 0.153417 2.28724 0.920217 0 0.3649 3.38168 0 -0.472367 -0.1875 0.75 0.211675 -0.159148 0.327301 0.3859 0.128837 2.2843 0.934922 0 0.3649 3.38168 0 -0.472367 +0.15625 0.75 0.211737 -0.159005 0.329132 0.376317 0.193209 2.4195 0.922808 0 0.3649 3.38168 0 -0.472367 +0.1875 0.75 0.211739 -0.15902 0.329346 0.385407 0.178005 2.40453 0.937506 0 0.3649 3.38168 0 -0.472367 -0.1875 0.6875 0.19883 -0.149585 0.405579 0.367668 0.0949056 1.94457 1.02183 0 0.403379 3.3774 0 -0.502832 -0.21875 0.6875 0.198821 -0.149599 0.406158 0.37655 0.0780198 1.93492 1.0373 0 0.403379 3.3774 0 -0.502832 +0.1875 0.6875 0.198912 -0.14943 0.408417 0.366837 0.195257 1.98535 1.02441 0 0.403379 3.3774 0 -0.502832 +0.21875 0.6875 0.198916 -0.149441 0.408478 0.376255 0.201099 1.99362 1.04004 0 0.403379 3.3774 0 -0.502832 -0.1875 0.71875 0.205152 -0.154294 0.366638 0.376534 0.112545 2.07799 0.978332 0 0.38444 3.37951 0 -0.487361 -0.21875 0.71875 0.205143 -0.154305 0.366882 0.385899 0.0901548 2.10956 0.993789 0 0.38444 3.37951 0 -0.487361 +0.1875 0.71875 0.205226 -0.154151 0.369141 0.376082 0.215409 2.18558 0.981037 0 0.38444 3.37951 0 -0.487361 +0.21875 0.71875 0.205228 -0.154161 0.369141 0.3855 0.208036 2.18383 0.996589 0 0.38444 3.37951 0 -0.487361 -0.21875 0.6875 0.198821 -0.149599 0.406158 0.37655 0.0780198 1.93492 1.0373 0 0.403379 3.3774 0 -0.502832 -0.25 0.6875 0.198816 -0.149604 0.406616 0.386127 0.133915 1.93258 1.05381 0 0.403379 3.3774 0 -0.502832 +0.21875 0.6875 0.198916 -0.149441 0.408478 0.37611 0.201099 1.99362 1.04004 0 0.403379 3.3774 0 -0.502832 +0.25 0.6875 0.198918 -0.149446 0.408417 0.386137 0.215682 1.98722 1.05654 0 0.403379 3.3774 0 -0.502832 -0.21875 0.71875 0.205143 -0.154305 0.366882 0.385899 0.0901548 2.10956 0.993789 0 0.38444 3.37951 0 -0.487361 -0.25 0.71875 0.205138 -0.154309 0.367584 0.395698 0.140037 2.14204 1.01041 0 0.38444 3.37951 0 -0.487361 +0.21875 0.71875 0.205228 -0.154161 0.369141 0.385638 0.208036 2.18383 0.996589 0 0.38444 3.37951 0 -0.487361 +0.25 0.71875 0.20523 -0.154166 0.369141 0.395665 0.212785 2.15545 1.01306 0 0.38444 3.37951 0 -0.487361 -0.1875 0.71875 0.205152 -0.154294 0.366638 0.376534 0.112545 2.07799 0.978332 0 0.38444 3.37951 0 -0.487361 -0.21875 0.71875 0.205143 -0.154305 0.366882 0.385899 0.0901548 2.10956 0.993789 0 0.38444 3.37951 0 -0.487361 +0.1875 0.71875 0.205226 -0.154151 0.369141 0.375849 0.215409 2.18558 0.981037 0 0.38444 3.37951 0 -0.487361 +0.21875 0.71875 0.205228 -0.154161 0.369141 0.385504 0.208036 2.18383 0.996589 0 0.38444 3.37951 0 -0.487361 -0.1875 0.75 0.211675 -0.159148 0.327301 0.3859 0.128837 2.2843 0.934922 0 0.3649 3.38168 0 -0.472367 -0.21875 0.75 0.211667 -0.159158 0.327576 0.395428 0.153003 2.3068 0.950199 0 0.3649 3.38168 0 -0.472367 +0.1875 0.75 0.211739 -0.15902 0.329346 0.385496 0.178005 2.40453 0.937506 0 0.3649 3.38168 0 -0.472367 +0.21875 0.75 0.211739 -0.159028 0.329376 0.395151 0.174387 2.36989 0.952817 0 0.3649 3.38168 0 -0.472367 -0.21875 0.71875 0.205143 -0.154305 0.366882 0.385899 0.0901548 2.10956 0.993789 0 0.38444 3.37951 0 -0.487361 -0.25 0.71875 0.205138 -0.154309 0.367584 0.395698 0.140037 2.14204 1.01041 0 0.38444 3.37951 0 -0.487361 +0.21875 0.71875 0.205228 -0.154161 0.369141 0.385402 0.208036 2.18383 0.996589 0 0.38444 3.37951 0 -0.487361 +0.25 0.71875 0.20523 -0.154166 0.369141 0.395632 0.212785 2.15545 1.01306 0 0.38444 3.37951 0 -0.487361 -0.21875 0.75 0.211667 -0.159158 0.327576 0.395428 0.153003 2.3068 0.950199 0 0.3649 3.38168 0 -0.472367 -0.25 0.75 0.21166 -0.159161 0.327698 0.405991 0.177871 2.32724 0.966953 0 0.3649 3.38168 0 -0.472367 +0.21875 0.75 0.211739 -0.159028 0.329376 0.395239 0.174387 2.36989 0.952817 0 0.3649 3.38168 0 -0.472367 +0.25 0.75 0.211741 -0.159032 0.32962 0.40547 0.185283 2.38053 0.969412 0 0.3649 3.38168 0 -0.472367 -0.25 0.5 0.16479 -0.124187 0.635284 0.33506 0.101935 1.20135 1.3127 0 0.505384 3.36607 0 -0.606531 -0.28125 0.5 0.164785 -0.124187 0.635651 0.343603 0.0919705 1.22161 1.33034 0 0.505384 3.36607 0 -0.606531 +0.25 0.5 0.164917 -0.123969 0.639435 0.334211 0.181753 1.29511 1.31522 0 0.505384 3.36607 0 -0.606531 +0.28125 0.5 0.164922 -0.123971 0.639648 0.343155 0.185489 1.29657 1.33318 0 0.505384 3.36607 0 -0.606531 -0.25 0.53125 0.170027 -0.128111 0.597778 0.342867 0.106348 1.29299 1.26965 0 0.489683 3.36781 0 -0.58787 -0.28125 0.53125 0.170022 -0.128111 0.598083 0.35173 0.102455 1.29771 1.28732 0 0.489683 3.36781 0 -0.58787 +0.25 0.53125 0.170152 -0.127896 0.601624 0.342474 0.197224 1.369 1.27251 0 0.489683 3.36781 0 -0.58787 +0.28125 0.53125 0.170157 -0.127899 0.60144 0.351419 0.206045 1.39097 1.2902 0 0.489683 3.36781 0 -0.58787 -0.28125 0.5 0.164785 -0.124187 0.635651 0.343603 0.0919705 1.22161 1.33034 0 0.505384 3.36607 0 -0.606531 -0.3125 0.5 0.164783 -0.124182 0.636047 0.352731 0.115968 1.22861 1.34919 0 0.505384 3.36607 0 -0.606531 +0.28125 0.5 0.164922 -0.123971 0.639648 0.34299 0.185489 1.29657 1.33318 0 0.505384 3.36607 0 -0.606531 +0.3125 0.5 0.164927 -0.12397 0.639313 0.352629 0.21946 1.28681 1.35207 0 0.505384 3.36607 0 -0.606531 -0.28125 0.53125 0.170022 -0.128111 0.598083 0.35173 0.102455 1.29771 1.28732 0 0.489683 3.36781 0 -0.58787 -0.3125 0.53125 0.17002 -0.128105 0.598419 0.361073 0.110386 1.31824 1.30597 0 0.489683 3.36781 0 -0.58787 +0.28125 0.53125 0.170157 -0.127899 0.60144 0.351572 0.206045 1.39097 1.2902 0 0.489683 3.36781 0 -0.58787 +0.3125 0.53125 0.17016 -0.127897 0.601288 0.361212 0.210287 1.38107 1.30907 0 0.489683 3.36781 0 -0.58787 -0.25 0.53125 0.170027 -0.128111 0.597778 0.342867 0.106348 1.29299 1.26965 0 0.489683 3.36781 0 -0.58787 -0.28125 0.53125 0.170022 -0.128111 0.598083 0.35173 0.102455 1.29771 1.28732 0 0.489683 3.36781 0 -0.58787 +0.25 0.53125 0.170152 -0.127896 0.601624 0.342231 0.197224 1.369 1.27251 0 0.489683 3.36781 0 -0.58787 +0.28125 0.53125 0.170157 -0.127899 0.60144 0.351477 0.206045 1.39097 1.2902 0 0.489683 3.36781 0 -0.58787 -0.25 0.5625 0.17543 -0.132155 0.559875 0.351217 0.112363 1.39433 1.22693 0 0.473484 3.36961 0 -0.569783 -0.28125 0.5625 0.175425 -0.132155 0.560211 0.360126 0.118983 1.38829 1.24419 0 0.473484 3.36961 0 -0.569783 +0.25 0.5625 0.175551 -0.131946 0.563416 0.350674 0.191033 1.47378 1.22944 0 0.473484 3.36961 0 -0.569783 +0.28125 0.5625 0.175556 -0.131949 0.563324 0.35992 0.209125 1.47333 1.24719 0 0.473484 3.36961 0 -0.569783 -0.28125 0.53125 0.170022 -0.128111 0.598083 0.35173 0.102455 1.29771 1.28732 0 0.489683 3.36781 0 -0.58787 -0.3125 0.53125 0.17002 -0.128105 0.598419 0.361073 0.110386 1.31824 1.30597 0 0.489683 3.36781 0 -0.58787 +0.28125 0.53125 0.170157 -0.127899 0.60144 0.351348 0.206045 1.39097 1.2902 0 0.489683 3.36781 0 -0.58787 +0.3125 0.53125 0.17016 -0.127897 0.601288 0.361265 0.210287 1.38107 1.30907 0 0.489683 3.36781 0 -0.58787 -0.28125 0.5625 0.175425 -0.132155 0.560211 0.360126 0.118983 1.38829 1.24419 0 0.473484 3.36961 0 -0.569783 -0.3125 0.5625 0.175422 -0.132148 0.560364 0.369875 0.122238 1.39794 1.26286 0 0.473484 3.36961 0 -0.569783 +0.28125 0.5625 0.175556 -0.131949 0.563324 0.360059 0.209125 1.47333 1.24719 0 0.473484 3.36961 0 -0.569783 +0.3125 0.5625 0.175559 -0.131948 0.56311 0.369975 0.222255 1.47566 1.26614 0 0.473484 3.36961 0 -0.569783 -0.3125 0.5 0.164783 -0.124182 0.636047 0.352731 0.115968 1.22861 1.34919 0 0.505384 3.36607 0 -0.606531 -0.34375 0.5 0.164783 -0.12417 0.636139 0.36251 0.152843 1.20614 1.36905 0 0.505384 3.36607 0 -0.606531 +0.3125 0.5 0.164927 -0.12397 0.639313 0.352494 0.21946 1.28681 1.35207 0 0.505384 3.36607 0 -0.606531 +0.34375 0.5 0.164929 -0.123965 0.639099 0.362738 0.237479 1.27534 1.37236 0 0.505384 3.36607 0 -0.606531 -0.3125 0.53125 0.17002 -0.128105 0.598419 0.361073 0.110386 1.31824 1.30597 0 0.489683 3.36781 0 -0.58787 -0.34375 0.53125 0.170019 -0.128094 0.598663 0.371192 0.134999 1.2967 1.32604 0 0.489683 3.36781 0 -0.58787 +0.3125 0.53125 0.17016 -0.127897 0.601288 0.361329 0.210287 1.38107 1.30907 0 0.489683 3.36781 0 -0.58787 +0.34375 0.53125 0.170163 -0.127894 0.601074 0.371574 0.213805 1.37847 1.32928 0 0.489683 3.36781 0 -0.58787 -0.34375 0.5 0.164783 -0.12417 0.636139 0.36251 0.152843 1.20614 1.36905 0 0.505384 3.36607 0 -0.606531 -0.375 0.5 0.164784 -0.124154 0.636047 0.373018 0.141971 1.22615 1.3902 0 0.505384 3.36607 0 -0.606531 +0.34375 0.5 0.164929 -0.123965 0.639099 0.362634 0.237479 1.27534 1.37236 0 0.505384 3.36607 0 -0.606531 +0.375 0.5 0.164931 -0.123959 0.63858 0.373557 0.233175 1.28961 1.39366 0 0.505384 3.36607 0 -0.606531 -0.34375 0.53125 0.170019 -0.128094 0.598663 0.371192 0.134999 1.2967 1.32604 0 0.489683 3.36781 0 -0.58787 -0.375 0.53125 0.170019 -0.128077 0.598755 0.382014 0.16729 1.28831 1.34734 0 0.489683 3.36781 0 -0.58787 +0.34375 0.53125 0.170163 -0.127894 0.601074 0.371678 0.213805 1.37847 1.32928 0 0.489683 3.36781 0 -0.58787 +0.375 0.53125 0.170164 -0.127887 0.600891 0.382601 0.21753 1.35019 1.3507 0 0.489683 3.36781 0 -0.58787 -0.3125 0.53125 0.17002 -0.128105 0.598419 0.361073 0.110386 1.31824 1.30597 0 0.489683 3.36781 0 -0.58787 -0.34375 0.53125 0.170019 -0.128094 0.598663 0.371192 0.134999 1.2967 1.32604 0 0.489683 3.36781 0 -0.58787 +0.3125 0.53125 0.17016 -0.127897 0.601288 0.361053 0.210287 1.38107 1.30907 0 0.489683 3.36781 0 -0.58787 +0.34375 0.53125 0.170163 -0.127894 0.601074 0.371616 0.213805 1.37847 1.32928 0 0.489683 3.36781 0 -0.58787 -0.3125 0.5625 0.175422 -0.132148 0.560364 0.369875 0.122238 1.39794 1.26286 0 0.473484 3.36961 0 -0.569783 -0.34375 0.5625 0.17542 -0.132137 0.560699 0.380339 0.135154 1.39895 1.28307 0 0.473484 3.36961 0 -0.569783 +0.3125 0.5625 0.175559 -0.131948 0.56311 0.370167 0.222255 1.47566 1.26614 0 0.473484 3.36961 0 -0.569783 +0.34375 0.5625 0.175561 -0.131944 0.562866 0.380731 0.213689 1.45782 1.28613 0 0.473484 3.36961 0 -0.569783 -0.34375 0.53125 0.170019 -0.128094 0.598663 0.371192 0.134999 1.2967 1.32604 0 0.489683 3.36781 0 -0.58787 -0.375 0.53125 0.170019 -0.128077 0.598755 0.382014 0.16729 1.28831 1.34734 0 0.489683 3.36781 0 -0.58787 +0.34375 0.53125 0.170163 -0.127894 0.601074 0.37147 0.213805 1.37847 1.32928 0 0.489683 3.36781 0 -0.58787 +0.375 0.53125 0.170164 -0.127887 0.600891 0.382633 0.21753 1.35019 1.3507 0 0.489683 3.36781 0 -0.58787 -0.34375 0.5625 0.17542 -0.132137 0.560699 0.380339 0.135154 1.39895 1.28307 0 0.473484 3.36961 0 -0.569783 -0.375 0.5625 0.175421 -0.132121 0.56076 0.391444 0.167698 1.39721 1.30422 0 0.473484 3.36961 0 -0.569783 +0.34375 0.5625 0.175561 -0.131944 0.562866 0.380847 0.213689 1.45782 1.28613 0 0.473484 3.36961 0 -0.569783 +0.375 0.5625 0.175561 -0.131938 0.562775 0.39201 0.204777 1.46026 1.30754 0 0.473484 3.36961 0 -0.569783 -0.25 0.5625 0.17543 -0.132155 0.559875 0.351217 0.112363 1.39433 1.22693 0 0.473484 3.36961 0 -0.569783 -0.28125 0.5625 0.175425 -0.132155 0.560211 0.360126 0.118983 1.38829 1.24419 0 0.473484 3.36961 0 -0.569783 +0.25 0.5625 0.175551 -0.131946 0.563416 0.350438 0.191033 1.47378 1.22944 0 0.473484 3.36961 0 -0.569783 +0.28125 0.5625 0.175556 -0.131949 0.563324 0.359965 0.209125 1.47333 1.24719 0 0.473484 3.36961 0 -0.569783 -0.25 0.59375 0.181004 -0.136321 0.52179 0.359434 0.11918 1.46476 1.18345 0 0.45677 3.37147 0 -0.552252 -0.28125 0.59375 0.180999 -0.136322 0.522217 0.368866 0.106049 1.47887 1.20124 0 0.45677 3.37147 0 -0.552252 +0.25 0.59375 0.181122 -0.136122 0.525024 0.359155 0.188698 1.5746 1.18629 0 0.45677 3.37147 0 -0.552252 +0.28125 0.59375 0.181126 -0.136125 0.524933 0.368681 0.213422 1.59096 1.20407 0 0.45677 3.37147 0 -0.552252 -0.28125 0.5625 0.175425 -0.132155 0.560211 0.360126 0.118983 1.38829 1.24419 0 0.473484 3.36961 0 -0.569783 -0.3125 0.5625 0.175422 -0.132148 0.560364 0.369875 0.122238 1.39794 1.26286 0 0.473484 3.36961 0 -0.569783 +0.28125 0.5625 0.175556 -0.131949 0.563324 0.359829 0.209125 1.47333 1.24719 0 0.473484 3.36961 0 -0.569783 +0.3125 0.5625 0.175559 -0.131948 0.56311 0.370066 0.222255 1.47566 1.26614 0 0.473484 3.36961 0 -0.569783 -0.28125 0.59375 0.180999 -0.136322 0.522217 0.368866 0.106049 1.47887 1.20124 0 0.45677 3.37147 0 -0.552252 -0.3125 0.59375 0.180996 -0.136315 0.522491 0.37884 0.124678 1.48597 1.21988 0 0.45677 3.37147 0 -0.552252 +0.28125 0.59375 0.181126 -0.136125 0.524933 0.368829 0.213422 1.59096 1.20407 0 0.45677 3.37147 0 -0.552252 +0.3125 0.59375 0.181129 -0.136124 0.524689 0.379066 0.208533 1.57333 1.22286 0 0.45677 3.37147 0 -0.552252 -0.25 0.59375 0.181004 -0.136321 0.52179 0.359434 0.11918 1.46476 1.18345 0 0.45677 3.37147 0 -0.552252 -0.28125 0.59375 0.180999 -0.136322 0.522217 0.368866 0.106049 1.47887 1.20124 0 0.45677 3.37147 0 -0.552252 +0.25 0.59375 0.181122 -0.136122 0.525024 0.358878 0.188698 1.5746 1.18629 0 0.45677 3.37147 0 -0.552252 +0.28125 0.59375 0.181126 -0.136125 0.524933 0.368787 0.213422 1.59096 1.20407 0 0.45677 3.37147 0 -0.552252 -0.25 0.625 0.186755 -0.140618 0.483856 0.368013 0.123859 1.55799 1.14047 0 0.439526 3.37339 0 -0.535261 -0.28125 0.625 0.18675 -0.140617 0.484039 0.377721 0.13715 1.57968 1.15797 0 0.439526 3.37339 0 -0.535261 +0.25 0.625 0.18687 -0.140428 0.486511 0.367865 0.210484 1.70837 1.14326 0 0.439526 3.37339 0 -0.535261 +0.28125 0.625 0.186874 -0.140431 0.486206 0.377773 0.222764 1.70409 1.16083 0 0.439526 3.37339 0 -0.535261 -0.28125 0.59375 0.180999 -0.136322 0.522217 0.368866 0.106049 1.47887 1.20124 0 0.45677 3.37147 0 -0.552252 -0.3125 0.59375 0.180996 -0.136315 0.522491 0.37884 0.124678 1.48597 1.21988 0 0.45677 3.37147 0 -0.552252 +0.28125 0.59375 0.181126 -0.136125 0.524933 0.368582 0.213422 1.59096 1.20407 0 0.45677 3.37147 0 -0.552252 +0.3125 0.59375 0.181129 -0.136124 0.524689 0.379088 0.208533 1.57333 1.22286 0 0.45677 3.37147 0 -0.552252 -0.28125 0.625 0.18675 -0.140617 0.484039 0.377721 0.13715 1.57968 1.15797 0 0.439526 3.37339 0 -0.535261 -0.3125 0.625 0.186746 -0.14061 0.484253 0.388187 0.146908 1.64303 1.17686 0 0.439526 3.37339 0 -0.535261 +0.28125 0.625 0.186874 -0.140431 0.486206 0.37792 0.222764 1.70409 1.16083 0 0.439526 3.37339 0 -0.535261 +0.3125 0.625 0.186876 -0.14043 0.486206 0.388426 0.228616 1.69945 1.17976 0 0.439526 3.37339 0 -0.535261 -0.3125 0.5625 0.175422 -0.132148 0.560364 0.369875 0.122238 1.39794 1.26286 0 0.473484 3.36961 0 -0.569783 -0.34375 0.5625 0.17542 -0.132137 0.560699 0.380339 0.135154 1.39895 1.28307 0 0.473484 3.36961 0 -0.569783 +0.3125 0.5625 0.175559 -0.131948 0.56311 0.369909 0.222255 1.47566 1.26614 0 0.473484 3.36961 0 -0.569783 +0.34375 0.5625 0.175561 -0.131944 0.562866 0.380693 0.213689 1.45782 1.28613 0 0.473484 3.36961 0 -0.569783 -0.3125 0.59375 0.180996 -0.136315 0.522491 0.37884 0.124678 1.48597 1.21988 0 0.45677 3.37147 0 -0.552252 -0.34375 0.59375 0.180994 -0.136304 0.522705 0.389622 0.148689 1.50137 1.23994 0 0.45677 3.37147 0 -0.552252 +0.3125 0.59375 0.181129 -0.136124 0.524689 0.3792 0.208533 1.57333 1.22286 0 0.45677 3.37147 0 -0.552252 +0.34375 0.59375 0.18113 -0.13612 0.524719 0.389985 0.212261 1.5826 1.2431 0 0.45677 3.37147 0 -0.552252 -0.34375 0.5625 0.17542 -0.132137 0.560699 0.380339 0.135154 1.39895 1.28307 0 0.473484 3.36961 0 -0.569783 -0.375 0.5625 0.175421 -0.132121 0.56076 0.391444 0.167698 1.39721 1.30422 0 0.473484 3.36961 0 -0.569783 +0.34375 0.5625 0.175561 -0.131944 0.562866 0.380557 0.213689 1.45782 1.28613 0 0.473484 3.36961 0 -0.569783 +0.375 0.5625 0.175561 -0.131938 0.562775 0.392091 0.204777 1.46026 1.30754 0 0.473484 3.36961 0 -0.569783 -0.34375 0.59375 0.180994 -0.136304 0.522705 0.389622 0.148689 1.50137 1.23994 0 0.45677 3.37147 0 -0.552252 -0.375 0.59375 0.180993 -0.136289 0.522766 0.401188 0.173234 1.48513 1.26129 0 0.45677 3.37147 0 -0.552252 +0.34375 0.59375 0.18113 -0.13612 0.524719 0.390176 0.212261 1.5826 1.2431 0 0.45677 3.37147 0 -0.552252 +0.375 0.59375 0.18113 -0.136113 0.524445 0.401709 0.224777 1.58153 1.26445 0 0.45677 3.37147 0 -0.552252 -0.3125 0.59375 0.180996 -0.136315 0.522491 0.37884 0.124678 1.48597 1.21988 0 0.45677 3.37147 0 -0.552252 -0.34375 0.59375 0.180994 -0.136304 0.522705 0.389622 0.148689 1.50137 1.23994 0 0.45677 3.37147 0 -0.552252 +0.3125 0.59375 0.181129 -0.136124 0.524689 0.378909 0.208533 1.57333 1.22286 0 0.45677 3.37147 0 -0.552252 +0.34375 0.59375 0.18113 -0.13612 0.524719 0.390071 0.212261 1.5826 1.2431 0 0.45677 3.37147 0 -0.552252 -0.3125 0.625 0.186746 -0.14061 0.484253 0.388187 0.146908 1.64303 1.17686 0 0.439526 3.37339 0 -0.535261 -0.34375 0.625 0.186744 -0.140598 0.484344 0.399277 0.147216 1.6192 1.19674 0 0.439526 3.37339 0 -0.535261 +0.3125 0.625 0.186876 -0.14043 0.486206 0.388579 0.228616 1.69945 1.17976 0 0.439526 3.37339 0 -0.535261 +0.34375 0.625 0.186876 -0.140425 0.48587 0.399741 0.235815 1.72385 1.19981 0 0.439526 3.37339 0 -0.535261 -0.34375 0.59375 0.180994 -0.136304 0.522705 0.389622 0.148689 1.50137 1.23994 0 0.45677 3.37147 0 -0.552252 -0.375 0.59375 0.180993 -0.136289 0.522766 0.401188 0.173234 1.48513 1.26129 0 0.45677 3.37147 0 -0.552252 +0.34375 0.59375 0.18113 -0.13612 0.524719 0.389876 0.212261 1.5826 1.2431 0 0.45677 3.37147 0 -0.552252 +0.375 0.59375 0.18113 -0.136113 0.524445 0.401775 0.224777 1.58153 1.26445 0 0.45677 3.37147 0 -0.552252 -0.34375 0.625 0.186744 -0.140598 0.484344 0.399277 0.147216 1.6192 1.19674 0 0.439526 3.37339 0 -0.535261 -0.375 0.625 0.186742 -0.140584 0.48465 0.411024 0.184283 1.63646 1.218 0 0.439526 3.37339 0 -0.535261 +0.34375 0.625 0.186876 -0.140425 0.48587 0.399951 0.235815 1.72385 1.19981 0 0.439526 3.37339 0 -0.535261 +0.375 0.625 0.186875 -0.140419 0.485748 0.41185 0.213491 1.70356 1.22115 0 0.439526 3.37339 0 -0.535261 -0.375 0.5 0.164784 -0.124154 0.636047 0.373018 0.141971 1.22615 1.3902 0 0.505384 3.36607 0 -0.606531 -0.40625 0.5 0.164785 -0.124136 0.636322 0.384216 0.117902 1.25432 1.41312 0 0.505384 3.36607 0 -0.606531 +0.375 0.5 0.164931 -0.123959 0.63858 0.373426 0.233175 1.28961 1.39366 0 0.505384 3.36607 0 -0.606531 +0.40625 0.5 0.164932 -0.12395 0.638367 0.385032 0.189093 1.29387 1.41643 0 0.505384 3.36607 0 -0.606531 -0.375 0.53125 0.170019 -0.128077 0.598755 0.382014 0.16729 1.28831 1.34734 0 0.489683 3.36781 0 -0.58787 -0.40625 0.53125 0.17002 -0.12806 0.598633 0.393803 0.175237 1.31588 1.37032 0 0.489683 3.36781 0 -0.58787 +0.375 0.53125 0.170164 -0.127887 0.600891 0.382732 0.21753 1.35019 1.3507 0 0.489683 3.36781 0 -0.58787 +0.40625 0.53125 0.170163 -0.127879 0.600616 0.394338 0.209586 1.34204 1.3734 0 0.489683 3.36781 0 -0.58787 -0.40625 0.5 0.164785 -0.124136 0.636322 0.384216 0.117902 1.25432 1.41312 0 0.505384 3.36607 0 -0.606531 -0.4375 0.5 0.164787 -0.124115 0.636566 0.396049 0.127437 1.27571 1.43729 0 0.505384 3.36607 0 -0.606531 +0.40625 0.5 0.164932 -0.12395 0.638367 0.384795 0.189093 1.29387 1.41643 0 0.505384 3.36607 0 -0.606531 +0.4375 0.5 0.164931 -0.123939 0.638458 0.396966 0.18963 1.28026 1.44089 0 0.505384 3.36607 0 -0.606531 -0.40625 0.53125 0.17002 -0.12806 0.598633 0.393803 0.175237 1.31588 1.37032 0 0.489683 3.36781 0 -0.58787 -0.4375 0.53125 0.170021 -0.128039 0.598602 0.406131 0.136901 1.34693 1.39444 0 0.489683 3.36781 0 -0.58787 +0.40625 0.53125 0.170163 -0.127879 0.600616 0.394572 0.209586 1.34204 1.3734 0 0.489683 3.36781 0 -0.58787 +0.4375 0.53125 0.170162 -0.127869 0.600525 0.406743 0.197715 1.36471 1.39765 0 0.489683 3.36781 0 -0.58787 -0.375 0.53125 0.170019 -0.128077 0.598755 0.382014 0.16729 1.28831 1.34734 0 0.489683 3.36781 0 -0.58787 -0.40625 0.53125 0.17002 -0.12806 0.598633 0.393803 0.175237 1.31588 1.37032 0 0.489683 3.36781 0 -0.58787 +0.375 0.53125 0.170164 -0.127887 0.600891 0.382489 0.21753 1.35019 1.3507 0 0.489683 3.36781 0 -0.58787 +0.40625 0.53125 0.170163 -0.127879 0.600616 0.394394 0.209586 1.34204 1.3734 0 0.489683 3.36781 0 -0.58787 -0.375 0.5625 0.175421 -0.132121 0.56076 0.391444 0.167698 1.39721 1.30422 0 0.473484 3.36961 0 -0.569783 -0.40625 0.5625 0.175421 -0.132103 0.56073 0.403504 0.183251 1.39659 1.3271 0 0.473484 3.36961 0 -0.569783 +0.375 0.5625 0.175561 -0.131938 0.562775 0.392156 0.204777 1.46026 1.30754 0 0.473484 3.36961 0 -0.569783 +0.40625 0.5625 0.17556 -0.131929 0.562653 0.404061 0.215368 1.44895 1.33035 0 0.473484 3.36961 0 -0.569783 -0.40625 0.53125 0.17002 -0.12806 0.598633 0.393803 0.175237 1.31588 1.37032 0 0.489683 3.36781 0 -0.58787 -0.4375 0.53125 0.170021 -0.128039 0.598602 0.406131 0.136901 1.34693 1.39444 0 0.489683 3.36781 0 -0.58787 +0.40625 0.53125 0.170163 -0.127879 0.600616 0.394208 0.209586 1.34204 1.3734 0 0.489683 3.36781 0 -0.58787 +0.4375 0.53125 0.170162 -0.127869 0.600525 0.40685 0.197715 1.36471 1.39765 0 0.489683 3.36781 0 -0.58787 -0.40625 0.5625 0.175421 -0.132103 0.56073 0.403504 0.183251 1.39659 1.3271 0 0.473484 3.36961 0 -0.569783 -0.4375 0.5625 0.175421 -0.132084 0.560638 0.41624 0.174524 1.41222 1.35119 0 0.473484 3.36961 0 -0.569783 +0.40625 0.5625 0.17556 -0.131929 0.562653 0.404251 0.215368 1.44895 1.33035 0 0.473484 3.36961 0 -0.569783 +0.4375 0.5625 0.175559 -0.13192 0.562408 0.416893 0.218348 1.45089 1.35457 0 0.473484 3.36961 0 -0.569783 -0.4375 0.5 0.164787 -0.124115 0.636566 0.396049 0.127437 1.27571 1.43729 0 0.505384 3.36607 0 -0.606531 -0.46875 0.5 0.164791 -0.124093 0.636658 0.40879 0.130666 1.25125 1.46314 0 0.505384 3.36607 0 -0.606531 +0.4375 0.5 0.164931 -0.123939 0.638458 0.396845 0.18963 1.28026 1.44089 0 0.505384 3.36607 0 -0.606531 +0.46875 0.5 0.16493 -0.123929 0.638153 0.409896 0.197947 1.28224 1.46647 0 0.505384 3.36607 0 -0.606531 -0.4375 0.53125 0.170021 -0.128039 0.598602 0.406131 0.136901 1.34693 1.39444 0 0.489683 3.36781 0 -0.58787 -0.46875 0.53125 0.170024 -0.128017 0.59906 0.419134 0.154133 1.34241 1.42038 0 0.489683 3.36781 0 -0.58787 +0.4375 0.53125 0.170162 -0.127869 0.600525 0.406924 0.197715 1.36471 1.39765 0 0.489683 3.36781 0 -0.58787 +0.46875 0.53125 0.170161 -0.127858 0.600403 0.419975 0.201686 1.35356 1.42357 0 0.489683 3.36781 0 -0.58787 -0.46875 0.5 0.164791 -0.124093 0.636658 0.40879 0.130666 1.25125 1.46314 0 0.505384 3.36607 0 -0.606531 -0.5 0.5 0.164795 -0.124069 0.636932 0.422262 0.153492 1.28969 1.49065 0 0.505384 3.36607 0 -0.606531 +0.46875 0.5 0.16493 -0.123929 0.638153 0.409648 0.197947 1.28224 1.46647 0 0.505384 3.36607 0 -0.606531 +0.5 0.5 0.164928 -0.123917 0.638092 0.423514 0.181957 1.28808 1.49397 0 0.505384 3.36607 0 -0.606531 -0.46875 0.53125 0.170024 -0.128017 0.59906 0.419134 0.154133 1.34241 1.42038 0 0.489683 3.36781 0 -0.58787 -0.5 0.53125 0.170026 -0.127995 0.598785 0.43305 0.188397 1.39104 1.44737 0 0.489683 3.36781 0 -0.58787 +0.46875 0.53125 0.170161 -0.127858 0.600403 0.42021 0.201686 1.35356 1.42357 0 0.489683 3.36781 0 -0.58787 +0.5 0.53125 0.170158 -0.127846 0.60022 0.434076 0.197546 1.34841 1.45089 0 0.489683 3.36781 0 -0.58787 -0.4375 0.53125 0.170021 -0.128039 0.598602 0.406131 0.136901 1.34693 1.39444 0 0.489683 3.36781 0 -0.58787 -0.46875 0.53125 0.170024 -0.128017 0.59906 0.419134 0.154133 1.34241 1.42038 0 0.489683 3.36781 0 -0.58787 +0.4375 0.53125 0.170162 -0.127869 0.600525 0.406628 0.197715 1.36471 1.39765 0 0.489683 3.36781 0 -0.58787 +0.46875 0.53125 0.170161 -0.127858 0.600403 0.420062 0.201686 1.35356 1.42357 0 0.489683 3.36781 0 -0.58787 -0.4375 0.5625 0.175421 -0.132084 0.560638 0.41624 0.174524 1.41222 1.35119 0 0.473484 3.36961 0 -0.569783 -0.46875 0.5625 0.175423 -0.132062 0.560791 0.429836 0.190011 1.44125 1.37717 0 0.473484 3.36961 0 -0.569783 +0.4375 0.5625 0.175559 -0.13192 0.562408 0.417131 0.218348 1.45089 1.35457 0 0.473484 3.36961 0 -0.569783 +0.46875 0.5625 0.175557 -0.131909 0.562225 0.430566 0.197967 1.43395 1.38027 0 0.473484 3.36961 0 -0.569783 -0.46875 0.53125 0.170024 -0.128017 0.59906 0.419134 0.154133 1.34241 1.42038 0 0.489683 3.36781 0 -0.58787 -0.5 0.53125 0.170026 -0.127995 0.598785 0.43305 0.188397 1.39104 1.44737 0 0.489683 3.36781 0 -0.58787 +0.46875 0.53125 0.170161 -0.127858 0.600403 0.419912 0.201686 1.35356 1.42357 0 0.489683 3.36781 0 -0.58787 +0.5 0.53125 0.170158 -0.127846 0.60022 0.43415 0.197546 1.34841 1.45089 0 0.489683 3.36781 0 -0.58787 -0.46875 0.5625 0.175423 -0.132062 0.560791 0.429836 0.190011 1.44125 1.37717 0 0.473484 3.36961 0 -0.569783 -0.5 0.5625 0.175424 -0.132042 0.560425 0.444457 0.166576 1.40927 1.40457 0 0.473484 3.36961 0 -0.569783 +0.46875 0.5625 0.175557 -0.131909 0.562225 0.430774 0.197967 1.43395 1.38027 0 0.473484 3.36961 0 -0.569783 +0.5 0.5625 0.175554 -0.131896 0.562256 0.445012 0.197786 1.43991 1.40771 0 0.473484 3.36961 0 -0.569783 -0.375 0.5625 0.175421 -0.132121 0.56076 0.391444 0.167698 1.39721 1.30422 0 0.473484 3.36961 0 -0.569783 -0.40625 0.5625 0.175421 -0.132103 0.56073 0.403504 0.183251 1.39659 1.3271 0 0.473484 3.36961 0 -0.569783 +0.375 0.5625 0.175561 -0.131938 0.562775 0.391872 0.204777 1.46026 1.30754 0 0.473484 3.36961 0 -0.569783 +0.40625 0.5625 0.17556 -0.131929 0.562653 0.404119 0.215368 1.44895 1.33035 0 0.473484 3.36961 0 -0.569783 -0.375 0.59375 0.180993 -0.136289 0.522766 0.401188 0.173234 1.48513 1.26129 0 0.45677 3.37147 0 -0.552252 -0.40625 0.59375 0.180993 -0.136272 0.522766 0.413516 0.195572 1.50983 1.28398 0 0.45677 3.37147 0 -0.552252 +0.375 0.59375 0.18113 -0.136113 0.524445 0.401905 0.224777 1.58153 1.26445 0 0.45677 3.37147 0 -0.552252 +0.40625 0.59375 0.181128 -0.136105 0.524292 0.414152 0.209921 1.57594 1.28715 0 0.45677 3.37147 0 -0.552252 -0.40625 0.5625 0.175421 -0.132103 0.56073 0.403504 0.183251 1.39659 1.3271 0 0.473484 3.36961 0 -0.569783 -0.4375 0.5625 0.175421 -0.132084 0.560638 0.41624 0.174524 1.41222 1.35119 0 0.473484 3.36961 0 -0.569783 +0.40625 0.5625 0.17556 -0.131929 0.562653 0.403939 0.215368 1.44895 1.33035 0 0.473484 3.36961 0 -0.569783 +0.4375 0.5625 0.175559 -0.13192 0.562408 0.416981 0.218348 1.45089 1.35457 0 0.473484 3.36961 0 -0.569783 -0.40625 0.59375 0.180993 -0.136272 0.522766 0.413516 0.195572 1.50983 1.28398 0 0.45677 3.37147 0 -0.552252 -0.4375 0.59375 0.180992 -0.136253 0.522583 0.426751 0.189726 1.50324 1.30816 0 0.45677 3.37147 0 -0.552252 +0.40625 0.59375 0.181128 -0.136105 0.524292 0.4143 0.209921 1.57594 1.28715 0 0.45677 3.37147 0 -0.552252 +0.4375 0.59375 0.181126 -0.136095 0.5242 0.427342 0.194966 1.56737 1.31143 0 0.45677 3.37147 0 -0.552252 -0.375 0.59375 0.180993 -0.136289 0.522766 0.401188 0.173234 1.48513 1.26129 0 0.45677 3.37147 0 -0.552252 -0.40625 0.59375 0.180993 -0.136272 0.522766 0.413516 0.195572 1.50983 1.28398 0 0.45677 3.37147 0 -0.552252 +0.375 0.59375 0.18113 -0.136113 0.524445 0.401615 0.224777 1.58153 1.26445 0 0.45677 3.37147 0 -0.552252 +0.40625 0.59375 0.181128 -0.136105 0.524292 0.414213 0.209921 1.57594 1.28715 0 0.45677 3.37147 0 -0.552252 -0.375 0.625 0.186742 -0.140584 0.48465 0.411024 0.184283 1.63646 1.218 0 0.439526 3.37339 0 -0.535261 -0.40625 0.625 0.186741 -0.140567 0.484344 0.423953 0.211502 1.65858 1.24076 0 0.439526 3.37339 0 -0.535261 +0.375 0.625 0.186875 -0.140419 0.485748 0.411966 0.213491 1.70356 1.22115 0 0.439526 3.37339 0 -0.535261 +0.40625 0.625 0.186873 -0.14041 0.485687 0.424564 0.207707 1.71124 1.2439 0 0.439526 3.37339 0 -0.535261 -0.40625 0.59375 0.180993 -0.136272 0.522766 0.413516 0.195572 1.50983 1.28398 0 0.45677 3.37147 0 -0.552252 -0.4375 0.59375 0.180992 -0.136253 0.522583 0.426751 0.189726 1.50324 1.30816 0 0.45677 3.37147 0 -0.552252 +0.40625 0.59375 0.181128 -0.136105 0.524292 0.414014 0.209921 1.57594 1.28715 0 0.45677 3.37147 0 -0.552252 +0.4375 0.59375 0.181126 -0.136095 0.5242 0.427393 0.194966 1.56737 1.31143 0 0.45677 3.37147 0 -0.552252 -0.40625 0.625 0.186741 -0.140567 0.484344 0.423953 0.211502 1.65858 1.24076 0 0.439526 3.37339 0 -0.535261 -0.4375 0.625 0.18674 -0.140549 0.484314 0.437669 0.172888 1.62998 1.2652 0 0.439526 3.37339 0 -0.535261 +0.40625 0.625 0.186873 -0.14041 0.485687 0.424786 0.207707 1.71124 1.2439 0 0.439526 3.37339 0 -0.535261 +0.4375 0.625 0.186871 -0.1404 0.485565 0.438166 0.19487 1.71389 1.2679 0 0.439526 3.37339 0 -0.535261 -0.4375 0.5625 0.175421 -0.132084 0.560638 0.41624 0.174524 1.41222 1.35119 0 0.473484 3.36961 0 -0.569783 -0.46875 0.5625 0.175423 -0.132062 0.560791 0.429836 0.190011 1.44125 1.37717 0 0.473484 3.36961 0 -0.569783 +0.4375 0.5625 0.175559 -0.13192 0.562408 0.416812 0.218348 1.45089 1.35457 0 0.473484 3.36961 0 -0.569783 +0.46875 0.5625 0.175557 -0.131909 0.562225 0.430669 0.197967 1.43395 1.38027 0 0.473484 3.36961 0 -0.569783 -0.4375 0.59375 0.180992 -0.136253 0.522583 0.426751 0.189726 1.50324 1.30816 0 0.45677 3.37147 0 -0.552252 -0.46875 0.59375 0.180993 -0.136233 0.522644 0.440832 0.16117 1.49961 1.33415 0 0.45677 3.37147 0 -0.552252 +0.4375 0.59375 0.181126 -0.136095 0.5242 0.427483 0.194966 1.56737 1.31143 0 0.45677 3.37147 0 -0.552252 +0.46875 0.59375 0.181124 -0.136085 0.524231 0.44134 0.206926 1.54855 1.33707 0 0.45677 3.37147 0 -0.552252 -0.46875 0.5625 0.175423 -0.132062 0.560791 0.429836 0.190011 1.44125 1.37717 0 0.473484 3.36961 0 -0.569783 -0.5 0.5625 0.175424 -0.132042 0.560425 0.444457 0.166576 1.40927 1.40457 0 0.473484 3.36961 0 -0.569783 +0.46875 0.5625 0.175557 -0.131909 0.562225 0.43043 0.197967 1.43395 1.38027 0 0.473484 3.36961 0 -0.569783 +0.5 0.5625 0.175554 -0.131896 0.562256 0.445147 0.197786 1.43991 1.40771 0 0.473484 3.36961 0 -0.569783 -0.46875 0.59375 0.180993 -0.136233 0.522644 0.440832 0.16117 1.49961 1.33415 0 0.45677 3.37147 0 -0.552252 -0.5 0.59375 0.180993 -0.136213 0.522827 0.455308 0.168642 1.4622 1.36098 0 0.45677 3.37147 0 -0.552252 +0.46875 0.59375 0.181124 -0.136085 0.524231 0.441537 0.206926 1.54855 1.33707 0 0.45677 3.37147 0 -0.552252 +0.5 0.59375 0.181121 -0.136073 0.524017 0.456253 0.235362 1.57184 1.36465 0 0.45677 3.37147 0 -0.552252 -0.4375 0.59375 0.180992 -0.136253 0.522583 0.426751 0.189726 1.50324 1.30816 0 0.45677 3.37147 0 -0.552252 -0.46875 0.59375 0.180993 -0.136233 0.522644 0.440832 0.16117 1.49961 1.33415 0 0.45677 3.37147 0 -0.552252 +0.4375 0.59375 0.181126 -0.136095 0.5242 0.427243 0.194966 1.56737 1.31143 0 0.45677 3.37147 0 -0.552252 +0.46875 0.59375 0.181124 -0.136085 0.524231 0.441357 0.206926 1.54855 1.33707 0 0.45677 3.37147 0 -0.552252 -0.4375 0.625 0.18674 -0.140549 0.484314 0.437669 0.172888 1.62998 1.2652 0 0.439526 3.37339 0 -0.535261 -0.46875 0.625 0.18674 -0.140531 0.484528 0.45179 0.168811 1.60568 1.29061 0 0.439526 3.37339 0 -0.535261 +0.4375 0.625 0.186871 -0.1404 0.485565 0.438355 0.19487 1.71389 1.2679 0 0.439526 3.37339 0 -0.535261 +0.46875 0.625 0.186868 -0.14039 0.485687 0.45247 0.212838 1.76105 1.29383 0 0.439526 3.37339 0 -0.535261 -0.46875 0.59375 0.180993 -0.136233 0.522644 0.440832 0.16117 1.49961 1.33415 0 0.45677 3.37147 0 -0.552252 -0.5 0.59375 0.180993 -0.136213 0.522827 0.455308 0.168642 1.4622 1.36098 0 0.45677 3.37147 0 -0.552252 +0.46875 0.59375 0.181124 -0.136085 0.524231 0.441142 0.206926 1.54855 1.33707 0 0.45677 3.37147 0 -0.552252 +0.5 0.59375 0.181121 -0.136073 0.524017 0.456463 0.235362 1.57184 1.36465 0 0.45677 3.37147 0 -0.552252 -0.46875 0.625 0.18674 -0.140531 0.484528 0.45179 0.168811 1.60568 1.29061 0 0.439526 3.37339 0 -0.535261 -0.5 0.625 0.18674 -0.140512 0.484467 0.467371 0.167995 1.56428 1.31835 0 0.439526 3.37339 0 -0.535261 +0.46875 0.625 0.186868 -0.14039 0.485687 0.452742 0.212838 1.76105 1.29383 0 0.439526 3.37339 0 -0.535261 +0.5 0.625 0.186864 -0.140378 0.485352 0.468063 0.229373 1.72273 1.32116 0 0.439526 3.37339 0 -0.535261 -0.25 0.625 0.186755 -0.140618 0.483856 0.368013 0.123859 1.55799 1.14047 0 0.439526 3.37339 0 -0.535261 -0.28125 0.625 0.18675 -0.140617 0.484039 0.377721 0.13715 1.57968 1.15797 0 0.439526 3.37339 0 -0.535261 +0.25 0.625 0.18687 -0.140428 0.486511 0.367639 0.210484 1.70837 1.14326 0 0.439526 3.37339 0 -0.535261 +0.28125 0.625 0.186874 -0.140431 0.486206 0.377804 0.222764 1.70409 1.16083 0 0.439526 3.37339 0 -0.535261 -0.25 0.65625 0.192689 -0.145042 0.445618 0.376804 0.100754 1.74043 1.09723 0 0.421735 3.37536 0 -0.518793 -0.28125 0.65625 0.192684 -0.145043 0.445862 0.386751 0.190383 1.76357 1.11467 0 0.421735 3.37536 0 -0.518793 +0.25 0.65625 0.1928 -0.144868 0.44751 0.376933 0.204917 1.85192 1.09994 0 0.421735 3.37536 0 -0.518793 +0.28125 0.65625 0.192803 -0.14487 0.447449 0.387098 0.224212 1.82943 1.11762 0 0.421735 3.37536 0 -0.518793 -0.28125 0.625 0.18675 -0.140617 0.484039 0.377721 0.13715 1.57968 1.15797 0 0.439526 3.37339 0 -0.535261 -0.3125 0.625 0.186746 -0.14061 0.484253 0.388187 0.146908 1.64303 1.17686 0 0.439526 3.37339 0 -0.535261 +0.28125 0.625 0.186874 -0.140431 0.486206 0.377646 0.222764 1.70409 1.16083 0 0.439526 3.37339 0 -0.535261 +0.3125 0.625 0.186876 -0.14043 0.486206 0.388446 0.228616 1.69945 1.17976 0 0.439526 3.37339 0 -0.535261 -0.28125 0.65625 0.192684 -0.145043 0.445862 0.386751 0.190383 1.76357 1.11467 0 0.421735 3.37536 0 -0.518793 -0.3125 0.65625 0.19268 -0.145036 0.445435 0.39804 0.177039 1.79796 1.13377 0 0.421735 3.37536 0 -0.518793 +0.28125 0.65625 0.192803 -0.14487 0.447449 0.387235 0.224212 1.82943 1.11762 0 0.421735 3.37536 0 -0.518793 +0.3125 0.65625 0.192804 -0.144869 0.447266 0.398036 0.243963 1.84496 1.13642 0 0.421735 3.37536 0 -0.518793 -0.25 0.65625 0.192689 -0.145042 0.445618 0.376804 0.100754 1.74043 1.09723 0 0.421735 3.37536 0 -0.518793 -0.28125 0.65625 0.192684 -0.145043 0.445862 0.386751 0.190383 1.76357 1.11467 0 0.421735 3.37536 0 -0.518793 +0.25 0.65625 0.1928 -0.144868 0.44751 0.376702 0.204917 1.85192 1.09994 0 0.421735 3.37536 0 -0.518793 +0.28125 0.65625 0.192803 -0.14487 0.447449 0.38711 0.224212 1.82943 1.11762 0 0.421735 3.37536 0 -0.518793 -0.25 0.6875 0.198816 -0.149604 0.406616 0.386127 0.133915 1.93258 1.05381 0 0.403379 3.3774 0 -0.502832 -0.28125 0.6875 0.198812 -0.149604 0.406647 0.396532 0.19187 1.97469 1.07128 0 0.403379 3.3774 0 -0.502832 +0.25 0.6875 0.198918 -0.149446 0.408417 0.386247 0.215682 1.98722 1.05654 0 0.403379 3.3774 0 -0.502832 +0.28125 0.6875 0.19892 -0.149448 0.408356 0.396655 0.232149 1.97902 1.07424 0 0.403379 3.3774 0 -0.502832 -0.28125 0.65625 0.192684 -0.145043 0.445862 0.386751 0.190383 1.76357 1.11467 0 0.421735 3.37536 0 -0.518793 -0.3125 0.65625 0.19268 -0.145036 0.445435 0.39804 0.177039 1.79796 1.13377 0 0.421735 3.37536 0 -0.518793 +0.28125 0.65625 0.192803 -0.14487 0.447449 0.386943 0.224212 1.82943 1.11762 0 0.421735 3.37536 0 -0.518793 +0.3125 0.65625 0.192804 -0.144869 0.447266 0.398095 0.243963 1.84496 1.13642 0 0.421735 3.37536 0 -0.518793 -0.28125 0.6875 0.198812 -0.149604 0.406647 0.396532 0.19187 1.97469 1.07128 0 0.403379 3.3774 0 -0.502832 -0.3125 0.6875 0.198806 -0.149598 0.406555 0.407788 0.189342 1.95063 1.09005 0 0.403379 3.3774 0 -0.502832 +0.28125 0.6875 0.19892 -0.149448 0.408356 0.396833 0.232149 1.97902 1.07424 0 0.403379 3.3774 0 -0.502832 +0.3125 0.6875 0.19892 -0.149447 0.408173 0.407986 0.250446 1.98497 1.09312 0 0.403379 3.3774 0 -0.502832 -0.3125 0.625 0.186746 -0.14061 0.484253 0.388187 0.146908 1.64303 1.17686 0 0.439526 3.37339 0 -0.535261 -0.34375 0.625 0.186744 -0.140598 0.484344 0.399277 0.147216 1.6192 1.19674 0 0.439526 3.37339 0 -0.535261 +0.3125 0.625 0.186876 -0.14043 0.486206 0.388243 0.228616 1.69945 1.17976 0 0.439526 3.37339 0 -0.535261 +0.34375 0.625 0.186876 -0.140425 0.48587 0.399853 0.235815 1.72385 1.19981 0 0.439526 3.37339 0 -0.535261 -0.3125 0.65625 0.19268 -0.145036 0.445435 0.39804 0.177039 1.79796 1.13377 0 0.421735 3.37536 0 -0.518793 -0.34375 0.65625 0.192677 -0.145024 0.445984 0.409045 0.16366 1.79846 1.15335 0 0.421735 3.37536 0 -0.518793 +0.3125 0.65625 0.192804 -0.144869 0.447266 0.398197 0.243963 1.84496 1.13642 0 0.421735 3.37536 0 -0.518793 +0.34375 0.65625 0.192804 -0.144865 0.446991 0.409807 0.233293 1.83633 1.15651 0 0.421735 3.37536 0 -0.518793 -0.34375 0.625 0.186744 -0.140598 0.484344 0.399277 0.147216 1.6192 1.19674 0 0.439526 3.37339 0 -0.535261 -0.375 0.625 0.186742 -0.140584 0.48465 0.411024 0.184283 1.63646 1.218 0 0.439526 3.37339 0 -0.535261 +0.34375 0.625 0.186876 -0.140425 0.48587 0.399649 0.235815 1.72385 1.19981 0 0.439526 3.37339 0 -0.535261 +0.375 0.625 0.186875 -0.140419 0.485748 0.411856 0.213491 1.70356 1.22115 0 0.439526 3.37339 0 -0.535261 -0.34375 0.65625 0.192677 -0.145024 0.445984 0.409045 0.16366 1.79846 1.15335 0 0.421735 3.37536 0 -0.518793 -0.375 0.65625 0.192674 -0.145011 0.445801 0.421558 0.221798 1.8057 1.17481 0 0.421735 3.37536 0 -0.518793 +0.34375 0.65625 0.192804 -0.144865 0.446991 0.409936 0.233293 1.83633 1.15651 0 0.421735 3.37536 0 -0.518793 +0.375 0.65625 0.192802 -0.144858 0.44696 0.422142 0.228121 1.83503 1.17781 0 0.421735 3.37536 0 -0.518793 -0.3125 0.65625 0.19268 -0.145036 0.445435 0.39804 0.177039 1.79796 1.13377 0 0.421735 3.37536 0 -0.518793 -0.34375 0.65625 0.192677 -0.145024 0.445984 0.409045 0.16366 1.79846 1.15335 0 0.421735 3.37536 0 -0.518793 +0.3125 0.65625 0.192804 -0.144869 0.447266 0.397907 0.243963 1.84496 1.13642 0 0.421735 3.37536 0 -0.518793 +0.34375 0.65625 0.192804 -0.144865 0.446991 0.409837 0.233293 1.83633 1.15651 0 0.421735 3.37536 0 -0.518793 -0.3125 0.6875 0.198806 -0.149598 0.406555 0.407788 0.189342 1.95063 1.09005 0 0.403379 3.3774 0 -0.502832 -0.34375 0.6875 0.1988 -0.149587 0.406677 0.419723 0.16531 2.0029 1.11018 0 0.403379 3.3774 0 -0.502832 +0.3125 0.6875 0.19892 -0.149447 0.408173 0.40816 0.250446 1.98497 1.09312 0 0.403379 3.3774 0 -0.502832 +0.34375 0.6875 0.198919 -0.149443 0.407928 0.420089 0.245977 1.95536 1.11302 0 0.403379 3.3774 0 -0.502832 -0.34375 0.65625 0.192677 -0.145024 0.445984 0.409045 0.16366 1.79846 1.15335 0 0.421735 3.37536 0 -0.518793 -0.375 0.65625 0.192674 -0.145011 0.445801 0.421558 0.221798 1.8057 1.17481 0 0.421735 3.37536 0 -0.518793 +0.34375 0.65625 0.192804 -0.144865 0.446991 0.409661 0.233293 1.83633 1.15651 0 0.421735 3.37536 0 -0.518793 +0.375 0.65625 0.192802 -0.144858 0.44696 0.422208 0.228121 1.83503 1.17781 0 0.421735 3.37536 0 -0.518793 -0.34375 0.6875 0.1988 -0.149587 0.406677 0.419723 0.16531 2.0029 1.11018 0 0.403379 3.3774 0 -0.502832 -0.375 0.6875 0.198797 -0.149575 0.406921 0.432451 0.203537 1.98761 1.13176 0 0.403379 3.3774 0 -0.502832 +0.34375 0.6875 0.198919 -0.149443 0.407928 0.420276 0.245977 1.95536 1.11302 0 0.403379 3.3774 0 -0.502832 +0.375 0.6875 0.198918 -0.149437 0.407837 0.432824 0.249526 1.98181 1.13438 0 0.403379 3.3774 0 -0.502832 -0.25 0.6875 0.198816 -0.149604 0.406616 0.386127 0.133915 1.93258 1.05381 0 0.403379 3.3774 0 -0.502832 -0.28125 0.6875 0.198812 -0.149604 0.406647 0.396532 0.19187 1.97469 1.07128 0 0.403379 3.3774 0 -0.502832 +0.25 0.6875 0.198918 -0.149446 0.408417 0.385972 0.215682 1.98722 1.05654 0 0.403379 3.3774 0 -0.502832 +0.28125 0.6875 0.19892 -0.149448 0.408356 0.396714 0.232149 1.97902 1.07424 0 0.403379 3.3774 0 -0.502832 -0.25 0.71875 0.205138 -0.154309 0.367584 0.395698 0.140037 2.14204 1.01041 0 0.38444 3.37951 0 -0.487361 -0.28125 0.71875 0.205134 -0.154308 0.367401 0.406608 0.221381 2.14295 1.02795 0 0.38444 3.37951 0 -0.487361 +0.25 0.71875 0.20523 -0.154166 0.369141 0.395783 0.212785 2.15545 1.01306 0 0.38444 3.37951 0 -0.487361 +0.28125 0.71875 0.205231 -0.154167 0.36911 0.406525 0.231564 2.14546 1.03062 0 0.38444 3.37951 0 -0.487361 -0.28125 0.6875 0.198812 -0.149604 0.406647 0.396532 0.19187 1.97469 1.07128 0 0.403379 3.3774 0 -0.502832 -0.3125 0.6875 0.198806 -0.149598 0.406555 0.407788 0.189342 1.95063 1.09005 0 0.403379 3.3774 0 -0.502832 +0.28125 0.6875 0.19892 -0.149448 0.408356 0.396551 0.232149 1.97902 1.07424 0 0.403379 3.3774 0 -0.502832 +0.3125 0.6875 0.19892 -0.149447 0.408173 0.408048 0.250446 1.98497 1.09312 0 0.403379 3.3774 0 -0.502832 -0.28125 0.71875 0.205134 -0.154308 0.367401 0.406608 0.221381 2.14295 1.02795 0 0.38444 3.37951 0 -0.487361 -0.3125 0.71875 0.205127 -0.154302 0.36731 0.418219 0.213207 2.14808 1.04672 0 0.38444 3.37951 0 -0.487361 +0.28125 0.71875 0.205231 -0.154167 0.36911 0.406678 0.231564 2.14546 1.03062 0 0.38444 3.37951 0 -0.487361 +0.3125 0.71875 0.20523 -0.154166 0.368927 0.418176 0.234845 2.16564 1.0495 0 0.38444 3.37951 0 -0.487361 -0.25 0.71875 0.205138 -0.154309 0.367584 0.395698 0.140037 2.14204 1.01041 0 0.38444 3.37951 0 -0.487361 -0.28125 0.71875 0.205134 -0.154308 0.367401 0.406608 0.221381 2.14295 1.02795 0 0.38444 3.37951 0 -0.487361 +0.25 0.71875 0.20523 -0.154166 0.369141 0.395517 0.212785 2.15545 1.01306 0 0.38444 3.37951 0 -0.487361 +0.28125 0.71875 0.205231 -0.154167 0.36911 0.406563 0.231564 2.14546 1.03062 0 0.38444 3.37951 0 -0.487361 -0.25 0.75 0.21166 -0.159161 0.327698 0.405991 0.177871 2.32724 0.966953 0 0.3649 3.38168 0 -0.472367 -0.28125 0.75 0.211655 -0.15916 0.32782 0.416933 0.212407 2.33463 0.984304 0 0.3649 3.38168 0 -0.472367 +0.25 0.75 0.211741 -0.159032 0.32962 0.405563 0.185283 2.38053 0.969412 0 0.3649 3.38168 0 -0.472367 +0.28125 0.75 0.211742 -0.159033 0.329651 0.41661 0.253097 2.38079 0.987127 0 0.3649 3.38168 0 -0.472367 -0.28125 0.71875 0.205134 -0.154308 0.367401 0.406608 0.221381 2.14295 1.02795 0 0.38444 3.37951 0 -0.487361 -0.3125 0.71875 0.205127 -0.154302 0.36731 0.418219 0.213207 2.14808 1.04672 0 0.38444 3.37951 0 -0.487361 +0.28125 0.71875 0.205231 -0.154167 0.36911 0.406324 0.231564 2.14546 1.03062 0 0.38444 3.37951 0 -0.487361 +0.3125 0.71875 0.20523 -0.154166 0.368927 0.418256 0.234845 2.16564 1.0495 0 0.38444 3.37951 0 -0.487361 -0.28125 0.75 0.211655 -0.15916 0.32782 0.416933 0.212407 2.33463 0.984304 0 0.3649 3.38168 0 -0.472367 -0.3125 0.75 0.211648 -0.159153 0.327667 0.429005 0.231802 2.35601 1.00316 0 0.3649 3.38168 0 -0.472367 +0.28125 0.75 0.211742 -0.159033 0.329651 0.416835 0.253097 2.38079 0.987127 0 0.3649 3.38168 0 -0.472367 +0.3125 0.75 0.211741 -0.159031 0.329254 0.428766 0.268826 2.37257 1.00593 0 0.3649 3.38168 0 -0.472367 -0.3125 0.6875 0.198806 -0.149598 0.406555 0.407788 0.189342 1.95063 1.09005 0 0.403379 3.3774 0 -0.502832 -0.34375 0.6875 0.1988 -0.149587 0.406677 0.419723 0.16531 2.0029 1.11018 0 0.403379 3.3774 0 -0.502832 +0.3125 0.6875 0.19892 -0.149447 0.408173 0.407904 0.250446 1.98497 1.09312 0 0.403379 3.3774 0 -0.502832 +0.34375 0.6875 0.198919 -0.149443 0.407928 0.42008 0.245977 1.95536 1.11302 0 0.403379 3.3774 0 -0.502832 -0.3125 0.71875 0.205127 -0.154302 0.36731 0.418219 0.213207 2.14808 1.04672 0 0.38444 3.37951 0 -0.487361 -0.34375 0.71875 0.20512 -0.154293 0.36734 0.430504 0.203006 2.17931 1.06671 0 0.38444 3.37951 0 -0.487361 +0.3125 0.71875 0.20523 -0.154166 0.368927 0.418323 0.234845 2.16564 1.0495 0 0.38444 3.37951 0 -0.487361 +0.34375 0.71875 0.205228 -0.154162 0.368927 0.430499 0.253073 2.14661 1.06955 0 0.38444 3.37951 0 -0.487361 -0.34375 0.6875 0.1988 -0.149587 0.406677 0.419723 0.16531 2.0029 1.11018 0 0.403379 3.3774 0 -0.502832 -0.375 0.6875 0.198797 -0.149575 0.406921 0.432451 0.203537 1.98761 1.13176 0 0.403379 3.3774 0 -0.502832 +0.34375 0.6875 0.198919 -0.149443 0.407928 0.419903 0.245977 1.95536 1.11302 0 0.403379 3.3774 0 -0.502832 +0.375 0.6875 0.198918 -0.149437 0.407837 0.432942 0.249526 1.98181 1.13438 0 0.403379 3.3774 0 -0.502832 -0.34375 0.71875 0.20512 -0.154293 0.36734 0.430504 0.203006 2.17931 1.06671 0 0.38444 3.37951 0 -0.487361 -0.375 0.71875 0.205116 -0.154282 0.36734 0.443707 0.201534 2.18671 1.08816 0 0.38444 3.37951 0 -0.487361 +0.34375 0.71875 0.205228 -0.154162 0.368927 0.430693 0.253073 2.14661 1.06955 0 0.38444 3.37951 0 -0.487361 +0.375 0.71875 0.205226 -0.154157 0.368591 0.443731 0.274032 2.14058 1.09084 0 0.38444 3.37951 0 -0.487361 -0.3125 0.71875 0.205127 -0.154302 0.36731 0.418219 0.213207 2.14808 1.04672 0 0.38444 3.37951 0 -0.487361 -0.34375 0.71875 0.20512 -0.154293 0.36734 0.430504 0.203006 2.17931 1.06671 0 0.38444 3.37951 0 -0.487361 +0.3125 0.71875 0.20523 -0.154166 0.368927 0.418031 0.234845 2.16564 1.0495 0 0.38444 3.37951 0 -0.487361 +0.34375 0.71875 0.205228 -0.154162 0.368927 0.43057 0.253073 2.14661 1.06955 0 0.38444 3.37951 0 -0.487361 -0.3125 0.75 0.211648 -0.159153 0.327667 0.429005 0.231802 2.35601 1.00316 0 0.3649 3.38168 0 -0.472367 -0.34375 0.75 0.211642 -0.159145 0.327606 0.441723 0.205102 2.38823 1.02312 0 0.3649 3.38168 0 -0.472367 +0.3125 0.75 0.211741 -0.159031 0.329254 0.428947 0.268826 2.37257 1.00593 0 0.3649 3.38168 0 -0.472367 +0.34375 0.75 0.211738 -0.159028 0.329193 0.441485 0.240574 2.38672 1.02593 0 0.3649 3.38168 0 -0.472367 -0.34375 0.71875 0.20512 -0.154293 0.36734 0.430504 0.203006 2.17931 1.06671 0 0.38444 3.37951 0 -0.487361 -0.375 0.71875 0.205116 -0.154282 0.36734 0.443707 0.201534 2.18671 1.08816 0 0.38444 3.37951 0 -0.487361 +0.34375 0.71875 0.205228 -0.154162 0.368927 0.430346 0.253073 2.14661 1.06955 0 0.38444 3.37951 0 -0.487361 +0.375 0.71875 0.205226 -0.154157 0.368591 0.443799 0.274032 2.14058 1.09084 0 0.38444 3.37951 0 -0.487361 -0.34375 0.75 0.211642 -0.159145 0.327606 0.441723 0.205102 2.38823 1.02312 0 0.3649 3.38168 0 -0.472367 -0.375 0.75 0.211637 -0.159136 0.327759 0.455172 0.206518 2.39076 1.04445 0 0.3649 3.38168 0 -0.472367 +0.34375 0.75 0.211738 -0.159028 0.329193 0.441677 0.240574 2.38672 1.02593 0 0.3649 3.38168 0 -0.472367 +0.375 0.75 0.211735 -0.159024 0.329132 0.455131 0.255606 2.34872 1.04714 0 0.3649 3.38168 0 -0.472367 -0.375 0.625 0.186742 -0.140584 0.48465 0.411024 0.184283 1.63646 1.218 0 0.439526 3.37339 0 -0.535261 -0.40625 0.625 0.186741 -0.140567 0.484344 0.423953 0.211502 1.65858 1.24076 0 0.439526 3.37339 0 -0.535261 +0.375 0.625 0.186875 -0.140419 0.485748 0.411666 0.213491 1.70356 1.22115 0 0.439526 3.37339 0 -0.535261 +0.40625 0.625 0.186873 -0.14041 0.485687 0.424694 0.207707 1.71124 1.2439 0 0.439526 3.37339 0 -0.535261 -0.375 0.65625 0.192674 -0.145011 0.445801 0.421558 0.221798 1.8057 1.17481 0 0.421735 3.37536 0 -0.518793 -0.40625 0.65625 0.192671 -0.144995 0.445587 0.434927 0.193249 1.80485 1.19771 0 0.421735 3.37536 0 -0.518793 +0.375 0.65625 0.192802 -0.144858 0.44696 0.422356 0.228121 1.83503 1.17781 0 0.421735 3.37536 0 -0.518793 +0.40625 0.65625 0.1928 -0.14485 0.446747 0.435384 0.238475 1.85424 1.20053 0 0.421735 3.37536 0 -0.518793 -0.40625 0.625 0.186741 -0.140567 0.484344 0.423953 0.211502 1.65858 1.24076 0 0.439526 3.37339 0 -0.535261 -0.4375 0.625 0.18674 -0.140549 0.484314 0.437669 0.172888 1.62998 1.2652 0 0.439526 3.37339 0 -0.535261 +0.40625 0.625 0.186873 -0.14041 0.485687 0.424435 0.207707 1.71124 1.2439 0 0.439526 3.37339 0 -0.535261 +0.4375 0.625 0.186871 -0.1404 0.485565 0.438264 0.19487 1.71389 1.2679 0 0.439526 3.37339 0 -0.535261 -0.40625 0.65625 0.192671 -0.144995 0.445587 0.434927 0.193249 1.80485 1.19771 0 0.421735 3.37536 0 -0.518793 -0.4375 0.65625 0.192668 -0.144979 0.44574 0.448523 0.135729 1.80421 1.22138 0 0.421735 3.37536 0 -0.518793 +0.40625 0.65625 0.1928 -0.14485 0.446747 0.435576 0.238475 1.85424 1.20053 0 0.421735 3.37536 0 -0.518793 +0.4375 0.65625 0.192797 -0.14484 0.446625 0.449405 0.258578 1.86394 1.22484 0 0.421735 3.37536 0 -0.518793 -0.375 0.65625 0.192674 -0.145011 0.445801 0.421558 0.221798 1.8057 1.17481 0 0.421735 3.37536 0 -0.518793 -0.40625 0.65625 0.192671 -0.144995 0.445587 0.434927 0.193249 1.80485 1.19771 0 0.421735 3.37536 0 -0.518793 +0.375 0.65625 0.192802 -0.144858 0.44696 0.421976 0.228121 1.83503 1.17781 0 0.421735 3.37536 0 -0.518793 +0.40625 0.65625 0.1928 -0.14485 0.446747 0.43547 0.238475 1.85424 1.20053 0 0.421735 3.37536 0 -0.518793 -0.375 0.6875 0.198797 -0.149575 0.406921 0.432451 0.203537 1.98761 1.13176 0 0.403379 3.3774 0 -0.502832 -0.40625 0.6875 0.198795 -0.149561 0.406616 0.445999 0.228009 1.96238 1.15416 0 0.403379 3.3774 0 -0.502832 +0.375 0.6875 0.198918 -0.149437 0.407837 0.433039 0.249526 1.98181 1.13438 0 0.403379 3.3774 0 -0.502832 +0.40625 0.6875 0.198915 -0.149428 0.407562 0.446533 0.258218 1.98084 1.15708 0 0.403379 3.3774 0 -0.502832 -0.40625 0.65625 0.192671 -0.144995 0.445587 0.434927 0.193249 1.80485 1.19771 0 0.421735 3.37536 0 -0.518793 -0.4375 0.65625 0.192668 -0.144979 0.44574 0.448523 0.135729 1.80421 1.22138 0 0.421735 3.37536 0 -0.518793 +0.40625 0.65625 0.1928 -0.14485 0.446747 0.435218 0.238475 1.85424 1.20053 0 0.421735 3.37536 0 -0.518793 +0.4375 0.65625 0.192797 -0.14484 0.446625 0.449503 0.258578 1.86394 1.22484 0 0.421735 3.37536 0 -0.518793 -0.40625 0.6875 0.198795 -0.149561 0.406616 0.445999 0.228009 1.96238 1.15416 0 0.403379 3.3774 0 -0.502832 -0.4375 0.6875 0.198791 -0.149545 0.406555 0.460575 0.173127 1.97588 1.17853 0 0.403379 3.3774 0 -0.502832 +0.40625 0.6875 0.198915 -0.149428 0.407562 0.44676 0.258218 1.98084 1.15708 0 0.403379 3.3774 0 -0.502832 +0.4375 0.6875 0.198912 -0.149419 0.407379 0.461045 0.257735 2.00441 1.18131 0 0.403379 3.3774 0 -0.502832 -0.4375 0.625 0.18674 -0.140549 0.484314 0.437669 0.172888 1.62998 1.2652 0 0.439526 3.37339 0 -0.535261 -0.46875 0.625 0.18674 -0.140531 0.484528 0.45179 0.168811 1.60568 1.29061 0 0.439526 3.37339 0 -0.535261 +0.4375 0.625 0.186871 -0.1404 0.485565 0.437939 0.19487 1.71389 1.2679 0 0.439526 3.37339 0 -0.535261 +0.46875 0.625 0.186868 -0.14039 0.485687 0.45269 0.212838 1.76105 1.29383 0 0.439526 3.37339 0 -0.535261 -0.4375 0.65625 0.192668 -0.144979 0.44574 0.448523 0.135729 1.80421 1.22138 0 0.421735 3.37536 0 -0.518793 -0.46875 0.65625 0.192668 -0.144961 0.446075 0.463624 0.100539 1.79706 1.24782 0 0.421735 3.37536 0 -0.518793 +0.4375 0.65625 0.192797 -0.14484 0.446625 0.449759 0.258578 1.86394 1.22484 0 0.421735 3.37536 0 -0.518793 +0.46875 0.65625 0.192793 -0.14483 0.446136 0.46451 0.22761 1.90372 1.25047 0 0.421735 3.37536 0 -0.518793 -0.46875 0.625 0.18674 -0.140531 0.484528 0.45179 0.168811 1.60568 1.29061 0 0.439526 3.37339 0 -0.535261 -0.5 0.625 0.18674 -0.140512 0.484467 0.467371 0.167995 1.56428 1.31835 0 0.439526 3.37339 0 -0.535261 +0.46875 0.625 0.186868 -0.14039 0.485687 0.452386 0.212838 1.76105 1.29383 0 0.439526 3.37339 0 -0.535261 +0.5 0.625 0.186864 -0.140378 0.485352 0.468055 0.229373 1.72273 1.32116 0 0.439526 3.37339 0 -0.535261 -0.46875 0.65625 0.192668 -0.144961 0.446075 0.463624 0.100539 1.79706 1.24782 0 0.421735 3.37536 0 -0.518793 -0.5 0.65625 0.192671 -0.144942 0.446655 0.478663 0.165747 1.77178 1.27441 0 0.421735 3.37536 0 -0.518793 +0.46875 0.65625 0.192793 -0.14483 0.446136 0.464683 0.22761 1.90372 1.25047 0 0.421735 3.37536 0 -0.518793 +0.5 0.65625 0.192789 -0.144818 0.44635 0.480353 0.194877 1.86714 1.27788 0 0.421735 3.37536 0 -0.518793 -0.4375 0.65625 0.192668 -0.144979 0.44574 0.448523 0.135729 1.80421 1.22138 0 0.421735 3.37536 0 -0.518793 -0.46875 0.65625 0.192668 -0.144961 0.446075 0.463624 0.100539 1.79706 1.24782 0 0.421735 3.37536 0 -0.518793 +0.4375 0.65625 0.192797 -0.14484 0.446625 0.449325 0.258578 1.86394 1.22484 0 0.421735 3.37536 0 -0.518793 +0.46875 0.65625 0.192793 -0.14483 0.446136 0.464649 0.22761 1.90372 1.25047 0 0.421735 3.37536 0 -0.518793 -0.4375 0.6875 0.198791 -0.149545 0.406555 0.460575 0.173127 1.97588 1.17853 0 0.403379 3.3774 0 -0.502832 -0.46875 0.6875 0.198789 -0.149528 0.40686 0.475557 0.146409 2.00572 1.20394 0 0.403379 3.3774 0 -0.502832 +0.4375 0.6875 0.198912 -0.149419 0.407379 0.461227 0.257735 2.00441 1.18131 0 0.403379 3.3774 0 -0.502832 +0.46875 0.6875 0.198908 -0.14941 0.407074 0.476551 0.230142 1.98569 1.20695 0 0.403379 3.3774 0 -0.502832 -0.46875 0.65625 0.192668 -0.144961 0.446075 0.463624 0.100539 1.79706 1.24782 0 0.421735 3.37536 0 -0.518793 -0.5 0.65625 0.192671 -0.144942 0.446655 0.478663 0.165747 1.77178 1.27441 0 0.421735 3.37536 0 -0.518793 +0.46875 0.65625 0.192793 -0.14483 0.446136 0.464406 0.22761 1.90372 1.25047 0 0.421735 3.37536 0 -0.518793 +0.5 0.65625 0.192789 -0.144818 0.44635 0.480376 0.194877 1.86714 1.27788 0 0.421735 3.37536 0 -0.518793 -0.46875 0.6875 0.198789 -0.149528 0.40686 0.475557 0.146409 2.00572 1.20394 0 0.403379 3.3774 0 -0.502832 -0.5 0.6875 0.198789 -0.149511 0.407043 0.492009 0.171827 2.03185 1.2317 0 0.403379 3.3774 0 -0.502832 +0.46875 0.6875 0.198908 -0.14941 0.407074 0.476786 0.230142 1.98569 1.20695 0 0.403379 3.3774 0 -0.502832 +0.5 0.6875 0.198903 -0.149398 0.407166 0.492755 0.212397 2.01605 1.2344 0 0.403379 3.3774 0 -0.502832 -0.375 0.6875 0.198797 -0.149575 0.406921 0.432451 0.203537 1.98761 1.13176 0 0.403379 3.3774 0 -0.502832 -0.40625 0.6875 0.198795 -0.149561 0.406616 0.445999 0.228009 1.96238 1.15416 0 0.403379 3.3774 0 -0.502832 +0.375 0.6875 0.198918 -0.149437 0.407837 0.432678 0.249526 1.98181 1.13438 0 0.403379 3.3774 0 -0.502832 +0.40625 0.6875 0.198915 -0.149428 0.407562 0.446591 0.258218 1.98084 1.15708 0 0.403379 3.3774 0 -0.502832 -0.375 0.71875 0.205116 -0.154282 0.36734 0.443707 0.201534 2.18671 1.08816 0 0.38444 3.37951 0 -0.487361 -0.40625 0.71875 0.205113 -0.154268 0.367371 0.457591 0.202899 2.16139 1.11074 0 0.38444 3.37951 0 -0.487361 +0.375 0.71875 0.205226 -0.154157 0.368591 0.443974 0.274032 2.14058 1.09084 0 0.38444 3.37951 0 -0.487361 +0.40625 0.71875 0.205224 -0.154149 0.368408 0.457887 0.278057 2.13383 1.11357 0 0.38444 3.37951 0 -0.487361 -0.40625 0.6875 0.198795 -0.149561 0.406616 0.445999 0.228009 1.96238 1.15416 0 0.403379 3.3774 0 -0.502832 -0.4375 0.6875 0.198791 -0.149545 0.406555 0.460575 0.173127 1.97588 1.17853 0 0.403379 3.3774 0 -0.502832 +0.40625 0.6875 0.198915 -0.149428 0.407562 0.446357 0.258218 1.98084 1.15708 0 0.403379 3.3774 0 -0.502832 +0.4375 0.6875 0.198912 -0.149419 0.407379 0.461138 0.257735 2.00441 1.18131 0 0.403379 3.3774 0 -0.502832 -0.40625 0.71875 0.205113 -0.154268 0.367371 0.457591 0.202899 2.16139 1.11074 0 0.38444 3.37951 0 -0.487361 -0.4375 0.71875 0.205108 -0.154254 0.36734 0.472478 0.195393 2.14193 1.1349 0 0.38444 3.37951 0 -0.487361 +0.40625 0.71875 0.205224 -0.154149 0.368408 0.458089 0.278057 2.13383 1.11357 0 0.38444 3.37951 0 -0.487361 +0.4375 0.71875 0.20522 -0.154141 0.368073 0.47287 0.28055 2.14979 1.13774 0 0.38444 3.37951 0 -0.487361 -0.375 0.71875 0.205116 -0.154282 0.36734 0.443707 0.201534 2.18671 1.08816 0 0.38444 3.37951 0 -0.487361 -0.40625 0.71875 0.205113 -0.154268 0.367371 0.457591 0.202899 2.16139 1.11074 0 0.38444 3.37951 0 -0.487361 +0.375 0.71875 0.205226 -0.154157 0.368591 0.443629 0.274032 2.14058 1.09084 0 0.38444 3.37951 0 -0.487361 +0.40625 0.71875 0.205224 -0.154149 0.368408 0.457937 0.278057 2.13383 1.11357 0 0.38444 3.37951 0 -0.487361 -0.375 0.75 0.211637 -0.159136 0.327759 0.455172 0.206518 2.39076 1.04445 0 0.3649 3.38168 0 -0.472367 -0.40625 0.75 0.211632 -0.159123 0.327637 0.469649 0.205563 2.37389 1.06713 0 0.3649 3.38168 0 -0.472367 +0.375 0.75 0.211735 -0.159024 0.329132 0.455281 0.255606 2.34872 1.04714 0 0.3649 3.38168 0 -0.472367 +0.40625 0.75 0.211732 -0.159017 0.328918 0.469589 0.283944 2.34174 1.06991 0 0.3649 3.38168 0 -0.472367 -0.40625 0.71875 0.205113 -0.154268 0.367371 0.457591 0.202899 2.16139 1.11074 0 0.38444 3.37951 0 -0.487361 -0.4375 0.71875 0.205108 -0.154254 0.36734 0.472478 0.195393 2.14193 1.1349 0 0.38444 3.37951 0 -0.487361 +0.40625 0.71875 0.205224 -0.154149 0.368408 0.457703 0.278057 2.13383 1.11357 0 0.38444 3.37951 0 -0.487361 +0.4375 0.71875 0.20522 -0.154141 0.368073 0.472962 0.28055 2.14979 1.13774 0 0.38444 3.37951 0 -0.487361 -0.40625 0.75 0.211632 -0.159123 0.327637 0.469649 0.205563 2.37389 1.06713 0 0.3649 3.38168 0 -0.472367 -0.4375 0.75 0.211627 -0.159109 0.327789 0.484993 0.198443 2.36134 1.09144 0 0.3649 3.38168 0 -0.472367 +0.40625 0.75 0.211732 -0.159017 0.328918 0.469813 0.283944 2.34174 1.06991 0 0.3649 3.38168 0 -0.472367 +0.4375 0.75 0.211728 -0.159009 0.328583 0.485072 0.274948 2.33017 1.09403 0 0.3649 3.38168 0 -0.472367 -0.4375 0.6875 0.198791 -0.149545 0.406555 0.460575 0.173127 1.97588 1.17853 0 0.403379 3.3774 0 -0.502832 -0.46875 0.6875 0.198789 -0.149528 0.40686 0.475557 0.146409 2.00572 1.20394 0 0.403379 3.3774 0 -0.502832 +0.4375 0.6875 0.198912 -0.149419 0.407379 0.460898 0.257735 2.00441 1.18131 0 0.403379 3.3774 0 -0.502832 +0.46875 0.6875 0.198908 -0.14941 0.407074 0.47662 0.230142 1.98569 1.20695 0 0.403379 3.3774 0 -0.502832 -0.4375 0.71875 0.205108 -0.154254 0.36734 0.472478 0.195393 2.14193 1.1349 0 0.38444 3.37951 0 -0.487361 -0.46875 0.71875 0.205105 -0.154238 0.367401 0.488389 0.166213 2.18375 1.16081 0 0.38444 3.37951 0 -0.487361 +0.4375 0.71875 0.20522 -0.154141 0.368073 0.473108 0.28055 2.14979 1.13774 0 0.38444 3.37951 0 -0.487361 +0.46875 0.71875 0.205215 -0.154132 0.367828 0.48883 0.257517 2.12704 1.16336 0 0.38444 3.37951 0 -0.487361 -0.46875 0.6875 0.198789 -0.149528 0.40686 0.475557 0.146409 2.00572 1.20394 0 0.403379 3.3774 0 -0.502832 -0.5 0.6875 0.198789 -0.149511 0.407043 0.492009 0.171827 2.03185 1.2317 0 0.403379 3.3774 0 -0.502832 +0.46875 0.6875 0.198908 -0.14941 0.407074 0.476345 0.230142 1.98569 1.20695 0 0.403379 3.3774 0 -0.502832 +0.5 0.6875 0.198903 -0.149398 0.407166 0.492956 0.212397 2.01605 1.2344 0 0.403379 3.3774 0 -0.502832 -0.46875 0.71875 0.205105 -0.154238 0.367401 0.488389 0.166213 2.18375 1.16081 0 0.38444 3.37951 0 -0.487361 -0.5 0.71875 0.205104 -0.154221 0.367676 0.505004 0.170323 2.19632 1.18807 0 0.38444 3.37951 0 -0.487361 +0.46875 0.71875 0.205215 -0.154132 0.367828 0.489086 0.257517 2.12704 1.16336 0 0.38444 3.37951 0 -0.487361 +0.5 0.71875 0.20521 -0.154121 0.367706 0.505697 0.236769 2.16451 1.19075 0 0.38444 3.37951 0 -0.487361 -0.4375 0.71875 0.205108 -0.154254 0.36734 0.472478 0.195393 2.14193 1.1349 0 0.38444 3.37951 0 -0.487361 -0.46875 0.71875 0.205105 -0.154238 0.367401 0.488389 0.166213 2.18375 1.16081 0 0.38444 3.37951 0 -0.487361 +0.4375 0.71875 0.20522 -0.154141 0.368073 0.472755 0.28055 2.14979 1.13774 0 0.38444 3.37951 0 -0.487361 +0.46875 0.71875 0.205215 -0.154132 0.367828 0.488933 0.257517 2.12704 1.16336 0 0.38444 3.37951 0 -0.487361 -0.4375 0.75 0.211627 -0.159109 0.327789 0.484993 0.198443 2.36134 1.09144 0 0.3649 3.38168 0 -0.472367 -0.46875 0.75 0.211622 -0.159094 0.327728 0.501325 0.192883 2.37492 1.11709 0 0.3649 3.38168 0 -0.472367 +0.4375 0.75 0.211728 -0.159009 0.328583 0.485273 0.274948 2.33017 1.09403 0 0.3649 3.38168 0 -0.472367 +0.46875 0.75 0.211723 -0.159001 0.328491 0.501451 0.264745 2.33398 1.11966 0 0.3649 3.38168 0 -0.472367 -0.46875 0.71875 0.205105 -0.154238 0.367401 0.488389 0.166213 2.18375 1.16081 0 0.38444 3.37951 0 -0.487361 -0.5 0.71875 0.205104 -0.154221 0.367676 0.505004 0.170323 2.19632 1.18807 0 0.38444 3.37951 0 -0.487361 +0.46875 0.71875 0.205215 -0.154132 0.367828 0.488644 0.257517 2.12704 1.16336 0 0.38444 3.37951 0 -0.487361 +0.5 0.71875 0.20521 -0.154121 0.367706 0.505856 0.236769 2.16451 1.19075 0 0.38444 3.37951 0 -0.487361 -0.46875 0.75 0.211622 -0.159094 0.327728 0.501325 0.192883 2.37492 1.11709 0 0.3649 3.38168 0 -0.472367 -0.5 0.75 0.211619 -0.15908 0.327881 0.518717 0.166679 2.41005 1.14463 0 0.3649 3.38168 0 -0.472367 +0.46875 0.75 0.211723 -0.159001 0.328491 0.501709 0.264745 2.33398 1.11966 0 0.3649 3.38168 0 -0.472367 +0.5 0.75 0.211718 -0.158991 0.328247 0.518921 0.266557 2.34061 1.14709 0 0.3649 3.38168 0 -0.472367 -0 0.75 0.2117 -0.158775 0.326416 0.338904 0.195207 2.2995 0.860039 0 0.3649 3.38168 0 -0.472367 -0.03125 0.75 0.211706 -0.158894 0.326477 0.345586 0.198425 2.30281 0.870621 0 0.3649 3.38168 0 -0.472367 +0 0.75 0.2117 -0.158775 0.328888 0.337786 0.188031 2.37299 0.862071 0 0.3649 3.38168 0 -0.472367 +0.03125 0.75 0.211712 -0.158852 0.328949 0.344666 0.176377 2.39666 0.87271 0 0.3649 3.38168 0 -0.472367 -0 0.78125 0.21842 -0.163815 0.286713 0.347085 0.199733 2.51758 0.816403 0 0.34474 3.38392 0 -0.457833 -0.03125 0.78125 0.218429 -0.163925 0.286713 0.354033 0.16238 2.51583 0.827007 0 0.34474 3.38392 0 -0.457833 +0 0.78125 0.21842 -0.163815 0.289062 0.346123 0.22378 2.58995 0.818465 0 0.34474 3.38392 0 -0.457833 +0.03125 0.78125 0.218434 -0.163889 0.289032 0.353003 0.21516 2.59673 0.829053 0 0.34474 3.38392 0 -0.457833 -0.03125 0.75 0.211706 -0.158894 0.326477 0.345586 0.198425 2.30281 0.870621 0 0.3649 3.38168 0 -0.472367 -0.0625 0.75 0.211707 -0.158984 0.326477 0.352766 0.18474 2.27091 0.881927 0 0.3649 3.38168 0 -0.472367 +0.03125 0.75 0.211712 -0.158852 0.328949 0.344487 0.176377 2.39666 0.87271 0 0.3649 3.38168 0 -0.472367 +0.0625 0.75 0.211721 -0.15891 0.329163 0.351731 0.185767 2.40323 0.884218 0 0.3649 3.38168 0 -0.472367 -0.03125 0.78125 0.218429 -0.163925 0.286713 0.354033 0.16238 2.51583 0.827007 0 0.34474 3.38392 0 -0.457833 -0.0625 0.78125 0.218432 -0.164008 0.287109 0.361039 0.150018 2.49463 0.838094 0 0.34474 3.38392 0 -0.457833 +0.03125 0.78125 0.218434 -0.163889 0.289032 0.353151 0.21516 2.59673 0.829053 0 0.34474 3.38392 0 -0.457833 +0.0625 0.78125 0.218443 -0.163943 0.289062 0.360395 0.192092 2.63689 0.840465 0 0.34474 3.38392 0 -0.457833 -0 0.78125 0.21842 -0.163815 0.286713 0.347085 0.199733 2.51758 0.816403 0 0.34474 3.38392 0 -0.457833 -0.03125 0.78125 0.218429 -0.163925 0.286713 0.354033 0.16238 2.51583 0.827007 0 0.34474 3.38392 0 -0.457833 +0 0.78125 0.21842 -0.163815 0.289062 0.345921 0.22378 2.58995 0.818465 0 0.34474 3.38392 0 -0.457833 +0.03125 0.78125 0.218434 -0.163889 0.289032 0.352971 0.21516 2.59673 0.829053 0 0.34474 3.38392 0 -0.457833 -0 0.8125 0.225353 -0.169015 0.246887 0.355447 0.198664 2.78984 0.772649 0 0.32394 3.38623 0 -0.443747 -0.03125 0.8125 0.225366 -0.169114 0.246948 0.36251 0.186131 2.77413 0.783157 0 0.32394 3.38623 0 -0.443747 +0 0.8125 0.225353 -0.169015 0.248993 0.354453 0.222711 2.87408 0.774633 0 0.32394 3.38623 0 -0.443747 +0.03125 0.8125 0.225368 -0.169084 0.249023 0.361503 0.237855 2.87507 0.785342 0 0.32394 3.38623 0 -0.443747 -0.03125 0.78125 0.218429 -0.163925 0.286713 0.354033 0.16238 2.51583 0.827007 0 0.34474 3.38392 0 -0.457833 -0.0625 0.78125 0.218432 -0.164008 0.287109 0.361039 0.150018 2.49463 0.838094 0 0.34474 3.38392 0 -0.457833 +0.03125 0.78125 0.218434 -0.163889 0.289032 0.352859 0.21516 2.59673 0.829053 0 0.34474 3.38392 0 -0.457833 +0.0625 0.78125 0.218443 -0.163943 0.289062 0.36044 0.192092 2.63689 0.840465 0 0.34474 3.38392 0 -0.457833 -0.03125 0.8125 0.225366 -0.169114 0.246948 0.36251 0.186131 2.77413 0.783157 0 0.32394 3.38623 0 -0.443747 -0.0625 0.8125 0.225371 -0.169187 0.247131 0.369998 0.179996 2.80549 0.794417 0 0.32394 3.38623 0 -0.443747 +0.03125 0.8125 0.225368 -0.169084 0.249023 0.361616 0.237855 2.87507 0.785342 0 0.32394 3.38623 0 -0.443747 +0.0625 0.8125 0.225378 -0.169133 0.248871 0.369197 0.220958 2.87929 0.796571 0 0.32394 3.38623 0 -0.443747 -0.0625 0.75 0.211707 -0.158984 0.326477 0.352766 0.18474 2.27091 0.881927 0 0.3649 3.38168 0 -0.472367 -0.09375 0.75 0.211702 -0.159052 0.32663 0.360229 0.153707 2.2605 0.89383 0 0.3649 3.38168 0 -0.472367 +0.0625 0.75 0.211721 -0.15891 0.329163 0.351643 0.185767 2.40323 0.884218 0 0.3649 3.38168 0 -0.472367 +0.09375 0.75 0.211729 -0.158953 0.329132 0.359397 0.200521 2.38574 0.896242 0 0.3649 3.38168 0 -0.472367 -0.0625 0.78125 0.218432 -0.164008 0.287109 0.361039 0.150018 2.49463 0.838094 0 0.34474 3.38392 0 -0.457833 -0.09375 0.78125 0.218429 -0.164067 0.287201 0.369099 0.170695 2.49745 0.850488 0 0.34474 3.38392 0 -0.457833 +0.0625 0.78125 0.218443 -0.163943 0.289062 0.360478 0.192092 2.63689 0.840465 0 0.34474 3.38392 0 -0.457833 +0.09375 0.78125 0.21845 -0.163982 0.289246 0.368232 0.197517 2.61766 0.852531 0 0.34474 3.38392 0 -0.457833 -0.09375 0.75 0.211702 -0.159052 0.32663 0.360229 0.153707 2.2605 0.89383 0 0.3649 3.38168 0 -0.472367 -0.125 0.75 0.211694 -0.159097 0.326935 0.368157 0.162152 2.22816 0.906619 0 0.3649 3.38168 0 -0.472367 +0.09375 0.75 0.211729 -0.158953 0.329132 0.35928 0.200521 2.38574 0.896242 0 0.3649 3.38168 0 -0.472367 +0.125 0.75 0.211733 -0.158984 0.329224 0.367552 0.206893 2.40198 0.909185 0 0.3649 3.38168 0 -0.472367 -0.09375 0.78125 0.218429 -0.164067 0.287201 0.369099 0.170695 2.49745 0.850488 0 0.34474 3.38392 0 -0.457833 -0.125 0.78125 0.218423 -0.164109 0.287415 0.377165 0.192141 2.52076 0.86301 0 0.34474 3.38392 0 -0.457833 +0.09375 0.78125 0.21845 -0.163982 0.289246 0.368315 0.197517 2.61766 0.852531 0 0.34474 3.38392 0 -0.457833 +0.125 0.78125 0.218455 -0.16401 0.289185 0.376587 0.19713 2.60854 0.865317 0 0.34474 3.38392 0 -0.457833 -0.0625 0.78125 0.218432 -0.164008 0.287109 0.361039 0.150018 2.49463 0.838094 0 0.34474 3.38392 0 -0.457833 -0.09375 0.78125 0.218429 -0.164067 0.287201 0.369099 0.170695 2.49745 0.850488 0 0.34474 3.38392 0 -0.457833 +0.0625 0.78125 0.218443 -0.163943 0.289062 0.360296 0.192092 2.63689 0.840465 0 0.34474 3.38392 0 -0.457833 +0.09375 0.78125 0.21845 -0.163982 0.289246 0.368179 0.197517 2.61766 0.852531 0 0.34474 3.38392 0 -0.457833 -0.0625 0.8125 0.225371 -0.169187 0.247131 0.369998 0.179996 2.80549 0.794417 0 0.32394 3.38623 0 -0.443747 -0.09375 0.8125 0.225369 -0.169239 0.247253 0.378001 0.196514 2.81221 0.806376 0 0.32394 3.38623 0 -0.443747 +0.0625 0.8125 0.225378 -0.169133 0.248871 0.369372 0.220958 2.87929 0.796571 0 0.32394 3.38623 0 -0.443747 +0.09375 0.8125 0.225385 -0.169168 0.249023 0.377254 0.185994 2.89212 0.80867 0 0.32394 3.38623 0 -0.443747 -0.09375 0.78125 0.218429 -0.164067 0.287201 0.369099 0.170695 2.49745 0.850488 0 0.34474 3.38392 0 -0.457833 -0.125 0.78125 0.218423 -0.164109 0.287415 0.377165 0.192141 2.52076 0.86301 0 0.34474 3.38392 0 -0.457833 +0.09375 0.78125 0.21845 -0.163982 0.289246 0.368061 0.197517 2.61766 0.852531 0 0.34474 3.38392 0 -0.457833 +0.125 0.78125 0.218455 -0.16401 0.289185 0.376576 0.19713 2.60854 0.865317 0 0.34474 3.38392 0 -0.457833 -0.09375 0.8125 0.225369 -0.169239 0.247253 0.378001 0.196514 2.81221 0.806376 0 0.32394 3.38623 0 -0.443747 -0.125 0.8125 0.225364 -0.169277 0.247284 0.386643 0.199723 2.81415 0.81919 0 0.32394 3.38623 0 -0.443747 +0.09375 0.8125 0.225385 -0.169168 0.249023 0.377339 0.185994 2.89212 0.80867 0 0.32394 3.38623 0 -0.443747 +0.125 0.8125 0.225389 -0.169193 0.249176 0.385854 0.198761 2.86658 0.821477 0 0.32394 3.38623 0 -0.443747 -0 0.8125 0.225353 -0.169015 0.246887 0.355447 0.198664 2.78984 0.772649 0 0.32394 3.38623 0 -0.443747 -0.03125 0.8125 0.225366 -0.169114 0.246948 0.36251 0.186131 2.77413 0.783157 0 0.32394 3.38623 0 -0.443747 +0 0.8125 0.225353 -0.169015 0.248993 0.354243 0.222711 2.87408 0.774633 0 0.32394 3.38623 0 -0.443747 +0.03125 0.8125 0.225368 -0.169084 0.249023 0.361527 0.237855 2.87507 0.785342 0 0.32394 3.38623 0 -0.443747 -0 0.84375 0.232507 -0.17438 0.206573 0.364186 0.180691 3.139 0.728688 0 0.302479 3.38861 0 -0.430095 -0.03125 0.84375 0.232522 -0.174467 0.206726 0.371383 0.186439 3.148 0.739158 0 0.302479 3.38861 0 -0.430095 +0 0.84375 0.232507 -0.17438 0.208496 0.363169 0.239221 3.2144 0.730645 0 0.302479 3.38861 0 -0.430095 +0.03125 0.84375 0.232523 -0.174443 0.208466 0.370453 0.230896 3.21113 0.741224 0 0.302479 3.38861 0 -0.430095 -0.03125 0.8125 0.225366 -0.169114 0.246948 0.36251 0.186131 2.77413 0.783157 0 0.32394 3.38623 0 -0.443747 -0.0625 0.8125 0.225371 -0.169187 0.247131 0.369998 0.179996 2.80549 0.794417 0 0.32394 3.38623 0 -0.443747 +0.03125 0.8125 0.225368 -0.169084 0.249023 0.361439 0.237855 2.87507 0.785342 0 0.32394 3.38623 0 -0.443747 +0.0625 0.8125 0.225378 -0.169133 0.248871 0.369218 0.220958 2.87929 0.796571 0 0.32394 3.38623 0 -0.443747 -0.03125 0.84375 0.232522 -0.174467 0.206726 0.371383 0.186439 3.148 0.739158 0 0.302479 3.38861 0 -0.430095 -0.0625 0.84375 0.232529 -0.174529 0.206848 0.379149 0.204731 3.17104 0.750415 0 0.302479 3.38861 0 -0.430095 +0.03125 0.84375 0.232523 -0.174443 0.208466 0.370524 0.230896 3.21113 0.741224 0 0.302479 3.38861 0 -0.430095 +0.0625 0.84375 0.232534 -0.174486 0.208496 0.378303 0.216324 3.20458 0.752505 0 0.302479 3.38861 0 -0.430095 -0 0.84375 0.232507 -0.17438 0.206573 0.364186 0.180691 3.139 0.728688 0 0.302479 3.38861 0 -0.430095 -0.03125 0.84375 0.232522 -0.174467 0.206726 0.371383 0.186439 3.148 0.739158 0 0.302479 3.38861 0 -0.430095 +0 0.84375 0.232507 -0.17438 0.208496 0.36293 0.239221 3.2144 0.730645 0 0.302479 3.38861 0 -0.430095 +0.03125 0.84375 0.232523 -0.174443 0.208466 0.370426 0.230896 3.21113 0.741224 0 0.302479 3.38861 0 -0.430095 -0 0.875 0.239888 -0.179916 0.165924 0.373161 0.235659 3.55507 0.684446 0 0.280337 3.39107 0 -0.416862 -0.03125 0.875 0.239906 -0.179988 0.165924 0.380764 0.227228 3.58794 0.69501 0 0.280337 3.39107 0 -0.416862 +0 0.875 0.239888 -0.179916 0.167725 0.372048 0.224337 3.61939 0.686416 0 0.280337 3.39107 0 -0.416862 +0.03125 0.875 0.239905 -0.17997 0.167786 0.379545 0.240334 3.62496 0.697055 0 0.280337 3.39107 0 -0.416862 -0.03125 0.84375 0.232522 -0.174467 0.206726 0.371383 0.186439 3.148 0.739158 0 0.302479 3.38861 0 -0.430095 -0.0625 0.84375 0.232529 -0.174529 0.206848 0.379149 0.204731 3.17104 0.750415 0 0.302479 3.38861 0 -0.430095 +0.03125 0.84375 0.232523 -0.174443 0.208466 0.370305 0.230896 3.21113 0.741224 0 0.302479 3.38861 0 -0.430095 +0.0625 0.84375 0.232534 -0.174486 0.208496 0.378285 0.216324 3.20458 0.752505 0 0.302479 3.38861 0 -0.430095 -0.03125 0.875 0.239906 -0.179988 0.165924 0.380764 0.227228 3.58794 0.69501 0 0.280337 3.39107 0 -0.416862 -0.0625 0.875 0.239913 -0.18004 0.165955 0.388736 0.191751 3.58678 0.706118 0 0.280337 3.39107 0 -0.416862 +0.03125 0.875 0.239905 -0.17997 0.167786 0.379662 0.240334 3.62496 0.697055 0 0.280337 3.39107 0 -0.416862 +0.0625 0.875 0.239916 -0.180007 0.167694 0.387642 0.234395 3.61747 0.708257 0 0.280337 3.39107 0 -0.416862 -0.0625 0.8125 0.225371 -0.169187 0.247131 0.369998 0.179996 2.80549 0.794417 0 0.32394 3.38623 0 -0.443747 -0.09375 0.8125 0.225369 -0.169239 0.247253 0.378001 0.196514 2.81221 0.806376 0 0.32394 3.38623 0 -0.443747 +0.0625 0.8125 0.225378 -0.169133 0.248871 0.369109 0.220958 2.87929 0.796571 0 0.32394 3.38623 0 -0.443747 +0.09375 0.8125 0.225385 -0.169168 0.249023 0.377292 0.185994 2.89212 0.80867 0 0.32394 3.38623 0 -0.443747 -0.0625 0.84375 0.232529 -0.174529 0.206848 0.379149 0.204731 3.17104 0.750415 0 0.302479 3.38861 0 -0.430095 -0.09375 0.84375 0.232529 -0.174574 0.206848 0.387461 0.199405 3.15103 0.762332 0 0.302479 3.38861 0 -0.430095 +0.0625 0.84375 0.232534 -0.174486 0.208496 0.378388 0.216324 3.20458 0.752505 0 0.302479 3.38861 0 -0.430095 +0.09375 0.84375 0.23254 -0.174516 0.208557 0.386571 0.20252 3.2178 0.764589 0 0.302479 3.38861 0 -0.430095 -0.09375 0.8125 0.225369 -0.169239 0.247253 0.378001 0.196514 2.81221 0.806376 0 0.32394 3.38623 0 -0.443747 -0.125 0.8125 0.225364 -0.169277 0.247284 0.386643 0.199723 2.81415 0.81919 0 0.32394 3.38623 0 -0.443747 +0.09375 0.8125 0.225385 -0.169168 0.249023 0.37716 0.185994 2.89212 0.80867 0 0.32394 3.38623 0 -0.443747 +0.125 0.8125 0.225389 -0.169193 0.249176 0.385844 0.198761 2.86658 0.821477 0 0.32394 3.38623 0 -0.443747 -0.09375 0.84375 0.232529 -0.174574 0.206848 0.387461 0.199405 3.15103 0.762332 0 0.302479 3.38861 0 -0.430095 -0.125 0.84375 0.232525 -0.174605 0.207062 0.396215 0.21478 3.13142 0.775094 0 0.302479 3.38861 0 -0.430095 +0.09375 0.84375 0.23254 -0.174516 0.208557 0.386722 0.20252 3.2178 0.764589 0 0.302479 3.38861 0 -0.430095 +0.125 0.84375 0.232543 -0.174537 0.208679 0.395406 0.201334 3.19106 0.777272 0 0.302479 3.38861 0 -0.430095 -0.0625 0.84375 0.232529 -0.174529 0.206848 0.379149 0.204731 3.17104 0.750415 0 0.302479 3.38861 0 -0.430095 -0.09375 0.84375 0.232529 -0.174574 0.206848 0.387461 0.199405 3.15103 0.762332 0 0.302479 3.38861 0 -0.430095 +0.0625 0.84375 0.232534 -0.174486 0.208496 0.378124 0.216324 3.20458 0.752505 0 0.302479 3.38861 0 -0.430095 +0.09375 0.84375 0.23254 -0.174516 0.208557 0.386611 0.20252 3.2178 0.764589 0 0.302479 3.38861 0 -0.430095 -0.0625 0.875 0.239913 -0.18004 0.165955 0.388736 0.191751 3.58678 0.706118 0 0.280337 3.39107 0 -0.416862 -0.09375 0.875 0.239914 -0.180077 0.166199 0.397185 0.176273 3.53785 0.718104 0 0.280337 3.39107 0 -0.416862 +0.0625 0.875 0.239916 -0.180007 0.167694 0.387763 0.234395 3.61747 0.708257 0 0.280337 3.39107 0 -0.416862 +0.09375 0.875 0.239921 -0.180031 0.167755 0.39625 0.183077 3.62073 0.720234 0 0.280337 3.39107 0 -0.416862 -0.09375 0.84375 0.232529 -0.174574 0.206848 0.387461 0.199405 3.15103 0.762332 0 0.302479 3.38861 0 -0.430095 -0.125 0.84375 0.232525 -0.174605 0.207062 0.396215 0.21478 3.13142 0.775094 0 0.302479 3.38861 0 -0.430095 +0.09375 0.84375 0.23254 -0.174516 0.208557 0.386481 0.20252 3.2178 0.764589 0 0.302479 3.38861 0 -0.430095 +0.125 0.84375 0.232543 -0.174537 0.208679 0.395385 0.201334 3.19106 0.777272 0 0.302479 3.38861 0 -0.430095 -0.09375 0.875 0.239914 -0.180077 0.166199 0.397185 0.176273 3.53785 0.718104 0 0.280337 3.39107 0 -0.416862 -0.125 0.875 0.239911 -0.180101 0.166351 0.406092 0.213398 3.51199 0.730632 0 0.280337 3.39107 0 -0.416862 +0.09375 0.875 0.239921 -0.180031 0.167755 0.396305 0.183077 3.62073 0.720234 0 0.280337 3.39107 0 -0.416862 +0.125 0.875 0.239923 -0.180047 0.168091 0.405209 0.21268 3.62385 0.733216 0 0.280337 3.39107 0 -0.416862 -0.125 0.75 0.211694 -0.159097 0.326935 0.368157 0.162152 2.22816 0.906619 0 0.3649 3.38168 0 -0.472367 -0.15625 0.75 0.211684 -0.15913 0.326935 0.376793 0.153417 2.28724 0.920217 0 0.3649 3.38168 0 -0.472367 +0.125 0.75 0.211733 -0.158984 0.329224 0.367422 0.206893 2.40198 0.909185 0 0.3649 3.38168 0 -0.472367 +0.15625 0.75 0.211737 -0.159005 0.329132 0.376227 0.193209 2.4195 0.922808 0 0.3649 3.38168 0 -0.472367 -0.125 0.78125 0.218423 -0.164109 0.287415 0.377165 0.192141 2.52076 0.86301 0 0.34474 3.38392 0 -0.457833 -0.15625 0.78125 0.218414 -0.164137 0.287292 0.386185 0.165996 2.51925 0.876653 0 0.34474 3.38392 0 -0.457833 +0.125 0.78125 0.218455 -0.16401 0.289185 0.376704 0.19713 2.60854 0.865317 0 0.34474 3.38392 0 -0.457833 +0.15625 0.78125 0.218457 -0.164029 0.289368 0.385509 0.188776 2.60611 0.879084 0 0.34474 3.38392 0 -0.457833 -0.15625 0.75 0.211684 -0.15913 0.326935 0.376793 0.153417 2.28724 0.920217 0 0.3649 3.38168 0 -0.472367 -0.1875 0.75 0.211675 -0.159148 0.327301 0.3859 0.128837 2.2843 0.934922 0 0.3649 3.38168 0 -0.472367 +0.15625 0.75 0.211737 -0.159005 0.329132 0.37611 0.193209 2.4195 0.922808 0 0.3649 3.38168 0 -0.472367 +0.1875 0.75 0.211739 -0.15902 0.329346 0.385428 0.178005 2.40453 0.937506 0 0.3649 3.38168 0 -0.472367 -0.15625 0.78125 0.218414 -0.164137 0.287292 0.386185 0.165996 2.51925 0.876653 0 0.34474 3.38392 0 -0.457833 -0.1875 0.78125 0.218405 -0.164153 0.28775 0.395325 0.141046 2.56663 0.89106 0 0.34474 3.38392 0 -0.457833 +0.15625 0.78125 0.218457 -0.164029 0.289368 0.385619 0.188776 2.60611 0.879084 0 0.34474 3.38392 0 -0.457833 +0.1875 0.78125 0.218458 -0.164041 0.289368 0.394937 0.17678 2.6174 0.893608 0 0.34474 3.38392 0 -0.457833 -0.125 0.78125 0.218423 -0.164109 0.287415 0.377165 0.192141 2.52076 0.86301 0 0.34474 3.38392 0 -0.457833 -0.15625 0.78125 0.218414 -0.164137 0.287292 0.386185 0.165996 2.51925 0.876653 0 0.34474 3.38392 0 -0.457833 +0.125 0.78125 0.218455 -0.16401 0.289185 0.376455 0.19713 2.60854 0.865317 0 0.34474 3.38392 0 -0.457833 +0.15625 0.78125 0.218457 -0.164029 0.289368 0.385454 0.188776 2.60611 0.879084 0 0.34474 3.38392 0 -0.457833 -0.125 0.8125 0.225364 -0.169277 0.247284 0.386643 0.199723 2.81415 0.81919 0 0.32394 3.38623 0 -0.443747 -0.15625 0.8125 0.225357 -0.169299 0.247406 0.395697 0.202438 2.81571 0.832705 0 0.32394 3.38623 0 -0.443747 +0.125 0.8125 0.225389 -0.169193 0.249176 0.38598 0.198761 2.86658 0.821477 0 0.32394 3.38623 0 -0.443747 +0.15625 0.8125 0.225391 -0.169209 0.249176 0.394979 0.207827 2.88352 0.835123 0 0.32394 3.38623 0 -0.443747 -0.15625 0.78125 0.218414 -0.164137 0.287292 0.386185 0.165996 2.51925 0.876653 0 0.34474 3.38392 0 -0.457833 -0.1875 0.78125 0.218405 -0.164153 0.28775 0.395325 0.141046 2.56663 0.89106 0 0.34474 3.38392 0 -0.457833 +0.15625 0.78125 0.218457 -0.164029 0.289368 0.385332 0.188776 2.60611 0.879084 0 0.34474 3.38392 0 -0.457833 +0.1875 0.78125 0.218458 -0.164041 0.289368 0.394977 0.17678 2.6174 0.893608 0 0.34474 3.38392 0 -0.457833 -0.15625 0.8125 0.225357 -0.169299 0.247406 0.395697 0.202438 2.81571 0.832705 0 0.32394 3.38623 0 -0.443747 -0.1875 0.8125 0.225347 -0.169312 0.247375 0.405481 0.174733 2.86533 0.847145 0 0.32394 3.38623 0 -0.443747 +0.15625 0.8125 0.225391 -0.169209 0.249176 0.395143 0.207827 2.88352 0.835123 0 0.32394 3.38623 0 -0.443747 +0.1875 0.8125 0.225391 -0.169218 0.249237 0.404788 0.187455 2.87548 0.849644 0 0.32394 3.38623 0 -0.443747 -0.1875 0.75 0.211675 -0.159148 0.327301 0.3859 0.128837 2.2843 0.934922 0 0.3649 3.38168 0 -0.472367 -0.21875 0.75 0.211667 -0.159158 0.327576 0.395428 0.153003 2.3068 0.950199 0 0.3649 3.38168 0 -0.472367 +0.1875 0.75 0.211739 -0.15902 0.329346 0.385286 0.178005 2.40453 0.937506 0 0.3649 3.38168 0 -0.472367 +0.21875 0.75 0.211739 -0.159028 0.329376 0.395142 0.174387 2.36989 0.952817 0 0.3649 3.38168 0 -0.472367 -0.1875 0.78125 0.218405 -0.164153 0.28775 0.395325 0.141046 2.56663 0.89106 0 0.34474 3.38392 0 -0.457833 -0.21875 0.78125 0.218396 -0.164161 0.287811 0.405466 0.132563 2.5657 0.906598 0 0.34474 3.38392 0 -0.457833 +0.1875 0.78125 0.218458 -0.164041 0.289368 0.395087 0.17678 2.6174 0.893608 0 0.34474 3.38392 0 -0.457833 +0.21875 0.78125 0.218459 -0.164048 0.289673 0.404944 0.190677 2.59656 0.909173 0 0.34474 3.38392 0 -0.457833 -0.21875 0.75 0.211667 -0.159158 0.327576 0.395428 0.153003 2.3068 0.950199 0 0.3649 3.38168 0 -0.472367 -0.25 0.75 0.21166 -0.159161 0.327698 0.405991 0.177871 2.32724 0.966953 0 0.3649 3.38168 0 -0.472367 +0.21875 0.75 0.211739 -0.159028 0.329376 0.394967 0.174387 2.36989 0.952817 0 0.3649 3.38168 0 -0.472367 +0.25 0.75 0.211741 -0.159032 0.32962 0.40556 0.185283 2.38053 0.969412 0 0.3649 3.38168 0 -0.472367 -0.21875 0.78125 0.218396 -0.164161 0.287811 0.405466 0.132563 2.5657 0.906598 0 0.34474 3.38392 0 -0.457833 -0.25 0.78125 0.218388 -0.164163 0.288391 0.4159 0.18333 2.56661 0.923101 0 0.34474 3.38392 0 -0.457833 +0.21875 0.78125 0.218459 -0.164048 0.289673 0.405125 0.190677 2.59656 0.909173 0 0.34474 3.38392 0 -0.457833 +0.25 0.78125 0.218459 -0.164051 0.289581 0.415717 0.227866 2.62495 0.925594 0 0.34474 3.38392 0 -0.457833 -0.1875 0.78125 0.218405 -0.164153 0.28775 0.395325 0.141046 2.56663 0.89106 0 0.34474 3.38392 0 -0.457833 -0.21875 0.78125 0.218396 -0.164161 0.287811 0.405466 0.132563 2.5657 0.906598 0 0.34474 3.38392 0 -0.457833 +0.1875 0.78125 0.218458 -0.164041 0.289368 0.394822 0.17678 2.6174 0.893608 0 0.34474 3.38392 0 -0.457833 +0.21875 0.78125 0.218459 -0.164048 0.289673 0.404945 0.190677 2.59656 0.909173 0 0.34474 3.38392 0 -0.457833 -0.1875 0.8125 0.225347 -0.169312 0.247375 0.405481 0.174733 2.86533 0.847145 0 0.32394 3.38623 0 -0.443747 -0.21875 0.8125 0.225337 -0.169319 0.247711 0.415719 0.148749 2.86628 0.862625 0 0.32394 3.38623 0 -0.443747 +0.1875 0.8125 0.225391 -0.169218 0.249237 0.40493 0.187455 2.87548 0.849644 0 0.32394 3.38623 0 -0.443747 +0.21875 0.8125 0.225392 -0.169224 0.249451 0.415053 0.199492 2.89337 0.865123 0 0.32394 3.38623 0 -0.443747 -0.21875 0.78125 0.218396 -0.164161 0.287811 0.405466 0.132563 2.5657 0.906598 0 0.34474 3.38392 0 -0.457833 -0.25 0.78125 0.218388 -0.164163 0.288391 0.4159 0.18333 2.56661 0.923101 0 0.34474 3.38392 0 -0.457833 +0.21875 0.78125 0.218459 -0.164048 0.289673 0.404793 0.190677 2.59656 0.909173 0 0.34474 3.38392 0 -0.457833 +0.25 0.78125 0.218459 -0.164051 0.289581 0.415775 0.227866 2.62495 0.925594 0 0.34474 3.38392 0 -0.457833 -0.21875 0.8125 0.225337 -0.169319 0.247711 0.415719 0.148749 2.86628 0.862625 0 0.32394 3.38623 0 -0.443747 -0.25 0.8125 0.225329 -0.169321 0.247925 0.426787 0.183875 2.92432 0.87921 0 0.32394 3.38623 0 -0.443747 +0.21875 0.8125 0.225392 -0.169224 0.249451 0.415265 0.199492 2.89337 0.865123 0 0.32394 3.38623 0 -0.443747 +0.25 0.8125 0.225391 -0.169225 0.249451 0.426247 0.250209 2.90758 0.881716 0 0.32394 3.38623 0 -0.443747 -0.125 0.8125 0.225364 -0.169277 0.247284 0.386643 0.199723 2.81415 0.81919 0 0.32394 3.38623 0 -0.443747 -0.15625 0.8125 0.225357 -0.169299 0.247406 0.395697 0.202438 2.81571 0.832705 0 0.32394 3.38623 0 -0.443747 +0.125 0.8125 0.225389 -0.169193 0.249176 0.385689 0.198761 2.86658 0.821477 0 0.32394 3.38623 0 -0.443747 +0.15625 0.8125 0.225391 -0.169209 0.249176 0.395008 0.207827 2.88352 0.835123 0 0.32394 3.38623 0 -0.443747 -0.125 0.84375 0.232525 -0.174605 0.207062 0.396215 0.21478 3.13142 0.775094 0 0.302479 3.38861 0 -0.430095 -0.15625 0.84375 0.232518 -0.174625 0.20694 0.405668 0.224827 3.15315 0.788525 0 0.302479 3.38861 0 -0.430095 +0.125 0.84375 0.232543 -0.174537 0.208679 0.395546 0.201334 3.19106 0.777272 0 0.302479 3.38861 0 -0.430095 +0.15625 0.84375 0.232544 -0.17455 0.20874 0.404866 0.207183 3.21882 0.791051 0 0.302479 3.38861 0 -0.430095 -0.15625 0.8125 0.225357 -0.169299 0.247406 0.395697 0.202438 2.81571 0.832705 0 0.32394 3.38623 0 -0.443747 -0.1875 0.8125 0.225347 -0.169312 0.247375 0.405481 0.174733 2.86533 0.847145 0 0.32394 3.38623 0 -0.443747 +0.15625 0.8125 0.225391 -0.169209 0.249176 0.394885 0.207827 2.88352 0.835123 0 0.32394 3.38623 0 -0.443747 +0.1875 0.8125 0.225391 -0.169218 0.249237 0.40481 0.187455 2.87548 0.849644 0 0.32394 3.38623 0 -0.443747 -0.15625 0.84375 0.232518 -0.174625 0.20694 0.405668 0.224827 3.15315 0.788525 0 0.302479 3.38861 0 -0.430095 -0.1875 0.84375 0.232508 -0.174635 0.207062 0.415773 0.20411 3.16539 0.803134 0 0.302479 3.38861 0 -0.430095 +0.15625 0.84375 0.232544 -0.17455 0.20874 0.405003 0.207183 3.21882 0.791051 0 0.302479 3.38861 0 -0.430095 +0.1875 0.84375 0.232544 -0.174557 0.208801 0.414928 0.199152 3.19886 0.805424 0 0.302479 3.38861 0 -0.430095 -0.125 0.84375 0.232525 -0.174605 0.207062 0.396215 0.21478 3.13142 0.775094 0 0.302479 3.38861 0 -0.430095 -0.15625 0.84375 0.232518 -0.174625 0.20694 0.405668 0.224827 3.15315 0.788525 0 0.302479 3.38861 0 -0.430095 +0.125 0.84375 0.232543 -0.174537 0.208679 0.395212 0.201334 3.19106 0.777272 0 0.302479 3.38861 0 -0.430095 +0.15625 0.84375 0.232544 -0.17455 0.20874 0.404907 0.207183 3.21882 0.791051 0 0.302479 3.38861 0 -0.430095 -0.125 0.875 0.239911 -0.180101 0.166351 0.406092 0.213398 3.51199 0.730632 0 0.280337 3.39107 0 -0.416862 -0.15625 0.875 0.239903 -0.180116 0.166321 0.416011 0.238985 3.52307 0.744385 0 0.280337 3.39107 0 -0.416862 +0.125 0.875 0.239923 -0.180047 0.168091 0.405356 0.21268 3.62385 0.733216 0 0.280337 3.39107 0 -0.416862 +0.15625 0.875 0.239923 -0.180056 0.167877 0.415051 0.229002 3.61123 0.746655 0 0.280337 3.39107 0 -0.416862 -0.15625 0.84375 0.232518 -0.174625 0.20694 0.405668 0.224827 3.15315 0.788525 0 0.302479 3.38861 0 -0.430095 -0.1875 0.84375 0.232508 -0.174635 0.207062 0.415773 0.20411 3.16539 0.803134 0 0.302479 3.38861 0 -0.430095 +0.15625 0.84375 0.232544 -0.17455 0.20874 0.404747 0.207183 3.21882 0.791051 0 0.302479 3.38861 0 -0.430095 +0.1875 0.84375 0.232544 -0.174557 0.208801 0.414894 0.199152 3.19886 0.805424 0 0.302479 3.38861 0 -0.430095 -0.15625 0.875 0.239903 -0.180116 0.166321 0.416011 0.238985 3.52307 0.744385 0 0.280337 3.39107 0 -0.416862 -0.1875 0.875 0.239894 -0.180124 0.16629 0.426413 0.213621 3.55491 0.758808 0 0.280337 3.39107 0 -0.416862 +0.15625 0.875 0.239923 -0.180056 0.167877 0.415193 0.229002 3.61123 0.746655 0 0.280337 3.39107 0 -0.416862 +0.1875 0.875 0.239922 -0.180062 0.168121 0.42534 0.225021 3.63586 0.761257 0 0.280337 3.39107 0 -0.416862 -0.1875 0.8125 0.225347 -0.169312 0.247375 0.405481 0.174733 2.86533 0.847145 0 0.32394 3.38623 0 -0.443747 -0.21875 0.8125 0.225337 -0.169319 0.247711 0.415719 0.148749 2.86628 0.862625 0 0.32394 3.38623 0 -0.443747 +0.1875 0.8125 0.225391 -0.169218 0.249237 0.40463 0.187455 2.87548 0.849644 0 0.32394 3.38623 0 -0.443747 +0.21875 0.8125 0.225392 -0.169224 0.249451 0.415105 0.199492 2.89337 0.865123 0 0.32394 3.38623 0 -0.443747 -0.1875 0.84375 0.232508 -0.174635 0.207062 0.415773 0.20411 3.16539 0.803134 0 0.302479 3.38861 0 -0.430095 -0.21875 0.84375 0.232498 -0.17464 0.207123 0.426499 0.201095 3.18422 0.818573 0 0.302479 3.38861 0 -0.430095 +0.1875 0.84375 0.232544 -0.174557 0.208801 0.415092 0.199152 3.19886 0.805424 0 0.302479 3.38861 0 -0.430095 +0.21875 0.84375 0.232543 -0.17456 0.208984 0.425567 0.232328 3.24663 0.821102 0 0.302479 3.38861 0 -0.430095 -0.21875 0.8125 0.225337 -0.169319 0.247711 0.415719 0.148749 2.86628 0.862625 0 0.32394 3.38623 0 -0.443747 -0.25 0.8125 0.225329 -0.169321 0.247925 0.426787 0.183875 2.92432 0.87921 0 0.32394 3.38623 0 -0.443747 +0.21875 0.8125 0.225392 -0.169224 0.249451 0.414918 0.199492 2.89337 0.865123 0 0.32394 3.38623 0 -0.443747 +0.25 0.8125 0.225391 -0.169225 0.249451 0.426295 0.250209 2.90758 0.881716 0 0.32394 3.38623 0 -0.443747 -0.21875 0.84375 0.232498 -0.17464 0.207123 0.426499 0.201095 3.18422 0.818573 0 0.302479 3.38861 0 -0.430095 -0.25 0.84375 0.23249 -0.174642 0.207214 0.437948 0.181946 3.20032 0.835079 0 0.302479 3.38861 0 -0.430095 +0.21875 0.84375 0.232543 -0.17456 0.208984 0.425769 0.232328 3.24663 0.821102 0 0.302479 3.38861 0 -0.430095 +0.25 0.84375 0.232542 -0.174561 0.208801 0.437146 0.263416 3.23605 0.837419 0 0.302479 3.38861 0 -0.430095 -0.1875 0.84375 0.232508 -0.174635 0.207062 0.415773 0.20411 3.16539 0.803134 0 0.302479 3.38861 0 -0.430095 -0.21875 0.84375 0.232498 -0.17464 0.207123 0.426499 0.201095 3.18422 0.818573 0 0.302479 3.38861 0 -0.430095 +0.1875 0.84375 0.232544 -0.174557 0.208801 0.414695 0.199152 3.19886 0.805424 0 0.302479 3.38861 0 -0.430095 +0.21875 0.84375 0.232543 -0.17456 0.208984 0.425615 0.232328 3.24663 0.821102 0 0.302479 3.38861 0 -0.430095 -0.1875 0.875 0.239894 -0.180124 0.16629 0.426413 0.213621 3.55491 0.758808 0 0.280337 3.39107 0 -0.416862 -0.21875 0.875 0.239885 -0.180129 0.166443 0.437464 0.177693 3.52648 0.774317 0 0.280337 3.39107 0 -0.416862 +0.1875 0.875 0.239922 -0.180062 0.168121 0.425511 0.225021 3.63586 0.761257 0 0.280337 3.39107 0 -0.416862 +0.21875 0.875 0.239921 -0.180064 0.167999 0.436432 0.254614 3.65626 0.776701 0 0.280337 3.39107 0 -0.416862 -0.21875 0.84375 0.232498 -0.17464 0.207123 0.426499 0.201095 3.18422 0.818573 0 0.302479 3.38861 0 -0.430095 -0.25 0.84375 0.23249 -0.174642 0.207214 0.437948 0.181946 3.20032 0.835079 0 0.302479 3.38861 0 -0.430095 +0.21875 0.84375 0.232543 -0.17456 0.208984 0.425465 0.232328 3.24663 0.821102 0 0.302479 3.38861 0 -0.430095 +0.25 0.84375 0.232542 -0.174561 0.208801 0.43716 0.263416 3.23605 0.837419 0 0.302479 3.38861 0 -0.430095 -0.21875 0.875 0.239885 -0.180129 0.166443 0.437464 0.177693 3.52648 0.774317 0 0.280337 3.39107 0 -0.416862 -0.25 0.875 0.239876 -0.18013 0.166687 0.4491 0.200046 3.57965 0.790729 0 0.280337 3.39107 0 -0.416862 +0.21875 0.875 0.239921 -0.180064 0.167999 0.436645 0.254614 3.65626 0.776701 0 0.280337 3.39107 0 -0.416862 +0.25 0.875 0.239919 -0.180064 0.16806 0.44834 0.295763 3.63365 0.793303 0 0.280337 3.39107 0 -0.416862 -0 0.875 0.239888 -0.179916 0.165924 0.373161 0.235659 3.55507 0.684446 0 0.280337 3.39107 0 -0.416862 -0.03125 0.875 0.239906 -0.179988 0.165924 0.380764 0.227228 3.58794 0.69501 0 0.280337 3.39107 0 -0.416862 +0 0.875 0.239888 -0.179916 0.167725 0.371835 0.224337 3.61939 0.686416 0 0.280337 3.39107 0 -0.416862 +0.03125 0.875 0.239905 -0.17997 0.167786 0.379542 0.240334 3.62496 0.697055 0 0.280337 3.39107 0 -0.416862 -0 0.90625 0.247502 -0.185627 0.124817 0.382629 0.266227 4.07567 0.640137 0 0.257493 3.39361 0 -0.404037 -0.03125 0.90625 0.247522 -0.185686 0.124725 0.390487 0.226533 4.07401 0.650629 0 0.257493 3.39361 0 -0.404037 +0 0.90625 0.247502 -0.185627 0.126587 0.381346 0.266203 4.14789 0.642017 0 0.257493 3.39361 0 -0.404037 +0.03125 0.90625 0.247521 -0.185671 0.126526 0.389053 0.25168 4.1544 0.65258 0 0.257493 3.39361 0 -0.404037 -0.03125 0.875 0.239906 -0.179988 0.165924 0.380764 0.227228 3.58794 0.69501 0 0.280337 3.39107 0 -0.416862 -0.0625 0.875 0.239913 -0.18004 0.165955 0.388736 0.191751 3.58678 0.706118 0 0.280337 3.39107 0 -0.416862 +0.03125 0.875 0.239905 -0.17997 0.167786 0.379418 0.240334 3.62496 0.697055 0 0.280337 3.39107 0 -0.416862 +0.0625 0.875 0.239916 -0.180007 0.167694 0.387621 0.234395 3.61747 0.708257 0 0.280337 3.39107 0 -0.416862 -0.03125 0.90625 0.247522 -0.185686 0.124725 0.390487 0.226533 4.07401 0.650629 0 0.257493 3.39361 0 -0.404037 -0.0625 0.90625 0.24753 -0.185725 0.124878 0.398609 0.154387 4.06098 0.66172 0 0.257493 3.39361 0 -0.404037 +0.03125 0.90625 0.247521 -0.185671 0.126526 0.389163 0.25168 4.1544 0.65258 0 0.257493 3.39361 0 -0.404037 +0.0625 0.90625 0.247531 -0.1857 0.126556 0.397367 0.229119 4.12382 0.663779 0 0.257493 3.39361 0 -0.404037 -0 0.90625 0.247502 -0.185627 0.124817 0.382629 0.266227 4.07567 0.640137 0 0.257493 3.39361 0 -0.404037 -0.03125 0.90625 0.247522 -0.185686 0.124725 0.390487 0.226533 4.07401 0.650629 0 0.257493 3.39361 0 -0.404037 +0 0.90625 0.247502 -0.185627 0.126587 0.381081 0.266203 4.14789 0.642017 0 0.257493 3.39361 0 -0.404037 +0.03125 0.90625 0.247521 -0.185671 0.126526 0.389016 0.25168 4.1544 0.65258 0 0.257493 3.39361 0 -0.404037 -0 0.9375 0.255359 -0.191519 0.083252 0.392381 0.244166 4.72644 0.595448 0 0.233923 3.39623 0 -0.391606 -0.03125 0.9375 0.255378 -0.191561 0.083252 0.400335 0.221857 4.67679 0.605829 0 0.233923 3.39623 0 -0.391606 +0 0.9375 0.255359 -0.191519 0.0848999 0.391053 0.248462 4.79468 0.597364 0 0.233923 3.39623 0 -0.391606 +0.03125 0.9375 0.255376 -0.191552 0.0848999 0.398988 0.235034 4.78378 0.607907 0 0.233923 3.39623 0 -0.391606 -0.03125 0.90625 0.247522 -0.185686 0.124725 0.390487 0.226533 4.07401 0.650629 0 0.257493 3.39361 0 -0.404037 -0.0625 0.90625 0.24753 -0.185725 0.124878 0.398609 0.154387 4.06098 0.66172 0 0.257493 3.39361 0 -0.404037 +0.03125 0.90625 0.247521 -0.185671 0.126526 0.388936 0.25168 4.1544 0.65258 0 0.257493 3.39361 0 -0.404037 +0.0625 0.90625 0.247531 -0.1857 0.126556 0.397313 0.229119 4.12382 0.663779 0 0.257493 3.39361 0 -0.404037 -0.03125 0.9375 0.255378 -0.191561 0.083252 0.400335 0.221857 4.67679 0.605829 0 0.233923 3.39623 0 -0.391606 -0.0625 0.9375 0.255385 -0.191587 0.083374 0.408871 0.178935 4.68266 0.617095 0 0.233923 3.39623 0 -0.391606 +0.03125 0.9375 0.255376 -0.191552 0.0848999 0.39905 0.235034 4.78378 0.607907 0 0.233923 3.39623 0 -0.391606 +0.0625 0.9375 0.255384 -0.191571 0.0849915 0.407427 0.227111 4.76047 0.619109 0 0.233923 3.39623 0 -0.391606 -0.0625 0.875 0.239913 -0.18004 0.165955 0.388736 0.191751 3.58678 0.706118 0 0.280337 3.39107 0 -0.416862 -0.09375 0.875 0.239914 -0.180077 0.166199 0.397185 0.176273 3.53785 0.718104 0 0.280337 3.39107 0 -0.416862 +0.0625 0.875 0.239916 -0.180007 0.167694 0.387514 0.234395 3.61747 0.708257 0 0.280337 3.39107 0 -0.416862 +0.09375 0.875 0.239921 -0.180031 0.167755 0.396225 0.183077 3.62073 0.720234 0 0.280337 3.39107 0 -0.416862 -0.0625 0.90625 0.24753 -0.185725 0.124878 0.398609 0.154387 4.06098 0.66172 0 0.257493 3.39361 0 -0.404037 -0.09375 0.90625 0.24753 -0.185752 0.125214 0.407265 0.121447 4.05123 0.673713 0 0.257493 3.39361 0 -0.404037 +0.0625 0.90625 0.247531 -0.1857 0.126556 0.39746 0.229119 4.12382 0.663779 0 0.257493 3.39361 0 -0.404037 +0.09375 0.90625 0.247535 -0.185717 0.126617 0.406171 0.211726 4.13026 0.675753 0 0.257493 3.39361 0 -0.404037 -0.09375 0.875 0.239914 -0.180077 0.166199 0.397185 0.176273 3.53785 0.718104 0 0.280337 3.39107 0 -0.416862 -0.125 0.875 0.239911 -0.180101 0.166351 0.406092 0.213398 3.51199 0.730632 0 0.280337 3.39107 0 -0.416862 +0.09375 0.875 0.239921 -0.180031 0.167755 0.396056 0.183077 3.62073 0.720234 0 0.280337 3.39107 0 -0.416862 +0.125 0.875 0.239923 -0.180047 0.168091 0.405192 0.21268 3.62385 0.733216 0 0.280337 3.39107 0 -0.416862 -0.09375 0.90625 0.24753 -0.185752 0.125214 0.407265 0.121447 4.05123 0.673713 0 0.257493 3.39361 0 -0.404037 -0.125 0.90625 0.247527 -0.185768 0.12561 0.416477 0.20181 4.04739 0.686517 0 0.257493 3.39361 0 -0.404037 +0.09375 0.90625 0.247535 -0.185717 0.126617 0.406316 0.211726 4.13026 0.675753 0 0.257493 3.39361 0 -0.404037 +0.125 0.90625 0.247536 -0.185729 0.12674 0.415452 0.205155 4.16236 0.688506 0 0.257493 3.39361 0 -0.404037 -0.0625 0.90625 0.24753 -0.185725 0.124878 0.398609 0.154387 4.06098 0.66172 0 0.257493 3.39361 0 -0.404037 -0.09375 0.90625 0.24753 -0.185752 0.125214 0.407265 0.121447 4.05123 0.673713 0 0.257493 3.39361 0 -0.404037 +0.0625 0.90625 0.247531 -0.1857 0.126556 0.397193 0.229119 4.12382 0.663779 0 0.257493 3.39361 0 -0.404037 +0.09375 0.90625 0.247535 -0.185717 0.126617 0.40614 0.211726 4.13026 0.675753 0 0.257493 3.39361 0 -0.404037 -0.0625 0.9375 0.255385 -0.191587 0.083374 0.408871 0.178935 4.68266 0.617095 0 0.233923 3.39623 0 -0.391606 -0.09375 0.9375 0.255385 -0.191605 0.0836182 0.417663 0.17055 4.68027 0.628816 0 0.233923 3.39623 0 -0.391606 +0.0625 0.9375 0.255384 -0.191571 0.0849915 0.407534 0.227111 4.76047 0.619109 0 0.233923 3.39623 0 -0.391606 +0.09375 0.9375 0.255387 -0.191582 0.085022 0.416481 0.220919 4.76893 0.630977 0 0.233923 3.39623 0 -0.391606 -0.09375 0.90625 0.24753 -0.185752 0.125214 0.407265 0.121447 4.05123 0.673713 0 0.257493 3.39361 0 -0.404037 -0.125 0.90625 0.247527 -0.185768 0.12561 0.416477 0.20181 4.04739 0.686517 0 0.257493 3.39361 0 -0.404037 +0.09375 0.90625 0.247535 -0.185717 0.126617 0.406001 0.211726 4.13026 0.675753 0 0.257493 3.39361 0 -0.404037 +0.125 0.90625 0.247536 -0.185729 0.12674 0.415497 0.205155 4.16236 0.688506 0 0.257493 3.39361 0 -0.404037 -0.09375 0.9375 0.255385 -0.191605 0.0836182 0.417663 0.17055 4.68027 0.628816 0 0.233923 3.39623 0 -0.391606 -0.125 0.9375 0.255383 -0.191614 0.0838013 0.427349 0.219904 4.72645 0.641642 0 0.233923 3.39623 0 -0.391606 +0.09375 0.9375 0.255387 -0.191582 0.085022 0.416598 0.220919 4.76893 0.630977 0 0.233923 3.39623 0 -0.391606 +0.125 0.9375 0.255387 -0.191588 0.085144 0.426094 0.218815 4.78594 0.643716 0 0.233923 3.39623 0 -0.391606 -0 0.9375 0.255359 -0.191519 0.083252 0.392381 0.244166 4.72644 0.595448 0 0.233923 3.39623 0 -0.391606 -0.03125 0.9375 0.255378 -0.191561 0.083252 0.400335 0.221857 4.67679 0.605829 0 0.233923 3.39623 0 -0.391606 +0 0.9375 0.255359 -0.191519 0.0848999 0.390762 0.248462 4.79468 0.597364 0 0.233923 3.39623 0 -0.391606 +0.03125 0.9375 0.255376 -0.191552 0.0848999 0.398895 0.235034 4.78378 0.607907 0 0.233923 3.39623 0 -0.391606 -0 0.96875 0.263465 -0.197599 0.0411072 0.402696 0.160079 5.49006 0.550595 0 0.209605 3.39893 0 -0.379557 -0.03125 0.96875 0.263481 -0.197623 0.0413208 0.410859 0.174879 5.46993 0.561136 0 0.209605 3.39893 0 -0.379557 +0 0.96875 0.263465 -0.197599 0.0427856 0.401141 0.253882 5.49837 0.552672 0 0.209605 3.39893 0 -0.379557 +0.03125 0.96875 0.263478 -0.197618 0.0427856 0.409274 0.234791 5.48057 0.56301 0 0.209605 3.39893 0 -0.379557 -0.03125 0.9375 0.255378 -0.191561 0.083252 0.400335 0.221857 4.67679 0.605829 0 0.233923 3.39623 0 -0.391606 -0.0625 0.9375 0.255385 -0.191587 0.083374 0.408871 0.178935 4.68266 0.617095 0 0.233923 3.39623 0 -0.391606 +0.03125 0.9375 0.255376 -0.191552 0.0848999 0.398801 0.235034 4.78378 0.607907 0 0.233923 3.39623 0 -0.391606 +0.0625 0.9375 0.255384 -0.191571 0.0849915 0.407356 0.227111 4.76047 0.619109 0 0.233923 3.39623 0 -0.391606 -0.03125 0.96875 0.263481 -0.197623 0.0413208 0.410859 0.174879 5.46993 0.561136 0 0.209605 3.39893 0 -0.379557 -0.0625 0.96875 0.263484 -0.197634 0.0414124 0.41935 0.151869 5.46194 0.57197 0 0.209605 3.39893 0 -0.379557 +0.03125 0.96875 0.263478 -0.197618 0.0427856 0.409322 0.234791 5.48057 0.56301 0 0.209605 3.39893 0 -0.379557 +0.0625 0.96875 0.263483 -0.197626 0.0429077 0.417876 0.227286 5.4553 0.574044 0 0.209605 3.39893 0 -0.379557 -0 0.96875 0.263465 -0.197599 0.0411072 0.402696 0.160079 5.49006 0.550595 0 0.209605 3.39893 0 -0.379557 -0.03125 0.96875 0.263481 -0.197623 0.0413208 0.410859 0.174879 5.46993 0.561136 0 0.209605 3.39893 0 -0.379557 +0 0.96875 0.263465 -0.197599 0.0427856 0.400976 0.253882 5.49837 0.552672 0 0.209605 3.39893 0 -0.379557 +0.03125 0.96875 0.263478 -0.197618 0.0427856 0.409103 0.234791 5.48057 0.56301 0 0.209605 3.39893 0 -0.379557 -0 1 0.271828 -0.203871 -0.00128174 0.41387 0.210859 6.33563 0.506232 0 0.184515 3.40172 0 -0.367879 -0.03125 1 0.271828 -0.203871 -0.00119019 0.421597 0.197037 6.37982 0.515799 0 0.184515 3.40172 0 -0.367879 +0 1 0.271828 -0.203871 0.000244141 0.411799 0.23015 5.85345 0.507782 0 0.184515 3.40172 0 -0.367879 +0.03125 1 0.271828 -0.203871 0.000305176 0.419927 0.214251 5.82504 0.517823 0 0.184515 3.40172 0 -0.367879 -0.03125 0.96875 0.263481 -0.197623 0.0413208 0.410859 0.174879 5.46993 0.561136 0 0.209605 3.39893 0 -0.379557 -0.0625 0.96875 0.263484 -0.197634 0.0414124 0.41935 0.151869 5.46194 0.57197 0 0.209605 3.39893 0 -0.379557 +0.03125 0.96875 0.263478 -0.197618 0.0427856 0.409106 0.234791 5.48057 0.56301 0 0.209605 3.39893 0 -0.379557 +0.0625 0.96875 0.263483 -0.197626 0.0429077 0.417809 0.227286 5.4553 0.574044 0 0.209605 3.39893 0 -0.379557 -0.03125 1 0.271828 -0.203871 -0.00119019 0.421597 0.197037 6.37982 0.515799 0 0.184515 3.40172 0 -0.367879 -0.0625 1 0.271828 -0.203871 -0.0010376 0.430381 0.172111 6.35172 0.526724 0 0.184515 3.40172 0 -0.367879 +0.03125 1 0.271828 -0.203871 0.000305176 0.419897 0.214251 5.82504 0.517823 0 0.184515 3.40172 0 -0.367879 +0.0625 1 0.271828 -0.203871 0.000488281 0.428599 0.234953 5.79414 0.528901 0 0.184515 3.40172 0 -0.367879 -0.0625 0.9375 0.255385 -0.191587 0.083374 0.408871 0.178935 4.68266 0.617095 0 0.233923 3.39623 0 -0.391606 -0.09375 0.9375 0.255385 -0.191605 0.0836182 0.417663 0.17055 4.68027 0.628816 0 0.233923 3.39623 0 -0.391606 +0.0625 0.9375 0.255384 -0.191571 0.0849915 0.407273 0.227111 4.76047 0.619109 0 0.233923 3.39623 0 -0.391606 +0.09375 0.9375 0.255387 -0.191582 0.085022 0.41647 0.220919 4.76893 0.630977 0 0.233923 3.39623 0 -0.391606 -0.0625 0.96875 0.263484 -0.197634 0.0414124 0.41935 0.151869 5.46194 0.57197 0 0.209605 3.39893 0 -0.379557 -0.09375 0.96875 0.263484 -0.197641 0.0417786 0.428711 0.157393 5.47525 0.584179 0 0.209605 3.39893 0 -0.379557 +0.0625 0.96875 0.263483 -0.197626 0.0429077 0.41799 0.227286 5.4553 0.574044 0 0.209605 3.39893 0 -0.379557 +0.09375 0.96875 0.263483 -0.19763 0.0429382 0.427186 0.232699 5.47266 0.585895 0 0.209605 3.39893 0 -0.379557 -0.09375 0.9375 0.255385 -0.191605 0.0836182 0.417663 0.17055 4.68027 0.628816 0 0.233923 3.39623 0 -0.391606 -0.125 0.9375 0.255383 -0.191614 0.0838013 0.427349 0.219904 4.72645 0.641642 0 0.233923 3.39623 0 -0.391606 +0.09375 0.9375 0.255387 -0.191582 0.085022 0.4163 0.220919 4.76893 0.630977 0 0.233923 3.39623 0 -0.391606 +0.125 0.9375 0.255387 -0.191588 0.085144 0.42608 0.218815 4.78594 0.643716 0 0.233923 3.39623 0 -0.391606 -0.09375 0.96875 0.263484 -0.197641 0.0417786 0.428711 0.157393 5.47525 0.584179 0 0.209605 3.39893 0 -0.379557 -0.125 0.96875 0.263482 -0.197646 0.0419006 0.438265 0.24521 5.49516 0.59639 0 0.209605 3.39893 0 -0.379557 +0.09375 0.96875 0.263483 -0.19763 0.0429382 0.427346 0.232699 5.47266 0.585895 0 0.209605 3.39893 0 -0.379557 +0.125 0.96875 0.263482 -0.197633 0.0430298 0.437126 0.240474 5.51268 0.598714 0 0.209605 3.39893 0 -0.379557 -0.0625 0.96875 0.263484 -0.197634 0.0414124 0.41935 0.151869 5.46194 0.57197 0 0.209605 3.39893 0 -0.379557 -0.09375 0.96875 0.263484 -0.197641 0.0417786 0.428711 0.157393 5.47525 0.584179 0 0.209605 3.39893 0 -0.379557 +0.0625 0.96875 0.263483 -0.197626 0.0429077 0.417687 0.227286 5.4553 0.574044 0 0.209605 3.39893 0 -0.379557 +0.09375 0.96875 0.263483 -0.19763 0.0429382 0.427187 0.232699 5.47266 0.585895 0 0.209605 3.39893 0 -0.379557 -0.0625 1 0.271828 -0.203871 -0.0010376 0.430381 0.172111 6.35172 0.526724 0 0.184515 3.40172 0 -0.367879 -0.09375 1 0.271828 -0.203871 -0.000823975 0.43976 0.180429 6.41977 0.538438 0 0.184515 3.40172 0 -0.367879 +0.0625 1 0.271828 -0.203871 0.000488281 0.428736 0.234953 5.79414 0.528901 0 0.184515 3.40172 0 -0.367879 +0.09375 1 0.271828 -0.203871 0.000457764 0.438236 0.273119 5.82241 0.540762 0 0.184515 3.40172 0 -0.367879 -0.09375 0.96875 0.263484 -0.197641 0.0417786 0.428711 0.157393 5.47525 0.584179 0 0.209605 3.39893 0 -0.379557 -0.125 0.96875 0.263482 -0.197646 0.0419006 0.438265 0.24521 5.49516 0.59639 0 0.209605 3.39893 0 -0.379557 +0.09375 0.96875 0.263483 -0.19763 0.0429382 0.426983 0.232699 5.47266 0.585895 0 0.209605 3.39893 0 -0.379557 +0.125 0.96875 0.263482 -0.197633 0.0430298 0.437122 0.240474 5.51268 0.598714 0 0.209605 3.39893 0 -0.379557 -0.09375 1 0.271828 -0.203871 -0.000823975 0.43976 0.180429 6.41977 0.538438 0 0.184515 3.40172 0 -0.367879 -0.125 1 0.271828 -0.203871 -0.000701904 0.450136 0.219341 6.4264 0.551283 0 0.184515 3.40172 0 -0.367879 +0.09375 1 0.271828 -0.203871 0.000457764 0.438384 0.273119 5.82241 0.540762 0 0.184515 3.40172 0 -0.367879 +0.125 1 0.271828 -0.203871 0.000427246 0.448524 0.245886 5.88071 0.553432 0 0.184515 3.40172 0 -0.367879 -0.125 0.875 0.239911 -0.180101 0.166351 0.406092 0.213398 3.51199 0.730632 0 0.280337 3.39107 0 -0.416862 -0.15625 0.875 0.239903 -0.180116 0.166321 0.416011 0.238985 3.52307 0.744385 0 0.280337 3.39107 0 -0.416862 +0.125 0.875 0.239923 -0.180047 0.168091 0.405121 0.21268 3.62385 0.733216 0 0.280337 3.39107 0 -0.416862 +0.15625 0.875 0.239923 -0.180056 0.167877 0.41508 0.229002 3.61123 0.746655 0 0.280337 3.39107 0 -0.416862 -0.125 0.90625 0.247527 -0.185768 0.12561 0.416477 0.20181 4.04739 0.686517 0 0.257493 3.39361 0 -0.404037 -0.15625 0.90625 0.24752 -0.185779 0.125427 0.426519 0.279441 4.05282 0.699858 0 0.257493 3.39361 0 -0.404037 +0.125 0.90625 0.247536 -0.185729 0.12674 0.415611 0.205155 4.16236 0.688506 0 0.257493 3.39361 0 -0.404037 +0.15625 0.90625 0.247535 -0.185736 0.126862 0.42557 0.236456 4.12544 0.702195 0 0.257493 3.39361 0 -0.404037 -0.15625 0.875 0.239903 -0.180116 0.166321 0.416011 0.238985 3.52307 0.744385 0 0.280337 3.39107 0 -0.416862 -0.1875 0.875 0.239894 -0.180124 0.16629 0.426413 0.213621 3.55491 0.758808 0 0.280337 3.39107 0 -0.416862 +0.15625 0.875 0.239923 -0.180056 0.167877 0.414908 0.229002 3.61123 0.746655 0 0.280337 3.39107 0 -0.416862 +0.1875 0.875 0.239922 -0.180062 0.168121 0.4254 0.225021 3.63586 0.761257 0 0.280337 3.39107 0 -0.416862 -0.15625 0.90625 0.24752 -0.185779 0.125427 0.426519 0.279441 4.05282 0.699858 0 0.257493 3.39361 0 -0.404037 -0.1875 0.90625 0.247511 -0.185785 0.125305 0.437308 0.227479 4.04145 0.714267 0 0.257493 3.39361 0 -0.404037 +0.15625 0.90625 0.247535 -0.185736 0.126862 0.425736 0.236456 4.12544 0.702195 0 0.257493 3.39361 0 -0.404037 +0.1875 0.90625 0.247533 -0.185739 0.12677 0.436228 0.249598 4.15852 0.716631 0 0.257493 3.39361 0 -0.404037 -0.125 0.90625 0.247527 -0.185768 0.12561 0.416477 0.20181 4.04739 0.686517 0 0.257493 3.39361 0 -0.404037 -0.15625 0.90625 0.24752 -0.185779 0.125427 0.426519 0.279441 4.05282 0.699858 0 0.257493 3.39361 0 -0.404037 +0.125 0.90625 0.247536 -0.185729 0.12674 0.415339 0.205155 4.16236 0.688506 0 0.257493 3.39361 0 -0.404037 +0.15625 0.90625 0.247535 -0.185736 0.126862 0.425529 0.236456 4.12544 0.702195 0 0.257493 3.39361 0 -0.404037 -0.125 0.9375 0.255383 -0.191614 0.0838013 0.427349 0.219904 4.72645 0.641642 0 0.233923 3.39623 0 -0.391606 -0.15625 0.9375 0.255377 -0.191621 0.0837402 0.437718 0.240749 4.7118 0.655116 0 0.233923 3.39623 0 -0.391606 +0.125 0.9375 0.255387 -0.191588 0.085144 0.426294 0.218815 4.78594 0.643716 0 0.233923 3.39623 0 -0.391606 +0.15625 0.9375 0.255385 -0.191593 0.0852051 0.436484 0.240383 4.79415 0.657385 0 0.233923 3.39623 0 -0.391606 -0.15625 0.90625 0.24752 -0.185779 0.125427 0.426519 0.279441 4.05282 0.699858 0 0.257493 3.39361 0 -0.404037 -0.1875 0.90625 0.247511 -0.185785 0.125305 0.437308 0.227479 4.04145 0.714267 0 0.257493 3.39361 0 -0.404037 +0.15625 0.90625 0.247535 -0.185736 0.126862 0.42537 0.236456 4.12544 0.702195 0 0.257493 3.39361 0 -0.404037 +0.1875 0.90625 0.247533 -0.185739 0.12677 0.436289 0.249598 4.15852 0.716631 0 0.257493 3.39361 0 -0.404037 -0.15625 0.9375 0.255377 -0.191621 0.0837402 0.437718 0.240749 4.7118 0.655116 0 0.233923 3.39623 0 -0.391606 -0.1875 0.9375 0.255369 -0.191626 0.0838013 0.448811 0.203002 4.678 0.669658 0 0.233923 3.39623 0 -0.391606 +0.15625 0.9375 0.255385 -0.191593 0.0852051 0.436607 0.240383 4.79415 0.657385 0 0.233923 3.39623 0 -0.391606 +0.1875 0.9375 0.255383 -0.191595 0.0852051 0.447527 0.259249 4.77791 0.671847 0 0.233923 3.39623 0 -0.391606 -0.1875 0.875 0.239894 -0.180124 0.16629 0.426413 0.213621 3.55491 0.758808 0 0.280337 3.39107 0 -0.416862 -0.21875 0.875 0.239885 -0.180129 0.166443 0.437464 0.177693 3.52648 0.774317 0 0.280337 3.39107 0 -0.416862 +0.1875 0.875 0.239922 -0.180062 0.168121 0.425201 0.225021 3.63586 0.761257 0 0.280337 3.39107 0 -0.416862 +0.21875 0.875 0.239921 -0.180064 0.167999 0.436527 0.254614 3.65626 0.776701 0 0.280337 3.39107 0 -0.416862 -0.1875 0.90625 0.247511 -0.185785 0.125305 0.437308 0.227479 4.04145 0.714267 0 0.257493 3.39361 0 -0.404037 -0.21875 0.90625 0.247504 -0.185789 0.12561 0.4486 0.249842 4.0384 0.729779 0 0.257493 3.39361 0 -0.404037 +0.1875 0.90625 0.247533 -0.185739 0.12677 0.436431 0.249598 4.15852 0.716631 0 0.257493 3.39361 0 -0.404037 +0.21875 0.90625 0.247531 -0.18574 0.126831 0.447757 0.244049 4.15373 0.732108 0 0.257493 3.39361 0 -0.404037 -0.21875 0.875 0.239885 -0.180129 0.166443 0.437464 0.177693 3.52648 0.774317 0 0.280337 3.39107 0 -0.416862 -0.25 0.875 0.239876 -0.18013 0.166687 0.4491 0.200046 3.57965 0.790729 0 0.280337 3.39107 0 -0.416862 +0.21875 0.875 0.239921 -0.180064 0.167999 0.43636 0.254614 3.65626 0.776701 0 0.280337 3.39107 0 -0.416862 +0.25 0.875 0.239919 -0.180064 0.16806 0.448361 0.295763 3.63365 0.793303 0 0.280337 3.39107 0 -0.416862 -0.21875 0.90625 0.247504 -0.185789 0.12561 0.4486 0.249842 4.0384 0.729779 0 0.257493 3.39361 0 -0.404037 -0.25 0.90625 0.247497 -0.18579 0.125244 0.46126 0.230345 4.01242 0.746464 0 0.257493 3.39361 0 -0.404037 +0.21875 0.90625 0.247531 -0.18574 0.126831 0.447903 0.244049 4.15373 0.732108 0 0.257493 3.39361 0 -0.404037 +0.25 0.90625 0.247528 -0.18574 0.126831 0.459903 0.275988 4.16119 0.748667 0 0.257493 3.39361 0 -0.404037 -0.1875 0.90625 0.247511 -0.185785 0.125305 0.437308 0.227479 4.04145 0.714267 0 0.257493 3.39361 0 -0.404037 -0.21875 0.90625 0.247504 -0.185789 0.12561 0.4486 0.249842 4.0384 0.729779 0 0.257493 3.39361 0 -0.404037 +0.1875 0.90625 0.247533 -0.185739 0.12677 0.436111 0.249598 4.15852 0.716631 0 0.257493 3.39361 0 -0.404037 +0.21875 0.90625 0.247531 -0.18574 0.126831 0.447725 0.244049 4.15373 0.732108 0 0.257493 3.39361 0 -0.404037 -0.1875 0.9375 0.255369 -0.191626 0.0838013 0.448811 0.203002 4.678 0.669658 0 0.233923 3.39623 0 -0.391606 -0.21875 0.9375 0.255362 -0.191628 0.0839539 0.460468 0.154287 4.69991 0.685027 0 0.233923 3.39623 0 -0.391606 +0.1875 0.9375 0.255383 -0.191595 0.0852051 0.447692 0.259249 4.77791 0.671847 0 0.233923 3.39623 0 -0.391606 +0.21875 0.9375 0.25538 -0.191595 0.0851746 0.459306 0.265172 4.79568 0.687306 0 0.233923 3.39623 0 -0.391606 -0.21875 0.90625 0.247504 -0.185789 0.12561 0.4486 0.249842 4.0384 0.729779 0 0.257493 3.39361 0 -0.404037 -0.25 0.90625 0.247497 -0.18579 0.125244 0.46126 0.230345 4.01242 0.746464 0 0.257493 3.39361 0 -0.404037 +0.21875 0.90625 0.247531 -0.18574 0.126831 0.447509 0.244049 4.15373 0.732108 0 0.257493 3.39361 0 -0.404037 +0.25 0.90625 0.247528 -0.18574 0.126831 0.459946 0.275988 4.16119 0.748667 0 0.257493 3.39361 0 -0.404037 -0.21875 0.9375 0.255362 -0.191628 0.0839539 0.460468 0.154287 4.69991 0.685027 0 0.233923 3.39623 0 -0.391606 -0.25 0.9375 0.255356 -0.19163 0.0843506 0.47294 0.211569 4.56588 0.701704 0 0.233923 3.39623 0 -0.391606 +0.21875 0.9375 0.25538 -0.191595 0.0851746 0.45952 0.265172 4.79568 0.687306 0 0.233923 3.39623 0 -0.391606 +0.25 0.9375 0.255378 -0.191595 0.0851746 0.471957 0.279874 4.81374 0.703824 0 0.233923 3.39623 0 -0.391606 -0.125 0.9375 0.255383 -0.191614 0.0838013 0.427349 0.219904 4.72645 0.641642 0 0.233923 3.39623 0 -0.391606 -0.15625 0.9375 0.255377 -0.191621 0.0837402 0.437718 0.240749 4.7118 0.655116 0 0.233923 3.39623 0 -0.391606 +0.125 0.9375 0.255387 -0.191588 0.085144 0.42592 0.218815 4.78594 0.643716 0 0.233923 3.39623 0 -0.391606 +0.15625 0.9375 0.255385 -0.191593 0.0852051 0.436471 0.240383 4.79415 0.657385 0 0.233923 3.39623 0 -0.391606 -0.125 0.96875 0.263482 -0.197646 0.0419006 0.438265 0.24521 5.49516 0.59639 0 0.209605 3.39893 0 -0.379557 -0.15625 0.96875 0.263477 -0.197649 0.0417786 0.44922 0.260064 5.46707 0.610128 0 0.209605 3.39893 0 -0.379557 +0.125 0.96875 0.263482 -0.197633 0.0430298 0.437297 0.240474 5.51268 0.598714 0 0.209605 3.39893 0 -0.379557 +0.15625 0.96875 0.263481 -0.197635 0.0430298 0.447848 0.249656 5.48502 0.612257 0 0.209605 3.39893 0 -0.379557 -0.15625 0.9375 0.255377 -0.191621 0.0837402 0.437718 0.240749 4.7118 0.655116 0 0.233923 3.39623 0 -0.391606 -0.1875 0.9375 0.255369 -0.191626 0.0838013 0.448811 0.203002 4.678 0.669658 0 0.233923 3.39623 0 -0.391606 +0.15625 0.9375 0.255385 -0.191593 0.0852051 0.436297 0.240383 4.79415 0.657385 0 0.233923 3.39623 0 -0.391606 +0.1875 0.9375 0.255383 -0.191595 0.0852051 0.447496 0.259249 4.77791 0.671847 0 0.233923 3.39623 0 -0.391606 -0.15625 0.96875 0.263477 -0.197649 0.0417786 0.44922 0.260064 5.46707 0.610128 0 0.209605 3.39893 0 -0.379557 -0.1875 0.96875 0.263472 -0.197651 0.0418396 0.460523 0.198024 5.45365 0.624489 0 0.209605 3.39893 0 -0.379557 +0.15625 0.96875 0.263481 -0.197635 0.0430298 0.448007 0.249656 5.48502 0.612257 0 0.209605 3.39893 0 -0.379557 +0.1875 0.96875 0.263479 -0.197636 0.0430908 0.459207 0.26652 5.49539 0.62676 0 0.209605 3.39893 0 -0.379557 -0.125 0.96875 0.263482 -0.197646 0.0419006 0.438265 0.24521 5.49516 0.59639 0 0.209605 3.39893 0 -0.379557 -0.15625 0.96875 0.263477 -0.197649 0.0417786 0.44922 0.260064 5.46707 0.610128 0 0.209605 3.39893 0 -0.379557 +0.125 0.96875 0.263482 -0.197633 0.0430298 0.436992 0.240474 5.51268 0.598714 0 0.209605 3.39893 0 -0.379557 +0.15625 0.96875 0.263481 -0.197635 0.0430298 0.447812 0.249656 5.48502 0.612257 0 0.209605 3.39893 0 -0.379557 -0.125 1 0.271828 -0.203871 -0.000701904 0.450136 0.219341 6.4264 0.551283 0 0.184515 3.40172 0 -0.367879 -0.15625 1 0.271828 -0.203871 -0.000671387 0.460928 0.228156 6.35343 0.564549 0 0.184515 3.40172 0 -0.367879 +0.125 1 0.271828 -0.203871 0.000427246 0.448689 0.245886 5.88071 0.553432 0 0.184515 3.40172 0 -0.367879 +0.15625 1 0.271828 -0.203871 0.000579834 0.45951 0.247188 5.81529 0.567097 0 0.184515 3.40172 0 -0.367879 -0.15625 0.96875 0.263477 -0.197649 0.0417786 0.44922 0.260064 5.46707 0.610128 0 0.209605 3.39893 0 -0.379557 -0.1875 0.96875 0.263472 -0.197651 0.0418396 0.460523 0.198024 5.45365 0.624489 0 0.209605 3.39893 0 -0.379557 +0.15625 0.96875 0.263481 -0.197635 0.0430298 0.447642 0.249656 5.48502 0.612257 0 0.209605 3.39893 0 -0.379557 +0.1875 0.96875 0.263479 -0.197636 0.0430908 0.459219 0.26652 5.49539 0.62676 0 0.209605 3.39893 0 -0.379557 -0.15625 1 0.271828 -0.203871 -0.000671387 0.460928 0.228156 6.35343 0.564549 0 0.184515 3.40172 0 -0.367879 -0.1875 1 0.271828 -0.203871 -0.000579834 0.472728 0.206086 6.33624 0.57911 0 0.184515 3.40172 0 -0.367879 +0.15625 1 0.271828 -0.203871 0.000579834 0.459653 0.247188 5.81529 0.567097 0 0.184515 3.40172 0 -0.367879 +0.1875 1 0.271828 -0.203871 0.000549316 0.471229 0.283318 5.85247 0.581591 0 0.184515 3.40172 0 -0.367879 -0.1875 0.9375 0.255369 -0.191626 0.0838013 0.448811 0.203002 4.678 0.669658 0 0.233923 3.39623 0 -0.391606 -0.21875 0.9375 0.255362 -0.191628 0.0839539 0.460468 0.154287 4.69991 0.685027 0 0.233923 3.39623 0 -0.391606 +0.1875 0.9375 0.255383 -0.191595 0.0852051 0.447324 0.259249 4.77791 0.671847 0 0.233923 3.39623 0 -0.391606 +0.21875 0.9375 0.25538 -0.191595 0.0851746 0.459346 0.265172 4.79568 0.687306 0 0.233923 3.39623 0 -0.391606 -0.1875 0.96875 0.263472 -0.197651 0.0418396 0.460523 0.198024 5.45365 0.624489 0 0.209605 3.39893 0 -0.379557 -0.21875 0.96875 0.263467 -0.197653 0.0420227 0.472656 0.127537 5.46654 0.640023 0 0.209605 3.39893 0 -0.379557 +0.1875 0.96875 0.263479 -0.197636 0.0430908 0.459379 0.26652 5.49539 0.62676 0 0.209605 3.39893 0 -0.379557 +0.21875 0.96875 0.263478 -0.197637 0.0430298 0.471401 0.295815 5.49587 0.642183 0 0.209605 3.39893 0 -0.379557 -0.21875 0.9375 0.255362 -0.191628 0.0839539 0.460468 0.154287 4.69991 0.685027 0 0.233923 3.39623 0 -0.391606 -0.25 0.9375 0.255356 -0.19163 0.0843506 0.47294 0.211569 4.56588 0.701704 0 0.233923 3.39623 0 -0.391606 +0.21875 0.9375 0.25538 -0.191595 0.0851746 0.459135 0.265172 4.79568 0.687306 0 0.233923 3.39623 0 -0.391606 +0.25 0.9375 0.255378 -0.191595 0.0851746 0.471955 0.279874 4.81374 0.703824 0 0.233923 3.39623 0 -0.391606 -0.21875 0.96875 0.263467 -0.197653 0.0420227 0.472656 0.127537 5.46654 0.640023 0 0.209605 3.39893 0 -0.379557 -0.25 0.96875 0.263463 -0.197653 0.0424805 0.485454 0.178242 5.4833 0.656673 0 0.209605 3.39893 0 -0.379557 +0.21875 0.96875 0.263478 -0.197637 0.0430298 0.471597 0.295815 5.49587 0.642183 0 0.209605 3.39893 0 -0.379557 +0.25 0.96875 0.263476 -0.197636 0.0429382 0.484418 0.295808 5.50697 0.658664 0 0.209605 3.39893 0 -0.379557 -0.1875 0.96875 0.263472 -0.197651 0.0418396 0.460523 0.198024 5.45365 0.624489 0 0.209605 3.39893 0 -0.379557 -0.21875 0.96875 0.263467 -0.197653 0.0420227 0.472656 0.127537 5.46654 0.640023 0 0.209605 3.39893 0 -0.379557 +0.1875 0.96875 0.263479 -0.197636 0.0430908 0.458999 0.26652 5.49539 0.62676 0 0.209605 3.39893 0 -0.379557 +0.21875 0.96875 0.263478 -0.197637 0.0430298 0.471399 0.295815 5.49587 0.642183 0 0.209605 3.39893 0 -0.379557 -0.1875 1 0.271828 -0.203871 -0.000579834 0.472728 0.206086 6.33624 0.57911 0 0.184515 3.40172 0 -0.367879 -0.21875 1 0.271828 -0.203871 -0.000457764 0.485223 0.17309 6.36598 0.594554 0 0.184515 3.40172 0 -0.367879 +0.1875 1 0.271828 -0.203871 0.000549316 0.471438 0.283318 5.85247 0.581591 0 0.184515 3.40172 0 -0.367879 +0.21875 1 0.271828 -0.203871 0.000518799 0.483838 0.298058 5.84139 0.597096 0 0.184515 3.40172 0 -0.367879 -0.21875 0.96875 0.263467 -0.197653 0.0420227 0.472656 0.127537 5.46654 0.640023 0 0.209605 3.39893 0 -0.379557 -0.25 0.96875 0.263463 -0.197653 0.0424805 0.485454 0.178242 5.4833 0.656673 0 0.209605 3.39893 0 -0.379557 +0.21875 0.96875 0.263478 -0.197637 0.0430298 0.471176 0.295815 5.49587 0.642183 0 0.209605 3.39893 0 -0.379557 +0.25 0.96875 0.263476 -0.197636 0.0429382 0.484426 0.295808 5.50697 0.658664 0 0.209605 3.39893 0 -0.379557 -0.21875 1 0.271828 -0.203871 -0.000457764 0.485223 0.17309 6.36598 0.594554 0 0.184515 3.40172 0 -0.367879 -0.25 1 0.271828 -0.203871 -0.000213623 0.498622 0.177456 6.46062 0.611229 0 0.184515 3.40172 0 -0.367879 +0.21875 1 0.271828 -0.203871 0.000518799 0.484042 0.298058 5.84139 0.597096 0 0.184515 3.40172 0 -0.367879 +0.25 1 0.271828 -0.203871 0.000457764 0.497292 0.319874 5.83385 0.613617 0 0.184515 3.40172 0 -0.367879 -0.25 0.75 0.21166 -0.159161 0.327698 0.405991 0.177871 2.32724 0.966953 0 0.3649 3.38168 0 -0.472367 -0.28125 0.75 0.211655 -0.15916 0.32782 0.416933 0.212407 2.33463 0.984304 0 0.3649 3.38168 0 -0.472367 +0.25 0.75 0.211741 -0.159032 0.32962 0.405326 0.185283 2.38053 0.969412 0 0.3649 3.38168 0 -0.472367 +0.28125 0.75 0.211742 -0.159033 0.329651 0.416674 0.253097 2.38079 0.987127 0 0.3649 3.38168 0 -0.472367 -0.25 0.78125 0.218388 -0.164163 0.288391 0.4159 0.18333 2.56661 0.923101 0 0.34474 3.38392 0 -0.457833 -0.28125 0.78125 0.218382 -0.164162 0.288116 0.427697 0.285579 2.56732 0.94083 0 0.34474 3.38392 0 -0.457833 +0.25 0.78125 0.218459 -0.164051 0.289581 0.415933 0.227866 2.62495 0.925594 0 0.34474 3.38392 0 -0.457833 +0.28125 0.78125 0.218459 -0.16405 0.289581 0.427281 0.2433 2.65315 0.943311 0 0.34474 3.38392 0 -0.457833 -0.28125 0.75 0.211655 -0.15916 0.32782 0.416933 0.212407 2.33463 0.984304 0 0.3649 3.38168 0 -0.472367 -0.3125 0.75 0.211648 -0.159153 0.327667 0.429005 0.231802 2.35601 1.00316 0 0.3649 3.38168 0 -0.472367 +0.28125 0.75 0.211742 -0.159033 0.329651 0.41653 0.253097 2.38079 0.987127 0 0.3649 3.38168 0 -0.472367 +0.3125 0.75 0.211741 -0.159031 0.329254 0.428872 0.268826 2.37257 1.00593 0 0.3649 3.38168 0 -0.472367 -0.28125 0.78125 0.218382 -0.164162 0.288116 0.427697 0.285579 2.56732 0.94083 0 0.34474 3.38392 0 -0.457833 -0.3125 0.78125 0.218376 -0.164158 0.287811 0.440068 0.292443 2.5655 0.959403 0 0.34474 3.38392 0 -0.457833 +0.28125 0.78125 0.218459 -0.16405 0.289581 0.427391 0.2433 2.65315 0.943311 0 0.34474 3.38392 0 -0.457833 +0.3125 0.78125 0.218457 -0.164049 0.289429 0.439734 0.262221 2.60921 0.962124 0 0.34474 3.38392 0 -0.457833 -0.25 0.78125 0.218388 -0.164163 0.288391 0.4159 0.18333 2.56661 0.923101 0 0.34474 3.38392 0 -0.457833 -0.28125 0.78125 0.218382 -0.164162 0.288116 0.427697 0.285579 2.56732 0.94083 0 0.34474 3.38392 0 -0.457833 +0.25 0.78125 0.218459 -0.164051 0.289581 0.415582 0.227866 2.62495 0.925594 0 0.34474 3.38392 0 -0.457833 +0.28125 0.78125 0.218459 -0.16405 0.289581 0.427363 0.2433 2.65315 0.943311 0 0.34474 3.38392 0 -0.457833 -0.25 0.8125 0.225329 -0.169321 0.247925 0.426787 0.183875 2.92432 0.87921 0 0.32394 3.38623 0 -0.443747 -0.28125 0.8125 0.225323 -0.169321 0.247986 0.438643 0.236937 2.86901 0.896808 0 0.32394 3.38623 0 -0.443747 +0.25 0.8125 0.225391 -0.169225 0.249451 0.426449 0.250209 2.90758 0.881716 0 0.32394 3.38623 0 -0.443747 +0.28125 0.8125 0.225389 -0.169224 0.249237 0.43823 0.255885 2.91948 0.899289 0 0.32394 3.38623 0 -0.443747 -0.28125 0.78125 0.218382 -0.164162 0.288116 0.427697 0.285579 2.56732 0.94083 0 0.34474 3.38392 0 -0.457833 -0.3125 0.78125 0.218376 -0.164158 0.287811 0.440068 0.292443 2.5655 0.959403 0 0.34474 3.38392 0 -0.457833 +0.28125 0.78125 0.218459 -0.16405 0.289581 0.427159 0.2433 2.65315 0.943311 0 0.34474 3.38392 0 -0.457833 +0.3125 0.78125 0.218457 -0.164049 0.289429 0.43969 0.262221 2.60921 0.962124 0 0.34474 3.38392 0 -0.457833 -0.28125 0.8125 0.225323 -0.169321 0.247986 0.438643 0.236937 2.86901 0.896808 0 0.32394 3.38623 0 -0.443747 -0.3125 0.8125 0.225316 -0.169318 0.247803 0.451327 0.254805 2.81239 0.915386 0 0.32394 3.38623 0 -0.443747 +0.28125 0.8125 0.225389 -0.169224 0.249237 0.438424 0.255885 2.91948 0.899289 0 0.32394 3.38623 0 -0.443747 +0.3125 0.8125 0.225386 -0.169223 0.249237 0.450955 0.239862 2.91191 0.918148 0 0.32394 3.38623 0 -0.443747 -0.3125 0.75 0.211648 -0.159153 0.327667 0.429005 0.231802 2.35601 1.00316 0 0.3649 3.38168 0 -0.472367 -0.34375 0.75 0.211642 -0.159145 0.327606 0.441723 0.205102 2.38823 1.02312 0 0.3649 3.38168 0 -0.472367 +0.3125 0.75 0.211741 -0.159031 0.329254 0.428692 0.268826 2.37257 1.00593 0 0.3649 3.38168 0 -0.472367 +0.34375 0.75 0.211738 -0.159028 0.329193 0.441651 0.240574 2.38672 1.02593 0 0.3649 3.38168 0 -0.472367 -0.3125 0.78125 0.218376 -0.164158 0.287811 0.440068 0.292443 2.5655 0.959403 0 0.34474 3.38392 0 -0.457833 -0.34375 0.78125 0.218371 -0.16415 0.287567 0.453147 0.250547 2.56649 0.97912 0 0.34474 3.38392 0 -0.457833 +0.3125 0.78125 0.218457 -0.164049 0.289429 0.439887 0.262221 2.60921 0.962124 0 0.34474 3.38392 0 -0.457833 +0.34375 0.78125 0.218454 -0.164046 0.289246 0.452845 0.246203 2.60345 0.98202 0 0.34474 3.38392 0 -0.457833 -0.34375 0.75 0.211642 -0.159145 0.327606 0.441723 0.205102 2.38823 1.02312 0 0.3649 3.38168 0 -0.472367 -0.375 0.75 0.211637 -0.159136 0.327759 0.455172 0.206518 2.39076 1.04445 0 0.3649 3.38168 0 -0.472367 +0.34375 0.75 0.211738 -0.159028 0.329193 0.441403 0.240574 2.38672 1.02593 0 0.3649 3.38168 0 -0.472367 +0.375 0.75 0.211735 -0.159024 0.329132 0.45509 0.255606 2.34872 1.04714 0 0.3649 3.38168 0 -0.472367 -0.34375 0.78125 0.218371 -0.16415 0.287567 0.453147 0.250547 2.56649 0.97912 0 0.34474 3.38392 0 -0.457833 -0.375 0.78125 0.218364 -0.164142 0.287598 0.467313 0.20318 2.59678 1.00077 0 0.34474 3.38392 0 -0.457833 +0.34375 0.78125 0.218454 -0.164046 0.289246 0.453066 0.246203 2.60345 0.98202 0 0.34474 3.38392 0 -0.457833 +0.375 0.78125 0.218451 -0.164042 0.289276 0.466753 0.245441 2.59591 1.00333 0 0.34474 3.38392 0 -0.457833 -0.3125 0.78125 0.218376 -0.164158 0.287811 0.440068 0.292443 2.5655 0.959403 0 0.34474 3.38392 0 -0.457833 -0.34375 0.78125 0.218371 -0.16415 0.287567 0.453147 0.250547 2.56649 0.97912 0 0.34474 3.38392 0 -0.457833 +0.3125 0.78125 0.218457 -0.164049 0.289429 0.439551 0.262221 2.60921 0.962124 0 0.34474 3.38392 0 -0.457833 +0.34375 0.78125 0.218454 -0.164046 0.289246 0.452902 0.246203 2.60345 0.98202 0 0.34474 3.38392 0 -0.457833 -0.3125 0.8125 0.225316 -0.169318 0.247803 0.451327 0.254805 2.81239 0.915386 0 0.32394 3.38623 0 -0.443747 -0.34375 0.8125 0.225309 -0.169312 0.247772 0.464931 0.247714 2.7977 0.935479 0 0.32394 3.38623 0 -0.443747 +0.3125 0.8125 0.225386 -0.169223 0.249237 0.451086 0.239862 2.91191 0.918148 0 0.32394 3.38623 0 -0.443747 +0.34375 0.8125 0.225383 -0.16922 0.249176 0.464436 0.242331 2.86775 0.93799 0 0.32394 3.38623 0 -0.443747 -0.34375 0.78125 0.218371 -0.16415 0.287567 0.453147 0.250547 2.56649 0.97912 0 0.34474 3.38392 0 -0.457833 -0.375 0.78125 0.218364 -0.164142 0.287598 0.467313 0.20318 2.59678 1.00077 0 0.34474 3.38392 0 -0.457833 +0.34375 0.78125 0.218454 -0.164046 0.289246 0.452672 0.246203 2.60345 0.98202 0 0.34474 3.38392 0 -0.457833 +0.375 0.78125 0.218451 -0.164042 0.289276 0.466823 0.245441 2.59591 1.00333 0 0.34474 3.38392 0 -0.457833 -0.34375 0.8125 0.225309 -0.169312 0.247772 0.464931 0.247714 2.7977 0.935479 0 0.32394 3.38623 0 -0.443747 -0.375 0.8125 0.225303 -0.169302 0.24765 0.479467 0.228167 2.8053 0.956857 0 0.32394 3.38623 0 -0.443747 +0.34375 0.8125 0.225383 -0.16922 0.249176 0.464609 0.242331 2.86775 0.93799 0 0.32394 3.38623 0 -0.443747 +0.375 0.8125 0.22538 -0.169216 0.249146 0.478761 0.252341 2.87683 0.959371 0 0.32394 3.38623 0 -0.443747 -0.25 0.8125 0.225329 -0.169321 0.247925 0.426787 0.183875 2.92432 0.87921 0 0.32394 3.38623 0 -0.443747 -0.28125 0.8125 0.225323 -0.169321 0.247986 0.438643 0.236937 2.86901 0.896808 0 0.32394 3.38623 0 -0.443747 +0.25 0.8125 0.225391 -0.169225 0.249451 0.4261 0.250209 2.90758 0.881716 0 0.32394 3.38623 0 -0.443747 +0.28125 0.8125 0.225389 -0.169224 0.249237 0.438274 0.255885 2.91948 0.899289 0 0.32394 3.38623 0 -0.443747 -0.25 0.84375 0.23249 -0.174642 0.207214 0.437948 0.181946 3.20032 0.835079 0 0.302479 3.38861 0 -0.430095 -0.28125 0.84375 0.232481 -0.174642 0.207428 0.450037 0.17941 3.19764 0.852622 0 0.302479 3.38861 0 -0.430095 +0.25 0.84375 0.232542 -0.174561 0.208801 0.437316 0.263416 3.23605 0.837419 0 0.302479 3.38861 0 -0.430095 +0.28125 0.84375 0.232539 -0.17456 0.208771 0.44949 0.263199 3.26759 0.855247 0 0.302479 3.38861 0 -0.430095 -0.28125 0.8125 0.225323 -0.169321 0.247986 0.438643 0.236937 2.86901 0.896808 0 0.32394 3.38623 0 -0.443747 -0.3125 0.8125 0.225316 -0.169318 0.247803 0.451327 0.254805 2.81239 0.915386 0 0.32394 3.38623 0 -0.443747 +0.28125 0.8125 0.225389 -0.169224 0.249237 0.438087 0.255885 2.91948 0.899289 0 0.32394 3.38623 0 -0.443747 +0.3125 0.8125 0.225386 -0.169223 0.249237 0.450979 0.239862 2.91191 0.918148 0 0.32394 3.38623 0 -0.443747 -0.28125 0.84375 0.232481 -0.174642 0.207428 0.450037 0.17941 3.19764 0.852622 0 0.302479 3.38861 0 -0.430095 -0.3125 0.84375 0.232475 -0.174639 0.207581 0.463093 0.227048 3.16041 0.871494 0 0.302479 3.38861 0 -0.430095 +0.28125 0.84375 0.232539 -0.17456 0.208771 0.449672 0.263199 3.26759 0.855247 0 0.302479 3.38861 0 -0.430095 +0.3125 0.84375 0.232535 -0.174558 0.208588 0.462564 0.231555 3.2382 0.873793 0 0.302479 3.38861 0 -0.430095 -0.25 0.84375 0.23249 -0.174642 0.207214 0.437948 0.181946 3.20032 0.835079 0 0.302479 3.38861 0 -0.430095 -0.28125 0.84375 0.232481 -0.174642 0.207428 0.450037 0.17941 3.19764 0.852622 0 0.302479 3.38861 0 -0.430095 +0.25 0.84375 0.232542 -0.174561 0.208801 0.436934 0.263416 3.23605 0.837419 0 0.302479 3.38861 0 -0.430095 +0.28125 0.84375 0.232539 -0.17456 0.208771 0.449555 0.263199 3.26759 0.855247 0 0.302479 3.38861 0 -0.430095 -0.25 0.875 0.239876 -0.18013 0.166687 0.4491 0.200046 3.57965 0.790729 0 0.280337 3.39107 0 -0.416862 -0.28125 0.875 0.239868 -0.180129 0.166656 0.461865 0.228444 3.56386 0.808437 0 0.280337 3.39107 0 -0.416862 +0.25 0.875 0.239919 -0.180064 0.16806 0.448535 0.295763 3.63365 0.793303 0 0.280337 3.39107 0 -0.416862 +0.28125 0.875 0.239915 -0.180063 0.167633 0.461157 0.27607 3.64231 0.810688 0 0.280337 3.39107 0 -0.416862 -0.28125 0.84375 0.232481 -0.174642 0.207428 0.450037 0.17941 3.19764 0.852622 0 0.302479 3.38861 0 -0.430095 -0.3125 0.84375 0.232475 -0.174639 0.207581 0.463093 0.227048 3.16041 0.871494 0 0.302479 3.38861 0 -0.430095 +0.28125 0.84375 0.232539 -0.17456 0.208771 0.449346 0.263199 3.26759 0.855247 0 0.302479 3.38861 0 -0.430095 +0.3125 0.84375 0.232535 -0.174558 0.208588 0.462568 0.231555 3.2382 0.873793 0 0.302479 3.38861 0 -0.430095 -0.28125 0.875 0.239868 -0.180129 0.166656 0.461865 0.228444 3.56386 0.808437 0 0.280337 3.39107 0 -0.416862 -0.3125 0.875 0.239861 -0.180126 0.166687 0.475266 0.211268 3.56178 0.827088 0 0.280337 3.39107 0 -0.416862 +0.28125 0.875 0.239915 -0.180063 0.167633 0.461344 0.27607 3.64231 0.810688 0 0.280337 3.39107 0 -0.416862 +0.3125 0.875 0.239912 -0.180061 0.167847 0.474566 0.234124 3.64219 0.829485 0 0.280337 3.39107 0 -0.416862 -0.3125 0.8125 0.225316 -0.169318 0.247803 0.451327 0.254805 2.81239 0.915386 0 0.32394 3.38623 0 -0.443747 -0.34375 0.8125 0.225309 -0.169312 0.247772 0.464931 0.247714 2.7977 0.935479 0 0.32394 3.38623 0 -0.443747 +0.3125 0.8125 0.225386 -0.169223 0.249237 0.450797 0.239862 2.91191 0.918148 0 0.32394 3.38623 0 -0.443747 +0.34375 0.8125 0.225383 -0.16922 0.249176 0.46444 0.242331 2.86775 0.93799 0 0.32394 3.38623 0 -0.443747 -0.3125 0.84375 0.232475 -0.174639 0.207581 0.463093 0.227048 3.16041 0.871494 0 0.302479 3.38861 0 -0.430095 -0.34375 0.84375 0.232468 -0.174634 0.207428 0.47698 0.25297 3.13977 0.89125 0 0.302479 3.38861 0 -0.430095 +0.3125 0.84375 0.232535 -0.174558 0.208588 0.462741 0.231555 3.2382 0.873793 0 0.302479 3.38861 0 -0.430095 +0.34375 0.84375 0.232532 -0.174556 0.208801 0.476385 0.218497 3.24827 0.893916 0 0.302479 3.38861 0 -0.430095 -0.34375 0.8125 0.225309 -0.169312 0.247772 0.464931 0.247714 2.7977 0.935479 0 0.32394 3.38623 0 -0.443747 -0.375 0.8125 0.225303 -0.169302 0.24765 0.479467 0.228167 2.8053 0.956857 0 0.32394 3.38623 0 -0.443747 +0.34375 0.8125 0.225383 -0.16922 0.249176 0.46421 0.242331 2.86775 0.93799 0 0.32394 3.38623 0 -0.443747 +0.375 0.8125 0.22538 -0.169216 0.249146 0.478855 0.252341 2.87683 0.959371 0 0.32394 3.38623 0 -0.443747 -0.34375 0.84375 0.232468 -0.174634 0.207428 0.47698 0.25297 3.13977 0.89125 0 0.302479 3.38861 0 -0.430095 -0.375 0.84375 0.232461 -0.174625 0.207397 0.491997 0.229674 3.10888 0.912749 0 0.302479 3.38861 0 -0.430095 +0.34375 0.84375 0.232532 -0.174556 0.208801 0.476559 0.218497 3.24827 0.893916 0 0.302479 3.38861 0 -0.430095 +0.375 0.84375 0.232528 -0.174552 0.20871 0.491203 0.237269 3.22846 0.915132 0 0.302479 3.38861 0 -0.430095 -0.3125 0.84375 0.232475 -0.174639 0.207581 0.463093 0.227048 3.16041 0.871494 0 0.302479 3.38861 0 -0.430095 -0.34375 0.84375 0.232468 -0.174634 0.207428 0.47698 0.25297 3.13977 0.89125 0 0.302479 3.38861 0 -0.430095 +0.3125 0.84375 0.232535 -0.174558 0.208588 0.462365 0.231555 3.2382 0.873793 0 0.302479 3.38861 0 -0.430095 +0.34375 0.84375 0.232532 -0.174556 0.208801 0.476462 0.218497 3.24827 0.893916 0 0.302479 3.38861 0 -0.430095 -0.3125 0.875 0.239861 -0.180126 0.166687 0.475266 0.211268 3.56178 0.827088 0 0.280337 3.39107 0 -0.416862 -0.34375 0.875 0.239855 -0.180122 0.166809 0.489632 0.197797 3.55123 0.847172 0 0.280337 3.39107 0 -0.416862 +0.3125 0.875 0.239912 -0.180061 0.167847 0.474752 0.234124 3.64219 0.829485 0 0.280337 3.39107 0 -0.416862 +0.34375 0.875 0.239908 -0.180058 0.167725 0.488849 0.237881 3.68694 0.849458 0 0.280337 3.39107 0 -0.416862 -0.34375 0.84375 0.232468 -0.174634 0.207428 0.47698 0.25297 3.13977 0.89125 0 0.302479 3.38861 0 -0.430095 -0.375 0.84375 0.232461 -0.174625 0.207397 0.491997 0.229674 3.10888 0.912749 0 0.302479 3.38861 0 -0.430095 +0.34375 0.84375 0.232532 -0.174556 0.208801 0.476203 0.218497 3.24827 0.893916 0 0.302479 3.38861 0 -0.430095 +0.375 0.84375 0.232528 -0.174552 0.20871 0.491262 0.237269 3.22846 0.915132 0 0.302479 3.38861 0 -0.430095 -0.34375 0.875 0.239855 -0.180122 0.166809 0.489632 0.197797 3.55123 0.847172 0 0.280337 3.39107 0 -0.416862 -0.375 0.875 0.239849 -0.180114 0.166962 0.504818 0.228573 3.5522 0.868427 0 0.280337 3.39107 0 -0.416862 +0.34375 0.875 0.239908 -0.180058 0.167725 0.489094 0.237881 3.68694 0.849458 0 0.280337 3.39107 0 -0.416862 +0.375 0.875 0.239904 -0.180055 0.167847 0.504153 0.232047 3.67581 0.870808 0 0.280337 3.39107 0 -0.416862 -0.375 0.75 0.211637 -0.159136 0.327759 0.455172 0.206518 2.39076 1.04445 0 0.3649 3.38168 0 -0.472367 -0.40625 0.75 0.211632 -0.159123 0.327637 0.469649 0.205563 2.37389 1.06713 0 0.3649 3.38168 0 -0.472367 +0.375 0.75 0.211735 -0.159024 0.329132 0.454876 0.255606 2.34872 1.04714 0 0.3649 3.38168 0 -0.472367 +0.40625 0.75 0.211732 -0.159017 0.328918 0.469641 0.283944 2.34174 1.06991 0 0.3649 3.38168 0 -0.472367 -0.375 0.78125 0.218364 -0.164142 0.287598 0.467313 0.20318 2.59678 1.00077 0 0.34474 3.38392 0 -0.457833 -0.40625 0.78125 0.218357 -0.164129 0.28772 0.482092 0.190915 2.5685 1.02345 0 0.34474 3.38392 0 -0.457833 +0.375 0.78125 0.218451 -0.164042 0.289276 0.466956 0.245441 2.59591 1.00333 0 0.34474 3.38392 0 -0.457833 +0.40625 0.78125 0.218447 -0.164036 0.289124 0.48172 0.276274 2.58037 1.02606 0 0.34474 3.38392 0 -0.457833 -0.40625 0.75 0.211632 -0.159123 0.327637 0.469649 0.205563 2.37389 1.06713 0 0.3649 3.38168 0 -0.472367 -0.4375 0.75 0.211627 -0.159109 0.327789 0.484993 0.198443 2.36134 1.09144 0 0.3649 3.38168 0 -0.472367 +0.40625 0.75 0.211732 -0.159017 0.328918 0.469437 0.283944 2.34174 1.06991 0 0.3649 3.38168 0 -0.472367 +0.4375 0.75 0.211728 -0.159009 0.328583 0.485169 0.274948 2.33017 1.09403 0 0.3649 3.38168 0 -0.472367 -0.40625 0.78125 0.218357 -0.164129 0.28772 0.482092 0.190915 2.5685 1.02345 0 0.34474 3.38392 0 -0.457833 -0.4375 0.78125 0.218352 -0.164116 0.287811 0.497825 0.203057 2.5889 1.04755 0 0.34474 3.38392 0 -0.457833 +0.40625 0.78125 0.218447 -0.164036 0.289124 0.481912 0.276274 2.58037 1.02606 0 0.34474 3.38392 0 -0.457833 +0.4375 0.78125 0.218443 -0.164029 0.288879 0.497643 0.289695 2.5508 1.0501 0 0.34474 3.38392 0 -0.457833 -0.375 0.78125 0.218364 -0.164142 0.287598 0.467313 0.20318 2.59678 1.00077 0 0.34474 3.38392 0 -0.457833 -0.40625 0.78125 0.218357 -0.164129 0.28772 0.482092 0.190915 2.5685 1.02345 0 0.34474 3.38392 0 -0.457833 +0.375 0.78125 0.218451 -0.164042 0.289276 0.466573 0.245441 2.59591 1.00333 0 0.34474 3.38392 0 -0.457833 +0.40625 0.78125 0.218447 -0.164036 0.289124 0.481737 0.276274 2.58037 1.02606 0 0.34474 3.38392 0 -0.457833 -0.375 0.8125 0.225303 -0.169302 0.24765 0.479467 0.228167 2.8053 0.956857 0 0.32394 3.38623 0 -0.443747 -0.40625 0.8125 0.225296 -0.169293 0.247772 0.494726 0.220093 2.81008 0.979549 0 0.32394 3.38623 0 -0.443747 +0.375 0.8125 0.22538 -0.169216 0.249146 0.478996 0.252341 2.87683 0.959371 0 0.32394 3.38623 0 -0.443747 +0.40625 0.8125 0.225376 -0.169211 0.249023 0.49416 0.268468 2.84757 0.98196 0 0.32394 3.38623 0 -0.443747 -0.40625 0.78125 0.218357 -0.164129 0.28772 0.482092 0.190915 2.5685 1.02345 0 0.34474 3.38392 0 -0.457833 -0.4375 0.78125 0.218352 -0.164116 0.287811 0.497825 0.203057 2.5889 1.04755 0 0.34474 3.38392 0 -0.457833 +0.40625 0.78125 0.218447 -0.164036 0.289124 0.481526 0.276274 2.58037 1.02606 0 0.34474 3.38392 0 -0.457833 +0.4375 0.78125 0.218443 -0.164029 0.288879 0.49769 0.289695 2.5508 1.0501 0 0.34474 3.38392 0 -0.457833 -0.40625 0.8125 0.225296 -0.169293 0.247772 0.494726 0.220093 2.81008 0.979549 0 0.32394 3.38623 0 -0.443747 -0.4375 0.8125 0.225291 -0.169282 0.247711 0.511171 0.232061 2.8128 1.00381 0 0.32394 3.38623 0 -0.443747 +0.40625 0.8125 0.225376 -0.169211 0.249023 0.494335 0.268468 2.84757 0.98196 0 0.32394 3.38623 0 -0.443747 +0.4375 0.8125 0.225372 -0.169206 0.248932 0.510499 0.314717 2.83642 1.00629 0 0.32394 3.38623 0 -0.443747 -0.4375 0.75 0.211627 -0.159109 0.327789 0.484993 0.198443 2.36134 1.09144 0 0.3649 3.38168 0 -0.472367 -0.46875 0.75 0.211622 -0.159094 0.327728 0.501325 0.192883 2.37492 1.11709 0 0.3649 3.38168 0 -0.472367 +0.4375 0.75 0.211728 -0.159009 0.328583 0.484931 0.274948 2.33017 1.09403 0 0.3649 3.38168 0 -0.472367 +0.46875 0.75 0.211723 -0.159001 0.328491 0.501611 0.264745 2.33398 1.11966 0 0.3649 3.38168 0 -0.472367 -0.4375 0.78125 0.218352 -0.164116 0.287811 0.497825 0.203057 2.5889 1.04755 0 0.34474 3.38392 0 -0.457833 -0.46875 0.78125 0.218347 -0.164104 0.287811 0.51472 0.211516 2.58939 1.07333 0 0.34474 3.38392 0 -0.457833 +0.4375 0.78125 0.218443 -0.164029 0.288879 0.497894 0.289695 2.5508 1.0501 0 0.34474 3.38392 0 -0.457833 +0.46875 0.78125 0.218438 -0.164022 0.288635 0.514574 0.279938 2.59138 1.07584 0 0.34474 3.38392 0 -0.457833 -0.46875 0.75 0.211622 -0.159094 0.327728 0.501325 0.192883 2.37492 1.11709 0 0.3649 3.38168 0 -0.472367 -0.5 0.75 0.211619 -0.15908 0.327881 0.518717 0.166679 2.41005 1.14463 0 0.3649 3.38168 0 -0.472367 +0.46875 0.75 0.211723 -0.159001 0.328491 0.501226 0.264745 2.33398 1.11966 0 0.3649 3.38168 0 -0.472367 +0.5 0.75 0.211718 -0.158991 0.328247 0.519019 0.266557 2.34061 1.14709 0 0.3649 3.38168 0 -0.472367 -0.46875 0.78125 0.218347 -0.164104 0.287811 0.51472 0.211516 2.58939 1.07333 0 0.34474 3.38392 0 -0.457833 -0.5 0.78125 0.218343 -0.16409 0.287811 0.532707 0.192645 2.62544 1.10078 0 0.34474 3.38392 0 -0.457833 +0.46875 0.78125 0.218438 -0.164022 0.288635 0.514757 0.279938 2.59138 1.07584 0 0.34474 3.38392 0 -0.457833 +0.5 0.78125 0.218433 -0.164013 0.288452 0.532549 0.246566 2.56043 1.10317 0 0.34474 3.38392 0 -0.457833 -0.4375 0.78125 0.218352 -0.164116 0.287811 0.497825 0.203057 2.5889 1.04755 0 0.34474 3.38392 0 -0.457833 -0.46875 0.78125 0.218347 -0.164104 0.287811 0.51472 0.211516 2.58939 1.07333 0 0.34474 3.38392 0 -0.457833 +0.4375 0.78125 0.218443 -0.164029 0.288879 0.497396 0.289695 2.5508 1.0501 0 0.34474 3.38392 0 -0.457833 +0.46875 0.78125 0.218438 -0.164022 0.288635 0.514718 0.279938 2.59138 1.07584 0 0.34474 3.38392 0 -0.457833 -0.4375 0.8125 0.225291 -0.169282 0.247711 0.511171 0.232061 2.8128 1.00381 0 0.32394 3.38623 0 -0.443747 -0.46875 0.8125 0.225286 -0.16927 0.247711 0.528535 0.23028 2.84151 1.0295 0 0.32394 3.38623 0 -0.443747 +0.4375 0.8125 0.225372 -0.169206 0.248932 0.510788 0.314717 2.83642 1.00629 0 0.32394 3.38623 0 -0.443747 +0.46875 0.8125 0.225367 -0.1692 0.248383 0.528111 0.2904 2.7852 1.03162 0 0.32394 3.38623 0 -0.443747 -0.46875 0.78125 0.218347 -0.164104 0.287811 0.51472 0.211516 2.58939 1.07333 0 0.34474 3.38392 0 -0.457833 -0.5 0.78125 0.218343 -0.16409 0.287811 0.532707 0.192645 2.62544 1.10078 0 0.34474 3.38392 0 -0.457833 +0.46875 0.78125 0.218438 -0.164022 0.288635 0.514373 0.279938 2.59138 1.07584 0 0.34474 3.38392 0 -0.457833 +0.5 0.78125 0.218433 -0.164013 0.288452 0.532608 0.246566 2.56043 1.10317 0 0.34474 3.38392 0 -0.457833 -0.46875 0.8125 0.225286 -0.16927 0.247711 0.528535 0.23028 2.84151 1.0295 0 0.32394 3.38623 0 -0.443747 -0.5 0.8125 0.225282 -0.169259 0.24762 0.547179 0.187201 2.86844 1.05698 0 0.32394 3.38623 0 -0.443747 +0.46875 0.8125 0.225367 -0.1692 0.248383 0.528354 0.2904 2.7852 1.03162 0 0.32394 3.38623 0 -0.443747 +0.5 0.8125 0.225363 -0.169191 0.248474 0.546588 0.2198 2.80806 1.05914 0 0.32394 3.38623 0 -0.443747 -0.375 0.8125 0.225303 -0.169302 0.24765 0.479467 0.228167 2.8053 0.956857 0 0.32394 3.38623 0 -0.443747 -0.40625 0.8125 0.225296 -0.169293 0.247772 0.494726 0.220093 2.81008 0.979549 0 0.32394 3.38623 0 -0.443747 +0.375 0.8125 0.22538 -0.169216 0.249146 0.47864 0.252341 2.87683 0.959371 0 0.32394 3.38623 0 -0.443747 +0.40625 0.8125 0.225376 -0.169211 0.249023 0.494169 0.268468 2.84757 0.98196 0 0.32394 3.38623 0 -0.443747 -0.375 0.84375 0.232461 -0.174625 0.207397 0.491997 0.229674 3.10888 0.912749 0 0.302479 3.38861 0 -0.430095 -0.40625 0.84375 0.232456 -0.174618 0.207458 0.507769 0.217125 3.12647 0.935421 0 0.302479 3.38861 0 -0.430095 +0.375 0.84375 0.232528 -0.174552 0.20871 0.49143 0.237269 3.22846 0.915132 0 0.302479 3.38861 0 -0.430095 +0.40625 0.84375 0.232525 -0.174548 0.208771 0.506959 0.254264 3.21492 0.937893 0 0.302479 3.38861 0 -0.430095 -0.40625 0.8125 0.225296 -0.169293 0.247772 0.494726 0.220093 2.81008 0.979549 0 0.32394 3.38623 0 -0.443747 -0.4375 0.8125 0.225291 -0.169282 0.247711 0.511171 0.232061 2.8128 1.00381 0 0.32394 3.38623 0 -0.443747 +0.40625 0.8125 0.225376 -0.169211 0.249023 0.493945 0.268468 2.84757 0.98196 0 0.32394 3.38623 0 -0.443747 +0.4375 0.8125 0.225372 -0.169206 0.248932 0.510592 0.314717 2.83642 1.00629 0 0.32394 3.38623 0 -0.443747 -0.40625 0.84375 0.232456 -0.174618 0.207458 0.507769 0.217125 3.12647 0.935421 0 0.302479 3.38861 0 -0.430095 -0.4375 0.84375 0.232451 -0.174608 0.20755 0.524607 0.252632 3.11559 0.959653 0 0.302479 3.38861 0 -0.430095 +0.40625 0.84375 0.232525 -0.174548 0.208771 0.50721 0.254264 3.21492 0.937893 0 0.302479 3.38861 0 -0.430095 +0.4375 0.84375 0.232521 -0.174543 0.208557 0.523857 0.24968 3.19198 0.961925 0 0.302479 3.38861 0 -0.430095 -0.375 0.84375 0.232461 -0.174625 0.207397 0.491997 0.229674 3.10888 0.912749 0 0.302479 3.38861 0 -0.430095 -0.40625 0.84375 0.232456 -0.174618 0.207458 0.507769 0.217125 3.12647 0.935421 0 0.302479 3.38861 0 -0.430095 +0.375 0.84375 0.232528 -0.174552 0.20871 0.491013 0.237269 3.22846 0.915132 0 0.302479 3.38861 0 -0.430095 +0.40625 0.84375 0.232525 -0.174548 0.208771 0.507031 0.254264 3.21492 0.937893 0 0.302479 3.38861 0 -0.430095 -0.375 0.875 0.239849 -0.180114 0.166962 0.504818 0.228573 3.5522 0.868427 0 0.280337 3.39107 0 -0.416862 -0.40625 0.875 0.239843 -0.18011 0.16684 0.521233 0.237955 3.48162 0.891114 0 0.280337 3.39107 0 -0.416862 +0.375 0.875 0.239904 -0.180055 0.167847 0.504347 0.232047 3.67581 0.870808 0 0.280337 3.39107 0 -0.416862 +0.40625 0.875 0.239901 -0.180052 0.167786 0.520364 0.243448 3.65966 0.893437 0 0.280337 3.39107 0 -0.416862 -0.40625 0.84375 0.232456 -0.174618 0.207458 0.507769 0.217125 3.12647 0.935421 0 0.302479 3.38861 0 -0.430095 -0.4375 0.84375 0.232451 -0.174608 0.20755 0.524607 0.252632 3.11559 0.959653 0 0.302479 3.38861 0 -0.430095 +0.40625 0.84375 0.232525 -0.174548 0.208771 0.506791 0.254264 3.21492 0.937893 0 0.302479 3.38861 0 -0.430095 +0.4375 0.84375 0.232521 -0.174543 0.208557 0.523924 0.24968 3.19198 0.961925 0 0.302479 3.38861 0 -0.430095 -0.40625 0.875 0.239843 -0.18011 0.16684 0.521233 0.237955 3.48162 0.891114 0 0.280337 3.39107 0 -0.416862 -0.4375 0.875 0.239839 -0.180101 0.166992 0.538584 0.263427 3.56865 0.915376 0 0.280337 3.39107 0 -0.416862 +0.40625 0.875 0.239901 -0.180052 0.167786 0.520586 0.243448 3.65966 0.893437 0 0.280337 3.39107 0 -0.416862 +0.4375 0.875 0.239898 -0.180048 0.167816 0.537719 0.247172 3.63045 0.917497 0 0.280337 3.39107 0 -0.416862 -0.4375 0.8125 0.225291 -0.169282 0.247711 0.511171 0.232061 2.8128 1.00381 0 0.32394 3.38623 0 -0.443747 -0.46875 0.8125 0.225286 -0.16927 0.247711 0.528535 0.23028 2.84151 1.0295 0 0.32394 3.38623 0 -0.443747 +0.4375 0.8125 0.225372 -0.169206 0.248932 0.510403 0.314717 2.83642 1.00629 0 0.32394 3.38623 0 -0.443747 +0.46875 0.8125 0.225367 -0.1692 0.248383 0.528147 0.2904 2.7852 1.03162 0 0.32394 3.38623 0 -0.443747 -0.4375 0.84375 0.232451 -0.174608 0.20755 0.524607 0.252632 3.11559 0.959653 0 0.302479 3.38861 0 -0.430095 -0.46875 0.84375 0.232446 -0.174599 0.207336 0.542639 0.281338 3.14951 0.985291 0 0.302479 3.38861 0 -0.430095 +0.4375 0.84375 0.232521 -0.174543 0.208557 0.52402 0.24968 3.19198 0.961925 0 0.302479 3.38861 0 -0.430095 +0.46875 0.84375 0.232517 -0.174538 0.20871 0.541764 0.272318 3.13217 0.987698 0 0.302479 3.38861 0 -0.430095 -0.46875 0.8125 0.225286 -0.16927 0.247711 0.528535 0.23028 2.84151 1.0295 0 0.32394 3.38623 0 -0.443747 -0.5 0.8125 0.225282 -0.169259 0.24762 0.547179 0.187201 2.86844 1.05698 0 0.32394 3.38623 0 -0.443747 +0.46875 0.8125 0.225367 -0.1692 0.248383 0.527845 0.2904 2.7852 1.03162 0 0.32394 3.38623 0 -0.443747 +0.5 0.8125 0.225363 -0.169191 0.248474 0.546724 0.2198 2.80806 1.05914 0 0.32394 3.38623 0 -0.443747 -0.46875 0.84375 0.232446 -0.174599 0.207336 0.542639 0.281338 3.14951 0.985291 0 0.302479 3.38861 0 -0.430095 -0.5 0.84375 0.232441 -0.174589 0.207153 0.561941 0.221216 3.15283 1.01278 0 0.302479 3.38861 0 -0.430095 +0.46875 0.84375 0.232517 -0.174538 0.20871 0.541962 0.272318 3.13217 0.987698 0 0.302479 3.38861 0 -0.430095 +0.5 0.84375 0.232513 -0.174531 0.208344 0.560841 0.301096 3.16132 1.01504 0 0.302479 3.38861 0 -0.430095 -0.4375 0.84375 0.232451 -0.174608 0.20755 0.524607 0.252632 3.11559 0.959653 0 0.302479 3.38861 0 -0.430095 -0.46875 0.84375 0.232446 -0.174599 0.207336 0.542639 0.281338 3.14951 0.985291 0 0.302479 3.38861 0 -0.430095 +0.4375 0.84375 0.232521 -0.174543 0.208557 0.523644 0.24968 3.19198 0.961925 0 0.302479 3.38861 0 -0.430095 +0.46875 0.84375 0.232517 -0.174538 0.20871 0.541777 0.272318 3.13217 0.987698 0 0.302479 3.38861 0 -0.430095 -0.4375 0.875 0.239839 -0.180101 0.166992 0.538584 0.263427 3.56865 0.915376 0 0.280337 3.39107 0 -0.416862 -0.46875 0.875 0.239835 -0.180094 0.166718 0.557364 0.288675 3.54311 0.941197 0 0.280337 3.39107 0 -0.416862 +0.4375 0.875 0.239898 -0.180048 0.167816 0.538009 0.247172 3.63045 0.917497 0 0.280337 3.39107 0 -0.416862 +0.46875 0.875 0.239894 -0.180043 0.167786 0.556142 0.278935 3.67231 0.94332 0 0.280337 3.39107 0 -0.416862 -0.46875 0.84375 0.232446 -0.174599 0.207336 0.542639 0.281338 3.14951 0.985291 0 0.302479 3.38861 0 -0.430095 -0.5 0.84375 0.232441 -0.174589 0.207153 0.561941 0.221216 3.15283 1.01278 0 0.302479 3.38861 0 -0.430095 +0.46875 0.84375 0.232517 -0.174538 0.20871 0.541452 0.272318 3.13217 0.987698 0 0.302479 3.38861 0 -0.430095 +0.5 0.84375 0.232513 -0.174531 0.208344 0.561014 0.301096 3.16132 1.01504 0 0.302479 3.38861 0 -0.430095 -0.46875 0.875 0.239835 -0.180094 0.166718 0.557364 0.288675 3.54311 0.941197 0 0.280337 3.39107 0 -0.416862 -0.5 0.875 0.23983 -0.180086 0.166656 0.577132 0.249422 3.55228 0.968605 0 0.280337 3.39107 0 -0.416862 +0.46875 0.875 0.239894 -0.180043 0.167786 0.55638 0.278935 3.67231 0.94332 0 0.280337 3.39107 0 -0.416862 +0.5 0.875 0.239891 -0.180037 0.167572 0.575942 0.277042 3.62107 0.970614 0 0.280337 3.39107 0 -0.416862 -0.25 0.875 0.239876 -0.18013 0.166687 0.4491 0.200046 3.57965 0.790729 0 0.280337 3.39107 0 -0.416862 -0.28125 0.875 0.239868 -0.180129 0.166656 0.461865 0.228444 3.56386 0.808437 0 0.280337 3.39107 0 -0.416862 +0.25 0.875 0.239919 -0.180064 0.16806 0.448218 0.295763 3.63365 0.793303 0 0.280337 3.39107 0 -0.416862 +0.28125 0.875 0.239915 -0.180063 0.167633 0.461231 0.27607 3.64231 0.810688 0 0.280337 3.39107 0 -0.416862 -0.25 0.90625 0.247497 -0.18579 0.125244 0.46126 0.230345 4.01242 0.746464 0 0.257493 3.39361 0 -0.404037 -0.28125 0.90625 0.247489 -0.185789 0.125641 0.473866 0.168079 4.04034 0.763838 0 0.257493 3.39361 0 -0.404037 +0.25 0.90625 0.247528 -0.18574 0.126831 0.460074 0.275988 4.16119 0.748667 0 0.257493 3.39361 0 -0.404037 +0.28125 0.90625 0.247526 -0.185739 0.126678 0.473088 0.294121 4.108 0.766171 0 0.257493 3.39361 0 -0.404037 -0.28125 0.875 0.239868 -0.180129 0.166656 0.461865 0.228444 3.56386 0.808437 0 0.280337 3.39107 0 -0.416862 -0.3125 0.875 0.239861 -0.180126 0.166687 0.475266 0.211268 3.56178 0.827088 0 0.280337 3.39107 0 -0.416862 +0.28125 0.875 0.239915 -0.180063 0.167633 0.460987 0.27607 3.64231 0.810688 0 0.280337 3.39107 0 -0.416862 +0.3125 0.875 0.239912 -0.180061 0.167847 0.474588 0.234124 3.64219 0.829485 0 0.280337 3.39107 0 -0.416862 -0.28125 0.90625 0.247489 -0.185789 0.125641 0.473866 0.168079 4.04034 0.763838 0 0.257493 3.39361 0 -0.404037 -0.3125 0.90625 0.247482 -0.185787 0.125763 0.487705 0.225501 4.03483 0.782599 0 0.257493 3.39361 0 -0.404037 +0.28125 0.90625 0.247526 -0.185739 0.126678 0.473292 0.294121 4.108 0.766171 0 0.257493 3.39361 0 -0.404037 +0.3125 0.90625 0.247523 -0.185737 0.126587 0.486894 0.289945 4.18561 0.784926 0 0.257493 3.39361 0 -0.404037 -0.25 0.90625 0.247497 -0.18579 0.125244 0.46126 0.230345 4.01242 0.746464 0 0.257493 3.39361 0 -0.404037 -0.28125 0.90625 0.247489 -0.185789 0.125641 0.473866 0.168079 4.04034 0.763838 0 0.257493 3.39361 0 -0.404037 +0.25 0.90625 0.247528 -0.18574 0.126831 0.459751 0.275988 4.16119 0.748667 0 0.257493 3.39361 0 -0.404037 +0.28125 0.90625 0.247526 -0.185739 0.126678 0.473033 0.294121 4.108 0.766171 0 0.257493 3.39361 0 -0.404037 -0.25 0.9375 0.255356 -0.19163 0.0843506 0.47294 0.211569 4.56588 0.701704 0 0.233923 3.39623 0 -0.391606 -0.28125 0.9375 0.255351 -0.191629 0.084137 0.486427 0.263905 4.63561 0.719096 0 0.233923 3.39623 0 -0.391606 +0.25 0.9375 0.255378 -0.191595 0.0851746 0.47209 0.279874 4.81374 0.703824 0 0.233923 3.39623 0 -0.391606 +0.28125 0.9375 0.255376 -0.191594 0.0851135 0.485372 0.335756 4.78874 0.721434 0 0.233923 3.39623 0 -0.391606 -0.28125 0.90625 0.247489 -0.185789 0.125641 0.473866 0.168079 4.04034 0.763838 0 0.257493 3.39361 0 -0.404037 -0.3125 0.90625 0.247482 -0.185787 0.125763 0.487705 0.225501 4.03483 0.782599 0 0.257493 3.39361 0 -0.404037 +0.28125 0.90625 0.247526 -0.185739 0.126678 0.472806 0.294121 4.108 0.766171 0 0.257493 3.39361 0 -0.404037 +0.3125 0.90625 0.247523 -0.185737 0.126587 0.487036 0.289945 4.18561 0.784926 0 0.257493 3.39361 0 -0.404037 -0.28125 0.9375 0.255351 -0.191629 0.084137 0.486427 0.263905 4.63561 0.719096 0 0.233923 3.39623 0 -0.391606 -0.3125 0.9375 0.255346 -0.191627 0.084259 0.500847 0.265499 4.68502 0.738041 0 0.233923 3.39623 0 -0.391606 +0.28125 0.9375 0.255376 -0.191594 0.0851135 0.485586 0.335756 4.78874 0.721434 0 0.233923 3.39623 0 -0.391606 +0.3125 0.9375 0.255374 -0.191593 0.0847778 0.499816 0.343738 4.79214 0.740051 0 0.233923 3.39623 0 -0.391606 -0.3125 0.875 0.239861 -0.180126 0.166687 0.475266 0.211268 3.56178 0.827088 0 0.280337 3.39107 0 -0.416862 -0.34375 0.875 0.239855 -0.180122 0.166809 0.489632 0.197797 3.55123 0.847172 0 0.280337 3.39107 0 -0.416862 +0.3125 0.875 0.239912 -0.180061 0.167847 0.474309 0.234124 3.64219 0.829485 0 0.280337 3.39107 0 -0.416862 +0.34375 0.875 0.239908 -0.180058 0.167725 0.488964 0.237881 3.68694 0.849458 0 0.280337 3.39107 0 -0.416862 -0.3125 0.90625 0.247482 -0.185787 0.125763 0.487705 0.225501 4.03483 0.782599 0 0.257493 3.39361 0 -0.404037 -0.34375 0.90625 0.247477 -0.185782 0.125702 0.502705 0.246445 4.07721 0.802739 0 0.257493 3.39361 0 -0.404037 +0.3125 0.90625 0.247523 -0.185737 0.126587 0.487147 0.289945 4.18561 0.784926 0 0.257493 3.39361 0 -0.404037 +0.34375 0.90625 0.247519 -0.185735 0.126465 0.501802 0.270017 4.19409 0.804863 0 0.257493 3.39361 0 -0.404037 -0.34375 0.875 0.239855 -0.180122 0.166809 0.489632 0.197797 3.55123 0.847172 0 0.280337 3.39107 0 -0.416862 -0.375 0.875 0.239849 -0.180114 0.166962 0.504818 0.228573 3.5522 0.868427 0 0.280337 3.39107 0 -0.416862 +0.34375 0.875 0.239908 -0.180058 0.167725 0.488714 0.237881 3.68694 0.849458 0 0.280337 3.39107 0 -0.416862 +0.375 0.875 0.239904 -0.180055 0.167847 0.504175 0.232047 3.67581 0.870808 0 0.280337 3.39107 0 -0.416862 -0.34375 0.90625 0.247477 -0.185782 0.125702 0.502705 0.246445 4.07721 0.802739 0 0.257493 3.39361 0 -0.404037 -0.375 0.90625 0.247472 -0.185778 0.125641 0.518543 0.160343 4.10287 0.824008 0 0.257493 3.39361 0 -0.404037 +0.34375 0.90625 0.247519 -0.185735 0.126465 0.502032 0.270017 4.19409 0.804863 0 0.257493 3.39361 0 -0.404037 +0.375 0.90625 0.247515 -0.185732 0.126465 0.517493 0.235545 4.20759 0.826196 0 0.257493 3.39361 0 -0.404037 -0.3125 0.90625 0.247482 -0.185787 0.125763 0.487705 0.225501 4.03483 0.782599 0 0.257493 3.39361 0 -0.404037 -0.34375 0.90625 0.247477 -0.185782 0.125702 0.502705 0.246445 4.07721 0.802739 0 0.257493 3.39361 0 -0.404037 +0.3125 0.90625 0.247523 -0.185737 0.126587 0.48674 0.289945 4.18561 0.784926 0 0.257493 3.39361 0 -0.404037 +0.34375 0.90625 0.247519 -0.185735 0.126465 0.501822 0.270017 4.19409 0.804863 0 0.257493 3.39361 0 -0.404037 -0.3125 0.9375 0.255346 -0.191627 0.084259 0.500847 0.265499 4.68502 0.738041 0 0.233923 3.39623 0 -0.391606 -0.34375 0.9375 0.255342 -0.191623 0.0841064 0.516089 0.27924 4.71574 0.757784 0 0.233923 3.39623 0 -0.391606 +0.3125 0.9375 0.255374 -0.191593 0.0847778 0.500091 0.343738 4.79214 0.740051 0 0.233923 3.39623 0 -0.391606 +0.34375 0.9375 0.255371 -0.191591 0.0846558 0.515174 0.277053 4.79828 0.759966 0 0.233923 3.39623 0 -0.391606 -0.34375 0.90625 0.247477 -0.185782 0.125702 0.502705 0.246445 4.07721 0.802739 0 0.257493 3.39361 0 -0.404037 -0.375 0.90625 0.247472 -0.185778 0.125641 0.518543 0.160343 4.10287 0.824008 0 0.257493 3.39361 0 -0.404037 +0.34375 0.90625 0.247519 -0.185735 0.126465 0.501571 0.270017 4.19409 0.804863 0 0.257493 3.39361 0 -0.404037 +0.375 0.90625 0.247515 -0.185732 0.126465 0.517576 0.235545 4.20759 0.826196 0 0.257493 3.39361 0 -0.404037 -0.34375 0.9375 0.255342 -0.191623 0.0841064 0.516089 0.27924 4.71574 0.757784 0 0.233923 3.39623 0 -0.391606 -0.375 0.9375 0.255338 -0.19162 0.084137 0.532595 0.275026 4.75442 0.779361 0 0.233923 3.39623 0 -0.391606 +0.34375 0.9375 0.255371 -0.191591 0.0846558 0.515417 0.277053 4.79828 0.759966 0 0.233923 3.39623 0 -0.391606 +0.375 0.9375 0.255367 -0.191589 0.0846863 0.531422 0.209987 4.81879 0.781266 0 0.233923 3.39623 0 -0.391606 -0.25 0.9375 0.255356 -0.19163 0.0843506 0.47294 0.211569 4.56588 0.701704 0 0.233923 3.39623 0 -0.391606 -0.28125 0.9375 0.255351 -0.191629 0.084137 0.486427 0.263905 4.63561 0.719096 0 0.233923 3.39623 0 -0.391606 +0.25 0.9375 0.255378 -0.191595 0.0851746 0.47173 0.279874 4.81374 0.703824 0 0.233923 3.39623 0 -0.391606 +0.28125 0.9375 0.255376 -0.191594 0.0851135 0.485361 0.335756 4.78874 0.721434 0 0.233923 3.39623 0 -0.391606 -0.25 0.96875 0.263463 -0.197653 0.0424805 0.485454 0.178242 5.4833 0.656673 0 0.209605 3.39893 0 -0.379557 -0.28125 0.96875 0.263461 -0.197653 0.0424194 0.499402 0.299704 5.41403 0.674258 0 0.209605 3.39893 0 -0.379557 +0.25 0.96875 0.263476 -0.197636 0.0429382 0.484646 0.295808 5.50697 0.658664 0 0.209605 3.39893 0 -0.379557 +0.28125 0.96875 0.263475 -0.197636 0.0429077 0.498277 0.298809 5.52108 0.676259 0 0.209605 3.39893 0 -0.379557 -0.28125 0.9375 0.255351 -0.191629 0.084137 0.486427 0.263905 4.63561 0.719096 0 0.233923 3.39623 0 -0.391606 -0.3125 0.9375 0.255346 -0.191627 0.084259 0.500847 0.265499 4.68502 0.738041 0 0.233923 3.39623 0 -0.391606 +0.28125 0.9375 0.255376 -0.191594 0.0851135 0.485205 0.335756 4.78874 0.721434 0 0.233923 3.39623 0 -0.391606 +0.3125 0.9375 0.255374 -0.191593 0.0847778 0.499875 0.343738 4.79214 0.740051 0 0.233923 3.39623 0 -0.391606 -0.28125 0.96875 0.263461 -0.197653 0.0424194 0.499402 0.299704 5.41403 0.674258 0 0.209605 3.39893 0 -0.379557 -0.3125 0.96875 0.263459 -0.197652 0.0422668 0.514217 0.344616 5.47568 0.69285 0 0.209605 3.39893 0 -0.379557 +0.28125 0.96875 0.263475 -0.197636 0.0429077 0.498449 0.298809 5.52108 0.676259 0 0.209605 3.39893 0 -0.379557 +0.3125 0.96875 0.263473 -0.197635 0.0428162 0.51312 0.319764 5.48736 0.69498 0 0.209605 3.39893 0 -0.379557 -0.25 0.96875 0.263463 -0.197653 0.0424805 0.485454 0.178242 5.4833 0.656673 0 0.209605 3.39893 0 -0.379557 -0.28125 0.96875 0.263461 -0.197653 0.0424194 0.499402 0.299704 5.41403 0.674258 0 0.209605 3.39893 0 -0.379557 +0.25 0.96875 0.263476 -0.197636 0.0429382 0.484208 0.295808 5.50697 0.658664 0 0.209605 3.39893 0 -0.379557 +0.28125 0.96875 0.263475 -0.197636 0.0429077 0.498297 0.298809 5.52108 0.676259 0 0.209605 3.39893 0 -0.379557 -0.25 1 0.271828 -0.203871 -0.000213623 0.498622 0.177456 6.46062 0.611229 0 0.184515 3.40172 0 -0.367879 -0.28125 1 0.271828 -0.203871 -6.10352e-05 0.512929 0.272328 6.34847 0.628926 0 0.184515 3.40172 0 -0.367879 +0.25 1 0.271828 -0.203871 0.000457764 0.497497 0.319874 5.83385 0.613617 0 0.184515 3.40172 0 -0.367879 +0.28125 1 0.271828 -0.203871 0.000335693 0.511586 0.33441 5.87227 0.631136 0 0.184515 3.40172 0 -0.367879 -0.28125 0.96875 0.263461 -0.197653 0.0424194 0.499402 0.299704 5.41403 0.674258 0 0.209605 3.39893 0 -0.379557 -0.3125 0.96875 0.263459 -0.197652 0.0422668 0.514217 0.344616 5.47568 0.69285 0 0.209605 3.39893 0 -0.379557 +0.28125 0.96875 0.263475 -0.197636 0.0429077 0.498069 0.298809 5.52108 0.676259 0 0.209605 3.39893 0 -0.379557 +0.3125 0.96875 0.263473 -0.197635 0.0428162 0.513112 0.319764 5.48736 0.69498 0 0.209605 3.39893 0 -0.379557 -0.28125 1 0.271828 -0.203871 -6.10352e-05 0.512929 0.272328 6.34847 0.628926 0 0.184515 3.40172 0 -0.367879 -0.3125 1 0.271828 -0.203871 -0.000213623 0.528289 0.368977 6.36902 0.647608 0 0.184515 3.40172 0 -0.367879 +0.28125 1 0.271828 -0.203871 0.000335693 0.51181 0.33441 5.87227 0.631136 0 0.184515 3.40172 0 -0.367879 +0.3125 1 0.271828 -0.203871 0.000213623 0.526852 0.333357 5.87227 0.649847 0 0.184515 3.40172 0 -0.367879 -0.3125 0.9375 0.255346 -0.191627 0.084259 0.500847 0.265499 4.68502 0.738041 0 0.233923 3.39623 0 -0.391606 -0.34375 0.9375 0.255342 -0.191623 0.0841064 0.516089 0.27924 4.71574 0.757784 0 0.233923 3.39623 0 -0.391606 +0.3125 0.9375 0.255374 -0.191593 0.0847778 0.499656 0.343738 4.79214 0.740051 0 0.233923 3.39623 0 -0.391606 +0.34375 0.9375 0.255371 -0.191591 0.0846558 0.515242 0.277053 4.79828 0.759966 0 0.233923 3.39623 0 -0.391606 -0.3125 0.96875 0.263459 -0.197652 0.0422668 0.514217 0.344616 5.47568 0.69285 0 0.209605 3.39893 0 -0.379557 -0.34375 0.96875 0.263457 -0.19765 0.0420837 0.530264 0.365856 5.50188 0.712969 0 0.209605 3.39893 0 -0.379557 +0.3125 0.96875 0.263473 -0.197635 0.0428162 0.513309 0.319764 5.48736 0.69498 0 0.209605 3.39893 0 -0.379557 +0.34375 0.96875 0.263471 -0.197635 0.0426636 0.528895 0.31585 5.48579 0.714916 0 0.209605 3.39893 0 -0.379557 -0.34375 0.9375 0.255342 -0.191623 0.0841064 0.516089 0.27924 4.71574 0.757784 0 0.233923 3.39623 0 -0.391606 -0.375 0.9375 0.255338 -0.19162 0.084137 0.532595 0.275026 4.75442 0.779361 0 0.233923 3.39623 0 -0.391606 +0.34375 0.9375 0.255371 -0.191591 0.0846558 0.514935 0.277053 4.79828 0.759966 0 0.233923 3.39623 0 -0.391606 +0.375 0.9375 0.255367 -0.191589 0.0846863 0.531465 0.209987 4.81879 0.781266 0 0.233923 3.39623 0 -0.391606 -0.34375 0.96875 0.263457 -0.19765 0.0420837 0.530264 0.365856 5.50188 0.712969 0 0.209605 3.39893 0 -0.379557 -0.375 0.96875 0.263454 -0.197648 0.0418091 0.547021 0.321795 5.53025 0.733895 0 0.209605 3.39893 0 -0.379557 +0.34375 0.96875 0.263471 -0.197635 0.0426636 0.529147 0.31585 5.48579 0.714916 0 0.209605 3.39893 0 -0.379557 +0.375 0.96875 0.263469 -0.197634 0.042572 0.545677 0.268207 5.5026 0.73621 0 0.209605 3.39893 0 -0.379557 -0.3125 0.96875 0.263459 -0.197652 0.0422668 0.514217 0.344616 5.47568 0.69285 0 0.209605 3.39893 0 -0.379557 -0.34375 0.96875 0.263457 -0.19765 0.0420837 0.530264 0.365856 5.50188 0.712969 0 0.209605 3.39893 0 -0.379557 +0.3125 0.96875 0.263473 -0.197635 0.0428162 0.512864 0.319764 5.48736 0.69498 0 0.209605 3.39893 0 -0.379557 +0.34375 0.96875 0.263471 -0.197635 0.0426636 0.528911 0.31585 5.48579 0.714916 0 0.209605 3.39893 0 -0.379557 -0.3125 1 0.271828 -0.203871 -0.000213623 0.528289 0.368977 6.36902 0.647608 0 0.184515 3.40172 0 -0.367879 -0.34375 1 0.271828 -0.203871 -0.000457764 0.544601 0.386311 6.4032 0.667367 0 0.184515 3.40172 0 -0.367879 +0.3125 1 0.271828 -0.203871 0.000213623 0.527091 0.333357 5.87227 0.649847 0 0.184515 3.40172 0 -0.367879 +0.34375 1 0.271828 -0.203871 9.15527e-05 0.543138 0.315241 5.86051 0.669785 0 0.184515 3.40172 0 -0.367879 -0.34375 0.96875 0.263457 -0.19765 0.0420837 0.530264 0.365856 5.50188 0.712969 0 0.209605 3.39893 0 -0.379557 -0.375 0.96875 0.263454 -0.197648 0.0418091 0.547021 0.321795 5.53025 0.733895 0 0.209605 3.39893 0 -0.379557 +0.34375 0.96875 0.263471 -0.197635 0.0426636 0.528661 0.31585 5.48579 0.714916 0 0.209605 3.39893 0 -0.379557 +0.375 0.96875 0.263469 -0.197634 0.042572 0.545748 0.268207 5.5026 0.73621 0 0.209605 3.39893 0 -0.379557 -0.34375 1 0.271828 -0.203871 -0.000457764 0.544601 0.386311 6.4032 0.667367 0 0.184515 3.40172 0 -0.367879 -0.375 1 0.271828 -0.203871 -0.000579834 0.562294 0.429493 6.34905 0.688941 0 0.184515 3.40172 0 -0.367879 +0.34375 1 0.271828 -0.203871 9.15527e-05 0.543367 0.315241 5.86051 0.669785 0 0.184515 3.40172 0 -0.367879 +0.375 1 0.271828 -0.203871 3.05176e-05 0.560454 0.273967 5.85487 0.691136 0 0.184515 3.40172 0 -0.367879 -0.375 0.875 0.239849 -0.180114 0.166962 0.504818 0.228573 3.5522 0.868427 0 0.280337 3.39107 0 -0.416862 -0.40625 0.875 0.239843 -0.18011 0.16684 0.521233 0.237955 3.48162 0.891114 0 0.280337 3.39107 0 -0.416862 +0.375 0.875 0.239904 -0.180055 0.167847 0.503932 0.232047 3.67581 0.870808 0 0.280337 3.39107 0 -0.416862 +0.40625 0.875 0.239901 -0.180052 0.167786 0.520447 0.243448 3.65966 0.893437 0 0.280337 3.39107 0 -0.416862 -0.375 0.90625 0.247472 -0.185778 0.125641 0.518543 0.160343 4.10287 0.824008 0 0.257493 3.39361 0 -0.404037 -0.40625 0.90625 0.247467 -0.185772 0.126312 0.535223 0.240223 4.10159 0.847145 0 0.257493 3.39361 0 -0.404037 +0.375 0.90625 0.247515 -0.185732 0.126465 0.517734 0.235545 4.20759 0.826196 0 0.257493 3.39361 0 -0.404037 +0.40625 0.90625 0.247512 -0.18573 0.126556 0.534249 0.232935 4.15654 0.848826 0 0.257493 3.39361 0 -0.404037 -0.40625 0.875 0.239843 -0.18011 0.16684 0.521233 0.237955 3.48162 0.891114 0 0.280337 3.39107 0 -0.416862 -0.4375 0.875 0.239839 -0.180101 0.166992 0.538584 0.263427 3.56865 0.915376 0 0.280337 3.39107 0 -0.416862 +0.40625 0.875 0.239901 -0.180052 0.167786 0.520198 0.243448 3.65966 0.893437 0 0.280337 3.39107 0 -0.416862 +0.4375 0.875 0.239898 -0.180048 0.167816 0.537756 0.247172 3.63045 0.917497 0 0.280337 3.39107 0 -0.416862 -0.40625 0.90625 0.247467 -0.185772 0.126312 0.535223 0.240223 4.10159 0.847145 0 0.257493 3.39361 0 -0.404037 -0.4375 0.90625 0.247463 -0.185766 0.125702 0.553262 0.342575 4.1194 0.870829 0 0.257493 3.39361 0 -0.404037 +0.40625 0.90625 0.247512 -0.18573 0.126556 0.53449 0.232935 4.15654 0.848826 0 0.257493 3.39361 0 -0.404037 +0.4375 0.90625 0.247509 -0.185726 0.126587 0.552049 0.276413 4.18594 0.87298 0 0.257493 3.39361 0 -0.404037 -0.375 0.90625 0.247472 -0.185778 0.125641 0.518543 0.160343 4.10287 0.824008 0 0.257493 3.39361 0 -0.404037 -0.40625 0.90625 0.247467 -0.185772 0.126312 0.535223 0.240223 4.10159 0.847145 0 0.257493 3.39361 0 -0.404037 +0.375 0.90625 0.247515 -0.185732 0.126465 0.517343 0.235545 4.20759 0.826196 0 0.257493 3.39361 0 -0.404037 +0.40625 0.90625 0.247512 -0.18573 0.126556 0.534264 0.232935 4.15654 0.848826 0 0.257493 3.39361 0 -0.404037 -0.375 0.9375 0.255338 -0.19162 0.084137 0.532595 0.275026 4.75442 0.779361 0 0.233923 3.39623 0 -0.391606 -0.40625 0.9375 0.255334 -0.191614 0.0840149 0.549843 0.264573 4.87865 0.801754 0 0.233923 3.39623 0 -0.391606 +0.375 0.9375 0.255367 -0.191589 0.0846863 0.531613 0.209987 4.81879 0.781266 0 0.233923 3.39623 0 -0.391606 +0.40625 0.9375 0.255365 -0.191587 0.0849609 0.548534 0.245679 4.81381 0.80404 0 0.233923 3.39623 0 -0.391606 -0.40625 0.90625 0.247467 -0.185772 0.126312 0.535223 0.240223 4.10159 0.847145 0 0.257493 3.39361 0 -0.404037 -0.4375 0.90625 0.247463 -0.185766 0.125702 0.553262 0.342575 4.1194 0.870829 0 0.257493 3.39361 0 -0.404037 +0.40625 0.90625 0.247512 -0.18573 0.126556 0.534006 0.232935 4.15654 0.848826 0 0.257493 3.39361 0 -0.404037 +0.4375 0.90625 0.247509 -0.185726 0.126587 0.55218 0.276413 4.18594 0.87298 0 0.257493 3.39361 0 -0.404037 -0.40625 0.9375 0.255334 -0.191614 0.0840149 0.549843 0.264573 4.87865 0.801754 0 0.233923 3.39623 0 -0.391606 -0.4375 0.9375 0.25533 -0.191611 0.0841064 0.568487 0.262705 4.79061 0.826182 0 0.233923 3.39623 0 -0.391606 +0.40625 0.9375 0.255365 -0.191587 0.0849609 0.548821 0.245679 4.81381 0.80404 0 0.233923 3.39623 0 -0.391606 +0.4375 0.9375 0.255363 -0.191585 0.0847778 0.566995 0.327574 4.83044 0.828134 0 0.233923 3.39623 0 -0.391606 -0.4375 0.875 0.239839 -0.180101 0.166992 0.538584 0.263427 3.56865 0.915376 0 0.280337 3.39107 0 -0.416862 -0.46875 0.875 0.239835 -0.180094 0.166718 0.557364 0.288675 3.54311 0.941197 0 0.280337 3.39107 0 -0.416862 +0.4375 0.875 0.239898 -0.180048 0.167816 0.537424 0.247172 3.63045 0.917497 0 0.280337 3.39107 0 -0.416862 +0.46875 0.875 0.239894 -0.180043 0.167786 0.556261 0.278935 3.67231 0.94332 0 0.280337 3.39107 0 -0.416862 -0.4375 0.90625 0.247463 -0.185766 0.125702 0.553262 0.342575 4.1194 0.870829 0 0.257493 3.39361 0 -0.404037 -0.46875 0.90625 0.247459 -0.185761 0.125702 0.572491 0.310822 4.08634 0.896726 0 0.257493 3.39361 0 -0.404037 +0.4375 0.90625 0.247509 -0.185726 0.126587 0.552362 0.276413 4.18594 0.87298 0 0.257493 3.39361 0 -0.404037 +0.46875 0.90625 0.247507 -0.185722 0.126373 0.571199 0.277272 4.21273 0.898614 0 0.257493 3.39361 0 -0.404037 -0.46875 0.875 0.239835 -0.180094 0.166718 0.557364 0.288675 3.54311 0.941197 0 0.280337 3.39107 0 -0.416862 -0.5 0.875 0.23983 -0.180086 0.166656 0.577132 0.249422 3.55228 0.968605 0 0.280337 3.39107 0 -0.416862 +0.46875 0.875 0.239894 -0.180043 0.167786 0.555958 0.278935 3.67231 0.94332 0 0.280337 3.39107 0 -0.416862 +0.5 0.875 0.239891 -0.180037 0.167572 0.575974 0.277042 3.62107 0.970614 0 0.280337 3.39107 0 -0.416862 -0.46875 0.90625 0.247459 -0.185761 0.125702 0.572491 0.310822 4.08634 0.896726 0 0.257493 3.39361 0 -0.404037 -0.5 0.90625 0.247455 -0.185756 0.125366 0.593006 0.249516 4.03284 0.924019 0 0.257493 3.39361 0 -0.404037 +0.46875 0.90625 0.247507 -0.185722 0.126373 0.571494 0.277272 4.21273 0.898614 0 0.257493 3.39361 0 -0.404037 +0.5 0.90625 0.247504 -0.185718 0.126465 0.59151 0.290474 4.23616 0.926307 0 0.257493 3.39361 0 -0.404037 -0.4375 0.90625 0.247463 -0.185766 0.125702 0.553262 0.342575 4.1194 0.870829 0 0.257493 3.39361 0 -0.404037 -0.46875 0.90625 0.247459 -0.185761 0.125702 0.572491 0.310822 4.08634 0.896726 0 0.257493 3.39361 0 -0.404037 +0.4375 0.90625 0.247509 -0.185726 0.126587 0.551842 0.276413 4.18594 0.87298 0 0.257493 3.39361 0 -0.404037 +0.46875 0.90625 0.247507 -0.185722 0.126373 0.571323 0.277272 4.21273 0.898614 0 0.257493 3.39361 0 -0.404037 -0.4375 0.9375 0.25533 -0.191611 0.0841064 0.568487 0.262705 4.79061 0.826182 0 0.233923 3.39623 0 -0.391606 -0.46875 0.9375 0.255327 -0.191609 0.0839539 0.588231 0.233596 4.73671 0.851802 0 0.233923 3.39623 0 -0.391606 +0.4375 0.9375 0.255363 -0.191585 0.0847778 0.567318 0.327574 4.83044 0.828134 0 0.233923 3.39623 0 -0.391606 +0.46875 0.9375 0.255361 -0.191582 0.0845947 0.586799 0.355484 4.82845 0.853852 0 0.233923 3.39623 0 -0.391606 -0.46875 0.90625 0.247459 -0.185761 0.125702 0.572491 0.310822 4.08634 0.896726 0 0.257493 3.39361 0 -0.404037 -0.5 0.90625 0.247455 -0.185756 0.125366 0.593006 0.249516 4.03284 0.924019 0 0.257493 3.39361 0 -0.404037 +0.46875 0.90625 0.247507 -0.185722 0.126373 0.570952 0.277272 4.21273 0.898614 0 0.257493 3.39361 0 -0.404037 +0.5 0.90625 0.247504 -0.185718 0.126465 0.591588 0.290474 4.23616 0.926307 0 0.257493 3.39361 0 -0.404037 -0.46875 0.9375 0.255327 -0.191609 0.0839539 0.588231 0.233596 4.73671 0.851802 0 0.233923 3.39623 0 -0.391606 -0.5 0.9375 0.255324 -0.191606 0.0842285 0.609221 0.230972 4.65411 0.879476 0 0.233923 3.39623 0 -0.391606 +0.46875 0.9375 0.255361 -0.191582 0.0845947 0.587147 0.355484 4.82845 0.853852 0 0.233923 3.39623 0 -0.391606 +0.5 0.9375 0.255359 -0.191579 0.084259 0.607783 0.297006 4.88876 0.881081 0 0.233923 3.39623 0 -0.391606 -0.375 0.9375 0.255338 -0.19162 0.084137 0.532595 0.275026 4.75442 0.779361 0 0.233923 3.39623 0 -0.391606 -0.40625 0.9375 0.255334 -0.191614 0.0840149 0.549843 0.264573 4.87865 0.801754 0 0.233923 3.39623 0 -0.391606 +0.375 0.9375 0.255367 -0.191589 0.0846863 0.531153 0.209987 4.81879 0.781266 0 0.233923 3.39623 0 -0.391606 +0.40625 0.9375 0.255365 -0.191587 0.0849609 0.54861 0.245679 4.81381 0.80404 0 0.233923 3.39623 0 -0.391606 -0.375 0.96875 0.263454 -0.197648 0.0418091 0.547021 0.321795 5.53025 0.733895 0 0.209605 3.39893 0 -0.379557 -0.40625 0.96875 0.26345 -0.197645 0.0418701 0.565238 0.289249 5.66596 0.757003 0 0.209605 3.39893 0 -0.379557 +0.375 0.96875 0.263469 -0.197634 0.042572 0.545998 0.268207 5.5026 0.73621 0 0.209605 3.39893 0 -0.379557 +0.40625 0.96875 0.263468 -0.197632 0.0426941 0.563455 0.268573 5.53607 0.758933 0 0.209605 3.39893 0 -0.379557 -0.40625 0.9375 0.255334 -0.191614 0.0840149 0.549843 0.264573 4.87865 0.801754 0 0.233923 3.39623 0 -0.391606 -0.4375 0.9375 0.25533 -0.191611 0.0841064 0.568487 0.262705 4.79061 0.826182 0 0.233923 3.39623 0 -0.391606 +0.40625 0.9375 0.255365 -0.191587 0.0849609 0.548309 0.245679 4.81381 0.80404 0 0.233923 3.39623 0 -0.391606 +0.4375 0.9375 0.255363 -0.191585 0.0847778 0.567102 0.327574 4.83044 0.828134 0 0.233923 3.39623 0 -0.391606 -0.40625 0.96875 0.26345 -0.197645 0.0418701 0.565238 0.289249 5.66596 0.757003 0 0.209605 3.39893 0 -0.379557 -0.4375 0.96875 0.263449 -0.197644 0.041687 0.584295 0.233238 5.56174 0.780931 0 0.209605 3.39893 0 -0.379557 +0.40625 0.96875 0.263468 -0.197632 0.0426941 0.563755 0.268573 5.53607 0.758933 0 0.209605 3.39893 0 -0.379557 +0.4375 0.96875 0.263467 -0.197631 0.0426025 0.582548 0.320217 5.50729 0.783022 0 0.209605 3.39893 0 -0.379557 -0.375 0.96875 0.263454 -0.197648 0.0418091 0.547021 0.321795 5.53025 0.733895 0 0.209605 3.39893 0 -0.379557 -0.40625 0.96875 0.26345 -0.197645 0.0418701 0.565238 0.289249 5.66596 0.757003 0 0.209605 3.39893 0 -0.379557 +0.375 0.96875 0.263469 -0.197634 0.042572 0.545479 0.268207 5.5026 0.73621 0 0.209605 3.39893 0 -0.379557 +0.40625 0.96875 0.263468 -0.197632 0.0426941 0.563556 0.268573 5.53607 0.758933 0 0.209605 3.39893 0 -0.379557 -0.375 1 0.271828 -0.203871 -0.000579834 0.562294 0.429493 6.34905 0.688941 0 0.184515 3.40172 0 -0.367879 -0.40625 1 0.271828 -0.203871 -0.00112915 0.58078 0.311847 6.64873 0.711061 0 0.184515 3.40172 0 -0.367879 +0.375 1 0.271828 -0.203871 3.05176e-05 0.56074 0.273967 5.85487 0.691136 0 0.184515 3.40172 0 -0.367879 +0.40625 1 0.271828 -0.203871 0.00012207 0.578817 0.273415 5.87727 0.713899 0 0.184515 3.40172 0 -0.367879 -0.40625 0.96875 0.26345 -0.197645 0.0418701 0.565238 0.289249 5.66596 0.757003 0 0.209605 3.39893 0 -0.379557 -0.4375 0.96875 0.263449 -0.197644 0.041687 0.584295 0.233238 5.56174 0.780931 0 0.209605 3.39893 0 -0.379557 +0.40625 0.96875 0.263468 -0.197632 0.0426941 0.563253 0.268573 5.53607 0.758933 0 0.209605 3.39893 0 -0.379557 +0.4375 0.96875 0.263467 -0.197631 0.0426025 0.582602 0.320217 5.50729 0.783022 0 0.209605 3.39893 0 -0.379557 -0.40625 1 0.271828 -0.203871 -0.00112915 0.58078 0.311847 6.64873 0.711061 0 0.184515 3.40172 0 -0.367879 -0.4375 1 0.271828 -0.203871 -0.000732422 0.600609 0.174318 6.37226 0.735774 0 0.184515 3.40172 0 -0.367879 +0.40625 1 0.271828 -0.203871 0.00012207 0.579135 0.273415 5.87727 0.713899 0 0.184515 3.40172 0 -0.367879 +0.4375 1 0.271828 -0.203871 9.15527e-05 0.598484 0.345696 5.84519 0.738078 0 0.184515 3.40172 0 -0.367879 -0.4375 0.9375 0.25533 -0.191611 0.0841064 0.568487 0.262705 4.79061 0.826182 0 0.233923 3.39623 0 -0.391606 -0.46875 0.9375 0.255327 -0.191609 0.0839539 0.588231 0.233596 4.73671 0.851802 0 0.233923 3.39623 0 -0.391606 +0.4375 0.9375 0.255363 -0.191585 0.0847778 0.566821 0.327574 4.83044 0.828134 0 0.233923 3.39623 0 -0.391606 +0.46875 0.9375 0.255361 -0.191582 0.0845947 0.586862 0.355484 4.82845 0.853852 0 0.233923 3.39623 0 -0.391606 -0.4375 0.96875 0.263449 -0.197644 0.041687 0.584295 0.233238 5.56174 0.780931 0 0.209605 3.39893 0 -0.379557 -0.46875 0.96875 0.263447 -0.197643 0.0419922 0.604573 0.18314 5.52364 0.806892 0 0.209605 3.39893 0 -0.379557 +0.4375 0.96875 0.263467 -0.197631 0.0426025 0.582844 0.320217 5.50729 0.783022 0 0.209605 3.39893 0 -0.379557 +0.46875 0.96875 0.263466 -0.19763 0.04245 0.602885 0.348029 5.52546 0.808688 0 0.209605 3.39893 0 -0.379557 -0.46875 0.9375 0.255327 -0.191609 0.0839539 0.588231 0.233596 4.73671 0.851802 0 0.233923 3.39623 0 -0.391606 -0.5 0.9375 0.255324 -0.191606 0.0842285 0.609221 0.230972 4.65411 0.879476 0 0.233923 3.39623 0 -0.391606 +0.46875 0.9375 0.255361 -0.191582 0.0845947 0.586571 0.355484 4.82845 0.853852 0 0.233923 3.39623 0 -0.391606 +0.5 0.9375 0.255359 -0.191579 0.084259 0.607989 0.297006 4.88876 0.881081 0 0.233923 3.39623 0 -0.391606 -0.46875 0.96875 0.263447 -0.197643 0.0419922 0.604573 0.18314 5.52364 0.806892 0 0.209605 3.39893 0 -0.379557 -0.5 0.96875 0.263446 -0.197642 0.0420837 0.626169 0.223357 5.51454 0.834307 0 0.209605 3.39893 0 -0.379557 +0.46875 0.96875 0.263466 -0.19763 0.04245 0.603163 0.348029 5.52546 0.808688 0 0.209605 3.39893 0 -0.379557 +0.5 0.96875 0.263465 -0.197628 0.0422058 0.62458 0.30568 5.5758 0.836143 0 0.209605 3.39893 0 -0.379557 -0.4375 0.96875 0.263449 -0.197644 0.041687 0.584295 0.233238 5.56174 0.780931 0 0.209605 3.39893 0 -0.379557 -0.46875 0.96875 0.263447 -0.197643 0.0419922 0.604573 0.18314 5.52364 0.806892 0 0.209605 3.39893 0 -0.379557 +0.4375 0.96875 0.263467 -0.197631 0.0426025 0.582268 0.320217 5.50729 0.783022 0 0.209605 3.39893 0 -0.379557 +0.46875 0.96875 0.263466 -0.19763 0.04245 0.602962 0.348029 5.52546 0.808688 0 0.209605 3.39893 0 -0.379557 -0.4375 1 0.271828 -0.203871 -0.000732422 0.600609 0.174318 6.37226 0.735774 0 0.184515 3.40172 0 -0.367879 -0.46875 1 0.271828 -0.203871 -0.000671387 0.621506 0.18636 6.46134 0.761459 0 0.184515 3.40172 0 -0.367879 +0.4375 1 0.271828 -0.203871 9.15527e-05 0.598777 0.345696 5.84519 0.738078 0 0.184515 3.40172 0 -0.367879 +0.46875 1 0.271828 -0.203871 -0.000152588 0.619471 0.416284 5.88497 0.763769 0 0.184515 3.40172 0 -0.367879 -0.46875 0.96875 0.263447 -0.197643 0.0419922 0.604573 0.18314 5.52364 0.806892 0 0.209605 3.39893 0 -0.379557 -0.5 0.96875 0.263446 -0.197642 0.0420837 0.626169 0.223357 5.51454 0.834307 0 0.209605 3.39893 0 -0.379557 +0.46875 0.96875 0.263466 -0.19763 0.04245 0.602572 0.348029 5.52546 0.808688 0 0.209605 3.39893 0 -0.379557 +0.5 0.96875 0.263465 -0.197628 0.0422058 0.624672 0.30568 5.5758 0.836143 0 0.209605 3.39893 0 -0.379557 -0.46875 1 0.271828 -0.203871 -0.000671387 0.621506 0.18636 6.46134 0.761459 0 0.184515 3.40172 0 -0.367879 -0.5 1 0.271828 -0.203871 -0.000457764 0.643859 0.180642 6.40742 0.789084 0 0.184515 3.40172 0 -0.367879 +0.46875 1 0.271828 -0.203871 -0.000152588 0.61982 0.416284 5.88497 0.763769 0 0.184515 3.40172 0 -0.367879 +0.5 1 0.271828 -0.203871 -0.000610352 0.64192 0.299136 5.98042 0.79095 0 0.184515 3.40172 0 -0.367879 -0.5 0.5 0.164795 -0.124069 0.636932 0.422262 0.153492 1.28969 1.49065 0 0.505384 3.36607 0 -0.606531 -0.53125 0.5 0.1648 -0.124047 0.636719 0.436615 0.157121 1.28315 1.51945 0 0.505384 3.36607 0 -0.606531 +0.5 0.5 0.164928 -0.123917 0.638092 0.423275 0.181957 1.28808 1.49397 0 0.505384 3.36607 0 -0.606531 +0.53125 0.5 0.164926 -0.123904 0.638031 0.437989 0.181822 1.29184 1.52317 0 0.505384 3.36607 0 -0.606531 -0.5 0.53125 0.170026 -0.127995 0.598785 0.43305 0.188397 1.39104 1.44737 0 0.489683 3.36781 0 -0.58787 -0.53125 0.53125 0.170031 -0.127972 0.598724 0.447956 0.148401 1.3455 1.47652 0 0.489683 3.36781 0 -0.58787 +0.5 0.53125 0.170158 -0.127846 0.60022 0.434287 0.197546 1.34841 1.45089 0 0.489683 3.36781 0 -0.58787 +0.53125 0.53125 0.170155 -0.127832 0.600159 0.449002 0.195244 1.36119 1.48005 0 0.489683 3.36781 0 -0.58787 -0.53125 0.5 0.1648 -0.124047 0.636719 0.436615 0.157121 1.28315 1.51945 0 0.505384 3.36607 0 -0.606531 -0.5625 0.5 0.164806 -0.124024 0.636932 0.451999 0.130039 1.28101 1.55077 0 0.505384 3.36607 0 -0.606531 +0.53125 0.5 0.164926 -0.123904 0.638031 0.437748 0.181822 1.29184 1.52317 0 0.505384 3.36607 0 -0.606531 +0.5625 0.5 0.164922 -0.12389 0.637909 0.453421 0.17084 1.30673 1.55416 0 0.505384 3.36607 0 -0.606531 -0.53125 0.53125 0.170031 -0.127972 0.598724 0.447956 0.148401 1.3455 1.47652 0 0.489683 3.36781 0 -0.58787 -0.5625 0.53125 0.170036 -0.12795 0.598999 0.463761 0.115921 1.34726 1.50777 0 0.489683 3.36781 0 -0.58787 +0.53125 0.53125 0.170155 -0.127832 0.600159 0.449247 0.195244 1.36119 1.48005 0 0.489683 3.36781 0 -0.58787 +0.5625 0.53125 0.170152 -0.127819 0.600006 0.46492 0.198687 1.37416 1.51121 0 0.489683 3.36781 0 -0.58787 -0.5 0.53125 0.170026 -0.127995 0.598785 0.43305 0.188397 1.39104 1.44737 0 0.489683 3.36781 0 -0.58787 -0.53125 0.53125 0.170031 -0.127972 0.598724 0.447956 0.148401 1.3455 1.47652 0 0.489683 3.36781 0 -0.58787 +0.5 0.53125 0.170158 -0.127846 0.60022 0.433942 0.197546 1.34841 1.45089 0 0.489683 3.36781 0 -0.58787 +0.53125 0.53125 0.170155 -0.127832 0.600159 0.449133 0.195244 1.36119 1.48005 0 0.489683 3.36781 0 -0.58787 -0.5 0.5625 0.175424 -0.132042 0.560425 0.444457 0.166576 1.40927 1.40457 0 0.473484 3.36961 0 -0.569783 -0.53125 0.5625 0.175428 -0.13202 0.560822 0.459437 0.121643 1.4087 1.43342 0 0.473484 3.36961 0 -0.569783 +0.5 0.5625 0.175554 -0.131896 0.562256 0.44525 0.197786 1.43991 1.40771 0 0.473484 3.36961 0 -0.569783 +0.53125 0.5625 0.175551 -0.131883 0.562073 0.460441 0.21644 1.45817 1.43695 0 0.473484 3.36961 0 -0.569783 -0.53125 0.53125 0.170031 -0.127972 0.598724 0.447956 0.148401 1.3455 1.47652 0 0.489683 3.36781 0 -0.58787 -0.5625 0.53125 0.170036 -0.12795 0.598999 0.463761 0.115921 1.34726 1.50777 0 0.489683 3.36781 0 -0.58787 +0.53125 0.53125 0.170155 -0.127832 0.600159 0.448848 0.195244 1.36119 1.48005 0 0.489683 3.36781 0 -0.58787 +0.5625 0.53125 0.170152 -0.127819 0.600006 0.465075 0.198687 1.37416 1.51121 0 0.489683 3.36781 0 -0.58787 -0.53125 0.5625 0.175428 -0.13202 0.560822 0.459437 0.121643 1.4087 1.43342 0 0.473484 3.36961 0 -0.569783 -0.5625 0.5625 0.175433 -0.131997 0.561005 0.475732 0.12565 1.409 1.46455 0 0.473484 3.36961 0 -0.569783 +0.53125 0.5625 0.175551 -0.131883 0.562073 0.46072 0.21644 1.45817 1.43695 0 0.473484 3.36961 0 -0.569783 +0.5625 0.5625 0.175547 -0.131869 0.561829 0.476947 0.203321 1.46683 1.46799 0 0.473484 3.36961 0 -0.569783 -0.5625 0.5 0.164806 -0.124024 0.636932 0.451999 0.130039 1.28101 1.55077 0 0.505384 3.36607 0 -0.606531 -0.59375 0.5 0.164813 -0.124 0.637146 0.468179 0.146016 1.26229 1.58369 0 0.505384 3.36607 0 -0.606531 +0.5625 0.5 0.164922 -0.12389 0.637909 0.453132 0.17084 1.30673 1.55416 0 0.505384 3.36607 0 -0.606531 +0.59375 0.5 0.164919 -0.123877 0.638 0.469759 0.170132 1.31304 1.58719 0 0.505384 3.36607 0 -0.606531 -0.5625 0.53125 0.170036 -0.12795 0.598999 0.463761 0.115921 1.34726 1.50777 0 0.489683 3.36781 0 -0.58787 -0.59375 0.53125 0.170042 -0.127926 0.599335 0.480514 0.135628 1.34009 1.54093 0 0.489683 3.36781 0 -0.58787 +0.5625 0.53125 0.170152 -0.127819 0.600006 0.465202 0.198687 1.37416 1.51121 0 0.489683 3.36781 0 -0.58787 +0.59375 0.53125 0.170148 -0.127805 0.599854 0.481829 0.181468 1.3818 1.54406 0 0.489683 3.36781 0 -0.58787 -0.59375 0.5 0.164813 -0.124 0.637146 0.468179 0.146016 1.26229 1.58369 0 0.505384 3.36607 0 -0.606531 -0.625 0.5 0.16482 -0.123976 0.637146 0.485545 0.17787 1.27778 1.61881 0 0.505384 3.36607 0 -0.606531 +0.59375 0.5 0.164919 -0.123877 0.638 0.469425 0.170132 1.31304 1.58719 0 0.505384 3.36607 0 -0.606531 +0.625 0.5 0.164916 -0.123863 0.637848 0.487136 0.164257 1.30399 1.62235 0 0.505384 3.36607 0 -0.606531 -0.59375 0.53125 0.170042 -0.127926 0.599335 0.480514 0.135628 1.34009 1.54093 0 0.489683 3.36781 0 -0.58787 -0.625 0.53125 0.170049 -0.127902 0.599396 0.498338 0.1923 1.33494 1.57592 0 0.489683 3.36781 0 -0.58787 +0.59375 0.53125 0.170148 -0.127805 0.599854 0.482066 0.181468 1.3818 1.54406 0 0.489683 3.36781 0 -0.58787 +0.625 0.53125 0.170144 -0.12779 0.599915 0.499778 0.169119 1.37752 1.57924 0 0.489683 3.36781 0 -0.58787 -0.5625 0.53125 0.170036 -0.12795 0.598999 0.463761 0.115921 1.34726 1.50777 0 0.489683 3.36781 0 -0.58787 -0.59375 0.53125 0.170042 -0.127926 0.599335 0.480514 0.135628 1.34009 1.54093 0 0.489683 3.36781 0 -0.58787 +0.5625 0.53125 0.170152 -0.127819 0.600006 0.464821 0.198687 1.37416 1.51121 0 0.489683 3.36781 0 -0.58787 +0.59375 0.53125 0.170148 -0.127805 0.599854 0.482011 0.181468 1.3818 1.54406 0 0.489683 3.36781 0 -0.58787 -0.5625 0.5625 0.175433 -0.131997 0.561005 0.475732 0.12565 1.409 1.46455 0 0.473484 3.36961 0 -0.569783 -0.59375 0.5625 0.175439 -0.131974 0.561279 0.493009 0.139028 1.41279 1.49764 0 0.473484 3.36961 0 -0.569783 +0.5625 0.5625 0.175547 -0.131869 0.561829 0.477194 0.203321 1.46683 1.46799 0 0.473484 3.36961 0 -0.569783 +0.59375 0.5625 0.175543 -0.131855 0.561829 0.494384 0.189721 1.46887 1.50105 0 0.473484 3.36961 0 -0.569783 -0.59375 0.53125 0.170042 -0.127926 0.599335 0.480514 0.135628 1.34009 1.54093 0 0.489683 3.36781 0 -0.58787 -0.625 0.53125 0.170049 -0.127902 0.599396 0.498338 0.1923 1.33494 1.57592 0 0.489683 3.36781 0 -0.58787 +0.59375 0.53125 0.170148 -0.127805 0.599854 0.481658 0.181468 1.3818 1.54406 0 0.489683 3.36781 0 -0.58787 +0.625 0.53125 0.170144 -0.12779 0.599915 0.499929 0.169119 1.37752 1.57924 0 0.489683 3.36781 0 -0.58787 -0.59375 0.5625 0.175439 -0.131974 0.561279 0.493009 0.139028 1.41279 1.49764 0 0.473484 3.36961 0 -0.569783 -0.625 0.5625 0.175446 -0.131951 0.561401 0.511605 0.187456 1.42 1.53308 0 0.473484 3.36961 0 -0.569783 +0.59375 0.5625 0.175543 -0.131855 0.561829 0.494588 0.189721 1.46887 1.50105 0 0.473484 3.36961 0 -0.569783 +0.625 0.5625 0.175539 -0.131841 0.561737 0.512859 0.190884 1.47641 1.53619 0 0.473484 3.36961 0 -0.569783 -0.5 0.5625 0.175424 -0.132042 0.560425 0.444457 0.166576 1.40927 1.40457 0 0.473484 3.36961 0 -0.569783 -0.53125 0.5625 0.175428 -0.13202 0.560822 0.459437 0.121643 1.4087 1.43342 0 0.473484 3.36961 0 -0.569783 +0.5 0.5625 0.175554 -0.131896 0.562256 0.44485 0.197786 1.43991 1.40771 0 0.473484 3.36961 0 -0.569783 +0.53125 0.5625 0.175551 -0.131883 0.562073 0.460581 0.21644 1.45817 1.43695 0 0.473484 3.36961 0 -0.569783 -0.5 0.59375 0.180993 -0.136213 0.522827 0.455308 0.168642 1.4622 1.36098 0 0.45677 3.37147 0 -0.552252 -0.53125 0.59375 0.180996 -0.136192 0.522705 0.471368 0.155548 1.48432 1.39042 0 0.45677 3.37147 0 -0.552252 +0.5 0.59375 0.181121 -0.136073 0.524017 0.45657 0.235362 1.57184 1.36465 0 0.45677 3.37147 0 -0.552252 +0.53125 0.59375 0.181117 -0.13606 0.523712 0.4723 0.23525 1.55733 1.39361 0 0.45677 3.37147 0 -0.552252 -0.53125 0.5625 0.175428 -0.13202 0.560822 0.459437 0.121643 1.4087 1.43342 0 0.473484 3.36961 0 -0.569783 -0.5625 0.5625 0.175433 -0.131997 0.561005 0.475732 0.12565 1.409 1.46455 0 0.473484 3.36961 0 -0.569783 +0.53125 0.5625 0.175551 -0.131883 0.562073 0.460331 0.21644 1.45817 1.43695 0 0.473484 3.36961 0 -0.569783 +0.5625 0.5625 0.175547 -0.131869 0.561829 0.477072 0.203321 1.46683 1.46799 0 0.473484 3.36961 0 -0.569783 -0.53125 0.59375 0.180996 -0.136192 0.522705 0.471368 0.155548 1.48432 1.39042 0 0.45677 3.37147 0 -0.552252 -0.5625 0.59375 0.181001 -0.13617 0.52301 0.488102 0.127166 1.49642 1.42153 0 0.45677 3.37147 0 -0.552252 +0.53125 0.59375 0.181117 -0.13606 0.523712 0.472553 0.23525 1.55733 1.39361 0 0.45677 3.37147 0 -0.552252 +0.5625 0.59375 0.181113 -0.136046 0.523529 0.489294 0.220437 1.58356 1.42484 0 0.45677 3.37147 0 -0.552252 -0.5 0.59375 0.180993 -0.136213 0.522827 0.455308 0.168642 1.4622 1.36098 0 0.45677 3.37147 0 -0.552252 -0.53125 0.59375 0.180996 -0.136192 0.522705 0.471368 0.155548 1.48432 1.39042 0 0.45677 3.37147 0 -0.552252 +0.5 0.59375 0.181121 -0.136073 0.524017 0.456225 0.235362 1.57184 1.36465 0 0.45677 3.37147 0 -0.552252 +0.53125 0.59375 0.181117 -0.13606 0.523712 0.47243 0.23525 1.55733 1.39361 0 0.45677 3.37147 0 -0.552252 -0.5 0.625 0.18674 -0.140512 0.484467 0.467371 0.167995 1.56428 1.31835 0 0.439526 3.37339 0 -0.535261 -0.53125 0.625 0.186743 -0.140492 0.48465 0.483381 0.152166 1.5893 1.3471 0 0.439526 3.37339 0 -0.535261 +0.5 0.625 0.186864 -0.140378 0.485352 0.468256 0.229373 1.72273 1.32116 0 0.439526 3.37339 0 -0.535261 +0.53125 0.625 0.18686 -0.140366 0.485352 0.484461 0.251905 1.70774 1.35051 0 0.439526 3.37339 0 -0.535261 -0.53125 0.59375 0.180996 -0.136192 0.522705 0.471368 0.155548 1.48432 1.39042 0 0.45677 3.37147 0 -0.552252 -0.5625 0.59375 0.181001 -0.13617 0.52301 0.488102 0.127166 1.49642 1.42153 0 0.45677 3.37147 0 -0.552252 +0.53125 0.59375 0.181117 -0.13606 0.523712 0.472107 0.23525 1.55733 1.39361 0 0.45677 3.37147 0 -0.552252 +0.5625 0.59375 0.181113 -0.136046 0.523529 0.489502 0.220437 1.58356 1.42484 0 0.45677 3.37147 0 -0.552252 -0.53125 0.625 0.186743 -0.140492 0.48465 0.483381 0.152166 1.5893 1.3471 0 0.439526 3.37339 0 -0.535261 -0.5625 0.625 0.186746 -0.140471 0.484772 0.500812 0.147904 1.63543 1.37832 0 0.439526 3.37339 0 -0.535261 +0.53125 0.625 0.18686 -0.140366 0.485352 0.484707 0.251905 1.70774 1.35051 0 0.439526 3.37339 0 -0.535261 +0.5625 0.625 0.186856 -0.140353 0.484772 0.502102 0.249992 1.69363 1.3814 0 0.439526 3.37339 0 -0.535261 -0.5625 0.5625 0.175433 -0.131997 0.561005 0.475732 0.12565 1.409 1.46455 0 0.473484 3.36961 0 -0.569783 -0.59375 0.5625 0.175439 -0.131974 0.561279 0.493009 0.139028 1.41279 1.49764 0 0.473484 3.36961 0 -0.569783 +0.5625 0.5625 0.175547 -0.131869 0.561829 0.476791 0.203321 1.46683 1.46799 0 0.473484 3.36961 0 -0.569783 +0.59375 0.5625 0.175543 -0.131855 0.561829 0.494477 0.189721 1.46887 1.50105 0 0.473484 3.36961 0 -0.569783 -0.5625 0.59375 0.181001 -0.13617 0.52301 0.488102 0.127166 1.49642 1.42153 0 0.45677 3.37147 0 -0.552252 -0.59375 0.59375 0.181007 -0.136148 0.523285 0.505972 0.157346 1.49794 1.4547 0 0.45677 3.37147 0 -0.552252 +0.5625 0.59375 0.181113 -0.136046 0.523529 0.489584 0.220437 1.58356 1.42484 0 0.45677 3.37147 0 -0.552252 +0.59375 0.59375 0.181108 -0.136032 0.523376 0.507271 0.203525 1.58565 1.45775 0 0.45677 3.37147 0 -0.552252 -0.59375 0.5625 0.175439 -0.131974 0.561279 0.493009 0.139028 1.41279 1.49764 0 0.473484 3.36961 0 -0.569783 -0.625 0.5625 0.175446 -0.131951 0.561401 0.511605 0.187456 1.42 1.53308 0 0.473484 3.36961 0 -0.569783 +0.59375 0.5625 0.175543 -0.131855 0.561829 0.494188 0.189721 1.46887 1.50105 0 0.473484 3.36961 0 -0.569783 +0.625 0.5625 0.175539 -0.131841 0.561737 0.513024 0.190884 1.47641 1.53619 0 0.473484 3.36961 0 -0.569783 -0.59375 0.59375 0.181007 -0.136148 0.523285 0.505972 0.157346 1.49794 1.4547 0 0.45677 3.37147 0 -0.552252 -0.625 0.59375 0.181013 -0.136126 0.523224 0.525131 0.193807 1.49271 1.48991 0 0.45677 3.37147 0 -0.552252 +0.59375 0.59375 0.181108 -0.136032 0.523376 0.507565 0.203525 1.58565 1.45775 0 0.45677 3.37147 0 -0.552252 +0.625 0.59375 0.181104 -0.136018 0.523346 0.5264 0.189434 1.59508 1.49309 0 0.45677 3.37147 0 -0.552252 -0.5625 0.59375 0.181001 -0.13617 0.52301 0.488102 0.127166 1.49642 1.42153 0 0.45677 3.37147 0 -0.552252 -0.59375 0.59375 0.181007 -0.136148 0.523285 0.505972 0.157346 1.49794 1.4547 0 0.45677 3.37147 0 -0.552252 +0.5625 0.59375 0.181113 -0.136046 0.523529 0.489157 0.220437 1.58356 1.42484 0 0.45677 3.37147 0 -0.552252 +0.59375 0.59375 0.181108 -0.136032 0.523376 0.507461 0.203525 1.58565 1.45775 0 0.45677 3.37147 0 -0.552252 -0.5625 0.625 0.186746 -0.140471 0.484772 0.500812 0.147904 1.63543 1.37832 0 0.439526 3.37339 0 -0.535261 -0.59375 0.625 0.186751 -0.14045 0.484985 0.51927 0.153173 1.61242 1.41147 0 0.439526 3.37339 0 -0.535261 +0.5625 0.625 0.186856 -0.140353 0.484772 0.502408 0.249992 1.69363 1.3814 0 0.439526 3.37339 0 -0.535261 +0.59375 0.625 0.186851 -0.140339 0.484772 0.520711 0.215438 1.70682 1.41458 0 0.439526 3.37339 0 -0.535261 -0.59375 0.59375 0.181007 -0.136148 0.523285 0.505972 0.157346 1.49794 1.4547 0 0.45677 3.37147 0 -0.552252 -0.625 0.59375 0.181013 -0.136126 0.523224 0.525131 0.193807 1.49271 1.48991 0 0.45677 3.37147 0 -0.552252 +0.59375 0.59375 0.181108 -0.136032 0.523376 0.507103 0.203525 1.58565 1.45775 0 0.45677 3.37147 0 -0.552252 +0.625 0.59375 0.181104 -0.136018 0.523346 0.526608 0.189434 1.59508 1.49309 0 0.45677 3.37147 0 -0.552252 -0.59375 0.625 0.186751 -0.14045 0.484985 0.51927 0.153173 1.61242 1.41147 0 0.439526 3.37339 0 -0.535261 -0.625 0.625 0.186758 -0.140429 0.485138 0.538996 0.204025 1.5846 1.44682 0 0.439526 3.37339 0 -0.535261 +0.59375 0.625 0.186851 -0.140339 0.484772 0.520911 0.215438 1.70682 1.41458 0 0.439526 3.37339 0 -0.535261 +0.625 0.625 0.186846 -0.140325 0.484558 0.540416 0.190085 1.69594 1.44964 0 0.439526 3.37339 0 -0.535261 -0.625 0.5 0.16482 -0.123976 0.637146 0.485545 0.17787 1.27778 1.61881 0 0.505384 3.36607 0 -0.606531 -0.65625 0.5 0.164828 -0.123952 0.637024 0.504232 0.209888 1.28369 1.65646 0 0.505384 3.36607 0 -0.606531 +0.625 0.5 0.164916 -0.123863 0.637848 0.486885 0.164257 1.30399 1.62235 0 0.505384 3.36607 0 -0.606531 +0.65625 0.5 0.164912 -0.123849 0.638 0.505654 0.155888 1.30265 1.6597 0 0.505384 3.36607 0 -0.606531 -0.625 0.53125 0.170049 -0.127902 0.599396 0.498338 0.1923 1.33494 1.57592 0 0.489683 3.36781 0 -0.58787 -0.65625 0.53125 0.170057 -0.127879 0.59906 0.517651 0.217089 1.33991 1.61343 0 0.489683 3.36781 0 -0.58787 +0.625 0.53125 0.170144 -0.12779 0.599915 0.500056 0.169119 1.37752 1.57924 0 0.489683 3.36781 0 -0.58787 +0.65625 0.53125 0.17014 -0.127776 0.599884 0.518824 0.165862 1.39491 1.61678 0 0.489683 3.36781 0 -0.58787 -0.65625 0.5 0.164828 -0.123952 0.637024 0.504232 0.209888 1.28369 1.65646 0 0.505384 3.36607 0 -0.606531 -0.6875 0.5 0.164834 -0.123927 0.636749 0.524266 0.25303 1.26836 1.69669 0 0.505384 3.36607 0 -0.606531 +0.65625 0.5 0.164912 -0.123849 0.638 0.505283 0.155888 1.30265 1.6597 0 0.505384 3.36607 0 -0.606531 +0.6875 0.5 0.164909 -0.123835 0.63797 0.525318 0.163594 1.29755 1.69959 0 0.505384 3.36607 0 -0.606531 -0.65625 0.53125 0.170057 -0.127879 0.59906 0.517651 0.217089 1.33991 1.61343 0 0.489683 3.36781 0 -0.58787 -0.6875 0.53125 0.170063 -0.127854 0.598969 0.538112 0.241941 1.35276 1.65343 0 0.489683 3.36781 0 -0.58787 +0.65625 0.53125 0.17014 -0.127776 0.599884 0.519157 0.165862 1.39491 1.61678 0 0.489683 3.36781 0 -0.58787 +0.6875 0.53125 0.170137 -0.127761 0.599976 0.539191 0.172327 1.38161 1.65668 0 0.489683 3.36781 0 -0.58787 -0.625 0.53125 0.170049 -0.127902 0.599396 0.498338 0.1923 1.33494 1.57592 0 0.489683 3.36781 0 -0.58787 -0.65625 0.53125 0.170057 -0.127879 0.59906 0.517651 0.217089 1.33991 1.61343 0 0.489683 3.36781 0 -0.58787 +0.625 0.53125 0.170144 -0.12779 0.599915 0.499572 0.169119 1.37752 1.57924 0 0.489683 3.36781 0 -0.58787 +0.65625 0.53125 0.17014 -0.127776 0.599884 0.519041 0.165862 1.39491 1.61678 0 0.489683 3.36781 0 -0.58787 -0.625 0.5625 0.175446 -0.131951 0.561401 0.511605 0.187456 1.42 1.53308 0 0.473484 3.36961 0 -0.569783 -0.65625 0.5625 0.175453 -0.131928 0.561188 0.531423 0.242223 1.40108 1.57051 0 0.473484 3.36961 0 -0.569783 +0.625 0.5625 0.175539 -0.131841 0.561737 0.513193 0.190884 1.47641 1.53619 0 0.473484 3.36961 0 -0.569783 +0.65625 0.5625 0.175534 -0.131826 0.561646 0.532662 0.169854 1.47536 1.57366 0 0.473484 3.36961 0 -0.569783 -0.65625 0.53125 0.170057 -0.127879 0.59906 0.517651 0.217089 1.33991 1.61343 0 0.489683 3.36781 0 -0.58787 -0.6875 0.53125 0.170063 -0.127854 0.598969 0.538112 0.241941 1.35276 1.65343 0 0.489683 3.36781 0 -0.58787 +0.65625 0.53125 0.17014 -0.127776 0.599884 0.518734 0.165862 1.39491 1.61678 0 0.489683 3.36781 0 -0.58787 +0.6875 0.53125 0.170137 -0.127761 0.599976 0.539337 0.172327 1.38161 1.65668 0 0.489683 3.36781 0 -0.58787 -0.65625 0.5625 0.175453 -0.131928 0.561188 0.531423 0.242223 1.40108 1.57051 0 0.473484 3.36961 0 -0.569783 -0.6875 0.5625 0.175458 -0.131903 0.56073 0.552765 0.258291 1.41692 1.61058 0 0.473484 3.36961 0 -0.569783 +0.65625 0.5625 0.175534 -0.131826 0.561646 0.532957 0.169854 1.47536 1.57366 0 0.473484 3.36961 0 -0.569783 +0.6875 0.5625 0.175531 -0.131811 0.561798 0.553561 0.153861 1.48085 1.61351 0 0.473484 3.36961 0 -0.569783 -0.6875 0.5 0.164834 -0.123927 0.636749 0.524266 0.25303 1.26836 1.69669 0 0.505384 3.36607 0 -0.606531 -0.71875 0.5 0.164838 -0.123902 0.636139 0.545577 0.271709 1.2563 1.73917 0 0.505384 3.36607 0 -0.606531 +0.6875 0.5 0.164909 -0.123835 0.63797 0.525025 0.163594 1.29755 1.69959 0 0.505384 3.36607 0 -0.606531 +0.71875 0.5 0.164905 -0.12382 0.638031 0.546397 0.179084 1.30089 1.74209 0 0.505384 3.36607 0 -0.606531 -0.6875 0.53125 0.170063 -0.127854 0.598969 0.538112 0.241941 1.35276 1.65343 0 0.489683 3.36781 0 -0.58787 -0.71875 0.53125 0.170067 -0.127829 0.59845 0.560286 0.285637 1.33184 1.69637 0 0.489683 3.36781 0 -0.58787 +0.6875 0.53125 0.170137 -0.127761 0.599976 0.539505 0.172327 1.38161 1.65668 0 0.489683 3.36781 0 -0.58787 +0.71875 0.53125 0.170133 -0.127746 0.599823 0.560878 0.161014 1.37629 1.69893 0 0.489683 3.36781 0 -0.58787 -0.71875 0.5 0.164838 -0.123902 0.636139 0.545577 0.271709 1.2563 1.73917 0 0.505384 3.36607 0 -0.606531 -0.75 0.5 0.16484 -0.123876 0.63559 0.568153 0.223537 1.26668 1.78426 0 0.505384 3.36607 0 -0.606531 +0.71875 0.5 0.164905 -0.12382 0.638031 0.546013 0.179084 1.30089 1.74209 0 0.505384 3.36607 0 -0.606531 +0.75 0.5 0.164901 -0.123806 0.637817 0.568738 0.186595 1.27214 1.78719 0 0.505384 3.36607 0 -0.606531 -0.71875 0.53125 0.170067 -0.127829 0.59845 0.560286 0.285637 1.33184 1.69637 0 0.489683 3.36781 0 -0.58787 -0.75 0.53125 0.170069 -0.127803 0.597717 0.583789 0.240882 1.31368 1.74169 0 0.489683 3.36781 0 -0.58787 +0.71875 0.53125 0.170133 -0.127746 0.599823 0.561156 0.161014 1.37629 1.69893 0 0.489683 3.36781 0 -0.58787 +0.75 0.53125 0.170129 -0.127731 0.600067 0.583881 0.153914 1.35917 1.74426 0 0.489683 3.36781 0 -0.58787 -0.6875 0.53125 0.170063 -0.127854 0.598969 0.538112 0.241941 1.35276 1.65343 0 0.489683 3.36781 0 -0.58787 -0.71875 0.53125 0.170067 -0.127829 0.59845 0.560286 0.285637 1.33184 1.69637 0 0.489683 3.36781 0 -0.58787 +0.6875 0.53125 0.170137 -0.127761 0.599976 0.539041 0.172327 1.38161 1.65668 0 0.489683 3.36781 0 -0.58787 +0.71875 0.53125 0.170133 -0.127746 0.599823 0.561066 0.161014 1.37629 1.69893 0 0.489683 3.36781 0 -0.58787 -0.6875 0.5625 0.175458 -0.131903 0.56073 0.552765 0.258291 1.41692 1.61058 0 0.473484 3.36961 0 -0.569783 -0.71875 0.5625 0.175462 -0.131878 0.560394 0.575471 0.244297 1.42346 1.65337 0 0.473484 3.36961 0 -0.569783 +0.6875 0.5625 0.175531 -0.131811 0.561798 0.553862 0.153861 1.48085 1.61351 0 0.473484 3.36961 0 -0.569783 +0.71875 0.5625 0.175527 -0.131796 0.56189 0.575887 0.162704 1.46227 1.65592 0 0.473484 3.36961 0 -0.569783 -0.71875 0.53125 0.170067 -0.127829 0.59845 0.560286 0.285637 1.33184 1.69637 0 0.489683 3.36781 0 -0.58787 -0.75 0.53125 0.170069 -0.127803 0.597717 0.583789 0.240882 1.31368 1.74169 0 0.489683 3.36781 0 -0.58787 +0.71875 0.53125 0.170133 -0.127746 0.599823 0.560673 0.161014 1.37629 1.69893 0 0.489683 3.36781 0 -0.58787 +0.75 0.53125 0.170129 -0.127731 0.600067 0.58403 0.153914 1.35917 1.74426 0 0.489683 3.36781 0 -0.58787 -0.71875 0.5625 0.175462 -0.131878 0.560394 0.575471 0.244297 1.42346 1.65337 0 0.473484 3.36961 0 -0.569783 -0.75 0.5625 0.175464 -0.131853 0.56012 0.598997 0.227613 1.42017 1.69778 0 0.473484 3.36961 0 -0.569783 +0.71875 0.5625 0.175527 -0.131796 0.56189 0.576256 0.162704 1.46227 1.65592 0 0.473484 3.36961 0 -0.569783 +0.75 0.5625 0.175523 -0.13178 0.56189 0.599613 0.162068 1.47718 1.70115 0 0.473484 3.36961 0 -0.569783 -0.625 0.5625 0.175446 -0.131951 0.561401 0.511605 0.187456 1.42 1.53308 0 0.473484 3.36961 0 -0.569783 -0.65625 0.5625 0.175453 -0.131928 0.561188 0.531423 0.242223 1.40108 1.57051 0 0.473484 3.36961 0 -0.569783 +0.625 0.5625 0.175539 -0.131841 0.561737 0.512723 0.190884 1.47641 1.53619 0 0.473484 3.36961 0 -0.569783 +0.65625 0.5625 0.175534 -0.131826 0.561646 0.5328 0.169854 1.47536 1.57366 0 0.473484 3.36961 0 -0.569783 -0.625 0.59375 0.181013 -0.136126 0.523224 0.525131 0.193807 1.49271 1.48991 0 0.45677 3.37147 0 -0.552252 -0.65625 0.59375 0.18102 -0.136102 0.523163 0.545569 0.223779 1.49887 1.52747 0 0.45677 3.37147 0 -0.552252 +0.625 0.59375 0.181104 -0.136018 0.523346 0.526697 0.189434 1.59508 1.49309 0 0.45677 3.37147 0 -0.552252 +0.65625 0.59375 0.1811 -0.136003 0.523315 0.546774 0.180032 1.57234 1.53043 0 0.45677 3.37147 0 -0.552252 -0.65625 0.5625 0.175453 -0.131928 0.561188 0.531423 0.242223 1.40108 1.57051 0 0.473484 3.36961 0 -0.569783 -0.6875 0.5625 0.175458 -0.131903 0.56073 0.552765 0.258291 1.41692 1.61058 0 0.473484 3.36961 0 -0.569783 +0.65625 0.5625 0.175534 -0.131826 0.561646 0.532488 0.169854 1.47536 1.57366 0 0.473484 3.36961 0 -0.569783 +0.6875 0.5625 0.175531 -0.131811 0.561798 0.55376 0.153861 1.48085 1.61351 0 0.473484 3.36961 0 -0.569783 -0.65625 0.59375 0.18102 -0.136102 0.523163 0.545569 0.223779 1.49887 1.52747 0 0.45677 3.37147 0 -0.552252 -0.6875 0.59375 0.181025 -0.136079 0.522919 0.56747 0.280599 1.50683 1.56754 0 0.45677 3.37147 0 -0.552252 +0.65625 0.59375 0.1811 -0.136003 0.523315 0.5471 0.180032 1.57234 1.53043 0 0.45677 3.37147 0 -0.552252 +0.6875 0.59375 0.181096 -0.135988 0.523346 0.568371 0.166505 1.5892 1.57025 0 0.45677 3.37147 0 -0.552252 -0.625 0.59375 0.181013 -0.136126 0.523224 0.525131 0.193807 1.49271 1.48991 0 0.45677 3.37147 0 -0.552252 -0.65625 0.59375 0.18102 -0.136102 0.523163 0.545569 0.223779 1.49887 1.52747 0 0.45677 3.37147 0 -0.552252 +0.625 0.59375 0.181104 -0.136018 0.523346 0.526296 0.189434 1.59508 1.49309 0 0.45677 3.37147 0 -0.552252 +0.65625 0.59375 0.1811 -0.136003 0.523315 0.54689 0.180032 1.57234 1.53043 0 0.45677 3.37147 0 -0.552252 -0.625 0.625 0.186758 -0.140429 0.485138 0.538996 0.204025 1.5846 1.44682 0 0.439526 3.37339 0 -0.535261 -0.65625 0.625 0.186764 -0.140406 0.484863 0.560184 0.263983 1.61482 1.48435 0 0.439526 3.37339 0 -0.535261 +0.625 0.625 0.186846 -0.140325 0.484558 0.540724 0.190085 1.69594 1.44964 0 0.439526 3.37339 0 -0.535261 +0.65625 0.625 0.186842 -0.140311 0.484772 0.561319 0.177665 1.70636 1.48713 0 0.439526 3.37339 0 -0.535261 -0.65625 0.59375 0.18102 -0.136102 0.523163 0.545569 0.223779 1.49887 1.52747 0 0.45677 3.37147 0 -0.552252 -0.6875 0.59375 0.181025 -0.136079 0.522919 0.56747 0.280599 1.50683 1.56754 0 0.45677 3.37147 0 -0.552252 +0.65625 0.59375 0.1811 -0.136003 0.523315 0.546581 0.180032 1.57234 1.53043 0 0.45677 3.37147 0 -0.552252 +0.6875 0.59375 0.181096 -0.135988 0.523346 0.568612 0.166505 1.5892 1.57025 0 0.45677 3.37147 0 -0.552252 -0.65625 0.625 0.186764 -0.140406 0.484863 0.560184 0.263983 1.61482 1.48435 0 0.439526 3.37339 0 -0.535261 -0.6875 0.625 0.186769 -0.140384 0.484436 0.582824 0.288034 1.66461 1.52431 0 0.439526 3.37339 0 -0.535261 +0.65625 0.625 0.186842 -0.140311 0.484772 0.561657 0.177665 1.70636 1.48713 0 0.439526 3.37339 0 -0.535261 +0.6875 0.625 0.186838 -0.140296 0.484711 0.583687 0.203443 1.70127 1.52717 0 0.439526 3.37339 0 -0.535261 -0.6875 0.5625 0.175458 -0.131903 0.56073 0.552765 0.258291 1.41692 1.61058 0 0.473484 3.36961 0 -0.569783 -0.71875 0.5625 0.175462 -0.131878 0.560394 0.575471 0.244297 1.42346 1.65337 0 0.473484 3.36961 0 -0.569783 +0.6875 0.5625 0.175531 -0.131811 0.561798 0.553378 0.153861 1.48085 1.61351 0 0.473484 3.36961 0 -0.569783 +0.71875 0.5625 0.175527 -0.131796 0.56189 0.576 0.162704 1.46227 1.65592 0 0.473484 3.36961 0 -0.569783 -0.6875 0.59375 0.181025 -0.136079 0.522919 0.56747 0.280599 1.50683 1.56754 0 0.45677 3.37147 0 -0.552252 -0.71875 0.59375 0.181029 -0.136055 0.522278 0.59098 0.317644 1.51531 1.61018 0 0.45677 3.37147 0 -0.552252 +0.6875 0.59375 0.181096 -0.135988 0.523346 0.568761 0.166505 1.5892 1.57025 0 0.45677 3.37147 0 -0.552252 +0.71875 0.59375 0.181092 -0.135972 0.523468 0.591383 0.166115 1.60647 1.61274 0 0.45677 3.37147 0 -0.552252 -0.71875 0.5625 0.175462 -0.131878 0.560394 0.575471 0.244297 1.42346 1.65337 0 0.473484 3.36961 0 -0.569783 -0.75 0.5625 0.175464 -0.131853 0.56012 0.598997 0.227613 1.42017 1.69778 0 0.473484 3.36961 0 -0.569783 +0.71875 0.5625 0.175527 -0.131796 0.56189 0.575643 0.162704 1.46227 1.65592 0 0.473484 3.36961 0 -0.569783 +0.75 0.5625 0.175523 -0.13178 0.56189 0.599812 0.162068 1.47718 1.70115 0 0.473484 3.36961 0 -0.569783 -0.71875 0.59375 0.181029 -0.136055 0.522278 0.59098 0.317644 1.51531 1.61018 0 0.45677 3.37147 0 -0.552252 -0.75 0.59375 0.18103 -0.136031 0.521515 0.615934 0.238038 1.50732 1.65535 0 0.45677 3.37147 0 -0.552252 +0.71875 0.59375 0.181092 -0.135972 0.523468 0.591757 0.166115 1.60647 1.61274 0 0.45677 3.37147 0 -0.552252 +0.75 0.59375 0.181089 -0.135957 0.523468 0.615926 0.163257 1.60371 1.65809 0 0.45677 3.37147 0 -0.552252 -0.6875 0.59375 0.181025 -0.136079 0.522919 0.56747 0.280599 1.50683 1.56754 0 0.45677 3.37147 0 -0.552252 -0.71875 0.59375 0.181029 -0.136055 0.522278 0.59098 0.317644 1.51531 1.61018 0 0.45677 3.37147 0 -0.552252 +0.6875 0.59375 0.181096 -0.135988 0.523346 0.568174 0.166505 1.5892 1.57025 0 0.45677 3.37147 0 -0.552252 +0.71875 0.59375 0.181092 -0.135972 0.523468 0.591596 0.166115 1.60647 1.61274 0 0.45677 3.37147 0 -0.552252 -0.6875 0.625 0.186769 -0.140384 0.484436 0.582824 0.288034 1.66461 1.52431 0 0.439526 3.37339 0 -0.535261 -0.71875 0.625 0.186772 -0.140361 0.483948 0.607033 0.267432 1.63275 1.56702 0 0.439526 3.37339 0 -0.535261 +0.6875 0.625 0.186838 -0.140296 0.484711 0.584112 0.203443 1.70127 1.52717 0 0.439526 3.37339 0 -0.535261 +0.71875 0.625 0.186835 -0.14028 0.484558 0.607534 0.190706 1.70527 1.56957 0 0.439526 3.37339 0 -0.535261 -0.71875 0.59375 0.181029 -0.136055 0.522278 0.59098 0.317644 1.51531 1.61018 0 0.45677 3.37147 0 -0.552252 -0.75 0.59375 0.18103 -0.136031 0.521515 0.615934 0.238038 1.50732 1.65535 0 0.45677 3.37147 0 -0.552252 +0.71875 0.59375 0.181092 -0.135972 0.523468 0.591169 0.166115 1.60647 1.61274 0 0.45677 3.37147 0 -0.552252 +0.75 0.59375 0.181089 -0.135957 0.523468 0.616162 0.163257 1.60371 1.65809 0 0.45677 3.37147 0 -0.552252 -0.71875 0.625 0.186772 -0.140361 0.483948 0.607033 0.267432 1.63275 1.56702 0 0.439526 3.37339 0 -0.535261 -0.75 0.625 0.186774 -0.140338 0.483734 0.632526 0.224669 1.60757 1.61229 0 0.439526 3.37339 0 -0.535261 +0.71875 0.625 0.186835 -0.14028 0.484558 0.607879 0.190706 1.70527 1.56957 0 0.439526 3.37339 0 -0.535261 +0.75 0.625 0.186832 -0.140265 0.484619 0.632871 0.148453 1.70313 1.61484 0 0.439526 3.37339 0 -0.535261 -0.5 0.625 0.18674 -0.140512 0.484467 0.467371 0.167995 1.56428 1.31835 0 0.439526 3.37339 0 -0.535261 -0.53125 0.625 0.186743 -0.140492 0.48465 0.483381 0.152166 1.5893 1.3471 0 0.439526 3.37339 0 -0.535261 +0.5 0.625 0.186864 -0.140378 0.485352 0.467872 0.229373 1.72273 1.32116 0 0.439526 3.37339 0 -0.535261 +0.53125 0.625 0.18686 -0.140366 0.485352 0.4845 0.251905 1.70774 1.35051 0 0.439526 3.37339 0 -0.535261 -0.5 0.65625 0.192671 -0.144942 0.446655 0.478663 0.165747 1.77178 1.27441 0 0.421735 3.37536 0 -0.518793 -0.53125 0.65625 0.192672 -0.144923 0.446289 0.496022 0.232676 1.78845 1.30407 0 0.421735 3.37536 0 -0.518793 +0.5 0.65625 0.192789 -0.144818 0.44635 0.480511 0.194877 1.86714 1.27788 0 0.421735 3.37536 0 -0.518793 +0.53125 0.65625 0.192785 -0.144806 0.446228 0.497139 0.217885 1.87742 1.30706 0 0.421735 3.37536 0 -0.518793 -0.53125 0.625 0.186743 -0.140492 0.48465 0.483381 0.152166 1.5893 1.3471 0 0.439526 3.37339 0 -0.535261 -0.5625 0.625 0.186746 -0.140471 0.484772 0.500812 0.147904 1.63543 1.37832 0 0.439526 3.37339 0 -0.535261 +0.53125 0.625 0.18686 -0.140366 0.485352 0.484303 0.251905 1.70774 1.35051 0 0.439526 3.37339 0 -0.535261 +0.5625 0.625 0.186856 -0.140353 0.484772 0.502176 0.249992 1.69363 1.3814 0 0.439526 3.37339 0 -0.535261 -0.53125 0.65625 0.192672 -0.144923 0.446289 0.496022 0.232676 1.78845 1.30407 0 0.421735 3.37536 0 -0.518793 -0.5625 0.65625 0.192675 -0.144904 0.446075 0.514154 0.162674 1.80003 1.33521 0 0.421735 3.37536 0 -0.518793 +0.53125 0.65625 0.192785 -0.144806 0.446228 0.497335 0.217885 1.87742 1.30706 0 0.421735 3.37536 0 -0.518793 +0.5625 0.65625 0.19278 -0.144794 0.446136 0.515208 0.232616 1.82028 1.33804 0 0.421735 3.37536 0 -0.518793 -0.5 0.65625 0.192671 -0.144942 0.446655 0.478663 0.165747 1.77178 1.27441 0 0.421735 3.37536 0 -0.518793 -0.53125 0.65625 0.192672 -0.144923 0.446289 0.496022 0.232676 1.78845 1.30407 0 0.421735 3.37536 0 -0.518793 +0.5 0.65625 0.192789 -0.144818 0.44635 0.48011 0.194877 1.86714 1.27788 0 0.421735 3.37536 0 -0.518793 +0.53125 0.65625 0.192785 -0.144806 0.446228 0.497288 0.217885 1.87742 1.30706 0 0.421735 3.37536 0 -0.518793 -0.5 0.6875 0.198789 -0.149511 0.407043 0.492009 0.171827 2.03185 1.2317 0 0.403379 3.3774 0 -0.502832 -0.53125 0.6875 0.19879 -0.149493 0.407043 0.509331 0.187517 2.00291 1.26074 0 0.403379 3.3774 0 -0.502832 +0.5 0.6875 0.198903 -0.149398 0.407166 0.493063 0.212397 2.01605 1.2344 0 0.403379 3.3774 0 -0.502832 +0.53125 0.6875 0.198898 -0.149386 0.407013 0.51024 0.215082 2.01546 1.26351 0 0.403379 3.3774 0 -0.502832 -0.53125 0.65625 0.192672 -0.144923 0.446289 0.496022 0.232676 1.78845 1.30407 0 0.421735 3.37536 0 -0.518793 -0.5625 0.65625 0.192675 -0.144904 0.446075 0.514154 0.162674 1.80003 1.33521 0 0.421735 3.37536 0 -0.518793 +0.53125 0.65625 0.192785 -0.144806 0.446228 0.49703 0.217885 1.87742 1.30706 0 0.421735 3.37536 0 -0.518793 +0.5625 0.65625 0.19278 -0.144794 0.446136 0.515255 0.232616 1.82028 1.33804 0 0.421735 3.37536 0 -0.518793 -0.53125 0.6875 0.19879 -0.149493 0.407043 0.509331 0.187517 2.00291 1.26074 0 0.403379 3.3774 0 -0.502832 -0.5625 0.6875 0.198792 -0.149476 0.407013 0.527953 0.141764 1.9423 1.29192 0 0.403379 3.3774 0 -0.502832 +0.53125 0.6875 0.198898 -0.149386 0.407013 0.510505 0.215082 2.01546 1.26351 0 0.403379 3.3774 0 -0.502832 +0.5625 0.6875 0.198893 -0.149374 0.407043 0.528729 0.217387 1.99546 1.29456 0 0.403379 3.3774 0 -0.502832 -0.5625 0.625 0.186746 -0.140471 0.484772 0.500812 0.147904 1.63543 1.37832 0 0.439526 3.37339 0 -0.535261 -0.59375 0.625 0.186751 -0.14045 0.484985 0.51927 0.153173 1.61242 1.41147 0 0.439526 3.37339 0 -0.535261 +0.5625 0.625 0.186856 -0.140353 0.484772 0.501915 0.249992 1.69363 1.3814 0 0.439526 3.37339 0 -0.535261 +0.59375 0.625 0.186851 -0.140339 0.484772 0.52081 0.215438 1.70682 1.41458 0 0.439526 3.37339 0 -0.535261 -0.5625 0.65625 0.192675 -0.144904 0.446075 0.514154 0.162674 1.80003 1.33521 0 0.421735 3.37536 0 -0.518793 -0.59375 0.65625 0.192678 -0.144884 0.446594 0.533019 0.129 1.7765 1.36835 0 0.421735 3.37536 0 -0.518793 +0.5625 0.65625 0.19278 -0.144794 0.446136 0.515459 0.232616 1.82028 1.33804 0 0.421735 3.37536 0 -0.518793 +0.59375 0.65625 0.192775 -0.144781 0.445862 0.534354 0.219736 1.83303 1.37105 0 0.421735 3.37536 0 -0.518793 -0.59375 0.625 0.186751 -0.14045 0.484985 0.51927 0.153173 1.61242 1.41147 0 0.439526 3.37339 0 -0.535261 -0.625 0.625 0.186758 -0.140429 0.485138 0.538996 0.204025 1.5846 1.44682 0 0.439526 3.37339 0 -0.535261 +0.59375 0.625 0.186851 -0.140339 0.484772 0.520492 0.215438 1.70682 1.41458 0 0.439526 3.37339 0 -0.535261 +0.625 0.625 0.186846 -0.140325 0.484558 0.54058 0.190085 1.69594 1.44964 0 0.439526 3.37339 0 -0.535261 -0.59375 0.65625 0.192678 -0.144884 0.446594 0.533019 0.129 1.7765 1.36835 0 0.421735 3.37536 0 -0.518793 -0.625 0.65625 0.192685 -0.144864 0.446808 0.55337 0.21577 1.75098 1.40376 0 0.421735 3.37536 0 -0.518793 +0.59375 0.65625 0.192775 -0.144781 0.445862 0.534634 0.219736 1.83303 1.37105 0 0.421735 3.37536 0 -0.518793 +0.625 0.65625 0.192771 -0.144768 0.445923 0.554722 0.205367 1.80782 1.40634 0 0.421735 3.37536 0 -0.518793 -0.5625 0.65625 0.192675 -0.144904 0.446075 0.514154 0.162674 1.80003 1.33521 0 0.421735 3.37536 0 -0.518793 -0.59375 0.65625 0.192678 -0.144884 0.446594 0.533019 0.129 1.7765 1.36835 0 0.421735 3.37536 0 -0.518793 +0.5625 0.65625 0.19278 -0.144794 0.446136 0.514971 0.232616 1.82028 1.33804 0 0.421735 3.37536 0 -0.518793 +0.59375 0.65625 0.192775 -0.144781 0.445862 0.534526 0.219736 1.83303 1.37105 0 0.421735 3.37536 0 -0.518793 -0.5625 0.6875 0.198792 -0.149476 0.407013 0.527953 0.141764 1.9423 1.29192 0 0.403379 3.3774 0 -0.502832 -0.59375 0.6875 0.198795 -0.149457 0.407501 0.547418 0.113204 1.96833 1.32503 0 0.403379 3.3774 0 -0.502832 +0.5625 0.6875 0.198893 -0.149374 0.407043 0.529008 0.217387 1.99546 1.29456 0 0.403379 3.3774 0 -0.502832 +0.59375 0.6875 0.198889 -0.149362 0.40686 0.548564 0.212821 1.96894 1.32765 0 0.403379 3.3774 0 -0.502832 -0.59375 0.65625 0.192678 -0.144884 0.446594 0.533019 0.129 1.7765 1.36835 0 0.421735 3.37536 0 -0.518793 -0.625 0.65625 0.192685 -0.144864 0.446808 0.55337 0.21577 1.75098 1.40376 0 0.421735 3.37536 0 -0.518793 +0.59375 0.65625 0.192775 -0.144781 0.445862 0.534184 0.219736 1.83303 1.37105 0 0.421735 3.37536 0 -0.518793 +0.625 0.65625 0.192771 -0.144768 0.445923 0.554837 0.205367 1.80782 1.40634 0 0.421735 3.37536 0 -0.518793 -0.59375 0.6875 0.198795 -0.149457 0.407501 0.547418 0.113204 1.96833 1.32503 0 0.403379 3.3774 0 -0.502832 -0.625 0.6875 0.198802 -0.149439 0.407898 0.568322 0.216489 1.96647 1.36047 0 0.403379 3.3774 0 -0.502832 +0.59375 0.6875 0.198889 -0.149362 0.40686 0.548825 0.212821 1.96894 1.32765 0 0.403379 3.3774 0 -0.502832 +0.625 0.6875 0.198884 -0.14935 0.406921 0.569477 0.199144 1.96625 1.36291 0 0.403379 3.3774 0 -0.502832 -0.5 0.6875 0.198789 -0.149511 0.407043 0.492009 0.171827 2.03185 1.2317 0 0.403379 3.3774 0 -0.502832 -0.53125 0.6875 0.19879 -0.149493 0.407043 0.509331 0.187517 2.00291 1.26074 0 0.403379 3.3774 0 -0.502832 +0.5 0.6875 0.198903 -0.149398 0.407166 0.492641 0.212397 2.01605 1.2344 0 0.403379 3.3774 0 -0.502832 +0.53125 0.6875 0.198898 -0.149386 0.407013 0.510365 0.215082 2.01546 1.26351 0 0.403379 3.3774 0 -0.502832 -0.5 0.71875 0.205104 -0.154221 0.367676 0.505004 0.170323 2.19632 1.18807 0 0.38444 3.37951 0 -0.487361 -0.53125 0.71875 0.205103 -0.154205 0.367615 0.522995 0.155501 2.17456 1.21724 0 0.38444 3.37951 0 -0.487361 +0.5 0.71875 0.20521 -0.154121 0.367706 0.505998 0.236769 2.16451 1.19075 0 0.38444 3.37951 0 -0.487361 +0.53125 0.71875 0.205205 -0.15411 0.367615 0.523722 0.220686 2.16821 1.21995 0 0.38444 3.37951 0 -0.487361 -0.53125 0.6875 0.19879 -0.149493 0.407043 0.509331 0.187517 2.00291 1.26074 0 0.403379 3.3774 0 -0.502832 -0.5625 0.6875 0.198792 -0.149476 0.407013 0.527953 0.141764 1.9423 1.29192 0 0.403379 3.3774 0 -0.502832 +0.53125 0.6875 0.198898 -0.149386 0.407013 0.510068 0.215082 2.01546 1.26351 0 0.403379 3.3774 0 -0.502832 +0.5625 0.6875 0.198893 -0.149374 0.407043 0.52886 0.217387 1.99546 1.29456 0 0.403379 3.3774 0 -0.502832 -0.53125 0.71875 0.205103 -0.154205 0.367615 0.522995 0.155501 2.17456 1.21724 0 0.38444 3.37951 0 -0.487361 -0.5625 0.71875 0.205104 -0.154189 0.368011 0.542021 0.131125 2.12277 1.24854 0 0.38444 3.37951 0 -0.487361 +0.53125 0.71875 0.205205 -0.15411 0.367615 0.523995 0.220686 2.16821 1.21995 0 0.38444 3.37951 0 -0.487361 +0.5625 0.71875 0.2052 -0.154098 0.367615 0.542786 0.215184 2.15249 1.25114 0 0.38444 3.37951 0 -0.487361 -0.5 0.71875 0.205104 -0.154221 0.367676 0.505004 0.170323 2.19632 1.18807 0 0.38444 3.37951 0 -0.487361 -0.53125 0.71875 0.205103 -0.154205 0.367615 0.522995 0.155501 2.17456 1.21724 0 0.38444 3.37951 0 -0.487361 +0.5 0.71875 0.20521 -0.154121 0.367706 0.505544 0.236769 2.16451 1.19075 0 0.38444 3.37951 0 -0.487361 +0.53125 0.71875 0.205205 -0.15411 0.367615 0.523837 0.220686 2.16821 1.21995 0 0.38444 3.37951 0 -0.487361 -0.5 0.75 0.211619 -0.15908 0.327881 0.518717 0.166679 2.41005 1.14463 0 0.3649 3.38168 0 -0.472367 -0.53125 0.75 0.211618 -0.159065 0.328033 0.537129 0.141694 2.39018 1.17377 0 0.3649 3.38168 0 -0.472367 +0.5 0.75 0.211718 -0.158991 0.328247 0.519226 0.266557 2.34061 1.14709 0 0.3649 3.38168 0 -0.472367 +0.53125 0.75 0.211713 -0.158981 0.328033 0.537519 0.215877 2.32635 1.17622 0 0.3649 3.38168 0 -0.472367 -0.53125 0.71875 0.205103 -0.154205 0.367615 0.522995 0.155501 2.17456 1.21724 0 0.38444 3.37951 0 -0.487361 -0.5625 0.71875 0.205104 -0.154189 0.368011 0.542021 0.131125 2.12277 1.24854 0 0.38444 3.37951 0 -0.487361 +0.53125 0.71875 0.205205 -0.15411 0.367615 0.523535 0.220686 2.16821 1.21995 0 0.38444 3.37951 0 -0.487361 +0.5625 0.71875 0.2052 -0.154098 0.367615 0.542891 0.215184 2.15249 1.25114 0 0.38444 3.37951 0 -0.487361 -0.53125 0.75 0.211618 -0.159065 0.328033 0.537129 0.141694 2.39018 1.17377 0 0.3649 3.38168 0 -0.472367 -0.5625 0.75 0.211618 -0.159051 0.328369 0.556699 0.126632 2.35266 1.20492 0 0.3649 3.38168 0 -0.472367 +0.53125 0.75 0.211713 -0.158981 0.328033 0.537808 0.215877 2.32635 1.17622 0 0.3649 3.38168 0 -0.472367 +0.5625 0.75 0.211708 -0.15897 0.328186 0.557163 0.146034 2.32338 1.20725 0 0.3649 3.38168 0 -0.472367 -0.5625 0.6875 0.198792 -0.149476 0.407013 0.527953 0.141764 1.9423 1.29192 0 0.403379 3.3774 0 -0.502832 -0.59375 0.6875 0.198795 -0.149457 0.407501 0.547418 0.113204 1.96833 1.32503 0 0.403379 3.3774 0 -0.502832 +0.5625 0.6875 0.198893 -0.149374 0.407043 0.528541 0.217387 1.99546 1.29456 0 0.403379 3.3774 0 -0.502832 +0.59375 0.6875 0.198889 -0.149362 0.40686 0.548684 0.212821 1.96894 1.32765 0 0.403379 3.3774 0 -0.502832 -0.5625 0.71875 0.205104 -0.154189 0.368011 0.542021 0.131125 2.12277 1.24854 0 0.38444 3.37951 0 -0.487361 -0.59375 0.71875 0.205107 -0.154173 0.368225 0.562248 0.154224 2.1422 1.28162 0 0.38444 3.37951 0 -0.487361 +0.5625 0.71875 0.2052 -0.154098 0.367615 0.543066 0.215184 2.15249 1.25114 0 0.38444 3.37951 0 -0.487361 +0.59375 0.71875 0.205196 -0.154086 0.367523 0.563209 0.200472 2.07875 1.28406 0 0.38444 3.37951 0 -0.487361 -0.59375 0.6875 0.198795 -0.149457 0.407501 0.547418 0.113204 1.96833 1.32503 0 0.403379 3.3774 0 -0.502832 -0.625 0.6875 0.198802 -0.149439 0.407898 0.568322 0.216489 1.96647 1.36047 0 0.403379 3.3774 0 -0.502832 +0.59375 0.6875 0.198889 -0.149362 0.40686 0.548354 0.212821 1.96894 1.32765 0 0.403379 3.3774 0 -0.502832 +0.625 0.6875 0.198884 -0.14935 0.406921 0.569621 0.199144 1.96625 1.36291 0 0.403379 3.3774 0 -0.502832 -0.59375 0.71875 0.205107 -0.154173 0.368225 0.562248 0.154224 2.1422 1.28162 0 0.38444 3.37951 0 -0.487361 -0.625 0.71875 0.205113 -0.154156 0.368439 0.583831 0.214191 2.1611 1.31689 0 0.38444 3.37951 0 -0.487361 +0.59375 0.71875 0.205196 -0.154086 0.367523 0.563517 0.200472 2.07875 1.28406 0 0.38444 3.37951 0 -0.487361 +0.625 0.71875 0.205192 -0.154075 0.367645 0.584784 0.18485 2.12126 1.31922 0 0.38444 3.37951 0 -0.487361 -0.5625 0.71875 0.205104 -0.154189 0.368011 0.542021 0.131125 2.12277 1.24854 0 0.38444 3.37951 0 -0.487361 -0.59375 0.71875 0.205107 -0.154173 0.368225 0.562248 0.154224 2.1422 1.28162 0 0.38444 3.37951 0 -0.487361 +0.5625 0.71875 0.2052 -0.154098 0.367615 0.542695 0.215184 2.15249 1.25114 0 0.38444 3.37951 0 -0.487361 +0.59375 0.71875 0.205196 -0.154086 0.367523 0.563218 0.200472 2.07875 1.28406 0 0.38444 3.37951 0 -0.487361 -0.5625 0.75 0.211618 -0.159051 0.328369 0.556699 0.126632 2.35266 1.20492 0 0.3649 3.38168 0 -0.472367 -0.59375 0.75 0.211621 -0.159037 0.328674 0.577494 0.151763 2.33505 1.23797 0 0.3649 3.38168 0 -0.472367 +0.5625 0.75 0.211708 -0.15897 0.328186 0.557353 0.146034 2.32338 1.20725 0 0.3649 3.38168 0 -0.472367 +0.59375 0.75 0.211705 -0.158959 0.328674 0.577875 0.195156 2.29249 1.24049 0 0.3649 3.38168 0 -0.472367 -0.59375 0.71875 0.205107 -0.154173 0.368225 0.562248 0.154224 2.1422 1.28162 0 0.38444 3.37951 0 -0.487361 -0.625 0.71875 0.205113 -0.154156 0.368439 0.583831 0.214191 2.1611 1.31689 0 0.38444 3.37951 0 -0.487361 +0.59375 0.71875 0.205196 -0.154086 0.367523 0.562968 0.200472 2.07875 1.28406 0 0.38444 3.37951 0 -0.487361 +0.625 0.71875 0.205192 -0.154075 0.367645 0.585002 0.18485 2.12126 1.31922 0 0.38444 3.37951 0 -0.487361 -0.59375 0.75 0.211621 -0.159037 0.328674 0.577494 0.151763 2.33505 1.23797 0 0.3649 3.38168 0 -0.472367 -0.625 0.75 0.211626 -0.159022 0.328857 0.599944 0.22709 2.32807 1.2735 0 0.3649 3.38168 0 -0.472367 +0.59375 0.75 0.211705 -0.158959 0.328674 0.578257 0.195156 2.29249 1.24049 0 0.3649 3.38168 0 -0.472367 +0.625 0.75 0.211701 -0.158947 0.328339 0.600291 0.268846 2.31935 1.27575 0 0.3649 3.38168 0 -0.472367 -0.625 0.625 0.186758 -0.140429 0.485138 0.538996 0.204025 1.5846 1.44682 0 0.439526 3.37339 0 -0.535261 -0.65625 0.625 0.186764 -0.140406 0.484863 0.560184 0.263983 1.61482 1.48435 0 0.439526 3.37339 0 -0.535261 +0.625 0.625 0.186846 -0.140325 0.484558 0.540236 0.190085 1.69594 1.44964 0 0.439526 3.37339 0 -0.535261 +0.65625 0.625 0.186842 -0.140311 0.484772 0.561524 0.177665 1.70636 1.48713 0 0.439526 3.37339 0 -0.535261 -0.625 0.65625 0.192685 -0.144864 0.446808 0.55337 0.21577 1.75098 1.40376 0 0.421735 3.37536 0 -0.518793 -0.65625 0.65625 0.192691 -0.144844 0.446442 0.575176 0.316726 1.77513 1.4411 0 0.421735 3.37536 0 -0.518793 +0.625 0.65625 0.192771 -0.144768 0.445923 0.555056 0.205367 1.80782 1.40634 0 0.421735 3.37536 0 -0.518793 +0.65625 0.65625 0.192767 -0.144754 0.44577 0.576344 0.194576 1.82696 1.44376 0 0.421735 3.37536 0 -0.518793 -0.65625 0.625 0.186764 -0.140406 0.484863 0.560184 0.263983 1.61482 1.48435 0 0.439526 3.37339 0 -0.535261 -0.6875 0.625 0.186769 -0.140384 0.484436 0.582824 0.288034 1.66461 1.52431 0 0.439526 3.37339 0 -0.535261 +0.65625 0.625 0.186842 -0.140311 0.484772 0.561106 0.177665 1.70636 1.48713 0 0.439526 3.37339 0 -0.535261 +0.6875 0.625 0.186838 -0.140296 0.484711 0.583836 0.203443 1.70127 1.52717 0 0.439526 3.37339 0 -0.535261 -0.65625 0.65625 0.192691 -0.144844 0.446442 0.575176 0.316726 1.77513 1.4411 0 0.421735 3.37536 0 -0.518793 -0.6875 0.65625 0.192695 -0.144823 0.445648 0.598822 0.319827 1.79807 1.4812 0 0.421735 3.37536 0 -0.518793 +0.65625 0.65625 0.192767 -0.144754 0.44577 0.57672 0.194576 1.82696 1.44376 0 0.421735 3.37536 0 -0.518793 +0.6875 0.65625 0.192763 -0.144739 0.445892 0.59945 0.174967 1.82719 1.48375 0 0.421735 3.37536 0 -0.518793 -0.625 0.65625 0.192685 -0.144864 0.446808 0.55337 0.21577 1.75098 1.40376 0 0.421735 3.37536 0 -0.518793 -0.65625 0.65625 0.192691 -0.144844 0.446442 0.575176 0.316726 1.77513 1.4411 0 0.421735 3.37536 0 -0.518793 +0.625 0.65625 0.192771 -0.144768 0.445923 0.554527 0.205367 1.80782 1.40634 0 0.421735 3.37536 0 -0.518793 +0.65625 0.65625 0.192767 -0.144754 0.44577 0.57658 0.194576 1.82696 1.44376 0 0.421735 3.37536 0 -0.518793 -0.625 0.6875 0.198802 -0.149439 0.407898 0.568322 0.216489 1.96647 1.36047 0 0.403379 3.3774 0 -0.502832 -0.65625 0.6875 0.198808 -0.14942 0.407379 0.591042 0.325115 1.95686 1.39803 0 0.403379 3.3774 0 -0.502832 +0.625 0.6875 0.198884 -0.14935 0.406921 0.569792 0.199144 1.96625 1.36291 0 0.403379 3.3774 0 -0.502832 +0.65625 0.6875 0.19888 -0.149336 0.406891 0.591844 0.203286 1.95087 1.4003 0 0.403379 3.3774 0 -0.502832 -0.65625 0.65625 0.192691 -0.144844 0.446442 0.575176 0.316726 1.77513 1.4411 0 0.421735 3.37536 0 -0.518793 -0.6875 0.65625 0.192695 -0.144823 0.445648 0.598822 0.319827 1.79807 1.4812 0 0.421735 3.37536 0 -0.518793 +0.65625 0.65625 0.192767 -0.144754 0.44577 0.576223 0.194576 1.82696 1.44376 0 0.421735 3.37536 0 -0.518793 +0.6875 0.65625 0.192763 -0.144739 0.445892 0.599615 0.174967 1.82719 1.48375 0 0.421735 3.37536 0 -0.518793 -0.65625 0.6875 0.198808 -0.14942 0.407379 0.591042 0.325115 1.95686 1.39803 0 0.403379 3.3774 0 -0.502832 -0.6875 0.6875 0.198812 -0.149401 0.406738 0.615167 0.317573 1.92956 1.43782 0 0.403379 3.3774 0 -0.502832 +0.65625 0.6875 0.19888 -0.149336 0.406891 0.592217 0.203286 1.95087 1.4003 0 0.403379 3.3774 0 -0.502832 +0.6875 0.6875 0.198877 -0.149322 0.40686 0.615609 0.192226 1.96921 1.44023 0 0.403379 3.3774 0 -0.502832 -0.6875 0.625 0.186769 -0.140384 0.484436 0.582824 0.288034 1.66461 1.52431 0 0.439526 3.37339 0 -0.535261 -0.71875 0.625 0.186772 -0.140361 0.483948 0.607033 0.267432 1.63275 1.56702 0 0.439526 3.37339 0 -0.535261 +0.6875 0.625 0.186838 -0.140296 0.484711 0.583552 0.203443 1.70127 1.52717 0 0.439526 3.37339 0 -0.535261 +0.71875 0.625 0.186835 -0.14028 0.484558 0.607767 0.190706 1.70527 1.56957 0 0.439526 3.37339 0 -0.535261 -0.6875 0.65625 0.192695 -0.144823 0.445648 0.598822 0.319827 1.79807 1.4812 0 0.421735 3.37536 0 -0.518793 -0.71875 0.65625 0.192698 -0.144801 0.445374 0.623701 0.28435 1.77745 1.52395 0 0.421735 3.37536 0 -0.518793 +0.6875 0.65625 0.192763 -0.144739 0.445892 0.599743 0.174967 1.82719 1.48375 0 0.421735 3.37536 0 -0.518793 +0.71875 0.65625 0.19276 -0.144725 0.445953 0.623959 0.178428 1.80876 1.52622 0 0.421735 3.37536 0 -0.518793 -0.71875 0.625 0.186772 -0.140361 0.483948 0.607033 0.267432 1.63275 1.56702 0 0.439526 3.37339 0 -0.535261 -0.75 0.625 0.186774 -0.140338 0.483734 0.632526 0.224669 1.60757 1.61229 0 0.439526 3.37339 0 -0.535261 +0.71875 0.625 0.186835 -0.14028 0.484558 0.607372 0.190706 1.70527 1.56957 0 0.439526 3.37339 0 -0.535261 +0.75 0.625 0.186832 -0.140265 0.484619 0.633138 0.148453 1.70313 1.61484 0 0.439526 3.37339 0 -0.535261 -0.71875 0.65625 0.192698 -0.144801 0.445374 0.623701 0.28435 1.77745 1.52395 0 0.421735 3.37536 0 -0.518793 -0.75 0.65625 0.1927 -0.144779 0.444885 0.64986 0.224687 1.77721 1.5687 0 0.421735 3.37536 0 -0.518793 +0.71875 0.65625 0.19276 -0.144725 0.445953 0.624325 0.178428 1.80876 1.52622 0 0.421735 3.37536 0 -0.518793 +0.75 0.65625 0.192757 -0.144709 0.445984 0.650091 0.171833 1.8127 1.5715 0 0.421735 3.37536 0 -0.518793 -0.6875 0.65625 0.192695 -0.144823 0.445648 0.598822 0.319827 1.79807 1.4812 0 0.421735 3.37536 0 -0.518793 -0.71875 0.65625 0.192698 -0.144801 0.445374 0.623701 0.28435 1.77745 1.52395 0 0.421735 3.37536 0 -0.518793 +0.6875 0.65625 0.192763 -0.144739 0.445892 0.599239 0.174967 1.82719 1.48375 0 0.421735 3.37536 0 -0.518793 +0.71875 0.65625 0.19276 -0.144725 0.445953 0.624123 0.178428 1.80876 1.52622 0 0.421735 3.37536 0 -0.518793 -0.6875 0.6875 0.198812 -0.149401 0.406738 0.615167 0.317573 1.92956 1.43782 0 0.403379 3.3774 0 -0.502832 -0.71875 0.6875 0.198814 -0.149381 0.406433 0.640783 0.278131 1.93403 1.48045 0 0.403379 3.3774 0 -0.502832 +0.6875 0.6875 0.198877 -0.149322 0.40686 0.616005 0.192226 1.96921 1.44023 0 0.403379 3.3774 0 -0.502832 +0.71875 0.6875 0.198874 -0.149308 0.406952 0.640889 0.186671 1.97766 1.48278 0 0.403379 3.3774 0 -0.502832 -0.71875 0.65625 0.192698 -0.144801 0.445374 0.623701 0.28435 1.77745 1.52395 0 0.421735 3.37536 0 -0.518793 -0.75 0.65625 0.1927 -0.144779 0.444885 0.64986 0.224687 1.77721 1.5687 0 0.421735 3.37536 0 -0.518793 +0.71875 0.65625 0.19276 -0.144725 0.445953 0.623727 0.178428 1.80876 1.52622 0 0.421735 3.37536 0 -0.518793 +0.75 0.65625 0.192757 -0.144709 0.445984 0.650306 0.171833 1.8127 1.5715 0 0.421735 3.37536 0 -0.518793 -0.71875 0.6875 0.198814 -0.149381 0.406433 0.640783 0.278131 1.93403 1.48045 0 0.403379 3.3774 0 -0.502832 -0.75 0.6875 0.198816 -0.149361 0.406128 0.668192 0.228889 1.90572 1.52609 0 0.403379 3.3774 0 -0.502832 +0.71875 0.6875 0.198874 -0.149308 0.406952 0.641309 0.186671 1.97766 1.48278 0 0.403379 3.3774 0 -0.502832 +0.75 0.6875 0.198871 -0.149293 0.406952 0.667888 0.181381 1.9721 1.52803 0 0.403379 3.3774 0 -0.502832 -0.625 0.6875 0.198802 -0.149439 0.407898 0.568322 0.216489 1.96647 1.36047 0 0.403379 3.3774 0 -0.502832 -0.65625 0.6875 0.198808 -0.14942 0.407379 0.591042 0.325115 1.95686 1.39803 0 0.403379 3.3774 0 -0.502832 +0.625 0.6875 0.198884 -0.14935 0.406921 0.569315 0.199144 1.96625 1.36291 0 0.403379 3.3774 0 -0.502832 +0.65625 0.6875 0.19888 -0.149336 0.406891 0.591989 0.203286 1.95087 1.4003 0 0.403379 3.3774 0 -0.502832 -0.625 0.71875 0.205113 -0.154156 0.368439 0.583831 0.214191 2.1611 1.31689 0 0.38444 3.37951 0 -0.487361 -0.65625 0.71875 0.205118 -0.154139 0.368195 0.607209 0.29329 2.13916 1.35463 0 0.38444 3.37951 0 -0.487361 +0.625 0.71875 0.205192 -0.154075 0.367645 0.585078 0.18485 2.12126 1.31922 0 0.38444 3.37951 0 -0.487361 +0.65625 0.71875 0.205189 -0.154062 0.367737 0.607752 0.206426 2.14077 1.35686 0 0.38444 3.37951 0 -0.487361 -0.65625 0.6875 0.198808 -0.14942 0.407379 0.591042 0.325115 1.95686 1.39803 0 0.403379 3.3774 0 -0.502832 -0.6875 0.6875 0.198812 -0.149401 0.406738 0.615167 0.317573 1.92956 1.43782 0 0.403379 3.3774 0 -0.502832 +0.65625 0.6875 0.19888 -0.149336 0.406891 0.5916 0.203286 1.95087 1.4003 0 0.403379 3.3774 0 -0.502832 +0.6875 0.6875 0.198877 -0.149322 0.40686 0.615821 0.192226 1.96921 1.44023 0 0.403379 3.3774 0 -0.502832 -0.65625 0.71875 0.205118 -0.154139 0.368195 0.607209 0.29329 2.13916 1.35463 0 0.38444 3.37951 0 -0.487361 -0.6875 0.71875 0.205122 -0.154121 0.367706 0.632032 0.312985 2.11566 1.39446 0 0.38444 3.37951 0 -0.487361 +0.65625 0.71875 0.205189 -0.154062 0.367737 0.608085 0.206426 2.14077 1.35686 0 0.38444 3.37951 0 -0.487361 +0.6875 0.71875 0.205185 -0.154049 0.367615 0.632307 0.215748 2.12031 1.39663 0 0.38444 3.37951 0 -0.487361 -0.625 0.71875 0.205113 -0.154156 0.368439 0.583831 0.214191 2.1611 1.31689 0 0.38444 3.37951 0 -0.487361 -0.65625 0.71875 0.205118 -0.154139 0.368195 0.607209 0.29329 2.13916 1.35463 0 0.38444 3.37951 0 -0.487361 +0.625 0.71875 0.205192 -0.154075 0.367645 0.584495 0.18485 2.12126 1.31922 0 0.38444 3.37951 0 -0.487361 +0.65625 0.71875 0.205189 -0.154062 0.367737 0.607963 0.206426 2.14077 1.35686 0 0.38444 3.37951 0 -0.487361 -0.625 0.75 0.211626 -0.159022 0.328857 0.599944 0.22709 2.32807 1.2735 0 0.3649 3.38168 0 -0.472367 -0.65625 0.75 0.21163 -0.159006 0.328583 0.623918 0.309975 2.34746 1.31098 0 0.3649 3.38168 0 -0.472367 +0.625 0.75 0.211701 -0.158947 0.328339 0.600741 0.268846 2.31935 1.27575 0 0.3649 3.38168 0 -0.472367 +0.65625 0.75 0.211698 -0.158935 0.328094 0.624209 0.225794 2.3249 1.31307 0 0.3649 3.38168 0 -0.472367 -0.65625 0.71875 0.205118 -0.154139 0.368195 0.607209 0.29329 2.13916 1.35463 0 0.38444 3.37951 0 -0.487361 -0.6875 0.71875 0.205122 -0.154121 0.367706 0.632032 0.312985 2.11566 1.39446 0 0.38444 3.37951 0 -0.487361 +0.65625 0.71875 0.205189 -0.154062 0.367737 0.607557 0.206426 2.14077 1.35686 0 0.38444 3.37951 0 -0.487361 +0.6875 0.71875 0.205185 -0.154049 0.367615 0.632459 0.215748 2.12031 1.39663 0 0.38444 3.37951 0 -0.487361 -0.65625 0.75 0.21163 -0.159006 0.328583 0.623918 0.309975 2.34746 1.31098 0 0.3649 3.38168 0 -0.472367 -0.6875 0.75 0.211634 -0.15899 0.328064 0.649609 0.315641 2.30485 1.35091 0 0.3649 3.38168 0 -0.472367 +0.65625 0.75 0.211698 -0.158935 0.328094 0.624566 0.225794 2.3249 1.31307 0 0.3649 3.38168 0 -0.472367 +0.6875 0.75 0.211694 -0.158923 0.328308 0.649468 0.220719 2.32734 1.35319 0 0.3649 3.38168 0 -0.472367 -0.6875 0.6875 0.198812 -0.149401 0.406738 0.615167 0.317573 1.92956 1.43782 0 0.403379 3.3774 0 -0.502832 -0.71875 0.6875 0.198814 -0.149381 0.406433 0.640783 0.278131 1.93403 1.48045 0 0.403379 3.3774 0 -0.502832 +0.6875 0.6875 0.198877 -0.149322 0.40686 0.615399 0.192226 1.96921 1.44023 0 0.403379 3.3774 0 -0.502832 +0.71875 0.6875 0.198874 -0.149308 0.406952 0.641122 0.186671 1.97766 1.48278 0 0.403379 3.3774 0 -0.502832 -0.6875 0.71875 0.205122 -0.154121 0.367706 0.632032 0.312985 2.11566 1.39446 0 0.38444 3.37951 0 -0.487361 -0.71875 0.71875 0.205124 -0.154104 0.36734 0.658529 0.283386 2.11442 1.43715 0 0.38444 3.37951 0 -0.487361 +0.6875 0.71875 0.205185 -0.154049 0.367615 0.632698 0.215748 2.12031 1.39663 0 0.38444 3.37951 0 -0.487361 +0.71875 0.71875 0.205182 -0.154035 0.367615 0.658421 0.198189 2.15515 1.43922 0 0.38444 3.37951 0 -0.487361 -0.71875 0.6875 0.198814 -0.149381 0.406433 0.640783 0.278131 1.93403 1.48045 0 0.403379 3.3774 0 -0.502832 -0.75 0.6875 0.198816 -0.149361 0.406128 0.668192 0.228889 1.90572 1.52609 0 0.403379 3.3774 0 -0.502832 +0.71875 0.6875 0.198874 -0.149308 0.406952 0.640684 0.186671 1.97766 1.48278 0 0.403379 3.3774 0 -0.502832 +0.75 0.6875 0.198871 -0.149293 0.406952 0.668073 0.181381 1.9721 1.52803 0 0.403379 3.3774 0 -0.502832 -0.71875 0.71875 0.205124 -0.154104 0.36734 0.658529 0.283386 2.11442 1.43715 0 0.38444 3.37951 0 -0.487361 -0.75 0.71875 0.205126 -0.154085 0.367157 0.686431 0.257776 2.10874 1.48229 0 0.38444 3.37951 0 -0.487361 +0.71875 0.71875 0.205182 -0.154035 0.367615 0.658834 0.198189 2.15515 1.43922 0 0.38444 3.37951 0 -0.487361 +0.75 0.71875 0.20518 -0.154021 0.367676 0.686223 0.18667 2.13529 1.4844 0 0.38444 3.37951 0 -0.487361 -0.6875 0.71875 0.205122 -0.154121 0.367706 0.632032 0.312985 2.11566 1.39446 0 0.38444 3.37951 0 -0.487361 -0.71875 0.71875 0.205124 -0.154104 0.36734 0.658529 0.283386 2.11442 1.43715 0 0.38444 3.37951 0 -0.487361 +0.6875 0.71875 0.205185 -0.154049 0.367615 0.632058 0.215748 2.12031 1.39663 0 0.38444 3.37951 0 -0.487361 +0.71875 0.71875 0.205182 -0.154035 0.367615 0.658664 0.198189 2.15515 1.43922 0 0.38444 3.37951 0 -0.487361 -0.6875 0.75 0.211634 -0.15899 0.328064 0.649609 0.315641 2.30485 1.35091 0 0.3649 3.38168 0 -0.472367 -0.71875 0.75 0.211636 -0.158974 0.32782 0.676835 0.284823 2.32453 1.39353 0 0.3649 3.38168 0 -0.472367 +0.6875 0.75 0.211694 -0.158923 0.328308 0.649869 0.220719 2.32734 1.35319 0 0.3649 3.38168 0 -0.472367 +0.71875 0.75 0.211692 -0.158911 0.328033 0.676476 0.215594 2.31905 1.39541 0 0.3649 3.38168 0 -0.472367 -0.71875 0.71875 0.205124 -0.154104 0.36734 0.658529 0.283386 2.11442 1.43715 0 0.38444 3.37951 0 -0.487361 -0.75 0.71875 0.205126 -0.154085 0.367157 0.686431 0.257776 2.10874 1.48229 0 0.38444 3.37951 0 -0.487361 +0.71875 0.71875 0.205182 -0.154035 0.367615 0.65822 0.198189 2.15515 1.43922 0 0.38444 3.37951 0 -0.487361 +0.75 0.71875 0.20518 -0.154021 0.367676 0.686407 0.18667 2.13529 1.4844 0 0.38444 3.37951 0 -0.487361 -0.71875 0.75 0.211636 -0.158974 0.32782 0.676835 0.284823 2.32453 1.39353 0 0.3649 3.38168 0 -0.472367 -0.75 0.75 0.211637 -0.158957 0.327545 0.705734 0.239017 2.33892 1.43876 0 0.3649 3.38168 0 -0.472367 +0.71875 0.75 0.211692 -0.158911 0.328033 0.676921 0.215594 2.31905 1.39541 0 0.3649 3.38168 0 -0.472367 +0.75 0.75 0.21169 -0.158898 0.328278 0.705108 0.207469 2.34459 1.44088 0 0.3649 3.38168 0 -0.472367 -0.75 0.5 0.16484 -0.123876 0.63559 0.568153 0.223537 1.26668 1.78426 0 0.505384 3.36607 0 -0.606531 -0.78125 0.5 0.164842 -0.123851 0.635559 0.59201 0.162986 1.26185 1.83247 0 0.505384 3.36607 0 -0.606531 +0.75 0.5 0.164901 -0.123806 0.637817 0.568424 0.186595 1.27214 1.78719 0 0.505384 3.36607 0 -0.606531 +0.78125 0.5 0.164898 -0.12379 0.637787 0.59265 0.177466 1.25384 1.83544 0 0.505384 3.36607 0 -0.606531 -0.75 0.53125 0.170069 -0.127803 0.597717 0.583789 0.240882 1.31368 1.74169 0 0.489683 3.36781 0 -0.58787 -0.78125 0.53125 0.170071 -0.127778 0.597687 0.608206 0.143574 1.32486 1.78951 0 0.489683 3.36781 0 -0.58787 +0.75 0.53125 0.170129 -0.127731 0.600067 0.584179 0.153914 1.35917 1.74426 0 0.489683 3.36781 0 -0.58787 +0.78125 0.53125 0.170126 -0.127716 0.600006 0.608405 0.163161 1.3414 1.79229 0 0.489683 3.36781 0 -0.58787 -0.78125 0.5 0.164842 -0.123851 0.635559 0.59201 0.162986 1.26185 1.83247 0 0.505384 3.36607 0 -0.606531 -0.8125 0.5 0.164843 -0.123825 0.635651 0.617292 0.121032 1.24624 1.88367 0 0.505384 3.36607 0 -0.606531 +0.78125 0.5 0.164898 -0.12379 0.637787 0.592301 0.177466 1.25384 1.83544 0 0.505384 3.36607 0 -0.606531 +0.8125 0.5 0.164894 -0.123774 0.637695 0.618047 0.166989 1.24201 1.88651 0 0.505384 3.36607 0 -0.606531 -0.78125 0.53125 0.170071 -0.127778 0.597687 0.608206 0.143574 1.32486 1.78951 0 0.489683 3.36781 0 -0.58787 -0.8125 0.53125 0.170073 -0.127752 0.598053 0.634224 0.0880248 1.32119 1.84086 0 0.489683 3.36781 0 -0.58787 +0.78125 0.53125 0.170126 -0.127716 0.600006 0.608746 0.163161 1.3414 1.79229 0 0.489683 3.36781 0 -0.58787 +0.8125 0.53125 0.170122 -0.127699 0.600098 0.634492 0.158431 1.33297 1.84355 0 0.489683 3.36781 0 -0.58787 -0.75 0.53125 0.170069 -0.127803 0.597717 0.583789 0.240882 1.31368 1.74169 0 0.489683 3.36781 0 -0.58787 -0.78125 0.53125 0.170071 -0.127778 0.597687 0.608206 0.143574 1.32486 1.78951 0 0.489683 3.36781 0 -0.58787 +0.75 0.53125 0.170129 -0.127731 0.600067 0.583673 0.153914 1.35917 1.74426 0 0.489683 3.36781 0 -0.58787 +0.78125 0.53125 0.170126 -0.127716 0.600006 0.608605 0.163161 1.3414 1.79229 0 0.489683 3.36781 0 -0.58787 -0.75 0.5625 0.175464 -0.131853 0.56012 0.598997 0.227613 1.42017 1.69778 0 0.473484 3.36961 0 -0.569783 -0.78125 0.5625 0.175466 -0.131829 0.559875 0.624827 0.183227 1.39957 1.7466 0 0.473484 3.36961 0 -0.569783 +0.75 0.5625 0.175523 -0.13178 0.56189 0.599954 0.162068 1.47718 1.70115 0 0.473484 3.36961 0 -0.569783 +0.78125 0.5625 0.17552 -0.131765 0.562012 0.624885 0.163376 1.45759 1.74929 0 0.473484 3.36961 0 -0.569783 -0.78125 0.53125 0.170071 -0.127778 0.597687 0.608206 0.143574 1.32486 1.78951 0 0.489683 3.36781 0 -0.58787 -0.8125 0.53125 0.170073 -0.127752 0.598053 0.634224 0.0880248 1.32119 1.84086 0 0.489683 3.36781 0 -0.58787 +0.78125 0.53125 0.170126 -0.127716 0.600006 0.608205 0.163161 1.3414 1.79229 0 0.489683 3.36781 0 -0.58787 +0.8125 0.53125 0.170122 -0.127699 0.600098 0.634732 0.158431 1.33297 1.84355 0 0.489683 3.36781 0 -0.58787 -0.78125 0.5625 0.175466 -0.131829 0.559875 0.624827 0.183227 1.39957 1.7466 0 0.473484 3.36961 0 -0.569783 -0.8125 0.5625 0.175468 -0.131803 0.559998 0.651679 0.114311 1.41024 1.79772 0 0.473484 3.36961 0 -0.569783 +0.78125 0.5625 0.17552 -0.131765 0.562012 0.625284 0.163376 1.45759 1.74929 0 0.473484 3.36961 0 -0.569783 +0.8125 0.5625 0.175517 -0.131748 0.561981 0.651811 0.158499 1.44343 1.80042 0 0.473484 3.36961 0 -0.569783 -0.8125 0.5 0.164843 -0.123825 0.635651 0.617292 0.121032 1.24624 1.88367 0 0.505384 3.36607 0 -0.606531 -0.84375 0.5 0.164846 -0.123798 0.636017 0.644103 0.0989682 1.22289 1.93824 0 0.505384 3.36607 0 -0.606531 +0.8125 0.5 0.164894 -0.123774 0.637695 0.617602 0.166989 1.24201 1.88651 0 0.505384 3.36607 0 -0.606531 +0.84375 0.5 0.16489 -0.123756 0.637817 0.644986 0.17845 1.21902 1.94104 0 0.505384 3.36607 0 -0.606531 -0.8125 0.53125 0.170073 -0.127752 0.598053 0.634224 0.0880248 1.32119 1.84086 0 0.489683 3.36781 0 -0.58787 -0.84375 0.53125 0.170076 -0.127725 0.598541 0.661705 0.0803883 1.30797 1.8952 0 0.489683 3.36781 0 -0.58787 +0.8125 0.53125 0.170122 -0.127699 0.600098 0.634892 0.158431 1.33297 1.84355 0 0.489683 3.36781 0 -0.58787 +0.84375 0.53125 0.17012 -0.127682 0.600159 0.662276 0.17449 1.32226 1.89798 0 0.489683 3.36781 0 -0.58787 -0.84375 0.5 0.164846 -0.123798 0.636017 0.644103 0.0989682 1.22289 1.93824 0 0.505384 3.36607 0 -0.606531 -0.875 0.5 0.16485 -0.12377 0.636261 0.672545 0.0735691 1.21532 1.99599 0 0.505384 3.36607 0 -0.606531 +0.84375 0.5 0.16489 -0.123756 0.637817 0.644511 0.17845 1.21902 1.94104 0 0.505384 3.36607 0 -0.606531 +0.875 0.5 0.164886 -0.123738 0.637543 0.673783 0.179215 1.23189 1.99897 0 0.505384 3.36607 0 -0.606531 -0.84375 0.53125 0.170076 -0.127725 0.598541 0.661705 0.0803883 1.30797 1.8952 0 0.489683 3.36781 0 -0.58787 -0.875 0.53125 0.170081 -0.127698 0.598907 0.691251 0.0901124 1.29268 1.95346 0 0.489683 3.36781 0 -0.58787 +0.84375 0.53125 0.17012 -0.127682 0.600159 0.662662 0.17449 1.32226 1.89798 0 0.489683 3.36781 0 -0.58787 +0.875 0.53125 0.170117 -0.127663 0.600067 0.691934 0.194931 1.31205 1.95607 0 0.489683 3.36781 0 -0.58787 -0.8125 0.53125 0.170073 -0.127752 0.598053 0.634224 0.0880248 1.32119 1.84086 0 0.489683 3.36781 0 -0.58787 -0.84375 0.53125 0.170076 -0.127725 0.598541 0.661705 0.0803883 1.30797 1.8952 0 0.489683 3.36781 0 -0.58787 +0.8125 0.53125 0.170122 -0.127699 0.600098 0.634306 0.158431 1.33297 1.84355 0 0.489683 3.36781 0 -0.58787 +0.84375 0.53125 0.17012 -0.127682 0.600159 0.662496 0.17449 1.32226 1.89798 0 0.489683 3.36781 0 -0.58787 -0.8125 0.5625 0.175468 -0.131803 0.559998 0.651679 0.114311 1.41024 1.79772 0 0.473484 3.36961 0 -0.569783 -0.84375 0.5625 0.175472 -0.131777 0.560486 0.680183 0.0787643 1.40876 1.85234 0 0.473484 3.36961 0 -0.569783 +0.8125 0.5625 0.175517 -0.131748 0.561981 0.652245 0.158499 1.44343 1.80042 0 0.473484 3.36961 0 -0.569783 +0.84375 0.5625 0.175515 -0.131731 0.562195 0.680435 0.16932 1.44393 1.855 0 0.473484 3.36961 0 -0.569783 -0.84375 0.53125 0.170076 -0.127725 0.598541 0.661705 0.0803883 1.30797 1.8952 0 0.489683 3.36781 0 -0.58787 -0.875 0.53125 0.170081 -0.127698 0.598907 0.691251 0.0901124 1.29268 1.95346 0 0.489683 3.36781 0 -0.58787 +0.84375 0.53125 0.17012 -0.127682 0.600159 0.66204 0.17449 1.32226 1.89798 0 0.489683 3.36781 0 -0.58787 +0.875 0.53125 0.170117 -0.127663 0.600067 0.692204 0.194931 1.31205 1.95607 0 0.489683 3.36781 0 -0.58787 -0.84375 0.5625 0.175472 -0.131777 0.560486 0.680183 0.0787643 1.40876 1.85234 0 0.473484 3.36961 0 -0.569783 -0.875 0.5625 0.175477 -0.131749 0.560944 0.710504 0.0872701 1.41866 1.91039 0 0.473484 3.36961 0 -0.569783 +0.84375 0.5625 0.175515 -0.131731 0.562195 0.680875 0.16932 1.44393 1.855 0 0.473484 3.36961 0 -0.569783 +0.875 0.5625 0.175513 -0.131712 0.562073 0.711039 0.197237 1.43537 1.91305 0 0.473484 3.36961 0 -0.569783 -0.75 0.5625 0.175464 -0.131853 0.56012 0.598997 0.227613 1.42017 1.69778 0 0.473484 3.36961 0 -0.569783 -0.78125 0.5625 0.175466 -0.131829 0.559875 0.624827 0.183227 1.39957 1.7466 0 0.473484 3.36961 0 -0.569783 +0.75 0.5625 0.175523 -0.13178 0.56189 0.599439 0.162068 1.47718 1.70115 0 0.473484 3.36961 0 -0.569783 +0.78125 0.5625 0.17552 -0.131765 0.562012 0.625101 0.163376 1.45759 1.74929 0 0.473484 3.36961 0 -0.569783 -0.75 0.59375 0.18103 -0.136031 0.521515 0.615934 0.238038 1.50732 1.65535 0 0.45677 3.37147 0 -0.552252 -0.78125 0.59375 0.181033 -0.136006 0.521759 0.641919 0.141391 1.49179 1.70343 0 0.45677 3.37147 0 -0.552252 +0.75 0.59375 0.181089 -0.135957 0.523468 0.616307 0.163257 1.60371 1.65809 0 0.45677 3.37147 0 -0.552252 +0.78125 0.59375 0.181086 -0.135941 0.52359 0.641969 0.14726 1.58584 1.70611 0 0.45677 3.37147 0 -0.552252 -0.78125 0.5625 0.175466 -0.131829 0.559875 0.624827 0.183227 1.39957 1.7466 0 0.473484 3.36961 0 -0.569783 -0.8125 0.5625 0.175468 -0.131803 0.559998 0.651679 0.114311 1.41024 1.79772 0 0.473484 3.36961 0 -0.569783 +0.78125 0.5625 0.17552 -0.131765 0.562012 0.624704 0.163376 1.45759 1.74929 0 0.473484 3.36961 0 -0.569783 +0.8125 0.5625 0.175517 -0.131748 0.561981 0.652056 0.158499 1.44343 1.80042 0 0.473484 3.36961 0 -0.569783 -0.78125 0.59375 0.181033 -0.136006 0.521759 0.641919 0.141391 1.49179 1.70343 0 0.45677 3.37147 0 -0.552252 -0.8125 0.59375 0.181035 -0.135981 0.521973 0.669727 0.102402 1.48722 1.75483 0 0.45677 3.37147 0 -0.552252 +0.78125 0.59375 0.181086 -0.135941 0.52359 0.642318 0.14726 1.58584 1.70611 0 0.45677 3.37147 0 -0.552252 +0.8125 0.59375 0.181084 -0.135924 0.523804 0.66967 0.155448 1.56778 1.75732 0 0.45677 3.37147 0 -0.552252 -0.75 0.59375 0.18103 -0.136031 0.521515 0.615934 0.238038 1.50732 1.65535 0 0.45677 3.37147 0 -0.552252 -0.78125 0.59375 0.181033 -0.136006 0.521759 0.641919 0.141391 1.49179 1.70343 0 0.45677 3.37147 0 -0.552252 +0.75 0.59375 0.181089 -0.135957 0.523468 0.615781 0.163257 1.60371 1.65809 0 0.45677 3.37147 0 -0.552252 +0.78125 0.59375 0.181086 -0.135941 0.52359 0.642142 0.14726 1.58584 1.70611 0 0.45677 3.37147 0 -0.552252 -0.75 0.625 0.186774 -0.140338 0.483734 0.632526 0.224669 1.60757 1.61229 0 0.439526 3.37339 0 -0.535261 -0.78125 0.625 0.186777 -0.140315 0.483643 0.659464 0.183575 1.61426 1.66026 0 0.439526 3.37339 0 -0.535261 +0.75 0.625 0.186832 -0.140265 0.484619 0.633274 0.148453 1.70313 1.61484 0 0.439526 3.37339 0 -0.535261 +0.78125 0.625 0.186829 -0.140249 0.484924 0.659635 0.132825 1.70364 1.66297 0 0.439526 3.37339 0 -0.535261 -0.78125 0.59375 0.181033 -0.136006 0.521759 0.641919 0.141391 1.49179 1.70343 0 0.45677 3.37147 0 -0.552252 -0.8125 0.59375 0.181035 -0.135981 0.521973 0.669727 0.102402 1.48722 1.75483 0 0.45677 3.37147 0 -0.552252 +0.78125 0.59375 0.181086 -0.135941 0.52359 0.641773 0.14726 1.58584 1.70611 0 0.45677 3.37147 0 -0.552252 +0.8125 0.59375 0.181084 -0.135924 0.523804 0.669904 0.155448 1.56778 1.75732 0 0.45677 3.37147 0 -0.552252 -0.78125 0.625 0.186777 -0.140315 0.483643 0.659464 0.183575 1.61426 1.66026 0 0.439526 3.37339 0 -0.535261 -0.8125 0.625 0.18678 -0.14029 0.483734 0.688185 0.129713 1.56355 1.7116 0 0.439526 3.37339 0 -0.535261 +0.78125 0.625 0.186829 -0.140249 0.484924 0.660014 0.132825 1.70364 1.66297 0 0.439526 3.37339 0 -0.535261 +0.8125 0.625 0.186827 -0.140233 0.485107 0.688145 0.14126 1.70788 1.7142 0 0.439526 3.37339 0 -0.535261 -0.8125 0.5625 0.175468 -0.131803 0.559998 0.651679 0.114311 1.41024 1.79772 0 0.473484 3.36961 0 -0.569783 -0.84375 0.5625 0.175472 -0.131777 0.560486 0.680183 0.0787643 1.40876 1.85234 0 0.473484 3.36961 0 -0.569783 +0.8125 0.5625 0.175517 -0.131748 0.561981 0.651628 0.158499 1.44343 1.80042 0 0.473484 3.36961 0 -0.569783 +0.84375 0.5625 0.175515 -0.131731 0.562195 0.680736 0.16932 1.44393 1.855 0 0.473484 3.36961 0 -0.569783 -0.8125 0.59375 0.181035 -0.135981 0.521973 0.669727 0.102402 1.48722 1.75483 0 0.45677 3.37147 0 -0.552252 -0.84375 0.59375 0.18104 -0.135955 0.522491 0.699026 0.0948624 1.50512 1.80929 0 0.45677 3.37147 0 -0.552252 +0.8125 0.59375 0.181084 -0.135924 0.523804 0.670102 0.155448 1.56778 1.75732 0 0.45677 3.37147 0 -0.552252 +0.84375 0.59375 0.181082 -0.135907 0.523834 0.69921 0.17703 1.56481 1.81178 0 0.45677 3.37147 0 -0.552252 -0.84375 0.5625 0.175472 -0.131777 0.560486 0.680183 0.0787643 1.40876 1.85234 0 0.473484 3.36961 0 -0.569783 -0.875 0.5625 0.175477 -0.131749 0.560944 0.710504 0.0872701 1.41866 1.91039 0 0.473484 3.36961 0 -0.569783 +0.84375 0.5625 0.175515 -0.131731 0.562195 0.680229 0.16932 1.44393 1.855 0 0.473484 3.36961 0 -0.569783 +0.875 0.5625 0.175513 -0.131712 0.562073 0.711304 0.197237 1.43537 1.91305 0 0.473484 3.36961 0 -0.569783 -0.84375 0.59375 0.18104 -0.135955 0.522491 0.699026 0.0948624 1.50512 1.80929 0 0.45677 3.37147 0 -0.552252 -0.875 0.59375 0.181045 -0.135928 0.522705 0.730549 0.0886063 1.51297 1.86753 0 0.45677 3.37147 0 -0.552252 +0.84375 0.59375 0.181082 -0.135907 0.523834 0.699695 0.17703 1.56481 1.81178 0 0.45677 3.37147 0 -0.552252 +0.875 0.59375 0.181081 -0.135889 0.523804 0.73077 0.182757 1.5524 1.86985 0 0.45677 3.37147 0 -0.552252 -0.8125 0.59375 0.181035 -0.135981 0.521973 0.669727 0.102402 1.48722 1.75483 0 0.45677 3.37147 0 -0.552252 -0.84375 0.59375 0.18104 -0.135955 0.522491 0.699026 0.0948624 1.50512 1.80929 0 0.45677 3.37147 0 -0.552252 +0.8125 0.59375 0.181084 -0.135924 0.523804 0.669453 0.155448 1.56778 1.75732 0 0.45677 3.37147 0 -0.552252 +0.84375 0.59375 0.181082 -0.135907 0.523834 0.699503 0.17703 1.56481 1.81178 0 0.45677 3.37147 0 -0.552252 -0.8125 0.625 0.18678 -0.14029 0.483734 0.688185 0.129713 1.56355 1.7116 0 0.439526 3.37339 0 -0.535261 -0.84375 0.625 0.186785 -0.140264 0.484161 0.718616 0.102426 1.64458 1.76632 0 0.439526 3.37339 0 -0.535261 +0.8125 0.625 0.186827 -0.140233 0.485107 0.688585 0.14126 1.70788 1.7142 0 0.439526 3.37339 0 -0.535261 +0.84375 0.625 0.186826 -0.140216 0.485321 0.718635 0.162829 1.69279 1.76872 0 0.439526 3.37339 0 -0.535261 -0.84375 0.59375 0.18104 -0.135955 0.522491 0.699026 0.0948624 1.50512 1.80929 0 0.45677 3.37147 0 -0.552252 -0.875 0.59375 0.181045 -0.135928 0.522705 0.730549 0.0886063 1.51297 1.86753 0 0.45677 3.37147 0 -0.552252 +0.84375 0.59375 0.181082 -0.135907 0.523834 0.698993 0.17703 1.56481 1.81178 0 0.45677 3.37147 0 -0.552252 +0.875 0.59375 0.181081 -0.135889 0.523804 0.73108 0.182757 1.5524 1.86985 0 0.45677 3.37147 0 -0.552252 -0.84375 0.625 0.186785 -0.140264 0.484161 0.718616 0.102426 1.64458 1.76632 0 0.439526 3.37339 0 -0.535261 -0.875 0.625 0.186791 -0.140238 0.484467 0.750879 0.0974586 1.60668 1.82419 0 0.439526 3.37339 0 -0.535261 +0.84375 0.625 0.186826 -0.140216 0.485321 0.719069 0.162829 1.69279 1.76872 0 0.439526 3.37339 0 -0.535261 +0.875 0.625 0.186826 -0.140198 0.485321 0.751155 0.193988 1.68393 1.82673 0 0.439526 3.37339 0 -0.535261 -0.875 0.5 0.16485 -0.12377 0.636261 0.672545 0.0735691 1.21532 1.99599 0 0.505384 3.36607 0 -0.606531 -0.90625 0.5 0.164855 -0.123743 0.636902 0.702902 0.0602984 1.24974 2.05801 0 0.505384 3.36607 0 -0.606531 +0.875 0.5 0.164886 -0.123738 0.637543 0.673295 0.179215 1.23189 1.99897 0 0.505384 3.36607 0 -0.606531 +0.90625 0.5 0.164883 -0.123718 0.637665 0.704362 0.171751 1.24707 2.06089 0 0.505384 3.36607 0 -0.606531 -0.875 0.53125 0.170081 -0.127698 0.598907 0.691251 0.0901124 1.29268 1.95346 0 0.489683 3.36781 0 -0.58787 -0.90625 0.53125 0.170087 -0.12767 0.599274 0.722483 0.102354 1.31916 2.01503 0 0.489683 3.36781 0 -0.58787 +0.875 0.53125 0.170117 -0.127663 0.600067 0.692425 0.194931 1.31205 1.95607 0 0.489683 3.36781 0 -0.58787 +0.90625 0.53125 0.170114 -0.127644 0.599884 0.723492 0.193492 1.32977 2.01782 0 0.489683 3.36781 0 -0.58787 -0.90625 0.5 0.164855 -0.123743 0.636902 0.702902 0.0602984 1.24974 2.05801 0 0.505384 3.36607 0 -0.606531 -0.9375 0.5 0.164861 -0.123714 0.63739 0.735086 0.110114 1.25938 2.12356 0 0.505384 3.36607 0 -0.606531 +0.90625 0.5 0.164883 -0.123718 0.637665 0.703857 0.171751 1.24707 2.06089 0 0.505384 3.36607 0 -0.606531 +0.9375 0.5 0.164879 -0.123698 0.637482 0.736979 0.165315 1.2567 2.12657 0 0.505384 3.36607 0 -0.606531 -0.90625 0.53125 0.170087 -0.12767 0.599274 0.722483 0.102354 1.31916 2.01503 0 0.489683 3.36781 0 -0.58787 -0.9375 0.53125 0.170093 -0.12764 0.599548 0.755956 0.125762 1.33365 2.08089 0 0.489683 3.36781 0 -0.58787 +0.90625 0.53125 0.170114 -0.127644 0.599884 0.724019 0.193492 1.32977 2.01782 0 0.489683 3.36781 0 -0.58787 +0.9375 0.53125 0.170111 -0.127623 0.599823 0.757141 0.177726 1.32827 2.08357 0 0.489683 3.36781 0 -0.58787 -0.875 0.53125 0.170081 -0.127698 0.598907 0.691251 0.0901124 1.29268 1.95346 0 0.489683 3.36781 0 -0.58787 -0.90625 0.53125 0.170087 -0.12767 0.599274 0.722483 0.102354 1.31916 2.01503 0 0.489683 3.36781 0 -0.58787 +0.875 0.53125 0.170117 -0.127663 0.600067 0.691718 0.194931 1.31205 1.95607 0 0.489683 3.36781 0 -0.58787 +0.90625 0.53125 0.170114 -0.127644 0.599884 0.723837 0.193492 1.32977 2.01782 0 0.489683 3.36781 0 -0.58787 -0.875 0.5625 0.175477 -0.131749 0.560944 0.710504 0.0872701 1.41866 1.91039 0 0.473484 3.36961 0 -0.569783 -0.90625 0.5625 0.175484 -0.131721 0.561279 0.742851 0.10434 1.40699 1.97216 0 0.473484 3.36961 0 -0.569783 +0.875 0.5625 0.175513 -0.131712 0.562073 0.711507 0.197237 1.43537 1.91305 0 0.473484 3.36961 0 -0.569783 +0.90625 0.5625 0.175511 -0.131693 0.561951 0.743626 0.201129 1.42157 1.97475 0 0.473484 3.36961 0 -0.569783 -0.90625 0.53125 0.170087 -0.12767 0.599274 0.722483 0.102354 1.31916 2.01503 0 0.489683 3.36781 0 -0.58787 -0.9375 0.53125 0.170093 -0.12764 0.599548 0.755956 0.125762 1.33365 2.08089 0 0.489683 3.36781 0 -0.58787 +0.90625 0.53125 0.170114 -0.127644 0.599884 0.723311 0.193492 1.32977 2.01782 0 0.489683 3.36781 0 -0.58787 +0.9375 0.53125 0.170111 -0.127623 0.599823 0.757467 0.177726 1.32827 2.08357 0 0.489683 3.36781 0 -0.58787 -0.90625 0.5625 0.175484 -0.131721 0.561279 0.742851 0.10434 1.40699 1.97216 0 0.473484 3.36961 0 -0.569783 -0.9375 0.5625 0.175491 -0.131691 0.561584 0.777322 0.128737 1.4019 2.03793 0 0.473484 3.36961 0 -0.569783 +0.90625 0.5625 0.175511 -0.131693 0.561951 0.744148 0.201129 1.42157 1.97475 0 0.473484 3.36961 0 -0.569783 +0.9375 0.5625 0.175509 -0.131673 0.561829 0.778305 0.196283 1.42844 2.04059 0 0.473484 3.36961 0 -0.569783 -0.9375 0.5 0.164861 -0.123714 0.63739 0.735086 0.110114 1.25938 2.12356 0 0.505384 3.36607 0 -0.606531 -0.96875 0.5 0.164867 -0.123684 0.63739 0.769705 0.149085 1.26243 2.19355 0 0.505384 3.36607 0 -0.606531 +0.9375 0.5 0.164879 -0.123698 0.637482 0.736431 0.165315 1.2567 2.12657 0 0.505384 3.36607 0 -0.606531 +0.96875 0.5 0.164875 -0.123676 0.637634 0.771565 0.147378 1.26152 2.19655 0 0.505384 3.36607 0 -0.606531 -0.9375 0.53125 0.170093 -0.12764 0.599548 0.755956 0.125762 1.33365 2.08089 0 0.489683 3.36781 0 -0.58787 -0.96875 0.53125 0.1701 -0.12761 0.599731 0.791579 0.173337 1.32844 2.15088 0 0.489683 3.36781 0 -0.58787 +0.9375 0.53125 0.170111 -0.127623 0.599823 0.757677 0.177726 1.32827 2.08357 0 0.489683 3.36781 0 -0.58787 +0.96875 0.53125 0.170108 -0.127602 0.599854 0.792812 0.178575 1.35163 2.15371 0 0.489683 3.36781 0 -0.58787 -0.96875 0.5 0.164867 -0.123684 0.63739 0.769705 0.149085 1.26243 2.19355 0 0.505384 3.36607 0 -0.606531 -1 0.5 0.164872 -0.123654 0.637451 0.806551 0.150942 1.27183 2.26811 0 0.505384 3.36607 0 -0.606531 +0.96875 0.5 0.164875 -0.123676 0.637634 0.770964 0.147378 1.26152 2.19655 0 0.505384 3.36607 0 -0.606531 +1 0.5 0.164872 -0.123654 0.637695 0.808424 0.150395 1.26808 2.27235 0 0.505384 3.36607 0 -0.606531 -0.96875 0.53125 0.1701 -0.12761 0.599731 0.791579 0.173337 1.32844 2.15088 0 0.489683 3.36781 0 -0.58787 -1 0.53125 0.170106 -0.127579 0.599487 0.829695 0.207002 1.33487 2.22533 0 0.489683 3.36781 0 -0.58787 +0.96875 0.53125 0.170108 -0.127602 0.599854 0.793435 0.178575 1.35163 2.15371 0 0.489683 3.36781 0 -0.58787 +1 0.53125 0.170106 -0.127579 0.599762 0.830895 0.186282 1.338 2.22929 0 0.489683 3.36781 0 -0.58787 -0.9375 0.53125 0.170093 -0.12764 0.599548 0.755956 0.125762 1.33365 2.08089 0 0.489683 3.36781 0 -0.58787 -0.96875 0.53125 0.1701 -0.12761 0.599731 0.791579 0.173337 1.32844 2.15088 0 0.489683 3.36781 0 -0.58787 +0.9375 0.53125 0.170111 -0.127623 0.599823 0.756882 0.177726 1.32827 2.08357 0 0.489683 3.36781 0 -0.58787 +0.96875 0.53125 0.170108 -0.127602 0.599854 0.793231 0.178575 1.35163 2.15371 0 0.489683 3.36781 0 -0.58787 -0.9375 0.5625 0.175491 -0.131691 0.561584 0.777322 0.128737 1.4019 2.03793 0 0.473484 3.36961 0 -0.569783 -0.96875 0.5625 0.175499 -0.131661 0.561707 0.81417 0.160708 1.42293 2.10804 0 0.473484 3.36961 0 -0.569783 +0.9375 0.5625 0.175509 -0.131673 0.561829 0.77889 0.196283 1.42844 2.04059 0 0.473484 3.36961 0 -0.569783 +0.96875 0.5625 0.175507 -0.131651 0.561707 0.815238 0.16284 1.44248 2.11064 0 0.473484 3.36961 0 -0.569783 -0.96875 0.53125 0.1701 -0.12761 0.599731 0.791579 0.173337 1.32844 2.15088 0 0.489683 3.36781 0 -0.58787 -1 0.53125 0.170106 -0.127579 0.599487 0.829695 0.207002 1.33487 2.22533 0 0.489683 3.36781 0 -0.58787 +0.96875 0.53125 0.170108 -0.127602 0.599854 0.79265 0.178575 1.35163 2.15371 0 0.489683 3.36781 0 -0.58787 +1 0.53125 0.170106 -0.127579 0.599762 0.831252 0.186282 1.338 2.22929 0 0.489683 3.36781 0 -0.58787 -0.96875 0.5625 0.175499 -0.131661 0.561707 0.81417 0.160708 1.42293 2.10804 0 0.473484 3.36961 0 -0.569783 -1 0.5625 0.175505 -0.131629 0.561676 0.853429 0.17521 1.40794 2.18257 0 0.473484 3.36961 0 -0.569783 +0.96875 0.5625 0.175507 -0.131651 0.561707 0.815813 0.16284 1.44248 2.11064 0 0.473484 3.36961 0 -0.569783 +1 0.5625 0.175505 -0.131629 0.561951 0.854416 0.13417 1.43826 2.18654 0 0.473484 3.36961 0 -0.569783 -0.875 0.5625 0.175477 -0.131749 0.560944 0.710504 0.0872701 1.41866 1.91039 0 0.473484 3.36961 0 -0.569783 -0.90625 0.5625 0.175484 -0.131721 0.561279 0.742851 0.10434 1.40699 1.97216 0 0.473484 3.36961 0 -0.569783 +0.875 0.5625 0.175513 -0.131712 0.562073 0.710839 0.197237 1.43537 1.91305 0 0.473484 3.36961 0 -0.569783 +0.90625 0.5625 0.175511 -0.131693 0.561951 0.743919 0.201129 1.42157 1.97475 0 0.473484 3.36961 0 -0.569783 -0.875 0.59375 0.181045 -0.135928 0.522705 0.730549 0.0886063 1.51297 1.86753 0 0.45677 3.37147 0 -0.552252 -0.90625 0.59375 0.181053 -0.135899 0.523285 0.763774 0.0874157 1.51133 1.92927 0 0.45677 3.37147 0 -0.552252 +0.875 0.59375 0.181081 -0.135889 0.523804 0.731258 0.182757 1.5524 1.86985 0 0.45677 3.37147 0 -0.552252 +0.90625 0.59375 0.18108 -0.13587 0.523834 0.764338 0.195407 1.54992 1.93174 0 0.45677 3.37147 0 -0.552252 -0.90625 0.5625 0.175484 -0.131721 0.561279 0.742851 0.10434 1.40699 1.97216 0 0.473484 3.36961 0 -0.569783 -0.9375 0.5625 0.175491 -0.131691 0.561584 0.777322 0.128737 1.4019 2.03793 0 0.473484 3.36961 0 -0.569783 +0.90625 0.5625 0.175511 -0.131693 0.561951 0.743368 0.201129 1.42157 1.97475 0 0.473484 3.36961 0 -0.569783 +0.9375 0.5625 0.175509 -0.131673 0.561829 0.778653 0.196283 1.42844 2.04059 0 0.473484 3.36961 0 -0.569783 -0.90625 0.59375 0.181053 -0.135899 0.523285 0.763774 0.0874157 1.51133 1.92927 0 0.45677 3.37147 0 -0.552252 -0.9375 0.59375 0.181061 -0.13587 0.523621 0.799359 0.144157 1.49398 1.99511 0 0.45677 3.37147 0 -0.552252 +0.90625 0.59375 0.18108 -0.13587 0.523834 0.764862 0.195407 1.54992 1.93174 0 0.45677 3.37147 0 -0.552252 +0.9375 0.59375 0.181079 -0.13585 0.523682 0.800147 0.20759 1.55104 1.99754 0 0.45677 3.37147 0 -0.552252 -0.875 0.59375 0.181045 -0.135928 0.522705 0.730549 0.0886063 1.51297 1.86753 0 0.45677 3.37147 0 -0.552252 -0.90625 0.59375 0.181053 -0.135899 0.523285 0.763774 0.0874157 1.51133 1.92927 0 0.45677 3.37147 0 -0.552252 +0.875 0.59375 0.181081 -0.135889 0.523804 0.730525 0.182757 1.5524 1.86985 0 0.45677 3.37147 0 -0.552252 +0.90625 0.59375 0.18108 -0.13587 0.523834 0.764658 0.195407 1.54992 1.93174 0 0.45677 3.37147 0 -0.552252 -0.875 0.625 0.186791 -0.140238 0.484467 0.750879 0.0974586 1.60668 1.82419 0 0.439526 3.37339 0 -0.535261 -0.90625 0.625 0.186798 -0.14021 0.484894 0.78545 0.0949341 1.65514 1.8863 0 0.439526 3.37339 0 -0.535261 +0.875 0.625 0.186826 -0.140198 0.485321 0.751663 0.193988 1.68393 1.82673 0 0.439526 3.37339 0 -0.535261 +0.90625 0.625 0.186825 -0.14018 0.485229 0.785796 0.208721 1.69479 1.88855 0 0.439526 3.37339 0 -0.535261 -0.90625 0.59375 0.181053 -0.135899 0.523285 0.763774 0.0874157 1.51133 1.92927 0 0.45677 3.37147 0 -0.552252 -0.9375 0.59375 0.181061 -0.13587 0.523621 0.799359 0.144157 1.49398 1.99511 0 0.45677 3.37147 0 -0.552252 +0.90625 0.59375 0.18108 -0.13587 0.523834 0.764094 0.195407 1.54992 1.93174 0 0.45677 3.37147 0 -0.552252 +0.9375 0.59375 0.181079 -0.13585 0.523682 0.800482 0.20759 1.55104 1.99754 0 0.45677 3.37147 0 -0.552252 -0.90625 0.625 0.186798 -0.14021 0.484894 0.78545 0.0949341 1.65514 1.8863 0 0.439526 3.37339 0 -0.535261 -0.9375 0.625 0.186807 -0.140181 0.485321 0.822087 0.144684 1.61308 1.95209 0 0.439526 3.37339 0 -0.535261 +0.90625 0.625 0.186825 -0.14018 0.485229 0.786337 0.208721 1.69479 1.88855 0 0.439526 3.37339 0 -0.535261 +0.9375 0.625 0.186825 -0.14016 0.485107 0.822726 0.205692 1.69507 1.9544 0 0.439526 3.37339 0 -0.535261 -0.9375 0.5625 0.175491 -0.131691 0.561584 0.777322 0.128737 1.4019 2.03793 0 0.473484 3.36961 0 -0.569783 -0.96875 0.5625 0.175499 -0.131661 0.561707 0.81417 0.160708 1.42293 2.10804 0 0.473484 3.36961 0 -0.569783 +0.9375 0.5625 0.175509 -0.131673 0.561829 0.778077 0.196283 1.42844 2.04059 0 0.473484 3.36961 0 -0.569783 +0.96875 0.5625 0.175507 -0.131651 0.561707 0.815618 0.16284 1.44248 2.11064 0 0.473484 3.36961 0 -0.569783 -0.9375 0.59375 0.181061 -0.13587 0.523621 0.799359 0.144157 1.49398 1.99511 0 0.45677 3.37147 0 -0.552252 -0.96875 0.59375 0.181069 -0.135839 0.52356 0.837426 0.183036 1.51513 2.06513 0 0.45677 3.37147 0 -0.552252 +0.9375 0.59375 0.181079 -0.13585 0.523682 0.800701 0.20759 1.55104 1.99754 0 0.45677 3.37147 0 -0.552252 +0.96875 0.59375 0.181077 -0.135829 0.52356 0.838242 0.196025 1.54357 2.06758 0 0.45677 3.37147 0 -0.552252 -0.96875 0.5625 0.175499 -0.131661 0.561707 0.81417 0.160708 1.42293 2.10804 0 0.473484 3.36961 0 -0.569783 -1 0.5625 0.175505 -0.131629 0.561676 0.853429 0.17521 1.40794 2.18257 0 0.473484 3.36961 0 -0.569783 +0.96875 0.5625 0.175507 -0.131651 0.561707 0.814997 0.16284 1.44248 2.11064 0 0.473484 3.36961 0 -0.569783 +1 0.5625 0.175505 -0.131629 0.561951 0.854807 0.13417 1.43826 2.18654 0 0.473484 3.36961 0 -0.569783 -0.96875 0.59375 0.181069 -0.135839 0.52356 0.837426 0.183036 1.51513 2.06513 0 0.45677 3.37147 0 -0.552252 -1 0.59375 0.181077 -0.135807 0.523529 0.878 0.186539 1.51756 2.13979 0 0.45677 3.37147 0 -0.552252 +0.96875 0.59375 0.181077 -0.135829 0.52356 0.838875 0.196025 1.54357 2.06758 0 0.45677 3.37147 0 -0.552252 +1 0.59375 0.181077 -0.135807 0.52356 0.878685 0.186212 1.56881 2.14347 0 0.45677 3.37147 0 -0.552252 -0.9375 0.59375 0.181061 -0.13587 0.523621 0.799359 0.144157 1.49398 1.99511 0 0.45677 3.37147 0 -0.552252 -0.96875 0.59375 0.181069 -0.135839 0.52356 0.837426 0.183036 1.51513 2.06513 0 0.45677 3.37147 0 -0.552252 +0.9375 0.59375 0.181079 -0.13585 0.523682 0.799889 0.20759 1.55104 1.99754 0 0.45677 3.37147 0 -0.552252 +0.96875 0.59375 0.181077 -0.135829 0.52356 0.838617 0.196025 1.54357 2.06758 0 0.45677 3.37147 0 -0.552252 -0.9375 0.625 0.186807 -0.140181 0.485321 0.822087 0.144684 1.61308 1.95209 0 0.439526 3.37339 0 -0.535261 -0.96875 0.625 0.186816 -0.140151 0.485229 0.861383 0.190848 1.61667 2.02211 0 0.439526 3.37339 0 -0.535261 +0.9375 0.625 0.186825 -0.14016 0.485107 0.823302 0.205692 1.69507 1.9544 0 0.439526 3.37339 0 -0.535261 +0.96875 0.625 0.186824 -0.14014 0.485077 0.862031 0.203327 1.68022 2.02449 0 0.439526 3.37339 0 -0.535261 -0.96875 0.59375 0.181069 -0.135839 0.52356 0.837426 0.183036 1.51513 2.06513 0 0.45677 3.37147 0 -0.552252 -1 0.59375 0.181077 -0.135807 0.523529 0.878 0.186539 1.51756 2.13979 0 0.45677 3.37147 0 -0.552252 +0.96875 0.59375 0.181077 -0.135829 0.52356 0.837967 0.196025 1.54357 2.06758 0 0.45677 3.37147 0 -0.552252 +1 0.59375 0.181077 -0.135807 0.52356 0.879153 0.186212 1.56881 2.14347 0 0.45677 3.37147 0 -0.552252 -0.96875 0.625 0.186816 -0.140151 0.485229 0.861383 0.190848 1.61667 2.02211 0 0.439526 3.37339 0 -0.535261 -1 0.625 0.186825 -0.140118 0.485199 0.903325 0.193169 1.64611 2.09692 0 0.439526 3.37339 0 -0.535261 +0.96875 0.625 0.186824 -0.14014 0.485077 0.86265 0.203327 1.68022 2.02449 0 0.439526 3.37339 0 -0.535261 +1 0.625 0.186825 -0.140118 0.484985 0.903837 0.207309 1.67847 2.10032 0 0.439526 3.37339 0 -0.535261 -0.75 0.625 0.186774 -0.140338 0.483734 0.632526 0.224669 1.60757 1.61229 0 0.439526 3.37339 0 -0.535261 -0.78125 0.625 0.186777 -0.140315 0.483643 0.659464 0.183575 1.61426 1.66026 0 0.439526 3.37339 0 -0.535261 +0.75 0.625 0.186832 -0.140265 0.484619 0.632679 0.148453 1.70313 1.61484 0 0.439526 3.37339 0 -0.535261 +0.78125 0.625 0.186829 -0.140249 0.484924 0.659896 0.132825 1.70364 1.66297 0 0.439526 3.37339 0 -0.535261 -0.75 0.65625 0.1927 -0.144779 0.444885 0.64986 0.224687 1.77721 1.5687 0 0.421735 3.37536 0 -0.518793 -0.78125 0.65625 0.192702 -0.144757 0.445007 0.678055 0.105394 1.76744 1.61758 0 0.421735 3.37536 0 -0.518793 +0.75 0.65625 0.192757 -0.144709 0.445984 0.650509 0.171833 1.8127 1.5715 0 0.421735 3.37536 0 -0.518793 +0.78125 0.65625 0.192755 -0.144694 0.446106 0.677726 0.15943 1.8299 1.61961 0 0.421735 3.37536 0 -0.518793 -0.78125 0.625 0.186777 -0.140315 0.483643 0.659464 0.183575 1.61426 1.66026 0 0.439526 3.37339 0 -0.535261 -0.8125 0.625 0.18678 -0.14029 0.483734 0.688185 0.129713 1.56355 1.7116 0 0.439526 3.37339 0 -0.535261 +0.78125 0.625 0.186829 -0.140249 0.484924 0.659453 0.132825 1.70364 1.66297 0 0.439526 3.37339 0 -0.535261 +0.8125 0.625 0.186827 -0.140233 0.485107 0.688518 0.14126 1.70788 1.7142 0 0.439526 3.37339 0 -0.535261 -0.78125 0.65625 0.192702 -0.144757 0.445007 0.678055 0.105394 1.76744 1.61758 0 0.421735 3.37536 0 -0.518793 -0.8125 0.65625 0.192707 -0.144733 0.445862 0.706962 0.137024 1.77329 1.66842 0 0.421735 3.37536 0 -0.518793 +0.78125 0.65625 0.192755 -0.144694 0.446106 0.678216 0.15943 1.8299 1.61961 0 0.421735 3.37536 0 -0.518793 +0.8125 0.65625 0.192753 -0.144677 0.446259 0.707281 0.154046 1.84333 1.67088 0 0.421735 3.37536 0 -0.518793 -0.75 0.65625 0.1927 -0.144779 0.444885 0.64986 0.224687 1.77721 1.5687 0 0.421735 3.37536 0 -0.518793 -0.78125 0.65625 0.192702 -0.144757 0.445007 0.678055 0.105394 1.76744 1.61758 0 0.421735 3.37536 0 -0.518793 +0.75 0.65625 0.192757 -0.144709 0.445984 0.649851 0.171833 1.8127 1.5715 0 0.421735 3.37536 0 -0.518793 +0.78125 0.65625 0.192755 -0.144694 0.446106 0.678029 0.15943 1.8299 1.61961 0 0.421735 3.37536 0 -0.518793 -0.75 0.6875 0.198816 -0.149361 0.406128 0.668192 0.228889 1.90572 1.52609 0 0.403379 3.3774 0 -0.502832 -0.78125 0.6875 0.198819 -0.149339 0.406219 0.696719 0.185452 1.93672 1.57399 0 0.403379 3.3774 0 -0.502832 +0.75 0.6875 0.198871 -0.149293 0.406952 0.668296 0.181381 1.9721 1.52803 0 0.403379 3.3774 0 -0.502832 +0.78125 0.6875 0.198869 -0.149278 0.407074 0.696474 0.171596 1.98291 1.57621 0 0.403379 3.3774 0 -0.502832 -0.78125 0.65625 0.192702 -0.144757 0.445007 0.678055 0.105394 1.76744 1.61758 0 0.421735 3.37536 0 -0.518793 -0.8125 0.65625 0.192707 -0.144733 0.445862 0.706962 0.137024 1.77329 1.66842 0 0.421735 3.37536 0 -0.518793 +0.78125 0.65625 0.192755 -0.144694 0.446106 0.677557 0.15943 1.8299 1.61961 0 0.421735 3.37536 0 -0.518793 +0.8125 0.65625 0.192753 -0.144677 0.446259 0.707569 0.154046 1.84333 1.67088 0 0.421735 3.37536 0 -0.518793 -0.78125 0.6875 0.198819 -0.149339 0.406219 0.696719 0.185452 1.93672 1.57399 0 0.403379 3.3774 0 -0.502832 -0.8125 0.6875 0.198822 -0.149317 0.406219 0.727365 0.137637 1.99366 1.62536 0 0.403379 3.3774 0 -0.502832 +0.78125 0.6875 0.198869 -0.149278 0.407074 0.696948 0.171596 1.98291 1.57621 0 0.403379 3.3774 0 -0.502832 +0.8125 0.6875 0.198868 -0.149262 0.407135 0.72696 0.150507 1.99595 1.62743 0 0.403379 3.3774 0 -0.502832 -0.8125 0.625 0.18678 -0.14029 0.483734 0.688185 0.129713 1.56355 1.7116 0 0.439526 3.37339 0 -0.535261 -0.84375 0.625 0.186785 -0.140264 0.484161 0.718616 0.102426 1.64458 1.76632 0 0.439526 3.37339 0 -0.535261 +0.8125 0.625 0.186827 -0.140233 0.485107 0.688025 0.14126 1.70788 1.7142 0 0.439526 3.37339 0 -0.535261 +0.84375 0.625 0.186826 -0.140216 0.485321 0.718949 0.162829 1.69279 1.76872 0 0.439526 3.37339 0 -0.535261 -0.8125 0.65625 0.192707 -0.144733 0.445862 0.706962 0.137024 1.77329 1.66842 0 0.421735 3.37536 0 -0.518793 -0.84375 0.65625 0.192712 -0.144709 0.445404 0.738887 0.149149 1.77023 1.72317 0 0.421735 3.37536 0 -0.518793 +0.8125 0.65625 0.192753 -0.144677 0.446259 0.707741 0.154046 1.84333 1.67088 0 0.421735 3.37536 0 -0.518793 +0.84375 0.65625 0.192753 -0.144661 0.446442 0.738665 0.166181 1.82856 1.72532 0 0.421735 3.37536 0 -0.518793 -0.84375 0.625 0.186785 -0.140264 0.484161 0.718616 0.102426 1.64458 1.76632 0 0.439526 3.37339 0 -0.535261 -0.875 0.625 0.186791 -0.140238 0.484467 0.750879 0.0974586 1.60668 1.82419 0 0.439526 3.37339 0 -0.535261 +0.84375 0.625 0.186826 -0.140216 0.485321 0.718428 0.162829 1.69279 1.76872 0 0.439526 3.37339 0 -0.535261 +0.875 0.625 0.186826 -0.140198 0.485321 0.751445 0.193988 1.68393 1.82673 0 0.439526 3.37339 0 -0.535261 -0.84375 0.65625 0.192712 -0.144709 0.445404 0.738887 0.149149 1.77023 1.72317 0 0.421735 3.37536 0 -0.518793 -0.875 0.65625 0.192718 -0.144683 0.446106 0.772334 0.112123 1.77136 1.78171 0 0.421735 3.37536 0 -0.518793 +0.84375 0.65625 0.192753 -0.144661 0.446442 0.739152 0.166181 1.82856 1.72532 0 0.421735 3.37536 0 -0.518793 +0.875 0.65625 0.192753 -0.144643 0.446503 0.77217 0.197552 1.83305 1.78348 0 0.421735 3.37536 0 -0.518793 -0.8125 0.65625 0.192707 -0.144733 0.445862 0.706962 0.137024 1.77329 1.66842 0 0.421735 3.37536 0 -0.518793 -0.84375 0.65625 0.192712 -0.144709 0.445404 0.738887 0.149149 1.77023 1.72317 0 0.421735 3.37536 0 -0.518793 +0.8125 0.65625 0.192753 -0.144677 0.446259 0.707074 0.154046 1.84333 1.67088 0 0.421735 3.37536 0 -0.518793 +0.84375 0.65625 0.192753 -0.144661 0.446442 0.738926 0.166181 1.82856 1.72532 0 0.421735 3.37536 0 -0.518793 -0.8125 0.6875 0.198822 -0.149317 0.406219 0.727365 0.137637 1.99366 1.62536 0 0.403379 3.3774 0 -0.502832 -0.84375 0.6875 0.198827 -0.149294 0.406708 0.759781 0.106743 1.90493 1.68018 0 0.403379 3.3774 0 -0.502832 +0.8125 0.6875 0.198868 -0.149262 0.407135 0.727436 0.150507 1.99595 1.62743 0 0.403379 3.3774 0 -0.502832 +0.84375 0.6875 0.198868 -0.149246 0.407501 0.759289 0.164869 2.00295 1.6821 0 0.403379 3.3774 0 -0.502832 -0.84375 0.65625 0.192712 -0.144709 0.445404 0.738887 0.149149 1.77023 1.72317 0 0.421735 3.37536 0 -0.518793 -0.875 0.65625 0.192718 -0.144683 0.446106 0.772334 0.112123 1.77136 1.78171 0 0.421735 3.37536 0 -0.518793 +0.84375 0.65625 0.192753 -0.144661 0.446442 0.738403 0.166181 1.82856 1.72532 0 0.421735 3.37536 0 -0.518793 +0.875 0.65625 0.192753 -0.144643 0.446503 0.772521 0.197552 1.83305 1.78348 0 0.421735 3.37536 0 -0.518793 -0.84375 0.6875 0.198827 -0.149294 0.406708 0.759781 0.106743 1.90493 1.68018 0 0.403379 3.3774 0 -0.502832 -0.875 0.6875 0.198834 -0.14927 0.406952 0.794211 0.0999809 1.92786 1.73813 0 0.403379 3.3774 0 -0.502832 +0.84375 0.6875 0.198868 -0.149246 0.407501 0.759781 0.164869 2.00295 1.6821 0 0.403379 3.3774 0 -0.502832 +0.875 0.6875 0.198869 -0.149229 0.40744 0.793899 0.206853 2.00536 1.74025 0 0.403379 3.3774 0 -0.502832 -0.75 0.6875 0.198816 -0.149361 0.406128 0.668192 0.228889 1.90572 1.52609 0 0.403379 3.3774 0 -0.502832 -0.78125 0.6875 0.198819 -0.149339 0.406219 0.696719 0.185452 1.93672 1.57399 0 0.403379 3.3774 0 -0.502832 +0.75 0.6875 0.198871 -0.149293 0.406952 0.667633 0.181381 1.9721 1.52803 0 0.403379 3.3774 0 -0.502832 +0.78125 0.6875 0.198869 -0.149278 0.407074 0.696736 0.171596 1.98291 1.57621 0 0.403379 3.3774 0 -0.502832 -0.75 0.71875 0.205126 -0.154085 0.367157 0.686431 0.257776 2.10874 1.48229 0 0.38444 3.37951 0 -0.487361 -0.78125 0.71875 0.205129 -0.154066 0.366913 0.716334 0.202413 2.11235 1.53062 0 0.38444 3.37951 0 -0.487361 +0.75 0.71875 0.20518 -0.154021 0.367676 0.686652 0.18667 2.13529 1.4844 0 0.38444 3.37951 0 -0.487361 +0.78125 0.71875 0.205179 -0.154007 0.367767 0.715755 0.186853 2.16615 1.5327 0 0.38444 3.37951 0 -0.487361 -0.78125 0.6875 0.198819 -0.149339 0.406219 0.696719 0.185452 1.93672 1.57399 0 0.403379 3.3774 0 -0.502832 -0.8125 0.6875 0.198822 -0.149317 0.406219 0.727365 0.137637 1.99366 1.62536 0 0.403379 3.3774 0 -0.502832 +0.78125 0.6875 0.198869 -0.149278 0.407074 0.696252 0.171596 1.98291 1.57621 0 0.403379 3.3774 0 -0.502832 +0.8125 0.6875 0.198868 -0.149262 0.407135 0.727271 0.150507 1.99595 1.62743 0 0.403379 3.3774 0 -0.502832 -0.78125 0.71875 0.205129 -0.154066 0.366913 0.716334 0.202413 2.11235 1.53062 0 0.38444 3.37951 0 -0.487361 -0.8125 0.71875 0.205132 -0.154045 0.367126 0.747917 0.119055 2.09168 1.58214 0 0.38444 3.37951 0 -0.487361 +0.78125 0.71875 0.205179 -0.154007 0.367767 0.716247 0.186853 2.16615 1.5327 0 0.38444 3.37951 0 -0.487361 +0.8125 0.71875 0.205178 -0.153992 0.367798 0.747265 0.181772 2.16615 1.58387 0 0.38444 3.37951 0 -0.487361 -0.75 0.71875 0.205126 -0.154085 0.367157 0.686431 0.257776 2.10874 1.48229 0 0.38444 3.37951 0 -0.487361 -0.78125 0.71875 0.205129 -0.154066 0.366913 0.716334 0.202413 2.11235 1.53062 0 0.38444 3.37951 0 -0.487361 +0.75 0.71875 0.20518 -0.154021 0.367676 0.685931 0.18667 2.13529 1.4844 0 0.38444 3.37951 0 -0.487361 +0.78125 0.71875 0.205179 -0.154007 0.367767 0.71606 0.186853 2.16615 1.5327 0 0.38444 3.37951 0 -0.487361 -0.75 0.75 0.211637 -0.158957 0.327545 0.705734 0.239017 2.33892 1.43876 0 0.3649 3.38168 0 -0.472367 -0.78125 0.75 0.211639 -0.15894 0.327606 0.736413 0.176012 2.30319 1.48713 0 0.3649 3.38168 0 -0.472367 +0.75 0.75 0.21169 -0.158898 0.328278 0.705547 0.207469 2.34459 1.44088 0 0.3649 3.38168 0 -0.472367 +0.78125 0.75 0.211689 -0.158884 0.328094 0.735676 0.218081 2.34352 1.48902 0 0.3649 3.38168 0 -0.472367 -0.78125 0.71875 0.205129 -0.154066 0.366913 0.716334 0.202413 2.11235 1.53062 0 0.38444 3.37951 0 -0.487361 -0.8125 0.71875 0.205132 -0.154045 0.367126 0.747917 0.119055 2.09168 1.58214 0 0.38444 3.37951 0 -0.487361 +0.78125 0.71875 0.205179 -0.154007 0.367767 0.715545 0.186853 2.16615 1.5327 0 0.38444 3.37951 0 -0.487361 +0.8125 0.71875 0.205178 -0.153992 0.367798 0.747535 0.181772 2.16615 1.58387 0 0.38444 3.37951 0 -0.487361 -0.78125 0.75 0.211639 -0.15894 0.327606 0.736413 0.176012 2.30319 1.48713 0 0.3649 3.38168 0 -0.472367 -0.8125 0.75 0.211643 -0.158922 0.327789 0.768888 0.115341 2.22849 1.53845 0 0.3649 3.38168 0 -0.472367 +0.78125 0.75 0.211689 -0.158884 0.328094 0.736165 0.218081 2.34352 1.48902 0 0.3649 3.38168 0 -0.472367 +0.8125 0.75 0.211688 -0.158871 0.328186 0.768155 0.199855 2.34894 1.54032 0 0.3649 3.38168 0 -0.472367 -0.8125 0.6875 0.198822 -0.149317 0.406219 0.727365 0.137637 1.99366 1.62536 0 0.403379 3.3774 0 -0.502832 -0.84375 0.6875 0.198827 -0.149294 0.406708 0.759781 0.106743 1.90493 1.68018 0 0.403379 3.3774 0 -0.502832 +0.8125 0.6875 0.198868 -0.149262 0.407135 0.726717 0.150507 1.99595 1.62743 0 0.403379 3.3774 0 -0.502832 +0.84375 0.6875 0.198868 -0.149246 0.407501 0.759645 0.164869 2.00295 1.6821 0 0.403379 3.3774 0 -0.502832 -0.8125 0.71875 0.205132 -0.154045 0.367126 0.747917 0.119055 2.09168 1.58214 0 0.38444 3.37951 0 -0.487361 -0.84375 0.71875 0.205137 -0.154024 0.367615 0.781176 0.0862804 2.0804 1.63666 0 0.38444 3.37951 0 -0.487361 +0.8125 0.71875 0.205178 -0.153992 0.367798 0.747774 0.181772 2.16615 1.58387 0 0.38444 3.37951 0 -0.487361 +0.84375 0.71875 0.205178 -0.153976 0.36795 0.780702 0.185513 2.2015 1.6386 0 0.38444 3.37951 0 -0.487361 -0.84375 0.6875 0.198827 -0.149294 0.406708 0.759781 0.106743 1.90493 1.68018 0 0.403379 3.3774 0 -0.502832 -0.875 0.6875 0.198834 -0.14927 0.406952 0.794211 0.0999809 1.92786 1.73813 0 0.403379 3.3774 0 -0.502832 +0.84375 0.6875 0.198868 -0.149246 0.407501 0.759059 0.164869 2.00295 1.6821 0 0.403379 3.3774 0 -0.502832 +0.875 0.6875 0.198869 -0.149229 0.40744 0.794298 0.206853 2.00536 1.74025 0 0.403379 3.3774 0 -0.502832 -0.84375 0.71875 0.205137 -0.154024 0.367615 0.781176 0.0862804 2.0804 1.63666 0 0.38444 3.37951 0 -0.487361 -0.875 0.71875 0.205145 -0.154001 0.368042 0.816823 0.0931521 2.06169 1.695 0 0.38444 3.37951 0 -0.487361 +0.84375 0.71875 0.205178 -0.153976 0.36795 0.781221 0.185513 2.2015 1.6386 0 0.38444 3.37951 0 -0.487361 +0.875 0.71875 0.205179 -0.153961 0.36795 0.81646 0.196341 2.181 1.69667 0 0.38444 3.37951 0 -0.487361 -0.8125 0.71875 0.205132 -0.154045 0.367126 0.747917 0.119055 2.09168 1.58214 0 0.38444 3.37951 0 -0.487361 -0.84375 0.71875 0.205137 -0.154024 0.367615 0.781176 0.0862804 2.0804 1.63666 0 0.38444 3.37951 0 -0.487361 +0.8125 0.71875 0.205178 -0.153992 0.367798 0.746954 0.181772 2.16615 1.58387 0 0.38444 3.37951 0 -0.487361 +0.84375 0.71875 0.205178 -0.153976 0.36795 0.781037 0.185513 2.2015 1.6386 0 0.38444 3.37951 0 -0.487361 -0.8125 0.75 0.211643 -0.158922 0.327789 0.768888 0.115341 2.22849 1.53845 0 0.3649 3.38168 0 -0.472367 -0.84375 0.75 0.211648 -0.158902 0.328308 0.803384 0.085794 2.26615 1.59328 0 0.3649 3.38168 0 -0.472367 +0.8125 0.75 0.211688 -0.158871 0.328186 0.76872 0.199855 2.34894 1.54032 0 0.3649 3.38168 0 -0.472367 +0.84375 0.75 0.211688 -0.158856 0.328186 0.802803 0.188717 2.34861 1.59484 0 0.3649 3.38168 0 -0.472367 -0.84375 0.71875 0.205137 -0.154024 0.367615 0.781176 0.0862804 2.0804 1.63666 0 0.38444 3.37951 0 -0.487361 -0.875 0.71875 0.205145 -0.154001 0.368042 0.816823 0.0931521 2.06169 1.695 0 0.38444 3.37951 0 -0.487361 +0.84375 0.71875 0.205178 -0.153976 0.36795 0.780476 0.185513 2.2015 1.6386 0 0.38444 3.37951 0 -0.487361 +0.875 0.71875 0.205179 -0.153961 0.36795 0.816728 0.196341 2.181 1.69667 0 0.38444 3.37951 0 -0.487361 -0.84375 0.75 0.211648 -0.158902 0.328308 0.803384 0.085794 2.26615 1.59328 0 0.3649 3.38168 0 -0.472367 -0.875 0.75 0.211656 -0.15888 0.328705 0.840204 0.0958482 2.21962 1.65165 0 0.3649 3.38168 0 -0.472367 +0.84375 0.75 0.211688 -0.158856 0.328186 0.803326 0.188717 2.34861 1.59484 0 0.3649 3.38168 0 -0.472367 +0.875 0.75 0.21169 -0.158842 0.328369 0.839578 0.194198 2.36235 1.65305 0 0.3649 3.38168 0 -0.472367 -0.875 0.625 0.186791 -0.140238 0.484467 0.750879 0.0974586 1.60668 1.82419 0 0.439526 3.37339 0 -0.535261 -0.90625 0.625 0.186798 -0.14021 0.484894 0.78545 0.0949341 1.65514 1.8863 0 0.439526 3.37339 0 -0.535261 +0.875 0.625 0.186826 -0.140198 0.485321 0.7509 0.193988 1.68393 1.82673 0 0.439526 3.37339 0 -0.535261 +0.90625 0.625 0.186825 -0.14018 0.485229 0.786145 0.208721 1.69479 1.88855 0 0.439526 3.37339 0 -0.535261 -0.875 0.65625 0.192718 -0.144683 0.446106 0.772334 0.112123 1.77136 1.78171 0 0.421735 3.37536 0 -0.518793 -0.90625 0.65625 0.192726 -0.144656 0.446075 0.808096 0.0966214 1.76722 1.84352 0 0.421735 3.37536 0 -0.518793 +0.875 0.65625 0.192753 -0.144643 0.446503 0.772727 0.197552 1.83305 1.78348 0 0.421735 3.37536 0 -0.518793 +0.90625 0.65625 0.192753 -0.144625 0.446381 0.807972 0.216836 1.82652 1.84521 0 0.421735 3.37536 0 -0.518793 -0.90625 0.625 0.186798 -0.14021 0.484894 0.78545 0.0949341 1.65514 1.8863 0 0.439526 3.37339 0 -0.535261 -0.9375 0.625 0.186807 -0.140181 0.485321 0.822087 0.144684 1.61308 1.95209 0 0.439526 3.37339 0 -0.535261 +0.90625 0.625 0.186825 -0.14018 0.485229 0.785554 0.208721 1.69479 1.88855 0 0.439526 3.37339 0 -0.535261 +0.9375 0.625 0.186825 -0.14016 0.485107 0.823093 0.205692 1.69507 1.9544 0 0.439526 3.37339 0 -0.535261 -0.90625 0.65625 0.192726 -0.144656 0.446075 0.808096 0.0966214 1.76722 1.84352 0 0.421735 3.37536 0 -0.518793 -0.9375 0.65625 0.192735 -0.144627 0.44693 0.845627 0.118762 1.78331 1.90928 0 0.421735 3.37536 0 -0.518793 +0.90625 0.65625 0.192753 -0.144625 0.446381 0.808549 0.216836 1.82652 1.84521 0 0.421735 3.37536 0 -0.518793 +0.9375 0.65625 0.192753 -0.144607 0.446259 0.846088 0.206957 1.84173 1.91119 0 0.421735 3.37536 0 -0.518793 -0.875 0.65625 0.192718 -0.144683 0.446106 0.772334 0.112123 1.77136 1.78171 0 0.421735 3.37536 0 -0.518793 -0.90625 0.65625 0.192726 -0.144656 0.446075 0.808096 0.0966214 1.76722 1.84352 0 0.421735 3.37536 0 -0.518793 +0.875 0.65625 0.192753 -0.144643 0.446503 0.771945 0.197552 1.83305 1.78348 0 0.421735 3.37536 0 -0.518793 +0.90625 0.65625 0.192753 -0.144625 0.446381 0.808293 0.216836 1.82652 1.84521 0 0.421735 3.37536 0 -0.518793 -0.875 0.6875 0.198834 -0.14927 0.406952 0.794211 0.0999809 1.92786 1.73813 0 0.403379 3.3774 0 -0.502832 -0.90625 0.6875 0.198843 -0.149243 0.407471 0.83099 0.106635 1.89006 1.8003 0 0.403379 3.3774 0 -0.502832 +0.875 0.6875 0.198869 -0.149229 0.40744 0.794416 0.206853 2.00536 1.74025 0 0.403379 3.3774 0 -0.502832 +0.90625 0.6875 0.19887 -0.149212 0.40741 0.830765 0.232018 1.98786 1.80216 0 0.403379 3.3774 0 -0.502832 -0.90625 0.65625 0.192726 -0.144656 0.446075 0.808096 0.0966214 1.76722 1.84352 0 0.421735 3.37536 0 -0.518793 -0.9375 0.65625 0.192735 -0.144627 0.44693 0.845627 0.118762 1.78331 1.90928 0 0.421735 3.37536 0 -0.518793 +0.90625 0.65625 0.192753 -0.144625 0.446381 0.80766 0.216836 1.82652 1.84521 0 0.421735 3.37536 0 -0.518793 +0.9375 0.65625 0.192753 -0.144607 0.446259 0.846471 0.206957 1.84173 1.91119 0 0.421735 3.37536 0 -0.518793 -0.90625 0.6875 0.198843 -0.149243 0.407471 0.83099 0.106635 1.89006 1.8003 0 0.403379 3.3774 0 -0.502832 -0.9375 0.6875 0.198853 -0.149216 0.407715 0.87011 0.153284 1.9464 1.86611 0 0.403379 3.3774 0 -0.502832 +0.90625 0.6875 0.19887 -0.149212 0.40741 0.831376 0.232018 1.98786 1.80216 0 0.403379 3.3774 0 -0.502832 +0.9375 0.6875 0.198871 -0.149194 0.407104 0.870186 0.210131 1.98289 1.86791 0 0.403379 3.3774 0 -0.502832 -0.9375 0.625 0.186807 -0.140181 0.485321 0.822087 0.144684 1.61308 1.95209 0 0.439526 3.37339 0 -0.535261 -0.96875 0.625 0.186816 -0.140151 0.485229 0.861383 0.190848 1.61667 2.02211 0 0.439526 3.37339 0 -0.535261 +0.9375 0.625 0.186825 -0.14016 0.485107 0.822483 0.205692 1.69507 1.9544 0 0.439526 3.37339 0 -0.535261 +0.96875 0.625 0.186824 -0.14014 0.485077 0.862375 0.203327 1.68022 2.02449 0 0.439526 3.37339 0 -0.535261 -0.9375 0.65625 0.192735 -0.144627 0.44693 0.845627 0.118762 1.78331 1.90928 0 0.421735 3.37536 0 -0.518793 -0.96875 0.65625 0.192745 -0.144598 0.446838 0.886306 0.235774 1.76834 1.97954 0 0.421735 3.37536 0 -0.518793 +0.9375 0.65625 0.192753 -0.144607 0.446259 0.846682 0.206957 1.84173 1.91119 0 0.421735 3.37536 0 -0.518793 +0.96875 0.65625 0.192754 -0.144587 0.446259 0.886573 0.191387 1.81938 1.98126 0 0.421735 3.37536 0 -0.518793 -0.96875 0.625 0.186816 -0.140151 0.485229 0.861383 0.190848 1.61667 2.02211 0 0.439526 3.37339 0 -0.535261 -1 0.625 0.186825 -0.140118 0.485199 0.903325 0.193169 1.64611 2.09692 0 0.439526 3.37339 0 -0.535261 +0.96875 0.625 0.186824 -0.14014 0.485077 0.861738 0.203327 1.68022 2.02449 0 0.439526 3.37339 0 -0.535261 +1 0.625 0.186825 -0.140118 0.484985 0.904235 0.207309 1.67847 2.10032 0 0.439526 3.37339 0 -0.535261 -0.96875 0.65625 0.192745 -0.144598 0.446838 0.886306 0.235774 1.76834 1.97954 0 0.421735 3.37536 0 -0.518793 -1 0.65625 0.192755 -0.144566 0.446442 0.929473 0.274826 1.76635 2.05379 0 0.421735 3.37536 0 -0.518793 +0.96875 0.65625 0.192754 -0.144587 0.446259 0.887193 0.191387 1.81938 1.98126 0 0.421735 3.37536 0 -0.518793 +1 0.65625 0.192755 -0.144566 0.446289 0.92969 0.186943 1.80071 2.0571 0 0.421735 3.37536 0 -0.518793 -0.9375 0.65625 0.192735 -0.144627 0.44693 0.845627 0.118762 1.78331 1.90928 0 0.421735 3.37536 0 -0.518793 -0.96875 0.65625 0.192745 -0.144598 0.446838 0.886306 0.235774 1.76834 1.97954 0 0.421735 3.37536 0 -0.518793 +0.9375 0.65625 0.192753 -0.144607 0.446259 0.845824 0.206957 1.84173 1.91119 0 0.421735 3.37536 0 -0.518793 +0.96875 0.65625 0.192754 -0.144587 0.446259 0.886932 0.191387 1.81938 1.98126 0 0.421735 3.37536 0 -0.518793 -0.9375 0.6875 0.198853 -0.149216 0.407715 0.87011 0.153284 1.9464 1.86611 0 0.403379 3.3774 0 -0.502832 -0.96875 0.6875 0.198863 -0.149186 0.407776 0.911914 0.181209 1.92921 1.93624 0 0.403379 3.3774 0 -0.502832 +0.9375 0.6875 0.198871 -0.149194 0.407104 0.870778 0.210131 1.98289 1.86791 0 0.403379 3.3774 0 -0.502832 +0.96875 0.6875 0.198872 -0.149175 0.407288 0.911887 0.168067 1.97475 1.93801 0 0.403379 3.3774 0 -0.502832 -0.96875 0.65625 0.192745 -0.144598 0.446838 0.886306 0.235774 1.76834 1.97954 0 0.421735 3.37536 0 -0.518793 -1 0.65625 0.192755 -0.144566 0.446442 0.929473 0.274826 1.76635 2.05379 0 0.421735 3.37536 0 -0.518793 +0.96875 0.65625 0.192754 -0.144587 0.446259 0.886279 0.191387 1.81938 1.98126 0 0.421735 3.37536 0 -0.518793 +1 0.65625 0.192755 -0.144566 0.446289 0.930055 0.186943 1.80071 2.0571 0 0.421735 3.37536 0 -0.518793 -0.96875 0.6875 0.198863 -0.149186 0.407776 0.911914 0.181209 1.92921 1.93624 0 0.403379 3.3774 0 -0.502832 -1 0.6875 0.198874 -0.149155 0.407806 0.956533 0.187546 1.91009 2.01106 0 0.403379 3.3774 0 -0.502832 +0.96875 0.6875 0.198872 -0.149175 0.407288 0.912505 0.168067 1.97475 1.93801 0 0.403379 3.3774 0 -0.502832 +1 0.6875 0.198874 -0.149155 0.40741 0.956281 0.166763 1.97357 2.01393 0 0.403379 3.3774 0 -0.502832 -0.875 0.6875 0.198834 -0.14927 0.406952 0.794211 0.0999809 1.92786 1.73813 0 0.403379 3.3774 0 -0.502832 -0.90625 0.6875 0.198843 -0.149243 0.407471 0.83099 0.106635 1.89006 1.8003 0 0.403379 3.3774 0 -0.502832 +0.875 0.6875 0.198869 -0.149229 0.40744 0.793721 0.206853 2.00536 1.74025 0 0.403379 3.3774 0 -0.502832 +0.90625 0.6875 0.19887 -0.149212 0.40741 0.831191 0.232018 1.98786 1.80216 0 0.403379 3.3774 0 -0.502832 -0.875 0.71875 0.205145 -0.154001 0.368042 0.816823 0.0931521 2.06169 1.695 0 0.38444 3.37951 0 -0.487361 -0.90625 0.71875 0.205154 -0.153976 0.368439 0.854719 0.115624 2.07597 1.75696 0 0.38444 3.37951 0 -0.487361 +0.875 0.71875 0.205179 -0.153961 0.36795 0.817 0.196341 2.181 1.69667 0 0.38444 3.37951 0 -0.487361 +0.90625 0.71875 0.20518 -0.153944 0.368011 0.85447 0.206728 2.18066 1.75861 0 0.38444 3.37951 0 -0.487361 -0.90625 0.6875 0.198843 -0.149243 0.407471 0.83099 0.106635 1.89006 1.8003 0 0.403379 3.3774 0 -0.502832 -0.9375 0.6875 0.198853 -0.149216 0.407715 0.87011 0.153284 1.9464 1.86611 0 0.403379 3.3774 0 -0.502832 +0.90625 0.6875 0.19887 -0.149212 0.40741 0.830609 0.232018 1.98786 1.80216 0 0.403379 3.3774 0 -0.502832 +0.9375 0.6875 0.198871 -0.149194 0.407104 0.870596 0.210131 1.98289 1.86791 0 0.403379 3.3774 0 -0.502832 -0.90625 0.71875 0.205154 -0.153976 0.368439 0.854719 0.115624 2.07597 1.75696 0 0.38444 3.37951 0 -0.487361 -0.9375 0.71875 0.205164 -0.153949 0.368713 0.895173 0.157707 2.07949 1.82296 0 0.38444 3.37951 0 -0.487361 +0.90625 0.71875 0.20518 -0.153944 0.368011 0.85503 0.206728 2.18066 1.75861 0 0.38444 3.37951 0 -0.487361 +0.9375 0.71875 0.205182 -0.153927 0.36792 0.895017 0.206578 2.15692 1.8245 0 0.38444 3.37951 0 -0.487361 -0.875 0.71875 0.205145 -0.154001 0.368042 0.816823 0.0931521 2.06169 1.695 0 0.38444 3.37951 0 -0.487361 -0.90625 0.71875 0.205154 -0.153976 0.368439 0.854719 0.115624 2.07597 1.75696 0 0.38444 3.37951 0 -0.487361 +0.875 0.71875 0.205179 -0.153961 0.36795 0.816151 0.196341 2.181 1.69667 0 0.38444 3.37951 0 -0.487361 +0.90625 0.71875 0.20518 -0.153944 0.368011 0.854795 0.206728 2.18066 1.75861 0 0.38444 3.37951 0 -0.487361 -0.875 0.75 0.211656 -0.15888 0.328705 0.840204 0.0958482 2.21962 1.65165 0 0.3649 3.38168 0 -0.472367 -0.90625 0.75 0.211665 -0.158857 0.329102 0.879306 0.113285 2.27266 1.71362 0 0.3649 3.38168 0 -0.472367 +0.875 0.75 0.21169 -0.158842 0.328369 0.84013 0.194198 2.36235 1.65305 0 0.3649 3.38168 0 -0.472367 +0.90625 0.75 0.211692 -0.158826 0.328339 0.878774 0.219552 2.37515 1.71503 0 0.3649 3.38168 0 -0.472367 -0.90625 0.71875 0.205154 -0.153976 0.368439 0.854719 0.115624 2.07597 1.75696 0 0.38444 3.37951 0 -0.487361 -0.9375 0.71875 0.205164 -0.153949 0.368713 0.895173 0.157707 2.07949 1.82296 0 0.38444 3.37951 0 -0.487361 +0.90625 0.71875 0.20518 -0.153944 0.368011 0.854154 0.206728 2.18066 1.75861 0 0.38444 3.37951 0 -0.487361 +0.9375 0.71875 0.205182 -0.153927 0.36792 0.895342 0.206578 2.15692 1.8245 0 0.38444 3.37951 0 -0.487361 -0.90625 0.75 0.211665 -0.158857 0.329102 0.879306 0.113285 2.27266 1.71362 0 0.3649 3.38168 0 -0.472367 -0.9375 0.75 0.211676 -0.158832 0.329437 0.92109 0.171561 2.28834 1.77974 0 0.3649 3.38168 0 -0.472367 +0.90625 0.75 0.211692 -0.158826 0.328339 0.879428 0.219552 2.37515 1.71503 0 0.3649 3.38168 0 -0.472367 +0.9375 0.75 0.211694 -0.15881 0.328247 0.920616 0.203997 2.35486 1.78084 0 0.3649 3.38168 0 -0.472367 -0.9375 0.6875 0.198853 -0.149216 0.407715 0.87011 0.153284 1.9464 1.86611 0 0.403379 3.3774 0 -0.502832 -0.96875 0.6875 0.198863 -0.149186 0.407776 0.911914 0.181209 1.92921 1.93624 0 0.403379 3.3774 0 -0.502832 +0.9375 0.6875 0.198871 -0.149194 0.407104 0.869949 0.210131 1.98289 1.86791 0 0.403379 3.3774 0 -0.502832 +0.96875 0.6875 0.198872 -0.149175 0.407288 0.912318 0.168067 1.97475 1.93801 0 0.403379 3.3774 0 -0.502832 -0.9375 0.71875 0.205164 -0.153949 0.368713 0.895173 0.157707 2.07949 1.82296 0 0.38444 3.37951 0 -0.487361 -0.96875 0.71875 0.205176 -0.153921 0.368805 0.938351 0.215986 2.09074 1.89319 0 0.38444 3.37951 0 -0.487361 +0.9375 0.71875 0.205182 -0.153927 0.36792 0.895646 0.206578 2.15692 1.8245 0 0.38444 3.37951 0 -0.487361 +0.96875 0.71875 0.205184 -0.153909 0.367981 0.938015 0.195354 2.15926 1.8946 0 0.38444 3.37951 0 -0.487361 -0.96875 0.6875 0.198863 -0.149186 0.407776 0.911914 0.181209 1.92921 1.93624 0 0.403379 3.3774 0 -0.502832 -1 0.6875 0.198874 -0.149155 0.407806 0.956533 0.187546 1.91009 2.01106 0 0.403379 3.3774 0 -0.502832 +0.96875 0.6875 0.198872 -0.149175 0.407288 0.911588 0.168067 1.97475 1.93801 0 0.403379 3.3774 0 -0.502832 +1 0.6875 0.198874 -0.149155 0.40741 0.956723 0.166763 1.97357 2.01393 0 0.403379 3.3774 0 -0.502832 -0.96875 0.71875 0.205176 -0.153921 0.368805 0.938351 0.215986 2.09074 1.89319 0 0.38444 3.37951 0 -0.487361 -1 0.71875 0.205187 -0.15389 0.368591 0.984425 0.248844 2.08431 1.96783 0 0.38444 3.37951 0 -0.487361 +0.96875 0.71875 0.205184 -0.153909 0.367981 0.93874 0.195354 2.15926 1.8946 0 0.38444 3.37951 0 -0.487361 +1 0.71875 0.205187 -0.15389 0.368011 0.983875 0.196241 2.16848 1.97047 0 0.38444 3.37951 0 -0.487361 -0.9375 0.71875 0.205164 -0.153949 0.368713 0.895173 0.157707 2.07949 1.82296 0 0.38444 3.37951 0 -0.487361 -0.96875 0.71875 0.205176 -0.153921 0.368805 0.938351 0.215986 2.09074 1.89319 0 0.38444 3.37951 0 -0.487361 +0.9375 0.71875 0.205182 -0.153927 0.36792 0.894684 0.206578 2.15692 1.8245 0 0.38444 3.37951 0 -0.487361 +0.96875 0.71875 0.205184 -0.153909 0.367981 0.938405 0.195354 2.15926 1.8946 0 0.38444 3.37951 0 -0.487361 -0.9375 0.75 0.211676 -0.158832 0.329437 0.92109 0.171561 2.28834 1.77974 0 0.3649 3.38168 0 -0.472367 -0.96875 0.75 0.211688 -0.158805 0.329346 0.965658 0.214187 2.2903 1.84983 0 0.3649 3.38168 0 -0.472367 +0.9375 0.75 0.211694 -0.15881 0.328247 0.92126 0.203997 2.35486 1.78084 0 0.3649 3.38168 0 -0.472367 +0.96875 0.75 0.211697 -0.158793 0.3284 0.964981 0.194277 2.36283 1.85107 0 0.3649 3.38168 0 -0.472367 -0.96875 0.71875 0.205176 -0.153921 0.368805 0.938351 0.215986 2.09074 1.89319 0 0.38444 3.37951 0 -0.487361 -1 0.71875 0.205187 -0.15389 0.368591 0.984425 0.248844 2.08431 1.96783 0 0.38444 3.37951 0 -0.487361 +0.96875 0.71875 0.205184 -0.153909 0.367981 0.937702 0.195354 2.15926 1.8946 0 0.38444 3.37951 0 -0.487361 +1 0.71875 0.205187 -0.15389 0.368011 0.984286 0.196241 2.16848 1.97047 0 0.38444 3.37951 0 -0.487361 -0.96875 0.75 0.211688 -0.158805 0.329346 0.965658 0.214187 2.2903 1.84983 0 0.3649 3.38168 0 -0.472367 -1 0.75 0.2117 -0.158775 0.329346 1.01315 0.212533 2.24702 1.9246 0 0.3649 3.38168 0 -0.472367 +0.96875 0.75 0.211697 -0.158793 0.3284 0.965693 0.194277 2.36283 1.85107 0 0.3649 3.38168 0 -0.472367 +1 0.75 0.2117 -0.158775 0.3284 1.01228 0.20576 2.3514 1.92686 0 0.3649 3.38168 0 -0.472367 -0.5 0.75 0.211619 -0.15908 0.327881 0.518717 0.166679 2.41005 1.14463 0 0.3649 3.38168 0 -0.472367 -0.53125 0.75 0.211618 -0.159065 0.328033 0.537129 0.141694 2.39018 1.17377 0 0.3649 3.38168 0 -0.472367 +0.5 0.75 0.211718 -0.158991 0.328247 0.518759 0.266557 2.34061 1.14709 0 0.3649 3.38168 0 -0.472367 +0.53125 0.75 0.211713 -0.158981 0.328033 0.537615 0.215877 2.32635 1.17622 0 0.3649 3.38168 0 -0.472367 -0.5 0.78125 0.218343 -0.16409 0.287811 0.532707 0.192645 2.62544 1.10078 0 0.34474 3.38392 0 -0.457833 -0.53125 0.78125 0.21834 -0.164078 0.287872 0.551829 0.109352 2.60515 1.13002 0 0.34474 3.38392 0 -0.457833 +0.5 0.78125 0.218433 -0.164013 0.288452 0.532799 0.246566 2.56043 1.10317 0 0.34474 3.38392 0 -0.457833 +0.53125 0.78125 0.218429 -0.164003 0.288452 0.551655 0.212103 2.53098 1.13234 0 0.34474 3.38392 0 -0.457833 -0.53125 0.75 0.211618 -0.159065 0.328033 0.537129 0.141694 2.39018 1.17377 0 0.3649 3.38168 0 -0.472367 -0.5625 0.75 0.211618 -0.159051 0.328369 0.556699 0.126632 2.35266 1.20492 0 0.3649 3.38168 0 -0.472367 +0.53125 0.75 0.211713 -0.158981 0.328033 0.537351 0.215877 2.32635 1.17622 0 0.3649 3.38168 0 -0.472367 +0.5625 0.75 0.211708 -0.15897 0.328186 0.557266 0.146034 2.32338 1.20725 0 0.3649 3.38168 0 -0.472367 -0.53125 0.78125 0.21834 -0.164078 0.287872 0.551829 0.109352 2.60515 1.13002 0 0.34474 3.38392 0 -0.457833 -0.5625 0.78125 0.21834 -0.164065 0.288574 0.57174 0.0693634 2.60542 1.16111 0 0.34474 3.38392 0 -0.457833 +0.53125 0.78125 0.218429 -0.164003 0.288452 0.55197 0.212103 2.53098 1.13234 0 0.34474 3.38392 0 -0.457833 +0.5625 0.78125 0.218424 -0.163993 0.288513 0.571886 0.190627 2.56109 1.16344 0 0.34474 3.38392 0 -0.457833 -0.5 0.78125 0.218343 -0.16409 0.287811 0.532707 0.192645 2.62544 1.10078 0 0.34474 3.38392 0 -0.457833 -0.53125 0.78125 0.21834 -0.164078 0.287872 0.551829 0.109352 2.60515 1.13002 0 0.34474 3.38392 0 -0.457833 +0.5 0.78125 0.218433 -0.164013 0.288452 0.532353 0.246566 2.56043 1.10317 0 0.34474 3.38392 0 -0.457833 +0.53125 0.78125 0.218429 -0.164003 0.288452 0.551745 0.212103 2.53098 1.13234 0 0.34474 3.38392 0 -0.457833 -0.5 0.8125 0.225282 -0.169259 0.24762 0.547179 0.187201 2.86844 1.05698 0 0.32394 3.38623 0 -0.443747 -0.53125 0.8125 0.225278 -0.169248 0.247925 0.566682 0.134677 2.85584 1.08614 0 0.32394 3.38623 0 -0.443747 +0.5 0.8125 0.225363 -0.169191 0.248474 0.546809 0.2198 2.80806 1.05914 0 0.32394 3.38623 0 -0.443747 +0.53125 0.8125 0.225358 -0.169183 0.248535 0.566201 0.227759 2.8155 1.08836 0 0.32394 3.38623 0 -0.443747 -0.53125 0.78125 0.21834 -0.164078 0.287872 0.551829 0.109352 2.60515 1.13002 0 0.34474 3.38392 0 -0.457833 -0.5625 0.78125 0.21834 -0.164065 0.288574 0.57174 0.0693634 2.60542 1.16111 0 0.34474 3.38392 0 -0.457833 +0.53125 0.78125 0.218429 -0.164003 0.288452 0.551413 0.212103 2.53098 1.13234 0 0.34474 3.38392 0 -0.457833 +0.5625 0.78125 0.218424 -0.163993 0.288513 0.572048 0.190627 2.56109 1.16344 0 0.34474 3.38392 0 -0.457833 -0.53125 0.8125 0.225278 -0.169248 0.247925 0.566682 0.134677 2.85584 1.08614 0 0.32394 3.38623 0 -0.443747 -0.5625 0.8125 0.225277 -0.169236 0.248199 0.587519 0.107694 2.87167 1.11723 0 0.32394 3.38623 0 -0.443747 +0.53125 0.8125 0.225358 -0.169183 0.248535 0.566536 0.227759 2.8155 1.08836 0 0.32394 3.38623 0 -0.443747 +0.5625 0.8125 0.225354 -0.169174 0.248444 0.587171 0.223483 2.84437 1.11937 0 0.32394 3.38623 0 -0.443747 -0.5625 0.75 0.211618 -0.159051 0.328369 0.556699 0.126632 2.35266 1.20492 0 0.3649 3.38168 0 -0.472367 -0.59375 0.75 0.211621 -0.159037 0.328674 0.577494 0.151763 2.33505 1.23797 0 0.3649 3.38168 0 -0.472367 +0.5625 0.75 0.211708 -0.15897 0.328186 0.556909 0.146034 2.32338 1.20725 0 0.3649 3.38168 0 -0.472367 +0.59375 0.75 0.211705 -0.158959 0.328674 0.57801 0.195156 2.29249 1.24049 0 0.3649 3.38168 0 -0.472367 -0.5625 0.78125 0.21834 -0.164065 0.288574 0.57174 0.0693634 2.60542 1.16111 0 0.34474 3.38392 0 -0.457833 -0.59375 0.78125 0.218343 -0.164052 0.288971 0.59331 0.123582 2.58868 1.19443 0 0.34474 3.38392 0 -0.457833 +0.5625 0.78125 0.218424 -0.163993 0.288513 0.57226 0.190627 2.56109 1.16344 0 0.34474 3.38392 0 -0.457833 +0.59375 0.78125 0.21842 -0.163983 0.288696 0.593361 0.209809 2.59809 1.19657 0 0.34474 3.38392 0 -0.457833 -0.59375 0.75 0.211621 -0.159037 0.328674 0.577494 0.151763 2.33505 1.23797 0 0.3649 3.38168 0 -0.472367 -0.625 0.75 0.211626 -0.159022 0.328857 0.599944 0.22709 2.32807 1.2735 0 0.3649 3.38168 0 -0.472367 +0.59375 0.75 0.211705 -0.158959 0.328674 0.57766 0.195156 2.29249 1.24049 0 0.3649 3.38168 0 -0.472367 +0.625 0.75 0.211701 -0.158947 0.328339 0.600492 0.268846 2.31935 1.27575 0 0.3649 3.38168 0 -0.472367 -0.59375 0.78125 0.218343 -0.164052 0.288971 0.59331 0.123582 2.58868 1.19443 0 0.34474 3.38392 0 -0.457833 -0.625 0.78125 0.218347 -0.164039 0.289276 0.616281 0.23969 2.57955 1.22979 0 0.34474 3.38392 0 -0.457833 +0.59375 0.78125 0.21842 -0.163983 0.288696 0.593748 0.209809 2.59809 1.19657 0 0.34474 3.38392 0 -0.457833 +0.625 0.78125 0.218417 -0.163972 0.288574 0.61658 0.232332 2.58268 1.23181 0 0.34474 3.38392 0 -0.457833 -0.5625 0.78125 0.21834 -0.164065 0.288574 0.57174 0.0693634 2.60542 1.16111 0 0.34474 3.38392 0 -0.457833 -0.59375 0.78125 0.218343 -0.164052 0.288971 0.59331 0.123582 2.58868 1.19443 0 0.34474 3.38392 0 -0.457833 +0.5625 0.78125 0.218424 -0.163993 0.288513 0.571694 0.190627 2.56109 1.16344 0 0.34474 3.38392 0 -0.457833 +0.59375 0.78125 0.21842 -0.163983 0.288696 0.593561 0.209809 2.59809 1.19657 0 0.34474 3.38392 0 -0.457833 -0.5625 0.8125 0.225277 -0.169236 0.248199 0.587519 0.107694 2.87167 1.11723 0 0.32394 3.38623 0 -0.443747 -0.59375 0.8125 0.225278 -0.169225 0.248688 0.609697 0.120813 2.90357 1.15053 0 0.32394 3.38623 0 -0.443747 +0.5625 0.8125 0.225354 -0.169174 0.248444 0.587545 0.223483 2.84437 1.11937 0 0.32394 3.38623 0 -0.443747 +0.59375 0.8125 0.22535 -0.169164 0.248566 0.609411 0.230418 2.8714 1.15259 0 0.32394 3.38623 0 -0.443747 -0.59375 0.78125 0.218343 -0.164052 0.288971 0.59331 0.123582 2.58868 1.19443 0 0.34474 3.38392 0 -0.457833 -0.625 0.78125 0.218347 -0.164039 0.289276 0.616281 0.23969 2.57955 1.22979 0 0.34474 3.38392 0 -0.457833 +0.59375 0.78125 0.21842 -0.163983 0.288696 0.593221 0.209809 2.59809 1.19657 0 0.34474 3.38392 0 -0.457833 +0.625 0.78125 0.218417 -0.163972 0.288574 0.616699 0.232332 2.58268 1.23181 0 0.34474 3.38392 0 -0.457833 -0.59375 0.8125 0.225278 -0.169225 0.248688 0.609697 0.120813 2.90357 1.15053 0 0.32394 3.38623 0 -0.443747 -0.625 0.8125 0.225282 -0.169213 0.248932 0.633347 0.206034 2.89746 1.18575 0 0.32394 3.38623 0 -0.443747 +0.59375 0.8125 0.22535 -0.169164 0.248566 0.609793 0.230418 2.8714 1.15259 0 0.32394 3.38623 0 -0.443747 +0.625 0.8125 0.225347 -0.169155 0.248413 0.633271 0.236533 2.86264 1.18775 0 0.32394 3.38623 0 -0.443747 -0.5 0.8125 0.225282 -0.169259 0.24762 0.547179 0.187201 2.86844 1.05698 0 0.32394 3.38623 0 -0.443747 -0.53125 0.8125 0.225278 -0.169248 0.247925 0.566682 0.134677 2.85584 1.08614 0 0.32394 3.38623 0 -0.443747 +0.5 0.8125 0.225363 -0.169191 0.248474 0.546326 0.2198 2.80806 1.05914 0 0.32394 3.38623 0 -0.443747 +0.53125 0.8125 0.225358 -0.169183 0.248535 0.566326 0.227759 2.8155 1.08836 0 0.32394 3.38623 0 -0.443747 -0.5 0.84375 0.232441 -0.174589 0.207153 0.561941 0.221216 3.15283 1.01278 0 0.302479 3.38861 0 -0.430095 -0.53125 0.84375 0.232437 -0.174579 0.207336 0.582246 0.116209 3.18702 1.04207 0 0.302479 3.38861 0 -0.430095 +0.5 0.84375 0.232513 -0.174531 0.208344 0.561236 0.301096 3.16132 1.01504 0 0.302479 3.38861 0 -0.430095 +0.53125 0.84375 0.232508 -0.174523 0.208252 0.581236 0.273636 3.1693 1.04414 0 0.302479 3.38861 0 -0.430095 -0.53125 0.8125 0.225278 -0.169248 0.247925 0.566682 0.134677 2.85584 1.08614 0 0.32394 3.38623 0 -0.443747 -0.5625 0.8125 0.225277 -0.169236 0.248199 0.587519 0.107694 2.87167 1.11723 0 0.32394 3.38623 0 -0.443747 +0.53125 0.8125 0.225358 -0.169183 0.248535 0.565978 0.227759 2.8155 1.08836 0 0.32394 3.38623 0 -0.443747 +0.5625 0.8125 0.225354 -0.169174 0.248444 0.587327 0.223483 2.84437 1.11937 0 0.32394 3.38623 0 -0.443747 -0.53125 0.84375 0.232437 -0.174579 0.207336 0.582246 0.116209 3.18702 1.04207 0 0.302479 3.38861 0 -0.430095 -0.5625 0.84375 0.232436 -0.17457 0.207947 0.603567 0.11508 3.2037 1.07325 0 0.302479 3.38861 0 -0.430095 +0.53125 0.84375 0.232508 -0.174523 0.208252 0.581583 0.273636 3.1693 1.04414 0 0.302479 3.38861 0 -0.430095 +0.5625 0.84375 0.232504 -0.174516 0.20813 0.602932 0.255723 3.19239 1.07527 0 0.302479 3.38861 0 -0.430095 -0.5 0.84375 0.232441 -0.174589 0.207153 0.561941 0.221216 3.15283 1.01278 0 0.302479 3.38861 0 -0.430095 -0.53125 0.84375 0.232437 -0.174579 0.207336 0.582246 0.116209 3.18702 1.04207 0 0.302479 3.38861 0 -0.430095 +0.5 0.84375 0.232513 -0.174531 0.208344 0.560711 0.301096 3.16132 1.01504 0 0.302479 3.38861 0 -0.430095 +0.53125 0.84375 0.232508 -0.174523 0.208252 0.581361 0.273636 3.1693 1.04414 0 0.302479 3.38861 0 -0.430095 -0.5 0.875 0.23983 -0.180086 0.166656 0.577132 0.249422 3.55228 0.968605 0 0.280337 3.39107 0 -0.416862 -0.53125 0.875 0.239827 -0.180079 0.166656 0.598066 0.201309 3.55348 0.997693 0 0.280337 3.39107 0 -0.416862 +0.5 0.875 0.239891 -0.180037 0.167572 0.576237 0.277042 3.62107 0.970614 0 0.280337 3.39107 0 -0.416862 +0.53125 0.875 0.239887 -0.180032 0.167603 0.596887 0.281955 3.64675 0.999944 0 0.280337 3.39107 0 -0.416862 -0.53125 0.84375 0.232437 -0.174579 0.207336 0.582246 0.116209 3.18702 1.04207 0 0.302479 3.38861 0 -0.430095 -0.5625 0.84375 0.232436 -0.17457 0.207947 0.603567 0.11508 3.2037 1.07325 0 0.302479 3.38861 0 -0.430095 +0.53125 0.84375 0.232508 -0.174523 0.208252 0.581001 0.273636 3.1693 1.04414 0 0.302479 3.38861 0 -0.430095 +0.5625 0.84375 0.232504 -0.174516 0.20813 0.603103 0.255723 3.19239 1.07527 0 0.302479 3.38861 0 -0.430095 -0.53125 0.875 0.239827 -0.180079 0.166656 0.598066 0.201309 3.55348 0.997693 0 0.280337 3.39107 0 -0.416862 -0.5625 0.875 0.239825 -0.180071 0.16684 0.620408 0.14104 3.59232 1.02892 0 0.280337 3.39107 0 -0.416862 +0.53125 0.875 0.239887 -0.180032 0.167603 0.597213 0.281955 3.64675 0.999944 0 0.280337 3.39107 0 -0.416862 +0.5625 0.875 0.239883 -0.180025 0.167328 0.619315 0.265088 3.62161 1.03085 0 0.280337 3.39107 0 -0.416862 -0.5625 0.8125 0.225277 -0.169236 0.248199 0.587519 0.107694 2.87167 1.11723 0 0.32394 3.38623 0 -0.443747 -0.59375 0.8125 0.225278 -0.169225 0.248688 0.609697 0.120813 2.90357 1.15053 0 0.32394 3.38623 0 -0.443747 +0.5625 0.8125 0.225354 -0.169174 0.248444 0.586943 0.223483 2.84437 1.11937 0 0.32394 3.38623 0 -0.443747 +0.59375 0.8125 0.22535 -0.169164 0.248566 0.609591 0.230418 2.8714 1.15259 0 0.32394 3.38623 0 -0.443747 -0.5625 0.84375 0.232436 -0.17457 0.207947 0.603567 0.11508 3.2037 1.07325 0 0.302479 3.38861 0 -0.430095 -0.59375 0.84375 0.232437 -0.17456 0.208038 0.626626 0.14778 3.219 1.1064 0 0.302479 3.38861 0 -0.430095 +0.5625 0.84375 0.232504 -0.174516 0.20813 0.603292 0.255723 3.19239 1.07527 0 0.302479 3.38861 0 -0.430095 +0.59375 0.84375 0.232501 -0.174507 0.20813 0.62594 0.242011 3.19348 1.10831 0 0.302479 3.38861 0 -0.430095 -0.59375 0.8125 0.225278 -0.169225 0.248688 0.609697 0.120813 2.90357 1.15053 0 0.32394 3.38623 0 -0.443747 -0.625 0.8125 0.225282 -0.169213 0.248932 0.633347 0.206034 2.89746 1.18575 0 0.32394 3.38623 0 -0.443747 +0.59375 0.8125 0.22535 -0.169164 0.248566 0.609245 0.230418 2.8714 1.15259 0 0.32394 3.38623 0 -0.443747 +0.625 0.8125 0.225347 -0.169155 0.248413 0.633433 0.236533 2.86264 1.18775 0 0.32394 3.38623 0 -0.443747 -0.59375 0.84375 0.232437 -0.17456 0.208038 0.626626 0.14778 3.219 1.1064 0 0.302479 3.38861 0 -0.430095 -0.625 0.84375 0.232439 -0.174551 0.208435 0.651089 0.191962 3.24779 1.14187 0 0.302479 3.38861 0 -0.430095 +0.59375 0.84375 0.232501 -0.174507 0.20813 0.626315 0.242011 3.19348 1.10831 0 0.302479 3.38861 0 -0.430095 +0.625 0.84375 0.232498 -0.1745 0.208099 0.650503 0.243136 3.22099 1.14365 0 0.302479 3.38861 0 -0.430095 -0.5625 0.84375 0.232436 -0.17457 0.207947 0.603567 0.11508 3.2037 1.07325 0 0.302479 3.38861 0 -0.430095 -0.59375 0.84375 0.232437 -0.17456 0.208038 0.626626 0.14778 3.219 1.1064 0 0.302479 3.38861 0 -0.430095 +0.5625 0.84375 0.232504 -0.174516 0.20813 0.602724 0.255723 3.19239 1.07527 0 0.302479 3.38861 0 -0.430095 +0.59375 0.84375 0.232501 -0.174507 0.20813 0.626032 0.242011 3.19348 1.10831 0 0.302479 3.38861 0 -0.430095 -0.5625 0.875 0.239825 -0.180071 0.16684 0.620408 0.14104 3.59232 1.02892 0 0.280337 3.39107 0 -0.416862 -0.59375 0.875 0.239825 -0.180064 0.167267 0.644032 0.158148 3.58931 1.06217 0 0.280337 3.39107 0 -0.416862 +0.5625 0.875 0.239883 -0.180025 0.167328 0.619668 0.265088 3.62161 1.03085 0 0.280337 3.39107 0 -0.416862 +0.59375 0.875 0.23988 -0.180019 0.167511 0.642975 0.277435 3.65294 1.06415 0 0.280337 3.39107 0 -0.416862 -0.59375 0.84375 0.232437 -0.17456 0.208038 0.626626 0.14778 3.219 1.1064 0 0.302479 3.38861 0 -0.430095 -0.625 0.84375 0.232439 -0.174551 0.208435 0.651089 0.191962 3.24779 1.14187 0 0.302479 3.38861 0 -0.430095 +0.59375 0.84375 0.232501 -0.174507 0.20813 0.625688 0.242011 3.19348 1.10831 0 0.302479 3.38861 0 -0.430095 +0.625 0.84375 0.232498 -0.1745 0.208099 0.650692 0.243136 3.22099 1.14365 0 0.302479 3.38861 0 -0.430095 -0.59375 0.875 0.239825 -0.180064 0.167267 0.644032 0.158148 3.58931 1.06217 0 0.280337 3.39107 0 -0.416862 -0.625 0.875 0.239827 -0.180056 0.167267 0.669454 0.179326 3.60807 1.0975 0 0.280337 3.39107 0 -0.416862 +0.59375 0.875 0.23988 -0.180019 0.167511 0.643436 0.277435 3.65294 1.06415 0 0.280337 3.39107 0 -0.416862 +0.625 0.875 0.239877 -0.180013 0.167114 0.66844 0.273218 3.63857 1.09917 0 0.280337 3.39107 0 -0.416862 -0.625 0.75 0.211626 -0.159022 0.328857 0.599944 0.22709 2.32807 1.2735 0 0.3649 3.38168 0 -0.472367 -0.65625 0.75 0.21163 -0.159006 0.328583 0.623918 0.309975 2.34746 1.31098 0 0.3649 3.38168 0 -0.472367 +0.625 0.75 0.211701 -0.158947 0.328339 0.600214 0.268846 2.31935 1.27575 0 0.3649 3.38168 0 -0.472367 +0.65625 0.75 0.211698 -0.158935 0.328094 0.624424 0.225794 2.3249 1.31307 0 0.3649 3.38168 0 -0.472367 -0.625 0.78125 0.218347 -0.164039 0.289276 0.616281 0.23969 2.57955 1.22979 0 0.34474 3.38392 0 -0.457833 -0.65625 0.78125 0.218351 -0.164025 0.288757 0.641163 0.307012 2.55867 1.26724 0 0.34474 3.38392 0 -0.457833 +0.625 0.78125 0.218417 -0.163972 0.288574 0.616878 0.232332 2.58268 1.23181 0 0.34474 3.38392 0 -0.457833 +0.65625 0.78125 0.218414 -0.163961 0.288574 0.641088 0.234828 2.55155 1.26932 0 0.34474 3.38392 0 -0.457833 -0.65625 0.75 0.21163 -0.159006 0.328583 0.623918 0.309975 2.34746 1.31098 0 0.3649 3.38168 0 -0.472367 -0.6875 0.75 0.211634 -0.15899 0.328064 0.649609 0.315641 2.30485 1.35091 0 0.3649 3.38168 0 -0.472367 +0.65625 0.75 0.211698 -0.158935 0.328094 0.624006 0.225794 2.3249 1.31307 0 0.3649 3.38168 0 -0.472367 +0.6875 0.75 0.211694 -0.158923 0.328308 0.649689 0.220719 2.32734 1.35319 0 0.3649 3.38168 0 -0.472367 -0.65625 0.78125 0.218351 -0.164025 0.288757 0.641163 0.307012 2.55867 1.26724 0 0.34474 3.38392 0 -0.457833 -0.6875 0.78125 0.218353 -0.164012 0.288635 0.66765 0.32638 2.53625 1.30754 0 0.34474 3.38392 0 -0.457833 +0.65625 0.78125 0.218414 -0.163961 0.288574 0.641514 0.234828 2.55155 1.26932 0 0.34474 3.38392 0 -0.457833 +0.6875 0.78125 0.218411 -0.16395 0.288452 0.667197 0.22636 2.57561 1.30918 0 0.34474 3.38392 0 -0.457833 -0.625 0.78125 0.218347 -0.164039 0.289276 0.616281 0.23969 2.57955 1.22979 0 0.34474 3.38392 0 -0.457833 -0.65625 0.78125 0.218351 -0.164025 0.288757 0.641163 0.307012 2.55867 1.26724 0 0.34474 3.38392 0 -0.457833 +0.625 0.78125 0.218417 -0.163972 0.288574 0.616326 0.232332 2.58268 1.23181 0 0.34474 3.38392 0 -0.457833 +0.65625 0.78125 0.218414 -0.163961 0.288574 0.641212 0.234828 2.55155 1.26932 0 0.34474 3.38392 0 -0.457833 -0.625 0.8125 0.225282 -0.169213 0.248932 0.633347 0.206034 2.89746 1.18575 0 0.32394 3.38623 0 -0.443747 -0.65625 0.8125 0.225285 -0.169202 0.24881 0.659027 0.295921 2.83624 1.22362 0 0.32394 3.38623 0 -0.443747 +0.625 0.8125 0.225347 -0.169155 0.248413 0.633651 0.236533 2.86264 1.18775 0 0.32394 3.38623 0 -0.443747 +0.65625 0.8125 0.225344 -0.169145 0.248474 0.658538 0.226227 2.8588 1.22524 0 0.32394 3.38623 0 -0.443747 -0.65625 0.78125 0.218351 -0.164025 0.288757 0.641163 0.307012 2.55867 1.26724 0 0.34474 3.38392 0 -0.457833 -0.6875 0.78125 0.218353 -0.164012 0.288635 0.66765 0.32638 2.53625 1.30754 0 0.34474 3.38392 0 -0.457833 +0.65625 0.78125 0.218414 -0.163961 0.288574 0.640839 0.234828 2.55155 1.26932 0 0.34474 3.38392 0 -0.457833 +0.6875 0.78125 0.218411 -0.16395 0.288452 0.66742 0.22636 2.57561 1.30918 0 0.34474 3.38392 0 -0.457833 -0.65625 0.8125 0.225285 -0.169202 0.24881 0.659027 0.295921 2.83624 1.22362 0 0.32394 3.38623 0 -0.443747 -0.6875 0.8125 0.225288 -0.16919 0.248413 0.686135 0.321295 2.83351 1.26332 0 0.32394 3.38623 0 -0.443747 +0.65625 0.8125 0.225344 -0.169145 0.248474 0.658931 0.226227 2.8588 1.22524 0 0.32394 3.38623 0 -0.443747 +0.6875 0.8125 0.225342 -0.169135 0.248444 0.685512 0.240065 2.85517 1.26521 0 0.32394 3.38623 0 -0.443747 -0.6875 0.75 0.211634 -0.15899 0.328064 0.649609 0.315641 2.30485 1.35091 0 0.3649 3.38168 0 -0.472367 -0.71875 0.75 0.211636 -0.158974 0.32782 0.676835 0.284823 2.32453 1.39353 0 0.3649 3.38168 0 -0.472367 +0.6875 0.75 0.211694 -0.158923 0.328308 0.649294 0.220719 2.32734 1.35319 0 0.3649 3.38168 0 -0.472367 +0.71875 0.75 0.211692 -0.158911 0.328033 0.676733 0.215594 2.31905 1.39541 0 0.3649 3.38168 0 -0.472367 -0.6875 0.78125 0.218353 -0.164012 0.288635 0.66765 0.32638 2.53625 1.30754 0 0.34474 3.38392 0 -0.457833 -0.71875 0.78125 0.218355 -0.163997 0.288055 0.695706 0.336912 2.5365 1.34978 0 0.34474 3.38392 0 -0.457833 +0.6875 0.78125 0.218411 -0.16395 0.288452 0.667585 0.22636 2.57561 1.30918 0 0.34474 3.38392 0 -0.457833 +0.71875 0.78125 0.218409 -0.163939 0.288544 0.695024 0.230276 2.5558 1.35181 0 0.34474 3.38392 0 -0.457833 -0.71875 0.75 0.211636 -0.158974 0.32782 0.676835 0.284823 2.32453 1.39353 0 0.3649 3.38168 0 -0.472367 -0.75 0.75 0.211637 -0.158957 0.327545 0.705734 0.239017 2.33892 1.43876 0 0.3649 3.38168 0 -0.472367 +0.71875 0.75 0.211692 -0.158911 0.328033 0.676213 0.215594 2.31905 1.39541 0 0.3649 3.38168 0 -0.472367 +0.75 0.75 0.21169 -0.158898 0.328278 0.705343 0.207469 2.34459 1.44088 0 0.3649 3.38168 0 -0.472367 -0.71875 0.78125 0.218355 -0.163997 0.288055 0.695706 0.336912 2.5365 1.34978 0 0.34474 3.38392 0 -0.457833 -0.75 0.78125 0.218357 -0.163982 0.28772 0.725715 0.246586 2.53767 1.39524 0 0.34474 3.38392 0 -0.457833 +0.71875 0.78125 0.218409 -0.163939 0.288544 0.695466 0.230276 2.5558 1.35181 0 0.34474 3.38392 0 -0.457833 +0.75 0.78125 0.218407 -0.163928 0.288361 0.724596 0.224107 2.57392 1.39696 0 0.34474 3.38392 0 -0.457833 -0.6875 0.78125 0.218353 -0.164012 0.288635 0.66765 0.32638 2.53625 1.30754 0 0.34474 3.38392 0 -0.457833 -0.71875 0.78125 0.218355 -0.163997 0.288055 0.695706 0.336912 2.5365 1.34978 0 0.34474 3.38392 0 -0.457833 +0.6875 0.78125 0.218411 -0.16395 0.288452 0.666963 0.22636 2.57561 1.30918 0 0.34474 3.38392 0 -0.457833 +0.71875 0.78125 0.218409 -0.163939 0.288544 0.695197 0.230276 2.5558 1.35181 0 0.34474 3.38392 0 -0.457833 -0.6875 0.8125 0.225288 -0.16919 0.248413 0.686135 0.321295 2.83351 1.26332 0 0.32394 3.38623 0 -0.443747 -0.71875 0.8125 0.225289 -0.169178 0.248169 0.715247 0.301963 2.80255 1.30613 0 0.32394 3.38623 0 -0.443747 +0.6875 0.8125 0.225342 -0.169135 0.248444 0.685943 0.240065 2.85517 1.26521 0 0.32394 3.38623 0 -0.443747 +0.71875 0.8125 0.22534 -0.169126 0.248352 0.714177 0.231304 2.84933 1.30773 0 0.32394 3.38623 0 -0.443747 -0.71875 0.78125 0.218355 -0.163997 0.288055 0.695706 0.336912 2.5365 1.34978 0 0.34474 3.38392 0 -0.457833 -0.75 0.78125 0.218357 -0.163982 0.28772 0.725715 0.246586 2.53767 1.39524 0 0.34474 3.38392 0 -0.457833 +0.71875 0.78125 0.218409 -0.163939 0.288544 0.69476 0.230276 2.5558 1.35181 0 0.34474 3.38392 0 -0.457833 +0.75 0.78125 0.218407 -0.163928 0.288361 0.72486 0.224107 2.57392 1.39696 0 0.34474 3.38392 0 -0.457833 -0.71875 0.8125 0.225289 -0.169178 0.248169 0.715247 0.301963 2.80255 1.30613 0 0.32394 3.38623 0 -0.443747 -0.75 0.8125 0.22529 -0.169165 0.247864 0.746015 0.221811 2.77423 1.35134 0 0.32394 3.38623 0 -0.443747 +0.71875 0.8125 0.22534 -0.169126 0.248352 0.714636 0.231304 2.84933 1.30773 0 0.32394 3.38623 0 -0.443747 +0.75 0.8125 0.225338 -0.169116 0.248413 0.744735 0.226858 2.82999 1.35304 0 0.32394 3.38623 0 -0.443747 -0.625 0.8125 0.225282 -0.169213 0.248932 0.633347 0.206034 2.89746 1.18575 0 0.32394 3.38623 0 -0.443747 -0.65625 0.8125 0.225285 -0.169202 0.24881 0.659027 0.295921 2.83624 1.22362 0 0.32394 3.38623 0 -0.443747 +0.625 0.8125 0.225347 -0.169155 0.248413 0.633042 0.236533 2.86264 1.18775 0 0.32394 3.38623 0 -0.443747 +0.65625 0.8125 0.225344 -0.169145 0.248474 0.6587 0.226227 2.8588 1.22524 0 0.32394 3.38623 0 -0.443747 -0.625 0.84375 0.232439 -0.174551 0.208435 0.651089 0.191962 3.24779 1.14187 0 0.302479 3.38861 0 -0.430095 -0.65625 0.84375 0.232442 -0.174541 0.208313 0.677411 0.271156 3.17477 1.17948 0 0.302479 3.38861 0 -0.430095 +0.625 0.84375 0.232498 -0.1745 0.208099 0.650907 0.243136 3.22099 1.14365 0 0.302479 3.38861 0 -0.430095 +0.65625 0.84375 0.232495 -0.174491 0.208069 0.676565 0.242241 3.20523 1.18107 0 0.302479 3.38861 0 -0.430095 -0.65625 0.8125 0.225285 -0.169202 0.24881 0.659027 0.295921 2.83624 1.22362 0 0.32394 3.38623 0 -0.443747 -0.6875 0.8125 0.225288 -0.16919 0.248413 0.686135 0.321295 2.83351 1.26332 0 0.32394 3.38623 0 -0.443747 +0.65625 0.8125 0.225344 -0.169145 0.248474 0.658269 0.226227 2.8588 1.22524 0 0.32394 3.38623 0 -0.443747 +0.6875 0.8125 0.225342 -0.169135 0.248444 0.685671 0.240065 2.85517 1.26521 0 0.32394 3.38623 0 -0.443747 -0.65625 0.84375 0.232442 -0.174541 0.208313 0.677411 0.271156 3.17477 1.17948 0 0.302479 3.38861 0 -0.430095 -0.6875 0.84375 0.232444 -0.174531 0.20816 0.705404 0.308313 3.14892 1.21946 0 0.302479 3.38861 0 -0.430095 +0.65625 0.84375 0.232495 -0.174491 0.208069 0.677002 0.242241 3.20523 1.18107 0 0.302479 3.38861 0 -0.430095 +0.6875 0.84375 0.232493 -0.174483 0.208038 0.704405 0.236581 3.21869 1.22115 0 0.302479 3.38861 0 -0.430095 -0.625 0.84375 0.232439 -0.174551 0.208435 0.651089 0.191962 3.24779 1.14187 0 0.302479 3.38861 0 -0.430095 -0.65625 0.84375 0.232442 -0.174541 0.208313 0.677411 0.271156 3.17477 1.17948 0 0.302479 3.38861 0 -0.430095 +0.625 0.84375 0.232498 -0.1745 0.208099 0.650272 0.243136 3.22099 1.14365 0 0.302479 3.38861 0 -0.430095 +0.65625 0.84375 0.232495 -0.174491 0.208069 0.676744 0.242241 3.20523 1.18107 0 0.302479 3.38861 0 -0.430095 -0.625 0.875 0.239827 -0.180056 0.167267 0.669454 0.179326 3.60807 1.0975 0 0.280337 3.39107 0 -0.416862 -0.65625 0.875 0.239828 -0.180048 0.167603 0.696415 0.21841 3.54628 1.1353 0 0.280337 3.39107 0 -0.416862 +0.625 0.875 0.239877 -0.180013 0.167114 0.66885 0.273218 3.63857 1.09917 0 0.280337 3.39107 0 -0.416862 +0.65625 0.875 0.239874 -0.180006 0.167297 0.695322 0.236767 3.64347 1.13688 0 0.280337 3.39107 0 -0.416862 -0.65625 0.84375 0.232442 -0.174541 0.208313 0.677411 0.271156 3.17477 1.17948 0 0.302479 3.38861 0 -0.430095 -0.6875 0.84375 0.232444 -0.174531 0.20816 0.705404 0.308313 3.14892 1.21946 0 0.302479 3.38861 0 -0.430095 +0.65625 0.84375 0.232495 -0.174491 0.208069 0.676301 0.242241 3.20523 1.18107 0 0.302479 3.38861 0 -0.430095 +0.6875 0.84375 0.232493 -0.174483 0.208038 0.704594 0.236581 3.21869 1.22115 0 0.302479 3.38861 0 -0.430095 -0.65625 0.875 0.239828 -0.180048 0.167603 0.696415 0.21841 3.54628 1.1353 0 0.280337 3.39107 0 -0.416862 -0.6875 0.875 0.23983 -0.18004 0.167419 0.725394 0.289853 3.55373 1.17538 0 0.280337 3.39107 0 -0.416862 +0.65625 0.875 0.239874 -0.180006 0.167297 0.695726 0.236767 3.64347 1.13688 0 0.280337 3.39107 0 -0.416862 +0.6875 0.875 0.239872 -0.179999 0.167114 0.72402 0.188969 3.61421 1.1766 0 0.280337 3.39107 0 -0.416862 -0.6875 0.8125 0.225288 -0.16919 0.248413 0.686135 0.321295 2.83351 1.26332 0 0.32394 3.38623 0 -0.443747 -0.71875 0.8125 0.225289 -0.169178 0.248169 0.715247 0.301963 2.80255 1.30613 0 0.32394 3.38623 0 -0.443747 +0.6875 0.8125 0.225342 -0.169135 0.248444 0.685226 0.240065 2.85517 1.26521 0 0.32394 3.38623 0 -0.443747 +0.71875 0.8125 0.22534 -0.169126 0.248352 0.71437 0.231304 2.84933 1.30773 0 0.32394 3.38623 0 -0.443747 -0.6875 0.84375 0.232444 -0.174531 0.20816 0.705404 0.308313 3.14892 1.21946 0 0.302479 3.38861 0 -0.430095 -0.71875 0.84375 0.232445 -0.174521 0.207825 0.735333 0.298848 3.13519 1.26203 0 0.302479 3.38861 0 -0.430095 +0.6875 0.84375 0.232493 -0.174483 0.208038 0.704802 0.236581 3.21869 1.22115 0 0.302479 3.38861 0 -0.430095 +0.71875 0.84375 0.232491 -0.174475 0.208038 0.733946 0.227624 3.14816 1.26362 0 0.302479 3.38861 0 -0.430095 -0.71875 0.8125 0.225289 -0.169178 0.248169 0.715247 0.301963 2.80255 1.30613 0 0.32394 3.38623 0 -0.443747 -0.75 0.8125 0.22529 -0.169165 0.247864 0.746015 0.221811 2.77423 1.35134 0 0.32394 3.38623 0 -0.443747 +0.71875 0.8125 0.22534 -0.169126 0.248352 0.713939 0.231304 2.84933 1.30773 0 0.32394 3.38623 0 -0.443747 +0.75 0.8125 0.225338 -0.169116 0.248413 0.744921 0.226858 2.82999 1.35304 0 0.32394 3.38623 0 -0.443747 -0.71875 0.84375 0.232445 -0.174521 0.207825 0.735333 0.298848 3.13519 1.26203 0 0.302479 3.38861 0 -0.430095 -0.75 0.84375 0.232446 -0.17451 0.207703 0.767053 0.226794 3.10322 1.30739 0 0.302479 3.38861 0 -0.430095 +0.71875 0.84375 0.232491 -0.174475 0.208038 0.734451 0.227624 3.14816 1.26362 0 0.302479 3.38861 0 -0.430095 +0.75 0.84375 0.23249 -0.174467 0.208069 0.765433 0.223997 3.15101 1.30879 0 0.302479 3.38861 0 -0.430095 -0.6875 0.84375 0.232444 -0.174531 0.20816 0.705404 0.308313 3.14892 1.21946 0 0.302479 3.38861 0 -0.430095 -0.71875 0.84375 0.232445 -0.174521 0.207825 0.735333 0.298848 3.13519 1.26203 0 0.302479 3.38861 0 -0.430095 +0.6875 0.84375 0.232493 -0.174483 0.208038 0.704186 0.236581 3.21869 1.22115 0 0.302479 3.38861 0 -0.430095 +0.71875 0.84375 0.232491 -0.174475 0.208038 0.734062 0.227624 3.14816 1.26362 0 0.302479 3.38861 0 -0.430095 -0.6875 0.875 0.23983 -0.18004 0.167419 0.725394 0.289853 3.55373 1.17538 0 0.280337 3.39107 0 -0.416862 -0.71875 0.875 0.239831 -0.180031 0.167236 0.756099 0.277829 3.5395 1.21787 0 0.280337 3.39107 0 -0.416862 +0.6875 0.875 0.239872 -0.179999 0.167114 0.72442 0.188969 3.61421 1.1766 0 0.280337 3.39107 0 -0.416862 +0.71875 0.875 0.239871 -0.179993 0.167603 0.754297 0.175409 3.62377 1.21942 0 0.280337 3.39107 0 -0.416862 -0.71875 0.84375 0.232445 -0.174521 0.207825 0.735333 0.298848 3.13519 1.26203 0 0.302479 3.38861 0 -0.430095 -0.75 0.84375 0.232446 -0.17451 0.207703 0.767053 0.226794 3.10322 1.30739 0 0.302479 3.38861 0 -0.430095 +0.71875 0.84375 0.232491 -0.174475 0.208038 0.733703 0.227624 3.14816 1.26362 0 0.302479 3.38861 0 -0.430095 +0.75 0.84375 0.23249 -0.174467 0.208069 0.765676 0.223997 3.15101 1.30879 0 0.302479 3.38861 0 -0.430095 -0.71875 0.875 0.239831 -0.180031 0.167236 0.756099 0.277829 3.5395 1.21787 0 0.280337 3.39107 0 -0.416862 -0.75 0.875 0.239831 -0.180023 0.167175 0.78897 0.228705 3.55363 1.26348 0 0.280337 3.39107 0 -0.416862 +0.71875 0.875 0.239871 -0.179993 0.167603 0.754727 0.175409 3.62377 1.21942 0 0.280337 3.39107 0 -0.416862 +0.75 0.875 0.239871 -0.179986 0.167603 0.786701 0.28322 3.61635 1.26467 0 0.280337 3.39107 0 -0.416862 -0.5 0.875 0.23983 -0.180086 0.166656 0.577132 0.249422 3.55228 0.968605 0 0.280337 3.39107 0 -0.416862 -0.53125 0.875 0.239827 -0.180079 0.166656 0.598066 0.201309 3.55348 0.997693 0 0.280337 3.39107 0 -0.416862 +0.5 0.875 0.239891 -0.180037 0.167572 0.575677 0.277042 3.62107 0.970614 0 0.280337 3.39107 0 -0.416862 +0.53125 0.875 0.239887 -0.180032 0.167603 0.597018 0.281955 3.64675 0.999944 0 0.280337 3.39107 0 -0.416862 -0.5 0.90625 0.247455 -0.185756 0.125366 0.593006 0.249516 4.03284 0.924019 0 0.257493 3.39361 0 -0.404037 -0.53125 0.90625 0.247452 -0.185751 0.125641 0.614637 0.145023 4.06199 0.953427 0 0.257493 3.39361 0 -0.404037 +0.5 0.90625 0.247504 -0.185718 0.126465 0.591875 0.290474 4.23616 0.926307 0 0.257493 3.39361 0 -0.404037 +0.53125 0.90625 0.2475 -0.185714 0.12616 0.613215 0.294576 4.20206 0.955219 0 0.257493 3.39361 0 -0.404037 -0.53125 0.875 0.239827 -0.180079 0.166656 0.598066 0.201309 3.55348 0.997693 0 0.280337 3.39107 0 -0.416862 -0.5625 0.875 0.239825 -0.180071 0.16684 0.620408 0.14104 3.59232 1.02892 0 0.280337 3.39107 0 -0.416862 +0.53125 0.875 0.239887 -0.180032 0.167603 0.596681 0.281955 3.64675 0.999944 0 0.280337 3.39107 0 -0.416862 +0.5625 0.875 0.239883 -0.180025 0.167328 0.6194 0.265088 3.62161 1.03085 0 0.280337 3.39107 0 -0.416862 -0.53125 0.90625 0.247452 -0.185751 0.125641 0.614637 0.145023 4.06199 0.953427 0 0.257493 3.39361 0 -0.404037 -0.5625 0.90625 0.24745 -0.185745 0.125977 0.637514 0.145451 4.04822 0.984573 0 0.257493 3.39361 0 -0.404037 +0.53125 0.90625 0.2475 -0.185714 0.12616 0.613528 0.294576 4.20206 0.955219 0 0.257493 3.39361 0 -0.404037 +0.5625 0.90625 0.247497 -0.185709 0.126221 0.636247 0.282197 4.18555 0.98643 0 0.257493 3.39361 0 -0.404037 -0.5 0.90625 0.247455 -0.185756 0.125366 0.593006 0.249516 4.03284 0.924019 0 0.257493 3.39361 0 -0.404037 -0.53125 0.90625 0.247452 -0.185751 0.125641 0.614637 0.145023 4.06199 0.953427 0 0.257493 3.39361 0 -0.404037 +0.5 0.90625 0.247504 -0.185718 0.126465 0.591359 0.290474 4.23616 0.926307 0 0.257493 3.39361 0 -0.404037 +0.53125 0.90625 0.2475 -0.185714 0.12616 0.613301 0.294576 4.20206 0.955219 0 0.257493 3.39361 0 -0.404037 -0.5 0.9375 0.255324 -0.191606 0.0842285 0.609221 0.230972 4.65411 0.879476 0 0.233923 3.39623 0 -0.391606 -0.53125 0.9375 0.255322 -0.191602 0.0840454 0.631565 0.215977 4.70242 0.908461 0 0.233923 3.39623 0 -0.391606 +0.5 0.9375 0.255359 -0.191579 0.084259 0.608161 0.297006 4.88876 0.881081 0 0.233923 3.39623 0 -0.391606 +0.53125 0.9375 0.255356 -0.191576 0.0844421 0.630103 0.26256 4.81931 0.910451 0 0.233923 3.39623 0 -0.391606 -0.53125 0.90625 0.247452 -0.185751 0.125641 0.614637 0.145023 4.06199 0.953427 0 0.257493 3.39361 0 -0.404037 -0.5625 0.90625 0.24745 -0.185745 0.125977 0.637514 0.145451 4.04822 0.984573 0 0.257493 3.39361 0 -0.404037 +0.53125 0.90625 0.2475 -0.185714 0.12616 0.612961 0.294576 4.20206 0.955219 0 0.257493 3.39361 0 -0.404037 +0.5625 0.90625 0.247497 -0.185709 0.126221 0.636371 0.282197 4.18555 0.98643 0 0.257493 3.39361 0 -0.404037 -0.53125 0.9375 0.255322 -0.191602 0.0840454 0.631565 0.215977 4.70242 0.908461 0 0.233923 3.39623 0 -0.391606 -0.5625 0.9375 0.25532 -0.191599 0.0843506 0.655398 0.157265 4.69045 0.939876 0 0.233923 3.39623 0 -0.391606 +0.53125 0.9375 0.255356 -0.191576 0.0844421 0.630453 0.26256 4.81931 0.910451 0 0.233923 3.39623 0 -0.391606 +0.5625 0.9375 0.255354 -0.191574 0.084259 0.653862 0.260375 4.8005 0.941442 0 0.233923 3.39623 0 -0.391606 -0.5625 0.875 0.239825 -0.180071 0.16684 0.620408 0.14104 3.59232 1.02892 0 0.280337 3.39107 0 -0.416862 -0.59375 0.875 0.239825 -0.180064 0.167267 0.644032 0.158148 3.58931 1.06217 0 0.280337 3.39107 0 -0.416862 +0.5625 0.875 0.239883 -0.180025 0.167328 0.61903 0.265088 3.62161 1.03085 0 0.280337 3.39107 0 -0.416862 +0.59375 0.875 0.23988 -0.180019 0.167511 0.643164 0.277435 3.65294 1.06415 0 0.280337 3.39107 0 -0.416862 -0.5625 0.90625 0.24745 -0.185745 0.125977 0.637514 0.145451 4.04822 0.984573 0 0.257493 3.39361 0 -0.404037 -0.59375 0.90625 0.24745 -0.18574 0.126129 0.661904 0.149785 4.08117 1.01757 0 0.257493 3.39361 0 -0.404037 +0.5625 0.90625 0.247497 -0.185709 0.126221 0.636607 0.282197 4.18555 0.98643 0 0.257493 3.39361 0 -0.404037 +0.59375 0.90625 0.247494 -0.185705 0.126007 0.660741 0.279861 4.18837 1.01937 0 0.257493 3.39361 0 -0.404037 -0.59375 0.875 0.239825 -0.180064 0.167267 0.644032 0.158148 3.58931 1.06217 0 0.280337 3.39107 0 -0.416862 -0.625 0.875 0.239827 -0.180056 0.167267 0.669454 0.179326 3.60807 1.0975 0 0.280337 3.39107 0 -0.416862 +0.59375 0.875 0.23988 -0.180019 0.167511 0.642776 0.277435 3.65294 1.06415 0 0.280337 3.39107 0 -0.416862 +0.625 0.875 0.239877 -0.180013 0.167114 0.668584 0.273218 3.63857 1.09917 0 0.280337 3.39107 0 -0.416862 -0.59375 0.90625 0.24745 -0.18574 0.126129 0.661904 0.149785 4.08117 1.01757 0 0.257493 3.39361 0 -0.404037 -0.625 0.90625 0.247451 -0.185735 0.126434 0.688147 0.149533 4.07215 1.05322 0 0.257493 3.39361 0 -0.404037 +0.59375 0.90625 0.247494 -0.185705 0.126007 0.661127 0.279861 4.18837 1.01937 0 0.257493 3.39361 0 -0.404037 +0.625 0.90625 0.247492 -0.1857 0.126038 0.686935 0.253573 4.14695 1.05474 0 0.257493 3.39361 0 -0.404037 -0.5625 0.90625 0.24745 -0.185745 0.125977 0.637514 0.145451 4.04822 0.984573 0 0.257493 3.39361 0 -0.404037 -0.59375 0.90625 0.24745 -0.18574 0.126129 0.661904 0.149785 4.08117 1.01757 0 0.257493 3.39361 0 -0.404037 +0.5625 0.90625 0.247497 -0.185709 0.126221 0.635992 0.282197 4.18555 0.98643 0 0.257493 3.39361 0 -0.404037 +0.59375 0.90625 0.247494 -0.185705 0.126007 0.660906 0.279861 4.18837 1.01937 0 0.257493 3.39361 0 -0.404037 -0.5625 0.9375 0.25532 -0.191599 0.0843506 0.655398 0.157265 4.69045 0.939876 0 0.233923 3.39623 0 -0.391606 -0.59375 0.9375 0.255321 -0.191596 0.0845642 0.6806 0.188406 4.69887 0.972987 0 0.233923 3.39623 0 -0.391606 +0.5625 0.9375 0.255354 -0.191574 0.084259 0.654215 0.260375 4.8005 0.941442 0 0.233923 3.39623 0 -0.391606 +0.59375 0.9375 0.255351 -0.191571 0.0844116 0.679129 0.250921 4.78965 0.974679 0 0.233923 3.39623 0 -0.391606 -0.59375 0.90625 0.24745 -0.18574 0.126129 0.661904 0.149785 4.08117 1.01757 0 0.257493 3.39361 0 -0.404037 -0.625 0.90625 0.247451 -0.185735 0.126434 0.688147 0.149533 4.07215 1.05322 0 0.257493 3.39361 0 -0.404037 +0.59375 0.90625 0.247494 -0.185705 0.126007 0.660506 0.279861 4.18837 1.01937 0 0.257493 3.39361 0 -0.404037 +0.625 0.90625 0.247492 -0.1857 0.126038 0.687029 0.253573 4.14695 1.05474 0 0.257493 3.39361 0 -0.404037 -0.59375 0.9375 0.255321 -0.191596 0.0845642 0.6806 0.188406 4.69887 0.972987 0 0.233923 3.39623 0 -0.391606 -0.625 0.9375 0.255321 -0.191592 0.0846252 0.707551 0.207212 4.69843 1.00823 0 0.233923 3.39623 0 -0.391606 +0.59375 0.9375 0.255351 -0.191571 0.0844116 0.679498 0.250921 4.78965 0.974679 0 0.233923 3.39623 0 -0.391606 +0.625 0.9375 0.25535 -0.191568 0.0842896 0.706022 0.253939 4.76551 1.00983 0 0.233923 3.39623 0 -0.391606 -0.5 0.9375 0.255324 -0.191606 0.0842285 0.609221 0.230972 4.65411 0.879476 0 0.233923 3.39623 0 -0.391606 -0.53125 0.9375 0.255322 -0.191602 0.0840454 0.631565 0.215977 4.70242 0.908461 0 0.233923 3.39623 0 -0.391606 +0.5 0.9375 0.255359 -0.191579 0.084259 0.60759 0.297006 4.88876 0.881081 0 0.233923 3.39623 0 -0.391606 +0.53125 0.9375 0.255356 -0.191576 0.0844421 0.630199 0.26256 4.81931 0.910451 0 0.233923 3.39623 0 -0.391606 -0.5 0.96875 0.263446 -0.197642 0.0420837 0.626169 0.223357 5.51454 0.834307 0 0.209605 3.39893 0 -0.379557 -0.53125 0.96875 0.263444 -0.19764 0.0420532 0.649345 0.166689 5.46385 0.863599 0 0.209605 3.39893 0 -0.379557 +0.5 0.96875 0.263465 -0.197628 0.0422058 0.624894 0.30568 5.5758 0.836143 0 0.209605 3.39893 0 -0.379557 +0.53125 0.96875 0.263462 -0.197627 0.0422668 0.647503 0.243159 5.50533 0.865283 0 0.209605 3.39893 0 -0.379557 -0.53125 0.9375 0.255322 -0.191602 0.0840454 0.631565 0.215977 4.70242 0.908461 0 0.233923 3.39623 0 -0.391606 -0.5625 0.9375 0.25532 -0.191599 0.0843506 0.655398 0.157265 4.69045 0.939876 0 0.233923 3.39623 0 -0.391606 +0.53125 0.9375 0.255356 -0.191576 0.0844421 0.629845 0.26256 4.81931 0.910451 0 0.233923 3.39623 0 -0.391606 +0.5625 0.9375 0.255354 -0.191574 0.084259 0.653977 0.260375 4.8005 0.941442 0 0.233923 3.39623 0 -0.391606 -0.53125 0.96875 0.263444 -0.19764 0.0420532 0.649345 0.166689 5.46385 0.863599 0 0.209605 3.39893 0 -0.379557 -0.5625 0.96875 0.263443 -0.197639 0.0424805 0.673735 0.134617 5.48293 0.894883 0 0.209605 3.39893 0 -0.379557 +0.53125 0.96875 0.263462 -0.197627 0.0422668 0.647844 0.243159 5.50533 0.865283 0 0.209605 3.39893 0 -0.379557 +0.5625 0.96875 0.263461 -0.197626 0.0423584 0.671976 0.258611 5.46241 0.896437 0 0.209605 3.39893 0 -0.379557 -0.5 0.96875 0.263446 -0.197642 0.0420837 0.626169 0.223357 5.51454 0.834307 0 0.209605 3.39893 0 -0.379557 -0.53125 0.96875 0.263444 -0.19764 0.0420532 0.649345 0.166689 5.46385 0.863599 0 0.209605 3.39893 0 -0.379557 +0.5 0.96875 0.263465 -0.197628 0.0422058 0.624355 0.30568 5.5758 0.836143 0 0.209605 3.39893 0 -0.379557 +0.53125 0.96875 0.263462 -0.197627 0.0422668 0.647592 0.243159 5.50533 0.865283 0 0.209605 3.39893 0 -0.379557 -0.5 1 0.271828 -0.203871 -0.000457764 0.643859 0.180642 6.40742 0.789084 0 0.184515 3.40172 0 -0.367879 -0.53125 1 0.271828 -0.203871 -0.000366211 0.667641 0.169917 6.33963 0.818339 0 0.184515 3.40172 0 -0.367879 +0.5 1 0.271828 -0.203871 -0.000610352 0.642246 0.299136 5.98042 0.79095 0 0.184515 3.40172 0 -0.367879 +0.53125 1 0.271828 -0.203871 -0.000244141 0.665483 0.19449 5.84454 0.820411 0 0.184515 3.40172 0 -0.367879 -0.53125 0.96875 0.263444 -0.19764 0.0420532 0.649345 0.166689 5.46385 0.863599 0 0.209605 3.39893 0 -0.379557 -0.5625 0.96875 0.263443 -0.197639 0.0424805 0.673735 0.134617 5.48293 0.894883 0 0.209605 3.39893 0 -0.379557 +0.53125 0.96875 0.263462 -0.197627 0.0422668 0.647222 0.243159 5.50533 0.865283 0 0.209605 3.39893 0 -0.379557 +0.5625 0.96875 0.263461 -0.197626 0.0423584 0.672044 0.258611 5.46241 0.896437 0 0.209605 3.39893 0 -0.379557 -0.53125 1 0.271828 -0.203871 -0.000366211 0.667641 0.169917 6.33963 0.818339 0 0.184515 3.40172 0 -0.367879 -0.5625 1 0.271828 -0.203871 -0.00012207 0.692984 0.147605 6.42233 0.84966 0 0.184515 3.40172 0 -0.367879 +0.53125 1 0.271828 -0.203871 -0.000244141 0.665852 0.19449 5.84454 0.820411 0 0.184515 3.40172 0 -0.367879 +0.5625 1 0.271828 -0.203871 -0.000183105 0.690673 0.249419 5.84147 0.851525 0 0.184515 3.40172 0 -0.367879 -0.5625 0.9375 0.25532 -0.191599 0.0843506 0.655398 0.157265 4.69045 0.939876 0 0.233923 3.39623 0 -0.391606 -0.59375 0.9375 0.255321 -0.191596 0.0845642 0.6806 0.188406 4.69887 0.972987 0 0.233923 3.39623 0 -0.391606 +0.5625 0.9375 0.255354 -0.191574 0.084259 0.653615 0.260375 4.8005 0.941442 0 0.233923 3.39623 0 -0.391606 +0.59375 0.9375 0.255351 -0.191571 0.0844116 0.67926 0.250921 4.78965 0.974679 0 0.233923 3.39623 0 -0.391606 -0.5625 0.96875 0.263443 -0.197639 0.0424805 0.673735 0.134617 5.48293 0.894883 0 0.209605 3.39893 0 -0.379557 -0.59375 0.96875 0.263443 -0.197637 0.0426025 0.699922 0.157278 5.4797 0.928138 0 0.209605 3.39893 0 -0.379557 +0.5625 0.96875 0.263461 -0.197626 0.0423584 0.672345 0.258611 5.46241 0.896437 0 0.209605 3.39893 0 -0.379557 +0.59375 0.96875 0.26346 -0.197625 0.0422668 0.69799 0.255116 5.47895 0.929472 0 0.209605 3.39893 0 -0.379557 -0.59375 0.9375 0.255321 -0.191596 0.0845642 0.6806 0.188406 4.69887 0.972987 0 0.233923 3.39623 0 -0.391606 -0.625 0.9375 0.255321 -0.191592 0.0846252 0.707551 0.207212 4.69843 1.00823 0 0.233923 3.39623 0 -0.391606 +0.59375 0.9375 0.255351 -0.191571 0.0844116 0.678843 0.250921 4.78965 0.974679 0 0.233923 3.39623 0 -0.391606 +0.625 0.9375 0.25535 -0.191568 0.0842896 0.706168 0.253939 4.76551 1.00983 0 0.233923 3.39623 0 -0.391606 -0.59375 0.96875 0.263443 -0.197637 0.0426025 0.699922 0.157278 5.4797 0.928138 0 0.209605 3.39893 0 -0.379557 -0.625 0.96875 0.263444 -0.197635 0.0429077 0.727617 0.198615 5.46239 0.963482 0 0.209605 3.39893 0 -0.379557 +0.59375 0.96875 0.26346 -0.197625 0.0422668 0.698414 0.255116 5.47895 0.929472 0 0.209605 3.39893 0 -0.379557 +0.625 0.96875 0.263459 -0.197623 0.0423889 0.725739 0.250005 5.48004 0.964806 0 0.209605 3.39893 0 -0.379557 -0.5625 0.96875 0.263443 -0.197639 0.0424805 0.673735 0.134617 5.48293 0.894883 0 0.209605 3.39893 0 -0.379557 -0.59375 0.96875 0.263443 -0.197637 0.0426025 0.699922 0.157278 5.4797 0.928138 0 0.209605 3.39893 0 -0.379557 +0.5625 0.96875 0.263461 -0.197626 0.0423584 0.67165 0.258611 5.46241 0.896437 0 0.209605 3.39893 0 -0.379557 +0.59375 0.96875 0.26346 -0.197625 0.0422668 0.698161 0.255116 5.47895 0.929472 0 0.209605 3.39893 0 -0.379557 -0.5625 1 0.271828 -0.203871 -0.00012207 0.692984 0.147605 6.42233 0.84966 0 0.184515 3.40172 0 -0.367879 -0.59375 1 0.271828 -0.203871 9.15527e-05 0.719898 0.168529 6.38308 0.882877 0 0.184515 3.40172 0 -0.367879 +0.5625 1 0.271828 -0.203871 -0.000183105 0.691047 0.249419 5.84147 0.851525 0 0.184515 3.40172 0 -0.367879 +0.59375 1 0.271828 -0.203871 -0.000183105 0.717559 0.282303 5.81326 0.884717 0 0.184515 3.40172 0 -0.367879 -0.59375 0.96875 0.263443 -0.197637 0.0426025 0.699922 0.157278 5.4797 0.928138 0 0.209605 3.39893 0 -0.379557 -0.625 0.96875 0.263444 -0.197635 0.0429077 0.727617 0.198615 5.46239 0.963482 0 0.209605 3.39893 0 -0.379557 +0.59375 0.96875 0.26346 -0.197625 0.0422668 0.697701 0.255116 5.47895 0.929472 0 0.209605 3.39893 0 -0.379557 +0.625 0.96875 0.263459 -0.197623 0.0423889 0.725891 0.250005 5.48004 0.964806 0 0.209605 3.39893 0 -0.379557 -0.59375 1 0.271828 -0.203871 9.15527e-05 0.719898 0.168529 6.38308 0.882877 0 0.184515 3.40172 0 -0.367879 -0.625 1 0.271828 -0.203871 0.000274658 0.748743 0.244294 6.4282 0.918431 0 0.184515 3.40172 0 -0.367879 +0.59375 1 0.271828 -0.203871 -0.000183105 0.717978 0.282303 5.81326 0.884717 0 0.184515 3.40172 0 -0.367879 +0.625 1 0.271828 -0.203871 -0.000244141 0.746168 0.288996 5.88106 0.919951 0 0.184515 3.40172 0 -0.367879 -0.625 0.875 0.239827 -0.180056 0.167267 0.669454 0.179326 3.60807 1.0975 0 0.280337 3.39107 0 -0.416862 -0.65625 0.875 0.239828 -0.180048 0.167603 0.696415 0.21841 3.54628 1.1353 0 0.280337 3.39107 0 -0.416862 +0.625 0.875 0.239877 -0.180013 0.167114 0.668162 0.273218 3.63857 1.09917 0 0.280337 3.39107 0 -0.416862 +0.65625 0.875 0.239874 -0.180006 0.167297 0.695477 0.236767 3.64347 1.13688 0 0.280337 3.39107 0 -0.416862 -0.625 0.90625 0.247451 -0.185735 0.126434 0.688147 0.149533 4.07215 1.05322 0 0.257493 3.39361 0 -0.404037 -0.65625 0.90625 0.247453 -0.185728 0.126709 0.716016 0.246541 4.09669 1.09103 0 0.257493 3.39361 0 -0.404037 +0.625 0.90625 0.247492 -0.1857 0.126038 0.687323 0.253573 4.14695 1.05474 0 0.257493 3.39361 0 -0.404037 +0.65625 0.90625 0.247489 -0.185695 0.125977 0.714638 0.227167 4.15402 1.09215 0 0.257493 3.39361 0 -0.404037 -0.65625 0.875 0.239828 -0.180048 0.167603 0.696415 0.21841 3.54628 1.1353 0 0.280337 3.39107 0 -0.416862 -0.6875 0.875 0.23983 -0.18004 0.167419 0.725394 0.289853 3.55373 1.17538 0 0.280337 3.39107 0 -0.416862 +0.65625 0.875 0.239874 -0.180006 0.167297 0.695064 0.236767 3.64347 1.13688 0 0.280337 3.39107 0 -0.416862 +0.6875 0.875 0.239872 -0.179999 0.167114 0.724186 0.188969 3.61421 1.1766 0 0.280337 3.39107 0 -0.416862 -0.65625 0.90625 0.247453 -0.185728 0.126709 0.716016 0.246541 4.09669 1.09103 0 0.257493 3.39361 0 -0.404037 -0.6875 0.90625 0.247454 -0.185722 0.126434 0.745748 0.339934 4.07502 1.1308 0 0.257493 3.39361 0 -0.404037 +0.65625 0.90625 0.247489 -0.185695 0.125977 0.71505 0.227167 4.15402 1.09215 0 0.257493 3.39361 0 -0.404037 +0.6875 0.90625 0.247488 -0.18569 0.12616 0.744172 0.222821 4.14711 1.1322 0 0.257493 3.39361 0 -0.404037 -0.625 0.90625 0.247451 -0.185735 0.126434 0.688147 0.149533 4.07215 1.05322 0 0.257493 3.39361 0 -0.404037 -0.65625 0.90625 0.247453 -0.185728 0.126709 0.716016 0.246541 4.09669 1.09103 0 0.257493 3.39361 0 -0.404037 +0.625 0.90625 0.247492 -0.1857 0.126038 0.686631 0.253573 4.14695 1.05474 0 0.257493 3.39361 0 -0.404037 +0.65625 0.90625 0.247489 -0.185695 0.125977 0.714798 0.227167 4.15402 1.09215 0 0.257493 3.39361 0 -0.404037 -0.625 0.9375 0.255321 -0.191592 0.0846252 0.707551 0.207212 4.69843 1.00823 0 0.233923 3.39623 0 -0.391606 -0.65625 0.9375 0.255322 -0.191587 0.0847778 0.736427 0.232189 4.75612 1.04607 0 0.233923 3.39623 0 -0.391606 +0.625 0.9375 0.25535 -0.191568 0.0842896 0.70647 0.253939 4.76551 1.00983 0 0.233923 3.39623 0 -0.391606 +0.65625 0.9375 0.255348 -0.191565 0.0844116 0.734637 0.252669 4.76779 1.04742 0 0.233923 3.39623 0 -0.391606 -0.65625 0.90625 0.247453 -0.185728 0.126709 0.716016 0.246541 4.09669 1.09103 0 0.257493 3.39361 0 -0.404037 -0.6875 0.90625 0.247454 -0.185722 0.126434 0.745748 0.339934 4.07502 1.1308 0 0.257493 3.39361 0 -0.404037 +0.65625 0.90625 0.247489 -0.185695 0.125977 0.714336 0.227167 4.15402 1.09215 0 0.257493 3.39361 0 -0.404037 +0.6875 0.90625 0.247488 -0.18569 0.12616 0.744372 0.222821 4.14711 1.1322 0 0.257493 3.39361 0 -0.404037 -0.65625 0.9375 0.255322 -0.191587 0.0847778 0.736427 0.232189 4.75612 1.04607 0 0.233923 3.39623 0 -0.391606 -0.6875 0.9375 0.255323 -0.191583 0.0847473 0.76719 0.277905 4.7337 1.0862 0 0.233923 3.39623 0 -0.391606 +0.65625 0.9375 0.255348 -0.191565 0.0844116 0.735095 0.252669 4.76779 1.04742 0 0.233923 3.39623 0 -0.391606 +0.6875 0.9375 0.255347 -0.191562 0.0843201 0.765131 0.267084 4.80832 1.08734 0 0.233923 3.39623 0 -0.391606 -0.6875 0.875 0.23983 -0.18004 0.167419 0.725394 0.289853 3.55373 1.17538 0 0.280337 3.39107 0 -0.416862 -0.71875 0.875 0.239831 -0.180031 0.167236 0.756099 0.277829 3.5395 1.21787 0 0.280337 3.39107 0 -0.416862 +0.6875 0.875 0.239872 -0.179999 0.167114 0.72367 0.188969 3.61421 1.1766 0 0.280337 3.39107 0 -0.416862 +0.71875 0.875 0.239871 -0.179993 0.167603 0.754555 0.175409 3.62377 1.21942 0 0.280337 3.39107 0 -0.416862 -0.6875 0.90625 0.247454 -0.185722 0.126434 0.745748 0.339934 4.07502 1.1308 0 0.257493 3.39361 0 -0.404037 -0.71875 0.90625 0.247454 -0.185715 0.12616 0.777693 0.340047 4.05808 1.17355 0 0.257493 3.39361 0 -0.404037 +0.6875 0.90625 0.247488 -0.18569 0.12616 0.74467 0.222821 4.14711 1.1322 0 0.257493 3.39361 0 -0.404037 +0.71875 0.90625 0.247487 -0.185685 0.126129 0.775556 0.246117 4.21959 1.17483 0 0.257493 3.39361 0 -0.404037 -0.71875 0.875 0.239831 -0.180031 0.167236 0.756099 0.277829 3.5395 1.21787 0 0.280337 3.39107 0 -0.416862 -0.75 0.875 0.239831 -0.180023 0.167175 0.78897 0.228705 3.55363 1.26348 0 0.280337 3.39107 0 -0.416862 +0.71875 0.875 0.239871 -0.179993 0.167603 0.754016 0.175409 3.62377 1.21942 0 0.280337 3.39107 0 -0.416862 +0.75 0.875 0.239871 -0.179986 0.167603 0.787035 0.28322 3.61635 1.26467 0 0.280337 3.39107 0 -0.416862 -0.71875 0.90625 0.247454 -0.185715 0.12616 0.777693 0.340047 4.05808 1.17355 0 0.257493 3.39361 0 -0.404037 -0.75 0.90625 0.247454 -0.185709 0.125854 0.811463 0.221645 4.04326 1.21872 0 0.257493 3.39361 0 -0.404037 +0.71875 0.90625 0.247487 -0.185685 0.126129 0.776116 0.246117 4.21959 1.17483 0 0.257493 3.39361 0 -0.404037 +0.75 0.90625 0.247487 -0.18568 0.12616 0.809134 0.263641 4.17412 1.22001 0 0.257493 3.39361 0 -0.404037 -0.6875 0.90625 0.247454 -0.185722 0.126434 0.745748 0.339934 4.07502 1.1308 0 0.257493 3.39361 0 -0.404037 -0.71875 0.90625 0.247454 -0.185715 0.12616 0.777693 0.340047 4.05808 1.17355 0 0.257493 3.39361 0 -0.404037 +0.6875 0.90625 0.247488 -0.18569 0.12616 0.743811 0.222821 4.14711 1.1322 0 0.257493 3.39361 0 -0.404037 +0.71875 0.90625 0.247487 -0.185685 0.126129 0.775832 0.246117 4.21959 1.17483 0 0.257493 3.39361 0 -0.404037 -0.6875 0.9375 0.255323 -0.191583 0.0847473 0.76719 0.277905 4.7337 1.0862 0 0.233923 3.39623 0 -0.391606 -0.71875 0.9375 0.255323 -0.191579 0.0846252 0.799923 0.272049 4.68807 1.12881 0 0.233923 3.39623 0 -0.391606 +0.6875 0.9375 0.255347 -0.191562 0.0843201 0.765628 0.267084 4.80832 1.08734 0 0.233923 3.39623 0 -0.391606 +0.71875 0.9375 0.255347 -0.191558 0.0842896 0.797649 0.212369 4.81473 1.12983 0 0.233923 3.39623 0 -0.391606 -0.71875 0.90625 0.247454 -0.185715 0.12616 0.777693 0.340047 4.05808 1.17355 0 0.257493 3.39361 0 -0.404037 -0.75 0.90625 0.247454 -0.185709 0.125854 0.811463 0.221645 4.04326 1.21872 0 0.257493 3.39361 0 -0.404037 +0.71875 0.90625 0.247487 -0.185685 0.126129 0.775351 0.246117 4.21959 1.17483 0 0.257493 3.39361 0 -0.404037 +0.75 0.90625 0.247487 -0.18568 0.12616 0.809297 0.263641 4.17412 1.22001 0 0.257493 3.39361 0 -0.404037 -0.71875 0.9375 0.255323 -0.191579 0.0846252 0.799923 0.272049 4.68807 1.12881 0 0.233923 3.39623 0 -0.391606 -0.75 0.9375 0.255322 -0.191574 0.0846558 0.834719 0.247923 4.63941 1.17426 0 0.233923 3.39623 0 -0.391606 +0.71875 0.9375 0.255347 -0.191558 0.0842896 0.798121 0.212369 4.81473 1.12983 0 0.233923 3.39623 0 -0.391606 +0.75 0.9375 0.255347 -0.191555 0.0846252 0.832067 0.268962 4.84387 1.17535 0 0.233923 3.39623 0 -0.391606 -0.625 0.9375 0.255321 -0.191592 0.0846252 0.707551 0.207212 4.69843 1.00823 0 0.233923 3.39623 0 -0.391606 -0.65625 0.9375 0.255322 -0.191587 0.0847778 0.736427 0.232189 4.75612 1.04607 0 0.233923 3.39623 0 -0.391606 +0.625 0.9375 0.25535 -0.191568 0.0842896 0.705742 0.253939 4.76551 1.00983 0 0.233923 3.39623 0 -0.391606 +0.65625 0.9375 0.255348 -0.191565 0.0844116 0.734829 0.252669 4.76779 1.04742 0 0.233923 3.39623 0 -0.391606 -0.625 0.96875 0.263444 -0.197635 0.0429077 0.727617 0.198615 5.46239 0.963482 0 0.209605 3.39893 0 -0.379557 -0.65625 0.96875 0.263445 -0.197633 0.0429077 0.757388 0.297217 5.53179 1.00115 0 0.209605 3.39893 0 -0.379557 +0.625 0.96875 0.263459 -0.197623 0.0423889 0.726169 0.250005 5.48004 0.964806 0 0.209605 3.39893 0 -0.379557 +0.65625 0.96875 0.263459 -0.197622 0.0423584 0.755256 0.286459 5.49892 1.00235 0 0.209605 3.39893 0 -0.379557 -0.65625 0.9375 0.255322 -0.191587 0.0847778 0.736427 0.232189 4.75612 1.04607 0 0.233923 3.39623 0 -0.391606 -0.6875 0.9375 0.255323 -0.191583 0.0847473 0.76719 0.277905 4.7337 1.0862 0 0.233923 3.39623 0 -0.391606 +0.65625 0.9375 0.255348 -0.191565 0.0844116 0.734311 0.252669 4.76779 1.04742 0 0.233923 3.39623 0 -0.391606 +0.6875 0.9375 0.255347 -0.191562 0.0843201 0.765342 0.267084 4.80832 1.08734 0 0.233923 3.39623 0 -0.391606 -0.65625 0.96875 0.263445 -0.197633 0.0429077 0.757388 0.297217 5.53179 1.00115 0 0.209605 3.39893 0 -0.379557 -0.6875 0.96875 0.263445 -0.197631 0.0426941 0.789279 0.309404 5.49604 1.04128 0 0.209605 3.39893 0 -0.379557 +0.65625 0.96875 0.263459 -0.197622 0.0423584 0.755741 0.286459 5.49892 1.00235 0 0.209605 3.39893 0 -0.379557 +0.6875 0.96875 0.263458 -0.19762 0.0422668 0.786771 0.287435 5.50607 1.04231 0 0.209605 3.39893 0 -0.379557 -0.625 0.96875 0.263444 -0.197635 0.0429077 0.727617 0.198615 5.46239 0.963482 0 0.209605 3.39893 0 -0.379557 -0.65625 0.96875 0.263445 -0.197633 0.0429077 0.757388 0.297217 5.53179 1.00115 0 0.209605 3.39893 0 -0.379557 +0.625 0.96875 0.263459 -0.197623 0.0423889 0.725392 0.250005 5.48004 0.964806 0 0.209605 3.39893 0 -0.379557 +0.65625 0.96875 0.263459 -0.197622 0.0423584 0.755447 0.286459 5.49892 1.00235 0 0.209605 3.39893 0 -0.379557 -0.625 1 0.271828 -0.203871 0.000274658 0.748743 0.244294 6.4282 0.918431 0 0.184515 3.40172 0 -0.367879 -0.65625 1 0.271828 -0.203871 0.000152588 0.779388 0.282197 6.50222 0.955889 0 0.184515 3.40172 0 -0.367879 +0.625 1 0.271828 -0.203871 -0.000244141 0.746615 0.288996 5.88106 0.919951 0 0.184515 3.40172 0 -0.367879 +0.65625 1 0.271828 -0.203871 -0.000244141 0.776671 0.294995 5.87612 0.957589 0 0.184515 3.40172 0 -0.367879 -0.65625 0.96875 0.263445 -0.197633 0.0429077 0.757388 0.297217 5.53179 1.00115 0 0.209605 3.39893 0 -0.379557 -0.6875 0.96875 0.263445 -0.197631 0.0426941 0.789279 0.309404 5.49604 1.04128 0 0.209605 3.39893 0 -0.379557 +0.65625 0.96875 0.263459 -0.197622 0.0423584 0.75494 0.286459 5.49892 1.00235 0 0.209605 3.39893 0 -0.379557 +0.6875 0.96875 0.263458 -0.19762 0.0422668 0.786953 0.287435 5.50607 1.04231 0 0.209605 3.39893 0 -0.379557 -0.65625 1 0.271828 -0.203871 0.000152588 0.779388 0.282197 6.50222 0.955889 0 0.184515 3.40172 0 -0.367879 -0.6875 1 0.271828 -0.203871 0.000213623 0.812081 0.28944 6.3758 0.99604 0 0.184515 3.40172 0 -0.367879 +0.65625 1 0.271828 -0.203871 -0.000244141 0.777154 0.294995 5.87612 0.957589 0 0.184515 3.40172 0 -0.367879 +0.6875 1 0.271828 -0.203871 -0.000335693 0.809166 0.294972 5.8785 0.997581 0 0.184515 3.40172 0 -0.367879 -0.6875 0.9375 0.255323 -0.191583 0.0847473 0.76719 0.277905 4.7337 1.0862 0 0.233923 3.39623 0 -0.391606 -0.71875 0.9375 0.255323 -0.191579 0.0846252 0.799923 0.272049 4.68807 1.12881 0 0.233923 3.39623 0 -0.391606 +0.6875 0.9375 0.255347 -0.191562 0.0843201 0.764821 0.267084 4.80832 1.08734 0 0.233923 3.39623 0 -0.391606 +0.71875 0.9375 0.255347 -0.191558 0.0842896 0.797854 0.212369 4.81473 1.12983 0 0.233923 3.39623 0 -0.391606 -0.6875 0.96875 0.263445 -0.197631 0.0426941 0.789279 0.309404 5.49604 1.04128 0 0.209605 3.39893 0 -0.379557 -0.71875 0.96875 0.263445 -0.197629 0.0426941 0.82296 0.283804 5.49428 1.0839 0 0.209605 3.39893 0 -0.379557 +0.6875 0.96875 0.263458 -0.19762 0.0422668 0.787257 0.287435 5.50607 1.04231 0 0.209605 3.39893 0 -0.379557 +0.71875 0.96875 0.263458 -0.197618 0.0422668 0.82029 0.289822 5.50192 1.08488 0 0.209605 3.39893 0 -0.379557 -0.71875 0.9375 0.255323 -0.191579 0.0846252 0.799923 0.272049 4.68807 1.12881 0 0.233923 3.39623 0 -0.391606 -0.75 0.9375 0.255322 -0.191574 0.0846558 0.834719 0.247923 4.63941 1.17426 0 0.233923 3.39623 0 -0.391606 +0.71875 0.9375 0.255347 -0.191558 0.0842896 0.797242 0.212369 4.81473 1.12983 0 0.233923 3.39623 0 -0.391606 +0.75 0.9375 0.255347 -0.191555 0.0846252 0.832291 0.268962 4.84387 1.17535 0 0.233923 3.39623 0 -0.391606 -0.71875 0.96875 0.263445 -0.197629 0.0426941 0.82296 0.283804 5.49428 1.0839 0 0.209605 3.39893 0 -0.379557 -0.75 0.96875 0.263445 -0.197626 0.0426636 0.858942 0.30788 5.49 1.12939 0 0.209605 3.39893 0 -0.379557 +0.71875 0.96875 0.263458 -0.197618 0.0422668 0.820879 0.289822 5.50192 1.08488 0 0.209605 3.39893 0 -0.379557 +0.75 0.96875 0.263458 -0.197616 0.0421753 0.855928 0.299675 5.57308 1.13016 0 0.209605 3.39893 0 -0.379557 -0.6875 0.96875 0.263445 -0.197631 0.0426941 0.789279 0.309404 5.49604 1.04128 0 0.209605 3.39893 0 -0.379557 -0.71875 0.96875 0.263445 -0.197629 0.0426941 0.82296 0.283804 5.49428 1.0839 0 0.209605 3.39893 0 -0.379557 +0.6875 0.96875 0.263458 -0.19762 0.0422668 0.786436 0.287435 5.50607 1.04231 0 0.209605 3.39893 0 -0.379557 +0.71875 0.96875 0.263458 -0.197618 0.0422668 0.820474 0.289822 5.50192 1.08488 0 0.209605 3.39893 0 -0.379557 -0.6875 1 0.271828 -0.203871 0.000213623 0.812081 0.28944 6.3758 0.99604 0 0.184515 3.40172 0 -0.367879 -0.71875 1 0.271828 -0.203871 9.15527e-05 0.846899 0.294952 6.42611 1.03861 0 0.184515 3.40172 0 -0.367879 +0.6875 1 0.271828 -0.203871 -0.000335693 0.809676 0.294972 5.8785 0.997581 0 0.184515 3.40172 0 -0.367879 +0.71875 1 0.271828 -0.203871 -0.000335693 0.843714 0.288585 5.87712 1.04021 0 0.184515 3.40172 0 -0.367879 -0.71875 0.96875 0.263445 -0.197629 0.0426941 0.82296 0.283804 5.49428 1.0839 0 0.209605 3.39893 0 -0.379557 -0.75 0.96875 0.263445 -0.197626 0.0426636 0.858942 0.30788 5.49 1.12939 0 0.209605 3.39893 0 -0.379557 +0.71875 0.96875 0.263458 -0.197618 0.0422668 0.819916 0.289822 5.50192 1.08488 0 0.209605 3.39893 0 -0.379557 +0.75 0.96875 0.263458 -0.197616 0.0421753 0.8562 0.299675 5.57308 1.13016 0 0.209605 3.39893 0 -0.379557 -0.71875 1 0.271828 -0.203871 9.15527e-05 0.846899 0.294952 6.42611 1.03861 0 0.184515 3.40172 0 -0.367879 -0.75 1 0.271828 -0.203871 9.15527e-05 0.883906 0.249044 6.41196 1.08399 0 0.184515 3.40172 0 -0.367879 +0.71875 1 0.271828 -0.203871 -0.000335693 0.844266 0.288585 5.87712 1.04021 0 0.184515 3.40172 0 -0.367879 +0.75 1 0.271828 -0.203871 -0.000396729 0.88055 0.282842 5.8896 1.08555 0 0.184515 3.40172 0 -0.367879 -0.75 0.75 0.211637 -0.158957 0.327545 0.705734 0.239017 2.33892 1.43876 0 0.3649 3.38168 0 -0.472367 -0.78125 0.75 0.211639 -0.15894 0.327606 0.736413 0.176012 2.30319 1.48713 0 0.3649 3.38168 0 -0.472367 +0.75 0.75 0.21169 -0.158898 0.328278 0.704864 0.207469 2.34459 1.44088 0 0.3649 3.38168 0 -0.472367 +0.78125 0.75 0.211689 -0.158884 0.328094 0.735946 0.218081 2.34352 1.48902 0 0.3649 3.38168 0 -0.472367 -0.75 0.78125 0.218357 -0.163982 0.28772 0.725715 0.246586 2.53767 1.39524 0 0.34474 3.38392 0 -0.457833 -0.78125 0.78125 0.218358 -0.163967 0.287781 0.757353 0.0966618 2.50524 1.44359 0 0.34474 3.38392 0 -0.457833 +0.75 0.78125 0.218407 -0.163928 0.288361 0.725076 0.224107 2.57392 1.39696 0 0.34474 3.38392 0 -0.457833 +0.78125 0.78125 0.218406 -0.163916 0.288483 0.756158 0.202116 2.56421 1.44525 0 0.34474 3.38392 0 -0.457833 -0.78125 0.75 0.211639 -0.15894 0.327606 0.736413 0.176012 2.30319 1.48713 0 0.3649 3.38168 0 -0.472367 -0.8125 0.75 0.211643 -0.158922 0.327789 0.768888 0.115341 2.22849 1.53845 0 0.3649 3.38168 0 -0.472367 +0.78125 0.75 0.211689 -0.158884 0.328094 0.735477 0.218081 2.34352 1.48902 0 0.3649 3.38168 0 -0.472367 +0.8125 0.75 0.211688 -0.158871 0.328186 0.768466 0.199855 2.34894 1.54032 0 0.3649 3.38168 0 -0.472367 -0.78125 0.78125 0.218358 -0.163967 0.287781 0.757353 0.0966618 2.50524 1.44359 0 0.34474 3.38392 0 -0.457833 -0.8125 0.78125 0.218361 -0.163951 0.288696 0.79056 0.0733595 2.48066 1.49518 0 0.34474 3.38392 0 -0.457833 +0.78125 0.78125 0.218406 -0.163916 0.288483 0.756617 0.202116 2.56421 1.44525 0 0.34474 3.38392 0 -0.457833 +0.8125 0.78125 0.218406 -0.163903 0.288483 0.789606 0.191641 2.57605 1.49646 0 0.34474 3.38392 0 -0.457833 -0.75 0.78125 0.218357 -0.163982 0.28772 0.725715 0.246586 2.53767 1.39524 0 0.34474 3.38392 0 -0.457833 -0.78125 0.78125 0.218358 -0.163967 0.287781 0.757353 0.0966618 2.50524 1.44359 0 0.34474 3.38392 0 -0.457833 +0.75 0.78125 0.218407 -0.163928 0.288361 0.724382 0.224107 2.57392 1.39696 0 0.34474 3.38392 0 -0.457833 +0.78125 0.78125 0.218406 -0.163916 0.288483 0.756393 0.202116 2.56421 1.44525 0 0.34474 3.38392 0 -0.457833 -0.75 0.8125 0.22529 -0.169165 0.247864 0.746015 0.221811 2.77423 1.35134 0 0.32394 3.38623 0 -0.443747 -0.78125 0.8125 0.225291 -0.169152 0.248169 0.778551 0.12772 2.76371 1.39977 0 0.32394 3.38623 0 -0.443747 +0.75 0.8125 0.225338 -0.169116 0.248413 0.745209 0.226858 2.82999 1.35304 0 0.32394 3.38623 0 -0.443747 +0.78125 0.8125 0.225338 -0.169105 0.248352 0.777219 0.22876 2.84028 1.40118 0 0.32394 3.38623 0 -0.443747 -0.78125 0.78125 0.218358 -0.163967 0.287781 0.757353 0.0966618 2.50524 1.44359 0 0.34474 3.38392 0 -0.457833 -0.8125 0.78125 0.218361 -0.163951 0.288696 0.79056 0.0733595 2.48066 1.49518 0 0.34474 3.38392 0 -0.457833 +0.78125 0.78125 0.218406 -0.163916 0.288483 0.75585 0.202116 2.56421 1.44525 0 0.34474 3.38392 0 -0.457833 +0.8125 0.78125 0.218406 -0.163903 0.288483 0.7899 0.191641 2.57605 1.49646 0 0.34474 3.38392 0 -0.457833 -0.78125 0.8125 0.225291 -0.169152 0.248169 0.778551 0.12772 2.76371 1.39977 0 0.32394 3.38623 0 -0.443747 -0.8125 0.8125 0.225294 -0.169137 0.248505 0.813073 0.0721121 2.81137 1.45117 0 0.32394 3.38623 0 -0.443747 +0.78125 0.8125 0.225338 -0.169105 0.248352 0.777768 0.22876 2.84028 1.40118 0 0.32394 3.38623 0 -0.443747 +0.8125 0.8125 0.225338 -0.169094 0.248383 0.811818 0.222412 2.86979 1.45253 0 0.32394 3.38623 0 -0.443747 -0.8125 0.75 0.211643 -0.158922 0.327789 0.768888 0.115341 2.22849 1.53845 0 0.3649 3.38168 0 -0.472367 -0.84375 0.75 0.211648 -0.158902 0.328308 0.803384 0.085794 2.26615 1.59328 0 0.3649 3.38168 0 -0.472367 +0.8125 0.75 0.211688 -0.158871 0.328186 0.767921 0.199855 2.34894 1.54032 0 0.3649 3.38168 0 -0.472367 +0.84375 0.75 0.211688 -0.158856 0.328186 0.803056 0.188717 2.34861 1.59484 0 0.3649 3.38168 0 -0.472367 -0.8125 0.78125 0.218361 -0.163951 0.288696 0.79056 0.0733595 2.48066 1.49518 0 0.34474 3.38392 0 -0.457833 -0.84375 0.78125 0.218367 -0.163932 0.288757 0.826313 0.0835225 2.47289 1.5498 0 0.34474 3.38392 0 -0.457833 +0.8125 0.78125 0.218406 -0.163903 0.288483 0.790144 0.191641 2.57605 1.49646 0 0.34474 3.38392 0 -0.457833 +0.84375 0.78125 0.218406 -0.16389 0.288696 0.825279 0.208084 2.58087 1.5512 0 0.34474 3.38392 0 -0.457833 -0.84375 0.75 0.211648 -0.158902 0.328308 0.803384 0.085794 2.26615 1.59328 0 0.3649 3.38168 0 -0.472367 -0.875 0.75 0.211656 -0.15888 0.328705 0.840204 0.0958482 2.21962 1.65165 0 0.3649 3.38168 0 -0.472367 +0.84375 0.75 0.211688 -0.158856 0.328186 0.80246 0.188717 2.34861 1.59484 0 0.3649 3.38168 0 -0.472367 +0.875 0.75 0.21169 -0.158842 0.328369 0.83989 0.194198 2.36235 1.65305 0 0.3649 3.38168 0 -0.472367 -0.84375 0.78125 0.218367 -0.163932 0.288757 0.826313 0.0835225 2.47289 1.5498 0 0.34474 3.38392 0 -0.457833 -0.875 0.78125 0.218374 -0.163913 0.289581 0.863951 0.110324 2.43965 1.60807 0 0.34474 3.38392 0 -0.457833 +0.84375 0.78125 0.218406 -0.16389 0.288696 0.825857 0.208084 2.58087 1.5512 0 0.34474 3.38392 0 -0.457833 +0.875 0.78125 0.218408 -0.163877 0.288574 0.863287 0.240091 2.60328 1.60933 0 0.34474 3.38392 0 -0.457833 -0.8125 0.78125 0.218361 -0.163951 0.288696 0.79056 0.0733595 2.48066 1.49518 0 0.34474 3.38392 0 -0.457833 -0.84375 0.78125 0.218367 -0.163932 0.288757 0.826313 0.0835225 2.47289 1.5498 0 0.34474 3.38392 0 -0.457833 +0.8125 0.78125 0.218406 -0.163903 0.288483 0.789312 0.191641 2.57605 1.49646 0 0.34474 3.38392 0 -0.457833 +0.84375 0.78125 0.218406 -0.16389 0.288696 0.825557 0.208084 2.58087 1.5512 0 0.34474 3.38392 0 -0.457833 -0.8125 0.8125 0.225294 -0.169137 0.248505 0.813073 0.0721121 2.81137 1.45117 0 0.32394 3.38623 0 -0.443747 -0.84375 0.8125 0.225299 -0.169121 0.249115 0.849825 0.0366915 2.76532 1.50614 0 0.32394 3.38623 0 -0.443747 +0.8125 0.8125 0.225338 -0.169094 0.248383 0.812406 0.222412 2.86979 1.45253 0 0.32394 3.38623 0 -0.443747 +0.84375 0.8125 0.225338 -0.169083 0.248383 0.848651 0.223106 2.89088 1.50718 0 0.32394 3.38623 0 -0.443747 -0.84375 0.78125 0.218367 -0.163932 0.288757 0.826313 0.0835225 2.47289 1.5498 0 0.34474 3.38392 0 -0.457833 -0.875 0.78125 0.218374 -0.163913 0.289581 0.863951 0.110324 2.43965 1.60807 0 0.34474 3.38392 0 -0.457833 +0.84375 0.78125 0.218406 -0.16389 0.288696 0.824943 0.208084 2.58087 1.5512 0 0.34474 3.38392 0 -0.457833 +0.875 0.78125 0.218408 -0.163877 0.288574 0.863627 0.240091 2.60328 1.60933 0 0.34474 3.38392 0 -0.457833 -0.84375 0.8125 0.225299 -0.169121 0.249115 0.849825 0.0366915 2.76532 1.50614 0 0.32394 3.38623 0 -0.443747 -0.875 0.8125 0.225307 -0.169104 0.249786 0.888882 0.104272 2.79553 1.56458 0 0.32394 3.38623 0 -0.443747 +0.84375 0.8125 0.225338 -0.169083 0.248383 0.849242 0.223106 2.89088 1.50718 0 0.32394 3.38623 0 -0.443747 +0.875 0.8125 0.22534 -0.169071 0.248383 0.887926 0.21365 2.90443 1.56536 0 0.32394 3.38623 0 -0.443747 -0.75 0.8125 0.22529 -0.169165 0.247864 0.746015 0.221811 2.77423 1.35134 0 0.32394 3.38623 0 -0.443747 -0.78125 0.8125 0.225291 -0.169152 0.248169 0.778551 0.12772 2.76371 1.39977 0 0.32394 3.38623 0 -0.443747 +0.75 0.8125 0.225338 -0.169116 0.248413 0.744439 0.226858 2.82999 1.35304 0 0.32394 3.38623 0 -0.443747 +0.78125 0.8125 0.225338 -0.169105 0.248352 0.777493 0.22876 2.84028 1.40118 0 0.32394 3.38623 0 -0.443747 -0.75 0.84375 0.232446 -0.17451 0.207703 0.767053 0.226794 3.10322 1.30739 0 0.302479 3.38861 0 -0.430095 -0.78125 0.84375 0.232446 -0.174499 0.207825 0.800694 0.132138 3.12265 1.35574 0 0.302479 3.38861 0 -0.430095 +0.75 0.84375 0.23249 -0.174467 0.208069 0.765918 0.223997 3.15101 1.30879 0 0.302479 3.38861 0 -0.430095 +0.78125 0.84375 0.23249 -0.174458 0.20813 0.798972 0.250461 3.18826 1.35714 0 0.302479 3.38861 0 -0.430095 -0.78125 0.8125 0.225291 -0.169152 0.248169 0.778551 0.12772 2.76371 1.39977 0 0.32394 3.38623 0 -0.443747 -0.8125 0.8125 0.225294 -0.169137 0.248505 0.813073 0.0721121 2.81137 1.45117 0 0.32394 3.38623 0 -0.443747 +0.78125 0.8125 0.225338 -0.169105 0.248352 0.776923 0.22876 2.84028 1.40118 0 0.32394 3.38623 0 -0.443747 +0.8125 0.8125 0.225338 -0.169094 0.248383 0.812124 0.222412 2.86979 1.45253 0 0.32394 3.38623 0 -0.443747 -0.78125 0.84375 0.232446 -0.174499 0.207825 0.800694 0.132138 3.12265 1.35574 0 0.302479 3.38861 0 -0.430095 -0.8125 0.84375 0.232449 -0.174486 0.208313 0.836391 0.0738492 3.13186 1.4074 0 0.302479 3.38861 0 -0.430095 +0.78125 0.84375 0.23249 -0.174458 0.20813 0.799514 0.250461 3.18826 1.35714 0 0.302479 3.38861 0 -0.430095 +0.8125 0.84375 0.23249 -0.174448 0.207947 0.834714 0.257787 3.22533 1.40842 0 0.302479 3.38861 0 -0.430095 -0.75 0.84375 0.232446 -0.17451 0.207703 0.767053 0.226794 3.10322 1.30739 0 0.302479 3.38861 0 -0.430095 -0.78125 0.84375 0.232446 -0.174499 0.207825 0.800694 0.132138 3.12265 1.35574 0 0.302479 3.38861 0 -0.430095 +0.75 0.84375 0.23249 -0.174467 0.208069 0.765076 0.223997 3.15101 1.30879 0 0.302479 3.38861 0 -0.430095 +0.78125 0.84375 0.23249 -0.174458 0.20813 0.799258 0.250461 3.18826 1.35714 0 0.302479 3.38861 0 -0.430095 -0.75 0.875 0.239831 -0.180023 0.167175 0.78897 0.228705 3.55363 1.26348 0 0.280337 3.39107 0 -0.416862 -0.78125 0.875 0.239832 -0.180014 0.167267 0.823503 0.158711 3.52401 1.31156 0 0.280337 3.39107 0 -0.416862 +0.75 0.875 0.239871 -0.179986 0.167603 0.787282 0.28322 3.61635 1.26467 0 0.280337 3.39107 0 -0.416862 +0.78125 0.875 0.239871 -0.179979 0.167297 0.821463 0.326704 3.64134 1.31283 0 0.280337 3.39107 0 -0.416862 -0.78125 0.84375 0.232446 -0.174499 0.207825 0.800694 0.132138 3.12265 1.35574 0 0.302479 3.38861 0 -0.430095 -0.8125 0.84375 0.232449 -0.174486 0.208313 0.836391 0.0738492 3.13186 1.4074 0 0.302479 3.38861 0 -0.430095 +0.78125 0.84375 0.23249 -0.174458 0.20813 0.798641 0.250461 3.18826 1.35714 0 0.302479 3.38861 0 -0.430095 +0.8125 0.84375 0.23249 -0.174448 0.207947 0.835031 0.257787 3.22533 1.40842 0 0.302479 3.38861 0 -0.430095 -0.78125 0.875 0.239832 -0.180014 0.167267 0.823503 0.158711 3.52401 1.31156 0 0.280337 3.39107 0 -0.416862 -0.8125 0.875 0.239833 -0.180004 0.167603 0.86041 0.0950882 3.53954 1.36318 0 0.280337 3.39107 0 -0.416862 +0.78125 0.875 0.239871 -0.179979 0.167297 0.822085 0.326704 3.64134 1.31283 0 0.280337 3.39107 0 -0.416862 +0.8125 0.875 0.239871 -0.179972 0.167053 0.858474 0.289362 3.6409 1.36409 0 0.280337 3.39107 0 -0.416862 -0.8125 0.8125 0.225294 -0.169137 0.248505 0.813073 0.0721121 2.81137 1.45117 0 0.32394 3.38623 0 -0.443747 -0.84375 0.8125 0.225299 -0.169121 0.249115 0.849825 0.0366915 2.76532 1.50614 0 0.32394 3.38623 0 -0.443747 +0.8125 0.8125 0.225338 -0.169094 0.248383 0.811507 0.222412 2.86979 1.45253 0 0.32394 3.38623 0 -0.443747 +0.84375 0.8125 0.225338 -0.169083 0.248383 0.84894 0.223106 2.89088 1.50718 0 0.32394 3.38623 0 -0.443747 -0.8125 0.84375 0.232449 -0.174486 0.208313 0.836391 0.0738492 3.13186 1.4074 0 0.302479 3.38861 0 -0.430095 -0.84375 0.84375 0.232454 -0.174473 0.208771 0.874215 0.0594413 3.14353 1.46209 0 0.302479 3.38861 0 -0.430095 +0.8125 0.84375 0.23249 -0.174448 0.207947 0.83533 0.257787 3.22533 1.40842 0 0.302479 3.38861 0 -0.430095 +0.84375 0.84375 0.232491 -0.174438 0.207977 0.872763 0.254885 3.22972 1.46309 0 0.302479 3.38861 0 -0.430095 -0.84375 0.8125 0.225299 -0.169121 0.249115 0.849825 0.0366915 2.76532 1.50614 0 0.32394 3.38623 0 -0.443747 -0.875 0.8125 0.225307 -0.169104 0.249786 0.888882 0.104272 2.79553 1.56458 0 0.32394 3.38623 0 -0.443747 +0.84375 0.8125 0.225338 -0.169083 0.248383 0.848336 0.223106 2.89088 1.50718 0 0.32394 3.38623 0 -0.443747 +0.875 0.8125 0.22534 -0.169071 0.248383 0.888241 0.21365 2.90443 1.56536 0 0.32394 3.38623 0 -0.443747 -0.84375 0.84375 0.232454 -0.174473 0.208771 0.874215 0.0594413 3.14353 1.46209 0 0.302479 3.38861 0 -0.430095 -0.875 0.84375 0.232461 -0.174458 0.209351 0.914744 0.0969143 3.19372 1.52077 0 0.302479 3.38861 0 -0.430095 +0.84375 0.84375 0.232491 -0.174438 0.207977 0.873374 0.254885 3.22972 1.46309 0 0.302479 3.38861 0 -0.430095 +0.875 0.84375 0.232492 -0.174429 0.207825 0.913279 0.252213 3.26206 1.52126 0 0.302479 3.38861 0 -0.430095 -0.8125 0.84375 0.232449 -0.174486 0.208313 0.836391 0.0738492 3.13186 1.4074 0 0.302479 3.38861 0 -0.430095 -0.84375 0.84375 0.232454 -0.174473 0.208771 0.874215 0.0594413 3.14353 1.46209 0 0.302479 3.38861 0 -0.430095 +0.8125 0.84375 0.23249 -0.174448 0.207947 0.834412 0.257787 3.22533 1.40842 0 0.302479 3.38861 0 -0.430095 +0.84375 0.84375 0.232491 -0.174438 0.207977 0.873048 0.254885 3.22972 1.46309 0 0.302479 3.38861 0 -0.430095 -0.8125 0.875 0.239833 -0.180004 0.167603 0.86041 0.0950882 3.53954 1.36318 0 0.280337 3.39107 0 -0.416862 -0.84375 0.875 0.239838 -0.179993 0.168091 0.899667 0.0903848 3.56352 1.41821 0 0.280337 3.39107 0 -0.416862 +0.8125 0.875 0.239871 -0.179972 0.167053 0.859065 0.289362 3.6409 1.36409 0 0.280337 3.39107 0 -0.416862 +0.84375 0.875 0.239872 -0.179964 0.167084 0.897702 0.28253 3.66726 1.41881 0 0.280337 3.39107 0 -0.416862 -0.84375 0.84375 0.232454 -0.174473 0.208771 0.874215 0.0594413 3.14353 1.46209 0 0.302479 3.38861 0 -0.430095 -0.875 0.84375 0.232461 -0.174458 0.209351 0.914744 0.0969143 3.19372 1.52077 0 0.302479 3.38861 0 -0.430095 +0.84375 0.84375 0.232491 -0.174438 0.207977 0.872395 0.254885 3.22972 1.46309 0 0.302479 3.38861 0 -0.430095 +0.875 0.84375 0.232492 -0.174429 0.207825 0.913631 0.252213 3.26206 1.52126 0 0.302479 3.38861 0 -0.430095 -0.84375 0.875 0.239838 -0.179993 0.168091 0.899667 0.0903848 3.56352 1.41821 0 0.280337 3.39107 0 -0.416862 -0.875 0.875 0.239844 -0.179981 0.168396 0.941317 0.102201 3.57748 1.47639 0 0.280337 3.39107 0 -0.416862 +0.84375 0.875 0.239872 -0.179964 0.167084 0.898336 0.28253 3.66726 1.41881 0 0.280337 3.39107 0 -0.416862 +0.875 0.875 0.239873 -0.179956 0.16684 0.939572 0.278592 3.67389 1.477 0 0.280337 3.39107 0 -0.416862 -0.875 0.75 0.211656 -0.15888 0.328705 0.840204 0.0958482 2.21962 1.65165 0 0.3649 3.38168 0 -0.472367 -0.90625 0.75 0.211665 -0.158857 0.329102 0.879306 0.113285 2.27266 1.71362 0 0.3649 3.38168 0 -0.472367 +0.875 0.75 0.21169 -0.158842 0.328369 0.839221 0.194198 2.36235 1.65305 0 0.3649 3.38168 0 -0.472367 +0.90625 0.75 0.211692 -0.158826 0.328339 0.879149 0.219552 2.37515 1.71503 0 0.3649 3.38168 0 -0.472367 -0.875 0.78125 0.218374 -0.163913 0.289581 0.863951 0.110324 2.43965 1.60807 0 0.34474 3.38392 0 -0.457833 -0.90625 0.78125 0.218384 -0.163892 0.28952 0.904736 0.184219 2.48008 1.67025 0 0.34474 3.38392 0 -0.457833 +0.875 0.78125 0.218408 -0.163877 0.288574 0.863936 0.240091 2.60328 1.60933 0 0.34474 3.38392 0 -0.457833 +0.90625 0.78125 0.21841 -0.163863 0.288483 0.903864 0.224181 2.59024 1.67123 0 0.34474 3.38392 0 -0.457833 -0.90625 0.75 0.211665 -0.158857 0.329102 0.879306 0.113285 2.27266 1.71362 0 0.3649 3.38168 0 -0.472367 -0.9375 0.75 0.211676 -0.158832 0.329437 0.92109 0.171561 2.28834 1.77974 0 0.3649 3.38168 0 -0.472367 +0.90625 0.75 0.211692 -0.158826 0.328339 0.878507 0.219552 2.37515 1.71503 0 0.3649 3.38168 0 -0.472367 +0.9375 0.75 0.211694 -0.15881 0.328247 0.920956 0.203997 2.35486 1.78084 0 0.3649 3.38168 0 -0.472367 -0.90625 0.78125 0.218384 -0.163892 0.28952 0.904736 0.184219 2.48008 1.67025 0 0.34474 3.38392 0 -0.457833 -0.9375 0.78125 0.218395 -0.163869 0.289673 0.947781 0.17903 2.50228 1.73609 0 0.34474 3.38392 0 -0.457833 +0.90625 0.78125 0.21841 -0.163863 0.288483 0.904486 0.224181 2.59024 1.67123 0 0.34474 3.38392 0 -0.457833 +0.9375 0.78125 0.218412 -0.163848 0.288544 0.946935 0.212664 2.58528 1.73725 0 0.34474 3.38392 0 -0.457833 -0.875 0.78125 0.218374 -0.163913 0.289581 0.863951 0.110324 2.43965 1.60807 0 0.34474 3.38392 0 -0.457833 -0.90625 0.78125 0.218384 -0.163892 0.28952 0.904736 0.184219 2.48008 1.67025 0 0.34474 3.38392 0 -0.457833 +0.875 0.78125 0.218408 -0.163877 0.288574 0.863005 0.240091 2.60328 1.60933 0 0.34474 3.38392 0 -0.457833 +0.90625 0.78125 0.21841 -0.163863 0.288483 0.904168 0.224181 2.59024 1.67123 0 0.34474 3.38392 0 -0.457833 -0.875 0.8125 0.225307 -0.169104 0.249786 0.888882 0.104272 2.79553 1.56458 0 0.32394 3.38623 0 -0.443747 -0.90625 0.8125 0.225317 -0.169085 0.249847 0.930754 0.177724 2.76357 1.62658 0 0.32394 3.38623 0 -0.443747 +0.875 0.8125 0.22534 -0.169071 0.248383 0.888513 0.21365 2.90443 1.56536 0 0.32394 3.38623 0 -0.443747 +0.90625 0.8125 0.225342 -0.169058 0.248474 0.929676 0.21844 2.8948 1.62739 0 0.32394 3.38623 0 -0.443747 -0.90625 0.78125 0.218384 -0.163892 0.28952 0.904736 0.184219 2.48008 1.67025 0 0.34474 3.38392 0 -0.457833 -0.9375 0.78125 0.218395 -0.163869 0.289673 0.947781 0.17903 2.50228 1.73609 0 0.34474 3.38392 0 -0.457833 +0.90625 0.78125 0.21841 -0.163863 0.288483 0.903511 0.224181 2.59024 1.67123 0 0.34474 3.38392 0 -0.457833 +0.9375 0.78125 0.218412 -0.163848 0.288544 0.947301 0.212664 2.58528 1.73725 0 0.34474 3.38392 0 -0.457833 -0.90625 0.8125 0.225317 -0.169085 0.249847 0.930754 0.177724 2.76357 1.62658 0 0.32394 3.38623 0 -0.443747 -0.9375 0.8125 0.225328 -0.169065 0.25 0.975376 0.203747 2.76274 1.69274 0 0.32394 3.38623 0 -0.443747 +0.90625 0.8125 0.225342 -0.169058 0.248474 0.930332 0.21844 2.8948 1.62739 0 0.32394 3.38623 0 -0.443747 +0.9375 0.8125 0.225345 -0.169045 0.248383 0.974122 0.196547 2.8795 1.6932 0 0.32394 3.38623 0 -0.443747 -0.9375 0.75 0.211676 -0.158832 0.329437 0.92109 0.171561 2.28834 1.77974 0 0.3649 3.38168 0 -0.472367 -0.96875 0.75 0.211688 -0.158805 0.329346 0.965658 0.214187 2.2903 1.84983 0 0.3649 3.38168 0 -0.472367 +0.9375 0.75 0.211694 -0.15881 0.328247 0.920261 0.203997 2.35486 1.78084 0 0.3649 3.38168 0 -0.472367 +0.96875 0.75 0.211697 -0.158793 0.3284 0.965402 0.194277 2.36283 1.85107 0 0.3649 3.38168 0 -0.472367 -0.9375 0.78125 0.218395 -0.163869 0.289673 0.947781 0.17903 2.50228 1.73609 0 0.34474 3.38392 0 -0.457833 -0.96875 0.78125 0.218407 -0.163843 0.289764 0.99386 0.169748 2.49667 1.80651 0 0.34474 3.38392 0 -0.457833 +0.9375 0.78125 0.218412 -0.163848 0.288544 0.947621 0.212664 2.58528 1.73725 0 0.34474 3.38392 0 -0.457833 +0.96875 0.78125 0.218416 -0.163832 0.288513 0.992762 0.198063 2.57186 1.80727 0 0.34474 3.38392 0 -0.457833 -0.96875 0.75 0.211688 -0.158805 0.329346 0.965658 0.214187 2.2903 1.84983 0 0.3649 3.38168 0 -0.472367 -1 0.75 0.2117 -0.158775 0.329346 1.01315 0.212533 2.24702 1.9246 0 0.3649 3.38168 0 -0.472367 +0.96875 0.75 0.211697 -0.158793 0.3284 0.964651 0.194277 2.36283 1.85107 0 0.3649 3.38168 0 -0.472367 +1 0.75 0.2117 -0.158775 0.3284 1.01267 0.20576 2.3514 1.92686 0 0.3649 3.38168 0 -0.472367 -0.96875 0.78125 0.218407 -0.163843 0.289764 0.99386 0.169748 2.49667 1.80651 0 0.34474 3.38392 0 -0.457833 -1 0.78125 0.21842 -0.163815 0.289978 1.04271 0.15748 2.49622 1.88127 0 0.34474 3.38392 0 -0.457833 +0.96875 0.78125 0.218416 -0.163832 0.288513 0.993504 0.198063 2.57186 1.80727 0 0.34474 3.38392 0 -0.457833 +1 0.78125 0.21842 -0.163815 0.288666 1.04152 0.179592 2.56945 1.88329 0 0.34474 3.38392 0 -0.457833 -0.9375 0.78125 0.218395 -0.163869 0.289673 0.947781 0.17903 2.50228 1.73609 0 0.34474 3.38392 0 -0.457833 -0.96875 0.78125 0.218407 -0.163843 0.289764 0.99386 0.169748 2.49667 1.80651 0 0.34474 3.38392 0 -0.457833 +0.9375 0.78125 0.218412 -0.163848 0.288544 0.946611 0.212664 2.58528 1.73725 0 0.34474 3.38392 0 -0.457833 +0.96875 0.78125 0.218416 -0.163832 0.288513 0.993136 0.198063 2.57186 1.80727 0 0.34474 3.38392 0 -0.457833 -0.9375 0.8125 0.225328 -0.169065 0.25 0.975376 0.203747 2.76274 1.69274 0 0.32394 3.38623 0 -0.443747 -0.96875 0.8125 0.22534 -0.169041 0.249969 1.02285 0.225134 2.77105 1.76292 0 0.32394 3.38623 0 -0.443747 +0.9375 0.8125 0.225345 -0.169045 0.248383 0.974808 0.196547 2.8795 1.6932 0 0.32394 3.38623 0 -0.443747 +0.96875 0.8125 0.225348 -0.169031 0.248657 1.02133 0.182996 2.87694 1.7635 0 0.32394 3.38623 0 -0.443747 -0.96875 0.78125 0.218407 -0.163843 0.289764 0.99386 0.169748 2.49667 1.80651 0 0.34474 3.38392 0 -0.457833 -1 0.78125 0.21842 -0.163815 0.289978 1.04271 0.15748 2.49622 1.88127 0 0.34474 3.38392 0 -0.457833 +0.96875 0.78125 0.218416 -0.163832 0.288513 0.992382 0.198063 2.57186 1.80727 0 0.34474 3.38392 0 -0.457833 +1 0.78125 0.21842 -0.163815 0.288666 1.04196 0.179592 2.56945 1.88329 0 0.34474 3.38392 0 -0.457833 -0.96875 0.8125 0.22534 -0.169041 0.249969 1.02285 0.225134 2.77105 1.76292 0 0.32394 3.38623 0 -0.443747 -1 0.8125 0.225353 -0.169015 0.249969 1.07352 0.225286 2.81962 1.83787 0 0.32394 3.38623 0 -0.443747 +0.96875 0.8125 0.225348 -0.169031 0.248657 1.02206 0.182996 2.87694 1.7635 0 0.32394 3.38623 0 -0.443747 +1 0.8125 0.225353 -0.169015 0.248688 1.07164 0.204501 2.88784 1.8395 0 0.32394 3.38623 0 -0.443747 -0.875 0.8125 0.225307 -0.169104 0.249786 0.888882 0.104272 2.79553 1.56458 0 0.32394 3.38623 0 -0.443747 -0.90625 0.8125 0.225317 -0.169085 0.249847 0.930754 0.177724 2.76357 1.62658 0 0.32394 3.38623 0 -0.443747 +0.875 0.8125 0.22534 -0.169071 0.248383 0.887546 0.21365 2.90443 1.56536 0 0.32394 3.38623 0 -0.443747 +0.90625 0.8125 0.225342 -0.169058 0.248474 0.929948 0.21844 2.8948 1.62739 0 0.32394 3.38623 0 -0.443747 -0.875 0.84375 0.232461 -0.174458 0.209351 0.914744 0.0969143 3.19372 1.52077 0 0.302479 3.38861 0 -0.430095 -0.90625 0.84375 0.23247 -0.174442 0.209564 0.957824 0.161085 3.14399 1.58275 0 0.302479 3.38861 0 -0.430095 +0.875 0.84375 0.232492 -0.174429 0.207825 0.913961 0.252213 3.26206 1.52126 0 0.302479 3.38861 0 -0.430095 +0.90625 0.84375 0.232494 -0.174418 0.207825 0.956363 0.216951 3.27255 1.58324 0 0.302479 3.38861 0 -0.430095 -0.90625 0.8125 0.225317 -0.169085 0.249847 0.930754 0.177724 2.76357 1.62658 0 0.32394 3.38623 0 -0.443747 -0.9375 0.8125 0.225328 -0.169065 0.25 0.975376 0.203747 2.76274 1.69274 0 0.32394 3.38623 0 -0.443747 +0.90625 0.8125 0.225342 -0.169058 0.248474 0.929287 0.21844 2.8948 1.62739 0 0.32394 3.38623 0 -0.443747 +0.9375 0.8125 0.225345 -0.169045 0.248383 0.974448 0.196547 2.8795 1.6932 0 0.32394 3.38623 0 -0.443747 -0.90625 0.84375 0.23247 -0.174442 0.209564 0.957824 0.161085 3.14399 1.58275 0 0.302479 3.38861 0 -0.430095 -0.9375 0.84375 0.232481 -0.174424 0.209717 1.00385 0.202319 3.11679 1.64889 0 0.302479 3.38861 0 -0.430095 +0.90625 0.84375 0.232494 -0.174418 0.207825 0.957036 0.216951 3.27255 1.58324 0 0.302479 3.38861 0 -0.430095 +0.9375 0.84375 0.232497 -0.174406 0.207947 1.0022 0.208459 3.23463 1.64922 0 0.302479 3.38861 0 -0.430095 -0.875 0.84375 0.232461 -0.174458 0.209351 0.914744 0.0969143 3.19372 1.52077 0 0.302479 3.38861 0 -0.430095 -0.90625 0.84375 0.23247 -0.174442 0.209564 0.957824 0.161085 3.14399 1.58275 0 0.302479 3.38861 0 -0.430095 +0.875 0.84375 0.232492 -0.174429 0.207825 0.912932 0.252213 3.26206 1.52126 0 0.302479 3.38861 0 -0.430095 +0.90625 0.84375 0.232494 -0.174418 0.207825 0.956725 0.216951 3.27255 1.58324 0 0.302479 3.38861 0 -0.430095 -0.875 0.875 0.239844 -0.179981 0.168396 0.941317 0.102201 3.57748 1.47639 0 0.280337 3.39107 0 -0.416862 -0.90625 0.875 0.239852 -0.179968 0.168793 0.985927 0.10689 3.55015 1.53878 0 0.280337 3.39107 0 -0.416862 +0.875 0.875 0.239873 -0.179956 0.16684 0.940229 0.278592 3.67389 1.477 0 0.280337 3.39107 0 -0.416862 +0.90625 0.875 0.239875 -0.179947 0.166809 0.984022 0.216279 3.66032 1.53891 0 0.280337 3.39107 0 -0.416862 -0.90625 0.84375 0.23247 -0.174442 0.209564 0.957824 0.161085 3.14399 1.58275 0 0.302479 3.38861 0 -0.430095 -0.9375 0.84375 0.232481 -0.174424 0.209717 1.00385 0.202319 3.11679 1.64889 0 0.302479 3.38861 0 -0.430095 +0.90625 0.84375 0.232494 -0.174418 0.207825 0.956008 0.216951 3.27255 1.58324 0 0.302479 3.38861 0 -0.430095 +0.9375 0.84375 0.232497 -0.174406 0.207947 1.00252 0.208459 3.23463 1.64922 0 0.302479 3.38861 0 -0.430095 -0.90625 0.875 0.239852 -0.179968 0.168793 0.985927 0.10689 3.55015 1.53878 0 0.280337 3.39107 0 -0.416862 -0.9375 0.875 0.239863 -0.179954 0.169189 1.03333 0.193877 3.55573 1.60504 0 0.280337 3.39107 0 -0.416862 +0.90625 0.875 0.239875 -0.179947 0.166809 0.984723 0.216279 3.66032 1.53891 0 0.280337 3.39107 0 -0.416862 +0.9375 0.875 0.239878 -0.179938 0.167023 1.03124 0.202494 3.6641 1.60498 0 0.280337 3.39107 0 -0.416862 -0.9375 0.8125 0.225328 -0.169065 0.25 0.975376 0.203747 2.76274 1.69274 0 0.32394 3.38623 0 -0.443747 -0.96875 0.8125 0.22534 -0.169041 0.249969 1.02285 0.225134 2.77105 1.76292 0 0.32394 3.38623 0 -0.443747 +0.9375 0.8125 0.225345 -0.169045 0.248383 0.973699 0.196547 2.8795 1.6932 0 0.32394 3.38623 0 -0.443747 +0.96875 0.8125 0.225348 -0.169031 0.248657 1.02171 0.182996 2.87694 1.7635 0 0.32394 3.38623 0 -0.443747 -0.9375 0.84375 0.232481 -0.174424 0.209717 1.00385 0.202319 3.11679 1.64889 0 0.302479 3.38861 0 -0.430095 -0.96875 0.84375 0.232494 -0.174404 0.209747 1.053 0.254198 3.12734 1.71938 0 0.302479 3.38861 0 -0.430095 +0.9375 0.84375 0.232497 -0.174406 0.207947 1.00293 0.208459 3.23463 1.64922 0 0.302479 3.38861 0 -0.430095 +0.96875 0.84375 0.232502 -0.174394 0.207977 1.05094 0.21428 3.26141 1.71943 0 0.302479 3.38861 0 -0.430095 -0.96875 0.8125 0.22534 -0.169041 0.249969 1.02285 0.225134 2.77105 1.76292 0 0.32394 3.38623 0 -0.443747 -1 0.8125 0.225353 -0.169015 0.249969 1.07352 0.225286 2.81962 1.83787 0 0.32394 3.38623 0 -0.443747 +0.96875 0.8125 0.225348 -0.169031 0.248657 1.02089 0.182996 2.87694 1.7635 0 0.32394 3.38623 0 -0.443747 +1 0.8125 0.225353 -0.169015 0.248688 1.07209 0.204501 2.88784 1.8395 0 0.32394 3.38623 0 -0.443747 -0.96875 0.84375 0.232494 -0.174404 0.209747 1.053 0.254198 3.12734 1.71938 0 0.302479 3.38861 0 -0.430095 -1 0.84375 0.232507 -0.17438 0.209564 1.10523 0.283494 3.15373 1.79408 0 0.302479 3.38861 0 -0.430095 +0.96875 0.84375 0.232502 -0.174394 0.207977 1.05175 0.21428 3.26141 1.71943 0 0.302479 3.38861 0 -0.430095 +1 0.84375 0.232507 -0.17438 0.208038 1.10294 0.211925 3.27117 1.79544 0 0.302479 3.38861 0 -0.430095 -0.9375 0.84375 0.232481 -0.174424 0.209717 1.00385 0.202319 3.11679 1.64889 0 0.302479 3.38861 0 -0.430095 -0.96875 0.84375 0.232494 -0.174404 0.209747 1.053 0.254198 3.12734 1.71938 0 0.302479 3.38861 0 -0.430095 +0.9375 0.84375 0.232497 -0.174406 0.207947 1.00178 0.208459 3.23463 1.64922 0 0.302479 3.38861 0 -0.430095 +0.96875 0.84375 0.232502 -0.174394 0.207977 1.05138 0.21428 3.26141 1.71943 0 0.302479 3.38861 0 -0.430095 -0.9375 0.875 0.239863 -0.179954 0.169189 1.03333 0.193877 3.55573 1.60504 0 0.280337 3.39107 0 -0.416862 -0.96875 0.875 0.239875 -0.179936 0.169006 1.08408 0.262344 3.50884 1.67538 0 0.280337 3.39107 0 -0.416862 +0.9375 0.875 0.239878 -0.179938 0.167023 1.03197 0.202494 3.6641 1.60498 0 0.280337 3.39107 0 -0.416862 +0.96875 0.875 0.239882 -0.179927 0.167053 1.08156 0.229262 3.65827 1.67521 0 0.280337 3.39107 0 -0.416862 -0.96875 0.84375 0.232494 -0.174404 0.209747 1.053 0.254198 3.12734 1.71938 0 0.302479 3.38861 0 -0.430095 -1 0.84375 0.232507 -0.17438 0.209564 1.10523 0.283494 3.15373 1.79408 0 0.302479 3.38861 0 -0.430095 +0.96875 0.84375 0.232502 -0.174394 0.207977 1.05056 0.21428 3.26141 1.71943 0 0.302479 3.38861 0 -0.430095 +1 0.84375 0.232507 -0.17438 0.208038 1.10335 0.211925 3.27117 1.79544 0 0.302479 3.38861 0 -0.430095 -0.96875 0.875 0.239875 -0.179936 0.169006 1.08408 0.262344 3.50884 1.67538 0 0.280337 3.39107 0 -0.416862 -1 0.875 0.239888 -0.179916 0.168976 1.13811 0.255301 3.58786 1.75042 0 0.280337 3.39107 0 -0.416862 +0.96875 0.875 0.239882 -0.179927 0.167053 1.08238 0.229262 3.65827 1.67521 0 0.280337 3.39107 0 -0.416862 +1 0.875 0.239888 -0.179916 0.167053 1.13517 0.236687 3.68161 1.75123 0 0.280337 3.39107 0 -0.416862 -0.75 0.875 0.239831 -0.180023 0.167175 0.78897 0.228705 3.55363 1.26348 0 0.280337 3.39107 0 -0.416862 -0.78125 0.875 0.239832 -0.180014 0.167267 0.823503 0.158711 3.52401 1.31156 0 0.280337 3.39107 0 -0.416862 +0.75 0.875 0.239871 -0.179986 0.167603 0.786451 0.28322 3.61635 1.26467 0 0.280337 3.39107 0 -0.416862 +0.78125 0.875 0.239871 -0.179979 0.167297 0.821739 0.326704 3.64134 1.31283 0 0.280337 3.39107 0 -0.416862 -0.75 0.90625 0.247454 -0.185709 0.125854 0.811463 0.221645 4.04326 1.21872 0 0.257493 3.39361 0 -0.404037 -0.78125 0.90625 0.247454 -0.185702 0.126282 0.847292 0.102902 4.06983 1.26741 0 0.257493 3.39361 0 -0.404037 +0.75 0.90625 0.247487 -0.18568 0.12616 0.809597 0.263641 4.17412 1.22001 0 0.257493 3.39361 0 -0.404037 +0.78125 0.90625 0.247487 -0.185675 0.126068 0.844884 0.295198 4.18657 1.26827 0 0.257493 3.39361 0 -0.404037 -0.78125 0.875 0.239832 -0.180014 0.167267 0.823503 0.158711 3.52401 1.31156 0 0.280337 3.39107 0 -0.416862 -0.8125 0.875 0.239833 -0.180004 0.167603 0.86041 0.0950882 3.53954 1.36318 0 0.280337 3.39107 0 -0.416862 +0.78125 0.875 0.239871 -0.179979 0.167297 0.821195 0.326704 3.64134 1.31283 0 0.280337 3.39107 0 -0.416862 +0.8125 0.875 0.239871 -0.179972 0.167053 0.858728 0.289362 3.6409 1.36409 0 0.280337 3.39107 0 -0.416862 -0.78125 0.90625 0.247454 -0.185702 0.126282 0.847292 0.102902 4.06983 1.26741 0 0.257493 3.39361 0 -0.404037 -0.8125 0.90625 0.247455 -0.185695 0.126678 0.885288 0.100734 4.07644 1.31897 0 0.257493 3.39361 0 -0.404037 +0.78125 0.90625 0.247487 -0.185675 0.126068 0.845396 0.295198 4.18657 1.26827 0 0.257493 3.39361 0 -0.404037 +0.8125 0.90625 0.247488 -0.18567 0.125916 0.882929 0.309365 4.17533 1.31962 0 0.257493 3.39361 0 -0.404037 -0.75 0.90625 0.247454 -0.185709 0.125854 0.811463 0.221645 4.04326 1.21872 0 0.257493 3.39361 0 -0.404037 -0.78125 0.90625 0.247454 -0.185702 0.126282 0.847292 0.102902 4.06983 1.26741 0 0.257493 3.39361 0 -0.404037 +0.75 0.90625 0.247487 -0.18568 0.12616 0.808735 0.263641 4.17412 1.22001 0 0.257493 3.39361 0 -0.404037 +0.78125 0.90625 0.247487 -0.185675 0.126068 0.845131 0.295198 4.18657 1.26827 0 0.257493 3.39361 0 -0.404037 -0.75 0.9375 0.255322 -0.191574 0.0846558 0.834719 0.247923 4.63941 1.17426 0 0.233923 3.39623 0 -0.391606 -0.78125 0.9375 0.255322 -0.19157 0.0846252 0.871729 0.194121 4.75666 1.22254 0 0.233923 3.39623 0 -0.391606 +0.75 0.9375 0.255347 -0.191555 0.0846252 0.832599 0.268962 4.84387 1.17535 0 0.233923 3.39623 0 -0.391606 +0.78125 0.9375 0.255347 -0.191551 0.084259 0.868994 0.35065 4.82317 1.22349 0 0.233923 3.39623 0 -0.391606 -0.78125 0.90625 0.247454 -0.185702 0.126282 0.847292 0.102902 4.06983 1.26741 0 0.257493 3.39361 0 -0.404037 -0.8125 0.90625 0.247455 -0.185695 0.126678 0.885288 0.100734 4.07644 1.31897 0 0.257493 3.39361 0 -0.404037 +0.78125 0.90625 0.247487 -0.185675 0.126068 0.844481 0.295198 4.18657 1.26827 0 0.257493 3.39361 0 -0.404037 +0.8125 0.90625 0.247488 -0.18567 0.125916 0.883194 0.309365 4.17533 1.31962 0 0.257493 3.39361 0 -0.404037 -0.78125 0.9375 0.255322 -0.19157 0.0846252 0.871729 0.194121 4.75666 1.22254 0 0.233923 3.39623 0 -0.391606 -0.8125 0.9375 0.255322 -0.191565 0.0848694 0.911138 0.0942462 4.71213 1.27423 0 0.233923 3.39623 0 -0.391606 +0.78125 0.9375 0.255347 -0.191551 0.084259 0.869602 0.35065 4.82317 1.22349 0 0.233923 3.39623 0 -0.391606 +0.8125 0.9375 0.255347 -0.191548 0.0840759 0.908315 0.302117 4.80305 1.27479 0 0.233923 3.39623 0 -0.391606 -0.8125 0.875 0.239833 -0.180004 0.167603 0.86041 0.0950882 3.53954 1.36318 0 0.280337 3.39107 0 -0.416862 -0.84375 0.875 0.239838 -0.179993 0.168091 0.899667 0.0903848 3.56352 1.41821 0 0.280337 3.39107 0 -0.416862 +0.8125 0.875 0.239871 -0.179972 0.167053 0.85812 0.289362 3.6409 1.36409 0 0.280337 3.39107 0 -0.416862 +0.84375 0.875 0.239872 -0.179964 0.167084 0.898004 0.28253 3.66726 1.41881 0 0.280337 3.39107 0 -0.416862 -0.8125 0.90625 0.247455 -0.185695 0.126678 0.885288 0.100734 4.07644 1.31897 0 0.257493 3.39361 0 -0.404037 -0.84375 0.90625 0.247458 -0.185687 0.126953 0.925616 0.0780835 4.07509 1.37356 0 0.257493 3.39361 0 -0.404037 +0.8125 0.90625 0.247488 -0.18567 0.125916 0.88355 0.309365 4.17533 1.31962 0 0.257493 3.39361 0 -0.404037 +0.84375 0.90625 0.247488 -0.185664 0.125763 0.923434 0.312349 4.1812 1.37431 0 0.257493 3.39361 0 -0.404037 -0.84375 0.875 0.239838 -0.179993 0.168091 0.899667 0.0903848 3.56352 1.41821 0 0.280337 3.39107 0 -0.416862 -0.875 0.875 0.239844 -0.179981 0.168396 0.941317 0.102201 3.57748 1.47639 0 0.280337 3.39107 0 -0.416862 +0.84375 0.875 0.239872 -0.179964 0.167084 0.897326 0.28253 3.66726 1.41881 0 0.280337 3.39107 0 -0.416862 +0.875 0.875 0.239873 -0.179956 0.16684 0.939902 0.278592 3.67389 1.477 0 0.280337 3.39107 0 -0.416862 -0.84375 0.90625 0.247458 -0.185687 0.126953 0.925616 0.0780835 4.07509 1.37356 0 0.257493 3.39361 0 -0.404037 -0.875 0.90625 0.247463 -0.185678 0.127502 0.968888 0.0729731 4.0687 1.43239 0 0.257493 3.39361 0 -0.404037 +0.84375 0.90625 0.247488 -0.185664 0.125763 0.924081 0.312349 4.1812 1.37431 0 0.257493 3.39361 0 -0.404037 +0.875 0.90625 0.247489 -0.185658 0.125549 0.966658 0.265743 4.14509 1.43242 0 0.257493 3.39361 0 -0.404037 -0.8125 0.90625 0.247455 -0.185695 0.126678 0.885288 0.100734 4.07644 1.31897 0 0.257493 3.39361 0 -0.404037 -0.84375 0.90625 0.247458 -0.185687 0.126953 0.925616 0.0780835 4.07509 1.37356 0 0.257493 3.39361 0 -0.404037 +0.8125 0.90625 0.247488 -0.18567 0.125916 0.882559 0.309365 4.17533 1.31962 0 0.257493 3.39361 0 -0.404037 +0.84375 0.90625 0.247488 -0.185664 0.125763 0.923735 0.312349 4.1812 1.37431 0 0.257493 3.39361 0 -0.404037 -0.8125 0.9375 0.255322 -0.191565 0.0848694 0.911138 0.0942462 4.71213 1.27423 0 0.233923 3.39623 0 -0.391606 -0.84375 0.9375 0.255324 -0.191561 0.0853882 0.95289 0.0591068 4.68794 1.32924 0 0.233923 3.39623 0 -0.391606 +0.8125 0.9375 0.255347 -0.191548 0.0840759 0.908908 0.302117 4.80305 1.27479 0 0.233923 3.39623 0 -0.391606 +0.84375 0.9375 0.255347 -0.191544 0.0840759 0.950084 0.27055 4.79902 1.3295 0 0.233923 3.39623 0 -0.391606 -0.84375 0.90625 0.247458 -0.185687 0.126953 0.925616 0.0780835 4.07509 1.37356 0 0.257493 3.39361 0 -0.404037 -0.875 0.90625 0.247463 -0.185678 0.127502 0.968888 0.0729731 4.0687 1.43239 0 0.257493 3.39361 0 -0.404037 +0.84375 0.90625 0.247488 -0.185664 0.125763 0.923108 0.312349 4.1812 1.37431 0 0.257493 3.39361 0 -0.404037 +0.875 0.90625 0.247489 -0.185658 0.125549 0.966931 0.265743 4.14509 1.43242 0 0.257493 3.39361 0 -0.404037 -0.84375 0.9375 0.255324 -0.191561 0.0853882 0.95289 0.0591068 4.68794 1.32924 0 0.233923 3.39623 0 -0.391606 -0.875 0.9375 0.255328 -0.191555 0.0857849 0.997467 0.08972 4.72782 1.38783 0 0.233923 3.39623 0 -0.391606 +0.84375 0.9375 0.255347 -0.191544 0.0840759 0.950684 0.27055 4.79902 1.3295 0 0.233923 3.39623 0 -0.391606 +0.875 0.9375 0.255348 -0.191541 0.0840454 0.994507 0.272711 4.76229 1.38769 0 0.233923 3.39623 0 -0.391606 -0.75 0.9375 0.255322 -0.191574 0.0846558 0.834719 0.247923 4.63941 1.17426 0 0.233923 3.39623 0 -0.391606 -0.78125 0.9375 0.255322 -0.19157 0.0846252 0.871729 0.194121 4.75666 1.22254 0 0.233923 3.39623 0 -0.391606 +0.75 0.9375 0.255347 -0.191555 0.0846252 0.831693 0.268962 4.84387 1.17535 0 0.233923 3.39623 0 -0.391606 +0.78125 0.9375 0.255347 -0.191551 0.084259 0.869224 0.35065 4.82317 1.22349 0 0.233923 3.39623 0 -0.391606 -0.75 0.96875 0.263445 -0.197626 0.0426636 0.858942 0.30788 5.49 1.12939 0 0.209605 3.39893 0 -0.379557 -0.78125 0.96875 0.263444 -0.197624 0.0423584 0.897284 0.161624 5.48164 1.17759 0 0.209605 3.39893 0 -0.379557 +0.75 0.96875 0.263458 -0.197616 0.0421753 0.856495 0.299675 5.57308 1.13016 0 0.209605 3.39893 0 -0.379557 +0.78125 0.96875 0.263458 -0.197615 0.0421143 0.894025 0.295924 5.4928 1.17839 0 0.209605 3.39893 0 -0.379557 -0.78125 0.9375 0.255322 -0.19157 0.0846252 0.871729 0.194121 4.75666 1.22254 0 0.233923 3.39623 0 -0.391606 -0.8125 0.9375 0.255322 -0.191565 0.0848694 0.911138 0.0942462 4.71213 1.27423 0 0.233923 3.39623 0 -0.391606 +0.78125 0.9375 0.255347 -0.191551 0.084259 0.868679 0.35065 4.82317 1.22349 0 0.233923 3.39623 0 -0.391606 +0.8125 0.9375 0.255347 -0.191548 0.0840759 0.908584 0.302117 4.80305 1.27479 0 0.233923 3.39623 0 -0.391606 -0.78125 0.96875 0.263444 -0.197624 0.0423584 0.897284 0.161624 5.48164 1.17759 0 0.209605 3.39893 0 -0.379557 -0.8125 0.96875 0.263444 -0.197622 0.0430603 0.937596 0.0197956 5.4601 1.2293 0 0.209605 3.39893 0 -0.379557 +0.78125 0.96875 0.263458 -0.197615 0.0421143 0.894542 0.295924 5.4928 1.17839 0 0.209605 3.39893 0 -0.379557 +0.8125 0.96875 0.263458 -0.197613 0.0420532 0.934447 0.300008 5.47606 1.22977 0 0.209605 3.39893 0 -0.379557 -0.75 0.96875 0.263445 -0.197626 0.0426636 0.858942 0.30788 5.49 1.12939 0 0.209605 3.39893 0 -0.379557 -0.78125 0.96875 0.263444 -0.197624 0.0423584 0.897284 0.161624 5.48164 1.17759 0 0.209605 3.39893 0 -0.379557 +0.75 0.96875 0.263458 -0.197616 0.0421753 0.855597 0.299675 5.57308 1.13016 0 0.209605 3.39893 0 -0.379557 +0.78125 0.96875 0.263458 -0.197615 0.0421143 0.894201 0.295924 5.4928 1.17839 0 0.209605 3.39893 0 -0.379557 -0.75 1 0.271828 -0.203871 9.15527e-05 0.883906 0.249044 6.41196 1.08399 0 0.184515 3.40172 0 -0.367879 -0.78125 1 0.271828 -0.203871 0.00012207 0.923328 0.147626 6.26922 1.13237 0 0.184515 3.40172 0 -0.367879 +0.75 1 0.271828 -0.203871 -0.000396729 0.881099 0.282842 5.8896 1.08555 0 0.184515 3.40172 0 -0.367879 +0.78125 1 0.271828 -0.203871 -0.000366211 0.919703 0.290806 5.82912 1.13388 0 0.184515 3.40172 0 -0.367879 -0.78125 0.96875 0.263444 -0.197624 0.0423584 0.897284 0.161624 5.48164 1.17759 0 0.209605 3.39893 0 -0.379557 -0.8125 0.96875 0.263444 -0.197622 0.0430603 0.937596 0.0197956 5.4601 1.2293 0 0.209605 3.39893 0 -0.379557 +0.78125 0.96875 0.263458 -0.197615 0.0421143 0.89357 0.295924 5.4928 1.17839 0 0.209605 3.39893 0 -0.379557 +0.8125 0.96875 0.263458 -0.197613 0.0420532 0.934687 0.300008 5.47606 1.22977 0 0.209605 3.39893 0 -0.379557 -0.78125 1 0.271828 -0.203871 0.00012207 0.923328 0.147626 6.26922 1.13237 0 0.184515 3.40172 0 -0.367879 -0.8125 1 0.271828 -0.203871 0.000518799 0.965258 0.0533745 6.38927 1.18418 0 0.184515 3.40172 0 -0.367879 +0.78125 1 0.271828 -0.203871 -0.000366211 0.920291 0.290806 5.82912 1.13388 0 0.184515 3.40172 0 -0.367879 +0.8125 1 0.271828 -0.203871 -0.000457764 0.961408 0.311527 5.83478 1.18525 0 0.184515 3.40172 0 -0.367879 -0.8125 0.9375 0.255322 -0.191565 0.0848694 0.911138 0.0942462 4.71213 1.27423 0 0.233923 3.39623 0 -0.391606 -0.84375 0.9375 0.255324 -0.191561 0.0853882 0.95289 0.0591068 4.68794 1.32924 0 0.233923 3.39623 0 -0.391606 +0.8125 0.9375 0.255347 -0.191548 0.0840759 0.907937 0.302117 4.80305 1.27479 0 0.233923 3.39623 0 -0.391606 +0.84375 0.9375 0.255347 -0.191544 0.0840759 0.950364 0.27055 4.79902 1.3295 0 0.233923 3.39623 0 -0.391606 -0.8125 0.96875 0.263444 -0.197622 0.0430603 0.937596 0.0197956 5.4601 1.2293 0 0.209605 3.39893 0 -0.379557 -0.84375 0.96875 0.263444 -0.19762 0.0434875 0.980875 0.0749335 5.47348 1.28448 0 0.209605 3.39893 0 -0.379557 +0.8125 0.96875 0.263458 -0.197613 0.0420532 0.935075 0.300008 5.47606 1.22977 0 0.209605 3.39893 0 -0.379557 +0.84375 0.96875 0.263458 -0.197611 0.0419617 0.977502 0.293394 5.4912 1.28442 0 0.209605 3.39893 0 -0.379557 -0.84375 0.9375 0.255324 -0.191561 0.0853882 0.95289 0.0591068 4.68794 1.32924 0 0.233923 3.39623 0 -0.391606 -0.875 0.9375 0.255328 -0.191555 0.0857849 0.997467 0.08972 4.72782 1.38783 0 0.233923 3.39623 0 -0.391606 +0.84375 0.9375 0.255347 -0.191544 0.0840759 0.949658 0.27055 4.79902 1.3295 0 0.233923 3.39623 0 -0.391606 +0.875 0.9375 0.255348 -0.191541 0.0840454 0.994836 0.272711 4.76229 1.38769 0 0.233923 3.39623 0 -0.391606 -0.84375 0.96875 0.263444 -0.19762 0.0434875 0.980875 0.0749335 5.47348 1.28448 0 0.209605 3.39893 0 -0.379557 -0.875 0.96875 0.263446 -0.197617 0.0437927 1.02694 0.136236 5.4907 1.34306 0 0.209605 3.39893 0 -0.379557 +0.84375 0.96875 0.263458 -0.197611 0.0419617 0.978175 0.293394 5.4912 1.28442 0 0.209605 3.39893 0 -0.379557 +0.875 0.96875 0.263458 -0.19761 0.0419312 1.02335 0.280167 5.46885 1.34264 0 0.209605 3.39893 0 -0.379557 -0.8125 0.96875 0.263444 -0.197622 0.0430603 0.937596 0.0197956 5.4601 1.2293 0 0.209605 3.39893 0 -0.379557 -0.84375 0.96875 0.263444 -0.19762 0.0434875 0.980875 0.0749335 5.47348 1.28448 0 0.209605 3.39893 0 -0.379557 +0.8125 0.96875 0.263458 -0.197613 0.0420532 0.934022 0.300008 5.47606 1.22977 0 0.209605 3.39893 0 -0.379557 +0.84375 0.96875 0.263458 -0.197611 0.0419617 0.977803 0.293394 5.4912 1.28442 0 0.209605 3.39893 0 -0.379557 -0.8125 1 0.271828 -0.203871 0.000518799 0.965258 0.0533745 6.38927 1.18418 0 0.184515 3.40172 0 -0.367879 -0.84375 1 0.271828 -0.203871 0.000946045 1.00986 0.0576549 6.39372 1.2393 0 0.184515 3.40172 0 -0.367879 +0.8125 1 0.271828 -0.203871 -0.000457764 0.962046 0.311527 5.83478 1.18525 0 0.184515 3.40172 0 -0.367879 +0.84375 1 0.271828 -0.203871 -0.000549316 1.00583 0.29263 5.83982 1.23998 0 0.184515 3.40172 0 -0.367879 -0.84375 0.96875 0.263444 -0.19762 0.0434875 0.980875 0.0749335 5.47348 1.28448 0 0.209605 3.39893 0 -0.379557 -0.875 0.96875 0.263446 -0.197617 0.0437927 1.02694 0.136236 5.4907 1.34306 0 0.209605 3.39893 0 -0.379557 +0.84375 0.96875 0.263458 -0.197611 0.0419617 0.977074 0.293394 5.4912 1.28442 0 0.209605 3.39893 0 -0.379557 +0.875 0.96875 0.263458 -0.19761 0.0419312 1.02366 0.280167 5.46885 1.34264 0 0.209605 3.39893 0 -0.379557 -0.84375 1 0.271828 -0.203871 0.000946045 1.00986 0.0576549 6.39372 1.2393 0 0.184515 3.40172 0 -0.367879 -0.875 1 0.271828 -0.203871 0.00128174 1.05746 0.105273 6.38674 1.29801 0 0.184515 3.40172 0 -0.367879 +0.84375 1 0.271828 -0.203871 -0.000549316 1.00652 0.29263 5.83982 1.23998 0 0.184515 3.40172 0 -0.367879 +0.875 1 0.271828 -0.203871 -0.000518799 1.0531 0.292343 5.80989 1.29834 0 0.184515 3.40172 0 -0.367879 -0.875 0.875 0.239844 -0.179981 0.168396 0.941317 0.102201 3.57748 1.47639 0 0.280337 3.39107 0 -0.416862 -0.90625 0.875 0.239852 -0.179968 0.168793 0.985927 0.10689 3.55015 1.53878 0 0.280337 3.39107 0 -0.416862 +0.875 0.875 0.239873 -0.179956 0.16684 0.939215 0.278592 3.67389 1.477 0 0.280337 3.39107 0 -0.416862 +0.90625 0.875 0.239875 -0.179947 0.166809 0.984361 0.216279 3.66032 1.53891 0 0.280337 3.39107 0 -0.416862 -0.875 0.90625 0.247463 -0.185678 0.127502 0.968888 0.0729731 4.0687 1.43239 0 0.257493 3.39361 0 -0.404037 -0.90625 0.90625 0.24747 -0.185669 0.127869 1.01482 0.142039 4.07878 1.49461 0 0.257493 3.39361 0 -0.404037 +0.875 0.90625 0.247489 -0.185658 0.125549 0.967301 0.265743 4.14509 1.43242 0 0.257493 3.39361 0 -0.404037 +0.90625 0.90625 0.24749 -0.185651 0.125671 1.01245 0.215427 4.15362 1.49446 0 0.257493 3.39361 0 -0.404037 -0.90625 0.875 0.239852 -0.179968 0.168793 0.985927 0.10689 3.55015 1.53878 0 0.280337 3.39107 0 -0.416862 -0.9375 0.875 0.239863 -0.179954 0.169189 1.03333 0.193877 3.55573 1.60504 0 0.280337 3.39107 0 -0.416862 +0.90625 0.875 0.239875 -0.179947 0.166809 0.983621 0.216279 3.66032 1.53891 0 0.280337 3.39107 0 -0.416862 +0.9375 0.875 0.239878 -0.179938 0.167023 1.03163 0.202494 3.6641 1.60498 0 0.280337 3.39107 0 -0.416862 -0.90625 0.90625 0.24747 -0.185669 0.127869 1.01482 0.142039 4.07878 1.49461 0 0.257493 3.39361 0 -0.404037 -0.9375 0.90625 0.24748 -0.185657 0.12796 1.06389 0.175567 4.10971 1.56079 0 0.257493 3.39361 0 -0.404037 +0.90625 0.90625 0.24749 -0.185651 0.125671 1.01318 0.215427 4.15362 1.49446 0 0.257493 3.39361 0 -0.404037 +0.9375 0.90625 0.247493 -0.185644 0.125763 1.06118 0.216196 4.18378 1.56051 0 0.257493 3.39361 0 -0.404037 -0.875 0.90625 0.247463 -0.185678 0.127502 0.968888 0.0729731 4.0687 1.43239 0 0.257493 3.39361 0 -0.404037 -0.90625 0.90625 0.24747 -0.185669 0.127869 1.01482 0.142039 4.07878 1.49461 0 0.257493 3.39361 0 -0.404037 +0.875 0.90625 0.247489 -0.185658 0.125549 0.966229 0.265743 4.14509 1.43242 0 0.257493 3.39361 0 -0.404037 +0.90625 0.90625 0.24749 -0.185651 0.125671 1.01279 0.215427 4.15362 1.49446 0 0.257493 3.39361 0 -0.404037 -0.875 0.9375 0.255328 -0.191555 0.0857849 0.997467 0.08972 4.72782 1.38783 0 0.233923 3.39623 0 -0.391606 -0.90625 0.9375 0.255333 -0.191549 0.0861206 1.045 0.138416 4.76438 1.45021 0 0.233923 3.39623 0 -0.391606 +0.875 0.9375 0.255348 -0.191541 0.0840454 0.995251 0.272711 4.76229 1.38769 0 0.233923 3.39623 0 -0.391606 +0.90625 0.9375 0.255349 -0.191536 0.0839844 1.04181 0.259185 4.78825 1.44971 0 0.233923 3.39623 0 -0.391606 -0.90625 0.90625 0.24747 -0.185669 0.127869 1.01482 0.142039 4.07878 1.49461 0 0.257493 3.39361 0 -0.404037 -0.9375 0.90625 0.24748 -0.185657 0.12796 1.06389 0.175567 4.10971 1.56079 0 0.257493 3.39361 0 -0.404037 +0.90625 0.90625 0.24749 -0.185651 0.125671 1.01201 0.215427 4.15362 1.49446 0 0.257493 3.39361 0 -0.404037 +0.9375 0.90625 0.247493 -0.185644 0.125763 1.06159 0.216196 4.18378 1.56051 0 0.257493 3.39361 0 -0.404037 -0.90625 0.9375 0.255333 -0.191549 0.0861206 1.045 0.138416 4.76438 1.45021 0 0.233923 3.39623 0 -0.391606 -0.9375 0.9375 0.25534 -0.191541 0.0863037 1.09571 0.201458 4.74963 1.51659 0 0.233923 3.39623 0 -0.391606 +0.90625 0.9375 0.255349 -0.191536 0.0839844 1.04262 0.259185 4.78825 1.44971 0 0.233923 3.39623 0 -0.391606 +0.9375 0.9375 0.255351 -0.191532 0.0840149 1.0922 0.230631 4.81283 1.51574 0 0.233923 3.39623 0 -0.391606 -0.9375 0.875 0.239863 -0.179954 0.169189 1.03333 0.193877 3.55573 1.60504 0 0.280337 3.39107 0 -0.416862 -0.96875 0.875 0.239875 -0.179936 0.169006 1.08408 0.262344 3.50884 1.67538 0 0.280337 3.39107 0 -0.416862 +0.9375 0.875 0.239878 -0.179938 0.167023 1.03083 0.202494 3.6641 1.60498 0 0.280337 3.39107 0 -0.416862 +0.96875 0.875 0.239882 -0.179927 0.167053 1.08202 0.229262 3.65827 1.67521 0 0.280337 3.39107 0 -0.416862 -0.9375 0.90625 0.24748 -0.185657 0.12796 1.06389 0.175567 4.10971 1.56079 0 0.257493 3.39361 0 -0.404037 -0.96875 0.90625 0.24749 -0.185644 0.128357 1.11619 0.333177 4.07511 1.63162 0 0.257493 3.39361 0 -0.404037 +0.9375 0.90625 0.247493 -0.185644 0.125763 1.06195 0.216196 4.18378 1.56051 0 0.257493 3.39361 0 -0.404037 +0.96875 0.90625 0.247497 -0.185636 0.125854 1.11314 0.246538 4.17131 1.63079 0 0.257493 3.39361 0 -0.404037 -0.96875 0.875 0.239875 -0.179936 0.169006 1.08408 0.262344 3.50884 1.67538 0 0.280337 3.39107 0 -0.416862 -1 0.875 0.239888 -0.179916 0.168976 1.13811 0.255301 3.58786 1.75042 0 0.280337 3.39107 0 -0.416862 +0.96875 0.875 0.239882 -0.179927 0.167053 1.08115 0.229262 3.65827 1.67521 0 0.280337 3.39107 0 -0.416862 +1 0.875 0.239888 -0.179916 0.167053 1.13565 0.236687 3.68161 1.75123 0 0.280337 3.39107 0 -0.416862 -0.96875 0.90625 0.24749 -0.185644 0.128357 1.11619 0.333177 4.07511 1.63162 0 0.257493 3.39361 0 -0.404037 -1 0.90625 0.247502 -0.185627 0.127563 1.17217 0.499037 4.08097 1.70623 0 0.257493 3.39361 0 -0.404037 +0.96875 0.90625 0.247497 -0.185636 0.125854 1.11396 0.246538 4.17131 1.63079 0 0.257493 3.39361 0 -0.404037 +1 0.90625 0.247502 -0.185627 0.125763 1.16846 0.273222 4.18211 1.70677 0 0.257493 3.39361 0 -0.404037 -0.9375 0.90625 0.24748 -0.185657 0.12796 1.06389 0.175567 4.10971 1.56079 0 0.257493 3.39361 0 -0.404037 -0.96875 0.90625 0.24749 -0.185644 0.128357 1.11619 0.333177 4.07511 1.63162 0 0.257493 3.39361 0 -0.404037 +0.9375 0.90625 0.247493 -0.185644 0.125763 1.06078 0.216196 4.18378 1.56051 0 0.257493 3.39361 0 -0.404037 +0.96875 0.90625 0.247497 -0.185636 0.125854 1.11353 0.246538 4.17131 1.63079 0 0.257493 3.39361 0 -0.404037 -0.9375 0.9375 0.25534 -0.191541 0.0863037 1.09571 0.201458 4.74963 1.51659 0 0.233923 3.39623 0 -0.391606 -0.96875 0.9375 0.255349 -0.191532 0.0863342 1.14968 0.24755 4.80482 1.58707 0 0.233923 3.39623 0 -0.391606 +0.9375 0.9375 0.255351 -0.191532 0.0840149 1.09302 0.230631 4.81283 1.51574 0 0.233923 3.39623 0 -0.391606 +0.96875 0.9375 0.255354 -0.191526 0.084137 1.14577 0.244361 4.82012 1.58608 0 0.233923 3.39623 0 -0.391606 -0.96875 0.90625 0.24749 -0.185644 0.128357 1.11619 0.333177 4.07511 1.63162 0 0.257493 3.39361 0 -0.404037 -1 0.90625 0.247502 -0.185627 0.127563 1.17217 0.499037 4.08097 1.70623 0 0.257493 3.39361 0 -0.404037 +0.96875 0.90625 0.247497 -0.185636 0.125854 1.11266 0.246538 4.17131 1.63079 0 0.257493 3.39361 0 -0.404037 +1 0.90625 0.247502 -0.185627 0.125763 1.16891 0.273222 4.18211 1.70677 0 0.257493 3.39361 0 -0.404037 -0.96875 0.9375 0.255349 -0.191532 0.0863342 1.14968 0.24755 4.80482 1.58707 0 0.233923 3.39623 0 -0.391606 -1 0.9375 0.255359 -0.191519 0.0863037 1.20727 0.262291 4.70183 1.66222 0 0.233923 3.39623 0 -0.391606 +0.96875 0.9375 0.255354 -0.191526 0.084137 1.14663 0.244361 4.82012 1.58608 0 0.233923 3.39623 0 -0.391606 +1 0.9375 0.255359 -0.191519 0.0840759 1.20288 0.27068 4.81462 1.66213 0 0.233923 3.39623 0 -0.391606 -0.875 0.9375 0.255328 -0.191555 0.0857849 0.997467 0.08972 4.72782 1.38783 0 0.233923 3.39623 0 -0.391606 -0.90625 0.9375 0.255333 -0.191549 0.0861206 1.045 0.138416 4.76438 1.45021 0 0.233923 3.39623 0 -0.391606 +0.875 0.9375 0.255348 -0.191541 0.0840454 0.994049 0.272711 4.76229 1.38769 0 0.233923 3.39623 0 -0.391606 +0.90625 0.9375 0.255349 -0.191536 0.0839844 1.04219 0.259185 4.78825 1.44971 0 0.233923 3.39623 0 -0.391606 -0.875 0.96875 0.263446 -0.197617 0.0437927 1.02694 0.136236 5.4907 1.34306 0 0.209605 3.39893 0 -0.379557 -0.90625 0.96875 0.263449 -0.197614 0.0439453 1.07613 0.163951 5.51008 1.40546 0 0.209605 3.39893 0 -0.379557 +0.875 0.96875 0.263458 -0.19761 0.0419312 1.02405 0.280167 5.46885 1.34264 0 0.209605 3.39893 0 -0.379557 +0.90625 0.96875 0.263459 -0.197608 0.0419006 1.07219 0.271167 5.48402 1.40468 0 0.209605 3.39893 0 -0.379557 -0.90625 0.9375 0.255333 -0.191549 0.0861206 1.045 0.138416 4.76438 1.45021 0 0.233923 3.39623 0 -0.391606 -0.9375 0.9375 0.25534 -0.191541 0.0863037 1.09571 0.201458 4.74963 1.51659 0 0.233923 3.39623 0 -0.391606 +0.90625 0.9375 0.255349 -0.191536 0.0839844 1.04138 0.259185 4.78825 1.44971 0 0.233923 3.39623 0 -0.391606 +0.9375 0.9375 0.255351 -0.191532 0.0840149 1.0926 0.230631 4.81283 1.51574 0 0.233923 3.39623 0 -0.391606 -0.90625 0.96875 0.263449 -0.197614 0.0439453 1.07613 0.163951 5.51008 1.40546 0 0.209605 3.39893 0 -0.379557 -0.9375 0.96875 0.263453 -0.197611 0.0441895 1.12841 0.205426 5.53299 1.47185 0 0.209605 3.39893 0 -0.379557 +0.90625 0.96875 0.263459 -0.197608 0.0419006 1.07296 0.271167 5.48402 1.40468 0 0.209605 3.39893 0 -0.379557 +0.9375 0.96875 0.26346 -0.197605 0.0419006 1.12418 0.261209 5.51744 1.4708 0 0.209605 3.39893 0 -0.379557 -0.875 0.96875 0.263446 -0.197617 0.0437927 1.02694 0.136236 5.4907 1.34306 0 0.209605 3.39893 0 -0.379557 -0.90625 0.96875 0.263449 -0.197614 0.0439453 1.07613 0.163951 5.51008 1.40546 0 0.209605 3.39893 0 -0.379557 +0.875 0.96875 0.263458 -0.19761 0.0419312 1.02288 0.280167 5.46885 1.34264 0 0.209605 3.39893 0 -0.379557 +0.90625 0.96875 0.263459 -0.197608 0.0419006 1.07254 0.271167 5.48402 1.40468 0 0.209605 3.39893 0 -0.379557 -0.875 1 0.271828 -0.203871 0.00128174 1.05746 0.105273 6.38674 1.29801 0 0.184515 3.40172 0 -0.367879 -0.90625 1 0.271828 -0.203871 0.00152588 1.10813 0.170606 6.35503 1.36039 0 0.184515 3.40172 0 -0.367879 +0.875 1 0.271828 -0.203871 -0.000518799 1.05385 0.292343 5.80989 1.29834 0 0.184515 3.40172 0 -0.367879 +0.90625 1 0.271828 -0.203871 -0.000610352 1.10351 0.308285 5.83743 1.36044 0 0.184515 3.40172 0 -0.367879 -0.90625 0.96875 0.263449 -0.197614 0.0439453 1.07613 0.163951 5.51008 1.40546 0 0.209605 3.39893 0 -0.379557 -0.9375 0.96875 0.263453 -0.197611 0.0441895 1.12841 0.205426 5.53299 1.47185 0 0.209605 3.39893 0 -0.379557 +0.90625 0.96875 0.263459 -0.197608 0.0419006 1.07169 0.271167 5.48402 1.40468 0 0.209605 3.39893 0 -0.379557 +0.9375 0.96875 0.26346 -0.197605 0.0419006 1.12458 0.261209 5.51744 1.4708 0 0.209605 3.39893 0 -0.379557 -0.90625 1 0.271828 -0.203871 0.00152588 1.10813 0.170606 6.35503 1.36039 0 0.184515 3.40172 0 -0.367879 -0.9375 1 0.271828 -0.203871 0.00161743 1.16231 0.227154 6.42628 1.42692 0 0.184515 3.40172 0 -0.367879 +0.90625 1 0.271828 -0.203871 -0.000610352 1.10431 0.308285 5.83743 1.36044 0 0.184515 3.40172 0 -0.367879 +0.9375 1 0.271828 -0.203871 -0.000701904 1.1572 0.268382 5.88229 1.4266 0 0.184515 3.40172 0 -0.367879 -0.9375 0.9375 0.25534 -0.191541 0.0863037 1.09571 0.201458 4.74963 1.51659 0 0.233923 3.39623 0 -0.391606 -0.96875 0.9375 0.255349 -0.191532 0.0863342 1.14968 0.24755 4.80482 1.58707 0 0.233923 3.39623 0 -0.391606 +0.9375 0.9375 0.255351 -0.191532 0.0840149 1.09172 0.230631 4.81283 1.51574 0 0.233923 3.39623 0 -0.391606 +0.96875 0.9375 0.255354 -0.191526 0.084137 1.14621 0.244361 4.82012 1.58608 0 0.233923 3.39623 0 -0.391606 -0.9375 0.96875 0.263453 -0.197611 0.0441895 1.12841 0.205426 5.53299 1.47185 0 0.209605 3.39893 0 -0.379557 -0.96875 0.96875 0.263458 -0.197606 0.04422 1.18435 0.299754 5.54273 1.54265 0 0.209605 3.39893 0 -0.379557 +0.9375 0.96875 0.26346 -0.197605 0.0419006 1.12505 0.261209 5.51744 1.4708 0 0.209605 3.39893 0 -0.379557 +0.96875 0.96875 0.263462 -0.197603 0.0419312 1.17954 0.272465 5.51077 1.54113 0 0.209605 3.39893 0 -0.379557 -0.96875 0.9375 0.255349 -0.191532 0.0863342 1.14968 0.24755 4.80482 1.58707 0 0.233923 3.39623 0 -0.391606 -1 0.9375 0.255359 -0.191519 0.0863037 1.20727 0.262291 4.70183 1.66222 0 0.233923 3.39623 0 -0.391606 +0.96875 0.9375 0.255354 -0.191526 0.084137 1.14526 0.244361 4.82012 1.58608 0 0.233923 3.39623 0 -0.391606 +1 0.9375 0.255359 -0.191519 0.0840759 1.20329 0.27068 4.81462 1.66213 0 0.233923 3.39623 0 -0.391606 -0.96875 0.96875 0.263458 -0.197606 0.04422 1.18435 0.299754 5.54273 1.54265 0 0.209605 3.39893 0 -0.379557 -1 0.96875 0.263465 -0.197599 0.0440063 1.24378 0.349411 5.50022 1.61763 0 0.209605 3.39893 0 -0.379557 +0.96875 0.96875 0.263462 -0.197603 0.0419312 1.18044 0.272465 5.51077 1.54113 0 0.209605 3.39893 0 -0.379557 +1 0.96875 0.263465 -0.197599 0.0418701 1.23848 0.287438 5.49394 1.61738 0 0.209605 3.39893 0 -0.379557 -0.9375 0.96875 0.263453 -0.197611 0.0441895 1.12841 0.205426 5.53299 1.47185 0 0.209605 3.39893 0 -0.379557 -0.96875 0.96875 0.263458 -0.197606 0.04422 1.18435 0.299754 5.54273 1.54265 0 0.209605 3.39893 0 -0.379557 +0.9375 0.96875 0.26346 -0.197605 0.0419006 1.12369 0.261209 5.51744 1.4708 0 0.209605 3.39893 0 -0.379557 +0.96875 0.96875 0.263462 -0.197603 0.0419312 1.17998 0.272465 5.51077 1.54113 0 0.209605 3.39893 0 -0.379557 -0.9375 1 0.271828 -0.203871 0.00161743 1.16231 0.227154 6.42628 1.42692 0 0.184515 3.40172 0 -0.367879 -0.96875 1 0.271828 -0.203871 0.00164795 1.22008 0.249182 6.42952 1.49779 0 0.184515 3.40172 0 -0.367879 +0.9375 1 0.271828 -0.203871 -0.000701904 1.15806 0.268382 5.88229 1.4266 0 0.184515 3.40172 0 -0.367879 +0.96875 1 0.271828 -0.203871 -0.000579834 1.21435 0.247246 5.84634 1.49732 0 0.184515 3.40172 0 -0.367879 -0.96875 0.96875 0.263458 -0.197606 0.04422 1.18435 0.299754 5.54273 1.54265 0 0.209605 3.39893 0 -0.379557 -1 0.96875 0.263465 -0.197599 0.0440063 1.24378 0.349411 5.50022 1.61763 0 0.209605 3.39893 0 -0.379557 +0.96875 0.96875 0.263462 -0.197603 0.0419312 1.17898 0.272465 5.51077 1.54113 0 0.209605 3.39893 0 -0.379557 +1 0.96875 0.263465 -0.197599 0.0418701 1.23899 0.287438 5.49394 1.61738 0 0.209605 3.39893 0 -0.379557 -0.96875 1 0.271828 -0.203871 0.00164795 1.22008 0.249182 6.42952 1.49779 0 0.184515 3.40172 0 -0.367879 -1 1 0.271828 -0.203871 0.00167847 1.28213 0.252367 6.31357 1.5739 0 0.184515 3.40172 0 -0.367879 +0.96875 1 0.271828 -0.203871 -0.000579834 1.21534 0.247246 5.84634 1.49732 0 0.184515 3.40172 0 -0.367879 +1 1 0.271828 -0.203871 -0.000579834 1.27536 0.263132 5.81825 1.57128 0 0.184515 3.40172 0 -0.367879 diff --git a/tests/melt_property_visualization/statistics b/tests/melt_property_visualization/statistics index 75319b62330..f662fa454f1 100644 --- a/tests/melt_property_visualization/statistics +++ b/tests/melt_property_visualization/statistics @@ -9,4 +9,4 @@ # 9: Iterations for temperature solver # 10: Iterations for composition solver 1 # 11: Visualization file name -0 0.000000000000e+00 0.000000000000e+00 1024 11717 4225 4225 1 0 0 output-melt_property_visualization/solution/solution-00000 +0 0.000000000000e+00 0.000000000000e+00 1024 13700 4225 4225 1 0 0 output-melt_property_visualization/solution/solution-00000 diff --git a/tests/melt_transport/screen-output b/tests/melt_transport/screen-output index 014983f6963..c1d8a6ad305 100644 --- a/tests/melt_transport/screen-output +++ b/tests/melt_transport/screen-output @@ -1,13 +1,13 @@ Number of active cells: 1,024 (on 6 levels) -Number of degrees of freedom: 26,570 (10,628+8,450+1,089+4,225+1,089+1,089) +Number of degrees of freedom: 28,553 (12,611+8,450+1,089+4,225+1,089+1,089) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. Solving peridotite system ... 0 iterations. Skipping porosity composition solve because RHS is zero. Solving Stokes system... done. - Solving for u_f in 0 iterations. + Solving for u_f in 11 iterations. Postprocessing: Compositions min/max/mass: 0/0.3/3.739e+10 // 0/0/0 @@ -19,7 +19,7 @@ Number of degrees of freedom: 26,570 (10,628+8,450+1,089+4,225+1,089+1,089) Solving peridotite system ... 5 iterations. Skipping porosity composition solve because RHS is zero. Solving Stokes system... done. - Solving for u_f in 0 iterations. + Solving for u_f in 11 iterations. Postprocessing: Compositions min/max/mass: -0.02189/0.3214/3.739e+10 // 0/0/0 @@ -31,7 +31,7 @@ Number of degrees of freedom: 26,570 (10,628+8,450+1,089+4,225+1,089+1,089) Solving peridotite system ... 5 iterations. Skipping porosity composition solve because RHS is zero. Solving Stokes system... done. - Solving for u_f in 0 iterations. + Solving for u_f in 11 iterations. Postprocessing: Compositions min/max/mass: -0.02428/0.3288/3.739e+10 // 0/0/0 @@ -43,7 +43,7 @@ Number of degrees of freedom: 26,570 (10,628+8,450+1,089+4,225+1,089+1,089) Solving peridotite system ... 4 iterations. Skipping porosity composition solve because RHS is zero. Solving Stokes system... done. - Solving for u_f in 0 iterations. + Solving for u_f in 11 iterations. Postprocessing: Compositions min/max/mass: -0.01956/0.3267/3.739e+10 // 0/0/0 diff --git a/tests/melt_transport/statistics b/tests/melt_transport/statistics index 0c63ba72975..cb5bcf998a5 100644 --- a/tests/melt_transport/statistics +++ b/tests/melt_transport/statistics @@ -16,7 +16,7 @@ # 16: Global mass for composition porosity # 17: RMS velocity (m/year) # 18: Max. velocity (m/year) -0 0.000000000000e+00 0.000000000000e+00 1024 11717 4225 2178 0 0 0 0.00000000e+00 3.00000000e-01 3.73901367e+10 0.00000000e+00 0.00000000e+00 0.00000000e+00 5.53918513e-04 1.61681430e-03 -1 4.826297697691e+06 4.826297697691e+06 1024 11717 4225 2178 23 5 0 -2.18889192e-02 3.21398670e-01 3.73901367e+10 0.00000000e+00 0.00000000e+00 0.00000000e+00 5.29354836e-04 1.46494550e-03 -2 1.015553076352e+07 5.329233065828e+06 1024 11717 4225 2178 19 5 0 -2.42776896e-02 3.28783850e-01 3.73901367e+10 0.00000000e+00 0.00000000e+00 0.00000000e+00 5.04195957e-04 1.32420956e-03 -3 1.500000000000e+07 4.844469236481e+06 1024 11717 4225 2178 18 4 0 -1.95637831e-02 3.26651029e-01 3.73901367e+10 0.00000000e+00 0.00000000e+00 0.00000000e+00 4.82941106e-04 1.21904644e-03 +0 0.000000000000e+00 0.000000000000e+00 1024 13700 4225 2178 0 0 0 0.00000000e+00 3.00000000e-01 3.73901367e+10 0.00000000e+00 0.00000000e+00 0.00000000e+00 5.53918513e-04 1.61681430e-03 +1 4.826297641633e+06 4.826297641633e+06 1024 13700 4225 2178 23 5 0 -2.18889191e-02 3.21398670e-01 3.73901367e+10 0.00000000e+00 0.00000000e+00 0.00000000e+00 5.29354837e-04 1.46494550e-03 +2 1.015553070220e+07 5.329233060569e+06 1024 13700 4225 2178 19 5 0 -2.42776896e-02 3.28783850e-01 3.73901367e+10 0.00000000e+00 0.00000000e+00 0.00000000e+00 5.04195957e-04 1.32420956e-03 +3 1.500000000000e+07 4.844469297798e+06 1024 13700 4225 2178 18 4 0 -1.95637831e-02 3.26651029e-01 3.73901367e+10 0.00000000e+00 0.00000000e+00 0.00000000e+00 4.82941106e-04 1.21904644e-03 diff --git a/tests/melt_transport_adaptive/screen-output b/tests/melt_transport_adaptive/screen-output index d1c548728de..814762fb6cf 100644 --- a/tests/melt_transport_adaptive/screen-output +++ b/tests/melt_transport_adaptive/screen-output @@ -2,85 +2,85 @@ Loading shared library <./libmelt_transport_adaptive.so> Number of active cells: 256 (on 5 levels) -Number of degrees of freedom: 7,401 (2,178+578+2,178+289+1,089+1,089) +Number of degrees of freedom: 7,880 (2,178+1,057+2,178+289+1,089+1,089) *** Timestep 0: t=0 seconds Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+23 iterations. + Solving Stokes system... 0+21 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.0324e-16, 0.997001 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.997001 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.0324e-16, 0.99892 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.99892 Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.0324e-16, 7.172e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 7.172e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.0324e-16, 3.04238e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 3.04238e-13 Postprocessing: RMS, max velocity: 1.32 m/s, 1.96 m/s - Pressure min/avg/max: -0.0003984 Pa, 1 Pa, 2 Pa + Pressure min/avg/max: -0.0004027 Pa, 1 Pa, 2 Pa Max and min velocity along boundary parts: 1.967 m/s, 1.414 m/s, 1.967 m/s, 1.414 m/s, 1.686 m/s, 1.368 m/s, 1.981 m/s, 1.718 m/s - Errors ndofs= 7401 u_L2= 2.664717e-04 p_L2= 3.547905e-03 p_f_L2= 6.917689e-03 p_c_L= 2.747528e-03 phi_L2= 2.988517e-03 u_f_L2= 1.588159e-01 + Errors ndofs= 7880 u_L2= 2.652044e-04 p_L2= 1.127590e-02 p_f_L2= 6.919098e-03 p_c_bar_L= 1.968037e-02 p_c_L= 3.941762e-02 phi_L2= 2.988517e-03 u_f_L2= 1.588241e-01 -Number of active cells: 307 (on 6 levels) -Number of degrees of freedom: 9,414 (2,774+728+2,774+364+1,387+1,387) +Number of active cells: 325 (on 6 levels) +Number of degrees of freedom: 10,493 (2,918+1,357+2,918+382+1,459+1,459) *** Timestep 0: t=0 seconds Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+23 iterations. + Solving Stokes system... 0+21 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.85486e-16, 0.996549 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.996549 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.92907e-16, 0.998709 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.998709 Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.85486e-16, 6.3218e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.3218e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.92907e-16, 2.3798e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 2.3798e-13 Postprocessing: RMS, max velocity: 1.32 m/s, 1.96 m/s - Pressure min/avg/max: -0.0004057 Pa, 1 Pa, 2.001 Pa + Pressure min/avg/max: -0.0004366 Pa, 1 Pa, 2.001 Pa Max and min velocity along boundary parts: 1.967 m/s, 1.414 m/s, 1.967 m/s, 1.414 m/s, 1.686 m/s, 1.368 m/s, 1.981 m/s, 1.718 m/s - Errors ndofs= 9414 u_L2= 2.340028e-04 p_L2= 3.090440e-03 p_f_L2= 4.524770e-03 p_c_L= 2.143371e-03 phi_L2= 2.251494e-03 u_f_L2= 1.030045e-01 + Errors ndofs= 10493 u_L2= 1.873408e-04 p_L2= 6.913272e-03 p_f_L2= 3.731420e-03 p_c_bar_L= 1.755061e-02 p_c_L= 3.312752e-02 phi_L2= 2.103419e-03 u_f_L2= 8.701212e-02 -Number of active cells: 448 (on 6 levels) -Number of degrees of freedom: 13,239 (3,906+1,014+3,906+507+1,953+1,953) +Number of active cells: 463 (on 6 levels) +Number of degrees of freedom: 14,577 (4,046+1,914+4,046+525+2,023+2,023) *** Timestep 0: t=0 seconds Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+23 iterations. + Solving Stokes system... 0+21 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.07228e-16, 0.994442 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.994442 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.05158e-16, 0.997714 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.997714 Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.07228e-16, 6.19869e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.19869e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.05158e-16, 2.52088e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 2.52088e-13 Postprocessing: RMS, max velocity: 1.32 m/s, 1.96 m/s - Pressure min/avg/max: -0.0003059 Pa, 1 Pa, 2 Pa + Pressure min/avg/max: 9.714e-05 Pa, 1 Pa, 2 Pa Max and min velocity along boundary parts: 1.967 m/s, 1.414 m/s, 1.967 m/s, 1.414 m/s, 1.686 m/s, 1.368 m/s, 1.981 m/s, 1.718 m/s - Errors ndofs= 13239 u_L2= 9.995881e-05 p_L2= 1.415369e-03 p_f_L2= 2.448629e-03 p_c_L= 1.216648e-03 phi_L2= 5.074203e-04 u_f_L2= 6.536765e-02 + Errors ndofs= 14577 u_L2= 1.016785e-04 p_L2= 4.688608e-03 p_f_L2= 2.307120e-03 p_c_bar_L= 1.071330e-02 p_c_L= 2.060595e-02 phi_L2= 4.951648e-04 u_f_L2= 6.428101e-02 Termination requested by criterion: end time diff --git a/tests/melt_transport_adaptive/statistics b/tests/melt_transport_adaptive/statistics index 3b7dcabddf5..e45db688b94 100644 --- a/tests/melt_transport_adaptive/statistics +++ b/tests/melt_transport_adaptive/statistics @@ -24,6 +24,6 @@ # 24: Minimum velocity magnitude on boundary with indicator 2 ("bottom") (m/s) # 25: Maximum velocity magnitude on boundary with indicator 3 ("top") (m/s) # 26: Minimum velocity magnitude on boundary with indicator 3 ("top") (m/s) -0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 1089 2 0 0 23 106 216 1.32072275e+00 1.96034039e+00 -3.98441316e-04 1.00035977e+00 2.00044962e+00 1.96746305e+00 1.41427468e+00 1.96746305e+00 1.41427468e+00 1.68615456e+00 1.36795198e+00 1.98103899e+00 1.71833958e+00 -0 0.000000000000e+00 0.000000000000e+00 307 3138 1387 1387 2 0 0 23 137 290 1.32072374e+00 1.96034045e+00 -4.05692287e-04 1.00022516e+00 2.00052001e+00 1.96746305e+00 1.41427468e+00 1.96746305e+00 1.41427468e+00 1.68615456e+00 1.36795198e+00 1.98103899e+00 1.71833958e+00 -0 0.000000000000e+00 0.000000000000e+00 448 4413 1953 1953 2 0 0 23 123 359 1.32073355e+00 1.96034043e+00 -3.05864814e-04 1.00039460e+00 2.00044718e+00 1.96746305e+00 1.41427468e+00 1.96746305e+00 1.41427468e+00 1.68615456e+00 1.36795198e+00 1.98103899e+00 1.71833958e+00 +0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 1089 2 0 0 21 103 261 1.32072285e+00 1.96034041e+00 -4.02680196e-04 1.00043714e+00 2.00045045e+00 1.96746305e+00 1.41427468e+00 1.96746305e+00 1.41427468e+00 1.68615456e+00 1.36795198e+00 1.98103899e+00 1.71833958e+00 +0 0.000000000000e+00 0.000000000000e+00 325 3300 1459 1459 2 0 0 21 107 372 1.32073716e+00 1.96034045e+00 -4.36562387e-04 1.00036521e+00 2.00055524e+00 1.96746305e+00 1.41427468e+00 1.96746305e+00 1.41427468e+00 1.68615456e+00 1.36795198e+00 1.98103899e+00 1.71833958e+00 +0 0.000000000000e+00 0.000000000000e+00 463 4571 2023 2023 2 0 0 21 107 449 1.32072729e+00 1.96034029e+00 9.71371136e-05 1.00012622e+00 2.00037960e+00 1.96746305e+00 1.41427468e+00 1.96746305e+00 1.41427468e+00 1.68615456e+00 1.36795198e+00 1.98103899e+00 1.71833958e+00 diff --git a/tests/melt_transport_compressible.prm b/tests/melt_transport_compressible.prm index 554bec41187..6ba37dcd4f4 100644 --- a/tests/melt_transport_compressible.prm +++ b/tests/melt_transport_compressible.prm @@ -121,6 +121,7 @@ end subsection Melt settings set Use discontinuous compaction pressure = false + set Average melt velocity = false end diff --git a/tests/melt_transport_compressible/screen-output b/tests/melt_transport_compressible/screen-output index a51b5c1e1e0..0fb2ac9af70 100644 --- a/tests/melt_transport_compressible/screen-output +++ b/tests/melt_transport_compressible/screen-output @@ -8,7 +8,7 @@ Number of degrees of freedom: 112,521 (41,732+33,282+4,225+16,641+16,641) Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Solving Stokes system... done. - Solving for u_f in 11 iterations. + Solving for u_f in 10 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.93561e-16, 1 Relative nonlinear residual (total system) after nonlinear iteration 1: 1 @@ -16,22 +16,22 @@ Number of degrees of freedom: 112,521 (41,732+33,282+4,225+16,641+16,641) Solving porosity system ... 0 iterations. Solving Stokes system... done. Solving for u_f in 10 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.93561e-16, 0.074198 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.074198 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.93561e-16, 0.0507791 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.0507791 Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Solving Stokes system... done. Solving for u_f in 10 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.93561e-16, 4.55798e-06 - Relative nonlinear residual (total system) after nonlinear iteration 3: 4.55798e-06 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.93561e-16, 5.82122e-06 + Relative nonlinear residual (total system) after nonlinear iteration 3: 5.82122e-06 Postprocessing: - RMS, max velocity: 0.223 m/s, 0.339 m/s - Pressure min/avg/max: 0.5086 Pa, 1.575 Pa, 2.963 Pa - Max and min velocity along boundary parts: 0.3392 m/s, 0.1252 m/s, 0.3392 m/s, 0.1252 m/s, 0.125 m/s, 0.125 m/s, 0.3398 m/s, 0.3398 m/s - Errors u_L2, p_L2, p_f_L2, p_c_L2, porosity_L2, u_f_L2: 1.300835e-07, 2.786471e-05, 4.039032e-06, 1.265321e-05, 1.176215e-08, 3.128943e-03 + RMS, max velocity: 0.223 m/s, 0.339 m/s + Pressure min/avg/max: 0.5086 Pa, 1.575 Pa, 2.963 Pa + Max and min velocity along boundary parts: 0.3392 m/s, 0.1252 m/s, 0.3392 m/s, 0.1252 m/s, 0.125 m/s, 0.125 m/s, 0.3398 m/s, 0.3398 m/s + Errors u_L2, p_L2, p_f_L2, p_c_bar_L2, p_c_L2, porosity_L2, u_f_L2: 1.296823e-07, 5.474738e-05, 4.023073e-06, 1.299186e-05, 1.301613e-05, 1.176215e-08, 3.128932e-03 Termination requested by criterion: end time diff --git a/tests/melt_transport_compressible/statistics b/tests/melt_transport_compressible/statistics index 50107fecfce..4edaf7db80e 100644 --- a/tests/melt_transport_compressible/statistics +++ b/tests/melt_transport_compressible/statistics @@ -21,4 +21,4 @@ # 21: Minimum velocity magnitude on boundary with indicator 2 ("bottom") (m/s) # 22: Maximum velocity magnitude on boundary with indicator 3 ("top") (m/s) # 23: Minimum velocity magnitude on boundary with indicator 3 ("top") (m/s) -0 0.000000000000e+00 0.000000000000e+00 4096 45957 16641 16641 3 0 0 2.23415474e-01 3.39187414e-01 5.08615353e-01 1.57543584e+00 2.96335121e+00 3.39187414e-01 1.25220311e-01 3.39187414e-01 1.25220311e-01 1.25000000e-01 1.25000000e-01 3.39785229e-01 3.39785229e-01 +0 0.000000000000e+00 0.000000000000e+00 4096 45957 16641 16641 3 0 0 2.23415475e-01 3.39187410e-01 5.08593877e-01 1.57549681e+00 2.96338057e+00 3.39187414e-01 1.25220311e-01 3.39187414e-01 1.25220311e-01 1.25000000e-01 1.25000000e-01 3.39785229e-01 3.39785229e-01 diff --git a/tests/melt_transport_compressible_iterative.prm b/tests/melt_transport_compressible_iterative.prm index 9a3ad25e2e7..f42bf79c918 100644 --- a/tests/melt_transport_compressible_iterative.prm +++ b/tests/melt_transport_compressible_iterative.prm @@ -17,9 +17,10 @@ set Adiabatic surface temperature = 1623 # default: 0 set CFL number = 1.0 set Composition solver tolerance = 1e-12 set Nonlinear solver scheme = iterated IMPES -set Max nonlinear iterations = 50 -set Linear solver tolerance = 5e-7 -set Nonlinear solver tolerance = 1e-4 +set Max nonlinear iterations = 5 +set Linear solver tolerance = 1e-5 +set Nonlinear solver tolerance = 1e-6 +set Number of cheap Stokes solver steps = 500 # The number of space dimensions you want to run this program in. set Dimension = 2 @@ -35,7 +36,6 @@ set Start time = 0 set Use years in output instead of seconds = false set Use direct solver for Stokes system = false -set Number of cheap Stokes solver steps = 0 subsection Compositional fields set Number of fields = 1 @@ -119,12 +119,13 @@ end subsection Mesh refinement set Coarsening fraction = 0.0 - set Refinement fraction = 0.0 + set Refinement fraction = 1.0 set Initial adaptive refinement = 0 # default: 2 - set Initial global refinement = 4 # default: 2 + set Initial global refinement = 3 # default: 2 set Strategy = composition set Time steps between mesh refinement = 0 + set Run postprocessors on initial refinement = true end diff --git a/tests/melt_transport_compressible_iterative/screen-output b/tests/melt_transport_compressible_iterative/screen-output index 66bc236fb4c..c269e52a367 100644 --- a/tests/melt_transport_compressible_iterative/screen-output +++ b/tests/melt_transport_compressible_iterative/screen-output @@ -1,64 +1,56 @@ Loading shared library <./libmelt_transport_compressible_iterative.so> -Number of active cells: 256 (on 5 levels) -Number of degrees of freedom: 7,401 (2,178+578+2,178+289+1,089+1,089) +Number of active cells: 64 (on 4 levels) +Number of degrees of freedom: 2,088 (578+273+578+81+289+289) *** Timestep 0: t=0 seconds Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+130 iterations. - Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.12953e-16, 0.123457 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.123457 + Solving Stokes system... 500+29 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.42211e-16, 0.127466 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.127466 Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+176 iterations. - Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.12953e-16, 0.0651889 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.0651889 + Solving Stokes system... 175+0 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.42211e-16, 0.163471 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.163471 Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+28 iterations. - Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.12953e-16, 0.000123058 - Relative nonlinear residual (total system) after nonlinear iteration 3: 0.000123058 + Solving Stokes system... 147+0 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.42211e-16, 0.0116816 + Relative nonlinear residual (total system) after nonlinear iteration 3: 0.0116816 Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+27 iterations. - Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.12953e-16, 0.000126027 - Relative nonlinear residual (total system) after nonlinear iteration 4: 0.000126027 + Solving Stokes system... 77+0 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.42211e-16, 0.0104664 + Relative nonlinear residual (total system) after nonlinear iteration 4: 0.0104664 Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+2 iterations. - Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.12953e-16, 0.000228996 - Relative nonlinear residual (total system) after nonlinear iteration 5: 0.000228996 - - Skipping temperature solve because RHS is zero. - Solving porosity system ... 0 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+2 iterations. - Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.12953e-16, 8.24759e-05 - Relative nonlinear residual (total system) after nonlinear iteration 6: 8.24759e-05 + Solving Stokes system... 29+0 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 2.42211e-16, 0.0186521 + Relative nonlinear residual (total system) after nonlinear iteration 5: 0.0186521 Postprocessing: - RMS, max velocity: 0.223 m/s, 0.337 m/s - Pressure min/avg/max: 0.5083 Pa, 1.575 Pa, 2.962 Pa - Max and min velocity along boundary parts: 0.3374 m/s, 0.1259 m/s, 0.3374 m/s, 0.1259 m/s, 0.125 m/s, 0.125 m/s, 0.3398 m/s, 0.3398 m/s - Errors u_L2, p_L2, p_f_L2, p_c_L2, porosity_L2, u_f_L2: 2.194882e-06, 4.490567e-04, 6.993121e-05, 2.026673e-04, 7.525970e-07, 2.326531e-02 + RMS, max velocity: 0.223 m/s, 0.335 m/s + Pressure min/avg/max: 0.5089 Pa, 1.572 Pa, 2.967 Pa + Max and min velocity along boundary parts: 0.335 m/s, 0.1268 m/s, 0.335 m/s, 0.1268 m/s, 0.125 m/s, 0.125 m/s, 0.3398 m/s, 0.3398 m/s + Errors u_L2, p_L2, p_f_L2, p_c_bar_L2, p_c_L2, porosity_L2, u_f_L2: 4.380004e-05, 5.026368e-03, 1.303134e-03, 1.273021e-03, 1.274983e-03, 6.016152e-06, 2.577478e-01 Termination requested by criterion: end time diff --git a/tests/melt_transport_compressible_iterative/statistics b/tests/melt_transport_compressible_iterative/statistics index eeeb45034db..0c7494a855d 100644 --- a/tests/melt_transport_compressible_iterative/statistics +++ b/tests/melt_transport_compressible_iterative/statistics @@ -24,4 +24,4 @@ # 24: Minimum velocity magnitude on boundary with indicator 2 ("bottom") (m/s) # 25: Maximum velocity magnitude on boundary with indicator 3 ("top") (m/s) # 26: Minimum velocity magnitude on boundary with indicator 3 ("top") (m/s) -0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 1089 6 0 0 365 1597 7853 2.23414355e-01 3.37400779e-01 5.08324914e-01 1.57519602e+00 2.96155867e+00 3.37400763e-01 1.25883388e-01 3.37400763e-01 1.25883388e-01 1.25000000e-01 1.25000000e-01 3.39785229e-01 3.39785229e-01 +0 0.000000000000e+00 0.000000000000e+00 64 659 289 289 5 0 0 957 979 16276 2.23389286e-01 3.35036236e-01 5.08895829e-01 1.57199587e+00 2.96678333e+00 3.35036067e-01 1.26771768e-01 3.35036067e-01 1.26771768e-01 1.25000000e-01 1.25000000e-01 3.39785229e-01 3.39785229e-01 diff --git a/tests/melt_transport_convergence_simple/screen-output b/tests/melt_transport_convergence_simple/screen-output index b734e8d7b33..256adf7ac6d 100644 --- a/tests/melt_transport_convergence_simple/screen-output +++ b/tests/melt_transport_convergence_simple/screen-output @@ -2,31 +2,31 @@ Loading shared library <./libmelt_transport_convergence_simple.so> Number of active cells: 1,024 (on 6 levels) -Number of degrees of freedom: 28,617 (8,450+2,178+8,450+1,089+4,225+4,225) +Number of degrees of freedom: 30,600 (8,450+4,161+8,450+1,089+4,225+4,225) *** Timestep 0: t=0 seconds Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+30 iterations. + Solving Stokes system... 0+22 iterations. Solving for u_f in 7 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.42904e-16, 1.00154 - Relative nonlinear residual (total system) after nonlinear iteration 1: 1.00154 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.42904e-16, 1 + Relative nonlinear residual (total system) after nonlinear iteration 1: 1 Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 7 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.42904e-16, 8.44953e-11 - Relative nonlinear residual (total system) after nonlinear iteration 2: 8.44953e-11 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.42904e-16, 7.86706e-11 + Relative nonlinear residual (total system) after nonlinear iteration 2: 7.86706e-11 Postprocessing: - RMS, max velocity: 1.41 m/s, 1.41 m/s - Pressure min/avg/max: 0.3686 Pa, 1.176 Pa, 2.718 Pa - Max and min velocity along boundary parts: 1.414 m/s, 1.414 m/s, 1.414 m/s, 1.414 m/s, 1.414 m/s, 1.414 m/s, 1.414 m/s, 1.414 m/s - Errors u_L2, p_L2, p_f_L2, p_c_L2, porosity_L2, u_f_L2: 1.028076e-04, 1.709337e-02, 1.709899e-02, 6.920573e-05, 2.402420e-03, 4.334907e-03 + RMS, max velocity: 1.41 m/s, 1.41 m/s + Pressure min/avg/max: 0.3686 Pa, 1.176 Pa, 2.718 Pa + Max and min velocity along boundary parts: 1.414 m/s, 1.414 m/s, 1.414 m/s, 1.414 m/s, 1.414 m/s, 1.414 m/s, 1.414 m/s, 1.414 m/s + Errors u_L2, p_L2, p_f_L2, p_c_bar_L2, p_c_L2, porosity_L2, u_f_L2: 1.026761e-04, 1.699041e-02, 1.709911e-02, 3.662042e-06, 8.694257e-05, 2.402420e-03, 4.347472e-03 Termination requested by criterion: end time diff --git a/tests/melt_transport_convergence_simple/statistics b/tests/melt_transport_convergence_simple/statistics index 250e71797b4..701769cd7b9 100644 --- a/tests/melt_transport_convergence_simple/statistics +++ b/tests/melt_transport_convergence_simple/statistics @@ -24,4 +24,4 @@ # 24: Minimum velocity magnitude on boundary with indicator 2 ("bottom") (m/s) # 25: Maximum velocity magnitude on boundary with indicator 3 ("top") (m/s) # 26: Minimum velocity magnitude on boundary with indicator 3 ("top") (m/s) -0 0.000000000000e+00 0.000000000000e+00 1024 9539 4225 4225 2 0 0 30 130 93 1.41421095e+00 1.41421543e+00 3.68583873e-01 1.17603305e+00 2.71829823e+00 1.41421356e+00 1.41421356e+00 1.41421356e+00 1.41421356e+00 1.41421356e+00 1.41421356e+00 1.41421356e+00 1.41421356e+00 +0 0.000000000000e+00 0.000000000000e+00 1024 9539 4225 4225 2 0 0 22 107 252 1.41421095e+00 1.41421538e+00 3.68583386e-01 1.17602776e+00 2.71830053e+00 1.41421356e+00 1.41421356e+00 1.41421356e+00 1.41421356e+00 1.41421356e+00 1.41421356e+00 1.41421356e+00 1.41421356e+00 diff --git a/tests/melt_transport_convergence_test/screen-output b/tests/melt_transport_convergence_test/screen-output index 79b048e47f2..b4754587138 100644 --- a/tests/melt_transport_convergence_test/screen-output +++ b/tests/melt_transport_convergence_test/screen-output @@ -2,13 +2,13 @@ Loading shared library <./libmelt_transport_convergence_test.so> Number of active cells: 1,024 (on 6 levels) -Number of degrees of freedom: 28,617 (8,450+2,178+8,450+1,089+4,225+4,225) +Number of degrees of freedom: 30,600 (8,450+4,161+8,450+1,089+4,225+4,225) *** Timestep 0: t=0 seconds Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+19 iterations. + Solving Stokes system... 0+15 iterations. Solving for u_f in 11 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.6773e-16, 1 Relative nonlinear residual (total system) after nonlinear iteration 1: 1 @@ -18,15 +18,15 @@ Number of degrees of freedom: 28,617 (8,450+2,178+8,450+1,089+4,225+4,225) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.6773e-16, 4.65294e-07 - Relative nonlinear residual (total system) after nonlinear iteration 2: 4.65294e-07 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.6773e-16, 5.23679e-07 + Relative nonlinear residual (total system) after nonlinear iteration 2: 5.23679e-07 Postprocessing: - RMS, max velocity: 8.19 m/s, 14.8 m/s - Pressure min/avg/max: 0.606 Pa, 1.042 Pa, 1.65 Pa - Max and min velocity along boundary parts: 14.87 m/s, 13.45 m/s, 14.87 m/s, 13.45 m/s, 14.43 m/s, 0.3889 m/s, 14.43 m/s, 0.3889 m/s - Errors u_L2, p_L2, p_f_L2, p_c_L2, porosity_L2, u_f_L2: 2.064595e-02, 4.154209e-02, 8.973611e-02, 3.999081e-02, 8.032470e-03, 4.842294e-02 + RMS, max velocity: 8.19 m/s, 14.8 m/s + Pressure min/avg/max: 0.6063 Pa, 1.042 Pa, 1.649 Pa + Max and min velocity along boundary parts: 14.87 m/s, 13.45 m/s, 14.87 m/s, 13.45 m/s, 14.43 m/s, 0.3889 m/s, 14.43 m/s, 0.3889 m/s + Errors u_L2, p_L2, p_f_L2, p_c_bar_L2, p_c_L2, porosity_L2, u_f_L2: 2.079246e-02, 4.215268e-01, 9.083784e-02, 3.271462e-01, 1.621392e+00, 8.032470e-03, 5.875632e-02 Termination requested by criterion: end time diff --git a/tests/melt_transport_convergence_test/statistics b/tests/melt_transport_convergence_test/statistics index eae8abc3a0e..8180e58be9b 100644 --- a/tests/melt_transport_convergence_test/statistics +++ b/tests/melt_transport_convergence_test/statistics @@ -24,4 +24,4 @@ # 24: Minimum velocity magnitude on boundary with indicator 2 ("bottom") (m/s) # 25: Maximum velocity magnitude on boundary with indicator 3 ("top") (m/s) # 26: Minimum velocity magnitude on boundary with indicator 3 ("top") (m/s) -0 0.000000000000e+00 0.000000000000e+00 1024 9539 4225 4225 2 0 0 19 82 45 8.19412398e+00 1.47665355e+01 6.06046126e-01 1.04226491e+00 1.65005757e+00 1.48660433e+01 1.34536471e+01 1.48660433e+01 1.34536471e+01 1.44323291e+01 3.88919368e-01 1.44323291e+01 3.88919368e-01 +0 0.000000000000e+00 0.000000000000e+00 1024 9539 4225 4225 2 0 0 15 77 176 8.19412419e+00 1.47665360e+01 6.06314368e-01 1.04235972e+00 1.64921971e+00 1.48660433e+01 1.34536471e+01 1.48660433e+01 1.34536471e+01 1.44323291e+01 3.88919368e-01 1.44323291e+01 3.88919368e-01 diff --git a/tests/melt_velocity_boundary_conditions/screen-output b/tests/melt_velocity_boundary_conditions/screen-output index 925369567f8..6765e6db243 100644 --- a/tests/melt_velocity_boundary_conditions/screen-output +++ b/tests/melt_velocity_boundary_conditions/screen-output @@ -1,16 +1,14 @@ ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ Loading shared library <./libmelt_velocity_boundary_conditions.so> Number of active cells: 640 (on 4 levels) -Number of degrees of freedom: 18,129 (5,346+1,394+5,346+697+2,673+2,673) +Number of degrees of freedom: 19,352 (5,346+2,617+5,346+697+2,673+2,673) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+18 iterations. + Solving Stokes system... 0+10 iterations. Solving for u_f in 12 iterations. Postprocessing: diff --git a/tests/melt_velocity_boundary_conditions/statistics b/tests/melt_velocity_boundary_conditions/statistics index c6f1b1699f7..2c830d5dd88 100644 --- a/tests/melt_velocity_boundary_conditions/statistics +++ b/tests/melt_velocity_boundary_conditions/statistics @@ -18,4 +18,4 @@ # 18: Minimal value for composition porosity # 19: Maximal value for composition porosity # 20: Global mass for composition porosity -0 0.000000000000e+00 0.000000000000e+00 640 6043 2673 2673 0 0 18 85 53 0.00000000e+00 0.00000000e+00 2.65238255e-03 6.83495331e-03 output-melt_velocity_boundary_conditions/solution/solution-00000 0.00000000e+00 2.00000000e-02 1.00000000e+09 +0 0.000000000000e+00 0.000000000000e+00 640 6043 2673 2673 0 0 10 55 114 0.00000000e+00 0.00000000e+00 2.65238410e-03 6.83495294e-03 output-melt_velocity_boundary_conditions/solution/solution-00000 0.00000000e+00 2.00000000e-02 1.00000000e+09 diff --git a/tests/melting_rate/screen-output b/tests/melting_rate/screen-output index 99b705d90ad..1f3589b4eec 100644 --- a/tests/melting_rate/screen-output +++ b/tests/melting_rate/screen-output @@ -2,7 +2,7 @@ Loading shared library <./libmelting_rate.so> Number of active cells: 512 (on 5 levels) -Number of degrees of freedom: 16,698 (5,412+4,290+561+2,145+2,145+2,145) +Number of degrees of freedom: 17,673 (6,387+4,290+561+2,145+2,145+2,145) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. @@ -18,42 +18,42 @@ Number of degrees of freedom: 16,698 (5,412+4,290+561+2,145+2,145+2,145) Solving peridotite system ... 0 iterations. Solving Stokes system... done. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.64801e-16, 1.20288e-16, 1.20288e-16, 2.1144e-14 - Relative nonlinear residual (total system) after nonlinear iteration 2: 2.1144e-14 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.64801e-16, 1.20288e-16, 1.20288e-16, 1.55267e-14 + Relative nonlinear residual (total system) after nonlinear iteration 2: 1.55267e-14 Postprocessing: Compositions min/max/mass: 1.438e-28/0.2/1.257e+08 // 1.438e-28/0.2/1.257e+08 Writing graphical output: output-melting_rate/solution/solution-00000 -*** Timestep 1: t=117.058 years - Solving temperature system... 6 iterations. +*** Timestep 1: t=163.192 years + Solving temperature system... 7 iterations. Solving porosity system ... 9 iterations. Solving peridotite system ... 8 iterations. Solving Stokes system... done. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 8.22092e-06, 0.00118027, 0.00043042, 0.0644232 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0644232 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.14639e-05, 0.00151834, 0.000425756, 0.0637341 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0637341 Solving temperature system... 5 iterations. Solving porosity system ... 7 iterations. Solving peridotite system ... 6 iterations. Solving Stokes system... done. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.11749e-07, 5.91335e-05, 3.91962e-06, 0.000199814 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000199814 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.12415e-07, 5.73213e-05, 3.80856e-06, 0.00146622 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00146622 Solving temperature system... 2 iterations. Solving porosity system ... 5 iterations. Solving peridotite system ... 3 iterations. Solving Stokes system... done. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.23925e-10, 1.31332e-07, 4.80308e-09, 4.6855e-07 - Relative nonlinear residual (total system) after nonlinear iteration 3: 4.6855e-07 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.6638e-10, 1.51207e-07, 6.34018e-09, 2.4166e-06 + Relative nonlinear residual (total system) after nonlinear iteration 3: 2.4166e-06 Postprocessing: - Compositions min/max/mass: -5.502e-12/0.2001/1.257e+08 // -3.32e-12/0.2001/1.257e+08 + Compositions min/max/mass: -4.55e-10/0.2001/1.257e+08 // -4.053e-12/0.2001/1.257e+08 Writing graphical output: output-melting_rate/solution/solution-00001 *** Timestep 2: t=200 years @@ -62,28 +62,28 @@ Number of degrees of freedom: 16,698 (5,412+4,290+561+2,145+2,145+2,145) Solving peridotite system ... 8 iterations. Solving Stokes system... done. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.7119e-07, 0.000139096, 0.000130185, 0.0201433 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0201433 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.42373e-07, 0.000322559, 0.00033521, 0.153188 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.153188 Solving temperature system... 4 iterations. Solving porosity system ... 7 iterations. - Solving peridotite system ... 5 iterations. + Solving peridotite system ... 6 iterations. Solving Stokes system... done. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.63895e-08, 9.09717e-06, 6.07305e-07, 3.50701e-05 - Relative nonlinear residual (total system) after nonlinear iteration 2: 3.50701e-05 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 6.76458e-08, 3.65664e-05, 2.48756e-06, 0.000934279 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000934279 Solving temperature system... 1 iterations. Solving porosity system ... 4 iterations. - Solving peridotite system ... 2 iterations. + Solving peridotite system ... 3 iterations. Solving Stokes system... done. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 9.92437e-12, 1.06588e-08, 4.12437e-10, 5.51056e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 5.51056e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.96312e-11, 1.84105e-08, 7.59997e-10, 2.88236e-07 + Relative nonlinear residual (total system) after nonlinear iteration 3: 2.88236e-07 Postprocessing: - Compositions min/max/mass: -1.085e-11/0.2002/1.258e+08 // -5.861e-12/0.2002/1.258e+08 + Compositions min/max/mass: -7.12e-10/0.2002/1.258e+08 // -5.202e-12/0.2002/1.258e+08 Writing graphical output: output-melting_rate/solution/solution-00002 Termination requested by criterion: end time diff --git a/tests/melting_rate/statistics b/tests/melting_rate/statistics index 34f17ecaf9a..f673f90dd15 100644 --- a/tests/melting_rate/statistics +++ b/tests/melting_rate/statistics @@ -16,6 +16,6 @@ # 16: Maximal value for composition peridotite # 17: Global mass for composition peridotite # 18: Visualization file name -0 0.000000000000e+00 0.000000000000e+00 512 5973 2145 4290 2 0 0 0 1.43755635e-28 2.00000000e-01 1.25663632e+08 1.43755635e-28 2.00000000e-01 1.25663632e+08 output-melting_rate/solution/solution-00000 -1 1.170578236643e+02 1.170578236643e+02 512 5973 2145 4290 3 13 21 17 -5.50234753e-12 2.00076096e-01 1.25737155e+08 -3.32031218e-12 2.00068717e-01 1.25727116e+08 output-melting_rate/solution/solution-00001 -2 2.000000000000e+02 8.294217633573e+01 512 5973 2145 4290 3 10 19 15 -1.08502650e-11 2.00160594e-01 1.25804398e+08 -5.86116106e-12 2.00152253e-01 1.25785173e+08 output-melting_rate/solution/solution-00002 +0 0.000000000000e+00 0.000000000000e+00 512 6948 2145 4290 2 0 0 0 1.43755635e-28 2.00000000e-01 1.25663632e+08 1.43755635e-28 2.00000000e-01 1.25663632e+08 output-melting_rate/solution/solution-00000 +1 1.631921922339e+02 1.631921922339e+02 512 6948 2145 4290 3 14 21 17 -4.54957895e-10 2.00074081e-01 1.25736699e+08 -4.05344520e-12 2.00066920e-01 1.25727100e+08 output-melting_rate/solution/solution-00001 +2 2.000000000000e+02 3.680780776608e+01 512 6948 2145 4290 3 10 19 17 -7.11985333e-10 2.00155387e-01 1.25800973e+08 -5.20219764e-12 2.00153771e-01 1.25782951e+08 output-melting_rate/solution/solution-00002 diff --git a/tests/melting_rate_operator_splitting/screen-output b/tests/melting_rate_operator_splitting/screen-output index 41b95643015..65ceed0cf5e 100644 --- a/tests/melting_rate_operator_splitting/screen-output +++ b/tests/melting_rate_operator_splitting/screen-output @@ -1,8 +1,6 @@ ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ Number of active cells: 256 (on 5 levels) -Number of degrees of freedom: 8,490 (2,178+578+2,178+289+1,089+1,089+1,089) +Number of degrees of freedom: 8,969 (2,178+1,057+2,178+289+1,089+1,089+1,089) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. @@ -45,8 +43,8 @@ Number of degrees of freedom: 8,490 (2,178+578+2,178+289+1,089+1,089+1,089) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 8.86919e-17, 1.75869e-16, 1.75869e-16, 0 - Relative nonlinear residual (total system) after nonlinear iteration 1: 1.75869e-16 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 8.86919e-17, 1.7158e-16, 1.7158e-16, 0 + Relative nonlinear residual (total system) after nonlinear iteration 1: 1.7158e-16 Postprocessing: diff --git a/tests/melting_rate_operator_splitting2/screen-output b/tests/melting_rate_operator_splitting2/screen-output index da72806490d..4d7894100a6 100644 --- a/tests/melting_rate_operator_splitting2/screen-output +++ b/tests/melting_rate_operator_splitting2/screen-output @@ -1,8 +1,6 @@ ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ Number of active cells: 256 (on 5 levels) -Number of degrees of freedom: 8,490 (2,178+578+2,178+289+1,089+1,089+1,089) +Number of degrees of freedom: 8,969 (2,178+1,057+2,178+289+1,089+1,089+1,089) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. @@ -28,8 +26,8 @@ Number of degrees of freedom: 8,490 (2,178+578+2,178+289+1,089+1,089+1,089) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.27994e-16, 4.35565e-17, 4.35565e-17, 0 - Relative nonlinear residual (total system) after nonlinear iteration 1: 1.27994e-16 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.02082e-16, 1.73376e-16, 1.73376e-16, 0 + Relative nonlinear residual (total system) after nonlinear iteration 1: 2.02082e-16 Postprocessing: @@ -45,8 +43,8 @@ Number of degrees of freedom: 8,490 (2,178+578+2,178+289+1,089+1,089+1,089) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.52325e-16, 2.27248e-16, 2.27248e-16, 0 - Relative nonlinear residual (total system) after nonlinear iteration 1: 2.27248e-16 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.24489e-16, 9.51453e-17, 9.51453e-17, 0 + Relative nonlinear residual (total system) after nonlinear iteration 1: 3.24489e-16 Postprocessing: diff --git a/tests/n_expensive_stokes_solver_steps/solver_history.txt b/tests/n_expensive_stokes_solver_steps/solver_history.txt index 1d719b577bf..bc67b2f2b7b 100644 --- a/tests/n_expensive_stokes_solver_steps/solver_history.txt +++ b/tests/n_expensive_stokes_solver_steps/solver_history.txt @@ -1,6 +1,6 @@ -0 6.86983e+08 -1 6.86319e+08 -2 1.63238e+07 -3 961925 -4 196210 -5 6802.44 +0 686983212.7251304 +1 686318864.7549431 +2 16323811.30518775 +3 961925.3081440757 +4 196210.4232824568 +5 6802.435628751216 diff --git a/tests/particle_melt_advection.cc b/tests/particle_melt_advection.cc new file mode 100644 index 00000000000..6f9e57532ff --- /dev/null +++ b/tests/particle_melt_advection.cc @@ -0,0 +1 @@ +#include "rising_melt_blob.cc" diff --git a/tests/particle_melt_advection.prm b/tests/particle_melt_advection.prm index d32771e9aa3..9f19d253f3b 100644 --- a/tests/particle_melt_advection.prm +++ b/tests/particle_melt_advection.prm @@ -1,41 +1,26 @@ -# A test that computes an initial porosity field based on the -# equilibrium melt fraction for the given temperature field. - -set Adiabatic surface temperature = 1600 # default: 0 -set CFL number = 1.0 -set Maximum time step = 1e6 -set Composition solver tolerance = 1e-14 -set Temperature solver tolerance = 1e-14 -set Nonlinear solver scheme = iterated IMPES -set Output directory = with_melt -set Max nonlinear iterations = 20 -set Linear solver tolerance = 1e-8 -set Nonlinear solver tolerance = 1e-5 +# This is a test for the melt particle functionality. +# It is the same setup as in the rising_melt_blob test, +# with added passive particles that move with the melt +# velocity. The test checks if the particles are moving +# correctly, and if they are correcly labelled with the +# property 'melt presence' if the porosity is above a +# threshold at their location. -# The number of space dimensions you want to run this program in. set Dimension = 2 - -# The end time of the simulation. Units: years if the 'Use years in output -# instead of seconds' parameter is set; seconds otherwise. -# This end time is chosen in such a way that the solitary wave travels -# approximately 5 times its wavelength during the model time. -set End time = 1e5 +set Start time = 0 +set End time = 20000 +set Use years in output instead of seconds = true +set Use direct solver for Stokes system = false +set Adiabatic surface temperature = 1600 +set Nonlinear solver scheme = iterated IMPES +set Max nonlinear iterations = 50 +set CFL number = 0.2 set Pressure normalization = surface set Surface pressure = 0 -set Resume computation = false -set Start time = 0 set Use years in output instead of seconds = true set Use direct solver for Stokes system = false -set Number of cheap Stokes solver steps = 0 - -subsection Adiabatic conditions model - subsection Compute profile - set Composition reference profile = function - set Function expression = 0.0;0.0 - end -end subsection Discretization set Stokes velocity polynomial degree = 2 @@ -50,13 +35,12 @@ subsection Compositional fields set Names of fields = porosity, peridotite end - subsection Boundary temperature model - set List of model names = initial temperature + set Model name = box - subsection Initial temperature - set Minimal temperature = 293 # default: 6000 - set Maximal temperature = 3700 # default: 0 + subsection Box + set Bottom temperature = 1600 + set Top temperature = 293 end end @@ -76,96 +60,48 @@ subsection Geometry model set Model name = box subsection Box - set X extent = 8700000 - set Y extent = 2900000 -# set X periodic = true - set X repetitions = 3 + set X extent = 200000 + set Y extent = 100000 + set X repetitions = 2 end - end subsection Gravity model set Model name = vertical subsection Vertical - set Magnitude = 9.81 + set Magnitude = 10 end end - subsection Initial temperature model - set List of model names = adiabatic, function + set Model name = adiabatic subsection Adiabatic - set Age bottom boundary layer = 5e8 - set Age top boundary layer = 3e8 - set Amplitude = 0 - set Position = center - set Radius = 350000 - + set Age top boundary layer = 1e6 subsection Function set Function expression = 0;0 end end - - subsection Function - set Function expression = if (x*x+y*y < 2700000*2700000,500,0) - end end subsection Initial composition model - set Model name = porosity -end + set Model name = function - -subsection Material model - - set Model name = melt global - subsection Melt global - set Thermal conductivity = 4.7 - set Reference solid density = 3400 - set Reference melt density = 3000 - set Thermal expansion coefficient = 2e-5 - set Reference permeability = 1e-8 - set Reference shear viscosity = 5e21 - set Reference bulk viscosity = 1e19 - set Exponential melt weakening factor = 10 - set Thermal viscosity exponent = 7 - set Thermal bulk viscosity exponent = 7 - set Reference temperature = 1600 - set Solid compressibility = 4.2e-12 - set Melt compressibility = 1.25e-11 - set Reference melt viscosity = 10 - set Depletion density change = -200.0 # -100.0 # 0.0 + subsection Function + set Variable names = x,y + set Function constants = pi=3.1415926,x0=100000,y0=50000,c=10000 + set Function expression = 0.2 * exp(-((x-x0)*(x-x0)+(y-y0)*(y-y0))/(2*c*c)); 0.2 * exp(-((x-x0)*(x-x0)+(y-y0)*(y-y0))/(2*c*c)) end end - -subsection Mesh refinement - set Coarsening fraction = 0.05 - set Refinement fraction = 0.8 - - set Initial adaptive refinement = 0 # default: 2 - set Initial global refinement = 3 # default: 2 - set Strategy = composition threshold, minimum refinement function #, nonadiabatic temperature - set Time steps between mesh refinement = 0 - - subsection Minimum refinement function - set Coordinate system = depth - set Function expression = if (depth>1500000,5,4) - set Variable names = depth,phi - end - - subsection Composition threshold - set Compositional field thresholds = 1e-4,1.0 - end +subsection Material model + set Model name = melting rate end - -subsection Boundary fluid pressure model - set Plugin name = density - subsection Density - set Density formulation = solid density - end +subsection Mesh refinement + set Initial adaptive refinement = 0 + set Initial global refinement = 4 + set Time steps between mesh refinement = 0 end subsection Heating model @@ -179,7 +115,6 @@ subsection Model settings set Tangential velocity boundary indicators = 0,1,2,3 set Zero velocity boundary indicators = -# set Remove nullspace = net x translation set Include melt transport = true end @@ -204,7 +139,7 @@ subsection Postprocess set List of particle properties = melt particle set Time between data output = 0 - set Data output format = ascii + set Data output format = vtu end diff --git a/tests/particle_melt_advection/particles/particle-00001.0000.txt b/tests/particle_melt_advection/particles/particle-00001.0000.txt index a15588508d3..87cd9f6911f 100644 --- a/tests/particle_melt_advection/particles/particle-00001.0000.txt +++ b/tests/particle_melt_advection/particles/particle-00001.0000.txt @@ -1,193 +1,193 @@ # position[0] position[1] id melt_presence -176178 187059 0 0 -527381 188821 1 0 -176482 559759 2 1 -529486 562463 3 0 -876183 190393 4 0 -1.22458e+06 188053 5 1 -882442 565198 6 0 -1.23214e+06 565713 7 1 -177961 929983 8 1 -533975 932232 9 1 -180114 1.29716e+06 10 0 -540506 1.29923e+06 11 0 -890300 935744 12 0 -1.24658e+06 937907 13 0 -901579 1.30205e+06 14 0 -1.26435e+06 1.30308e+06 15 0 -1.57129e+06 194745 16 0 -1.91266e+06 197332 17 0 -1.58263e+06 571081 18 1 -1.93857e+06 571370 19 0 -2.25853e+06 191128 20 1 -2.61788e+06 174057 21 1 -2.29814e+06 556368 22 1 -2.66317e+06 527867 23 1 -1.60397e+06 938472 24 0 -1.9667e+06 932897 25 0 -1.6298e+06 1.30089e+06 26 0 -1.99713e+06 1.28962e+06 27 0 -2.33268e+06 912734 28 0 -2.69963e+06 885434 29 0 -2.36941e+06 1.26669e+06 30 0 -2.73252e+06 1.2469e+06 31 0 -182447 1.65967e+06 32 1 -547645 1.66126e+06 33 1 -184398 2.01779e+06 34 0 -553359 2.01871e+06 35 0 -913870 1.66282e+06 36 0 -1.28206e+06 1.66091e+06 37 0 -924329 2.01806e+06 38 0 -1.29808e+06 2.01337e+06 39 0 -186118 2.3453e+06 40 1 -558914 2.34638e+06 41 1 -186267 2.78499e+06 42 1 -556336 2.78317e+06 43 1 -930968 2.35997e+06 44 1 -1.30786e+06 2.3617e+06 45 1 -939765 2.74893e+06 46 1 -1.29599e+06 2.71927e+06 47 1 -1.65414e+06 1.65482e+06 48 0 -2.02955e+06 1.64095e+06 49 0 -1.67599e+06 2.00288e+06 50 1 -2.04575e+06 1.99631e+06 51 1 -2.39583e+06 1.62456e+06 52 0 -2.75509e+06 1.61451e+06 53 0 -2.40765e+06 1.98949e+06 54 1 -2.76469e+06 1.98361e+06 55 1 -1.67533e+06 2.35921e+06 56 1 -2.04047e+06 2.35772e+06 57 1 -1.66052e+06 2.71924e+06 58 1 -2.02437e+06 2.71891e+06 59 1 -2.40276e+06 2.35497e+06 60 0 -2.76164e+06 2.35266e+06 61 1 -2.38712e+06 2.71865e+06 62 0 -2.74876e+06 2.71837e+06 63 0 -3.00042e+06 165336 64 0 -3.38718e+06 169085 65 1 -3.0307e+06 513620 66 0 -3.40226e+06 517118 67 1 -3.76768e+06 173367 68 0 -4.14218e+06 176380 69 0 -3.77455e+06 524327 70 0 -4.14516e+06 530577 71 0 -3.06195e+06 872985 72 0 -3.42449e+06 874732 73 1 -3.0898e+06 1.23903e+06 74 0 -3.44668e+06 1.23959e+06 75 0 -3.78898e+06 881384 76 0 -4.15421e+06 888261 77 0 -3.80534e+06 1.24458e+06 78 0 -4.16573e+06 1.2504e+06 79 0 -4.51237e+06 178290 80 0 -4.87979e+06 179387 81 1 -4.51373e+06 535086 82 0 -4.88046e+06 538086 83 0 -5.24547e+06 180134 84 0 -5.61007e+06 180544 85 0 -5.24588e+06 540017 86 0 -5.61047e+06 541189 87 0 -4.51936e+06 893781 88 1 -4.88409e+06 897766 89 0 -4.52732e+06 1.2555e+06 90 0 -4.88962e+06 1.25937e+06 91 0 -5.24835e+06 900411 92 0 -5.61225e+06 902077 93 0 -5.25232e+06 1.26206e+06 94 0 -5.61519e+06 1.26382e+06 95 0 -3.10956e+06 1.60904e+06 96 0 -3.46362e+06 1.60909e+06 97 0 -3.11924e+06 1.9806e+06 98 1 -3.47295e+06 1.9802e+06 99 1 -3.81897e+06 1.61212e+06 100 0 -4.17626e+06 1.61613e+06 101 0 -3.82758e+06 1.98158e+06 102 1 -4.18384e+06 1.98364e+06 103 1 -3.11834e+06 2.35139e+06 104 0 -3.47436e+06 2.35103e+06 105 1 -3.10952e+06 2.71818e+06 106 0 -3.46974e+06 2.71807e+06 107 0 -3.83076e+06 2.3513e+06 108 1 -4.18816e+06 2.35187e+06 109 0 -3.82973e+06 2.71803e+06 110 0 -4.18969e+06 2.71804e+06 111 0 -4.53529e+06 1.61986e+06 112 0 -4.89565e+06 1.62281e+06 113 1 -4.54182e+06 1.9857e+06 114 1 -4.90124e+06 1.9874e+06 115 0 -5.25695e+06 1.62495e+06 116 1 -5.61883e+06 1.6264e+06 117 0 -5.26169e+06 1.9887e+06 118 0 -5.62285e+06 1.9896e+06 119 1 -4.54665e+06 2.35248e+06 120 0 -4.90612e+06 2.35303e+06 121 1 -4.54977e+06 2.71807e+06 122 0 -4.91001e+06 2.71812e+06 123 1 -5.26638e+06 2.35351e+06 124 1 -5.62716e+06 2.35385e+06 125 1 -5.27043e+06 2.71817e+06 126 1 -5.63104e+06 2.71821e+06 127 0 -5.97406e+06 180736 128 0 -6.33774e+06 180834 129 0 -5.97449e+06 541835 130 0 -6.33818e+06 542179 131 0 -6.70125e+06 180877 132 0 -7.0647e+06 180894 133 0 -6.70168e+06 542351 134 0 -7.06508e+06 542432 135 0 -5.97586e+06 903060 136 0 -6.33929e+06 903609 137 0 -5.97813e+06 1.26489e+06 138 0 -6.3411e+06 1.26552e+06 139 0 -6.7026e+06 903902 140 0 -7.06583e+06 904051 141 0 -6.70405e+06 1.26587e+06 142 0 -7.06699e+06 1.26605e+06 143 0 -7.42811e+06 180898 144 0 -7.79151e+06 180898 145 0 -7.42843e+06 542467 146 0 -7.79175e+06 542480 147 0 -8.1549e+06 180897 148 0 -8.5183e+06 180894 149 0 -8.15505e+06 542484 150 0 -8.51835e+06 542484 151 0 -7.42901e+06 904123 152 0 -7.79217e+06 904157 153 0 -7.4299e+06 1.26615e+06 154 0 -7.7928e+06 1.26621e+06 155 0 -8.15531e+06 904172 156 0 -8.51844e+06 904177 157 0 -8.15569e+06 1.26623e+06 158 0 -8.51856e+06 1.26625e+06 159 0 -5.98106e+06 1.62731e+06 160 0 -6.34348e+06 1.62785e+06 161 0 -5.98446e+06 1.9902e+06 162 0 -6.34634e+06 1.99058e+06 163 0 -6.70599e+06 1.62817e+06 164 0 -7.06853e+06 1.62836e+06 165 0 -6.70836e+06 1.99083e+06 166 0 -7.07044e+06 1.99098e+06 167 0 -5.98829e+06 2.3541e+06 168 0 -6.34964e+06 2.35428e+06 169 0 -5.99179e+06 2.71825e+06 170 0 -6.35267e+06 2.71828e+06 171 0 -6.71111e+06 2.3544e+06 172 0 -7.07266e+06 2.35449e+06 173 0 -6.71365e+06 2.7183e+06 174 0 -7.0747e+06 2.71832e+06 175 0 -7.43109e+06 1.62847e+06 176 0 -7.79364e+06 1.62853e+06 177 0 -7.43255e+06 1.99109e+06 178 0 -7.79468e+06 1.99115e+06 179 0 -8.15619e+06 1.62857e+06 180 0 -8.51873e+06 1.62858e+06 181 0 -8.15681e+06 1.99119e+06 182 0 -8.51894e+06 1.99121e+06 183 0 -7.43426e+06 2.35455e+06 184 0 -7.79589e+06 2.35459e+06 185 0 -7.43582e+06 2.71834e+06 186 0 -7.79698e+06 2.71835e+06 187 0 -8.15753e+06 2.35462e+06 188 0 -8.51917e+06 2.35463e+06 189 0 -8.15818e+06 2.71835e+06 190 0 -8.51939e+06 2.71836e+06 191 0 +176195 186892 0 0 +528004 187684 1 0 +176365 559607 2 0 +528923 561202 3 0 +878082 189248 4 0 +1.22549e+06 191456 5 0 +880888 564316 6 0 +1.23223e+06 568188 7 0 +177853 930014 8 0 +533656 931717 9 0 +180078 1.29741e+06 10 0 +540669 1.29877e+06 11 0 +889718 934994 12 0 +1.24654e+06 938355 13 0 +902052 1.3013e+06 14 0 +1.26497e+06 1.30285e+06 15 0 +1.56999e+06 193903 16 0 +1.91263e+06 195380 17 0 +1.58392e+06 571131 18 0 +1.93813e+06 569910 19 0 +2.25873e+06 192569 20 0 +2.61695e+06 174117 21 0 +2.29791e+06 557454 22 0 +2.66349e+06 528090 23 0 +1.605e+06 938940 24 0 +1.96723e+06 932614 25 0 +1.63055e+06 1.30103e+06 26 0 +1.99796e+06 1.28969e+06 27 0 +2.33295e+06 913151 28 0 +2.70025e+06 885632 29 0 +2.37015e+06 1.26688e+06 30 0 +2.73329e+06 1.24705e+06 31 0 +182590 1.65969e+06 32 1 +548100 1.66048e+06 33 1 +184973 2.01719e+06 34 0 +554274 2.01925e+06 35 0 +914637 1.66179e+06 36 1 +1.28287e+06 1.6607e+06 37 0 +924982 2.01736e+06 38 0 +1.2986e+06 2.01312e+06 39 0 +186153 2.36817e+06 40 1 +558419 2.36162e+06 41 1 +186938 2.75372e+06 42 1 +558691 2.75418e+06 43 1 +929846 2.36487e+06 44 1 +1.3083e+06 2.36175e+06 45 1 +932448 2.72725e+06 46 1 +1.296e+06 2.71773e+06 47 1 +1.65489e+06 1.65487e+06 48 0 +2.03027e+06 1.64105e+06 49 0 +1.67657e+06 2.00294e+06 50 0 +2.0463e+06 1.99641e+06 51 0 +2.39655e+06 1.62471e+06 52 0 +2.75584e+06 1.61465e+06 53 0 +2.40822e+06 1.98961e+06 54 0 +2.76528e+06 1.9837e+06 55 0 +1.67568e+06 2.35929e+06 56 0 +2.04083e+06 2.3578e+06 57 0 +1.66066e+06 2.71899e+06 58 0 +2.02456e+06 2.71888e+06 59 0 +2.40315e+06 2.35503e+06 60 0 +2.76206e+06 2.35271e+06 61 0 +2.38734e+06 2.71865e+06 62 0 +2.749e+06 2.71838e+06 63 0 +2.9997e+06 165068 64 0 +3.38667e+06 168988 65 0 +3.03071e+06 513319 66 0 +3.40223e+06 516904 67 0 +3.76739e+06 173199 68 0 +4.14205e+06 176274 69 0 +3.77453e+06 524044 70 0 +4.14518e+06 530380 71 0 +3.06245e+06 872893 72 0 +3.42486e+06 874539 73 0 +3.09051e+06 1.23903e+06 74 0 +3.44729e+06 1.23949e+06 75 0 +3.78926e+06 881131 76 0 +4.15442e+06 888064 77 0 +3.80582e+06 1.24442e+06 78 0 +4.1661e+06 1.25026e+06 79 0 +4.51235e+06 178235 80 0 +4.87979e+06 179423 81 0 +4.51374e+06 534988 82 0 +4.88051e+06 538053 83 0 +5.24546e+06 180115 84 0 +5.61008e+06 180503 85 0 +5.24597e+06 539975 86 0 +5.61054e+06 541124 87 0 +4.51953e+06 893675 88 0 +4.88424e+06 897689 89 0 +4.52762e+06 1.25541e+06 90 0 +4.88987e+06 1.2593e+06 91 0 +5.2485e+06 900346 92 0 +5.61237e+06 902006 93 0 +5.25253e+06 1.262e+06 94 0 +5.61537e+06 1.26375e+06 95 0 +3.11029e+06 1.6091e+06 96 0 +3.46428e+06 1.60908e+06 97 0 +3.11985e+06 1.98066e+06 98 0 +3.47354e+06 1.98024e+06 99 0 +3.81953e+06 1.61207e+06 100 0 +4.17672e+06 1.61607e+06 101 0 +3.82812e+06 1.98159e+06 102 0 +4.18433e+06 1.98364e+06 103 0 +3.11877e+06 2.35142e+06 104 0 +3.47477e+06 2.35106e+06 105 0 +3.10976e+06 2.71819e+06 106 0 +3.46999e+06 2.71808e+06 107 0 +3.83117e+06 2.35132e+06 108 0 +4.18854e+06 2.35188e+06 109 0 +3.82998e+06 2.71804e+06 110 0 +4.18994e+06 2.71805e+06 111 0 +4.53567e+06 1.61981e+06 112 0 +4.89598e+06 1.62278e+06 113 0 +4.54224e+06 1.9857e+06 114 0 +4.90159e+06 1.9874e+06 115 0 +5.25722e+06 1.62491e+06 116 0 +5.61906e+06 1.62634e+06 117 0 +5.26199e+06 1.98868e+06 118 0 +5.62312e+06 1.98957e+06 119 0 +4.54702e+06 2.3525e+06 120 0 +4.90648e+06 2.35306e+06 121 0 +4.55002e+06 2.71808e+06 122 0 +4.91026e+06 2.71812e+06 123 0 +5.26669e+06 2.35351e+06 124 0 +5.62743e+06 2.35384e+06 125 0 +5.27067e+06 2.71817e+06 126 0 +5.63126e+06 2.71821e+06 127 0 +5.9741e+06 180711 128 0 +6.3378e+06 180816 129 0 +5.97457e+06 541780 130 0 +6.33825e+06 542137 131 0 +6.70132e+06 180866 132 0 +7.06476e+06 180887 133 0 +6.70175e+06 542321 134 0 +7.06515e+06 542412 135 0 +5.97598e+06 902993 136 0 +6.33939e+06 903554 137 0 +5.97829e+06 1.26482e+06 138 0 +6.34123e+06 1.26546e+06 139 0 +6.70268e+06 903860 140 0 +7.0659e+06 904021 141 0 +6.70416e+06 1.26582e+06 142 0 +7.06708e+06 1.26602e+06 143 0 +7.42816e+06 180894 144 0 +7.79155e+06 180895 145 0 +7.42848e+06 542453 146 0 +7.79179e+06 542471 147 0 +8.15493e+06 180894 148 0 +8.51831e+06 180893 149 0 +8.15508e+06 542477 150 0 +8.51836e+06 542478 151 0 +7.42907e+06 904103 152 0 +7.79221e+06 904142 153 0 +7.42997e+06 1.26613e+06 154 0 +7.79285e+06 1.26619e+06 155 0 +8.15533e+06 904161 156 0 +8.51845e+06 904168 157 0 +8.15572e+06 1.26622e+06 158 0 +8.51857e+06 1.26623e+06 159 0 +5.98125e+06 1.62725e+06 160 0 +6.34364e+06 1.6278e+06 161 0 +5.98469e+06 1.99016e+06 162 0 +6.34652e+06 1.99055e+06 163 0 +6.70612e+06 1.62814e+06 164 0 +7.06864e+06 1.62833e+06 165 0 +6.7085e+06 1.9908e+06 166 0 +7.07055e+06 1.99096e+06 167 0 +5.98851e+06 2.35409e+06 168 0 +6.34982e+06 2.35426e+06 169 0 +5.99199e+06 2.71825e+06 170 0 +6.35284e+06 2.71828e+06 171 0 +6.71126e+06 2.35439e+06 172 0 +7.07278e+06 2.35448e+06 173 0 +6.71379e+06 2.7183e+06 174 0 +7.07482e+06 2.71832e+06 175 0 +7.43117e+06 1.62845e+06 176 0 +7.7937e+06 1.62852e+06 177 0 +7.43264e+06 1.99107e+06 178 0 +7.79474e+06 1.99114e+06 179 0 +8.15622e+06 1.62856e+06 180 0 +8.51874e+06 1.62857e+06 181 0 +8.15684e+06 1.99118e+06 182 0 +8.51895e+06 1.9912e+06 183 0 +7.43435e+06 2.35454e+06 184 0 +7.79595e+06 2.35459e+06 185 0 +7.43591e+06 2.71834e+06 186 0 +7.79705e+06 2.71835e+06 187 0 +8.15756e+06 2.35462e+06 188 0 +8.51919e+06 2.35463e+06 189 0 +8.15822e+06 2.71835e+06 190 0 +8.5194e+06 2.71836e+06 191 0 diff --git a/tests/particle_melt_advection/screen-output b/tests/particle_melt_advection/screen-output index 646452112de..e7c69d7bdb8 100644 --- a/tests/particle_melt_advection/screen-output +++ b/tests/particle_melt_advection/screen-output @@ -1,277 +1,297 @@ -Number of active cells: 192 (on 4 levels) -Number of degrees of freedom: 5,290 (1,666+450+1,666+225+833+225+225) +Loading shared library <./libparticle_melt_advection.so> + +Number of active cells: 512 (on 5 levels) +Number of degrees of freedom: 14,505 (4,290+2,097+4,290+561+2,145+561+561) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving peridotite system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+36 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.87476e-16, 1.20111e-16, 0, 0.956793 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.956793 + Solving Stokes system... 21+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.77121e-16, 1.4111e-16, 1.4111e-16, 0.168325 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.168325 Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving peridotite system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+36 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.13013e-16, 1.20111e-16, 0, 0.752886 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.752886 + Solving Stokes system... 0+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.77121e-16, 1.4111e-16, 1.4111e-16, 8.68063e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 8.68063e-08 - Solving temperature system... 0 iterations. - Solving porosity system ... 0 iterations. - Skipping peridotite composition solve because RHS is zero. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+35 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.3936e-16, 1.20111e-16, 0, 0.16311 - Relative nonlinear residual (total system) after nonlinear iteration 3: 0.16311 - Solving temperature system... 0 iterations. - Solving porosity system ... 0 iterations. - Skipping peridotite composition solve because RHS is zero. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+32 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.21222e-16, 1.20111e-16, 0, 0.025768 - Relative nonlinear residual (total system) after nonlinear iteration 4: 0.025768 + Postprocessing: + Writing graphical output: output-particle_melt_advection/solution/solution-00000 + Compositions min/max/mass: 1.438e-28/0.2/1.257e+08 // 1.438e-28/0.2/1.257e+08 + RMS, max velocity: 0.00292 m/year, 0.00958 m/year + Temperature min/avg/max: 293 K, 1519 K, 1625 K + Writing depth average: output-particle_melt_advection/depth_average.gnuplot + Writing particle output: output-particle_melt_advection/particles/particles-00000 - Solving temperature system... 0 iterations. - Solving porosity system ... 0 iterations. - Skipping peridotite composition solve because RHS is zero. +*** Timestep 1: t=3221.32 years + Solving temperature system... 7 iterations. + Solving porosity system ... 4 iterations. + Solving peridotite system ... 3 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+28 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.24729e-16, 1.20111e-16, 0, 0.00311419 - Relative nonlinear residual (total system) after nonlinear iteration 5: 0.00311419 - - Solving temperature system... 0 iterations. - Solving porosity system ... 0 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 18+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000236148, 0.0291833, 0.00606512, 0.0176208 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0291833 + + Solving temperature system... 5 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 3 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+25 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.12646e-16, 1.20111e-16, 0, 0.000303303 - Relative nonlinear residual (total system) after nonlinear iteration 6: 0.000303303 - - Solving temperature system... 0 iterations. - Solving porosity system ... 0 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 14+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.81425e-07, 0.00179541, 0.000110837, 0.000699568 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00179541 + + Solving temperature system... 4 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 2 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+21 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.2184e-16, 1.20111e-16, 0, 2.46785e-05 - Relative nonlinear residual (total system) after nonlinear iteration 7: 2.46785e-05 - - Solving temperature system... 0 iterations. - Solving porosity system ... 0 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 10+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.2672e-08, 8.26451e-05, 3.95751e-06, 2.46731e-05 + Relative nonlinear residual (total system) after nonlinear iteration 3: 8.26451e-05 + + Solving temperature system... 3 iterations. + Solving porosity system ... 2 iterations. + Solving peridotite system ... 2 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+17 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.16234e-16, 1.20111e-16, 0, 1.71537e-06 - Relative nonlinear residual (total system) after nonlinear iteration 8: 1.71537e-06 + Solving Stokes system... 6+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.17921e-09, 5.22978e-06, 2.47089e-07, 1.98235e-06 + Relative nonlinear residual (total system) after nonlinear iteration 4: 5.22978e-06 Postprocessing: - Writing graphical output: output-particle_melt_advection/solution/solution-00000 - Compositions min/max/mass: 0/0.2721/8.939e+10 // 0/0/0 - RMS, max velocity: 0.279 m/year, 1.38 m/year - Temperature min/avg/max: 293 K, 2136 K, 4200 K - Writing depth average: output-particle_melt_advection/depth_average.gnuplot - Writing particle output: output-particle_melt_advection/particles/particle-00000 - -*** Timestep 1: t=100000 years - Solving temperature system... 11 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0118326, 0.159783, 0, 0.0223922 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.159783 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000795903, 0.07248, 0, 0.00747608 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.07248 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Writing graphical output: output-particle_melt_advection/solution/solution-00001 + Compositions min/max/mass: -8.114e-07/0.1974/1.257e+08 // -2.776e-09/0.1976/1.256e+08 + RMS, max velocity: 0.00293 m/year, 0.00964 m/year + Temperature min/avg/max: 293 K, 1518 K, 1625 K + Writing particle output: output-particle_melt_advection/particles/particles-00001 + +*** Timestep 2: t=6395.88 years + Solving temperature system... 7 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 3 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000419264, 0.0563518, 0, 0.00436835 - Relative nonlinear residual (total system) after nonlinear iteration 3: 0.0563518 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 15+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.47601e-05, 0.00281141, 0.00308618, 0.00491689 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.00491689 + + Solving temperature system... 4 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 2 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000161779, 0.0612867, 0, 0.00438236 - Relative nonlinear residual (total system) after nonlinear iteration 4: 0.0612867 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 10+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.82524e-08, 0.000126638, 5.57584e-06, 6.98658e-05 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000126638 + + Solving temperature system... 3 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 2 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000374396, 0.0488634, 0, 0.00396823 - Relative nonlinear residual (total system) after nonlinear iteration 5: 0.0488634 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 6+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.2923e-09, 6.31101e-06, 3.66387e-07, 2.54658e-06 + Relative nonlinear residual (total system) after nonlinear iteration 3: 6.31101e-06 + + + Postprocessing: + Writing graphical output: output-particle_melt_advection/solution/solution-00002 + Compositions min/max/mass: -2.655e-06/0.1939/1.257e+08 // -1.954e-08/0.1944/1.256e+08 + RMS, max velocity: 0.00293 m/year, 0.00966 m/year + Temperature min/avg/max: 293 K, 1518 K, 1625 K + Writing particle output: output-particle_melt_advection/particles/particles-00002 + +*** Timestep 3: t=9539.33 years + Solving temperature system... 6 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 3 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+24 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000675745, 0.0554164, 0, 0.00313225 - Relative nonlinear residual (total system) after nonlinear iteration 6: 0.0554164 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 14+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 9.18238e-06, 0.00141637, 0.00155418, 0.00444806 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.00444806 + + Solving temperature system... 4 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 3 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+27 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000286676, 0.0604252, 0, 0.00703041 - Relative nonlinear residual (total system) after nonlinear iteration 7: 0.0604252 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 10+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.42114e-08, 9.59994e-05, 3.03251e-06, 5.77952e-05 + Relative nonlinear residual (total system) after nonlinear iteration 2: 9.59994e-05 + + Solving temperature system... 3 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 2 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000658048, 0.055261, 0, 0.00753673 - Relative nonlinear residual (total system) after nonlinear iteration 8: 0.055261 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 4+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.36572e-09, 3.83169e-06, 2.18072e-07, 1.61402e-06 + Relative nonlinear residual (total system) after nonlinear iteration 3: 3.83169e-06 + + + Postprocessing: + Writing graphical output: output-particle_melt_advection/solution/solution-00003 + Compositions min/max/mass: -4.607e-06/0.1902/1.257e+08 // -2.265e-08/0.1906/1.256e+08 + RMS, max velocity: 0.00294 m/year, 0.00965 m/year + Temperature min/avg/max: 293 K, 1518 K, 1625 K + Writing particle output: output-particle_melt_advection/particles/particles-00003 + +*** Timestep 4: t=12645.9 years + Solving temperature system... 6 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 3 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000983284, 0.0559084, 0, 0.00615684 - Relative nonlinear residual (total system) after nonlinear iteration 9: 0.0559084 - - Solving temperature system... 9 iterations. - Solving porosity system ... 5 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 14+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.43983e-06, 0.00150082, 0.000420361, 0.00426819 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.00426819 + + Solving temperature system... 4 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 3 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+27 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000612971, 0.0515675, 0, 0.0061324 - Relative nonlinear residual (total system) after nonlinear iteration 10: 0.0515675 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 10+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.95286e-08, 9.01513e-05, 2.3991e-06, 5.54476e-05 + Relative nonlinear residual (total system) after nonlinear iteration 2: 9.01513e-05 + + Solving temperature system... 3 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 2 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+27 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.00086677, 0.0609365, 0, 0.00701854 - Relative nonlinear residual (total system) after nonlinear iteration 11: 0.0609365 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 4+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 8.75428e-10, 3.01382e-06, 1.5929e-07, 1.35514e-06 + Relative nonlinear residual (total system) after nonlinear iteration 3: 3.01382e-06 + + + Postprocessing: + Writing graphical output: output-particle_melt_advection/solution/solution-00004 + Compositions min/max/mass: -7.752e-06/0.1868/1.257e+08 // -3.484e-08/0.1867/1.255e+08 + RMS, max velocity: 0.00294 m/year, 0.00965 m/year + Temperature min/avg/max: 293 K, 1518 K, 1625 K + Writing particle output: output-particle_melt_advection/particles/particles-00004 + +*** Timestep 5: t=15715.7 years + Solving temperature system... 6 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 3 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+27 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000693629, 0.0580434, 0, 0.00589117 - Relative nonlinear residual (total system) after nonlinear iteration 12: 0.0580434 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 14+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.90652e-06, 0.00159928, 0.000193916, 0.00418312 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.00418312 + + Solving temperature system... 4 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 2 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.00139261, 0.0437996, 0, 0.00434155 - Relative nonlinear residual (total system) after nonlinear iteration 13: 0.0437996 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 10+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.3011e-08, 8.88914e-05, 2.316e-06, 5.66023e-05 + Relative nonlinear residual (total system) after nonlinear iteration 2: 8.88914e-05 + + Solving temperature system... 2 iterations. + Solving porosity system ... 2 iterations. + Solving peridotite system ... 2 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000526079, 0.0538683, 0, 0.00574833 - Relative nonlinear residual (total system) after nonlinear iteration 14: 0.0538683 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 4+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.37266e-10, 2.68778e-06, 1.30904e-07, 1.35621e-06 + Relative nonlinear residual (total system) after nonlinear iteration 3: 2.68778e-06 + + + Postprocessing: + Writing graphical output: output-particle_melt_advection/solution/solution-00005 + Compositions min/max/mass: -1.45e-05/0.1838/1.257e+08 // -4.949e-08/0.1831/1.255e+08 + RMS, max velocity: 0.00295 m/year, 0.0097 m/year + Temperature min/avg/max: 293 K, 1518 K, 1625 K + Writing particle output: output-particle_melt_advection/particles/particles-00005 + +*** Timestep 6: t=18750.8 years + Solving temperature system... 6 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 3 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000754795, 0.057319, 0, 0.00619204 - Relative nonlinear residual (total system) after nonlinear iteration 15: 0.057319 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 16+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.68994e-06, 0.0016339, 0.000346233, 0.00416248 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.00416248 + + Solving temperature system... 5 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 2 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.00065743, 0.0501851, 0, 0.00478976 - Relative nonlinear residual (total system) after nonlinear iteration 16: 0.0501851 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 11+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.15612e-07, 0.000130389, 2.35352e-06, 6.66259e-05 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000130389 + + Solving temperature system... 3 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 2 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000366453, 0.046624, 0, 0.0046039 - Relative nonlinear residual (total system) after nonlinear iteration 17: 0.046624 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 5+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 8.34896e-09, 4.91093e-06, 2.57335e-07, 2.37972e-06 + Relative nonlinear residual (total system) after nonlinear iteration 3: 4.91093e-06 + + + Postprocessing: + Writing graphical output: output-particle_melt_advection/solution/solution-00006 + Compositions min/max/mass: -2.709e-05/0.1812/1.257e+08 // -6.659e-08/0.18/1.254e+08 + RMS, max velocity: 0.00295 m/year, 0.00973 m/year + Temperature min/avg/max: 293 K, 1518 K, 1625 K + Writing particle output: output-particle_melt_advection/particles/particles-00006 + +*** Timestep 7: t=20000 years + Solving temperature system... 6 iterations. + Solving porosity system ... 3 iterations. + Solving peridotite system ... 3 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000336761, 0.0488559, 0, 0.00592128 - Relative nonlinear residual (total system) after nonlinear iteration 18: 0.0488559 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 13+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 7.37508e-07, 0.000471671, 0.000180698, 0.00120371 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.00120371 + + Solving temperature system... 4 iterations. + Solving porosity system ... 2 iterations. + Solving peridotite system ... 2 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+27 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000748895, 0.0527689, 0, 0.00613236 - Relative nonlinear residual (total system) after nonlinear iteration 19: 0.0527689 - - Solving temperature system... 9 iterations. - Solving porosity system ... 6 iterations. - Skipping peridotite composition solve because RHS is zero. + Solving Stokes system... 7+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.24196e-08, 1.27194e-05, 3.39207e-07, 8.54962e-06 + Relative nonlinear residual (total system) after nonlinear iteration 2: 1.27194e-05 + + Solving temperature system... 2 iterations. + Solving porosity system ... 2 iterations. + Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+26 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000876585, 0.056009, 0, 0.00562792 - Relative nonlinear residual (total system) after nonlinear iteration 20: 0.056009 + Solving Stokes system... 1+0 iterations. + Solving for u_f in 12 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 8.5464e-11, 1.73319e-07, 7.26747e-09, 1.27667e-07 + Relative nonlinear residual (total system) after nonlinear iteration 3: 1.73319e-07 Postprocessing: - Writing graphical output: output-particle_melt_advection/solution/solution-00001 - Compositions min/max/mass: -0.01312/0.2168/8.32e+10 // 0/0/0 - RMS, max velocity: 0.289 m/year, 1.41 m/year - Temperature min/avg/max: 293 K, 2136 K, 4200 K - Writing particle output: output-particle_melt_advection/particles/particle-00001 + Writing graphical output: output-particle_melt_advection/solution/solution-00007 + Compositions min/max/mass: -6.259e-05/0.1802/1.257e+08 // -7.458e-08/0.1789/1.254e+08 + RMS, max velocity: 0.00295 m/year, 0.00974 m/year + Temperature min/avg/max: 293 K, 1518 K, 1625 K + Writing particle output: output-particle_melt_advection/particles/particles-00007 Termination requested by criterion: end time diff --git a/tests/particle_melt_advection/statistics b/tests/particle_melt_advection/statistics index ef529bf3acc..0eaf82943d4 100644 --- a/tests/particle_melt_advection/statistics +++ b/tests/particle_melt_advection/statistics @@ -27,5 +27,11 @@ # 27: Average nondimensional temperature (K) # 28: Number of advected particles # 29: Particle file name -0 0.000000000000e+00 0.000000000000e+00 192 1891 833 450 8 0 0 0 230 1317 714 output-particle_melt_advection/solution/solution-00000 0.00000000e+00 2.72115500e-01 8.93941934e+10 0.00000000e+00 0.00000000e+00 0.00000000e+00 2.78635426e-01 1.38285314e+00 2.93000000e+02 2.13574874e+03 4.20000000e+03 5.40871366e-01 192 output-particle_melt_advection/output-particle_melt_advection/particles/particle-00000 -1 1.000000000000e+05 1.000000000000e+05 192 1891 833 450 20 182 119 0 523 2918 1629 output-particle_melt_advection/solution/solution-00001 -1.31158953e-02 2.16839533e-01 8.32007568e+10 0.00000000e+00 0.00000000e+00 0.00000000e+00 2.89395961e-01 1.40568095e+00 2.93000000e+02 2.13558743e+03 4.20000000e+03 5.40824017e-01 192 output-particle_melt_advection/output-particle_melt_advection/particles/particle-00001 +0 0.000000000000e+00 0.000000000000e+00 512 4851 2145 1122 2 0 0 0 21 22 405 output-particle_melt_advection/solution/solution-00000 1.43755635e-28 2.00000000e-01 1.25663581e+08 1.43755635e-28 2.00000000e-01 1.25663581e+08 2.91582053e-03 9.57683988e-03 2.93000000e+02 1.51861872e+03 1.62499300e+03 9.37734292e-01 512 output-particle_melt_advection/output-particle_melt_advection/particles/particles-00000 +1 3.221321344218e+03 3.221321344218e+03 512 4851 2145 1122 4 19 12 10 48 52 1010 output-particle_melt_advection/solution/solution-00001 -8.11428743e-07 1.97381545e-01 1.25665193e+08 -2.77560405e-09 1.97559862e-01 1.25648751e+08 2.92918862e-03 9.64455276e-03 2.93000000e+02 1.51844688e+03 1.62455231e+03 9.37602816e-01 512 output-particle_melt_advection/output-particle_melt_advection/particles/particles-00001 +2 6.395883321861e+03 3.174561977643e+03 512 4851 2145 1122 3 14 9 7 31 34 657 output-particle_melt_advection/solution/solution-00002 -2.65502790e-06 1.93877798e-01 1.25667745e+08 -1.95395019e-08 1.94391239e-01 1.25624756e+08 2.93483269e-03 9.66271630e-03 2.93000000e+02 1.51827450e+03 1.62458305e+03 9.37470926e-01 512 output-particle_melt_advection/output-particle_melt_advection/particles/particles-00002 +3 9.539328177326e+03 3.143444855464e+03 512 4851 2145 1122 3 13 9 8 28 31 596 output-particle_melt_advection/solution/solution-00003 -4.60655011e-06 1.90222722e-01 1.25671427e+08 -2.26547289e-08 1.90609806e-01 1.25588794e+08 2.93827915e-03 9.64952920e-03 2.93000000e+02 1.51810280e+03 1.62474126e+03 9.37339557e-01 512 output-particle_melt_advection/output-particle_melt_advection/particles/particles-00003 +4 1.264591542489e+04 3.106587247568e+03 512 4851 2145 1122 3 13 9 8 28 31 582 output-particle_melt_advection/solution/solution-00004 -7.75228432e-06 1.86809514e-01 1.25676126e+08 -3.48436144e-08 1.86734702e-01 1.25540422e+08 2.94145367e-03 9.64565505e-03 2.93000000e+02 1.51793304e+03 1.62486674e+03 9.37209673e-01 512 output-particle_melt_advection/output-particle_melt_advection/particles/particles-00004 +5 1.571574760232e+04 3.069832177428e+03 512 4851 2145 1122 3 12 8 7 28 31 587 output-particle_melt_advection/solution/solution-00005 -1.44999704e-05 1.83776699e-01 1.25681624e+08 -4.94917909e-08 1.83119138e-01 1.25479921e+08 2.94504064e-03 9.70131669e-03 2.93000000e+02 1.51776546e+03 1.62496303e+03 9.37081452e-01 512 output-particle_melt_advection/output-particle_melt_advection/particles/particles-00005 +6 1.875080258907e+04 3.035054986745e+03 512 4851 2145 1122 3 14 9 7 32 35 650 output-particle_melt_advection/solution/solution-00006 -2.70860525e-05 1.81204766e-01 1.25681174e+08 -6.65879239e-08 1.79985676e-01 1.25407794e+08 2.94869686e-03 9.73378151e-03 2.93000000e+02 1.51760001e+03 1.62503510e+03 9.36954865e-01 512 output-particle_melt_advection/output-particle_melt_advection/particles/particles-00006 +7 2.000000000000e+04 1.249197410934e+03 512 4851 2145 1122 3 12 7 6 21 24 449 output-particle_melt_advection/solution/solution-00007 -6.25897267e-05 1.80244102e-01 1.25678860e+08 -7.45844216e-08 1.78920794e-01 1.25374582e+08 2.95046223e-03 9.74140485e-03 2.93000000e+02 1.51753196e+03 1.62505848e+03 9.36902799e-01 512 output-particle_melt_advection/output-particle_melt_advection/particles/particles-00007 diff --git a/tests/particle_property_composition.prm b/tests/particle_property_composition.prm index 325856a1f0b..1f668ca5607 100644 --- a/tests/particle_property_composition.prm +++ b/tests/particle_property_composition.prm @@ -1,7 +1,7 @@ # Listing of Parameters # --------------------- # Uses the solitary wave benchmark to demonstrate the particle property melt particle, -# which records the presence of melt over the melt thransport threshold +# which records the presence of melt over the melt transport threshold set Additional shared libraries = ./libsolitary_wave.so diff --git a/tests/particle_property_composition/statistics b/tests/particle_property_composition/statistics index a6115a48ae3..0e3381a90d1 100644 --- a/tests/particle_property_composition/statistics +++ b/tests/particle_property_composition/statistics @@ -23,4 +23,4 @@ # 23: Global mass for composition peridotite # 24: RMS velocity (m/year) # 25: Max. velocity (m/year) -0 0.000000000000e+00 0.000000000000e+00 640 6583 2889 5778 2 0 0 0 19 76 411 5 output-particle_property_composition/output-particle_property_composition/particles/particles-00000 output-particle_property_composition/solution/solution-00000 1.00000000e-03 1.00000000e-02 1.32970963e+01 1.00000000e-03 1.00000000e-02 1.32970963e+01 1.65865249e-04 1.66660345e-04 +0 0.000000000000e+00 0.000000000000e+00 640 6583 2889 5778 2 0 0 0 11 54 241 5 output-particle_property_composition/output-particle_property_composition/particles/particles-00000 output-particle_property_composition/solution/solution-00000 1.00000000e-03 1.00000000e-02 1.32970963e+01 1.00000000e-03 1.00000000e-02 1.32970963e+01 1.66058237e-04 1.67158942e-04 diff --git a/tests/rising_melt_blob_freezing/screen-output b/tests/rising_melt_blob_freezing/screen-output index 80441cc4650..2c5de735d37 100644 --- a/tests/rising_melt_blob_freezing/screen-output +++ b/tests/rising_melt_blob_freezing/screen-output @@ -1,13 +1,13 @@ Number of active cells: 1,024 (on 6 levels) -Number of degrees of freedom: 32,842 (8,450+2,178+8,450+1,089+4,225+4,225+4,225) +Number of degrees of freedom: 34,825 (8,450+4,161+8,450+1,089+4,225+4,225+4,225) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 200+665 iterations. + Solving Stokes system... 32+0 iterations. Solving for u_f in 12 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.76497e-16, 1.44358e-16, 0, 0.168633 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.168633 @@ -18,8 +18,8 @@ Number of degrees of freedom: 32,842 (8,450+2,178+8,450+1,089+4,225+4,225+4,225) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.76497e-16, 1.44358e-16, 0, 9.99026e-08 - Relative nonlinear residual (total system) after nonlinear iteration 2: 9.99026e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.76497e-16, 1.44358e-16, 0, 6.59944e-08 + Relative nonlinear residual (total system) after nonlinear iteration 2: 6.59944e-08 Postprocessing: @@ -32,35 +32,35 @@ Number of degrees of freedom: 32,842 (8,450+2,178+8,450+1,089+4,225+4,225+4,225) Solving porosity system ... 6 iterations. Solving peridotite system ... 5 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 200+726 iterations. + Solving Stokes system... 30+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.79631e-16, 3.76619e-06, 2.26327e-07, 0.00840578 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.00840578 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.7957e-16, 3.73929e-06, 2.23704e-07, 0.0813064 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0813064 Solving temperature system... 0 iterations. Solving porosity system ... 6 iterations. Solving peridotite system ... 4 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 10+0 iterations. + Solving Stokes system... 9+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.73728e-16, 1.88328e-06, 1.38447e-07, 1.08144e-07 - Relative nonlinear residual (total system) after nonlinear iteration 2: 1.88328e-06 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.78421e-16, 1.87523e-06, 1.38459e-07, 3.16748e-07 + Relative nonlinear residual (total system) after nonlinear iteration 2: 1.87523e-06 Postprocessing: - Compositions min/max/mass: -7.531e-11/0.09988/6.276e+07 // -0.1252/-1.39e-12/-7.019e+07 + Compositions min/max/mass: 1.387e-12/0.09988/6.276e+07 // -0.1252/-1.39e-12/-7.019e+07 Writing graphical output: output-rising_melt_blob_freezing/solution/solution-00001 *** Timestep 2: t=2 years Solving composition reactions in 200 substep(s). Solving temperature system... 0 iterations. Solving porosity system ... 6 iterations. - Solving peridotite system ... 5 iterations. + Solving peridotite system ... 4 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 200+601 iterations. + Solving Stokes system... 30+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.77111e-16, 3.79756e-06, 7.12047e-08, 0.0313658 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0313658 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.74144e-16, 3.75896e-06, 7.04007e-08, 0.136761 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.136761 Solving temperature system... 0 iterations. Solving porosity system ... 6 iterations. @@ -68,12 +68,12 @@ Number of degrees of freedom: 32,842 (8,450+2,178+8,450+1,089+4,225+4,225+4,225) Rebuilding Stokes preconditioner... Solving Stokes system... 8+0 iterations. Solving for u_f in 12 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.75463e-16, 1.4052e-06, 2.21463e-08, 1.42281e-07 - Relative nonlinear residual (total system) after nonlinear iteration 2: 1.4052e-06 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.75923e-16, 1.39067e-06, 2.21403e-08, 5.39048e-07 + Relative nonlinear residual (total system) after nonlinear iteration 2: 1.39067e-06 Postprocessing: - Compositions min/max/mass: -8.803e-11/0.04988/3.134e+07 // -0.1877/3.631e-11/-1.052e+08 + Compositions min/max/mass: 6.927e-13/0.04988/3.134e+07 // -0.1877/-2.085e-12/-1.052e+08 Writing graphical output: output-rising_melt_blob_freezing/solution/solution-00002 Termination requested by criterion: end time diff --git a/tests/rising_melt_blob_freezing/statistics b/tests/rising_melt_blob_freezing/statistics index bbbbc587fd5..5a36848acbe 100644 --- a/tests/rising_melt_blob_freezing/statistics +++ b/tests/rising_melt_blob_freezing/statistics @@ -19,6 +19,6 @@ # 19: Maximal value for composition peridotite # 20: Global mass for composition peridotite # 21: Visualization file name -0 0.000000000000e+00 0.000000000000e+00 1024 9539 4225 8450 2 0 0 0 865 4776 5529 2.77758877e-12 2.00000000e-01 1.25663562e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 output-rising_melt_blob_freezing/solution/solution-00000 -1 1.000000000000e+00 1.000000000000e+00 1024 9539 4225 8450 2 0 12 9 936 4097 5726 -7.53121672e-11 9.98796688e-02 6.27561823e+07 -1.25150380e-01 -1.39046590e-12 -7.01868887e+07 output-rising_melt_blob_freezing/solution/solution-00001 -2 2.000000000000e+00 1.000000000000e+00 1024 9539 4225 8450 2 0 12 8 809 3315 3995 -8.80312731e-11 4.98797372e-02 3.13403373e+07 -1.87650271e-01 3.63109243e-11 -1.05238109e+08 output-rising_melt_blob_freezing/solution/solution-00002 +0 0.000000000000e+00 0.000000000000e+00 1024 9539 4225 8450 2 0 0 0 32 33 1739 2.77758877e-12 2.00000000e-01 1.25663562e+08 0.00000000e+00 0.00000000e+00 0.00000000e+00 output-rising_melt_blob_freezing/solution/solution-00000 +1 1.000000000000e+00 1.000000000000e+00 1024 9539 4225 8450 2 0 12 9 39 41 2175 1.38712393e-12 9.98796695e-02 6.27561823e+07 -1.25150381e-01 -1.39046590e-12 -7.01868887e+07 output-rising_melt_blob_freezing/solution/solution-00001 +2 2.000000000000e+00 1.000000000000e+00 1024 9539 4225 8450 2 0 12 7 38 40 1917 6.92727653e-13 4.98797377e-02 3.13403373e+07 -1.87650273e-01 -2.08486253e-12 -1.05238109e+08 output-rising_melt_blob_freezing/solution/solution-00002 diff --git a/tests/segregation_heating/screen-output b/tests/segregation_heating/screen-output index f1853537f29..3bcd6716b89 100644 --- a/tests/segregation_heating/screen-output +++ b/tests/segregation_heating/screen-output @@ -2,14 +2,14 @@ Loading shared library <./libsegregation_heating.so> Number of active cells: 256 (on 5 levels) -Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) +Number of degrees of freedom: 7,369 (2,178+1,057+2,178+289+1,089+289+289) *** Timestep 0: t=0 seconds Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 31+0 iterations. + Solving Stokes system... 52+0 iterations. Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.1459e-16, 2.33001e-16, 0, 0.333482 Relative nonlinear residual (total system) after nonlinear iteration 1: 0.333482 @@ -20,13 +20,13 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.1459e-16, 2.33001e-16, 0, 6.05941e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 6.05941e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.1459e-16, 2.33001e-16, 0, 9.86618e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 9.86618e-13 Postprocessing: Temperature min/avg/max: 1600 K, 1600 K, 1600 K - Heating rate (average/total): 1.983e-23 W/kg, 3.966e-23 W + Heating rate (average/total): 0.3906 W/kg, 0.7813 W Writing graphical output: output-segregation_heating/solution/solution-00000 *** Timestep 1: t=0.1 seconds @@ -34,19 +34,19 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 16+0 iterations. + Solving Stokes system... 50+0 iterations. Solving for u_f in 2 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.21771e-05, 7.41442e-14, 0, 8.26732e-07 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.21771e-05, 2.68865e-16, 0, 8.26732e-07 Relative nonlinear residual (total system) after nonlinear iteration 1: 3.21771e-05 Solving temperature system... 1 iterations. Solving porosity system ... 2 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 10+0 iterations. + Solving Stokes system... 15+0 iterations. Solving for u_f in 2 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.40477e-11, 1.37585e-08, 0, 7.4512e-09 - Relative nonlinear residual (total system) after nonlinear iteration 2: 1.37585e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.40476e-11, 1.37838e-08, 0, 7.45585e-09 + Relative nonlinear residual (total system) after nonlinear iteration 2: 1.37838e-08 Postprocessing: @@ -59,9 +59,9 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Solving porosity system ... 2 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 10+0 iterations. + Solving Stokes system... 16+0 iterations. Solving for u_f in 3 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.18343e-06, 8.74672e-09, 0, 1.14892e-07 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.18343e-06, 8.76302e-09, 0, 1.14899e-07 Relative nonlinear residual (total system) after nonlinear iteration 1: 2.18343e-06 @@ -75,9 +75,9 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Solving porosity system ... 2 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 10+0 iterations. + Solving Stokes system... 16+0 iterations. Solving for u_f in 3 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.6756e-06, 1.1611e-08, 0, 9.24094e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.6756e-06, 1.15713e-08, 0, 9.25133e-08 Relative nonlinear residual (total system) after nonlinear iteration 1: 1.6756e-06 @@ -91,9 +91,9 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Solving porosity system ... 2 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 11+0 iterations. + Solving Stokes system... 17+0 iterations. Solving for u_f in 3 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.38781e-06, 1.24557e-08, 0, 6.10549e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.38781e-06, 1.23578e-08, 0, 6.06988e-08 Relative nonlinear residual (total system) after nonlinear iteration 1: 1.38781e-06 @@ -107,9 +107,9 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Solving porosity system ... 2 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 11+0 iterations. + Solving Stokes system... 17+0 iterations. Solving for u_f in 3 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.10468e-06, 1.2618e-08, 0, 4.96743e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.10468e-06, 1.24749e-08, 0, 4.98724e-08 Relative nonlinear residual (total system) after nonlinear iteration 1: 1.10468e-06 @@ -125,8 +125,8 @@ Number of degrees of freedom: 6,890 (2,178+578+2,178+289+1,089+289+289) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 3 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 6.1348e-13, 7.31825e-15, 0, 4.09218e-13 - Relative nonlinear residual (total system) after nonlinear iteration 1: 6.1348e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 6.13821e-13, 7.47526e-15, 0, 8.50057e-13 + Relative nonlinear residual (total system) after nonlinear iteration 1: 8.50057e-13 Postprocessing: diff --git a/tests/segregation_heating/statistics b/tests/segregation_heating/statistics index e5ee37475d2..80c27d6e7dc 100644 --- a/tests/segregation_heating/statistics +++ b/tests/segregation_heating/statistics @@ -21,10 +21,10 @@ # 21: Average shear heating with melt rate (W/kg) # 22: Total shear heating with melt rate (W) # 23: Visualization file name -0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 578 2 0 0 0 31 32 352 1.60000000e+03 1.60000000e+03 1.60000000e+03 7.71371070e-15 1.79621691e-23 3.59243383e-23 1.86973904e-24 3.73947808e-24 output-segregation_heating/solution/solution-00000 -1 9.999999998610e-02 9.999999998610e-02 256 2467 1089 578 2 7 2 0 26 28 310 1.60000000e+03 1.60005106e+03 1.60005208e+03 1.35320743e-05 2.34765013e-14 4.69529546e-14 3.90624793e-01 7.81248789e-01 output-segregation_heating/solution/solution-00001 -2 1.999999796248e-01 9.999997963874e-02 256 2467 1089 578 1 5 2 0 10 11 121 1.60000000e+03 1.60010145e+03 1.60010417e+03 2.68875900e-05 9.27409469e-14 1.85481518e-13 3.90624583e-01 7.81247582e-01 output-segregation_heating/solution/solution-00002 -3 2.999999502080e-01 9.999997058316e-02 256 2467 1089 578 1 4 2 0 10 11 120 1.60000000e+03 1.60015118e+03 1.60015625e+03 4.00689210e-05 2.05738359e-13 4.11475473e-13 3.90624370e-01 7.81246378e-01 output-segregation_heating/solution/solution-00003 -4 3.999999165624e-01 9.999996635440e-02 256 2467 1089 578 1 4 2 0 11 12 133 1.60000000e+03 1.60020027e+03 1.60020833e+03 5.30792687e-05 3.60116268e-13 7.20229651e-13 3.90624155e-01 7.81245180e-01 output-segregation_heating/solution/solution-00004 -5 4.999998849504e-01 9.999996838802e-02 256 2467 1089 578 1 5 2 0 11 12 133 1.60000000e+03 1.60024874e+03 1.60026042e+03 6.59269967e-05 5.53289137e-13 1.10657277e-12 3.90623937e-01 7.81243987e-01 output-segregation_heating/solution/solution-00005 -6 5.000000000000e-01 1.150495800295e-07 256 2467 1089 578 1 0 0 0 0 0 0 1.60000000e+03 1.60024874e+03 1.60026042e+03 6.59270115e-05 5.53289383e-13 1.10657326e-12 3.90623937e-01 7.81243987e-01 output-segregation_heating/solution/solution-00006 +0 0.000000000000e+00 0.000000000000e+00 256 2467 1089 578 2 0 0 0 52 54 857 1.60000000e+03 1.60000000e+03 1.60000000e+03 7.71371070e-15 1.12911728e-29 2.25823456e-29 3.90625000e-01 7.81250000e-01 output-segregation_heating/solution/solution-00000 +1 9.999999998606e-02 9.999999998606e-02 256 2467 1089 578 2 7 2 0 65 68 1087 1.60000000e+03 1.60005106e+03 1.60005208e+03 1.35320743e-05 2.34675736e-14 4.69350993e-14 3.90624793e-01 7.81248789e-01 output-segregation_heating/solution/solution-00001 +2 1.999999796106e-01 9.999997962455e-02 256 2467 1089 578 1 5 2 0 16 17 267 1.60000000e+03 1.60010145e+03 1.60010417e+03 2.68875900e-05 9.27027181e-14 1.85405060e-13 3.90624583e-01 7.81247582e-01 output-segregation_heating/solution/solution-00002 +3 2.999999501685e-01 9.999997055791e-02 256 2467 1089 578 1 4 2 0 16 17 273 1.60000000e+03 1.60015118e+03 1.60015625e+03 4.00689210e-05 2.05684700e-13 4.11368156e-13 3.90624370e-01 7.81246378e-01 output-segregation_heating/solution/solution-00003 +4 3.999999164580e-01 9.999996628946e-02 256 2467 1089 578 1 4 2 0 17 18 289 1.60000000e+03 1.60020027e+03 1.60020833e+03 5.30792687e-05 3.60047055e-13 7.20091225e-13 3.90624154e-01 7.81245180e-01 output-segregation_heating/solution/solution-00004 +5 4.999998849019e-01 9.999996844392e-02 256 2467 1089 578 1 5 2 0 17 18 290 1.60000000e+03 1.60024874e+03 1.60026042e+03 6.59269967e-05 5.53207048e-13 1.10640859e-12 3.90623937e-01 7.81243987e-01 output-segregation_heating/solution/solution-00005 +6 5.000000000000e-01 1.150980887266e-07 256 2467 1089 578 1 0 0 0 0 0 0 1.60000000e+03 1.60024874e+03 1.60026042e+03 6.59270115e-05 5.53207295e-13 1.10640909e-12 3.90623937e-01 7.81243987e-01 output-segregation_heating/solution/solution-00006 diff --git a/tests/shear_bands/screen-output b/tests/shear_bands/screen-output index 1348e296099..fb738813755 100644 --- a/tests/shear_bands/screen-output +++ b/tests/shear_bands/screen-output @@ -2,13 +2,13 @@ Loading shared library <./libshear_bands.so> Number of active cells: 1,024 (on 5 levels) -Number of degrees of freedom: 28,857 (8,514+2,210+8,514+1,105+4,257+4,257) +Number of degrees of freedom: 30,824 (8,514+4,177+8,514+1,105+4,257+4,257) *** Timestep 0: t=0 years Skipping temperature solve because RHS is zero. Solving porosity system ... 9 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 27+0 iterations. + Solving Stokes system... 30+0 iterations. Solving for u_f in 11 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.44861e-16, 1 Relative nonlinear residual (total system) after nonlinear iteration 1: 1 @@ -18,24 +18,24 @@ Number of degrees of freedom: 28,857 (8,514+2,210+8,514+1,105+4,257+4,257) Rebuilding Stokes preconditioner... Solving Stokes system... 9+0 iterations. Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.12357e-16, 0.0299352 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.0299352 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.12357e-16, 0.0307523 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.0307523 Skipping temperature solve because RHS is zero. Solving porosity system ... 8 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 8+0 iterations. + Solving Stokes system... 9+0 iterations. Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.05506e-16, 0.0183976 - Relative nonlinear residual (total system) after nonlinear iteration 3: 0.0183976 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.05506e-16, 0.0185082 + Relative nonlinear residual (total system) after nonlinear iteration 3: 0.0185082 Skipping temperature solve because RHS is zero. Solving porosity system ... 8 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 8+0 iterations. + Solving Stokes system... 9+0 iterations. Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.04718e-16, 0.0133444 - Relative nonlinear residual (total system) after nonlinear iteration 4: 0.0133444 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.04718e-16, 0.0132206 + Relative nonlinear residual (total system) after nonlinear iteration 4: 0.0132206 Postprocessing: @@ -47,39 +47,39 @@ Number of degrees of freedom: 28,857 (8,514+2,210+8,514+1,105+4,257+4,257) Skipping temperature solve because RHS is zero. Solving porosity system ... 35 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 8+0 iterations. + Solving Stokes system... 9+0 iterations. Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 0.00249153, 0.000649887 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.000649887 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 0.00194743, 0.000396103 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.000396103 Skipping temperature solve because RHS is zero. Solving porosity system ... 35 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 8+0 iterations. Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 0.000708823, 0.000438238 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000438238 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 0.000375839, 0.000265385 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000265385 Skipping temperature solve because RHS is zero. Solving porosity system ... 35 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 8+0 iterations. Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 0.000482201, 0.000386348 - Relative nonlinear residual (total system) after nonlinear iteration 3: 0.000386348 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 0.000267541, 0.000207388 + Relative nonlinear residual (total system) after nonlinear iteration 3: 0.000207388 Skipping temperature solve because RHS is zero. Solving porosity system ... 35 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 8+0 iterations. Solving for u_f in 11 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 0.000437588, 0.000355273 - Relative nonlinear residual (total system) after nonlinear iteration 4: 0.000355273 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 0.000231814, 0.000170686 + Relative nonlinear residual (total system) after nonlinear iteration 4: 0.000170686 Postprocessing: Writing graphical output: output-shear_bands/solution/solution-00001 - Compositions min/max/mass: 0.0492/0.05072/2e-07 + Compositions min/max/mass: 0.0494/0.05055/2e-07 RMS, max velocity: 289 m/year, 493 m/year Termination requested by criterion: end time diff --git a/tests/shear_bands/statistics b/tests/shear_bands/statistics index 84ae3d1fe5b..bda8c54f7ba 100644 --- a/tests/shear_bands/statistics +++ b/tests/shear_bands/statistics @@ -17,5 +17,5 @@ # 17: Global mass for composition porosity # 18: RMS velocity (m/year) # 19: Max. velocity (m/year) -0 0.000000000000e+00 0.000000000000e+00 1024 9619 4257 4257 4 0 33 52 56 1451 output-shear_bands/solution/solution-00000 4.95206035e-02 5.04597757e-02 1.99994720e-07 2.88777914e+02 4.93086833e+02 -1 3.000000000000e-08 3.000000000000e-08 1024 9619 4257 4257 4 0 140 32 36 1168 output-shear_bands/solution/solution-00001 4.92020289e-02 5.07152791e-02 1.99994720e-07 2.88829183e+02 4.93131557e+02 +0 0.000000000000e+00 0.000000000000e+00 1024 9619 4257 4257 4 0 33 57 61 1257 output-shear_bands/solution/solution-00000 4.95206035e-02 5.04597757e-02 1.99994720e-07 2.88777849e+02 4.93086524e+02 +1 3.000000000000e-08 3.000000000000e-08 1024 9619 4257 4257 4 0 140 33 37 695 output-shear_bands/solution/solution-00001 4.93981696e-02 5.05521335e-02 1.99994730e-07 2.88828279e+02 4.93120639e+02 diff --git a/tests/shear_heating_with_melt/screen-output b/tests/shear_heating_with_melt/screen-output index e3ed94e2655..396c1f63a26 100644 --- a/tests/shear_heating_with_melt/screen-output +++ b/tests/shear_heating_with_melt/screen-output @@ -1,16 +1,14 @@ ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ Number of active cells: 40 (on 1 levels) -Number of degrees of freedom: 1,625 (486+164+486+82+243+82+82) +Number of degrees of freedom: 1,663 (486+202+486+82+243+82+82) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 6+0 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 4+0 iterations. + Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.03902e-16, 0, 0, 1 Relative nonlinear residual (total system) after nonlinear iteration 1: 1 @@ -18,40 +16,40 @@ Number of degrees of freedom: 1,625 (486+164+486+82+243+82+82) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 6+0 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.45674e-16, 0, 0, 0.00615557 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00615557 + Solving Stokes system... 5+0 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.5381e-16, 0, 0, 0.00866789 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00866789 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 7+0 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.87919e-16, 0, 0, 8.2488e-05 - Relative nonlinear residual (total system) after nonlinear iteration 3: 8.2488e-05 + Solving Stokes system... 3+0 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.35084e-16, 0, 0, 0.000116155 + Relative nonlinear residual (total system) after nonlinear iteration 3: 0.000116155 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... Solving Stokes system... 3+0 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.58499e-16, 0, 0, 8.03279e-07 - Relative nonlinear residual (total system) after nonlinear iteration 4: 8.03279e-07 + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.78591e-16, 0, 0, 1.1321e-06 + Relative nonlinear residual (total system) after nonlinear iteration 4: 1.1321e-06 Number of active cells: 40 (on 1 levels) -Number of degrees of freedom: 1,625 (486+164+486+82+243+82+82) +Number of degrees of freedom: 1,663 (486+202+486+82+243+82+82) *** Timestep 0: t=0 years Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 6+0 iterations. - Solving for u_f in 0 iterations. + Solving Stokes system... 4+0 iterations. + Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.03902e-16, 0, 0, 1 Relative nonlinear residual (total system) after nonlinear iteration 1: 1 @@ -59,28 +57,28 @@ Number of degrees of freedom: 1,625 (486+164+486+82+243+82+82) Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 6+0 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.45674e-16, 0, 0, 0.00615557 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00615557 + Solving Stokes system... 5+0 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.5381e-16, 0, 0, 0.00866789 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00866789 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 7+0 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.87919e-16, 0, 0, 8.2488e-05 - Relative nonlinear residual (total system) after nonlinear iteration 3: 8.2488e-05 + Solving Stokes system... 3+0 iterations. + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.35084e-16, 0, 0, 0.000116155 + Relative nonlinear residual (total system) after nonlinear iteration 3: 0.000116155 Solving temperature system... 0 iterations. Skipping porosity composition solve because RHS is zero. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... Solving Stokes system... 3+0 iterations. - Solving for u_f in 0 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.58499e-16, 0, 0, 8.03279e-07 - Relative nonlinear residual (total system) after nonlinear iteration 4: 8.03279e-07 + Solving for u_f in 1 iterations. + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.78591e-16, 0, 0, 1.1321e-06 + Relative nonlinear residual (total system) after nonlinear iteration 4: 1.1321e-06 Postprocessing: @@ -97,65 +95,65 @@ Number of degrees of freedom: 1,625 (486+164+486+82+243+82+82) Solving porosity system ... 1 iterations. Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 27+0 iterations. + Solving Stokes system... 5+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.163932, 1, 1, 0.000922108 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.163314, 1, 1, 0.00129152 Relative nonlinear residual (total system) after nonlinear iteration 1: 1 - Solving temperature system... 15 iterations. + Solving temperature system... 13 iterations. Solving porosity system ... 1 iterations. Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 14+0 iterations. + Solving Stokes system... 5+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.00268055, 0.0239677, 9.26105e-06, 1.41931e-05 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.0239677 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000160657, 0.000852764, 8.97387e-06, 3.36706e-06 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000852764 - Solving temperature system... 10 iterations. + Solving temperature system... 9 iterations. Solving porosity system ... 1 iterations. Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 9.19023e-07, 0.000764043, 5.5672e-07, 9.72223e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 0.000764043 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.61145e-07, 5.19222e-05, 1.97082e-08, 4.2503e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 5.19222e-05 - Solving temperature system... 5 iterations. + Solving temperature system... 4 iterations. Solving porosity system ... 0 iterations. Solving peridotite system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.5338e-09, 1.79105e-17, 1.31e-16, 9.7222e-08 - Relative nonlinear residual (total system) after nonlinear iteration 4: 9.7222e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.81162e-10, 1.09127e-17, 1.32852e-16, 4.24979e-08 + Relative nonlinear residual (total system) after nonlinear iteration 4: 4.24979e-08 Postprocessing: - Compositions min/max/mass: 0/0.003693/2.329e+05 // 0/0.003726/2.329e+05 + Compositions min/max/mass: 0/0.003728/2.331e+05 // 0/0.003726/2.329e+05 RMS, max velocity: 1.5 m/year, 1.5 m/year Mass fluxes through boundary parts: 0 kg/yr, 0 kg/yr, -3.739e+07 kg/yr, 3.841e+07 kg/yr - Heating rate (average/total): -1.056e-08 W/kg, -8.175e+04 W + Heating rate (average/total): -1.057e-08 W/kg, -8.184e+04 W Temperature min/avg/max: 281.8 K, 634.9 K, 2200 K -*** Timestep 2: t=4799.68 years +*** Timestep 2: t=4799.89 years Solving composition reactions in 11 substep(s). Solving temperature system... 18 iterations. Solving porosity system ... 1 iterations. Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 32+0 iterations. + Solving Stokes system... 5+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.112154, 0.490591, 0.489384, 0.00076043 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.490591 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.112216, 0.48941, 0.489407, 0.00118354 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.48941 Solving temperature system... 13 iterations. Solving porosity system ... 1 iterations. Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 14+0 iterations. + Solving Stokes system... 4+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.00014597, 0.00267057, 1.21202e-05, 1.67468e-06 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00267057 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000103297, 0.000208233, 1.70496e-07, 2.39589e-06 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000208233 Solving temperature system... 7 iterations. Solving porosity system ... 1 iterations. @@ -163,84 +161,75 @@ Number of degrees of freedom: 1,625 (486+164+486+82+243+82+82) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.91425e-07, 6.22772e-06, 4.21186e-08, 7.62536e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 6.22772e-06 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.20973e-07, 3.21909e-07, 1.45799e-09, 6.44881e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 3.21909e-07 Postprocessing: - Compositions min/max/mass: 0/0.006655/4.733e+05 // 0/0.006691/4.73e+05 + Compositions min/max/mass: 0/0.006692/4.733e+05 // 0/0.006691/4.73e+05 RMS, max velocity: 1.5 m/year, 1.5 m/year Mass fluxes through boundary parts: 0 kg/yr, 0 kg/yr, -3.739e+07 kg/yr, 3.84e+07 kg/yr - Heating rate (average/total): -1.087e-08 W/kg, -8.412e+04 W + Heating rate (average/total): -1.093e-08 W/kg, -8.454e+04 W Temperature min/avg/max: 289 K, 656.9 K, 2200 K Writing graphical output: output-shear_heating_with_melt/solution/solution-00001 -*** Timestep 3: t=7149.99 years +*** Timestep 3: t=7199.86 years Solving composition reactions in 11 substep(s). Solving temperature system... 18 iterations. Solving porosity system ... 1 iterations. Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 40+0 iterations. + Solving Stokes system... 6+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0838415, 0.31817, 0.318072, 0.000670372 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.31817 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0853679, 0.325907, 0.325986, 0.000942936 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.325986 - Solving temperature system... 13 iterations. + Solving temperature system... 12 iterations. Solving porosity system ... 1 iterations. Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 18+0 iterations. + Solving Stokes system... 4+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000278626, 0.00165439, 4.59529e-05, 2.5942e-06 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00165439 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.11632e-05, 0.00178958, 1.30483e-06, 2.75569e-06 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00178958 - Solving temperature system... 9 iterations. + Solving temperature system... 7 iterations. Solving porosity system ... 1 iterations. Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.28983e-06, 7.99894e-05, 1.57816e-07, 4.13682e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 7.99894e-05 - - Solving temperature system... 7 iterations. - Solving porosity system ... 0 iterations. - Solving peridotite system ... 0 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+0 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.73824e-07, 1.48291e-16, 1.85123e-16, 4.17975e-08 - Relative nonlinear residual (total system) after nonlinear iteration 4: 1.73824e-07 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.24747e-08, 2.43817e-06, 8.57936e-10, 2.93606e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 2.43817e-06 Postprocessing: - Compositions min/max/mass: 0/0.00861/7.152e+05 // 0/0.008641/7.137e+05 + Compositions min/max/mass: 0/0.008727/7.215e+05 // 0/0.008734/7.222e+05 RMS, max velocity: 1.5 m/year, 1.5 m/year Mass fluxes through boundary parts: 0 kg/yr, 0 kg/yr, -3.739e+07 kg/yr, 3.84e+07 kg/yr - Heating rate (average/total): -1.051e-08 W/kg, -8.12e+04 W - Temperature min/avg/max: 296.2 K, 678.4 K, 2200 K + Heating rate (average/total): -1.128e-08 W/kg, -8.722e+04 W + Temperature min/avg/max: 296.4 K, 678.9 K, 2200 K Writing graphical output: output-shear_heating_with_melt/solution/solution-00002 -*** Timestep 4: t=9381.21 years +*** Timestep 4: t=9599.61 years Solving composition reactions in 11 substep(s). - Solving temperature system... 17 iterations. + Solving temperature system... 18 iterations. Solving porosity system ... 1 iterations. Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 39+0 iterations. + Solving Stokes system... 5+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0730641, 0.233907, 0.233415, 0.000598315 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.233907 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0779493, 0.247527, 0.24857, 0.0010366 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.24857 - Solving temperature system... 12 iterations. + Solving temperature system... 13 iterations. Solving porosity system ... 1 iterations. Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 17+0 iterations. + Solving Stokes system... 5+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.000268037, 0.00296998, 3.63385e-05, 1.92069e-06 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00296998 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 5.19625e-05, 0.00232894, 1.82598e-06, 3.61879e-06 + Relative nonlinear residual (total system) after nonlinear iteration 2: 0.00232894 Solving temperature system... 7 iterations. Solving porosity system ... 1 iterations. @@ -248,63 +237,54 @@ Number of degrees of freedom: 1,625 (486+164+486+82+243+82+82) Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.87312e-07, 1.67214e-05, 8.64079e-08, 4.50918e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 1.67214e-05 - - Solving temperature system... 4 iterations. - Solving porosity system ... 0 iterations. - Solving peridotite system ... 0 iterations. - Rebuilding Stokes preconditioner... - Solving Stokes system... 0+0 iterations. - Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.89561e-10, 1.03498e-16, 1.06577e-16, 4.50917e-08 - Relative nonlinear residual (total system) after nonlinear iteration 4: 4.50917e-08 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.61161e-08, 9.80752e-06, 5.28497e-09, 4.21057e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 9.80752e-06 Postprocessing: - Compositions min/max/mass: 0/0.009568/9.456e+05 // 0/0.009647/9.447e+05 + Compositions min/max/mass: 0/0.00983/9.718e+05 // 0/0.009854/9.759e+05 RMS, max velocity: 1.5 m/year, 1.5 m/year Mass fluxes through boundary parts: 0 kg/yr, 0 kg/yr, -3.739e+07 kg/yr, 3.839e+07 kg/yr - Heating rate (average/total): -1.155e-08 W/kg, -8.922e+04 W - Temperature min/avg/max: 303.3 K, 698.8 K, 2200 K + Heating rate (average/total): -1.164e-08 W/kg, -8.989e+04 W + Temperature min/avg/max: 304 K, 700.8 K, 2200 K Writing graphical output: output-shear_heating_with_melt/solution/solution-00003 *** Timestep 5: t=10000 years Solving composition reactions in 10 substep(s). - Solving temperature system... 10 iterations. + Solving temperature system... 9 iterations. Solving porosity system ... 1 iterations. Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 34+0 iterations. + Solving Stokes system... 5+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0204578, 0.0663259, 0.0657883, 0.000172351 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0663259 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0.0133157, 0.0563043, 0.0567138, 0.00018101 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.0567138 - Solving temperature system... 6 iterations. + Solving temperature system... 5 iterations. Solving porosity system ... 1 iterations. Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 16+0 iterations. + Solving Stokes system... 4+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 8.69191e-06, 0.000182657, 3.67599e-06, 5.90016e-07 - Relative nonlinear residual (total system) after nonlinear iteration 2: 0.000182657 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 3.18669e-06, 1.79569e-05, 1.95928e-08, 5.3934e-07 + Relative nonlinear residual (total system) after nonlinear iteration 2: 1.79569e-05 - Solving temperature system... 3 iterations. + Solving temperature system... 2 iterations. Solving porosity system ... 1 iterations. Solving peridotite system ... 1 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 8.0272e-09, 3.77091e-07, 9.5654e-09, 9.04492e-08 - Relative nonlinear residual (total system) after nonlinear iteration 3: 3.77091e-07 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.69502e-09, 1.91172e-07, 5.03387e-10, 7.21002e-08 + Relative nonlinear residual (total system) after nonlinear iteration 3: 1.91172e-07 Postprocessing: - Compositions min/max/mass: -1.809e-16/0.009747/1.015e+06 // -2.882e-17/0.009857/1.014e+06 + Compositions min/max/mass: -1.85e-16/0.01038/1.035e+06 // -3.369e-16/0.0104/1.04e+06 RMS, max velocity: 1.5 m/year, 1.5 m/year Mass fluxes through boundary parts: 0 kg/yr, 0 kg/yr, -3.739e+07 kg/yr, 3.838e+07 kg/yr - Heating rate (average/total): -1.165e-08 W/kg, -8.999e+04 W - Temperature min/avg/max: 305.3 K, 704.5 K, 2200 K + Heating rate (average/total): -1.17e-08 W/kg, -9.034e+04 W + Temperature min/avg/max: 305.3 K, 704.4 K, 2200 K Writing graphical output: output-shear_heating_with_melt/solution/solution-00004 Termination requested by criterion: end time diff --git a/tests/shear_heating_with_melt/statistics b/tests/shear_heating_with_melt/statistics index dec2cc522b5..40ff196a704 100644 --- a/tests/shear_heating_with_melt/statistics +++ b/tests/shear_heating_with_melt/statistics @@ -39,9 +39,9 @@ # 39: Maximal temperature (K) # 40: Average nondimensional temperature (K) # 41: Visualization file name -0 0.000000000000e+00 0.000000000000e+00 40 568 243 164 4 0 0 0 22 26 26 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.49999996e+00 1.50008259e+00 0.00000000e+00 0.00000000e+00 -3.73949055e+07 3.84254593e+07 -1.02211119e-08 -7.91853443e+04 0.00000000e+00 0.00000000e+00 6.23329307e-15 4.82907794e-02 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 2.73000000e+02 6.13351306e+02 2.20000000e+03 9.72432302e-02 output-shear_heating_with_melt/solution/solution-00000 -1 2.399898375061e+03 2.399898375061e+03 40 568 243 164 4 48 3 3 41 43 43 0.00000000e+00 3.69333964e-03 2.32878240e+05 0.00000000e+00 3.72643584e-03 2.32897192e+05 1.50000004e+00 1.50015082e+00 0.00000000e+00 0.00000000e+00 -3.73938956e+07 3.84141304e+07 -1.05721107e-08 -8.18441208e+04 0.00000000e+00 0.00000000e+00 1.46459506e-14 1.13381801e-01 3.31125705e-13 2.56341359e+00 1.15715799e-11 8.95815238e+01 2.81817759e+02 6.34859515e+02 2.20000000e+03 1.00869073e-01 "" -2 4.799677308415e+03 2.399778933354e+03 40 568 243 164 3 38 3 3 46 48 48 0.00000000e+00 6.65456538e-03 4.73330964e+05 0.00000000e+00 6.69118899e-03 4.72976313e+05 1.50000003e+00 1.50005710e+00 0.00000000e+00 0.00000000e+00 -3.73928618e+07 3.84048877e+07 -1.09280204e-08 -8.45354069e+04 0.00000000e+00 0.00000000e+00 1.75935294e-15 1.36097492e-02 2.93570677e-13 2.27096178e+00 5.27748873e-11 4.08248376e+02 2.89008134e+02 6.56871123e+02 2.20000000e+03 1.05103711e-01 output-shear_heating_with_melt/solution/solution-00001 -3 7.149987996242e+03 2.350310687827e+03 40 568 243 164 4 47 3 3 58 60 60 0.00000000e+00 8.61029109e-03 7.15207989e+05 0.00000000e+00 8.64070386e-03 7.13734485e+05 1.50000015e+00 1.50179407e+00 0.00000000e+00 0.00000000e+00 -3.73918677e+07 3.83956517e+07 -1.12766352e-08 -8.71674501e+04 0.00000000e+00 0.00000000e+00 5.99511042e-14 4.63417036e-01 4.47377861e-13 3.45819356e+00 7.70934289e-10 5.95925777e+03 2.96196151e+02 6.78445748e+02 2.20000000e+03 1.09214170e-01 output-shear_heating_with_melt/solution/solution-00002 -4 9.381214273347e+03 2.231226277105e+03 40 568 243 164 4 40 3 3 56 58 58 0.00000000e+00 9.56842882e-03 9.45598620e+05 0.00000000e+00 9.64733541e-03 9.44660108e+05 1.50000021e+00 1.50364203e+00 0.00000000e+00 0.00000000e+00 -3.73909488e+07 3.83864764e+07 -1.16063416e-08 -8.96531265e+04 0.00000000e+00 0.00000000e+00 1.29316069e-13 9.98901317e-01 1.30807987e-13 1.01042564e+00 5.57834361e-11 4.30898869e+02 3.03334665e+02 6.98826439e+02 2.20000000e+03 1.12997650e-01 output-shear_heating_with_melt/solution/solution-00003 -5 1.000000000000e+04 6.187857266532e+02 40 568 243 164 3 19 3 3 50 52 52 -1.80908189e-16 9.74656542e-03 1.01467173e+06 -2.88171887e-17 9.85710046e-03 1.01410259e+06 1.50000026e+00 1.50324102e+00 0.00000000e+00 0.00000000e+00 -3.73906987e+07 3.83838927e+07 -1.16981838e-08 -9.03449422e+04 0.00000000e+00 0.00000000e+00 9.48585319e-14 7.32591376e-01 1.71331518e-13 1.32319139e+00 4.56107640e-11 3.52251418e+02 3.05347036e+02 7.04488341e+02 2.20000000e+03 1.14040373e-01 output-shear_heating_with_melt/solution/solution-00004 +0 0.000000000000e+00 0.000000000000e+00 40 568 243 164 4 0 0 0 15 19 139 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.50000000e+00 1.50008261e+00 0.00000000e+00 0.00000000e+00 -3.73949055e+07 3.84254604e+07 -1.02211122e-08 -7.91853465e+04 0.00000000e+00 0.00000000e+00 6.23329350e-15 4.82907827e-02 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 2.73000000e+02 6.13351306e+02 2.20000000e+03 9.72432302e-02 output-shear_heating_with_melt/solution/solution-00000 +1 2.399898340403e+03 2.399898340403e+03 40 568 243 164 4 44 3 3 10 12 117 0.00000000e+00 3.72754731e-03 2.33090937e+05 0.00000000e+00 3.72646861e-03 2.32894935e+05 1.50000000e+00 1.50000281e+00 0.00000000e+00 0.00000000e+00 -3.73938861e+07 3.84141278e+07 -1.05720343e-08 -8.18435308e+04 0.00000000e+00 0.00000000e+00 6.22418898e-18 4.81846341e-05 5.03139487e-18 3.89506041e-05 1.53096207e-16 1.18519613e-03 2.81817759e+02 6.34858561e+02 2.20000000e+03 1.00868801e-01 "" +2 4.799894694753e+03 2.399996354350e+03 40 568 243 164 3 38 3 3 9 11 155 0.00000000e+00 6.69229825e-03 4.73290150e+05 0.00000000e+00 6.69144918e-03 4.72996321e+05 1.50000002e+00 1.50000104e+00 0.00000000e+00 0.00000000e+00 -3.73928614e+07 3.84048862e+07 -1.09280903e-08 -8.45359506e+04 0.00000000e+00 0.00000000e+00 1.31925348e-18 1.02052915e-05 5.63613594e-17 4.35992106e-04 3.23776673e-17 2.50462506e-04 2.89008823e+02 6.56869712e+02 2.20000000e+03 1.05103111e-01 output-shear_heating_with_melt/solution/solution-00001 +3 7.199862586195e+03 2.399967891443e+03 40 568 243 164 3 37 3 3 10 12 164 0.00000000e+00 8.72713843e-03 7.21456773e+05 0.00000000e+00 8.73386454e-03 7.22229634e+05 1.50000002e+00 1.50005439e+00 0.00000000e+00 0.00000000e+00 -3.73918554e+07 3.83954449e+07 -1.12835380e-08 -8.72195492e+04 0.00000000e+00 0.00000000e+00 6.34442479e-17 4.90411671e-04 3.87929580e-16 2.99862005e-03 1.78209725e-15 1.37752644e-02 2.96354725e+02 6.78865031e+02 2.20000000e+03 1.09288659e-01 output-shear_heating_with_melt/solution/solution-00002 +4 9.599614368728e+03 2.399751782533e+03 40 568 243 164 3 38 3 3 10 12 224 0.00000000e+00 9.82967159e-03 9.71777290e+05 0.00000000e+00 9.85402142e-03 9.75946347e+05 1.50000005e+00 1.50014593e+00 0.00000000e+00 0.00000000e+00 -3.73908722e+07 3.83855681e+07 -1.16381372e-08 -8.98927124e+04 0.00000000e+00 0.00000000e+00 2.00739088e-16 1.55050424e-03 1.15784432e-15 8.94316371e-03 4.50687362e-15 3.48109914e-02 3.04039717e+02 7.00770778e+02 2.20000000e+03 1.13351732e-01 output-shear_heating_with_melt/solution/solution-00003 +5 1.000000000000e+04 4.003856312716e+02 40 568 243 164 3 16 3 3 9 11 207 -1.85026241e-16 1.03773215e-02 1.03524433e+06 -3.36905934e-16 1.04019598e-02 1.04011194e+06 1.50000004e+00 1.50014386e+00 0.00000000e+00 0.00000000e+00 -3.73907101e+07 3.83838927e+07 -1.16974770e-08 -9.03396657e+04 0.00000000e+00 0.00000000e+00 1.83130282e-16 1.41431597e-03 1.37042403e-15 1.05837907e-02 3.74904596e-15 2.89538983e-02 3.05342958e+02 7.04429816e+02 2.20000000e+03 1.14024817e-01 output-shear_heating_with_melt/solution/solution-00004 diff --git a/tests/solitary_wave/screen-output b/tests/solitary_wave/screen-output index e512b8536ea..b6bb15ce5f6 100644 --- a/tests/solitary_wave/screen-output +++ b/tests/solitary_wave/screen-output @@ -3,46 +3,46 @@ Loading shared library <./libsolitary_wave.so> Initialize solitary wave solution Number of active cells: 640 (on 3 levels) -Number of degrees of freedom: 19,749 (5,778+1,610+5,778+805+2,889+2,889) +Number of degrees of freedom: 20,864 (5,778+2,725+5,778+805+2,889+2,889) *** Timestep 0: t=0 years Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+23 iterations. + Solving Stokes system... 0+11 iterations. Solving for u_f in 9 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.61e-16, 0.9994 - Relative nonlinear residual (total system) after nonlinear iteration 1: 0.9994 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.61e-16, 0.999743 + Relative nonlinear residual (total system) after nonlinear iteration 1: 0.999743 Skipping temperature solve because RHS is zero. Solving porosity system ... 0 iterations. Rebuilding Stokes preconditioner... Solving Stokes system... 0+0 iterations. Solving for u_f in 9 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.61e-16, 8.24116e-11 - Relative nonlinear residual (total system) after nonlinear iteration 2: 8.24116e-11 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 1.61e-16, 9.36261e-11 + Relative nonlinear residual (total system) after nonlinear iteration 2: 9.36261e-11 Postprocessing: - Writing graphical output: output-solitary_wave/solution/solution-00000 - Compositions min/max/mass: 0.001/0.01/13.3 - RMS, max velocity: 0.000166 m/year, 0.000167 m/year - Errors e_f, e_p, e_c, delta: 2.027221e-04, 8.793270e-02, 0.000000e+00, 3.221824e-16 + Writing graphical output: output-solitary_wave/solution/solution-00000 + Compositions min/max/mass: 0.001/0.01/13.3 + RMS, max velocity: 0.000166 m/year, 0.000167 m/year + Errors e_f, e_p_c_bar, e_c, delta: 2.027221e-04, 1.078771e+00, 0.000000e+00, 3.221824e-16 *** Timestep 1: t=2000 years Skipping temperature solve because RHS is zero. - Solving porosity system ... 12 iterations. + Solving porosity system ... 13 iterations. Rebuilding Stokes preconditioner... - Solving Stokes system... 0+9 iterations. + Solving Stokes system... 0+5 iterations. Solving for u_f in 9 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 7.6007e-05, 6.27477e-07 - Relative nonlinear residual (total system) after nonlinear iteration 1: 6.27477e-07 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 0, 7.91098e-05, 2.38158e-06 + Relative nonlinear residual (total system) after nonlinear iteration 1: 2.38158e-06 Postprocessing: - Compositions min/max/mass: 0.001/0.01/13.3 - RMS, max velocity: 0.000166 m/year, 0.000167 m/year - Errors e_f, e_p, e_c, delta: 6.007180e-04, 8.787968e-02, 1.424092e-02, 4.718700e-03 + Compositions min/max/mass: 0.001/0.01/13.3 + RMS, max velocity: 0.000166 m/year, 0.000167 m/year + Errors e_f, e_p_c_bar, e_c, delta: 6.480725e-04, 1.078726e+00, 1.551644e-02, 5.141342e-03 Termination requested by criterion: end time diff --git a/tests/solitary_wave/statistics b/tests/solitary_wave/statistics index ee6b32010c4..9870497ea9f 100644 --- a/tests/solitary_wave/statistics +++ b/tests/solitary_wave/statistics @@ -17,5 +17,5 @@ # 17: Global mass for composition porosity # 18: RMS velocity (m/year) # 19: Max. velocity (m/year) -0 0.000000000000e+00 0.000000000000e+00 640 6583 2889 2889 2 0 0 23 89 519 output-solitary_wave/solution/solution-00000 1.00000000e-03 1.00000000e-02 1.32970963e+01 1.66058237e-04 1.67158942e-04 -1 2.000000000000e+03 2.000000000000e+03 640 6583 2889 2889 1 0 12 9 43 227 "" 9.99996480e-04 9.99999056e-03 1.32970963e+01 1.66058237e-04 1.67158944e-04 +0 0.000000000000e+00 0.000000000000e+00 640 6583 2889 2889 2 0 0 11 54 241 output-solitary_wave/solution/solution-00000 1.00000000e-03 1.00000000e-02 1.32970963e+01 1.66058237e-04 1.67158942e-04 +1 2.000000000000e+03 2.000000000000e+03 640 6583 2889 2889 1 0 13 5 33 124 "" 9.99996610e-04 9.99999125e-03 1.32970963e+01 1.66058237e-04 1.67158945e-04 diff --git a/tests/statistics_output/screen-output b/tests/statistics_output/screen-output index aa09d78fb62..94ec561c64f 100644 --- a/tests/statistics_output/screen-output +++ b/tests/statistics_output/screen-output @@ -1,13 +1,13 @@ Number of active cells: 320 (on 3 levels) -Number of degrees of freedom: 9,270 (2,898+810+2,898+405+1,449+405+405) +Number of degrees of freedom: 9,825 (2,898+1,365+2,898+405+1,449+405+405) *** Timestep 0: t=0 seconds Solving temperature system... 0 iterations. Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 54+0 iterations. + Solving Stokes system... 58+0 iterations. Solving for u_f in 1 iterations. Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.85418e-16, 9.58741e-17, 0, 1 Relative nonlinear residual (total system) after nonlinear iteration 1: 1 @@ -18,8 +18,8 @@ Number of degrees of freedom: 9,270 (2,898+810+2,898+405+1,449+405+405) Rebuilding Stokes preconditioner... Solving Stokes system... 5+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.85418e-16, 9.58741e-17, 0, 9.29021e-13 - Relative nonlinear residual (total system) after nonlinear iteration 2: 9.29021e-13 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 1.85418e-16, 9.58741e-17, 0, 3.92921e-13 + Relative nonlinear residual (total system) after nonlinear iteration 2: 3.92921e-13 Postprocessing: @@ -31,9 +31,9 @@ Number of degrees of freedom: 9,270 (2,898+810+2,898+405+1,449+405+405) Solving porosity system ... 0 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 17+0 iterations. + Solving Stokes system... 18+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.0391e-06, 1.53408e-16, 0, 4.87025e-09 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.0391e-06, 5.68755e-14, 0, 6.85769e-09 Relative nonlinear residual (total system) after nonlinear iteration 1: 2.0391e-06 @@ -43,12 +43,12 @@ Number of degrees of freedom: 9,270 (2,898+810+2,898+405+1,449+405+405) *** Timestep 2: t=2.29425e+13 seconds Solving temperature system... 13 iterations. - Solving porosity system ... 0 iterations. + Solving porosity system ... 2 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 20+0 iterations. + Solving Stokes system... 22+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.21934e-06, 1.21242e-16, 0, 4.20135e-09 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 2.21934e-06, 6.65311e-10, 0, 5.93641e-09 Relative nonlinear residual (total system) after nonlinear iteration 1: 2.21934e-06 @@ -58,12 +58,12 @@ Number of degrees of freedom: 9,270 (2,898+810+2,898+405+1,449+405+405) *** Timestep 3: t=2.5e+13 seconds Solving temperature system... 6 iterations. - Solving porosity system ... 0 iterations. + Solving porosity system ... 1 iterations. Skipping peridotite composition solve because RHS is zero. Rebuilding Stokes preconditioner... - Solving Stokes system... 16+0 iterations. + Solving Stokes system... 18+0 iterations. Solving for u_f in 1 iterations. - Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.7975e-08, 1.56341e-16, 0, 8.51551e-10 + Relative nonlinear residuals (temperature, compositional fields, Stokes system): 4.7975e-08, 3.90688e-11, 0, 1.19967e-09 Relative nonlinear residual (total system) after nonlinear iteration 1: 4.7975e-08 diff --git a/tests/statistics_output/statistics b/tests/statistics_output/statistics index 892682dd681..f94e00fb9c9 100644 --- a/tests/statistics_output/statistics +++ b/tests/statistics_output/statistics @@ -20,8 +20,8 @@ # 20: Total adiabatic heating rate (W) # 21: Average adiabatic heating of melt rate (W/kg) # 22: Total adiabatic heating of melt rate (W) -0 0.000000000000e+00 0.000000000000e+00 320 3303 1449 810 0 0 0 0 54 56 56 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 -0 0.000000000000e+00 0.000000000000e+00 320 3303 1449 810 1 0 0 0 5 6 6 1.72315000e+03 1.75516666e+03 1.78757747e+03 8.48573063e-03 -3.19121211e-11 -1.77378538e+02 3.19121211e-11 1.77378538e+02 -1 1.147124999994e+13 1.147124999994e+13 320 3303 1449 810 0 8 0 0 17 18 18 1.72319196e+03 1.75516670e+03 1.78757747e+03 8.47462138e-03 -3.19121219e-11 -1.77378542e+02 -1.02517773e-26 -5.69829019e-14 -2 2.294249984878e+13 1.147124984883e+13 320 3303 1449 810 0 13 0 0 20 21 21 1.72316615e+03 1.75516665e+03 1.78757747e+03 8.48144718e-03 -3.19121210e-11 -1.77378537e+02 2.35199516e-27 1.30731975e-14 -3 2.500000000000e+13 2.057500151224e+12 320 3303 1449 810 0 6 0 0 16 17 17 1.72315936e+03 1.75516664e+03 1.78757747e+03 8.48324430e-03 -3.19121208e-11 -1.77378536e+02 4.13359881e-26 2.29759630e-13 +0 0.000000000000e+00 0.000000000000e+00 320 3303 1449 810 0 0 0 0 58 60 419 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00 +0 0.000000000000e+00 0.000000000000e+00 320 3303 1449 810 1 0 0 0 5 6 42 1.72315000e+03 1.75516666e+03 1.78757747e+03 8.48573063e-03 -3.19121211e-11 -1.77378538e+02 3.19121211e-11 1.77378538e+02 +1 1.147124999996e+13 1.147124999996e+13 320 3303 1449 810 0 8 0 0 18 19 133 1.72319196e+03 1.75516670e+03 1.78757747e+03 8.47462138e-03 -3.19121219e-11 -1.77378542e+02 -9.46965197e-27 -5.26355805e-14 +2 2.294249984879e+13 1.147124984883e+13 320 3303 1449 810 0 13 2 0 22 23 160 1.72316615e+03 1.75516665e+03 1.78757747e+03 8.48144718e-03 -3.19121210e-11 -1.77378537e+02 2.48973431e-27 1.38387990e-14 +3 2.500000000000e+13 2.057500151206e+12 320 3303 1449 810 0 6 1 0 18 19 132 1.72315936e+03 1.75516664e+03 1.78757747e+03 8.48324430e-03 -3.19121208e-11 -1.77378536e+02 4.93577723e-26 2.74347464e-13